diff --git a/README.md b/README.md index e34f177..8df2583 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,69 @@ A framework for materials science NER using the HuggingFace Transformers NLP Too # Installation +```git +git clone https://github.com/walkernr/MatBERT_NER.git MatBERT_NER +cd MatBERT_NER +pip install -r requirements.txt . +``` # Example Usage -# License \ No newline at end of file +The folowing command will train the MatBERT model on the solid state dataset using default parameters + +``` +python train.py -dv gpu:0 -ds solid_state -ml matbert +``` + +Additional parameters can be specified. + +``` +usage: train.py [-h] [-dv DEVICE] [-sd SEEDS] [-ts TAG_SCHEMES] [-st SPLITS] [-ds DATASETS] [-ml MODELS] [-sl] [-bs BATCH_SIZE] [-on OPTIMIZER_NAME] [-wd WEIGHT_DECAY] [-ne N_EPOCH] + [-eu EMBEDDING_UNFREEZE] [-tu TRANSFORMER_UNFREEZE] [-el EMBEDDING_LEARNING_RATE] [-tl TRANSFORMER_LEARNING_RATE] [-cl CLASSIFIER_LEARNING_RATE] [-sf SCHEDULING_FUNCTION] + [-km] + +optional arguments: + -h, --help show this help message and exit + -dv DEVICE, --device DEVICE + computation device for model (e.g. cpu, gpu:0, gpu:1) + -sd SEEDS, --seeds SEEDS + comma-separated seeds for data shuffling and model initialization (e.g. 1,2,3 or 2,4,8) + -ts TAG_SCHEMES, --tag_schemes TAG_SCHEMES + comma-separated tagging schemes to be considered (e.g. iob1,iob2,iobes) + -st SPLITS, --splits SPLITS + comma-separated training splits to be considered, in percent (e.g. 80). test split will always be 10% and the validation split will be 1/8 of the training split + unless the training split is 100% + -ds DATASETS, --datasets DATASETS + comma-separated datasets to be considered (e.g. solid_state,doping) + -ml MODELS, --models MODELS + comma-separated models to be considered (e.g. matbert,scibert,bert) + -sl, --sentence_level + switch for sentence-level learning instead of paragraph-level + -bs BATCH_SIZE, --batch_size BATCH_SIZE + number of samples in each batch + -on OPTIMIZER_NAME, --optimizer_name OPTIMIZER_NAME + name of optimizer, add "_lookahead" to implement lookahead on top of optimizer (not recommended for ranger or rangerlars) + -wd WEIGHT_DECAY, --weight_decay WEIGHT_DECAY + weight decay for optimizer (excluding bias, gamma, and beta) + -ne N_EPOCH, --n_epoch N_EPOCH + number of training epochs + -eu EMBEDDING_UNFREEZE, --embedding_unfreeze EMBEDDING_UNFREEZE + epoch (index) at which bert embeddings are unfrozen + -tu TRANSFORMER_UNFREEZE, --transformer_unfreeze TRANSFORMER_UNFREEZE + comma-separated number of transformers (encoders) to unfreeze at each epoch + -el EMBEDDING_LEARNING_RATE, --embedding_learning_rate EMBEDDING_LEARNING_RATE + embedding learning rate + -tl TRANSFORMER_LEARNING_RATE, --transformer_learning_rate TRANSFORMER_LEARNING_RATE + transformer learning rate + -cl CLASSIFIER_LEARNING_RATE, --classifier_learning_rate CLASSIFIER_LEARNING_RATE + pooler/classifier learning rate + -sf SCHEDULING_FUNCTION, --scheduling_function SCHEDULING_FUNCTION + function for learning rate scheduler (linear, exponential, or cosine) + -km, --keep_model switch for saving the best model parameters to disk +``` + +To train on custom annotated datasets, the `train.py` script has a dictionary `data_files` where additional datasets can be specified. Similarly, alternative pre-trained models can be used by modifying the `model_files` dictionary. + +For prediction, the `predict` function contained within `predict.py` can be used. An example that was used internally can be found in the `predict_script.py` file. Furthermore, an example utilizing MongoDB can be found in the `predict_mongo.py` script. Note that these two examples will need to be edited for your specific needs to be usable. + +# License diff --git a/matbert_ner/data/doping.json b/matbert_ner/data/doping.json index 1aa2fab..5216b4c 100644 --- a/matbert_ner/data/doping.json +++ b/matbert_ner/data/doping.json @@ -1,388 +1,388 @@ -{"remark": "doping_annt2", "text": "Nanocrystalline titanium dioxide (TiO2) thin films composed of densely packed nanometer-sized grains have been successfully deposited onto an indium-doped-tin oxide (ITO) substrate. Then cadmium sulphoselenide (CdSSe) thin film was deposited onto pre-deposited TiO2 to form a TiO2/CdSSe film, at low temperature using a simple and inexpensive chemical method. The X-ray diffraction, selected area electron diffraction, scanning electron microscopy (SEM), energy dispersive X-ray analysis (EDX) and water contact angle techniques were used for film characterization. Purely rutile phase of TiO2 with super-hydrophilic and densely packed nanometer-sized spherical grains of approximate diameter 30\u201340 (\u00b12)nm was observed. The increase in optical absorption was observed after CdSSe film deposition. Nest like surface morphology of CdSSe on TiO2 surface results in air trapping in the crevices which prevents water from adhering to the film with increase in water contact angle. Photosensitization of TiO2 with CdSSe was confirmed with light illumination intensity of 80mW/cm2.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Nanocrystalline", "start": 0, "end": 15, "annotation": null}, {"text": "titanium", "start": 16, "end": 24, "annotation": null}, {"text": "dioxide", "start": 25, "end": 32, "annotation": null}, {"text": "(", "start": 33, "end": 34, "annotation": null}, {"text": "TiO2", "start": 34, "end": 38, "annotation": null}, {"text": ")", "start": 38, "end": 39, "annotation": null}, {"text": "thin", "start": 40, "end": 44, "annotation": null}, {"text": "films", "start": 45, "end": 50, "annotation": null}, {"text": "composed", "start": 51, "end": 59, "annotation": null}, {"text": "of", "start": 60, "end": 62, "annotation": null}, {"text": "densely", "start": 63, "end": 70, "annotation": null}, {"text": "packed", "start": 71, "end": 77, "annotation": null}, {"text": "nanometer", "start": 78, "end": 87, "annotation": null}, {"text": "-", "start": 87, "end": 88, "annotation": null}, {"text": "sized", "start": 88, "end": 93, "annotation": null}, {"text": "grains", "start": 94, "end": 100, "annotation": null}, {"text": "have", "start": 101, "end": 105, "annotation": null}, {"text": "been", "start": 106, "end": 110, "annotation": null}, {"text": "successfully", "start": 111, "end": 123, "annotation": null}, {"text": "deposited", "start": 124, "end": 133, "annotation": null}, {"text": "onto", "start": 134, "end": 138, "annotation": null}, {"text": "an", "start": 139, "end": 141, "annotation": null}, {"text": "indium-doped-tin", "start": 142, "end": 158, "annotation": null}, {"text": "oxide", "start": 159, "end": 164, "annotation": null}, {"text": "(", "start": 165, "end": 166, "annotation": null}, {"text": "ITO", "start": 166, "end": 169, "annotation": "BASEMAT"}, {"text": ")", "start": 169, "end": 170, "annotation": null}, {"text": "substrate", "start": 171, "end": 180, "annotation": null}, {"text": ".", "start": 180, "end": 181, "annotation": null}], [{"text": "Then", "start": 182, "end": 186, "annotation": null}, {"text": "cadmium", "start": 187, "end": 194, "annotation": null}, {"text": "sulphoselenide", "start": 195, "end": 209, "annotation": null}, {"text": "(", "start": 210, "end": 211, "annotation": null}, {"text": "CdSSe", "start": 211, "end": 216, "annotation": null}, {"text": ")", "start": 216, "end": 217, "annotation": null}, {"text": "thin", "start": 218, "end": 222, "annotation": null}, {"text": "film", "start": 223, "end": 227, "annotation": null}, {"text": "was", "start": 228, "end": 231, "annotation": null}, {"text": "deposited", "start": 232, "end": 241, "annotation": null}, {"text": "onto", "start": 242, "end": 246, "annotation": null}, {"text": "pre-deposited", "start": 247, "end": 260, "annotation": null}, {"text": "TiO2", "start": 261, "end": 265, "annotation": null}, {"text": "to", "start": 266, "end": 268, "annotation": null}, {"text": "form", "start": 269, "end": 273, "annotation": null}, {"text": "a", "start": 274, "end": 275, "annotation": null}, {"text": "TiO2", "start": 276, "end": 280, "annotation": null}, {"text": "/", "start": 280, "end": 281, "annotation": null}, {"text": "CdSSe", "start": 281, "end": 286, "annotation": null}, {"text": "film", "start": 287, "end": 291, "annotation": null}, {"text": ",", "start": 291, "end": 292, "annotation": null}, {"text": "at", "start": 293, "end": 295, "annotation": null}, {"text": "low", "start": 296, "end": 299, "annotation": null}, {"text": "temperature", "start": 300, "end": 311, "annotation": null}, {"text": "using", "start": 312, "end": 317, "annotation": null}, {"text": "a", "start": 318, "end": 319, "annotation": null}, {"text": "simple", "start": 320, "end": 326, "annotation": null}, {"text": "and", "start": 327, "end": 330, "annotation": null}, {"text": "inexpensive", "start": 331, "end": 342, "annotation": null}, {"text": "chemical", "start": 343, "end": 351, "annotation": null}, {"text": "method", "start": 352, "end": 358, "annotation": null}, {"text": ".", "start": 358, "end": 359, "annotation": null}], [{"text": "The", "start": 360, "end": 363, "annotation": null}, {"text": "X-ray", "start": 364, "end": 369, "annotation": null}, {"text": "diffraction", "start": 370, "end": 381, "annotation": null}, {"text": ",", "start": 381, "end": 382, "annotation": null}, {"text": "selected", "start": 383, "end": 391, "annotation": null}, {"text": "area", "start": 392, "end": 396, "annotation": null}, {"text": "electron", "start": 397, "end": 405, "annotation": null}, {"text": "diffraction", "start": 406, "end": 417, "annotation": null}, {"text": ",", "start": 417, "end": 418, "annotation": null}, {"text": "scanning", "start": 419, "end": 427, "annotation": null}, {"text": "electron", "start": 428, "end": 436, "annotation": null}, {"text": "microscopy", "start": 437, "end": 447, "annotation": null}, {"text": "(", "start": 448, "end": 449, "annotation": null}, {"text": "SEM", "start": 449, "end": 452, "annotation": null}, {"text": ")", "start": 452, "end": 453, "annotation": null}, {"text": ",", "start": 453, "end": 454, "annotation": null}, {"text": "energy", "start": 455, "end": 461, "annotation": null}, {"text": "dispersive", "start": 462, "end": 472, "annotation": null}, {"text": "X-ray", "start": 473, "end": 478, "annotation": null}, {"text": "analysis", "start": 479, "end": 487, "annotation": null}, {"text": "(", "start": 488, "end": 489, "annotation": null}, {"text": "EDX", "start": 489, "end": 492, "annotation": null}, {"text": ")", "start": 492, "end": 493, "annotation": null}, {"text": "and", "start": 494, "end": 497, "annotation": null}, {"text": "water", "start": 498, "end": 503, "annotation": null}, {"text": "contact", "start": 504, "end": 511, "annotation": null}, {"text": "angle", "start": 512, "end": 517, "annotation": null}, {"text": "techniques", "start": 518, "end": 528, "annotation": null}, {"text": "were", "start": 529, "end": 533, "annotation": null}, {"text": "used", "start": 534, "end": 538, "annotation": null}, {"text": "for", "start": 539, "end": 542, "annotation": null}, {"text": "film", "start": 543, "end": 547, "annotation": null}, {"text": "characterization", "start": 548, "end": 564, "annotation": null}, {"text": ".", "start": 564, "end": 565, "annotation": null}], [{"text": "Purely", "start": 566, "end": 572, "annotation": null}, {"text": "rutile", "start": 573, "end": 579, "annotation": null}, {"text": "phase", "start": 580, "end": 585, "annotation": null}, {"text": "of", "start": 586, "end": 588, "annotation": null}, {"text": "TiO2", "start": 589, "end": 593, "annotation": null}, {"text": "with", "start": 594, "end": 598, "annotation": null}, {"text": "super-hydrophilic", "start": 599, "end": 616, "annotation": null}, {"text": "and", "start": 617, "end": 620, "annotation": null}, {"text": "densely", "start": 621, "end": 628, "annotation": null}, {"text": "packed", "start": 629, "end": 635, "annotation": null}, {"text": "nanometer", "start": 636, "end": 645, "annotation": null}, {"text": "-", "start": 645, "end": 646, "annotation": null}, {"text": "sized", "start": 646, "end": 651, "annotation": null}, {"text": "spherical", "start": 652, "end": 661, "annotation": null}, {"text": "grains", "start": 662, "end": 668, "annotation": null}, {"text": "of", "start": 669, "end": 671, "annotation": null}, {"text": "approximate", "start": 672, "end": 683, "annotation": null}, {"text": "diameter", "start": 684, "end": 692, "annotation": null}, {"text": "30", "start": 693, "end": 695, "annotation": null}, {"text": "\u2013", "start": 695, "end": 696, "annotation": null}, {"text": "40", "start": 696, "end": 698, "annotation": null}, {"text": "(", "start": 699, "end": 700, "annotation": null}, {"text": "\u00b1", "start": 700, "end": 701, "annotation": null}, {"text": "2)nm", "start": 701, "end": 705, "annotation": null}, {"text": "was", "start": 706, "end": 709, "annotation": null}, {"text": "observed", "start": 710, "end": 718, "annotation": null}, {"text": ".", "start": 718, "end": 719, "annotation": null}], [{"text": "The", "start": 720, "end": 723, "annotation": null}, {"text": "increase", "start": 724, "end": 732, "annotation": null}, {"text": "in", "start": 733, "end": 735, "annotation": null}, {"text": "optical", "start": 736, "end": 743, "annotation": null}, {"text": "absorption", "start": 744, "end": 754, "annotation": null}, {"text": "was", "start": 755, "end": 758, "annotation": null}, {"text": "observed", "start": 759, "end": 767, "annotation": null}, {"text": "after", "start": 768, "end": 773, "annotation": null}, {"text": "CdSSe", "start": 774, "end": 779, "annotation": null}, {"text": "film", "start": 780, "end": 784, "annotation": null}, {"text": "deposition", "start": 785, "end": 795, "annotation": null}, {"text": ".", "start": 795, "end": 796, "annotation": null}], [{"text": "Nest", "start": 797, "end": 801, "annotation": null}, {"text": "like", "start": 802, "end": 806, "annotation": null}, {"text": "surface", "start": 807, "end": 814, "annotation": null}, {"text": "morphology", "start": 815, "end": 825, "annotation": null}, {"text": "of", "start": 826, "end": 828, "annotation": null}, {"text": "CdSSe", "start": 829, "end": 834, "annotation": null}, {"text": "on", "start": 835, "end": 837, "annotation": null}, {"text": "TiO2", "start": 838, "end": 842, "annotation": null}, {"text": "surface", "start": 843, "end": 850, "annotation": null}, {"text": "results", "start": 851, "end": 858, "annotation": null}, {"text": "in", "start": 859, "end": 861, "annotation": null}, {"text": "air", "start": 862, "end": 865, "annotation": null}, {"text": "trapping", "start": 866, "end": 874, "annotation": null}, {"text": "in", "start": 875, "end": 877, "annotation": null}, {"text": "the", "start": 878, "end": 881, "annotation": null}, {"text": "crevices", "start": 882, "end": 890, "annotation": null}, {"text": "which", "start": 891, "end": 896, "annotation": null}, {"text": "prevents", "start": 897, "end": 905, "annotation": null}, {"text": "water", "start": 906, "end": 911, "annotation": null}, {"text": "from", "start": 912, "end": 916, "annotation": null}, {"text": "adhering", "start": 917, "end": 925, "annotation": null}, {"text": "to", "start": 926, "end": 928, "annotation": null}, {"text": "the", "start": 929, "end": 932, "annotation": null}, {"text": "film", "start": 933, "end": 937, "annotation": null}, {"text": "with", "start": 938, "end": 942, "annotation": null}, {"text": "increase", "start": 943, "end": 951, "annotation": null}, {"text": "in", "start": 952, "end": 954, "annotation": null}, {"text": "water", "start": 955, "end": 960, "annotation": null}, {"text": "contact", "start": 961, "end": 968, "annotation": null}, {"text": "angle", "start": 969, "end": 974, "annotation": null}, {"text": ".", "start": 974, "end": 975, "annotation": null}], [{"text": "Photosensitization", "start": 976, "end": 994, "annotation": null}, {"text": "of", "start": 995, "end": 997, "annotation": null}, {"text": "TiO2", "start": 998, "end": 1002, "annotation": null}, {"text": "with", "start": 1003, "end": 1007, "annotation": null}, {"text": "CdSSe", "start": 1008, "end": 1013, "annotation": null}, {"text": "was", "start": 1014, "end": 1017, "annotation": null}, {"text": "confirmed", "start": 1018, "end": 1027, "annotation": null}, {"text": "with", "start": 1028, "end": 1032, "annotation": null}, {"text": "light", "start": 1033, "end": 1038, "annotation": null}, {"text": "illumination", "start": 1039, "end": 1051, "annotation": null}, {"text": "intensity", "start": 1052, "end": 1061, "annotation": null}, {"text": "of", "start": 1062, "end": 1064, "annotation": null}, {"text": "80", "start": 1065, "end": 1067, "annotation": null}, {"text": "mW", "start": 1067, "end": 1069, "annotation": null}, {"text": "/", "start": 1069, "end": 1070, "annotation": null}, {"text": "cm2", "start": 1070, "end": 1073, "annotation": null}, {"text": ".", "start": 1073, "end": 1074, "annotation": null}]]} -{"text": "The characteristic emission of Sm+3 in Zn phosphors, fired in inert atmosphere (N2 gas) at various temperatures, was not detected. However, fired in reductive atmosphere at 1050\u00b0C, the characteristic Sm+3 emission appears, which exhibits intra-4f transitions at 570, 606 and 653 nm, as predicted from the 4G5/2 level to the 6H5/2, 6H7/2 and 6H9/2 levels. Sm doping favors the formation of hexagonal phase in host lattice of ZnS:Sm. The increase in hexagonal phase content will boost the overall photoluminescence emission intensity. The self-activated luminescence intensity increases with the increase in the amount of Sm doping up to a maximum at 0.2 mol% of Sm dopant. According to the phase identification by X-ray diffraction, the Sm2O2S phase favors the Sm+3 characteristic luminescence but it deteriorates in Sm2O3.", "meta": {"doi": "10.1016/S0272-8842(99)00034-6"}, "_input_hash": -374670401, "_task_hash": 1982665601, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "characteristic", "start": 4, "end": 18, "id": 1, "annotation": null}, {"text": "emission", "start": 19, "end": 27, "id": 2, "annotation": null}, {"text": "of", "start": 28, "end": 30, "id": 3, "annotation": null}, {"text": "Sm+3", "start": 31, "end": 35, "id": 4, "annotation": null}, {"text": "in", "start": 36, "end": 38, "id": 5, "annotation": null}, {"text": "Zn", "start": 39, "end": 41, "id": 6, "annotation": null}, {"text": "phosphors", "start": 42, "end": 51, "id": 7, "annotation": null}, {"text": ",", "start": 52, "end": 53, "id": 8, "annotation": null}, {"text": "fired", "start": 54, "end": 59, "id": 9, "annotation": null}, {"text": "in", "start": 60, "end": 62, "id": 10, "annotation": null}, {"text": "inert", "start": 63, "end": 68, "id": 11, "annotation": null}, {"text": "atmosphere", "start": 69, "end": 79, "id": 12, "annotation": null}, {"text": "(", "start": 80, "end": 81, "id": 13, "annotation": null}, {"text": "N2", "start": 82, "end": 84, "id": 14, "annotation": null}, {"text": "gas", "start": 85, "end": 88, "id": 15, "annotation": null}, {"text": ")", "start": 89, "end": 90, "id": 16, "annotation": null}, {"text": "at", "start": 91, "end": 93, "id": 17, "annotation": null}, {"text": "various", "start": 94, "end": 101, "id": 18, "annotation": null}, {"text": "temperatures", "start": 102, "end": 114, "id": 19, "annotation": null}, {"text": ",", "start": 115, "end": 116, "id": 20, "annotation": null}, {"text": "was", "start": 117, "end": 120, "id": 21, "annotation": null}, {"text": "not", "start": 121, "end": 124, "id": 22, "annotation": null}, {"text": "detected", "start": 125, "end": 133, "id": 23, "annotation": null}, {"text": ".", "start": 134, "end": 135, "id": 24, "annotation": null}], [{"text": "However", "start": 136, "end": 143, "id": 25, "annotation": null}, {"text": ",", "start": 144, "end": 145, "id": 26, "annotation": null}, {"text": "fired", "start": 146, "end": 151, "id": 27, "annotation": null}, {"text": "in", "start": 152, "end": 154, "id": 28, "annotation": null}, {"text": "reductive", "start": 155, "end": 164, "id": 29, "annotation": null}, {"text": "atmosphere", "start": 165, "end": 175, "id": 30, "annotation": null}, {"text": "at", "start": 176, "end": 178, "id": 31, "annotation": null}, {"text": "1050", "start": 179, "end": 183, "id": 32, "annotation": null}, {"text": "\u00b0", "start": 184, "end": 185, "id": 33, "annotation": null}, {"text": "C", "start": 186, "end": 187, "id": 34, "annotation": null}, {"text": ",", "start": 188, "end": 189, "id": 35, "annotation": null}, {"text": "the", "start": 190, "end": 193, "id": 36, "annotation": null}, {"text": "characteristic", "start": 194, "end": 208, "id": 37, "annotation": null}, {"text": "Sm+3", "start": 209, "end": 213, "id": 38, "annotation": null}, {"text": "emission", "start": 214, "end": 222, "id": 39, "annotation": null}, {"text": "appears", "start": 223, "end": 230, "id": 40, "annotation": null}, {"text": ",", "start": 231, "end": 232, "id": 41, "annotation": null}, {"text": "which", "start": 233, "end": 238, "id": 42, "annotation": null}, {"text": "exhibits", "start": 239, "end": 247, "id": 43, "annotation": null}, {"text": "intra-4f", "start": 248, "end": 256, "id": 44, "annotation": null}, {"text": "transitions", "start": 257, "end": 268, "id": 45, "annotation": null}, {"text": "at", "start": 269, "end": 271, "id": 46, "annotation": null}, {"text": "570", "start": 272, "end": 275, "id": 47, "annotation": null}, {"text": ",", "start": 276, "end": 277, "id": 48, "annotation": null}, {"text": "606", "start": 278, "end": 281, "id": 49, "annotation": null}, {"text": "and", "start": 282, "end": 285, "id": 50, "annotation": null}, {"text": "653", "start": 286, "end": 289, "id": 51, "annotation": null}, {"text": "nm", "start": 290, "end": 292, "id": 52, "annotation": null}, {"text": ",", "start": 293, "end": 294, "id": 53, "annotation": null}, {"text": "as", "start": 295, "end": 297, "id": 54, "annotation": null}, {"text": "predicted", "start": 298, "end": 307, "id": 55, "annotation": null}, {"text": "from", "start": 308, "end": 312, "id": 56, "annotation": null}, {"text": "the", "start": 313, "end": 316, "id": 57, "annotation": null}, {"text": "4G5/2", "start": 317, "end": 322, "id": 58, "annotation": null}, {"text": "level", "start": 323, "end": 328, "id": 59, "annotation": null}, {"text": "to", "start": 329, "end": 331, "id": 60, "annotation": null}, {"text": "the", "start": 332, "end": 335, "id": 61, "annotation": null}, {"text": "6H5/2", "start": 336, "end": 341, "id": 62, "annotation": null}, {"text": ",", "start": 342, "end": 343, "id": 63, "annotation": null}, {"text": "6H7/2", "start": 344, "end": 349, "id": 64, "annotation": null}, {"text": "and", "start": 350, "end": 353, "id": 65, "annotation": null}, {"text": "6H9/2", "start": 354, "end": 359, "id": 66, "annotation": null}, {"text": "levels", "start": 360, "end": 366, "id": 67, "annotation": null}, {"text": ".", "start": 367, "end": 368, "id": 68, "annotation": null}], [{"text": "Sm", "start": 369, "end": 371, "id": 69, "annotation": "DOPANT"}, {"text": "doping", "start": 372, "end": 378, "id": 70, "annotation": null}, {"text": "favors", "start": 379, "end": 385, "id": 71, "annotation": null}, {"text": "the", "start": 386, "end": 389, "id": 72, "annotation": null}, {"text": "formation", "start": 390, "end": 399, "id": 73, "annotation": null}, {"text": "of", "start": 400, "end": 402, "id": 74, "annotation": null}, {"text": "hexagonal", "start": 403, "end": 412, "id": 75, "annotation": null}, {"text": "phase", "start": 413, "end": 418, "id": 76, "annotation": null}, {"text": "in", "start": 419, "end": 421, "id": 77, "annotation": null}, {"text": "host", "start": 422, "end": 426, "id": 78, "annotation": null}, {"text": "lattice", "start": 427, "end": 434, "id": 79, "annotation": null}, {"text": "of", "start": 435, "end": 437, "id": 80, "annotation": null}, {"text": "ZnS", "start": 438, "end": 441, "id": 81, "annotation": "BASEMAT"}, {"text": ":", "start": 442, "end": 443, "id": 82, "annotation": null}, {"text": "Sm", "start": 444, "end": 446, "id": 83, "annotation": "DOPANT"}, {"text": ".", "start": 447, "end": 448, "id": 84, "annotation": null}], [{"text": "The", "start": 449, "end": 452, "id": 85, "annotation": null}, {"text": "increase", "start": 453, "end": 461, "id": 86, "annotation": null}, {"text": "in", "start": 462, "end": 464, "id": 87, "annotation": null}, {"text": "hexagonal", "start": 465, "end": 474, "id": 88, "annotation": null}, {"text": "phase", "start": 475, "end": 480, "id": 89, "annotation": null}, {"text": "content", "start": 481, "end": 488, "id": 90, "annotation": null}, {"text": "will", "start": 489, "end": 493, "id": 91, "annotation": null}, {"text": "boost", "start": 494, "end": 499, "id": 92, "annotation": null}, {"text": "the", "start": 500, "end": 503, "id": 93, "annotation": null}, {"text": "overall", "start": 504, "end": 511, "id": 94, "annotation": null}, {"text": "photoluminescence", "start": 512, "end": 529, "id": 95, "annotation": null}, {"text": "emission", "start": 530, "end": 538, "id": 96, "annotation": null}, {"text": "intensity", "start": 539, "end": 548, "id": 97, "annotation": null}, {"text": ".", "start": 549, "end": 550, "id": 98, "annotation": null}], [{"text": "The", "start": 551, "end": 554, "id": 99, "annotation": null}, {"text": "self", "start": 555, "end": 559, "id": 100, "annotation": null}, {"text": "-", "start": 560, "end": 561, "id": 101, "annotation": null}, {"text": "activated", "start": 562, "end": 571, "id": 102, "annotation": null}, {"text": "luminescence", "start": 572, "end": 584, "id": 103, "annotation": null}, {"text": "intensity", "start": 585, "end": 594, "id": 104, "annotation": null}, {"text": "increases", "start": 595, "end": 604, "id": 105, "annotation": null}, {"text": "with", "start": 605, "end": 609, "id": 106, "annotation": null}, {"text": "the", "start": 610, "end": 613, "id": 107, "annotation": null}, {"text": "increase", "start": 614, "end": 622, "id": 108, "annotation": null}, {"text": "in", "start": 623, "end": 625, "id": 109, "annotation": null}, {"text": "the", "start": 626, "end": 629, "id": 110, "annotation": null}, {"text": "amount", "start": 630, "end": 636, "id": 111, "annotation": null}, {"text": "of", "start": 637, "end": 639, "id": 112, "annotation": null}, {"text": "Sm", "start": 640, "end": 642, "id": 113, "annotation": "DOPANT"}, {"text": "doping", "start": 643, "end": 649, "id": 114, "annotation": null}, {"text": "up", "start": 650, "end": 652, "id": 115, "annotation": "DOPMODQ"}, {"text": "to", "start": 653, "end": 655, "id": 116, "annotation": null}, {"text": "a", "start": 656, "end": 657, "id": 117, "annotation": null}, {"text": "maximum", "start": 658, "end": 665, "id": 118, "annotation": null}, {"text": "at", "start": 666, "end": 668, "id": 119, "annotation": null}, {"text": "0.2", "start": 669, "end": 672, "id": 120, "annotation": null}, {"text": "mol%", "start": 673, "end": 677, "id": 121, "annotation": "DOPMODQ"}, {"text": "of", "start": 678, "end": 680, "id": 122, "annotation": null}, {"text": "Sm", "start": 681, "end": 683, "id": 123, "annotation": "DOPANT"}, {"text": "dopant", "start": 684, "end": 690, "id": 124, "annotation": null}, {"text": ".", "start": 691, "end": 692, "id": 125, "annotation": null}], [{"text": "According", "start": 693, "end": 702, "id": 126, "annotation": null}, {"text": "to", "start": 703, "end": 705, "id": 127, "annotation": null}, {"text": "the", "start": 706, "end": 709, "id": 128, "annotation": null}, {"text": "phase", "start": 710, "end": 715, "id": 129, "annotation": null}, {"text": "identification", "start": 716, "end": 730, "id": 130, "annotation": null}, {"text": "by", "start": 731, "end": 733, "id": 131, "annotation": null}, {"text": "X", "start": 734, "end": 735, "id": 132, "annotation": null}, {"text": "-", "start": 736, "end": 737, "id": 133, "annotation": null}, {"text": "ray", "start": 738, "end": 741, "id": 134, "annotation": null}, {"text": "diffraction", "start": 742, "end": 753, "id": 135, "annotation": null}, {"text": ",", "start": 754, "end": 755, "id": 136, "annotation": null}, {"text": "the", "start": 756, "end": 759, "id": 137, "annotation": null}, {"text": "Sm2O2S", "start": 760, "end": 766, "id": 138, "annotation": null}, {"text": "phase", "start": 767, "end": 772, "id": 139, "annotation": null}, {"text": "favors", "start": 773, "end": 779, "id": 140, "annotation": null}, {"text": "the", "start": 780, "end": 783, "id": 141, "annotation": null}, {"text": "Sm+3", "start": 784, "end": 788, "id": 142, "annotation": null}, {"text": "characteristic", "start": 789, "end": 803, "id": 143, "annotation": null}, {"text": "luminescence", "start": 804, "end": 816, "id": 144, "annotation": null}, {"text": "but", "start": 817, "end": 820, "id": 145, "annotation": null}, {"text": "it", "start": 821, "end": 823, "id": 146, "annotation": null}, {"text": "deteriorates", "start": 824, "end": 836, "id": 147, "annotation": null}, {"text": "in", "start": 837, "end": 839, "id": 148, "annotation": null}, {"text": "Sm2O3", "start": 840, "end": 845, "id": 149, "annotation": null}, {"text": ".", "start": 846, "end": 847, "id": 150, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "We propose and demonstrate the generation of a supercontinuum (SC) spectrum from a 10 m long silica fiber co-doped with zirconia-yttria-alumino and erbium (Zr-EDF) as a non-linear medium. The proposed system utilizes a 2 m long Zr-EDF in a ring laser configuration to generate mode-locked pulses at 1560 nm based on the non-polarization rotation (NPR) technique. The fiber laser generates a mode-locking spectrum from 1526 to 1640 nm with a peak power of -10 dBm at approximately 1565 nm as well as a 6.1 nm bandwidth at the 3 dB level. The generated mode-locked pulses have average and peak powers of 15 mW and 1 kW respectively with a repetition rate of 23.2 MHz. These pulses are subsequently used to generate the SC spectrum from the 10 m Zr-EDF, with the SC spectrum obtained having a 200 nm bandwidth from 1500 nm as well as a large 3-dB bandwidth of 68.2 nm. The SC pulse width is 0.59 ps with a symmetrical shape at about 1600 nm and a 3-dB bandwidth of approximately 0.12 ps. This is the first report of a zirconia host employed as a non-linear medium for SC generation. \u00a9 2012 by Astro Ltd., published exclusively by WILEY-VCH Verlag GmbH & Co. KGaA.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "propose", "start": 3, "end": 10, "annotation": null}, {"text": "and", "start": 11, "end": 14, "annotation": null}, {"text": "demonstrate", "start": 15, "end": 26, "annotation": null}, {"text": "the", "start": 27, "end": 30, "annotation": null}, {"text": "generation", "start": 31, "end": 41, "annotation": null}, {"text": "of", "start": 42, "end": 44, "annotation": null}, {"text": "a", "start": 45, "end": 46, "annotation": null}, {"text": "supercontinuum", "start": 47, "end": 61, "annotation": null}, {"text": "(", "start": 62, "end": 63, "annotation": null}, {"text": "SC", "start": 63, "end": 65, "annotation": null}, {"text": ")", "start": 65, "end": 66, "annotation": null}, {"text": "spectrum", "start": 67, "end": 75, "annotation": null}, {"text": "from", "start": 76, "end": 80, "annotation": null}, {"text": "a", "start": 81, "end": 82, "annotation": null}, {"text": "10", "start": 83, "end": 85, "annotation": null}, {"text": "m", "start": 86, "end": 87, "annotation": null}, {"text": "long", "start": 88, "end": 92, "annotation": null}, {"text": "silica", "start": 93, "end": 99, "annotation": "BASEMAT"}, {"text": "fiber", "start": 100, "end": 105, "annotation": "BASEMAT"}, {"text": "co-doped", "start": 106, "end": 114, "annotation": null}, {"text": "with", "start": 115, "end": 119, "annotation": null}, {"text": "zirconia-yttria-alumino", "start": 120, "end": 143, "annotation": "DOPANT"}, {"text": "and", "start": 144, "end": 147, "annotation": null}, {"text": "erbium", "start": 148, "end": 154, "annotation": "DOPANT"}, {"text": "(", "start": 155, "end": 156, "annotation": null}, {"text": "Zr", "start": 156, "end": 158, "annotation": null}, {"text": "-", "start": 158, "end": 159, "annotation": null}, {"text": "EDF", "start": 159, "end": 162, "annotation": null}, {"text": ")", "start": 162, "end": 163, "annotation": null}, {"text": "as", "start": 164, "end": 166, "annotation": null}, {"text": "a", "start": 167, "end": 168, "annotation": null}, {"text": "non-linear", "start": 169, "end": 179, "annotation": null}, {"text": "medium", "start": 180, "end": 186, "annotation": null}, {"text": ".", "start": 186, "end": 187, "annotation": null}], [{"text": "The", "start": 188, "end": 191, "annotation": null}, {"text": "proposed", "start": 192, "end": 200, "annotation": null}, {"text": "system", "start": 201, "end": 207, "annotation": null}, {"text": "utilizes", "start": 208, "end": 216, "annotation": null}, {"text": "a", "start": 217, "end": 218, "annotation": null}, {"text": "2", "start": 219, "end": 220, "annotation": null}, {"text": "m", "start": 221, "end": 222, "annotation": null}, {"text": "long", "start": 223, "end": 227, "annotation": null}, {"text": "Zr", "start": 228, "end": 230, "annotation": null}, {"text": "-", "start": 230, "end": 231, "annotation": null}, {"text": "EDF", "start": 231, "end": 234, "annotation": null}, {"text": "in", "start": 235, "end": 237, "annotation": null}, {"text": "a", "start": 238, "end": 239, "annotation": null}, {"text": "ring", "start": 240, "end": 244, "annotation": null}, {"text": "laser", "start": 245, "end": 250, "annotation": null}, {"text": "configuration", "start": 251, "end": 264, "annotation": null}, {"text": "to", "start": 265, "end": 267, "annotation": null}, {"text": "generate", "start": 268, "end": 276, "annotation": null}, {"text": "mode", "start": 277, "end": 281, "annotation": null}, {"text": "-", "start": 281, "end": 282, "annotation": null}, {"text": "locked", "start": 282, "end": 288, "annotation": null}, {"text": "pulses", "start": 289, "end": 295, "annotation": null}, {"text": "at", "start": 296, "end": 298, "annotation": null}, {"text": "1560", "start": 299, "end": 303, "annotation": null}, {"text": "nm", "start": 304, "end": 306, "annotation": null}, {"text": "based", "start": 307, "end": 312, "annotation": null}, {"text": "on", "start": 313, "end": 315, "annotation": null}, {"text": "the", "start": 316, "end": 319, "annotation": null}, {"text": "non-polarization", "start": 320, "end": 336, "annotation": null}, {"text": "rotation", "start": 337, "end": 345, "annotation": null}, {"text": "(", "start": 346, "end": 347, "annotation": null}, {"text": "NPR", "start": 347, "end": 350, "annotation": null}, {"text": ")", "start": 350, "end": 351, "annotation": null}, {"text": "technique", "start": 352, "end": 361, "annotation": null}, {"text": ".", "start": 361, "end": 362, "annotation": null}], [{"text": "The", "start": 363, "end": 366, "annotation": null}, {"text": "fiber", "start": 367, "end": 372, "annotation": null}, {"text": "laser", "start": 373, "end": 378, "annotation": null}, {"text": "generates", "start": 379, "end": 388, "annotation": null}, {"text": "a", "start": 389, "end": 390, "annotation": null}, {"text": "mode", "start": 391, "end": 395, "annotation": null}, {"text": "-", "start": 395, "end": 396, "annotation": null}, {"text": "locking", "start": 396, "end": 403, "annotation": null}, {"text": "spectrum", "start": 404, "end": 412, "annotation": null}, {"text": "from", "start": 413, "end": 417, "annotation": null}, {"text": "1526", "start": 418, "end": 422, "annotation": null}, {"text": "to", "start": 423, "end": 425, "annotation": null}, {"text": "1640", "start": 426, "end": 430, "annotation": null}, {"text": "nm", "start": 431, "end": 433, "annotation": null}, {"text": "with", "start": 434, "end": 438, "annotation": null}, {"text": "a", "start": 439, "end": 440, "annotation": null}, {"text": "peak", "start": 441, "end": 445, "annotation": null}, {"text": "power", "start": 446, "end": 451, "annotation": null}, {"text": "of", "start": 452, "end": 454, "annotation": null}, {"text": "-10", "start": 455, "end": 458, "annotation": null}, {"text": "dBm", "start": 459, "end": 462, "annotation": null}, {"text": "at", "start": 463, "end": 465, "annotation": null}, {"text": "approximately", "start": 466, "end": 479, "annotation": null}, {"text": "1565", "start": 480, "end": 484, "annotation": null}, {"text": "nm", "start": 485, "end": 487, "annotation": null}, {"text": "as", "start": 488, "end": 490, "annotation": null}, {"text": "well", "start": 491, "end": 495, "annotation": null}, {"text": "as", "start": 496, "end": 498, "annotation": null}, {"text": "a", "start": 499, "end": 500, "annotation": null}, {"text": "6.1", "start": 501, "end": 504, "annotation": null}, {"text": "nm", "start": 505, "end": 507, "annotation": null}, {"text": "bandwidth", "start": 508, "end": 517, "annotation": null}, {"text": "at", "start": 518, "end": 520, "annotation": null}, {"text": "the", "start": 521, "end": 524, "annotation": null}, {"text": "3", "start": 525, "end": 526, "annotation": null}, {"text": "dB", "start": 527, "end": 529, "annotation": null}, {"text": "level", "start": 530, "end": 535, "annotation": null}, {"text": ".", "start": 535, "end": 536, "annotation": null}], [{"text": "The", "start": 537, "end": 540, "annotation": null}, {"text": "generated", "start": 541, "end": 550, "annotation": null}, {"text": "mode", "start": 551, "end": 555, "annotation": null}, {"text": "-", "start": 555, "end": 556, "annotation": null}, {"text": "locked", "start": 556, "end": 562, "annotation": null}, {"text": "pulses", "start": 563, "end": 569, "annotation": null}, {"text": "have", "start": 570, "end": 574, "annotation": null}, {"text": "average", "start": 575, "end": 582, "annotation": null}, {"text": "and", "start": 583, "end": 586, "annotation": null}, {"text": "peak", "start": 587, "end": 591, "annotation": null}, {"text": "powers", "start": 592, "end": 598, "annotation": null}, {"text": "of", "start": 599, "end": 601, "annotation": null}, {"text": "15", "start": 602, "end": 604, "annotation": null}, {"text": "mW", "start": 605, "end": 607, "annotation": null}, {"text": "and", "start": 608, "end": 611, "annotation": null}, {"text": "1", "start": 612, "end": 613, "annotation": null}, {"text": "kW", "start": 614, "end": 616, "annotation": null}, {"text": "respectively", "start": 617, "end": 629, "annotation": null}, {"text": "with", "start": 630, "end": 634, "annotation": null}, {"text": "a", "start": 635, "end": 636, "annotation": null}, {"text": "repetition", "start": 637, "end": 647, "annotation": null}, {"text": "rate", "start": 648, "end": 652, "annotation": null}, {"text": "of", "start": 653, "end": 655, "annotation": null}, {"text": "23.2", "start": 656, "end": 660, "annotation": null}, {"text": "MHz", "start": 661, "end": 664, "annotation": null}, {"text": ".", "start": 664, "end": 665, "annotation": null}], [{"text": "These", "start": 666, "end": 671, "annotation": null}, {"text": "pulses", "start": 672, "end": 678, "annotation": null}, {"text": "are", "start": 679, "end": 682, "annotation": null}, {"text": "subsequently", "start": 683, "end": 695, "annotation": null}, {"text": "used", "start": 696, "end": 700, "annotation": null}, {"text": "to", "start": 701, "end": 703, "annotation": null}, {"text": "generate", "start": 704, "end": 712, "annotation": null}, {"text": "the", "start": 713, "end": 716, "annotation": null}, {"text": "SC", "start": 717, "end": 719, "annotation": null}, {"text": "spectrum", "start": 720, "end": 728, "annotation": null}, {"text": "from", "start": 729, "end": 733, "annotation": null}, {"text": "the", "start": 734, "end": 737, "annotation": null}, {"text": "10", "start": 738, "end": 740, "annotation": null}, {"text": "m", "start": 741, "end": 742, "annotation": null}, {"text": "Zr", "start": 743, "end": 745, "annotation": null}, {"text": "-", "start": 745, "end": 746, "annotation": null}, {"text": "EDF", "start": 746, "end": 749, "annotation": null}, {"text": ",", "start": 749, "end": 750, "annotation": null}, {"text": "with", "start": 751, "end": 755, "annotation": null}, {"text": "the", "start": 756, "end": 759, "annotation": null}, {"text": "SC", "start": 760, "end": 762, "annotation": null}, {"text": "spectrum", "start": 763, "end": 771, "annotation": null}, {"text": "obtained", "start": 772, "end": 780, "annotation": null}, {"text": "having", "start": 781, "end": 787, "annotation": null}, {"text": "a", "start": 788, "end": 789, "annotation": null}, {"text": "200", "start": 790, "end": 793, "annotation": null}, {"text": "nm", "start": 794, "end": 796, "annotation": null}, {"text": "bandwidth", "start": 797, "end": 806, "annotation": null}, {"text": "from", "start": 807, "end": 811, "annotation": null}, {"text": "1500", "start": 812, "end": 816, "annotation": null}, {"text": "nm", "start": 817, "end": 819, "annotation": null}, {"text": "as", "start": 820, "end": 822, "annotation": null}, {"text": "well", "start": 823, "end": 827, "annotation": null}, {"text": "as", "start": 828, "end": 830, "annotation": null}, {"text": "a", "start": 831, "end": 832, "annotation": null}, {"text": "large", "start": 833, "end": 838, "annotation": null}, {"text": "3-dB", "start": 839, "end": 843, "annotation": null}, {"text": "bandwidth", "start": 844, "end": 853, "annotation": null}, {"text": "of", "start": 854, "end": 856, "annotation": null}, {"text": "68.2", "start": 857, "end": 861, "annotation": null}, {"text": "nm", "start": 862, "end": 864, "annotation": null}, {"text": ".", "start": 864, "end": 865, "annotation": null}], [{"text": "The", "start": 866, "end": 869, "annotation": null}, {"text": "SC", "start": 870, "end": 872, "annotation": null}, {"text": "pulse", "start": 873, "end": 878, "annotation": null}, {"text": "width", "start": 879, "end": 884, "annotation": null}, {"text": "is", "start": 885, "end": 887, "annotation": null}, {"text": "0.59", "start": 888, "end": 892, "annotation": null}, {"text": "ps", "start": 893, "end": 895, "annotation": null}, {"text": "with", "start": 896, "end": 900, "annotation": null}, {"text": "a", "start": 901, "end": 902, "annotation": null}, {"text": "symmetrical", "start": 903, "end": 914, "annotation": null}, {"text": "shape", "start": 915, "end": 920, "annotation": null}, {"text": "at", "start": 921, "end": 923, "annotation": null}, {"text": "about", "start": 924, "end": 929, "annotation": null}, {"text": "1600", "start": 930, "end": 934, "annotation": null}, {"text": "nm", "start": 935, "end": 937, "annotation": null}, {"text": "and", "start": 938, "end": 941, "annotation": null}, {"text": "a", "start": 942, "end": 943, "annotation": null}, {"text": "3-dB", "start": 944, "end": 948, "annotation": null}, {"text": "bandwidth", "start": 949, "end": 958, "annotation": null}, {"text": "of", "start": 959, "end": 961, "annotation": null}, {"text": "approximately", "start": 962, "end": 975, "annotation": null}, {"text": "0.12", "start": 976, "end": 980, "annotation": null}, {"text": "ps", "start": 981, "end": 983, "annotation": null}, {"text": ".", "start": 983, "end": 984, "annotation": null}], [{"text": "This", "start": 985, "end": 989, "annotation": null}, {"text": "is", "start": 990, "end": 992, "annotation": null}, {"text": "the", "start": 993, "end": 996, "annotation": null}, {"text": "first", "start": 997, "end": 1002, "annotation": null}, {"text": "report", "start": 1003, "end": 1009, "annotation": null}, {"text": "of", "start": 1010, "end": 1012, "annotation": null}, {"text": "a", "start": 1013, "end": 1014, "annotation": null}, {"text": "zirconia", "start": 1015, "end": 1023, "annotation": null}, {"text": "host", "start": 1024, "end": 1028, "annotation": null}, {"text": "employed", "start": 1029, "end": 1037, "annotation": null}, {"text": "as", "start": 1038, "end": 1040, "annotation": null}, {"text": "a", "start": 1041, "end": 1042, "annotation": null}, {"text": "non-linear", "start": 1043, "end": 1053, "annotation": null}, {"text": "medium", "start": 1054, "end": 1060, "annotation": null}, {"text": "for", "start": 1061, "end": 1064, "annotation": null}, {"text": "SC", "start": 1065, "end": 1067, "annotation": null}, {"text": "generation", "start": 1068, "end": 1078, "annotation": null}, {"text": ".", "start": 1078, "end": 1079, "annotation": null}], [{"text": "KGaA", "start": 1155, "end": 1159, "annotation": null}, {"text": ".", "start": 1159, "end": 1160, "annotation": null}]]} +{"remark": "doping_annt2", "text": "Nanocrystalline titanium dioxide (TiO2) thin films composed of densely packed nanometer-sized grains have been successfully deposited onto an indium-doped-tin oxide (ITO) substrate. Then cadmium sulphoselenide (CdSSe) thin film was deposited onto pre-deposited TiO2 to form a TiO2/CdSSe film, at low temperature using a simple and inexpensive chemical method. The X-ray diffraction, selected area electron diffraction, scanning electron microscopy (SEM), energy dispersive X-ray analysis (EDX) and water contact angle techniques were used for film characterization. Purely rutile phase of TiO2 with super-hydrophilic and densely packed nanometer-sized spherical grains of approximate diameter 30\u201340 (\u00b12)nm was observed. The increase in optical absorption was observed after CdSSe film deposition. Nest like surface morphology of CdSSe on TiO2 surface results in air trapping in the crevices which prevents water from adhering to the film with increase in water contact angle. Photosensitization of TiO2 with CdSSe was confirmed with light illumination intensity of 80mW/cm2.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Nanocrystalline", "start": 0, "end": 15, "annotation": null}, {"text": "titanium", "start": 16, "end": 24, "annotation": null}, {"text": "dioxide", "start": 25, "end": 32, "annotation": null}, {"text": "(", "start": 33, "end": 34, "annotation": null}, {"text": "TiO2", "start": 34, "end": 38, "annotation": null}, {"text": ")", "start": 38, "end": 39, "annotation": null}, {"text": "thin", "start": 40, "end": 44, "annotation": null}, {"text": "films", "start": 45, "end": 50, "annotation": null}, {"text": "composed", "start": 51, "end": 59, "annotation": null}, {"text": "of", "start": 60, "end": 62, "annotation": null}, {"text": "densely", "start": 63, "end": 70, "annotation": null}, {"text": "packed", "start": 71, "end": 77, "annotation": null}, {"text": "nanometer", "start": 78, "end": 87, "annotation": null}, {"text": "-", "start": 87, "end": 88, "annotation": null}, {"text": "sized", "start": 88, "end": 93, "annotation": null}, {"text": "grains", "start": 94, "end": 100, "annotation": null}, {"text": "have", "start": 101, "end": 105, "annotation": null}, {"text": "been", "start": 106, "end": 110, "annotation": null}, {"text": "successfully", "start": 111, "end": 123, "annotation": null}, {"text": "deposited", "start": 124, "end": 133, "annotation": null}, {"text": "onto", "start": 134, "end": 138, "annotation": null}, {"text": "an", "start": 139, "end": 141, "annotation": null}, {"text": "indium-doped-tin", "start": 142, "end": 158, "annotation": null}, {"text": "oxide", "start": 159, "end": 164, "annotation": null}, {"text": "(", "start": 165, "end": 166, "annotation": null}, {"text": "ITO", "start": 166, "end": 169, "annotation": "BASEMAT"}, {"text": ")", "start": 169, "end": 170, "annotation": null}, {"text": "substrate", "start": 171, "end": 180, "annotation": null}, {"text": ".", "start": 180, "end": 181, "annotation": null}], [{"text": "Then", "start": 182, "end": 186, "annotation": null}, {"text": "cadmium", "start": 187, "end": 194, "annotation": null}, {"text": "sulphoselenide", "start": 195, "end": 209, "annotation": null}, {"text": "(", "start": 210, "end": 211, "annotation": null}, {"text": "CdSSe", "start": 211, "end": 216, "annotation": null}, {"text": ")", "start": 216, "end": 217, "annotation": null}, {"text": "thin", "start": 218, "end": 222, "annotation": null}, {"text": "film", "start": 223, "end": 227, "annotation": null}, {"text": "was", "start": 228, "end": 231, "annotation": null}, {"text": "deposited", "start": 232, "end": 241, "annotation": null}, {"text": "onto", "start": 242, "end": 246, "annotation": null}, {"text": "pre-deposited", "start": 247, "end": 260, "annotation": null}, {"text": "TiO2", "start": 261, "end": 265, "annotation": null}, {"text": "to", "start": 266, "end": 268, "annotation": null}, {"text": "form", "start": 269, "end": 273, "annotation": null}, {"text": "a", "start": 274, "end": 275, "annotation": null}, {"text": "TiO2", "start": 276, "end": 280, "annotation": null}, {"text": "/", "start": 280, "end": 281, "annotation": null}, {"text": "CdSSe", "start": 281, "end": 286, "annotation": null}, {"text": "film", "start": 287, "end": 291, "annotation": null}, {"text": ",", "start": 291, "end": 292, "annotation": null}, {"text": "at", "start": 293, "end": 295, "annotation": null}, {"text": "low", "start": 296, "end": 299, "annotation": null}, {"text": "temperature", "start": 300, "end": 311, "annotation": null}, {"text": "using", "start": 312, "end": 317, "annotation": null}, {"text": "a", "start": 318, "end": 319, "annotation": null}, {"text": "simple", "start": 320, "end": 326, "annotation": null}, {"text": "and", "start": 327, "end": 330, "annotation": null}, {"text": "inexpensive", "start": 331, "end": 342, "annotation": null}, {"text": "chemical", "start": 343, "end": 351, "annotation": null}, {"text": "method", "start": 352, "end": 358, "annotation": null}, {"text": ".", "start": 358, "end": 359, "annotation": null}], [{"text": "The", "start": 360, "end": 363, "annotation": null}, {"text": "X-ray", "start": 364, "end": 369, "annotation": null}, {"text": "diffraction", "start": 370, "end": 381, "annotation": null}, {"text": ",", "start": 381, "end": 382, "annotation": null}, {"text": "selected", "start": 383, "end": 391, "annotation": null}, {"text": "area", "start": 392, "end": 396, "annotation": null}, {"text": "electron", "start": 397, "end": 405, "annotation": null}, {"text": "diffraction", "start": 406, "end": 417, "annotation": null}, {"text": ",", "start": 417, "end": 418, "annotation": null}, {"text": "scanning", "start": 419, "end": 427, "annotation": null}, {"text": "electron", "start": 428, "end": 436, "annotation": null}, {"text": "microscopy", "start": 437, "end": 447, "annotation": null}, {"text": "(", "start": 448, "end": 449, "annotation": null}, {"text": "SEM", "start": 449, "end": 452, "annotation": null}, {"text": ")", "start": 452, "end": 453, "annotation": null}, {"text": ",", "start": 453, "end": 454, "annotation": null}, {"text": "energy", "start": 455, "end": 461, "annotation": null}, {"text": "dispersive", "start": 462, "end": 472, "annotation": null}, {"text": "X-ray", "start": 473, "end": 478, "annotation": null}, {"text": "analysis", "start": 479, "end": 487, "annotation": null}, {"text": "(", "start": 488, "end": 489, "annotation": null}, {"text": "EDX", "start": 489, "end": 492, "annotation": null}, {"text": ")", "start": 492, "end": 493, "annotation": null}, {"text": "and", "start": 494, "end": 497, "annotation": null}, {"text": "water", "start": 498, "end": 503, "annotation": null}, {"text": "contact", "start": 504, "end": 511, "annotation": null}, {"text": "angle", "start": 512, "end": 517, "annotation": null}, {"text": "techniques", "start": 518, "end": 528, "annotation": null}, {"text": "were", "start": 529, "end": 533, "annotation": null}, {"text": "used", "start": 534, "end": 538, "annotation": null}, {"text": "for", "start": 539, "end": 542, "annotation": null}, {"text": "film", "start": 543, "end": 547, "annotation": null}, {"text": "characterization", "start": 548, "end": 564, "annotation": null}, {"text": ".", "start": 564, "end": 565, "annotation": null}], [{"text": "Purely", "start": 566, "end": 572, "annotation": null}, {"text": "rutile", "start": 573, "end": 579, "annotation": null}, {"text": "phase", "start": 580, "end": 585, "annotation": null}, {"text": "of", "start": 586, "end": 588, "annotation": null}, {"text": "TiO2", "start": 589, "end": 593, "annotation": null}, {"text": "with", "start": 594, "end": 598, "annotation": null}, {"text": "super-hydrophilic", "start": 599, "end": 616, "annotation": null}, {"text": "and", "start": 617, "end": 620, "annotation": null}, {"text": "densely", "start": 621, "end": 628, "annotation": null}, {"text": "packed", "start": 629, "end": 635, "annotation": null}, {"text": "nanometer", "start": 636, "end": 645, "annotation": null}, {"text": "-", "start": 645, "end": 646, "annotation": null}, {"text": "sized", "start": 646, "end": 651, "annotation": null}, {"text": "spherical", "start": 652, "end": 661, "annotation": null}, {"text": "grains", "start": 662, "end": 668, "annotation": null}, {"text": "of", "start": 669, "end": 671, "annotation": null}, {"text": "approximate", "start": 672, "end": 683, "annotation": null}, {"text": "diameter", "start": 684, "end": 692, "annotation": null}, {"text": "30", "start": 693, "end": 695, "annotation": null}, {"text": "\u2013", "start": 695, "end": 696, "annotation": null}, {"text": "40", "start": 696, "end": 698, "annotation": null}, {"text": "(", "start": 699, "end": 700, "annotation": null}, {"text": "\u00b1", "start": 700, "end": 701, "annotation": null}, {"text": "2)nm", "start": 701, "end": 705, "annotation": null}, {"text": "was", "start": 706, "end": 709, "annotation": null}, {"text": "observed", "start": 710, "end": 718, "annotation": null}, {"text": ".", "start": 718, "end": 719, "annotation": null}], [{"text": "The", "start": 720, "end": 723, "annotation": null}, {"text": "increase", "start": 724, "end": 732, "annotation": null}, {"text": "in", "start": 733, "end": 735, "annotation": null}, {"text": "optical", "start": 736, "end": 743, "annotation": null}, {"text": "absorption", "start": 744, "end": 754, "annotation": null}, {"text": "was", "start": 755, "end": 758, "annotation": null}, {"text": "observed", "start": 759, "end": 767, "annotation": null}, {"text": "after", "start": 768, "end": 773, "annotation": null}, {"text": "CdSSe", "start": 774, "end": 779, "annotation": null}, {"text": "film", "start": 780, "end": 784, "annotation": null}, {"text": "deposition", "start": 785, "end": 795, "annotation": null}, {"text": ".", "start": 795, "end": 796, "annotation": null}], [{"text": "Nest", "start": 797, "end": 801, "annotation": null}, {"text": "like", "start": 802, "end": 806, "annotation": null}, {"text": "surface", "start": 807, "end": 814, "annotation": null}, {"text": "morphology", "start": 815, "end": 825, "annotation": null}, {"text": "of", "start": 826, "end": 828, "annotation": null}, {"text": "CdSSe", "start": 829, "end": 834, "annotation": null}, {"text": "on", "start": 835, "end": 837, "annotation": null}, {"text": "TiO2", "start": 838, "end": 842, "annotation": null}, {"text": "surface", "start": 843, "end": 850, "annotation": null}, {"text": "results", "start": 851, "end": 858, "annotation": null}, {"text": "in", "start": 859, "end": 861, "annotation": null}, {"text": "air", "start": 862, "end": 865, "annotation": null}, {"text": "trapping", "start": 866, "end": 874, "annotation": null}, {"text": "in", "start": 875, "end": 877, "annotation": null}, {"text": "the", "start": 878, "end": 881, "annotation": null}, {"text": "crevices", "start": 882, "end": 890, "annotation": null}, {"text": "which", "start": 891, "end": 896, "annotation": null}, {"text": "prevents", "start": 897, "end": 905, "annotation": null}, {"text": "water", "start": 906, "end": 911, "annotation": null}, {"text": "from", "start": 912, "end": 916, "annotation": null}, {"text": "adhering", "start": 917, "end": 925, "annotation": null}, {"text": "to", "start": 926, "end": 928, "annotation": null}, {"text": "the", "start": 929, "end": 932, "annotation": null}, {"text": "film", "start": 933, "end": 937, "annotation": null}, {"text": "with", "start": 938, "end": 942, "annotation": null}, {"text": "increase", "start": 943, "end": 951, "annotation": null}, {"text": "in", "start": 952, "end": 954, "annotation": null}, {"text": "water", "start": 955, "end": 960, "annotation": null}, {"text": "contact", "start": 961, "end": 968, "annotation": null}, {"text": "angle", "start": 969, "end": 974, "annotation": null}, {"text": ".", "start": 974, "end": 975, "annotation": null}], [{"text": "Photosensitization", "start": 976, "end": 994, "annotation": null}, {"text": "of", "start": 995, "end": 997, "annotation": null}, {"text": "TiO2", "start": 998, "end": 1002, "annotation": null}, {"text": "with", "start": 1003, "end": 1007, "annotation": null}, {"text": "CdSSe", "start": 1008, "end": 1013, "annotation": null}, {"text": "was", "start": 1014, "end": 1017, "annotation": null}, {"text": "confirmed", "start": 1018, "end": 1027, "annotation": null}, {"text": "with", "start": 1028, "end": 1032, "annotation": null}, {"text": "light", "start": 1033, "end": 1038, "annotation": null}, {"text": "illumination", "start": 1039, "end": 1051, "annotation": null}, {"text": "intensity", "start": 1052, "end": 1061, "annotation": null}, {"text": "of", "start": 1062, "end": 1064, "annotation": null}, {"text": "80", "start": 1065, "end": 1067, "annotation": null}, {"text": "mW", "start": 1067, "end": 1069, "annotation": null}, {"text": "/", "start": 1069, "end": 1070, "annotation": null}, {"text": "cm2", "start": 1070, "end": 1073, "annotation": null}, {"text": ".", "start": 1073, "end": 1074, "annotation": null}]], "meta": {"doi": "10.1016/j.apsusc.2006.07.087"}} +{"text": "The characteristic emission of Sm+3 in Zn phosphors, fired in inert atmosphere (N2 gas) at various temperatures, was not detected. However, fired in reductive atmosphere at 1050\u00b0C, the characteristic Sm+3 emission appears, which exhibits intra-4f transitions at 570, 606 and 653 nm, as predicted from the 4G5/2 level to the 6H5/2, 6H7/2 and 6H9/2 levels. Sm doping favors the formation of hexagonal phase in host lattice of ZnS:Sm. The increase in hexagonal phase content will boost the overall photoluminescence emission intensity. The self-activated luminescence intensity increases with the increase in the amount of Sm doping up to a maximum at 0.2 mol% of Sm dopant. According to the phase identification by X-ray diffraction, the Sm2O2S phase favors the Sm+3 characteristic luminescence but it deteriorates in Sm2O3.", "meta": {"doi": "10.1016/S0272-8842(99)00034-6"}, "_input_hash": -374670401, "_task_hash": 1982665601, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "characteristic", "start": 4, "end": 18, "id": 1, "annotation": null}, {"text": "emission", "start": 19, "end": 27, "id": 2, "annotation": null}, {"text": "of", "start": 28, "end": 30, "id": 3, "annotation": null}, {"text": "Sm+3", "start": 31, "end": 35, "id": 4, "annotation": null}, {"text": "in", "start": 36, "end": 38, "id": 5, "annotation": null}, {"text": "Zn", "start": 39, "end": 41, "id": 6, "annotation": null}, {"text": "phosphors", "start": 42, "end": 51, "id": 7, "annotation": null}, {"text": ",", "start": 52, "end": 53, "id": 8, "annotation": null}, {"text": "fired", "start": 54, "end": 59, "id": 9, "annotation": null}, {"text": "in", "start": 60, "end": 62, "id": 10, "annotation": null}, {"text": "inert", "start": 63, "end": 68, "id": 11, "annotation": null}, {"text": "atmosphere", "start": 69, "end": 79, "id": 12, "annotation": null}, {"text": "(", "start": 80, "end": 81, "id": 13, "annotation": null}, {"text": "N2", "start": 82, "end": 84, "id": 14, "annotation": null}, {"text": "gas", "start": 85, "end": 88, "id": 15, "annotation": null}, {"text": ")", "start": 89, "end": 90, "id": 16, "annotation": null}, {"text": "at", "start": 91, "end": 93, "id": 17, "annotation": null}, {"text": "various", "start": 94, "end": 101, "id": 18, "annotation": null}, {"text": "temperatures", "start": 102, "end": 114, "id": 19, "annotation": null}, {"text": ",", "start": 115, "end": 116, "id": 20, "annotation": null}, {"text": "was", "start": 117, "end": 120, "id": 21, "annotation": null}, {"text": "not", "start": 121, "end": 124, "id": 22, "annotation": null}, {"text": "detected", "start": 125, "end": 133, "id": 23, "annotation": null}, {"text": ".", "start": 134, "end": 135, "id": 24, "annotation": null}], [{"text": "However", "start": 136, "end": 143, "id": 25, "annotation": null}, {"text": ",", "start": 144, "end": 145, "id": 26, "annotation": null}, {"text": "fired", "start": 146, "end": 151, "id": 27, "annotation": null}, {"text": "in", "start": 152, "end": 154, "id": 28, "annotation": null}, {"text": "reductive", "start": 155, "end": 164, "id": 29, "annotation": null}, {"text": "atmosphere", "start": 165, "end": 175, "id": 30, "annotation": null}, {"text": "at", "start": 176, "end": 178, "id": 31, "annotation": null}, {"text": "1050", "start": 179, "end": 183, "id": 32, "annotation": null}, {"text": "\u00b0", "start": 184, "end": 185, "id": 33, "annotation": null}, {"text": "C", "start": 186, "end": 187, "id": 34, "annotation": null}, {"text": ",", "start": 188, "end": 189, "id": 35, "annotation": null}, {"text": "the", "start": 190, "end": 193, "id": 36, "annotation": null}, {"text": "characteristic", "start": 194, "end": 208, "id": 37, "annotation": null}, {"text": "Sm+3", "start": 209, "end": 213, "id": 38, "annotation": null}, {"text": "emission", "start": 214, "end": 222, "id": 39, "annotation": null}, {"text": "appears", "start": 223, "end": 230, "id": 40, "annotation": null}, {"text": ",", "start": 231, "end": 232, "id": 41, "annotation": null}, {"text": "which", "start": 233, "end": 238, "id": 42, "annotation": null}, {"text": "exhibits", "start": 239, "end": 247, "id": 43, "annotation": null}, {"text": "intra-4f", "start": 248, "end": 256, "id": 44, "annotation": null}, {"text": "transitions", "start": 257, "end": 268, "id": 45, "annotation": null}, {"text": "at", "start": 269, "end": 271, "id": 46, "annotation": null}, {"text": "570", "start": 272, "end": 275, "id": 47, "annotation": null}, {"text": ",", "start": 276, "end": 277, "id": 48, "annotation": null}, {"text": "606", "start": 278, "end": 281, "id": 49, "annotation": null}, {"text": "and", "start": 282, "end": 285, "id": 50, "annotation": null}, {"text": "653", "start": 286, "end": 289, "id": 51, "annotation": null}, {"text": "nm", "start": 290, "end": 292, "id": 52, "annotation": null}, {"text": ",", "start": 293, "end": 294, "id": 53, "annotation": null}, {"text": "as", "start": 295, "end": 297, "id": 54, "annotation": null}, {"text": "predicted", "start": 298, "end": 307, "id": 55, "annotation": null}, {"text": "from", "start": 308, "end": 312, "id": 56, "annotation": null}, {"text": "the", "start": 313, "end": 316, "id": 57, "annotation": null}, {"text": "4G5/2", "start": 317, "end": 322, "id": 58, "annotation": null}, {"text": "level", "start": 323, "end": 328, "id": 59, "annotation": null}, {"text": "to", "start": 329, "end": 331, "id": 60, "annotation": null}, {"text": "the", "start": 332, "end": 335, "id": 61, "annotation": null}, {"text": "6H5/2", "start": 336, "end": 341, "id": 62, "annotation": null}, {"text": ",", "start": 342, "end": 343, "id": 63, "annotation": null}, {"text": "6H7/2", "start": 344, "end": 349, "id": 64, "annotation": null}, {"text": "and", "start": 350, "end": 353, "id": 65, "annotation": null}, {"text": "6H9/2", "start": 354, "end": 359, "id": 66, "annotation": null}, {"text": "levels", "start": 360, "end": 366, "id": 67, "annotation": null}, {"text": ".", "start": 367, "end": 368, "id": 68, "annotation": null}], [{"text": "Sm", "start": 369, "end": 371, "id": 69, "annotation": "DOPANT"}, {"text": "doping", "start": 372, "end": 378, "id": 70, "annotation": null}, {"text": "favors", "start": 379, "end": 385, "id": 71, "annotation": null}, {"text": "the", "start": 386, "end": 389, "id": 72, "annotation": null}, {"text": "formation", "start": 390, "end": 399, "id": 73, "annotation": null}, {"text": "of", "start": 400, "end": 402, "id": 74, "annotation": null}, {"text": "hexagonal", "start": 403, "end": 412, "id": 75, "annotation": null}, {"text": "phase", "start": 413, "end": 418, "id": 76, "annotation": null}, {"text": "in", "start": 419, "end": 421, "id": 77, "annotation": null}, {"text": "host", "start": 422, "end": 426, "id": 78, "annotation": null}, {"text": "lattice", "start": 427, "end": 434, "id": 79, "annotation": null}, {"text": "of", "start": 435, "end": 437, "id": 80, "annotation": null}, {"text": "ZnS", "start": 438, "end": 441, "id": 81, "annotation": "BASEMAT"}, {"text": ":", "start": 442, "end": 443, "id": 82, "annotation": null}, {"text": "Sm", "start": 444, "end": 446, "id": 83, "annotation": "DOPANT"}, {"text": ".", "start": 447, "end": 448, "id": 84, "annotation": null}], [{"text": "The", "start": 449, "end": 452, "id": 85, "annotation": null}, {"text": "increase", "start": 453, "end": 461, "id": 86, "annotation": null}, {"text": "in", "start": 462, "end": 464, "id": 87, "annotation": null}, {"text": "hexagonal", "start": 465, "end": 474, "id": 88, "annotation": null}, {"text": "phase", "start": 475, "end": 480, "id": 89, "annotation": null}, {"text": "content", "start": 481, "end": 488, "id": 90, "annotation": null}, {"text": "will", "start": 489, "end": 493, "id": 91, "annotation": null}, {"text": "boost", "start": 494, "end": 499, "id": 92, "annotation": null}, {"text": "the", "start": 500, "end": 503, "id": 93, "annotation": null}, {"text": "overall", "start": 504, "end": 511, "id": 94, "annotation": null}, {"text": "photoluminescence", "start": 512, "end": 529, "id": 95, "annotation": null}, {"text": "emission", "start": 530, "end": 538, "id": 96, "annotation": null}, {"text": "intensity", "start": 539, "end": 548, "id": 97, "annotation": null}, {"text": ".", "start": 549, "end": 550, "id": 98, "annotation": null}], [{"text": "The", "start": 551, "end": 554, "id": 99, "annotation": null}, {"text": "self", "start": 555, "end": 559, "id": 100, "annotation": null}, {"text": "-", "start": 560, "end": 561, "id": 101, "annotation": null}, {"text": "activated", "start": 562, "end": 571, "id": 102, "annotation": null}, {"text": "luminescence", "start": 572, "end": 584, "id": 103, "annotation": null}, {"text": "intensity", "start": 585, "end": 594, "id": 104, "annotation": null}, {"text": "increases", "start": 595, "end": 604, "id": 105, "annotation": null}, {"text": "with", "start": 605, "end": 609, "id": 106, "annotation": null}, {"text": "the", "start": 610, "end": 613, "id": 107, "annotation": null}, {"text": "increase", "start": 614, "end": 622, "id": 108, "annotation": null}, {"text": "in", "start": 623, "end": 625, "id": 109, "annotation": null}, {"text": "the", "start": 626, "end": 629, "id": 110, "annotation": null}, {"text": "amount", "start": 630, "end": 636, "id": 111, "annotation": null}, {"text": "of", "start": 637, "end": 639, "id": 112, "annotation": null}, {"text": "Sm", "start": 640, "end": 642, "id": 113, "annotation": "DOPANT"}, {"text": "doping", "start": 643, "end": 649, "id": 114, "annotation": null}, {"text": "up", "start": 650, "end": 652, "id": 115, "annotation": "DOPMODQ"}, {"text": "to", "start": 653, "end": 655, "id": 116, "annotation": "DOPMODQ"}, {"text": "a", "start": 656, "end": 657, "id": 117, "annotation": "DOPMODQ"}, {"text": "maximum", "start": 658, "end": 665, "id": 118, "annotation": "DOPMODQ"}, {"text": "at", "start": 666, "end": 668, "id": 119, "annotation": "DOPMODQ"}, {"text": "0.2", "start": 669, "end": 672, "id": 120, "annotation": "DOPMODQ"}, {"text": "mol%", "start": 673, "end": 677, "id": 121, "annotation": "DOPMODQ"}, {"text": "of", "start": 678, "end": 680, "id": 122, "annotation": null}, {"text": "Sm", "start": 681, "end": 683, "id": 123, "annotation": "DOPANT"}, {"text": "dopant", "start": 684, "end": 690, "id": 124, "annotation": null}, {"text": ".", "start": 691, "end": 692, "id": 125, "annotation": null}], [{"text": "According", "start": 693, "end": 702, "id": 126, "annotation": null}, {"text": "to", "start": 703, "end": 705, "id": 127, "annotation": null}, {"text": "the", "start": 706, "end": 709, "id": 128, "annotation": null}, {"text": "phase", "start": 710, "end": 715, "id": 129, "annotation": null}, {"text": "identification", "start": 716, "end": 730, "id": 130, "annotation": null}, {"text": "by", "start": 731, "end": 733, "id": 131, "annotation": null}, {"text": "X", "start": 734, "end": 735, "id": 132, "annotation": null}, {"text": "-", "start": 736, "end": 737, "id": 133, "annotation": null}, {"text": "ray", "start": 738, "end": 741, "id": 134, "annotation": null}, {"text": "diffraction", "start": 742, "end": 753, "id": 135, "annotation": null}, {"text": ",", "start": 754, "end": 755, "id": 136, "annotation": null}, {"text": "the", "start": 756, "end": 759, "id": 137, "annotation": null}, {"text": "Sm2O2S", "start": 760, "end": 766, "id": 138, "annotation": null}, {"text": "phase", "start": 767, "end": 772, "id": 139, "annotation": null}, {"text": "favors", "start": 773, "end": 779, "id": 140, "annotation": null}, {"text": "the", "start": 780, "end": 783, "id": 141, "annotation": null}, {"text": "Sm+3", "start": 784, "end": 788, "id": 142, "annotation": null}, {"text": "characteristic", "start": 789, "end": 803, "id": 143, "annotation": null}, {"text": "luminescence", "start": 804, "end": 816, "id": 144, "annotation": null}, {"text": "but", "start": 817, "end": 820, "id": 145, "annotation": null}, {"text": "it", "start": 821, "end": 823, "id": 146, "annotation": null}, {"text": "deteriorates", "start": 824, "end": 836, "id": 147, "annotation": null}, {"text": "in", "start": 837, "end": 839, "id": 148, "annotation": null}, {"text": "Sm2O3", "start": 840, "end": 845, "id": 149, "annotation": null}, {"text": ".", "start": 846, "end": 847, "id": 150, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt3", "text": "We propose and demonstrate the generation of a supercontinuum (SC) spectrum from a 10 m long silica fiber co-doped with zirconia-yttria-alumino and erbium (Zr-EDF) as a non-linear medium. The proposed system utilizes a 2 m long Zr-EDF in a ring laser configuration to generate mode-locked pulses at 1560 nm based on the non-polarization rotation (NPR) technique. The fiber laser generates a mode-locking spectrum from 1526 to 1640 nm with a peak power of -10 dBm at approximately 1565 nm as well as a 6.1 nm bandwidth at the 3 dB level. The generated mode-locked pulses have average and peak powers of 15 mW and 1 kW respectively with a repetition rate of 23.2 MHz. These pulses are subsequently used to generate the SC spectrum from the 10 m Zr-EDF, with the SC spectrum obtained having a 200 nm bandwidth from 1500 nm as well as a large 3-dB bandwidth of 68.2 nm. The SC pulse width is 0.59 ps with a symmetrical shape at about 1600 nm and a 3-dB bandwidth of approximately 0.12 ps. This is the first report of a zirconia host employed as a non-linear medium for SC generation. \u00a9 2012 by Astro Ltd., published exclusively by WILEY-VCH Verlag GmbH & Co. KGaA.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "propose", "start": 3, "end": 10, "annotation": null}, {"text": "and", "start": 11, "end": 14, "annotation": null}, {"text": "demonstrate", "start": 15, "end": 26, "annotation": null}, {"text": "the", "start": 27, "end": 30, "annotation": null}, {"text": "generation", "start": 31, "end": 41, "annotation": null}, {"text": "of", "start": 42, "end": 44, "annotation": null}, {"text": "a", "start": 45, "end": 46, "annotation": null}, {"text": "supercontinuum", "start": 47, "end": 61, "annotation": null}, {"text": "(", "start": 62, "end": 63, "annotation": null}, {"text": "SC", "start": 63, "end": 65, "annotation": null}, {"text": ")", "start": 65, "end": 66, "annotation": null}, {"text": "spectrum", "start": 67, "end": 75, "annotation": null}, {"text": "from", "start": 76, "end": 80, "annotation": null}, {"text": "a", "start": 81, "end": 82, "annotation": null}, {"text": "10", "start": 83, "end": 85, "annotation": null}, {"text": "m", "start": 86, "end": 87, "annotation": null}, {"text": "long", "start": 88, "end": 92, "annotation": null}, {"text": "silica", "start": 93, "end": 99, "annotation": "BASEMAT"}, {"text": "fiber", "start": 100, "end": 105, "annotation": "BASEMAT"}, {"text": "co-doped", "start": 106, "end": 114, "annotation": null}, {"text": "with", "start": 115, "end": 119, "annotation": null}, {"text": "zirconia-yttria-alumino", "start": 120, "end": 143, "annotation": "DOPANT"}, {"text": "and", "start": 144, "end": 147, "annotation": null}, {"text": "erbium", "start": 148, "end": 154, "annotation": "DOPANT"}, {"text": "(", "start": 155, "end": 156, "annotation": null}, {"text": "Zr", "start": 156, "end": 158, "annotation": null}, {"text": "-", "start": 158, "end": 159, "annotation": null}, {"text": "EDF", "start": 159, "end": 162, "annotation": null}, {"text": ")", "start": 162, "end": 163, "annotation": null}, {"text": "as", "start": 164, "end": 166, "annotation": null}, {"text": "a", "start": 167, "end": 168, "annotation": null}, {"text": "non-linear", "start": 169, "end": 179, "annotation": null}, {"text": "medium", "start": 180, "end": 186, "annotation": null}, {"text": ".", "start": 186, "end": 187, "annotation": null}], [{"text": "The", "start": 188, "end": 191, "annotation": null}, {"text": "proposed", "start": 192, "end": 200, "annotation": null}, {"text": "system", "start": 201, "end": 207, "annotation": null}, {"text": "utilizes", "start": 208, "end": 216, "annotation": null}, {"text": "a", "start": 217, "end": 218, "annotation": null}, {"text": "2", "start": 219, "end": 220, "annotation": null}, {"text": "m", "start": 221, "end": 222, "annotation": null}, {"text": "long", "start": 223, "end": 227, "annotation": null}, {"text": "Zr", "start": 228, "end": 230, "annotation": null}, {"text": "-", "start": 230, "end": 231, "annotation": null}, {"text": "EDF", "start": 231, "end": 234, "annotation": null}, {"text": "in", "start": 235, "end": 237, "annotation": null}, {"text": "a", "start": 238, "end": 239, "annotation": null}, {"text": "ring", "start": 240, "end": 244, "annotation": null}, {"text": "laser", "start": 245, "end": 250, "annotation": null}, {"text": "configuration", "start": 251, "end": 264, "annotation": null}, {"text": "to", "start": 265, "end": 267, "annotation": null}, {"text": "generate", "start": 268, "end": 276, "annotation": null}, {"text": "mode", "start": 277, "end": 281, "annotation": null}, {"text": "-", "start": 281, "end": 282, "annotation": null}, {"text": "locked", "start": 282, "end": 288, "annotation": null}, {"text": "pulses", "start": 289, "end": 295, "annotation": null}, {"text": "at", "start": 296, "end": 298, "annotation": null}, {"text": "1560", "start": 299, "end": 303, "annotation": null}, {"text": "nm", "start": 304, "end": 306, "annotation": null}, {"text": "based", "start": 307, "end": 312, "annotation": null}, {"text": "on", "start": 313, "end": 315, "annotation": null}, {"text": "the", "start": 316, "end": 319, "annotation": null}, {"text": "non-polarization", "start": 320, "end": 336, "annotation": null}, {"text": "rotation", "start": 337, "end": 345, "annotation": null}, {"text": "(", "start": 346, "end": 347, "annotation": null}, {"text": "NPR", "start": 347, "end": 350, "annotation": null}, {"text": ")", "start": 350, "end": 351, "annotation": null}, {"text": "technique", "start": 352, "end": 361, "annotation": null}, {"text": ".", "start": 361, "end": 362, "annotation": null}], [{"text": "The", "start": 363, "end": 366, "annotation": null}, {"text": "fiber", "start": 367, "end": 372, "annotation": null}, {"text": "laser", "start": 373, "end": 378, "annotation": null}, {"text": "generates", "start": 379, "end": 388, "annotation": null}, {"text": "a", "start": 389, "end": 390, "annotation": null}, {"text": "mode", "start": 391, "end": 395, "annotation": null}, {"text": "-", "start": 395, "end": 396, "annotation": null}, {"text": "locking", "start": 396, "end": 403, "annotation": null}, {"text": "spectrum", "start": 404, "end": 412, "annotation": null}, {"text": "from", "start": 413, "end": 417, "annotation": null}, {"text": "1526", "start": 418, "end": 422, "annotation": null}, {"text": "to", "start": 423, "end": 425, "annotation": null}, {"text": "1640", "start": 426, "end": 430, "annotation": null}, {"text": "nm", "start": 431, "end": 433, "annotation": null}, {"text": "with", "start": 434, "end": 438, "annotation": null}, {"text": "a", "start": 439, "end": 440, "annotation": null}, {"text": "peak", "start": 441, "end": 445, "annotation": null}, {"text": "power", "start": 446, "end": 451, "annotation": null}, {"text": "of", "start": 452, "end": 454, "annotation": null}, {"text": "-10", "start": 455, "end": 458, "annotation": null}, {"text": "dBm", "start": 459, "end": 462, "annotation": null}, {"text": "at", "start": 463, "end": 465, "annotation": null}, {"text": "approximately", "start": 466, "end": 479, "annotation": null}, {"text": "1565", "start": 480, "end": 484, "annotation": null}, {"text": "nm", "start": 485, "end": 487, "annotation": null}, {"text": "as", "start": 488, "end": 490, "annotation": null}, {"text": "well", "start": 491, "end": 495, "annotation": null}, {"text": "as", "start": 496, "end": 498, "annotation": null}, {"text": "a", "start": 499, "end": 500, "annotation": null}, {"text": "6.1", "start": 501, "end": 504, "annotation": null}, {"text": "nm", "start": 505, "end": 507, "annotation": null}, {"text": "bandwidth", "start": 508, "end": 517, "annotation": null}, {"text": "at", "start": 518, "end": 520, "annotation": null}, {"text": "the", "start": 521, "end": 524, "annotation": null}, {"text": "3", "start": 525, "end": 526, "annotation": null}, {"text": "dB", "start": 527, "end": 529, "annotation": null}, {"text": "level", "start": 530, "end": 535, "annotation": null}, {"text": ".", "start": 535, "end": 536, "annotation": null}], [{"text": "The", "start": 537, "end": 540, "annotation": null}, {"text": "generated", "start": 541, "end": 550, "annotation": null}, {"text": "mode", "start": 551, "end": 555, "annotation": null}, {"text": "-", "start": 555, "end": 556, "annotation": null}, {"text": "locked", "start": 556, "end": 562, "annotation": null}, {"text": "pulses", "start": 563, "end": 569, "annotation": null}, {"text": "have", "start": 570, "end": 574, "annotation": null}, {"text": "average", "start": 575, "end": 582, "annotation": null}, {"text": "and", "start": 583, "end": 586, "annotation": null}, {"text": "peak", "start": 587, "end": 591, "annotation": null}, {"text": "powers", "start": 592, "end": 598, "annotation": null}, {"text": "of", "start": 599, "end": 601, "annotation": null}, {"text": "15", "start": 602, "end": 604, "annotation": null}, {"text": "mW", "start": 605, "end": 607, "annotation": null}, {"text": "and", "start": 608, "end": 611, "annotation": null}, {"text": "1", "start": 612, "end": 613, "annotation": null}, {"text": "kW", "start": 614, "end": 616, "annotation": null}, {"text": "respectively", "start": 617, "end": 629, "annotation": null}, {"text": "with", "start": 630, "end": 634, "annotation": null}, {"text": "a", "start": 635, "end": 636, "annotation": null}, {"text": "repetition", "start": 637, "end": 647, "annotation": null}, {"text": "rate", "start": 648, "end": 652, "annotation": null}, {"text": "of", "start": 653, "end": 655, "annotation": null}, {"text": "23.2", "start": 656, "end": 660, "annotation": null}, {"text": "MHz", "start": 661, "end": 664, "annotation": null}, {"text": ".", "start": 664, "end": 665, "annotation": null}], [{"text": "These", "start": 666, "end": 671, "annotation": null}, {"text": "pulses", "start": 672, "end": 678, "annotation": null}, {"text": "are", "start": 679, "end": 682, "annotation": null}, {"text": "subsequently", "start": 683, "end": 695, "annotation": null}, {"text": "used", "start": 696, "end": 700, "annotation": null}, {"text": "to", "start": 701, "end": 703, "annotation": null}, {"text": "generate", "start": 704, "end": 712, "annotation": null}, {"text": "the", "start": 713, "end": 716, "annotation": null}, {"text": "SC", "start": 717, "end": 719, "annotation": null}, {"text": "spectrum", "start": 720, "end": 728, "annotation": null}, {"text": "from", "start": 729, "end": 733, "annotation": null}, {"text": "the", "start": 734, "end": 737, "annotation": null}, {"text": "10", "start": 738, "end": 740, "annotation": null}, {"text": "m", "start": 741, "end": 742, "annotation": null}, {"text": "Zr", "start": 743, "end": 745, "annotation": null}, {"text": "-", "start": 745, "end": 746, "annotation": null}, {"text": "EDF", "start": 746, "end": 749, "annotation": null}, {"text": ",", "start": 749, "end": 750, "annotation": null}, {"text": "with", "start": 751, "end": 755, "annotation": null}, {"text": "the", "start": 756, "end": 759, "annotation": null}, {"text": "SC", "start": 760, "end": 762, "annotation": null}, {"text": "spectrum", "start": 763, "end": 771, "annotation": null}, {"text": "obtained", "start": 772, "end": 780, "annotation": null}, {"text": "having", "start": 781, "end": 787, "annotation": null}, {"text": "a", "start": 788, "end": 789, "annotation": null}, {"text": "200", "start": 790, "end": 793, "annotation": null}, {"text": "nm", "start": 794, "end": 796, "annotation": null}, {"text": "bandwidth", "start": 797, "end": 806, "annotation": null}, {"text": "from", "start": 807, "end": 811, "annotation": null}, {"text": "1500", "start": 812, "end": 816, "annotation": null}, {"text": "nm", "start": 817, "end": 819, "annotation": null}, {"text": "as", "start": 820, "end": 822, "annotation": null}, {"text": "well", "start": 823, "end": 827, "annotation": null}, {"text": "as", "start": 828, "end": 830, "annotation": null}, {"text": "a", "start": 831, "end": 832, "annotation": null}, {"text": "large", "start": 833, "end": 838, "annotation": null}, {"text": "3-dB", "start": 839, "end": 843, "annotation": null}, {"text": "bandwidth", "start": 844, "end": 853, "annotation": null}, {"text": "of", "start": 854, "end": 856, "annotation": null}, {"text": "68.2", "start": 857, "end": 861, "annotation": null}, {"text": "nm", "start": 862, "end": 864, "annotation": null}, {"text": ".", "start": 864, "end": 865, "annotation": null}], [{"text": "The", "start": 866, "end": 869, "annotation": null}, {"text": "SC", "start": 870, "end": 872, "annotation": null}, {"text": "pulse", "start": 873, "end": 878, "annotation": null}, {"text": "width", "start": 879, "end": 884, "annotation": null}, {"text": "is", "start": 885, "end": 887, "annotation": null}, {"text": "0.59", "start": 888, "end": 892, "annotation": null}, {"text": "ps", "start": 893, "end": 895, "annotation": null}, {"text": "with", "start": 896, "end": 900, "annotation": null}, {"text": "a", "start": 901, "end": 902, "annotation": null}, {"text": "symmetrical", "start": 903, "end": 914, "annotation": null}, {"text": "shape", "start": 915, "end": 920, "annotation": null}, {"text": "at", "start": 921, "end": 923, "annotation": null}, {"text": "about", "start": 924, "end": 929, "annotation": null}, {"text": "1600", "start": 930, "end": 934, "annotation": null}, {"text": "nm", "start": 935, "end": 937, "annotation": null}, {"text": "and", "start": 938, "end": 941, "annotation": null}, {"text": "a", "start": 942, "end": 943, "annotation": null}, {"text": "3-dB", "start": 944, "end": 948, "annotation": null}, {"text": "bandwidth", "start": 949, "end": 958, "annotation": null}, {"text": "of", "start": 959, "end": 961, "annotation": null}, {"text": "approximately", "start": 962, "end": 975, "annotation": null}, {"text": "0.12", "start": 976, "end": 980, "annotation": null}, {"text": "ps", "start": 981, "end": 983, "annotation": null}, {"text": ".", "start": 983, "end": 984, "annotation": null}], [{"text": "This", "start": 985, "end": 989, "annotation": null}, {"text": "is", "start": 990, "end": 992, "annotation": null}, {"text": "the", "start": 993, "end": 996, "annotation": null}, {"text": "first", "start": 997, "end": 1002, "annotation": null}, {"text": "report", "start": 1003, "end": 1009, "annotation": null}, {"text": "of", "start": 1010, "end": 1012, "annotation": null}, {"text": "a", "start": 1013, "end": 1014, "annotation": null}, {"text": "zirconia", "start": 1015, "end": 1023, "annotation": null}, {"text": "host", "start": 1024, "end": 1028, "annotation": null}, {"text": "employed", "start": 1029, "end": 1037, "annotation": null}, {"text": "as", "start": 1038, "end": 1040, "annotation": null}, {"text": "a", "start": 1041, "end": 1042, "annotation": null}, {"text": "non-linear", "start": 1043, "end": 1053, "annotation": null}, {"text": "medium", "start": 1054, "end": 1060, "annotation": null}, {"text": "for", "start": 1061, "end": 1064, "annotation": null}, {"text": "SC", "start": 1065, "end": 1067, "annotation": null}, {"text": "generation", "start": 1068, "end": 1078, "annotation": null}, {"text": ".", "start": 1078, "end": 1079, "annotation": null}], [{"text": "KGaA", "start": 1155, "end": 1159, "annotation": null}, {"text": ".", "start": 1159, "end": 1160, "annotation": null}]], "meta": {"doi": "10.1002/lapl.201110079"}} {"text": "SBA15\u2013TiO2 samples prepared by introducing titanium with a grafting method and having TiO2 loadings below 15wt.% have been characterized by XRF, XRD, IR, porosimetry, SEM, HRTEM, and UV\u2013Visible diffuse reflectance. Differently from the samples reported in the literature characterized by a high TiO2 loading, no evidences have been found for the presence of titania particles inside or outside the mesopores of SBA-15. Three different titanium species were instead evidenced to be present. The first two derive from the reaction of titanium with silanol groups in the corona area of inner SBA-15 walls leading to the formation of either TiO4 tetrahedral sites (by reaction by hydroxyl nests of surface defect sites) and/or pseudo-octahedral surface sites anchored by two (or more) Si or Ti ions through bridging oxygens. The third species derives from the reaction of titanium in the regions with high sylanol density, e.g. in the micropores located in the corona of SBA-15 channels, leading to the formation of TiO2-like nanoareas (probably Si-doped) with dimensions of around 1\u20132nm maximum. The potential interest of these materials as photocatalysts, for the presence of a TiO2-like nanoareas highly accessible by reactants, is discussed.", "meta": {"doi": "10.1016/j.micromeso.2005.10.024"}, "_input_hash": -449445937, "_task_hash": -1593947685, "tokens": [[{"text": "SBA15\u2013TiO2", "start": 0, "end": 10, "id": 0, "annotation": null}, {"text": "samples", "start": 11, "end": 18, "id": 1, "annotation": null}, {"text": "prepared", "start": 19, "end": 27, "id": 2, "annotation": null}, {"text": "by", "start": 28, "end": 30, "id": 3, "annotation": null}, {"text": "introducing", "start": 31, "end": 42, "id": 4, "annotation": null}, {"text": "titanium", "start": 43, "end": 51, "id": 5, "annotation": null}, {"text": "with", "start": 52, "end": 56, "id": 6, "annotation": null}, {"text": "a", "start": 57, "end": 58, "id": 7, "annotation": null}, {"text": "grafting", "start": 59, "end": 67, "id": 8, "annotation": null}, {"text": "method", "start": 68, "end": 74, "id": 9, "annotation": null}, {"text": "and", "start": 75, "end": 78, "id": 10, "annotation": null}, {"text": "having", "start": 79, "end": 85, "id": 11, "annotation": null}, {"text": "TiO2", "start": 86, "end": 90, "id": 12, "annotation": null}, {"text": "loadings", "start": 91, "end": 99, "id": 13, "annotation": null}, {"text": "below", "start": 100, "end": 105, "id": 14, "annotation": null}, {"text": "15wt.%", "start": 106, "end": 112, "id": 15, "annotation": null}, {"text": "have", "start": 113, "end": 117, "id": 16, "annotation": null}, {"text": "been", "start": 118, "end": 122, "id": 17, "annotation": null}, {"text": "characterized", "start": 123, "end": 136, "id": 18, "annotation": null}, {"text": "by", "start": 137, "end": 139, "id": 19, "annotation": null}, {"text": "XRF", "start": 140, "end": 143, "id": 20, "annotation": null}, {"text": ",", "start": 144, "end": 145, "id": 21, "annotation": null}, {"text": "XRD", "start": 146, "end": 149, "id": 22, "annotation": null}, {"text": ",", "start": 150, "end": 151, "id": 23, "annotation": null}, {"text": "IR", "start": 152, "end": 154, "id": 24, "annotation": null}, {"text": ",", "start": 155, "end": 156, "id": 25, "annotation": null}, {"text": "porosimetry", "start": 157, "end": 168, "id": 26, "annotation": null}, {"text": ",", "start": 169, "end": 170, "id": 27, "annotation": null}, {"text": "SEM", "start": 171, "end": 174, "id": 28, "annotation": null}, {"text": ",", "start": 175, "end": 176, "id": 29, "annotation": null}, {"text": "HRTEM", "start": 177, "end": 182, "id": 30, "annotation": null}, {"text": ",", "start": 183, "end": 184, "id": 31, "annotation": null}, {"text": "and", "start": 185, "end": 188, "id": 32, "annotation": null}, {"text": "UV", "start": 189, "end": 191, "id": 33, "annotation": null}, {"text": "\u2013", "start": 192, "end": 193, "id": 34, "annotation": null}, {"text": "Visible", "start": 194, "end": 201, "id": 35, "annotation": null}, {"text": "diffuse", "start": 202, "end": 209, "id": 36, "annotation": null}, {"text": "reflectance", "start": 210, "end": 221, "id": 37, "annotation": null}, {"text": ".", "start": 222, "end": 223, "id": 38, "annotation": null}], [{"text": "Differently", "start": 224, "end": 235, "id": 39, "annotation": null}, {"text": "from", "start": 236, "end": 240, "id": 40, "annotation": null}, {"text": "the", "start": 241, "end": 244, "id": 41, "annotation": null}, {"text": "samples", "start": 245, "end": 252, "id": 42, "annotation": null}, {"text": "reported", "start": 253, "end": 261, "id": 43, "annotation": null}, {"text": "in", "start": 262, "end": 264, "id": 44, "annotation": null}, {"text": "the", "start": 265, "end": 268, "id": 45, "annotation": null}, {"text": "literature", "start": 269, "end": 279, "id": 46, "annotation": null}, {"text": "characterized", "start": 280, "end": 293, "id": 47, "annotation": null}, {"text": "by", "start": 294, "end": 296, "id": 48, "annotation": null}, {"text": "a", "start": 297, "end": 298, "id": 49, "annotation": null}, {"text": "high", "start": 299, "end": 303, "id": 50, "annotation": null}, {"text": "TiO2", "start": 304, "end": 308, "id": 51, "annotation": null}, {"text": "loading", "start": 309, "end": 316, "id": 52, "annotation": null}, {"text": ",", "start": 317, "end": 318, "id": 53, "annotation": null}, {"text": "no", "start": 319, "end": 321, "id": 54, "annotation": null}, {"text": "evidences", "start": 322, "end": 331, "id": 55, "annotation": null}, {"text": "have", "start": 332, "end": 336, "id": 56, "annotation": null}, {"text": "been", "start": 337, "end": 341, "id": 57, "annotation": null}, {"text": "found", "start": 342, "end": 347, "id": 58, "annotation": null}, {"text": "for", "start": 348, "end": 351, "id": 59, "annotation": null}, {"text": "the", "start": 352, "end": 355, "id": 60, "annotation": null}, {"text": "presence", "start": 356, "end": 364, "id": 61, "annotation": null}, {"text": "of", "start": 365, "end": 367, "id": 62, "annotation": null}, {"text": "titania", "start": 368, "end": 375, "id": 63, "annotation": null}, {"text": "particles", "start": 376, "end": 385, "id": 64, "annotation": null}, {"text": "inside", "start": 386, "end": 392, "id": 65, "annotation": null}, {"text": "or", "start": 393, "end": 395, "id": 66, "annotation": null}, {"text": "outside", "start": 396, "end": 403, "id": 67, "annotation": null}, {"text": "the", "start": 404, "end": 407, "id": 68, "annotation": null}, {"text": "mesopores", "start": 408, "end": 417, "id": 69, "annotation": null}, {"text": "of", "start": 418, "end": 420, "id": 70, "annotation": null}, {"text": "SBA-15", "start": 421, "end": 427, "id": 71, "annotation": null}, {"text": ".", "start": 428, "end": 429, "id": 72, "annotation": null}], [{"text": "Three", "start": 430, "end": 435, "id": 73, "annotation": null}, {"text": "different", "start": 436, "end": 445, "id": 74, "annotation": null}, {"text": "titanium", "start": 446, "end": 454, "id": 75, "annotation": null}, {"text": "species", "start": 455, "end": 462, "id": 76, "annotation": null}, {"text": "were", "start": 463, "end": 467, "id": 77, "annotation": null}, {"text": "instead", "start": 468, "end": 475, "id": 78, "annotation": null}, {"text": "evidenced", "start": 476, "end": 485, "id": 79, "annotation": null}, {"text": "to", "start": 486, "end": 488, "id": 80, "annotation": null}, {"text": "be", "start": 489, "end": 491, "id": 81, "annotation": null}, {"text": "present", "start": 492, "end": 499, "id": 82, "annotation": null}, {"text": ".", "start": 500, "end": 501, "id": 83, "annotation": null}], [{"text": "The", "start": 502, "end": 505, "id": 84, "annotation": null}, {"text": "first", "start": 506, "end": 511, "id": 85, "annotation": null}, {"text": "two", "start": 512, "end": 515, "id": 86, "annotation": null}, {"text": "derive", "start": 516, "end": 522, "id": 87, "annotation": null}, {"text": "from", "start": 523, "end": 527, "id": 88, "annotation": null}, {"text": "the", "start": 528, "end": 531, "id": 89, "annotation": null}, {"text": "reaction", "start": 532, "end": 540, "id": 90, "annotation": null}, {"text": "of", "start": 541, "end": 543, "id": 91, "annotation": null}, {"text": "titanium", "start": 544, "end": 552, "id": 92, "annotation": null}, {"text": "with", "start": 553, "end": 557, "id": 93, "annotation": null}, {"text": "silanol", "start": 558, "end": 565, "id": 94, "annotation": null}, {"text": "groups", "start": 566, "end": 572, "id": 95, "annotation": null}, {"text": "in", "start": 573, "end": 575, "id": 96, "annotation": null}, {"text": "the", "start": 576, "end": 579, "id": 97, "annotation": null}, {"text": "corona", "start": 580, "end": 586, "id": 98, "annotation": null}, {"text": "area", "start": 587, "end": 591, "id": 99, "annotation": null}, {"text": "of", "start": 592, "end": 594, "id": 100, "annotation": null}, {"text": "inner", "start": 595, "end": 600, "id": 101, "annotation": null}, {"text": "SBA-15", "start": 601, "end": 607, "id": 102, "annotation": null}, {"text": "walls", "start": 608, "end": 613, "id": 103, "annotation": null}, {"text": "leading", "start": 614, "end": 621, "id": 104, "annotation": null}, {"text": "to", "start": 622, "end": 624, "id": 105, "annotation": null}, {"text": "the", "start": 625, "end": 628, "id": 106, "annotation": null}, {"text": "formation", "start": 629, "end": 638, "id": 107, "annotation": null}, {"text": "of", "start": 639, "end": 641, "id": 108, "annotation": null}, {"text": "either", "start": 642, "end": 648, "id": 109, "annotation": null}, {"text": "TiO4", "start": 649, "end": 653, "id": 110, "annotation": null}, {"text": "tetrahedral", "start": 654, "end": 665, "id": 111, "annotation": null}, {"text": "sites", "start": 666, "end": 671, "id": 112, "annotation": null}, {"text": "(", "start": 672, "end": 673, "id": 113, "annotation": null}, {"text": "by", "start": 674, "end": 676, "id": 114, "annotation": null}, {"text": "reaction", "start": 677, "end": 685, "id": 115, "annotation": null}, {"text": "by", "start": 686, "end": 688, "id": 116, "annotation": null}, {"text": "hydroxyl", "start": 689, "end": 697, "id": 117, "annotation": null}, {"text": "nests", "start": 698, "end": 703, "id": 118, "annotation": null}, {"text": "of", "start": 704, "end": 706, "id": 119, "annotation": null}, {"text": "surface", "start": 707, "end": 714, "id": 120, "annotation": null}, {"text": "defect", "start": 715, "end": 721, "id": 121, "annotation": null}, {"text": "sites", "start": 722, "end": 727, "id": 122, "annotation": null}, {"text": ")", "start": 728, "end": 729, "id": 123, "annotation": null}, {"text": "and/or", "start": 730, "end": 736, "id": 124, "annotation": null}, {"text": "pseudo", "start": 737, "end": 743, "id": 125, "annotation": null}, {"text": "-", "start": 744, "end": 745, "id": 126, "annotation": null}, {"text": "octahedral", "start": 746, "end": 756, "id": 127, "annotation": null}, {"text": "surface", "start": 757, "end": 764, "id": 128, "annotation": null}, {"text": "sites", "start": 765, "end": 770, "id": 129, "annotation": null}, {"text": "anchored", "start": 771, "end": 779, "id": 130, "annotation": null}, {"text": "by", "start": 780, "end": 782, "id": 131, "annotation": null}, {"text": "two", "start": 783, "end": 786, "id": 132, "annotation": null}, {"text": "(", "start": 787, "end": 788, "id": 133, "annotation": null}, {"text": "or", "start": 789, "end": 791, "id": 134, "annotation": null}, {"text": "more", "start": 792, "end": 796, "id": 135, "annotation": null}, {"text": ")", "start": 797, "end": 798, "id": 136, "annotation": null}, {"text": "Si", "start": 799, "end": 801, "id": 137, "annotation": null}, {"text": "or", "start": 802, "end": 804, "id": 138, "annotation": null}, {"text": "Ti", "start": 805, "end": 807, "id": 139, "annotation": null}, {"text": "ions", "start": 808, "end": 812, "id": 140, "annotation": null}, {"text": "through", "start": 813, "end": 820, "id": 141, "annotation": null}, {"text": "bridging", "start": 821, "end": 829, "id": 142, "annotation": null}, {"text": "oxygens", "start": 830, "end": 837, "id": 143, "annotation": null}, {"text": ".", "start": 838, "end": 839, "id": 144, "annotation": null}], [{"text": "The", "start": 840, "end": 843, "id": 145, "annotation": null}, {"text": "third", "start": 844, "end": 849, "id": 146, "annotation": null}, {"text": "species", "start": 850, "end": 857, "id": 147, "annotation": null}, {"text": "derives", "start": 858, "end": 865, "id": 148, "annotation": null}, {"text": "from", "start": 866, "end": 870, "id": 149, "annotation": null}, {"text": "the", "start": 871, "end": 874, "id": 150, "annotation": null}, {"text": "reaction", "start": 875, "end": 883, "id": 151, "annotation": null}, {"text": "of", "start": 884, "end": 886, "id": 152, "annotation": null}, {"text": "titanium", "start": 887, "end": 895, "id": 153, "annotation": "BASEMAT"}, {"text": "in", "start": 896, "end": 898, "id": 154, "annotation": null}, {"text": "the", "start": 899, "end": 902, "id": 155, "annotation": null}, {"text": "regions", "start": 903, "end": 910, "id": 156, "annotation": null}, {"text": "with", "start": 911, "end": 915, "id": 157, "annotation": null}, {"text": "high", "start": 916, "end": 920, "id": 158, "annotation": null}, {"text": "sylanol", "start": 921, "end": 928, "id": 159, "annotation": null}, {"text": "density", "start": 929, "end": 936, "id": 160, "annotation": null}, {"text": ",", "start": 937, "end": 938, "id": 161, "annotation": null}, {"text": "e.g.", "start": 939, "end": 943, "id": 162, "annotation": null}, {"text": "in", "start": 944, "end": 946, "id": 163, "annotation": null}, {"text": "the", "start": 947, "end": 950, "id": 164, "annotation": null}, {"text": "micropores", "start": 951, "end": 961, "id": 165, "annotation": null}, {"text": "located", "start": 962, "end": 969, "id": 166, "annotation": null}, {"text": "in", "start": 970, "end": 972, "id": 167, "annotation": null}, {"text": "the", "start": 973, "end": 976, "id": 168, "annotation": null}, {"text": "corona", "start": 977, "end": 983, "id": 169, "annotation": null}, {"text": "of", "start": 984, "end": 986, "id": 170, "annotation": null}, {"text": "SBA-15", "start": 987, "end": 993, "id": 171, "annotation": null}, {"text": "channels", "start": 994, "end": 1002, "id": 172, "annotation": null}, {"text": ",", "start": 1003, "end": 1004, "id": 173, "annotation": null}, {"text": "leading", "start": 1005, "end": 1012, "id": 174, "annotation": null}, {"text": "to", "start": 1013, "end": 1015, "id": 175, "annotation": null}, {"text": "the", "start": 1016, "end": 1019, "id": 176, "annotation": null}, {"text": "formation", "start": 1020, "end": 1029, "id": 177, "annotation": null}, {"text": "of", "start": 1030, "end": 1032, "id": 178, "annotation": null}, {"text": "TiO2-like", "start": 1033, "end": 1042, "id": 179, "annotation": null}, {"text": "nanoareas", "start": 1043, "end": 1052, "id": 180, "annotation": null}, {"text": "(", "start": 1053, "end": 1054, "id": 181, "annotation": null}, {"text": "probably", "start": 1055, "end": 1063, "id": 182, "annotation": null}, {"text": "Si", "start": 1064, "end": 1066, "id": 183, "annotation": "DOPANT"}, {"text": "-", "start": 1067, "end": 1068, "id": 184, "annotation": null}, {"text": "doped", "start": 1069, "end": 1074, "id": 185, "annotation": null}, {"text": ")", "start": 1075, "end": 1076, "id": 186, "annotation": null}, {"text": "with", "start": 1077, "end": 1081, "id": 187, "annotation": null}, {"text": "dimensions", "start": 1082, "end": 1092, "id": 188, "annotation": null}, {"text": "of", "start": 1093, "end": 1095, "id": 189, "annotation": null}, {"text": "around", "start": 1096, "end": 1102, "id": 190, "annotation": null}, {"text": "1\u20132", "start": 1103, "end": 1106, "id": 191, "annotation": null}, {"text": "nm", "start": 1107, "end": 1109, "id": 192, "annotation": null}, {"text": "maximum", "start": 1110, "end": 1117, "id": 193, "annotation": null}, {"text": ".", "start": 1118, "end": 1119, "id": 194, "annotation": null}], [{"text": "The", "start": 1120, "end": 1123, "id": 195, "annotation": null}, {"text": "potential", "start": 1124, "end": 1133, "id": 196, "annotation": null}, {"text": "interest", "start": 1134, "end": 1142, "id": 197, "annotation": null}, {"text": "of", "start": 1143, "end": 1145, "id": 198, "annotation": null}, {"text": "these", "start": 1146, "end": 1151, "id": 199, "annotation": null}, {"text": "materials", "start": 1152, "end": 1161, "id": 200, "annotation": null}, {"text": "as", "start": 1162, "end": 1164, "id": 201, "annotation": null}, {"text": "photocatalysts", "start": 1165, "end": 1179, "id": 202, "annotation": null}, {"text": ",", "start": 1180, "end": 1181, "id": 203, "annotation": null}, {"text": "for", "start": 1182, "end": 1185, "id": 204, "annotation": null}, {"text": "the", "start": 1186, "end": 1189, "id": 205, "annotation": null}, {"text": "presence", "start": 1190, "end": 1198, "id": 206, "annotation": null}, {"text": "of", "start": 1199, "end": 1201, "id": 207, "annotation": null}, {"text": "a", "start": 1202, "end": 1203, "id": 208, "annotation": null}, {"text": "TiO2-like", "start": 1204, "end": 1213, "id": 209, "annotation": null}, {"text": "nanoareas", "start": 1214, "end": 1223, "id": 210, "annotation": null}, {"text": "highly", "start": 1224, "end": 1230, "id": 211, "annotation": null}, {"text": "accessible", "start": 1231, "end": 1241, "id": 212, "annotation": null}, {"text": "by", "start": 1242, "end": 1244, "id": 213, "annotation": null}, {"text": "reactants", "start": 1245, "end": 1254, "id": 214, "annotation": null}, {"text": ",", "start": 1255, "end": 1256, "id": 215, "annotation": null}, {"text": "is", "start": 1257, "end": 1259, "id": 216, "annotation": null}, {"text": "discussed", "start": 1260, "end": 1269, "id": 217, "annotation": null}, {"text": ".", "start": 1270, "end": 1271, "id": 218, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "Below gap optical losses in as-grown n-type CdTe crystals were analyzed in terms of free carrier absorption and Mie extinction due to Te precipitates. Experimental absorption spectra measured between 2 to 20 \u03bcm exhibited the well-known free carrier absorption behavior \u03b1FCA\u223c\u03bbx with x=3 due to scattering by polar optical phonons. In shorter wavelength regions below 6 \u03bcm, however, additional contributions to the light loss due to absorption and scattering by precipitates were also observed. Assuming a log-normal size distribution, the precipitate extinction spectra were calculated according to Mie theory within the electric and magnetic dipole and electric quadrupole approximation. A comparison with the experimental spectra identifies the precipitates and enables estimation of their sizes and total number density. In this investigation, both undoped and In-doped CdTe crystals grown from stoichiometric melts by vertical asymmetric Bridgman method were used. It was found that In doping, in general, suppresses Te precipitation. At high doping level (melt containing\u223c1019 In atoms cm\u22123), the formation of In2Te2 is also indicated. It is demonstrated that the Mie extinction analysis offers an, expedient method to rapidly analyze the precipitates in CdTe and in similar other wide gap materials in a nondestructive manner.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Below", "start": 0, "end": 5, "annotation": null}, {"text": "gap", "start": 6, "end": 9, "annotation": null}, {"text": "optical", "start": 10, "end": 17, "annotation": null}, {"text": "losses", "start": 18, "end": 24, "annotation": null}, {"text": "in", "start": 25, "end": 27, "annotation": null}, {"text": "as-grown", "start": 28, "end": 36, "annotation": null}, {"text": "n", "start": 37, "end": 38, "annotation": "DOPANT"}, {"text": "-", "start": 38, "end": 39, "annotation": "DOPANT"}, {"text": "type", "start": 39, "end": 43, "annotation": "DOPANT"}, {"text": "CdTe", "start": 44, "end": 48, "annotation": "BASEMAT"}, {"text": "crystals", "start": 49, "end": 57, "annotation": "BASEMAT"}, {"text": "were", "start": 58, "end": 62, "annotation": null}, {"text": "analyzed", "start": 63, "end": 71, "annotation": null}, {"text": "in", "start": 72, "end": 74, "annotation": null}, {"text": "terms", "start": 75, "end": 80, "annotation": null}, {"text": "of", "start": 81, "end": 83, "annotation": null}, {"text": "free", "start": 84, "end": 88, "annotation": null}, {"text": "carrier", "start": 89, "end": 96, "annotation": null}, {"text": "absorption", "start": 97, "end": 107, "annotation": null}, {"text": "and", "start": 108, "end": 111, "annotation": null}, {"text": "Mie", "start": 112, "end": 115, "annotation": null}, {"text": "extinction", "start": 116, "end": 126, "annotation": null}, {"text": "due", "start": 127, "end": 130, "annotation": null}, {"text": "to", "start": 131, "end": 133, "annotation": null}, {"text": "Te", "start": 134, "end": 136, "annotation": null}, {"text": "precipitates", "start": 137, "end": 149, "annotation": null}, {"text": ".", "start": 149, "end": 150, "annotation": null}], [{"text": "Experimental", "start": 151, "end": 163, "annotation": null}, {"text": "absorption", "start": 164, "end": 174, "annotation": null}, {"text": "spectra", "start": 175, "end": 182, "annotation": null}, {"text": "measured", "start": 183, "end": 191, "annotation": null}, {"text": "between", "start": 192, "end": 199, "annotation": null}, {"text": "2", "start": 200, "end": 201, "annotation": null}, {"text": "to", "start": 202, "end": 204, "annotation": null}, {"text": "20", "start": 205, "end": 207, "annotation": null}, {"text": "\u03bcm", "start": 208, "end": 210, "annotation": null}, {"text": "exhibited", "start": 211, "end": 220, "annotation": null}, {"text": "the", "start": 221, "end": 224, "annotation": null}, {"text": "well", "start": 225, "end": 229, "annotation": null}, {"text": "-", "start": 229, "end": 230, "annotation": null}, {"text": "known", "start": 230, "end": 235, "annotation": null}, {"text": "free", "start": 236, "end": 240, "annotation": null}, {"text": "carrier", "start": 241, "end": 248, "annotation": null}, {"text": "absorption", "start": 249, "end": 259, "annotation": null}, {"text": "behavior", "start": 260, "end": 268, "annotation": null}, {"text": "\u03b1FCA", "start": 269, "end": 273, "annotation": null}, {"text": "\u223c", "start": 273, "end": 274, "annotation": null}, {"text": "\u03bbx", "start": 274, "end": 276, "annotation": null}, {"text": "with", "start": 277, "end": 281, "annotation": null}, {"text": "x", "start": 282, "end": 283, "annotation": null}, {"text": "=", "start": 283, "end": 284, "annotation": null}, {"text": "3", "start": 284, "end": 285, "annotation": null}, {"text": "due", "start": 286, "end": 289, "annotation": null}, {"text": "to", "start": 290, "end": 292, "annotation": null}, {"text": "scattering", "start": 293, "end": 303, "annotation": null}, {"text": "by", "start": 304, "end": 306, "annotation": null}, {"text": "polar", "start": 307, "end": 312, "annotation": null}, {"text": "optical", "start": 313, "end": 320, "annotation": null}, {"text": "phonons", "start": 321, "end": 328, "annotation": null}, {"text": ".", "start": 328, "end": 329, "annotation": null}], [{"text": "In", "start": 330, "end": 332, "annotation": null}, {"text": "shorter", "start": 333, "end": 340, "annotation": null}, {"text": "wavelength", "start": 341, "end": 351, "annotation": null}, {"text": "regions", "start": 352, "end": 359, "annotation": null}, {"text": "below", "start": 360, "end": 365, "annotation": null}, {"text": "6", "start": 366, "end": 367, "annotation": null}, {"text": "\u03bcm", "start": 368, "end": 370, "annotation": null}, {"text": ",", "start": 370, "end": 371, "annotation": null}, {"text": "however", "start": 372, "end": 379, "annotation": null}, {"text": ",", "start": 379, "end": 380, "annotation": null}, {"text": "additional", "start": 381, "end": 391, "annotation": null}, {"text": "contributions", "start": 392, "end": 405, "annotation": null}, {"text": "to", "start": 406, "end": 408, "annotation": null}, {"text": "the", "start": 409, "end": 412, "annotation": null}, {"text": "light", "start": 413, "end": 418, "annotation": null}, {"text": "loss", "start": 419, "end": 423, "annotation": null}, {"text": "due", "start": 424, "end": 427, "annotation": null}, {"text": "to", "start": 428, "end": 430, "annotation": null}, {"text": "absorption", "start": 431, "end": 441, "annotation": null}, {"text": "and", "start": 442, "end": 445, "annotation": null}, {"text": "scattering", "start": 446, "end": 456, "annotation": null}, {"text": "by", "start": 457, "end": 459, "annotation": null}, {"text": "precipitates", "start": 460, "end": 472, "annotation": null}, {"text": "were", "start": 473, "end": 477, "annotation": null}, {"text": "also", "start": 478, "end": 482, "annotation": null}, {"text": "observed", "start": 483, "end": 491, "annotation": null}, {"text": ".", "start": 491, "end": 492, "annotation": null}], [{"text": "Assuming", "start": 493, "end": 501, "annotation": null}, {"text": "a", "start": 502, "end": 503, "annotation": null}, {"text": "log", "start": 504, "end": 507, "annotation": null}, {"text": "-", "start": 507, "end": 508, "annotation": null}, {"text": "normal", "start": 508, "end": 514, "annotation": null}, {"text": "size", "start": 515, "end": 519, "annotation": null}, {"text": "distribution", "start": 520, "end": 532, "annotation": null}, {"text": ",", "start": 532, "end": 533, "annotation": null}, {"text": "the", "start": 534, "end": 537, "annotation": null}, {"text": "precipitate", "start": 538, "end": 549, "annotation": null}, {"text": "extinction", "start": 550, "end": 560, "annotation": null}, {"text": "spectra", "start": 561, "end": 568, "annotation": null}, {"text": "were", "start": 569, "end": 573, "annotation": null}, {"text": "calculated", "start": 574, "end": 584, "annotation": null}, {"text": "according", "start": 585, "end": 594, "annotation": null}, {"text": "to", "start": 595, "end": 597, "annotation": null}, {"text": "Mie", "start": 598, "end": 601, "annotation": null}, {"text": "theory", "start": 602, "end": 608, "annotation": null}, {"text": "within", "start": 609, "end": 615, "annotation": null}, {"text": "the", "start": 616, "end": 619, "annotation": null}, {"text": "electric", "start": 620, "end": 628, "annotation": null}, {"text": "and", "start": 629, "end": 632, "annotation": null}, {"text": "magnetic", "start": 633, "end": 641, "annotation": null}, {"text": "dipole", "start": 642, "end": 648, "annotation": null}, {"text": "and", "start": 649, "end": 652, "annotation": null}, {"text": "electric", "start": 653, "end": 661, "annotation": null}, {"text": "quadrupole", "start": 662, "end": 672, "annotation": null}, {"text": "approximation", "start": 673, "end": 686, "annotation": null}, {"text": ".", "start": 686, "end": 687, "annotation": null}], [{"text": "A", "start": 688, "end": 689, "annotation": null}, {"text": "comparison", "start": 690, "end": 700, "annotation": null}, {"text": "with", "start": 701, "end": 705, "annotation": null}, {"text": "the", "start": 706, "end": 709, "annotation": null}, {"text": "experimental", "start": 710, "end": 722, "annotation": null}, {"text": "spectra", "start": 723, "end": 730, "annotation": null}, {"text": "identifies", "start": 731, "end": 741, "annotation": null}, {"text": "the", "start": 742, "end": 745, "annotation": null}, {"text": "precipitates", "start": 746, "end": 758, "annotation": null}, {"text": "and", "start": 759, "end": 762, "annotation": null}, {"text": "enables", "start": 763, "end": 770, "annotation": null}, {"text": "estimation", "start": 771, "end": 781, "annotation": null}, {"text": "of", "start": 782, "end": 784, "annotation": null}, {"text": "their", "start": 785, "end": 790, "annotation": null}, {"text": "sizes", "start": 791, "end": 796, "annotation": null}, {"text": "and", "start": 797, "end": 800, "annotation": null}, {"text": "total", "start": 801, "end": 806, "annotation": null}, {"text": "number", "start": 807, "end": 813, "annotation": null}, {"text": "density", "start": 814, "end": 821, "annotation": null}, {"text": ".", "start": 821, "end": 822, "annotation": null}], [{"text": "In", "start": 823, "end": 825, "annotation": null}, {"text": "this", "start": 826, "end": 830, "annotation": null}, {"text": "investigation", "start": 831, "end": 844, "annotation": null}, {"text": ",", "start": 844, "end": 845, "annotation": null}, {"text": "both", "start": 846, "end": 850, "annotation": null}, {"text": "undoped", "start": 851, "end": 858, "annotation": null}, {"text": "and", "start": 859, "end": 862, "annotation": null}, {"text": "In-doped", "start": 863, "end": 871, "annotation": "DOPANT"}, {"text": "CdTe", "start": 872, "end": 876, "annotation": "BASEMAT"}, {"text": "crystals", "start": 877, "end": 885, "annotation": "BASEMAT"}, {"text": "grown", "start": 886, "end": 891, "annotation": null}, {"text": "from", "start": 892, "end": 896, "annotation": null}, {"text": "stoichiometric", "start": 897, "end": 911, "annotation": null}, {"text": "melts", "start": 912, "end": 917, "annotation": null}, {"text": "by", "start": 918, "end": 920, "annotation": null}, {"text": "vertical", "start": 921, "end": 929, "annotation": null}, {"text": "asymmetric", "start": 930, "end": 940, "annotation": null}, {"text": "Bridgman", "start": 941, "end": 949, "annotation": null}, {"text": "method", "start": 950, "end": 956, "annotation": null}, {"text": "were", "start": 957, "end": 961, "annotation": null}, {"text": "used", "start": 962, "end": 966, "annotation": null}, {"text": ".", "start": 966, "end": 967, "annotation": null}], [{"text": "It", "start": 968, "end": 970, "annotation": null}, {"text": "was", "start": 971, "end": 974, "annotation": null}, {"text": "found", "start": 975, "end": 980, "annotation": null}, {"text": "that", "start": 981, "end": 985, "annotation": null}, {"text": "In", "start": 986, "end": 988, "annotation": "DOPANT"}, {"text": "doping", "start": 989, "end": 995, "annotation": null}, {"text": ",", "start": 995, "end": 996, "annotation": null}, {"text": "in", "start": 997, "end": 999, "annotation": null}, {"text": "general", "start": 1000, "end": 1007, "annotation": null}, {"text": ",", "start": 1007, "end": 1008, "annotation": null}, {"text": "suppresses", "start": 1009, "end": 1019, "annotation": null}, {"text": "Te", "start": 1020, "end": 1022, "annotation": null}, {"text": "precipitation", "start": 1023, "end": 1036, "annotation": null}, {"text": ".", "start": 1036, "end": 1037, "annotation": null}], [{"text": "At", "start": 1038, "end": 1040, "annotation": null}, {"text": "high", "start": 1041, "end": 1045, "annotation": null}, {"text": "doping", "start": 1046, "end": 1052, "annotation": null}, {"text": "level", "start": 1053, "end": 1058, "annotation": null}, {"text": "(", "start": 1059, "end": 1060, "annotation": null}, {"text": "melt", "start": 1060, "end": 1064, "annotation": null}, {"text": "containing", "start": 1065, "end": 1075, "annotation": null}, {"text": "\u223c", "start": 1075, "end": 1076, "annotation": "DOPMODQ"}, {"text": "1019", "start": 1076, "end": 1080, "annotation": "DOPMODQ"}, {"text": "In", "start": 1081, "end": 1083, "annotation": "DOPMODQ"}, {"text": "atoms", "start": 1084, "end": 1089, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 1090, "end": 1094, "annotation": "DOPMODQ"}, {"text": ")", "start": 1094, "end": 1095, "annotation": null}, {"text": ",", "start": 1095, "end": 1096, "annotation": null}, {"text": "the", "start": 1097, "end": 1100, "annotation": null}, {"text": "formation", "start": 1101, "end": 1110, "annotation": null}, {"text": "of", "start": 1111, "end": 1113, "annotation": null}, {"text": "In2Te2", "start": 1114, "end": 1120, "annotation": null}, {"text": "is", "start": 1121, "end": 1123, "annotation": null}, {"text": "also", "start": 1124, "end": 1128, "annotation": null}, {"text": "indicated", "start": 1129, "end": 1138, "annotation": null}, {"text": ".", "start": 1138, "end": 1139, "annotation": null}], [{"text": "It", "start": 1140, "end": 1142, "annotation": null}, {"text": "is", "start": 1143, "end": 1145, "annotation": null}, {"text": "demonstrated", "start": 1146, "end": 1158, "annotation": null}, {"text": "that", "start": 1159, "end": 1163, "annotation": null}, {"text": "the", "start": 1164, "end": 1167, "annotation": null}, {"text": "Mie", "start": 1168, "end": 1171, "annotation": null}, {"text": "extinction", "start": 1172, "end": 1182, "annotation": null}, {"text": "analysis", "start": 1183, "end": 1191, "annotation": null}, {"text": "offers", "start": 1192, "end": 1198, "annotation": null}, {"text": "an", "start": 1199, "end": 1201, "annotation": null}, {"text": ",", "start": 1201, "end": 1202, "annotation": null}, {"text": "expedient", "start": 1203, "end": 1212, "annotation": null}, {"text": "method", "start": 1213, "end": 1219, "annotation": null}, {"text": "to", "start": 1220, "end": 1222, "annotation": null}, {"text": "rapidly", "start": 1223, "end": 1230, "annotation": null}, {"text": "analyze", "start": 1231, "end": 1238, "annotation": null}, {"text": "the", "start": 1239, "end": 1242, "annotation": null}, {"text": "precipitates", "start": 1243, "end": 1255, "annotation": null}, {"text": "in", "start": 1256, "end": 1258, "annotation": null}, {"text": "CdTe", "start": 1259, "end": 1263, "annotation": null}, {"text": "and", "start": 1264, "end": 1267, "annotation": null}, {"text": "in", "start": 1268, "end": 1270, "annotation": null}, {"text": "similar", "start": 1271, "end": 1278, "annotation": null}, {"text": "other", "start": 1279, "end": 1284, "annotation": null}, {"text": "wide", "start": 1285, "end": 1289, "annotation": null}, {"text": "gap", "start": 1290, "end": 1293, "annotation": null}, {"text": "materials", "start": 1294, "end": 1303, "annotation": null}, {"text": "in", "start": 1304, "end": 1306, "annotation": null}, {"text": "a", "start": 1307, "end": 1308, "annotation": null}, {"text": "nondestructive", "start": 1309, "end": 1323, "annotation": null}, {"text": "manner", "start": 1324, "end": 1330, "annotation": null}, {"text": ".", "start": 1330, "end": 1331, "annotation": null}]]} -{"remark": "doping_annt1", "text": "\u00a9 2015 IOP Publishing Ltd. The screening current density (J) and vortex pinning properties for are studied in optimally hole-doped Ba0.6K0.4Fe2As2 single crystals with a superconducting transition of Tc = 38.6 K. We utilize the irreversible magnetization and its relaxation to evaluate the screening current density and vortex dynamics before and after the introduction of point defects created by 3-MeV proton (H+) irradiation with a dose of /cm2. In the as-grown crystal, both J and vortex dynamics are strongly influenced by temperature and magnetic field, indicating that the predominant pinning is not the weak-collective pinning but the strong pinning. With an introduction of point defects, J in the -irradiated crystal at 2 K reaches A cm-2, which is one of the largest values in iron-based superconductors. In contrast to the as-grown sample, the sensitivity to the temperature and magnetic field becomes quite mild, and the vortex system is described by a simple weak-collective pinning scenario.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 27, "end": 30, "annotation": null}, {"text": "screening", "start": 31, "end": 40, "annotation": null}, {"text": "current", "start": 41, "end": 48, "annotation": null}, {"text": "density", "start": 49, "end": 56, "annotation": null}, {"text": "(", "start": 57, "end": 58, "annotation": null}, {"text": "J", "start": 58, "end": 59, "annotation": null}, {"text": ")", "start": 59, "end": 60, "annotation": null}, {"text": "and", "start": 61, "end": 64, "annotation": null}, {"text": "vortex", "start": 65, "end": 71, "annotation": null}, {"text": "pinning", "start": 72, "end": 79, "annotation": null}, {"text": "properties", "start": 80, "end": 90, "annotation": null}, {"text": "for", "start": 91, "end": 94, "annotation": null}, {"text": "are", "start": 95, "end": 98, "annotation": null}, {"text": "studied", "start": 99, "end": 106, "annotation": null}, {"text": "in", "start": 107, "end": 109, "annotation": null}, {"text": "optimally", "start": 110, "end": 119, "annotation": null}, {"text": "hole", "start": 120, "end": 124, "annotation": "DOPANT"}, {"text": "-", "start": 124, "end": 125, "annotation": null}, {"text": "doped", "start": 125, "end": 130, "annotation": null}, {"text": "Ba0.6K0.4Fe2As2", "start": 131, "end": 146, "annotation": "BASEMAT"}, {"text": "single", "start": 147, "end": 153, "annotation": null}, {"text": "crystals", "start": 154, "end": 162, "annotation": null}, {"text": "with", "start": 163, "end": 167, "annotation": null}, {"text": "a", "start": 168, "end": 169, "annotation": null}, {"text": "superconducting", "start": 170, "end": 185, "annotation": null}, {"text": "transition", "start": 186, "end": 196, "annotation": null}, {"text": "of", "start": 197, "end": 199, "annotation": null}, {"text": "Tc", "start": 200, "end": 202, "annotation": null}, {"text": "=", "start": 203, "end": 204, "annotation": null}, {"text": "38.6", "start": 205, "end": 209, "annotation": null}, {"text": "K", "start": 210, "end": 211, "annotation": null}, {"text": ".", "start": 211, "end": 212, "annotation": null}], [{"text": "We", "start": 213, "end": 215, "annotation": null}, {"text": "utilize", "start": 216, "end": 223, "annotation": null}, {"text": "the", "start": 224, "end": 227, "annotation": null}, {"text": "irreversible", "start": 228, "end": 240, "annotation": null}, {"text": "magnetization", "start": 241, "end": 254, "annotation": null}, {"text": "and", "start": 255, "end": 258, "annotation": null}, {"text": "its", "start": 259, "end": 262, "annotation": null}, {"text": "relaxation", "start": 263, "end": 273, "annotation": null}, {"text": "to", "start": 274, "end": 276, "annotation": null}, {"text": "evaluate", "start": 277, "end": 285, "annotation": null}, {"text": "the", "start": 286, "end": 289, "annotation": null}, {"text": "screening", "start": 290, "end": 299, "annotation": null}, {"text": "current", "start": 300, "end": 307, "annotation": null}, {"text": "density", "start": 308, "end": 315, "annotation": null}, {"text": "and", "start": 316, "end": 319, "annotation": null}, {"text": "vortex", "start": 320, "end": 326, "annotation": null}, {"text": "dynamics", "start": 327, "end": 335, "annotation": null}, {"text": "before", "start": 336, "end": 342, "annotation": null}, {"text": "and", "start": 343, "end": 346, "annotation": null}, {"text": "after", "start": 347, "end": 352, "annotation": null}, {"text": "the", "start": 353, "end": 356, "annotation": null}, {"text": "introduction", "start": 357, "end": 369, "annotation": null}, {"text": "of", "start": 370, "end": 372, "annotation": null}, {"text": "point", "start": 373, "end": 378, "annotation": null}, {"text": "defects", "start": 379, "end": 386, "annotation": null}, {"text": "created", "start": 387, "end": 394, "annotation": null}, {"text": "by", "start": 395, "end": 397, "annotation": null}, {"text": "3-MeV", "start": 398, "end": 403, "annotation": null}, {"text": "proton", "start": 404, "end": 410, "annotation": null}, {"text": "(", "start": 411, "end": 412, "annotation": null}, {"text": "H+", "start": 412, "end": 414, "annotation": null}, {"text": ")", "start": 414, "end": 415, "annotation": null}, {"text": "irradiation", "start": 416, "end": 427, "annotation": null}, {"text": "with", "start": 428, "end": 432, "annotation": null}, {"text": "a", "start": 433, "end": 434, "annotation": null}, {"text": "dose", "start": 435, "end": 439, "annotation": null}, {"text": "of", "start": 440, "end": 442, "annotation": null}, {"text": "/", "start": 443, "end": 444, "annotation": null}, {"text": "cm2", "start": 444, "end": 447, "annotation": null}, {"text": ".", "start": 447, "end": 448, "annotation": null}], [{"text": "In", "start": 449, "end": 451, "annotation": null}, {"text": "the", "start": 452, "end": 455, "annotation": null}, {"text": "as-grown", "start": 456, "end": 464, "annotation": null}, {"text": "crystal", "start": 465, "end": 472, "annotation": null}, {"text": ",", "start": 472, "end": 473, "annotation": null}, {"text": "both", "start": 474, "end": 478, "annotation": null}, {"text": "J", "start": 479, "end": 480, "annotation": null}, {"text": "and", "start": 481, "end": 484, "annotation": null}, {"text": "vortex", "start": 485, "end": 491, "annotation": null}, {"text": "dynamics", "start": 492, "end": 500, "annotation": null}, {"text": "are", "start": 501, "end": 504, "annotation": null}, {"text": "strongly", "start": 505, "end": 513, "annotation": null}, {"text": "influenced", "start": 514, "end": 524, "annotation": null}, {"text": "by", "start": 525, "end": 527, "annotation": null}, {"text": "temperature", "start": 528, "end": 539, "annotation": null}, {"text": "and", "start": 540, "end": 543, "annotation": null}, {"text": "magnetic", "start": 544, "end": 552, "annotation": null}, {"text": "field", "start": 553, "end": 558, "annotation": null}, {"text": ",", "start": 558, "end": 559, "annotation": null}, {"text": "indicating", "start": 560, "end": 570, "annotation": null}, {"text": "that", "start": 571, "end": 575, "annotation": null}, {"text": "the", "start": 576, "end": 579, "annotation": null}, {"text": "predominant", "start": 580, "end": 591, "annotation": null}, {"text": "pinning", "start": 592, "end": 599, "annotation": null}, {"text": "is", "start": 600, "end": 602, "annotation": null}, {"text": "not", "start": 603, "end": 606, "annotation": null}, {"text": "the", "start": 607, "end": 610, "annotation": null}, {"text": "weak", "start": 611, "end": 615, "annotation": null}, {"text": "-", "start": 615, "end": 616, "annotation": null}, {"text": "collective", "start": 616, "end": 626, "annotation": null}, {"text": "pinning", "start": 627, "end": 634, "annotation": null}, {"text": "but", "start": 635, "end": 638, "annotation": null}, {"text": "the", "start": 639, "end": 642, "annotation": null}, {"text": "strong", "start": 643, "end": 649, "annotation": null}, {"text": "pinning", "start": 650, "end": 657, "annotation": null}, {"text": ".", "start": 657, "end": 658, "annotation": null}], [{"text": "With", "start": 659, "end": 663, "annotation": null}, {"text": "an", "start": 664, "end": 666, "annotation": null}, {"text": "introduction", "start": 667, "end": 679, "annotation": null}, {"text": "of", "start": 680, "end": 682, "annotation": null}, {"text": "point", "start": 683, "end": 688, "annotation": null}, {"text": "defects", "start": 689, "end": 696, "annotation": null}, {"text": ",", "start": 696, "end": 697, "annotation": null}, {"text": "J", "start": 698, "end": 699, "annotation": null}, {"text": "in", "start": 700, "end": 702, "annotation": null}, {"text": "the", "start": 703, "end": 706, "annotation": null}, {"text": "-irradiated", "start": 707, "end": 718, "annotation": null}, {"text": "crystal", "start": 719, "end": 726, "annotation": null}, {"text": "at", "start": 727, "end": 729, "annotation": null}, {"text": "2", "start": 730, "end": 731, "annotation": null}, {"text": "K", "start": 732, "end": 733, "annotation": null}, {"text": "reaches", "start": 734, "end": 741, "annotation": null}, {"text": "A", "start": 742, "end": 743, "annotation": null}, {"text": "cm-2", "start": 744, "end": 748, "annotation": null}, {"text": ",", "start": 748, "end": 749, "annotation": null}, {"text": "which", "start": 750, "end": 755, "annotation": null}, {"text": "is", "start": 756, "end": 758, "annotation": null}, {"text": "one", "start": 759, "end": 762, "annotation": null}, {"text": "of", "start": 763, "end": 765, "annotation": null}, {"text": "the", "start": 766, "end": 769, "annotation": null}, {"text": "largest", "start": 770, "end": 777, "annotation": null}, {"text": "values", "start": 778, "end": 784, "annotation": null}, {"text": "in", "start": 785, "end": 787, "annotation": null}, {"text": "iron", "start": 788, "end": 792, "annotation": null}, {"text": "-", "start": 792, "end": 793, "annotation": null}, {"text": "based", "start": 793, "end": 798, "annotation": null}, {"text": "superconductors", "start": 799, "end": 814, "annotation": null}, {"text": ".", "start": 814, "end": 815, "annotation": null}], [{"text": "In", "start": 816, "end": 818, "annotation": null}, {"text": "contrast", "start": 819, "end": 827, "annotation": null}, {"text": "to", "start": 828, "end": 830, "annotation": null}, {"text": "the", "start": 831, "end": 834, "annotation": null}, {"text": "as-grown", "start": 835, "end": 843, "annotation": null}, {"text": "sample", "start": 844, "end": 850, "annotation": null}, {"text": ",", "start": 850, "end": 851, "annotation": null}, {"text": "the", "start": 852, "end": 855, "annotation": null}, {"text": "sensitivity", "start": 856, "end": 867, "annotation": null}, {"text": "to", "start": 868, "end": 870, "annotation": null}, {"text": "the", "start": 871, "end": 874, "annotation": null}, {"text": "temperature", "start": 875, "end": 886, "annotation": null}, {"text": "and", "start": 887, "end": 890, "annotation": null}, {"text": "magnetic", "start": 891, "end": 899, "annotation": null}, {"text": "field", "start": 900, "end": 905, "annotation": null}, {"text": "becomes", "start": 906, "end": 913, "annotation": null}, {"text": "quite", "start": 914, "end": 919, "annotation": null}, {"text": "mild", "start": 920, "end": 924, "annotation": null}, {"text": ",", "start": 924, "end": 925, "annotation": null}, {"text": "and", "start": 926, "end": 929, "annotation": null}, {"text": "the", "start": 930, "end": 933, "annotation": null}, {"text": "vortex", "start": 934, "end": 940, "annotation": null}, {"text": "system", "start": 941, "end": 947, "annotation": null}, {"text": "is", "start": 948, "end": 950, "annotation": null}, {"text": "described", "start": 951, "end": 960, "annotation": null}, {"text": "by", "start": 961, "end": 963, "annotation": null}, {"text": "a", "start": 964, "end": 965, "annotation": null}, {"text": "simple", "start": 966, "end": 972, "annotation": null}, {"text": "weak", "start": 973, "end": 977, "annotation": null}, {"text": "-", "start": 977, "end": 978, "annotation": null}, {"text": "collective", "start": 978, "end": 988, "annotation": null}, {"text": "pinning", "start": 989, "end": 996, "annotation": null}, {"text": "scenario", "start": 997, "end": 1005, "annotation": null}, {"text": ".", "start": 1005, "end": 1006, "annotation": null}]]} +{"remark": "doping_annt3", "text": "Below gap optical losses in as-grown n-type CdTe crystals were analyzed in terms of free carrier absorption and Mie extinction due to Te precipitates. Experimental absorption spectra measured between 2 to 20 \u03bcm exhibited the well-known free carrier absorption behavior \u03b1FCA\u223c\u03bbx with x=3 due to scattering by polar optical phonons. In shorter wavelength regions below 6 \u03bcm, however, additional contributions to the light loss due to absorption and scattering by precipitates were also observed. Assuming a log-normal size distribution, the precipitate extinction spectra were calculated according to Mie theory within the electric and magnetic dipole and electric quadrupole approximation. A comparison with the experimental spectra identifies the precipitates and enables estimation of their sizes and total number density. In this investigation, both undoped and In-doped CdTe crystals grown from stoichiometric melts by vertical asymmetric Bridgman method were used. It was found that In doping, in general, suppresses Te precipitation. At high doping level (melt containing\u223c1019 In atoms cm\u22123), the formation of In2Te2 is also indicated. It is demonstrated that the Mie extinction analysis offers an, expedient method to rapidly analyze the precipitates in CdTe and in similar other wide gap materials in a nondestructive manner.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Below", "start": 0, "end": 5, "annotation": null}, {"text": "gap", "start": 6, "end": 9, "annotation": null}, {"text": "optical", "start": 10, "end": 17, "annotation": null}, {"text": "losses", "start": 18, "end": 24, "annotation": null}, {"text": "in", "start": 25, "end": 27, "annotation": null}, {"text": "as-grown", "start": 28, "end": 36, "annotation": null}, {"text": "n", "start": 37, "end": 38, "annotation": "DOPANT"}, {"text": "-", "start": 38, "end": 39, "annotation": "DOPANT"}, {"text": "type", "start": 39, "end": 43, "annotation": "DOPANT"}, {"text": "CdTe", "start": 44, "end": 48, "annotation": "BASEMAT"}, {"text": "crystals", "start": 49, "end": 57, "annotation": "BASEMAT"}, {"text": "were", "start": 58, "end": 62, "annotation": null}, {"text": "analyzed", "start": 63, "end": 71, "annotation": null}, {"text": "in", "start": 72, "end": 74, "annotation": null}, {"text": "terms", "start": 75, "end": 80, "annotation": null}, {"text": "of", "start": 81, "end": 83, "annotation": null}, {"text": "free", "start": 84, "end": 88, "annotation": null}, {"text": "carrier", "start": 89, "end": 96, "annotation": null}, {"text": "absorption", "start": 97, "end": 107, "annotation": null}, {"text": "and", "start": 108, "end": 111, "annotation": null}, {"text": "Mie", "start": 112, "end": 115, "annotation": null}, {"text": "extinction", "start": 116, "end": 126, "annotation": null}, {"text": "due", "start": 127, "end": 130, "annotation": null}, {"text": "to", "start": 131, "end": 133, "annotation": null}, {"text": "Te", "start": 134, "end": 136, "annotation": null}, {"text": "precipitates", "start": 137, "end": 149, "annotation": null}, {"text": ".", "start": 149, "end": 150, "annotation": null}], [{"text": "Experimental", "start": 151, "end": 163, "annotation": null}, {"text": "absorption", "start": 164, "end": 174, "annotation": null}, {"text": "spectra", "start": 175, "end": 182, "annotation": null}, {"text": "measured", "start": 183, "end": 191, "annotation": null}, {"text": "between", "start": 192, "end": 199, "annotation": null}, {"text": "2", "start": 200, "end": 201, "annotation": null}, {"text": "to", "start": 202, "end": 204, "annotation": null}, {"text": "20", "start": 205, "end": 207, "annotation": null}, {"text": "\u03bcm", "start": 208, "end": 210, "annotation": null}, {"text": "exhibited", "start": 211, "end": 220, "annotation": null}, {"text": "the", "start": 221, "end": 224, "annotation": null}, {"text": "well", "start": 225, "end": 229, "annotation": null}, {"text": "-", "start": 229, "end": 230, "annotation": null}, {"text": "known", "start": 230, "end": 235, "annotation": null}, {"text": "free", "start": 236, "end": 240, "annotation": null}, {"text": "carrier", "start": 241, "end": 248, "annotation": null}, {"text": "absorption", "start": 249, "end": 259, "annotation": null}, {"text": "behavior", "start": 260, "end": 268, "annotation": null}, {"text": "\u03b1FCA", "start": 269, "end": 273, "annotation": null}, {"text": "\u223c", "start": 273, "end": 274, "annotation": null}, {"text": "\u03bbx", "start": 274, "end": 276, "annotation": null}, {"text": "with", "start": 277, "end": 281, "annotation": null}, {"text": "x", "start": 282, "end": 283, "annotation": null}, {"text": "=", "start": 283, "end": 284, "annotation": null}, {"text": "3", "start": 284, "end": 285, "annotation": null}, {"text": "due", "start": 286, "end": 289, "annotation": null}, {"text": "to", "start": 290, "end": 292, "annotation": null}, {"text": "scattering", "start": 293, "end": 303, "annotation": null}, {"text": "by", "start": 304, "end": 306, "annotation": null}, {"text": "polar", "start": 307, "end": 312, "annotation": null}, {"text": "optical", "start": 313, "end": 320, "annotation": null}, {"text": "phonons", "start": 321, "end": 328, "annotation": null}, {"text": ".", "start": 328, "end": 329, "annotation": null}], [{"text": "In", "start": 330, "end": 332, "annotation": null}, {"text": "shorter", "start": 333, "end": 340, "annotation": null}, {"text": "wavelength", "start": 341, "end": 351, "annotation": null}, {"text": "regions", "start": 352, "end": 359, "annotation": null}, {"text": "below", "start": 360, "end": 365, "annotation": null}, {"text": "6", "start": 366, "end": 367, "annotation": null}, {"text": "\u03bcm", "start": 368, "end": 370, "annotation": null}, {"text": ",", "start": 370, "end": 371, "annotation": null}, {"text": "however", "start": 372, "end": 379, "annotation": null}, {"text": ",", "start": 379, "end": 380, "annotation": null}, {"text": "additional", "start": 381, "end": 391, "annotation": null}, {"text": "contributions", "start": 392, "end": 405, "annotation": null}, {"text": "to", "start": 406, "end": 408, "annotation": null}, {"text": "the", "start": 409, "end": 412, "annotation": null}, {"text": "light", "start": 413, "end": 418, "annotation": null}, {"text": "loss", "start": 419, "end": 423, "annotation": null}, {"text": "due", "start": 424, "end": 427, "annotation": null}, {"text": "to", "start": 428, "end": 430, "annotation": null}, {"text": "absorption", "start": 431, "end": 441, "annotation": null}, {"text": "and", "start": 442, "end": 445, "annotation": null}, {"text": "scattering", "start": 446, "end": 456, "annotation": null}, {"text": "by", "start": 457, "end": 459, "annotation": null}, {"text": "precipitates", "start": 460, "end": 472, "annotation": null}, {"text": "were", "start": 473, "end": 477, "annotation": null}, {"text": "also", "start": 478, "end": 482, "annotation": null}, {"text": "observed", "start": 483, "end": 491, "annotation": null}, {"text": ".", "start": 491, "end": 492, "annotation": null}], [{"text": "Assuming", "start": 493, "end": 501, "annotation": null}, {"text": "a", "start": 502, "end": 503, "annotation": null}, {"text": "log", "start": 504, "end": 507, "annotation": null}, {"text": "-", "start": 507, "end": 508, "annotation": null}, {"text": "normal", "start": 508, "end": 514, "annotation": null}, {"text": "size", "start": 515, "end": 519, "annotation": null}, {"text": "distribution", "start": 520, "end": 532, "annotation": null}, {"text": ",", "start": 532, "end": 533, "annotation": null}, {"text": "the", "start": 534, "end": 537, "annotation": null}, {"text": "precipitate", "start": 538, "end": 549, "annotation": null}, {"text": "extinction", "start": 550, "end": 560, "annotation": null}, {"text": "spectra", "start": 561, "end": 568, "annotation": null}, {"text": "were", "start": 569, "end": 573, "annotation": null}, {"text": "calculated", "start": 574, "end": 584, "annotation": null}, {"text": "according", "start": 585, "end": 594, "annotation": null}, {"text": "to", "start": 595, "end": 597, "annotation": null}, {"text": "Mie", "start": 598, "end": 601, "annotation": null}, {"text": "theory", "start": 602, "end": 608, "annotation": null}, {"text": "within", "start": 609, "end": 615, "annotation": null}, {"text": "the", "start": 616, "end": 619, "annotation": null}, {"text": "electric", "start": 620, "end": 628, "annotation": null}, {"text": "and", "start": 629, "end": 632, "annotation": null}, {"text": "magnetic", "start": 633, "end": 641, "annotation": null}, {"text": "dipole", "start": 642, "end": 648, "annotation": null}, {"text": "and", "start": 649, "end": 652, "annotation": null}, {"text": "electric", "start": 653, "end": 661, "annotation": null}, {"text": "quadrupole", "start": 662, "end": 672, "annotation": null}, {"text": "approximation", "start": 673, "end": 686, "annotation": null}, {"text": ".", "start": 686, "end": 687, "annotation": null}], [{"text": "A", "start": 688, "end": 689, "annotation": null}, {"text": "comparison", "start": 690, "end": 700, "annotation": null}, {"text": "with", "start": 701, "end": 705, "annotation": null}, {"text": "the", "start": 706, "end": 709, "annotation": null}, {"text": "experimental", "start": 710, "end": 722, "annotation": null}, {"text": "spectra", "start": 723, "end": 730, "annotation": null}, {"text": "identifies", "start": 731, "end": 741, "annotation": null}, {"text": "the", "start": 742, "end": 745, "annotation": null}, {"text": "precipitates", "start": 746, "end": 758, "annotation": null}, {"text": "and", "start": 759, "end": 762, "annotation": null}, {"text": "enables", "start": 763, "end": 770, "annotation": null}, {"text": "estimation", "start": 771, "end": 781, "annotation": null}, {"text": "of", "start": 782, "end": 784, "annotation": null}, {"text": "their", "start": 785, "end": 790, "annotation": null}, {"text": "sizes", "start": 791, "end": 796, "annotation": null}, {"text": "and", "start": 797, "end": 800, "annotation": null}, {"text": "total", "start": 801, "end": 806, "annotation": null}, {"text": "number", "start": 807, "end": 813, "annotation": null}, {"text": "density", "start": 814, "end": 821, "annotation": null}, {"text": ".", "start": 821, "end": 822, "annotation": null}], [{"text": "In", "start": 823, "end": 825, "annotation": null}, {"text": "this", "start": 826, "end": 830, "annotation": null}, {"text": "investigation", "start": 831, "end": 844, "annotation": null}, {"text": ",", "start": 844, "end": 845, "annotation": null}, {"text": "both", "start": 846, "end": 850, "annotation": null}, {"text": "undoped", "start": 851, "end": 858, "annotation": null}, {"text": "and", "start": 859, "end": 862, "annotation": null}, {"text": "In-doped", "start": 863, "end": 871, "annotation": "DOPANT"}, {"text": "CdTe", "start": 872, "end": 876, "annotation": "BASEMAT"}, {"text": "crystals", "start": 877, "end": 885, "annotation": "BASEMAT"}, {"text": "grown", "start": 886, "end": 891, "annotation": null}, {"text": "from", "start": 892, "end": 896, "annotation": null}, {"text": "stoichiometric", "start": 897, "end": 911, "annotation": null}, {"text": "melts", "start": 912, "end": 917, "annotation": null}, {"text": "by", "start": 918, "end": 920, "annotation": null}, {"text": "vertical", "start": 921, "end": 929, "annotation": null}, {"text": "asymmetric", "start": 930, "end": 940, "annotation": null}, {"text": "Bridgman", "start": 941, "end": 949, "annotation": null}, {"text": "method", "start": 950, "end": 956, "annotation": null}, {"text": "were", "start": 957, "end": 961, "annotation": null}, {"text": "used", "start": 962, "end": 966, "annotation": null}, {"text": ".", "start": 966, "end": 967, "annotation": null}], [{"text": "It", "start": 968, "end": 970, "annotation": null}, {"text": "was", "start": 971, "end": 974, "annotation": null}, {"text": "found", "start": 975, "end": 980, "annotation": null}, {"text": "that", "start": 981, "end": 985, "annotation": null}, {"text": "In", "start": 986, "end": 988, "annotation": "DOPANT"}, {"text": "doping", "start": 989, "end": 995, "annotation": null}, {"text": ",", "start": 995, "end": 996, "annotation": null}, {"text": "in", "start": 997, "end": 999, "annotation": null}, {"text": "general", "start": 1000, "end": 1007, "annotation": null}, {"text": ",", "start": 1007, "end": 1008, "annotation": null}, {"text": "suppresses", "start": 1009, "end": 1019, "annotation": null}, {"text": "Te", "start": 1020, "end": 1022, "annotation": null}, {"text": "precipitation", "start": 1023, "end": 1036, "annotation": null}, {"text": ".", "start": 1036, "end": 1037, "annotation": null}], [{"text": "At", "start": 1038, "end": 1040, "annotation": null}, {"text": "high", "start": 1041, "end": 1045, "annotation": null}, {"text": "doping", "start": 1046, "end": 1052, "annotation": null}, {"text": "level", "start": 1053, "end": 1058, "annotation": null}, {"text": "(", "start": 1059, "end": 1060, "annotation": null}, {"text": "melt", "start": 1060, "end": 1064, "annotation": null}, {"text": "containing", "start": 1065, "end": 1075, "annotation": null}, {"text": "\u223c", "start": 1075, "end": 1076, "annotation": "DOPMODQ"}, {"text": "1019", "start": 1076, "end": 1080, "annotation": "DOPMODQ"}, {"text": "In", "start": 1081, "end": 1083, "annotation": "DOPMODQ"}, {"text": "atoms", "start": 1084, "end": 1089, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 1090, "end": 1094, "annotation": "DOPMODQ"}, {"text": ")", "start": 1094, "end": 1095, "annotation": null}, {"text": ",", "start": 1095, "end": 1096, "annotation": null}, {"text": "the", "start": 1097, "end": 1100, "annotation": null}, {"text": "formation", "start": 1101, "end": 1110, "annotation": null}, {"text": "of", "start": 1111, "end": 1113, "annotation": null}, {"text": "In2Te2", "start": 1114, "end": 1120, "annotation": null}, {"text": "is", "start": 1121, "end": 1123, "annotation": null}, {"text": "also", "start": 1124, "end": 1128, "annotation": null}, {"text": "indicated", "start": 1129, "end": 1138, "annotation": null}, {"text": ".", "start": 1138, "end": 1139, "annotation": null}], [{"text": "It", "start": 1140, "end": 1142, "annotation": null}, {"text": "is", "start": 1143, "end": 1145, "annotation": null}, {"text": "demonstrated", "start": 1146, "end": 1158, "annotation": null}, {"text": "that", "start": 1159, "end": 1163, "annotation": null}, {"text": "the", "start": 1164, "end": 1167, "annotation": null}, {"text": "Mie", "start": 1168, "end": 1171, "annotation": null}, {"text": "extinction", "start": 1172, "end": 1182, "annotation": null}, {"text": "analysis", "start": 1183, "end": 1191, "annotation": null}, {"text": "offers", "start": 1192, "end": 1198, "annotation": null}, {"text": "an", "start": 1199, "end": 1201, "annotation": null}, {"text": ",", "start": 1201, "end": 1202, "annotation": null}, {"text": "expedient", "start": 1203, "end": 1212, "annotation": null}, {"text": "method", "start": 1213, "end": 1219, "annotation": null}, {"text": "to", "start": 1220, "end": 1222, "annotation": null}, {"text": "rapidly", "start": 1223, "end": 1230, "annotation": null}, {"text": "analyze", "start": 1231, "end": 1238, "annotation": null}, {"text": "the", "start": 1239, "end": 1242, "annotation": null}, {"text": "precipitates", "start": 1243, "end": 1255, "annotation": null}, {"text": "in", "start": 1256, "end": 1258, "annotation": null}, {"text": "CdTe", "start": 1259, "end": 1263, "annotation": null}, {"text": "and", "start": 1264, "end": 1267, "annotation": null}, {"text": "in", "start": 1268, "end": 1270, "annotation": null}, {"text": "similar", "start": 1271, "end": 1278, "annotation": null}, {"text": "other", "start": 1279, "end": 1284, "annotation": null}, {"text": "wide", "start": 1285, "end": 1289, "annotation": null}, {"text": "gap", "start": 1290, "end": 1293, "annotation": null}, {"text": "materials", "start": 1294, "end": 1303, "annotation": null}, {"text": "in", "start": 1304, "end": 1306, "annotation": null}, {"text": "a", "start": 1307, "end": 1308, "annotation": null}, {"text": "nondestructive", "start": 1309, "end": 1323, "annotation": null}, {"text": "manner", "start": 1324, "end": 1330, "annotation": null}, {"text": ".", "start": 1330, "end": 1331, "annotation": null}]], "meta": {"doi": "10.1007/BF02649901"}} +{"remark": "doping_annt1", "text": "\u00a9 2015 IOP Publishing Ltd. The screening current density (J) and vortex pinning properties for are studied in optimally hole-doped Ba0.6K0.4Fe2As2 single crystals with a superconducting transition of Tc = 38.6 K. We utilize the irreversible magnetization and its relaxation to evaluate the screening current density and vortex dynamics before and after the introduction of point defects created by 3-MeV proton (H+) irradiation with a dose of /cm2. In the as-grown crystal, both J and vortex dynamics are strongly influenced by temperature and magnetic field, indicating that the predominant pinning is not the weak-collective pinning but the strong pinning. With an introduction of point defects, J in the -irradiated crystal at 2 K reaches A cm-2, which is one of the largest values in iron-based superconductors. In contrast to the as-grown sample, the sensitivity to the temperature and magnetic field becomes quite mild, and the vortex system is described by a simple weak-collective pinning scenario.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 27, "end": 30, "annotation": null}, {"text": "screening", "start": 31, "end": 40, "annotation": null}, {"text": "current", "start": 41, "end": 48, "annotation": null}, {"text": "density", "start": 49, "end": 56, "annotation": null}, {"text": "(", "start": 57, "end": 58, "annotation": null}, {"text": "J", "start": 58, "end": 59, "annotation": null}, {"text": ")", "start": 59, "end": 60, "annotation": null}, {"text": "and", "start": 61, "end": 64, "annotation": null}, {"text": "vortex", "start": 65, "end": 71, "annotation": null}, {"text": "pinning", "start": 72, "end": 79, "annotation": null}, {"text": "properties", "start": 80, "end": 90, "annotation": null}, {"text": "for", "start": 91, "end": 94, "annotation": null}, {"text": "are", "start": 95, "end": 98, "annotation": null}, {"text": "studied", "start": 99, "end": 106, "annotation": null}, {"text": "in", "start": 107, "end": 109, "annotation": null}, {"text": "optimally", "start": 110, "end": 119, "annotation": null}, {"text": "hole", "start": 120, "end": 124, "annotation": "DOPANT"}, {"text": "-", "start": 124, "end": 125, "annotation": null}, {"text": "doped", "start": 125, "end": 130, "annotation": null}, {"text": "Ba0.6K0.4Fe2As2", "start": 131, "end": 146, "annotation": "BASEMAT"}, {"text": "single", "start": 147, "end": 153, "annotation": null}, {"text": "crystals", "start": 154, "end": 162, "annotation": null}, {"text": "with", "start": 163, "end": 167, "annotation": null}, {"text": "a", "start": 168, "end": 169, "annotation": null}, {"text": "superconducting", "start": 170, "end": 185, "annotation": null}, {"text": "transition", "start": 186, "end": 196, "annotation": null}, {"text": "of", "start": 197, "end": 199, "annotation": null}, {"text": "Tc", "start": 200, "end": 202, "annotation": null}, {"text": "=", "start": 203, "end": 204, "annotation": null}, {"text": "38.6", "start": 205, "end": 209, "annotation": null}, {"text": "K", "start": 210, "end": 211, "annotation": null}, {"text": ".", "start": 211, "end": 212, "annotation": null}], [{"text": "We", "start": 213, "end": 215, "annotation": null}, {"text": "utilize", "start": 216, "end": 223, "annotation": null}, {"text": "the", "start": 224, "end": 227, "annotation": null}, {"text": "irreversible", "start": 228, "end": 240, "annotation": null}, {"text": "magnetization", "start": 241, "end": 254, "annotation": null}, {"text": "and", "start": 255, "end": 258, "annotation": null}, {"text": "its", "start": 259, "end": 262, "annotation": null}, {"text": "relaxation", "start": 263, "end": 273, "annotation": null}, {"text": "to", "start": 274, "end": 276, "annotation": null}, {"text": "evaluate", "start": 277, "end": 285, "annotation": null}, {"text": "the", "start": 286, "end": 289, "annotation": null}, {"text": "screening", "start": 290, "end": 299, "annotation": null}, {"text": "current", "start": 300, "end": 307, "annotation": null}, {"text": "density", "start": 308, "end": 315, "annotation": null}, {"text": "and", "start": 316, "end": 319, "annotation": null}, {"text": "vortex", "start": 320, "end": 326, "annotation": null}, {"text": "dynamics", "start": 327, "end": 335, "annotation": null}, {"text": "before", "start": 336, "end": 342, "annotation": null}, {"text": "and", "start": 343, "end": 346, "annotation": null}, {"text": "after", "start": 347, "end": 352, "annotation": null}, {"text": "the", "start": 353, "end": 356, "annotation": null}, {"text": "introduction", "start": 357, "end": 369, "annotation": null}, {"text": "of", "start": 370, "end": 372, "annotation": null}, {"text": "point", "start": 373, "end": 378, "annotation": null}, {"text": "defects", "start": 379, "end": 386, "annotation": null}, {"text": "created", "start": 387, "end": 394, "annotation": null}, {"text": "by", "start": 395, "end": 397, "annotation": null}, {"text": "3-MeV", "start": 398, "end": 403, "annotation": null}, {"text": "proton", "start": 404, "end": 410, "annotation": null}, {"text": "(", "start": 411, "end": 412, "annotation": null}, {"text": "H+", "start": 412, "end": 414, "annotation": null}, {"text": ")", "start": 414, "end": 415, "annotation": null}, {"text": "irradiation", "start": 416, "end": 427, "annotation": null}, {"text": "with", "start": 428, "end": 432, "annotation": null}, {"text": "a", "start": 433, "end": 434, "annotation": null}, {"text": "dose", "start": 435, "end": 439, "annotation": null}, {"text": "of", "start": 440, "end": 442, "annotation": null}, {"text": "/", "start": 443, "end": 444, "annotation": null}, {"text": "cm2", "start": 444, "end": 447, "annotation": null}, {"text": ".", "start": 447, "end": 448, "annotation": null}], [{"text": "In", "start": 449, "end": 451, "annotation": null}, {"text": "the", "start": 452, "end": 455, "annotation": null}, {"text": "as-grown", "start": 456, "end": 464, "annotation": null}, {"text": "crystal", "start": 465, "end": 472, "annotation": null}, {"text": ",", "start": 472, "end": 473, "annotation": null}, {"text": "both", "start": 474, "end": 478, "annotation": null}, {"text": "J", "start": 479, "end": 480, "annotation": null}, {"text": "and", "start": 481, "end": 484, "annotation": null}, {"text": "vortex", "start": 485, "end": 491, "annotation": null}, {"text": "dynamics", "start": 492, "end": 500, "annotation": null}, {"text": "are", "start": 501, "end": 504, "annotation": null}, {"text": "strongly", "start": 505, "end": 513, "annotation": null}, {"text": "influenced", "start": 514, "end": 524, "annotation": null}, {"text": "by", "start": 525, "end": 527, "annotation": null}, {"text": "temperature", "start": 528, "end": 539, "annotation": null}, {"text": "and", "start": 540, "end": 543, "annotation": null}, {"text": "magnetic", "start": 544, "end": 552, "annotation": null}, {"text": "field", "start": 553, "end": 558, "annotation": null}, {"text": ",", "start": 558, "end": 559, "annotation": null}, {"text": "indicating", "start": 560, "end": 570, "annotation": null}, {"text": "that", "start": 571, "end": 575, "annotation": null}, {"text": "the", "start": 576, "end": 579, "annotation": null}, {"text": "predominant", "start": 580, "end": 591, "annotation": null}, {"text": "pinning", "start": 592, "end": 599, "annotation": null}, {"text": "is", "start": 600, "end": 602, "annotation": null}, {"text": "not", "start": 603, "end": 606, "annotation": null}, {"text": "the", "start": 607, "end": 610, "annotation": null}, {"text": "weak", "start": 611, "end": 615, "annotation": null}, {"text": "-", "start": 615, "end": 616, "annotation": null}, {"text": "collective", "start": 616, "end": 626, "annotation": null}, {"text": "pinning", "start": 627, "end": 634, "annotation": null}, {"text": "but", "start": 635, "end": 638, "annotation": null}, {"text": "the", "start": 639, "end": 642, "annotation": null}, {"text": "strong", "start": 643, "end": 649, "annotation": null}, {"text": "pinning", "start": 650, "end": 657, "annotation": null}, {"text": ".", "start": 657, "end": 658, "annotation": null}], [{"text": "With", "start": 659, "end": 663, "annotation": null}, {"text": "an", "start": 664, "end": 666, "annotation": null}, {"text": "introduction", "start": 667, "end": 679, "annotation": null}, {"text": "of", "start": 680, "end": 682, "annotation": null}, {"text": "point", "start": 683, "end": 688, "annotation": null}, {"text": "defects", "start": 689, "end": 696, "annotation": null}, {"text": ",", "start": 696, "end": 697, "annotation": null}, {"text": "J", "start": 698, "end": 699, "annotation": null}, {"text": "in", "start": 700, "end": 702, "annotation": null}, {"text": "the", "start": 703, "end": 706, "annotation": null}, {"text": "-irradiated", "start": 707, "end": 718, "annotation": null}, {"text": "crystal", "start": 719, "end": 726, "annotation": null}, {"text": "at", "start": 727, "end": 729, "annotation": null}, {"text": "2", "start": 730, "end": 731, "annotation": null}, {"text": "K", "start": 732, "end": 733, "annotation": null}, {"text": "reaches", "start": 734, "end": 741, "annotation": null}, {"text": "A", "start": 742, "end": 743, "annotation": null}, {"text": "cm-2", "start": 744, "end": 748, "annotation": null}, {"text": ",", "start": 748, "end": 749, "annotation": null}, {"text": "which", "start": 750, "end": 755, "annotation": null}, {"text": "is", "start": 756, "end": 758, "annotation": null}, {"text": "one", "start": 759, "end": 762, "annotation": null}, {"text": "of", "start": 763, "end": 765, "annotation": null}, {"text": "the", "start": 766, "end": 769, "annotation": null}, {"text": "largest", "start": 770, "end": 777, "annotation": null}, {"text": "values", "start": 778, "end": 784, "annotation": null}, {"text": "in", "start": 785, "end": 787, "annotation": null}, {"text": "iron", "start": 788, "end": 792, "annotation": null}, {"text": "-", "start": 792, "end": 793, "annotation": null}, {"text": "based", "start": 793, "end": 798, "annotation": null}, {"text": "superconductors", "start": 799, "end": 814, "annotation": null}, {"text": ".", "start": 814, "end": 815, "annotation": null}], [{"text": "In", "start": 816, "end": 818, "annotation": null}, {"text": "contrast", "start": 819, "end": 827, "annotation": null}, {"text": "to", "start": 828, "end": 830, "annotation": null}, {"text": "the", "start": 831, "end": 834, "annotation": null}, {"text": "as-grown", "start": 835, "end": 843, "annotation": null}, {"text": "sample", "start": 844, "end": 850, "annotation": null}, {"text": ",", "start": 850, "end": 851, "annotation": null}, {"text": "the", "start": 852, "end": 855, "annotation": null}, {"text": "sensitivity", "start": 856, "end": 867, "annotation": null}, {"text": "to", "start": 868, "end": 870, "annotation": null}, {"text": "the", "start": 871, "end": 874, "annotation": null}, {"text": "temperature", "start": 875, "end": 886, "annotation": null}, {"text": "and", "start": 887, "end": 890, "annotation": null}, {"text": "magnetic", "start": 891, "end": 899, "annotation": null}, {"text": "field", "start": 900, "end": 905, "annotation": null}, {"text": "becomes", "start": 906, "end": 913, "annotation": null}, {"text": "quite", "start": 914, "end": 919, "annotation": null}, {"text": "mild", "start": 920, "end": 924, "annotation": null}, {"text": ",", "start": 924, "end": 925, "annotation": null}, {"text": "and", "start": 926, "end": 929, "annotation": null}, {"text": "the", "start": 930, "end": 933, "annotation": null}, {"text": "vortex", "start": 934, "end": 940, "annotation": null}, {"text": "system", "start": 941, "end": 947, "annotation": null}, {"text": "is", "start": 948, "end": 950, "annotation": null}, {"text": "described", "start": 951, "end": 960, "annotation": null}, {"text": "by", "start": 961, "end": 963, "annotation": null}, {"text": "a", "start": 964, "end": 965, "annotation": null}, {"text": "simple", "start": 966, "end": 972, "annotation": null}, {"text": "weak", "start": 973, "end": 977, "annotation": null}, {"text": "-", "start": 977, "end": 978, "annotation": null}, {"text": "collective", "start": 978, "end": 988, "annotation": null}, {"text": "pinning", "start": 989, "end": 996, "annotation": null}, {"text": "scenario", "start": 997, "end": 1005, "annotation": null}, {"text": ".", "start": 1005, "end": 1006, "annotation": null}]], "meta": {"doi": "10.1088/0953-2048/28/8/085003"}} {"text": "Thin films of undoped and fluorine-doped tin oxide have been prepared on fused silica substrates by a spray pyrolysis technique. Structural, optical and electrical properties were studied. Fluorine doping increased the degree of crystallinity and preferred orientation as well as the figure of merit (23.9\u00d710\u22123 at 0.5 \u00b5m). The refractive index,n, showed a considerable decrease (2.2\u22121.85) on fluorine doping. The direct allowed transition for fluorine-doped tin oxide was 0.1 eV higher than that of undoped material.", "meta": {"doi": "10.1007/BF00695003"}, "_input_hash": 1739944162, "_task_hash": -1894375988, "tokens": [[{"text": "Thin", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "films", "start": 5, "end": 10, "id": 1, "annotation": null}, {"text": "of", "start": 11, "end": 13, "id": 2, "annotation": null}, {"text": "undoped", "start": 14, "end": 21, "id": 3, "annotation": null}, {"text": "and", "start": 22, "end": 25, "id": 4, "annotation": null}, {"text": "fluorine", "start": 26, "end": 34, "id": 5, "annotation": "DOPANT"}, {"text": "-", "start": 35, "end": 36, "id": 6, "annotation": null}, {"text": "doped", "start": 37, "end": 42, "id": 7, "annotation": null}, {"text": "tin", "start": 43, "end": 46, "id": 8, "annotation": "BASEMAT"}, {"text": "oxide", "start": 47, "end": 52, "id": 9, "annotation": "BASEMAT"}, {"text": "have", "start": 53, "end": 57, "id": 10, "annotation": null}, {"text": "been", "start": 58, "end": 62, "id": 11, "annotation": null}, {"text": "prepared", "start": 63, "end": 71, "id": 12, "annotation": null}, {"text": "on", "start": 72, "end": 74, "id": 13, "annotation": null}, {"text": "fused", "start": 75, "end": 80, "id": 14, "annotation": null}, {"text": "silica", "start": 81, "end": 87, "id": 15, "annotation": null}, {"text": "substrates", "start": 88, "end": 98, "id": 16, "annotation": null}, {"text": "by", "start": 99, "end": 101, "id": 17, "annotation": null}, {"text": "a", "start": 102, "end": 103, "id": 18, "annotation": null}, {"text": "spray", "start": 104, "end": 109, "id": 19, "annotation": null}, {"text": "pyrolysis", "start": 110, "end": 119, "id": 20, "annotation": null}, {"text": "technique", "start": 120, "end": 129, "id": 21, "annotation": null}, {"text": ".", "start": 130, "end": 131, "id": 22, "annotation": null}], [{"text": "Structural", "start": 132, "end": 142, "id": 23, "annotation": null}, {"text": ",", "start": 143, "end": 144, "id": 24, "annotation": null}, {"text": "optical", "start": 145, "end": 152, "id": 25, "annotation": null}, {"text": "and", "start": 153, "end": 156, "id": 26, "annotation": null}, {"text": "electrical", "start": 157, "end": 167, "id": 27, "annotation": null}, {"text": "properties", "start": 168, "end": 178, "id": 28, "annotation": null}, {"text": "were", "start": 179, "end": 183, "id": 29, "annotation": null}, {"text": "studied", "start": 184, "end": 191, "id": 30, "annotation": null}, {"text": ".", "start": 192, "end": 193, "id": 31, "annotation": null}], [{"text": "Fluorine", "start": 194, "end": 202, "id": 32, "annotation": "DOPANT"}, {"text": "doping", "start": 203, "end": 209, "id": 33, "annotation": null}, {"text": "increased", "start": 210, "end": 219, "id": 34, "annotation": null}, {"text": "the", "start": 220, "end": 223, "id": 35, "annotation": null}, {"text": "degree", "start": 224, "end": 230, "id": 36, "annotation": null}, {"text": "of", "start": 231, "end": 233, "id": 37, "annotation": null}, {"text": "crystallinity", "start": 234, "end": 247, "id": 38, "annotation": null}, {"text": "and", "start": 248, "end": 251, "id": 39, "annotation": null}, {"text": "preferred", "start": 252, "end": 261, "id": 40, "annotation": null}, {"text": "orientation", "start": 262, "end": 273, "id": 41, "annotation": null}, {"text": "as", "start": 274, "end": 276, "id": 42, "annotation": null}, {"text": "well", "start": 277, "end": 281, "id": 43, "annotation": null}, {"text": "as", "start": 282, "end": 284, "id": 44, "annotation": null}, {"text": "the", "start": 285, "end": 288, "id": 45, "annotation": null}, {"text": "figure", "start": 289, "end": 295, "id": 46, "annotation": null}, {"text": "of", "start": 296, "end": 298, "id": 47, "annotation": null}, {"text": "merit", "start": 299, "end": 304, "id": 48, "annotation": null}, {"text": "(", "start": 305, "end": 306, "id": 49, "annotation": null}, {"text": "23.9\u00d710\u22123", "start": 307, "end": 316, "id": 50, "annotation": null}, {"text": "at", "start": 317, "end": 319, "id": 51, "annotation": null}, {"text": "0.5", "start": 320, "end": 323, "id": 52, "annotation": null}, {"text": "\u00b5m", "start": 324, "end": 326, "id": 53, "annotation": null}, {"text": ")", "start": 327, "end": 328, "id": 54, "annotation": null}, {"text": ".", "start": 329, "end": 330, "id": 55, "annotation": null}], [{"text": "The", "start": 331, "end": 334, "id": 56, "annotation": null}, {"text": "refractive", "start": 335, "end": 345, "id": 57, "annotation": null}, {"text": "index", "start": 346, "end": 351, "id": 58, "annotation": null}, {"text": ",", "start": 352, "end": 353, "id": 59, "annotation": null}, {"text": "n", "start": 354, "end": 355, "id": 60, "annotation": null}, {"text": ",", "start": 356, "end": 357, "id": 61, "annotation": null}, {"text": "showed", "start": 358, "end": 364, "id": 62, "annotation": null}, {"text": "a", "start": 365, "end": 366, "id": 63, "annotation": null}, {"text": "considerable", "start": 367, "end": 379, "id": 64, "annotation": null}, {"text": "decrease", "start": 380, "end": 388, "id": 65, "annotation": null}, {"text": "(", "start": 389, "end": 390, "id": 66, "annotation": null}, {"text": "2.2\u22121.85", "start": 391, "end": 399, "id": 67, "annotation": null}, {"text": ")", "start": 400, "end": 401, "id": 68, "annotation": null}, {"text": "on", "start": 402, "end": 404, "id": 69, "annotation": null}, {"text": "fluorine", "start": 405, "end": 413, "id": 70, "annotation": "DOPANT"}, {"text": "doping", "start": 414, "end": 420, "id": 71, "annotation": null}, {"text": ".", "start": 421, "end": 422, "id": 72, "annotation": null}], [{"text": "The", "start": 423, "end": 426, "id": 73, "annotation": null}, {"text": "direct", "start": 427, "end": 433, "id": 74, "annotation": null}, {"text": "allowed", "start": 434, "end": 441, "id": 75, "annotation": null}, {"text": "transition", "start": 442, "end": 452, "id": 76, "annotation": null}, {"text": "for", "start": 453, "end": 456, "id": 77, "annotation": null}, {"text": "fluorine", "start": 457, "end": 465, "id": 78, "annotation": "DOPANT"}, {"text": "-", "start": 466, "end": 467, "id": 79, "annotation": null}, {"text": "doped", "start": 468, "end": 473, "id": 80, "annotation": null}, {"text": "tin", "start": 474, "end": 477, "id": 81, "annotation": "BASEMAT"}, {"text": "oxide", "start": 478, "end": 483, "id": 82, "annotation": "BASEMAT"}, {"text": "was", "start": 484, "end": 487, "id": 83, "annotation": null}, {"text": "0.1", "start": 488, "end": 491, "id": 84, "annotation": null}, {"text": "eV", "start": 492, "end": 494, "id": 85, "annotation": null}, {"text": "higher", "start": 495, "end": 501, "id": 86, "annotation": null}, {"text": "than", "start": 502, "end": 506, "id": 87, "annotation": null}, {"text": "that", "start": 507, "end": 511, "id": 88, "annotation": null}, {"text": "of", "start": 512, "end": 514, "id": 89, "annotation": null}, {"text": "undoped", "start": 515, "end": 522, "id": 90, "annotation": null}, {"text": "material", "start": 523, "end": 531, "id": 91, "annotation": null}, {"text": ".", "start": 532, "end": 533, "id": 92, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Al-doped ZnO (AZO) films were deposited on a fused silica glass substrate by reactive dc unbalanced magnetron sputtering using a Zn\u2013Al (Al: 3.6at.%) alloy target with an impedance control system. A very thin slightly reduced AZO buffer layer was inserted between the glass substrate and AZO films. For the AZO films deposited at 200\u00b0C, the lowest resistivity in the absence of the buffer layer was 8.0\u00d710\u22124\u03a9cm, whereas this was reduced to 5.9\u00d710\u22124\u03a9cm after introducing a 5-nm-thick buffer layer. The transmittance for all the films was above 80% in the visible region. The effects of the buffer layer were analysed and discussed in detail. It is found that the insertion of the buffer layer can improve the crystallinity of the AZO film.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Al", "start": 0, "end": 2, "annotation": "DOPANT"}, {"text": "-", "start": 2, "end": 3, "annotation": null}, {"text": "doped", "start": 3, "end": 8, "annotation": null}, {"text": "ZnO", "start": 9, "end": 12, "annotation": "BASEMAT"}, {"text": "(", "start": 13, "end": 14, "annotation": null}, {"text": "AZO", "start": 14, "end": 17, "annotation": null}, {"text": ")", "start": 17, "end": 18, "annotation": null}, {"text": "films", "start": 19, "end": 24, "annotation": null}, {"text": "were", "start": 25, "end": 29, "annotation": null}, {"text": "deposited", "start": 30, "end": 39, "annotation": null}, {"text": "on", "start": 40, "end": 42, "annotation": null}, {"text": "a", "start": 43, "end": 44, "annotation": null}, {"text": "fused", "start": 45, "end": 50, "annotation": null}, {"text": "silica", "start": 51, "end": 57, "annotation": null}, {"text": "glass", "start": 58, "end": 63, "annotation": null}, {"text": "substrate", "start": 64, "end": 73, "annotation": null}, {"text": "by", "start": 74, "end": 76, "annotation": null}, {"text": "reactive", "start": 77, "end": 85, "annotation": null}, {"text": "dc", "start": 86, "end": 88, "annotation": null}, {"text": "unbalanced", "start": 89, "end": 99, "annotation": null}, {"text": "magnetron", "start": 100, "end": 109, "annotation": null}, {"text": "sputtering", "start": 110, "end": 120, "annotation": null}, {"text": "using", "start": 121, "end": 126, "annotation": null}, {"text": "a", "start": 127, "end": 128, "annotation": null}, {"text": "Zn", "start": 129, "end": 131, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 131, "end": 132, "annotation": null}, {"text": "Al", "start": 132, "end": 134, "annotation": "DOPANT"}, {"text": "(", "start": 135, "end": 136, "annotation": null}, {"text": "Al", "start": 136, "end": 138, "annotation": "DOPANT"}, {"text": ":", "start": 138, "end": 139, "annotation": null}, {"text": "3.6at.", "start": 140, "end": 146, "annotation": "DOPMODQ"}, {"text": "%", "start": 146, "end": 147, "annotation": "DOPMODQ"}, {"text": ")", "start": 147, "end": 148, "annotation": null}, {"text": "alloy", "start": 149, "end": 154, "annotation": null}, {"text": "target", "start": 155, "end": 161, "annotation": null}, {"text": "with", "start": 162, "end": 166, "annotation": null}, {"text": "an", "start": 167, "end": 169, "annotation": null}, {"text": "impedance", "start": 170, "end": 179, "annotation": null}, {"text": "control", "start": 180, "end": 187, "annotation": null}, {"text": "system", "start": 188, "end": 194, "annotation": null}, {"text": ".", "start": 194, "end": 195, "annotation": null}], [{"text": "A", "start": 196, "end": 197, "annotation": null}, {"text": "very", "start": 198, "end": 202, "annotation": null}, {"text": "thin", "start": 203, "end": 207, "annotation": null}, {"text": "slightly", "start": 208, "end": 216, "annotation": null}, {"text": "reduced", "start": 217, "end": 224, "annotation": null}, {"text": "AZO", "start": 225, "end": 228, "annotation": null}, {"text": "buffer", "start": 229, "end": 235, "annotation": null}, {"text": "layer", "start": 236, "end": 241, "annotation": null}, {"text": "was", "start": 242, "end": 245, "annotation": null}, {"text": "inserted", "start": 246, "end": 254, "annotation": null}, {"text": "between", "start": 255, "end": 262, "annotation": null}, {"text": "the", "start": 263, "end": 266, "annotation": null}, {"text": "glass", "start": 267, "end": 272, "annotation": null}, {"text": "substrate", "start": 273, "end": 282, "annotation": null}, {"text": "and", "start": 283, "end": 286, "annotation": null}, {"text": "AZO", "start": 287, "end": 290, "annotation": null}, {"text": "films", "start": 291, "end": 296, "annotation": null}, {"text": ".", "start": 296, "end": 297, "annotation": null}], [{"text": "For", "start": 298, "end": 301, "annotation": null}, {"text": "the", "start": 302, "end": 305, "annotation": null}, {"text": "AZO", "start": 306, "end": 309, "annotation": null}, {"text": "films", "start": 310, "end": 315, "annotation": null}, {"text": "deposited", "start": 316, "end": 325, "annotation": null}, {"text": "at", "start": 326, "end": 328, "annotation": null}, {"text": "200", "start": 329, "end": 332, "annotation": null}, {"text": "\u00b0", "start": 332, "end": 333, "annotation": null}, {"text": "C", "start": 333, "end": 334, "annotation": null}, {"text": ",", "start": 334, "end": 335, "annotation": null}, {"text": "the", "start": 336, "end": 339, "annotation": null}, {"text": "lowest", "start": 340, "end": 346, "annotation": null}, {"text": "resistivity", "start": 347, "end": 358, "annotation": null}, {"text": "in", "start": 359, "end": 361, "annotation": null}, {"text": "the", "start": 362, "end": 365, "annotation": null}, {"text": "absence", "start": 366, "end": 373, "annotation": null}, {"text": "of", "start": 374, "end": 376, "annotation": null}, {"text": "the", "start": 377, "end": 380, "annotation": null}, {"text": "buffer", "start": 381, "end": 387, "annotation": null}, {"text": "layer", "start": 388, "end": 393, "annotation": null}, {"text": "was", "start": 394, "end": 397, "annotation": null}, {"text": "8.0", "start": 398, "end": 401, "annotation": null}, {"text": "\u00d7", "start": 401, "end": 402, "annotation": null}, {"text": "10\u22124\u03a9cm", "start": 402, "end": 409, "annotation": null}, {"text": ",", "start": 409, "end": 410, "annotation": null}, {"text": "whereas", "start": 411, "end": 418, "annotation": null}, {"text": "this", "start": 419, "end": 423, "annotation": null}, {"text": "was", "start": 424, "end": 427, "annotation": null}, {"text": "reduced", "start": 428, "end": 435, "annotation": null}, {"text": "to", "start": 436, "end": 438, "annotation": null}, {"text": "5.9", "start": 439, "end": 442, "annotation": null}, {"text": "\u00d7", "start": 442, "end": 443, "annotation": null}, {"text": "10\u22124\u03a9cm", "start": 443, "end": 450, "annotation": null}, {"text": "after", "start": 451, "end": 456, "annotation": null}, {"text": "introducing", "start": 457, "end": 468, "annotation": null}, {"text": "a", "start": 469, "end": 470, "annotation": null}, {"text": "5-nm-thick", "start": 471, "end": 481, "annotation": null}, {"text": "buffer", "start": 482, "end": 488, "annotation": null}, {"text": "layer", "start": 489, "end": 494, "annotation": null}, {"text": ".", "start": 494, "end": 495, "annotation": null}], [{"text": "The", "start": 496, "end": 499, "annotation": null}, {"text": "transmittance", "start": 500, "end": 513, "annotation": null}, {"text": "for", "start": 514, "end": 517, "annotation": null}, {"text": "all", "start": 518, "end": 521, "annotation": null}, {"text": "the", "start": 522, "end": 525, "annotation": null}, {"text": "films", "start": 526, "end": 531, "annotation": null}, {"text": "was", "start": 532, "end": 535, "annotation": null}, {"text": "above", "start": 536, "end": 541, "annotation": null}, {"text": "80", "start": 542, "end": 544, "annotation": null}, {"text": "%", "start": 544, "end": 545, "annotation": null}, {"text": "in", "start": 546, "end": 548, "annotation": null}, {"text": "the", "start": 549, "end": 552, "annotation": null}, {"text": "visible", "start": 553, "end": 560, "annotation": null}, {"text": "region", "start": 561, "end": 567, "annotation": null}, {"text": ".", "start": 567, "end": 568, "annotation": null}], [{"text": "The", "start": 569, "end": 572, "annotation": null}, {"text": "effects", "start": 573, "end": 580, "annotation": null}, {"text": "of", "start": 581, "end": 583, "annotation": null}, {"text": "the", "start": 584, "end": 587, "annotation": null}, {"text": "buffer", "start": 588, "end": 594, "annotation": null}, {"text": "layer", "start": 595, "end": 600, "annotation": null}, {"text": "were", "start": 601, "end": 605, "annotation": null}, {"text": "analysed", "start": 606, "end": 614, "annotation": null}, {"text": "and", "start": 615, "end": 618, "annotation": null}, {"text": "discussed", "start": 619, "end": 628, "annotation": null}, {"text": "in", "start": 629, "end": 631, "annotation": null}, {"text": "detail", "start": 632, "end": 638, "annotation": null}, {"text": ".", "start": 638, "end": 639, "annotation": null}], [{"text": "It", "start": 640, "end": 642, "annotation": null}, {"text": "is", "start": 643, "end": 645, "annotation": null}, {"text": "found", "start": 646, "end": 651, "annotation": null}, {"text": "that", "start": 652, "end": 656, "annotation": null}, {"text": "the", "start": 657, "end": 660, "annotation": null}, {"text": "insertion", "start": 661, "end": 670, "annotation": null}, {"text": "of", "start": 671, "end": 673, "annotation": null}, {"text": "the", "start": 674, "end": 677, "annotation": null}, {"text": "buffer", "start": 678, "end": 684, "annotation": null}, {"text": "layer", "start": 685, "end": 690, "annotation": null}, {"text": "can", "start": 691, "end": 694, "annotation": null}, {"text": "improve", "start": 695, "end": 702, "annotation": null}, {"text": "the", "start": 703, "end": 706, "annotation": null}, {"text": "crystallinity", "start": 707, "end": 720, "annotation": null}, {"text": "of", "start": 721, "end": 723, "annotation": null}, {"text": "the", "start": 724, "end": 727, "annotation": null}, {"text": "AZO", "start": 728, "end": 731, "annotation": null}, {"text": "film", "start": 732, "end": 736, "annotation": null}, {"text": ".", "start": 736, "end": 737, "annotation": null}]]} -{"remark": "doping_annt1", "text": "In order to improve the luminescence properties of Y2O2S: Tb3+, Sr2+, Zr4+, the Eu3+ ions doped Y2O2S:Tb3+, Sr2+, Zr4+ white-light long-lasting phosphors were synthesized by the solid-state reaction method. The Y2O2S:Tb3+, Eu3+, Sr2+, Zr4+ phosphors were characterized by X-ray diffraction, photoluminescence, long-lasting phosphorescence and thermoluminescence spectra. The samples doped with different concentration of Eu3+ ions were composed of the pure Y2O2S phase at 1000\u00b0C for 30min. Under 263nm UV excitation, the emission peaks at 417nm and 544nm were assigned to the 5D3\u21927F5 and 5D4\u21927F5 transitions of Tb3+ respectively, and the emission peak at 626nm was assigned to the 5D0\u21927F2 transition of Eu3+. With 0.15% Eu3+ concentration, the CIE chromaticity diagram was (0.28, 0.31), the trap depth was 0.89eV and the decay time could last for over 220s (\u22651mcd/m2).", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "order", "start": 3, "end": 8, "annotation": null}, {"text": "to", "start": 9, "end": 11, "annotation": null}, {"text": "improve", "start": 12, "end": 19, "annotation": null}, {"text": "the", "start": 20, "end": 23, "annotation": null}, {"text": "luminescence", "start": 24, "end": 36, "annotation": null}, {"text": "properties", "start": 37, "end": 47, "annotation": null}, {"text": "of", "start": 48, "end": 50, "annotation": null}, {"text": "Y2O2S", "start": 51, "end": 56, "annotation": "BASEMAT"}, {"text": ":", "start": 56, "end": 57, "annotation": "BASEMAT"}, {"text": "Tb3+", "start": 58, "end": 62, "annotation": null}, {"text": ",", "start": 62, "end": 63, "annotation": "BASEMAT"}, {"text": "Sr2+", "start": 64, "end": 68, "annotation": null}, {"text": ",", "start": 68, "end": 69, "annotation": "BASEMAT"}, {"text": "Zr4+", "start": 70, "end": 74, "annotation": null}, {"text": ",", "start": 74, "end": 75, "annotation": null}, {"text": "the", "start": 76, "end": 79, "annotation": null}, {"text": "Eu3+", "start": 80, "end": 84, "annotation": "DOPANT"}, {"text": "ions", "start": 85, "end": 89, "annotation": null}, {"text": "doped", "start": 90, "end": 95, "annotation": null}, {"text": "Y2O2S", "start": 96, "end": 101, "annotation": "BASEMAT"}, {"text": ":", "start": 101, "end": 102, "annotation": "BASEMAT"}, {"text": "Tb3+", "start": 102, "end": 106, "annotation": "BASEMAT"}, {"text": ",", "start": 106, "end": 107, "annotation": "BASEMAT"}, {"text": "Sr2+", "start": 108, "end": 112, "annotation": "BASEMAT"}, {"text": ",", "start": 112, "end": 113, "annotation": "BASEMAT"}, {"text": "Zr4+", "start": 114, "end": 118, "annotation": "BASEMAT"}, {"text": "white", "start": 119, "end": 124, "annotation": null}, {"text": "-", "start": 124, "end": 125, "annotation": null}, {"text": "light", "start": 125, "end": 130, "annotation": null}, {"text": "long", "start": 131, "end": 135, "annotation": null}, {"text": "-", "start": 135, "end": 136, "annotation": null}, {"text": "lasting", "start": 136, "end": 143, "annotation": null}, {"text": "phosphors", "start": 144, "end": 153, "annotation": null}, {"text": "were", "start": 154, "end": 158, "annotation": null}, {"text": "synthesized", "start": 159, "end": 170, "annotation": null}, {"text": "by", "start": 171, "end": 173, "annotation": null}, {"text": "the", "start": 174, "end": 177, "annotation": null}, {"text": "solid", "start": 178, "end": 183, "annotation": null}, {"text": "-", "start": 183, "end": 184, "annotation": null}, {"text": "state", "start": 184, "end": 189, "annotation": null}, {"text": "reaction", "start": 190, "end": 198, "annotation": null}, {"text": "method", "start": 199, "end": 205, "annotation": null}, {"text": ".", "start": 205, "end": 206, "annotation": null}], [{"text": "The", "start": 207, "end": 210, "annotation": null}, {"text": "Y2O2S", "start": 211, "end": 216, "annotation": null}, {"text": ":", "start": 216, "end": 217, "annotation": null}, {"text": "Tb3+", "start": 217, "end": 221, "annotation": null}, {"text": ",", "start": 221, "end": 222, "annotation": null}, {"text": "Eu3+", "start": 223, "end": 227, "annotation": null}, {"text": ",", "start": 227, "end": 228, "annotation": null}, {"text": "Sr2+", "start": 229, "end": 233, "annotation": null}, {"text": ",", "start": 233, "end": 234, "annotation": null}, {"text": "Zr4+", "start": 235, "end": 239, "annotation": null}, {"text": "phosphors", "start": 240, "end": 249, "annotation": null}, {"text": "were", "start": 250, "end": 254, "annotation": null}, {"text": "characterized", "start": 255, "end": 268, "annotation": null}, {"text": "by", "start": 269, "end": 271, "annotation": null}, {"text": "X-ray", "start": 272, "end": 277, "annotation": null}, {"text": "diffraction", "start": 278, "end": 289, "annotation": null}, {"text": ",", "start": 289, "end": 290, "annotation": null}, {"text": "photoluminescence", "start": 291, "end": 308, "annotation": null}, {"text": ",", "start": 308, "end": 309, "annotation": null}, {"text": "long", "start": 310, "end": 314, "annotation": null}, {"text": "-", "start": 314, "end": 315, "annotation": null}, {"text": "lasting", "start": 315, "end": 322, "annotation": null}, {"text": "phosphorescence", "start": 323, "end": 338, "annotation": null}, {"text": "and", "start": 339, "end": 342, "annotation": null}, {"text": "thermoluminescence", "start": 343, "end": 361, "annotation": null}, {"text": "spectra", "start": 362, "end": 369, "annotation": null}, {"text": ".", "start": 369, "end": 370, "annotation": null}], [{"text": "The", "start": 371, "end": 374, "annotation": null}, {"text": "samples", "start": 375, "end": 382, "annotation": null}, {"text": "doped", "start": 383, "end": 388, "annotation": null}, {"text": "with", "start": 389, "end": 393, "annotation": null}, {"text": "different", "start": 394, "end": 403, "annotation": null}, {"text": "concentration", "start": 404, "end": 417, "annotation": null}, {"text": "of", "start": 418, "end": 420, "annotation": null}, {"text": "Eu3+", "start": 421, "end": 425, "annotation": "DOPANT"}, {"text": "ions", "start": 426, "end": 430, "annotation": null}, {"text": "were", "start": 431, "end": 435, "annotation": null}, {"text": "composed", "start": 436, "end": 444, "annotation": null}, {"text": "of", "start": 445, "end": 447, "annotation": null}, {"text": "the", "start": 448, "end": 451, "annotation": null}, {"text": "pure", "start": 452, "end": 456, "annotation": null}, {"text": "Y2O2S", "start": 457, "end": 462, "annotation": "BASEMAT"}, {"text": "phase", "start": 463, "end": 468, "annotation": null}, {"text": "at", "start": 469, "end": 471, "annotation": null}, {"text": "1000", "start": 472, "end": 476, "annotation": null}, {"text": "\u00b0", "start": 476, "end": 477, "annotation": null}, {"text": "C", "start": 477, "end": 478, "annotation": null}, {"text": "for", "start": 479, "end": 482, "annotation": null}, {"text": "30", "start": 483, "end": 485, "annotation": null}, {"text": "min", "start": 485, "end": 488, "annotation": null}, {"text": ".", "start": 488, "end": 489, "annotation": null}], [{"text": "Under", "start": 490, "end": 495, "annotation": null}, {"text": "263", "start": 496, "end": 499, "annotation": null}, {"text": "nm", "start": 499, "end": 501, "annotation": null}, {"text": "UV", "start": 502, "end": 504, "annotation": null}, {"text": "excitation", "start": 505, "end": 515, "annotation": null}, {"text": ",", "start": 515, "end": 516, "annotation": null}, {"text": "the", "start": 517, "end": 520, "annotation": null}, {"text": "emission", "start": 521, "end": 529, "annotation": null}, {"text": "peaks", "start": 530, "end": 535, "annotation": null}, {"text": "at", "start": 536, "end": 538, "annotation": null}, {"text": "417", "start": 539, "end": 542, "annotation": null}, {"text": "nm", "start": 542, "end": 544, "annotation": null}, {"text": "and", "start": 545, "end": 548, "annotation": null}, {"text": "544", "start": 549, "end": 552, "annotation": null}, {"text": "nm", "start": 552, "end": 554, "annotation": null}, {"text": "were", "start": 555, "end": 559, "annotation": null}, {"text": "assigned", "start": 560, "end": 568, "annotation": null}, {"text": "to", "start": 569, "end": 571, "annotation": null}, {"text": "the", "start": 572, "end": 575, "annotation": null}, {"text": "5D3\u21927F5", "start": 576, "end": 583, "annotation": null}, {"text": "and", "start": 584, "end": 587, "annotation": null}, {"text": "5D4\u21927F5", "start": 588, "end": 595, "annotation": null}, {"text": "transitions", "start": 596, "end": 607, "annotation": null}, {"text": "of", "start": 608, "end": 610, "annotation": null}, {"text": "Tb3+", "start": 611, "end": 615, "annotation": null}, {"text": "respectively", "start": 616, "end": 628, "annotation": null}, {"text": ",", "start": 628, "end": 629, "annotation": null}, {"text": "and", "start": 630, "end": 633, "annotation": null}, {"text": "the", "start": 634, "end": 637, "annotation": null}, {"text": "emission", "start": 638, "end": 646, "annotation": null}, {"text": "peak", "start": 647, "end": 651, "annotation": null}, {"text": "at", "start": 652, "end": 654, "annotation": null}, {"text": "626", "start": 655, "end": 658, "annotation": null}, {"text": "nm", "start": 658, "end": 660, "annotation": null}, {"text": "was", "start": 661, "end": 664, "annotation": null}, {"text": "assigned", "start": 665, "end": 673, "annotation": null}, {"text": "to", "start": 674, "end": 676, "annotation": null}, {"text": "the", "start": 677, "end": 680, "annotation": null}, {"text": "5D0\u21927F2", "start": 681, "end": 688, "annotation": null}, {"text": "transition", "start": 689, "end": 699, "annotation": null}, {"text": "of", "start": 700, "end": 702, "annotation": null}, {"text": "Eu3+", "start": 703, "end": 707, "annotation": null}, {"text": ".", "start": 707, "end": 708, "annotation": null}], [{"text": "With", "start": 709, "end": 713, "annotation": null}, {"text": "0.15", "start": 714, "end": 718, "annotation": "DOPMODQ"}, {"text": "%", "start": 718, "end": 719, "annotation": "DOPMODQ"}, {"text": "Eu3+", "start": 720, "end": 724, "annotation": "DOPANT"}, {"text": "concentration", "start": 725, "end": 738, "annotation": null}, {"text": ",", "start": 738, "end": 739, "annotation": null}, {"text": "the", "start": 740, "end": 743, "annotation": null}, {"text": "CIE", "start": 744, "end": 747, "annotation": null}, {"text": "chromaticity", "start": 748, "end": 760, "annotation": null}, {"text": "diagram", "start": 761, "end": 768, "annotation": null}, {"text": "was", "start": 769, "end": 772, "annotation": null}, {"text": "(", "start": 773, "end": 774, "annotation": null}, {"text": "0.28", "start": 774, "end": 778, "annotation": null}, {"text": ",", "start": 778, "end": 779, "annotation": null}, {"text": "0.31", "start": 780, "end": 784, "annotation": null}, {"text": ")", "start": 784, "end": 785, "annotation": null}, {"text": ",", "start": 785, "end": 786, "annotation": null}, {"text": "the", "start": 787, "end": 790, "annotation": null}, {"text": "trap", "start": 791, "end": 795, "annotation": null}, {"text": "depth", "start": 796, "end": 801, "annotation": null}, {"text": "was", "start": 802, "end": 805, "annotation": null}, {"text": "0.89eV", "start": 806, "end": 812, "annotation": null}, {"text": "and", "start": 813, "end": 816, "annotation": null}, {"text": "the", "start": 817, "end": 820, "annotation": null}, {"text": "decay", "start": 821, "end": 826, "annotation": null}, {"text": "time", "start": 827, "end": 831, "annotation": null}, {"text": "could", "start": 832, "end": 837, "annotation": null}, {"text": "last", "start": 838, "end": 842, "annotation": null}, {"text": "for", "start": 843, "end": 846, "annotation": null}, {"text": "over", "start": 847, "end": 851, "annotation": null}, {"text": "220s", "start": 852, "end": 856, "annotation": null}, {"text": "(", "start": 857, "end": 858, "annotation": null}, {"text": "\u2265", "start": 858, "end": 859, "annotation": null}, {"text": "1mcd", "start": 859, "end": 863, "annotation": null}, {"text": "/", "start": 863, "end": 864, "annotation": null}, {"text": "m2", "start": 864, "end": 866, "annotation": null}, {"text": ")", "start": 866, "end": 867, "annotation": null}, {"text": ".", "start": 867, "end": 868, "annotation": null}]]} -{"remark": "doping_annt1", "text": "The possibility is shown of designing a functional hybrid galvanophotocapacitor active system that would be able to use, if necessary, its own chemical energy in darkness instead of only the energy stored during illumination. In experiments, the Bridgman-grown n-type indium monoselenide was used as the photosensitive anode. Electrochemical investigations were carried out in a three-electrode cell with an aprotic solution of electrolyte; 0.4 M lithium-iodide solution in \u03b3-butyrolactone acid and 1M lithium-tetrafluorborate in the same solvent were chosen as the latter.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "possibility", "start": 4, "end": 15, "annotation": null}, {"text": "is", "start": 16, "end": 18, "annotation": null}, {"text": "shown", "start": 19, "end": 24, "annotation": null}, {"text": "of", "start": 25, "end": 27, "annotation": null}, {"text": "designing", "start": 28, "end": 37, "annotation": null}, {"text": "a", "start": 38, "end": 39, "annotation": null}, {"text": "functional", "start": 40, "end": 50, "annotation": null}, {"text": "hybrid", "start": 51, "end": 57, "annotation": null}, {"text": "galvanophotocapacitor", "start": 58, "end": 79, "annotation": null}, {"text": "active", "start": 80, "end": 86, "annotation": null}, {"text": "system", "start": 87, "end": 93, "annotation": null}, {"text": "that", "start": 94, "end": 98, "annotation": null}, {"text": "would", "start": 99, "end": 104, "annotation": null}, {"text": "be", "start": 105, "end": 107, "annotation": null}, {"text": "able", "start": 108, "end": 112, "annotation": null}, {"text": "to", "start": 113, "end": 115, "annotation": null}, {"text": "use", "start": 116, "end": 119, "annotation": null}, {"text": ",", "start": 119, "end": 120, "annotation": null}, {"text": "if", "start": 121, "end": 123, "annotation": null}, {"text": "necessary", "start": 124, "end": 133, "annotation": null}, {"text": ",", "start": 133, "end": 134, "annotation": null}, {"text": "its", "start": 135, "end": 138, "annotation": null}, {"text": "own", "start": 139, "end": 142, "annotation": null}, {"text": "chemical", "start": 143, "end": 151, "annotation": null}, {"text": "energy", "start": 152, "end": 158, "annotation": null}, {"text": "in", "start": 159, "end": 161, "annotation": null}, {"text": "darkness", "start": 162, "end": 170, "annotation": null}, {"text": "instead", "start": 171, "end": 178, "annotation": null}, {"text": "of", "start": 179, "end": 181, "annotation": null}, {"text": "only", "start": 182, "end": 186, "annotation": null}, {"text": "the", "start": 187, "end": 190, "annotation": null}, {"text": "energy", "start": 191, "end": 197, "annotation": null}, {"text": "stored", "start": 198, "end": 204, "annotation": null}, {"text": "during", "start": 205, "end": 211, "annotation": null}, {"text": "illumination", "start": 212, "end": 224, "annotation": null}, {"text": ".", "start": 224, "end": 225, "annotation": null}], [{"text": "In", "start": 226, "end": 228, "annotation": null}, {"text": "experiments", "start": 229, "end": 240, "annotation": null}, {"text": ",", "start": 240, "end": 241, "annotation": null}, {"text": "the", "start": 242, "end": 245, "annotation": null}, {"text": "Bridgman", "start": 246, "end": 254, "annotation": null}, {"text": "-", "start": 254, "end": 255, "annotation": null}, {"text": "grown", "start": 255, "end": 260, "annotation": null}, {"text": "n", "start": 261, "end": 262, "annotation": "DOPANT"}, {"text": "-", "start": 262, "end": 263, "annotation": "DOPANT"}, {"text": "type", "start": 263, "end": 267, "annotation": "DOPANT"}, {"text": "indium", "start": 268, "end": 274, "annotation": "BASEMAT"}, {"text": "monoselenide", "start": 275, "end": 287, "annotation": "BASEMAT"}, {"text": "was", "start": 288, "end": 291, "annotation": null}, {"text": "used", "start": 292, "end": 296, "annotation": null}, {"text": "as", "start": 297, "end": 299, "annotation": null}, {"text": "the", "start": 300, "end": 303, "annotation": null}, {"text": "photosensitive", "start": 304, "end": 318, "annotation": null}, {"text": "anode", "start": 319, "end": 324, "annotation": null}, {"text": ".", "start": 324, "end": 325, "annotation": null}], [{"text": "Electrochemical", "start": 326, "end": 341, "annotation": null}, {"text": "investigations", "start": 342, "end": 356, "annotation": null}, {"text": "were", "start": 357, "end": 361, "annotation": null}, {"text": "carried", "start": 362, "end": 369, "annotation": null}, {"text": "out", "start": 370, "end": 373, "annotation": null}, {"text": "in", "start": 374, "end": 376, "annotation": null}, {"text": "a", "start": 377, "end": 378, "annotation": null}, {"text": "three", "start": 379, "end": 384, "annotation": null}, {"text": "-", "start": 384, "end": 385, "annotation": null}, {"text": "electrode", "start": 385, "end": 394, "annotation": null}, {"text": "cell", "start": 395, "end": 399, "annotation": null}, {"text": "with", "start": 400, "end": 404, "annotation": null}, {"text": "an", "start": 405, "end": 407, "annotation": null}, {"text": "aprotic", "start": 408, "end": 415, "annotation": null}, {"text": "solution", "start": 416, "end": 424, "annotation": null}, {"text": "of", "start": 425, "end": 427, "annotation": null}, {"text": "electrolyte", "start": 428, "end": 439, "annotation": null}, {"text": ";", "start": 439, "end": 440, "annotation": null}, {"text": "0.4", "start": 441, "end": 444, "annotation": null}, {"text": "M", "start": 445, "end": 446, "annotation": null}, {"text": "lithium", "start": 447, "end": 454, "annotation": null}, {"text": "-", "start": 454, "end": 455, "annotation": null}, {"text": "iodide", "start": 455, "end": 461, "annotation": null}, {"text": "solution", "start": 462, "end": 470, "annotation": null}, {"text": "in", "start": 471, "end": 473, "annotation": null}, {"text": "\u03b3-butyrolactone", "start": 474, "end": 489, "annotation": null}, {"text": "acid", "start": 490, "end": 494, "annotation": null}, {"text": "and", "start": 495, "end": 498, "annotation": null}, {"text": "1", "start": 499, "end": 500, "annotation": null}, {"text": "M", "start": 500, "end": 501, "annotation": null}, {"text": "lithium-tetrafluorborate", "start": 502, "end": 526, "annotation": null}, {"text": "in", "start": 527, "end": 529, "annotation": null}, {"text": "the", "start": 530, "end": 533, "annotation": null}, {"text": "same", "start": 534, "end": 538, "annotation": null}, {"text": "solvent", "start": 539, "end": 546, "annotation": null}, {"text": "were", "start": 547, "end": 551, "annotation": null}, {"text": "chosen", "start": 552, "end": 558, "annotation": null}, {"text": "as", "start": 559, "end": 561, "annotation": null}, {"text": "the", "start": 562, "end": 565, "annotation": null}, {"text": "latter", "start": 566, "end": 572, "annotation": null}, {"text": ".", "start": 572, "end": 573, "annotation": null}]]} -{"remark": "doping_annt1", "text": "This work focuses on the separation and quantification of fixed bulk oxide charge, fixed charge at the dielectric\u2013semiconductor interface and interface state charge components in the Pt/Al2O3/In0.53Ga0.47As metal-oxide-semiconductor (MOS) system. The availability of atomic layer deposited Al2O3 dielectrics over n- and p-type In0.53Ga0.47As with a range of well-controlled thickness values opens up an experimental route for the determination of the interface state density (Dit) independently of the total fixed oxide charge using capacitance\u2013voltage measurements taken at 1 MHz and \u221250\u00b0C. Low temperature forming gas annealing (350\u00b0C) significantly reduces the amount of fixed charge. The interface fixed charge is reduced from \u223c \u22128.5 \u00d7 1012 cm\u22122 preanneal to \u223c \u22127.4 \u00d7 1011 cm\u22122 postanneal and the bulk oxide charge is reduced from \u223c1.4 \u00d7 1019 cm\u22123 preanneal to \u223c5 \u00d7 1018 cm\u22123 postanneal. The forming gas anneal also has a significant effect on the interface state charge, reducing its density from 1.3 \u00d7 1013cm\u22122 preanneal to 4 \u00d7 1012 cm\u22122 postanneal.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "This", "start": 0, "end": 4, "annotation": null}, {"text": "work", "start": 5, "end": 9, "annotation": null}, {"text": "focuses", "start": 10, "end": 17, "annotation": null}, {"text": "on", "start": 18, "end": 20, "annotation": null}, {"text": "the", "start": 21, "end": 24, "annotation": null}, {"text": "separation", "start": 25, "end": 35, "annotation": null}, {"text": "and", "start": 36, "end": 39, "annotation": null}, {"text": "quantification", "start": 40, "end": 54, "annotation": null}, {"text": "of", "start": 55, "end": 57, "annotation": null}, {"text": "fixed", "start": 58, "end": 63, "annotation": null}, {"text": "bulk", "start": 64, "end": 68, "annotation": null}, {"text": "oxide", "start": 69, "end": 74, "annotation": null}, {"text": "charge", "start": 75, "end": 81, "annotation": null}, {"text": ",", "start": 81, "end": 82, "annotation": null}, {"text": "fixed", "start": 83, "end": 88, "annotation": null}, {"text": "charge", "start": 89, "end": 95, "annotation": null}, {"text": "at", "start": 96, "end": 98, "annotation": null}, {"text": "the", "start": 99, "end": 102, "annotation": null}, {"text": "dielectric", "start": 103, "end": 113, "annotation": null}, {"text": "\u2013", "start": 113, "end": 114, "annotation": null}, {"text": "semiconductor", "start": 114, "end": 127, "annotation": null}, {"text": "interface", "start": 128, "end": 137, "annotation": null}, {"text": "and", "start": 138, "end": 141, "annotation": null}, {"text": "interface", "start": 142, "end": 151, "annotation": null}, {"text": "state", "start": 152, "end": 157, "annotation": null}, {"text": "charge", "start": 158, "end": 164, "annotation": null}, {"text": "components", "start": 165, "end": 175, "annotation": null}, {"text": "in", "start": 176, "end": 178, "annotation": null}, {"text": "the", "start": 179, "end": 182, "annotation": null}, {"text": "Pt", "start": 183, "end": 185, "annotation": null}, {"text": "/", "start": 185, "end": 186, "annotation": null}, {"text": "Al2O3", "start": 186, "end": 191, "annotation": null}, {"text": "/", "start": 191, "end": 192, "annotation": null}, {"text": "In0.53Ga0.47As", "start": 192, "end": 206, "annotation": null}, {"text": "metal", "start": 207, "end": 212, "annotation": null}, {"text": "-", "start": 212, "end": 213, "annotation": null}, {"text": "oxide", "start": 213, "end": 218, "annotation": null}, {"text": "-", "start": 218, "end": 219, "annotation": null}, {"text": "semiconductor", "start": 219, "end": 232, "annotation": null}, {"text": "(", "start": 233, "end": 234, "annotation": null}, {"text": "MOS", "start": 234, "end": 237, "annotation": null}, {"text": ")", "start": 237, "end": 238, "annotation": null}, {"text": "system", "start": 239, "end": 245, "annotation": null}, {"text": ".", "start": 245, "end": 246, "annotation": null}], [{"text": "The", "start": 247, "end": 250, "annotation": null}, {"text": "availability", "start": 251, "end": 263, "annotation": null}, {"text": "of", "start": 264, "end": 266, "annotation": null}, {"text": "atomic", "start": 267, "end": 273, "annotation": null}, {"text": "layer", "start": 274, "end": 279, "annotation": null}, {"text": "deposited", "start": 280, "end": 289, "annotation": null}, {"text": "Al2O3", "start": 290, "end": 295, "annotation": null}, {"text": "dielectrics", "start": 296, "end": 307, "annotation": null}, {"text": "over", "start": 308, "end": 312, "annotation": null}, {"text": "n-", "start": 313, "end": 315, "annotation": "DOPANT"}, {"text": "and", "start": 316, "end": 319, "annotation": null}, {"text": "p", "start": 320, "end": 321, "annotation": "DOPANT"}, {"text": "-", "start": 321, "end": 322, "annotation": "DOPANT"}, {"text": "type", "start": 322, "end": 326, "annotation": "DOPANT"}, {"text": "In0.53Ga0.47As", "start": 327, "end": 341, "annotation": "BASEMAT"}, {"text": "with", "start": 342, "end": 346, "annotation": null}, {"text": "a", "start": 347, "end": 348, "annotation": null}, {"text": "range", "start": 349, "end": 354, "annotation": null}, {"text": "of", "start": 355, "end": 357, "annotation": null}, {"text": "well", "start": 358, "end": 362, "annotation": null}, {"text": "-", "start": 362, "end": 363, "annotation": null}, {"text": "controlled", "start": 363, "end": 373, "annotation": null}, {"text": "thickness", "start": 374, "end": 383, "annotation": null}, {"text": "values", "start": 384, "end": 390, "annotation": null}, {"text": "opens", "start": 391, "end": 396, "annotation": null}, {"text": "up", "start": 397, "end": 399, "annotation": null}, {"text": "an", "start": 400, "end": 402, "annotation": null}, {"text": "experimental", "start": 403, "end": 415, "annotation": null}, {"text": "route", "start": 416, "end": 421, "annotation": null}, {"text": "for", "start": 422, "end": 425, "annotation": null}, {"text": "the", "start": 426, "end": 429, "annotation": null}, {"text": "determination", "start": 430, "end": 443, "annotation": null}, {"text": "of", "start": 444, "end": 446, "annotation": null}, {"text": "the", "start": 447, "end": 450, "annotation": null}, {"text": "interface", "start": 451, "end": 460, "annotation": null}, {"text": "state", "start": 461, "end": 466, "annotation": null}, {"text": "density", "start": 467, "end": 474, "annotation": null}, {"text": "(", "start": 475, "end": 476, "annotation": null}, {"text": "Dit", "start": 476, "end": 479, "annotation": null}, {"text": ")", "start": 479, "end": 480, "annotation": null}, {"text": "independently", "start": 481, "end": 494, "annotation": null}, {"text": "of", "start": 495, "end": 497, "annotation": null}, {"text": "the", "start": 498, "end": 501, "annotation": null}, {"text": "total", "start": 502, "end": 507, "annotation": null}, {"text": "fixed", "start": 508, "end": 513, "annotation": null}, {"text": "oxide", "start": 514, "end": 519, "annotation": null}, {"text": "charge", "start": 520, "end": 526, "annotation": null}, {"text": "using", "start": 527, "end": 532, "annotation": null}, {"text": "capacitance", "start": 533, "end": 544, "annotation": null}, {"text": "\u2013", "start": 544, "end": 545, "annotation": null}, {"text": "voltage", "start": 545, "end": 552, "annotation": null}, {"text": "measurements", "start": 553, "end": 565, "annotation": null}, {"text": "taken", "start": 566, "end": 571, "annotation": null}, {"text": "at", "start": 572, "end": 574, "annotation": null}, {"text": "1", "start": 575, "end": 576, "annotation": null}, {"text": "MHz", "start": 577, "end": 580, "annotation": null}, {"text": "and", "start": 581, "end": 584, "annotation": null}, {"text": "\u2212", "start": 585, "end": 586, "annotation": null}, {"text": "50", "start": 586, "end": 588, "annotation": null}, {"text": "\u00b0", "start": 588, "end": 589, "annotation": null}, {"text": "C", "start": 589, "end": 590, "annotation": null}, {"text": ".", "start": 590, "end": 591, "annotation": null}], [{"text": "Low", "start": 592, "end": 595, "annotation": null}, {"text": "temperature", "start": 596, "end": 607, "annotation": null}, {"text": "forming", "start": 608, "end": 615, "annotation": null}, {"text": "gas", "start": 616, "end": 619, "annotation": null}, {"text": "annealing", "start": 620, "end": 629, "annotation": null}, {"text": "(", "start": 630, "end": 631, "annotation": null}, {"text": "350", "start": 631, "end": 634, "annotation": null}, {"text": "\u00b0", "start": 634, "end": 635, "annotation": null}, {"text": "C", "start": 635, "end": 636, "annotation": null}, {"text": ")", "start": 636, "end": 637, "annotation": null}, {"text": "significantly", "start": 638, "end": 651, "annotation": null}, {"text": "reduces", "start": 652, "end": 659, "annotation": null}, {"text": "the", "start": 660, "end": 663, "annotation": null}, {"text": "amount", "start": 664, "end": 670, "annotation": null}, {"text": "of", "start": 671, "end": 673, "annotation": null}, {"text": "fixed", "start": 674, "end": 679, "annotation": null}, {"text": "charge", "start": 680, "end": 686, "annotation": null}, {"text": ".", "start": 686, "end": 687, "annotation": null}], [{"text": "The", "start": 688, "end": 691, "annotation": null}, {"text": "interface", "start": 692, "end": 701, "annotation": null}, {"text": "fixed", "start": 702, "end": 707, "annotation": null}, {"text": "charge", "start": 708, "end": 714, "annotation": null}, {"text": "is", "start": 715, "end": 717, "annotation": null}, {"text": "reduced", "start": 718, "end": 725, "annotation": null}, {"text": "from", "start": 726, "end": 730, "annotation": null}, {"text": "\u223c", "start": 731, "end": 732, "annotation": null}, {"text": "\u2212", "start": 733, "end": 734, "annotation": null}, {"text": "8.5", "start": 734, "end": 737, "annotation": null}, {"text": "\u00d7", "start": 738, "end": 739, "annotation": null}, {"text": "1012", "start": 740, "end": 744, "annotation": null}, {"text": "cm\u22122", "start": 745, "end": 749, "annotation": null}, {"text": "preanneal", "start": 750, "end": 759, "annotation": null}, {"text": "to", "start": 760, "end": 762, "annotation": null}, {"text": "\u223c", "start": 763, "end": 764, "annotation": null}, {"text": "\u2212", "start": 765, "end": 766, "annotation": null}, {"text": "7.4", "start": 766, "end": 769, "annotation": null}, {"text": "\u00d7", "start": 770, "end": 771, "annotation": null}, {"text": "1011", "start": 772, "end": 776, "annotation": null}, {"text": "cm\u22122", "start": 777, "end": 781, "annotation": null}, {"text": "postanneal", "start": 782, "end": 792, "annotation": null}, {"text": "and", "start": 793, "end": 796, "annotation": null}, {"text": "the", "start": 797, "end": 800, "annotation": null}, {"text": "bulk", "start": 801, "end": 805, "annotation": null}, {"text": "oxide", "start": 806, "end": 811, "annotation": null}, {"text": "charge", "start": 812, "end": 818, "annotation": null}, {"text": "is", "start": 819, "end": 821, "annotation": null}, {"text": "reduced", "start": 822, "end": 829, "annotation": null}, {"text": "from", "start": 830, "end": 834, "annotation": null}, {"text": "\u223c", "start": 835, "end": 836, "annotation": null}, {"text": "1.4", "start": 836, "end": 839, "annotation": null}, {"text": "\u00d7", "start": 840, "end": 841, "annotation": null}, {"text": "1019", "start": 842, "end": 846, "annotation": null}, {"text": "cm\u22123", "start": 847, "end": 851, "annotation": null}, {"text": "preanneal", "start": 852, "end": 861, "annotation": null}, {"text": "to", "start": 862, "end": 864, "annotation": null}, {"text": "\u223c", "start": 865, "end": 866, "annotation": null}, {"text": "5", "start": 866, "end": 867, "annotation": null}, {"text": "\u00d7", "start": 868, "end": 869, "annotation": null}, {"text": "1018", "start": 870, "end": 874, "annotation": null}, {"text": "cm\u22123", "start": 875, "end": 879, "annotation": null}, {"text": "postanneal", "start": 880, "end": 890, "annotation": null}, {"text": ".", "start": 890, "end": 891, "annotation": null}], [{"text": "The", "start": 892, "end": 895, "annotation": null}, {"text": "forming", "start": 896, "end": 903, "annotation": null}, {"text": "gas", "start": 904, "end": 907, "annotation": null}, {"text": "anneal", "start": 908, "end": 914, "annotation": null}, {"text": "also", "start": 915, "end": 919, "annotation": null}, {"text": "has", "start": 920, "end": 923, "annotation": null}, {"text": "a", "start": 924, "end": 925, "annotation": null}, {"text": "significant", "start": 926, "end": 937, "annotation": null}, {"text": "effect", "start": 938, "end": 944, "annotation": null}, {"text": "on", "start": 945, "end": 947, "annotation": null}, {"text": "the", "start": 948, "end": 951, "annotation": null}, {"text": "interface", "start": 952, "end": 961, "annotation": null}, {"text": "state", "start": 962, "end": 967, "annotation": null}, {"text": "charge", "start": 968, "end": 974, "annotation": null}, {"text": ",", "start": 974, "end": 975, "annotation": null}, {"text": "reducing", "start": 976, "end": 984, "annotation": null}, {"text": "its", "start": 985, "end": 988, "annotation": null}, {"text": "density", "start": 989, "end": 996, "annotation": null}, {"text": "from", "start": 997, "end": 1001, "annotation": null}, {"text": "1.3", "start": 1002, "end": 1005, "annotation": null}, {"text": "\u00d7", "start": 1006, "end": 1007, "annotation": null}, {"text": "1013", "start": 1008, "end": 1012, "annotation": null}, {"text": "cm\u22122", "start": 1012, "end": 1016, "annotation": null}, {"text": "preanneal", "start": 1017, "end": 1026, "annotation": null}, {"text": "to", "start": 1027, "end": 1029, "annotation": null}, {"text": "4", "start": 1030, "end": 1031, "annotation": null}, {"text": "\u00d7", "start": 1032, "end": 1033, "annotation": null}, {"text": "1012", "start": 1034, "end": 1038, "annotation": null}, {"text": "cm\u22122", "start": 1039, "end": 1043, "annotation": null}, {"text": "postanneal", "start": 1044, "end": 1054, "annotation": null}, {"text": ".", "start": 1054, "end": 1055, "annotation": null}]]} -{"remark": "doping_annt2", "text": "In this paper we present new results on doped \u03bcc-Si:H thin films deposited by hot-wire chemical vapour deposition (HWCVD) in the very low temperature range (125\u2013275\u00b0C). The doped layers were obtained by the addition of diborane or phosphine in the gas phase during deposition. The incorporation of boron and phosphorus in the films and their influence on the crystalline fraction are studied by secondary ion mass spectrometry and Raman spectroscopy, respectively. Good electrical transport properties were obtained in this deposition regime, with best dark conductivities of 2.6 and 9.8 S cm\u22121 for the p- and n-doped films, respectively. The effect of the hydrogen dilution and the layer thickness on the electrical properties are also studied. Some technological conclusions referred to cross contamination could be deduced from the nominally undoped samples obtained in the same chamber after p- and n-type heavily doped layers.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "this", "start": 3, "end": 7, "annotation": null}, {"text": "paper", "start": 8, "end": 13, "annotation": null}, {"text": "we", "start": 14, "end": 16, "annotation": null}, {"text": "present", "start": 17, "end": 24, "annotation": null}, {"text": "new", "start": 25, "end": 28, "annotation": null}, {"text": "results", "start": 29, "end": 36, "annotation": null}, {"text": "on", "start": 37, "end": 39, "annotation": null}, {"text": "doped", "start": 40, "end": 45, "annotation": null}, {"text": "\u03bcc-Si", "start": 46, "end": 51, "annotation": "BASEMAT"}, {"text": ":", "start": 51, "end": 52, "annotation": null}, {"text": "H", "start": 52, "end": 53, "annotation": "DOPANT"}, {"text": "thin", "start": 54, "end": 58, "annotation": null}, {"text": "films", "start": 59, "end": 64, "annotation": null}, {"text": "deposited", "start": 65, "end": 74, "annotation": null}, {"text": "by", "start": 75, "end": 77, "annotation": null}, {"text": "hot", "start": 78, "end": 81, "annotation": null}, {"text": "-", "start": 81, "end": 82, "annotation": null}, {"text": "wire", "start": 82, "end": 86, "annotation": null}, {"text": "chemical", "start": 87, "end": 95, "annotation": null}, {"text": "vapour", "start": 96, "end": 102, "annotation": null}, {"text": "deposition", "start": 103, "end": 113, "annotation": null}, {"text": "(", "start": 114, "end": 115, "annotation": null}, {"text": "HWCVD", "start": 115, "end": 120, "annotation": null}, {"text": ")", "start": 120, "end": 121, "annotation": null}, {"text": "in", "start": 122, "end": 124, "annotation": null}, {"text": "the", "start": 125, "end": 128, "annotation": null}, {"text": "very", "start": 129, "end": 133, "annotation": null}, {"text": "low", "start": 134, "end": 137, "annotation": null}, {"text": "temperature", "start": 138, "end": 149, "annotation": null}, {"text": "range", "start": 150, "end": 155, "annotation": null}, {"text": "(", "start": 156, "end": 157, "annotation": null}, {"text": "125", "start": 157, "end": 160, "annotation": null}, {"text": "\u2013", "start": 160, "end": 161, "annotation": null}, {"text": "275", "start": 161, "end": 164, "annotation": null}, {"text": "\u00b0", "start": 164, "end": 165, "annotation": null}, {"text": "C", "start": 165, "end": 166, "annotation": null}, {"text": ")", "start": 166, "end": 167, "annotation": null}, {"text": ".", "start": 167, "end": 168, "annotation": null}], [{"text": "The", "start": 169, "end": 172, "annotation": null}, {"text": "doped", "start": 173, "end": 178, "annotation": null}, {"text": "layers", "start": 179, "end": 185, "annotation": null}, {"text": "were", "start": 186, "end": 190, "annotation": null}, {"text": "obtained", "start": 191, "end": 199, "annotation": null}, {"text": "by", "start": 200, "end": 202, "annotation": null}, {"text": "the", "start": 203, "end": 206, "annotation": null}, {"text": "addition", "start": 207, "end": 215, "annotation": null}, {"text": "of", "start": 216, "end": 218, "annotation": null}, {"text": "diborane", "start": 219, "end": 227, "annotation": "DOPANT"}, {"text": "or", "start": 228, "end": 230, "annotation": null}, {"text": "phosphine", "start": 231, "end": 240, "annotation": "DOPANT"}, {"text": "in", "start": 241, "end": 243, "annotation": null}, {"text": "the", "start": 244, "end": 247, "annotation": null}, {"text": "gas", "start": 248, "end": 251, "annotation": null}, {"text": "phase", "start": 252, "end": 257, "annotation": null}, {"text": "during", "start": 258, "end": 264, "annotation": null}, {"text": "deposition", "start": 265, "end": 275, "annotation": null}, {"text": ".", "start": 275, "end": 276, "annotation": null}], [{"text": "The", "start": 277, "end": 280, "annotation": null}, {"text": "incorporation", "start": 281, "end": 294, "annotation": null}, {"text": "of", "start": 295, "end": 297, "annotation": null}, {"text": "boron", "start": 298, "end": 303, "annotation": "DOPANT"}, {"text": "and", "start": 304, "end": 307, "annotation": null}, {"text": "phosphorus", "start": 308, "end": 318, "annotation": "DOPANT"}, {"text": "in", "start": 319, "end": 321, "annotation": null}, {"text": "the", "start": 322, "end": 325, "annotation": null}, {"text": "films", "start": 326, "end": 331, "annotation": null}, {"text": "and", "start": 332, "end": 335, "annotation": null}, {"text": "their", "start": 336, "end": 341, "annotation": null}, {"text": "influence", "start": 342, "end": 351, "annotation": null}, {"text": "on", "start": 352, "end": 354, "annotation": null}, {"text": "the", "start": 355, "end": 358, "annotation": null}, {"text": "crystalline", "start": 359, "end": 370, "annotation": null}, {"text": "fraction", "start": 371, "end": 379, "annotation": null}, {"text": "are", "start": 380, "end": 383, "annotation": null}, {"text": "studied", "start": 384, "end": 391, "annotation": null}, {"text": "by", "start": 392, "end": 394, "annotation": null}, {"text": "secondary", "start": 395, "end": 404, "annotation": null}, {"text": "ion", "start": 405, "end": 408, "annotation": null}, {"text": "mass", "start": 409, "end": 413, "annotation": null}, {"text": "spectrometry", "start": 414, "end": 426, "annotation": null}, {"text": "and", "start": 427, "end": 430, "annotation": null}, {"text": "Raman", "start": 431, "end": 436, "annotation": null}, {"text": "spectroscopy", "start": 437, "end": 449, "annotation": null}, {"text": ",", "start": 449, "end": 450, "annotation": null}, {"text": "respectively", "start": 451, "end": 463, "annotation": null}, {"text": ".", "start": 463, "end": 464, "annotation": null}], [{"text": "Good", "start": 465, "end": 469, "annotation": null}, {"text": "electrical", "start": 470, "end": 480, "annotation": null}, {"text": "transport", "start": 481, "end": 490, "annotation": null}, {"text": "properties", "start": 491, "end": 501, "annotation": null}, {"text": "were", "start": 502, "end": 506, "annotation": null}, {"text": "obtained", "start": 507, "end": 515, "annotation": null}, {"text": "in", "start": 516, "end": 518, "annotation": null}, {"text": "this", "start": 519, "end": 523, "annotation": null}, {"text": "deposition", "start": 524, "end": 534, "annotation": null}, {"text": "regime", "start": 535, "end": 541, "annotation": null}, {"text": ",", "start": 541, "end": 542, "annotation": null}, {"text": "with", "start": 543, "end": 547, "annotation": null}, {"text": "best", "start": 548, "end": 552, "annotation": null}, {"text": "dark", "start": 553, "end": 557, "annotation": null}, {"text": "conductivities", "start": 558, "end": 572, "annotation": null}, {"text": "of", "start": 573, "end": 575, "annotation": null}, {"text": "2.6", "start": 576, "end": 579, "annotation": null}, {"text": "and", "start": 580, "end": 583, "annotation": null}, {"text": "9.8", "start": 584, "end": 587, "annotation": null}, {"text": "S", "start": 588, "end": 589, "annotation": null}, {"text": "cm\u22121", "start": 590, "end": 594, "annotation": null}, {"text": "for", "start": 595, "end": 598, "annotation": null}, {"text": "the", "start": 599, "end": 602, "annotation": null}, {"text": "p-", "start": 603, "end": 605, "annotation": "DOPANT"}, {"text": "and", "start": 606, "end": 609, "annotation": null}, {"text": "n", "start": 610, "end": 611, "annotation": "DOPANT"}, {"text": "-", "start": 611, "end": 612, "annotation": "DOPANT"}, {"text": "doped", "start": 612, "end": 617, "annotation": null}, {"text": "films", "start": 618, "end": 623, "annotation": "BASEMAT"}, {"text": ",", "start": 623, "end": 624, "annotation": null}, {"text": "respectively", "start": 625, "end": 637, "annotation": null}, {"text": ".", "start": 637, "end": 638, "annotation": null}], [{"text": "The", "start": 639, "end": 642, "annotation": null}, {"text": "effect", "start": 643, "end": 649, "annotation": null}, {"text": "of", "start": 650, "end": 652, "annotation": null}, {"text": "the", "start": 653, "end": 656, "annotation": null}, {"text": "hydrogen", "start": 657, "end": 665, "annotation": null}, {"text": "dilution", "start": 666, "end": 674, "annotation": null}, {"text": "and", "start": 675, "end": 678, "annotation": null}, {"text": "the", "start": 679, "end": 682, "annotation": null}, {"text": "layer", "start": 683, "end": 688, "annotation": null}, {"text": "thickness", "start": 689, "end": 698, "annotation": null}, {"text": "on", "start": 699, "end": 701, "annotation": null}, {"text": "the", "start": 702, "end": 705, "annotation": null}, {"text": "electrical", "start": 706, "end": 716, "annotation": null}, {"text": "properties", "start": 717, "end": 727, "annotation": null}, {"text": "are", "start": 728, "end": 731, "annotation": null}, {"text": "also", "start": 732, "end": 736, "annotation": null}, {"text": "studied", "start": 737, "end": 744, "annotation": null}, {"text": ".", "start": 744, "end": 745, "annotation": null}], [{"text": "Some", "start": 746, "end": 750, "annotation": null}, {"text": "technological", "start": 751, "end": 764, "annotation": null}, {"text": "conclusions", "start": 765, "end": 776, "annotation": null}, {"text": "referred", "start": 777, "end": 785, "annotation": null}, {"text": "to", "start": 786, "end": 788, "annotation": null}, {"text": "cross", "start": 789, "end": 794, "annotation": null}, {"text": "contamination", "start": 795, "end": 808, "annotation": null}, {"text": "could", "start": 809, "end": 814, "annotation": null}, {"text": "be", "start": 815, "end": 817, "annotation": null}, {"text": "deduced", "start": 818, "end": 825, "annotation": null}, {"text": "from", "start": 826, "end": 830, "annotation": null}, {"text": "the", "start": 831, "end": 834, "annotation": null}, {"text": "nominally", "start": 835, "end": 844, "annotation": null}, {"text": "undoped", "start": 845, "end": 852, "annotation": null}, {"text": "samples", "start": 853, "end": 860, "annotation": null}, {"text": "obtained", "start": 861, "end": 869, "annotation": null}, {"text": "in", "start": 870, "end": 872, "annotation": null}, {"text": "the", "start": 873, "end": 876, "annotation": null}, {"text": "same", "start": 877, "end": 881, "annotation": null}, {"text": "chamber", "start": 882, "end": 889, "annotation": null}, {"text": "after", "start": 890, "end": 895, "annotation": null}, {"text": "p-", "start": 896, "end": 898, "annotation": "DOPANT"}, {"text": "and", "start": 899, "end": 902, "annotation": null}, {"text": "n", "start": 903, "end": 904, "annotation": "DOPANT"}, {"text": "-", "start": 904, "end": 905, "annotation": "DOPANT"}, {"text": "type", "start": 905, "end": 909, "annotation": "DOPANT"}, {"text": "heavily", "start": 910, "end": 917, "annotation": null}, {"text": "doped", "start": 918, "end": 923, "annotation": null}, {"text": "layers", "start": 924, "end": 930, "annotation": null}, {"text": ".", "start": 930, "end": 931, "annotation": null}]]} -{"remark": "doping_annt3", "text": "We report a room temperature all-fiber dual-wavelength Thulium-Bismuth codoped fiber laser operating in 1900 nm region using a single fiber Bragg grating (FBG) in a ring configuration. The addition of Bismuth ions as codopant in the gain medium enhances the inhomogeneous broadening effect in the fiber and thus allows a dual-wavelength oscillation with the assistance of the FBG that has a flat top reflection spectrum. By pumping the gain medium with 1552 nm laser, a dual-wavelength output lines are obtained at 1901.09 and 1901.98 nm with a spacing of 0.89 nm and an optical signal to noise ratio of more than 45 dB as the polarization controller (PC) orientation is adjusted to balance the loss between the two wavelengths. The dual-wavelength laser can also be switched to operate in single-wavelength at either 1901.07 or 1901.98 nm by altering the intracavity polarization using the PC. Copyright \u00a9 2013 Wiley Periodicals, Inc.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "report", "start": 3, "end": 9, "annotation": null}, {"text": "a", "start": 10, "end": 11, "annotation": null}, {"text": "room", "start": 12, "end": 16, "annotation": null}, {"text": "temperature", "start": 17, "end": 28, "annotation": null}, {"text": "all", "start": 29, "end": 32, "annotation": null}, {"text": "-", "start": 32, "end": 33, "annotation": null}, {"text": "fiber", "start": 33, "end": 38, "annotation": null}, {"text": "dual", "start": 39, "end": 43, "annotation": null}, {"text": "-", "start": 43, "end": 44, "annotation": null}, {"text": "wavelength", "start": 44, "end": 54, "annotation": null}, {"text": "Thulium", "start": 55, "end": 62, "annotation": "DOPANT"}, {"text": "-", "start": 62, "end": 63, "annotation": "DOPANT"}, {"text": "Bismuth", "start": 63, "end": 70, "annotation": "DOPANT"}, {"text": "codoped", "start": 71, "end": 78, "annotation": null}, {"text": "fiber", "start": 79, "end": 84, "annotation": "BASEMAT"}, {"text": "laser", "start": 85, "end": 90, "annotation": "BASEMAT"}, {"text": "operating", "start": 91, "end": 100, "annotation": null}, {"text": "in", "start": 101, "end": 103, "annotation": null}, {"text": "1900", "start": 104, "end": 108, "annotation": null}, {"text": "nm", "start": 109, "end": 111, "annotation": null}, {"text": "region", "start": 112, "end": 118, "annotation": null}, {"text": "using", "start": 119, "end": 124, "annotation": null}, {"text": "a", "start": 125, "end": 126, "annotation": null}, {"text": "single", "start": 127, "end": 133, "annotation": null}, {"text": "fiber", "start": 134, "end": 139, "annotation": null}, {"text": "Bragg", "start": 140, "end": 145, "annotation": null}, {"text": "grating", "start": 146, "end": 153, "annotation": null}, {"text": "(", "start": 154, "end": 155, "annotation": null}, {"text": "FBG", "start": 155, "end": 158, "annotation": null}, {"text": ")", "start": 158, "end": 159, "annotation": null}, {"text": "in", "start": 160, "end": 162, "annotation": null}, {"text": "a", "start": 163, "end": 164, "annotation": null}, {"text": "ring", "start": 165, "end": 169, "annotation": null}, {"text": "configuration", "start": 170, "end": 183, "annotation": null}, {"text": ".", "start": 183, "end": 184, "annotation": null}], [{"text": "The", "start": 185, "end": 188, "annotation": null}, {"text": "addition", "start": 189, "end": 197, "annotation": null}, {"text": "of", "start": 198, "end": 200, "annotation": null}, {"text": "Bismuth", "start": 201, "end": 208, "annotation": "DOPANT"}, {"text": "ions", "start": 209, "end": 213, "annotation": "DOPANT"}, {"text": "as", "start": 214, "end": 216, "annotation": null}, {"text": "codopant", "start": 217, "end": 225, "annotation": null}, {"text": "in", "start": 226, "end": 228, "annotation": null}, {"text": "the", "start": 229, "end": 232, "annotation": null}, {"text": "gain", "start": 233, "end": 237, "annotation": null}, {"text": "medium", "start": 238, "end": 244, "annotation": null}, {"text": "enhances", "start": 245, "end": 253, "annotation": null}, {"text": "the", "start": 254, "end": 257, "annotation": null}, {"text": "inhomogeneous", "start": 258, "end": 271, "annotation": null}, {"text": "broadening", "start": 272, "end": 282, "annotation": null}, {"text": "effect", "start": 283, "end": 289, "annotation": null}, {"text": "in", "start": 290, "end": 292, "annotation": null}, {"text": "the", "start": 293, "end": 296, "annotation": null}, {"text": "fiber", "start": 297, "end": 302, "annotation": null}, {"text": "and", "start": 303, "end": 306, "annotation": null}, {"text": "thus", "start": 307, "end": 311, "annotation": null}, {"text": "allows", "start": 312, "end": 318, "annotation": null}, {"text": "a", "start": 319, "end": 320, "annotation": null}, {"text": "dual", "start": 321, "end": 325, "annotation": null}, {"text": "-", "start": 325, "end": 326, "annotation": null}, {"text": "wavelength", "start": 326, "end": 336, "annotation": null}, {"text": "oscillation", "start": 337, "end": 348, "annotation": null}, {"text": "with", "start": 349, "end": 353, "annotation": null}, {"text": "the", "start": 354, "end": 357, "annotation": null}, {"text": "assistance", "start": 358, "end": 368, "annotation": null}, {"text": "of", "start": 369, "end": 371, "annotation": null}, {"text": "the", "start": 372, "end": 375, "annotation": null}, {"text": "FBG", "start": 376, "end": 379, "annotation": null}, {"text": "that", "start": 380, "end": 384, "annotation": null}, {"text": "has", "start": 385, "end": 388, "annotation": null}, {"text": "a", "start": 389, "end": 390, "annotation": null}, {"text": "flat", "start": 391, "end": 395, "annotation": null}, {"text": "top", "start": 396, "end": 399, "annotation": null}, {"text": "reflection", "start": 400, "end": 410, "annotation": null}, {"text": "spectrum", "start": 411, "end": 419, "annotation": null}, {"text": ".", "start": 419, "end": 420, "annotation": null}], [{"text": "By", "start": 421, "end": 423, "annotation": null}, {"text": "pumping", "start": 424, "end": 431, "annotation": null}, {"text": "the", "start": 432, "end": 435, "annotation": null}, {"text": "gain", "start": 436, "end": 440, "annotation": null}, {"text": "medium", "start": 441, "end": 447, "annotation": null}, {"text": "with", "start": 448, "end": 452, "annotation": null}, {"text": "1552", "start": 453, "end": 457, "annotation": null}, {"text": "nm", "start": 458, "end": 460, "annotation": null}, {"text": "laser", "start": 461, "end": 466, "annotation": null}, {"text": ",", "start": 466, "end": 467, "annotation": null}, {"text": "a", "start": 468, "end": 469, "annotation": null}, {"text": "dual", "start": 470, "end": 474, "annotation": null}, {"text": "-", "start": 474, "end": 475, "annotation": null}, {"text": "wavelength", "start": 475, "end": 485, "annotation": null}, {"text": "output", "start": 486, "end": 492, "annotation": null}, {"text": "lines", "start": 493, "end": 498, "annotation": null}, {"text": "are", "start": 499, "end": 502, "annotation": null}, {"text": "obtained", "start": 503, "end": 511, "annotation": null}, {"text": "at", "start": 512, "end": 514, "annotation": null}, {"text": "1901.09", "start": 515, "end": 522, "annotation": null}, {"text": "and", "start": 523, "end": 526, "annotation": null}, {"text": "1901.98", "start": 527, "end": 534, "annotation": null}, {"text": "nm", "start": 535, "end": 537, "annotation": null}, {"text": "with", "start": 538, "end": 542, "annotation": null}, {"text": "a", "start": 543, "end": 544, "annotation": null}, {"text": "spacing", "start": 545, "end": 552, "annotation": null}, {"text": "of", "start": 553, "end": 555, "annotation": null}, {"text": "0.89", "start": 556, "end": 560, "annotation": null}, {"text": "nm", "start": 561, "end": 563, "annotation": null}, {"text": "and", "start": 564, "end": 567, "annotation": null}, {"text": "an", "start": 568, "end": 570, "annotation": null}, {"text": "optical", "start": 571, "end": 578, "annotation": null}, {"text": "signal", "start": 579, "end": 585, "annotation": null}, {"text": "to", "start": 586, "end": 588, "annotation": null}, {"text": "noise", "start": 589, "end": 594, "annotation": null}, {"text": "ratio", "start": 595, "end": 600, "annotation": null}, {"text": "of", "start": 601, "end": 603, "annotation": null}, {"text": "more", "start": 604, "end": 608, "annotation": null}, {"text": "than", "start": 609, "end": 613, "annotation": null}, {"text": "45", "start": 614, "end": 616, "annotation": null}, {"text": "dB", "start": 617, "end": 619, "annotation": null}, {"text": "as", "start": 620, "end": 622, "annotation": null}, {"text": "the", "start": 623, "end": 626, "annotation": null}, {"text": "polarization", "start": 627, "end": 639, "annotation": null}, {"text": "controller", "start": 640, "end": 650, "annotation": null}, {"text": "(", "start": 651, "end": 652, "annotation": null}, {"text": "PC", "start": 652, "end": 654, "annotation": null}, {"text": ")", "start": 654, "end": 655, "annotation": null}, {"text": "orientation", "start": 656, "end": 667, "annotation": null}, {"text": "is", "start": 668, "end": 670, "annotation": null}, {"text": "adjusted", "start": 671, "end": 679, "annotation": null}, {"text": "to", "start": 680, "end": 682, "annotation": null}, {"text": "balance", "start": 683, "end": 690, "annotation": null}, {"text": "the", "start": 691, "end": 694, "annotation": null}, {"text": "loss", "start": 695, "end": 699, "annotation": null}, {"text": "between", "start": 700, "end": 707, "annotation": null}, {"text": "the", "start": 708, "end": 711, "annotation": null}, {"text": "two", "start": 712, "end": 715, "annotation": null}, {"text": "wavelengths", "start": 716, "end": 727, "annotation": null}, {"text": ".", "start": 727, "end": 728, "annotation": null}], [{"text": "The", "start": 729, "end": 732, "annotation": null}, {"text": "dual", "start": 733, "end": 737, "annotation": null}, {"text": "-", "start": 737, "end": 738, "annotation": null}, {"text": "wavelength", "start": 738, "end": 748, "annotation": null}, {"text": "laser", "start": 749, "end": 754, "annotation": null}, {"text": "can", "start": 755, "end": 758, "annotation": null}, {"text": "also", "start": 759, "end": 763, "annotation": null}, {"text": "be", "start": 764, "end": 766, "annotation": null}, {"text": "switched", "start": 767, "end": 775, "annotation": null}, {"text": "to", "start": 776, "end": 778, "annotation": null}, {"text": "operate", "start": 779, "end": 786, "annotation": null}, {"text": "in", "start": 787, "end": 789, "annotation": null}, {"text": "single", "start": 790, "end": 796, "annotation": null}, {"text": "-", "start": 796, "end": 797, "annotation": null}, {"text": "wavelength", "start": 797, "end": 807, "annotation": null}, {"text": "at", "start": 808, "end": 810, "annotation": null}, {"text": "either", "start": 811, "end": 817, "annotation": null}, {"text": "1901.07", "start": 818, "end": 825, "annotation": null}, {"text": "or", "start": 826, "end": 828, "annotation": null}, {"text": "1901.98", "start": 829, "end": 836, "annotation": null}, {"text": "nm", "start": 837, "end": 839, "annotation": null}, {"text": "by", "start": 840, "end": 842, "annotation": null}, {"text": "altering", "start": 843, "end": 851, "annotation": null}, {"text": "the", "start": 852, "end": 855, "annotation": null}, {"text": "intracavity", "start": 856, "end": 867, "annotation": null}, {"text": "polarization", "start": 868, "end": 880, "annotation": null}, {"text": "using", "start": 881, "end": 886, "annotation": null}, {"text": "the", "start": 887, "end": 890, "annotation": null}, {"text": "PC", "start": 891, "end": 893, "annotation": null}, {"text": ".", "start": 893, "end": 894, "annotation": null}]]} +{"remark": "doping_annt1", "text": "Al-doped ZnO (AZO) films were deposited on a fused silica glass substrate by reactive dc unbalanced magnetron sputtering using a Zn\u2013Al (Al: 3.6at.%) alloy target with an impedance control system. A very thin slightly reduced AZO buffer layer was inserted between the glass substrate and AZO films. For the AZO films deposited at 200\u00b0C, the lowest resistivity in the absence of the buffer layer was 8.0\u00d710\u22124\u03a9cm, whereas this was reduced to 5.9\u00d710\u22124\u03a9cm after introducing a 5-nm-thick buffer layer. The transmittance for all the films was above 80% in the visible region. The effects of the buffer layer were analysed and discussed in detail. It is found that the insertion of the buffer layer can improve the crystallinity of the AZO film.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Al", "start": 0, "end": 2, "annotation": "DOPANT"}, {"text": "-", "start": 2, "end": 3, "annotation": null}, {"text": "doped", "start": 3, "end": 8, "annotation": null}, {"text": "ZnO", "start": 9, "end": 12, "annotation": "BASEMAT"}, {"text": "(", "start": 13, "end": 14, "annotation": null}, {"text": "AZO", "start": 14, "end": 17, "annotation": null}, {"text": ")", "start": 17, "end": 18, "annotation": null}, {"text": "films", "start": 19, "end": 24, "annotation": null}, {"text": "were", "start": 25, "end": 29, "annotation": null}, {"text": "deposited", "start": 30, "end": 39, "annotation": null}, {"text": "on", "start": 40, "end": 42, "annotation": null}, {"text": "a", "start": 43, "end": 44, "annotation": null}, {"text": "fused", "start": 45, "end": 50, "annotation": null}, {"text": "silica", "start": 51, "end": 57, "annotation": null}, {"text": "glass", "start": 58, "end": 63, "annotation": null}, {"text": "substrate", "start": 64, "end": 73, "annotation": null}, {"text": "by", "start": 74, "end": 76, "annotation": null}, {"text": "reactive", "start": 77, "end": 85, "annotation": null}, {"text": "dc", "start": 86, "end": 88, "annotation": null}, {"text": "unbalanced", "start": 89, "end": 99, "annotation": null}, {"text": "magnetron", "start": 100, "end": 109, "annotation": null}, {"text": "sputtering", "start": 110, "end": 120, "annotation": null}, {"text": "using", "start": 121, "end": 126, "annotation": null}, {"text": "a", "start": 127, "end": 128, "annotation": null}, {"text": "Zn", "start": 129, "end": 131, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 131, "end": 132, "annotation": null}, {"text": "Al", "start": 132, "end": 134, "annotation": "DOPANT"}, {"text": "(", "start": 135, "end": 136, "annotation": null}, {"text": "Al", "start": 136, "end": 138, "annotation": "DOPANT"}, {"text": ":", "start": 138, "end": 139, "annotation": null}, {"text": "3.6at.", "start": 140, "end": 146, "annotation": "DOPMODQ"}, {"text": "%", "start": 146, "end": 147, "annotation": "DOPMODQ"}, {"text": ")", "start": 147, "end": 148, "annotation": null}, {"text": "alloy", "start": 149, "end": 154, "annotation": null}, {"text": "target", "start": 155, "end": 161, "annotation": null}, {"text": "with", "start": 162, "end": 166, "annotation": null}, {"text": "an", "start": 167, "end": 169, "annotation": null}, {"text": "impedance", "start": 170, "end": 179, "annotation": null}, {"text": "control", "start": 180, "end": 187, "annotation": null}, {"text": "system", "start": 188, "end": 194, "annotation": null}, {"text": ".", "start": 194, "end": 195, "annotation": null}], [{"text": "A", "start": 196, "end": 197, "annotation": null}, {"text": "very", "start": 198, "end": 202, "annotation": null}, {"text": "thin", "start": 203, "end": 207, "annotation": null}, {"text": "slightly", "start": 208, "end": 216, "annotation": null}, {"text": "reduced", "start": 217, "end": 224, "annotation": null}, {"text": "AZO", "start": 225, "end": 228, "annotation": null}, {"text": "buffer", "start": 229, "end": 235, "annotation": null}, {"text": "layer", "start": 236, "end": 241, "annotation": null}, {"text": "was", "start": 242, "end": 245, "annotation": null}, {"text": "inserted", "start": 246, "end": 254, "annotation": null}, {"text": "between", "start": 255, "end": 262, "annotation": null}, {"text": "the", "start": 263, "end": 266, "annotation": null}, {"text": "glass", "start": 267, "end": 272, "annotation": null}, {"text": "substrate", "start": 273, "end": 282, "annotation": null}, {"text": "and", "start": 283, "end": 286, "annotation": null}, {"text": "AZO", "start": 287, "end": 290, "annotation": null}, {"text": "films", "start": 291, "end": 296, "annotation": null}, {"text": ".", "start": 296, "end": 297, "annotation": null}], [{"text": "For", "start": 298, "end": 301, "annotation": null}, {"text": "the", "start": 302, "end": 305, "annotation": null}, {"text": "AZO", "start": 306, "end": 309, "annotation": null}, {"text": "films", "start": 310, "end": 315, "annotation": null}, {"text": "deposited", "start": 316, "end": 325, "annotation": null}, {"text": "at", "start": 326, "end": 328, "annotation": null}, {"text": "200", "start": 329, "end": 332, "annotation": null}, {"text": "\u00b0", "start": 332, "end": 333, "annotation": null}, {"text": "C", "start": 333, "end": 334, "annotation": null}, {"text": ",", "start": 334, "end": 335, "annotation": null}, {"text": "the", "start": 336, "end": 339, "annotation": null}, {"text": "lowest", "start": 340, "end": 346, "annotation": null}, {"text": "resistivity", "start": 347, "end": 358, "annotation": null}, {"text": "in", "start": 359, "end": 361, "annotation": null}, {"text": "the", "start": 362, "end": 365, "annotation": null}, {"text": "absence", "start": 366, "end": 373, "annotation": null}, {"text": "of", "start": 374, "end": 376, "annotation": null}, {"text": "the", "start": 377, "end": 380, "annotation": null}, {"text": "buffer", "start": 381, "end": 387, "annotation": null}, {"text": "layer", "start": 388, "end": 393, "annotation": null}, {"text": "was", "start": 394, "end": 397, "annotation": null}, {"text": "8.0", "start": 398, "end": 401, "annotation": null}, {"text": "\u00d7", "start": 401, "end": 402, "annotation": null}, {"text": "10\u22124\u03a9cm", "start": 402, "end": 409, "annotation": null}, {"text": ",", "start": 409, "end": 410, "annotation": null}, {"text": "whereas", "start": 411, "end": 418, "annotation": null}, {"text": "this", "start": 419, "end": 423, "annotation": null}, {"text": "was", "start": 424, "end": 427, "annotation": null}, {"text": "reduced", "start": 428, "end": 435, "annotation": null}, {"text": "to", "start": 436, "end": 438, "annotation": null}, {"text": "5.9", "start": 439, "end": 442, "annotation": null}, {"text": "\u00d7", "start": 442, "end": 443, "annotation": null}, {"text": "10\u22124\u03a9cm", "start": 443, "end": 450, "annotation": null}, {"text": "after", "start": 451, "end": 456, "annotation": null}, {"text": "introducing", "start": 457, "end": 468, "annotation": null}, {"text": "a", "start": 469, "end": 470, "annotation": null}, {"text": "5-nm-thick", "start": 471, "end": 481, "annotation": null}, {"text": "buffer", "start": 482, "end": 488, "annotation": null}, {"text": "layer", "start": 489, "end": 494, "annotation": null}, {"text": ".", "start": 494, "end": 495, "annotation": null}], [{"text": "The", "start": 496, "end": 499, "annotation": null}, {"text": "transmittance", "start": 500, "end": 513, "annotation": null}, {"text": "for", "start": 514, "end": 517, "annotation": null}, {"text": "all", "start": 518, "end": 521, "annotation": null}, {"text": "the", "start": 522, "end": 525, "annotation": null}, {"text": "films", "start": 526, "end": 531, "annotation": null}, {"text": "was", "start": 532, "end": 535, "annotation": null}, {"text": "above", "start": 536, "end": 541, "annotation": null}, {"text": "80", "start": 542, "end": 544, "annotation": null}, {"text": "%", "start": 544, "end": 545, "annotation": null}, {"text": "in", "start": 546, "end": 548, "annotation": null}, {"text": "the", "start": 549, "end": 552, "annotation": null}, {"text": "visible", "start": 553, "end": 560, "annotation": null}, {"text": "region", "start": 561, "end": 567, "annotation": null}, {"text": ".", "start": 567, "end": 568, "annotation": null}], [{"text": "The", "start": 569, "end": 572, "annotation": null}, {"text": "effects", "start": 573, "end": 580, "annotation": null}, {"text": "of", "start": 581, "end": 583, "annotation": null}, {"text": "the", "start": 584, "end": 587, "annotation": null}, {"text": "buffer", "start": 588, "end": 594, "annotation": null}, {"text": "layer", "start": 595, "end": 600, "annotation": null}, {"text": "were", "start": 601, "end": 605, "annotation": null}, {"text": "analysed", "start": 606, "end": 614, "annotation": null}, {"text": "and", "start": 615, "end": 618, "annotation": null}, {"text": "discussed", "start": 619, "end": 628, "annotation": null}, {"text": "in", "start": 629, "end": 631, "annotation": null}, {"text": "detail", "start": 632, "end": 638, "annotation": null}, {"text": ".", "start": 638, "end": 639, "annotation": null}], [{"text": "It", "start": 640, "end": 642, "annotation": null}, {"text": "is", "start": 643, "end": 645, "annotation": null}, {"text": "found", "start": 646, "end": 651, "annotation": null}, {"text": "that", "start": 652, "end": 656, "annotation": null}, {"text": "the", "start": 657, "end": 660, "annotation": null}, {"text": "insertion", "start": 661, "end": 670, "annotation": null}, {"text": "of", "start": 671, "end": 673, "annotation": null}, {"text": "the", "start": 674, "end": 677, "annotation": null}, {"text": "buffer", "start": 678, "end": 684, "annotation": null}, {"text": "layer", "start": 685, "end": 690, "annotation": null}, {"text": "can", "start": 691, "end": 694, "annotation": null}, {"text": "improve", "start": 695, "end": 702, "annotation": null}, {"text": "the", "start": 703, "end": 706, "annotation": null}, {"text": "crystallinity", "start": 707, "end": 720, "annotation": null}, {"text": "of", "start": 721, "end": 723, "annotation": null}, {"text": "the", "start": 724, "end": 727, "annotation": null}, {"text": "AZO", "start": 728, "end": 731, "annotation": null}, {"text": "film", "start": 732, "end": 736, "annotation": null}, {"text": ".", "start": 736, "end": 737, "annotation": null}]], "meta": {"doi": "10.1016/j.tsf.2013.10.153"}} +{"remark": "doping_annt1", "text": "In order to improve the luminescence properties of Y2O2S: Tb3+, Sr2+, Zr4+, the Eu3+ ions doped Y2O2S:Tb3+, Sr2+, Zr4+ white-light long-lasting phosphors were synthesized by the solid-state reaction method. The Y2O2S:Tb3+, Eu3+, Sr2+, Zr4+ phosphors were characterized by X-ray diffraction, photoluminescence, long-lasting phosphorescence and thermoluminescence spectra. The samples doped with different concentration of Eu3+ ions were composed of the pure Y2O2S phase at 1000\u00b0C for 30min. Under 263nm UV excitation, the emission peaks at 417nm and 544nm were assigned to the 5D3\u21927F5 and 5D4\u21927F5 transitions of Tb3+ respectively, and the emission peak at 626nm was assigned to the 5D0\u21927F2 transition of Eu3+. With 0.15% Eu3+ concentration, the CIE chromaticity diagram was (0.28, 0.31), the trap depth was 0.89eV and the decay time could last for over 220s (\u22651mcd/m2).", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "order", "start": 3, "end": 8, "annotation": null}, {"text": "to", "start": 9, "end": 11, "annotation": null}, {"text": "improve", "start": 12, "end": 19, "annotation": null}, {"text": "the", "start": 20, "end": 23, "annotation": null}, {"text": "luminescence", "start": 24, "end": 36, "annotation": null}, {"text": "properties", "start": 37, "end": 47, "annotation": null}, {"text": "of", "start": 48, "end": 50, "annotation": null}, {"text": "Y2O2S", "start": 51, "end": 56, "annotation": "BASEMAT"}, {"text": ":", "start": 56, "end": 57, "annotation": "BASEMAT"}, {"text": "Tb3+", "start": 58, "end": 62, "annotation": "BASEMAT"}, {"text": ",", "start": 62, "end": 63, "annotation": "BASEMAT"}, {"text": "Sr2+", "start": 64, "end": 68, "annotation": "BASEMAT"}, {"text": ",", "start": 68, "end": 69, "annotation": "BASEMAT"}, {"text": "Zr4+", "start": 70, "end": 74, "annotation": "BASEMAT"}, {"text": ",", "start": 74, "end": 75, "annotation": null}, {"text": "the", "start": 76, "end": 79, "annotation": null}, {"text": "Eu3+", "start": 80, "end": 84, "annotation": "DOPANT"}, {"text": "ions", "start": 85, "end": 89, "annotation": null}, {"text": "doped", "start": 90, "end": 95, "annotation": null}, {"text": "Y2O2S", "start": 96, "end": 101, "annotation": "BASEMAT"}, {"text": ":", "start": 101, "end": 102, "annotation": "BASEMAT"}, {"text": "Tb3+", "start": 102, "end": 106, "annotation": "BASEMAT"}, {"text": ",", "start": 106, "end": 107, "annotation": "BASEMAT"}, {"text": "Sr2+", "start": 108, "end": 112, "annotation": "BASEMAT"}, {"text": ",", "start": 112, "end": 113, "annotation": "BASEMAT"}, {"text": "Zr4+", "start": 114, "end": 118, "annotation": "BASEMAT"}, {"text": "white", "start": 119, "end": 124, "annotation": null}, {"text": "-", "start": 124, "end": 125, "annotation": null}, {"text": "light", "start": 125, "end": 130, "annotation": null}, {"text": "long", "start": 131, "end": 135, "annotation": null}, {"text": "-", "start": 135, "end": 136, "annotation": null}, {"text": "lasting", "start": 136, "end": 143, "annotation": null}, {"text": "phosphors", "start": 144, "end": 153, "annotation": null}, {"text": "were", "start": 154, "end": 158, "annotation": null}, {"text": "synthesized", "start": 159, "end": 170, "annotation": null}, {"text": "by", "start": 171, "end": 173, "annotation": null}, {"text": "the", "start": 174, "end": 177, "annotation": null}, {"text": "solid", "start": 178, "end": 183, "annotation": null}, {"text": "-", "start": 183, "end": 184, "annotation": null}, {"text": "state", "start": 184, "end": 189, "annotation": null}, {"text": "reaction", "start": 190, "end": 198, "annotation": null}, {"text": "method", "start": 199, "end": 205, "annotation": null}, {"text": ".", "start": 205, "end": 206, "annotation": null}], [{"text": "The", "start": 207, "end": 210, "annotation": null}, {"text": "Y2O2S", "start": 211, "end": 216, "annotation": null}, {"text": ":", "start": 216, "end": 217, "annotation": null}, {"text": "Tb3+", "start": 217, "end": 221, "annotation": null}, {"text": ",", "start": 221, "end": 222, "annotation": null}, {"text": "Eu3+", "start": 223, "end": 227, "annotation": null}, {"text": ",", "start": 227, "end": 228, "annotation": null}, {"text": "Sr2+", "start": 229, "end": 233, "annotation": null}, {"text": ",", "start": 233, "end": 234, "annotation": null}, {"text": "Zr4+", "start": 235, "end": 239, "annotation": null}, {"text": "phosphors", "start": 240, "end": 249, "annotation": null}, {"text": "were", "start": 250, "end": 254, "annotation": null}, {"text": "characterized", "start": 255, "end": 268, "annotation": null}, {"text": "by", "start": 269, "end": 271, "annotation": null}, {"text": "X-ray", "start": 272, "end": 277, "annotation": null}, {"text": "diffraction", "start": 278, "end": 289, "annotation": null}, {"text": ",", "start": 289, "end": 290, "annotation": null}, {"text": "photoluminescence", "start": 291, "end": 308, "annotation": null}, {"text": ",", "start": 308, "end": 309, "annotation": null}, {"text": "long", "start": 310, "end": 314, "annotation": null}, {"text": "-", "start": 314, "end": 315, "annotation": null}, {"text": "lasting", "start": 315, "end": 322, "annotation": null}, {"text": "phosphorescence", "start": 323, "end": 338, "annotation": null}, {"text": "and", "start": 339, "end": 342, "annotation": null}, {"text": "thermoluminescence", "start": 343, "end": 361, "annotation": null}, {"text": "spectra", "start": 362, "end": 369, "annotation": null}, {"text": ".", "start": 369, "end": 370, "annotation": null}], [{"text": "The", "start": 371, "end": 374, "annotation": null}, {"text": "samples", "start": 375, "end": 382, "annotation": null}, {"text": "doped", "start": 383, "end": 388, "annotation": null}, {"text": "with", "start": 389, "end": 393, "annotation": null}, {"text": "different", "start": 394, "end": 403, "annotation": null}, {"text": "concentration", "start": 404, "end": 417, "annotation": null}, {"text": "of", "start": 418, "end": 420, "annotation": null}, {"text": "Eu3+", "start": 421, "end": 425, "annotation": "DOPANT"}, {"text": "ions", "start": 426, "end": 430, "annotation": null}, {"text": "were", "start": 431, "end": 435, "annotation": null}, {"text": "composed", "start": 436, "end": 444, "annotation": null}, {"text": "of", "start": 445, "end": 447, "annotation": null}, {"text": "the", "start": 448, "end": 451, "annotation": null}, {"text": "pure", "start": 452, "end": 456, "annotation": null}, {"text": "Y2O2S", "start": 457, "end": 462, "annotation": "BASEMAT"}, {"text": "phase", "start": 463, "end": 468, "annotation": null}, {"text": "at", "start": 469, "end": 471, "annotation": null}, {"text": "1000", "start": 472, "end": 476, "annotation": null}, {"text": "\u00b0", "start": 476, "end": 477, "annotation": null}, {"text": "C", "start": 477, "end": 478, "annotation": null}, {"text": "for", "start": 479, "end": 482, "annotation": null}, {"text": "30", "start": 483, "end": 485, "annotation": null}, {"text": "min", "start": 485, "end": 488, "annotation": null}, {"text": ".", "start": 488, "end": 489, "annotation": null}], [{"text": "Under", "start": 490, "end": 495, "annotation": null}, {"text": "263", "start": 496, "end": 499, "annotation": null}, {"text": "nm", "start": 499, "end": 501, "annotation": null}, {"text": "UV", "start": 502, "end": 504, "annotation": null}, {"text": "excitation", "start": 505, "end": 515, "annotation": null}, {"text": ",", "start": 515, "end": 516, "annotation": null}, {"text": "the", "start": 517, "end": 520, "annotation": null}, {"text": "emission", "start": 521, "end": 529, "annotation": null}, {"text": "peaks", "start": 530, "end": 535, "annotation": null}, {"text": "at", "start": 536, "end": 538, "annotation": null}, {"text": "417", "start": 539, "end": 542, "annotation": null}, {"text": "nm", "start": 542, "end": 544, "annotation": null}, {"text": "and", "start": 545, "end": 548, "annotation": null}, {"text": "544", "start": 549, "end": 552, "annotation": null}, {"text": "nm", "start": 552, "end": 554, "annotation": null}, {"text": "were", "start": 555, "end": 559, "annotation": null}, {"text": "assigned", "start": 560, "end": 568, "annotation": null}, {"text": "to", "start": 569, "end": 571, "annotation": null}, {"text": "the", "start": 572, "end": 575, "annotation": null}, {"text": "5D3\u21927F5", "start": 576, "end": 583, "annotation": null}, {"text": "and", "start": 584, "end": 587, "annotation": null}, {"text": "5D4\u21927F5", "start": 588, "end": 595, "annotation": null}, {"text": "transitions", "start": 596, "end": 607, "annotation": null}, {"text": "of", "start": 608, "end": 610, "annotation": null}, {"text": "Tb3+", "start": 611, "end": 615, "annotation": null}, {"text": "respectively", "start": 616, "end": 628, "annotation": null}, {"text": ",", "start": 628, "end": 629, "annotation": null}, {"text": "and", "start": 630, "end": 633, "annotation": null}, {"text": "the", "start": 634, "end": 637, "annotation": null}, {"text": "emission", "start": 638, "end": 646, "annotation": null}, {"text": "peak", "start": 647, "end": 651, "annotation": null}, {"text": "at", "start": 652, "end": 654, "annotation": null}, {"text": "626", "start": 655, "end": 658, "annotation": null}, {"text": "nm", "start": 658, "end": 660, "annotation": null}, {"text": "was", "start": 661, "end": 664, "annotation": null}, {"text": "assigned", "start": 665, "end": 673, "annotation": null}, {"text": "to", "start": 674, "end": 676, "annotation": null}, {"text": "the", "start": 677, "end": 680, "annotation": null}, {"text": "5D0\u21927F2", "start": 681, "end": 688, "annotation": null}, {"text": "transition", "start": 689, "end": 699, "annotation": null}, {"text": "of", "start": 700, "end": 702, "annotation": null}, {"text": "Eu3+", "start": 703, "end": 707, "annotation": null}, {"text": ".", "start": 707, "end": 708, "annotation": null}], [{"text": "With", "start": 709, "end": 713, "annotation": null}, {"text": "0.15", "start": 714, "end": 718, "annotation": "DOPMODQ"}, {"text": "%", "start": 718, "end": 719, "annotation": "DOPMODQ"}, {"text": "Eu3+", "start": 720, "end": 724, "annotation": "DOPANT"}, {"text": "concentration", "start": 725, "end": 738, "annotation": null}, {"text": ",", "start": 738, "end": 739, "annotation": null}, {"text": "the", "start": 740, "end": 743, "annotation": null}, {"text": "CIE", "start": 744, "end": 747, "annotation": null}, {"text": "chromaticity", "start": 748, "end": 760, "annotation": null}, {"text": "diagram", "start": 761, "end": 768, "annotation": null}, {"text": "was", "start": 769, "end": 772, "annotation": null}, {"text": "(", "start": 773, "end": 774, "annotation": null}, {"text": "0.28", "start": 774, "end": 778, "annotation": null}, {"text": ",", "start": 778, "end": 779, "annotation": null}, {"text": "0.31", "start": 780, "end": 784, "annotation": null}, {"text": ")", "start": 784, "end": 785, "annotation": null}, {"text": ",", "start": 785, "end": 786, "annotation": null}, {"text": "the", "start": 787, "end": 790, "annotation": null}, {"text": "trap", "start": 791, "end": 795, "annotation": null}, {"text": "depth", "start": 796, "end": 801, "annotation": null}, {"text": "was", "start": 802, "end": 805, "annotation": null}, {"text": "0.89eV", "start": 806, "end": 812, "annotation": null}, {"text": "and", "start": 813, "end": 816, "annotation": null}, {"text": "the", "start": 817, "end": 820, "annotation": null}, {"text": "decay", "start": 821, "end": 826, "annotation": null}, {"text": "time", "start": 827, "end": 831, "annotation": null}, {"text": "could", "start": 832, "end": 837, "annotation": null}, {"text": "last", "start": 838, "end": 842, "annotation": null}, {"text": "for", "start": 843, "end": 846, "annotation": null}, {"text": "over", "start": 847, "end": 851, "annotation": null}, {"text": "220s", "start": 852, "end": 856, "annotation": null}, {"text": "(", "start": 857, "end": 858, "annotation": null}, {"text": "\u2265", "start": 858, "end": 859, "annotation": null}, {"text": "1mcd", "start": 859, "end": 863, "annotation": null}, {"text": "/", "start": 863, "end": 864, "annotation": null}, {"text": "m2", "start": 864, "end": 866, "annotation": null}, {"text": ")", "start": 866, "end": 867, "annotation": null}, {"text": ".", "start": 867, "end": 868, "annotation": null}]], "meta": {"doi": "10.1016/j.ceramint.2012.12.077"}} +{"remark": "doping_annt1", "text": "The possibility is shown of designing a functional hybrid galvanophotocapacitor active system that would be able to use, if necessary, its own chemical energy in darkness instead of only the energy stored during illumination. In experiments, the Bridgman-grown n-type indium monoselenide was used as the photosensitive anode. Electrochemical investigations were carried out in a three-electrode cell with an aprotic solution of electrolyte; 0.4 M lithium-iodide solution in \u03b3-butyrolactone acid and 1M lithium-tetrafluorborate in the same solvent were chosen as the latter.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "possibility", "start": 4, "end": 15, "annotation": null}, {"text": "is", "start": 16, "end": 18, "annotation": null}, {"text": "shown", "start": 19, "end": 24, "annotation": null}, {"text": "of", "start": 25, "end": 27, "annotation": null}, {"text": "designing", "start": 28, "end": 37, "annotation": null}, {"text": "a", "start": 38, "end": 39, "annotation": null}, {"text": "functional", "start": 40, "end": 50, "annotation": null}, {"text": "hybrid", "start": 51, "end": 57, "annotation": null}, {"text": "galvanophotocapacitor", "start": 58, "end": 79, "annotation": null}, {"text": "active", "start": 80, "end": 86, "annotation": null}, {"text": "system", "start": 87, "end": 93, "annotation": null}, {"text": "that", "start": 94, "end": 98, "annotation": null}, {"text": "would", "start": 99, "end": 104, "annotation": null}, {"text": "be", "start": 105, "end": 107, "annotation": null}, {"text": "able", "start": 108, "end": 112, "annotation": null}, {"text": "to", "start": 113, "end": 115, "annotation": null}, {"text": "use", "start": 116, "end": 119, "annotation": null}, {"text": ",", "start": 119, "end": 120, "annotation": null}, {"text": "if", "start": 121, "end": 123, "annotation": null}, {"text": "necessary", "start": 124, "end": 133, "annotation": null}, {"text": ",", "start": 133, "end": 134, "annotation": null}, {"text": "its", "start": 135, "end": 138, "annotation": null}, {"text": "own", "start": 139, "end": 142, "annotation": null}, {"text": "chemical", "start": 143, "end": 151, "annotation": null}, {"text": "energy", "start": 152, "end": 158, "annotation": null}, {"text": "in", "start": 159, "end": 161, "annotation": null}, {"text": "darkness", "start": 162, "end": 170, "annotation": null}, {"text": "instead", "start": 171, "end": 178, "annotation": null}, {"text": "of", "start": 179, "end": 181, "annotation": null}, {"text": "only", "start": 182, "end": 186, "annotation": null}, {"text": "the", "start": 187, "end": 190, "annotation": null}, {"text": "energy", "start": 191, "end": 197, "annotation": null}, {"text": "stored", "start": 198, "end": 204, "annotation": null}, {"text": "during", "start": 205, "end": 211, "annotation": null}, {"text": "illumination", "start": 212, "end": 224, "annotation": null}, {"text": ".", "start": 224, "end": 225, "annotation": null}], [{"text": "In", "start": 226, "end": 228, "annotation": null}, {"text": "experiments", "start": 229, "end": 240, "annotation": null}, {"text": ",", "start": 240, "end": 241, "annotation": null}, {"text": "the", "start": 242, "end": 245, "annotation": null}, {"text": "Bridgman", "start": 246, "end": 254, "annotation": null}, {"text": "-", "start": 254, "end": 255, "annotation": null}, {"text": "grown", "start": 255, "end": 260, "annotation": null}, {"text": "n", "start": 261, "end": 262, "annotation": "DOPANT"}, {"text": "-", "start": 262, "end": 263, "annotation": "DOPANT"}, {"text": "type", "start": 263, "end": 267, "annotation": "DOPANT"}, {"text": "indium", "start": 268, "end": 274, "annotation": "BASEMAT"}, {"text": "monoselenide", "start": 275, "end": 287, "annotation": "BASEMAT"}, {"text": "was", "start": 288, "end": 291, "annotation": null}, {"text": "used", "start": 292, "end": 296, "annotation": null}, {"text": "as", "start": 297, "end": 299, "annotation": null}, {"text": "the", "start": 300, "end": 303, "annotation": null}, {"text": "photosensitive", "start": 304, "end": 318, "annotation": null}, {"text": "anode", "start": 319, "end": 324, "annotation": null}, {"text": ".", "start": 324, "end": 325, "annotation": null}], [{"text": "Electrochemical", "start": 326, "end": 341, "annotation": null}, {"text": "investigations", "start": 342, "end": 356, "annotation": null}, {"text": "were", "start": 357, "end": 361, "annotation": null}, {"text": "carried", "start": 362, "end": 369, "annotation": null}, {"text": "out", "start": 370, "end": 373, "annotation": null}, {"text": "in", "start": 374, "end": 376, "annotation": null}, {"text": "a", "start": 377, "end": 378, "annotation": null}, {"text": "three", "start": 379, "end": 384, "annotation": null}, {"text": "-", "start": 384, "end": 385, "annotation": null}, {"text": "electrode", "start": 385, "end": 394, "annotation": null}, {"text": "cell", "start": 395, "end": 399, "annotation": null}, {"text": "with", "start": 400, "end": 404, "annotation": null}, {"text": "an", "start": 405, "end": 407, "annotation": null}, {"text": "aprotic", "start": 408, "end": 415, "annotation": null}, {"text": "solution", "start": 416, "end": 424, "annotation": null}, {"text": "of", "start": 425, "end": 427, "annotation": null}, {"text": "electrolyte", "start": 428, "end": 439, "annotation": null}, {"text": ";", "start": 439, "end": 440, "annotation": null}, {"text": "0.4", "start": 441, "end": 444, "annotation": null}, {"text": "M", "start": 445, "end": 446, "annotation": null}, {"text": "lithium", "start": 447, "end": 454, "annotation": null}, {"text": "-", "start": 454, "end": 455, "annotation": null}, {"text": "iodide", "start": 455, "end": 461, "annotation": null}, {"text": "solution", "start": 462, "end": 470, "annotation": null}, {"text": "in", "start": 471, "end": 473, "annotation": null}, {"text": "\u03b3-butyrolactone", "start": 474, "end": 489, "annotation": null}, {"text": "acid", "start": 490, "end": 494, "annotation": null}, {"text": "and", "start": 495, "end": 498, "annotation": null}, {"text": "1", "start": 499, "end": 500, "annotation": null}, {"text": "M", "start": 500, "end": 501, "annotation": null}, {"text": "lithium-tetrafluorborate", "start": 502, "end": 526, "annotation": null}, {"text": "in", "start": 527, "end": 529, "annotation": null}, {"text": "the", "start": 530, "end": 533, "annotation": null}, {"text": "same", "start": 534, "end": 538, "annotation": null}, {"text": "solvent", "start": 539, "end": 546, "annotation": null}, {"text": "were", "start": 547, "end": 551, "annotation": null}, {"text": "chosen", "start": 552, "end": 558, "annotation": null}, {"text": "as", "start": 559, "end": 561, "annotation": null}, {"text": "the", "start": 562, "end": 565, "annotation": null}, {"text": "latter", "start": 566, "end": 572, "annotation": null}, {"text": ".", "start": 572, "end": 573, "annotation": null}]], "meta": {"doi": "10.1134/S1063782610070018"}} +{"remark": "doping_annt1", "text": "This work focuses on the separation and quantification of fixed bulk oxide charge, fixed charge at the dielectric\u2013semiconductor interface and interface state charge components in the Pt/Al2O3/In0.53Ga0.47As metal-oxide-semiconductor (MOS) system. The availability of atomic layer deposited Al2O3 dielectrics over n- and p-type In0.53Ga0.47As with a range of well-controlled thickness values opens up an experimental route for the determination of the interface state density (Dit) independently of the total fixed oxide charge using capacitance\u2013voltage measurements taken at 1 MHz and \u221250\u00b0C. Low temperature forming gas annealing (350\u00b0C) significantly reduces the amount of fixed charge. The interface fixed charge is reduced from \u223c \u22128.5 \u00d7 1012 cm\u22122 preanneal to \u223c \u22127.4 \u00d7 1011 cm\u22122 postanneal and the bulk oxide charge is reduced from \u223c1.4 \u00d7 1019 cm\u22123 preanneal to \u223c5 \u00d7 1018 cm\u22123 postanneal. The forming gas anneal also has a significant effect on the interface state charge, reducing its density from 1.3 \u00d7 1013cm\u22122 preanneal to 4 \u00d7 1012 cm\u22122 postanneal.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "This", "start": 0, "end": 4, "annotation": null}, {"text": "work", "start": 5, "end": 9, "annotation": null}, {"text": "focuses", "start": 10, "end": 17, "annotation": null}, {"text": "on", "start": 18, "end": 20, "annotation": null}, {"text": "the", "start": 21, "end": 24, "annotation": null}, {"text": "separation", "start": 25, "end": 35, "annotation": null}, {"text": "and", "start": 36, "end": 39, "annotation": null}, {"text": "quantification", "start": 40, "end": 54, "annotation": null}, {"text": "of", "start": 55, "end": 57, "annotation": null}, {"text": "fixed", "start": 58, "end": 63, "annotation": null}, {"text": "bulk", "start": 64, "end": 68, "annotation": null}, {"text": "oxide", "start": 69, "end": 74, "annotation": null}, {"text": "charge", "start": 75, "end": 81, "annotation": null}, {"text": ",", "start": 81, "end": 82, "annotation": null}, {"text": "fixed", "start": 83, "end": 88, "annotation": null}, {"text": "charge", "start": 89, "end": 95, "annotation": null}, {"text": "at", "start": 96, "end": 98, "annotation": null}, {"text": "the", "start": 99, "end": 102, "annotation": null}, {"text": "dielectric", "start": 103, "end": 113, "annotation": null}, {"text": "\u2013", "start": 113, "end": 114, "annotation": null}, {"text": "semiconductor", "start": 114, "end": 127, "annotation": null}, {"text": "interface", "start": 128, "end": 137, "annotation": null}, {"text": "and", "start": 138, "end": 141, "annotation": null}, {"text": "interface", "start": 142, "end": 151, "annotation": null}, {"text": "state", "start": 152, "end": 157, "annotation": null}, {"text": "charge", "start": 158, "end": 164, "annotation": null}, {"text": "components", "start": 165, "end": 175, "annotation": null}, {"text": "in", "start": 176, "end": 178, "annotation": null}, {"text": "the", "start": 179, "end": 182, "annotation": null}, {"text": "Pt", "start": 183, "end": 185, "annotation": null}, {"text": "/", "start": 185, "end": 186, "annotation": null}, {"text": "Al2O3", "start": 186, "end": 191, "annotation": null}, {"text": "/", "start": 191, "end": 192, "annotation": null}, {"text": "In0.53Ga0.47As", "start": 192, "end": 206, "annotation": null}, {"text": "metal", "start": 207, "end": 212, "annotation": null}, {"text": "-", "start": 212, "end": 213, "annotation": null}, {"text": "oxide", "start": 213, "end": 218, "annotation": null}, {"text": "-", "start": 218, "end": 219, "annotation": null}, {"text": "semiconductor", "start": 219, "end": 232, "annotation": null}, {"text": "(", "start": 233, "end": 234, "annotation": null}, {"text": "MOS", "start": 234, "end": 237, "annotation": null}, {"text": ")", "start": 237, "end": 238, "annotation": null}, {"text": "system", "start": 239, "end": 245, "annotation": null}, {"text": ".", "start": 245, "end": 246, "annotation": null}], [{"text": "The", "start": 247, "end": 250, "annotation": null}, {"text": "availability", "start": 251, "end": 263, "annotation": null}, {"text": "of", "start": 264, "end": 266, "annotation": null}, {"text": "atomic", "start": 267, "end": 273, "annotation": null}, {"text": "layer", "start": 274, "end": 279, "annotation": null}, {"text": "deposited", "start": 280, "end": 289, "annotation": null}, {"text": "Al2O3", "start": 290, "end": 295, "annotation": null}, {"text": "dielectrics", "start": 296, "end": 307, "annotation": null}, {"text": "over", "start": 308, "end": 312, "annotation": null}, {"text": "n-", "start": 313, "end": 315, "annotation": "DOPANT"}, {"text": "and", "start": 316, "end": 319, "annotation": null}, {"text": "p", "start": 320, "end": 321, "annotation": "DOPANT"}, {"text": "-", "start": 321, "end": 322, "annotation": "DOPANT"}, {"text": "type", "start": 322, "end": 326, "annotation": "DOPANT"}, {"text": "In0.53Ga0.47As", "start": 327, "end": 341, "annotation": "BASEMAT"}, {"text": "with", "start": 342, "end": 346, "annotation": null}, {"text": "a", "start": 347, "end": 348, "annotation": null}, {"text": "range", "start": 349, "end": 354, "annotation": null}, {"text": "of", "start": 355, "end": 357, "annotation": null}, {"text": "well", "start": 358, "end": 362, "annotation": null}, {"text": "-", "start": 362, "end": 363, "annotation": null}, {"text": "controlled", "start": 363, "end": 373, "annotation": null}, {"text": "thickness", "start": 374, "end": 383, "annotation": null}, {"text": "values", "start": 384, "end": 390, "annotation": null}, {"text": "opens", "start": 391, "end": 396, "annotation": null}, {"text": "up", "start": 397, "end": 399, "annotation": null}, {"text": "an", "start": 400, "end": 402, "annotation": null}, {"text": "experimental", "start": 403, "end": 415, "annotation": null}, {"text": "route", "start": 416, "end": 421, "annotation": null}, {"text": "for", "start": 422, "end": 425, "annotation": null}, {"text": "the", "start": 426, "end": 429, "annotation": null}, {"text": "determination", "start": 430, "end": 443, "annotation": null}, {"text": "of", "start": 444, "end": 446, "annotation": null}, {"text": "the", "start": 447, "end": 450, "annotation": null}, {"text": "interface", "start": 451, "end": 460, "annotation": null}, {"text": "state", "start": 461, "end": 466, "annotation": null}, {"text": "density", "start": 467, "end": 474, "annotation": null}, {"text": "(", "start": 475, "end": 476, "annotation": null}, {"text": "Dit", "start": 476, "end": 479, "annotation": null}, {"text": ")", "start": 479, "end": 480, "annotation": null}, {"text": "independently", "start": 481, "end": 494, "annotation": null}, {"text": "of", "start": 495, "end": 497, "annotation": null}, {"text": "the", "start": 498, "end": 501, "annotation": null}, {"text": "total", "start": 502, "end": 507, "annotation": null}, {"text": "fixed", "start": 508, "end": 513, "annotation": null}, {"text": "oxide", "start": 514, "end": 519, "annotation": null}, {"text": "charge", "start": 520, "end": 526, "annotation": null}, {"text": "using", "start": 527, "end": 532, "annotation": null}, {"text": "capacitance", "start": 533, "end": 544, "annotation": null}, {"text": "\u2013", "start": 544, "end": 545, "annotation": null}, {"text": "voltage", "start": 545, "end": 552, "annotation": null}, {"text": "measurements", "start": 553, "end": 565, "annotation": null}, {"text": "taken", "start": 566, "end": 571, "annotation": null}, {"text": "at", "start": 572, "end": 574, "annotation": null}, {"text": "1", "start": 575, "end": 576, "annotation": null}, {"text": "MHz", "start": 577, "end": 580, "annotation": null}, {"text": "and", "start": 581, "end": 584, "annotation": null}, {"text": "\u2212", "start": 585, "end": 586, "annotation": null}, {"text": "50", "start": 586, "end": 588, "annotation": null}, {"text": "\u00b0", "start": 588, "end": 589, "annotation": null}, {"text": "C", "start": 589, "end": 590, "annotation": null}, {"text": ".", "start": 590, "end": 591, "annotation": null}], [{"text": "Low", "start": 592, "end": 595, "annotation": null}, {"text": "temperature", "start": 596, "end": 607, "annotation": null}, {"text": "forming", "start": 608, "end": 615, "annotation": null}, {"text": "gas", "start": 616, "end": 619, "annotation": null}, {"text": "annealing", "start": 620, "end": 629, "annotation": null}, {"text": "(", "start": 630, "end": 631, "annotation": null}, {"text": "350", "start": 631, "end": 634, "annotation": null}, {"text": "\u00b0", "start": 634, "end": 635, "annotation": null}, {"text": "C", "start": 635, "end": 636, "annotation": null}, {"text": ")", "start": 636, "end": 637, "annotation": null}, {"text": "significantly", "start": 638, "end": 651, "annotation": null}, {"text": "reduces", "start": 652, "end": 659, "annotation": null}, {"text": "the", "start": 660, "end": 663, "annotation": null}, {"text": "amount", "start": 664, "end": 670, "annotation": null}, {"text": "of", "start": 671, "end": 673, "annotation": null}, {"text": "fixed", "start": 674, "end": 679, "annotation": null}, {"text": "charge", "start": 680, "end": 686, "annotation": null}, {"text": ".", "start": 686, "end": 687, "annotation": null}], [{"text": "The", "start": 688, "end": 691, "annotation": null}, {"text": "interface", "start": 692, "end": 701, "annotation": null}, {"text": "fixed", "start": 702, "end": 707, "annotation": null}, {"text": "charge", "start": 708, "end": 714, "annotation": null}, {"text": "is", "start": 715, "end": 717, "annotation": null}, {"text": "reduced", "start": 718, "end": 725, "annotation": null}, {"text": "from", "start": 726, "end": 730, "annotation": null}, {"text": "\u223c", "start": 731, "end": 732, "annotation": null}, {"text": "\u2212", "start": 733, "end": 734, "annotation": null}, {"text": "8.5", "start": 734, "end": 737, "annotation": null}, {"text": "\u00d7", "start": 738, "end": 739, "annotation": null}, {"text": "1012", "start": 740, "end": 744, "annotation": null}, {"text": "cm\u22122", "start": 745, "end": 749, "annotation": null}, {"text": "preanneal", "start": 750, "end": 759, "annotation": null}, {"text": "to", "start": 760, "end": 762, "annotation": null}, {"text": "\u223c", "start": 763, "end": 764, "annotation": null}, {"text": "\u2212", "start": 765, "end": 766, "annotation": null}, {"text": "7.4", "start": 766, "end": 769, "annotation": null}, {"text": "\u00d7", "start": 770, "end": 771, "annotation": null}, {"text": "1011", "start": 772, "end": 776, "annotation": null}, {"text": "cm\u22122", "start": 777, "end": 781, "annotation": null}, {"text": "postanneal", "start": 782, "end": 792, "annotation": null}, {"text": "and", "start": 793, "end": 796, "annotation": null}, {"text": "the", "start": 797, "end": 800, "annotation": null}, {"text": "bulk", "start": 801, "end": 805, "annotation": null}, {"text": "oxide", "start": 806, "end": 811, "annotation": null}, {"text": "charge", "start": 812, "end": 818, "annotation": null}, {"text": "is", "start": 819, "end": 821, "annotation": null}, {"text": "reduced", "start": 822, "end": 829, "annotation": null}, {"text": "from", "start": 830, "end": 834, "annotation": null}, {"text": "\u223c", "start": 835, "end": 836, "annotation": null}, {"text": "1.4", "start": 836, "end": 839, "annotation": null}, {"text": "\u00d7", "start": 840, "end": 841, "annotation": null}, {"text": "1019", "start": 842, "end": 846, "annotation": null}, {"text": "cm\u22123", "start": 847, "end": 851, "annotation": null}, {"text": "preanneal", "start": 852, "end": 861, "annotation": null}, {"text": "to", "start": 862, "end": 864, "annotation": null}, {"text": "\u223c", "start": 865, "end": 866, "annotation": null}, {"text": "5", "start": 866, "end": 867, "annotation": null}, {"text": "\u00d7", "start": 868, "end": 869, "annotation": null}, {"text": "1018", "start": 870, "end": 874, "annotation": null}, {"text": "cm\u22123", "start": 875, "end": 879, "annotation": null}, {"text": "postanneal", "start": 880, "end": 890, "annotation": null}, {"text": ".", "start": 890, "end": 891, "annotation": null}], [{"text": "The", "start": 892, "end": 895, "annotation": null}, {"text": "forming", "start": 896, "end": 903, "annotation": null}, {"text": "gas", "start": 904, "end": 907, "annotation": null}, {"text": "anneal", "start": 908, "end": 914, "annotation": null}, {"text": "also", "start": 915, "end": 919, "annotation": null}, {"text": "has", "start": 920, "end": 923, "annotation": null}, {"text": "a", "start": 924, "end": 925, "annotation": null}, {"text": "significant", "start": 926, "end": 937, "annotation": null}, {"text": "effect", "start": 938, "end": 944, "annotation": null}, {"text": "on", "start": 945, "end": 947, "annotation": null}, {"text": "the", "start": 948, "end": 951, "annotation": null}, {"text": "interface", "start": 952, "end": 961, "annotation": null}, {"text": "state", "start": 962, "end": 967, "annotation": null}, {"text": "charge", "start": 968, "end": 974, "annotation": null}, {"text": ",", "start": 974, "end": 975, "annotation": null}, {"text": "reducing", "start": 976, "end": 984, "annotation": null}, {"text": "its", "start": 985, "end": 988, "annotation": null}, {"text": "density", "start": 989, "end": 996, "annotation": null}, {"text": "from", "start": 997, "end": 1001, "annotation": null}, {"text": "1.3", "start": 1002, "end": 1005, "annotation": null}, {"text": "\u00d7", "start": 1006, "end": 1007, "annotation": null}, {"text": "1013", "start": 1008, "end": 1012, "annotation": null}, {"text": "cm\u22122", "start": 1012, "end": 1016, "annotation": null}, {"text": "preanneal", "start": 1017, "end": 1026, "annotation": null}, {"text": "to", "start": 1027, "end": 1029, "annotation": null}, {"text": "4", "start": 1030, "end": 1031, "annotation": null}, {"text": "\u00d7", "start": 1032, "end": 1033, "annotation": null}, {"text": "1012", "start": 1034, "end": 1038, "annotation": null}, {"text": "cm\u22122", "start": 1039, "end": 1043, "annotation": null}, {"text": "postanneal", "start": 1044, "end": 1054, "annotation": null}, {"text": ".", "start": 1054, "end": 1055, "annotation": null}]], "meta": {"doi": "10.1149/1.3545799"}} +{"remark": "doping_annt2", "text": "In this paper we present new results on doped \u03bcc-Si:H thin films deposited by hot-wire chemical vapour deposition (HWCVD) in the very low temperature range (125\u2013275\u00b0C). The doped layers were obtained by the addition of diborane or phosphine in the gas phase during deposition. The incorporation of boron and phosphorus in the films and their influence on the crystalline fraction are studied by secondary ion mass spectrometry and Raman spectroscopy, respectively. Good electrical transport properties were obtained in this deposition regime, with best dark conductivities of 2.6 and 9.8 S cm\u22121 for the p- and n-doped films, respectively. The effect of the hydrogen dilution and the layer thickness on the electrical properties are also studied. Some technological conclusions referred to cross contamination could be deduced from the nominally undoped samples obtained in the same chamber after p- and n-type heavily doped layers.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "this", "start": 3, "end": 7, "annotation": null}, {"text": "paper", "start": 8, "end": 13, "annotation": null}, {"text": "we", "start": 14, "end": 16, "annotation": null}, {"text": "present", "start": 17, "end": 24, "annotation": null}, {"text": "new", "start": 25, "end": 28, "annotation": null}, {"text": "results", "start": 29, "end": 36, "annotation": null}, {"text": "on", "start": 37, "end": 39, "annotation": null}, {"text": "doped", "start": 40, "end": 45, "annotation": null}, {"text": "\u03bcc-Si", "start": 46, "end": 51, "annotation": "BASEMAT"}, {"text": ":", "start": 51, "end": 52, "annotation": null}, {"text": "H", "start": 52, "end": 53, "annotation": "DOPANT"}, {"text": "thin", "start": 54, "end": 58, "annotation": null}, {"text": "films", "start": 59, "end": 64, "annotation": null}, {"text": "deposited", "start": 65, "end": 74, "annotation": null}, {"text": "by", "start": 75, "end": 77, "annotation": null}, {"text": "hot", "start": 78, "end": 81, "annotation": null}, {"text": "-", "start": 81, "end": 82, "annotation": null}, {"text": "wire", "start": 82, "end": 86, "annotation": null}, {"text": "chemical", "start": 87, "end": 95, "annotation": null}, {"text": "vapour", "start": 96, "end": 102, "annotation": null}, {"text": "deposition", "start": 103, "end": 113, "annotation": null}, {"text": "(", "start": 114, "end": 115, "annotation": null}, {"text": "HWCVD", "start": 115, "end": 120, "annotation": null}, {"text": ")", "start": 120, "end": 121, "annotation": null}, {"text": "in", "start": 122, "end": 124, "annotation": null}, {"text": "the", "start": 125, "end": 128, "annotation": null}, {"text": "very", "start": 129, "end": 133, "annotation": null}, {"text": "low", "start": 134, "end": 137, "annotation": null}, {"text": "temperature", "start": 138, "end": 149, "annotation": null}, {"text": "range", "start": 150, "end": 155, "annotation": null}, {"text": "(", "start": 156, "end": 157, "annotation": null}, {"text": "125", "start": 157, "end": 160, "annotation": null}, {"text": "\u2013", "start": 160, "end": 161, "annotation": null}, {"text": "275", "start": 161, "end": 164, "annotation": null}, {"text": "\u00b0", "start": 164, "end": 165, "annotation": null}, {"text": "C", "start": 165, "end": 166, "annotation": null}, {"text": ")", "start": 166, "end": 167, "annotation": null}, {"text": ".", "start": 167, "end": 168, "annotation": null}], [{"text": "The", "start": 169, "end": 172, "annotation": null}, {"text": "doped", "start": 173, "end": 178, "annotation": null}, {"text": "layers", "start": 179, "end": 185, "annotation": null}, {"text": "were", "start": 186, "end": 190, "annotation": null}, {"text": "obtained", "start": 191, "end": 199, "annotation": null}, {"text": "by", "start": 200, "end": 202, "annotation": null}, {"text": "the", "start": 203, "end": 206, "annotation": null}, {"text": "addition", "start": 207, "end": 215, "annotation": null}, {"text": "of", "start": 216, "end": 218, "annotation": null}, {"text": "diborane", "start": 219, "end": 227, "annotation": "DOPANT"}, {"text": "or", "start": 228, "end": 230, "annotation": null}, {"text": "phosphine", "start": 231, "end": 240, "annotation": "DOPANT"}, {"text": "in", "start": 241, "end": 243, "annotation": null}, {"text": "the", "start": 244, "end": 247, "annotation": null}, {"text": "gas", "start": 248, "end": 251, "annotation": null}, {"text": "phase", "start": 252, "end": 257, "annotation": null}, {"text": "during", "start": 258, "end": 264, "annotation": null}, {"text": "deposition", "start": 265, "end": 275, "annotation": null}, {"text": ".", "start": 275, "end": 276, "annotation": null}], [{"text": "The", "start": 277, "end": 280, "annotation": null}, {"text": "incorporation", "start": 281, "end": 294, "annotation": null}, {"text": "of", "start": 295, "end": 297, "annotation": null}, {"text": "boron", "start": 298, "end": 303, "annotation": "DOPANT"}, {"text": "and", "start": 304, "end": 307, "annotation": null}, {"text": "phosphorus", "start": 308, "end": 318, "annotation": "DOPANT"}, {"text": "in", "start": 319, "end": 321, "annotation": null}, {"text": "the", "start": 322, "end": 325, "annotation": null}, {"text": "films", "start": 326, "end": 331, "annotation": null}, {"text": "and", "start": 332, "end": 335, "annotation": null}, {"text": "their", "start": 336, "end": 341, "annotation": null}, {"text": "influence", "start": 342, "end": 351, "annotation": null}, {"text": "on", "start": 352, "end": 354, "annotation": null}, {"text": "the", "start": 355, "end": 358, "annotation": null}, {"text": "crystalline", "start": 359, "end": 370, "annotation": null}, {"text": "fraction", "start": 371, "end": 379, "annotation": null}, {"text": "are", "start": 380, "end": 383, "annotation": null}, {"text": "studied", "start": 384, "end": 391, "annotation": null}, {"text": "by", "start": 392, "end": 394, "annotation": null}, {"text": "secondary", "start": 395, "end": 404, "annotation": null}, {"text": "ion", "start": 405, "end": 408, "annotation": null}, {"text": "mass", "start": 409, "end": 413, "annotation": null}, {"text": "spectrometry", "start": 414, "end": 426, "annotation": null}, {"text": "and", "start": 427, "end": 430, "annotation": null}, {"text": "Raman", "start": 431, "end": 436, "annotation": null}, {"text": "spectroscopy", "start": 437, "end": 449, "annotation": null}, {"text": ",", "start": 449, "end": 450, "annotation": null}, {"text": "respectively", "start": 451, "end": 463, "annotation": null}, {"text": ".", "start": 463, "end": 464, "annotation": null}], [{"text": "Good", "start": 465, "end": 469, "annotation": null}, {"text": "electrical", "start": 470, "end": 480, "annotation": null}, {"text": "transport", "start": 481, "end": 490, "annotation": null}, {"text": "properties", "start": 491, "end": 501, "annotation": null}, {"text": "were", "start": 502, "end": 506, "annotation": null}, {"text": "obtained", "start": 507, "end": 515, "annotation": null}, {"text": "in", "start": 516, "end": 518, "annotation": null}, {"text": "this", "start": 519, "end": 523, "annotation": null}, {"text": "deposition", "start": 524, "end": 534, "annotation": null}, {"text": "regime", "start": 535, "end": 541, "annotation": null}, {"text": ",", "start": 541, "end": 542, "annotation": null}, {"text": "with", "start": 543, "end": 547, "annotation": null}, {"text": "best", "start": 548, "end": 552, "annotation": null}, {"text": "dark", "start": 553, "end": 557, "annotation": null}, {"text": "conductivities", "start": 558, "end": 572, "annotation": null}, {"text": "of", "start": 573, "end": 575, "annotation": null}, {"text": "2.6", "start": 576, "end": 579, "annotation": null}, {"text": "and", "start": 580, "end": 583, "annotation": null}, {"text": "9.8", "start": 584, "end": 587, "annotation": null}, {"text": "S", "start": 588, "end": 589, "annotation": null}, {"text": "cm\u22121", "start": 590, "end": 594, "annotation": null}, {"text": "for", "start": 595, "end": 598, "annotation": null}, {"text": "the", "start": 599, "end": 602, "annotation": null}, {"text": "p-", "start": 603, "end": 605, "annotation": "DOPANT"}, {"text": "and", "start": 606, "end": 609, "annotation": null}, {"text": "n", "start": 610, "end": 611, "annotation": "DOPANT"}, {"text": "-", "start": 611, "end": 612, "annotation": "DOPANT"}, {"text": "doped", "start": 612, "end": 617, "annotation": null}, {"text": "films", "start": 618, "end": 623, "annotation": "BASEMAT"}, {"text": ",", "start": 623, "end": 624, "annotation": null}, {"text": "respectively", "start": 625, "end": 637, "annotation": null}, {"text": ".", "start": 637, "end": 638, "annotation": null}], [{"text": "The", "start": 639, "end": 642, "annotation": null}, {"text": "effect", "start": 643, "end": 649, "annotation": null}, {"text": "of", "start": 650, "end": 652, "annotation": null}, {"text": "the", "start": 653, "end": 656, "annotation": null}, {"text": "hydrogen", "start": 657, "end": 665, "annotation": null}, {"text": "dilution", "start": 666, "end": 674, "annotation": null}, {"text": "and", "start": 675, "end": 678, "annotation": null}, {"text": "the", "start": 679, "end": 682, "annotation": null}, {"text": "layer", "start": 683, "end": 688, "annotation": null}, {"text": "thickness", "start": 689, "end": 698, "annotation": null}, {"text": "on", "start": 699, "end": 701, "annotation": null}, {"text": "the", "start": 702, "end": 705, "annotation": null}, {"text": "electrical", "start": 706, "end": 716, "annotation": null}, {"text": "properties", "start": 717, "end": 727, "annotation": null}, {"text": "are", "start": 728, "end": 731, "annotation": null}, {"text": "also", "start": 732, "end": 736, "annotation": null}, {"text": "studied", "start": 737, "end": 744, "annotation": null}, {"text": ".", "start": 744, "end": 745, "annotation": null}], [{"text": "Some", "start": 746, "end": 750, "annotation": null}, {"text": "technological", "start": 751, "end": 764, "annotation": null}, {"text": "conclusions", "start": 765, "end": 776, "annotation": null}, {"text": "referred", "start": 777, "end": 785, "annotation": null}, {"text": "to", "start": 786, "end": 788, "annotation": null}, {"text": "cross", "start": 789, "end": 794, "annotation": null}, {"text": "contamination", "start": 795, "end": 808, "annotation": null}, {"text": "could", "start": 809, "end": 814, "annotation": null}, {"text": "be", "start": 815, "end": 817, "annotation": null}, {"text": "deduced", "start": 818, "end": 825, "annotation": null}, {"text": "from", "start": 826, "end": 830, "annotation": null}, {"text": "the", "start": 831, "end": 834, "annotation": null}, {"text": "nominally", "start": 835, "end": 844, "annotation": null}, {"text": "undoped", "start": 845, "end": 852, "annotation": null}, {"text": "samples", "start": 853, "end": 860, "annotation": null}, {"text": "obtained", "start": 861, "end": 869, "annotation": null}, {"text": "in", "start": 870, "end": 872, "annotation": null}, {"text": "the", "start": 873, "end": 876, "annotation": null}, {"text": "same", "start": 877, "end": 881, "annotation": null}, {"text": "chamber", "start": 882, "end": 889, "annotation": null}, {"text": "after", "start": 890, "end": 895, "annotation": null}, {"text": "p-", "start": 896, "end": 898, "annotation": "DOPANT"}, {"text": "and", "start": 899, "end": 902, "annotation": null}, {"text": "n", "start": 903, "end": 904, "annotation": "DOPANT"}, {"text": "-", "start": 904, "end": 905, "annotation": "DOPANT"}, {"text": "type", "start": 905, "end": 909, "annotation": "DOPANT"}, {"text": "heavily", "start": 910, "end": 917, "annotation": null}, {"text": "doped", "start": 918, "end": 923, "annotation": null}, {"text": "layers", "start": 924, "end": 930, "annotation": null}, {"text": ".", "start": 930, "end": 931, "annotation": null}]], "meta": {"doi": "10.1016/S0921-5107(99)00308-6"}} +{"remark": "doping_annt3", "text": "We report a room temperature all-fiber dual-wavelength Thulium-Bismuth codoped fiber laser operating in 1900 nm region using a single fiber Bragg grating (FBG) in a ring configuration. The addition of Bismuth ions as codopant in the gain medium enhances the inhomogeneous broadening effect in the fiber and thus allows a dual-wavelength oscillation with the assistance of the FBG that has a flat top reflection spectrum. By pumping the gain medium with 1552 nm laser, a dual-wavelength output lines are obtained at 1901.09 and 1901.98 nm with a spacing of 0.89 nm and an optical signal to noise ratio of more than 45 dB as the polarization controller (PC) orientation is adjusted to balance the loss between the two wavelengths. The dual-wavelength laser can also be switched to operate in single-wavelength at either 1901.07 or 1901.98 nm by altering the intracavity polarization using the PC. Copyright \u00a9 2013 Wiley Periodicals, Inc.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "report", "start": 3, "end": 9, "annotation": null}, {"text": "a", "start": 10, "end": 11, "annotation": null}, {"text": "room", "start": 12, "end": 16, "annotation": null}, {"text": "temperature", "start": 17, "end": 28, "annotation": null}, {"text": "all", "start": 29, "end": 32, "annotation": null}, {"text": "-", "start": 32, "end": 33, "annotation": null}, {"text": "fiber", "start": 33, "end": 38, "annotation": null}, {"text": "dual", "start": 39, "end": 43, "annotation": null}, {"text": "-", "start": 43, "end": 44, "annotation": null}, {"text": "wavelength", "start": 44, "end": 54, "annotation": null}, {"text": "Thulium", "start": 55, "end": 62, "annotation": "DOPANT"}, {"text": "-", "start": 62, "end": 63, "annotation": "DOPANT"}, {"text": "Bismuth", "start": 63, "end": 70, "annotation": "DOPANT"}, {"text": "codoped", "start": 71, "end": 78, "annotation": null}, {"text": "fiber", "start": 79, "end": 84, "annotation": "BASEMAT"}, {"text": "laser", "start": 85, "end": 90, "annotation": "BASEMAT"}, {"text": "operating", "start": 91, "end": 100, "annotation": null}, {"text": "in", "start": 101, "end": 103, "annotation": null}, {"text": "1900", "start": 104, "end": 108, "annotation": null}, {"text": "nm", "start": 109, "end": 111, "annotation": null}, {"text": "region", "start": 112, "end": 118, "annotation": null}, {"text": "using", "start": 119, "end": 124, "annotation": null}, {"text": "a", "start": 125, "end": 126, "annotation": null}, {"text": "single", "start": 127, "end": 133, "annotation": null}, {"text": "fiber", "start": 134, "end": 139, "annotation": null}, {"text": "Bragg", "start": 140, "end": 145, "annotation": null}, {"text": "grating", "start": 146, "end": 153, "annotation": null}, {"text": "(", "start": 154, "end": 155, "annotation": null}, {"text": "FBG", "start": 155, "end": 158, "annotation": null}, {"text": ")", "start": 158, "end": 159, "annotation": null}, {"text": "in", "start": 160, "end": 162, "annotation": null}, {"text": "a", "start": 163, "end": 164, "annotation": null}, {"text": "ring", "start": 165, "end": 169, "annotation": null}, {"text": "configuration", "start": 170, "end": 183, "annotation": null}, {"text": ".", "start": 183, "end": 184, "annotation": null}], [{"text": "The", "start": 185, "end": 188, "annotation": null}, {"text": "addition", "start": 189, "end": 197, "annotation": null}, {"text": "of", "start": 198, "end": 200, "annotation": null}, {"text": "Bismuth", "start": 201, "end": 208, "annotation": "DOPANT"}, {"text": "ions", "start": 209, "end": 213, "annotation": "DOPANT"}, {"text": "as", "start": 214, "end": 216, "annotation": null}, {"text": "codopant", "start": 217, "end": 225, "annotation": null}, {"text": "in", "start": 226, "end": 228, "annotation": null}, {"text": "the", "start": 229, "end": 232, "annotation": null}, {"text": "gain", "start": 233, "end": 237, "annotation": null}, {"text": "medium", "start": 238, "end": 244, "annotation": null}, {"text": "enhances", "start": 245, "end": 253, "annotation": null}, {"text": "the", "start": 254, "end": 257, "annotation": null}, {"text": "inhomogeneous", "start": 258, "end": 271, "annotation": null}, {"text": "broadening", "start": 272, "end": 282, "annotation": null}, {"text": "effect", "start": 283, "end": 289, "annotation": null}, {"text": "in", "start": 290, "end": 292, "annotation": null}, {"text": "the", "start": 293, "end": 296, "annotation": null}, {"text": "fiber", "start": 297, "end": 302, "annotation": null}, {"text": "and", "start": 303, "end": 306, "annotation": null}, {"text": "thus", "start": 307, "end": 311, "annotation": null}, {"text": "allows", "start": 312, "end": 318, "annotation": null}, {"text": "a", "start": 319, "end": 320, "annotation": null}, {"text": "dual", "start": 321, "end": 325, "annotation": null}, {"text": "-", "start": 325, "end": 326, "annotation": null}, {"text": "wavelength", "start": 326, "end": 336, "annotation": null}, {"text": "oscillation", "start": 337, "end": 348, "annotation": null}, {"text": "with", "start": 349, "end": 353, "annotation": null}, {"text": "the", "start": 354, "end": 357, "annotation": null}, {"text": "assistance", "start": 358, "end": 368, "annotation": null}, {"text": "of", "start": 369, "end": 371, "annotation": null}, {"text": "the", "start": 372, "end": 375, "annotation": null}, {"text": "FBG", "start": 376, "end": 379, "annotation": null}, {"text": "that", "start": 380, "end": 384, "annotation": null}, {"text": "has", "start": 385, "end": 388, "annotation": null}, {"text": "a", "start": 389, "end": 390, "annotation": null}, {"text": "flat", "start": 391, "end": 395, "annotation": null}, {"text": "top", "start": 396, "end": 399, "annotation": null}, {"text": "reflection", "start": 400, "end": 410, "annotation": null}, {"text": "spectrum", "start": 411, "end": 419, "annotation": null}, {"text": ".", "start": 419, "end": 420, "annotation": null}], [{"text": "By", "start": 421, "end": 423, "annotation": null}, {"text": "pumping", "start": 424, "end": 431, "annotation": null}, {"text": "the", "start": 432, "end": 435, "annotation": null}, {"text": "gain", "start": 436, "end": 440, "annotation": null}, {"text": "medium", "start": 441, "end": 447, "annotation": null}, {"text": "with", "start": 448, "end": 452, "annotation": null}, {"text": "1552", "start": 453, "end": 457, "annotation": null}, {"text": "nm", "start": 458, "end": 460, "annotation": null}, {"text": "laser", "start": 461, "end": 466, "annotation": null}, {"text": ",", "start": 466, "end": 467, "annotation": null}, {"text": "a", "start": 468, "end": 469, "annotation": null}, {"text": "dual", "start": 470, "end": 474, "annotation": null}, {"text": "-", "start": 474, "end": 475, "annotation": null}, {"text": "wavelength", "start": 475, "end": 485, "annotation": null}, {"text": "output", "start": 486, "end": 492, "annotation": null}, {"text": "lines", "start": 493, "end": 498, "annotation": null}, {"text": "are", "start": 499, "end": 502, "annotation": null}, {"text": "obtained", "start": 503, "end": 511, "annotation": null}, {"text": "at", "start": 512, "end": 514, "annotation": null}, {"text": "1901.09", "start": 515, "end": 522, "annotation": null}, {"text": "and", "start": 523, "end": 526, "annotation": null}, {"text": "1901.98", "start": 527, "end": 534, "annotation": null}, {"text": "nm", "start": 535, "end": 537, "annotation": null}, {"text": "with", "start": 538, "end": 542, "annotation": null}, {"text": "a", "start": 543, "end": 544, "annotation": null}, {"text": "spacing", "start": 545, "end": 552, "annotation": null}, {"text": "of", "start": 553, "end": 555, "annotation": null}, {"text": "0.89", "start": 556, "end": 560, "annotation": null}, {"text": "nm", "start": 561, "end": 563, "annotation": null}, {"text": "and", "start": 564, "end": 567, "annotation": null}, {"text": "an", "start": 568, "end": 570, "annotation": null}, {"text": "optical", "start": 571, "end": 578, "annotation": null}, {"text": "signal", "start": 579, "end": 585, "annotation": null}, {"text": "to", "start": 586, "end": 588, "annotation": null}, {"text": "noise", "start": 589, "end": 594, "annotation": null}, {"text": "ratio", "start": 595, "end": 600, "annotation": null}, {"text": "of", "start": 601, "end": 603, "annotation": null}, {"text": "more", "start": 604, "end": 608, "annotation": null}, {"text": "than", "start": 609, "end": 613, "annotation": null}, {"text": "45", "start": 614, "end": 616, "annotation": null}, {"text": "dB", "start": 617, "end": 619, "annotation": null}, {"text": "as", "start": 620, "end": 622, "annotation": null}, {"text": "the", "start": 623, "end": 626, "annotation": null}, {"text": "polarization", "start": 627, "end": 639, "annotation": null}, {"text": "controller", "start": 640, "end": 650, "annotation": null}, {"text": "(", "start": 651, "end": 652, "annotation": null}, {"text": "PC", "start": 652, "end": 654, "annotation": null}, {"text": ")", "start": 654, "end": 655, "annotation": null}, {"text": "orientation", "start": 656, "end": 667, "annotation": null}, {"text": "is", "start": 668, "end": 670, "annotation": null}, {"text": "adjusted", "start": 671, "end": 679, "annotation": null}, {"text": "to", "start": 680, "end": 682, "annotation": null}, {"text": "balance", "start": 683, "end": 690, "annotation": null}, {"text": "the", "start": 691, "end": 694, "annotation": null}, {"text": "loss", "start": 695, "end": 699, "annotation": null}, {"text": "between", "start": 700, "end": 707, "annotation": null}, {"text": "the", "start": 708, "end": 711, "annotation": null}, {"text": "two", "start": 712, "end": 715, "annotation": null}, {"text": "wavelengths", "start": 716, "end": 727, "annotation": null}, {"text": ".", "start": 727, "end": 728, "annotation": null}], [{"text": "The", "start": 729, "end": 732, "annotation": null}, {"text": "dual", "start": 733, "end": 737, "annotation": null}, {"text": "-", "start": 737, "end": 738, "annotation": null}, {"text": "wavelength", "start": 738, "end": 748, "annotation": null}, {"text": "laser", "start": 749, "end": 754, "annotation": null}, {"text": "can", "start": 755, "end": 758, "annotation": null}, {"text": "also", "start": 759, "end": 763, "annotation": null}, {"text": "be", "start": 764, "end": 766, "annotation": null}, {"text": "switched", "start": 767, "end": 775, "annotation": null}, {"text": "to", "start": 776, "end": 778, "annotation": null}, {"text": "operate", "start": 779, "end": 786, "annotation": null}, {"text": "in", "start": 787, "end": 789, "annotation": null}, {"text": "single", "start": 790, "end": 796, "annotation": null}, {"text": "-", "start": 796, "end": 797, "annotation": null}, {"text": "wavelength", "start": 797, "end": 807, "annotation": null}, {"text": "at", "start": 808, "end": 810, "annotation": null}, {"text": "either", "start": 811, "end": 817, "annotation": null}, {"text": "1901.07", "start": 818, "end": 825, "annotation": null}, {"text": "or", "start": 826, "end": 828, "annotation": null}, {"text": "1901.98", "start": 829, "end": 836, "annotation": null}, {"text": "nm", "start": 837, "end": 839, "annotation": null}, {"text": "by", "start": 840, "end": 842, "annotation": null}, {"text": "altering", "start": 843, "end": 851, "annotation": null}, {"text": "the", "start": 852, "end": 855, "annotation": null}, {"text": "intracavity", "start": 856, "end": 867, "annotation": null}, {"text": "polarization", "start": 868, "end": 880, "annotation": null}, {"text": "using", "start": 881, "end": 886, "annotation": null}, {"text": "the", "start": 887, "end": 890, "annotation": null}, {"text": "PC", "start": 891, "end": 893, "annotation": null}, {"text": ".", "start": 893, "end": 894, "annotation": null}]], "meta": {"doi": "10.1002/mop.27875"}} {"text": "Ytterbium and iron-doped ytterbium films were prepared by vapor quenching on Kapton substrates at room temperature. Structural characterization was performed by X-ray diffraction and transmission electron microscopy. The aim was to study the microstructure of pure and iron-doped films and thereby to understand the effects induced by iron incorporation. A coexistence of face centered cubic and hexagonal close packed-like structures was observed, the cubic-type structure being the dominant contribution. There is an apparent thickness dependence of the cubic/hexagonal relative ratios in the case of pure ytterbium. Iron-clusters induce a crystalline texture effect, but do not influence the cubic/hexagonal volume fraction. A schematic model is proposed for the microstructure of un-doped and iron-doped films including the cubic- and hexagonal-like structures, as well as the iron distribution in the ytterbium matrix.", "meta": {"doi": "10.1016/j.matchar.2014.07.022"}, "_input_hash": -1427131311, "_task_hash": 2070819022, "tokens": [[{"text": "Ytterbium", "start": 0, "end": 9, "id": 0, "annotation": null}, {"text": "and", "start": 10, "end": 13, "id": 1, "annotation": null}, {"text": "iron", "start": 14, "end": 18, "id": 2, "annotation": "DOPANT"}, {"text": "-", "start": 19, "end": 20, "id": 3, "annotation": null}, {"text": "doped", "start": 21, "end": 26, "id": 4, "annotation": null}, {"text": "ytterbium", "start": 27, "end": 36, "id": 5, "annotation": "BASEMAT"}, {"text": "films", "start": 37, "end": 42, "id": 6, "annotation": null}, {"text": "were", "start": 43, "end": 47, "id": 7, "annotation": null}, {"text": "prepared", "start": 48, "end": 56, "id": 8, "annotation": null}, {"text": "by", "start": 57, "end": 59, "id": 9, "annotation": null}, {"text": "vapor", "start": 60, "end": 65, "id": 10, "annotation": null}, {"text": "quenching", "start": 66, "end": 75, "id": 11, "annotation": null}, {"text": "on", "start": 76, "end": 78, "id": 12, "annotation": null}, {"text": "Kapton", "start": 79, "end": 85, "id": 13, "annotation": null}, {"text": "substrates", "start": 86, "end": 96, "id": 14, "annotation": null}, {"text": "at", "start": 97, "end": 99, "id": 15, "annotation": null}, {"text": "room", "start": 100, "end": 104, "id": 16, "annotation": null}, {"text": "temperature", "start": 105, "end": 116, "id": 17, "annotation": null}, {"text": ".", "start": 117, "end": 118, "id": 18, "annotation": null}], [{"text": "Structural", "start": 119, "end": 129, "id": 19, "annotation": null}, {"text": "characterization", "start": 130, "end": 146, "id": 20, "annotation": null}, {"text": "was", "start": 147, "end": 150, "id": 21, "annotation": null}, {"text": "performed", "start": 151, "end": 160, "id": 22, "annotation": null}, {"text": "by", "start": 161, "end": 163, "id": 23, "annotation": null}, {"text": "X", "start": 164, "end": 165, "id": 24, "annotation": null}, {"text": "-", "start": 166, "end": 167, "id": 25, "annotation": null}, {"text": "ray", "start": 168, "end": 171, "id": 26, "annotation": null}, {"text": "diffraction", "start": 172, "end": 183, "id": 27, "annotation": null}, {"text": "and", "start": 184, "end": 187, "id": 28, "annotation": null}, {"text": "transmission", "start": 188, "end": 200, "id": 29, "annotation": null}, {"text": "electron", "start": 201, "end": 209, "id": 30, "annotation": null}, {"text": "microscopy", "start": 210, "end": 220, "id": 31, "annotation": null}, {"text": ".", "start": 221, "end": 222, "id": 32, "annotation": null}], [{"text": "The", "start": 223, "end": 226, "id": 33, "annotation": null}, {"text": "aim", "start": 227, "end": 230, "id": 34, "annotation": null}, {"text": "was", "start": 231, "end": 234, "id": 35, "annotation": null}, {"text": "to", "start": 235, "end": 237, "id": 36, "annotation": null}, {"text": "study", "start": 238, "end": 243, "id": 37, "annotation": null}, {"text": "the", "start": 244, "end": 247, "id": 38, "annotation": null}, {"text": "microstructure", "start": 248, "end": 262, "id": 39, "annotation": null}, {"text": "of", "start": 263, "end": 265, "id": 40, "annotation": null}, {"text": "pure", "start": 266, "end": 270, "id": 41, "annotation": null}, {"text": "and", "start": 271, "end": 274, "id": 42, "annotation": null}, {"text": "iron", "start": 275, "end": 279, "id": 43, "annotation": "DOPANT"}, {"text": "-", "start": 280, "end": 281, "id": 44, "annotation": null}, {"text": "doped", "start": 282, "end": 287, "id": 45, "annotation": null}, {"text": "films", "start": 288, "end": 293, "id": 46, "annotation": "BASEMAT"}, {"text": "and", "start": 294, "end": 297, "id": 47, "annotation": null}, {"text": "thereby", "start": 298, "end": 305, "id": 48, "annotation": null}, {"text": "to", "start": 306, "end": 308, "id": 49, "annotation": null}, {"text": "understand", "start": 309, "end": 319, "id": 50, "annotation": null}, {"text": "the", "start": 320, "end": 323, "id": 51, "annotation": null}, {"text": "effects", "start": 324, "end": 331, "id": 52, "annotation": null}, {"text": "induced", "start": 332, "end": 339, "id": 53, "annotation": null}, {"text": "by", "start": 340, "end": 342, "id": 54, "annotation": null}, {"text": "iron", "start": 343, "end": 347, "id": 55, "annotation": null}, {"text": "incorporation", "start": 348, "end": 361, "id": 56, "annotation": null}, {"text": ".", "start": 362, "end": 363, "id": 57, "annotation": null}], [{"text": "A", "start": 364, "end": 365, "id": 58, "annotation": null}, {"text": "coexistence", "start": 366, "end": 377, "id": 59, "annotation": null}, {"text": "of", "start": 378, "end": 380, "id": 60, "annotation": null}, {"text": "face", "start": 381, "end": 385, "id": 61, "annotation": null}, {"text": "centered", "start": 386, "end": 394, "id": 62, "annotation": null}, {"text": "cubic", "start": 395, "end": 400, "id": 63, "annotation": null}, {"text": "and", "start": 401, "end": 404, "id": 64, "annotation": null}, {"text": "hexagonal", "start": 405, "end": 414, "id": 65, "annotation": null}, {"text": "close", "start": 415, "end": 420, "id": 66, "annotation": null}, {"text": "packed", "start": 421, "end": 427, "id": 67, "annotation": null}, {"text": "-", "start": 428, "end": 429, "id": 68, "annotation": null}, {"text": "like", "start": 430, "end": 434, "id": 69, "annotation": null}, {"text": "structures", "start": 435, "end": 445, "id": 70, "annotation": null}, {"text": "was", "start": 446, "end": 449, "id": 71, "annotation": null}, {"text": "observed", "start": 450, "end": 458, "id": 72, "annotation": null}, {"text": ",", "start": 459, "end": 460, "id": 73, "annotation": null}, {"text": "the", "start": 461, "end": 464, "id": 74, "annotation": null}, {"text": "cubic", "start": 465, "end": 470, "id": 75, "annotation": null}, {"text": "-", "start": 471, "end": 472, "id": 76, "annotation": null}, {"text": "type", "start": 473, "end": 477, "id": 77, "annotation": null}, {"text": "structure", "start": 478, "end": 487, "id": 78, "annotation": null}, {"text": "being", "start": 488, "end": 493, "id": 79, "annotation": null}, {"text": "the", "start": 494, "end": 497, "id": 80, "annotation": null}, {"text": "dominant", "start": 498, "end": 506, "id": 81, "annotation": null}, {"text": "contribution", "start": 507, "end": 519, "id": 82, "annotation": null}, {"text": ".", "start": 520, "end": 521, "id": 83, "annotation": null}], [{"text": "There", "start": 522, "end": 527, "id": 84, "annotation": null}, {"text": "is", "start": 528, "end": 530, "id": 85, "annotation": null}, {"text": "an", "start": 531, "end": 533, "id": 86, "annotation": null}, {"text": "apparent", "start": 534, "end": 542, "id": 87, "annotation": null}, {"text": "thickness", "start": 543, "end": 552, "id": 88, "annotation": null}, {"text": "dependence", "start": 553, "end": 563, "id": 89, "annotation": null}, {"text": "of", "start": 564, "end": 566, "id": 90, "annotation": null}, {"text": "the", "start": 567, "end": 570, "id": 91, "annotation": null}, {"text": "cubic", "start": 571, "end": 576, "id": 92, "annotation": null}, {"text": "/", "start": 577, "end": 578, "id": 93, "annotation": null}, {"text": "hexagonal", "start": 579, "end": 588, "id": 94, "annotation": null}, {"text": "relative", "start": 589, "end": 597, "id": 95, "annotation": null}, {"text": "ratios", "start": 598, "end": 604, "id": 96, "annotation": null}, {"text": "in", "start": 605, "end": 607, "id": 97, "annotation": null}, {"text": "the", "start": 608, "end": 611, "id": 98, "annotation": null}, {"text": "case", "start": 612, "end": 616, "id": 99, "annotation": null}, {"text": "of", "start": 617, "end": 619, "id": 100, "annotation": null}, {"text": "pure", "start": 620, "end": 624, "id": 101, "annotation": null}, {"text": "ytterbium", "start": 625, "end": 634, "id": 102, "annotation": null}, {"text": ".", "start": 635, "end": 636, "id": 103, "annotation": null}], [{"text": "Iron", "start": 637, "end": 641, "id": 104, "annotation": null}, {"text": "-", "start": 642, "end": 643, "id": 105, "annotation": null}, {"text": "clusters", "start": 644, "end": 652, "id": 106, "annotation": null}, {"text": "induce", "start": 653, "end": 659, "id": 107, "annotation": null}, {"text": "a", "start": 660, "end": 661, "id": 108, "annotation": null}, {"text": "crystalline", "start": 662, "end": 673, "id": 109, "annotation": null}, {"text": "texture", "start": 674, "end": 681, "id": 110, "annotation": null}, {"text": "effect", "start": 682, "end": 688, "id": 111, "annotation": null}, {"text": ",", "start": 689, "end": 690, "id": 112, "annotation": null}, {"text": "but", "start": 691, "end": 694, "id": 113, "annotation": null}, {"text": "do", "start": 695, "end": 697, "id": 114, "annotation": null}, {"text": "not", "start": 698, "end": 701, "id": 115, "annotation": null}, {"text": "influence", "start": 702, "end": 711, "id": 116, "annotation": null}, {"text": "the", "start": 712, "end": 715, "id": 117, "annotation": null}, {"text": "cubic", "start": 716, "end": 721, "id": 118, "annotation": null}, {"text": "/", "start": 722, "end": 723, "id": 119, "annotation": null}, {"text": "hexagonal", "start": 724, "end": 733, "id": 120, "annotation": null}, {"text": "volume", "start": 734, "end": 740, "id": 121, "annotation": null}, {"text": "fraction", "start": 741, "end": 749, "id": 122, "annotation": null}, {"text": ".", "start": 750, "end": 751, "id": 123, "annotation": null}], [{"text": "A", "start": 752, "end": 753, "id": 124, "annotation": null}, {"text": "schematic", "start": 754, "end": 763, "id": 125, "annotation": null}, {"text": "model", "start": 764, "end": 769, "id": 126, "annotation": null}, {"text": "is", "start": 770, "end": 772, "id": 127, "annotation": null}, {"text": "proposed", "start": 773, "end": 781, "id": 128, "annotation": null}, {"text": "for", "start": 782, "end": 785, "id": 129, "annotation": null}, {"text": "the", "start": 786, "end": 789, "id": 130, "annotation": null}, {"text": "microstructure", "start": 790, "end": 804, "id": 131, "annotation": null}, {"text": "of", "start": 805, "end": 807, "id": 132, "annotation": null}, {"text": "un", "start": 808, "end": 810, "id": 133, "annotation": null}, {"text": "-", "start": 811, "end": 812, "id": 134, "annotation": null}, {"text": "doped", "start": 813, "end": 818, "id": 135, "annotation": null}, {"text": "and", "start": 819, "end": 822, "id": 136, "annotation": null}, {"text": "iron", "start": 823, "end": 827, "id": 137, "annotation": "DOPANT"}, {"text": "-", "start": 828, "end": 829, "id": 138, "annotation": null}, {"text": "doped", "start": 830, "end": 835, "id": 139, "annotation": null}, {"text": "films", "start": 836, "end": 841, "id": 140, "annotation": "BASEMAT"}, {"text": "including", "start": 842, "end": 851, "id": 141, "annotation": null}, {"text": "the", "start": 852, "end": 855, "id": 142, "annotation": null}, {"text": "cubic-", "start": 856, "end": 862, "id": 143, "annotation": null}, {"text": "and", "start": 863, "end": 866, "id": 144, "annotation": null}, {"text": "hexagonal", "start": 867, "end": 876, "id": 145, "annotation": null}, {"text": "-", "start": 877, "end": 878, "id": 146, "annotation": null}, {"text": "like", "start": 879, "end": 883, "id": 147, "annotation": null}, {"text": "structures", "start": 884, "end": 894, "id": 148, "annotation": null}, {"text": ",", "start": 895, "end": 896, "id": 149, "annotation": null}, {"text": "as", "start": 897, "end": 899, "id": 150, "annotation": null}, {"text": "well", "start": 900, "end": 904, "id": 151, "annotation": null}, {"text": "as", "start": 905, "end": 907, "id": 152, "annotation": null}, {"text": "the", "start": 908, "end": 911, "id": 153, "annotation": null}, {"text": "iron", "start": 912, "end": 916, "id": 154, "annotation": null}, {"text": "distribution", "start": 917, "end": 929, "id": 155, "annotation": null}, {"text": "in", "start": 930, "end": 932, "id": 156, "annotation": null}, {"text": "the", "start": 933, "end": 936, "id": 157, "annotation": null}, {"text": "ytterbium", "start": 937, "end": 946, "id": 158, "annotation": null}, {"text": "matrix", "start": 947, "end": 953, "id": 159, "annotation": null}, {"text": ".", "start": 954, "end": 955, "id": 160, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Nitrogen-doped porous carbon plates have been prepared by simple and cost-effective pyrolysis carbonization of an easily available biomass-fallen camellia flower and followed by alkali activation. As-prepared nitrogen-doped porous carbon (aNPCP3) possesses a high specific surface area of 2318\u00a0m2\u00a0g\u22121 and abundant micro/meso-pores. As a result, the aNPCP3 samples have been demonstrated to be electrodes for supercapacitors, displaying a high specific capacitance of 354\u00a0F\u00a0g\u22121 at a current density of 0.2\u00a0A\u00a0g\u22121 and excellent cycling stability. Further, the aNPCP3 samples used as sulfur host materials for lithium-sulfur batteries exhibit a high capacity of 1210\u00a0mAh\u00a0g\u22121 and good cycling stability with a small capacity decay of about 0.1\u00a0% per cycle. Interestingly, it is found that their electrochemical performances are dependent on their specific surface area, pore structure, and heteroatom-doping content and type of carbon materials to a large extent. Cheapness, convenient resource, and good performance make these electrode materials displaying huge potential in cost-effective high-performance energy storage devices.", "meta": {"doi": "10.1007/s10008-016-3474-2"}, "_input_hash": -893662896, "_task_hash": 1954509626, "tokens": [[{"text": "Nitrogen", "start": 0, "end": 8, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 9, "end": 10, "id": 1, "annotation": null}, {"text": "doped", "start": 11, "end": 16, "id": 2, "annotation": null}, {"text": "porous", "start": 17, "end": 23, "id": 3, "annotation": null}, {"text": "carbon", "start": 24, "end": 30, "id": 4, "annotation": "BASEMAT"}, {"text": "plates", "start": 31, "end": 37, "id": 5, "annotation": null}, {"text": "have", "start": 38, "end": 42, "id": 6, "annotation": null}, {"text": "been", "start": 43, "end": 47, "id": 7, "annotation": null}, {"text": "prepared", "start": 48, "end": 56, "id": 8, "annotation": null}, {"text": "by", "start": 57, "end": 59, "id": 9, "annotation": null}, {"text": "simple", "start": 60, "end": 66, "id": 10, "annotation": null}, {"text": "and", "start": 67, "end": 70, "id": 11, "annotation": null}, {"text": "cost", "start": 71, "end": 75, "id": 12, "annotation": null}, {"text": "-", "start": 76, "end": 77, "id": 13, "annotation": null}, {"text": "effective", "start": 78, "end": 87, "id": 14, "annotation": null}, {"text": "pyrolysis", "start": 88, "end": 97, "id": 15, "annotation": null}, {"text": "carbonization", "start": 98, "end": 111, "id": 16, "annotation": null}, {"text": "of", "start": 112, "end": 114, "id": 17, "annotation": null}, {"text": "an", "start": 115, "end": 117, "id": 18, "annotation": null}, {"text": "easily", "start": 118, "end": 124, "id": 19, "annotation": null}, {"text": "available", "start": 125, "end": 134, "id": 20, "annotation": null}, {"text": "biomass", "start": 135, "end": 142, "id": 21, "annotation": null}, {"text": "-", "start": 143, "end": 144, "id": 22, "annotation": null}, {"text": "fallen", "start": 145, "end": 151, "id": 23, "annotation": null}, {"text": "camellia", "start": 152, "end": 160, "id": 24, "annotation": null}, {"text": "flower", "start": 161, "end": 167, "id": 25, "annotation": null}, {"text": "and", "start": 168, "end": 171, "id": 26, "annotation": null}, {"text": "followed", "start": 172, "end": 180, "id": 27, "annotation": null}, {"text": "by", "start": 181, "end": 183, "id": 28, "annotation": null}, {"text": "alkali", "start": 184, "end": 190, "id": 29, "annotation": null}, {"text": "activation", "start": 191, "end": 201, "id": 30, "annotation": null}, {"text": ".", "start": 202, "end": 203, "id": 31, "annotation": null}], [{"text": "As", "start": 204, "end": 206, "id": 32, "annotation": null}, {"text": "-", "start": 207, "end": 208, "id": 33, "annotation": null}, {"text": "prepared", "start": 209, "end": 217, "id": 34, "annotation": null}, {"text": "nitrogen", "start": 218, "end": 226, "id": 35, "annotation": "DOPANT"}, {"text": "-", "start": 227, "end": 228, "id": 36, "annotation": null}, {"text": "doped", "start": 229, "end": 234, "id": 37, "annotation": null}, {"text": "porous", "start": 235, "end": 241, "id": 38, "annotation": null}, {"text": "carbon", "start": 242, "end": 248, "id": 39, "annotation": "BASEMAT"}, {"text": "(", "start": 249, "end": 250, "id": 40, "annotation": null}, {"text": "aNPCP3", "start": 251, "end": 257, "id": 41, "annotation": null}, {"text": ")", "start": 258, "end": 259, "id": 42, "annotation": null}, {"text": "possesses", "start": 260, "end": 269, "id": 43, "annotation": null}, {"text": "a", "start": 270, "end": 271, "id": 44, "annotation": null}, {"text": "high", "start": 272, "end": 276, "id": 45, "annotation": null}, {"text": "specific", "start": 277, "end": 285, "id": 46, "annotation": null}, {"text": "surface", "start": 286, "end": 293, "id": 47, "annotation": null}, {"text": "area", "start": 294, "end": 298, "id": 48, "annotation": null}, {"text": "of", "start": 299, "end": 301, "id": 49, "annotation": null}, {"text": "2318", "start": 302, "end": 306, "id": 50, "annotation": null}, {"text": "m2", "start": 307, "end": 309, "id": 52, "annotation": null}, {"text": "g\u22121", "start": 310, "end": 313, "id": 54, "annotation": null}, {"text": "and", "start": 314, "end": 317, "id": 55, "annotation": null}, {"text": "abundant", "start": 318, "end": 326, "id": 56, "annotation": null}, {"text": "micro", "start": 327, "end": 332, "id": 57, "annotation": null}, {"text": "/", "start": 333, "end": 334, "id": 58, "annotation": null}, {"text": "meso", "start": 335, "end": 339, "id": 59, "annotation": null}, {"text": "-", "start": 340, "end": 341, "id": 60, "annotation": null}, {"text": "pores", "start": 342, "end": 347, "id": 61, "annotation": null}, {"text": ".", "start": 348, "end": 349, "id": 62, "annotation": null}], [{"text": "As", "start": 350, "end": 352, "id": 63, "annotation": null}, {"text": "a", "start": 353, "end": 354, "id": 64, "annotation": null}, {"text": "result", "start": 355, "end": 361, "id": 65, "annotation": null}, {"text": ",", "start": 362, "end": 363, "id": 66, "annotation": null}, {"text": "the", "start": 364, "end": 367, "id": 67, "annotation": null}, {"text": "aNPCP3", "start": 368, "end": 374, "id": 68, "annotation": null}, {"text": "samples", "start": 375, "end": 382, "id": 69, "annotation": null}, {"text": "have", "start": 383, "end": 387, "id": 70, "annotation": null}, {"text": "been", "start": 388, "end": 392, "id": 71, "annotation": null}, {"text": "demonstrated", "start": 393, "end": 405, "id": 72, "annotation": null}, {"text": "to", "start": 406, "end": 408, "id": 73, "annotation": null}, {"text": "be", "start": 409, "end": 411, "id": 74, "annotation": null}, {"text": "electrodes", "start": 412, "end": 422, "id": 75, "annotation": null}, {"text": "for", "start": 423, "end": 426, "id": 76, "annotation": null}, {"text": "supercapacitors", "start": 427, "end": 442, "id": 77, "annotation": null}, {"text": ",", "start": 443, "end": 444, "id": 78, "annotation": null}, {"text": "displaying", "start": 445, "end": 455, "id": 79, "annotation": null}, {"text": "a", "start": 456, "end": 457, "id": 80, "annotation": null}, {"text": "high", "start": 458, "end": 462, "id": 81, "annotation": null}, {"text": "specific", "start": 463, "end": 471, "id": 82, "annotation": null}, {"text": "capacitance", "start": 472, "end": 483, "id": 83, "annotation": null}, {"text": "of", "start": 484, "end": 486, "id": 84, "annotation": null}, {"text": "354", "start": 487, "end": 490, "id": 85, "annotation": null}, {"text": "F", "start": 491, "end": 492, "id": 87, "annotation": null}, {"text": "g\u22121", "start": 493, "end": 496, "id": 89, "annotation": null}, {"text": "at", "start": 497, "end": 499, "id": 90, "annotation": null}, {"text": "a", "start": 500, "end": 501, "id": 91, "annotation": null}, {"text": "current", "start": 502, "end": 509, "id": 92, "annotation": null}, {"text": "density", "start": 510, "end": 517, "id": 93, "annotation": null}, {"text": "of", "start": 518, "end": 520, "id": 94, "annotation": null}, {"text": "0.2", "start": 521, "end": 524, "id": 95, "annotation": null}, {"text": "A", "start": 525, "end": 526, "id": 97, "annotation": null}, {"text": "g\u22121", "start": 527, "end": 530, "id": 99, "annotation": null}, {"text": "and", "start": 531, "end": 534, "id": 100, "annotation": null}, {"text": "excellent", "start": 535, "end": 544, "id": 101, "annotation": null}, {"text": "cycling", "start": 545, "end": 552, "id": 102, "annotation": null}, {"text": "stability", "start": 553, "end": 562, "id": 103, "annotation": null}, {"text": ".", "start": 563, "end": 564, "id": 104, "annotation": null}], [{"text": "Further", "start": 565, "end": 572, "id": 105, "annotation": null}, {"text": ",", "start": 573, "end": 574, "id": 106, "annotation": null}, {"text": "the", "start": 575, "end": 578, "id": 107, "annotation": null}, {"text": "aNPCP3", "start": 579, "end": 585, "id": 108, "annotation": null}, {"text": "samples", "start": 586, "end": 593, "id": 109, "annotation": null}, {"text": "used", "start": 594, "end": 598, "id": 110, "annotation": null}, {"text": "as", "start": 599, "end": 601, "id": 111, "annotation": null}, {"text": "sulfur", "start": 602, "end": 608, "id": 112, "annotation": null}, {"text": "host", "start": 609, "end": 613, "id": 113, "annotation": null}, {"text": "materials", "start": 614, "end": 623, "id": 114, "annotation": null}, {"text": "for", "start": 624, "end": 627, "id": 115, "annotation": null}, {"text": "lithium", "start": 628, "end": 635, "id": 116, "annotation": null}, {"text": "-", "start": 636, "end": 637, "id": 117, "annotation": null}, {"text": "sulfur", "start": 638, "end": 644, "id": 118, "annotation": null}, {"text": "batteries", "start": 645, "end": 654, "id": 119, "annotation": null}, {"text": "exhibit", "start": 655, "end": 662, "id": 120, "annotation": null}, {"text": "a", "start": 663, "end": 664, "id": 121, "annotation": null}, {"text": "high", "start": 665, "end": 669, "id": 122, "annotation": null}, {"text": "capacity", "start": 670, "end": 678, "id": 123, "annotation": null}, {"text": "of", "start": 679, "end": 681, "id": 124, "annotation": null}, {"text": "1210", "start": 682, "end": 686, "id": 125, "annotation": null}, {"text": "mAh", "start": 687, "end": 690, "id": 127, "annotation": null}, {"text": "g\u22121", "start": 691, "end": 694, "id": 129, "annotation": null}, {"text": "and", "start": 695, "end": 698, "id": 130, "annotation": null}, {"text": "good", "start": 699, "end": 703, "id": 131, "annotation": null}, {"text": "cycling", "start": 704, "end": 711, "id": 132, "annotation": null}, {"text": "stability", "start": 712, "end": 721, "id": 133, "annotation": null}, {"text": "with", "start": 722, "end": 726, "id": 134, "annotation": null}, {"text": "a", "start": 727, "end": 728, "id": 135, "annotation": null}, {"text": "small", "start": 729, "end": 734, "id": 136, "annotation": null}, {"text": "capacity", "start": 735, "end": 743, "id": 137, "annotation": null}, {"text": "decay", "start": 744, "end": 749, "id": 138, "annotation": null}, {"text": "of", "start": 750, "end": 752, "id": 139, "annotation": null}, {"text": "about", "start": 753, "end": 758, "id": 140, "annotation": null}, {"text": "0.1", "start": 759, "end": 762, "id": 141, "annotation": null}, {"text": "%", "start": 763, "end": 764, "id": 143, "annotation": null}, {"text": "per", "start": 765, "end": 768, "id": 144, "annotation": null}, {"text": "cycle", "start": 769, "end": 774, "id": 145, "annotation": null}, {"text": ".", "start": 775, "end": 776, "id": 146, "annotation": null}], [{"text": "Interestingly", "start": 777, "end": 790, "id": 147, "annotation": null}, {"text": ",", "start": 791, "end": 792, "id": 148, "annotation": null}, {"text": "it", "start": 793, "end": 795, "id": 149, "annotation": null}, {"text": "is", "start": 796, "end": 798, "id": 150, "annotation": null}, {"text": "found", "start": 799, "end": 804, "id": 151, "annotation": null}, {"text": "that", "start": 805, "end": 809, "id": 152, "annotation": null}, {"text": "their", "start": 810, "end": 815, "id": 153, "annotation": null}, {"text": "electrochemical", "start": 816, "end": 831, "id": 154, "annotation": null}, {"text": "performances", "start": 832, "end": 844, "id": 155, "annotation": null}, {"text": "are", "start": 845, "end": 848, "id": 156, "annotation": null}, {"text": "dependent", "start": 849, "end": 858, "id": 157, "annotation": null}, {"text": "on", "start": 859, "end": 861, "id": 158, "annotation": null}, {"text": "their", "start": 862, "end": 867, "id": 159, "annotation": null}, {"text": "specific", "start": 868, "end": 876, "id": 160, "annotation": null}, {"text": "surface", "start": 877, "end": 884, "id": 161, "annotation": null}, {"text": "area", "start": 885, "end": 889, "id": 162, "annotation": null}, {"text": ",", "start": 890, "end": 891, "id": 163, "annotation": null}, {"text": "pore", "start": 892, "end": 896, "id": 164, "annotation": null}, {"text": "structure", "start": 897, "end": 906, "id": 165, "annotation": null}, {"text": ",", "start": 907, "end": 908, "id": 166, "annotation": null}, {"text": "and", "start": 909, "end": 912, "id": 167, "annotation": null}, {"text": "heteroatom", "start": 913, "end": 923, "id": 168, "annotation": "DOPANT"}, {"text": "-", "start": 924, "end": 925, "id": 169, "annotation": null}, {"text": "doping", "start": 926, "end": 932, "id": 170, "annotation": null}, {"text": "content", "start": 933, "end": 940, "id": 171, "annotation": null}, {"text": "and", "start": 941, "end": 944, "id": 172, "annotation": null}, {"text": "type", "start": 945, "end": 949, "id": 173, "annotation": null}, {"text": "of", "start": 950, "end": 952, "id": 174, "annotation": null}, {"text": "carbon", "start": 953, "end": 959, "id": 175, "annotation": null}, {"text": "materials", "start": 960, "end": 969, "id": 176, "annotation": null}, {"text": "to", "start": 970, "end": 972, "id": 177, "annotation": null}, {"text": "a", "start": 973, "end": 974, "id": 178, "annotation": null}, {"text": "large", "start": 975, "end": 980, "id": 179, "annotation": null}, {"text": "extent", "start": 981, "end": 987, "id": 180, "annotation": null}, {"text": ".", "start": 988, "end": 989, "id": 181, "annotation": null}], [{"text": "Cheapness", "start": 990, "end": 999, "id": 182, "annotation": null}, {"text": ",", "start": 1000, "end": 1001, "id": 183, "annotation": null}, {"text": "convenient", "start": 1002, "end": 1012, "id": 184, "annotation": null}, {"text": "resource", "start": 1013, "end": 1021, "id": 185, "annotation": null}, {"text": ",", "start": 1022, "end": 1023, "id": 186, "annotation": null}, {"text": "and", "start": 1024, "end": 1027, "id": 187, "annotation": null}, {"text": "good", "start": 1028, "end": 1032, "id": 188, "annotation": null}, {"text": "performance", "start": 1033, "end": 1044, "id": 189, "annotation": null}, {"text": "make", "start": 1045, "end": 1049, "id": 190, "annotation": null}, {"text": "these", "start": 1050, "end": 1055, "id": 191, "annotation": null}, {"text": "electrode", "start": 1056, "end": 1065, "id": 192, "annotation": null}, {"text": "materials", "start": 1066, "end": 1075, "id": 193, "annotation": null}, {"text": "displaying", "start": 1076, "end": 1086, "id": 194, "annotation": null}, {"text": "huge", "start": 1087, "end": 1091, "id": 195, "annotation": null}, {"text": "potential", "start": 1092, "end": 1101, "id": 196, "annotation": null}, {"text": "in", "start": 1102, "end": 1104, "id": 197, "annotation": null}, {"text": "cost", "start": 1105, "end": 1109, "id": 198, "annotation": null}, {"text": "-", "start": 1110, "end": 1111, "id": 199, "annotation": null}, {"text": "effective", "start": 1112, "end": 1121, "id": 200, "annotation": null}, {"text": "high", "start": 1122, "end": 1126, "id": 201, "annotation": null}, {"text": "-", "start": 1127, "end": 1128, "id": 202, "annotation": null}, {"text": "performance", "start": 1129, "end": 1140, "id": 203, "annotation": null}, {"text": "energy", "start": 1141, "end": 1147, "id": 204, "annotation": null}, {"text": "storage", "start": 1148, "end": 1155, "id": 205, "annotation": null}, {"text": "devices", "start": 1156, "end": 1163, "id": 206, "annotation": null}, {"text": ".", "start": 1164, "end": 1165, "id": 207, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "In microelectronic manufacturing, chemical mechanical polishing (CMP) of silicon is becoming a more and more important process. This work investigates the effect of dopants on CMP of silicon. A high boron concentration is found to reduce the removal rate. The boron induced reduction is clearly demonstrated by observing boron diffused areas on a wafer protrude during polishing. A high phosphorus concentration enhances the removal rate. It is also found that the removal rate is lower for the Si(111) compared to the Si(100) orientation.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "microelectronic", "start": 3, "end": 18, "annotation": null}, {"text": "manufacturing", "start": 19, "end": 32, "annotation": null}, {"text": ",", "start": 32, "end": 33, "annotation": null}, {"text": "chemical", "start": 34, "end": 42, "annotation": null}, {"text": "mechanical", "start": 43, "end": 53, "annotation": null}, {"text": "polishing", "start": 54, "end": 63, "annotation": null}, {"text": "(", "start": 64, "end": 65, "annotation": null}, {"text": "CMP", "start": 65, "end": 68, "annotation": null}, {"text": ")", "start": 68, "end": 69, "annotation": null}, {"text": "of", "start": 70, "end": 72, "annotation": null}, {"text": "silicon", "start": 73, "end": 80, "annotation": null}, {"text": "is", "start": 81, "end": 83, "annotation": null}, {"text": "becoming", "start": 84, "end": 92, "annotation": null}, {"text": "a", "start": 93, "end": 94, "annotation": null}, {"text": "more", "start": 95, "end": 99, "annotation": null}, {"text": "and", "start": 100, "end": 103, "annotation": null}, {"text": "more", "start": 104, "end": 108, "annotation": null}, {"text": "important", "start": 109, "end": 118, "annotation": null}, {"text": "process", "start": 119, "end": 126, "annotation": null}, {"text": ".", "start": 126, "end": 127, "annotation": null}], [{"text": "This", "start": 128, "end": 132, "annotation": null}, {"text": "work", "start": 133, "end": 137, "annotation": null}, {"text": "investigates", "start": 138, "end": 150, "annotation": null}, {"text": "the", "start": 151, "end": 154, "annotation": null}, {"text": "effect", "start": 155, "end": 161, "annotation": null}, {"text": "of", "start": 162, "end": 164, "annotation": null}, {"text": "dopants", "start": 165, "end": 172, "annotation": null}, {"text": "on", "start": 173, "end": 175, "annotation": null}, {"text": "CMP", "start": 176, "end": 179, "annotation": null}, {"text": "of", "start": 180, "end": 182, "annotation": null}, {"text": "silicon", "start": 183, "end": 190, "annotation": "BASEMAT"}, {"text": ".", "start": 190, "end": 191, "annotation": null}], [{"text": "A", "start": 192, "end": 193, "annotation": null}, {"text": "high", "start": 194, "end": 198, "annotation": null}, {"text": "boron", "start": 199, "end": 204, "annotation": "DOPANT"}, {"text": "concentration", "start": 205, "end": 218, "annotation": null}, {"text": "is", "start": 219, "end": 221, "annotation": null}, {"text": "found", "start": 222, "end": 227, "annotation": null}, {"text": "to", "start": 228, "end": 230, "annotation": null}, {"text": "reduce", "start": 231, "end": 237, "annotation": null}, {"text": "the", "start": 238, "end": 241, "annotation": null}, {"text": "removal", "start": 242, "end": 249, "annotation": null}, {"text": "rate", "start": 250, "end": 254, "annotation": null}, {"text": ".", "start": 254, "end": 255, "annotation": null}], [{"text": "The", "start": 256, "end": 259, "annotation": null}, {"text": "boron", "start": 260, "end": 265, "annotation": "DOPANT"}, {"text": "induced", "start": 266, "end": 273, "annotation": null}, {"text": "reduction", "start": 274, "end": 283, "annotation": null}, {"text": "is", "start": 284, "end": 286, "annotation": null}, {"text": "clearly", "start": 287, "end": 294, "annotation": null}, {"text": "demonstrated", "start": 295, "end": 307, "annotation": null}, {"text": "by", "start": 308, "end": 310, "annotation": null}, {"text": "observing", "start": 311, "end": 320, "annotation": null}, {"text": "boron", "start": 321, "end": 326, "annotation": "DOPANT"}, {"text": "diffused", "start": 327, "end": 335, "annotation": null}, {"text": "areas", "start": 336, "end": 341, "annotation": null}, {"text": "on", "start": 342, "end": 344, "annotation": null}, {"text": "a", "start": 345, "end": 346, "annotation": null}, {"text": "wafer", "start": 347, "end": 352, "annotation": null}, {"text": "protrude", "start": 353, "end": 361, "annotation": null}, {"text": "during", "start": 362, "end": 368, "annotation": null}, {"text": "polishing", "start": 369, "end": 378, "annotation": null}, {"text": ".", "start": 378, "end": 379, "annotation": null}], [{"text": "A", "start": 380, "end": 381, "annotation": null}, {"text": "high", "start": 382, "end": 386, "annotation": null}, {"text": "phosphorus", "start": 387, "end": 397, "annotation": "DOPANT"}, {"text": "concentration", "start": 398, "end": 411, "annotation": null}, {"text": "enhances", "start": 412, "end": 420, "annotation": null}, {"text": "the", "start": 421, "end": 424, "annotation": null}, {"text": "removal", "start": 425, "end": 432, "annotation": null}, {"text": "rate", "start": 433, "end": 437, "annotation": null}, {"text": ".", "start": 437, "end": 438, "annotation": null}], [{"text": "It", "start": 439, "end": 441, "annotation": null}, {"text": "is", "start": 442, "end": 444, "annotation": null}, {"text": "also", "start": 445, "end": 449, "annotation": null}, {"text": "found", "start": 450, "end": 455, "annotation": null}, {"text": "that", "start": 456, "end": 460, "annotation": null}, {"text": "the", "start": 461, "end": 464, "annotation": null}, {"text": "removal", "start": 465, "end": 472, "annotation": null}, {"text": "rate", "start": 473, "end": 477, "annotation": null}, {"text": "is", "start": 478, "end": 480, "annotation": null}, {"text": "lower", "start": 481, "end": 486, "annotation": null}, {"text": "for", "start": 487, "end": 490, "annotation": null}, {"text": "the", "start": 491, "end": 494, "annotation": null}, {"text": "Si(111)", "start": 495, "end": 502, "annotation": null}, {"text": "compared", "start": 503, "end": 511, "annotation": null}, {"text": "to", "start": 512, "end": 514, "annotation": null}, {"text": "the", "start": 515, "end": 518, "annotation": null}, {"text": "Si(100)", "start": 519, "end": 526, "annotation": null}, {"text": "orientation", "start": 527, "end": 538, "annotation": null}, {"text": ".", "start": 538, "end": 539, "annotation": null}]]} -{"remark": "doping_annt1", "text": "A systematic investigation of structure, electrical and magnetic properties of polycrystalline ceramics La0.67Ca0.33\u2212xKxMnO3 (x=0.05, 0.10, 0.15, 0.20, 0.25) samples, prepared by sol\u2013gel method had been undertaken. As K content increases the crystal structures were transformed from orthorhombic to rhombohedral structure identified by X-ray diffraction, and the effect of increasing K ion is to increment the Mn\u2013O\u2013Mn bond angle. The surface morphology was investigated by scanning electron microscope, which indicates that grain size decreasing with increasing of K+. Temperature dependence of resistivity (\u03c1 \u2212 T) was measured by standard four-probe method. The insulator\u2013metal transition temperature (TP) shifted to higher temperature and the temperature coefficient of resistivity decreased sharply with the substitution K+ for Ca2+ ion. The temperature dependence of magnetization (M\u2013T) shown that Curie temperature (TC) was increasing with the increase of K content, which can be explained by enhancement of double\u2013exchange interaction. The data of resistivity on low-temperature (TTP) resistivity data were explained using small-polaron hopping and variable-range hopping models. Resistivity data in whole temperature range (100\u2013320K) could be fitted by percolation model. Polaron activation energy Ea was found to decrease with the content K+ increasing, which suggested that K doping increase bond angle Mn\u2013O\u2013Mn, thereby the effective band gap was decreased and the double exchange coupling was increased of, this is the reason for the decrease of resistivity.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "systematic", "start": 2, "end": 12, "annotation": null}, {"text": "investigation", "start": 13, "end": 26, "annotation": null}, {"text": "of", "start": 27, "end": 29, "annotation": null}, {"text": "structure", "start": 30, "end": 39, "annotation": null}, {"text": ",", "start": 39, "end": 40, "annotation": null}, {"text": "electrical", "start": 41, "end": 51, "annotation": null}, {"text": "and", "start": 52, "end": 55, "annotation": null}, {"text": "magnetic", "start": 56, "end": 64, "annotation": null}, {"text": "properties", "start": 65, "end": 75, "annotation": null}, {"text": "of", "start": 76, "end": 78, "annotation": null}, {"text": "polycrystalline", "start": 79, "end": 94, "annotation": null}, {"text": "ceramics", "start": 95, "end": 103, "annotation": null}, {"text": "La0.67Ca0.33\u2212xKxMnO3", "start": 104, "end": 124, "annotation": "BASEMAT"}, {"text": "(", "start": 125, "end": 126, "annotation": null}, {"text": "x", "start": 126, "end": 127, "annotation": null}, {"text": "=", "start": 127, "end": 128, "annotation": null}, {"text": "0.05", "start": 128, "end": 132, "annotation": null}, {"text": ",", "start": 132, "end": 133, "annotation": null}, {"text": "0.10", "start": 134, "end": 138, "annotation": null}, {"text": ",", "start": 138, "end": 139, "annotation": null}, {"text": "0.15", "start": 140, "end": 144, "annotation": null}, {"text": ",", "start": 144, "end": 145, "annotation": null}, {"text": "0.20", "start": 146, "end": 150, "annotation": null}, {"text": ",", "start": 150, "end": 151, "annotation": null}, {"text": "0.25", "start": 152, "end": 156, "annotation": null}, {"text": ")", "start": 156, "end": 157, "annotation": null}, {"text": "samples", "start": 158, "end": 165, "annotation": null}, {"text": ",", "start": 165, "end": 166, "annotation": null}, {"text": "prepared", "start": 167, "end": 175, "annotation": null}, {"text": "by", "start": 176, "end": 178, "annotation": null}, {"text": "sol", "start": 179, "end": 182, "annotation": null}, {"text": "\u2013", "start": 182, "end": 183, "annotation": null}, {"text": "gel", "start": 183, "end": 186, "annotation": null}, {"text": "method", "start": 187, "end": 193, "annotation": null}, {"text": "had", "start": 194, "end": 197, "annotation": null}, {"text": "been", "start": 198, "end": 202, "annotation": null}, {"text": "undertaken", "start": 203, "end": 213, "annotation": null}, {"text": ".", "start": 213, "end": 214, "annotation": null}], [{"text": "As", "start": 215, "end": 217, "annotation": null}, {"text": "K", "start": 218, "end": 219, "annotation": "DOPANT"}, {"text": "content", "start": 220, "end": 227, "annotation": null}, {"text": "increases", "start": 228, "end": 237, "annotation": null}, {"text": "the", "start": 238, "end": 241, "annotation": null}, {"text": "crystal", "start": 242, "end": 249, "annotation": null}, {"text": "structures", "start": 250, "end": 260, "annotation": null}, {"text": "were", "start": 261, "end": 265, "annotation": null}, {"text": "transformed", "start": 266, "end": 277, "annotation": null}, {"text": "from", "start": 278, "end": 282, "annotation": null}, {"text": "orthorhombic", "start": 283, "end": 295, "annotation": null}, {"text": "to", "start": 296, "end": 298, "annotation": null}, {"text": "rhombohedral", "start": 299, "end": 311, "annotation": null}, {"text": "structure", "start": 312, "end": 321, "annotation": null}, {"text": "identified", "start": 322, "end": 332, "annotation": null}, {"text": "by", "start": 333, "end": 335, "annotation": null}, {"text": "X-ray", "start": 336, "end": 341, "annotation": null}, {"text": "diffraction", "start": 342, "end": 353, "annotation": null}, {"text": ",", "start": 353, "end": 354, "annotation": null}, {"text": "and", "start": 355, "end": 358, "annotation": null}, {"text": "the", "start": 359, "end": 362, "annotation": null}, {"text": "effect", "start": 363, "end": 369, "annotation": null}, {"text": "of", "start": 370, "end": 372, "annotation": null}, {"text": "increasing", "start": 373, "end": 383, "annotation": null}, {"text": "K", "start": 384, "end": 385, "annotation": "DOPANT"}, {"text": "ion", "start": 386, "end": 389, "annotation": null}, {"text": "is", "start": 390, "end": 392, "annotation": null}, {"text": "to", "start": 393, "end": 395, "annotation": null}, {"text": "increment", "start": 396, "end": 405, "annotation": null}, {"text": "the", "start": 406, "end": 409, "annotation": null}, {"text": "Mn", "start": 410, "end": 412, "annotation": null}, {"text": "\u2013", "start": 412, "end": 413, "annotation": null}, {"text": "O", "start": 413, "end": 414, "annotation": null}, {"text": "\u2013", "start": 414, "end": 415, "annotation": null}, {"text": "Mn", "start": 415, "end": 417, "annotation": null}, {"text": "bond", "start": 418, "end": 422, "annotation": null}, {"text": "angle", "start": 423, "end": 428, "annotation": null}, {"text": ".", "start": 428, "end": 429, "annotation": null}], [{"text": "The", "start": 430, "end": 433, "annotation": null}, {"text": "surface", "start": 434, "end": 441, "annotation": null}, {"text": "morphology", "start": 442, "end": 452, "annotation": null}, {"text": "was", "start": 453, "end": 456, "annotation": null}, {"text": "investigated", "start": 457, "end": 469, "annotation": null}, {"text": "by", "start": 470, "end": 472, "annotation": null}, {"text": "scanning", "start": 473, "end": 481, "annotation": null}, {"text": "electron", "start": 482, "end": 490, "annotation": null}, {"text": "microscope", "start": 491, "end": 501, "annotation": null}, {"text": ",", "start": 501, "end": 502, "annotation": null}, {"text": "which", "start": 503, "end": 508, "annotation": null}, {"text": "indicates", "start": 509, "end": 518, "annotation": null}, {"text": "that", "start": 519, "end": 523, "annotation": null}, {"text": "grain", "start": 524, "end": 529, "annotation": null}, {"text": "size", "start": 530, "end": 534, "annotation": null}, {"text": "decreasing", "start": 535, "end": 545, "annotation": null}, {"text": "with", "start": 546, "end": 550, "annotation": null}, {"text": "increasing", "start": 551, "end": 561, "annotation": null}, {"text": "of", "start": 562, "end": 564, "annotation": null}, {"text": "K+", "start": 565, "end": 567, "annotation": null}, {"text": ".", "start": 567, "end": 568, "annotation": null}], [{"text": "Temperature", "start": 569, "end": 580, "annotation": null}, {"text": "dependence", "start": 581, "end": 591, "annotation": null}, {"text": "of", "start": 592, "end": 594, "annotation": null}, {"text": "resistivity", "start": 595, "end": 606, "annotation": null}, {"text": "(", "start": 607, "end": 608, "annotation": null}, {"text": "\u03c1", "start": 608, "end": 609, "annotation": null}, {"text": "\u2212", "start": 610, "end": 611, "annotation": null}, {"text": "T", "start": 612, "end": 613, "annotation": null}, {"text": ")", "start": 613, "end": 614, "annotation": null}, {"text": "was", "start": 615, "end": 618, "annotation": null}, {"text": "measured", "start": 619, "end": 627, "annotation": null}, {"text": "by", "start": 628, "end": 630, "annotation": null}, {"text": "standard", "start": 631, "end": 639, "annotation": null}, {"text": "four", "start": 640, "end": 644, "annotation": null}, {"text": "-", "start": 644, "end": 645, "annotation": null}, {"text": "probe", "start": 645, "end": 650, "annotation": null}, {"text": "method", "start": 651, "end": 657, "annotation": null}, {"text": ".", "start": 657, "end": 658, "annotation": null}], [{"text": "The", "start": 659, "end": 662, "annotation": null}, {"text": "insulator", "start": 663, "end": 672, "annotation": null}, {"text": "\u2013", "start": 672, "end": 673, "annotation": null}, {"text": "metal", "start": 673, "end": 678, "annotation": null}, {"text": "transition", "start": 679, "end": 689, "annotation": null}, {"text": "temperature", "start": 690, "end": 701, "annotation": null}, {"text": "(", "start": 702, "end": 703, "annotation": null}, {"text": "TP", "start": 703, "end": 705, "annotation": null}, {"text": ")", "start": 705, "end": 706, "annotation": null}, {"text": "shifted", "start": 707, "end": 714, "annotation": null}, {"text": "to", "start": 715, "end": 717, "annotation": null}, {"text": "higher", "start": 718, "end": 724, "annotation": null}, {"text": "temperature", "start": 725, "end": 736, "annotation": null}, {"text": "and", "start": 737, "end": 740, "annotation": null}, {"text": "the", "start": 741, "end": 744, "annotation": null}, {"text": "temperature", "start": 745, "end": 756, "annotation": null}, {"text": "coefficient", "start": 757, "end": 768, "annotation": null}, {"text": "of", "start": 769, "end": 771, "annotation": null}, {"text": "resistivity", "start": 772, "end": 783, "annotation": null}, {"text": "decreased", "start": 784, "end": 793, "annotation": null}, {"text": "sharply", "start": 794, "end": 801, "annotation": null}, {"text": "with", "start": 802, "end": 806, "annotation": null}, {"text": "the", "start": 807, "end": 810, "annotation": null}, {"text": "substitution", "start": 811, "end": 823, "annotation": null}, {"text": "K+", "start": 824, "end": 826, "annotation": "DOPANT"}, {"text": "for", "start": 827, "end": 830, "annotation": null}, {"text": "Ca2+", "start": 831, "end": 835, "annotation": "DOPANT"}, {"text": "ion", "start": 836, "end": 839, "annotation": null}, {"text": ".", "start": 839, "end": 840, "annotation": null}], [{"text": "The", "start": 841, "end": 844, "annotation": null}, {"text": "temperature", "start": 845, "end": 856, "annotation": null}, {"text": "dependence", "start": 857, "end": 867, "annotation": null}, {"text": "of", "start": 868, "end": 870, "annotation": null}, {"text": "magnetization", "start": 871, "end": 884, "annotation": null}, {"text": "(", "start": 885, "end": 886, "annotation": null}, {"text": "M", "start": 886, "end": 887, "annotation": null}, {"text": "\u2013", "start": 887, "end": 888, "annotation": null}, {"text": "T", "start": 888, "end": 889, "annotation": null}, {"text": ")", "start": 889, "end": 890, "annotation": null}, {"text": "shown", "start": 891, "end": 896, "annotation": null}, {"text": "that", "start": 897, "end": 901, "annotation": null}, {"text": "Curie", "start": 902, "end": 907, "annotation": null}, {"text": "temperature", "start": 908, "end": 919, "annotation": null}, {"text": "(", "start": 920, "end": 921, "annotation": null}, {"text": "TC", "start": 921, "end": 923, "annotation": null}, {"text": ")", "start": 923, "end": 924, "annotation": null}, {"text": "was", "start": 925, "end": 928, "annotation": null}, {"text": "increasing", "start": 929, "end": 939, "annotation": null}, {"text": "with", "start": 940, "end": 944, "annotation": null}, {"text": "the", "start": 945, "end": 948, "annotation": null}, {"text": "increase", "start": 949, "end": 957, "annotation": null}, {"text": "of", "start": 958, "end": 960, "annotation": null}, {"text": "K", "start": 961, "end": 962, "annotation": "DOPANT"}, {"text": "content", "start": 963, "end": 970, "annotation": null}, {"text": ",", "start": 970, "end": 971, "annotation": null}, {"text": "which", "start": 972, "end": 977, "annotation": null}, {"text": "can", "start": 978, "end": 981, "annotation": null}, {"text": "be", "start": 982, "end": 984, "annotation": null}, {"text": "explained", "start": 985, "end": 994, "annotation": null}, {"text": "by", "start": 995, "end": 997, "annotation": null}, {"text": "enhancement", "start": 998, "end": 1009, "annotation": null}, {"text": "of", "start": 1010, "end": 1012, "annotation": null}, {"text": "double", "start": 1013, "end": 1019, "annotation": null}, {"text": "\u2013", "start": 1019, "end": 1020, "annotation": null}, {"text": "exchange", "start": 1020, "end": 1028, "annotation": null}, {"text": "interaction", "start": 1029, "end": 1040, "annotation": null}, {"text": ".", "start": 1040, "end": 1041, "annotation": null}], [{"text": "The", "start": 1042, "end": 1045, "annotation": null}, {"text": "data", "start": 1046, "end": 1050, "annotation": null}, {"text": "of", "start": 1051, "end": 1053, "annotation": null}, {"text": "resistivity", "start": 1054, "end": 1065, "annotation": null}, {"text": "on", "start": 1066, "end": 1068, "annotation": null}, {"text": "low", "start": 1069, "end": 1072, "annotation": null}, {"text": "-", "start": 1072, "end": 1073, "annotation": null}, {"text": "temperature", "start": 1073, "end": 1084, "annotation": null}, {"text": "(", "start": 1085, "end": 1086, "annotation": null}, {"text": "T", "start": 1086, "end": 1087, "annotation": null}, {"text": "<", "start": 1087, "end": 1088, "annotation": null}, {"text": "TP", "start": 1088, "end": 1090, "annotation": null}, {"text": ")", "start": 1090, "end": 1091, "annotation": null}, {"text": "had", "start": 1092, "end": 1095, "annotation": null}, {"text": "been", "start": 1096, "end": 1100, "annotation": null}, {"text": "fitted", "start": 1101, "end": 1107, "annotation": null}, {"text": "with", "start": 1108, "end": 1112, "annotation": null}, {"text": "the", "start": 1113, "end": 1116, "annotation": null}, {"text": "relation", "start": 1117, "end": 1125, "annotation": null}, {"text": "\u03c1(T)", "start": 1126, "end": 1130, "annotation": null}, {"text": "=", "start": 1130, "end": 1131, "annotation": null}, {"text": "\u03c10", "start": 1131, "end": 1133, "annotation": null}, {"text": "+", "start": 1133, "end": 1134, "annotation": null}, {"text": "\u03c12T2", "start": 1134, "end": 1138, "annotation": null}, {"text": "+", "start": 1138, "end": 1139, "annotation": null}, {"text": "\u03c14.5T4.5", "start": 1139, "end": 1147, "annotation": null}, {"text": ";", "start": 1147, "end": 1148, "annotation": null}, {"text": "the", "start": 1149, "end": 1152, "annotation": null}, {"text": "high", "start": 1153, "end": 1157, "annotation": null}, {"text": "-", "start": 1157, "end": 1158, "annotation": null}, {"text": "temperature", "start": 1158, "end": 1169, "annotation": null}, {"text": "(", "start": 1170, "end": 1171, "annotation": null}, {"text": "T", "start": 1171, "end": 1172, "annotation": null}, {"text": ">", "start": 1172, "end": 1173, "annotation": null}, {"text": "TP", "start": 1173, "end": 1175, "annotation": null}, {"text": ")", "start": 1175, "end": 1176, "annotation": null}, {"text": "resistivity", "start": 1177, "end": 1188, "annotation": null}, {"text": "data", "start": 1189, "end": 1193, "annotation": null}, {"text": "were", "start": 1194, "end": 1198, "annotation": null}, {"text": "explained", "start": 1199, "end": 1208, "annotation": null}, {"text": "using", "start": 1209, "end": 1214, "annotation": null}, {"text": "small", "start": 1215, "end": 1220, "annotation": null}, {"text": "-", "start": 1220, "end": 1221, "annotation": null}, {"text": "polaron", "start": 1221, "end": 1228, "annotation": null}, {"text": "hopping", "start": 1229, "end": 1236, "annotation": null}, {"text": "and", "start": 1237, "end": 1240, "annotation": null}, {"text": "variable", "start": 1241, "end": 1249, "annotation": null}, {"text": "-", "start": 1249, "end": 1250, "annotation": null}, {"text": "range", "start": 1250, "end": 1255, "annotation": null}, {"text": "hopping", "start": 1256, "end": 1263, "annotation": null}, {"text": "models", "start": 1264, "end": 1270, "annotation": null}, {"text": ".", "start": 1270, "end": 1271, "annotation": null}], [{"text": "Resistivity", "start": 1272, "end": 1283, "annotation": null}, {"text": "data", "start": 1284, "end": 1288, "annotation": null}, {"text": "in", "start": 1289, "end": 1291, "annotation": null}, {"text": "whole", "start": 1292, "end": 1297, "annotation": null}, {"text": "temperature", "start": 1298, "end": 1309, "annotation": null}, {"text": "range", "start": 1310, "end": 1315, "annotation": null}, {"text": "(", "start": 1316, "end": 1317, "annotation": null}, {"text": "100", "start": 1317, "end": 1320, "annotation": null}, {"text": "\u2013", "start": 1320, "end": 1321, "annotation": null}, {"text": "320", "start": 1321, "end": 1324, "annotation": null}, {"text": "K", "start": 1324, "end": 1325, "annotation": null}, {"text": ")", "start": 1325, "end": 1326, "annotation": null}, {"text": "could", "start": 1327, "end": 1332, "annotation": null}, {"text": "be", "start": 1333, "end": 1335, "annotation": null}, {"text": "fitted", "start": 1336, "end": 1342, "annotation": null}, {"text": "by", "start": 1343, "end": 1345, "annotation": null}, {"text": "percolation", "start": 1346, "end": 1357, "annotation": null}, {"text": "model", "start": 1358, "end": 1363, "annotation": null}, {"text": ".", "start": 1363, "end": 1364, "annotation": null}], [{"text": "Polaron", "start": 1365, "end": 1372, "annotation": null}, {"text": "activation", "start": 1373, "end": 1383, "annotation": null}, {"text": "energy", "start": 1384, "end": 1390, "annotation": null}, {"text": "Ea", "start": 1391, "end": 1393, "annotation": null}, {"text": "was", "start": 1394, "end": 1397, "annotation": null}, {"text": "found", "start": 1398, "end": 1403, "annotation": null}, {"text": "to", "start": 1404, "end": 1406, "annotation": null}, {"text": "decrease", "start": 1407, "end": 1415, "annotation": null}, {"text": "with", "start": 1416, "end": 1420, "annotation": null}, {"text": "the", "start": 1421, "end": 1424, "annotation": null}, {"text": "content", "start": 1425, "end": 1432, "annotation": null}, {"text": "K+", "start": 1433, "end": 1435, "annotation": "DOPANT"}, {"text": "increasing", "start": 1436, "end": 1446, "annotation": null}, {"text": ",", "start": 1446, "end": 1447, "annotation": null}, {"text": "which", "start": 1448, "end": 1453, "annotation": null}, {"text": "suggested", "start": 1454, "end": 1463, "annotation": null}, {"text": "that", "start": 1464, "end": 1468, "annotation": null}, {"text": "K", "start": 1469, "end": 1470, "annotation": "DOPANT"}, {"text": "doping", "start": 1471, "end": 1477, "annotation": null}, {"text": "increase", "start": 1478, "end": 1486, "annotation": null}, {"text": "bond", "start": 1487, "end": 1491, "annotation": null}, {"text": "angle", "start": 1492, "end": 1497, "annotation": null}, {"text": "Mn", "start": 1498, "end": 1500, "annotation": null}, {"text": "\u2013", "start": 1500, "end": 1501, "annotation": null}, {"text": "O", "start": 1501, "end": 1502, "annotation": null}, {"text": "\u2013", "start": 1502, "end": 1503, "annotation": null}, {"text": "Mn", "start": 1503, "end": 1505, "annotation": null}, {"text": ",", "start": 1505, "end": 1506, "annotation": null}, {"text": "thereby", "start": 1507, "end": 1514, "annotation": null}, {"text": "the", "start": 1515, "end": 1518, "annotation": null}, {"text": "effective", "start": 1519, "end": 1528, "annotation": null}, {"text": "band", "start": 1529, "end": 1533, "annotation": null}, {"text": "gap", "start": 1534, "end": 1537, "annotation": null}, {"text": "was", "start": 1538, "end": 1541, "annotation": null}, {"text": "decreased", "start": 1542, "end": 1551, "annotation": null}, {"text": "and", "start": 1552, "end": 1555, "annotation": null}, {"text": "the", "start": 1556, "end": 1559, "annotation": null}, {"text": "double", "start": 1560, "end": 1566, "annotation": null}, {"text": "exchange", "start": 1567, "end": 1575, "annotation": null}, {"text": "coupling", "start": 1576, "end": 1584, "annotation": null}, {"text": "was", "start": 1585, "end": 1588, "annotation": null}, {"text": "increased", "start": 1589, "end": 1598, "annotation": null}, {"text": "of", "start": 1599, "end": 1601, "annotation": null}, {"text": ",", "start": 1601, "end": 1602, "annotation": null}, {"text": "this", "start": 1603, "end": 1607, "annotation": null}, {"text": "is", "start": 1608, "end": 1610, "annotation": null}, {"text": "the", "start": 1611, "end": 1614, "annotation": null}, {"text": "reason", "start": 1615, "end": 1621, "annotation": null}, {"text": "for", "start": 1622, "end": 1625, "annotation": null}, {"text": "the", "start": 1626, "end": 1629, "annotation": null}, {"text": "decrease", "start": 1630, "end": 1638, "annotation": null}, {"text": "of", "start": 1639, "end": 1641, "annotation": null}, {"text": "resistivity", "start": 1642, "end": 1653, "annotation": null}, {"text": ".", "start": 1653, "end": 1654, "annotation": null}]]} -{"remark": "doping_annt3", "text": "Low-temperature mobilities in InAs-AlSb quantum wells depend sensitively on the buffer layer structures. Reflection high energy electron diffraction and x-ray diffraction show that the highest crystalline quality and best InAs transport properties are obtained by a buffer layer sequence GaAs \u2192 AlAs \u2192 AlSb \u2192 GaSb, with a final GaSb layer thickness of at least 1 \u03bcm. Using the improved buffer scheme, mobilities exceeding 600,000 cm2/Vs at 10 K are routinely obtained. Modulation \u03b4-doping with tellurium has yielded electron sheet concentrations up to 8 \u00d7 1012 cm\u22122 while maintaining mobilities approaching 100,000 cm2/Vs at low temperatures.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Low", "start": 0, "end": 3, "annotation": null}, {"text": "-", "start": 3, "end": 4, "annotation": null}, {"text": "temperature", "start": 4, "end": 15, "annotation": null}, {"text": "mobilities", "start": 16, "end": 26, "annotation": null}, {"text": "in", "start": 27, "end": 29, "annotation": null}, {"text": "InAs", "start": 30, "end": 34, "annotation": null}, {"text": "-", "start": 34, "end": 35, "annotation": null}, {"text": "AlSb", "start": 35, "end": 39, "annotation": null}, {"text": "quantum", "start": 40, "end": 47, "annotation": null}, {"text": "wells", "start": 48, "end": 53, "annotation": null}, {"text": "depend", "start": 54, "end": 60, "annotation": null}, {"text": "sensitively", "start": 61, "end": 72, "annotation": null}, {"text": "on", "start": 73, "end": 75, "annotation": null}, {"text": "the", "start": 76, "end": 79, "annotation": null}, {"text": "buffer", "start": 80, "end": 86, "annotation": null}, {"text": "layer", "start": 87, "end": 92, "annotation": null}, {"text": "structures", "start": 93, "end": 103, "annotation": null}, {"text": ".", "start": 103, "end": 104, "annotation": null}], [{"text": "Reflection", "start": 105, "end": 115, "annotation": null}, {"text": "high", "start": 116, "end": 120, "annotation": null}, {"text": "energy", "start": 121, "end": 127, "annotation": null}, {"text": "electron", "start": 128, "end": 136, "annotation": null}, {"text": "diffraction", "start": 137, "end": 148, "annotation": null}, {"text": "and", "start": 149, "end": 152, "annotation": null}, {"text": "x-ray", "start": 153, "end": 158, "annotation": null}, {"text": "diffraction", "start": 159, "end": 170, "annotation": null}, {"text": "show", "start": 171, "end": 175, "annotation": null}, {"text": "that", "start": 176, "end": 180, "annotation": null}, {"text": "the", "start": 181, "end": 184, "annotation": null}, {"text": "highest", "start": 185, "end": 192, "annotation": null}, {"text": "crystalline", "start": 193, "end": 204, "annotation": null}, {"text": "quality", "start": 205, "end": 212, "annotation": null}, {"text": "and", "start": 213, "end": 216, "annotation": null}, {"text": "best", "start": 217, "end": 221, "annotation": null}, {"text": "InAs", "start": 222, "end": 226, "annotation": null}, {"text": "transport", "start": 227, "end": 236, "annotation": null}, {"text": "properties", "start": 237, "end": 247, "annotation": null}, {"text": "are", "start": 248, "end": 251, "annotation": null}, {"text": "obtained", "start": 252, "end": 260, "annotation": null}, {"text": "by", "start": 261, "end": 263, "annotation": null}, {"text": "a", "start": 264, "end": 265, "annotation": null}, {"text": "buffer", "start": 266, "end": 272, "annotation": null}, {"text": "layer", "start": 273, "end": 278, "annotation": null}, {"text": "sequence", "start": 279, "end": 287, "annotation": null}, {"text": "GaAs", "start": 288, "end": 292, "annotation": null}, {"text": "\u2192", "start": 293, "end": 294, "annotation": null}, {"text": "AlAs", "start": 295, "end": 299, "annotation": null}, {"text": "\u2192", "start": 300, "end": 301, "annotation": null}, {"text": "AlSb", "start": 302, "end": 306, "annotation": null}, {"text": "\u2192", "start": 307, "end": 308, "annotation": null}, {"text": "GaSb", "start": 309, "end": 313, "annotation": null}, {"text": ",", "start": 313, "end": 314, "annotation": null}, {"text": "with", "start": 315, "end": 319, "annotation": null}, {"text": "a", "start": 320, "end": 321, "annotation": null}, {"text": "final", "start": 322, "end": 327, "annotation": null}, {"text": "GaSb", "start": 328, "end": 332, "annotation": null}, {"text": "layer", "start": 333, "end": 338, "annotation": null}, {"text": "thickness", "start": 339, "end": 348, "annotation": null}, {"text": "of", "start": 349, "end": 351, "annotation": null}, {"text": "at", "start": 352, "end": 354, "annotation": null}, {"text": "least", "start": 355, "end": 360, "annotation": null}, {"text": "1", "start": 361, "end": 362, "annotation": null}, {"text": "\u03bcm", "start": 363, "end": 365, "annotation": null}, {"text": ".", "start": 365, "end": 366, "annotation": null}], [{"text": "Using", "start": 367, "end": 372, "annotation": null}, {"text": "the", "start": 373, "end": 376, "annotation": null}, {"text": "improved", "start": 377, "end": 385, "annotation": null}, {"text": "buffer", "start": 386, "end": 392, "annotation": null}, {"text": "scheme", "start": 393, "end": 399, "annotation": null}, {"text": ",", "start": 399, "end": 400, "annotation": null}, {"text": "mobilities", "start": 401, "end": 411, "annotation": null}, {"text": "exceeding", "start": 412, "end": 421, "annotation": null}, {"text": "600,000", "start": 422, "end": 429, "annotation": null}, {"text": "cm2", "start": 430, "end": 433, "annotation": null}, {"text": "/", "start": 433, "end": 434, "annotation": null}, {"text": "Vs", "start": 434, "end": 436, "annotation": null}, {"text": "at", "start": 437, "end": 439, "annotation": null}, {"text": "10", "start": 440, "end": 442, "annotation": null}, {"text": "K", "start": 443, "end": 444, "annotation": null}, {"text": "are", "start": 445, "end": 448, "annotation": null}, {"text": "routinely", "start": 449, "end": 458, "annotation": null}, {"text": "obtained", "start": 459, "end": 467, "annotation": null}, {"text": ".", "start": 467, "end": 468, "annotation": null}], [{"text": "Modulation", "start": 469, "end": 479, "annotation": null}, {"text": "\u03b4-doping", "start": 480, "end": 488, "annotation": null}, {"text": "with", "start": 489, "end": 493, "annotation": null}, {"text": "tellurium", "start": 494, "end": 503, "annotation": "DOPANT"}, {"text": "has", "start": 504, "end": 507, "annotation": null}, {"text": "yielded", "start": 508, "end": 515, "annotation": null}, {"text": "electron", "start": 516, "end": 524, "annotation": null}, {"text": "sheet", "start": 525, "end": 530, "annotation": null}, {"text": "concentrations", "start": 531, "end": 545, "annotation": null}, {"text": "up", "start": 546, "end": 548, "annotation": null}, {"text": "to", "start": 549, "end": 551, "annotation": null}, {"text": "8", "start": 552, "end": 553, "annotation": null}, {"text": "\u00d7", "start": 554, "end": 555, "annotation": null}, {"text": "1012", "start": 556, "end": 560, "annotation": null}, {"text": "cm\u22122", "start": 561, "end": 565, "annotation": null}, {"text": "while", "start": 566, "end": 571, "annotation": null}, {"text": "maintaining", "start": 572, "end": 583, "annotation": null}, {"text": "mobilities", "start": 584, "end": 594, "annotation": null}, {"text": "approaching", "start": 595, "end": 606, "annotation": null}, {"text": "100,000", "start": 607, "end": 614, "annotation": null}, {"text": "cm2", "start": 615, "end": 618, "annotation": null}, {"text": "/", "start": 618, "end": 619, "annotation": null}, {"text": "Vs", "start": 619, "end": 621, "annotation": null}, {"text": "at", "start": 622, "end": 624, "annotation": null}, {"text": "low", "start": 625, "end": 628, "annotation": null}, {"text": "temperatures", "start": 629, "end": 641, "annotation": null}, {"text": ".", "start": 641, "end": 642, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Electrical and physical properties of a metal-oxide-semiconductor [MOS] structure using atomic layer-deposited high-k dielectrics (TiO2/Al2O3) and epitaxial GaAs [epi-GaAs] grown on Ge(100) substrates have been investigated. The epi-GaAs, either undoped or Zn-doped, was grown using metal-organic chemical vapor deposition method at 620\u00b0C to 650\u00b0C. The diffusion of Ge atoms into epi-GaAs resulted in auto-doping, and therefore, an n-MOS behavior was observed for undoped and Zn-doped epi-GaAs with the doping concentration up to approximately 1017 cm-3. This is attributed to the diffusion of a significant amount of Ge atoms from the Ge substrate as confirmed by the simulation using SILVACO software and also from the secondary ion mass spectrometry analyses. The Zn-doped epi-GaAs with a doping concentration of approximately 1018 cm-3 converts the epi-GaAs layer into p-type since the Zn doping is relatively higher than the out-diffused Ge concentration. The capacitance-voltage characteristics show similar frequency dispersion and leakage current for n-type and p-type epi-GaAs layers with very low hysteresis voltage (approximately 10 mV).PACS: 81.15.Gh.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Electrical", "start": 0, "end": 10, "annotation": null}, {"text": "and", "start": 11, "end": 14, "annotation": null}, {"text": "physical", "start": 15, "end": 23, "annotation": null}, {"text": "properties", "start": 24, "end": 34, "annotation": null}, {"text": "of", "start": 35, "end": 37, "annotation": null}, {"text": "a", "start": 38, "end": 39, "annotation": null}, {"text": "metal", "start": 40, "end": 45, "annotation": null}, {"text": "-", "start": 45, "end": 46, "annotation": null}, {"text": "oxide", "start": 46, "end": 51, "annotation": null}, {"text": "-", "start": 51, "end": 52, "annotation": null}, {"text": "semiconductor", "start": 52, "end": 65, "annotation": null}, {"text": "[MOS]", "start": 66, "end": 71, "annotation": null}, {"text": "structure", "start": 72, "end": 81, "annotation": null}, {"text": "using", "start": 82, "end": 87, "annotation": null}, {"text": "atomic", "start": 88, "end": 94, "annotation": null}, {"text": "layer", "start": 95, "end": 100, "annotation": null}, {"text": "-", "start": 100, "end": 101, "annotation": null}, {"text": "deposited", "start": 101, "end": 110, "annotation": null}, {"text": "high-k", "start": 111, "end": 117, "annotation": null}, {"text": "dielectrics", "start": 118, "end": 129, "annotation": null}, {"text": "(", "start": 130, "end": 131, "annotation": null}, {"text": "TiO2", "start": 131, "end": 135, "annotation": null}, {"text": "/", "start": 135, "end": 136, "annotation": null}, {"text": "Al2O3", "start": 136, "end": 141, "annotation": null}, {"text": ")", "start": 141, "end": 142, "annotation": null}, {"text": "and", "start": 143, "end": 146, "annotation": null}, {"text": "epitaxial", "start": 147, "end": 156, "annotation": null}, {"text": "GaAs", "start": 157, "end": 161, "annotation": null}, {"text": "[epi-GaAs]", "start": 162, "end": 172, "annotation": null}, {"text": "grown", "start": 173, "end": 178, "annotation": null}, {"text": "on", "start": 179, "end": 181, "annotation": null}, {"text": "Ge(100)", "start": 182, "end": 189, "annotation": null}, {"text": "substrates", "start": 190, "end": 200, "annotation": null}, {"text": "have", "start": 201, "end": 205, "annotation": null}, {"text": "been", "start": 206, "end": 210, "annotation": null}, {"text": "investigated", "start": 211, "end": 223, "annotation": null}, {"text": ".", "start": 223, "end": 224, "annotation": null}], [{"text": "The", "start": 225, "end": 228, "annotation": null}, {"text": "epi-GaAs", "start": 229, "end": 237, "annotation": "BASEMAT"}, {"text": ",", "start": 237, "end": 238, "annotation": null}, {"text": "either", "start": 239, "end": 245, "annotation": null}, {"text": "undoped", "start": 246, "end": 253, "annotation": null}, {"text": "or", "start": 254, "end": 256, "annotation": null}, {"text": "Zn", "start": 257, "end": 259, "annotation": "DOPANT"}, {"text": "-", "start": 259, "end": 260, "annotation": null}, {"text": "doped", "start": 260, "end": 265, "annotation": null}, {"text": ",", "start": 265, "end": 266, "annotation": null}, {"text": "was", "start": 267, "end": 270, "annotation": null}, {"text": "grown", "start": 271, "end": 276, "annotation": null}, {"text": "using", "start": 277, "end": 282, "annotation": null}, {"text": "metal", "start": 283, "end": 288, "annotation": null}, {"text": "-", "start": 288, "end": 289, "annotation": null}, {"text": "organic", "start": 289, "end": 296, "annotation": null}, {"text": "chemical", "start": 297, "end": 305, "annotation": null}, {"text": "vapor", "start": 306, "end": 311, "annotation": null}, {"text": "deposition", "start": 312, "end": 322, "annotation": null}, {"text": "method", "start": 323, "end": 329, "annotation": null}, {"text": "at", "start": 330, "end": 332, "annotation": null}, {"text": "620", "start": 333, "end": 336, "annotation": null}, {"text": "\u00b0", "start": 336, "end": 337, "annotation": null}, {"text": "C", "start": 337, "end": 338, "annotation": null}, {"text": "to", "start": 339, "end": 341, "annotation": null}, {"text": "650", "start": 342, "end": 345, "annotation": null}, {"text": "\u00b0", "start": 345, "end": 346, "annotation": null}, {"text": "C", "start": 346, "end": 347, "annotation": null}, {"text": ".", "start": 347, "end": 348, "annotation": null}], [{"text": "The", "start": 349, "end": 352, "annotation": null}, {"text": "diffusion", "start": 353, "end": 362, "annotation": null}, {"text": "of", "start": 363, "end": 365, "annotation": null}, {"text": "Ge", "start": 366, "end": 368, "annotation": "DOPANT"}, {"text": "atoms", "start": 369, "end": 374, "annotation": null}, {"text": "into", "start": 375, "end": 379, "annotation": null}, {"text": "epi-GaAs", "start": 380, "end": 388, "annotation": "BASEMAT"}, {"text": "resulted", "start": 389, "end": 397, "annotation": null}, {"text": "in", "start": 398, "end": 400, "annotation": null}, {"text": "auto", "start": 401, "end": 405, "annotation": null}, {"text": "-", "start": 405, "end": 406, "annotation": null}, {"text": "doping", "start": 406, "end": 412, "annotation": null}, {"text": ",", "start": 412, "end": 413, "annotation": null}, {"text": "and", "start": 414, "end": 417, "annotation": null}, {"text": "therefore", "start": 418, "end": 427, "annotation": null}, {"text": ",", "start": 427, "end": 428, "annotation": null}, {"text": "an", "start": 429, "end": 431, "annotation": null}, {"text": "n-MOS", "start": 432, "end": 437, "annotation": null}, {"text": "behavior", "start": 438, "end": 446, "annotation": null}, {"text": "was", "start": 447, "end": 450, "annotation": null}, {"text": "observed", "start": 451, "end": 459, "annotation": null}, {"text": "for", "start": 460, "end": 463, "annotation": null}, {"text": "undoped", "start": 464, "end": 471, "annotation": null}, {"text": "and", "start": 472, "end": 475, "annotation": null}, {"text": "Zn", "start": 476, "end": 478, "annotation": "DOPANT"}, {"text": "-", "start": 478, "end": 479, "annotation": null}, {"text": "doped", "start": 479, "end": 484, "annotation": null}, {"text": "epi-GaAs", "start": 485, "end": 493, "annotation": "BASEMAT"}, {"text": "with", "start": 494, "end": 498, "annotation": null}, {"text": "the", "start": 499, "end": 502, "annotation": null}, {"text": "doping", "start": 503, "end": 509, "annotation": null}, {"text": "concentration", "start": 510, "end": 523, "annotation": null}, {"text": "up", "start": 524, "end": 526, "annotation": null}, {"text": "to", "start": 527, "end": 529, "annotation": null}, {"text": "approximately", "start": 530, "end": 543, "annotation": null}, {"text": "1017", "start": 544, "end": 548, "annotation": "DOPMODQ"}, {"text": "cm-3", "start": 549, "end": 553, "annotation": "DOPMODQ"}, {"text": ".", "start": 553, "end": 554, "annotation": null}], [{"text": "This", "start": 555, "end": 559, "annotation": null}, {"text": "is", "start": 560, "end": 562, "annotation": null}, {"text": "attributed", "start": 563, "end": 573, "annotation": null}, {"text": "to", "start": 574, "end": 576, "annotation": null}, {"text": "the", "start": 577, "end": 580, "annotation": null}, {"text": "diffusion", "start": 581, "end": 590, "annotation": null}, {"text": "of", "start": 591, "end": 593, "annotation": null}, {"text": "a", "start": 594, "end": 595, "annotation": null}, {"text": "significant", "start": 596, "end": 607, "annotation": null}, {"text": "amount", "start": 608, "end": 614, "annotation": null}, {"text": "of", "start": 615, "end": 617, "annotation": null}, {"text": "Ge", "start": 618, "end": 620, "annotation": null}, {"text": "atoms", "start": 621, "end": 626, "annotation": null}, {"text": "from", "start": 627, "end": 631, "annotation": null}, {"text": "the", "start": 632, "end": 635, "annotation": null}, {"text": "Ge", "start": 636, "end": 638, "annotation": null}, {"text": "substrate", "start": 639, "end": 648, "annotation": null}, {"text": "as", "start": 649, "end": 651, "annotation": null}, {"text": "confirmed", "start": 652, "end": 661, "annotation": null}, {"text": "by", "start": 662, "end": 664, "annotation": null}, {"text": "the", "start": 665, "end": 668, "annotation": null}, {"text": "simulation", "start": 669, "end": 679, "annotation": null}, {"text": "using", "start": 680, "end": 685, "annotation": null}, {"text": "SILVACO", "start": 686, "end": 693, "annotation": null}, {"text": "software", "start": 694, "end": 702, "annotation": null}, {"text": "and", "start": 703, "end": 706, "annotation": null}, {"text": "also", "start": 707, "end": 711, "annotation": null}, {"text": "from", "start": 712, "end": 716, "annotation": null}, {"text": "the", "start": 717, "end": 720, "annotation": null}, {"text": "secondary", "start": 721, "end": 730, "annotation": null}, {"text": "ion", "start": 731, "end": 734, "annotation": null}, {"text": "mass", "start": 735, "end": 739, "annotation": null}, {"text": "spectrometry", "start": 740, "end": 752, "annotation": null}, {"text": "analyses", "start": 753, "end": 761, "annotation": null}, {"text": ".", "start": 761, "end": 762, "annotation": null}], [{"text": "The", "start": 763, "end": 766, "annotation": null}, {"text": "Zn", "start": 767, "end": 769, "annotation": "DOPANT"}, {"text": "-", "start": 769, "end": 770, "annotation": null}, {"text": "doped", "start": 770, "end": 775, "annotation": null}, {"text": "epi-GaAs", "start": 776, "end": 784, "annotation": "BASEMAT"}, {"text": "with", "start": 785, "end": 789, "annotation": null}, {"text": "a", "start": 790, "end": 791, "annotation": null}, {"text": "doping", "start": 792, "end": 798, "annotation": null}, {"text": "concentration", "start": 799, "end": 812, "annotation": null}, {"text": "of", "start": 813, "end": 815, "annotation": null}, {"text": "approximately", "start": 816, "end": 829, "annotation": null}, {"text": "1018", "start": 830, "end": 834, "annotation": "DOPMODQ"}, {"text": "cm-3", "start": 835, "end": 839, "annotation": "DOPMODQ"}, {"text": "converts", "start": 840, "end": 848, "annotation": null}, {"text": "the", "start": 849, "end": 852, "annotation": null}, {"text": "epi-GaAs", "start": 853, "end": 861, "annotation": "BASEMAT"}, {"text": "layer", "start": 862, "end": 867, "annotation": null}, {"text": "into", "start": 868, "end": 872, "annotation": null}, {"text": "p", "start": 873, "end": 874, "annotation": null}, {"text": "-", "start": 874, "end": 875, "annotation": null}, {"text": "type", "start": 875, "end": 879, "annotation": null}, {"text": "since", "start": 880, "end": 885, "annotation": null}, {"text": "the", "start": 886, "end": 889, "annotation": null}, {"text": "Zn", "start": 890, "end": 892, "annotation": "DOPANT"}, {"text": "doping", "start": 893, "end": 899, "annotation": null}, {"text": "is", "start": 900, "end": 902, "annotation": null}, {"text": "relatively", "start": 903, "end": 913, "annotation": null}, {"text": "higher", "start": 914, "end": 920, "annotation": null}, {"text": "than", "start": 921, "end": 925, "annotation": null}, {"text": "the", "start": 926, "end": 929, "annotation": null}, {"text": "out", "start": 930, "end": 933, "annotation": null}, {"text": "-", "start": 933, "end": 934, "annotation": null}, {"text": "diffused", "start": 934, "end": 942, "annotation": null}, {"text": "Ge", "start": 943, "end": 945, "annotation": null}, {"text": "concentration", "start": 946, "end": 959, "annotation": null}, {"text": ".", "start": 959, "end": 960, "annotation": null}], [{"text": "The", "start": 961, "end": 964, "annotation": null}, {"text": "capacitance", "start": 965, "end": 976, "annotation": null}, {"text": "-", "start": 976, "end": 977, "annotation": null}, {"text": "voltage", "start": 977, "end": 984, "annotation": null}, {"text": "characteristics", "start": 985, "end": 1000, "annotation": null}, {"text": "show", "start": 1001, "end": 1005, "annotation": null}, {"text": "similar", "start": 1006, "end": 1013, "annotation": null}, {"text": "frequency", "start": 1014, "end": 1023, "annotation": null}, {"text": "dispersion", "start": 1024, "end": 1034, "annotation": null}, {"text": "and", "start": 1035, "end": 1038, "annotation": null}, {"text": "leakage", "start": 1039, "end": 1046, "annotation": null}, {"text": "current", "start": 1047, "end": 1054, "annotation": null}, {"text": "for", "start": 1055, "end": 1058, "annotation": null}, {"text": "n", "start": 1059, "end": 1060, "annotation": "DOPANT"}, {"text": "-", "start": 1060, "end": 1061, "annotation": "DOPANT"}, {"text": "type", "start": 1061, "end": 1065, "annotation": "DOPANT"}, {"text": "and", "start": 1066, "end": 1069, "annotation": null}, {"text": "p", "start": 1070, "end": 1071, "annotation": "DOPANT"}, {"text": "-", "start": 1071, "end": 1072, "annotation": "DOPANT"}, {"text": "type", "start": 1072, "end": 1076, "annotation": "DOPANT"}, {"text": "epi-GaAs", "start": 1077, "end": 1085, "annotation": "BASEMAT"}, {"text": "layers", "start": 1086, "end": 1092, "annotation": null}, {"text": "with", "start": 1093, "end": 1097, "annotation": null}, {"text": "very", "start": 1098, "end": 1102, "annotation": null}, {"text": "low", "start": 1103, "end": 1106, "annotation": null}, {"text": "hysteresis", "start": 1107, "end": 1117, "annotation": null}, {"text": "voltage", "start": 1118, "end": 1125, "annotation": null}, {"text": "(", "start": 1126, "end": 1127, "annotation": null}, {"text": "approximately", "start": 1127, "end": 1140, "annotation": null}, {"text": "10", "start": 1141, "end": 1143, "annotation": null}, {"text": "mV", "start": 1144, "end": 1146, "annotation": null}, {"text": ").", "start": 1146, "end": 1148, "annotation": null}, {"text": "PACS", "start": 1148, "end": 1152, "annotation": null}, {"text": ":", "start": 1152, "end": 1153, "annotation": null}, {"text": "81.15.Gh", "start": 1154, "end": 1162, "annotation": null}, {"text": ".", "start": 1162, "end": 1163, "annotation": null}]]} -{"remark": "doping_annt2", "text": "Hydrothermal techniques have been used to synthesize samples of ZnxFe3\u2212xO4 (x=0.0\u20131.0) starting with ZnSO4\u00b77H2O/FeSO4\u00b77H2O aqueous solution. The sequence of phases, structural and magnetic properties were followed by X-ray diffraction (XRD), M\u00f6ssbauer spectroscopy and transmission electron microscopy (TEM). Refinement of the XRD spectra yielded the dependence of the lattice parameters of zinc-doped magnetite and zinc ferrite phase as function of the Zn molar concentration x. As well, the particle diameter was derived and represented as a function of Zn content x. As a function of Zn concentration, the phase content of hydrothermally synthesized samples was found to consist of zinc-doped magnetite, goethite and zinc ferrite. Consistent with the XRD results, M\u00f6ssbauer spectroscopy data indicate the presence of magnetite and goethite at x\u22640.2, magnetite and zinc ferrite at x\u22640.9 and pure zinc ferrite only at high zinc concentrations. The presence of different magnetite phases was confirmed by TEM and particles with a size of 50nm were identified. Our results show that zinc ferrite is formed at high zinc concentration by the hydrothermal method and an acicular component of goethite\u2013magnetite is obtained at low zinc content.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Hydrothermal", "start": 0, "end": 12, "annotation": null}, {"text": "techniques", "start": 13, "end": 23, "annotation": null}, {"text": "have", "start": 24, "end": 28, "annotation": null}, {"text": "been", "start": 29, "end": 33, "annotation": null}, {"text": "used", "start": 34, "end": 38, "annotation": null}, {"text": "to", "start": 39, "end": 41, "annotation": null}, {"text": "synthesize", "start": 42, "end": 52, "annotation": null}, {"text": "samples", "start": 53, "end": 60, "annotation": null}, {"text": "of", "start": 61, "end": 63, "annotation": null}, {"text": "ZnxFe3\u2212xO4", "start": 64, "end": 74, "annotation": "BASEMAT"}, {"text": "(", "start": 75, "end": 76, "annotation": null}, {"text": "x", "start": 76, "end": 77, "annotation": "DOPMODQ"}, {"text": "=", "start": 77, "end": 78, "annotation": "DOPMODQ"}, {"text": "0.0", "start": 78, "end": 81, "annotation": "DOPMODQ"}, {"text": "\u2013", "start": 81, "end": 82, "annotation": "DOPMODQ"}, {"text": "1.0", "start": 82, "end": 85, "annotation": "DOPMODQ"}, {"text": ")", "start": 85, "end": 86, "annotation": null}, {"text": "starting", "start": 87, "end": 95, "annotation": null}, {"text": "with", "start": 96, "end": 100, "annotation": null}, {"text": "ZnSO4\u00b77H2O", "start": 101, "end": 111, "annotation": null}, {"text": "/", "start": 111, "end": 112, "annotation": null}, {"text": "FeSO4\u00b77H2O", "start": 112, "end": 122, "annotation": null}, {"text": "aqueous", "start": 123, "end": 130, "annotation": null}, {"text": "solution", "start": 131, "end": 139, "annotation": null}, {"text": ".", "start": 139, "end": 140, "annotation": null}], [{"text": "The", "start": 141, "end": 144, "annotation": null}, {"text": "sequence", "start": 145, "end": 153, "annotation": null}, {"text": "of", "start": 154, "end": 156, "annotation": null}, {"text": "phases", "start": 157, "end": 163, "annotation": null}, {"text": ",", "start": 163, "end": 164, "annotation": null}, {"text": "structural", "start": 165, "end": 175, "annotation": null}, {"text": "and", "start": 176, "end": 179, "annotation": null}, {"text": "magnetic", "start": 180, "end": 188, "annotation": null}, {"text": "properties", "start": 189, "end": 199, "annotation": null}, {"text": "were", "start": 200, "end": 204, "annotation": null}, {"text": "followed", "start": 205, "end": 213, "annotation": null}, {"text": "by", "start": 214, "end": 216, "annotation": null}, {"text": "X-ray", "start": 217, "end": 222, "annotation": null}, {"text": "diffraction", "start": 223, "end": 234, "annotation": null}, {"text": "(", "start": 235, "end": 236, "annotation": null}, {"text": "XRD", "start": 236, "end": 239, "annotation": null}, {"text": ")", "start": 239, "end": 240, "annotation": null}, {"text": ",", "start": 240, "end": 241, "annotation": null}, {"text": "M\u00f6ssbauer", "start": 242, "end": 251, "annotation": null}, {"text": "spectroscopy", "start": 252, "end": 264, "annotation": null}, {"text": "and", "start": 265, "end": 268, "annotation": null}, {"text": "transmission", "start": 269, "end": 281, "annotation": null}, {"text": "electron", "start": 282, "end": 290, "annotation": null}, {"text": "microscopy", "start": 291, "end": 301, "annotation": null}, {"text": "(", "start": 302, "end": 303, "annotation": null}, {"text": "TEM", "start": 303, "end": 306, "annotation": null}, {"text": ")", "start": 306, "end": 307, "annotation": null}, {"text": ".", "start": 307, "end": 308, "annotation": null}], [{"text": "Refinement", "start": 309, "end": 319, "annotation": null}, {"text": "of", "start": 320, "end": 322, "annotation": null}, {"text": "the", "start": 323, "end": 326, "annotation": null}, {"text": "XRD", "start": 327, "end": 330, "annotation": null}, {"text": "spectra", "start": 331, "end": 338, "annotation": null}, {"text": "yielded", "start": 339, "end": 346, "annotation": null}, {"text": "the", "start": 347, "end": 350, "annotation": null}, {"text": "dependence", "start": 351, "end": 361, "annotation": null}, {"text": "of", "start": 362, "end": 364, "annotation": null}, {"text": "the", "start": 365, "end": 368, "annotation": null}, {"text": "lattice", "start": 369, "end": 376, "annotation": null}, {"text": "parameters", "start": 377, "end": 387, "annotation": null}, {"text": "of", "start": 388, "end": 390, "annotation": null}, {"text": "zinc", "start": 391, "end": 395, "annotation": "DOPANT"}, {"text": "-", "start": 395, "end": 396, "annotation": null}, {"text": "doped", "start": 396, "end": 401, "annotation": null}, {"text": "magnetite", "start": 402, "end": 411, "annotation": "BASEMAT"}, {"text": "and", "start": 412, "end": 415, "annotation": null}, {"text": "zinc", "start": 416, "end": 420, "annotation": null}, {"text": "ferrite", "start": 421, "end": 428, "annotation": null}, {"text": "phase", "start": 429, "end": 434, "annotation": null}, {"text": "as", "start": 435, "end": 437, "annotation": null}, {"text": "function", "start": 438, "end": 446, "annotation": null}, {"text": "of", "start": 447, "end": 449, "annotation": null}, {"text": "the", "start": 450, "end": 453, "annotation": null}, {"text": "Zn", "start": 454, "end": 456, "annotation": "DOPANT"}, {"text": "molar", "start": 457, "end": 462, "annotation": null}, {"text": "concentration", "start": 463, "end": 476, "annotation": null}, {"text": "x", "start": 477, "end": 478, "annotation": null}, {"text": ".", "start": 478, "end": 479, "annotation": null}], [{"text": "As", "start": 480, "end": 482, "annotation": null}, {"text": "well", "start": 483, "end": 487, "annotation": null}, {"text": ",", "start": 487, "end": 488, "annotation": null}, {"text": "the", "start": 489, "end": 492, "annotation": null}, {"text": "particle", "start": 493, "end": 501, "annotation": null}, {"text": "diameter", "start": 502, "end": 510, "annotation": null}, {"text": "was", "start": 511, "end": 514, "annotation": null}, {"text": "derived", "start": 515, "end": 522, "annotation": null}, {"text": "and", "start": 523, "end": 526, "annotation": null}, {"text": "represented", "start": 527, "end": 538, "annotation": null}, {"text": "as", "start": 539, "end": 541, "annotation": null}, {"text": "a", "start": 542, "end": 543, "annotation": null}, {"text": "function", "start": 544, "end": 552, "annotation": null}, {"text": "of", "start": 553, "end": 555, "annotation": null}, {"text": "Zn", "start": 556, "end": 558, "annotation": "DOPANT"}, {"text": "content", "start": 559, "end": 566, "annotation": null}, {"text": "x", "start": 567, "end": 568, "annotation": null}, {"text": ".", "start": 568, "end": 569, "annotation": null}], [{"text": "As", "start": 570, "end": 572, "annotation": null}, {"text": "a", "start": 573, "end": 574, "annotation": null}, {"text": "function", "start": 575, "end": 583, "annotation": null}, {"text": "of", "start": 584, "end": 586, "annotation": null}, {"text": "Zn", "start": 587, "end": 589, "annotation": "DOPANT"}, {"text": "concentration", "start": 590, "end": 603, "annotation": null}, {"text": ",", "start": 603, "end": 604, "annotation": null}, {"text": "the", "start": 605, "end": 608, "annotation": null}, {"text": "phase", "start": 609, "end": 614, "annotation": null}, {"text": "content", "start": 615, "end": 622, "annotation": null}, {"text": "of", "start": 623, "end": 625, "annotation": null}, {"text": "hydrothermally", "start": 626, "end": 640, "annotation": null}, {"text": "synthesized", "start": 641, "end": 652, "annotation": null}, {"text": "samples", "start": 653, "end": 660, "annotation": null}, {"text": "was", "start": 661, "end": 664, "annotation": null}, {"text": "found", "start": 665, "end": 670, "annotation": null}, {"text": "to", "start": 671, "end": 673, "annotation": null}, {"text": "consist", "start": 674, "end": 681, "annotation": null}, {"text": "of", "start": 682, "end": 684, "annotation": null}, {"text": "zinc", "start": 685, "end": 689, "annotation": "DOPANT"}, {"text": "-", "start": 689, "end": 690, "annotation": null}, {"text": "doped", "start": 690, "end": 695, "annotation": null}, {"text": "magnetite", "start": 696, "end": 705, "annotation": "BASEMAT"}, {"text": ",", "start": 705, "end": 706, "annotation": null}, {"text": "goethite", "start": 707, "end": 715, "annotation": null}, {"text": "and", "start": 716, "end": 719, "annotation": null}, {"text": "zinc", "start": 720, "end": 724, "annotation": null}, {"text": "ferrite", "start": 725, "end": 732, "annotation": null}, {"text": ".", "start": 732, "end": 733, "annotation": null}], [{"text": "Consistent", "start": 734, "end": 744, "annotation": null}, {"text": "with", "start": 745, "end": 749, "annotation": null}, {"text": "the", "start": 750, "end": 753, "annotation": null}, {"text": "XRD", "start": 754, "end": 757, "annotation": null}, {"text": "results", "start": 758, "end": 765, "annotation": null}, {"text": ",", "start": 765, "end": 766, "annotation": null}, {"text": "M\u00f6ssbauer", "start": 767, "end": 776, "annotation": null}, {"text": "spectroscopy", "start": 777, "end": 789, "annotation": null}, {"text": "data", "start": 790, "end": 794, "annotation": null}, {"text": "indicate", "start": 795, "end": 803, "annotation": null}, {"text": "the", "start": 804, "end": 807, "annotation": null}, {"text": "presence", "start": 808, "end": 816, "annotation": null}, {"text": "of", "start": 817, "end": 819, "annotation": null}, {"text": "magnetite", "start": 820, "end": 829, "annotation": "BASEMAT"}, {"text": "and", "start": 830, "end": 833, "annotation": null}, {"text": "goethite", "start": 834, "end": 842, "annotation": "BASEMAT"}, {"text": "at", "start": 843, "end": 845, "annotation": null}, {"text": "x", "start": 846, "end": 847, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 847, "end": 848, "annotation": "DOPMODQ"}, {"text": "0.2", "start": 848, "end": 851, "annotation": "DOPMODQ"}, {"text": ",", "start": 851, "end": 852, "annotation": null}, {"text": "magnetite", "start": 853, "end": 862, "annotation": "BASEMAT"}, {"text": "and", "start": 863, "end": 866, "annotation": null}, {"text": "zinc", "start": 867, "end": 871, "annotation": null}, {"text": "ferrite", "start": 872, "end": 879, "annotation": null}, {"text": "at", "start": 880, "end": 882, "annotation": null}, {"text": "x", "start": 883, "end": 884, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 884, "end": 885, "annotation": "DOPMODQ"}, {"text": "0.9", "start": 885, "end": 888, "annotation": "DOPMODQ"}, {"text": "and", "start": 889, "end": 892, "annotation": null}, {"text": "pure", "start": 893, "end": 897, "annotation": null}, {"text": "zinc", "start": 898, "end": 902, "annotation": null}, {"text": "ferrite", "start": 903, "end": 910, "annotation": null}, {"text": "only", "start": 911, "end": 915, "annotation": null}, {"text": "at", "start": 916, "end": 918, "annotation": null}, {"text": "high", "start": 919, "end": 923, "annotation": null}, {"text": "zinc", "start": 924, "end": 928, "annotation": null}, {"text": "concentrations", "start": 929, "end": 943, "annotation": null}, {"text": ".", "start": 943, "end": 944, "annotation": null}], [{"text": "The", "start": 945, "end": 948, "annotation": null}, {"text": "presence", "start": 949, "end": 957, "annotation": null}, {"text": "of", "start": 958, "end": 960, "annotation": null}, {"text": "different", "start": 961, "end": 970, "annotation": null}, {"text": "magnetite", "start": 971, "end": 980, "annotation": "BASEMAT"}, {"text": "phases", "start": 981, "end": 987, "annotation": null}, {"text": "was", "start": 988, "end": 991, "annotation": null}, {"text": "confirmed", "start": 992, "end": 1001, "annotation": null}, {"text": "by", "start": 1002, "end": 1004, "annotation": null}, {"text": "TEM", "start": 1005, "end": 1008, "annotation": null}, {"text": "and", "start": 1009, "end": 1012, "annotation": null}, {"text": "particles", "start": 1013, "end": 1022, "annotation": null}, {"text": "with", "start": 1023, "end": 1027, "annotation": null}, {"text": "a", "start": 1028, "end": 1029, "annotation": null}, {"text": "size", "start": 1030, "end": 1034, "annotation": null}, {"text": "of", "start": 1035, "end": 1037, "annotation": null}, {"text": "50", "start": 1038, "end": 1040, "annotation": null}, {"text": "nm", "start": 1040, "end": 1042, "annotation": null}, {"text": "were", "start": 1043, "end": 1047, "annotation": null}, {"text": "identified", "start": 1048, "end": 1058, "annotation": null}, {"text": ".", "start": 1058, "end": 1059, "annotation": null}], [{"text": "Our", "start": 1060, "end": 1063, "annotation": null}, {"text": "results", "start": 1064, "end": 1071, "annotation": null}, {"text": "show", "start": 1072, "end": 1076, "annotation": null}, {"text": "that", "start": 1077, "end": 1081, "annotation": null}, {"text": "zinc", "start": 1082, "end": 1086, "annotation": null}, {"text": "ferrite", "start": 1087, "end": 1094, "annotation": null}, {"text": "is", "start": 1095, "end": 1097, "annotation": null}, {"text": "formed", "start": 1098, "end": 1104, "annotation": null}, {"text": "at", "start": 1105, "end": 1107, "annotation": null}, {"text": "high", "start": 1108, "end": 1112, "annotation": null}, {"text": "zinc", "start": 1113, "end": 1117, "annotation": "DOPANT"}, {"text": "concentration", "start": 1118, "end": 1131, "annotation": null}, {"text": "by", "start": 1132, "end": 1134, "annotation": null}, {"text": "the", "start": 1135, "end": 1138, "annotation": null}, {"text": "hydrothermal", "start": 1139, "end": 1151, "annotation": null}, {"text": "method", "start": 1152, "end": 1158, "annotation": null}, {"text": "and", "start": 1159, "end": 1162, "annotation": null}, {"text": "an", "start": 1163, "end": 1165, "annotation": null}, {"text": "acicular", "start": 1166, "end": 1174, "annotation": null}, {"text": "component", "start": 1175, "end": 1184, "annotation": null}, {"text": "of", "start": 1185, "end": 1187, "annotation": null}, {"text": "goethite", "start": 1188, "end": 1196, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 1196, "end": 1197, "annotation": null}, {"text": "magnetite", "start": 1197, "end": 1206, "annotation": "BASEMAT"}, {"text": "is", "start": 1207, "end": 1209, "annotation": null}, {"text": "obtained", "start": 1210, "end": 1218, "annotation": null}, {"text": "at", "start": 1219, "end": 1221, "annotation": null}, {"text": "low", "start": 1222, "end": 1225, "annotation": null}, {"text": "zinc", "start": 1226, "end": 1230, "annotation": "DOPANT"}, {"text": "content", "start": 1231, "end": 1238, "annotation": null}, {"text": ".", "start": 1238, "end": 1239, "annotation": null}]]} +{"remark": "doping_annt2", "text": "In microelectronic manufacturing, chemical mechanical polishing (CMP) of silicon is becoming a more and more important process. This work investigates the effect of dopants on CMP of silicon. A high boron concentration is found to reduce the removal rate. The boron induced reduction is clearly demonstrated by observing boron diffused areas on a wafer protrude during polishing. A high phosphorus concentration enhances the removal rate. It is also found that the removal rate is lower for the Si(111) compared to the Si(100) orientation.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "microelectronic", "start": 3, "end": 18, "annotation": null}, {"text": "manufacturing", "start": 19, "end": 32, "annotation": null}, {"text": ",", "start": 32, "end": 33, "annotation": null}, {"text": "chemical", "start": 34, "end": 42, "annotation": null}, {"text": "mechanical", "start": 43, "end": 53, "annotation": null}, {"text": "polishing", "start": 54, "end": 63, "annotation": null}, {"text": "(", "start": 64, "end": 65, "annotation": null}, {"text": "CMP", "start": 65, "end": 68, "annotation": null}, {"text": ")", "start": 68, "end": 69, "annotation": null}, {"text": "of", "start": 70, "end": 72, "annotation": null}, {"text": "silicon", "start": 73, "end": 80, "annotation": null}, {"text": "is", "start": 81, "end": 83, "annotation": null}, {"text": "becoming", "start": 84, "end": 92, "annotation": null}, {"text": "a", "start": 93, "end": 94, "annotation": null}, {"text": "more", "start": 95, "end": 99, "annotation": null}, {"text": "and", "start": 100, "end": 103, "annotation": null}, {"text": "more", "start": 104, "end": 108, "annotation": null}, {"text": "important", "start": 109, "end": 118, "annotation": null}, {"text": "process", "start": 119, "end": 126, "annotation": null}, {"text": ".", "start": 126, "end": 127, "annotation": null}], [{"text": "This", "start": 128, "end": 132, "annotation": null}, {"text": "work", "start": 133, "end": 137, "annotation": null}, {"text": "investigates", "start": 138, "end": 150, "annotation": null}, {"text": "the", "start": 151, "end": 154, "annotation": null}, {"text": "effect", "start": 155, "end": 161, "annotation": null}, {"text": "of", "start": 162, "end": 164, "annotation": null}, {"text": "dopants", "start": 165, "end": 172, "annotation": null}, {"text": "on", "start": 173, "end": 175, "annotation": null}, {"text": "CMP", "start": 176, "end": 179, "annotation": null}, {"text": "of", "start": 180, "end": 182, "annotation": null}, {"text": "silicon", "start": 183, "end": 190, "annotation": "BASEMAT"}, {"text": ".", "start": 190, "end": 191, "annotation": null}], [{"text": "A", "start": 192, "end": 193, "annotation": null}, {"text": "high", "start": 194, "end": 198, "annotation": null}, {"text": "boron", "start": 199, "end": 204, "annotation": "DOPANT"}, {"text": "concentration", "start": 205, "end": 218, "annotation": null}, {"text": "is", "start": 219, "end": 221, "annotation": null}, {"text": "found", "start": 222, "end": 227, "annotation": null}, {"text": "to", "start": 228, "end": 230, "annotation": null}, {"text": "reduce", "start": 231, "end": 237, "annotation": null}, {"text": "the", "start": 238, "end": 241, "annotation": null}, {"text": "removal", "start": 242, "end": 249, "annotation": null}, {"text": "rate", "start": 250, "end": 254, "annotation": null}, {"text": ".", "start": 254, "end": 255, "annotation": null}], [{"text": "The", "start": 256, "end": 259, "annotation": null}, {"text": "boron", "start": 260, "end": 265, "annotation": "DOPANT"}, {"text": "induced", "start": 266, "end": 273, "annotation": null}, {"text": "reduction", "start": 274, "end": 283, "annotation": null}, {"text": "is", "start": 284, "end": 286, "annotation": null}, {"text": "clearly", "start": 287, "end": 294, "annotation": null}, {"text": "demonstrated", "start": 295, "end": 307, "annotation": null}, {"text": "by", "start": 308, "end": 310, "annotation": null}, {"text": "observing", "start": 311, "end": 320, "annotation": null}, {"text": "boron", "start": 321, "end": 326, "annotation": "DOPANT"}, {"text": "diffused", "start": 327, "end": 335, "annotation": null}, {"text": "areas", "start": 336, "end": 341, "annotation": null}, {"text": "on", "start": 342, "end": 344, "annotation": null}, {"text": "a", "start": 345, "end": 346, "annotation": null}, {"text": "wafer", "start": 347, "end": 352, "annotation": null}, {"text": "protrude", "start": 353, "end": 361, "annotation": null}, {"text": "during", "start": 362, "end": 368, "annotation": null}, {"text": "polishing", "start": 369, "end": 378, "annotation": null}, {"text": ".", "start": 378, "end": 379, "annotation": null}], [{"text": "A", "start": 380, "end": 381, "annotation": null}, {"text": "high", "start": 382, "end": 386, "annotation": null}, {"text": "phosphorus", "start": 387, "end": 397, "annotation": "DOPANT"}, {"text": "concentration", "start": 398, "end": 411, "annotation": null}, {"text": "enhances", "start": 412, "end": 420, "annotation": null}, {"text": "the", "start": 421, "end": 424, "annotation": null}, {"text": "removal", "start": 425, "end": 432, "annotation": null}, {"text": "rate", "start": 433, "end": 437, "annotation": null}, {"text": ".", "start": 437, "end": 438, "annotation": null}], [{"text": "It", "start": 439, "end": 441, "annotation": null}, {"text": "is", "start": 442, "end": 444, "annotation": null}, {"text": "also", "start": 445, "end": 449, "annotation": null}, {"text": "found", "start": 450, "end": 455, "annotation": null}, {"text": "that", "start": 456, "end": 460, "annotation": null}, {"text": "the", "start": 461, "end": 464, "annotation": null}, {"text": "removal", "start": 465, "end": 472, "annotation": null}, {"text": "rate", "start": 473, "end": 477, "annotation": null}, {"text": "is", "start": 478, "end": 480, "annotation": null}, {"text": "lower", "start": 481, "end": 486, "annotation": null}, {"text": "for", "start": 487, "end": 490, "annotation": null}, {"text": "the", "start": 491, "end": 494, "annotation": null}, {"text": "Si(111)", "start": 495, "end": 502, "annotation": null}, {"text": "compared", "start": 503, "end": 511, "annotation": null}, {"text": "to", "start": 512, "end": 514, "annotation": null}, {"text": "the", "start": 515, "end": 518, "annotation": null}, {"text": "Si(100)", "start": 519, "end": 526, "annotation": null}, {"text": "orientation", "start": 527, "end": 538, "annotation": null}, {"text": ".", "start": 538, "end": 539, "annotation": null}]], "meta": {"doi": "10.1016/S0167-9317(01)00591-3"}} +{"remark": "doping_annt1", "text": "A systematic investigation of structure, electrical and magnetic properties of polycrystalline ceramics La0.67Ca0.33\u2212xKxMnO3 (x=0.05, 0.10, 0.15, 0.20, 0.25) samples, prepared by sol\u2013gel method had been undertaken. As K content increases the crystal structures were transformed from orthorhombic to rhombohedral structure identified by X-ray diffraction, and the effect of increasing K ion is to increment the Mn\u2013O\u2013Mn bond angle. The surface morphology was investigated by scanning electron microscope, which indicates that grain size decreasing with increasing of K+. Temperature dependence of resistivity (\u03c1 \u2212 T) was measured by standard four-probe method. The insulator\u2013metal transition temperature (TP) shifted to higher temperature and the temperature coefficient of resistivity decreased sharply with the substitution K+ for Ca2+ ion. The temperature dependence of magnetization (M\u2013T) shown that Curie temperature (TC) was increasing with the increase of K content, which can be explained by enhancement of double\u2013exchange interaction. The data of resistivity on low-temperature (TTP) resistivity data were explained using small-polaron hopping and variable-range hopping models. Resistivity data in whole temperature range (100\u2013320K) could be fitted by percolation model. Polaron activation energy Ea was found to decrease with the content K+ increasing, which suggested that K doping increase bond angle Mn\u2013O\u2013Mn, thereby the effective band gap was decreased and the double exchange coupling was increased of, this is the reason for the decrease of resistivity.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "systematic", "start": 2, "end": 12, "annotation": null}, {"text": "investigation", "start": 13, "end": 26, "annotation": null}, {"text": "of", "start": 27, "end": 29, "annotation": null}, {"text": "structure", "start": 30, "end": 39, "annotation": null}, {"text": ",", "start": 39, "end": 40, "annotation": null}, {"text": "electrical", "start": 41, "end": 51, "annotation": null}, {"text": "and", "start": 52, "end": 55, "annotation": null}, {"text": "magnetic", "start": 56, "end": 64, "annotation": null}, {"text": "properties", "start": 65, "end": 75, "annotation": null}, {"text": "of", "start": 76, "end": 78, "annotation": null}, {"text": "polycrystalline", "start": 79, "end": 94, "annotation": null}, {"text": "ceramics", "start": 95, "end": 103, "annotation": null}, {"text": "La0.67Ca0.33\u2212xKxMnO3", "start": 104, "end": 124, "annotation": "BASEMAT"}, {"text": "(", "start": 125, "end": 126, "annotation": null}, {"text": "x", "start": 126, "end": 127, "annotation": null}, {"text": "=", "start": 127, "end": 128, "annotation": null}, {"text": "0.05", "start": 128, "end": 132, "annotation": null}, {"text": ",", "start": 132, "end": 133, "annotation": null}, {"text": "0.10", "start": 134, "end": 138, "annotation": null}, {"text": ",", "start": 138, "end": 139, "annotation": null}, {"text": "0.15", "start": 140, "end": 144, "annotation": null}, {"text": ",", "start": 144, "end": 145, "annotation": null}, {"text": "0.20", "start": 146, "end": 150, "annotation": null}, {"text": ",", "start": 150, "end": 151, "annotation": null}, {"text": "0.25", "start": 152, "end": 156, "annotation": null}, {"text": ")", "start": 156, "end": 157, "annotation": null}, {"text": "samples", "start": 158, "end": 165, "annotation": null}, {"text": ",", "start": 165, "end": 166, "annotation": null}, {"text": "prepared", "start": 167, "end": 175, "annotation": null}, {"text": "by", "start": 176, "end": 178, "annotation": null}, {"text": "sol", "start": 179, "end": 182, "annotation": null}, {"text": "\u2013", "start": 182, "end": 183, "annotation": null}, {"text": "gel", "start": 183, "end": 186, "annotation": null}, {"text": "method", "start": 187, "end": 193, "annotation": null}, {"text": "had", "start": 194, "end": 197, "annotation": null}, {"text": "been", "start": 198, "end": 202, "annotation": null}, {"text": "undertaken", "start": 203, "end": 213, "annotation": null}, {"text": ".", "start": 213, "end": 214, "annotation": null}], [{"text": "As", "start": 215, "end": 217, "annotation": null}, {"text": "K", "start": 218, "end": 219, "annotation": "DOPANT"}, {"text": "content", "start": 220, "end": 227, "annotation": null}, {"text": "increases", "start": 228, "end": 237, "annotation": null}, {"text": "the", "start": 238, "end": 241, "annotation": null}, {"text": "crystal", "start": 242, "end": 249, "annotation": null}, {"text": "structures", "start": 250, "end": 260, "annotation": null}, {"text": "were", "start": 261, "end": 265, "annotation": null}, {"text": "transformed", "start": 266, "end": 277, "annotation": null}, {"text": "from", "start": 278, "end": 282, "annotation": null}, {"text": "orthorhombic", "start": 283, "end": 295, "annotation": null}, {"text": "to", "start": 296, "end": 298, "annotation": null}, {"text": "rhombohedral", "start": 299, "end": 311, "annotation": null}, {"text": "structure", "start": 312, "end": 321, "annotation": null}, {"text": "identified", "start": 322, "end": 332, "annotation": null}, {"text": "by", "start": 333, "end": 335, "annotation": null}, {"text": "X-ray", "start": 336, "end": 341, "annotation": null}, {"text": "diffraction", "start": 342, "end": 353, "annotation": null}, {"text": ",", "start": 353, "end": 354, "annotation": null}, {"text": "and", "start": 355, "end": 358, "annotation": null}, {"text": "the", "start": 359, "end": 362, "annotation": null}, {"text": "effect", "start": 363, "end": 369, "annotation": null}, {"text": "of", "start": 370, "end": 372, "annotation": null}, {"text": "increasing", "start": 373, "end": 383, "annotation": null}, {"text": "K", "start": 384, "end": 385, "annotation": "DOPANT"}, {"text": "ion", "start": 386, "end": 389, "annotation": null}, {"text": "is", "start": 390, "end": 392, "annotation": null}, {"text": "to", "start": 393, "end": 395, "annotation": null}, {"text": "increment", "start": 396, "end": 405, "annotation": null}, {"text": "the", "start": 406, "end": 409, "annotation": null}, {"text": "Mn", "start": 410, "end": 412, "annotation": null}, {"text": "\u2013", "start": 412, "end": 413, "annotation": null}, {"text": "O", "start": 413, "end": 414, "annotation": null}, {"text": "\u2013", "start": 414, "end": 415, "annotation": null}, {"text": "Mn", "start": 415, "end": 417, "annotation": null}, {"text": "bond", "start": 418, "end": 422, "annotation": null}, {"text": "angle", "start": 423, "end": 428, "annotation": null}, {"text": ".", "start": 428, "end": 429, "annotation": null}], [{"text": "The", "start": 430, "end": 433, "annotation": null}, {"text": "surface", "start": 434, "end": 441, "annotation": null}, {"text": "morphology", "start": 442, "end": 452, "annotation": null}, {"text": "was", "start": 453, "end": 456, "annotation": null}, {"text": "investigated", "start": 457, "end": 469, "annotation": null}, {"text": "by", "start": 470, "end": 472, "annotation": null}, {"text": "scanning", "start": 473, "end": 481, "annotation": null}, {"text": "electron", "start": 482, "end": 490, "annotation": null}, {"text": "microscope", "start": 491, "end": 501, "annotation": null}, {"text": ",", "start": 501, "end": 502, "annotation": null}, {"text": "which", "start": 503, "end": 508, "annotation": null}, {"text": "indicates", "start": 509, "end": 518, "annotation": null}, {"text": "that", "start": 519, "end": 523, "annotation": null}, {"text": "grain", "start": 524, "end": 529, "annotation": null}, {"text": "size", "start": 530, "end": 534, "annotation": null}, {"text": "decreasing", "start": 535, "end": 545, "annotation": null}, {"text": "with", "start": 546, "end": 550, "annotation": null}, {"text": "increasing", "start": 551, "end": 561, "annotation": null}, {"text": "of", "start": 562, "end": 564, "annotation": null}, {"text": "K+", "start": 565, "end": 567, "annotation": null}, {"text": ".", "start": 567, "end": 568, "annotation": null}], [{"text": "Temperature", "start": 569, "end": 580, "annotation": null}, {"text": "dependence", "start": 581, "end": 591, "annotation": null}, {"text": "of", "start": 592, "end": 594, "annotation": null}, {"text": "resistivity", "start": 595, "end": 606, "annotation": null}, {"text": "(", "start": 607, "end": 608, "annotation": null}, {"text": "\u03c1", "start": 608, "end": 609, "annotation": null}, {"text": "\u2212", "start": 610, "end": 611, "annotation": null}, {"text": "T", "start": 612, "end": 613, "annotation": null}, {"text": ")", "start": 613, "end": 614, "annotation": null}, {"text": "was", "start": 615, "end": 618, "annotation": null}, {"text": "measured", "start": 619, "end": 627, "annotation": null}, {"text": "by", "start": 628, "end": 630, "annotation": null}, {"text": "standard", "start": 631, "end": 639, "annotation": null}, {"text": "four", "start": 640, "end": 644, "annotation": null}, {"text": "-", "start": 644, "end": 645, "annotation": null}, {"text": "probe", "start": 645, "end": 650, "annotation": null}, {"text": "method", "start": 651, "end": 657, "annotation": null}, {"text": ".", "start": 657, "end": 658, "annotation": null}], [{"text": "The", "start": 659, "end": 662, "annotation": null}, {"text": "insulator", "start": 663, "end": 672, "annotation": null}, {"text": "\u2013", "start": 672, "end": 673, "annotation": null}, {"text": "metal", "start": 673, "end": 678, "annotation": null}, {"text": "transition", "start": 679, "end": 689, "annotation": null}, {"text": "temperature", "start": 690, "end": 701, "annotation": null}, {"text": "(", "start": 702, "end": 703, "annotation": null}, {"text": "TP", "start": 703, "end": 705, "annotation": null}, {"text": ")", "start": 705, "end": 706, "annotation": null}, {"text": "shifted", "start": 707, "end": 714, "annotation": null}, {"text": "to", "start": 715, "end": 717, "annotation": null}, {"text": "higher", "start": 718, "end": 724, "annotation": null}, {"text": "temperature", "start": 725, "end": 736, "annotation": null}, {"text": "and", "start": 737, "end": 740, "annotation": null}, {"text": "the", "start": 741, "end": 744, "annotation": null}, {"text": "temperature", "start": 745, "end": 756, "annotation": null}, {"text": "coefficient", "start": 757, "end": 768, "annotation": null}, {"text": "of", "start": 769, "end": 771, "annotation": null}, {"text": "resistivity", "start": 772, "end": 783, "annotation": null}, {"text": "decreased", "start": 784, "end": 793, "annotation": null}, {"text": "sharply", "start": 794, "end": 801, "annotation": null}, {"text": "with", "start": 802, "end": 806, "annotation": null}, {"text": "the", "start": 807, "end": 810, "annotation": null}, {"text": "substitution", "start": 811, "end": 823, "annotation": null}, {"text": "K+", "start": 824, "end": 826, "annotation": "DOPANT"}, {"text": "for", "start": 827, "end": 830, "annotation": null}, {"text": "Ca2+", "start": 831, "end": 835, "annotation": "DOPANT"}, {"text": "ion", "start": 836, "end": 839, "annotation": null}, {"text": ".", "start": 839, "end": 840, "annotation": null}], [{"text": "The", "start": 841, "end": 844, "annotation": null}, {"text": "temperature", "start": 845, "end": 856, "annotation": null}, {"text": "dependence", "start": 857, "end": 867, "annotation": null}, {"text": "of", "start": 868, "end": 870, "annotation": null}, {"text": "magnetization", "start": 871, "end": 884, "annotation": null}, {"text": "(", "start": 885, "end": 886, "annotation": null}, {"text": "M", "start": 886, "end": 887, "annotation": null}, {"text": "\u2013", "start": 887, "end": 888, "annotation": null}, {"text": "T", "start": 888, "end": 889, "annotation": null}, {"text": ")", "start": 889, "end": 890, "annotation": null}, {"text": "shown", "start": 891, "end": 896, "annotation": null}, {"text": "that", "start": 897, "end": 901, "annotation": null}, {"text": "Curie", "start": 902, "end": 907, "annotation": null}, {"text": "temperature", "start": 908, "end": 919, "annotation": null}, {"text": "(", "start": 920, "end": 921, "annotation": null}, {"text": "TC", "start": 921, "end": 923, "annotation": null}, {"text": ")", "start": 923, "end": 924, "annotation": null}, {"text": "was", "start": 925, "end": 928, "annotation": null}, {"text": "increasing", "start": 929, "end": 939, "annotation": null}, {"text": "with", "start": 940, "end": 944, "annotation": null}, {"text": "the", "start": 945, "end": 948, "annotation": null}, {"text": "increase", "start": 949, "end": 957, "annotation": null}, {"text": "of", "start": 958, "end": 960, "annotation": null}, {"text": "K", "start": 961, "end": 962, "annotation": "DOPANT"}, {"text": "content", "start": 963, "end": 970, "annotation": null}, {"text": ",", "start": 970, "end": 971, "annotation": null}, {"text": "which", "start": 972, "end": 977, "annotation": null}, {"text": "can", "start": 978, "end": 981, "annotation": null}, {"text": "be", "start": 982, "end": 984, "annotation": null}, {"text": "explained", "start": 985, "end": 994, "annotation": null}, {"text": "by", "start": 995, "end": 997, "annotation": null}, {"text": "enhancement", "start": 998, "end": 1009, "annotation": null}, {"text": "of", "start": 1010, "end": 1012, "annotation": null}, {"text": "double", "start": 1013, "end": 1019, "annotation": null}, {"text": "\u2013", "start": 1019, "end": 1020, "annotation": null}, {"text": "exchange", "start": 1020, "end": 1028, "annotation": null}, {"text": "interaction", "start": 1029, "end": 1040, "annotation": null}, {"text": ".", "start": 1040, "end": 1041, "annotation": null}], [{"text": "The", "start": 1042, "end": 1045, "annotation": null}, {"text": "data", "start": 1046, "end": 1050, "annotation": null}, {"text": "of", "start": 1051, "end": 1053, "annotation": null}, {"text": "resistivity", "start": 1054, "end": 1065, "annotation": null}, {"text": "on", "start": 1066, "end": 1068, "annotation": null}, {"text": "low", "start": 1069, "end": 1072, "annotation": null}, {"text": "-", "start": 1072, "end": 1073, "annotation": null}, {"text": "temperature", "start": 1073, "end": 1084, "annotation": null}, {"text": "(", "start": 1085, "end": 1086, "annotation": null}, {"text": "T", "start": 1086, "end": 1087, "annotation": null}, {"text": "<", "start": 1087, "end": 1088, "annotation": null}, {"text": "TP", "start": 1088, "end": 1090, "annotation": null}, {"text": ")", "start": 1090, "end": 1091, "annotation": null}, {"text": "had", "start": 1092, "end": 1095, "annotation": null}, {"text": "been", "start": 1096, "end": 1100, "annotation": null}, {"text": "fitted", "start": 1101, "end": 1107, "annotation": null}, {"text": "with", "start": 1108, "end": 1112, "annotation": null}, {"text": "the", "start": 1113, "end": 1116, "annotation": null}, {"text": "relation", "start": 1117, "end": 1125, "annotation": null}, {"text": "\u03c1(T)", "start": 1126, "end": 1130, "annotation": null}, {"text": "=", "start": 1130, "end": 1131, "annotation": null}, {"text": "\u03c10", "start": 1131, "end": 1133, "annotation": null}, {"text": "+", "start": 1133, "end": 1134, "annotation": null}, {"text": "\u03c12T2", "start": 1134, "end": 1138, "annotation": null}, {"text": "+", "start": 1138, "end": 1139, "annotation": null}, {"text": "\u03c14.5T4.5", "start": 1139, "end": 1147, "annotation": null}, {"text": ";", "start": 1147, "end": 1148, "annotation": null}, {"text": "the", "start": 1149, "end": 1152, "annotation": null}, {"text": "high", "start": 1153, "end": 1157, "annotation": null}, {"text": "-", "start": 1157, "end": 1158, "annotation": null}, {"text": "temperature", "start": 1158, "end": 1169, "annotation": null}, {"text": "(", "start": 1170, "end": 1171, "annotation": null}, {"text": "T", "start": 1171, "end": 1172, "annotation": null}, {"text": ">", "start": 1172, "end": 1173, "annotation": null}, {"text": "TP", "start": 1173, "end": 1175, "annotation": null}, {"text": ")", "start": 1175, "end": 1176, "annotation": null}, {"text": "resistivity", "start": 1177, "end": 1188, "annotation": null}, {"text": "data", "start": 1189, "end": 1193, "annotation": null}, {"text": "were", "start": 1194, "end": 1198, "annotation": null}, {"text": "explained", "start": 1199, "end": 1208, "annotation": null}, {"text": "using", "start": 1209, "end": 1214, "annotation": null}, {"text": "small", "start": 1215, "end": 1220, "annotation": null}, {"text": "-", "start": 1220, "end": 1221, "annotation": null}, {"text": "polaron", "start": 1221, "end": 1228, "annotation": null}, {"text": "hopping", "start": 1229, "end": 1236, "annotation": null}, {"text": "and", "start": 1237, "end": 1240, "annotation": null}, {"text": "variable", "start": 1241, "end": 1249, "annotation": null}, {"text": "-", "start": 1249, "end": 1250, "annotation": null}, {"text": "range", "start": 1250, "end": 1255, "annotation": null}, {"text": "hopping", "start": 1256, "end": 1263, "annotation": null}, {"text": "models", "start": 1264, "end": 1270, "annotation": null}, {"text": ".", "start": 1270, "end": 1271, "annotation": null}], [{"text": "Resistivity", "start": 1272, "end": 1283, "annotation": null}, {"text": "data", "start": 1284, "end": 1288, "annotation": null}, {"text": "in", "start": 1289, "end": 1291, "annotation": null}, {"text": "whole", "start": 1292, "end": 1297, "annotation": null}, {"text": "temperature", "start": 1298, "end": 1309, "annotation": null}, {"text": "range", "start": 1310, "end": 1315, "annotation": null}, {"text": "(", "start": 1316, "end": 1317, "annotation": null}, {"text": "100", "start": 1317, "end": 1320, "annotation": null}, {"text": "\u2013", "start": 1320, "end": 1321, "annotation": null}, {"text": "320", "start": 1321, "end": 1324, "annotation": null}, {"text": "K", "start": 1324, "end": 1325, "annotation": null}, {"text": ")", "start": 1325, "end": 1326, "annotation": null}, {"text": "could", "start": 1327, "end": 1332, "annotation": null}, {"text": "be", "start": 1333, "end": 1335, "annotation": null}, {"text": "fitted", "start": 1336, "end": 1342, "annotation": null}, {"text": "by", "start": 1343, "end": 1345, "annotation": null}, {"text": "percolation", "start": 1346, "end": 1357, "annotation": null}, {"text": "model", "start": 1358, "end": 1363, "annotation": null}, {"text": ".", "start": 1363, "end": 1364, "annotation": null}], [{"text": "Polaron", "start": 1365, "end": 1372, "annotation": null}, {"text": "activation", "start": 1373, "end": 1383, "annotation": null}, {"text": "energy", "start": 1384, "end": 1390, "annotation": null}, {"text": "Ea", "start": 1391, "end": 1393, "annotation": null}, {"text": "was", "start": 1394, "end": 1397, "annotation": null}, {"text": "found", "start": 1398, "end": 1403, "annotation": null}, {"text": "to", "start": 1404, "end": 1406, "annotation": null}, {"text": "decrease", "start": 1407, "end": 1415, "annotation": null}, {"text": "with", "start": 1416, "end": 1420, "annotation": null}, {"text": "the", "start": 1421, "end": 1424, "annotation": null}, {"text": "content", "start": 1425, "end": 1432, "annotation": null}, {"text": "K+", "start": 1433, "end": 1435, "annotation": "DOPANT"}, {"text": "increasing", "start": 1436, "end": 1446, "annotation": null}, {"text": ",", "start": 1446, "end": 1447, "annotation": null}, {"text": "which", "start": 1448, "end": 1453, "annotation": null}, {"text": "suggested", "start": 1454, "end": 1463, "annotation": null}, {"text": "that", "start": 1464, "end": 1468, "annotation": null}, {"text": "K", "start": 1469, "end": 1470, "annotation": "DOPANT"}, {"text": "doping", "start": 1471, "end": 1477, "annotation": null}, {"text": "increase", "start": 1478, "end": 1486, "annotation": null}, {"text": "bond", "start": 1487, "end": 1491, "annotation": null}, {"text": "angle", "start": 1492, "end": 1497, "annotation": null}, {"text": "Mn", "start": 1498, "end": 1500, "annotation": null}, {"text": "\u2013", "start": 1500, "end": 1501, "annotation": null}, {"text": "O", "start": 1501, "end": 1502, "annotation": null}, {"text": "\u2013", "start": 1502, "end": 1503, "annotation": null}, {"text": "Mn", "start": 1503, "end": 1505, "annotation": null}, {"text": ",", "start": 1505, "end": 1506, "annotation": null}, {"text": "thereby", "start": 1507, "end": 1514, "annotation": null}, {"text": "the", "start": 1515, "end": 1518, "annotation": null}, {"text": "effective", "start": 1519, "end": 1528, "annotation": null}, {"text": "band", "start": 1529, "end": 1533, "annotation": null}, {"text": "gap", "start": 1534, "end": 1537, "annotation": null}, {"text": "was", "start": 1538, "end": 1541, "annotation": null}, {"text": "decreased", "start": 1542, "end": 1551, "annotation": null}, {"text": "and", "start": 1552, "end": 1555, "annotation": null}, {"text": "the", "start": 1556, "end": 1559, "annotation": null}, {"text": "double", "start": 1560, "end": 1566, "annotation": null}, {"text": "exchange", "start": 1567, "end": 1575, "annotation": null}, {"text": "coupling", "start": 1576, "end": 1584, "annotation": null}, {"text": "was", "start": 1585, "end": 1588, "annotation": null}, {"text": "increased", "start": 1589, "end": 1598, "annotation": null}, {"text": "of", "start": 1599, "end": 1601, "annotation": null}, {"text": ",", "start": 1601, "end": 1602, "annotation": null}, {"text": "this", "start": 1603, "end": 1607, "annotation": null}, {"text": "is", "start": 1608, "end": 1610, "annotation": null}, {"text": "the", "start": 1611, "end": 1614, "annotation": null}, {"text": "reason", "start": 1615, "end": 1621, "annotation": null}, {"text": "for", "start": 1622, "end": 1625, "annotation": null}, {"text": "the", "start": 1626, "end": 1629, "annotation": null}, {"text": "decrease", "start": 1630, "end": 1638, "annotation": null}, {"text": "of", "start": 1639, "end": 1641, "annotation": null}, {"text": "resistivity", "start": 1642, "end": 1653, "annotation": null}, {"text": ".", "start": 1653, "end": 1654, "annotation": null}]], "meta": {"doi": "10.1007/s10854-017-8089-6"}} +{"remark": "doping_annt3", "text": "Low-temperature mobilities in InAs-AlSb quantum wells depend sensitively on the buffer layer structures. Reflection high energy electron diffraction and x-ray diffraction show that the highest crystalline quality and best InAs transport properties are obtained by a buffer layer sequence GaAs \u2192 AlAs \u2192 AlSb \u2192 GaSb, with a final GaSb layer thickness of at least 1 \u03bcm. Using the improved buffer scheme, mobilities exceeding 600,000 cm2/Vs at 10 K are routinely obtained. Modulation \u03b4-doping with tellurium has yielded electron sheet concentrations up to 8 \u00d7 1012 cm\u22122 while maintaining mobilities approaching 100,000 cm2/Vs at low temperatures.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Low", "start": 0, "end": 3, "annotation": null}, {"text": "-", "start": 3, "end": 4, "annotation": null}, {"text": "temperature", "start": 4, "end": 15, "annotation": null}, {"text": "mobilities", "start": 16, "end": 26, "annotation": null}, {"text": "in", "start": 27, "end": 29, "annotation": null}, {"text": "InAs", "start": 30, "end": 34, "annotation": null}, {"text": "-", "start": 34, "end": 35, "annotation": null}, {"text": "AlSb", "start": 35, "end": 39, "annotation": null}, {"text": "quantum", "start": 40, "end": 47, "annotation": null}, {"text": "wells", "start": 48, "end": 53, "annotation": null}, {"text": "depend", "start": 54, "end": 60, "annotation": null}, {"text": "sensitively", "start": 61, "end": 72, "annotation": null}, {"text": "on", "start": 73, "end": 75, "annotation": null}, {"text": "the", "start": 76, "end": 79, "annotation": null}, {"text": "buffer", "start": 80, "end": 86, "annotation": null}, {"text": "layer", "start": 87, "end": 92, "annotation": null}, {"text": "structures", "start": 93, "end": 103, "annotation": null}, {"text": ".", "start": 103, "end": 104, "annotation": null}], [{"text": "Reflection", "start": 105, "end": 115, "annotation": null}, {"text": "high", "start": 116, "end": 120, "annotation": null}, {"text": "energy", "start": 121, "end": 127, "annotation": null}, {"text": "electron", "start": 128, "end": 136, "annotation": null}, {"text": "diffraction", "start": 137, "end": 148, "annotation": null}, {"text": "and", "start": 149, "end": 152, "annotation": null}, {"text": "x-ray", "start": 153, "end": 158, "annotation": null}, {"text": "diffraction", "start": 159, "end": 170, "annotation": null}, {"text": "show", "start": 171, "end": 175, "annotation": null}, {"text": "that", "start": 176, "end": 180, "annotation": null}, {"text": "the", "start": 181, "end": 184, "annotation": null}, {"text": "highest", "start": 185, "end": 192, "annotation": null}, {"text": "crystalline", "start": 193, "end": 204, "annotation": null}, {"text": "quality", "start": 205, "end": 212, "annotation": null}, {"text": "and", "start": 213, "end": 216, "annotation": null}, {"text": "best", "start": 217, "end": 221, "annotation": null}, {"text": "InAs", "start": 222, "end": 226, "annotation": null}, {"text": "transport", "start": 227, "end": 236, "annotation": null}, {"text": "properties", "start": 237, "end": 247, "annotation": null}, {"text": "are", "start": 248, "end": 251, "annotation": null}, {"text": "obtained", "start": 252, "end": 260, "annotation": null}, {"text": "by", "start": 261, "end": 263, "annotation": null}, {"text": "a", "start": 264, "end": 265, "annotation": null}, {"text": "buffer", "start": 266, "end": 272, "annotation": null}, {"text": "layer", "start": 273, "end": 278, "annotation": null}, {"text": "sequence", "start": 279, "end": 287, "annotation": null}, {"text": "GaAs", "start": 288, "end": 292, "annotation": null}, {"text": "\u2192", "start": 293, "end": 294, "annotation": null}, {"text": "AlAs", "start": 295, "end": 299, "annotation": null}, {"text": "\u2192", "start": 300, "end": 301, "annotation": null}, {"text": "AlSb", "start": 302, "end": 306, "annotation": null}, {"text": "\u2192", "start": 307, "end": 308, "annotation": null}, {"text": "GaSb", "start": 309, "end": 313, "annotation": null}, {"text": ",", "start": 313, "end": 314, "annotation": null}, {"text": "with", "start": 315, "end": 319, "annotation": null}, {"text": "a", "start": 320, "end": 321, "annotation": null}, {"text": "final", "start": 322, "end": 327, "annotation": null}, {"text": "GaSb", "start": 328, "end": 332, "annotation": null}, {"text": "layer", "start": 333, "end": 338, "annotation": null}, {"text": "thickness", "start": 339, "end": 348, "annotation": null}, {"text": "of", "start": 349, "end": 351, "annotation": null}, {"text": "at", "start": 352, "end": 354, "annotation": null}, {"text": "least", "start": 355, "end": 360, "annotation": null}, {"text": "1", "start": 361, "end": 362, "annotation": null}, {"text": "\u03bcm", "start": 363, "end": 365, "annotation": null}, {"text": ".", "start": 365, "end": 366, "annotation": null}], [{"text": "Using", "start": 367, "end": 372, "annotation": null}, {"text": "the", "start": 373, "end": 376, "annotation": null}, {"text": "improved", "start": 377, "end": 385, "annotation": null}, {"text": "buffer", "start": 386, "end": 392, "annotation": null}, {"text": "scheme", "start": 393, "end": 399, "annotation": null}, {"text": ",", "start": 399, "end": 400, "annotation": null}, {"text": "mobilities", "start": 401, "end": 411, "annotation": null}, {"text": "exceeding", "start": 412, "end": 421, "annotation": null}, {"text": "600,000", "start": 422, "end": 429, "annotation": null}, {"text": "cm2", "start": 430, "end": 433, "annotation": null}, {"text": "/", "start": 433, "end": 434, "annotation": null}, {"text": "Vs", "start": 434, "end": 436, "annotation": null}, {"text": "at", "start": 437, "end": 439, "annotation": null}, {"text": "10", "start": 440, "end": 442, "annotation": null}, {"text": "K", "start": 443, "end": 444, "annotation": null}, {"text": "are", "start": 445, "end": 448, "annotation": null}, {"text": "routinely", "start": 449, "end": 458, "annotation": null}, {"text": "obtained", "start": 459, "end": 467, "annotation": null}, {"text": ".", "start": 467, "end": 468, "annotation": null}], [{"text": "Modulation", "start": 469, "end": 479, "annotation": null}, {"text": "\u03b4-doping", "start": 480, "end": 488, "annotation": null}, {"text": "with", "start": 489, "end": 493, "annotation": null}, {"text": "tellurium", "start": 494, "end": 503, "annotation": "DOPANT"}, {"text": "has", "start": 504, "end": 507, "annotation": null}, {"text": "yielded", "start": 508, "end": 515, "annotation": null}, {"text": "electron", "start": 516, "end": 524, "annotation": null}, {"text": "sheet", "start": 525, "end": 530, "annotation": null}, {"text": "concentrations", "start": 531, "end": 545, "annotation": null}, {"text": "up", "start": 546, "end": 548, "annotation": null}, {"text": "to", "start": 549, "end": 551, "annotation": null}, {"text": "8", "start": 552, "end": 553, "annotation": null}, {"text": "\u00d7", "start": 554, "end": 555, "annotation": null}, {"text": "1012", "start": 556, "end": 560, "annotation": null}, {"text": "cm\u22122", "start": 561, "end": 565, "annotation": null}, {"text": "while", "start": 566, "end": 571, "annotation": null}, {"text": "maintaining", "start": 572, "end": 583, "annotation": null}, {"text": "mobilities", "start": 584, "end": 594, "annotation": null}, {"text": "approaching", "start": 595, "end": 606, "annotation": null}, {"text": "100,000", "start": 607, "end": 614, "annotation": null}, {"text": "cm2", "start": 615, "end": 618, "annotation": null}, {"text": "/", "start": 618, "end": 619, "annotation": null}, {"text": "Vs", "start": 619, "end": 621, "annotation": null}, {"text": "at", "start": 622, "end": 624, "annotation": null}, {"text": "low", "start": 625, "end": 628, "annotation": null}, {"text": "temperatures", "start": 629, "end": 641, "annotation": null}, {"text": ".", "start": 641, "end": 642, "annotation": null}]], "meta": {"doi": "10.1007/BF02665035"}} +{"remark": "doping_annt1", "text": "Electrical and physical properties of a metal-oxide-semiconductor [MOS] structure using atomic layer-deposited high-k dielectrics (TiO2/Al2O3) and epitaxial GaAs [epi-GaAs] grown on Ge(100) substrates have been investigated. The epi-GaAs, either undoped or Zn-doped, was grown using metal-organic chemical vapor deposition method at 620\u00b0C to 650\u00b0C. The diffusion of Ge atoms into epi-GaAs resulted in auto-doping, and therefore, an n-MOS behavior was observed for undoped and Zn-doped epi-GaAs with the doping concentration up to approximately 1017 cm-3. This is attributed to the diffusion of a significant amount of Ge atoms from the Ge substrate as confirmed by the simulation using SILVACO software and also from the secondary ion mass spectrometry analyses. The Zn-doped epi-GaAs with a doping concentration of approximately 1018 cm-3 converts the epi-GaAs layer into p-type since the Zn doping is relatively higher than the out-diffused Ge concentration. The capacitance-voltage characteristics show similar frequency dispersion and leakage current for n-type and p-type epi-GaAs layers with very low hysteresis voltage (approximately 10 mV).PACS: 81.15.Gh.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Electrical", "start": 0, "end": 10, "annotation": null}, {"text": "and", "start": 11, "end": 14, "annotation": null}, {"text": "physical", "start": 15, "end": 23, "annotation": null}, {"text": "properties", "start": 24, "end": 34, "annotation": null}, {"text": "of", "start": 35, "end": 37, "annotation": null}, {"text": "a", "start": 38, "end": 39, "annotation": null}, {"text": "metal", "start": 40, "end": 45, "annotation": null}, {"text": "-", "start": 45, "end": 46, "annotation": null}, {"text": "oxide", "start": 46, "end": 51, "annotation": null}, {"text": "-", "start": 51, "end": 52, "annotation": null}, {"text": "semiconductor", "start": 52, "end": 65, "annotation": null}, {"text": "[MOS]", "start": 66, "end": 71, "annotation": null}, {"text": "structure", "start": 72, "end": 81, "annotation": null}, {"text": "using", "start": 82, "end": 87, "annotation": null}, {"text": "atomic", "start": 88, "end": 94, "annotation": null}, {"text": "layer", "start": 95, "end": 100, "annotation": null}, {"text": "-", "start": 100, "end": 101, "annotation": null}, {"text": "deposited", "start": 101, "end": 110, "annotation": null}, {"text": "high-k", "start": 111, "end": 117, "annotation": null}, {"text": "dielectrics", "start": 118, "end": 129, "annotation": null}, {"text": "(", "start": 130, "end": 131, "annotation": null}, {"text": "TiO2", "start": 131, "end": 135, "annotation": null}, {"text": "/", "start": 135, "end": 136, "annotation": null}, {"text": "Al2O3", "start": 136, "end": 141, "annotation": null}, {"text": ")", "start": 141, "end": 142, "annotation": null}, {"text": "and", "start": 143, "end": 146, "annotation": null}, {"text": "epitaxial", "start": 147, "end": 156, "annotation": null}, {"text": "GaAs", "start": 157, "end": 161, "annotation": null}, {"text": "[epi-GaAs]", "start": 162, "end": 172, "annotation": null}, {"text": "grown", "start": 173, "end": 178, "annotation": null}, {"text": "on", "start": 179, "end": 181, "annotation": null}, {"text": "Ge(100)", "start": 182, "end": 189, "annotation": null}, {"text": "substrates", "start": 190, "end": 200, "annotation": null}, {"text": "have", "start": 201, "end": 205, "annotation": null}, {"text": "been", "start": 206, "end": 210, "annotation": null}, {"text": "investigated", "start": 211, "end": 223, "annotation": null}, {"text": ".", "start": 223, "end": 224, "annotation": null}], [{"text": "The", "start": 225, "end": 228, "annotation": null}, {"text": "epi-GaAs", "start": 229, "end": 237, "annotation": "BASEMAT"}, {"text": ",", "start": 237, "end": 238, "annotation": null}, {"text": "either", "start": 239, "end": 245, "annotation": null}, {"text": "undoped", "start": 246, "end": 253, "annotation": null}, {"text": "or", "start": 254, "end": 256, "annotation": null}, {"text": "Zn", "start": 257, "end": 259, "annotation": "DOPANT"}, {"text": "-", "start": 259, "end": 260, "annotation": null}, {"text": "doped", "start": 260, "end": 265, "annotation": null}, {"text": ",", "start": 265, "end": 266, "annotation": null}, {"text": "was", "start": 267, "end": 270, "annotation": null}, {"text": "grown", "start": 271, "end": 276, "annotation": null}, {"text": "using", "start": 277, "end": 282, "annotation": null}, {"text": "metal", "start": 283, "end": 288, "annotation": null}, {"text": "-", "start": 288, "end": 289, "annotation": null}, {"text": "organic", "start": 289, "end": 296, "annotation": null}, {"text": "chemical", "start": 297, "end": 305, "annotation": null}, {"text": "vapor", "start": 306, "end": 311, "annotation": null}, {"text": "deposition", "start": 312, "end": 322, "annotation": null}, {"text": "method", "start": 323, "end": 329, "annotation": null}, {"text": "at", "start": 330, "end": 332, "annotation": null}, {"text": "620", "start": 333, "end": 336, "annotation": null}, {"text": "\u00b0", "start": 336, "end": 337, "annotation": null}, {"text": "C", "start": 337, "end": 338, "annotation": null}, {"text": "to", "start": 339, "end": 341, "annotation": null}, {"text": "650", "start": 342, "end": 345, "annotation": null}, {"text": "\u00b0", "start": 345, "end": 346, "annotation": null}, {"text": "C", "start": 346, "end": 347, "annotation": null}, {"text": ".", "start": 347, "end": 348, "annotation": null}], [{"text": "The", "start": 349, "end": 352, "annotation": null}, {"text": "diffusion", "start": 353, "end": 362, "annotation": null}, {"text": "of", "start": 363, "end": 365, "annotation": null}, {"text": "Ge", "start": 366, "end": 368, "annotation": "DOPANT"}, {"text": "atoms", "start": 369, "end": 374, "annotation": null}, {"text": "into", "start": 375, "end": 379, "annotation": null}, {"text": "epi-GaAs", "start": 380, "end": 388, "annotation": "BASEMAT"}, {"text": "resulted", "start": 389, "end": 397, "annotation": null}, {"text": "in", "start": 398, "end": 400, "annotation": null}, {"text": "auto", "start": 401, "end": 405, "annotation": null}, {"text": "-", "start": 405, "end": 406, "annotation": null}, {"text": "doping", "start": 406, "end": 412, "annotation": null}, {"text": ",", "start": 412, "end": 413, "annotation": null}, {"text": "and", "start": 414, "end": 417, "annotation": null}, {"text": "therefore", "start": 418, "end": 427, "annotation": null}, {"text": ",", "start": 427, "end": 428, "annotation": null}, {"text": "an", "start": 429, "end": 431, "annotation": null}, {"text": "n-MOS", "start": 432, "end": 437, "annotation": null}, {"text": "behavior", "start": 438, "end": 446, "annotation": null}, {"text": "was", "start": 447, "end": 450, "annotation": null}, {"text": "observed", "start": 451, "end": 459, "annotation": null}, {"text": "for", "start": 460, "end": 463, "annotation": null}, {"text": "undoped", "start": 464, "end": 471, "annotation": null}, {"text": "and", "start": 472, "end": 475, "annotation": null}, {"text": "Zn", "start": 476, "end": 478, "annotation": "DOPANT"}, {"text": "-", "start": 478, "end": 479, "annotation": null}, {"text": "doped", "start": 479, "end": 484, "annotation": null}, {"text": "epi-GaAs", "start": 485, "end": 493, "annotation": "BASEMAT"}, {"text": "with", "start": 494, "end": 498, "annotation": null}, {"text": "the", "start": 499, "end": 502, "annotation": null}, {"text": "doping", "start": 503, "end": 509, "annotation": null}, {"text": "concentration", "start": 510, "end": 523, "annotation": null}, {"text": "up", "start": 524, "end": 526, "annotation": null}, {"text": "to", "start": 527, "end": 529, "annotation": null}, {"text": "approximately", "start": 530, "end": 543, "annotation": null}, {"text": "1017", "start": 544, "end": 548, "annotation": "DOPMODQ"}, {"text": "cm-3", "start": 549, "end": 553, "annotation": "DOPMODQ"}, {"text": ".", "start": 553, "end": 554, "annotation": null}], [{"text": "This", "start": 555, "end": 559, "annotation": null}, {"text": "is", "start": 560, "end": 562, "annotation": null}, {"text": "attributed", "start": 563, "end": 573, "annotation": null}, {"text": "to", "start": 574, "end": 576, "annotation": null}, {"text": "the", "start": 577, "end": 580, "annotation": null}, {"text": "diffusion", "start": 581, "end": 590, "annotation": null}, {"text": "of", "start": 591, "end": 593, "annotation": null}, {"text": "a", "start": 594, "end": 595, "annotation": null}, {"text": "significant", "start": 596, "end": 607, "annotation": null}, {"text": "amount", "start": 608, "end": 614, "annotation": null}, {"text": "of", "start": 615, "end": 617, "annotation": null}, {"text": "Ge", "start": 618, "end": 620, "annotation": null}, {"text": "atoms", "start": 621, "end": 626, "annotation": null}, {"text": "from", "start": 627, "end": 631, "annotation": null}, {"text": "the", "start": 632, "end": 635, "annotation": null}, {"text": "Ge", "start": 636, "end": 638, "annotation": null}, {"text": "substrate", "start": 639, "end": 648, "annotation": null}, {"text": "as", "start": 649, "end": 651, "annotation": null}, {"text": "confirmed", "start": 652, "end": 661, "annotation": null}, {"text": "by", "start": 662, "end": 664, "annotation": null}, {"text": "the", "start": 665, "end": 668, "annotation": null}, {"text": "simulation", "start": 669, "end": 679, "annotation": null}, {"text": "using", "start": 680, "end": 685, "annotation": null}, {"text": "SILVACO", "start": 686, "end": 693, "annotation": null}, {"text": "software", "start": 694, "end": 702, "annotation": null}, {"text": "and", "start": 703, "end": 706, "annotation": null}, {"text": "also", "start": 707, "end": 711, "annotation": null}, {"text": "from", "start": 712, "end": 716, "annotation": null}, {"text": "the", "start": 717, "end": 720, "annotation": null}, {"text": "secondary", "start": 721, "end": 730, "annotation": null}, {"text": "ion", "start": 731, "end": 734, "annotation": null}, {"text": "mass", "start": 735, "end": 739, "annotation": null}, {"text": "spectrometry", "start": 740, "end": 752, "annotation": null}, {"text": "analyses", "start": 753, "end": 761, "annotation": null}, {"text": ".", "start": 761, "end": 762, "annotation": null}], [{"text": "The", "start": 763, "end": 766, "annotation": null}, {"text": "Zn", "start": 767, "end": 769, "annotation": "DOPANT"}, {"text": "-", "start": 769, "end": 770, "annotation": null}, {"text": "doped", "start": 770, "end": 775, "annotation": null}, {"text": "epi-GaAs", "start": 776, "end": 784, "annotation": "BASEMAT"}, {"text": "with", "start": 785, "end": 789, "annotation": null}, {"text": "a", "start": 790, "end": 791, "annotation": null}, {"text": "doping", "start": 792, "end": 798, "annotation": null}, {"text": "concentration", "start": 799, "end": 812, "annotation": null}, {"text": "of", "start": 813, "end": 815, "annotation": null}, {"text": "approximately", "start": 816, "end": 829, "annotation": null}, {"text": "1018", "start": 830, "end": 834, "annotation": "DOPMODQ"}, {"text": "cm-3", "start": 835, "end": 839, "annotation": "DOPMODQ"}, {"text": "converts", "start": 840, "end": 848, "annotation": null}, {"text": "the", "start": 849, "end": 852, "annotation": null}, {"text": "epi-GaAs", "start": 853, "end": 861, "annotation": "BASEMAT"}, {"text": "layer", "start": 862, "end": 867, "annotation": null}, {"text": "into", "start": 868, "end": 872, "annotation": null}, {"text": "p", "start": 873, "end": 874, "annotation": null}, {"text": "-", "start": 874, "end": 875, "annotation": null}, {"text": "type", "start": 875, "end": 879, "annotation": null}, {"text": "since", "start": 880, "end": 885, "annotation": null}, {"text": "the", "start": 886, "end": 889, "annotation": null}, {"text": "Zn", "start": 890, "end": 892, "annotation": "DOPANT"}, {"text": "doping", "start": 893, "end": 899, "annotation": null}, {"text": "is", "start": 900, "end": 902, "annotation": null}, {"text": "relatively", "start": 903, "end": 913, "annotation": null}, {"text": "higher", "start": 914, "end": 920, "annotation": null}, {"text": "than", "start": 921, "end": 925, "annotation": null}, {"text": "the", "start": 926, "end": 929, "annotation": null}, {"text": "out", "start": 930, "end": 933, "annotation": null}, {"text": "-", "start": 933, "end": 934, "annotation": null}, {"text": "diffused", "start": 934, "end": 942, "annotation": null}, {"text": "Ge", "start": 943, "end": 945, "annotation": null}, {"text": "concentration", "start": 946, "end": 959, "annotation": null}, {"text": ".", "start": 959, "end": 960, "annotation": null}], [{"text": "The", "start": 961, "end": 964, "annotation": null}, {"text": "capacitance", "start": 965, "end": 976, "annotation": null}, {"text": "-", "start": 976, "end": 977, "annotation": null}, {"text": "voltage", "start": 977, "end": 984, "annotation": null}, {"text": "characteristics", "start": 985, "end": 1000, "annotation": null}, {"text": "show", "start": 1001, "end": 1005, "annotation": null}, {"text": "similar", "start": 1006, "end": 1013, "annotation": null}, {"text": "frequency", "start": 1014, "end": 1023, "annotation": null}, {"text": "dispersion", "start": 1024, "end": 1034, "annotation": null}, {"text": "and", "start": 1035, "end": 1038, "annotation": null}, {"text": "leakage", "start": 1039, "end": 1046, "annotation": null}, {"text": "current", "start": 1047, "end": 1054, "annotation": null}, {"text": "for", "start": 1055, "end": 1058, "annotation": null}, {"text": "n", "start": 1059, "end": 1060, "annotation": "DOPANT"}, {"text": "-", "start": 1060, "end": 1061, "annotation": "DOPANT"}, {"text": "type", "start": 1061, "end": 1065, "annotation": "DOPANT"}, {"text": "and", "start": 1066, "end": 1069, "annotation": null}, {"text": "p", "start": 1070, "end": 1071, "annotation": "DOPANT"}, {"text": "-", "start": 1071, "end": 1072, "annotation": "DOPANT"}, {"text": "type", "start": 1072, "end": 1076, "annotation": "DOPANT"}, {"text": "epi-GaAs", "start": 1077, "end": 1085, "annotation": "BASEMAT"}, {"text": "layers", "start": 1086, "end": 1092, "annotation": null}, {"text": "with", "start": 1093, "end": 1097, "annotation": null}, {"text": "very", "start": 1098, "end": 1102, "annotation": null}, {"text": "low", "start": 1103, "end": 1106, "annotation": null}, {"text": "hysteresis", "start": 1107, "end": 1117, "annotation": null}, {"text": "voltage", "start": 1118, "end": 1125, "annotation": null}, {"text": "(", "start": 1126, "end": 1127, "annotation": null}, {"text": "approximately", "start": 1127, "end": 1140, "annotation": null}, {"text": "10", "start": 1141, "end": 1143, "annotation": null}, {"text": "mV", "start": 1144, "end": 1146, "annotation": null}, {"text": ").", "start": 1146, "end": 1148, "annotation": null}, {"text": "PACS", "start": 1148, "end": 1152, "annotation": null}, {"text": ":", "start": 1152, "end": 1153, "annotation": null}, {"text": "81.15.Gh", "start": 1154, "end": 1162, "annotation": null}, {"text": ".", "start": 1162, "end": 1163, "annotation": null}]], "meta": {"doi": "10.1186/1556-276X-7-99"}} +{"remark": "doping_annt2", "text": "Hydrothermal techniques have been used to synthesize samples of ZnxFe3\u2212xO4 (x=0.0\u20131.0) starting with ZnSO4\u00b77H2O/FeSO4\u00b77H2O aqueous solution. The sequence of phases, structural and magnetic properties were followed by X-ray diffraction (XRD), M\u00f6ssbauer spectroscopy and transmission electron microscopy (TEM). Refinement of the XRD spectra yielded the dependence of the lattice parameters of zinc-doped magnetite and zinc ferrite phase as function of the Zn molar concentration x. As well, the particle diameter was derived and represented as a function of Zn content x. As a function of Zn concentration, the phase content of hydrothermally synthesized samples was found to consist of zinc-doped magnetite, goethite and zinc ferrite. Consistent with the XRD results, M\u00f6ssbauer spectroscopy data indicate the presence of magnetite and goethite at x\u22640.2, magnetite and zinc ferrite at x\u22640.9 and pure zinc ferrite only at high zinc concentrations. The presence of different magnetite phases was confirmed by TEM and particles with a size of 50nm were identified. Our results show that zinc ferrite is formed at high zinc concentration by the hydrothermal method and an acicular component of goethite\u2013magnetite is obtained at low zinc content.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Hydrothermal", "start": 0, "end": 12, "annotation": null}, {"text": "techniques", "start": 13, "end": 23, "annotation": null}, {"text": "have", "start": 24, "end": 28, "annotation": null}, {"text": "been", "start": 29, "end": 33, "annotation": null}, {"text": "used", "start": 34, "end": 38, "annotation": null}, {"text": "to", "start": 39, "end": 41, "annotation": null}, {"text": "synthesize", "start": 42, "end": 52, "annotation": null}, {"text": "samples", "start": 53, "end": 60, "annotation": null}, {"text": "of", "start": 61, "end": 63, "annotation": null}, {"text": "ZnxFe3\u2212xO4", "start": 64, "end": 74, "annotation": "BASEMAT"}, {"text": "(", "start": 75, "end": 76, "annotation": null}, {"text": "x", "start": 76, "end": 77, "annotation": "DOPMODQ"}, {"text": "=", "start": 77, "end": 78, "annotation": "DOPMODQ"}, {"text": "0.0", "start": 78, "end": 81, "annotation": "DOPMODQ"}, {"text": "\u2013", "start": 81, "end": 82, "annotation": "DOPMODQ"}, {"text": "1.0", "start": 82, "end": 85, "annotation": "DOPMODQ"}, {"text": ")", "start": 85, "end": 86, "annotation": null}, {"text": "starting", "start": 87, "end": 95, "annotation": null}, {"text": "with", "start": 96, "end": 100, "annotation": null}, {"text": "ZnSO4\u00b77H2O", "start": 101, "end": 111, "annotation": null}, {"text": "/", "start": 111, "end": 112, "annotation": null}, {"text": "FeSO4\u00b77H2O", "start": 112, "end": 122, "annotation": null}, {"text": "aqueous", "start": 123, "end": 130, "annotation": null}, {"text": "solution", "start": 131, "end": 139, "annotation": null}, {"text": ".", "start": 139, "end": 140, "annotation": null}], [{"text": "The", "start": 141, "end": 144, "annotation": null}, {"text": "sequence", "start": 145, "end": 153, "annotation": null}, {"text": "of", "start": 154, "end": 156, "annotation": null}, {"text": "phases", "start": 157, "end": 163, "annotation": null}, {"text": ",", "start": 163, "end": 164, "annotation": null}, {"text": "structural", "start": 165, "end": 175, "annotation": null}, {"text": "and", "start": 176, "end": 179, "annotation": null}, {"text": "magnetic", "start": 180, "end": 188, "annotation": null}, {"text": "properties", "start": 189, "end": 199, "annotation": null}, {"text": "were", "start": 200, "end": 204, "annotation": null}, {"text": "followed", "start": 205, "end": 213, "annotation": null}, {"text": "by", "start": 214, "end": 216, "annotation": null}, {"text": "X-ray", "start": 217, "end": 222, "annotation": null}, {"text": "diffraction", "start": 223, "end": 234, "annotation": null}, {"text": "(", "start": 235, "end": 236, "annotation": null}, {"text": "XRD", "start": 236, "end": 239, "annotation": null}, {"text": ")", "start": 239, "end": 240, "annotation": null}, {"text": ",", "start": 240, "end": 241, "annotation": null}, {"text": "M\u00f6ssbauer", "start": 242, "end": 251, "annotation": null}, {"text": "spectroscopy", "start": 252, "end": 264, "annotation": null}, {"text": "and", "start": 265, "end": 268, "annotation": null}, {"text": "transmission", "start": 269, "end": 281, "annotation": null}, {"text": "electron", "start": 282, "end": 290, "annotation": null}, {"text": "microscopy", "start": 291, "end": 301, "annotation": null}, {"text": "(", "start": 302, "end": 303, "annotation": null}, {"text": "TEM", "start": 303, "end": 306, "annotation": null}, {"text": ")", "start": 306, "end": 307, "annotation": null}, {"text": ".", "start": 307, "end": 308, "annotation": null}], [{"text": "Refinement", "start": 309, "end": 319, "annotation": null}, {"text": "of", "start": 320, "end": 322, "annotation": null}, {"text": "the", "start": 323, "end": 326, "annotation": null}, {"text": "XRD", "start": 327, "end": 330, "annotation": null}, {"text": "spectra", "start": 331, "end": 338, "annotation": null}, {"text": "yielded", "start": 339, "end": 346, "annotation": null}, {"text": "the", "start": 347, "end": 350, "annotation": null}, {"text": "dependence", "start": 351, "end": 361, "annotation": null}, {"text": "of", "start": 362, "end": 364, "annotation": null}, {"text": "the", "start": 365, "end": 368, "annotation": null}, {"text": "lattice", "start": 369, "end": 376, "annotation": null}, {"text": "parameters", "start": 377, "end": 387, "annotation": null}, {"text": "of", "start": 388, "end": 390, "annotation": null}, {"text": "zinc", "start": 391, "end": 395, "annotation": "DOPANT"}, {"text": "-", "start": 395, "end": 396, "annotation": null}, {"text": "doped", "start": 396, "end": 401, "annotation": null}, {"text": "magnetite", "start": 402, "end": 411, "annotation": "BASEMAT"}, {"text": "and", "start": 412, "end": 415, "annotation": null}, {"text": "zinc", "start": 416, "end": 420, "annotation": null}, {"text": "ferrite", "start": 421, "end": 428, "annotation": null}, {"text": "phase", "start": 429, "end": 434, "annotation": null}, {"text": "as", "start": 435, "end": 437, "annotation": null}, {"text": "function", "start": 438, "end": 446, "annotation": null}, {"text": "of", "start": 447, "end": 449, "annotation": null}, {"text": "the", "start": 450, "end": 453, "annotation": null}, {"text": "Zn", "start": 454, "end": 456, "annotation": "DOPANT"}, {"text": "molar", "start": 457, "end": 462, "annotation": null}, {"text": "concentration", "start": 463, "end": 476, "annotation": null}, {"text": "x", "start": 477, "end": 478, "annotation": null}, {"text": ".", "start": 478, "end": 479, "annotation": null}], [{"text": "As", "start": 480, "end": 482, "annotation": null}, {"text": "well", "start": 483, "end": 487, "annotation": null}, {"text": ",", "start": 487, "end": 488, "annotation": null}, {"text": "the", "start": 489, "end": 492, "annotation": null}, {"text": "particle", "start": 493, "end": 501, "annotation": null}, {"text": "diameter", "start": 502, "end": 510, "annotation": null}, {"text": "was", "start": 511, "end": 514, "annotation": null}, {"text": "derived", "start": 515, "end": 522, "annotation": null}, {"text": "and", "start": 523, "end": 526, "annotation": null}, {"text": "represented", "start": 527, "end": 538, "annotation": null}, {"text": "as", "start": 539, "end": 541, "annotation": null}, {"text": "a", "start": 542, "end": 543, "annotation": null}, {"text": "function", "start": 544, "end": 552, "annotation": null}, {"text": "of", "start": 553, "end": 555, "annotation": null}, {"text": "Zn", "start": 556, "end": 558, "annotation": "DOPANT"}, {"text": "content", "start": 559, "end": 566, "annotation": null}, {"text": "x", "start": 567, "end": 568, "annotation": null}, {"text": ".", "start": 568, "end": 569, "annotation": null}], [{"text": "As", "start": 570, "end": 572, "annotation": null}, {"text": "a", "start": 573, "end": 574, "annotation": null}, {"text": "function", "start": 575, "end": 583, "annotation": null}, {"text": "of", "start": 584, "end": 586, "annotation": null}, {"text": "Zn", "start": 587, "end": 589, "annotation": "DOPANT"}, {"text": "concentration", "start": 590, "end": 603, "annotation": null}, {"text": ",", "start": 603, "end": 604, "annotation": null}, {"text": "the", "start": 605, "end": 608, "annotation": null}, {"text": "phase", "start": 609, "end": 614, "annotation": null}, {"text": "content", "start": 615, "end": 622, "annotation": null}, {"text": "of", "start": 623, "end": 625, "annotation": null}, {"text": "hydrothermally", "start": 626, "end": 640, "annotation": null}, {"text": "synthesized", "start": 641, "end": 652, "annotation": null}, {"text": "samples", "start": 653, "end": 660, "annotation": null}, {"text": "was", "start": 661, "end": 664, "annotation": null}, {"text": "found", "start": 665, "end": 670, "annotation": null}, {"text": "to", "start": 671, "end": 673, "annotation": null}, {"text": "consist", "start": 674, "end": 681, "annotation": null}, {"text": "of", "start": 682, "end": 684, "annotation": null}, {"text": "zinc", "start": 685, "end": 689, "annotation": "DOPANT"}, {"text": "-", "start": 689, "end": 690, "annotation": null}, {"text": "doped", "start": 690, "end": 695, "annotation": null}, {"text": "magnetite", "start": 696, "end": 705, "annotation": "BASEMAT"}, {"text": ",", "start": 705, "end": 706, "annotation": null}, {"text": "goethite", "start": 707, "end": 715, "annotation": null}, {"text": "and", "start": 716, "end": 719, "annotation": null}, {"text": "zinc", "start": 720, "end": 724, "annotation": null}, {"text": "ferrite", "start": 725, "end": 732, "annotation": null}, {"text": ".", "start": 732, "end": 733, "annotation": null}], [{"text": "Consistent", "start": 734, "end": 744, "annotation": null}, {"text": "with", "start": 745, "end": 749, "annotation": null}, {"text": "the", "start": 750, "end": 753, "annotation": null}, {"text": "XRD", "start": 754, "end": 757, "annotation": null}, {"text": "results", "start": 758, "end": 765, "annotation": null}, {"text": ",", "start": 765, "end": 766, "annotation": null}, {"text": "M\u00f6ssbauer", "start": 767, "end": 776, "annotation": null}, {"text": "spectroscopy", "start": 777, "end": 789, "annotation": null}, {"text": "data", "start": 790, "end": 794, "annotation": null}, {"text": "indicate", "start": 795, "end": 803, "annotation": null}, {"text": "the", "start": 804, "end": 807, "annotation": null}, {"text": "presence", "start": 808, "end": 816, "annotation": null}, {"text": "of", "start": 817, "end": 819, "annotation": null}, {"text": "magnetite", "start": 820, "end": 829, "annotation": "BASEMAT"}, {"text": "and", "start": 830, "end": 833, "annotation": null}, {"text": "goethite", "start": 834, "end": 842, "annotation": "BASEMAT"}, {"text": "at", "start": 843, "end": 845, "annotation": null}, {"text": "x", "start": 846, "end": 847, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 847, "end": 848, "annotation": "DOPMODQ"}, {"text": "0.2", "start": 848, "end": 851, "annotation": "DOPMODQ"}, {"text": ",", "start": 851, "end": 852, "annotation": null}, {"text": "magnetite", "start": 853, "end": 862, "annotation": "BASEMAT"}, {"text": "and", "start": 863, "end": 866, "annotation": null}, {"text": "zinc", "start": 867, "end": 871, "annotation": null}, {"text": "ferrite", "start": 872, "end": 879, "annotation": null}, {"text": "at", "start": 880, "end": 882, "annotation": null}, {"text": "x", "start": 883, "end": 884, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 884, "end": 885, "annotation": "DOPMODQ"}, {"text": "0.9", "start": 885, "end": 888, "annotation": "DOPMODQ"}, {"text": "and", "start": 889, "end": 892, "annotation": null}, {"text": "pure", "start": 893, "end": 897, "annotation": null}, {"text": "zinc", "start": 898, "end": 902, "annotation": null}, {"text": "ferrite", "start": 903, "end": 910, "annotation": null}, {"text": "only", "start": 911, "end": 915, "annotation": null}, {"text": "at", "start": 916, "end": 918, "annotation": null}, {"text": "high", "start": 919, "end": 923, "annotation": null}, {"text": "zinc", "start": 924, "end": 928, "annotation": null}, {"text": "concentrations", "start": 929, "end": 943, "annotation": null}, {"text": ".", "start": 943, "end": 944, "annotation": null}], [{"text": "The", "start": 945, "end": 948, "annotation": null}, {"text": "presence", "start": 949, "end": 957, "annotation": null}, {"text": "of", "start": 958, "end": 960, "annotation": null}, {"text": "different", "start": 961, "end": 970, "annotation": null}, {"text": "magnetite", "start": 971, "end": 980, "annotation": "BASEMAT"}, {"text": "phases", "start": 981, "end": 987, "annotation": null}, {"text": "was", "start": 988, "end": 991, "annotation": null}, {"text": "confirmed", "start": 992, "end": 1001, "annotation": null}, {"text": "by", "start": 1002, "end": 1004, "annotation": null}, {"text": "TEM", "start": 1005, "end": 1008, "annotation": null}, {"text": "and", "start": 1009, "end": 1012, "annotation": null}, {"text": "particles", "start": 1013, "end": 1022, "annotation": null}, {"text": "with", "start": 1023, "end": 1027, "annotation": null}, {"text": "a", "start": 1028, "end": 1029, "annotation": null}, {"text": "size", "start": 1030, "end": 1034, "annotation": null}, {"text": "of", "start": 1035, "end": 1037, "annotation": null}, {"text": "50", "start": 1038, "end": 1040, "annotation": null}, {"text": "nm", "start": 1040, "end": 1042, "annotation": null}, {"text": "were", "start": 1043, "end": 1047, "annotation": null}, {"text": "identified", "start": 1048, "end": 1058, "annotation": null}, {"text": ".", "start": 1058, "end": 1059, "annotation": null}], [{"text": "Our", "start": 1060, "end": 1063, "annotation": null}, {"text": "results", "start": 1064, "end": 1071, "annotation": null}, {"text": "show", "start": 1072, "end": 1076, "annotation": null}, {"text": "that", "start": 1077, "end": 1081, "annotation": null}, {"text": "zinc", "start": 1082, "end": 1086, "annotation": null}, {"text": "ferrite", "start": 1087, "end": 1094, "annotation": null}, {"text": "is", "start": 1095, "end": 1097, "annotation": null}, {"text": "formed", "start": 1098, "end": 1104, "annotation": null}, {"text": "at", "start": 1105, "end": 1107, "annotation": null}, {"text": "high", "start": 1108, "end": 1112, "annotation": null}, {"text": "zinc", "start": 1113, "end": 1117, "annotation": "DOPANT"}, {"text": "concentration", "start": 1118, "end": 1131, "annotation": null}, {"text": "by", "start": 1132, "end": 1134, "annotation": null}, {"text": "the", "start": 1135, "end": 1138, "annotation": null}, {"text": "hydrothermal", "start": 1139, "end": 1151, "annotation": null}, {"text": "method", "start": 1152, "end": 1158, "annotation": null}, {"text": "and", "start": 1159, "end": 1162, "annotation": null}, {"text": "an", "start": 1163, "end": 1165, "annotation": null}, {"text": "acicular", "start": 1166, "end": 1174, "annotation": null}, {"text": "component", "start": 1175, "end": 1184, "annotation": null}, {"text": "of", "start": 1185, "end": 1187, "annotation": null}, {"text": "goethite", "start": 1188, "end": 1196, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 1196, "end": 1197, "annotation": null}, {"text": "magnetite", "start": 1197, "end": 1206, "annotation": "BASEMAT"}, {"text": "is", "start": 1207, "end": 1209, "annotation": null}, {"text": "obtained", "start": 1210, "end": 1218, "annotation": null}, {"text": "at", "start": 1219, "end": 1221, "annotation": null}, {"text": "low", "start": 1222, "end": 1225, "annotation": null}, {"text": "zinc", "start": 1226, "end": 1230, "annotation": "DOPANT"}, {"text": "content", "start": 1231, "end": 1238, "annotation": null}, {"text": ".", "start": 1238, "end": 1239, "annotation": null}]], "meta": {"doi": "10.1016/j.matchemphys.2007.06.001"}} {"text": "In this work, a simple and reliable electrochemical method for the determination of cadmium using an antimony film modified sodium montmorillonite (NaMM) doped carbon paste electrode (Sb/NaMM-CPE) was described. Due to the strong cation exchange ability and adsorptive characteristics of NaMM and excellent electroanalytical performance of the antimony film, the new electrode significantly enhanced the sensitivity for detection of Cd(II) and exhibited superior performance in comparison with the bare carbon paste electrode, antimony film modified carbon paste electrode (Sb/CPE), and NaMM modified carbon paste electrode (NaMM-CPE). Some parameters such as the composition of the paste, pH of the measure solution, the Sb(III) concentration, deposition time, and deposition potential that influenced the response of cadmium were investigated and the procedure was optimized for cadmium determination. This electrode, combined with square-wave anodic stripping voltammetry, displayed excellent linear behavior in the examined concentration range of 4.0\u2013150.0\u03bcgL\u22121 Cd(II) (R 2 =0.998) with a detection limit of 0.25\u03bcgL\u22121. The Sb/NaMM-CPE was successfully applied to the determination of cadmium ion in tap water sample.", "meta": {"doi": "10.1016/j.snb.2016.06.128"}, "_input_hash": -2082502833, "_task_hash": 1583168118, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "work", "start": 8, "end": 12, "id": 2, "annotation": null}, {"text": ",", "start": 13, "end": 14, "id": 3, "annotation": null}, {"text": "a", "start": 15, "end": 16, "id": 4, "annotation": null}, {"text": "simple", "start": 17, "end": 23, "id": 5, "annotation": null}, {"text": "and", "start": 24, "end": 27, "id": 6, "annotation": null}, {"text": "reliable", "start": 28, "end": 36, "id": 7, "annotation": null}, {"text": "electrochemical", "start": 37, "end": 52, "id": 8, "annotation": null}, {"text": "method", "start": 53, "end": 59, "id": 9, "annotation": null}, {"text": "for", "start": 60, "end": 63, "id": 10, "annotation": null}, {"text": "the", "start": 64, "end": 67, "id": 11, "annotation": null}, {"text": "determination", "start": 68, "end": 81, "id": 12, "annotation": null}, {"text": "of", "start": 82, "end": 84, "id": 13, "annotation": null}, {"text": "cadmium", "start": 85, "end": 92, "id": 14, "annotation": null}, {"text": "using", "start": 93, "end": 98, "id": 15, "annotation": null}, {"text": "an", "start": 99, "end": 101, "id": 16, "annotation": null}, {"text": "antimony", "start": 102, "end": 110, "id": 17, "annotation": null}, {"text": "film", "start": 111, "end": 115, "id": 18, "annotation": null}, {"text": "modified", "start": 116, "end": 124, "id": 19, "annotation": null}, {"text": "sodium", "start": 125, "end": 131, "id": 20, "annotation": "DOPANT"}, {"text": "montmorillonite", "start": 132, "end": 147, "id": 21, "annotation": "DOPANT"}, {"text": "(", "start": 148, "end": 149, "id": 22, "annotation": null}, {"text": "NaMM", "start": 150, "end": 154, "id": 23, "annotation": "DOPANT"}, {"text": ")", "start": 155, "end": 156, "id": 24, "annotation": null}, {"text": "doped", "start": 157, "end": 162, "id": 25, "annotation": null}, {"text": "carbon", "start": 163, "end": 169, "id": 26, "annotation": "BASEMAT"}, {"text": "paste", "start": 170, "end": 175, "id": 27, "annotation": null}, {"text": "electrode", "start": 176, "end": 185, "id": 28, "annotation": "BASEMAT"}, {"text": "(", "start": 186, "end": 187, "id": 29, "annotation": null}, {"text": "Sb", "start": 188, "end": 190, "id": 30, "annotation": null}, {"text": "/", "start": 191, "end": 192, "id": 31, "annotation": null}, {"text": "NaMM", "start": 193, "end": 197, "id": 32, "annotation": "DOPANT"}, {"text": "-", "start": 198, "end": 199, "id": 33, "annotation": null}, {"text": "CPE", "start": 200, "end": 203, "id": 34, "annotation": "BASEMAT"}, {"text": ")", "start": 204, "end": 205, "id": 35, "annotation": null}, {"text": "was", "start": 206, "end": 209, "id": 36, "annotation": null}, {"text": "described", "start": 210, "end": 219, "id": 37, "annotation": null}, {"text": ".", "start": 220, "end": 221, "id": 38, "annotation": null}], [{"text": "Due", "start": 222, "end": 225, "id": 39, "annotation": null}, {"text": "to", "start": 226, "end": 228, "id": 40, "annotation": null}, {"text": "the", "start": 229, "end": 232, "id": 41, "annotation": null}, {"text": "strong", "start": 233, "end": 239, "id": 42, "annotation": null}, {"text": "cation", "start": 240, "end": 246, "id": 43, "annotation": null}, {"text": "exchange", "start": 247, "end": 255, "id": 44, "annotation": null}, {"text": "ability", "start": 256, "end": 263, "id": 45, "annotation": null}, {"text": "and", "start": 264, "end": 267, "id": 46, "annotation": null}, {"text": "adsorptive", "start": 268, "end": 278, "id": 47, "annotation": null}, {"text": "characteristics", "start": 279, "end": 294, "id": 48, "annotation": null}, {"text": "of", "start": 295, "end": 297, "id": 49, "annotation": null}, {"text": "NaMM", "start": 298, "end": 302, "id": 50, "annotation": null}, {"text": "and", "start": 303, "end": 306, "id": 51, "annotation": null}, {"text": "excellent", "start": 307, "end": 316, "id": 52, "annotation": null}, {"text": "electroanalytical", "start": 317, "end": 334, "id": 53, "annotation": null}, {"text": "performance", "start": 335, "end": 346, "id": 54, "annotation": null}, {"text": "of", "start": 347, "end": 349, "id": 55, "annotation": null}, {"text": "the", "start": 350, "end": 353, "id": 56, "annotation": null}, {"text": "antimony", "start": 354, "end": 362, "id": 57, "annotation": null}, {"text": "film", "start": 363, "end": 367, "id": 58, "annotation": null}, {"text": ",", "start": 368, "end": 369, "id": 59, "annotation": null}, {"text": "the", "start": 370, "end": 373, "id": 60, "annotation": null}, {"text": "new", "start": 374, "end": 377, "id": 61, "annotation": null}, {"text": "electrode", "start": 378, "end": 387, "id": 62, "annotation": null}, {"text": "significantly", "start": 388, "end": 401, "id": 63, "annotation": null}, {"text": "enhanced", "start": 402, "end": 410, "id": 64, "annotation": null}, {"text": "the", "start": 411, "end": 414, "id": 65, "annotation": null}, {"text": "sensitivity", "start": 415, "end": 426, "id": 66, "annotation": null}, {"text": "for", "start": 427, "end": 430, "id": 67, "annotation": null}, {"text": "detection", "start": 431, "end": 440, "id": 68, "annotation": null}, {"text": "of", "start": 441, "end": 443, "id": 69, "annotation": null}, {"text": "Cd(II", "start": 444, "end": 449, "id": 70, "annotation": null}, {"text": ")", "start": 450, "end": 451, "id": 71, "annotation": null}, {"text": "and", "start": 452, "end": 455, "id": 72, "annotation": null}, {"text": "exhibited", "start": 456, "end": 465, "id": 73, "annotation": null}, {"text": "superior", "start": 466, "end": 474, "id": 74, "annotation": null}, {"text": "performance", "start": 475, "end": 486, "id": 75, "annotation": null}, {"text": "in", "start": 487, "end": 489, "id": 76, "annotation": null}, {"text": "comparison", "start": 490, "end": 500, "id": 77, "annotation": null}, {"text": "with", "start": 501, "end": 505, "id": 78, "annotation": null}, {"text": "the", "start": 506, "end": 509, "id": 79, "annotation": null}, {"text": "bare", "start": 510, "end": 514, "id": 80, "annotation": null}, {"text": "carbon", "start": 515, "end": 521, "id": 81, "annotation": null}, {"text": "paste", "start": 522, "end": 527, "id": 82, "annotation": null}, {"text": "electrode", "start": 528, "end": 537, "id": 83, "annotation": null}, {"text": ",", "start": 538, "end": 539, "id": 84, "annotation": null}, {"text": "antimony", "start": 540, "end": 548, "id": 85, "annotation": null}, {"text": "film", "start": 549, "end": 553, "id": 86, "annotation": null}, {"text": "modified", "start": 554, "end": 562, "id": 87, "annotation": null}, {"text": "carbon", "start": 563, "end": 569, "id": 88, "annotation": null}, {"text": "paste", "start": 570, "end": 575, "id": 89, "annotation": null}, {"text": "electrode", "start": 576, "end": 585, "id": 90, "annotation": null}, {"text": "(", "start": 586, "end": 587, "id": 91, "annotation": null}, {"text": "Sb", "start": 588, "end": 590, "id": 92, "annotation": null}, {"text": "/", "start": 591, "end": 592, "id": 93, "annotation": null}, {"text": "CPE", "start": 593, "end": 596, "id": 94, "annotation": null}, {"text": ")", "start": 597, "end": 598, "id": 95, "annotation": null}, {"text": ",", "start": 599, "end": 600, "id": 96, "annotation": null}, {"text": "and", "start": 601, "end": 604, "id": 97, "annotation": null}, {"text": "NaMM", "start": 605, "end": 609, "id": 98, "annotation": "DOPANT"}, {"text": "modified", "start": 610, "end": 618, "id": 99, "annotation": null}, {"text": "carbon", "start": 619, "end": 625, "id": 100, "annotation": "BASEMAT"}, {"text": "paste", "start": 626, "end": 631, "id": 101, "annotation": null}, {"text": "electrode", "start": 632, "end": 641, "id": 102, "annotation": "BASEMAT"}, {"text": "(", "start": 642, "end": 643, "id": 103, "annotation": null}, {"text": "NaMM", "start": 644, "end": 648, "id": 104, "annotation": "DOPANT"}, {"text": "-", "start": 649, "end": 650, "id": 105, "annotation": null}, {"text": "CPE", "start": 651, "end": 654, "id": 106, "annotation": "BASEMAT"}, {"text": ")", "start": 655, "end": 656, "id": 107, "annotation": null}, {"text": ".", "start": 657, "end": 658, "id": 108, "annotation": null}], [{"text": "Some", "start": 659, "end": 663, "id": 109, "annotation": null}, {"text": "parameters", "start": 664, "end": 674, "id": 110, "annotation": null}, {"text": "such", "start": 675, "end": 679, "id": 111, "annotation": null}, {"text": "as", "start": 680, "end": 682, "id": 112, "annotation": null}, {"text": "the", "start": 683, "end": 686, "id": 113, "annotation": null}, {"text": "composition", "start": 687, "end": 698, "id": 114, "annotation": null}, {"text": "of", "start": 699, "end": 701, "id": 115, "annotation": null}, {"text": "the", "start": 702, "end": 705, "id": 116, "annotation": null}, {"text": "paste", "start": 706, "end": 711, "id": 117, "annotation": null}, {"text": ",", "start": 712, "end": 713, "id": 118, "annotation": null}, {"text": "pH", "start": 714, "end": 716, "id": 119, "annotation": null}, {"text": "of", "start": 717, "end": 719, "id": 120, "annotation": null}, {"text": "the", "start": 720, "end": 723, "id": 121, "annotation": null}, {"text": "measure", "start": 724, "end": 731, "id": 122, "annotation": null}, {"text": "solution", "start": 732, "end": 740, "id": 123, "annotation": null}, {"text": ",", "start": 741, "end": 742, "id": 124, "annotation": null}, {"text": "the", "start": 743, "end": 746, "id": 125, "annotation": null}, {"text": "Sb(III", "start": 747, "end": 753, "id": 126, "annotation": null}, {"text": ")", "start": 754, "end": 755, "id": 127, "annotation": null}, {"text": "concentration", "start": 756, "end": 769, "id": 128, "annotation": null}, {"text": ",", "start": 770, "end": 771, "id": 129, "annotation": null}, {"text": "deposition", "start": 772, "end": 782, "id": 130, "annotation": null}, {"text": "time", "start": 783, "end": 787, "id": 131, "annotation": null}, {"text": ",", "start": 788, "end": 789, "id": 132, "annotation": null}, {"text": "and", "start": 790, "end": 793, "id": 133, "annotation": null}, {"text": "deposition", "start": 794, "end": 804, "id": 134, "annotation": null}, {"text": "potential", "start": 805, "end": 814, "id": 135, "annotation": null}, {"text": "that", "start": 815, "end": 819, "id": 136, "annotation": null}, {"text": "influenced", "start": 820, "end": 830, "id": 137, "annotation": null}, {"text": "the", "start": 831, "end": 834, "id": 138, "annotation": null}, {"text": "response", "start": 835, "end": 843, "id": 139, "annotation": null}, {"text": "of", "start": 844, "end": 846, "id": 140, "annotation": null}, {"text": "cadmium", "start": 847, "end": 854, "id": 141, "annotation": null}, {"text": "were", "start": 855, "end": 859, "id": 142, "annotation": null}, {"text": "investigated", "start": 860, "end": 872, "id": 143, "annotation": null}, {"text": "and", "start": 873, "end": 876, "id": 144, "annotation": null}, {"text": "the", "start": 877, "end": 880, "id": 145, "annotation": null}, {"text": "procedure", "start": 881, "end": 890, "id": 146, "annotation": null}, {"text": "was", "start": 891, "end": 894, "id": 147, "annotation": null}, {"text": "optimized", "start": 895, "end": 904, "id": 148, "annotation": null}, {"text": "for", "start": 905, "end": 908, "id": 149, "annotation": null}, {"text": "cadmium", "start": 909, "end": 916, "id": 150, "annotation": null}, {"text": "determination", "start": 917, "end": 930, "id": 151, "annotation": null}, {"text": ".", "start": 931, "end": 932, "id": 152, "annotation": null}], [{"text": "This", "start": 933, "end": 937, "id": 153, "annotation": null}, {"text": "electrode", "start": 938, "end": 947, "id": 154, "annotation": null}, {"text": ",", "start": 948, "end": 949, "id": 155, "annotation": null}, {"text": "combined", "start": 950, "end": 958, "id": 156, "annotation": null}, {"text": "with", "start": 959, "end": 963, "id": 157, "annotation": null}, {"text": "square", "start": 964, "end": 970, "id": 158, "annotation": null}, {"text": "-", "start": 971, "end": 972, "id": 159, "annotation": null}, {"text": "wave", "start": 973, "end": 977, "id": 160, "annotation": null}, {"text": "anodic", "start": 978, "end": 984, "id": 161, "annotation": null}, {"text": "stripping", "start": 985, "end": 994, "id": 162, "annotation": null}, {"text": "voltammetry", "start": 995, "end": 1006, "id": 163, "annotation": null}, {"text": ",", "start": 1007, "end": 1008, "id": 164, "annotation": null}, {"text": "displayed", "start": 1009, "end": 1018, "id": 165, "annotation": null}, {"text": "excellent", "start": 1019, "end": 1028, "id": 166, "annotation": null}, {"text": "linear", "start": 1029, "end": 1035, "id": 167, "annotation": null}, {"text": "behavior", "start": 1036, "end": 1044, "id": 168, "annotation": null}, {"text": "in", "start": 1045, "end": 1047, "id": 169, "annotation": null}, {"text": "the", "start": 1048, "end": 1051, "id": 170, "annotation": null}, {"text": "examined", "start": 1052, "end": 1060, "id": 171, "annotation": null}, {"text": "concentration", "start": 1061, "end": 1074, "id": 172, "annotation": null}, {"text": "range", "start": 1075, "end": 1080, "id": 173, "annotation": null}, {"text": "of", "start": 1081, "end": 1083, "id": 174, "annotation": null}, {"text": "4.0\u2013150.0\u03bcgL\u22121", "start": 1084, "end": 1098, "id": 175, "annotation": null}, {"text": "Cd(II", "start": 1099, "end": 1104, "id": 176, "annotation": null}, {"text": ")", "start": 1105, "end": 1106, "id": 177, "annotation": null}, {"text": "(", "start": 1107, "end": 1108, "id": 178, "annotation": null}, {"text": "R", "start": 1109, "end": 1110, "id": 179, "annotation": null}, {"text": "2", "start": 1111, "end": 1112, "id": 180, "annotation": null}, {"text": "=", "start": 1113, "end": 1114, "id": 181, "annotation": null}, {"text": "0.998", "start": 1115, "end": 1120, "id": 182, "annotation": null}, {"text": ")", "start": 1121, "end": 1122, "id": 183, "annotation": null}, {"text": "with", "start": 1123, "end": 1127, "id": 184, "annotation": null}, {"text": "a", "start": 1128, "end": 1129, "id": 185, "annotation": null}, {"text": "detection", "start": 1130, "end": 1139, "id": 186, "annotation": null}, {"text": "limit", "start": 1140, "end": 1145, "id": 187, "annotation": null}, {"text": "of", "start": 1146, "end": 1148, "id": 188, "annotation": null}, {"text": "0.25\u03bcgL\u22121", "start": 1149, "end": 1158, "id": 189, "annotation": null}, {"text": ".", "start": 1159, "end": 1160, "id": 190, "annotation": null}], [{"text": "The", "start": 1161, "end": 1164, "id": 191, "annotation": null}, {"text": "Sb", "start": 1165, "end": 1167, "id": 192, "annotation": null}, {"text": "/", "start": 1168, "end": 1169, "id": 193, "annotation": null}, {"text": "NaMM", "start": 1170, "end": 1174, "id": 194, "annotation": "DOPANT"}, {"text": "-", "start": 1175, "end": 1176, "id": 195, "annotation": null}, {"text": "CPE", "start": 1177, "end": 1180, "id": 196, "annotation": "BASEMAT"}, {"text": "was", "start": 1181, "end": 1184, "id": 197, "annotation": null}, {"text": "successfully", "start": 1185, "end": 1197, "id": 198, "annotation": null}, {"text": "applied", "start": 1198, "end": 1205, "id": 199, "annotation": null}, {"text": "to", "start": 1206, "end": 1208, "id": 200, "annotation": null}, {"text": "the", "start": 1209, "end": 1212, "id": 201, "annotation": null}, {"text": "determination", "start": 1213, "end": 1226, "id": 202, "annotation": null}, {"text": "of", "start": 1227, "end": 1229, "id": 203, "annotation": null}, {"text": "cadmium", "start": 1230, "end": 1237, "id": 204, "annotation": null}, {"text": "ion", "start": 1238, "end": 1241, "id": 205, "annotation": null}, {"text": "in", "start": 1242, "end": 1244, "id": 206, "annotation": null}, {"text": "tap", "start": 1245, "end": 1248, "id": 207, "annotation": null}, {"text": "water", "start": 1249, "end": 1254, "id": 208, "annotation": null}, {"text": "sample", "start": 1255, "end": 1261, "id": 209, "annotation": null}, {"text": ".", "start": 1262, "end": 1263, "id": 210, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Magnetotransport data of individual Sn doped In2O3 nanowires were investigated at low temperatures in order to study the characteristic dimensionality of the conduction process and the electron dephasing mechanisms. The magnetoconductance data obtained in these nanowires confirm the theoretical predictions of one-dimensional quantum interference with electron-electron interaction as the dominant scattering mechanism leading to the break of the observed quantum coherence effects.", "meta": {"doi": "10.1088/0022-3727/41/4/045106"}, "_input_hash": -729258161, "_task_hash": 280774288, "tokens": [[{"text": "Magnetotransport", "start": 0, "end": 16, "id": 0, "annotation": null}, {"text": "data", "start": 17, "end": 21, "id": 1, "annotation": null}, {"text": "of", "start": 22, "end": 24, "id": 2, "annotation": null}, {"text": "individual", "start": 25, "end": 35, "id": 3, "annotation": null}, {"text": "Sn", "start": 36, "end": 38, "id": 4, "annotation": "DOPANT"}, {"text": "doped", "start": 39, "end": 44, "id": 5, "annotation": null}, {"text": "In2O3", "start": 45, "end": 50, "id": 6, "annotation": "BASEMAT"}, {"text": "nanowires", "start": 51, "end": 60, "id": 7, "annotation": null}, {"text": "were", "start": 61, "end": 65, "id": 8, "annotation": null}, {"text": "investigated", "start": 66, "end": 78, "id": 9, "annotation": null}, {"text": "at", "start": 79, "end": 81, "id": 10, "annotation": null}, {"text": "low", "start": 82, "end": 85, "id": 11, "annotation": null}, {"text": "temperatures", "start": 86, "end": 98, "id": 12, "annotation": null}, {"text": "in", "start": 99, "end": 101, "id": 13, "annotation": null}, {"text": "order", "start": 102, "end": 107, "id": 14, "annotation": null}, {"text": "to", "start": 108, "end": 110, "id": 15, "annotation": null}, {"text": "study", "start": 111, "end": 116, "id": 16, "annotation": null}, {"text": "the", "start": 117, "end": 120, "id": 17, "annotation": null}, {"text": "characteristic", "start": 121, "end": 135, "id": 18, "annotation": null}, {"text": "dimensionality", "start": 136, "end": 150, "id": 19, "annotation": null}, {"text": "of", "start": 151, "end": 153, "id": 20, "annotation": null}, {"text": "the", "start": 154, "end": 157, "id": 21, "annotation": null}, {"text": "conduction", "start": 158, "end": 168, "id": 22, "annotation": null}, {"text": "process", "start": 169, "end": 176, "id": 23, "annotation": null}, {"text": "and", "start": 177, "end": 180, "id": 24, "annotation": null}, {"text": "the", "start": 181, "end": 184, "id": 25, "annotation": null}, {"text": "electron", "start": 185, "end": 193, "id": 26, "annotation": null}, {"text": "dephasing", "start": 194, "end": 203, "id": 27, "annotation": null}, {"text": "mechanisms", "start": 204, "end": 214, "id": 28, "annotation": null}, {"text": ".", "start": 215, "end": 216, "id": 29, "annotation": null}], [{"text": "The", "start": 217, "end": 220, "id": 30, "annotation": null}, {"text": "magnetoconductance", "start": 221, "end": 239, "id": 31, "annotation": null}, {"text": "data", "start": 240, "end": 244, "id": 32, "annotation": null}, {"text": "obtained", "start": 245, "end": 253, "id": 33, "annotation": null}, {"text": "in", "start": 254, "end": 256, "id": 34, "annotation": null}, {"text": "these", "start": 257, "end": 262, "id": 35, "annotation": null}, {"text": "nanowires", "start": 263, "end": 272, "id": 36, "annotation": null}, {"text": "confirm", "start": 273, "end": 280, "id": 37, "annotation": null}, {"text": "the", "start": 281, "end": 284, "id": 38, "annotation": null}, {"text": "theoretical", "start": 285, "end": 296, "id": 39, "annotation": null}, {"text": "predictions", "start": 297, "end": 308, "id": 40, "annotation": null}, {"text": "of", "start": 309, "end": 311, "id": 41, "annotation": null}, {"text": "one", "start": 312, "end": 315, "id": 42, "annotation": null}, {"text": "-", "start": 316, "end": 317, "id": 43, "annotation": null}, {"text": "dimensional", "start": 318, "end": 329, "id": 44, "annotation": null}, {"text": "quantum", "start": 330, "end": 337, "id": 45, "annotation": null}, {"text": "interference", "start": 338, "end": 350, "id": 46, "annotation": null}, {"text": "with", "start": 351, "end": 355, "id": 47, "annotation": null}, {"text": "electron", "start": 356, "end": 364, "id": 48, "annotation": null}, {"text": "-", "start": 365, "end": 366, "id": 49, "annotation": null}, {"text": "electron", "start": 367, "end": 375, "id": 50, "annotation": null}, {"text": "interaction", "start": 376, "end": 387, "id": 51, "annotation": null}, {"text": "as", "start": 388, "end": 390, "id": 52, "annotation": null}, {"text": "the", "start": 391, "end": 394, "id": 53, "annotation": null}, {"text": "dominant", "start": 395, "end": 403, "id": 54, "annotation": null}, {"text": "scattering", "start": 404, "end": 414, "id": 55, "annotation": null}, {"text": "mechanism", "start": 415, "end": 424, "id": 56, "annotation": null}, {"text": "leading", "start": 425, "end": 432, "id": 57, "annotation": null}, {"text": "to", "start": 433, "end": 435, "id": 58, "annotation": null}, {"text": "the", "start": 436, "end": 439, "id": 59, "annotation": null}, {"text": "break", "start": 440, "end": 445, "id": 60, "annotation": null}, {"text": "of", "start": 446, "end": 448, "id": 61, "annotation": null}, {"text": "the", "start": 449, "end": 452, "id": 62, "annotation": null}, {"text": "observed", "start": 453, "end": 461, "id": 63, "annotation": null}, {"text": "quantum", "start": 462, "end": 469, "id": 64, "annotation": null}, {"text": "coherence", "start": 470, "end": 479, "id": 65, "annotation": null}, {"text": "effects", "start": 480, "end": 487, "id": 66, "annotation": null}, {"text": ".", "start": 488, "end": 489, "id": 67, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "In this work, phosphorous-doped single-walled carbon nanotubes have been synthesized by the thermal decomposition of trimethylphosphine using a high-vacuum chemical vapor deposition method. Furthermore, a modified density-gradient-ultracentrifugation process has been applied to carefully purify our doped material. The combined use of Raman and X-ray photoelectron spectroscopy allowed us to provide the first insight into the bonding environment of P incorporated into the carbon lattice, avoiding competing signals arising from synthesis byproducts. This study represents the first step toward the identification of the bonding configuration of P atoms when direct substitution takes place.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "this", "start": 3, "end": 7, "annotation": null}, {"text": "work", "start": 8, "end": 12, "annotation": null}, {"text": ",", "start": 12, "end": 13, "annotation": null}, {"text": "phosphorous", "start": 14, "end": 25, "annotation": "DOPANT"}, {"text": "-", "start": 25, "end": 26, "annotation": null}, {"text": "doped", "start": 26, "end": 31, "annotation": null}, {"text": "single", "start": 32, "end": 38, "annotation": null}, {"text": "-", "start": 38, "end": 39, "annotation": null}, {"text": "walled", "start": 39, "end": 45, "annotation": null}, {"text": "carbon", "start": 46, "end": 52, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 53, "end": 62, "annotation": "BASEMAT"}, {"text": "have", "start": 63, "end": 67, "annotation": null}, {"text": "been", "start": 68, "end": 72, "annotation": null}, {"text": "synthesized", "start": 73, "end": 84, "annotation": null}, {"text": "by", "start": 85, "end": 87, "annotation": null}, {"text": "the", "start": 88, "end": 91, "annotation": null}, {"text": "thermal", "start": 92, "end": 99, "annotation": null}, {"text": "decomposition", "start": 100, "end": 113, "annotation": null}, {"text": "of", "start": 114, "end": 116, "annotation": null}, {"text": "trimethylphosphine", "start": 117, "end": 135, "annotation": null}, {"text": "using", "start": 136, "end": 141, "annotation": null}, {"text": "a", "start": 142, "end": 143, "annotation": null}, {"text": "high", "start": 144, "end": 148, "annotation": null}, {"text": "-", "start": 148, "end": 149, "annotation": null}, {"text": "vacuum", "start": 149, "end": 155, "annotation": null}, {"text": "chemical", "start": 156, "end": 164, "annotation": null}, {"text": "vapor", "start": 165, "end": 170, "annotation": null}, {"text": "deposition", "start": 171, "end": 181, "annotation": null}, {"text": "method", "start": 182, "end": 188, "annotation": null}, {"text": ".", "start": 188, "end": 189, "annotation": null}], [{"text": "Furthermore", "start": 190, "end": 201, "annotation": null}, {"text": ",", "start": 201, "end": 202, "annotation": null}, {"text": "a", "start": 203, "end": 204, "annotation": null}, {"text": "modified", "start": 205, "end": 213, "annotation": null}, {"text": "density-gradient-ultracentrifugation", "start": 214, "end": 250, "annotation": null}, {"text": "process", "start": 251, "end": 258, "annotation": null}, {"text": "has", "start": 259, "end": 262, "annotation": null}, {"text": "been", "start": 263, "end": 267, "annotation": null}, {"text": "applied", "start": 268, "end": 275, "annotation": null}, {"text": "to", "start": 276, "end": 278, "annotation": null}, {"text": "carefully", "start": 279, "end": 288, "annotation": null}, {"text": "purify", "start": 289, "end": 295, "annotation": null}, {"text": "our", "start": 296, "end": 299, "annotation": null}, {"text": "doped", "start": 300, "end": 305, "annotation": null}, {"text": "material", "start": 306, "end": 314, "annotation": null}, {"text": ".", "start": 314, "end": 315, "annotation": null}], [{"text": "The", "start": 316, "end": 319, "annotation": null}, {"text": "combined", "start": 320, "end": 328, "annotation": null}, {"text": "use", "start": 329, "end": 332, "annotation": null}, {"text": "of", "start": 333, "end": 335, "annotation": null}, {"text": "Raman", "start": 336, "end": 341, "annotation": null}, {"text": "and", "start": 342, "end": 345, "annotation": null}, {"text": "X-ray", "start": 346, "end": 351, "annotation": null}, {"text": "photoelectron", "start": 352, "end": 365, "annotation": null}, {"text": "spectroscopy", "start": 366, "end": 378, "annotation": null}, {"text": "allowed", "start": 379, "end": 386, "annotation": null}, {"text": "us", "start": 387, "end": 389, "annotation": null}, {"text": "to", "start": 390, "end": 392, "annotation": null}, {"text": "provide", "start": 393, "end": 400, "annotation": null}, {"text": "the", "start": 401, "end": 404, "annotation": null}, {"text": "first", "start": 405, "end": 410, "annotation": null}, {"text": "insight", "start": 411, "end": 418, "annotation": null}, {"text": "into", "start": 419, "end": 423, "annotation": null}, {"text": "the", "start": 424, "end": 427, "annotation": null}, {"text": "bonding", "start": 428, "end": 435, "annotation": null}, {"text": "environment", "start": 436, "end": 447, "annotation": null}, {"text": "of", "start": 448, "end": 450, "annotation": null}, {"text": "P", "start": 451, "end": 452, "annotation": null}, {"text": "incorporated", "start": 453, "end": 465, "annotation": null}, {"text": "into", "start": 466, "end": 470, "annotation": null}, {"text": "the", "start": 471, "end": 474, "annotation": null}, {"text": "carbon", "start": 475, "end": 481, "annotation": null}, {"text": "lattice", "start": 482, "end": 489, "annotation": null}, {"text": ",", "start": 489, "end": 490, "annotation": null}, {"text": "avoiding", "start": 491, "end": 499, "annotation": null}, {"text": "competing", "start": 500, "end": 509, "annotation": null}, {"text": "signals", "start": 510, "end": 517, "annotation": null}, {"text": "arising", "start": 518, "end": 525, "annotation": null}, {"text": "from", "start": 526, "end": 530, "annotation": null}, {"text": "synthesis", "start": 531, "end": 540, "annotation": null}, {"text": "byproducts", "start": 541, "end": 551, "annotation": null}, {"text": ".", "start": 551, "end": 552, "annotation": null}], [{"text": "This", "start": 553, "end": 557, "annotation": null}, {"text": "study", "start": 558, "end": 563, "annotation": null}, {"text": "represents", "start": 564, "end": 574, "annotation": null}, {"text": "the", "start": 575, "end": 578, "annotation": null}, {"text": "first", "start": 579, "end": 584, "annotation": null}, {"text": "step", "start": 585, "end": 589, "annotation": null}, {"text": "toward", "start": 590, "end": 596, "annotation": null}, {"text": "the", "start": 597, "end": 600, "annotation": null}, {"text": "identification", "start": 601, "end": 615, "annotation": null}, {"text": "of", "start": 616, "end": 618, "annotation": null}, {"text": "the", "start": 619, "end": 622, "annotation": null}, {"text": "bonding", "start": 623, "end": 630, "annotation": null}, {"text": "configuration", "start": 631, "end": 644, "annotation": null}, {"text": "of", "start": 645, "end": 647, "annotation": null}, {"text": "P", "start": 648, "end": 649, "annotation": null}, {"text": "atoms", "start": 650, "end": 655, "annotation": null}, {"text": "when", "start": 656, "end": 660, "annotation": null}, {"text": "direct", "start": 661, "end": 667, "annotation": null}, {"text": "substitution", "start": 668, "end": 680, "annotation": null}, {"text": "takes", "start": 681, "end": 686, "annotation": null}, {"text": "place", "start": 687, "end": 692, "annotation": null}, {"text": ".", "start": 692, "end": 693, "annotation": null}]]} -{"remark": "doping_annt1", "text": "\u00a9 2015, Springer Science+Business Media Dordrecht. A series of Ag-doped BiOI photocatalysts with different Ag contents was successfully synthesized by a hydrothermal method at 120\u00b0C for 24h. The as-synthesized products were characterized by X-ray diffraction, scanning electron microscopy, transmission electron microscopy, and photoluminescence (PL) spectroscopy. The photocatalytic activities of the undoped BiOI and Ag-doped BiOI products under UV visible and visible daylight were evaluated through the decolorization of methyl orange (MO) and methylene blue in aqueous solutions. In this research, 1.0mol% Ag-doped BiOI microflowers revealed the highest decolorization efficiency of 91.26% to degrade MO under visible daylight within 180min, controlled by the open surface area of the photocatalyst and illumination intensity.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 51, "end": 52, "annotation": null}, {"text": "series", "start": 53, "end": 59, "annotation": null}, {"text": "of", "start": 60, "end": 62, "annotation": null}, {"text": "Ag", "start": 63, "end": 65, "annotation": "DOPANT"}, {"text": "-", "start": 65, "end": 66, "annotation": null}, {"text": "doped", "start": 66, "end": 71, "annotation": null}, {"text": "BiOI", "start": 72, "end": 76, "annotation": "BASEMAT"}, {"text": "photocatalysts", "start": 77, "end": 91, "annotation": null}, {"text": "with", "start": 92, "end": 96, "annotation": null}, {"text": "different", "start": 97, "end": 106, "annotation": null}, {"text": "Ag", "start": 107, "end": 109, "annotation": "DOPANT"}, {"text": "contents", "start": 110, "end": 118, "annotation": null}, {"text": "was", "start": 119, "end": 122, "annotation": null}, {"text": "successfully", "start": 123, "end": 135, "annotation": null}, {"text": "synthesized", "start": 136, "end": 147, "annotation": null}, {"text": "by", "start": 148, "end": 150, "annotation": null}, {"text": "a", "start": 151, "end": 152, "annotation": null}, {"text": "hydrothermal", "start": 153, "end": 165, "annotation": null}, {"text": "method", "start": 166, "end": 172, "annotation": null}, {"text": "at", "start": 173, "end": 175, "annotation": null}, {"text": "120", "start": 176, "end": 179, "annotation": null}, {"text": "\u00b0", "start": 179, "end": 180, "annotation": null}, {"text": "C", "start": 180, "end": 181, "annotation": null}, {"text": "for", "start": 182, "end": 185, "annotation": null}, {"text": "24", "start": 186, "end": 188, "annotation": null}, {"text": "h", "start": 188, "end": 189, "annotation": null}, {"text": ".", "start": 189, "end": 190, "annotation": null}], [{"text": "The", "start": 191, "end": 194, "annotation": null}, {"text": "as-synthesized", "start": 195, "end": 209, "annotation": null}, {"text": "products", "start": 210, "end": 218, "annotation": null}, {"text": "were", "start": 219, "end": 223, "annotation": null}, {"text": "characterized", "start": 224, "end": 237, "annotation": null}, {"text": "by", "start": 238, "end": 240, "annotation": null}, {"text": "X-ray", "start": 241, "end": 246, "annotation": null}, {"text": "diffraction", "start": 247, "end": 258, "annotation": null}, {"text": ",", "start": 258, "end": 259, "annotation": null}, {"text": "scanning", "start": 260, "end": 268, "annotation": null}, {"text": "electron", "start": 269, "end": 277, "annotation": null}, {"text": "microscopy", "start": 278, "end": 288, "annotation": null}, {"text": ",", "start": 288, "end": 289, "annotation": null}, {"text": "transmission", "start": 290, "end": 302, "annotation": null}, {"text": "electron", "start": 303, "end": 311, "annotation": null}, {"text": "microscopy", "start": 312, "end": 322, "annotation": null}, {"text": ",", "start": 322, "end": 323, "annotation": null}, {"text": "and", "start": 324, "end": 327, "annotation": null}, {"text": "photoluminescence", "start": 328, "end": 345, "annotation": null}, {"text": "(", "start": 346, "end": 347, "annotation": null}, {"text": "PL", "start": 347, "end": 349, "annotation": null}, {"text": ")", "start": 349, "end": 350, "annotation": null}, {"text": "spectroscopy", "start": 351, "end": 363, "annotation": null}, {"text": ".", "start": 363, "end": 364, "annotation": null}], [{"text": "The", "start": 365, "end": 368, "annotation": null}, {"text": "photocatalytic", "start": 369, "end": 383, "annotation": null}, {"text": "activities", "start": 384, "end": 394, "annotation": null}, {"text": "of", "start": 395, "end": 397, "annotation": null}, {"text": "the", "start": 398, "end": 401, "annotation": null}, {"text": "undoped", "start": 402, "end": 409, "annotation": null}, {"text": "BiOI", "start": 410, "end": 414, "annotation": "BASEMAT"}, {"text": "and", "start": 415, "end": 418, "annotation": null}, {"text": "Ag", "start": 419, "end": 421, "annotation": "DOPANT"}, {"text": "-", "start": 421, "end": 422, "annotation": null}, {"text": "doped", "start": 422, "end": 427, "annotation": null}, {"text": "BiOI", "start": 428, "end": 432, "annotation": "BASEMAT"}, {"text": "products", "start": 433, "end": 441, "annotation": null}, {"text": "under", "start": 442, "end": 447, "annotation": null}, {"text": "UV", "start": 448, "end": 450, "annotation": null}, {"text": "visible", "start": 451, "end": 458, "annotation": null}, {"text": "and", "start": 459, "end": 462, "annotation": null}, {"text": "visible", "start": 463, "end": 470, "annotation": null}, {"text": "daylight", "start": 471, "end": 479, "annotation": null}, {"text": "were", "start": 480, "end": 484, "annotation": null}, {"text": "evaluated", "start": 485, "end": 494, "annotation": null}, {"text": "through", "start": 495, "end": 502, "annotation": null}, {"text": "the", "start": 503, "end": 506, "annotation": null}, {"text": "decolorization", "start": 507, "end": 521, "annotation": null}, {"text": "of", "start": 522, "end": 524, "annotation": null}, {"text": "methyl", "start": 525, "end": 531, "annotation": null}, {"text": "orange", "start": 532, "end": 538, "annotation": null}, {"text": "(", "start": 539, "end": 540, "annotation": null}, {"text": "MO", "start": 540, "end": 542, "annotation": null}, {"text": ")", "start": 542, "end": 543, "annotation": null}, {"text": "and", "start": 544, "end": 547, "annotation": null}, {"text": "methylene", "start": 548, "end": 557, "annotation": null}, {"text": "blue", "start": 558, "end": 562, "annotation": null}, {"text": "in", "start": 563, "end": 565, "annotation": null}, {"text": "aqueous", "start": 566, "end": 573, "annotation": null}, {"text": "solutions", "start": 574, "end": 583, "annotation": null}, {"text": ".", "start": 583, "end": 584, "annotation": null}], [{"text": "In", "start": 585, "end": 587, "annotation": null}, {"text": "this", "start": 588, "end": 592, "annotation": null}, {"text": "research", "start": 593, "end": 601, "annotation": null}, {"text": ",", "start": 601, "end": 602, "annotation": null}, {"text": "1.0", "start": 603, "end": 606, "annotation": "DOPMODQ"}, {"text": "mol", "start": 606, "end": 609, "annotation": "DOPMODQ"}, {"text": "%", "start": 609, "end": 610, "annotation": "DOPMODQ"}, {"text": "Ag", "start": 611, "end": 613, "annotation": "DOPANT"}, {"text": "-", "start": 613, "end": 614, "annotation": null}, {"text": "doped", "start": 614, "end": 619, "annotation": null}, {"text": "BiOI", "start": 620, "end": 624, "annotation": "BASEMAT"}, {"text": "microflowers", "start": 625, "end": 637, "annotation": null}, {"text": "revealed", "start": 638, "end": 646, "annotation": null}, {"text": "the", "start": 647, "end": 650, "annotation": null}, {"text": "highest", "start": 651, "end": 658, "annotation": null}, {"text": "decolorization", "start": 659, "end": 673, "annotation": null}, {"text": "efficiency", "start": 674, "end": 684, "annotation": null}, {"text": "of", "start": 685, "end": 687, "annotation": null}, {"text": "91.26", "start": 688, "end": 693, "annotation": null}, {"text": "%", "start": 693, "end": 694, "annotation": null}, {"text": "to", "start": 695, "end": 697, "annotation": null}, {"text": "degrade", "start": 698, "end": 705, "annotation": null}, {"text": "MO", "start": 706, "end": 708, "annotation": null}, {"text": "under", "start": 709, "end": 714, "annotation": null}, {"text": "visible", "start": 715, "end": 722, "annotation": null}, {"text": "daylight", "start": 723, "end": 731, "annotation": null}, {"text": "within", "start": 732, "end": 738, "annotation": null}, {"text": "180", "start": 739, "end": 742, "annotation": null}, {"text": "min", "start": 742, "end": 745, "annotation": null}, {"text": ",", "start": 745, "end": 746, "annotation": null}, {"text": "controlled", "start": 747, "end": 757, "annotation": null}, {"text": "by", "start": 758, "end": 760, "annotation": null}, {"text": "the", "start": 761, "end": 764, "annotation": null}, {"text": "open", "start": 765, "end": 769, "annotation": null}, {"text": "surface", "start": 770, "end": 777, "annotation": null}, {"text": "area", "start": 778, "end": 782, "annotation": null}, {"text": "of", "start": 783, "end": 785, "annotation": null}, {"text": "the", "start": 786, "end": 789, "annotation": null}, {"text": "photocatalyst", "start": 790, "end": 803, "annotation": null}, {"text": "and", "start": 804, "end": 807, "annotation": null}, {"text": "illumination", "start": 808, "end": 820, "annotation": null}, {"text": "intensity", "start": 821, "end": 830, "annotation": null}, {"text": ".", "start": 830, "end": 831, "annotation": null}]]} +{"remark": "doping_annt1", "text": "In this work, phosphorous-doped single-walled carbon nanotubes have been synthesized by the thermal decomposition of trimethylphosphine using a high-vacuum chemical vapor deposition method. Furthermore, a modified density-gradient-ultracentrifugation process has been applied to carefully purify our doped material. The combined use of Raman and X-ray photoelectron spectroscopy allowed us to provide the first insight into the bonding environment of P incorporated into the carbon lattice, avoiding competing signals arising from synthesis byproducts. This study represents the first step toward the identification of the bonding configuration of P atoms when direct substitution takes place.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "this", "start": 3, "end": 7, "annotation": null}, {"text": "work", "start": 8, "end": 12, "annotation": null}, {"text": ",", "start": 12, "end": 13, "annotation": null}, {"text": "phosphorous", "start": 14, "end": 25, "annotation": "DOPANT"}, {"text": "-", "start": 25, "end": 26, "annotation": null}, {"text": "doped", "start": 26, "end": 31, "annotation": null}, {"text": "single", "start": 32, "end": 38, "annotation": null}, {"text": "-", "start": 38, "end": 39, "annotation": null}, {"text": "walled", "start": 39, "end": 45, "annotation": null}, {"text": "carbon", "start": 46, "end": 52, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 53, "end": 62, "annotation": "BASEMAT"}, {"text": "have", "start": 63, "end": 67, "annotation": null}, {"text": "been", "start": 68, "end": 72, "annotation": null}, {"text": "synthesized", "start": 73, "end": 84, "annotation": null}, {"text": "by", "start": 85, "end": 87, "annotation": null}, {"text": "the", "start": 88, "end": 91, "annotation": null}, {"text": "thermal", "start": 92, "end": 99, "annotation": null}, {"text": "decomposition", "start": 100, "end": 113, "annotation": null}, {"text": "of", "start": 114, "end": 116, "annotation": null}, {"text": "trimethylphosphine", "start": 117, "end": 135, "annotation": null}, {"text": "using", "start": 136, "end": 141, "annotation": null}, {"text": "a", "start": 142, "end": 143, "annotation": null}, {"text": "high", "start": 144, "end": 148, "annotation": null}, {"text": "-", "start": 148, "end": 149, "annotation": null}, {"text": "vacuum", "start": 149, "end": 155, "annotation": null}, {"text": "chemical", "start": 156, "end": 164, "annotation": null}, {"text": "vapor", "start": 165, "end": 170, "annotation": null}, {"text": "deposition", "start": 171, "end": 181, "annotation": null}, {"text": "method", "start": 182, "end": 188, "annotation": null}, {"text": ".", "start": 188, "end": 189, "annotation": null}], [{"text": "Furthermore", "start": 190, "end": 201, "annotation": null}, {"text": ",", "start": 201, "end": 202, "annotation": null}, {"text": "a", "start": 203, "end": 204, "annotation": null}, {"text": "modified", "start": 205, "end": 213, "annotation": null}, {"text": "density-gradient-ultracentrifugation", "start": 214, "end": 250, "annotation": null}, {"text": "process", "start": 251, "end": 258, "annotation": null}, {"text": "has", "start": 259, "end": 262, "annotation": null}, {"text": "been", "start": 263, "end": 267, "annotation": null}, {"text": "applied", "start": 268, "end": 275, "annotation": null}, {"text": "to", "start": 276, "end": 278, "annotation": null}, {"text": "carefully", "start": 279, "end": 288, "annotation": null}, {"text": "purify", "start": 289, "end": 295, "annotation": null}, {"text": "our", "start": 296, "end": 299, "annotation": null}, {"text": "doped", "start": 300, "end": 305, "annotation": null}, {"text": "material", "start": 306, "end": 314, "annotation": null}, {"text": ".", "start": 314, "end": 315, "annotation": null}], [{"text": "The", "start": 316, "end": 319, "annotation": null}, {"text": "combined", "start": 320, "end": 328, "annotation": null}, {"text": "use", "start": 329, "end": 332, "annotation": null}, {"text": "of", "start": 333, "end": 335, "annotation": null}, {"text": "Raman", "start": 336, "end": 341, "annotation": null}, {"text": "and", "start": 342, "end": 345, "annotation": null}, {"text": "X-ray", "start": 346, "end": 351, "annotation": null}, {"text": "photoelectron", "start": 352, "end": 365, "annotation": null}, {"text": "spectroscopy", "start": 366, "end": 378, "annotation": null}, {"text": "allowed", "start": 379, "end": 386, "annotation": null}, {"text": "us", "start": 387, "end": 389, "annotation": null}, {"text": "to", "start": 390, "end": 392, "annotation": null}, {"text": "provide", "start": 393, "end": 400, "annotation": null}, {"text": "the", "start": 401, "end": 404, "annotation": null}, {"text": "first", "start": 405, "end": 410, "annotation": null}, {"text": "insight", "start": 411, "end": 418, "annotation": null}, {"text": "into", "start": 419, "end": 423, "annotation": null}, {"text": "the", "start": 424, "end": 427, "annotation": null}, {"text": "bonding", "start": 428, "end": 435, "annotation": null}, {"text": "environment", "start": 436, "end": 447, "annotation": null}, {"text": "of", "start": 448, "end": 450, "annotation": null}, {"text": "P", "start": 451, "end": 452, "annotation": null}, {"text": "incorporated", "start": 453, "end": 465, "annotation": null}, {"text": "into", "start": 466, "end": 470, "annotation": null}, {"text": "the", "start": 471, "end": 474, "annotation": null}, {"text": "carbon", "start": 475, "end": 481, "annotation": null}, {"text": "lattice", "start": 482, "end": 489, "annotation": null}, {"text": ",", "start": 489, "end": 490, "annotation": null}, {"text": "avoiding", "start": 491, "end": 499, "annotation": null}, {"text": "competing", "start": 500, "end": 509, "annotation": null}, {"text": "signals", "start": 510, "end": 517, "annotation": null}, {"text": "arising", "start": 518, "end": 525, "annotation": null}, {"text": "from", "start": 526, "end": 530, "annotation": null}, {"text": "synthesis", "start": 531, "end": 540, "annotation": null}, {"text": "byproducts", "start": 541, "end": 551, "annotation": null}, {"text": ".", "start": 551, "end": 552, "annotation": null}], [{"text": "This", "start": 553, "end": 557, "annotation": null}, {"text": "study", "start": 558, "end": 563, "annotation": null}, {"text": "represents", "start": 564, "end": 574, "annotation": null}, {"text": "the", "start": 575, "end": 578, "annotation": null}, {"text": "first", "start": 579, "end": 584, "annotation": null}, {"text": "step", "start": 585, "end": 589, "annotation": null}, {"text": "toward", "start": 590, "end": 596, "annotation": null}, {"text": "the", "start": 597, "end": 600, "annotation": null}, {"text": "identification", "start": 601, "end": 615, "annotation": null}, {"text": "of", "start": 616, "end": 618, "annotation": null}, {"text": "the", "start": 619, "end": 622, "annotation": null}, {"text": "bonding", "start": 623, "end": 630, "annotation": null}, {"text": "configuration", "start": 631, "end": 644, "annotation": null}, {"text": "of", "start": 645, "end": 647, "annotation": null}, {"text": "P", "start": 648, "end": 649, "annotation": null}, {"text": "atoms", "start": 650, "end": 655, "annotation": null}, {"text": "when", "start": 656, "end": 660, "annotation": null}, {"text": "direct", "start": 661, "end": 667, "annotation": null}, {"text": "substitution", "start": 668, "end": 680, "annotation": null}, {"text": "takes", "start": 681, "end": 686, "annotation": null}, {"text": "place", "start": 687, "end": 692, "annotation": null}, {"text": ".", "start": 692, "end": 693, "annotation": null}]], "meta": {"doi": "10.1016/j.carbon.2014.09.028"}} +{"remark": "doping_annt1", "text": "\u00a9 2015, Springer Science+Business Media Dordrecht. A series of Ag-doped BiOI photocatalysts with different Ag contents was successfully synthesized by a hydrothermal method at 120\u00b0C for 24h. The as-synthesized products were characterized by X-ray diffraction, scanning electron microscopy, transmission electron microscopy, and photoluminescence (PL) spectroscopy. The photocatalytic activities of the undoped BiOI and Ag-doped BiOI products under UV visible and visible daylight were evaluated through the decolorization of methyl orange (MO) and methylene blue in aqueous solutions. In this research, 1.0mol% Ag-doped BiOI microflowers revealed the highest decolorization efficiency of 91.26% to degrade MO under visible daylight within 180min, controlled by the open surface area of the photocatalyst and illumination intensity.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 51, "end": 52, "annotation": null}, {"text": "series", "start": 53, "end": 59, "annotation": null}, {"text": "of", "start": 60, "end": 62, "annotation": null}, {"text": "Ag", "start": 63, "end": 65, "annotation": "DOPANT"}, {"text": "-", "start": 65, "end": 66, "annotation": null}, {"text": "doped", "start": 66, "end": 71, "annotation": null}, {"text": "BiOI", "start": 72, "end": 76, "annotation": "BASEMAT"}, {"text": "photocatalysts", "start": 77, "end": 91, "annotation": null}, {"text": "with", "start": 92, "end": 96, "annotation": null}, {"text": "different", "start": 97, "end": 106, "annotation": null}, {"text": "Ag", "start": 107, "end": 109, "annotation": "DOPANT"}, {"text": "contents", "start": 110, "end": 118, "annotation": null}, {"text": "was", "start": 119, "end": 122, "annotation": null}, {"text": "successfully", "start": 123, "end": 135, "annotation": null}, {"text": "synthesized", "start": 136, "end": 147, "annotation": null}, {"text": "by", "start": 148, "end": 150, "annotation": null}, {"text": "a", "start": 151, "end": 152, "annotation": null}, {"text": "hydrothermal", "start": 153, "end": 165, "annotation": null}, {"text": "method", "start": 166, "end": 172, "annotation": null}, {"text": "at", "start": 173, "end": 175, "annotation": null}, {"text": "120", "start": 176, "end": 179, "annotation": null}, {"text": "\u00b0", "start": 179, "end": 180, "annotation": null}, {"text": "C", "start": 180, "end": 181, "annotation": null}, {"text": "for", "start": 182, "end": 185, "annotation": null}, {"text": "24", "start": 186, "end": 188, "annotation": null}, {"text": "h", "start": 188, "end": 189, "annotation": null}, {"text": ".", "start": 189, "end": 190, "annotation": null}], [{"text": "The", "start": 191, "end": 194, "annotation": null}, {"text": "as-synthesized", "start": 195, "end": 209, "annotation": null}, {"text": "products", "start": 210, "end": 218, "annotation": null}, {"text": "were", "start": 219, "end": 223, "annotation": null}, {"text": "characterized", "start": 224, "end": 237, "annotation": null}, {"text": "by", "start": 238, "end": 240, "annotation": null}, {"text": "X-ray", "start": 241, "end": 246, "annotation": null}, {"text": "diffraction", "start": 247, "end": 258, "annotation": null}, {"text": ",", "start": 258, "end": 259, "annotation": null}, {"text": "scanning", "start": 260, "end": 268, "annotation": null}, {"text": "electron", "start": 269, "end": 277, "annotation": null}, {"text": "microscopy", "start": 278, "end": 288, "annotation": null}, {"text": ",", "start": 288, "end": 289, "annotation": null}, {"text": "transmission", "start": 290, "end": 302, "annotation": null}, {"text": "electron", "start": 303, "end": 311, "annotation": null}, {"text": "microscopy", "start": 312, "end": 322, "annotation": null}, {"text": ",", "start": 322, "end": 323, "annotation": null}, {"text": "and", "start": 324, "end": 327, "annotation": null}, {"text": "photoluminescence", "start": 328, "end": 345, "annotation": null}, {"text": "(", "start": 346, "end": 347, "annotation": null}, {"text": "PL", "start": 347, "end": 349, "annotation": null}, {"text": ")", "start": 349, "end": 350, "annotation": null}, {"text": "spectroscopy", "start": 351, "end": 363, "annotation": null}, {"text": ".", "start": 363, "end": 364, "annotation": null}], [{"text": "The", "start": 365, "end": 368, "annotation": null}, {"text": "photocatalytic", "start": 369, "end": 383, "annotation": null}, {"text": "activities", "start": 384, "end": 394, "annotation": null}, {"text": "of", "start": 395, "end": 397, "annotation": null}, {"text": "the", "start": 398, "end": 401, "annotation": null}, {"text": "undoped", "start": 402, "end": 409, "annotation": null}, {"text": "BiOI", "start": 410, "end": 414, "annotation": "BASEMAT"}, {"text": "and", "start": 415, "end": 418, "annotation": null}, {"text": "Ag", "start": 419, "end": 421, "annotation": "DOPANT"}, {"text": "-", "start": 421, "end": 422, "annotation": null}, {"text": "doped", "start": 422, "end": 427, "annotation": null}, {"text": "BiOI", "start": 428, "end": 432, "annotation": "BASEMAT"}, {"text": "products", "start": 433, "end": 441, "annotation": null}, {"text": "under", "start": 442, "end": 447, "annotation": null}, {"text": "UV", "start": 448, "end": 450, "annotation": null}, {"text": "visible", "start": 451, "end": 458, "annotation": null}, {"text": "and", "start": 459, "end": 462, "annotation": null}, {"text": "visible", "start": 463, "end": 470, "annotation": null}, {"text": "daylight", "start": 471, "end": 479, "annotation": null}, {"text": "were", "start": 480, "end": 484, "annotation": null}, {"text": "evaluated", "start": 485, "end": 494, "annotation": null}, {"text": "through", "start": 495, "end": 502, "annotation": null}, {"text": "the", "start": 503, "end": 506, "annotation": null}, {"text": "decolorization", "start": 507, "end": 521, "annotation": null}, {"text": "of", "start": 522, "end": 524, "annotation": null}, {"text": "methyl", "start": 525, "end": 531, "annotation": null}, {"text": "orange", "start": 532, "end": 538, "annotation": null}, {"text": "(", "start": 539, "end": 540, "annotation": null}, {"text": "MO", "start": 540, "end": 542, "annotation": null}, {"text": ")", "start": 542, "end": 543, "annotation": null}, {"text": "and", "start": 544, "end": 547, "annotation": null}, {"text": "methylene", "start": 548, "end": 557, "annotation": null}, {"text": "blue", "start": 558, "end": 562, "annotation": null}, {"text": "in", "start": 563, "end": 565, "annotation": null}, {"text": "aqueous", "start": 566, "end": 573, "annotation": null}, {"text": "solutions", "start": 574, "end": 583, "annotation": null}, {"text": ".", "start": 583, "end": 584, "annotation": null}], [{"text": "In", "start": 585, "end": 587, "annotation": null}, {"text": "this", "start": 588, "end": 592, "annotation": null}, {"text": "research", "start": 593, "end": 601, "annotation": null}, {"text": ",", "start": 601, "end": 602, "annotation": null}, {"text": "1.0", "start": 603, "end": 606, "annotation": "DOPMODQ"}, {"text": "mol", "start": 606, "end": 609, "annotation": "DOPMODQ"}, {"text": "%", "start": 609, "end": 610, "annotation": "DOPMODQ"}, {"text": "Ag", "start": 611, "end": 613, "annotation": "DOPANT"}, {"text": "-", "start": 613, "end": 614, "annotation": null}, {"text": "doped", "start": 614, "end": 619, "annotation": null}, {"text": "BiOI", "start": 620, "end": 624, "annotation": "BASEMAT"}, {"text": "microflowers", "start": 625, "end": 637, "annotation": null}, {"text": "revealed", "start": 638, "end": 646, "annotation": null}, {"text": "the", "start": 647, "end": 650, "annotation": null}, {"text": "highest", "start": 651, "end": 658, "annotation": null}, {"text": "decolorization", "start": 659, "end": 673, "annotation": null}, {"text": "efficiency", "start": 674, "end": 684, "annotation": null}, {"text": "of", "start": 685, "end": 687, "annotation": null}, {"text": "91.26", "start": 688, "end": 693, "annotation": null}, {"text": "%", "start": 693, "end": 694, "annotation": null}, {"text": "to", "start": 695, "end": 697, "annotation": null}, {"text": "degrade", "start": 698, "end": 705, "annotation": null}, {"text": "MO", "start": 706, "end": 708, "annotation": null}, {"text": "under", "start": 709, "end": 714, "annotation": null}, {"text": "visible", "start": 715, "end": 722, "annotation": null}, {"text": "daylight", "start": 723, "end": 731, "annotation": null}, {"text": "within", "start": 732, "end": 738, "annotation": null}, {"text": "180", "start": 739, "end": 742, "annotation": null}, {"text": "min", "start": 742, "end": 745, "annotation": null}, {"text": ",", "start": 745, "end": 746, "annotation": null}, {"text": "controlled", "start": 747, "end": 757, "annotation": null}, {"text": "by", "start": 758, "end": 760, "annotation": null}, {"text": "the", "start": 761, "end": 764, "annotation": null}, {"text": "open", "start": 765, "end": 769, "annotation": null}, {"text": "surface", "start": 770, "end": 777, "annotation": null}, {"text": "area", "start": 778, "end": 782, "annotation": null}, {"text": "of", "start": 783, "end": 785, "annotation": null}, {"text": "the", "start": 786, "end": 789, "annotation": null}, {"text": "photocatalyst", "start": 790, "end": 803, "annotation": null}, {"text": "and", "start": 804, "end": 807, "annotation": null}, {"text": "illumination", "start": 808, "end": 820, "annotation": null}, {"text": "intensity", "start": 821, "end": 830, "annotation": null}, {"text": ".", "start": 830, "end": 831, "annotation": null}]], "meta": {"doi": "10.1007/s11164-015-2386-6"}} {"text": "The lithium-rich layered oxides offer higher capacity, but suffer from severe capacity fade and voltage decay. Aluminum doping can improve the stability of the structure, but the fundamental mechanism has not been fully revealed. In this work, cathode materials with different Al-doping contents are investigated. To characterize the structural evolutions upon cycling, ex situ XRD and ex situ TEM are performed. It is demonstrated that the voltage decay is attributed to the decrease of Rhombohedral phase, while capacity fade is possibly associated with the increase of surface impedance. Therefore, continuous voltage decay and capacity fade are observed for undoped Li-rich cathode. In comparison, the Al-doped cathodes have stable LiNi1/3Co1/3Mn1/3O2 and surface impedance, leading to superior capacity retention and a stable output voltage.", "meta": {"doi": "10.1007/s11581-016-1831-x"}, "_input_hash": -819525861, "_task_hash": 1102109839, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "lithium", "start": 4, "end": 11, "id": 1, "annotation": null}, {"text": "-", "start": 12, "end": 13, "id": 2, "annotation": null}, {"text": "rich", "start": 14, "end": 18, "id": 3, "annotation": null}, {"text": "layered", "start": 19, "end": 26, "id": 4, "annotation": null}, {"text": "oxides", "start": 27, "end": 33, "id": 5, "annotation": null}, {"text": "offer", "start": 34, "end": 39, "id": 6, "annotation": null}, {"text": "higher", "start": 40, "end": 46, "id": 7, "annotation": null}, {"text": "capacity", "start": 47, "end": 55, "id": 8, "annotation": null}, {"text": ",", "start": 56, "end": 57, "id": 9, "annotation": null}, {"text": "but", "start": 58, "end": 61, "id": 10, "annotation": null}, {"text": "suffer", "start": 62, "end": 68, "id": 11, "annotation": null}, {"text": "from", "start": 69, "end": 73, "id": 12, "annotation": null}, {"text": "severe", "start": 74, "end": 80, "id": 13, "annotation": null}, {"text": "capacity", "start": 81, "end": 89, "id": 14, "annotation": null}, {"text": "fade", "start": 90, "end": 94, "id": 15, "annotation": null}, {"text": "and", "start": 95, "end": 98, "id": 16, "annotation": null}, {"text": "voltage", "start": 99, "end": 106, "id": 17, "annotation": null}, {"text": "decay", "start": 107, "end": 112, "id": 18, "annotation": null}, {"text": ".", "start": 113, "end": 114, "id": 19, "annotation": null}], [{"text": "Aluminum", "start": 115, "end": 123, "id": 20, "annotation": "DOPANT"}, {"text": "doping", "start": 124, "end": 130, "id": 21, "annotation": null}, {"text": "can", "start": 131, "end": 134, "id": 22, "annotation": null}, {"text": "improve", "start": 135, "end": 142, "id": 23, "annotation": null}, {"text": "the", "start": 143, "end": 146, "id": 24, "annotation": null}, {"text": "stability", "start": 147, "end": 156, "id": 25, "annotation": null}, {"text": "of", "start": 157, "end": 159, "id": 26, "annotation": null}, {"text": "the", "start": 160, "end": 163, "id": 27, "annotation": "BASEMAT"}, {"text": "structure", "start": 164, "end": 173, "id": 28, "annotation": "BASEMAT"}, {"text": ",", "start": 174, "end": 175, "id": 29, "annotation": null}, {"text": "but", "start": 176, "end": 179, "id": 30, "annotation": null}, {"text": "the", "start": 180, "end": 183, "id": 31, "annotation": null}, {"text": "fundamental", "start": 184, "end": 195, "id": 32, "annotation": null}, {"text": "mechanism", "start": 196, "end": 205, "id": 33, "annotation": null}, {"text": "has", "start": 206, "end": 209, "id": 34, "annotation": null}, {"text": "not", "start": 210, "end": 213, "id": 35, "annotation": null}, {"text": "been", "start": 214, "end": 218, "id": 36, "annotation": null}, {"text": "fully", "start": 219, "end": 224, "id": 37, "annotation": null}, {"text": "revealed", "start": 225, "end": 233, "id": 38, "annotation": null}, {"text": ".", "start": 234, "end": 235, "id": 39, "annotation": null}], [{"text": "In", "start": 236, "end": 238, "id": 40, "annotation": null}, {"text": "this", "start": 239, "end": 243, "id": 41, "annotation": null}, {"text": "work", "start": 244, "end": 248, "id": 42, "annotation": null}, {"text": ",", "start": 249, "end": 250, "id": 43, "annotation": null}, {"text": "cathode", "start": 251, "end": 258, "id": 44, "annotation": "BASEMAT"}, {"text": "materials", "start": 259, "end": 268, "id": 45, "annotation": null}, {"text": "with", "start": 269, "end": 273, "id": 46, "annotation": null}, {"text": "different", "start": 274, "end": 283, "id": 47, "annotation": null}, {"text": "Al", "start": 284, "end": 286, "id": 48, "annotation": "DOPANT"}, {"text": "-", "start": 287, "end": 288, "id": 49, "annotation": null}, {"text": "doping", "start": 289, "end": 295, "id": 50, "annotation": null}, {"text": "contents", "start": 296, "end": 304, "id": 51, "annotation": null}, {"text": "are", "start": 305, "end": 308, "id": 52, "annotation": null}, {"text": "investigated", "start": 309, "end": 321, "id": 53, "annotation": null}, {"text": ".", "start": 322, "end": 323, "id": 54, "annotation": null}], [{"text": "To", "start": 324, "end": 326, "id": 55, "annotation": null}, {"text": "characterize", "start": 327, "end": 339, "id": 56, "annotation": null}, {"text": "the", "start": 340, "end": 343, "id": 57, "annotation": null}, {"text": "structural", "start": 344, "end": 354, "id": 58, "annotation": null}, {"text": "evolutions", "start": 355, "end": 365, "id": 59, "annotation": null}, {"text": "upon", "start": 366, "end": 370, "id": 60, "annotation": null}, {"text": "cycling", "start": 371, "end": 378, "id": 61, "annotation": null}, {"text": ",", "start": 379, "end": 380, "id": 62, "annotation": null}, {"text": "ex", "start": 381, "end": 383, "id": 63, "annotation": null}, {"text": "situ", "start": 384, "end": 388, "id": 64, "annotation": null}, {"text": "XRD", "start": 389, "end": 392, "id": 65, "annotation": null}, {"text": "and", "start": 393, "end": 396, "id": 66, "annotation": null}, {"text": "ex", "start": 397, "end": 399, "id": 67, "annotation": null}, {"text": "situ", "start": 400, "end": 404, "id": 68, "annotation": null}, {"text": "TEM", "start": 405, "end": 408, "id": 69, "annotation": null}, {"text": "are", "start": 409, "end": 412, "id": 70, "annotation": null}, {"text": "performed", "start": 413, "end": 422, "id": 71, "annotation": null}, {"text": ".", "start": 423, "end": 424, "id": 72, "annotation": null}], [{"text": "It", "start": 425, "end": 427, "id": 73, "annotation": null}, {"text": "is", "start": 428, "end": 430, "id": 74, "annotation": null}, {"text": "demonstrated", "start": 431, "end": 443, "id": 75, "annotation": null}, {"text": "that", "start": 444, "end": 448, "id": 76, "annotation": null}, {"text": "the", "start": 449, "end": 452, "id": 77, "annotation": null}, {"text": "voltage", "start": 453, "end": 460, "id": 78, "annotation": null}, {"text": "decay", "start": 461, "end": 466, "id": 79, "annotation": null}, {"text": "is", "start": 467, "end": 469, "id": 80, "annotation": null}, {"text": "attributed", "start": 470, "end": 480, "id": 81, "annotation": null}, {"text": "to", "start": 481, "end": 483, "id": 82, "annotation": null}, {"text": "the", "start": 484, "end": 487, "id": 83, "annotation": null}, {"text": "decrease", "start": 488, "end": 496, "id": 84, "annotation": null}, {"text": "of", "start": 497, "end": 499, "id": 85, "annotation": null}, {"text": "Rhombohedral", "start": 500, "end": 512, "id": 86, "annotation": null}, {"text": "phase", "start": 513, "end": 518, "id": 87, "annotation": null}, {"text": ",", "start": 519, "end": 520, "id": 88, "annotation": null}, {"text": "while", "start": 521, "end": 526, "id": 89, "annotation": null}, {"text": "capacity", "start": 527, "end": 535, "id": 90, "annotation": null}, {"text": "fade", "start": 536, "end": 540, "id": 91, "annotation": null}, {"text": "is", "start": 541, "end": 543, "id": 92, "annotation": null}, {"text": "possibly", "start": 544, "end": 552, "id": 93, "annotation": null}, {"text": "associated", "start": 553, "end": 563, "id": 94, "annotation": null}, {"text": "with", "start": 564, "end": 568, "id": 95, "annotation": null}, {"text": "the", "start": 569, "end": 572, "id": 96, "annotation": null}, {"text": "increase", "start": 573, "end": 581, "id": 97, "annotation": null}, {"text": "of", "start": 582, "end": 584, "id": 98, "annotation": null}, {"text": "surface", "start": 585, "end": 592, "id": 99, "annotation": null}, {"text": "impedance", "start": 593, "end": 602, "id": 100, "annotation": null}, {"text": ".", "start": 603, "end": 604, "id": 101, "annotation": null}], [{"text": "Therefore", "start": 605, "end": 614, "id": 102, "annotation": null}, {"text": ",", "start": 615, "end": 616, "id": 103, "annotation": null}, {"text": "continuous", "start": 617, "end": 627, "id": 104, "annotation": null}, {"text": "voltage", "start": 628, "end": 635, "id": 105, "annotation": null}, {"text": "decay", "start": 636, "end": 641, "id": 106, "annotation": null}, {"text": "and", "start": 642, "end": 645, "id": 107, "annotation": null}, {"text": "capacity", "start": 646, "end": 654, "id": 108, "annotation": null}, {"text": "fade", "start": 655, "end": 659, "id": 109, "annotation": null}, {"text": "are", "start": 660, "end": 663, "id": 110, "annotation": null}, {"text": "observed", "start": 664, "end": 672, "id": 111, "annotation": null}, {"text": "for", "start": 673, "end": 676, "id": 112, "annotation": null}, {"text": "undoped", "start": 677, "end": 684, "id": 113, "annotation": null}, {"text": "Li", "start": 685, "end": 687, "id": 114, "annotation": null}, {"text": "-", "start": 688, "end": 689, "id": 115, "annotation": null}, {"text": "rich", "start": 690, "end": 694, "id": 116, "annotation": null}, {"text": "cathode", "start": 695, "end": 702, "id": 117, "annotation": null}, {"text": ".", "start": 703, "end": 704, "id": 118, "annotation": null}], [{"text": "In", "start": 705, "end": 707, "id": 119, "annotation": null}, {"text": "comparison", "start": 708, "end": 718, "id": 120, "annotation": null}, {"text": ",", "start": 719, "end": 720, "id": 121, "annotation": null}, {"text": "the", "start": 721, "end": 724, "id": 122, "annotation": null}, {"text": "Al", "start": 725, "end": 727, "id": 123, "annotation": "DOPANT"}, {"text": "-", "start": 728, "end": 729, "id": 124, "annotation": null}, {"text": "doped", "start": 730, "end": 735, "id": 125, "annotation": null}, {"text": "cathodes", "start": 736, "end": 744, "id": 126, "annotation": "BASEMAT"}, {"text": "have", "start": 745, "end": 749, "id": 127, "annotation": null}, {"text": "stable", "start": 750, "end": 756, "id": 128, "annotation": null}, {"text": "LiNi1/3Co1/3Mn1/3O2", "start": 757, "end": 776, "id": 129, "annotation": null}, {"text": "and", "start": 777, "end": 780, "id": 130, "annotation": null}, {"text": "surface", "start": 781, "end": 788, "id": 131, "annotation": null}, {"text": "impedance", "start": 789, "end": 798, "id": 132, "annotation": null}, {"text": ",", "start": 799, "end": 800, "id": 133, "annotation": null}, {"text": "leading", "start": 801, "end": 808, "id": 134, "annotation": null}, {"text": "to", "start": 809, "end": 811, "id": 135, "annotation": null}, {"text": "superior", "start": 812, "end": 820, "id": 136, "annotation": null}, {"text": "capacity", "start": 821, "end": 829, "id": 137, "annotation": null}, {"text": "retention", "start": 830, "end": 839, "id": 138, "annotation": null}, {"text": "and", "start": 840, "end": 843, "id": 139, "annotation": null}, {"text": "a", "start": 844, "end": 845, "id": 140, "annotation": null}, {"text": "stable", "start": 846, "end": 852, "id": 141, "annotation": null}, {"text": "output", "start": 853, "end": 859, "id": 142, "annotation": null}, {"text": "voltage", "start": 860, "end": 867, "id": 143, "annotation": null}, {"text": ".", "start": 868, "end": 869, "id": 144, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "The molecular beam method is a versatile experimental technique which may be used to grow high quality single crystal thin films in the range from 100\u00c5 to several microns with precise control of uniformity and thickness. Films may be doped by an additional molecular beam containing the doping material simultaneously impinging on the substrate surface with the film molecular beams. Epitaxial GaAs thin films doped with silicon were grown by the molecular beam method in an ultrahigh vacuum system in which high energy electron diffraction and mass spectrometric measurements could be made during growth or by stopping growth momentarily. The crystallinity and beam intensity parameters of these films were thus studied during growth. The doping profiles and the amount of compensation were evaluated by the Schottky barrier diode method and the photo luminescence spectra.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "molecular", "start": 4, "end": 13, "annotation": null}, {"text": "beam", "start": 14, "end": 18, "annotation": null}, {"text": "method", "start": 19, "end": 25, "annotation": null}, {"text": "is", "start": 26, "end": 28, "annotation": null}, {"text": "a", "start": 29, "end": 30, "annotation": null}, {"text": "versatile", "start": 31, "end": 40, "annotation": null}, {"text": "experimental", "start": 41, "end": 53, "annotation": null}, {"text": "technique", "start": 54, "end": 63, "annotation": null}, {"text": "which", "start": 64, "end": 69, "annotation": null}, {"text": "may", "start": 70, "end": 73, "annotation": null}, {"text": "be", "start": 74, "end": 76, "annotation": null}, {"text": "used", "start": 77, "end": 81, "annotation": null}, {"text": "to", "start": 82, "end": 84, "annotation": null}, {"text": "grow", "start": 85, "end": 89, "annotation": null}, {"text": "high", "start": 90, "end": 94, "annotation": null}, {"text": "quality", "start": 95, "end": 102, "annotation": null}, {"text": "single", "start": 103, "end": 109, "annotation": null}, {"text": "crystal", "start": 110, "end": 117, "annotation": null}, {"text": "thin", "start": 118, "end": 122, "annotation": null}, {"text": "films", "start": 123, "end": 128, "annotation": null}, {"text": "in", "start": 129, "end": 131, "annotation": null}, {"text": "the", "start": 132, "end": 135, "annotation": null}, {"text": "range", "start": 136, "end": 141, "annotation": null}, {"text": "from", "start": 142, "end": 146, "annotation": null}, {"text": "100\u00c5", "start": 147, "end": 151, "annotation": null}, {"text": "to", "start": 152, "end": 154, "annotation": null}, {"text": "several", "start": 155, "end": 162, "annotation": null}, {"text": "microns", "start": 163, "end": 170, "annotation": null}, {"text": "with", "start": 171, "end": 175, "annotation": null}, {"text": "precise", "start": 176, "end": 183, "annotation": null}, {"text": "control", "start": 184, "end": 191, "annotation": null}, {"text": "of", "start": 192, "end": 194, "annotation": null}, {"text": "uniformity", "start": 195, "end": 205, "annotation": null}, {"text": "and", "start": 206, "end": 209, "annotation": null}, {"text": "thickness", "start": 210, "end": 219, "annotation": null}, {"text": ".", "start": 219, "end": 220, "annotation": null}], [{"text": "Films", "start": 221, "end": 226, "annotation": null}, {"text": "may", "start": 227, "end": 230, "annotation": null}, {"text": "be", "start": 231, "end": 233, "annotation": null}, {"text": "doped", "start": 234, "end": 239, "annotation": null}, {"text": "by", "start": 240, "end": 242, "annotation": null}, {"text": "an", "start": 243, "end": 245, "annotation": null}, {"text": "additional", "start": 246, "end": 256, "annotation": null}, {"text": "molecular", "start": 257, "end": 266, "annotation": null}, {"text": "beam", "start": 267, "end": 271, "annotation": null}, {"text": "containing", "start": 272, "end": 282, "annotation": null}, {"text": "the", "start": 283, "end": 286, "annotation": null}, {"text": "doping", "start": 287, "end": 293, "annotation": null}, {"text": "material", "start": 294, "end": 302, "annotation": null}, {"text": "simultaneously", "start": 303, "end": 317, "annotation": null}, {"text": "impinging", "start": 318, "end": 327, "annotation": null}, {"text": "on", "start": 328, "end": 330, "annotation": null}, {"text": "the", "start": 331, "end": 334, "annotation": null}, {"text": "substrate", "start": 335, "end": 344, "annotation": null}, {"text": "surface", "start": 345, "end": 352, "annotation": null}, {"text": "with", "start": 353, "end": 357, "annotation": null}, {"text": "the", "start": 358, "end": 361, "annotation": null}, {"text": "film", "start": 362, "end": 366, "annotation": null}, {"text": "molecular", "start": 367, "end": 376, "annotation": null}, {"text": "beams", "start": 377, "end": 382, "annotation": null}, {"text": ".", "start": 382, "end": 383, "annotation": null}], [{"text": "Epitaxial", "start": 384, "end": 393, "annotation": null}, {"text": "GaAs", "start": 394, "end": 398, "annotation": "BASEMAT"}, {"text": "thin", "start": 399, "end": 403, "annotation": "BASEMAT"}, {"text": "films", "start": 404, "end": 409, "annotation": "BASEMAT"}, {"text": "doped", "start": 410, "end": 415, "annotation": null}, {"text": "with", "start": 416, "end": 420, "annotation": null}, {"text": "silicon", "start": 421, "end": 428, "annotation": "DOPANT"}, {"text": "were", "start": 429, "end": 433, "annotation": null}, {"text": "grown", "start": 434, "end": 439, "annotation": null}, {"text": "by", "start": 440, "end": 442, "annotation": null}, {"text": "the", "start": 443, "end": 446, "annotation": null}, {"text": "molecular", "start": 447, "end": 456, "annotation": null}, {"text": "beam", "start": 457, "end": 461, "annotation": null}, {"text": "method", "start": 462, "end": 468, "annotation": null}, {"text": "in", "start": 469, "end": 471, "annotation": null}, {"text": "an", "start": 472, "end": 474, "annotation": null}, {"text": "ultrahigh", "start": 475, "end": 484, "annotation": null}, {"text": "vacuum", "start": 485, "end": 491, "annotation": null}, {"text": "system", "start": 492, "end": 498, "annotation": null}, {"text": "in", "start": 499, "end": 501, "annotation": null}, {"text": "which", "start": 502, "end": 507, "annotation": null}, {"text": "high", "start": 508, "end": 512, "annotation": null}, {"text": "energy", "start": 513, "end": 519, "annotation": null}, {"text": "electron", "start": 520, "end": 528, "annotation": null}, {"text": "diffraction", "start": 529, "end": 540, "annotation": null}, {"text": "and", "start": 541, "end": 544, "annotation": null}, {"text": "mass", "start": 545, "end": 549, "annotation": null}, {"text": "spectrometric", "start": 550, "end": 563, "annotation": null}, {"text": "measurements", "start": 564, "end": 576, "annotation": null}, {"text": "could", "start": 577, "end": 582, "annotation": null}, {"text": "be", "start": 583, "end": 585, "annotation": null}, {"text": "made", "start": 586, "end": 590, "annotation": null}, {"text": "during", "start": 591, "end": 597, "annotation": null}, {"text": "growth", "start": 598, "end": 604, "annotation": null}, {"text": "or", "start": 605, "end": 607, "annotation": null}, {"text": "by", "start": 608, "end": 610, "annotation": null}, {"text": "stopping", "start": 611, "end": 619, "annotation": null}, {"text": "growth", "start": 620, "end": 626, "annotation": null}, {"text": "momentarily", "start": 627, "end": 638, "annotation": null}, {"text": ".", "start": 638, "end": 639, "annotation": null}], [{"text": "The", "start": 640, "end": 643, "annotation": null}, {"text": "crystallinity", "start": 644, "end": 657, "annotation": null}, {"text": "and", "start": 658, "end": 661, "annotation": null}, {"text": "beam", "start": 662, "end": 666, "annotation": null}, {"text": "intensity", "start": 667, "end": 676, "annotation": null}, {"text": "parameters", "start": 677, "end": 687, "annotation": null}, {"text": "of", "start": 688, "end": 690, "annotation": null}, {"text": "these", "start": 691, "end": 696, "annotation": null}, {"text": "films", "start": 697, "end": 702, "annotation": null}, {"text": "were", "start": 703, "end": 707, "annotation": null}, {"text": "thus", "start": 708, "end": 712, "annotation": null}, {"text": "studied", "start": 713, "end": 720, "annotation": null}, {"text": "during", "start": 721, "end": 727, "annotation": null}, {"text": "growth", "start": 728, "end": 734, "annotation": null}, {"text": ".", "start": 734, "end": 735, "annotation": null}], [{"text": "The", "start": 736, "end": 739, "annotation": null}, {"text": "doping", "start": 740, "end": 746, "annotation": null}, {"text": "profiles", "start": 747, "end": 755, "annotation": null}, {"text": "and", "start": 756, "end": 759, "annotation": null}, {"text": "the", "start": 760, "end": 763, "annotation": null}, {"text": "amount", "start": 764, "end": 770, "annotation": null}, {"text": "of", "start": 771, "end": 773, "annotation": null}, {"text": "compensation", "start": 774, "end": 786, "annotation": null}, {"text": "were", "start": 787, "end": 791, "annotation": null}, {"text": "evaluated", "start": 792, "end": 801, "annotation": null}, {"text": "by", "start": 802, "end": 804, "annotation": null}, {"text": "the", "start": 805, "end": 808, "annotation": null}, {"text": "Schottky", "start": 809, "end": 817, "annotation": null}, {"text": "barrier", "start": 818, "end": 825, "annotation": null}, {"text": "diode", "start": 826, "end": 831, "annotation": null}, {"text": "method", "start": 832, "end": 838, "annotation": null}, {"text": "and", "start": 839, "end": 842, "annotation": null}, {"text": "the", "start": 843, "end": 846, "annotation": null}, {"text": "photo", "start": 847, "end": 852, "annotation": null}, {"text": "luminescence", "start": 853, "end": 865, "annotation": null}, {"text": "spectra", "start": 866, "end": 873, "annotation": null}, {"text": ".", "start": 873, "end": 874, "annotation": null}]]} +{"remark": "doping_annt3", "text": "The molecular beam method is a versatile experimental technique which may be used to grow high quality single crystal thin films in the range from 100\u00c5 to several microns with precise control of uniformity and thickness. Films may be doped by an additional molecular beam containing the doping material simultaneously impinging on the substrate surface with the film molecular beams. Epitaxial GaAs thin films doped with silicon were grown by the molecular beam method in an ultrahigh vacuum system in which high energy electron diffraction and mass spectrometric measurements could be made during growth or by stopping growth momentarily. The crystallinity and beam intensity parameters of these films were thus studied during growth. The doping profiles and the amount of compensation were evaluated by the Schottky barrier diode method and the photo luminescence spectra.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "molecular", "start": 4, "end": 13, "annotation": null}, {"text": "beam", "start": 14, "end": 18, "annotation": null}, {"text": "method", "start": 19, "end": 25, "annotation": null}, {"text": "is", "start": 26, "end": 28, "annotation": null}, {"text": "a", "start": 29, "end": 30, "annotation": null}, {"text": "versatile", "start": 31, "end": 40, "annotation": null}, {"text": "experimental", "start": 41, "end": 53, "annotation": null}, {"text": "technique", "start": 54, "end": 63, "annotation": null}, {"text": "which", "start": 64, "end": 69, "annotation": null}, {"text": "may", "start": 70, "end": 73, "annotation": null}, {"text": "be", "start": 74, "end": 76, "annotation": null}, {"text": "used", "start": 77, "end": 81, "annotation": null}, {"text": "to", "start": 82, "end": 84, "annotation": null}, {"text": "grow", "start": 85, "end": 89, "annotation": null}, {"text": "high", "start": 90, "end": 94, "annotation": null}, {"text": "quality", "start": 95, "end": 102, "annotation": null}, {"text": "single", "start": 103, "end": 109, "annotation": null}, {"text": "crystal", "start": 110, "end": 117, "annotation": null}, {"text": "thin", "start": 118, "end": 122, "annotation": null}, {"text": "films", "start": 123, "end": 128, "annotation": null}, {"text": "in", "start": 129, "end": 131, "annotation": null}, {"text": "the", "start": 132, "end": 135, "annotation": null}, {"text": "range", "start": 136, "end": 141, "annotation": null}, {"text": "from", "start": 142, "end": 146, "annotation": null}, {"text": "100\u00c5", "start": 147, "end": 151, "annotation": null}, {"text": "to", "start": 152, "end": 154, "annotation": null}, {"text": "several", "start": 155, "end": 162, "annotation": null}, {"text": "microns", "start": 163, "end": 170, "annotation": null}, {"text": "with", "start": 171, "end": 175, "annotation": null}, {"text": "precise", "start": 176, "end": 183, "annotation": null}, {"text": "control", "start": 184, "end": 191, "annotation": null}, {"text": "of", "start": 192, "end": 194, "annotation": null}, {"text": "uniformity", "start": 195, "end": 205, "annotation": null}, {"text": "and", "start": 206, "end": 209, "annotation": null}, {"text": "thickness", "start": 210, "end": 219, "annotation": null}, {"text": ".", "start": 219, "end": 220, "annotation": null}], [{"text": "Films", "start": 221, "end": 226, "annotation": null}, {"text": "may", "start": 227, "end": 230, "annotation": null}, {"text": "be", "start": 231, "end": 233, "annotation": null}, {"text": "doped", "start": 234, "end": 239, "annotation": null}, {"text": "by", "start": 240, "end": 242, "annotation": null}, {"text": "an", "start": 243, "end": 245, "annotation": null}, {"text": "additional", "start": 246, "end": 256, "annotation": null}, {"text": "molecular", "start": 257, "end": 266, "annotation": null}, {"text": "beam", "start": 267, "end": 271, "annotation": null}, {"text": "containing", "start": 272, "end": 282, "annotation": null}, {"text": "the", "start": 283, "end": 286, "annotation": null}, {"text": "doping", "start": 287, "end": 293, "annotation": null}, {"text": "material", "start": 294, "end": 302, "annotation": null}, {"text": "simultaneously", "start": 303, "end": 317, "annotation": null}, {"text": "impinging", "start": 318, "end": 327, "annotation": null}, {"text": "on", "start": 328, "end": 330, "annotation": null}, {"text": "the", "start": 331, "end": 334, "annotation": null}, {"text": "substrate", "start": 335, "end": 344, "annotation": null}, {"text": "surface", "start": 345, "end": 352, "annotation": null}, {"text": "with", "start": 353, "end": 357, "annotation": null}, {"text": "the", "start": 358, "end": 361, "annotation": null}, {"text": "film", "start": 362, "end": 366, "annotation": null}, {"text": "molecular", "start": 367, "end": 376, "annotation": null}, {"text": "beams", "start": 377, "end": 382, "annotation": null}, {"text": ".", "start": 382, "end": 383, "annotation": null}], [{"text": "Epitaxial", "start": 384, "end": 393, "annotation": null}, {"text": "GaAs", "start": 394, "end": 398, "annotation": "BASEMAT"}, {"text": "thin", "start": 399, "end": 403, "annotation": "BASEMAT"}, {"text": "films", "start": 404, "end": 409, "annotation": "BASEMAT"}, {"text": "doped", "start": 410, "end": 415, "annotation": null}, {"text": "with", "start": 416, "end": 420, "annotation": null}, {"text": "silicon", "start": 421, "end": 428, "annotation": "DOPANT"}, {"text": "were", "start": 429, "end": 433, "annotation": null}, {"text": "grown", "start": 434, "end": 439, "annotation": null}, {"text": "by", "start": 440, "end": 442, "annotation": null}, {"text": "the", "start": 443, "end": 446, "annotation": null}, {"text": "molecular", "start": 447, "end": 456, "annotation": null}, {"text": "beam", "start": 457, "end": 461, "annotation": null}, {"text": "method", "start": 462, "end": 468, "annotation": null}, {"text": "in", "start": 469, "end": 471, "annotation": null}, {"text": "an", "start": 472, "end": 474, "annotation": null}, {"text": "ultrahigh", "start": 475, "end": 484, "annotation": null}, {"text": "vacuum", "start": 485, "end": 491, "annotation": null}, {"text": "system", "start": 492, "end": 498, "annotation": null}, {"text": "in", "start": 499, "end": 501, "annotation": null}, {"text": "which", "start": 502, "end": 507, "annotation": null}, {"text": "high", "start": 508, "end": 512, "annotation": null}, {"text": "energy", "start": 513, "end": 519, "annotation": null}, {"text": "electron", "start": 520, "end": 528, "annotation": null}, {"text": "diffraction", "start": 529, "end": 540, "annotation": null}, {"text": "and", "start": 541, "end": 544, "annotation": null}, {"text": "mass", "start": 545, "end": 549, "annotation": null}, {"text": "spectrometric", "start": 550, "end": 563, "annotation": null}, {"text": "measurements", "start": 564, "end": 576, "annotation": null}, {"text": "could", "start": 577, "end": 582, "annotation": null}, {"text": "be", "start": 583, "end": 585, "annotation": null}, {"text": "made", "start": 586, "end": 590, "annotation": null}, {"text": "during", "start": 591, "end": 597, "annotation": null}, {"text": "growth", "start": 598, "end": 604, "annotation": null}, {"text": "or", "start": 605, "end": 607, "annotation": null}, {"text": "by", "start": 608, "end": 610, "annotation": null}, {"text": "stopping", "start": 611, "end": 619, "annotation": null}, {"text": "growth", "start": 620, "end": 626, "annotation": null}, {"text": "momentarily", "start": 627, "end": 638, "annotation": null}, {"text": ".", "start": 638, "end": 639, "annotation": null}], [{"text": "The", "start": 640, "end": 643, "annotation": null}, {"text": "crystallinity", "start": 644, "end": 657, "annotation": null}, {"text": "and", "start": 658, "end": 661, "annotation": null}, {"text": "beam", "start": 662, "end": 666, "annotation": null}, {"text": "intensity", "start": 667, "end": 676, "annotation": null}, {"text": "parameters", "start": 677, "end": 687, "annotation": null}, {"text": "of", "start": 688, "end": 690, "annotation": null}, {"text": "these", "start": 691, "end": 696, "annotation": null}, {"text": "films", "start": 697, "end": 702, "annotation": null}, {"text": "were", "start": 703, "end": 707, "annotation": null}, {"text": "thus", "start": 708, "end": 712, "annotation": null}, {"text": "studied", "start": 713, "end": 720, "annotation": null}, {"text": "during", "start": 721, "end": 727, "annotation": null}, {"text": "growth", "start": 728, "end": 734, "annotation": null}, {"text": ".", "start": 734, "end": 735, "annotation": null}], [{"text": "The", "start": 736, "end": 739, "annotation": null}, {"text": "doping", "start": 740, "end": 746, "annotation": null}, {"text": "profiles", "start": 747, "end": 755, "annotation": null}, {"text": "and", "start": 756, "end": 759, "annotation": null}, {"text": "the", "start": 760, "end": 763, "annotation": null}, {"text": "amount", "start": 764, "end": 770, "annotation": null}, {"text": "of", "start": 771, "end": 773, "annotation": null}, {"text": "compensation", "start": 774, "end": 786, "annotation": null}, {"text": "were", "start": 787, "end": 791, "annotation": null}, {"text": "evaluated", "start": 792, "end": 801, "annotation": null}, {"text": "by", "start": 802, "end": 804, "annotation": null}, {"text": "the", "start": 805, "end": 808, "annotation": null}, {"text": "Schottky", "start": 809, "end": 817, "annotation": null}, {"text": "barrier", "start": 818, "end": 825, "annotation": null}, {"text": "diode", "start": 826, "end": 831, "annotation": null}, {"text": "method", "start": 832, "end": 838, "annotation": null}, {"text": "and", "start": 839, "end": 842, "annotation": null}, {"text": "the", "start": 843, "end": 846, "annotation": null}, {"text": "photo", "start": 847, "end": 852, "annotation": null}, {"text": "luminescence", "start": 853, "end": 865, "annotation": null}, {"text": "spectra", "start": 866, "end": 873, "annotation": null}, {"text": ".", "start": 873, "end": 874, "annotation": null}]], "meta": {"doi": "10.1007/BF02662735"}} {"text": "Quantum confinement and coherence effects are considered the cause of many specific features for systems which are generally low dimensional, strongly disordered, and/or situated in the vicinity of the metal-insulator transition. Here, we report on the observation of anomalous resistance peak and specific heat peaks superimposed at the superconducting transition of heavily boron-doped polycrystalline bulk diamond, which is a three-dimensional system situated deep on the metallic side of the boron-doping-driven metal-insulator transition in diamond. The anomalous resistance peak and specific heat peaks are interpreted as a result of confinement and coherence effects in the presence of intrinsic and extrinsic granularity. Our data, obtained for superconducting diamond, provide a reference for understanding the superconductivity in other granular disordered systems. Furthermore, our study brings attention to the significant influence of granular disorder on the physical properties of boron-doped diamond, which is considered a promising candidate for electronics applications.", "meta": {"doi": "10.1103/PhysRevApplied.6.064011"}, "_input_hash": 2035540801, "_task_hash": -100896614, "tokens": [[{"text": "Quantum", "start": 35, "end": 42, "id": 6, "annotation": null}, {"text": "confinement", "start": 43, "end": 54, "id": 7, "annotation": null}, {"text": "and", "start": 55, "end": 58, "id": 8, "annotation": null}, {"text": "coherence", "start": 59, "end": 68, "id": 9, "annotation": null}, {"text": "effects", "start": 69, "end": 76, "id": 10, "annotation": null}, {"text": "are", "start": 77, "end": 80, "id": 11, "annotation": null}, {"text": "considered", "start": 81, "end": 91, "id": 12, "annotation": null}, {"text": "the", "start": 92, "end": 95, "id": 13, "annotation": null}, {"text": "cause", "start": 96, "end": 101, "id": 14, "annotation": null}, {"text": "of", "start": 102, "end": 104, "id": 15, "annotation": null}, {"text": "many", "start": 105, "end": 109, "id": 16, "annotation": null}, {"text": "specific", "start": 110, "end": 118, "id": 17, "annotation": null}, {"text": "features", "start": 119, "end": 127, "id": 18, "annotation": null}, {"text": "for", "start": 128, "end": 131, "id": 19, "annotation": null}, {"text": "systems", "start": 132, "end": 139, "id": 20, "annotation": null}, {"text": "which", "start": 140, "end": 145, "id": 21, "annotation": null}, {"text": "are", "start": 146, "end": 149, "id": 22, "annotation": null}, {"text": "generally", "start": 150, "end": 159, "id": 23, "annotation": null}, {"text": "low", "start": 160, "end": 163, "id": 24, "annotation": null}, {"text": "dimensional", "start": 164, "end": 175, "id": 25, "annotation": null}, {"text": ",", "start": 176, "end": 177, "id": 26, "annotation": null}, {"text": "strongly", "start": 178, "end": 186, "id": 27, "annotation": null}, {"text": "disordered", "start": 187, "end": 197, "id": 28, "annotation": null}, {"text": ",", "start": 198, "end": 199, "id": 29, "annotation": null}, {"text": "and/or", "start": 200, "end": 206, "id": 30, "annotation": null}, {"text": "situated", "start": 207, "end": 215, "id": 31, "annotation": null}, {"text": "in", "start": 216, "end": 218, "id": 32, "annotation": null}, {"text": "the", "start": 219, "end": 222, "id": 33, "annotation": null}, {"text": "vicinity", "start": 223, "end": 231, "id": 34, "annotation": null}, {"text": "of", "start": 232, "end": 234, "id": 35, "annotation": null}, {"text": "the", "start": 235, "end": 238, "id": 36, "annotation": null}, {"text": "metal", "start": 239, "end": 244, "id": 37, "annotation": null}, {"text": "-", "start": 245, "end": 246, "id": 38, "annotation": null}, {"text": "insulator", "start": 247, "end": 256, "id": 39, "annotation": null}, {"text": "transition", "start": 257, "end": 267, "id": 40, "annotation": null}, {"text": ".", "start": 268, "end": 269, "id": 41, "annotation": null}], [{"text": "Here", "start": 270, "end": 274, "id": 42, "annotation": null}, {"text": ",", "start": 275, "end": 276, "id": 43, "annotation": null}, {"text": "we", "start": 277, "end": 279, "id": 44, "annotation": null}, {"text": "report", "start": 280, "end": 286, "id": 45, "annotation": null}, {"text": "on", "start": 287, "end": 289, "id": 46, "annotation": null}, {"text": "the", "start": 290, "end": 293, "id": 47, "annotation": null}, {"text": "observation", "start": 294, "end": 305, "id": 48, "annotation": null}, {"text": "of", "start": 306, "end": 308, "id": 49, "annotation": null}, {"text": "anomalous", "start": 309, "end": 318, "id": 50, "annotation": null}, {"text": "resistance", "start": 319, "end": 329, "id": 51, "annotation": null}, {"text": "peak", "start": 330, "end": 334, "id": 52, "annotation": null}, {"text": "and", "start": 335, "end": 338, "id": 53, "annotation": null}, {"text": "specific", "start": 339, "end": 347, "id": 54, "annotation": null}, {"text": "heat", "start": 348, "end": 352, "id": 55, "annotation": null}, {"text": "peaks", "start": 353, "end": 358, "id": 56, "annotation": null}, {"text": "superimposed", "start": 359, "end": 371, "id": 57, "annotation": null}, {"text": "at", "start": 372, "end": 374, "id": 58, "annotation": null}, {"text": "the", "start": 375, "end": 378, "id": 59, "annotation": null}, {"text": "superconducting", "start": 379, "end": 394, "id": 60, "annotation": null}, {"text": "transition", "start": 395, "end": 405, "id": 61, "annotation": null}, {"text": "of", "start": 406, "end": 408, "id": 62, "annotation": null}, {"text": "heavily", "start": 409, "end": 416, "id": 63, "annotation": null}, {"text": "boron", "start": 417, "end": 422, "id": 64, "annotation": "DOPANT"}, {"text": "-", "start": 423, "end": 424, "id": 65, "annotation": null}, {"text": "doped", "start": 425, "end": 430, "id": 66, "annotation": null}, {"text": "polycrystalline", "start": 431, "end": 446, "id": 67, "annotation": null}, {"text": "bulk", "start": 447, "end": 451, "id": 68, "annotation": null}, {"text": "diamond", "start": 452, "end": 459, "id": 69, "annotation": "BASEMAT"}, {"text": ",", "start": 460, "end": 461, "id": 70, "annotation": null}, {"text": "which", "start": 462, "end": 467, "id": 71, "annotation": null}, {"text": "is", "start": 468, "end": 470, "id": 72, "annotation": null}, {"text": "a", "start": 471, "end": 472, "id": 73, "annotation": null}, {"text": "three", "start": 473, "end": 478, "id": 74, "annotation": null}, {"text": "-", "start": 479, "end": 480, "id": 75, "annotation": null}, {"text": "dimensional", "start": 481, "end": 492, "id": 76, "annotation": null}, {"text": "system", "start": 493, "end": 499, "id": 77, "annotation": null}, {"text": "situated", "start": 500, "end": 508, "id": 78, "annotation": null}, {"text": "deep", "start": 509, "end": 513, "id": 79, "annotation": null}, {"text": "on", "start": 514, "end": 516, "id": 80, "annotation": null}, {"text": "the", "start": 517, "end": 520, "id": 81, "annotation": null}, {"text": "metallic", "start": 521, "end": 529, "id": 82, "annotation": null}, {"text": "side", "start": 530, "end": 534, "id": 83, "annotation": null}, {"text": "of", "start": 535, "end": 537, "id": 84, "annotation": null}, {"text": "the", "start": 538, "end": 541, "id": 85, "annotation": null}, {"text": "boron", "start": 542, "end": 547, "id": 86, "annotation": "DOPANT"}, {"text": "-", "start": 548, "end": 549, "id": 87, "annotation": null}, {"text": "doping", "start": 550, "end": 556, "id": 88, "annotation": null}, {"text": "-", "start": 557, "end": 558, "id": 89, "annotation": null}, {"text": "driven", "start": 559, "end": 565, "id": 90, "annotation": null}, {"text": "metal", "start": 566, "end": 571, "id": 91, "annotation": null}, {"text": "-", "start": 572, "end": 573, "id": 92, "annotation": null}, {"text": "insulator", "start": 574, "end": 583, "id": 93, "annotation": null}, {"text": "transition", "start": 584, "end": 594, "id": 94, "annotation": null}, {"text": "in", "start": 595, "end": 597, "id": 95, "annotation": null}, {"text": "diamond", "start": 598, "end": 605, "id": 96, "annotation": "BASEMAT"}, {"text": ".", "start": 606, "end": 607, "id": 97, "annotation": null}], [{"text": "The", "start": 608, "end": 611, "id": 98, "annotation": null}, {"text": "anomalous", "start": 612, "end": 621, "id": 99, "annotation": null}, {"text": "resistance", "start": 622, "end": 632, "id": 100, "annotation": null}, {"text": "peak", "start": 633, "end": 637, "id": 101, "annotation": null}, {"text": "and", "start": 638, "end": 641, "id": 102, "annotation": null}, {"text": "specific", "start": 642, "end": 650, "id": 103, "annotation": null}, {"text": "heat", "start": 651, "end": 655, "id": 104, "annotation": null}, {"text": "peaks", "start": 656, "end": 661, "id": 105, "annotation": null}, {"text": "are", "start": 662, "end": 665, "id": 106, "annotation": null}, {"text": "interpreted", "start": 666, "end": 677, "id": 107, "annotation": null}, {"text": "as", "start": 678, "end": 680, "id": 108, "annotation": null}, {"text": "a", "start": 681, "end": 682, "id": 109, "annotation": null}, {"text": "result", "start": 683, "end": 689, "id": 110, "annotation": null}, {"text": "of", "start": 690, "end": 692, "id": 111, "annotation": null}, {"text": "confinement", "start": 693, "end": 704, "id": 112, "annotation": null}, {"text": "and", "start": 705, "end": 708, "id": 113, "annotation": null}, {"text": "coherence", "start": 709, "end": 718, "id": 114, "annotation": null}, {"text": "effects", "start": 719, "end": 726, "id": 115, "annotation": null}, {"text": "in", "start": 727, "end": 729, "id": 116, "annotation": null}, {"text": "the", "start": 730, "end": 733, "id": 117, "annotation": null}, {"text": "presence", "start": 734, "end": 742, "id": 118, "annotation": null}, {"text": "of", "start": 743, "end": 745, "id": 119, "annotation": null}, {"text": "intrinsic", "start": 746, "end": 755, "id": 120, "annotation": null}, {"text": "and", "start": 756, "end": 759, "id": 121, "annotation": null}, {"text": "extrinsic", "start": 760, "end": 769, "id": 122, "annotation": null}, {"text": "granularity", "start": 770, "end": 781, "id": 123, "annotation": null}, {"text": ".", "start": 782, "end": 783, "id": 124, "annotation": null}], [{"text": "Our", "start": 784, "end": 787, "id": 125, "annotation": null}, {"text": "data", "start": 788, "end": 792, "id": 126, "annotation": null}, {"text": ",", "start": 793, "end": 794, "id": 127, "annotation": null}, {"text": "obtained", "start": 795, "end": 803, "id": 128, "annotation": null}, {"text": "for", "start": 804, "end": 807, "id": 129, "annotation": null}, {"text": "superconducting", "start": 808, "end": 823, "id": 130, "annotation": null}, {"text": "diamond", "start": 824, "end": 831, "id": 131, "annotation": null}, {"text": ",", "start": 832, "end": 833, "id": 132, "annotation": null}, {"text": "provide", "start": 834, "end": 841, "id": 133, "annotation": null}, {"text": "a", "start": 842, "end": 843, "id": 134, "annotation": null}, {"text": "reference", "start": 844, "end": 853, "id": 135, "annotation": null}, {"text": "for", "start": 854, "end": 857, "id": 136, "annotation": null}, {"text": "understanding", "start": 858, "end": 871, "id": 137, "annotation": null}, {"text": "the", "start": 872, "end": 875, "id": 138, "annotation": null}, {"text": "superconductivity", "start": 876, "end": 893, "id": 139, "annotation": null}, {"text": "in", "start": 894, "end": 896, "id": 140, "annotation": null}, {"text": "other", "start": 897, "end": 902, "id": 141, "annotation": null}, {"text": "granular", "start": 903, "end": 911, "id": 142, "annotation": null}, {"text": "disordered", "start": 912, "end": 922, "id": 143, "annotation": null}, {"text": "systems", "start": 923, "end": 930, "id": 144, "annotation": null}, {"text": ".", "start": 931, "end": 932, "id": 145, "annotation": null}], [{"text": "Furthermore", "start": 933, "end": 944, "id": 146, "annotation": null}, {"text": ",", "start": 945, "end": 946, "id": 147, "annotation": null}, {"text": "our", "start": 947, "end": 950, "id": 148, "annotation": null}, {"text": "study", "start": 951, "end": 956, "id": 149, "annotation": null}, {"text": "brings", "start": 957, "end": 963, "id": 150, "annotation": null}, {"text": "attention", "start": 964, "end": 973, "id": 151, "annotation": null}, {"text": "to", "start": 974, "end": 976, "id": 152, "annotation": null}, {"text": "the", "start": 977, "end": 980, "id": 153, "annotation": null}, {"text": "significant", "start": 981, "end": 992, "id": 154, "annotation": null}, {"text": "influence", "start": 993, "end": 1002, "id": 155, "annotation": null}, {"text": "of", "start": 1003, "end": 1005, "id": 156, "annotation": null}, {"text": "granular", "start": 1006, "end": 1014, "id": 157, "annotation": null}, {"text": "disorder", "start": 1015, "end": 1023, "id": 158, "annotation": null}, {"text": "on", "start": 1024, "end": 1026, "id": 159, "annotation": null}, {"text": "the", "start": 1027, "end": 1030, "id": 160, "annotation": null}, {"text": "physical", "start": 1031, "end": 1039, "id": 161, "annotation": null}, {"text": "properties", "start": 1040, "end": 1050, "id": 162, "annotation": null}, {"text": "of", "start": 1051, "end": 1053, "id": 163, "annotation": null}, {"text": "boron", "start": 1054, "end": 1059, "id": 164, "annotation": "DOPANT"}, {"text": "-", "start": 1060, "end": 1061, "id": 165, "annotation": null}, {"text": "doped", "start": 1062, "end": 1067, "id": 166, "annotation": null}, {"text": "diamond", "start": 1068, "end": 1075, "id": 167, "annotation": "BASEMAT"}, {"text": ",", "start": 1076, "end": 1077, "id": 168, "annotation": null}, {"text": "which", "start": 1078, "end": 1083, "id": 169, "annotation": null}, {"text": "is", "start": 1084, "end": 1086, "id": 170, "annotation": null}, {"text": "considered", "start": 1087, "end": 1097, "id": 171, "annotation": null}, {"text": "a", "start": 1098, "end": 1099, "id": 172, "annotation": null}, {"text": "promising", "start": 1100, "end": 1109, "id": 173, "annotation": null}, {"text": "candidate", "start": 1110, "end": 1119, "id": 174, "annotation": null}, {"text": "for", "start": 1120, "end": 1123, "id": 175, "annotation": null}, {"text": "electronics", "start": 1124, "end": 1135, "id": 176, "annotation": null}, {"text": "applications", "start": 1136, "end": 1148, "id": 177, "annotation": null}, {"text": ".", "start": 1149, "end": 1150, "id": 178, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "A new metallic radical cation salt \u03ba\u2010(BETS)2Co0.13Mn0.87[N(CN)2]3, where BETS is bis(ethylenedithio)tetraselenafulvalene, C10S4Se4H8, has been synthesized. In this salt, a part of Mn2+ ions are replaced by Co2+ which acts as a magnetic dopant with a different effective magnetic moment. Crystal structure, band structure, conducting and magnetic properties of the salt have been studied. Below 30K the material undergoes a metal-insulator transition, which is suppressed by applying a pressure of \u223c0.5 kbar, leading to a superconducting ground state. While the structural and conducting properties are very similar to those of the parent salt \u03ba\u2010(BETS)2Mn[N(CN)2]3, magnetic properties associated with localized moments in the anion layer are found to be surprisingly different.", "meta": {"doi": "10.1016/j.synthmet.2017.03.008"}, "_input_hash": 1343703893, "_task_hash": 312320166, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "new", "start": 2, "end": 5, "id": 1, "annotation": null}, {"text": "metallic", "start": 6, "end": 14, "id": 2, "annotation": null}, {"text": "radical", "start": 15, "end": 22, "id": 3, "annotation": null}, {"text": "cation", "start": 23, "end": 29, "id": 4, "annotation": null}, {"text": "salt", "start": 30, "end": 34, "id": 5, "annotation": null}, {"text": "\u03ba\u2010(BETS)2Co0.13Mn0.87[N(CN)2]3", "start": 35, "end": 65, "id": 6, "annotation": null}, {"text": ",", "start": 66, "end": 67, "id": 7, "annotation": null}, {"text": "where", "start": 68, "end": 73, "id": 8, "annotation": null}, {"text": "BETS", "start": 74, "end": 78, "id": 9, "annotation": null}, {"text": "is", "start": 79, "end": 81, "id": 10, "annotation": null}, {"text": "bis(ethylenedithio)tetraselenafulvalene", "start": 82, "end": 121, "id": 11, "annotation": null}, {"text": ",", "start": 122, "end": 123, "id": 12, "annotation": null}, {"text": "C10S4Se4H8", "start": 124, "end": 134, "id": 13, "annotation": null}, {"text": ",", "start": 135, "end": 136, "id": 14, "annotation": null}, {"text": "has", "start": 137, "end": 140, "id": 15, "annotation": null}, {"text": "been", "start": 141, "end": 145, "id": 16, "annotation": null}, {"text": "synthesized", "start": 146, "end": 157, "id": 17, "annotation": null}, {"text": ".", "start": 158, "end": 159, "id": 18, "annotation": null}], [{"text": "In", "start": 160, "end": 162, "id": 19, "annotation": null}, {"text": "this", "start": 163, "end": 167, "id": 20, "annotation": null}, {"text": "salt", "start": 168, "end": 172, "id": 21, "annotation": "BASEMAT"}, {"text": ",", "start": 173, "end": 174, "id": 22, "annotation": null}, {"text": "a", "start": 175, "end": 176, "id": 23, "annotation": null}, {"text": "part", "start": 177, "end": 181, "id": 24, "annotation": null}, {"text": "of", "start": 182, "end": 184, "id": 25, "annotation": null}, {"text": "Mn2", "start": 185, "end": 188, "id": 26, "annotation": null}, {"text": "+", "start": 189, "end": 190, "id": 27, "annotation": null}, {"text": "ions", "start": 191, "end": 195, "id": 28, "annotation": null}, {"text": "are", "start": 196, "end": 199, "id": 29, "annotation": null}, {"text": "replaced", "start": 200, "end": 208, "id": 30, "annotation": null}, {"text": "by", "start": 209, "end": 211, "id": 31, "annotation": null}, {"text": "Co2", "start": 212, "end": 215, "id": 32, "annotation": "DOPANT"}, {"text": "+", "start": 216, "end": 217, "id": 33, "annotation": "DOPANT"}, {"text": "which", "start": 218, "end": 223, "id": 34, "annotation": null}, {"text": "acts", "start": 224, "end": 228, "id": 35, "annotation": null}, {"text": "as", "start": 229, "end": 231, "id": 36, "annotation": null}, {"text": "a", "start": 232, "end": 233, "id": 37, "annotation": null}, {"text": "magnetic", "start": 234, "end": 242, "id": 38, "annotation": null}, {"text": "dopant", "start": 243, "end": 249, "id": 39, "annotation": null}, {"text": "with", "start": 250, "end": 254, "id": 40, "annotation": null}, {"text": "a", "start": 255, "end": 256, "id": 41, "annotation": null}, {"text": "different", "start": 257, "end": 266, "id": 42, "annotation": null}, {"text": "effective", "start": 267, "end": 276, "id": 43, "annotation": null}, {"text": "magnetic", "start": 277, "end": 285, "id": 44, "annotation": null}, {"text": "moment", "start": 286, "end": 292, "id": 45, "annotation": null}, {"text": ".", "start": 293, "end": 294, "id": 46, "annotation": null}], [{"text": "Crystal", "start": 295, "end": 302, "id": 47, "annotation": null}, {"text": "structure", "start": 303, "end": 312, "id": 48, "annotation": null}, {"text": ",", "start": 313, "end": 314, "id": 49, "annotation": null}, {"text": "band", "start": 315, "end": 319, "id": 50, "annotation": null}, {"text": "structure", "start": 320, "end": 329, "id": 51, "annotation": null}, {"text": ",", "start": 330, "end": 331, "id": 52, "annotation": null}, {"text": "conducting", "start": 332, "end": 342, "id": 53, "annotation": null}, {"text": "and", "start": 343, "end": 346, "id": 54, "annotation": null}, {"text": "magnetic", "start": 347, "end": 355, "id": 55, "annotation": null}, {"text": "properties", "start": 356, "end": 366, "id": 56, "annotation": null}, {"text": "of", "start": 367, "end": 369, "id": 57, "annotation": null}, {"text": "the", "start": 370, "end": 373, "id": 58, "annotation": null}, {"text": "salt", "start": 374, "end": 378, "id": 59, "annotation": null}, {"text": "have", "start": 379, "end": 383, "id": 60, "annotation": null}, {"text": "been", "start": 384, "end": 388, "id": 61, "annotation": null}, {"text": "studied", "start": 389, "end": 396, "id": 62, "annotation": null}, {"text": ".", "start": 397, "end": 398, "id": 63, "annotation": null}], [{"text": "Below", "start": 399, "end": 404, "id": 64, "annotation": null}, {"text": "30", "start": 405, "end": 407, "id": 65, "annotation": null}, {"text": "K", "start": 408, "end": 409, "id": 66, "annotation": null}, {"text": "the", "start": 410, "end": 413, "id": 67, "annotation": null}, {"text": "material", "start": 414, "end": 422, "id": 68, "annotation": null}, {"text": "undergoes", "start": 423, "end": 432, "id": 69, "annotation": null}, {"text": "a", "start": 433, "end": 434, "id": 70, "annotation": null}, {"text": "metal", "start": 435, "end": 440, "id": 71, "annotation": null}, {"text": "-", "start": 441, "end": 442, "id": 72, "annotation": null}, {"text": "insulator", "start": 443, "end": 452, "id": 73, "annotation": null}, {"text": "transition", "start": 453, "end": 463, "id": 74, "annotation": null}, {"text": ",", "start": 464, "end": 465, "id": 75, "annotation": null}, {"text": "which", "start": 466, "end": 471, "id": 76, "annotation": null}, {"text": "is", "start": 472, "end": 474, "id": 77, "annotation": null}, {"text": "suppressed", "start": 475, "end": 485, "id": 78, "annotation": null}, {"text": "by", "start": 486, "end": 488, "id": 79, "annotation": null}, {"text": "applying", "start": 489, "end": 497, "id": 80, "annotation": null}, {"text": "a", "start": 498, "end": 499, "id": 81, "annotation": null}, {"text": "pressure", "start": 500, "end": 508, "id": 82, "annotation": null}, {"text": "of", "start": 509, "end": 511, "id": 83, "annotation": null}, {"text": "\u223c0.5", "start": 512, "end": 516, "id": 84, "annotation": null}, {"text": "kbar", "start": 517, "end": 521, "id": 85, "annotation": null}, {"text": ",", "start": 522, "end": 523, "id": 86, "annotation": null}, {"text": "leading", "start": 524, "end": 531, "id": 87, "annotation": null}, {"text": "to", "start": 532, "end": 534, "id": 88, "annotation": null}, {"text": "a", "start": 535, "end": 536, "id": 89, "annotation": null}, {"text": "superconducting", "start": 537, "end": 552, "id": 90, "annotation": null}, {"text": "ground", "start": 553, "end": 559, "id": 91, "annotation": null}, {"text": "state", "start": 560, "end": 565, "id": 92, "annotation": null}, {"text": ".", "start": 566, "end": 567, "id": 93, "annotation": null}], [{"text": "While", "start": 568, "end": 573, "id": 94, "annotation": null}, {"text": "the", "start": 574, "end": 577, "id": 95, "annotation": null}, {"text": "structural", "start": 578, "end": 588, "id": 96, "annotation": null}, {"text": "and", "start": 589, "end": 592, "id": 97, "annotation": null}, {"text": "conducting", "start": 593, "end": 603, "id": 98, "annotation": null}, {"text": "properties", "start": 604, "end": 614, "id": 99, "annotation": null}, {"text": "are", "start": 615, "end": 618, "id": 100, "annotation": null}, {"text": "very", "start": 619, "end": 623, "id": 101, "annotation": null}, {"text": "similar", "start": 624, "end": 631, "id": 102, "annotation": null}, {"text": "to", "start": 632, "end": 634, "id": 103, "annotation": null}, {"text": "those", "start": 635, "end": 640, "id": 104, "annotation": null}, {"text": "of", "start": 641, "end": 643, "id": 105, "annotation": null}, {"text": "the", "start": 644, "end": 647, "id": 106, "annotation": null}, {"text": "parent", "start": 648, "end": 654, "id": 107, "annotation": null}, {"text": "salt", "start": 655, "end": 659, "id": 108, "annotation": null}, {"text": "\u03ba\u2010(BETS)2Mn[N(CN)2]3", "start": 660, "end": 680, "id": 109, "annotation": null}, {"text": ",", "start": 681, "end": 682, "id": 110, "annotation": null}, {"text": "magnetic", "start": 683, "end": 691, "id": 111, "annotation": null}, {"text": "properties", "start": 692, "end": 702, "id": 112, "annotation": null}, {"text": "associated", "start": 703, "end": 713, "id": 113, "annotation": null}, {"text": "with", "start": 714, "end": 718, "id": 114, "annotation": null}, {"text": "localized", "start": 719, "end": 728, "id": 115, "annotation": null}, {"text": "moments", "start": 729, "end": 736, "id": 116, "annotation": null}, {"text": "in", "start": 737, "end": 739, "id": 117, "annotation": null}, {"text": "the", "start": 740, "end": 743, "id": 118, "annotation": null}, {"text": "anion", "start": 744, "end": 749, "id": 119, "annotation": null}, {"text": "layer", "start": 750, "end": 755, "id": 120, "annotation": null}, {"text": "are", "start": 756, "end": 759, "id": 121, "annotation": null}, {"text": "found", "start": 760, "end": 765, "id": 122, "annotation": null}, {"text": "to", "start": 766, "end": 768, "id": 123, "annotation": null}, {"text": "be", "start": 769, "end": 771, "id": 124, "annotation": null}, {"text": "surprisingly", "start": 772, "end": 784, "id": 125, "annotation": null}, {"text": "different", "start": 785, "end": 794, "id": 126, "annotation": null}, {"text": ".", "start": 795, "end": 796, "id": 127, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The electrochemical reduction of carbon dioxide in aqueous solutions using boron-doped diamond (BDD) electrodes was investigated at ambient pressure and temperature. We discuss the effects of the alkali-metal (AM) cations, K+, Na+, Rb+ and Cs+, on the faradaic efficiency (FE) for the formation of formic acid. An FE of 71% was achieved in the case of a 0.075 M Rb+ solution neutralized to pH 6.2 by the addition of HCl. In the case of a Cs+ solution neutralized to pH 6.2, the highest FE was obtained with the more dilute concentration of 0.02 M. Of the four different solutions examined, the lowest FE was observed for the Na+ solution. Moreover, we found that the productivity for the production of formic acid is higher at higher current densities.", "meta": {"doi": "10.1039/c7ra03370b"}, "_input_hash": 465221190, "_task_hash": -1015260662, "tokens": [[{"text": "The", "start": 35, "end": 38, "id": 7, "annotation": null}, {"text": "electrochemical", "start": 39, "end": 54, "id": 8, "annotation": null}, {"text": "reduction", "start": 55, "end": 64, "id": 9, "annotation": null}, {"text": "of", "start": 65, "end": 67, "id": 10, "annotation": null}, {"text": "carbon", "start": 68, "end": 74, "id": 11, "annotation": null}, {"text": "dioxide", "start": 75, "end": 82, "id": 12, "annotation": null}, {"text": "in", "start": 83, "end": 85, "id": 13, "annotation": null}, {"text": "aqueous", "start": 86, "end": 93, "id": 14, "annotation": null}, {"text": "solutions", "start": 94, "end": 103, "id": 15, "annotation": null}, {"text": "using", "start": 104, "end": 109, "id": 16, "annotation": null}, {"text": "boron", "start": 110, "end": 115, "id": 17, "annotation": "DOPANT"}, {"text": "-", "start": 116, "end": 117, "id": 18, "annotation": null}, {"text": "doped", "start": 118, "end": 123, "id": 19, "annotation": null}, {"text": "diamond", "start": 124, "end": 131, "id": 20, "annotation": "BASEMAT"}, {"text": "(", "start": 132, "end": 133, "id": 21, "annotation": null}, {"text": "BDD", "start": 134, "end": 137, "id": 22, "annotation": null}, {"text": ")", "start": 138, "end": 139, "id": 23, "annotation": null}, {"text": "electrodes", "start": 140, "end": 150, "id": 24, "annotation": null}, {"text": "was", "start": 151, "end": 154, "id": 25, "annotation": null}, {"text": "investigated", "start": 155, "end": 167, "id": 26, "annotation": null}, {"text": "at", "start": 168, "end": 170, "id": 27, "annotation": null}, {"text": "ambient", "start": 171, "end": 178, "id": 28, "annotation": null}, {"text": "pressure", "start": 179, "end": 187, "id": 29, "annotation": null}, {"text": "and", "start": 188, "end": 191, "id": 30, "annotation": null}, {"text": "temperature", "start": 192, "end": 203, "id": 31, "annotation": null}, {"text": ".", "start": 204, "end": 205, "id": 32, "annotation": null}], [{"text": "We", "start": 206, "end": 208, "id": 33, "annotation": null}, {"text": "discuss", "start": 209, "end": 216, "id": 34, "annotation": null}, {"text": "the", "start": 217, "end": 220, "id": 35, "annotation": null}, {"text": "effects", "start": 221, "end": 228, "id": 36, "annotation": null}, {"text": "of", "start": 229, "end": 231, "id": 37, "annotation": null}, {"text": "the", "start": 232, "end": 235, "id": 38, "annotation": null}, {"text": "alkali", "start": 236, "end": 242, "id": 39, "annotation": null}, {"text": "-", "start": 243, "end": 244, "id": 40, "annotation": null}, {"text": "metal", "start": 245, "end": 250, "id": 41, "annotation": null}, {"text": "(", "start": 251, "end": 252, "id": 42, "annotation": null}, {"text": "AM", "start": 253, "end": 255, "id": 43, "annotation": null}, {"text": ")", "start": 256, "end": 257, "id": 44, "annotation": null}, {"text": "cations", "start": 258, "end": 265, "id": 45, "annotation": null}, {"text": ",", "start": 266, "end": 267, "id": 46, "annotation": null}, {"text": "K+", "start": 268, "end": 270, "id": 47, "annotation": null}, {"text": ",", "start": 271, "end": 272, "id": 48, "annotation": null}, {"text": "Na+", "start": 273, "end": 276, "id": 49, "annotation": null}, {"text": ",", "start": 277, "end": 278, "id": 50, "annotation": null}, {"text": "Rb+", "start": 279, "end": 282, "id": 51, "annotation": null}, {"text": "and", "start": 283, "end": 286, "id": 52, "annotation": null}, {"text": "Cs+", "start": 287, "end": 290, "id": 53, "annotation": null}, {"text": ",", "start": 291, "end": 292, "id": 54, "annotation": null}, {"text": "on", "start": 293, "end": 295, "id": 55, "annotation": null}, {"text": "the", "start": 296, "end": 299, "id": 56, "annotation": null}, {"text": "faradaic", "start": 300, "end": 308, "id": 57, "annotation": null}, {"text": "efficiency", "start": 309, "end": 319, "id": 58, "annotation": null}, {"text": "(", "start": 320, "end": 321, "id": 59, "annotation": null}, {"text": "FE", "start": 322, "end": 324, "id": 60, "annotation": null}, {"text": ")", "start": 325, "end": 326, "id": 61, "annotation": null}, {"text": "for", "start": 327, "end": 330, "id": 62, "annotation": null}, {"text": "the", "start": 331, "end": 334, "id": 63, "annotation": null}, {"text": "formation", "start": 335, "end": 344, "id": 64, "annotation": null}, {"text": "of", "start": 345, "end": 347, "id": 65, "annotation": null}, {"text": "formic", "start": 348, "end": 354, "id": 66, "annotation": null}, {"text": "acid", "start": 355, "end": 359, "id": 67, "annotation": null}, {"text": ".", "start": 360, "end": 361, "id": 68, "annotation": null}], [{"text": "An", "start": 362, "end": 364, "id": 69, "annotation": null}, {"text": "FE", "start": 365, "end": 367, "id": 70, "annotation": null}, {"text": "of", "start": 368, "end": 370, "id": 71, "annotation": null}, {"text": "71", "start": 371, "end": 373, "id": 72, "annotation": null}, {"text": "%", "start": 374, "end": 375, "id": 73, "annotation": null}, {"text": "was", "start": 376, "end": 379, "id": 74, "annotation": null}, {"text": "achieved", "start": 380, "end": 388, "id": 75, "annotation": null}, {"text": "in", "start": 389, "end": 391, "id": 76, "annotation": null}, {"text": "the", "start": 392, "end": 395, "id": 77, "annotation": null}, {"text": "case", "start": 396, "end": 400, "id": 78, "annotation": null}, {"text": "of", "start": 401, "end": 403, "id": 79, "annotation": null}, {"text": "a", "start": 404, "end": 405, "id": 80, "annotation": null}, {"text": "0.075", "start": 406, "end": 411, "id": 81, "annotation": null}, {"text": "M", "start": 412, "end": 413, "id": 82, "annotation": null}, {"text": "Rb+", "start": 414, "end": 417, "id": 83, "annotation": null}, {"text": "solution", "start": 418, "end": 426, "id": 84, "annotation": null}, {"text": "neutralized", "start": 427, "end": 438, "id": 85, "annotation": null}, {"text": "to", "start": 439, "end": 441, "id": 86, "annotation": null}, {"text": "pH", "start": 442, "end": 444, "id": 87, "annotation": null}, {"text": "6.2", "start": 445, "end": 448, "id": 88, "annotation": null}, {"text": "by", "start": 449, "end": 451, "id": 89, "annotation": null}, {"text": "the", "start": 452, "end": 455, "id": 90, "annotation": null}, {"text": "addition", "start": 456, "end": 464, "id": 91, "annotation": null}, {"text": "of", "start": 465, "end": 467, "id": 92, "annotation": null}, {"text": "HCl", "start": 468, "end": 471, "id": 93, "annotation": null}, {"text": ".", "start": 472, "end": 473, "id": 94, "annotation": null}], [{"text": "In", "start": 474, "end": 476, "id": 95, "annotation": null}, {"text": "the", "start": 477, "end": 480, "id": 96, "annotation": null}, {"text": "case", "start": 481, "end": 485, "id": 97, "annotation": null}, {"text": "of", "start": 486, "end": 488, "id": 98, "annotation": null}, {"text": "a", "start": 489, "end": 490, "id": 99, "annotation": null}, {"text": "Cs+", "start": 491, "end": 494, "id": 100, "annotation": null}, {"text": "solution", "start": 495, "end": 503, "id": 101, "annotation": null}, {"text": "neutralized", "start": 504, "end": 515, "id": 102, "annotation": null}, {"text": "to", "start": 516, "end": 518, "id": 103, "annotation": null}, {"text": "pH", "start": 519, "end": 521, "id": 104, "annotation": null}, {"text": "6.2", "start": 522, "end": 525, "id": 105, "annotation": null}, {"text": ",", "start": 526, "end": 527, "id": 106, "annotation": null}, {"text": "the", "start": 528, "end": 531, "id": 107, "annotation": null}, {"text": "highest", "start": 532, "end": 539, "id": 108, "annotation": null}, {"text": "FE", "start": 540, "end": 542, "id": 109, "annotation": null}, {"text": "was", "start": 543, "end": 546, "id": 110, "annotation": null}, {"text": "obtained", "start": 547, "end": 555, "id": 111, "annotation": null}, {"text": "with", "start": 556, "end": 560, "id": 112, "annotation": null}, {"text": "the", "start": 561, "end": 564, "id": 113, "annotation": null}, {"text": "more", "start": 565, "end": 569, "id": 114, "annotation": null}, {"text": "dilute", "start": 570, "end": 576, "id": 115, "annotation": null}, {"text": "concentration", "start": 577, "end": 590, "id": 116, "annotation": null}, {"text": "of", "start": 591, "end": 593, "id": 117, "annotation": null}, {"text": "0.02", "start": 594, "end": 598, "id": 118, "annotation": null}, {"text": "M.", "start": 599, "end": 601, "id": 119, "annotation": null}], [{"text": "Of", "start": 602, "end": 604, "id": 120, "annotation": null}, {"text": "the", "start": 605, "end": 608, "id": 121, "annotation": null}, {"text": "four", "start": 609, "end": 613, "id": 122, "annotation": null}, {"text": "different", "start": 614, "end": 623, "id": 123, "annotation": null}, {"text": "solutions", "start": 624, "end": 633, "id": 124, "annotation": null}, {"text": "examined", "start": 634, "end": 642, "id": 125, "annotation": null}, {"text": ",", "start": 643, "end": 644, "id": 126, "annotation": null}, {"text": "the", "start": 645, "end": 648, "id": 127, "annotation": null}, {"text": "lowest", "start": 649, "end": 655, "id": 128, "annotation": null}, {"text": "FE", "start": 656, "end": 658, "id": 129, "annotation": null}, {"text": "was", "start": 659, "end": 662, "id": 130, "annotation": null}, {"text": "observed", "start": 663, "end": 671, "id": 131, "annotation": null}, {"text": "for", "start": 672, "end": 675, "id": 132, "annotation": null}, {"text": "the", "start": 676, "end": 679, "id": 133, "annotation": null}, {"text": "Na+", "start": 680, "end": 683, "id": 134, "annotation": null}, {"text": "solution", "start": 684, "end": 692, "id": 135, "annotation": null}, {"text": ".", "start": 693, "end": 694, "id": 136, "annotation": null}], [{"text": "Moreover", "start": 695, "end": 703, "id": 137, "annotation": null}, {"text": ",", "start": 704, "end": 705, "id": 138, "annotation": null}, {"text": "we", "start": 706, "end": 708, "id": 139, "annotation": null}, {"text": "found", "start": 709, "end": 714, "id": 140, "annotation": null}, {"text": "that", "start": 715, "end": 719, "id": 141, "annotation": null}, {"text": "the", "start": 720, "end": 723, "id": 142, "annotation": null}, {"text": "productivity", "start": 724, "end": 736, "id": 143, "annotation": null}, {"text": "for", "start": 737, "end": 740, "id": 144, "annotation": null}, {"text": "the", "start": 741, "end": 744, "id": 145, "annotation": null}, {"text": "production", "start": 745, "end": 755, "id": 146, "annotation": null}, {"text": "of", "start": 756, "end": 758, "id": 147, "annotation": null}, {"text": "formic", "start": 759, "end": 765, "id": 148, "annotation": null}, {"text": "acid", "start": 766, "end": 770, "id": 149, "annotation": null}, {"text": "is", "start": 771, "end": 773, "id": 150, "annotation": null}, {"text": "higher", "start": 774, "end": 780, "id": 151, "annotation": null}, {"text": "at", "start": 781, "end": 783, "id": 152, "annotation": null}, {"text": "higher", "start": 784, "end": 790, "id": 153, "annotation": null}, {"text": "current", "start": 791, "end": 798, "id": 154, "annotation": null}, {"text": "densities", "start": 799, "end": 808, "id": 155, "annotation": null}, {"text": ".", "start": 809, "end": 810, "id": 156, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The bismuth (Bi) and nitrogen (N) co-doped TiO2 photocatalysts prepared by sol\u2013gel method were subjected to water splitting under natural solar light irradiation. Doping of nitrogen in TiO2 lattice was occurred only in the presence of Bi. X-ray photo electronic spectra (XPS) revealed the presence of Bi and N on the surface and the Fourier transformed infrared (FT-IR) spectra emphasized that doping of N occurred in the form of both NOx\u2212 and NH species. These species were also characterized by EPR and Raman spectroscopy in the TiO2 lattice. A high rate of H2O splitting activity over 2wt%Bi doped N-TiO2 photocatalyst was manifested by high ratio of NOx\u2212 species in the TiO2 lattice.", "meta": {"doi": "10.1016/j.apcata.2016.01.009"}, "_input_hash": -390386828, "_task_hash": -1606537135, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "bismuth", "start": 4, "end": 11, "id": 1, "annotation": "DOPANT"}, {"text": "(", "start": 12, "end": 13, "id": 2, "annotation": null}, {"text": "Bi", "start": 14, "end": 16, "id": 3, "annotation": "DOPANT"}, {"text": ")", "start": 17, "end": 18, "id": 4, "annotation": null}, {"text": "and", "start": 19, "end": 22, "id": 5, "annotation": null}, {"text": "nitrogen", "start": 23, "end": 31, "id": 6, "annotation": "DOPANT"}, {"text": "(", "start": 32, "end": 33, "id": 7, "annotation": null}, {"text": "N", "start": 34, "end": 35, "id": 8, "annotation": "DOPANT"}, {"text": ")", "start": 36, "end": 37, "id": 9, "annotation": null}, {"text": "co", "start": 38, "end": 40, "id": 10, "annotation": null}, {"text": "-", "start": 41, "end": 42, "id": 11, "annotation": null}, {"text": "doped", "start": 43, "end": 48, "id": 12, "annotation": null}, {"text": "TiO2", "start": 49, "end": 53, "id": 13, "annotation": "BASEMAT"}, {"text": "photocatalysts", "start": 54, "end": 68, "id": 14, "annotation": null}, {"text": "prepared", "start": 69, "end": 77, "id": 15, "annotation": null}, {"text": "by", "start": 78, "end": 80, "id": 16, "annotation": null}, {"text": "sol", "start": 81, "end": 84, "id": 17, "annotation": null}, {"text": "\u2013", "start": 85, "end": 86, "id": 18, "annotation": null}, {"text": "gel", "start": 87, "end": 90, "id": 19, "annotation": null}, {"text": "method", "start": 91, "end": 97, "id": 20, "annotation": null}, {"text": "were", "start": 98, "end": 102, "id": 21, "annotation": null}, {"text": "subjected", "start": 103, "end": 112, "id": 22, "annotation": null}, {"text": "to", "start": 113, "end": 115, "id": 23, "annotation": null}, {"text": "water", "start": 116, "end": 121, "id": 24, "annotation": null}, {"text": "splitting", "start": 122, "end": 131, "id": 25, "annotation": null}, {"text": "under", "start": 132, "end": 137, "id": 26, "annotation": null}, {"text": "natural", "start": 138, "end": 145, "id": 27, "annotation": null}, {"text": "solar", "start": 146, "end": 151, "id": 28, "annotation": null}, {"text": "light", "start": 152, "end": 157, "id": 29, "annotation": null}, {"text": "irradiation", "start": 158, "end": 169, "id": 30, "annotation": null}, {"text": ".", "start": 170, "end": 171, "id": 31, "annotation": null}], [{"text": "Doping", "start": 172, "end": 178, "id": 32, "annotation": null}, {"text": "of", "start": 179, "end": 181, "id": 33, "annotation": null}, {"text": "nitrogen", "start": 182, "end": 190, "id": 34, "annotation": "DOPANT"}, {"text": "in", "start": 191, "end": 193, "id": 35, "annotation": null}, {"text": "TiO2", "start": 194, "end": 198, "id": 36, "annotation": "BASEMAT"}, {"text": "lattice", "start": 199, "end": 206, "id": 37, "annotation": null}, {"text": "was", "start": 207, "end": 210, "id": 38, "annotation": null}, {"text": "occurred", "start": 211, "end": 219, "id": 39, "annotation": null}, {"text": "only", "start": 220, "end": 224, "id": 40, "annotation": null}, {"text": "in", "start": 225, "end": 227, "id": 41, "annotation": null}, {"text": "the", "start": 228, "end": 231, "id": 42, "annotation": null}, {"text": "presence", "start": 232, "end": 240, "id": 43, "annotation": null}, {"text": "of", "start": 241, "end": 243, "id": 44, "annotation": null}, {"text": "Bi", "start": 244, "end": 246, "id": 45, "annotation": "DOPANT"}, {"text": ".", "start": 247, "end": 248, "id": 46, "annotation": null}], [{"text": "X", "start": 249, "end": 250, "id": 47, "annotation": null}, {"text": "-", "start": 251, "end": 252, "id": 48, "annotation": null}, {"text": "ray", "start": 253, "end": 256, "id": 49, "annotation": null}, {"text": "photo", "start": 257, "end": 262, "id": 50, "annotation": null}, {"text": "electronic", "start": 263, "end": 273, "id": 51, "annotation": null}, {"text": "spectra", "start": 274, "end": 281, "id": 52, "annotation": null}, {"text": "(", "start": 282, "end": 283, "id": 53, "annotation": null}, {"text": "XPS", "start": 284, "end": 287, "id": 54, "annotation": null}, {"text": ")", "start": 288, "end": 289, "id": 55, "annotation": null}, {"text": "revealed", "start": 290, "end": 298, "id": 56, "annotation": null}, {"text": "the", "start": 299, "end": 302, "id": 57, "annotation": null}, {"text": "presence", "start": 303, "end": 311, "id": 58, "annotation": null}, {"text": "of", "start": 312, "end": 314, "id": 59, "annotation": null}, {"text": "Bi", "start": 315, "end": 317, "id": 60, "annotation": null}, {"text": "and", "start": 318, "end": 321, "id": 61, "annotation": null}, {"text": "N", "start": 322, "end": 323, "id": 62, "annotation": null}, {"text": "on", "start": 324, "end": 326, "id": 63, "annotation": null}, {"text": "the", "start": 327, "end": 330, "id": 64, "annotation": null}, {"text": "surface", "start": 331, "end": 338, "id": 65, "annotation": null}, {"text": "and", "start": 339, "end": 342, "id": 66, "annotation": null}, {"text": "the", "start": 343, "end": 346, "id": 67, "annotation": null}, {"text": "Fourier", "start": 347, "end": 354, "id": 68, "annotation": null}, {"text": "transformed", "start": 355, "end": 366, "id": 69, "annotation": null}, {"text": "infrared", "start": 367, "end": 375, "id": 70, "annotation": null}, {"text": "(", "start": 376, "end": 377, "id": 71, "annotation": null}, {"text": "FT", "start": 378, "end": 380, "id": 72, "annotation": null}, {"text": "-", "start": 381, "end": 382, "id": 73, "annotation": null}, {"text": "IR", "start": 383, "end": 385, "id": 74, "annotation": null}, {"text": ")", "start": 386, "end": 387, "id": 75, "annotation": null}, {"text": "spectra", "start": 388, "end": 395, "id": 76, "annotation": null}, {"text": "emphasized", "start": 396, "end": 406, "id": 77, "annotation": null}, {"text": "that", "start": 407, "end": 411, "id": 78, "annotation": null}, {"text": "doping", "start": 412, "end": 418, "id": 79, "annotation": null}, {"text": "of", "start": 419, "end": 421, "id": 80, "annotation": null}, {"text": "N", "start": 422, "end": 423, "id": 81, "annotation": "DOPANT"}, {"text": "occurred", "start": 424, "end": 432, "id": 82, "annotation": null}, {"text": "in", "start": 433, "end": 435, "id": 83, "annotation": null}, {"text": "the", "start": 436, "end": 439, "id": 84, "annotation": null}, {"text": "form", "start": 440, "end": 444, "id": 85, "annotation": null}, {"text": "of", "start": 445, "end": 447, "id": 86, "annotation": null}, {"text": "both", "start": 448, "end": 452, "id": 87, "annotation": null}, {"text": "NOx\u2212", "start": 453, "end": 457, "id": 88, "annotation": null}, {"text": "and", "start": 458, "end": 461, "id": 89, "annotation": null}, {"text": "NH", "start": 462, "end": 464, "id": 90, "annotation": null}, {"text": "species", "start": 465, "end": 472, "id": 91, "annotation": null}, {"text": ".", "start": 473, "end": 474, "id": 92, "annotation": null}], [{"text": "These", "start": 475, "end": 480, "id": 93, "annotation": null}, {"text": "species", "start": 481, "end": 488, "id": 94, "annotation": null}, {"text": "were", "start": 489, "end": 493, "id": 95, "annotation": null}, {"text": "also", "start": 494, "end": 498, "id": 96, "annotation": null}, {"text": "characterized", "start": 499, "end": 512, "id": 97, "annotation": null}, {"text": "by", "start": 513, "end": 515, "id": 98, "annotation": null}, {"text": "EPR", "start": 516, "end": 519, "id": 99, "annotation": null}, {"text": "and", "start": 520, "end": 523, "id": 100, "annotation": null}, {"text": "Raman", "start": 524, "end": 529, "id": 101, "annotation": null}, {"text": "spectroscopy", "start": 530, "end": 542, "id": 102, "annotation": null}, {"text": "in", "start": 543, "end": 545, "id": 103, "annotation": null}, {"text": "the", "start": 546, "end": 549, "id": 104, "annotation": null}, {"text": "TiO2", "start": 550, "end": 554, "id": 105, "annotation": null}, {"text": "lattice", "start": 555, "end": 562, "id": 106, "annotation": null}, {"text": ".", "start": 563, "end": 564, "id": 107, "annotation": null}], [{"text": "A", "start": 565, "end": 566, "id": 108, "annotation": null}, {"text": "high", "start": 567, "end": 571, "id": 109, "annotation": null}, {"text": "rate", "start": 572, "end": 576, "id": 110, "annotation": null}, {"text": "of", "start": 577, "end": 579, "id": 111, "annotation": null}, {"text": "H2O", "start": 580, "end": 583, "id": 112, "annotation": null}, {"text": "splitting", "start": 584, "end": 593, "id": 113, "annotation": null}, {"text": "activity", "start": 594, "end": 602, "id": 114, "annotation": null}, {"text": "over", "start": 603, "end": 607, "id": 115, "annotation": null}, {"text": "2wt%Bi", "start": 608, "end": 614, "id": 116, "annotation": "DOPANT"}, {"text": "doped", "start": 615, "end": 620, "id": 117, "annotation": null}, {"text": "N", "start": 621, "end": 622, "id": 118, "annotation": "DOPANT"}, {"text": "-", "start": 623, "end": 624, "id": 119, "annotation": null}, {"text": "TiO2", "start": 625, "end": 629, "id": 120, "annotation": "BASEMAT"}, {"text": "photocatalyst", "start": 630, "end": 643, "id": 121, "annotation": null}, {"text": "was", "start": 644, "end": 647, "id": 122, "annotation": null}, {"text": "manifested", "start": 648, "end": 658, "id": 123, "annotation": null}, {"text": "by", "start": 659, "end": 661, "id": 124, "annotation": null}, {"text": "high", "start": 662, "end": 666, "id": 125, "annotation": null}, {"text": "ratio", "start": 667, "end": 672, "id": 126, "annotation": null}, {"text": "of", "start": 673, "end": 675, "id": 127, "annotation": null}, {"text": "NOx\u2212", "start": 676, "end": 680, "id": 128, "annotation": null}, {"text": "species", "start": 681, "end": 688, "id": 129, "annotation": null}, {"text": "in", "start": 689, "end": 691, "id": 130, "annotation": null}, {"text": "the", "start": 692, "end": 695, "id": 131, "annotation": null}, {"text": "TiO2", "start": 696, "end": 700, "id": 132, "annotation": null}, {"text": "lattice", "start": 701, "end": 708, "id": 133, "annotation": null}, {"text": ".", "start": 709, "end": 710, "id": 134, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "We present the steady-state, velocity-field characteristics of wurtzite aluminum nitride, determined using an ensemble Monte Carlo approach. A three valley model for the conduction band is employed and ionized impurity, polar optical phonon, piezoelectric, deformation potential and intervalley scattering mechanisms are considered. We find that aluminum nitride exhibits peak and saturation drift velocities of 1.7 \u00d7 107 cm s\u22121 and 1.4 \u00d7 107 cm s\u22121, respectively, at a temperature of 300 K and a doping concentration of 1.0 \u00d7 1017 cm\u22123. The sensitivity of these steady-state results to variations in temperature and doping concentration is examined and is found to be much less than that of gallium arsenide. We also explore the sensitivity of our results to variations in the piezoelectric constant and demonstrate that piezoelectric scattering plays a significant role in determining the form of the wurtzite aluminum nitride velocity-field characteristic.", "meta": {"doi": "10.1016/S0038-1098(97)10207-1"}, "_input_hash": 952360092, "_task_hash": 1121955769, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "present", "start": 3, "end": 10, "id": 1, "annotation": null}, {"text": "the", "start": 11, "end": 14, "id": 2, "annotation": null}, {"text": "steady", "start": 15, "end": 21, "id": 3, "annotation": null}, {"text": "-", "start": 22, "end": 23, "id": 4, "annotation": null}, {"text": "state", "start": 24, "end": 29, "id": 5, "annotation": null}, {"text": ",", "start": 30, "end": 31, "id": 6, "annotation": null}, {"text": "velocity", "start": 32, "end": 40, "id": 7, "annotation": null}, {"text": "-", "start": 41, "end": 42, "id": 8, "annotation": null}, {"text": "field", "start": 43, "end": 48, "id": 9, "annotation": null}, {"text": "characteristics", "start": 49, "end": 64, "id": 10, "annotation": null}, {"text": "of", "start": 65, "end": 67, "id": 11, "annotation": null}, {"text": "wurtzite", "start": 68, "end": 76, "id": 12, "annotation": null}, {"text": "aluminum", "start": 77, "end": 85, "id": 13, "annotation": null}, {"text": "nitride", "start": 86, "end": 93, "id": 14, "annotation": null}, {"text": ",", "start": 94, "end": 95, "id": 15, "annotation": null}, {"text": "determined", "start": 96, "end": 106, "id": 16, "annotation": null}, {"text": "using", "start": 107, "end": 112, "id": 17, "annotation": null}, {"text": "an", "start": 113, "end": 115, "id": 18, "annotation": null}, {"text": "ensemble", "start": 116, "end": 124, "id": 19, "annotation": null}, {"text": "Monte", "start": 125, "end": 130, "id": 20, "annotation": null}, {"text": "Carlo", "start": 131, "end": 136, "id": 21, "annotation": null}, {"text": "approach", "start": 137, "end": 145, "id": 22, "annotation": null}, {"text": ".", "start": 146, "end": 147, "id": 23, "annotation": null}], [{"text": "A", "start": 148, "end": 149, "id": 24, "annotation": null}, {"text": "three", "start": 150, "end": 155, "id": 25, "annotation": null}, {"text": "valley", "start": 156, "end": 162, "id": 26, "annotation": null}, {"text": "model", "start": 163, "end": 168, "id": 27, "annotation": null}, {"text": "for", "start": 169, "end": 172, "id": 28, "annotation": null}, {"text": "the", "start": 173, "end": 176, "id": 29, "annotation": null}, {"text": "conduction", "start": 177, "end": 187, "id": 30, "annotation": null}, {"text": "band", "start": 188, "end": 192, "id": 31, "annotation": null}, {"text": "is", "start": 193, "end": 195, "id": 32, "annotation": null}, {"text": "employed", "start": 196, "end": 204, "id": 33, "annotation": null}, {"text": "and", "start": 205, "end": 208, "id": 34, "annotation": null}, {"text": "ionized", "start": 209, "end": 216, "id": 35, "annotation": null}, {"text": "impurity", "start": 217, "end": 225, "id": 36, "annotation": null}, {"text": ",", "start": 226, "end": 227, "id": 37, "annotation": null}, {"text": "polar", "start": 228, "end": 233, "id": 38, "annotation": null}, {"text": "optical", "start": 234, "end": 241, "id": 39, "annotation": null}, {"text": "phonon", "start": 242, "end": 248, "id": 40, "annotation": null}, {"text": ",", "start": 249, "end": 250, "id": 41, "annotation": null}, {"text": "piezoelectric", "start": 251, "end": 264, "id": 42, "annotation": null}, {"text": ",", "start": 265, "end": 266, "id": 43, "annotation": null}, {"text": "deformation", "start": 267, "end": 278, "id": 44, "annotation": null}, {"text": "potential", "start": 279, "end": 288, "id": 45, "annotation": null}, {"text": "and", "start": 289, "end": 292, "id": 46, "annotation": null}, {"text": "intervalley", "start": 293, "end": 304, "id": 47, "annotation": null}, {"text": "scattering", "start": 305, "end": 315, "id": 48, "annotation": null}, {"text": "mechanisms", "start": 316, "end": 326, "id": 49, "annotation": null}, {"text": "are", "start": 327, "end": 330, "id": 50, "annotation": null}, {"text": "considered", "start": 331, "end": 341, "id": 51, "annotation": null}, {"text": ".", "start": 342, "end": 343, "id": 52, "annotation": null}], [{"text": "We", "start": 344, "end": 346, "id": 53, "annotation": null}, {"text": "find", "start": 347, "end": 351, "id": 54, "annotation": null}, {"text": "that", "start": 352, "end": 356, "id": 55, "annotation": null}, {"text": "aluminum", "start": 357, "end": 365, "id": 56, "annotation": "BASEMAT"}, {"text": "nitride", "start": 366, "end": 373, "id": 57, "annotation": "BASEMAT"}, {"text": "exhibits", "start": 374, "end": 382, "id": 58, "annotation": null}, {"text": "peak", "start": 383, "end": 387, "id": 59, "annotation": null}, {"text": "and", "start": 388, "end": 391, "id": 60, "annotation": null}, {"text": "saturation", "start": 392, "end": 402, "id": 61, "annotation": null}, {"text": "drift", "start": 403, "end": 408, "id": 62, "annotation": null}, {"text": "velocities", "start": 409, "end": 419, "id": 63, "annotation": null}, {"text": "of", "start": 420, "end": 422, "id": 64, "annotation": null}, {"text": "1.7", "start": 423, "end": 426, "id": 65, "annotation": null}, {"text": "\u00d7", "start": 427, "end": 428, "id": 66, "annotation": null}, {"text": "107", "start": 429, "end": 432, "id": 67, "annotation": null}, {"text": "cm", "start": 433, "end": 435, "id": 68, "annotation": null}, {"text": "s\u22121", "start": 436, "end": 439, "id": 69, "annotation": null}, {"text": "and", "start": 440, "end": 443, "id": 70, "annotation": null}, {"text": "1.4", "start": 444, "end": 447, "id": 71, "annotation": null}, {"text": "\u00d7", "start": 448, "end": 449, "id": 72, "annotation": null}, {"text": "107", "start": 450, "end": 453, "id": 73, "annotation": null}, {"text": "cm", "start": 454, "end": 456, "id": 74, "annotation": null}, {"text": "s\u22121", "start": 457, "end": 460, "id": 75, "annotation": null}, {"text": ",", "start": 461, "end": 462, "id": 76, "annotation": null}, {"text": "respectively", "start": 463, "end": 475, "id": 77, "annotation": null}, {"text": ",", "start": 476, "end": 477, "id": 78, "annotation": null}, {"text": "at", "start": 478, "end": 480, "id": 79, "annotation": null}, {"text": "a", "start": 481, "end": 482, "id": 80, "annotation": null}, {"text": "temperature", "start": 483, "end": 494, "id": 81, "annotation": null}, {"text": "of", "start": 495, "end": 497, "id": 82, "annotation": null}, {"text": "300", "start": 498, "end": 501, "id": 83, "annotation": null}, {"text": "K", "start": 502, "end": 503, "id": 84, "annotation": null}, {"text": "and", "start": 504, "end": 507, "id": 85, "annotation": null}, {"text": "a", "start": 508, "end": 509, "id": 86, "annotation": null}, {"text": "doping", "start": 510, "end": 516, "id": 87, "annotation": null}, {"text": "concentration", "start": 517, "end": 530, "id": 88, "annotation": null}, {"text": "of", "start": 531, "end": 533, "id": 89, "annotation": null}, {"text": "1.0", "start": 534, "end": 537, "id": 90, "annotation": "DOPMODQ"}, {"text": "\u00d7", "start": 538, "end": 539, "id": 91, "annotation": null}, {"text": "1017", "start": 540, "end": 544, "id": 92, "annotation": null}, {"text": "cm\u22123", "start": 545, "end": 549, "id": 93, "annotation": "DOPMODQ"}, {"text": ".", "start": 550, "end": 551, "id": 94, "annotation": null}], [{"text": "The", "start": 552, "end": 555, "id": 95, "annotation": null}, {"text": "sensitivity", "start": 556, "end": 567, "id": 96, "annotation": null}, {"text": "of", "start": 568, "end": 570, "id": 97, "annotation": null}, {"text": "these", "start": 571, "end": 576, "id": 98, "annotation": null}, {"text": "steady", "start": 577, "end": 583, "id": 99, "annotation": null}, {"text": "-", "start": 584, "end": 585, "id": 100, "annotation": null}, {"text": "state", "start": 586, "end": 591, "id": 101, "annotation": null}, {"text": "results", "start": 592, "end": 599, "id": 102, "annotation": null}, {"text": "to", "start": 600, "end": 602, "id": 103, "annotation": null}, {"text": "variations", "start": 603, "end": 613, "id": 104, "annotation": null}, {"text": "in", "start": 614, "end": 616, "id": 105, "annotation": null}, {"text": "temperature", "start": 617, "end": 628, "id": 106, "annotation": null}, {"text": "and", "start": 629, "end": 632, "id": 107, "annotation": null}, {"text": "doping", "start": 633, "end": 639, "id": 108, "annotation": null}, {"text": "concentration", "start": 640, "end": 653, "id": 109, "annotation": null}, {"text": "is", "start": 654, "end": 656, "id": 110, "annotation": null}, {"text": "examined", "start": 657, "end": 665, "id": 111, "annotation": null}, {"text": "and", "start": 666, "end": 669, "id": 112, "annotation": null}, {"text": "is", "start": 670, "end": 672, "id": 113, "annotation": null}, {"text": "found", "start": 673, "end": 678, "id": 114, "annotation": null}, {"text": "to", "start": 679, "end": 681, "id": 115, "annotation": null}, {"text": "be", "start": 682, "end": 684, "id": 116, "annotation": null}, {"text": "much", "start": 685, "end": 689, "id": 117, "annotation": null}, {"text": "less", "start": 690, "end": 694, "id": 118, "annotation": null}, {"text": "than", "start": 695, "end": 699, "id": 119, "annotation": null}, {"text": "that", "start": 700, "end": 704, "id": 120, "annotation": null}, {"text": "of", "start": 705, "end": 707, "id": 121, "annotation": null}, {"text": "gallium", "start": 708, "end": 715, "id": 122, "annotation": null}, {"text": "arsenide", "start": 716, "end": 724, "id": 123, "annotation": null}, {"text": ".", "start": 725, "end": 726, "id": 124, "annotation": null}], [{"text": "We", "start": 727, "end": 729, "id": 125, "annotation": null}, {"text": "also", "start": 730, "end": 734, "id": 126, "annotation": null}, {"text": "explore", "start": 735, "end": 742, "id": 127, "annotation": null}, {"text": "the", "start": 743, "end": 746, "id": 128, "annotation": null}, {"text": "sensitivity", "start": 747, "end": 758, "id": 129, "annotation": null}, {"text": "of", "start": 759, "end": 761, "id": 130, "annotation": null}, {"text": "our", "start": 762, "end": 765, "id": 131, "annotation": null}, {"text": "results", "start": 766, "end": 773, "id": 132, "annotation": null}, {"text": "to", "start": 774, "end": 776, "id": 133, "annotation": null}, {"text": "variations", "start": 777, "end": 787, "id": 134, "annotation": null}, {"text": "in", "start": 788, "end": 790, "id": 135, "annotation": null}, {"text": "the", "start": 791, "end": 794, "id": 136, "annotation": null}, {"text": "piezoelectric", "start": 795, "end": 808, "id": 137, "annotation": null}, {"text": "constant", "start": 809, "end": 817, "id": 138, "annotation": null}, {"text": "and", "start": 818, "end": 821, "id": 139, "annotation": null}, {"text": "demonstrate", "start": 822, "end": 833, "id": 140, "annotation": null}, {"text": "that", "start": 834, "end": 838, "id": 141, "annotation": null}, {"text": "piezoelectric", "start": 839, "end": 852, "id": 142, "annotation": null}, {"text": "scattering", "start": 853, "end": 863, "id": 143, "annotation": null}, {"text": "plays", "start": 864, "end": 869, "id": 144, "annotation": null}, {"text": "a", "start": 870, "end": 871, "id": 145, "annotation": null}, {"text": "significant", "start": 872, "end": 883, "id": 146, "annotation": null}, {"text": "role", "start": 884, "end": 888, "id": 147, "annotation": null}, {"text": "in", "start": 889, "end": 891, "id": 148, "annotation": null}, {"text": "determining", "start": 892, "end": 903, "id": 149, "annotation": null}, {"text": "the", "start": 904, "end": 907, "id": 150, "annotation": null}, {"text": "form", "start": 908, "end": 912, "id": 151, "annotation": null}, {"text": "of", "start": 913, "end": 915, "id": 152, "annotation": null}, {"text": "the", "start": 916, "end": 919, "id": 153, "annotation": null}, {"text": "wurtzite", "start": 920, "end": 928, "id": 154, "annotation": null}, {"text": "aluminum", "start": 929, "end": 937, "id": 155, "annotation": null}, {"text": "nitride", "start": 938, "end": 945, "id": 156, "annotation": null}, {"text": "velocity", "start": 946, "end": 954, "id": 157, "annotation": null}, {"text": "-", "start": 955, "end": 956, "id": 158, "annotation": null}, {"text": "field", "start": 957, "end": 962, "id": 159, "annotation": null}, {"text": "characteristic", "start": 963, "end": 977, "id": 160, "annotation": null}, {"text": ".", "start": 978, "end": 979, "id": 161, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "We present the steady-state, velocity-field characteristics of wurtzite aluminum nitride, determined using an ensemble Monte Carlo approach. A three valley model for the conduction band is employed and ionized impurity, polar optical phonon, piezoelectric, deformation potential and intervalley scattering mechanisms are considered. We find that aluminum nitride exhibits peak and saturation drift velocities of 1.7 \u00d7 107 cm s\u22121 and 1.4 \u00d7 107 cm s\u22121, respectively, at a temperature of 300 K and a doping concentration of 1.0 \u00d7 1017 cm\u22123. The sensitivity of these steady-state results to variations in temperature and doping concentration is examined and is found to be much less than that of gallium arsenide. We also explore the sensitivity of our results to variations in the piezoelectric constant and demonstrate that piezoelectric scattering plays a significant role in determining the form of the wurtzite aluminum nitride velocity-field characteristic.", "meta": {"doi": "10.1016/S0038-1098(97)10207-1"}, "_input_hash": 952360092, "_task_hash": 1121955769, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "present", "start": 3, "end": 10, "id": 1, "annotation": null}, {"text": "the", "start": 11, "end": 14, "id": 2, "annotation": null}, {"text": "steady", "start": 15, "end": 21, "id": 3, "annotation": null}, {"text": "-", "start": 22, "end": 23, "id": 4, "annotation": null}, {"text": "state", "start": 24, "end": 29, "id": 5, "annotation": null}, {"text": ",", "start": 30, "end": 31, "id": 6, "annotation": null}, {"text": "velocity", "start": 32, "end": 40, "id": 7, "annotation": null}, {"text": "-", "start": 41, "end": 42, "id": 8, "annotation": null}, {"text": "field", "start": 43, "end": 48, "id": 9, "annotation": null}, {"text": "characteristics", "start": 49, "end": 64, "id": 10, "annotation": null}, {"text": "of", "start": 65, "end": 67, "id": 11, "annotation": null}, {"text": "wurtzite", "start": 68, "end": 76, "id": 12, "annotation": null}, {"text": "aluminum", "start": 77, "end": 85, "id": 13, "annotation": null}, {"text": "nitride", "start": 86, "end": 93, "id": 14, "annotation": null}, {"text": ",", "start": 94, "end": 95, "id": 15, "annotation": null}, {"text": "determined", "start": 96, "end": 106, "id": 16, "annotation": null}, {"text": "using", "start": 107, "end": 112, "id": 17, "annotation": null}, {"text": "an", "start": 113, "end": 115, "id": 18, "annotation": null}, {"text": "ensemble", "start": 116, "end": 124, "id": 19, "annotation": null}, {"text": "Monte", "start": 125, "end": 130, "id": 20, "annotation": null}, {"text": "Carlo", "start": 131, "end": 136, "id": 21, "annotation": null}, {"text": "approach", "start": 137, "end": 145, "id": 22, "annotation": null}, {"text": ".", "start": 146, "end": 147, "id": 23, "annotation": null}], [{"text": "A", "start": 148, "end": 149, "id": 24, "annotation": null}, {"text": "three", "start": 150, "end": 155, "id": 25, "annotation": null}, {"text": "valley", "start": 156, "end": 162, "id": 26, "annotation": null}, {"text": "model", "start": 163, "end": 168, "id": 27, "annotation": null}, {"text": "for", "start": 169, "end": 172, "id": 28, "annotation": null}, {"text": "the", "start": 173, "end": 176, "id": 29, "annotation": null}, {"text": "conduction", "start": 177, "end": 187, "id": 30, "annotation": null}, {"text": "band", "start": 188, "end": 192, "id": 31, "annotation": null}, {"text": "is", "start": 193, "end": 195, "id": 32, "annotation": null}, {"text": "employed", "start": 196, "end": 204, "id": 33, "annotation": null}, {"text": "and", "start": 205, "end": 208, "id": 34, "annotation": null}, {"text": "ionized", "start": 209, "end": 216, "id": 35, "annotation": null}, {"text": "impurity", "start": 217, "end": 225, "id": 36, "annotation": null}, {"text": ",", "start": 226, "end": 227, "id": 37, "annotation": null}, {"text": "polar", "start": 228, "end": 233, "id": 38, "annotation": null}, {"text": "optical", "start": 234, "end": 241, "id": 39, "annotation": null}, {"text": "phonon", "start": 242, "end": 248, "id": 40, "annotation": null}, {"text": ",", "start": 249, "end": 250, "id": 41, "annotation": null}, {"text": "piezoelectric", "start": 251, "end": 264, "id": 42, "annotation": null}, {"text": ",", "start": 265, "end": 266, "id": 43, "annotation": null}, {"text": "deformation", "start": 267, "end": 278, "id": 44, "annotation": null}, {"text": "potential", "start": 279, "end": 288, "id": 45, "annotation": null}, {"text": "and", "start": 289, "end": 292, "id": 46, "annotation": null}, {"text": "intervalley", "start": 293, "end": 304, "id": 47, "annotation": null}, {"text": "scattering", "start": 305, "end": 315, "id": 48, "annotation": null}, {"text": "mechanisms", "start": 316, "end": 326, "id": 49, "annotation": null}, {"text": "are", "start": 327, "end": 330, "id": 50, "annotation": null}, {"text": "considered", "start": 331, "end": 341, "id": 51, "annotation": null}, {"text": ".", "start": 342, "end": 343, "id": 52, "annotation": null}], [{"text": "We", "start": 344, "end": 346, "id": 53, "annotation": null}, {"text": "find", "start": 347, "end": 351, "id": 54, "annotation": null}, {"text": "that", "start": 352, "end": 356, "id": 55, "annotation": null}, {"text": "aluminum", "start": 357, "end": 365, "id": 56, "annotation": "BASEMAT"}, {"text": "nitride", "start": 366, "end": 373, "id": 57, "annotation": "BASEMAT"}, {"text": "exhibits", "start": 374, "end": 382, "id": 58, "annotation": null}, {"text": "peak", "start": 383, "end": 387, "id": 59, "annotation": null}, {"text": "and", "start": 388, "end": 391, "id": 60, "annotation": null}, {"text": "saturation", "start": 392, "end": 402, "id": 61, "annotation": null}, {"text": "drift", "start": 403, "end": 408, "id": 62, "annotation": null}, {"text": "velocities", "start": 409, "end": 419, "id": 63, "annotation": null}, {"text": "of", "start": 420, "end": 422, "id": 64, "annotation": null}, {"text": "1.7", "start": 423, "end": 426, "id": 65, "annotation": null}, {"text": "\u00d7", "start": 427, "end": 428, "id": 66, "annotation": null}, {"text": "107", "start": 429, "end": 432, "id": 67, "annotation": null}, {"text": "cm", "start": 433, "end": 435, "id": 68, "annotation": null}, {"text": "s\u22121", "start": 436, "end": 439, "id": 69, "annotation": null}, {"text": "and", "start": 440, "end": 443, "id": 70, "annotation": null}, {"text": "1.4", "start": 444, "end": 447, "id": 71, "annotation": null}, {"text": "\u00d7", "start": 448, "end": 449, "id": 72, "annotation": null}, {"text": "107", "start": 450, "end": 453, "id": 73, "annotation": null}, {"text": "cm", "start": 454, "end": 456, "id": 74, "annotation": null}, {"text": "s\u22121", "start": 457, "end": 460, "id": 75, "annotation": null}, {"text": ",", "start": 461, "end": 462, "id": 76, "annotation": null}, {"text": "respectively", "start": 463, "end": 475, "id": 77, "annotation": null}, {"text": ",", "start": 476, "end": 477, "id": 78, "annotation": null}, {"text": "at", "start": 478, "end": 480, "id": 79, "annotation": null}, {"text": "a", "start": 481, "end": 482, "id": 80, "annotation": null}, {"text": "temperature", "start": 483, "end": 494, "id": 81, "annotation": null}, {"text": "of", "start": 495, "end": 497, "id": 82, "annotation": null}, {"text": "300", "start": 498, "end": 501, "id": 83, "annotation": null}, {"text": "K", "start": 502, "end": 503, "id": 84, "annotation": null}, {"text": "and", "start": 504, "end": 507, "id": 85, "annotation": null}, {"text": "a", "start": 508, "end": 509, "id": 86, "annotation": null}, {"text": "doping", "start": 510, "end": 516, "id": 87, "annotation": null}, {"text": "concentration", "start": 517, "end": 530, "id": 88, "annotation": null}, {"text": "of", "start": 531, "end": 533, "id": 89, "annotation": null}, {"text": "1.0", "start": 534, "end": 537, "id": 90, "annotation": "DOPMODQ"}, {"text": "\u00d7", "start": 538, "end": 539, "id": 91, "annotation": "DOPMODQ"}, {"text": "1017", "start": 540, "end": 544, "id": 92, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 545, "end": 549, "id": 93, "annotation": "DOPMODQ"}, {"text": ".", "start": 550, "end": 551, "id": 94, "annotation": null}], [{"text": "The", "start": 552, "end": 555, "id": 95, "annotation": null}, {"text": "sensitivity", "start": 556, "end": 567, "id": 96, "annotation": null}, {"text": "of", "start": 568, "end": 570, "id": 97, "annotation": null}, {"text": "these", "start": 571, "end": 576, "id": 98, "annotation": null}, {"text": "steady", "start": 577, "end": 583, "id": 99, "annotation": null}, {"text": "-", "start": 584, "end": 585, "id": 100, "annotation": null}, {"text": "state", "start": 586, "end": 591, "id": 101, "annotation": null}, {"text": "results", "start": 592, "end": 599, "id": 102, "annotation": null}, {"text": "to", "start": 600, "end": 602, "id": 103, "annotation": null}, {"text": "variations", "start": 603, "end": 613, "id": 104, "annotation": null}, {"text": "in", "start": 614, "end": 616, "id": 105, "annotation": null}, {"text": "temperature", "start": 617, "end": 628, "id": 106, "annotation": null}, {"text": "and", "start": 629, "end": 632, "id": 107, "annotation": null}, {"text": "doping", "start": 633, "end": 639, "id": 108, "annotation": null}, {"text": "concentration", "start": 640, "end": 653, "id": 109, "annotation": null}, {"text": "is", "start": 654, "end": 656, "id": 110, "annotation": null}, {"text": "examined", "start": 657, "end": 665, "id": 111, "annotation": null}, {"text": "and", "start": 666, "end": 669, "id": 112, "annotation": null}, {"text": "is", "start": 670, "end": 672, "id": 113, "annotation": null}, {"text": "found", "start": 673, "end": 678, "id": 114, "annotation": null}, {"text": "to", "start": 679, "end": 681, "id": 115, "annotation": null}, {"text": "be", "start": 682, "end": 684, "id": 116, "annotation": null}, {"text": "much", "start": 685, "end": 689, "id": 117, "annotation": null}, {"text": "less", "start": 690, "end": 694, "id": 118, "annotation": null}, {"text": "than", "start": 695, "end": 699, "id": 119, "annotation": null}, {"text": "that", "start": 700, "end": 704, "id": 120, "annotation": null}, {"text": "of", "start": 705, "end": 707, "id": 121, "annotation": null}, {"text": "gallium", "start": 708, "end": 715, "id": 122, "annotation": null}, {"text": "arsenide", "start": 716, "end": 724, "id": 123, "annotation": null}, {"text": ".", "start": 725, "end": 726, "id": 124, "annotation": null}], [{"text": "We", "start": 727, "end": 729, "id": 125, "annotation": null}, {"text": "also", "start": 730, "end": 734, "id": 126, "annotation": null}, {"text": "explore", "start": 735, "end": 742, "id": 127, "annotation": null}, {"text": "the", "start": 743, "end": 746, "id": 128, "annotation": null}, {"text": "sensitivity", "start": 747, "end": 758, "id": 129, "annotation": null}, {"text": "of", "start": 759, "end": 761, "id": 130, "annotation": null}, {"text": "our", "start": 762, "end": 765, "id": 131, "annotation": null}, {"text": "results", "start": 766, "end": 773, "id": 132, "annotation": null}, {"text": "to", "start": 774, "end": 776, "id": 133, "annotation": null}, {"text": "variations", "start": 777, "end": 787, "id": 134, "annotation": null}, {"text": "in", "start": 788, "end": 790, "id": 135, "annotation": null}, {"text": "the", "start": 791, "end": 794, "id": 136, "annotation": null}, {"text": "piezoelectric", "start": 795, "end": 808, "id": 137, "annotation": null}, {"text": "constant", "start": 809, "end": 817, "id": 138, "annotation": null}, {"text": "and", "start": 818, "end": 821, "id": 139, "annotation": null}, {"text": "demonstrate", "start": 822, "end": 833, "id": 140, "annotation": null}, {"text": "that", "start": 834, "end": 838, "id": 141, "annotation": null}, {"text": "piezoelectric", "start": 839, "end": 852, "id": 142, "annotation": null}, {"text": "scattering", "start": 853, "end": 863, "id": 143, "annotation": null}, {"text": "plays", "start": 864, "end": 869, "id": 144, "annotation": null}, {"text": "a", "start": 870, "end": 871, "id": 145, "annotation": null}, {"text": "significant", "start": 872, "end": 883, "id": 146, "annotation": null}, {"text": "role", "start": 884, "end": 888, "id": 147, "annotation": null}, {"text": "in", "start": 889, "end": 891, "id": 148, "annotation": null}, {"text": "determining", "start": 892, "end": 903, "id": 149, "annotation": null}, {"text": "the", "start": 904, "end": 907, "id": 150, "annotation": null}, {"text": "form", "start": 908, "end": 912, "id": 151, "annotation": null}, {"text": "of", "start": 913, "end": 915, "id": 152, "annotation": null}, {"text": "the", "start": 916, "end": 919, "id": 153, "annotation": null}, {"text": "wurtzite", "start": 920, "end": 928, "id": 154, "annotation": null}, {"text": "aluminum", "start": 929, "end": 937, "id": 155, "annotation": null}, {"text": "nitride", "start": 938, "end": 945, "id": 156, "annotation": null}, {"text": "velocity", "start": 946, "end": 954, "id": 157, "annotation": null}, {"text": "-", "start": 955, "end": 956, "id": 158, "annotation": null}, {"text": "field", "start": 957, "end": 962, "id": 159, "annotation": null}, {"text": "characteristic", "start": 963, "end": 977, "id": 160, "annotation": null}, {"text": ".", "start": 978, "end": 979, "id": 161, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "A facile hydrothermal route via high temperature mixing method was used to synthesize (K, Na) (Nb, Ta)O3 lead-free piezoelectric ceramic powders. The influence of Ta doping and K+/(K++Na+) molar ratios in the starting solution on the resultant powders were investigated by X-ray diffraction, scanning electron microscope, transmission electron microscopy, and selected area electron diffraction. The Ta element was successfully doped into the alkaline niobate structure to form crystalline (K, Na) (Nb, Ta)O3 lead-free piezoelectric ceramics powder. The microstructure, piezoelectric, ferroelectric, and dielectric properties of the sintered (K, Na) (Nb, Ta)O3 ceramics from the obtained powders were investigated. The piezoelectric coefficient (d33), electromechanical coupling coefficient (kp), dielectric constant (\u025br), and remnant polarization (Pr) of the sample sintered at 1180\u00b0C show optimal values of 210pC/N, 34.0%, 2302, and 19.01\u03bcC/cm2, respectively.", "meta": {"doi": "10.1016/j.ceramint.2011.10.003"}, "_input_hash": 1524162548, "_task_hash": 1637200711, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "facile", "start": 2, "end": 8, "id": 1, "annotation": null}, {"text": "hydrothermal", "start": 9, "end": 21, "id": 2, "annotation": null}, {"text": "route", "start": 22, "end": 27, "id": 3, "annotation": null}, {"text": "via", "start": 28, "end": 31, "id": 4, "annotation": null}, {"text": "high", "start": 32, "end": 36, "id": 5, "annotation": null}, {"text": "temperature", "start": 37, "end": 48, "id": 6, "annotation": null}, {"text": "mixing", "start": 49, "end": 55, "id": 7, "annotation": null}, {"text": "method", "start": 56, "end": 62, "id": 8, "annotation": null}, {"text": "was", "start": 63, "end": 66, "id": 9, "annotation": null}, {"text": "used", "start": 67, "end": 71, "id": 10, "annotation": null}, {"text": "to", "start": 72, "end": 74, "id": 11, "annotation": null}, {"text": "synthesize", "start": 75, "end": 85, "id": 12, "annotation": null}, {"text": "(", "start": 86, "end": 87, "id": 13, "annotation": null}, {"text": "K", "start": 88, "end": 89, "id": 14, "annotation": null}, {"text": ",", "start": 90, "end": 91, "id": 15, "annotation": null}, {"text": "Na", "start": 92, "end": 94, "id": 16, "annotation": null}, {"text": ")", "start": 95, "end": 96, "id": 17, "annotation": null}, {"text": "(", "start": 97, "end": 98, "id": 18, "annotation": null}, {"text": "Nb", "start": 99, "end": 101, "id": 19, "annotation": null}, {"text": ",", "start": 102, "end": 103, "id": 20, "annotation": null}, {"text": "Ta)O3", "start": 104, "end": 109, "id": 21, "annotation": null}, {"text": "lead", "start": 110, "end": 114, "id": 22, "annotation": null}, {"text": "-", "start": 115, "end": 116, "id": 23, "annotation": null}, {"text": "free", "start": 117, "end": 121, "id": 24, "annotation": null}, {"text": "piezoelectric", "start": 122, "end": 135, "id": 25, "annotation": null}, {"text": "ceramic", "start": 136, "end": 143, "id": 26, "annotation": null}, {"text": "powders", "start": 144, "end": 151, "id": 27, "annotation": null}, {"text": ".", "start": 152, "end": 153, "id": 28, "annotation": null}], [{"text": "The", "start": 154, "end": 157, "id": 29, "annotation": null}, {"text": "influence", "start": 158, "end": 167, "id": 30, "annotation": null}, {"text": "of", "start": 168, "end": 170, "id": 31, "annotation": null}, {"text": "Ta", "start": 171, "end": 173, "id": 32, "annotation": "DOPANT"}, {"text": "doping", "start": 174, "end": 180, "id": 33, "annotation": null}, {"text": "and", "start": 181, "end": 184, "id": 34, "annotation": null}, {"text": "K+/(K++Na+", "start": 185, "end": 195, "id": 35, "annotation": null}, {"text": ")", "start": 196, "end": 197, "id": 36, "annotation": null}, {"text": "molar", "start": 198, "end": 203, "id": 37, "annotation": null}, {"text": "ratios", "start": 204, "end": 210, "id": 38, "annotation": null}, {"text": "in", "start": 211, "end": 213, "id": 39, "annotation": null}, {"text": "the", "start": 214, "end": 217, "id": 40, "annotation": null}, {"text": "starting", "start": 218, "end": 226, "id": 41, "annotation": null}, {"text": "solution", "start": 227, "end": 235, "id": 42, "annotation": null}, {"text": "on", "start": 236, "end": 238, "id": 43, "annotation": null}, {"text": "the", "start": 239, "end": 242, "id": 44, "annotation": null}, {"text": "resultant", "start": 243, "end": 252, "id": 45, "annotation": null}, {"text": "powders", "start": 253, "end": 260, "id": 46, "annotation": "BASEMAT"}, {"text": "were", "start": 261, "end": 265, "id": 47, "annotation": null}, {"text": "investigated", "start": 266, "end": 278, "id": 48, "annotation": null}, {"text": "by", "start": 279, "end": 281, "id": 49, "annotation": null}, {"text": "X", "start": 282, "end": 283, "id": 50, "annotation": null}, {"text": "-", "start": 284, "end": 285, "id": 51, "annotation": null}, {"text": "ray", "start": 286, "end": 289, "id": 52, "annotation": null}, {"text": "diffraction", "start": 290, "end": 301, "id": 53, "annotation": null}, {"text": ",", "start": 302, "end": 303, "id": 54, "annotation": null}, {"text": "scanning", "start": 304, "end": 312, "id": 55, "annotation": null}, {"text": "electron", "start": 313, "end": 321, "id": 56, "annotation": null}, {"text": "microscope", "start": 322, "end": 332, "id": 57, "annotation": null}, {"text": ",", "start": 333, "end": 334, "id": 58, "annotation": null}, {"text": "transmission", "start": 335, "end": 347, "id": 59, "annotation": null}, {"text": "electron", "start": 348, "end": 356, "id": 60, "annotation": null}, {"text": "microscopy", "start": 357, "end": 367, "id": 61, "annotation": null}, {"text": ",", "start": 368, "end": 369, "id": 62, "annotation": null}, {"text": "and", "start": 370, "end": 373, "id": 63, "annotation": null}, {"text": "selected", "start": 374, "end": 382, "id": 64, "annotation": null}, {"text": "area", "start": 383, "end": 387, "id": 65, "annotation": null}, {"text": "electron", "start": 388, "end": 396, "id": 66, "annotation": null}, {"text": "diffraction", "start": 397, "end": 408, "id": 67, "annotation": null}, {"text": ".", "start": 409, "end": 410, "id": 68, "annotation": null}], [{"text": "The", "start": 411, "end": 414, "id": 69, "annotation": null}, {"text": "Ta", "start": 415, "end": 417, "id": 70, "annotation": "DOPANT"}, {"text": "element", "start": 418, "end": 425, "id": 71, "annotation": null}, {"text": "was", "start": 426, "end": 429, "id": 72, "annotation": null}, {"text": "successfully", "start": 430, "end": 442, "id": 73, "annotation": null}, {"text": "doped", "start": 443, "end": 448, "id": 74, "annotation": null}, {"text": "into", "start": 449, "end": 453, "id": 75, "annotation": null}, {"text": "the", "start": 454, "end": 457, "id": 76, "annotation": null}, {"text": "alkaline", "start": 458, "end": 466, "id": 77, "annotation": "BASEMAT"}, {"text": "niobate", "start": 467, "end": 474, "id": 78, "annotation": "BASEMAT"}, {"text": "structure", "start": 475, "end": 484, "id": 79, "annotation": null}, {"text": "to", "start": 485, "end": 487, "id": 80, "annotation": null}, {"text": "form", "start": 488, "end": 492, "id": 81, "annotation": null}, {"text": "crystalline", "start": 493, "end": 504, "id": 82, "annotation": null}, {"text": "(", "start": 505, "end": 506, "id": 83, "annotation": null}, {"text": "K", "start": 507, "end": 508, "id": 84, "annotation": null}, {"text": ",", "start": 509, "end": 510, "id": 85, "annotation": null}, {"text": "Na", "start": 511, "end": 513, "id": 86, "annotation": null}, {"text": ")", "start": 514, "end": 515, "id": 87, "annotation": null}, {"text": "(", "start": 516, "end": 517, "id": 88, "annotation": null}, {"text": "Nb", "start": 518, "end": 520, "id": 89, "annotation": null}, {"text": ",", "start": 521, "end": 522, "id": 90, "annotation": null}, {"text": "Ta)O3", "start": 523, "end": 528, "id": 91, "annotation": null}, {"text": "lead", "start": 529, "end": 533, "id": 92, "annotation": null}, {"text": "-", "start": 534, "end": 535, "id": 93, "annotation": null}, {"text": "free", "start": 536, "end": 540, "id": 94, "annotation": null}, {"text": "piezoelectric", "start": 541, "end": 554, "id": 95, "annotation": null}, {"text": "ceramics", "start": 555, "end": 563, "id": 96, "annotation": null}, {"text": "powder", "start": 564, "end": 570, "id": 97, "annotation": null}, {"text": ".", "start": 571, "end": 572, "id": 98, "annotation": null}], [{"text": "The", "start": 573, "end": 576, "id": 99, "annotation": null}, {"text": "microstructure", "start": 577, "end": 591, "id": 100, "annotation": null}, {"text": ",", "start": 592, "end": 593, "id": 101, "annotation": null}, {"text": "piezoelectric", "start": 594, "end": 607, "id": 102, "annotation": null}, {"text": ",", "start": 608, "end": 609, "id": 103, "annotation": null}, {"text": "ferroelectric", "start": 610, "end": 623, "id": 104, "annotation": null}, {"text": ",", "start": 624, "end": 625, "id": 105, "annotation": null}, {"text": "and", "start": 626, "end": 629, "id": 106, "annotation": null}, {"text": "dielectric", "start": 630, "end": 640, "id": 107, "annotation": null}, {"text": "properties", "start": 641, "end": 651, "id": 108, "annotation": null}, {"text": "of", "start": 652, "end": 654, "id": 109, "annotation": null}, {"text": "the", "start": 655, "end": 658, "id": 110, "annotation": null}, {"text": "sintered", "start": 659, "end": 667, "id": 111, "annotation": null}, {"text": "(", "start": 668, "end": 669, "id": 112, "annotation": null}, {"text": "K", "start": 670, "end": 671, "id": 113, "annotation": null}, {"text": ",", "start": 672, "end": 673, "id": 114, "annotation": null}, {"text": "Na", "start": 674, "end": 676, "id": 115, "annotation": null}, {"text": ")", "start": 677, "end": 678, "id": 116, "annotation": null}, {"text": "(", "start": 679, "end": 680, "id": 117, "annotation": null}, {"text": "Nb", "start": 681, "end": 683, "id": 118, "annotation": null}, {"text": ",", "start": 684, "end": 685, "id": 119, "annotation": null}, {"text": "Ta)O3", "start": 686, "end": 691, "id": 120, "annotation": null}, {"text": "ceramics", "start": 692, "end": 700, "id": 121, "annotation": null}, {"text": "from", "start": 701, "end": 705, "id": 122, "annotation": null}, {"text": "the", "start": 706, "end": 709, "id": 123, "annotation": null}, {"text": "obtained", "start": 710, "end": 718, "id": 124, "annotation": null}, {"text": "powders", "start": 719, "end": 726, "id": 125, "annotation": null}, {"text": "were", "start": 727, "end": 731, "id": 126, "annotation": null}, {"text": "investigated", "start": 732, "end": 744, "id": 127, "annotation": null}, {"text": ".", "start": 745, "end": 746, "id": 128, "annotation": null}], [{"text": "The", "start": 747, "end": 750, "id": 129, "annotation": null}, {"text": "piezoelectric", "start": 751, "end": 764, "id": 130, "annotation": null}, {"text": "coefficient", "start": 765, "end": 776, "id": 131, "annotation": null}, {"text": "(", "start": 777, "end": 778, "id": 132, "annotation": null}, {"text": "d33", "start": 779, "end": 782, "id": 133, "annotation": null}, {"text": ")", "start": 783, "end": 784, "id": 134, "annotation": null}, {"text": ",", "start": 785, "end": 786, "id": 135, "annotation": null}, {"text": "electromechanical", "start": 787, "end": 804, "id": 136, "annotation": null}, {"text": "coupling", "start": 805, "end": 813, "id": 137, "annotation": null}, {"text": "coefficient", "start": 814, "end": 825, "id": 138, "annotation": null}, {"text": "(", "start": 826, "end": 827, "id": 139, "annotation": null}, {"text": "kp", "start": 828, "end": 830, "id": 140, "annotation": null}, {"text": ")", "start": 831, "end": 832, "id": 141, "annotation": null}, {"text": ",", "start": 833, "end": 834, "id": 142, "annotation": null}, {"text": "dielectric", "start": 835, "end": 845, "id": 143, "annotation": null}, {"text": "constant", "start": 846, "end": 854, "id": 144, "annotation": null}, {"text": "(", "start": 855, "end": 856, "id": 145, "annotation": null}, {"text": "\u025br", "start": 857, "end": 859, "id": 146, "annotation": null}, {"text": ")", "start": 860, "end": 861, "id": 147, "annotation": null}, {"text": ",", "start": 862, "end": 863, "id": 148, "annotation": null}, {"text": "and", "start": 864, "end": 867, "id": 149, "annotation": null}, {"text": "remnant", "start": 868, "end": 875, "id": 150, "annotation": null}, {"text": "polarization", "start": 876, "end": 888, "id": 151, "annotation": null}, {"text": "(", "start": 889, "end": 890, "id": 152, "annotation": null}, {"text": "Pr", "start": 891, "end": 893, "id": 153, "annotation": null}, {"text": ")", "start": 894, "end": 895, "id": 154, "annotation": null}, {"text": "of", "start": 896, "end": 898, "id": 155, "annotation": null}, {"text": "the", "start": 899, "end": 902, "id": 156, "annotation": null}, {"text": "sample", "start": 903, "end": 909, "id": 157, "annotation": null}, {"text": "sintered", "start": 910, "end": 918, "id": 158, "annotation": null}, {"text": "at", "start": 919, "end": 921, "id": 159, "annotation": null}, {"text": "1180", "start": 922, "end": 926, "id": 160, "annotation": null}, {"text": "\u00b0", "start": 927, "end": 928, "id": 161, "annotation": null}, {"text": "C", "start": 929, "end": 930, "id": 162, "annotation": null}, {"text": "show", "start": 931, "end": 935, "id": 163, "annotation": null}, {"text": "optimal", "start": 936, "end": 943, "id": 164, "annotation": null}, {"text": "values", "start": 944, "end": 950, "id": 165, "annotation": null}, {"text": "of", "start": 951, "end": 953, "id": 166, "annotation": null}, {"text": "210pC", "start": 954, "end": 959, "id": 167, "annotation": null}, {"text": "/", "start": 960, "end": 961, "id": 168, "annotation": null}, {"text": "N", "start": 962, "end": 963, "id": 169, "annotation": null}, {"text": ",", "start": 964, "end": 965, "id": 170, "annotation": null}, {"text": "34.0", "start": 966, "end": 970, "id": 171, "annotation": null}, {"text": "%", "start": 971, "end": 972, "id": 172, "annotation": null}, {"text": ",", "start": 973, "end": 974, "id": 173, "annotation": null}, {"text": "2302", "start": 975, "end": 979, "id": 174, "annotation": null}, {"text": ",", "start": 980, "end": 981, "id": 175, "annotation": null}, {"text": "and", "start": 982, "end": 985, "id": 176, "annotation": null}, {"text": "19.01\u03bcC", "start": 986, "end": 993, "id": 177, "annotation": null}, {"text": "/", "start": 994, "end": 995, "id": 178, "annotation": null}, {"text": "cm2", "start": 996, "end": 999, "id": 179, "annotation": null}, {"text": ",", "start": 1000, "end": 1001, "id": 180, "annotation": null}, {"text": "respectively", "start": 1002, "end": 1014, "id": 181, "annotation": null}, {"text": ".", "start": 1015, "end": 1016, "id": 182, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The room-temperature phosphorescence (RTP) of Mn-doped ZnS quantum dots (Mn-ZnS QDs) was quenched by the addition of selenite in the presence of glutathione. The quenching of the RTP emission of Mn-ZnS QDs was due to HSe- ions which was the reaction product of selenite and glutathione. Based on the above finding, a simple, rapid, sensitive probe for selective detection of selenite was successfully fabricated. Under the optimal experimental conditions, a linear relationship was obtained covering the linear range of 0.1-5.0 \u03bcmol L-1 and the detection limit (3\u03c3) was 0.085 \u03bcmol L-1. The proposed method was successfully applied for the determination of selenite in sodium selenite tablets and sodium selenite and vitamin E injection with satisfactory results.", "meta": {"doi": "10.1039/c6ra09702b"}, "_input_hash": -639316004, "_task_hash": 652399305, "tokens": [[{"text": "The", "start": 40, "end": 43, "id": 8, "annotation": null}, {"text": "room", "start": 44, "end": 48, "id": 9, "annotation": null}, {"text": "-", "start": 49, "end": 50, "id": 10, "annotation": null}, {"text": "temperature", "start": 51, "end": 62, "id": 11, "annotation": null}, {"text": "phosphorescence", "start": 63, "end": 78, "id": 12, "annotation": null}, {"text": "(", "start": 79, "end": 80, "id": 13, "annotation": null}, {"text": "RTP", "start": 81, "end": 84, "id": 14, "annotation": null}, {"text": ")", "start": 85, "end": 86, "id": 15, "annotation": null}, {"text": "of", "start": 87, "end": 89, "id": 16, "annotation": null}, {"text": "Mn", "start": 90, "end": 92, "id": 17, "annotation": "DOPANT"}, {"text": "-", "start": 93, "end": 94, "id": 18, "annotation": null}, {"text": "doped", "start": 95, "end": 100, "id": 19, "annotation": null}, {"text": "ZnS", "start": 101, "end": 104, "id": 20, "annotation": "BASEMAT"}, {"text": "quantum", "start": 105, "end": 112, "id": 21, "annotation": null}, {"text": "dots", "start": 113, "end": 117, "id": 22, "annotation": null}, {"text": "(", "start": 118, "end": 119, "id": 23, "annotation": null}, {"text": "Mn", "start": 120, "end": 122, "id": 24, "annotation": "DOPANT"}, {"text": "-", "start": 123, "end": 124, "id": 25, "annotation": null}, {"text": "ZnS", "start": 125, "end": 128, "id": 26, "annotation": "BASEMAT"}, {"text": "QDs", "start": 129, "end": 132, "id": 27, "annotation": null}, {"text": ")", "start": 133, "end": 134, "id": 28, "annotation": null}, {"text": "was", "start": 135, "end": 138, "id": 29, "annotation": null}, {"text": "quenched", "start": 139, "end": 147, "id": 30, "annotation": null}, {"text": "by", "start": 148, "end": 150, "id": 31, "annotation": null}, {"text": "the", "start": 151, "end": 154, "id": 32, "annotation": null}, {"text": "addition", "start": 155, "end": 163, "id": 33, "annotation": null}, {"text": "of", "start": 164, "end": 166, "id": 34, "annotation": null}, {"text": "selenite", "start": 167, "end": 175, "id": 35, "annotation": null}, {"text": "in", "start": 176, "end": 178, "id": 36, "annotation": null}, {"text": "the", "start": 179, "end": 182, "id": 37, "annotation": null}, {"text": "presence", "start": 183, "end": 191, "id": 38, "annotation": null}, {"text": "of", "start": 192, "end": 194, "id": 39, "annotation": null}, {"text": "glutathione", "start": 195, "end": 206, "id": 40, "annotation": null}, {"text": ".", "start": 207, "end": 208, "id": 41, "annotation": null}], [{"text": "The", "start": 209, "end": 212, "id": 42, "annotation": null}, {"text": "quenching", "start": 213, "end": 222, "id": 43, "annotation": null}, {"text": "of", "start": 223, "end": 225, "id": 44, "annotation": null}, {"text": "the", "start": 226, "end": 229, "id": 45, "annotation": null}, {"text": "RTP", "start": 230, "end": 233, "id": 46, "annotation": null}, {"text": "emission", "start": 234, "end": 242, "id": 47, "annotation": null}, {"text": "of", "start": 243, "end": 245, "id": 48, "annotation": null}, {"text": "Mn", "start": 246, "end": 248, "id": 49, "annotation": "DOPANT"}, {"text": "-", "start": 249, "end": 250, "id": 50, "annotation": null}, {"text": "ZnS", "start": 251, "end": 254, "id": 51, "annotation": "BASEMAT"}, {"text": "QDs", "start": 255, "end": 258, "id": 52, "annotation": null}, {"text": "was", "start": 259, "end": 262, "id": 53, "annotation": null}, {"text": "due", "start": 263, "end": 266, "id": 54, "annotation": null}, {"text": "to", "start": 267, "end": 269, "id": 55, "annotation": null}, {"text": "HSe-", "start": 270, "end": 274, "id": 56, "annotation": null}, {"text": "ions", "start": 275, "end": 279, "id": 57, "annotation": null}, {"text": "which", "start": 280, "end": 285, "id": 58, "annotation": null}, {"text": "was", "start": 286, "end": 289, "id": 59, "annotation": null}, {"text": "the", "start": 290, "end": 293, "id": 60, "annotation": null}, {"text": "reaction", "start": 294, "end": 302, "id": 61, "annotation": null}, {"text": "product", "start": 303, "end": 310, "id": 62, "annotation": null}, {"text": "of", "start": 311, "end": 313, "id": 63, "annotation": null}, {"text": "selenite", "start": 314, "end": 322, "id": 64, "annotation": null}, {"text": "and", "start": 323, "end": 326, "id": 65, "annotation": null}, {"text": "glutathione", "start": 327, "end": 338, "id": 66, "annotation": null}, {"text": ".", "start": 339, "end": 340, "id": 67, "annotation": null}], [{"text": "Based", "start": 341, "end": 346, "id": 68, "annotation": null}, {"text": "on", "start": 347, "end": 349, "id": 69, "annotation": null}, {"text": "the", "start": 350, "end": 353, "id": 70, "annotation": null}, {"text": "above", "start": 354, "end": 359, "id": 71, "annotation": null}, {"text": "finding", "start": 360, "end": 367, "id": 72, "annotation": null}, {"text": ",", "start": 368, "end": 369, "id": 73, "annotation": null}, {"text": "a", "start": 370, "end": 371, "id": 74, "annotation": null}, {"text": "simple", "start": 372, "end": 378, "id": 75, "annotation": null}, {"text": ",", "start": 379, "end": 380, "id": 76, "annotation": null}, {"text": "rapid", "start": 381, "end": 386, "id": 77, "annotation": null}, {"text": ",", "start": 387, "end": 388, "id": 78, "annotation": null}, {"text": "sensitive", "start": 389, "end": 398, "id": 79, "annotation": null}, {"text": "probe", "start": 399, "end": 404, "id": 80, "annotation": null}, {"text": "for", "start": 405, "end": 408, "id": 81, "annotation": null}, {"text": "selective", "start": 409, "end": 418, "id": 82, "annotation": null}, {"text": "detection", "start": 419, "end": 428, "id": 83, "annotation": null}, {"text": "of", "start": 429, "end": 431, "id": 84, "annotation": null}, {"text": "selenite", "start": 432, "end": 440, "id": 85, "annotation": null}, {"text": "was", "start": 441, "end": 444, "id": 86, "annotation": null}, {"text": "successfully", "start": 445, "end": 457, "id": 87, "annotation": null}, {"text": "fabricated", "start": 458, "end": 468, "id": 88, "annotation": null}, {"text": ".", "start": 469, "end": 470, "id": 89, "annotation": null}], [{"text": "Under", "start": 471, "end": 476, "id": 90, "annotation": null}, {"text": "the", "start": 477, "end": 480, "id": 91, "annotation": null}, {"text": "optimal", "start": 481, "end": 488, "id": 92, "annotation": null}, {"text": "experimental", "start": 489, "end": 501, "id": 93, "annotation": null}, {"text": "conditions", "start": 502, "end": 512, "id": 94, "annotation": null}, {"text": ",", "start": 513, "end": 514, "id": 95, "annotation": null}, {"text": "a", "start": 515, "end": 516, "id": 96, "annotation": null}, {"text": "linear", "start": 517, "end": 523, "id": 97, "annotation": null}, {"text": "relationship", "start": 524, "end": 536, "id": 98, "annotation": null}, {"text": "was", "start": 537, "end": 540, "id": 99, "annotation": null}, {"text": "obtained", "start": 541, "end": 549, "id": 100, "annotation": null}, {"text": "covering", "start": 550, "end": 558, "id": 101, "annotation": null}, {"text": "the", "start": 559, "end": 562, "id": 102, "annotation": null}, {"text": "linear", "start": 563, "end": 569, "id": 103, "annotation": null}, {"text": "range", "start": 570, "end": 575, "id": 104, "annotation": null}, {"text": "of", "start": 576, "end": 578, "id": 105, "annotation": null}, {"text": "0.1", "start": 579, "end": 582, "id": 106, "annotation": null}, {"text": "-", "start": 583, "end": 584, "id": 107, "annotation": null}, {"text": "5.0", "start": 585, "end": 588, "id": 108, "annotation": null}, {"text": "\u03bcmol", "start": 589, "end": 593, "id": 109, "annotation": null}, {"text": "L-1", "start": 594, "end": 597, "id": 110, "annotation": null}, {"text": "and", "start": 598, "end": 601, "id": 111, "annotation": null}, {"text": "the", "start": 602, "end": 605, "id": 112, "annotation": null}, {"text": "detection", "start": 606, "end": 615, "id": 113, "annotation": null}, {"text": "limit", "start": 616, "end": 621, "id": 114, "annotation": null}, {"text": "(", "start": 622, "end": 623, "id": 115, "annotation": null}, {"text": "3\u03c3", "start": 624, "end": 626, "id": 116, "annotation": null}, {"text": ")", "start": 627, "end": 628, "id": 117, "annotation": null}, {"text": "was", "start": 629, "end": 632, "id": 118, "annotation": null}, {"text": "0.085", "start": 633, "end": 638, "id": 119, "annotation": null}, {"text": "\u03bcmol", "start": 639, "end": 643, "id": 120, "annotation": null}, {"text": "L-1", "start": 644, "end": 647, "id": 121, "annotation": null}, {"text": ".", "start": 648, "end": 649, "id": 122, "annotation": null}], [{"text": "The", "start": 650, "end": 653, "id": 123, "annotation": null}, {"text": "proposed", "start": 654, "end": 662, "id": 124, "annotation": null}, {"text": "method", "start": 663, "end": 669, "id": 125, "annotation": null}, {"text": "was", "start": 670, "end": 673, "id": 126, "annotation": null}, {"text": "successfully", "start": 674, "end": 686, "id": 127, "annotation": null}, {"text": "applied", "start": 687, "end": 694, "id": 128, "annotation": null}, {"text": "for", "start": 695, "end": 698, "id": 129, "annotation": null}, {"text": "the", "start": 699, "end": 702, "id": 130, "annotation": null}, {"text": "determination", "start": 703, "end": 716, "id": 131, "annotation": null}, {"text": "of", "start": 717, "end": 719, "id": 132, "annotation": null}, {"text": "selenite", "start": 720, "end": 728, "id": 133, "annotation": null}, {"text": "in", "start": 729, "end": 731, "id": 134, "annotation": null}, {"text": "sodium", "start": 732, "end": 738, "id": 135, "annotation": null}, {"text": "selenite", "start": 739, "end": 747, "id": 136, "annotation": null}, {"text": "tablets", "start": 748, "end": 755, "id": 137, "annotation": null}, {"text": "and", "start": 756, "end": 759, "id": 138, "annotation": null}, {"text": "sodium", "start": 760, "end": 766, "id": 139, "annotation": null}, {"text": "selenite", "start": 767, "end": 775, "id": 140, "annotation": null}, {"text": "and", "start": 776, "end": 779, "id": 141, "annotation": null}, {"text": "vitamin", "start": 780, "end": 787, "id": 142, "annotation": null}, {"text": "E", "start": 788, "end": 789, "id": 143, "annotation": null}, {"text": "injection", "start": 790, "end": 799, "id": 144, "annotation": null}, {"text": "with", "start": 800, "end": 804, "id": 145, "annotation": null}, {"text": "satisfactory", "start": 805, "end": 817, "id": 146, "annotation": null}, {"text": "results", "start": 818, "end": 825, "id": 147, "annotation": null}, {"text": ".", "start": 826, "end": 827, "id": 148, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Well-aligned ZnO nanorod arrays were synthesized noncatalytically on a conducting aluminum-doped zinc oxide (AZO) buffer layer. The synthesis uses no metal catalyst and is cost-effective. The buffer layer facilitates the growth of vertically aligned nanorods; furthermore, we demonstrate that the optical properties of the resulting nanorods are closely correlated to the crystallographic quality of the buffer layer. Spatially resolved cathodoluminescence microscopy measurements show that for nonideal buffer layers the optical quality of nanorods improves along the [0001] direction leading to a lower defect incorporation at the nanorod tip. We have minimized defect incorporation by proper adjustment of the buffer layer growth. In addition, the ZnO nanorods grown from our best AZO buffer layer show improved alignment perpendicular to the substrate and a narrower diameter distribution. Our results suggest that the quality of the buffer layer and the growth conditions are key parameters to optimize the nanorods' optical properties.", "meta": {"doi": "10.1021/jp076618d"}, "_input_hash": -925025120, "_task_hash": 1375476685, "tokens": [[{"text": "Well", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "-", "start": 5, "end": 6, "id": 1, "annotation": null}, {"text": "aligned", "start": 7, "end": 14, "id": 2, "annotation": null}, {"text": "ZnO", "start": 15, "end": 18, "id": 3, "annotation": null}, {"text": "nanorod", "start": 19, "end": 26, "id": 4, "annotation": null}, {"text": "arrays", "start": 27, "end": 33, "id": 5, "annotation": null}, {"text": "were", "start": 34, "end": 38, "id": 6, "annotation": null}, {"text": "synthesized", "start": 39, "end": 50, "id": 7, "annotation": null}, {"text": "noncatalytically", "start": 51, "end": 67, "id": 8, "annotation": null}, {"text": "on", "start": 68, "end": 70, "id": 9, "annotation": null}, {"text": "a", "start": 71, "end": 72, "id": 10, "annotation": null}, {"text": "conducting", "start": 73, "end": 83, "id": 11, "annotation": null}, {"text": "aluminum", "start": 84, "end": 92, "id": 12, "annotation": "DOPANT"}, {"text": "-", "start": 93, "end": 94, "id": 13, "annotation": null}, {"text": "doped", "start": 95, "end": 100, "id": 14, "annotation": null}, {"text": "zinc", "start": 101, "end": 105, "id": 15, "annotation": "BASEMAT"}, {"text": "oxide", "start": 106, "end": 111, "id": 16, "annotation": "BASEMAT"}, {"text": "(", "start": 112, "end": 113, "id": 17, "annotation": null}, {"text": "AZO", "start": 114, "end": 117, "id": 18, "annotation": null}, {"text": ")", "start": 118, "end": 119, "id": 19, "annotation": null}, {"text": "buffer", "start": 120, "end": 126, "id": 20, "annotation": null}, {"text": "layer", "start": 127, "end": 132, "id": 21, "annotation": null}, {"text": ".", "start": 133, "end": 134, "id": 22, "annotation": null}], [{"text": "The", "start": 135, "end": 138, "id": 23, "annotation": null}, {"text": "synthesis", "start": 139, "end": 148, "id": 24, "annotation": null}, {"text": "uses", "start": 149, "end": 153, "id": 25, "annotation": null}, {"text": "no", "start": 154, "end": 156, "id": 26, "annotation": null}, {"text": "metal", "start": 157, "end": 162, "id": 27, "annotation": null}, {"text": "catalyst", "start": 163, "end": 171, "id": 28, "annotation": null}, {"text": "and", "start": 172, "end": 175, "id": 29, "annotation": null}, {"text": "is", "start": 176, "end": 178, "id": 30, "annotation": null}, {"text": "cost", "start": 179, "end": 183, "id": 31, "annotation": null}, {"text": "-", "start": 184, "end": 185, "id": 32, "annotation": null}, {"text": "effective", "start": 186, "end": 195, "id": 33, "annotation": null}, {"text": ".", "start": 196, "end": 197, "id": 34, "annotation": null}], [{"text": "The", "start": 198, "end": 201, "id": 35, "annotation": null}, {"text": "buffer", "start": 202, "end": 208, "id": 36, "annotation": null}, {"text": "layer", "start": 209, "end": 214, "id": 37, "annotation": null}, {"text": "facilitates", "start": 215, "end": 226, "id": 38, "annotation": null}, {"text": "the", "start": 227, "end": 230, "id": 39, "annotation": null}, {"text": "growth", "start": 231, "end": 237, "id": 40, "annotation": null}, {"text": "of", "start": 238, "end": 240, "id": 41, "annotation": null}, {"text": "vertically", "start": 241, "end": 251, "id": 42, "annotation": null}, {"text": "aligned", "start": 252, "end": 259, "id": 43, "annotation": null}, {"text": "nanorods", "start": 260, "end": 268, "id": 44, "annotation": null}, {"text": ";", "start": 269, "end": 270, "id": 45, "annotation": null}, {"text": "furthermore", "start": 271, "end": 282, "id": 46, "annotation": null}, {"text": ",", "start": 283, "end": 284, "id": 47, "annotation": null}, {"text": "we", "start": 285, "end": 287, "id": 48, "annotation": null}, {"text": "demonstrate", "start": 288, "end": 299, "id": 49, "annotation": null}, {"text": "that", "start": 300, "end": 304, "id": 50, "annotation": null}, {"text": "the", "start": 305, "end": 308, "id": 51, "annotation": null}, {"text": "optical", "start": 309, "end": 316, "id": 52, "annotation": null}, {"text": "properties", "start": 317, "end": 327, "id": 53, "annotation": null}, {"text": "of", "start": 328, "end": 330, "id": 54, "annotation": null}, {"text": "the", "start": 331, "end": 334, "id": 55, "annotation": null}, {"text": "resulting", "start": 335, "end": 344, "id": 56, "annotation": null}, {"text": "nanorods", "start": 345, "end": 353, "id": 57, "annotation": null}, {"text": "are", "start": 354, "end": 357, "id": 58, "annotation": null}, {"text": "closely", "start": 358, "end": 365, "id": 59, "annotation": null}, {"text": "correlated", "start": 366, "end": 376, "id": 60, "annotation": null}, {"text": "to", "start": 377, "end": 379, "id": 61, "annotation": null}, {"text": "the", "start": 380, "end": 383, "id": 62, "annotation": null}, {"text": "crystallographic", "start": 384, "end": 400, "id": 63, "annotation": null}, {"text": "quality", "start": 401, "end": 408, "id": 64, "annotation": null}, {"text": "of", "start": 409, "end": 411, "id": 65, "annotation": null}, {"text": "the", "start": 412, "end": 415, "id": 66, "annotation": null}, {"text": "buffer", "start": 416, "end": 422, "id": 67, "annotation": null}, {"text": "layer", "start": 423, "end": 428, "id": 68, "annotation": null}, {"text": ".", "start": 429, "end": 430, "id": 69, "annotation": null}], [{"text": "Spatially", "start": 431, "end": 440, "id": 70, "annotation": null}, {"text": "resolved", "start": 441, "end": 449, "id": 71, "annotation": null}, {"text": "cathodoluminescence", "start": 450, "end": 469, "id": 72, "annotation": null}, {"text": "microscopy", "start": 470, "end": 480, "id": 73, "annotation": null}, {"text": "measurements", "start": 481, "end": 493, "id": 74, "annotation": null}, {"text": "show", "start": 494, "end": 498, "id": 75, "annotation": null}, {"text": "that", "start": 499, "end": 503, "id": 76, "annotation": null}, {"text": "for", "start": 504, "end": 507, "id": 77, "annotation": null}, {"text": "nonideal", "start": 508, "end": 516, "id": 78, "annotation": null}, {"text": "buffer", "start": 517, "end": 523, "id": 79, "annotation": null}, {"text": "layers", "start": 524, "end": 530, "id": 80, "annotation": null}, {"text": "the", "start": 531, "end": 534, "id": 81, "annotation": null}, {"text": "optical", "start": 535, "end": 542, "id": 82, "annotation": null}, {"text": "quality", "start": 543, "end": 550, "id": 83, "annotation": null}, {"text": "of", "start": 551, "end": 553, "id": 84, "annotation": null}, {"text": "nanorods", "start": 554, "end": 562, "id": 85, "annotation": null}, {"text": "improves", "start": 563, "end": 571, "id": 86, "annotation": null}, {"text": "along", "start": 572, "end": 577, "id": 87, "annotation": null}, {"text": "the", "start": 578, "end": 581, "id": 88, "annotation": null}, {"text": "[", "start": 582, "end": 583, "id": 89, "annotation": null}, {"text": "0001", "start": 584, "end": 588, "id": 90, "annotation": null}, {"text": "]", "start": 589, "end": 590, "id": 91, "annotation": null}, {"text": "direction", "start": 591, "end": 600, "id": 92, "annotation": null}, {"text": "leading", "start": 601, "end": 608, "id": 93, "annotation": null}, {"text": "to", "start": 609, "end": 611, "id": 94, "annotation": null}, {"text": "a", "start": 612, "end": 613, "id": 95, "annotation": null}, {"text": "lower", "start": 614, "end": 619, "id": 96, "annotation": null}, {"text": "defect", "start": 620, "end": 626, "id": 97, "annotation": null}, {"text": "incorporation", "start": 627, "end": 640, "id": 98, "annotation": null}, {"text": "at", "start": 641, "end": 643, "id": 99, "annotation": null}, {"text": "the", "start": 644, "end": 647, "id": 100, "annotation": null}, {"text": "nanorod", "start": 648, "end": 655, "id": 101, "annotation": null}, {"text": "tip", "start": 656, "end": 659, "id": 102, "annotation": null}, {"text": ".", "start": 660, "end": 661, "id": 103, "annotation": null}], [{"text": "We", "start": 662, "end": 664, "id": 104, "annotation": null}, {"text": "have", "start": 665, "end": 669, "id": 105, "annotation": null}, {"text": "minimized", "start": 670, "end": 679, "id": 106, "annotation": null}, {"text": "defect", "start": 680, "end": 686, "id": 107, "annotation": null}, {"text": "incorporation", "start": 687, "end": 700, "id": 108, "annotation": null}, {"text": "by", "start": 701, "end": 703, "id": 109, "annotation": null}, {"text": "proper", "start": 704, "end": 710, "id": 110, "annotation": null}, {"text": "adjustment", "start": 711, "end": 721, "id": 111, "annotation": null}, {"text": "of", "start": 722, "end": 724, "id": 112, "annotation": null}, {"text": "the", "start": 725, "end": 728, "id": 113, "annotation": null}, {"text": "buffer", "start": 729, "end": 735, "id": 114, "annotation": null}, {"text": "layer", "start": 736, "end": 741, "id": 115, "annotation": null}, {"text": "growth", "start": 742, "end": 748, "id": 116, "annotation": null}, {"text": ".", "start": 749, "end": 750, "id": 117, "annotation": null}], [{"text": "In", "start": 751, "end": 753, "id": 118, "annotation": null}, {"text": "addition", "start": 754, "end": 762, "id": 119, "annotation": null}, {"text": ",", "start": 763, "end": 764, "id": 120, "annotation": null}, {"text": "the", "start": 765, "end": 768, "id": 121, "annotation": null}, {"text": "ZnO", "start": 769, "end": 772, "id": 122, "annotation": null}, {"text": "nanorods", "start": 773, "end": 781, "id": 123, "annotation": null}, {"text": "grown", "start": 782, "end": 787, "id": 124, "annotation": null}, {"text": "from", "start": 788, "end": 792, "id": 125, "annotation": null}, {"text": "our", "start": 793, "end": 796, "id": 126, "annotation": null}, {"text": "best", "start": 797, "end": 801, "id": 127, "annotation": null}, {"text": "AZO", "start": 802, "end": 805, "id": 128, "annotation": null}, {"text": "buffer", "start": 806, "end": 812, "id": 129, "annotation": null}, {"text": "layer", "start": 813, "end": 818, "id": 130, "annotation": null}, {"text": "show", "start": 819, "end": 823, "id": 131, "annotation": null}, {"text": "improved", "start": 824, "end": 832, "id": 132, "annotation": null}, {"text": "alignment", "start": 833, "end": 842, "id": 133, "annotation": null}, {"text": "perpendicular", "start": 843, "end": 856, "id": 134, "annotation": null}, {"text": "to", "start": 857, "end": 859, "id": 135, "annotation": null}, {"text": "the", "start": 860, "end": 863, "id": 136, "annotation": null}, {"text": "substrate", "start": 864, "end": 873, "id": 137, "annotation": null}, {"text": "and", "start": 874, "end": 877, "id": 138, "annotation": null}, {"text": "a", "start": 878, "end": 879, "id": 139, "annotation": null}, {"text": "narrower", "start": 880, "end": 888, "id": 140, "annotation": null}, {"text": "diameter", "start": 889, "end": 897, "id": 141, "annotation": null}, {"text": "distribution", "start": 898, "end": 910, "id": 142, "annotation": null}, {"text": ".", "start": 911, "end": 912, "id": 143, "annotation": null}], [{"text": "Our", "start": 913, "end": 916, "id": 144, "annotation": null}, {"text": "results", "start": 917, "end": 924, "id": 145, "annotation": null}, {"text": "suggest", "start": 925, "end": 932, "id": 146, "annotation": null}, {"text": "that", "start": 933, "end": 937, "id": 147, "annotation": null}, {"text": "the", "start": 938, "end": 941, "id": 148, "annotation": null}, {"text": "quality", "start": 942, "end": 949, "id": 149, "annotation": null}, {"text": "of", "start": 950, "end": 952, "id": 150, "annotation": null}, {"text": "the", "start": 953, "end": 956, "id": 151, "annotation": null}, {"text": "buffer", "start": 957, "end": 963, "id": 152, "annotation": null}, {"text": "layer", "start": 964, "end": 969, "id": 153, "annotation": null}, {"text": "and", "start": 970, "end": 973, "id": 154, "annotation": null}, {"text": "the", "start": 974, "end": 977, "id": 155, "annotation": null}, {"text": "growth", "start": 978, "end": 984, "id": 156, "annotation": null}, {"text": "conditions", "start": 985, "end": 995, "id": 157, "annotation": null}, {"text": "are", "start": 996, "end": 999, "id": 158, "annotation": null}, {"text": "key", "start": 1000, "end": 1003, "id": 159, "annotation": null}, {"text": "parameters", "start": 1004, "end": 1014, "id": 160, "annotation": null}, {"text": "to", "start": 1015, "end": 1017, "id": 161, "annotation": null}, {"text": "optimize", "start": 1018, "end": 1026, "id": 162, "annotation": null}, {"text": "the", "start": 1027, "end": 1030, "id": 163, "annotation": null}, {"text": "nanorods", "start": 1031, "end": 1039, "id": 164, "annotation": null}, {"text": "'", "start": 1040, "end": 1041, "id": 165, "annotation": null}, {"text": "optical", "start": 1042, "end": 1049, "id": 166, "annotation": null}, {"text": "properties", "start": 1050, "end": 1060, "id": 167, "annotation": null}, {"text": ".", "start": 1061, "end": 1062, "id": 168, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "Carbon-doped KTaO3 was synthesized for the first time via a simple combination of hydrothermal and calcination processes with glucose as the carbon source. XRD and XPS characterizations proved the successful introduction of the carbon atoms into the KTaO3 lattice. Photocatalytic test showed that the carbon-doped KTaO3 presented excellent performance in photocatalytic H2 generation under simulated sunlight illumination, mainly due to the enhanced separation of electron-hole pairs. The optimal sample presents a H2 generation rate of 592\u03bcmolg\u22121h\u22121, which reaches 2.6 times that of pure KTaO3.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Carbon", "start": 0, "end": 6, "annotation": "DOPANT"}, {"text": "-", "start": 6, "end": 7, "annotation": null}, {"text": "doped", "start": 7, "end": 12, "annotation": null}, {"text": "KTaO3", "start": 13, "end": 18, "annotation": "BASEMAT"}, {"text": "was", "start": 19, "end": 22, "annotation": null}, {"text": "synthesized", "start": 23, "end": 34, "annotation": null}, {"text": "for", "start": 35, "end": 38, "annotation": null}, {"text": "the", "start": 39, "end": 42, "annotation": null}, {"text": "first", "start": 43, "end": 48, "annotation": null}, {"text": "time", "start": 49, "end": 53, "annotation": null}, {"text": "via", "start": 54, "end": 57, "annotation": null}, {"text": "a", "start": 58, "end": 59, "annotation": null}, {"text": "simple", "start": 60, "end": 66, "annotation": null}, {"text": "combination", "start": 67, "end": 78, "annotation": null}, {"text": "of", "start": 79, "end": 81, "annotation": null}, {"text": "hydrothermal", "start": 82, "end": 94, "annotation": null}, {"text": "and", "start": 95, "end": 98, "annotation": null}, {"text": "calcination", "start": 99, "end": 110, "annotation": null}, {"text": "processes", "start": 111, "end": 120, "annotation": null}, {"text": "with", "start": 121, "end": 125, "annotation": null}, {"text": "glucose", "start": 126, "end": 133, "annotation": null}, {"text": "as", "start": 134, "end": 136, "annotation": null}, {"text": "the", "start": 137, "end": 140, "annotation": null}, {"text": "carbon", "start": 141, "end": 147, "annotation": null}, {"text": "source", "start": 148, "end": 154, "annotation": null}, {"text": ".", "start": 154, "end": 155, "annotation": null}], [{"text": "XRD", "start": 156, "end": 159, "annotation": null}, {"text": "and", "start": 160, "end": 163, "annotation": null}, {"text": "XPS", "start": 164, "end": 167, "annotation": null}, {"text": "characterizations", "start": 168, "end": 185, "annotation": null}, {"text": "proved", "start": 186, "end": 192, "annotation": null}, {"text": "the", "start": 193, "end": 196, "annotation": null}, {"text": "successful", "start": 197, "end": 207, "annotation": null}, {"text": "introduction", "start": 208, "end": 220, "annotation": null}, {"text": "of", "start": 221, "end": 223, "annotation": null}, {"text": "the", "start": 224, "end": 227, "annotation": null}, {"text": "carbon", "start": 228, "end": 234, "annotation": "DOPANT"}, {"text": "atoms", "start": 235, "end": 240, "annotation": null}, {"text": "into", "start": 241, "end": 245, "annotation": null}, {"text": "the", "start": 246, "end": 249, "annotation": null}, {"text": "KTaO3", "start": 250, "end": 255, "annotation": "BASEMAT"}, {"text": "lattice", "start": 256, "end": 263, "annotation": null}, {"text": ".", "start": 263, "end": 264, "annotation": null}], [{"text": "Photocatalytic", "start": 265, "end": 279, "annotation": null}, {"text": "test", "start": 280, "end": 284, "annotation": null}, {"text": "showed", "start": 285, "end": 291, "annotation": null}, {"text": "that", "start": 292, "end": 296, "annotation": null}, {"text": "the", "start": 297, "end": 300, "annotation": null}, {"text": "carbon", "start": 301, "end": 307, "annotation": "DOPANT"}, {"text": "-", "start": 307, "end": 308, "annotation": null}, {"text": "doped", "start": 308, "end": 313, "annotation": null}, {"text": "KTaO3", "start": 314, "end": 319, "annotation": "BASEMAT"}, {"text": "presented", "start": 320, "end": 329, "annotation": null}, {"text": "excellent", "start": 330, "end": 339, "annotation": null}, {"text": "performance", "start": 340, "end": 351, "annotation": null}, {"text": "in", "start": 352, "end": 354, "annotation": null}, {"text": "photocatalytic", "start": 355, "end": 369, "annotation": null}, {"text": "H2", "start": 370, "end": 372, "annotation": null}, {"text": "generation", "start": 373, "end": 383, "annotation": null}, {"text": "under", "start": 384, "end": 389, "annotation": null}, {"text": "simulated", "start": 390, "end": 399, "annotation": null}, {"text": "sunlight", "start": 400, "end": 408, "annotation": null}, {"text": "illumination", "start": 409, "end": 421, "annotation": null}, {"text": ",", "start": 421, "end": 422, "annotation": null}, {"text": "mainly", "start": 423, "end": 429, "annotation": null}, {"text": "due", "start": 430, "end": 433, "annotation": null}, {"text": "to", "start": 434, "end": 436, "annotation": null}, {"text": "the", "start": 437, "end": 440, "annotation": null}, {"text": "enhanced", "start": 441, "end": 449, "annotation": null}, {"text": "separation", "start": 450, "end": 460, "annotation": null}, {"text": "of", "start": 461, "end": 463, "annotation": null}, {"text": "electron", "start": 464, "end": 472, "annotation": null}, {"text": "-", "start": 472, "end": 473, "annotation": null}, {"text": "hole", "start": 473, "end": 477, "annotation": null}, {"text": "pairs", "start": 478, "end": 483, "annotation": null}, {"text": ".", "start": 483, "end": 484, "annotation": null}], [{"text": "The", "start": 485, "end": 488, "annotation": null}, {"text": "optimal", "start": 489, "end": 496, "annotation": null}, {"text": "sample", "start": 497, "end": 503, "annotation": null}, {"text": "presents", "start": 504, "end": 512, "annotation": null}, {"text": "a", "start": 513, "end": 514, "annotation": null}, {"text": "H2", "start": 515, "end": 517, "annotation": null}, {"text": "generation", "start": 518, "end": 528, "annotation": null}, {"text": "rate", "start": 529, "end": 533, "annotation": null}, {"text": "of", "start": 534, "end": 536, "annotation": null}, {"text": "592", "start": 537, "end": 540, "annotation": null}, {"text": "\u03bcmol", "start": 540, "end": 544, "annotation": null}, {"text": "g\u22121", "start": 544, "end": 547, "annotation": null}, {"text": "h\u22121", "start": 547, "end": 550, "annotation": null}, {"text": ",", "start": 550, "end": 551, "annotation": null}, {"text": "which", "start": 552, "end": 557, "annotation": null}, {"text": "reaches", "start": 558, "end": 565, "annotation": null}, {"text": "2.6", "start": 566, "end": 569, "annotation": null}, {"text": "times", "start": 570, "end": 575, "annotation": null}, {"text": "that", "start": 576, "end": 580, "annotation": null}, {"text": "of", "start": 581, "end": 583, "annotation": null}, {"text": "pure", "start": 584, "end": 588, "annotation": null}, {"text": "KTaO3", "start": 589, "end": 594, "annotation": null}, {"text": ".", "start": 594, "end": 595, "annotation": null}]]} -{"text": "The aim of this contribution is to present a review of the results related to vacancy complexes in SiGe obtained in the positron group at Helsinki University of Technology. We have studied proton irradiated undoped and P doped SiGe layers with Ge concentration from 4% to 30%. The dominating defect after irradiation in the n-type layers is found to be the E-center, i.e. the vacancy phosphorus complex, no preferred association with either Ge or Si is found for the vacancy after irradiation. The E-center is observed to be mobile in the temperature interval 150\u2013200\u00b0C and to migrate until it encounters a Ge atom and forms the V\u2013P\u2013Ge complex. This complex anneals out in temperatures above 200\u00b0C. We estimate that the binding energy increases by approximately 0.1\u20130.2eV when a Ge atom neighbours an E-center. For the undoped irradiated samples, we find no indication of vacancies surrounded by one or several Ge atoms, i.e. the presence of Ge around a vacancy is not enough to make the defect stable at room temperature. The dominating defect in undoped irradiated samples is most likely the divacancy.", "meta": {"doi": "10.1016/j.nimb.2006.10.018"}, "_input_hash": 2118298773, "_task_hash": -1845739943, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "aim", "start": 4, "end": 7, "id": 1, "annotation": null}, {"text": "of", "start": 8, "end": 10, "id": 2, "annotation": null}, {"text": "this", "start": 11, "end": 15, "id": 3, "annotation": null}, {"text": "contribution", "start": 16, "end": 28, "id": 4, "annotation": null}, {"text": "is", "start": 29, "end": 31, "id": 5, "annotation": null}, {"text": "to", "start": 32, "end": 34, "id": 6, "annotation": null}, {"text": "present", "start": 35, "end": 42, "id": 7, "annotation": null}, {"text": "a", "start": 43, "end": 44, "id": 8, "annotation": null}, {"text": "review", "start": 45, "end": 51, "id": 9, "annotation": null}, {"text": "of", "start": 52, "end": 54, "id": 10, "annotation": null}, {"text": "the", "start": 55, "end": 58, "id": 11, "annotation": null}, {"text": "results", "start": 59, "end": 66, "id": 12, "annotation": null}, {"text": "related", "start": 67, "end": 74, "id": 13, "annotation": null}, {"text": "to", "start": 75, "end": 77, "id": 14, "annotation": null}, {"text": "vacancy", "start": 78, "end": 85, "id": 15, "annotation": null}, {"text": "complexes", "start": 86, "end": 95, "id": 16, "annotation": null}, {"text": "in", "start": 96, "end": 98, "id": 17, "annotation": null}, {"text": "SiGe", "start": 99, "end": 103, "id": 18, "annotation": null}, {"text": "obtained", "start": 104, "end": 112, "id": 19, "annotation": null}, {"text": "in", "start": 113, "end": 115, "id": 20, "annotation": null}, {"text": "the", "start": 116, "end": 119, "id": 21, "annotation": null}, {"text": "positron", "start": 120, "end": 128, "id": 22, "annotation": null}, {"text": "group", "start": 129, "end": 134, "id": 23, "annotation": null}, {"text": "at", "start": 135, "end": 137, "id": 24, "annotation": null}, {"text": "Helsinki", "start": 138, "end": 146, "id": 25, "annotation": null}, {"text": "University", "start": 147, "end": 157, "id": 26, "annotation": null}, {"text": "of", "start": 158, "end": 160, "id": 27, "annotation": null}, {"text": "Technology", "start": 161, "end": 171, "id": 28, "annotation": null}, {"text": ".", "start": 172, "end": 173, "id": 29, "annotation": null}], [{"text": "We", "start": 174, "end": 176, "id": 30, "annotation": null}, {"text": "have", "start": 177, "end": 181, "id": 31, "annotation": null}, {"text": "studied", "start": 182, "end": 189, "id": 32, "annotation": null}, {"text": "proton", "start": 190, "end": 196, "id": 33, "annotation": null}, {"text": "irradiated", "start": 197, "end": 207, "id": 34, "annotation": null}, {"text": "undoped", "start": 208, "end": 215, "id": 35, "annotation": null}, {"text": "and", "start": 216, "end": 219, "id": 36, "annotation": null}, {"text": "P", "start": 220, "end": 221, "id": 37, "annotation": "DOPANT"}, {"text": "doped", "start": 222, "end": 227, "id": 38, "annotation": null}, {"text": "SiGe", "start": 228, "end": 232, "id": 39, "annotation": "BASEMAT"}, {"text": "layers", "start": 233, "end": 239, "id": 40, "annotation": null}, {"text": "with", "start": 240, "end": 244, "id": 41, "annotation": null}, {"text": "Ge", "start": 245, "end": 247, "id": 42, "annotation": null}, {"text": "concentration", "start": 248, "end": 261, "id": 43, "annotation": null}, {"text": "from", "start": 262, "end": 266, "id": 44, "annotation": null}, {"text": "4", "start": 267, "end": 268, "id": 45, "annotation": null}, {"text": "%", "start": 269, "end": 270, "id": 46, "annotation": null}, {"text": "to", "start": 271, "end": 273, "id": 47, "annotation": null}, {"text": "30", "start": 274, "end": 276, "id": 48, "annotation": null}, {"text": "%", "start": 277, "end": 278, "id": 49, "annotation": null}, {"text": ".", "start": 279, "end": 280, "id": 50, "annotation": null}], [{"text": "The", "start": 281, "end": 284, "id": 51, "annotation": null}, {"text": "dominating", "start": 285, "end": 295, "id": 52, "annotation": null}, {"text": "defect", "start": 296, "end": 302, "id": 53, "annotation": null}, {"text": "after", "start": 303, "end": 308, "id": 54, "annotation": null}, {"text": "irradiation", "start": 309, "end": 320, "id": 55, "annotation": null}, {"text": "in", "start": 321, "end": 323, "id": 56, "annotation": null}, {"text": "the", "start": 324, "end": 327, "id": 57, "annotation": null}, {"text": "n", "start": 328, "end": 329, "id": 58, "annotation": "DOPANT"}, {"text": "-", "start": 330, "end": 331, "id": 59, "annotation": null}, {"text": "type", "start": 332, "end": 336, "id": 60, "annotation": "DOPANT"}, {"text": "layers", "start": 337, "end": 343, "id": 61, "annotation": "BASEMAT"}, {"text": "is", "start": 344, "end": 346, "id": 62, "annotation": null}, {"text": "found", "start": 347, "end": 352, "id": 63, "annotation": null}, {"text": "to", "start": 353, "end": 355, "id": 64, "annotation": null}, {"text": "be", "start": 356, "end": 358, "id": 65, "annotation": null}, {"text": "the", "start": 359, "end": 362, "id": 66, "annotation": null}, {"text": "E", "start": 363, "end": 364, "id": 67, "annotation": null}, {"text": "-", "start": 365, "end": 366, "id": 68, "annotation": null}, {"text": "center", "start": 367, "end": 373, "id": 69, "annotation": null}, {"text": ",", "start": 374, "end": 375, "id": 70, "annotation": null}, {"text": "i.e.", "start": 376, "end": 380, "id": 71, "annotation": null}, {"text": "the", "start": 381, "end": 384, "id": 72, "annotation": null}, {"text": "vacancy", "start": 385, "end": 392, "id": 73, "annotation": null}, {"text": "phosphorus", "start": 393, "end": 403, "id": 74, "annotation": null}, {"text": "complex", "start": 404, "end": 411, "id": 75, "annotation": null}, {"text": ",", "start": 412, "end": 413, "id": 76, "annotation": null}, {"text": "no", "start": 414, "end": 416, "id": 77, "annotation": null}, {"text": "preferred", "start": 417, "end": 426, "id": 78, "annotation": null}, {"text": "association", "start": 427, "end": 438, "id": 79, "annotation": null}, {"text": "with", "start": 439, "end": 443, "id": 80, "annotation": null}, {"text": "either", "start": 444, "end": 450, "id": 81, "annotation": null}, {"text": "Ge", "start": 451, "end": 453, "id": 82, "annotation": null}, {"text": "or", "start": 454, "end": 456, "id": 83, "annotation": null}, {"text": "Si", "start": 457, "end": 459, "id": 84, "annotation": null}, {"text": "is", "start": 460, "end": 462, "id": 85, "annotation": null}, {"text": "found", "start": 463, "end": 468, "id": 86, "annotation": null}, {"text": "for", "start": 469, "end": 472, "id": 87, "annotation": null}, {"text": "the", "start": 473, "end": 476, "id": 88, "annotation": null}, {"text": "vacancy", "start": 477, "end": 484, "id": 89, "annotation": null}, {"text": "after", "start": 485, "end": 490, "id": 90, "annotation": null}, {"text": "irradiation", "start": 491, "end": 502, "id": 91, "annotation": null}, {"text": ".", "start": 503, "end": 504, "id": 92, "annotation": null}], [{"text": "The", "start": 505, "end": 508, "id": 93, "annotation": null}, {"text": "E", "start": 509, "end": 510, "id": 94, "annotation": null}, {"text": "-", "start": 511, "end": 512, "id": 95, "annotation": null}, {"text": "center", "start": 513, "end": 519, "id": 96, "annotation": null}, {"text": "is", "start": 520, "end": 522, "id": 97, "annotation": null}, {"text": "observed", "start": 523, "end": 531, "id": 98, "annotation": null}, {"text": "to", "start": 532, "end": 534, "id": 99, "annotation": null}, {"text": "be", "start": 535, "end": 537, "id": 100, "annotation": null}, {"text": "mobile", "start": 538, "end": 544, "id": 101, "annotation": null}, {"text": "in", "start": 545, "end": 547, "id": 102, "annotation": null}, {"text": "the", "start": 548, "end": 551, "id": 103, "annotation": null}, {"text": "temperature", "start": 552, "end": 563, "id": 104, "annotation": null}, {"text": "interval", "start": 564, "end": 572, "id": 105, "annotation": null}, {"text": "150\u2013200", "start": 573, "end": 580, "id": 106, "annotation": null}, {"text": "\u00b0", "start": 581, "end": 582, "id": 107, "annotation": null}, {"text": "C", "start": 583, "end": 584, "id": 108, "annotation": null}, {"text": "and", "start": 585, "end": 588, "id": 109, "annotation": null}, {"text": "to", "start": 589, "end": 591, "id": 110, "annotation": null}, {"text": "migrate", "start": 592, "end": 599, "id": 111, "annotation": null}, {"text": "until", "start": 600, "end": 605, "id": 112, "annotation": null}, {"text": "it", "start": 606, "end": 608, "id": 113, "annotation": null}, {"text": "encounters", "start": 609, "end": 619, "id": 114, "annotation": null}, {"text": "a", "start": 620, "end": 621, "id": 115, "annotation": null}, {"text": "Ge", "start": 622, "end": 624, "id": 116, "annotation": null}, {"text": "atom", "start": 625, "end": 629, "id": 117, "annotation": null}, {"text": "and", "start": 630, "end": 633, "id": 118, "annotation": null}, {"text": "forms", "start": 634, "end": 639, "id": 119, "annotation": null}, {"text": "the", "start": 640, "end": 643, "id": 120, "annotation": null}, {"text": "V", "start": 644, "end": 645, "id": 121, "annotation": null}, {"text": "\u2013", "start": 646, "end": 647, "id": 122, "annotation": null}, {"text": "P", "start": 648, "end": 649, "id": 123, "annotation": null}, {"text": "\u2013", "start": 650, "end": 651, "id": 124, "annotation": null}, {"text": "Ge", "start": 652, "end": 654, "id": 125, "annotation": null}, {"text": "complex", "start": 655, "end": 662, "id": 126, "annotation": null}, {"text": ".", "start": 663, "end": 664, "id": 127, "annotation": null}], [{"text": "This", "start": 665, "end": 669, "id": 128, "annotation": null}, {"text": "complex", "start": 670, "end": 677, "id": 129, "annotation": null}, {"text": "anneals", "start": 678, "end": 685, "id": 130, "annotation": null}, {"text": "out", "start": 686, "end": 689, "id": 131, "annotation": null}, {"text": "in", "start": 690, "end": 692, "id": 132, "annotation": null}, {"text": "temperatures", "start": 693, "end": 705, "id": 133, "annotation": null}, {"text": "above", "start": 706, "end": 711, "id": 134, "annotation": null}, {"text": "200", "start": 712, "end": 715, "id": 135, "annotation": null}, {"text": "\u00b0", "start": 716, "end": 717, "id": 136, "annotation": null}, {"text": "C", "start": 718, "end": 719, "id": 137, "annotation": null}, {"text": ".", "start": 720, "end": 721, "id": 138, "annotation": null}], [{"text": "We", "start": 722, "end": 724, "id": 139, "annotation": null}, {"text": "estimate", "start": 725, "end": 733, "id": 140, "annotation": null}, {"text": "that", "start": 734, "end": 738, "id": 141, "annotation": null}, {"text": "the", "start": 739, "end": 742, "id": 142, "annotation": null}, {"text": "binding", "start": 743, "end": 750, "id": 143, "annotation": null}, {"text": "energy", "start": 751, "end": 757, "id": 144, "annotation": null}, {"text": "increases", "start": 758, "end": 767, "id": 145, "annotation": null}, {"text": "by", "start": 768, "end": 770, "id": 146, "annotation": null}, {"text": "approximately", "start": 771, "end": 784, "id": 147, "annotation": null}, {"text": "0.1\u20130.2eV", "start": 785, "end": 794, "id": 148, "annotation": null}, {"text": "when", "start": 795, "end": 799, "id": 149, "annotation": null}, {"text": "a", "start": 800, "end": 801, "id": 150, "annotation": null}, {"text": "Ge", "start": 802, "end": 804, "id": 151, "annotation": null}, {"text": "atom", "start": 805, "end": 809, "id": 152, "annotation": null}, {"text": "neighbours", "start": 810, "end": 820, "id": 153, "annotation": null}, {"text": "an", "start": 821, "end": 823, "id": 154, "annotation": null}, {"text": "E", "start": 824, "end": 825, "id": 155, "annotation": null}, {"text": "-", "start": 826, "end": 827, "id": 156, "annotation": null}, {"text": "center", "start": 828, "end": 834, "id": 157, "annotation": null}, {"text": ".", "start": 835, "end": 836, "id": 158, "annotation": null}], [{"text": "For", "start": 837, "end": 840, "id": 159, "annotation": null}, {"text": "the", "start": 841, "end": 844, "id": 160, "annotation": null}, {"text": "undoped", "start": 845, "end": 852, "id": 161, "annotation": null}, {"text": "irradiated", "start": 853, "end": 863, "id": 162, "annotation": null}, {"text": "samples", "start": 864, "end": 871, "id": 163, "annotation": null}, {"text": ",", "start": 872, "end": 873, "id": 164, "annotation": null}, {"text": "we", "start": 874, "end": 876, "id": 165, "annotation": null}, {"text": "find", "start": 877, "end": 881, "id": 166, "annotation": null}, {"text": "no", "start": 882, "end": 884, "id": 167, "annotation": null}, {"text": "indication", "start": 885, "end": 895, "id": 168, "annotation": null}, {"text": "of", "start": 896, "end": 898, "id": 169, "annotation": null}, {"text": "vacancies", "start": 899, "end": 908, "id": 170, "annotation": null}, {"text": "surrounded", "start": 909, "end": 919, "id": 171, "annotation": null}, {"text": "by", "start": 920, "end": 922, "id": 172, "annotation": null}, {"text": "one", "start": 923, "end": 926, "id": 173, "annotation": null}, {"text": "or", "start": 927, "end": 929, "id": 174, "annotation": null}, {"text": "several", "start": 930, "end": 937, "id": 175, "annotation": null}, {"text": "Ge", "start": 938, "end": 940, "id": 176, "annotation": null}, {"text": "atoms", "start": 941, "end": 946, "id": 177, "annotation": null}, {"text": ",", "start": 947, "end": 948, "id": 178, "annotation": null}, {"text": "i.e.", "start": 949, "end": 953, "id": 179, "annotation": null}, {"text": "the", "start": 954, "end": 957, "id": 180, "annotation": null}, {"text": "presence", "start": 958, "end": 966, "id": 181, "annotation": null}, {"text": "of", "start": 967, "end": 969, "id": 182, "annotation": null}, {"text": "Ge", "start": 970, "end": 972, "id": 183, "annotation": null}, {"text": "around", "start": 973, "end": 979, "id": 184, "annotation": null}, {"text": "a", "start": 980, "end": 981, "id": 185, "annotation": null}, {"text": "vacancy", "start": 982, "end": 989, "id": 186, "annotation": null}, {"text": "is", "start": 990, "end": 992, "id": 187, "annotation": null}, {"text": "not", "start": 993, "end": 996, "id": 188, "annotation": null}, {"text": "enough", "start": 997, "end": 1003, "id": 189, "annotation": null}, {"text": "to", "start": 1004, "end": 1006, "id": 190, "annotation": null}, {"text": "make", "start": 1007, "end": 1011, "id": 191, "annotation": null}, {"text": "the", "start": 1012, "end": 1015, "id": 192, "annotation": null}, {"text": "defect", "start": 1016, "end": 1022, "id": 193, "annotation": null}, {"text": "stable", "start": 1023, "end": 1029, "id": 194, "annotation": null}, {"text": "at", "start": 1030, "end": 1032, "id": 195, "annotation": null}, {"text": "room", "start": 1033, "end": 1037, "id": 196, "annotation": null}, {"text": "temperature", "start": 1038, "end": 1049, "id": 197, "annotation": null}, {"text": ".", "start": 1050, "end": 1051, "id": 198, "annotation": null}], [{"text": "The", "start": 1052, "end": 1055, "id": 199, "annotation": null}, {"text": "dominating", "start": 1056, "end": 1066, "id": 200, "annotation": null}, {"text": "defect", "start": 1067, "end": 1073, "id": 201, "annotation": null}, {"text": "in", "start": 1074, "end": 1076, "id": 202, "annotation": null}, {"text": "undoped", "start": 1077, "end": 1084, "id": 203, "annotation": null}, {"text": "irradiated", "start": 1085, "end": 1095, "id": 204, "annotation": null}, {"text": "samples", "start": 1096, "end": 1103, "id": 205, "annotation": null}, {"text": "is", "start": 1104, "end": 1106, "id": 206, "annotation": null}, {"text": "most", "start": 1107, "end": 1111, "id": 207, "annotation": null}, {"text": "likely", "start": 1112, "end": 1118, "id": 208, "annotation": null}, {"text": "the", "start": 1119, "end": 1122, "id": 209, "annotation": null}, {"text": "divacancy", "start": 1123, "end": 1132, "id": 210, "annotation": null}, {"text": ".", "start": 1133, "end": 1134, "id": 211, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Metallic silicides have been used as contact materials on source/drain and gate in metal-oxide semiconductor (MOS) structure for 40 years. Since the 65 nm technology node, NiSi is the preferred material for contact in microelectronic due to low resistivity, low thermal budget, and low Si consumption. Ni(Pt)Si with 10 at.% Pt is currently employed in recent technologies since Pt allows to stabilize NiSi at high temperature. The presence of Pt and the very low thickness (<10 nm) needed for the device contacts bring new concerns for actual devices. In this work, in situ techniques [X-ray diffraction (XRD), X-ray reflectivity (XRR), sheet resistance, differential scanning calorimetry (DSC)] were combined with atom probe tomography (APT) to study the formation mechanisms as well as the redistribution of dopants and alloy elements (Pt, Pd.) during the silicide formation. Phenomena like nucleation, lateral growth, interfacial reaction, diffusion, precipitation, and transient phase formation are investigated. The effect of alloy elements (Pt, Pd.) and dopants (As, B.) as well as stress and defects induced by the confinement in devices on the silicide formation mechanism and alloying element redistribution is examined. In particular APT has been performed for the three-dimensional (3D) analysis of MOSFET at the atomic scale. The advances in the understanding of the mechanisms of formation and redistribution are discussed. \u00a9 2014 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Metallic", "start": 0, "end": 8, "annotation": null}, {"text": "silicides", "start": 9, "end": 18, "annotation": null}, {"text": "have", "start": 19, "end": 23, "annotation": null}, {"text": "been", "start": 24, "end": 28, "annotation": null}, {"text": "used", "start": 29, "end": 33, "annotation": null}, {"text": "as", "start": 34, "end": 36, "annotation": null}, {"text": "contact", "start": 37, "end": 44, "annotation": null}, {"text": "materials", "start": 45, "end": 54, "annotation": null}, {"text": "on", "start": 55, "end": 57, "annotation": null}, {"text": "source", "start": 58, "end": 64, "annotation": null}, {"text": "/", "start": 64, "end": 65, "annotation": null}, {"text": "drain", "start": 65, "end": 70, "annotation": null}, {"text": "and", "start": 71, "end": 74, "annotation": null}, {"text": "gate", "start": 75, "end": 79, "annotation": null}, {"text": "in", "start": 80, "end": 82, "annotation": null}, {"text": "metal", "start": 83, "end": 88, "annotation": null}, {"text": "-", "start": 88, "end": 89, "annotation": null}, {"text": "oxide", "start": 89, "end": 94, "annotation": null}, {"text": "semiconductor", "start": 95, "end": 108, "annotation": null}, {"text": "(", "start": 109, "end": 110, "annotation": null}, {"text": "MOS", "start": 110, "end": 113, "annotation": null}, {"text": ")", "start": 113, "end": 114, "annotation": null}, {"text": "structure", "start": 115, "end": 124, "annotation": null}, {"text": "for", "start": 125, "end": 128, "annotation": null}, {"text": "40", "start": 129, "end": 131, "annotation": null}, {"text": "years", "start": 132, "end": 137, "annotation": null}, {"text": ".", "start": 137, "end": 138, "annotation": null}], [{"text": "Since", "start": 139, "end": 144, "annotation": null}, {"text": "the", "start": 145, "end": 148, "annotation": null}, {"text": "65", "start": 149, "end": 151, "annotation": null}, {"text": "nm", "start": 152, "end": 154, "annotation": null}, {"text": "technology", "start": 155, "end": 165, "annotation": null}, {"text": "node", "start": 166, "end": 170, "annotation": null}, {"text": ",", "start": 170, "end": 171, "annotation": null}, {"text": "NiSi", "start": 172, "end": 176, "annotation": null}, {"text": "is", "start": 177, "end": 179, "annotation": null}, {"text": "the", "start": 180, "end": 183, "annotation": null}, {"text": "preferred", "start": 184, "end": 193, "annotation": null}, {"text": "material", "start": 194, "end": 202, "annotation": null}, {"text": "for", "start": 203, "end": 206, "annotation": null}, {"text": "contact", "start": 207, "end": 214, "annotation": null}, {"text": "in", "start": 215, "end": 217, "annotation": null}, {"text": "microelectronic", "start": 218, "end": 233, "annotation": null}, {"text": "due", "start": 234, "end": 237, "annotation": null}, {"text": "to", "start": 238, "end": 240, "annotation": null}, {"text": "low", "start": 241, "end": 244, "annotation": null}, {"text": "resistivity", "start": 245, "end": 256, "annotation": null}, {"text": ",", "start": 256, "end": 257, "annotation": null}, {"text": "low", "start": 258, "end": 261, "annotation": null}, {"text": "thermal", "start": 262, "end": 269, "annotation": null}, {"text": "budget", "start": 270, "end": 276, "annotation": null}, {"text": ",", "start": 276, "end": 277, "annotation": null}, {"text": "and", "start": 278, "end": 281, "annotation": null}, {"text": "low", "start": 282, "end": 285, "annotation": null}, {"text": "Si", "start": 286, "end": 288, "annotation": null}, {"text": "consumption", "start": 289, "end": 300, "annotation": null}, {"text": ".", "start": 300, "end": 301, "annotation": null}], [{"text": "Ni(Pt)Si", "start": 302, "end": 310, "annotation": null}, {"text": "with", "start": 311, "end": 315, "annotation": null}, {"text": "10", "start": 316, "end": 318, "annotation": "DOPMODQ"}, {"text": "at.", "start": 319, "end": 322, "annotation": "DOPMODQ"}, {"text": "%", "start": 322, "end": 323, "annotation": "DOPMODQ"}, {"text": "Pt", "start": 324, "end": 326, "annotation": "DOPANT"}, {"text": "is", "start": 327, "end": 329, "annotation": null}, {"text": "currently", "start": 330, "end": 339, "annotation": null}, {"text": "employed", "start": 340, "end": 348, "annotation": null}, {"text": "in", "start": 349, "end": 351, "annotation": null}, {"text": "recent", "start": 352, "end": 358, "annotation": null}, {"text": "technologies", "start": 359, "end": 371, "annotation": null}, {"text": "since", "start": 372, "end": 377, "annotation": null}, {"text": "Pt", "start": 378, "end": 380, "annotation": "DOPANT"}, {"text": "allows", "start": 381, "end": 387, "annotation": null}, {"text": "to", "start": 388, "end": 390, "annotation": null}, {"text": "stabilize", "start": 391, "end": 400, "annotation": null}, {"text": "NiSi", "start": 401, "end": 405, "annotation": "BASEMAT"}, {"text": "at", "start": 406, "end": 408, "annotation": null}, {"text": "high", "start": 409, "end": 413, "annotation": null}, {"text": "temperature", "start": 414, "end": 425, "annotation": null}, {"text": ".", "start": 425, "end": 426, "annotation": null}], [{"text": "The", "start": 427, "end": 430, "annotation": null}, {"text": "presence", "start": 431, "end": 439, "annotation": null}, {"text": "of", "start": 440, "end": 442, "annotation": null}, {"text": "Pt", "start": 443, "end": 445, "annotation": null}, {"text": "and", "start": 446, "end": 449, "annotation": null}, {"text": "the", "start": 450, "end": 453, "annotation": null}, {"text": "very", "start": 454, "end": 458, "annotation": null}, {"text": "low", "start": 459, "end": 462, "annotation": null}, {"text": "thickness", "start": 463, "end": 472, "annotation": null}, {"text": "(", "start": 473, "end": 474, "annotation": null}, {"text": "<", "start": 474, "end": 475, "annotation": null}, {"text": "10", "start": 475, "end": 477, "annotation": null}, {"text": "nm", "start": 478, "end": 480, "annotation": null}, {"text": ")", "start": 480, "end": 481, "annotation": null}, {"text": "needed", "start": 482, "end": 488, "annotation": null}, {"text": "for", "start": 489, "end": 492, "annotation": null}, {"text": "the", "start": 493, "end": 496, "annotation": null}, {"text": "device", "start": 497, "end": 503, "annotation": null}, {"text": "contacts", "start": 504, "end": 512, "annotation": null}, {"text": "bring", "start": 513, "end": 518, "annotation": null}, {"text": "new", "start": 519, "end": 522, "annotation": null}, {"text": "concerns", "start": 523, "end": 531, "annotation": null}, {"text": "for", "start": 532, "end": 535, "annotation": null}, {"text": "actual", "start": 536, "end": 542, "annotation": null}, {"text": "devices", "start": 543, "end": 550, "annotation": null}, {"text": ".", "start": 550, "end": 551, "annotation": null}], [{"text": "In", "start": 552, "end": 554, "annotation": null}, {"text": "this", "start": 555, "end": 559, "annotation": null}, {"text": "work", "start": 560, "end": 564, "annotation": null}, {"text": ",", "start": 564, "end": 565, "annotation": null}, {"text": "in", "start": 566, "end": 568, "annotation": null}, {"text": "situ", "start": 569, "end": 573, "annotation": null}, {"text": "techniques", "start": 574, "end": 584, "annotation": null}, {"text": "[", "start": 585, "end": 586, "annotation": null}, {"text": "X-ray", "start": 586, "end": 591, "annotation": null}, {"text": "diffraction", "start": 592, "end": 603, "annotation": null}, {"text": "(", "start": 604, "end": 605, "annotation": null}, {"text": "XRD", "start": 605, "end": 608, "annotation": null}, {"text": ")", "start": 608, "end": 609, "annotation": null}, {"text": ",", "start": 609, "end": 610, "annotation": null}, {"text": "X-ray", "start": 611, "end": 616, "annotation": null}, {"text": "reflectivity", "start": 617, "end": 629, "annotation": null}, {"text": "(", "start": 630, "end": 631, "annotation": null}, {"text": "XRR", "start": 631, "end": 634, "annotation": null}, {"text": ")", "start": 634, "end": 635, "annotation": null}, {"text": ",", "start": 635, "end": 636, "annotation": null}, {"text": "sheet", "start": 637, "end": 642, "annotation": null}, {"text": "resistance", "start": 643, "end": 653, "annotation": null}, {"text": ",", "start": 653, "end": 654, "annotation": null}, {"text": "differential", "start": 655, "end": 667, "annotation": null}, {"text": "scanning", "start": 668, "end": 676, "annotation": null}, {"text": "calorimetry", "start": 677, "end": 688, "annotation": null}, {"text": "(", "start": 689, "end": 690, "annotation": null}, {"text": "DSC", "start": 690, "end": 693, "annotation": null}, {"text": ")", "start": 693, "end": 694, "annotation": null}, {"text": "]", "start": 694, "end": 695, "annotation": null}, {"text": "were", "start": 696, "end": 700, "annotation": null}, {"text": "combined", "start": 701, "end": 709, "annotation": null}, {"text": "with", "start": 710, "end": 714, "annotation": null}, {"text": "atom", "start": 715, "end": 719, "annotation": null}, {"text": "probe", "start": 720, "end": 725, "annotation": null}, {"text": "tomography", "start": 726, "end": 736, "annotation": null}, {"text": "(", "start": 737, "end": 738, "annotation": null}, {"text": "APT", "start": 738, "end": 741, "annotation": null}, {"text": ")", "start": 741, "end": 742, "annotation": null}, {"text": "to", "start": 743, "end": 745, "annotation": null}, {"text": "study", "start": 746, "end": 751, "annotation": null}, {"text": "the", "start": 752, "end": 755, "annotation": null}, {"text": "formation", "start": 756, "end": 765, "annotation": null}, {"text": "mechanisms", "start": 766, "end": 776, "annotation": null}, {"text": "as", "start": 777, "end": 779, "annotation": null}, {"text": "well", "start": 780, "end": 784, "annotation": null}, {"text": "as", "start": 785, "end": 787, "annotation": null}, {"text": "the", "start": 788, "end": 791, "annotation": null}, {"text": "redistribution", "start": 792, "end": 806, "annotation": null}, {"text": "of", "start": 807, "end": 809, "annotation": null}, {"text": "dopants", "start": 810, "end": 817, "annotation": null}, {"text": "and", "start": 818, "end": 821, "annotation": null}, {"text": "alloy", "start": 822, "end": 827, "annotation": null}, {"text": "elements", "start": 828, "end": 836, "annotation": null}, {"text": "(", "start": 837, "end": 838, "annotation": null}, {"text": "Pt", "start": 838, "end": 840, "annotation": null}, {"text": ",", "start": 840, "end": 841, "annotation": null}, {"text": "Pd", "start": 842, "end": 844, "annotation": null}, {"text": ".", "start": 844, "end": 845, "annotation": null}, {"text": ")", "start": 845, "end": 846, "annotation": null}], [{"text": "during", "start": 847, "end": 853, "annotation": null}, {"text": "the", "start": 854, "end": 857, "annotation": null}, {"text": "silicide", "start": 858, "end": 866, "annotation": null}, {"text": "formation", "start": 867, "end": 876, "annotation": null}, {"text": ".", "start": 876, "end": 877, "annotation": null}], [{"text": "Phenomena", "start": 878, "end": 887, "annotation": null}, {"text": "like", "start": 888, "end": 892, "annotation": null}, {"text": "nucleation", "start": 893, "end": 903, "annotation": null}, {"text": ",", "start": 903, "end": 904, "annotation": null}, {"text": "lateral", "start": 905, "end": 912, "annotation": null}, {"text": "growth", "start": 913, "end": 919, "annotation": null}, {"text": ",", "start": 919, "end": 920, "annotation": null}, {"text": "interfacial", "start": 921, "end": 932, "annotation": null}, {"text": "reaction", "start": 933, "end": 941, "annotation": null}, {"text": ",", "start": 941, "end": 942, "annotation": null}, {"text": "diffusion", "start": 943, "end": 952, "annotation": null}, {"text": ",", "start": 952, "end": 953, "annotation": null}, {"text": "precipitation", "start": 954, "end": 967, "annotation": null}, {"text": ",", "start": 967, "end": 968, "annotation": null}, {"text": "and", "start": 969, "end": 972, "annotation": null}, {"text": "transient", "start": 973, "end": 982, "annotation": null}, {"text": "phase", "start": 983, "end": 988, "annotation": null}, {"text": "formation", "start": 989, "end": 998, "annotation": null}, {"text": "are", "start": 999, "end": 1002, "annotation": null}, {"text": "investigated", "start": 1003, "end": 1015, "annotation": null}, {"text": ".", "start": 1015, "end": 1016, "annotation": null}], [{"text": "The", "start": 1017, "end": 1020, "annotation": null}, {"text": "effect", "start": 1021, "end": 1027, "annotation": null}, {"text": "of", "start": 1028, "end": 1030, "annotation": null}, {"text": "alloy", "start": 1031, "end": 1036, "annotation": null}, {"text": "elements", "start": 1037, "end": 1045, "annotation": null}, {"text": "(", "start": 1046, "end": 1047, "annotation": null}, {"text": "Pt", "start": 1047, "end": 1049, "annotation": null}, {"text": ",", "start": 1049, "end": 1050, "annotation": null}, {"text": "Pd", "start": 1051, "end": 1053, "annotation": null}, {"text": ".", "start": 1053, "end": 1054, "annotation": null}, {"text": ")", "start": 1054, "end": 1055, "annotation": null}], [{"text": "and", "start": 1056, "end": 1059, "annotation": null}, {"text": "dopants", "start": 1060, "end": 1067, "annotation": null}, {"text": "(", "start": 1068, "end": 1069, "annotation": null}, {"text": "As", "start": 1069, "end": 1071, "annotation": "DOPANT"}, {"text": ",", "start": 1071, "end": 1072, "annotation": null}, {"text": "B", "start": 1073, "end": 1074, "annotation": "DOPANT"}, {"text": ".", "start": 1074, "end": 1075, "annotation": null}, {"text": ")", "start": 1075, "end": 1076, "annotation": null}], [{"text": "as", "start": 1077, "end": 1079, "annotation": null}, {"text": "well", "start": 1080, "end": 1084, "annotation": null}, {"text": "as", "start": 1085, "end": 1087, "annotation": null}, {"text": "stress", "start": 1088, "end": 1094, "annotation": null}, {"text": "and", "start": 1095, "end": 1098, "annotation": null}, {"text": "defects", "start": 1099, "end": 1106, "annotation": null}, {"text": "induced", "start": 1107, "end": 1114, "annotation": null}, {"text": "by", "start": 1115, "end": 1117, "annotation": null}, {"text": "the", "start": 1118, "end": 1121, "annotation": null}, {"text": "confinement", "start": 1122, "end": 1133, "annotation": null}, {"text": "in", "start": 1134, "end": 1136, "annotation": null}, {"text": "devices", "start": 1137, "end": 1144, "annotation": null}, {"text": "on", "start": 1145, "end": 1147, "annotation": null}, {"text": "the", "start": 1148, "end": 1151, "annotation": null}, {"text": "silicide", "start": 1152, "end": 1160, "annotation": null}, {"text": "formation", "start": 1161, "end": 1170, "annotation": null}, {"text": "mechanism", "start": 1171, "end": 1180, "annotation": null}, {"text": "and", "start": 1181, "end": 1184, "annotation": null}, {"text": "alloying", "start": 1185, "end": 1193, "annotation": null}, {"text": "element", "start": 1194, "end": 1201, "annotation": null}, {"text": "redistribution", "start": 1202, "end": 1216, "annotation": null}, {"text": "is", "start": 1217, "end": 1219, "annotation": null}, {"text": "examined", "start": 1220, "end": 1228, "annotation": null}, {"text": ".", "start": 1228, "end": 1229, "annotation": null}], [{"text": "In", "start": 1230, "end": 1232, "annotation": null}, {"text": "particular", "start": 1233, "end": 1243, "annotation": null}, {"text": "APT", "start": 1244, "end": 1247, "annotation": null}, {"text": "has", "start": 1248, "end": 1251, "annotation": null}, {"text": "been", "start": 1252, "end": 1256, "annotation": null}, {"text": "performed", "start": 1257, "end": 1266, "annotation": null}, {"text": "for", "start": 1267, "end": 1270, "annotation": null}, {"text": "the", "start": 1271, "end": 1274, "annotation": null}, {"text": "three", "start": 1275, "end": 1280, "annotation": null}, {"text": "-", "start": 1280, "end": 1281, "annotation": null}, {"text": "dimensional", "start": 1281, "end": 1292, "annotation": null}, {"text": "(", "start": 1293, "end": 1294, "annotation": null}, {"text": "3D", "start": 1294, "end": 1296, "annotation": null}, {"text": ")", "start": 1296, "end": 1297, "annotation": null}, {"text": "analysis", "start": 1298, "end": 1306, "annotation": null}, {"text": "of", "start": 1307, "end": 1309, "annotation": null}, {"text": "MOSFET", "start": 1310, "end": 1316, "annotation": null}, {"text": "at", "start": 1317, "end": 1319, "annotation": null}, {"text": "the", "start": 1320, "end": 1323, "annotation": null}, {"text": "atomic", "start": 1324, "end": 1330, "annotation": null}, {"text": "scale", "start": 1331, "end": 1336, "annotation": null}, {"text": ".", "start": 1336, "end": 1337, "annotation": null}], [{"text": "The", "start": 1338, "end": 1341, "annotation": null}, {"text": "advances", "start": 1342, "end": 1350, "annotation": null}, {"text": "in", "start": 1351, "end": 1353, "annotation": null}, {"text": "the", "start": 1354, "end": 1357, "annotation": null}, {"text": "understanding", "start": 1358, "end": 1371, "annotation": null}, {"text": "of", "start": 1372, "end": 1374, "annotation": null}, {"text": "the", "start": 1375, "end": 1378, "annotation": null}, {"text": "mechanisms", "start": 1379, "end": 1389, "annotation": null}, {"text": "of", "start": 1390, "end": 1392, "annotation": null}, {"text": "formation", "start": 1393, "end": 1402, "annotation": null}, {"text": "and", "start": 1403, "end": 1406, "annotation": null}, {"text": "redistribution", "start": 1407, "end": 1421, "annotation": null}, {"text": "are", "start": 1422, "end": 1425, "annotation": null}, {"text": "discussed", "start": 1426, "end": 1435, "annotation": null}, {"text": ".", "start": 1435, "end": 1436, "annotation": null}], [{"text": "KGaA", "start": 1472, "end": 1476, "annotation": null}, {"text": ",", "start": 1476, "end": 1477, "annotation": null}, {"text": "Weinheim", "start": 1478, "end": 1486, "annotation": null}, {"text": ".", "start": 1486, "end": 1487, "annotation": null}]]} -{"remark": "doping_annt1", "text": "A single-wavelength Brillouin\u2013erbium fiber laser (BEFL) is demonstrated using high germanium dopant concentration fiber and bismuth\u2013gallium\u2013aluminum co-doped high concentration erbium doped fiber (EDF). A 20-m long high Ge-doped fiber is used to provide nonlinear gains to generate a stimulated Brillouin scattering (SBS), and a 4.3-m long Bi\u2013Ga\u2013Al EDF provides linear gains to amplify the SBS. The relationship between the fiber parameters (dopant concentration, effective area, length and so on) of both linear and nonlinear medium and the output performance was discussed. The BEFL power increases as the effective area of the high Ge-doped fiber decreases. There is an optimum length in the high Ge-doped fiber which is 20-m long in this paper. The BEFL output power also increases as the output power of the Bi\u2013Ga\u2013Al EDF increases. The output performance increases as the erbium doping concentration increases. It is necessary to get the effective area of the Bi\u2013Ga\u2013Al EDF large enough to decrease the fiber loss. The optimum length in the Bi\u2013Ga\u2013Al EDF is 4.3m. The BEFL operates at 1563.61nm, which is upshifted by 0.09nm from the Brillouin pump (BP). It has a peak power of \u22123dBm and a side-mode suppression ratio of 26dB. The BP wavelength is tunable within a wavelength range from 1562.5 to 1564nm. The BEFL has a narrow linewidth. It is suitable for many potential applications, such as optical communication and sensors.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "single", "start": 2, "end": 8, "annotation": null}, {"text": "-", "start": 8, "end": 9, "annotation": null}, {"text": "wavelength", "start": 9, "end": 19, "annotation": null}, {"text": "Brillouin", "start": 20, "end": 29, "annotation": null}, {"text": "\u2013", "start": 29, "end": 30, "annotation": null}, {"text": "erbium", "start": 30, "end": 36, "annotation": null}, {"text": "fiber", "start": 37, "end": 42, "annotation": null}, {"text": "laser", "start": 43, "end": 48, "annotation": null}, {"text": "(", "start": 49, "end": 50, "annotation": null}, {"text": "BEFL", "start": 50, "end": 54, "annotation": null}, {"text": ")", "start": 54, "end": 55, "annotation": null}, {"text": "is", "start": 56, "end": 58, "annotation": null}, {"text": "demonstrated", "start": 59, "end": 71, "annotation": null}, {"text": "using", "start": 72, "end": 77, "annotation": null}, {"text": "high", "start": 78, "end": 82, "annotation": null}, {"text": "germanium", "start": 83, "end": 92, "annotation": "DOPANT"}, {"text": "dopant", "start": 93, "end": 99, "annotation": null}, {"text": "concentration", "start": 100, "end": 113, "annotation": null}, {"text": "fiber", "start": 114, "end": 119, "annotation": "BASEMAT"}, {"text": "and", "start": 120, "end": 123, "annotation": null}, {"text": "bismuth", "start": 124, "end": 131, "annotation": "DOPANT"}, {"text": "\u2013", "start": 131, "end": 132, "annotation": null}, {"text": "gallium", "start": 132, "end": 139, "annotation": "DOPANT"}, {"text": "\u2013", "start": 139, "end": 140, "annotation": null}, {"text": "aluminum", "start": 140, "end": 148, "annotation": "DOPANT"}, {"text": "co-doped", "start": 149, "end": 157, "annotation": null}, {"text": "high", "start": 158, "end": 162, "annotation": null}, {"text": "concentration", "start": 163, "end": 176, "annotation": null}, {"text": "erbium", "start": 177, "end": 183, "annotation": "DOPANT"}, {"text": "doped", "start": 184, "end": 189, "annotation": null}, {"text": "fiber", "start": 190, "end": 195, "annotation": "BASEMAT"}, {"text": "(", "start": 196, "end": 197, "annotation": null}, {"text": "EDF", "start": 197, "end": 200, "annotation": null}, {"text": ")", "start": 200, "end": 201, "annotation": null}, {"text": ".", "start": 201, "end": 202, "annotation": null}], [{"text": "A", "start": 203, "end": 204, "annotation": null}, {"text": "20-m", "start": 205, "end": 209, "annotation": null}, {"text": "long", "start": 210, "end": 214, "annotation": null}, {"text": "high", "start": 215, "end": 219, "annotation": null}, {"text": "Ge", "start": 220, "end": 222, "annotation": "DOPANT"}, {"text": "-", "start": 222, "end": 223, "annotation": null}, {"text": "doped", "start": 223, "end": 228, "annotation": null}, {"text": "fiber", "start": 229, "end": 234, "annotation": "BASEMAT"}, {"text": "is", "start": 235, "end": 237, "annotation": null}, {"text": "used", "start": 238, "end": 242, "annotation": null}, {"text": "to", "start": 243, "end": 245, "annotation": null}, {"text": "provide", "start": 246, "end": 253, "annotation": null}, {"text": "nonlinear", "start": 254, "end": 263, "annotation": null}, {"text": "gains", "start": 264, "end": 269, "annotation": null}, {"text": "to", "start": 270, "end": 272, "annotation": null}, {"text": "generate", "start": 273, "end": 281, "annotation": null}, {"text": "a", "start": 282, "end": 283, "annotation": null}, {"text": "stimulated", "start": 284, "end": 294, "annotation": null}, {"text": "Brillouin", "start": 295, "end": 304, "annotation": null}, {"text": "scattering", "start": 305, "end": 315, "annotation": null}, {"text": "(", "start": 316, "end": 317, "annotation": null}, {"text": "SBS", "start": 317, "end": 320, "annotation": null}, {"text": ")", "start": 320, "end": 321, "annotation": null}, {"text": ",", "start": 321, "end": 322, "annotation": null}, {"text": "and", "start": 323, "end": 326, "annotation": null}, {"text": "a", "start": 327, "end": 328, "annotation": null}, {"text": "4.3-m", "start": 329, "end": 334, "annotation": null}, {"text": "long", "start": 335, "end": 339, "annotation": null}, {"text": "Bi", "start": 340, "end": 342, "annotation": null}, {"text": "\u2013", "start": 342, "end": 343, "annotation": null}, {"text": "Ga", "start": 343, "end": 345, "annotation": null}, {"text": "\u2013", "start": 345, "end": 346, "annotation": null}, {"text": "Al", "start": 346, "end": 348, "annotation": null}, {"text": "EDF", "start": 349, "end": 352, "annotation": null}, {"text": "provides", "start": 353, "end": 361, "annotation": null}, {"text": "linear", "start": 362, "end": 368, "annotation": null}, {"text": "gains", "start": 369, "end": 374, "annotation": null}, {"text": "to", "start": 375, "end": 377, "annotation": null}, {"text": "amplify", "start": 378, "end": 385, "annotation": null}, {"text": "the", "start": 386, "end": 389, "annotation": null}, {"text": "SBS", "start": 390, "end": 393, "annotation": null}, {"text": ".", "start": 393, "end": 394, "annotation": null}], [{"text": "The", "start": 395, "end": 398, "annotation": null}, {"text": "relationship", "start": 399, "end": 411, "annotation": null}, {"text": "between", "start": 412, "end": 419, "annotation": null}, {"text": "the", "start": 420, "end": 423, "annotation": null}, {"text": "fiber", "start": 424, "end": 429, "annotation": null}, {"text": "parameters", "start": 430, "end": 440, "annotation": null}, {"text": "(", "start": 441, "end": 442, "annotation": null}, {"text": "dopant", "start": 442, "end": 448, "annotation": null}, {"text": "concentration", "start": 449, "end": 462, "annotation": null}, {"text": ",", "start": 462, "end": 463, "annotation": null}, {"text": "effective", "start": 464, "end": 473, "annotation": null}, {"text": "area", "start": 474, "end": 478, "annotation": null}, {"text": ",", "start": 478, "end": 479, "annotation": null}, {"text": "length", "start": 480, "end": 486, "annotation": null}, {"text": "and", "start": 487, "end": 490, "annotation": null}, {"text": "so", "start": 491, "end": 493, "annotation": null}, {"text": "on", "start": 494, "end": 496, "annotation": null}, {"text": ")", "start": 496, "end": 497, "annotation": null}, {"text": "of", "start": 498, "end": 500, "annotation": null}, {"text": "both", "start": 501, "end": 505, "annotation": null}, {"text": "linear", "start": 506, "end": 512, "annotation": null}, {"text": "and", "start": 513, "end": 516, "annotation": null}, {"text": "nonlinear", "start": 517, "end": 526, "annotation": null}, {"text": "medium", "start": 527, "end": 533, "annotation": null}, {"text": "and", "start": 534, "end": 537, "annotation": null}, {"text": "the", "start": 538, "end": 541, "annotation": null}, {"text": "output", "start": 542, "end": 548, "annotation": null}, {"text": "performance", "start": 549, "end": 560, "annotation": null}, {"text": "was", "start": 561, "end": 564, "annotation": null}, {"text": "discussed", "start": 565, "end": 574, "annotation": null}, {"text": ".", "start": 574, "end": 575, "annotation": null}], [{"text": "The", "start": 576, "end": 579, "annotation": null}, {"text": "BEFL", "start": 580, "end": 584, "annotation": null}, {"text": "power", "start": 585, "end": 590, "annotation": null}, {"text": "increases", "start": 591, "end": 600, "annotation": null}, {"text": "as", "start": 601, "end": 603, "annotation": null}, {"text": "the", "start": 604, "end": 607, "annotation": null}, {"text": "effective", "start": 608, "end": 617, "annotation": null}, {"text": "area", "start": 618, "end": 622, "annotation": null}, {"text": "of", "start": 623, "end": 625, "annotation": null}, {"text": "the", "start": 626, "end": 629, "annotation": null}, {"text": "high", "start": 630, "end": 634, "annotation": null}, {"text": "Ge", "start": 635, "end": 637, "annotation": "DOPANT"}, {"text": "-", "start": 637, "end": 638, "annotation": null}, {"text": "doped", "start": 638, "end": 643, "annotation": null}, {"text": "fiber", "start": 644, "end": 649, "annotation": "BASEMAT"}, {"text": "decreases", "start": 650, "end": 659, "annotation": null}, {"text": ".", "start": 659, "end": 660, "annotation": null}], [{"text": "There", "start": 661, "end": 666, "annotation": null}, {"text": "is", "start": 667, "end": 669, "annotation": null}, {"text": "an", "start": 670, "end": 672, "annotation": null}, {"text": "optimum", "start": 673, "end": 680, "annotation": null}, {"text": "length", "start": 681, "end": 687, "annotation": null}, {"text": "in", "start": 688, "end": 690, "annotation": null}, {"text": "the", "start": 691, "end": 694, "annotation": null}, {"text": "high", "start": 695, "end": 699, "annotation": null}, {"text": "Ge", "start": 700, "end": 702, "annotation": "DOPANT"}, {"text": "-", "start": 702, "end": 703, "annotation": null}, {"text": "doped", "start": 703, "end": 708, "annotation": null}, {"text": "fiber", "start": 709, "end": 714, "annotation": "BASEMAT"}, {"text": "which", "start": 715, "end": 720, "annotation": null}, {"text": "is", "start": 721, "end": 723, "annotation": null}, {"text": "20-m", "start": 724, "end": 728, "annotation": null}, {"text": "long", "start": 729, "end": 733, "annotation": null}, {"text": "in", "start": 734, "end": 736, "annotation": null}, {"text": "this", "start": 737, "end": 741, "annotation": null}, {"text": "paper", "start": 742, "end": 747, "annotation": null}, {"text": ".", "start": 747, "end": 748, "annotation": null}], [{"text": "The", "start": 749, "end": 752, "annotation": null}, {"text": "BEFL", "start": 753, "end": 757, "annotation": null}, {"text": "output", "start": 758, "end": 764, "annotation": null}, {"text": "power", "start": 765, "end": 770, "annotation": null}, {"text": "also", "start": 771, "end": 775, "annotation": null}, {"text": "increases", "start": 776, "end": 785, "annotation": null}, {"text": "as", "start": 786, "end": 788, "annotation": null}, {"text": "the", "start": 789, "end": 792, "annotation": null}, {"text": "output", "start": 793, "end": 799, "annotation": null}, {"text": "power", "start": 800, "end": 805, "annotation": null}, {"text": "of", "start": 806, "end": 808, "annotation": null}, {"text": "the", "start": 809, "end": 812, "annotation": null}, {"text": "Bi", "start": 813, "end": 815, "annotation": null}, {"text": "\u2013", "start": 815, "end": 816, "annotation": null}, {"text": "Ga", "start": 816, "end": 818, "annotation": null}, {"text": "\u2013", "start": 818, "end": 819, "annotation": null}, {"text": "Al", "start": 819, "end": 821, "annotation": null}, {"text": "EDF", "start": 822, "end": 825, "annotation": null}, {"text": "increases", "start": 826, "end": 835, "annotation": null}, {"text": ".", "start": 835, "end": 836, "annotation": null}], [{"text": "The", "start": 837, "end": 840, "annotation": null}, {"text": "output", "start": 841, "end": 847, "annotation": null}, {"text": "performance", "start": 848, "end": 859, "annotation": null}, {"text": "increases", "start": 860, "end": 869, "annotation": null}, {"text": "as", "start": 870, "end": 872, "annotation": null}, {"text": "the", "start": 873, "end": 876, "annotation": null}, {"text": "erbium", "start": 877, "end": 883, "annotation": null}, {"text": "doping", "start": 884, "end": 890, "annotation": null}, {"text": "concentration", "start": 891, "end": 904, "annotation": null}, {"text": "increases", "start": 905, "end": 914, "annotation": null}, {"text": ".", "start": 914, "end": 915, "annotation": null}], [{"text": "It", "start": 916, "end": 918, "annotation": null}, {"text": "is", "start": 919, "end": 921, "annotation": null}, {"text": "necessary", "start": 922, "end": 931, "annotation": null}, {"text": "to", "start": 932, "end": 934, "annotation": null}, {"text": "get", "start": 935, "end": 938, "annotation": null}, {"text": "the", "start": 939, "end": 942, "annotation": null}, {"text": "effective", "start": 943, "end": 952, "annotation": null}, {"text": "area", "start": 953, "end": 957, "annotation": null}, {"text": "of", "start": 958, "end": 960, "annotation": null}, {"text": "the", "start": 961, "end": 964, "annotation": null}, {"text": "Bi", "start": 965, "end": 967, "annotation": null}, {"text": "\u2013", "start": 967, "end": 968, "annotation": null}, {"text": "Ga", "start": 968, "end": 970, "annotation": null}, {"text": "\u2013", "start": 970, "end": 971, "annotation": null}, {"text": "Al", "start": 971, "end": 973, "annotation": null}, {"text": "EDF", "start": 974, "end": 977, "annotation": null}, {"text": "large", "start": 978, "end": 983, "annotation": null}, {"text": "enough", "start": 984, "end": 990, "annotation": null}, {"text": "to", "start": 991, "end": 993, "annotation": null}, {"text": "decrease", "start": 994, "end": 1002, "annotation": null}, {"text": "the", "start": 1003, "end": 1006, "annotation": null}, {"text": "fiber", "start": 1007, "end": 1012, "annotation": null}, {"text": "loss", "start": 1013, "end": 1017, "annotation": null}, {"text": ".", "start": 1017, "end": 1018, "annotation": null}], [{"text": "The", "start": 1019, "end": 1022, "annotation": null}, {"text": "optimum", "start": 1023, "end": 1030, "annotation": null}, {"text": "length", "start": 1031, "end": 1037, "annotation": null}, {"text": "in", "start": 1038, "end": 1040, "annotation": null}, {"text": "the", "start": 1041, "end": 1044, "annotation": null}, {"text": "Bi", "start": 1045, "end": 1047, "annotation": null}, {"text": "\u2013", "start": 1047, "end": 1048, "annotation": null}, {"text": "Ga", "start": 1048, "end": 1050, "annotation": null}, {"text": "\u2013", "start": 1050, "end": 1051, "annotation": null}, {"text": "Al", "start": 1051, "end": 1053, "annotation": null}, {"text": "EDF", "start": 1054, "end": 1057, "annotation": null}, {"text": "is", "start": 1058, "end": 1060, "annotation": null}, {"text": "4.3", "start": 1061, "end": 1064, "annotation": null}, {"text": "m", "start": 1064, "end": 1065, "annotation": null}, {"text": ".", "start": 1065, "end": 1066, "annotation": null}], [{"text": "The", "start": 1067, "end": 1070, "annotation": null}, {"text": "BEFL", "start": 1071, "end": 1075, "annotation": null}, {"text": "operates", "start": 1076, "end": 1084, "annotation": null}, {"text": "at", "start": 1085, "end": 1087, "annotation": null}, {"text": "1563.61", "start": 1088, "end": 1095, "annotation": null}, {"text": "nm", "start": 1095, "end": 1097, "annotation": null}, {"text": ",", "start": 1097, "end": 1098, "annotation": null}, {"text": "which", "start": 1099, "end": 1104, "annotation": null}, {"text": "is", "start": 1105, "end": 1107, "annotation": null}, {"text": "upshifted", "start": 1108, "end": 1117, "annotation": null}, {"text": "by", "start": 1118, "end": 1120, "annotation": null}, {"text": "0.09", "start": 1121, "end": 1125, "annotation": null}, {"text": "nm", "start": 1125, "end": 1127, "annotation": null}, {"text": "from", "start": 1128, "end": 1132, "annotation": null}, {"text": "the", "start": 1133, "end": 1136, "annotation": null}, {"text": "Brillouin", "start": 1137, "end": 1146, "annotation": null}, {"text": "pump", "start": 1147, "end": 1151, "annotation": null}, {"text": "(", "start": 1152, "end": 1153, "annotation": null}, {"text": "BP", "start": 1153, "end": 1155, "annotation": null}, {"text": ")", "start": 1155, "end": 1156, "annotation": null}, {"text": ".", "start": 1156, "end": 1157, "annotation": null}], [{"text": "It", "start": 1158, "end": 1160, "annotation": null}, {"text": "has", "start": 1161, "end": 1164, "annotation": null}, {"text": "a", "start": 1165, "end": 1166, "annotation": null}, {"text": "peak", "start": 1167, "end": 1171, "annotation": null}, {"text": "power", "start": 1172, "end": 1177, "annotation": null}, {"text": "of", "start": 1178, "end": 1180, "annotation": null}, {"text": "\u22123dBm", "start": 1181, "end": 1186, "annotation": null}, {"text": "and", "start": 1187, "end": 1190, "annotation": null}, {"text": "a", "start": 1191, "end": 1192, "annotation": null}, {"text": "side", "start": 1193, "end": 1197, "annotation": null}, {"text": "-", "start": 1197, "end": 1198, "annotation": null}, {"text": "mode", "start": 1198, "end": 1202, "annotation": null}, {"text": "suppression", "start": 1203, "end": 1214, "annotation": null}, {"text": "ratio", "start": 1215, "end": 1220, "annotation": null}, {"text": "of", "start": 1221, "end": 1223, "annotation": null}, {"text": "26dB", "start": 1224, "end": 1228, "annotation": null}, {"text": ".", "start": 1228, "end": 1229, "annotation": null}], [{"text": "The", "start": 1230, "end": 1233, "annotation": null}, {"text": "BP", "start": 1234, "end": 1236, "annotation": null}, {"text": "wavelength", "start": 1237, "end": 1247, "annotation": null}, {"text": "is", "start": 1248, "end": 1250, "annotation": null}, {"text": "tunable", "start": 1251, "end": 1258, "annotation": null}, {"text": "within", "start": 1259, "end": 1265, "annotation": null}, {"text": "a", "start": 1266, "end": 1267, "annotation": null}, {"text": "wavelength", "start": 1268, "end": 1278, "annotation": null}, {"text": "range", "start": 1279, "end": 1284, "annotation": null}, {"text": "from", "start": 1285, "end": 1289, "annotation": null}, {"text": "1562.5", "start": 1290, "end": 1296, "annotation": null}, {"text": "to", "start": 1297, "end": 1299, "annotation": null}, {"text": "1564", "start": 1300, "end": 1304, "annotation": null}, {"text": "nm", "start": 1304, "end": 1306, "annotation": null}, {"text": ".", "start": 1306, "end": 1307, "annotation": null}], [{"text": "The", "start": 1308, "end": 1311, "annotation": null}, {"text": "BEFL", "start": 1312, "end": 1316, "annotation": null}, {"text": "has", "start": 1317, "end": 1320, "annotation": null}, {"text": "a", "start": 1321, "end": 1322, "annotation": null}, {"text": "narrow", "start": 1323, "end": 1329, "annotation": null}, {"text": "linewidth", "start": 1330, "end": 1339, "annotation": null}, {"text": ".", "start": 1339, "end": 1340, "annotation": null}], [{"text": "It", "start": 1341, "end": 1343, "annotation": null}, {"text": "is", "start": 1344, "end": 1346, "annotation": null}, {"text": "suitable", "start": 1347, "end": 1355, "annotation": null}, {"text": "for", "start": 1356, "end": 1359, "annotation": null}, {"text": "many", "start": 1360, "end": 1364, "annotation": null}, {"text": "potential", "start": 1365, "end": 1374, "annotation": null}, {"text": "applications", "start": 1375, "end": 1387, "annotation": null}, {"text": ",", "start": 1387, "end": 1388, "annotation": null}, {"text": "such", "start": 1389, "end": 1393, "annotation": null}, {"text": "as", "start": 1394, "end": 1396, "annotation": null}, {"text": "optical", "start": 1397, "end": 1404, "annotation": null}, {"text": "communication", "start": 1405, "end": 1418, "annotation": null}, {"text": "and", "start": 1419, "end": 1422, "annotation": null}, {"text": "sensors", "start": 1423, "end": 1430, "annotation": null}, {"text": ".", "start": 1430, "end": 1431, "annotation": null}]]} -{"remark": "doping_annt1", "text": "We have achieved over 1000% colossal magnetoresistance (CMR) at room temperature by introducing well-controlled disorder to the A-site ordered manganites, Sm 1 - x La x + y Ba 1 - y Mn 2 O 6 . The La-doping to the A-sites (Sm and Ba) of mother compound, SmBaMn 2 O 6 , has mainly three different effects: (1) ionic-size randomness (IR) by Sm(La), (2) charge randomness (CR) by Ba(La) and (3) carrier doping by La/Ba. Any CMR associated with the melting of charge/orbital order (CO) phase by magnetic field is not caused by only IR, because the CO state is very stable in the homogeneous electrostatic potential at the A-site. However, a slight CR destabilizes the CO state and realizes phase separation state between CO and ferromagnetic domains, resulting in an insulator\u2013metal transition under magnetic field, CMR effect. Therefore, the electrostatic potential disorder (CR) at the A-site is an essential role for CMR effect.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "have", "start": 3, "end": 7, "annotation": null}, {"text": "achieved", "start": 8, "end": 16, "annotation": null}, {"text": "over", "start": 17, "end": 21, "annotation": null}, {"text": "1000", "start": 22, "end": 26, "annotation": null}, {"text": "%", "start": 26, "end": 27, "annotation": null}, {"text": "colossal", "start": 28, "end": 36, "annotation": null}, {"text": "magnetoresistance", "start": 37, "end": 54, "annotation": null}, {"text": "(", "start": 55, "end": 56, "annotation": null}, {"text": "CMR", "start": 56, "end": 59, "annotation": null}, {"text": ")", "start": 59, "end": 60, "annotation": null}, {"text": "at", "start": 61, "end": 63, "annotation": null}, {"text": "room", "start": 64, "end": 68, "annotation": null}, {"text": "temperature", "start": 69, "end": 80, "annotation": null}, {"text": "by", "start": 81, "end": 83, "annotation": null}, {"text": "introducing", "start": 84, "end": 95, "annotation": null}, {"text": "well", "start": 96, "end": 100, "annotation": null}, {"text": "-", "start": 100, "end": 101, "annotation": null}, {"text": "controlled", "start": 101, "end": 111, "annotation": null}, {"text": "disorder", "start": 112, "end": 120, "annotation": null}, {"text": "to", "start": 121, "end": 123, "annotation": null}, {"text": "the", "start": 124, "end": 127, "annotation": null}, {"text": "A-site", "start": 128, "end": 134, "annotation": null}, {"text": "ordered", "start": 135, "end": 142, "annotation": null}, {"text": "manganites", "start": 143, "end": 153, "annotation": null}, {"text": ",", "start": 153, "end": 154, "annotation": null}, {"text": "Sm", "start": 155, "end": 157, "annotation": null}, {"text": "1", "start": 158, "end": 159, "annotation": null}, {"text": "-", "start": 160, "end": 161, "annotation": null}, {"text": "x", "start": 162, "end": 163, "annotation": null}, {"text": "La", "start": 164, "end": 166, "annotation": null}, {"text": "x", "start": 167, "end": 168, "annotation": null}, {"text": "+", "start": 169, "end": 170, "annotation": null}, {"text": "y", "start": 171, "end": 172, "annotation": null}, {"text": "Ba", "start": 173, "end": 175, "annotation": null}, {"text": "1", "start": 176, "end": 177, "annotation": null}, {"text": "-", "start": 178, "end": 179, "annotation": null}, {"text": "y", "start": 180, "end": 181, "annotation": null}, {"text": "Mn", "start": 182, "end": 184, "annotation": null}, {"text": "2", "start": 185, "end": 186, "annotation": null}, {"text": "O", "start": 187, "end": 188, "annotation": null}, {"text": "6", "start": 189, "end": 190, "annotation": null}, {"text": ".", "start": 191, "end": 192, "annotation": null}], [{"text": "The", "start": 193, "end": 196, "annotation": null}, {"text": "La", "start": 197, "end": 199, "annotation": "DOPANT"}, {"text": "-", "start": 199, "end": 200, "annotation": null}, {"text": "doping", "start": 200, "end": 206, "annotation": null}, {"text": "to", "start": 207, "end": 209, "annotation": null}, {"text": "the", "start": 210, "end": 213, "annotation": null}, {"text": "A-sites", "start": 214, "end": 221, "annotation": null}, {"text": "(", "start": 222, "end": 223, "annotation": null}, {"text": "Sm", "start": 223, "end": 225, "annotation": null}, {"text": "and", "start": 226, "end": 229, "annotation": null}, {"text": "Ba", "start": 230, "end": 232, "annotation": null}, {"text": ")", "start": 232, "end": 233, "annotation": null}, {"text": "of", "start": 234, "end": 236, "annotation": null}, {"text": "mother", "start": 237, "end": 243, "annotation": null}, {"text": "compound", "start": 244, "end": 252, "annotation": null}, {"text": ",", "start": 252, "end": 253, "annotation": null}, {"text": "SmBaMn", "start": 254, "end": 260, "annotation": "BASEMAT"}, {"text": "2", "start": 261, "end": 262, "annotation": "BASEMAT"}, {"text": "O", "start": 263, "end": 264, "annotation": "BASEMAT"}, {"text": "6", "start": 265, "end": 266, "annotation": "BASEMAT"}, {"text": ",", "start": 267, "end": 268, "annotation": null}, {"text": "has", "start": 269, "end": 272, "annotation": null}, {"text": "mainly", "start": 273, "end": 279, "annotation": null}, {"text": "three", "start": 280, "end": 285, "annotation": null}, {"text": "different", "start": 286, "end": 295, "annotation": null}, {"text": "effects", "start": 296, "end": 303, "annotation": null}, {"text": ":", "start": 303, "end": 304, "annotation": null}, {"text": "(", "start": 305, "end": 306, "annotation": null}, {"text": "1", "start": 306, "end": 307, "annotation": null}, {"text": ")", "start": 307, "end": 308, "annotation": null}, {"text": "ionic", "start": 309, "end": 314, "annotation": null}, {"text": "-", "start": 314, "end": 315, "annotation": null}, {"text": "size", "start": 315, "end": 319, "annotation": null}, {"text": "randomness", "start": 320, "end": 330, "annotation": null}, {"text": "(", "start": 331, "end": 332, "annotation": null}, {"text": "IR", "start": 332, "end": 334, "annotation": null}, {"text": ")", "start": 334, "end": 335, "annotation": null}, {"text": "by", "start": 336, "end": 338, "annotation": null}, {"text": "Sm(La)", "start": 339, "end": 345, "annotation": null}, {"text": ",", "start": 345, "end": 346, "annotation": null}, {"text": "(", "start": 347, "end": 348, "annotation": null}, {"text": "2", "start": 348, "end": 349, "annotation": null}, {"text": ")", "start": 349, "end": 350, "annotation": null}, {"text": "charge", "start": 351, "end": 357, "annotation": null}, {"text": "randomness", "start": 358, "end": 368, "annotation": null}, {"text": "(", "start": 369, "end": 370, "annotation": null}, {"text": "CR", "start": 370, "end": 372, "annotation": null}, {"text": ")", "start": 372, "end": 373, "annotation": null}, {"text": "by", "start": 374, "end": 376, "annotation": null}, {"text": "Ba(La)", "start": 377, "end": 383, "annotation": null}, {"text": "and", "start": 384, "end": 387, "annotation": null}, {"text": "(", "start": 388, "end": 389, "annotation": null}, {"text": "3", "start": 389, "end": 390, "annotation": null}, {"text": ")", "start": 390, "end": 391, "annotation": null}, {"text": "carrier", "start": 392, "end": 399, "annotation": null}, {"text": "doping", "start": 400, "end": 406, "annotation": null}, {"text": "by", "start": 407, "end": 409, "annotation": null}, {"text": "La", "start": 410, "end": 412, "annotation": "DOPANT"}, {"text": "/", "start": 412, "end": 413, "annotation": null}, {"text": "Ba", "start": 413, "end": 415, "annotation": "DOPANT"}, {"text": ".", "start": 415, "end": 416, "annotation": null}], [{"text": "Any", "start": 417, "end": 420, "annotation": null}, {"text": "CMR", "start": 421, "end": 424, "annotation": null}, {"text": "associated", "start": 425, "end": 435, "annotation": null}, {"text": "with", "start": 436, "end": 440, "annotation": null}, {"text": "the", "start": 441, "end": 444, "annotation": null}, {"text": "melting", "start": 445, "end": 452, "annotation": null}, {"text": "of", "start": 453, "end": 455, "annotation": null}, {"text": "charge", "start": 456, "end": 462, "annotation": null}, {"text": "/", "start": 462, "end": 463, "annotation": null}, {"text": "orbital", "start": 463, "end": 470, "annotation": null}, {"text": "order", "start": 471, "end": 476, "annotation": null}, {"text": "(", "start": 477, "end": 478, "annotation": null}, {"text": "CO", "start": 478, "end": 480, "annotation": null}, {"text": ")", "start": 480, "end": 481, "annotation": null}, {"text": "phase", "start": 482, "end": 487, "annotation": null}, {"text": "by", "start": 488, "end": 490, "annotation": null}, {"text": "magnetic", "start": 491, "end": 499, "annotation": null}, {"text": "field", "start": 500, "end": 505, "annotation": null}, {"text": "is", "start": 506, "end": 508, "annotation": null}, {"text": "not", "start": 509, "end": 512, "annotation": null}, {"text": "caused", "start": 513, "end": 519, "annotation": null}, {"text": "by", "start": 520, "end": 522, "annotation": null}, {"text": "only", "start": 523, "end": 527, "annotation": null}, {"text": "IR", "start": 528, "end": 530, "annotation": null}, {"text": ",", "start": 530, "end": 531, "annotation": null}, {"text": "because", "start": 532, "end": 539, "annotation": null}, {"text": "the", "start": 540, "end": 543, "annotation": null}, {"text": "CO", "start": 544, "end": 546, "annotation": null}, {"text": "state", "start": 547, "end": 552, "annotation": null}, {"text": "is", "start": 553, "end": 555, "annotation": null}, {"text": "very", "start": 556, "end": 560, "annotation": null}, {"text": "stable", "start": 561, "end": 567, "annotation": null}, {"text": "in", "start": 568, "end": 570, "annotation": null}, {"text": "the", "start": 571, "end": 574, "annotation": null}, {"text": "homogeneous", "start": 575, "end": 586, "annotation": null}, {"text": "electrostatic", "start": 587, "end": 600, "annotation": null}, {"text": "potential", "start": 601, "end": 610, "annotation": null}, {"text": "at", "start": 611, "end": 613, "annotation": null}, {"text": "the", "start": 614, "end": 617, "annotation": null}, {"text": "A-site", "start": 618, "end": 624, "annotation": null}, {"text": ".", "start": 624, "end": 625, "annotation": null}], [{"text": "However", "start": 626, "end": 633, "annotation": null}, {"text": ",", "start": 633, "end": 634, "annotation": null}, {"text": "a", "start": 635, "end": 636, "annotation": null}, {"text": "slight", "start": 637, "end": 643, "annotation": null}, {"text": "CR", "start": 644, "end": 646, "annotation": null}, {"text": "destabilizes", "start": 647, "end": 659, "annotation": null}, {"text": "the", "start": 660, "end": 663, "annotation": null}, {"text": "CO", "start": 664, "end": 666, "annotation": null}, {"text": "state", "start": 667, "end": 672, "annotation": null}, {"text": "and", "start": 673, "end": 676, "annotation": null}, {"text": "realizes", "start": 677, "end": 685, "annotation": null}, {"text": "phase", "start": 686, "end": 691, "annotation": null}, {"text": "separation", "start": 692, "end": 702, "annotation": null}, {"text": "state", "start": 703, "end": 708, "annotation": null}, {"text": "between", "start": 709, "end": 716, "annotation": null}, {"text": "CO", "start": 717, "end": 719, "annotation": null}, {"text": "and", "start": 720, "end": 723, "annotation": null}, {"text": "ferromagnetic", "start": 724, "end": 737, "annotation": null}, {"text": "domains", "start": 738, "end": 745, "annotation": null}, {"text": ",", "start": 745, "end": 746, "annotation": null}, {"text": "resulting", "start": 747, "end": 756, "annotation": null}, {"text": "in", "start": 757, "end": 759, "annotation": null}, {"text": "an", "start": 760, "end": 762, "annotation": null}, {"text": "insulator", "start": 763, "end": 772, "annotation": null}, {"text": "\u2013", "start": 772, "end": 773, "annotation": null}, {"text": "metal", "start": 773, "end": 778, "annotation": null}, {"text": "transition", "start": 779, "end": 789, "annotation": null}, {"text": "under", "start": 790, "end": 795, "annotation": null}, {"text": "magnetic", "start": 796, "end": 804, "annotation": null}, {"text": "field", "start": 805, "end": 810, "annotation": null}, {"text": ",", "start": 810, "end": 811, "annotation": null}, {"text": "CMR", "start": 812, "end": 815, "annotation": null}, {"text": "effect", "start": 816, "end": 822, "annotation": null}, {"text": ".", "start": 822, "end": 823, "annotation": null}], [{"text": "Therefore", "start": 824, "end": 833, "annotation": null}, {"text": ",", "start": 833, "end": 834, "annotation": null}, {"text": "the", "start": 835, "end": 838, "annotation": null}, {"text": "electrostatic", "start": 839, "end": 852, "annotation": null}, {"text": "potential", "start": 853, "end": 862, "annotation": null}, {"text": "disorder", "start": 863, "end": 871, "annotation": null}, {"text": "(", "start": 872, "end": 873, "annotation": null}, {"text": "CR", "start": 873, "end": 875, "annotation": null}, {"text": ")", "start": 875, "end": 876, "annotation": null}, {"text": "at", "start": 877, "end": 879, "annotation": null}, {"text": "the", "start": 880, "end": 883, "annotation": null}, {"text": "A-site", "start": 884, "end": 890, "annotation": null}, {"text": "is", "start": 891, "end": 893, "annotation": null}, {"text": "an", "start": 894, "end": 896, "annotation": null}, {"text": "essential", "start": 897, "end": 906, "annotation": null}, {"text": "role", "start": 907, "end": 911, "annotation": null}, {"text": "for", "start": 912, "end": 915, "annotation": null}, {"text": "CMR", "start": 916, "end": 919, "annotation": null}, {"text": "effect", "start": 920, "end": 926, "annotation": null}, {"text": ".", "start": 926, "end": 927, "annotation": null}]]} +{"remark": "doping_annt2", "text": "Carbon-doped KTaO3 was synthesized for the first time via a simple combination of hydrothermal and calcination processes with glucose as the carbon source. XRD and XPS characterizations proved the successful introduction of the carbon atoms into the KTaO3 lattice. Photocatalytic test showed that the carbon-doped KTaO3 presented excellent performance in photocatalytic H2 generation under simulated sunlight illumination, mainly due to the enhanced separation of electron-hole pairs. The optimal sample presents a H2 generation rate of 592\u03bcmolg\u22121h\u22121, which reaches 2.6 times that of pure KTaO3.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Carbon", "start": 0, "end": 6, "annotation": "DOPANT"}, {"text": "-", "start": 6, "end": 7, "annotation": null}, {"text": "doped", "start": 7, "end": 12, "annotation": null}, {"text": "KTaO3", "start": 13, "end": 18, "annotation": "BASEMAT"}, {"text": "was", "start": 19, "end": 22, "annotation": null}, {"text": "synthesized", "start": 23, "end": 34, "annotation": null}, {"text": "for", "start": 35, "end": 38, "annotation": null}, {"text": "the", "start": 39, "end": 42, "annotation": null}, {"text": "first", "start": 43, "end": 48, "annotation": null}, {"text": "time", "start": 49, "end": 53, "annotation": null}, {"text": "via", "start": 54, "end": 57, "annotation": null}, {"text": "a", "start": 58, "end": 59, "annotation": null}, {"text": "simple", "start": 60, "end": 66, "annotation": null}, {"text": "combination", "start": 67, "end": 78, "annotation": null}, {"text": "of", "start": 79, "end": 81, "annotation": null}, {"text": "hydrothermal", "start": 82, "end": 94, "annotation": null}, {"text": "and", "start": 95, "end": 98, "annotation": null}, {"text": "calcination", "start": 99, "end": 110, "annotation": null}, {"text": "processes", "start": 111, "end": 120, "annotation": null}, {"text": "with", "start": 121, "end": 125, "annotation": null}, {"text": "glucose", "start": 126, "end": 133, "annotation": null}, {"text": "as", "start": 134, "end": 136, "annotation": null}, {"text": "the", "start": 137, "end": 140, "annotation": null}, {"text": "carbon", "start": 141, "end": 147, "annotation": null}, {"text": "source", "start": 148, "end": 154, "annotation": null}, {"text": ".", "start": 154, "end": 155, "annotation": null}], [{"text": "XRD", "start": 156, "end": 159, "annotation": null}, {"text": "and", "start": 160, "end": 163, "annotation": null}, {"text": "XPS", "start": 164, "end": 167, "annotation": null}, {"text": "characterizations", "start": 168, "end": 185, "annotation": null}, {"text": "proved", "start": 186, "end": 192, "annotation": null}, {"text": "the", "start": 193, "end": 196, "annotation": null}, {"text": "successful", "start": 197, "end": 207, "annotation": null}, {"text": "introduction", "start": 208, "end": 220, "annotation": null}, {"text": "of", "start": 221, "end": 223, "annotation": null}, {"text": "the", "start": 224, "end": 227, "annotation": null}, {"text": "carbon", "start": 228, "end": 234, "annotation": "DOPANT"}, {"text": "atoms", "start": 235, "end": 240, "annotation": null}, {"text": "into", "start": 241, "end": 245, "annotation": null}, {"text": "the", "start": 246, "end": 249, "annotation": null}, {"text": "KTaO3", "start": 250, "end": 255, "annotation": "BASEMAT"}, {"text": "lattice", "start": 256, "end": 263, "annotation": null}, {"text": ".", "start": 263, "end": 264, "annotation": null}], [{"text": "Photocatalytic", "start": 265, "end": 279, "annotation": null}, {"text": "test", "start": 280, "end": 284, "annotation": null}, {"text": "showed", "start": 285, "end": 291, "annotation": null}, {"text": "that", "start": 292, "end": 296, "annotation": null}, {"text": "the", "start": 297, "end": 300, "annotation": null}, {"text": "carbon", "start": 301, "end": 307, "annotation": "DOPANT"}, {"text": "-", "start": 307, "end": 308, "annotation": null}, {"text": "doped", "start": 308, "end": 313, "annotation": null}, {"text": "KTaO3", "start": 314, "end": 319, "annotation": "BASEMAT"}, {"text": "presented", "start": 320, "end": 329, "annotation": null}, {"text": "excellent", "start": 330, "end": 339, "annotation": null}, {"text": "performance", "start": 340, "end": 351, "annotation": null}, {"text": "in", "start": 352, "end": 354, "annotation": null}, {"text": "photocatalytic", "start": 355, "end": 369, "annotation": null}, {"text": "H2", "start": 370, "end": 372, "annotation": null}, {"text": "generation", "start": 373, "end": 383, "annotation": null}, {"text": "under", "start": 384, "end": 389, "annotation": null}, {"text": "simulated", "start": 390, "end": 399, "annotation": null}, {"text": "sunlight", "start": 400, "end": 408, "annotation": null}, {"text": "illumination", "start": 409, "end": 421, "annotation": null}, {"text": ",", "start": 421, "end": 422, "annotation": null}, {"text": "mainly", "start": 423, "end": 429, "annotation": null}, {"text": "due", "start": 430, "end": 433, "annotation": null}, {"text": "to", "start": 434, "end": 436, "annotation": null}, {"text": "the", "start": 437, "end": 440, "annotation": null}, {"text": "enhanced", "start": 441, "end": 449, "annotation": null}, {"text": "separation", "start": 450, "end": 460, "annotation": null}, {"text": "of", "start": 461, "end": 463, "annotation": null}, {"text": "electron", "start": 464, "end": 472, "annotation": null}, {"text": "-", "start": 472, "end": 473, "annotation": null}, {"text": "hole", "start": 473, "end": 477, "annotation": null}, {"text": "pairs", "start": 478, "end": 483, "annotation": null}, {"text": ".", "start": 483, "end": 484, "annotation": null}], [{"text": "The", "start": 485, "end": 488, "annotation": null}, {"text": "optimal", "start": 489, "end": 496, "annotation": null}, {"text": "sample", "start": 497, "end": 503, "annotation": null}, {"text": "presents", "start": 504, "end": 512, "annotation": null}, {"text": "a", "start": 513, "end": 514, "annotation": null}, {"text": "H2", "start": 515, "end": 517, "annotation": null}, {"text": "generation", "start": 518, "end": 528, "annotation": null}, {"text": "rate", "start": 529, "end": 533, "annotation": null}, {"text": "of", "start": 534, "end": 536, "annotation": null}, {"text": "592", "start": 537, "end": 540, "annotation": null}, {"text": "\u03bcmol", "start": 540, "end": 544, "annotation": null}, {"text": "g\u22121", "start": 544, "end": 547, "annotation": null}, {"text": "h\u22121", "start": 547, "end": 550, "annotation": null}, {"text": ",", "start": 550, "end": 551, "annotation": null}, {"text": "which", "start": 552, "end": 557, "annotation": null}, {"text": "reaches", "start": 558, "end": 565, "annotation": null}, {"text": "2.6", "start": 566, "end": 569, "annotation": null}, {"text": "times", "start": 570, "end": 575, "annotation": null}, {"text": "that", "start": 576, "end": 580, "annotation": null}, {"text": "of", "start": 581, "end": 583, "annotation": null}, {"text": "pure", "start": 584, "end": 588, "annotation": null}, {"text": "KTaO3", "start": 589, "end": 594, "annotation": null}, {"text": ".", "start": 594, "end": 595, "annotation": null}]], "meta": {"doi": "10.1016/j.catcom.2018.02.006"}} +{"text": "The aim of this contribution is to present a review of the results related to vacancy complexes in SiGe obtained in the positron group at Helsinki University of Technology. We have studied proton irradiated undoped and P doped SiGe layers with Ge concentration from 4% to 30%. The dominating defect after irradiation in the n-type layers is found to be the E-center, i.e. the vacancy phosphorus complex, no preferred association with either Ge or Si is found for the vacancy after irradiation. The E-center is observed to be mobile in the temperature interval 150\u2013200\u00b0C and to migrate until it encounters a Ge atom and forms the V\u2013P\u2013Ge complex. This complex anneals out in temperatures above 200\u00b0C. We estimate that the binding energy increases by approximately 0.1\u20130.2eV when a Ge atom neighbours an E-center. For the undoped irradiated samples, we find no indication of vacancies surrounded by one or several Ge atoms, i.e. the presence of Ge around a vacancy is not enough to make the defect stable at room temperature. The dominating defect in undoped irradiated samples is most likely the divacancy.", "meta": {"doi": "10.1016/j.nimb.2006.10.018"}, "_input_hash": 2118298773, "_task_hash": -1845739943, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "aim", "start": 4, "end": 7, "id": 1, "annotation": null}, {"text": "of", "start": 8, "end": 10, "id": 2, "annotation": null}, {"text": "this", "start": 11, "end": 15, "id": 3, "annotation": null}, {"text": "contribution", "start": 16, "end": 28, "id": 4, "annotation": null}, {"text": "is", "start": 29, "end": 31, "id": 5, "annotation": null}, {"text": "to", "start": 32, "end": 34, "id": 6, "annotation": null}, {"text": "present", "start": 35, "end": 42, "id": 7, "annotation": null}, {"text": "a", "start": 43, "end": 44, "id": 8, "annotation": null}, {"text": "review", "start": 45, "end": 51, "id": 9, "annotation": null}, {"text": "of", "start": 52, "end": 54, "id": 10, "annotation": null}, {"text": "the", "start": 55, "end": 58, "id": 11, "annotation": null}, {"text": "results", "start": 59, "end": 66, "id": 12, "annotation": null}, {"text": "related", "start": 67, "end": 74, "id": 13, "annotation": null}, {"text": "to", "start": 75, "end": 77, "id": 14, "annotation": null}, {"text": "vacancy", "start": 78, "end": 85, "id": 15, "annotation": null}, {"text": "complexes", "start": 86, "end": 95, "id": 16, "annotation": null}, {"text": "in", "start": 96, "end": 98, "id": 17, "annotation": null}, {"text": "SiGe", "start": 99, "end": 103, "id": 18, "annotation": null}, {"text": "obtained", "start": 104, "end": 112, "id": 19, "annotation": null}, {"text": "in", "start": 113, "end": 115, "id": 20, "annotation": null}, {"text": "the", "start": 116, "end": 119, "id": 21, "annotation": null}, {"text": "positron", "start": 120, "end": 128, "id": 22, "annotation": null}, {"text": "group", "start": 129, "end": 134, "id": 23, "annotation": null}, {"text": "at", "start": 135, "end": 137, "id": 24, "annotation": null}, {"text": "Helsinki", "start": 138, "end": 146, "id": 25, "annotation": null}, {"text": "University", "start": 147, "end": 157, "id": 26, "annotation": null}, {"text": "of", "start": 158, "end": 160, "id": 27, "annotation": null}, {"text": "Technology", "start": 161, "end": 171, "id": 28, "annotation": null}, {"text": ".", "start": 172, "end": 173, "id": 29, "annotation": null}], [{"text": "We", "start": 174, "end": 176, "id": 30, "annotation": null}, {"text": "have", "start": 177, "end": 181, "id": 31, "annotation": null}, {"text": "studied", "start": 182, "end": 189, "id": 32, "annotation": null}, {"text": "proton", "start": 190, "end": 196, "id": 33, "annotation": null}, {"text": "irradiated", "start": 197, "end": 207, "id": 34, "annotation": null}, {"text": "undoped", "start": 208, "end": 215, "id": 35, "annotation": null}, {"text": "and", "start": 216, "end": 219, "id": 36, "annotation": null}, {"text": "P", "start": 220, "end": 221, "id": 37, "annotation": "DOPANT"}, {"text": "doped", "start": 222, "end": 227, "id": 38, "annotation": null}, {"text": "SiGe", "start": 228, "end": 232, "id": 39, "annotation": "BASEMAT"}, {"text": "layers", "start": 233, "end": 239, "id": 40, "annotation": null}, {"text": "with", "start": 240, "end": 244, "id": 41, "annotation": null}, {"text": "Ge", "start": 245, "end": 247, "id": 42, "annotation": null}, {"text": "concentration", "start": 248, "end": 261, "id": 43, "annotation": null}, {"text": "from", "start": 262, "end": 266, "id": 44, "annotation": null}, {"text": "4", "start": 267, "end": 268, "id": 45, "annotation": null}, {"text": "%", "start": 269, "end": 270, "id": 46, "annotation": null}, {"text": "to", "start": 271, "end": 273, "id": 47, "annotation": null}, {"text": "30", "start": 274, "end": 276, "id": 48, "annotation": null}, {"text": "%", "start": 277, "end": 278, "id": 49, "annotation": null}, {"text": ".", "start": 279, "end": 280, "id": 50, "annotation": null}], [{"text": "The", "start": 281, "end": 284, "id": 51, "annotation": null}, {"text": "dominating", "start": 285, "end": 295, "id": 52, "annotation": null}, {"text": "defect", "start": 296, "end": 302, "id": 53, "annotation": null}, {"text": "after", "start": 303, "end": 308, "id": 54, "annotation": null}, {"text": "irradiation", "start": 309, "end": 320, "id": 55, "annotation": null}, {"text": "in", "start": 321, "end": 323, "id": 56, "annotation": null}, {"text": "the", "start": 324, "end": 327, "id": 57, "annotation": null}, {"text": "n", "start": 328, "end": 329, "id": 58, "annotation": "DOPANT"}, {"text": "-", "start": 330, "end": 331, "id": 59, "annotation": "DOPANT"}, {"text": "type", "start": 332, "end": 336, "id": 60, "annotation": "DOPANT"}, {"text": "layers", "start": 337, "end": 343, "id": 61, "annotation": "BASEMAT"}, {"text": "is", "start": 344, "end": 346, "id": 62, "annotation": null}, {"text": "found", "start": 347, "end": 352, "id": 63, "annotation": null}, {"text": "to", "start": 353, "end": 355, "id": 64, "annotation": null}, {"text": "be", "start": 356, "end": 358, "id": 65, "annotation": null}, {"text": "the", "start": 359, "end": 362, "id": 66, "annotation": null}, {"text": "E", "start": 363, "end": 364, "id": 67, "annotation": null}, {"text": "-", "start": 365, "end": 366, "id": 68, "annotation": null}, {"text": "center", "start": 367, "end": 373, "id": 69, "annotation": null}, {"text": ",", "start": 374, "end": 375, "id": 70, "annotation": null}, {"text": "i.e.", "start": 376, "end": 380, "id": 71, "annotation": null}, {"text": "the", "start": 381, "end": 384, "id": 72, "annotation": null}, {"text": "vacancy", "start": 385, "end": 392, "id": 73, "annotation": null}, {"text": "phosphorus", "start": 393, "end": 403, "id": 74, "annotation": null}, {"text": "complex", "start": 404, "end": 411, "id": 75, "annotation": null}, {"text": ",", "start": 412, "end": 413, "id": 76, "annotation": null}, {"text": "no", "start": 414, "end": 416, "id": 77, "annotation": null}, {"text": "preferred", "start": 417, "end": 426, "id": 78, "annotation": null}, {"text": "association", "start": 427, "end": 438, "id": 79, "annotation": null}, {"text": "with", "start": 439, "end": 443, "id": 80, "annotation": null}, {"text": "either", "start": 444, "end": 450, "id": 81, "annotation": null}, {"text": "Ge", "start": 451, "end": 453, "id": 82, "annotation": null}, {"text": "or", "start": 454, "end": 456, "id": 83, "annotation": null}, {"text": "Si", "start": 457, "end": 459, "id": 84, "annotation": null}, {"text": "is", "start": 460, "end": 462, "id": 85, "annotation": null}, {"text": "found", "start": 463, "end": 468, "id": 86, "annotation": null}, {"text": "for", "start": 469, "end": 472, "id": 87, "annotation": null}, {"text": "the", "start": 473, "end": 476, "id": 88, "annotation": null}, {"text": "vacancy", "start": 477, "end": 484, "id": 89, "annotation": null}, {"text": "after", "start": 485, "end": 490, "id": 90, "annotation": null}, {"text": "irradiation", "start": 491, "end": 502, "id": 91, "annotation": null}, {"text": ".", "start": 503, "end": 504, "id": 92, "annotation": null}], [{"text": "The", "start": 505, "end": 508, "id": 93, "annotation": null}, {"text": "E", "start": 509, "end": 510, "id": 94, "annotation": null}, {"text": "-", "start": 511, "end": 512, "id": 95, "annotation": null}, {"text": "center", "start": 513, "end": 519, "id": 96, "annotation": null}, {"text": "is", "start": 520, "end": 522, "id": 97, "annotation": null}, {"text": "observed", "start": 523, "end": 531, "id": 98, "annotation": null}, {"text": "to", "start": 532, "end": 534, "id": 99, "annotation": null}, {"text": "be", "start": 535, "end": 537, "id": 100, "annotation": null}, {"text": "mobile", "start": 538, "end": 544, "id": 101, "annotation": null}, {"text": "in", "start": 545, "end": 547, "id": 102, "annotation": null}, {"text": "the", "start": 548, "end": 551, "id": 103, "annotation": null}, {"text": "temperature", "start": 552, "end": 563, "id": 104, "annotation": null}, {"text": "interval", "start": 564, "end": 572, "id": 105, "annotation": null}, {"text": "150\u2013200", "start": 573, "end": 580, "id": 106, "annotation": null}, {"text": "\u00b0", "start": 581, "end": 582, "id": 107, "annotation": null}, {"text": "C", "start": 583, "end": 584, "id": 108, "annotation": null}, {"text": "and", "start": 585, "end": 588, "id": 109, "annotation": null}, {"text": "to", "start": 589, "end": 591, "id": 110, "annotation": null}, {"text": "migrate", "start": 592, "end": 599, "id": 111, "annotation": null}, {"text": "until", "start": 600, "end": 605, "id": 112, "annotation": null}, {"text": "it", "start": 606, "end": 608, "id": 113, "annotation": null}, {"text": "encounters", "start": 609, "end": 619, "id": 114, "annotation": null}, {"text": "a", "start": 620, "end": 621, "id": 115, "annotation": null}, {"text": "Ge", "start": 622, "end": 624, "id": 116, "annotation": null}, {"text": "atom", "start": 625, "end": 629, "id": 117, "annotation": null}, {"text": "and", "start": 630, "end": 633, "id": 118, "annotation": null}, {"text": "forms", "start": 634, "end": 639, "id": 119, "annotation": null}, {"text": "the", "start": 640, "end": 643, "id": 120, "annotation": null}, {"text": "V", "start": 644, "end": 645, "id": 121, "annotation": null}, {"text": "\u2013", "start": 646, "end": 647, "id": 122, "annotation": null}, {"text": "P", "start": 648, "end": 649, "id": 123, "annotation": null}, {"text": "\u2013", "start": 650, "end": 651, "id": 124, "annotation": null}, {"text": "Ge", "start": 652, "end": 654, "id": 125, "annotation": null}, {"text": "complex", "start": 655, "end": 662, "id": 126, "annotation": null}, {"text": ".", "start": 663, "end": 664, "id": 127, "annotation": null}], [{"text": "This", "start": 665, "end": 669, "id": 128, "annotation": null}, {"text": "complex", "start": 670, "end": 677, "id": 129, "annotation": null}, {"text": "anneals", "start": 678, "end": 685, "id": 130, "annotation": null}, {"text": "out", "start": 686, "end": 689, "id": 131, "annotation": null}, {"text": "in", "start": 690, "end": 692, "id": 132, "annotation": null}, {"text": "temperatures", "start": 693, "end": 705, "id": 133, "annotation": null}, {"text": "above", "start": 706, "end": 711, "id": 134, "annotation": null}, {"text": "200", "start": 712, "end": 715, "id": 135, "annotation": null}, {"text": "\u00b0", "start": 716, "end": 717, "id": 136, "annotation": null}, {"text": "C", "start": 718, "end": 719, "id": 137, "annotation": null}, {"text": ".", "start": 720, "end": 721, "id": 138, "annotation": null}], [{"text": "We", "start": 722, "end": 724, "id": 139, "annotation": null}, {"text": "estimate", "start": 725, "end": 733, "id": 140, "annotation": null}, {"text": "that", "start": 734, "end": 738, "id": 141, "annotation": null}, {"text": "the", "start": 739, "end": 742, "id": 142, "annotation": null}, {"text": "binding", "start": 743, "end": 750, "id": 143, "annotation": null}, {"text": "energy", "start": 751, "end": 757, "id": 144, "annotation": null}, {"text": "increases", "start": 758, "end": 767, "id": 145, "annotation": null}, {"text": "by", "start": 768, "end": 770, "id": 146, "annotation": null}, {"text": "approximately", "start": 771, "end": 784, "id": 147, "annotation": null}, {"text": "0.1\u20130.2eV", "start": 785, "end": 794, "id": 148, "annotation": null}, {"text": "when", "start": 795, "end": 799, "id": 149, "annotation": null}, {"text": "a", "start": 800, "end": 801, "id": 150, "annotation": null}, {"text": "Ge", "start": 802, "end": 804, "id": 151, "annotation": null}, {"text": "atom", "start": 805, "end": 809, "id": 152, "annotation": null}, {"text": "neighbours", "start": 810, "end": 820, "id": 153, "annotation": null}, {"text": "an", "start": 821, "end": 823, "id": 154, "annotation": null}, {"text": "E", "start": 824, "end": 825, "id": 155, "annotation": null}, {"text": "-", "start": 826, "end": 827, "id": 156, "annotation": null}, {"text": "center", "start": 828, "end": 834, "id": 157, "annotation": null}, {"text": ".", "start": 835, "end": 836, "id": 158, "annotation": null}], [{"text": "For", "start": 837, "end": 840, "id": 159, "annotation": null}, {"text": "the", "start": 841, "end": 844, "id": 160, "annotation": null}, {"text": "undoped", "start": 845, "end": 852, "id": 161, "annotation": null}, {"text": "irradiated", "start": 853, "end": 863, "id": 162, "annotation": null}, {"text": "samples", "start": 864, "end": 871, "id": 163, "annotation": null}, {"text": ",", "start": 872, "end": 873, "id": 164, "annotation": null}, {"text": "we", "start": 874, "end": 876, "id": 165, "annotation": null}, {"text": "find", "start": 877, "end": 881, "id": 166, "annotation": null}, {"text": "no", "start": 882, "end": 884, "id": 167, "annotation": null}, {"text": "indication", "start": 885, "end": 895, "id": 168, "annotation": null}, {"text": "of", "start": 896, "end": 898, "id": 169, "annotation": null}, {"text": "vacancies", "start": 899, "end": 908, "id": 170, "annotation": null}, {"text": "surrounded", "start": 909, "end": 919, "id": 171, "annotation": null}, {"text": "by", "start": 920, "end": 922, "id": 172, "annotation": null}, {"text": "one", "start": 923, "end": 926, "id": 173, "annotation": null}, {"text": "or", "start": 927, "end": 929, "id": 174, "annotation": null}, {"text": "several", "start": 930, "end": 937, "id": 175, "annotation": null}, {"text": "Ge", "start": 938, "end": 940, "id": 176, "annotation": null}, {"text": "atoms", "start": 941, "end": 946, "id": 177, "annotation": null}, {"text": ",", "start": 947, "end": 948, "id": 178, "annotation": null}, {"text": "i.e.", "start": 949, "end": 953, "id": 179, "annotation": null}, {"text": "the", "start": 954, "end": 957, "id": 180, "annotation": null}, {"text": "presence", "start": 958, "end": 966, "id": 181, "annotation": null}, {"text": "of", "start": 967, "end": 969, "id": 182, "annotation": null}, {"text": "Ge", "start": 970, "end": 972, "id": 183, "annotation": null}, {"text": "around", "start": 973, "end": 979, "id": 184, "annotation": null}, {"text": "a", "start": 980, "end": 981, "id": 185, "annotation": null}, {"text": "vacancy", "start": 982, "end": 989, "id": 186, "annotation": null}, {"text": "is", "start": 990, "end": 992, "id": 187, "annotation": null}, {"text": "not", "start": 993, "end": 996, "id": 188, "annotation": null}, {"text": "enough", "start": 997, "end": 1003, "id": 189, "annotation": null}, {"text": "to", "start": 1004, "end": 1006, "id": 190, "annotation": null}, {"text": "make", "start": 1007, "end": 1011, "id": 191, "annotation": null}, {"text": "the", "start": 1012, "end": 1015, "id": 192, "annotation": null}, {"text": "defect", "start": 1016, "end": 1022, "id": 193, "annotation": null}, {"text": "stable", "start": 1023, "end": 1029, "id": 194, "annotation": null}, {"text": "at", "start": 1030, "end": 1032, "id": 195, "annotation": null}, {"text": "room", "start": 1033, "end": 1037, "id": 196, "annotation": null}, {"text": "temperature", "start": 1038, "end": 1049, "id": 197, "annotation": null}, {"text": ".", "start": 1050, "end": 1051, "id": 198, "annotation": null}], [{"text": "The", "start": 1052, "end": 1055, "id": 199, "annotation": null}, {"text": "dominating", "start": 1056, "end": 1066, "id": 200, "annotation": null}, {"text": "defect", "start": 1067, "end": 1073, "id": 201, "annotation": null}, {"text": "in", "start": 1074, "end": 1076, "id": 202, "annotation": null}, {"text": "undoped", "start": 1077, "end": 1084, "id": 203, "annotation": null}, {"text": "irradiated", "start": 1085, "end": 1095, "id": 204, "annotation": null}, {"text": "samples", "start": 1096, "end": 1103, "id": 205, "annotation": null}, {"text": "is", "start": 1104, "end": 1106, "id": 206, "annotation": null}, {"text": "most", "start": 1107, "end": 1111, "id": 207, "annotation": null}, {"text": "likely", "start": 1112, "end": 1118, "id": 208, "annotation": null}, {"text": "the", "start": 1119, "end": 1122, "id": 209, "annotation": null}, {"text": "divacancy", "start": 1123, "end": 1132, "id": 210, "annotation": null}, {"text": ".", "start": 1133, "end": 1134, "id": 211, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "Metallic silicides have been used as contact materials on source/drain and gate in metal-oxide semiconductor (MOS) structure for 40 years. Since the 65 nm technology node, NiSi is the preferred material for contact in microelectronic due to low resistivity, low thermal budget, and low Si consumption. Ni(Pt)Si with 10 at.% Pt is currently employed in recent technologies since Pt allows to stabilize NiSi at high temperature. The presence of Pt and the very low thickness (<10 nm) needed for the device contacts bring new concerns for actual devices. In this work, in situ techniques [X-ray diffraction (XRD), X-ray reflectivity (XRR), sheet resistance, differential scanning calorimetry (DSC)] were combined with atom probe tomography (APT) to study the formation mechanisms as well as the redistribution of dopants and alloy elements (Pt, Pd.) during the silicide formation. Phenomena like nucleation, lateral growth, interfacial reaction, diffusion, precipitation, and transient phase formation are investigated. The effect of alloy elements (Pt, Pd.) and dopants (As, B.) as well as stress and defects induced by the confinement in devices on the silicide formation mechanism and alloying element redistribution is examined. In particular APT has been performed for the three-dimensional (3D) analysis of MOSFET at the atomic scale. The advances in the understanding of the mechanisms of formation and redistribution are discussed. \u00a9 2014 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Metallic", "start": 0, "end": 8, "annotation": null}, {"text": "silicides", "start": 9, "end": 18, "annotation": null}, {"text": "have", "start": 19, "end": 23, "annotation": null}, {"text": "been", "start": 24, "end": 28, "annotation": null}, {"text": "used", "start": 29, "end": 33, "annotation": null}, {"text": "as", "start": 34, "end": 36, "annotation": null}, {"text": "contact", "start": 37, "end": 44, "annotation": null}, {"text": "materials", "start": 45, "end": 54, "annotation": null}, {"text": "on", "start": 55, "end": 57, "annotation": null}, {"text": "source", "start": 58, "end": 64, "annotation": null}, {"text": "/", "start": 64, "end": 65, "annotation": null}, {"text": "drain", "start": 65, "end": 70, "annotation": null}, {"text": "and", "start": 71, "end": 74, "annotation": null}, {"text": "gate", "start": 75, "end": 79, "annotation": null}, {"text": "in", "start": 80, "end": 82, "annotation": null}, {"text": "metal", "start": 83, "end": 88, "annotation": null}, {"text": "-", "start": 88, "end": 89, "annotation": null}, {"text": "oxide", "start": 89, "end": 94, "annotation": null}, {"text": "semiconductor", "start": 95, "end": 108, "annotation": null}, {"text": "(", "start": 109, "end": 110, "annotation": null}, {"text": "MOS", "start": 110, "end": 113, "annotation": null}, {"text": ")", "start": 113, "end": 114, "annotation": null}, {"text": "structure", "start": 115, "end": 124, "annotation": null}, {"text": "for", "start": 125, "end": 128, "annotation": null}, {"text": "40", "start": 129, "end": 131, "annotation": null}, {"text": "years", "start": 132, "end": 137, "annotation": null}, {"text": ".", "start": 137, "end": 138, "annotation": null}], [{"text": "Since", "start": 139, "end": 144, "annotation": null}, {"text": "the", "start": 145, "end": 148, "annotation": null}, {"text": "65", "start": 149, "end": 151, "annotation": null}, {"text": "nm", "start": 152, "end": 154, "annotation": null}, {"text": "technology", "start": 155, "end": 165, "annotation": null}, {"text": "node", "start": 166, "end": 170, "annotation": null}, {"text": ",", "start": 170, "end": 171, "annotation": null}, {"text": "NiSi", "start": 172, "end": 176, "annotation": null}, {"text": "is", "start": 177, "end": 179, "annotation": null}, {"text": "the", "start": 180, "end": 183, "annotation": null}, {"text": "preferred", "start": 184, "end": 193, "annotation": null}, {"text": "material", "start": 194, "end": 202, "annotation": null}, {"text": "for", "start": 203, "end": 206, "annotation": null}, {"text": "contact", "start": 207, "end": 214, "annotation": null}, {"text": "in", "start": 215, "end": 217, "annotation": null}, {"text": "microelectronic", "start": 218, "end": 233, "annotation": null}, {"text": "due", "start": 234, "end": 237, "annotation": null}, {"text": "to", "start": 238, "end": 240, "annotation": null}, {"text": "low", "start": 241, "end": 244, "annotation": null}, {"text": "resistivity", "start": 245, "end": 256, "annotation": null}, {"text": ",", "start": 256, "end": 257, "annotation": null}, {"text": "low", "start": 258, "end": 261, "annotation": null}, {"text": "thermal", "start": 262, "end": 269, "annotation": null}, {"text": "budget", "start": 270, "end": 276, "annotation": null}, {"text": ",", "start": 276, "end": 277, "annotation": null}, {"text": "and", "start": 278, "end": 281, "annotation": null}, {"text": "low", "start": 282, "end": 285, "annotation": null}, {"text": "Si", "start": 286, "end": 288, "annotation": null}, {"text": "consumption", "start": 289, "end": 300, "annotation": null}, {"text": ".", "start": 300, "end": 301, "annotation": null}], [{"text": "Ni(Pt)Si", "start": 302, "end": 310, "annotation": null}, {"text": "with", "start": 311, "end": 315, "annotation": null}, {"text": "10", "start": 316, "end": 318, "annotation": "DOPMODQ"}, {"text": "at.", "start": 319, "end": 322, "annotation": "DOPMODQ"}, {"text": "%", "start": 322, "end": 323, "annotation": "DOPMODQ"}, {"text": "Pt", "start": 324, "end": 326, "annotation": "DOPANT"}, {"text": "is", "start": 327, "end": 329, "annotation": null}, {"text": "currently", "start": 330, "end": 339, "annotation": null}, {"text": "employed", "start": 340, "end": 348, "annotation": null}, {"text": "in", "start": 349, "end": 351, "annotation": null}, {"text": "recent", "start": 352, "end": 358, "annotation": null}, {"text": "technologies", "start": 359, "end": 371, "annotation": null}, {"text": "since", "start": 372, "end": 377, "annotation": null}, {"text": "Pt", "start": 378, "end": 380, "annotation": "DOPANT"}, {"text": "allows", "start": 381, "end": 387, "annotation": null}, {"text": "to", "start": 388, "end": 390, "annotation": null}, {"text": "stabilize", "start": 391, "end": 400, "annotation": null}, {"text": "NiSi", "start": 401, "end": 405, "annotation": "BASEMAT"}, {"text": "at", "start": 406, "end": 408, "annotation": null}, {"text": "high", "start": 409, "end": 413, "annotation": null}, {"text": "temperature", "start": 414, "end": 425, "annotation": null}, {"text": ".", "start": 425, "end": 426, "annotation": null}], [{"text": "The", "start": 427, "end": 430, "annotation": null}, {"text": "presence", "start": 431, "end": 439, "annotation": null}, {"text": "of", "start": 440, "end": 442, "annotation": null}, {"text": "Pt", "start": 443, "end": 445, "annotation": null}, {"text": "and", "start": 446, "end": 449, "annotation": null}, {"text": "the", "start": 450, "end": 453, "annotation": null}, {"text": "very", "start": 454, "end": 458, "annotation": null}, {"text": "low", "start": 459, "end": 462, "annotation": null}, {"text": "thickness", "start": 463, "end": 472, "annotation": null}, {"text": "(", "start": 473, "end": 474, "annotation": null}, {"text": "<", "start": 474, "end": 475, "annotation": null}, {"text": "10", "start": 475, "end": 477, "annotation": null}, {"text": "nm", "start": 478, "end": 480, "annotation": null}, {"text": ")", "start": 480, "end": 481, "annotation": null}, {"text": "needed", "start": 482, "end": 488, "annotation": null}, {"text": "for", "start": 489, "end": 492, "annotation": null}, {"text": "the", "start": 493, "end": 496, "annotation": null}, {"text": "device", "start": 497, "end": 503, "annotation": null}, {"text": "contacts", "start": 504, "end": 512, "annotation": null}, {"text": "bring", "start": 513, "end": 518, "annotation": null}, {"text": "new", "start": 519, "end": 522, "annotation": null}, {"text": "concerns", "start": 523, "end": 531, "annotation": null}, {"text": "for", "start": 532, "end": 535, "annotation": null}, {"text": "actual", "start": 536, "end": 542, "annotation": null}, {"text": "devices", "start": 543, "end": 550, "annotation": null}, {"text": ".", "start": 550, "end": 551, "annotation": null}], [{"text": "In", "start": 552, "end": 554, "annotation": null}, {"text": "this", "start": 555, "end": 559, "annotation": null}, {"text": "work", "start": 560, "end": 564, "annotation": null}, {"text": ",", "start": 564, "end": 565, "annotation": null}, {"text": "in", "start": 566, "end": 568, "annotation": null}, {"text": "situ", "start": 569, "end": 573, "annotation": null}, {"text": "techniques", "start": 574, "end": 584, "annotation": null}, {"text": "[", "start": 585, "end": 586, "annotation": null}, {"text": "X-ray", "start": 586, "end": 591, "annotation": null}, {"text": "diffraction", "start": 592, "end": 603, "annotation": null}, {"text": "(", "start": 604, "end": 605, "annotation": null}, {"text": "XRD", "start": 605, "end": 608, "annotation": null}, {"text": ")", "start": 608, "end": 609, "annotation": null}, {"text": ",", "start": 609, "end": 610, "annotation": null}, {"text": "X-ray", "start": 611, "end": 616, "annotation": null}, {"text": "reflectivity", "start": 617, "end": 629, "annotation": null}, {"text": "(", "start": 630, "end": 631, "annotation": null}, {"text": "XRR", "start": 631, "end": 634, "annotation": null}, {"text": ")", "start": 634, "end": 635, "annotation": null}, {"text": ",", "start": 635, "end": 636, "annotation": null}, {"text": "sheet", "start": 637, "end": 642, "annotation": null}, {"text": "resistance", "start": 643, "end": 653, "annotation": null}, {"text": ",", "start": 653, "end": 654, "annotation": null}, {"text": "differential", "start": 655, "end": 667, "annotation": null}, {"text": "scanning", "start": 668, "end": 676, "annotation": null}, {"text": "calorimetry", "start": 677, "end": 688, "annotation": null}, {"text": "(", "start": 689, "end": 690, "annotation": null}, {"text": "DSC", "start": 690, "end": 693, "annotation": null}, {"text": ")", "start": 693, "end": 694, "annotation": null}, {"text": "]", "start": 694, "end": 695, "annotation": null}, {"text": "were", "start": 696, "end": 700, "annotation": null}, {"text": "combined", "start": 701, "end": 709, "annotation": null}, {"text": "with", "start": 710, "end": 714, "annotation": null}, {"text": "atom", "start": 715, "end": 719, "annotation": null}, {"text": "probe", "start": 720, "end": 725, "annotation": null}, {"text": "tomography", "start": 726, "end": 736, "annotation": null}, {"text": "(", "start": 737, "end": 738, "annotation": null}, {"text": "APT", "start": 738, "end": 741, "annotation": null}, {"text": ")", "start": 741, "end": 742, "annotation": null}, {"text": "to", "start": 743, "end": 745, "annotation": null}, {"text": "study", "start": 746, "end": 751, "annotation": null}, {"text": "the", "start": 752, "end": 755, "annotation": null}, {"text": "formation", "start": 756, "end": 765, "annotation": null}, {"text": "mechanisms", "start": 766, "end": 776, "annotation": null}, {"text": "as", "start": 777, "end": 779, "annotation": null}, {"text": "well", "start": 780, "end": 784, "annotation": null}, {"text": "as", "start": 785, "end": 787, "annotation": null}, {"text": "the", "start": 788, "end": 791, "annotation": null}, {"text": "redistribution", "start": 792, "end": 806, "annotation": null}, {"text": "of", "start": 807, "end": 809, "annotation": null}, {"text": "dopants", "start": 810, "end": 817, "annotation": null}, {"text": "and", "start": 818, "end": 821, "annotation": null}, {"text": "alloy", "start": 822, "end": 827, "annotation": null}, {"text": "elements", "start": 828, "end": 836, "annotation": null}, {"text": "(", "start": 837, "end": 838, "annotation": null}, {"text": "Pt", "start": 838, "end": 840, "annotation": null}, {"text": ",", "start": 840, "end": 841, "annotation": null}, {"text": "Pd", "start": 842, "end": 844, "annotation": null}, {"text": ".", "start": 844, "end": 845, "annotation": null}, {"text": ")", "start": 845, "end": 846, "annotation": null}], [{"text": "during", "start": 847, "end": 853, "annotation": null}, {"text": "the", "start": 854, "end": 857, "annotation": null}, {"text": "silicide", "start": 858, "end": 866, "annotation": null}, {"text": "formation", "start": 867, "end": 876, "annotation": null}, {"text": ".", "start": 876, "end": 877, "annotation": null}], [{"text": "Phenomena", "start": 878, "end": 887, "annotation": null}, {"text": "like", "start": 888, "end": 892, "annotation": null}, {"text": "nucleation", "start": 893, "end": 903, "annotation": null}, {"text": ",", "start": 903, "end": 904, "annotation": null}, {"text": "lateral", "start": 905, "end": 912, "annotation": null}, {"text": "growth", "start": 913, "end": 919, "annotation": null}, {"text": ",", "start": 919, "end": 920, "annotation": null}, {"text": "interfacial", "start": 921, "end": 932, "annotation": null}, {"text": "reaction", "start": 933, "end": 941, "annotation": null}, {"text": ",", "start": 941, "end": 942, "annotation": null}, {"text": "diffusion", "start": 943, "end": 952, "annotation": null}, {"text": ",", "start": 952, "end": 953, "annotation": null}, {"text": "precipitation", "start": 954, "end": 967, "annotation": null}, {"text": ",", "start": 967, "end": 968, "annotation": null}, {"text": "and", "start": 969, "end": 972, "annotation": null}, {"text": "transient", "start": 973, "end": 982, "annotation": null}, {"text": "phase", "start": 983, "end": 988, "annotation": null}, {"text": "formation", "start": 989, "end": 998, "annotation": null}, {"text": "are", "start": 999, "end": 1002, "annotation": null}, {"text": "investigated", "start": 1003, "end": 1015, "annotation": null}, {"text": ".", "start": 1015, "end": 1016, "annotation": null}], [{"text": "The", "start": 1017, "end": 1020, "annotation": null}, {"text": "effect", "start": 1021, "end": 1027, "annotation": null}, {"text": "of", "start": 1028, "end": 1030, "annotation": null}, {"text": "alloy", "start": 1031, "end": 1036, "annotation": null}, {"text": "elements", "start": 1037, "end": 1045, "annotation": null}, {"text": "(", "start": 1046, "end": 1047, "annotation": null}, {"text": "Pt", "start": 1047, "end": 1049, "annotation": null}, {"text": ",", "start": 1049, "end": 1050, "annotation": null}, {"text": "Pd", "start": 1051, "end": 1053, "annotation": null}, {"text": ".", "start": 1053, "end": 1054, "annotation": null}, {"text": ")", "start": 1054, "end": 1055, "annotation": null}], [{"text": "and", "start": 1056, "end": 1059, "annotation": null}, {"text": "dopants", "start": 1060, "end": 1067, "annotation": null}, {"text": "(", "start": 1068, "end": 1069, "annotation": null}, {"text": "As", "start": 1069, "end": 1071, "annotation": "DOPANT"}, {"text": ",", "start": 1071, "end": 1072, "annotation": null}, {"text": "B", "start": 1073, "end": 1074, "annotation": "DOPANT"}, {"text": ".", "start": 1074, "end": 1075, "annotation": null}, {"text": ")", "start": 1075, "end": 1076, "annotation": null}], [{"text": "as", "start": 1077, "end": 1079, "annotation": null}, {"text": "well", "start": 1080, "end": 1084, "annotation": null}, {"text": "as", "start": 1085, "end": 1087, "annotation": null}, {"text": "stress", "start": 1088, "end": 1094, "annotation": null}, {"text": "and", "start": 1095, "end": 1098, "annotation": null}, {"text": "defects", "start": 1099, "end": 1106, "annotation": null}, {"text": "induced", "start": 1107, "end": 1114, "annotation": null}, {"text": "by", "start": 1115, "end": 1117, "annotation": null}, {"text": "the", "start": 1118, "end": 1121, "annotation": null}, {"text": "confinement", "start": 1122, "end": 1133, "annotation": null}, {"text": "in", "start": 1134, "end": 1136, "annotation": null}, {"text": "devices", "start": 1137, "end": 1144, "annotation": null}, {"text": "on", "start": 1145, "end": 1147, "annotation": null}, {"text": "the", "start": 1148, "end": 1151, "annotation": null}, {"text": "silicide", "start": 1152, "end": 1160, "annotation": null}, {"text": "formation", "start": 1161, "end": 1170, "annotation": null}, {"text": "mechanism", "start": 1171, "end": 1180, "annotation": null}, {"text": "and", "start": 1181, "end": 1184, "annotation": null}, {"text": "alloying", "start": 1185, "end": 1193, "annotation": null}, {"text": "element", "start": 1194, "end": 1201, "annotation": null}, {"text": "redistribution", "start": 1202, "end": 1216, "annotation": null}, {"text": "is", "start": 1217, "end": 1219, "annotation": null}, {"text": "examined", "start": 1220, "end": 1228, "annotation": null}, {"text": ".", "start": 1228, "end": 1229, "annotation": null}], [{"text": "In", "start": 1230, "end": 1232, "annotation": null}, {"text": "particular", "start": 1233, "end": 1243, "annotation": null}, {"text": "APT", "start": 1244, "end": 1247, "annotation": null}, {"text": "has", "start": 1248, "end": 1251, "annotation": null}, {"text": "been", "start": 1252, "end": 1256, "annotation": null}, {"text": "performed", "start": 1257, "end": 1266, "annotation": null}, {"text": "for", "start": 1267, "end": 1270, "annotation": null}, {"text": "the", "start": 1271, "end": 1274, "annotation": null}, {"text": "three", "start": 1275, "end": 1280, "annotation": null}, {"text": "-", "start": 1280, "end": 1281, "annotation": null}, {"text": "dimensional", "start": 1281, "end": 1292, "annotation": null}, {"text": "(", "start": 1293, "end": 1294, "annotation": null}, {"text": "3D", "start": 1294, "end": 1296, "annotation": null}, {"text": ")", "start": 1296, "end": 1297, "annotation": null}, {"text": "analysis", "start": 1298, "end": 1306, "annotation": null}, {"text": "of", "start": 1307, "end": 1309, "annotation": null}, {"text": "MOSFET", "start": 1310, "end": 1316, "annotation": null}, {"text": "at", "start": 1317, "end": 1319, "annotation": null}, {"text": "the", "start": 1320, "end": 1323, "annotation": null}, {"text": "atomic", "start": 1324, "end": 1330, "annotation": null}, {"text": "scale", "start": 1331, "end": 1336, "annotation": null}, {"text": ".", "start": 1336, "end": 1337, "annotation": null}], [{"text": "The", "start": 1338, "end": 1341, "annotation": null}, {"text": "advances", "start": 1342, "end": 1350, "annotation": null}, {"text": "in", "start": 1351, "end": 1353, "annotation": null}, {"text": "the", "start": 1354, "end": 1357, "annotation": null}, {"text": "understanding", "start": 1358, "end": 1371, "annotation": null}, {"text": "of", "start": 1372, "end": 1374, "annotation": null}, {"text": "the", "start": 1375, "end": 1378, "annotation": null}, {"text": "mechanisms", "start": 1379, "end": 1389, "annotation": null}, {"text": "of", "start": 1390, "end": 1392, "annotation": null}, {"text": "formation", "start": 1393, "end": 1402, "annotation": null}, {"text": "and", "start": 1403, "end": 1406, "annotation": null}, {"text": "redistribution", "start": 1407, "end": 1421, "annotation": null}, {"text": "are", "start": 1422, "end": 1425, "annotation": null}, {"text": "discussed", "start": 1426, "end": 1435, "annotation": null}, {"text": ".", "start": 1435, "end": 1436, "annotation": null}], [{"text": "KGaA", "start": 1472, "end": 1476, "annotation": null}, {"text": ",", "start": 1476, "end": 1477, "annotation": null}, {"text": "Weinheim", "start": 1478, "end": 1486, "annotation": null}, {"text": ".", "start": 1486, "end": 1487, "annotation": null}]], "meta": {"doi": "10.1002/pssa.201300167"}} +{"remark": "doping_annt1", "text": "A single-wavelength Brillouin\u2013erbium fiber laser (BEFL) is demonstrated using high germanium dopant concentration fiber and bismuth\u2013gallium\u2013aluminum co-doped high concentration erbium doped fiber (EDF). A 20-m long high Ge-doped fiber is used to provide nonlinear gains to generate a stimulated Brillouin scattering (SBS), and a 4.3-m long Bi\u2013Ga\u2013Al EDF provides linear gains to amplify the SBS. The relationship between the fiber parameters (dopant concentration, effective area, length and so on) of both linear and nonlinear medium and the output performance was discussed. The BEFL power increases as the effective area of the high Ge-doped fiber decreases. There is an optimum length in the high Ge-doped fiber which is 20-m long in this paper. The BEFL output power also increases as the output power of the Bi\u2013Ga\u2013Al EDF increases. The output performance increases as the erbium doping concentration increases. It is necessary to get the effective area of the Bi\u2013Ga\u2013Al EDF large enough to decrease the fiber loss. The optimum length in the Bi\u2013Ga\u2013Al EDF is 4.3m. The BEFL operates at 1563.61nm, which is upshifted by 0.09nm from the Brillouin pump (BP). It has a peak power of \u22123dBm and a side-mode suppression ratio of 26dB. The BP wavelength is tunable within a wavelength range from 1562.5 to 1564nm. The BEFL has a narrow linewidth. It is suitable for many potential applications, such as optical communication and sensors.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "single", "start": 2, "end": 8, "annotation": null}, {"text": "-", "start": 8, "end": 9, "annotation": null}, {"text": "wavelength", "start": 9, "end": 19, "annotation": null}, {"text": "Brillouin", "start": 20, "end": 29, "annotation": null}, {"text": "\u2013", "start": 29, "end": 30, "annotation": null}, {"text": "erbium", "start": 30, "end": 36, "annotation": null}, {"text": "fiber", "start": 37, "end": 42, "annotation": null}, {"text": "laser", "start": 43, "end": 48, "annotation": null}, {"text": "(", "start": 49, "end": 50, "annotation": null}, {"text": "BEFL", "start": 50, "end": 54, "annotation": null}, {"text": ")", "start": 54, "end": 55, "annotation": null}, {"text": "is", "start": 56, "end": 58, "annotation": null}, {"text": "demonstrated", "start": 59, "end": 71, "annotation": null}, {"text": "using", "start": 72, "end": 77, "annotation": null}, {"text": "high", "start": 78, "end": 82, "annotation": null}, {"text": "germanium", "start": 83, "end": 92, "annotation": "DOPANT"}, {"text": "dopant", "start": 93, "end": 99, "annotation": null}, {"text": "concentration", "start": 100, "end": 113, "annotation": null}, {"text": "fiber", "start": 114, "end": 119, "annotation": "BASEMAT"}, {"text": "and", "start": 120, "end": 123, "annotation": null}, {"text": "bismuth", "start": 124, "end": 131, "annotation": "DOPANT"}, {"text": "\u2013", "start": 131, "end": 132, "annotation": null}, {"text": "gallium", "start": 132, "end": 139, "annotation": "DOPANT"}, {"text": "\u2013", "start": 139, "end": 140, "annotation": null}, {"text": "aluminum", "start": 140, "end": 148, "annotation": "DOPANT"}, {"text": "co-doped", "start": 149, "end": 157, "annotation": null}, {"text": "high", "start": 158, "end": 162, "annotation": null}, {"text": "concentration", "start": 163, "end": 176, "annotation": null}, {"text": "erbium", "start": 177, "end": 183, "annotation": "DOPANT"}, {"text": "doped", "start": 184, "end": 189, "annotation": null}, {"text": "fiber", "start": 190, "end": 195, "annotation": "BASEMAT"}, {"text": "(", "start": 196, "end": 197, "annotation": null}, {"text": "EDF", "start": 197, "end": 200, "annotation": null}, {"text": ")", "start": 200, "end": 201, "annotation": null}, {"text": ".", "start": 201, "end": 202, "annotation": null}], [{"text": "A", "start": 203, "end": 204, "annotation": null}, {"text": "20-m", "start": 205, "end": 209, "annotation": null}, {"text": "long", "start": 210, "end": 214, "annotation": null}, {"text": "high", "start": 215, "end": 219, "annotation": null}, {"text": "Ge", "start": 220, "end": 222, "annotation": "DOPANT"}, {"text": "-", "start": 222, "end": 223, "annotation": null}, {"text": "doped", "start": 223, "end": 228, "annotation": null}, {"text": "fiber", "start": 229, "end": 234, "annotation": "BASEMAT"}, {"text": "is", "start": 235, "end": 237, "annotation": null}, {"text": "used", "start": 238, "end": 242, "annotation": null}, {"text": "to", "start": 243, "end": 245, "annotation": null}, {"text": "provide", "start": 246, "end": 253, "annotation": null}, {"text": "nonlinear", "start": 254, "end": 263, "annotation": null}, {"text": "gains", "start": 264, "end": 269, "annotation": null}, {"text": "to", "start": 270, "end": 272, "annotation": null}, {"text": "generate", "start": 273, "end": 281, "annotation": null}, {"text": "a", "start": 282, "end": 283, "annotation": null}, {"text": "stimulated", "start": 284, "end": 294, "annotation": null}, {"text": "Brillouin", "start": 295, "end": 304, "annotation": null}, {"text": "scattering", "start": 305, "end": 315, "annotation": null}, {"text": "(", "start": 316, "end": 317, "annotation": null}, {"text": "SBS", "start": 317, "end": 320, "annotation": null}, {"text": ")", "start": 320, "end": 321, "annotation": null}, {"text": ",", "start": 321, "end": 322, "annotation": null}, {"text": "and", "start": 323, "end": 326, "annotation": null}, {"text": "a", "start": 327, "end": 328, "annotation": null}, {"text": "4.3-m", "start": 329, "end": 334, "annotation": null}, {"text": "long", "start": 335, "end": 339, "annotation": null}, {"text": "Bi", "start": 340, "end": 342, "annotation": null}, {"text": "\u2013", "start": 342, "end": 343, "annotation": null}, {"text": "Ga", "start": 343, "end": 345, "annotation": null}, {"text": "\u2013", "start": 345, "end": 346, "annotation": null}, {"text": "Al", "start": 346, "end": 348, "annotation": null}, {"text": "EDF", "start": 349, "end": 352, "annotation": null}, {"text": "provides", "start": 353, "end": 361, "annotation": null}, {"text": "linear", "start": 362, "end": 368, "annotation": null}, {"text": "gains", "start": 369, "end": 374, "annotation": null}, {"text": "to", "start": 375, "end": 377, "annotation": null}, {"text": "amplify", "start": 378, "end": 385, "annotation": null}, {"text": "the", "start": 386, "end": 389, "annotation": null}, {"text": "SBS", "start": 390, "end": 393, "annotation": null}, {"text": ".", "start": 393, "end": 394, "annotation": null}], [{"text": "The", "start": 395, "end": 398, "annotation": null}, {"text": "relationship", "start": 399, "end": 411, "annotation": null}, {"text": "between", "start": 412, "end": 419, "annotation": null}, {"text": "the", "start": 420, "end": 423, "annotation": null}, {"text": "fiber", "start": 424, "end": 429, "annotation": null}, {"text": "parameters", "start": 430, "end": 440, "annotation": null}, {"text": "(", "start": 441, "end": 442, "annotation": null}, {"text": "dopant", "start": 442, "end": 448, "annotation": null}, {"text": "concentration", "start": 449, "end": 462, "annotation": null}, {"text": ",", "start": 462, "end": 463, "annotation": null}, {"text": "effective", "start": 464, "end": 473, "annotation": null}, {"text": "area", "start": 474, "end": 478, "annotation": null}, {"text": ",", "start": 478, "end": 479, "annotation": null}, {"text": "length", "start": 480, "end": 486, "annotation": null}, {"text": "and", "start": 487, "end": 490, "annotation": null}, {"text": "so", "start": 491, "end": 493, "annotation": null}, {"text": "on", "start": 494, "end": 496, "annotation": null}, {"text": ")", "start": 496, "end": 497, "annotation": null}, {"text": "of", "start": 498, "end": 500, "annotation": null}, {"text": "both", "start": 501, "end": 505, "annotation": null}, {"text": "linear", "start": 506, "end": 512, "annotation": null}, {"text": "and", "start": 513, "end": 516, "annotation": null}, {"text": "nonlinear", "start": 517, "end": 526, "annotation": null}, {"text": "medium", "start": 527, "end": 533, "annotation": null}, {"text": "and", "start": 534, "end": 537, "annotation": null}, {"text": "the", "start": 538, "end": 541, "annotation": null}, {"text": "output", "start": 542, "end": 548, "annotation": null}, {"text": "performance", "start": 549, "end": 560, "annotation": null}, {"text": "was", "start": 561, "end": 564, "annotation": null}, {"text": "discussed", "start": 565, "end": 574, "annotation": null}, {"text": ".", "start": 574, "end": 575, "annotation": null}], [{"text": "The", "start": 576, "end": 579, "annotation": null}, {"text": "BEFL", "start": 580, "end": 584, "annotation": null}, {"text": "power", "start": 585, "end": 590, "annotation": null}, {"text": "increases", "start": 591, "end": 600, "annotation": null}, {"text": "as", "start": 601, "end": 603, "annotation": null}, {"text": "the", "start": 604, "end": 607, "annotation": null}, {"text": "effective", "start": 608, "end": 617, "annotation": null}, {"text": "area", "start": 618, "end": 622, "annotation": null}, {"text": "of", "start": 623, "end": 625, "annotation": null}, {"text": "the", "start": 626, "end": 629, "annotation": null}, {"text": "high", "start": 630, "end": 634, "annotation": null}, {"text": "Ge", "start": 635, "end": 637, "annotation": "DOPANT"}, {"text": "-", "start": 637, "end": 638, "annotation": null}, {"text": "doped", "start": 638, "end": 643, "annotation": null}, {"text": "fiber", "start": 644, "end": 649, "annotation": "BASEMAT"}, {"text": "decreases", "start": 650, "end": 659, "annotation": null}, {"text": ".", "start": 659, "end": 660, "annotation": null}], [{"text": "There", "start": 661, "end": 666, "annotation": null}, {"text": "is", "start": 667, "end": 669, "annotation": null}, {"text": "an", "start": 670, "end": 672, "annotation": null}, {"text": "optimum", "start": 673, "end": 680, "annotation": null}, {"text": "length", "start": 681, "end": 687, "annotation": null}, {"text": "in", "start": 688, "end": 690, "annotation": null}, {"text": "the", "start": 691, "end": 694, "annotation": null}, {"text": "high", "start": 695, "end": 699, "annotation": null}, {"text": "Ge", "start": 700, "end": 702, "annotation": "DOPANT"}, {"text": "-", "start": 702, "end": 703, "annotation": null}, {"text": "doped", "start": 703, "end": 708, "annotation": null}, {"text": "fiber", "start": 709, "end": 714, "annotation": "BASEMAT"}, {"text": "which", "start": 715, "end": 720, "annotation": null}, {"text": "is", "start": 721, "end": 723, "annotation": null}, {"text": "20-m", "start": 724, "end": 728, "annotation": null}, {"text": "long", "start": 729, "end": 733, "annotation": null}, {"text": "in", "start": 734, "end": 736, "annotation": null}, {"text": "this", "start": 737, "end": 741, "annotation": null}, {"text": "paper", "start": 742, "end": 747, "annotation": null}, {"text": ".", "start": 747, "end": 748, "annotation": null}], [{"text": "The", "start": 749, "end": 752, "annotation": null}, {"text": "BEFL", "start": 753, "end": 757, "annotation": null}, {"text": "output", "start": 758, "end": 764, "annotation": null}, {"text": "power", "start": 765, "end": 770, "annotation": null}, {"text": "also", "start": 771, "end": 775, "annotation": null}, {"text": "increases", "start": 776, "end": 785, "annotation": null}, {"text": "as", "start": 786, "end": 788, "annotation": null}, {"text": "the", "start": 789, "end": 792, "annotation": null}, {"text": "output", "start": 793, "end": 799, "annotation": null}, {"text": "power", "start": 800, "end": 805, "annotation": null}, {"text": "of", "start": 806, "end": 808, "annotation": null}, {"text": "the", "start": 809, "end": 812, "annotation": null}, {"text": "Bi", "start": 813, "end": 815, "annotation": null}, {"text": "\u2013", "start": 815, "end": 816, "annotation": null}, {"text": "Ga", "start": 816, "end": 818, "annotation": null}, {"text": "\u2013", "start": 818, "end": 819, "annotation": null}, {"text": "Al", "start": 819, "end": 821, "annotation": null}, {"text": "EDF", "start": 822, "end": 825, "annotation": null}, {"text": "increases", "start": 826, "end": 835, "annotation": null}, {"text": ".", "start": 835, "end": 836, "annotation": null}], [{"text": "The", "start": 837, "end": 840, "annotation": null}, {"text": "output", "start": 841, "end": 847, "annotation": null}, {"text": "performance", "start": 848, "end": 859, "annotation": null}, {"text": "increases", "start": 860, "end": 869, "annotation": null}, {"text": "as", "start": 870, "end": 872, "annotation": null}, {"text": "the", "start": 873, "end": 876, "annotation": null}, {"text": "erbium", "start": 877, "end": 883, "annotation": null}, {"text": "doping", "start": 884, "end": 890, "annotation": null}, {"text": "concentration", "start": 891, "end": 904, "annotation": null}, {"text": "increases", "start": 905, "end": 914, "annotation": null}, {"text": ".", "start": 914, "end": 915, "annotation": null}], [{"text": "It", "start": 916, "end": 918, "annotation": null}, {"text": "is", "start": 919, "end": 921, "annotation": null}, {"text": "necessary", "start": 922, "end": 931, "annotation": null}, {"text": "to", "start": 932, "end": 934, "annotation": null}, {"text": "get", "start": 935, "end": 938, "annotation": null}, {"text": "the", "start": 939, "end": 942, "annotation": null}, {"text": "effective", "start": 943, "end": 952, "annotation": null}, {"text": "area", "start": 953, "end": 957, "annotation": null}, {"text": "of", "start": 958, "end": 960, "annotation": null}, {"text": "the", "start": 961, "end": 964, "annotation": null}, {"text": "Bi", "start": 965, "end": 967, "annotation": null}, {"text": "\u2013", "start": 967, "end": 968, "annotation": null}, {"text": "Ga", "start": 968, "end": 970, "annotation": null}, {"text": "\u2013", "start": 970, "end": 971, "annotation": null}, {"text": "Al", "start": 971, "end": 973, "annotation": null}, {"text": "EDF", "start": 974, "end": 977, "annotation": null}, {"text": "large", "start": 978, "end": 983, "annotation": null}, {"text": "enough", "start": 984, "end": 990, "annotation": null}, {"text": "to", "start": 991, "end": 993, "annotation": null}, {"text": "decrease", "start": 994, "end": 1002, "annotation": null}, {"text": "the", "start": 1003, "end": 1006, "annotation": null}, {"text": "fiber", "start": 1007, "end": 1012, "annotation": null}, {"text": "loss", "start": 1013, "end": 1017, "annotation": null}, {"text": ".", "start": 1017, "end": 1018, "annotation": null}], [{"text": "The", "start": 1019, "end": 1022, "annotation": null}, {"text": "optimum", "start": 1023, "end": 1030, "annotation": null}, {"text": "length", "start": 1031, "end": 1037, "annotation": null}, {"text": "in", "start": 1038, "end": 1040, "annotation": null}, {"text": "the", "start": 1041, "end": 1044, "annotation": null}, {"text": "Bi", "start": 1045, "end": 1047, "annotation": null}, {"text": "\u2013", "start": 1047, "end": 1048, "annotation": null}, {"text": "Ga", "start": 1048, "end": 1050, "annotation": null}, {"text": "\u2013", "start": 1050, "end": 1051, "annotation": null}, {"text": "Al", "start": 1051, "end": 1053, "annotation": null}, {"text": "EDF", "start": 1054, "end": 1057, "annotation": null}, {"text": "is", "start": 1058, "end": 1060, "annotation": null}, {"text": "4.3", "start": 1061, "end": 1064, "annotation": null}, {"text": "m", "start": 1064, "end": 1065, "annotation": null}, {"text": ".", "start": 1065, "end": 1066, "annotation": null}], [{"text": "The", "start": 1067, "end": 1070, "annotation": null}, {"text": "BEFL", "start": 1071, "end": 1075, "annotation": null}, {"text": "operates", "start": 1076, "end": 1084, "annotation": null}, {"text": "at", "start": 1085, "end": 1087, "annotation": null}, {"text": "1563.61", "start": 1088, "end": 1095, "annotation": null}, {"text": "nm", "start": 1095, "end": 1097, "annotation": null}, {"text": ",", "start": 1097, "end": 1098, "annotation": null}, {"text": "which", "start": 1099, "end": 1104, "annotation": null}, {"text": "is", "start": 1105, "end": 1107, "annotation": null}, {"text": "upshifted", "start": 1108, "end": 1117, "annotation": null}, {"text": "by", "start": 1118, "end": 1120, "annotation": null}, {"text": "0.09", "start": 1121, "end": 1125, "annotation": null}, {"text": "nm", "start": 1125, "end": 1127, "annotation": null}, {"text": "from", "start": 1128, "end": 1132, "annotation": null}, {"text": "the", "start": 1133, "end": 1136, "annotation": null}, {"text": "Brillouin", "start": 1137, "end": 1146, "annotation": null}, {"text": "pump", "start": 1147, "end": 1151, "annotation": null}, {"text": "(", "start": 1152, "end": 1153, "annotation": null}, {"text": "BP", "start": 1153, "end": 1155, "annotation": null}, {"text": ")", "start": 1155, "end": 1156, "annotation": null}, {"text": ".", "start": 1156, "end": 1157, "annotation": null}], [{"text": "It", "start": 1158, "end": 1160, "annotation": null}, {"text": "has", "start": 1161, "end": 1164, "annotation": null}, {"text": "a", "start": 1165, "end": 1166, "annotation": null}, {"text": "peak", "start": 1167, "end": 1171, "annotation": null}, {"text": "power", "start": 1172, "end": 1177, "annotation": null}, {"text": "of", "start": 1178, "end": 1180, "annotation": null}, {"text": "\u22123dBm", "start": 1181, "end": 1186, "annotation": null}, {"text": "and", "start": 1187, "end": 1190, "annotation": null}, {"text": "a", "start": 1191, "end": 1192, "annotation": null}, {"text": "side", "start": 1193, "end": 1197, "annotation": null}, {"text": "-", "start": 1197, "end": 1198, "annotation": null}, {"text": "mode", "start": 1198, "end": 1202, "annotation": null}, {"text": "suppression", "start": 1203, "end": 1214, "annotation": null}, {"text": "ratio", "start": 1215, "end": 1220, "annotation": null}, {"text": "of", "start": 1221, "end": 1223, "annotation": null}, {"text": "26dB", "start": 1224, "end": 1228, "annotation": null}, {"text": ".", "start": 1228, "end": 1229, "annotation": null}], [{"text": "The", "start": 1230, "end": 1233, "annotation": null}, {"text": "BP", "start": 1234, "end": 1236, "annotation": null}, {"text": "wavelength", "start": 1237, "end": 1247, "annotation": null}, {"text": "is", "start": 1248, "end": 1250, "annotation": null}, {"text": "tunable", "start": 1251, "end": 1258, "annotation": null}, {"text": "within", "start": 1259, "end": 1265, "annotation": null}, {"text": "a", "start": 1266, "end": 1267, "annotation": null}, {"text": "wavelength", "start": 1268, "end": 1278, "annotation": null}, {"text": "range", "start": 1279, "end": 1284, "annotation": null}, {"text": "from", "start": 1285, "end": 1289, "annotation": null}, {"text": "1562.5", "start": 1290, "end": 1296, "annotation": null}, {"text": "to", "start": 1297, "end": 1299, "annotation": null}, {"text": "1564", "start": 1300, "end": 1304, "annotation": null}, {"text": "nm", "start": 1304, "end": 1306, "annotation": null}, {"text": ".", "start": 1306, "end": 1307, "annotation": null}], [{"text": "The", "start": 1308, "end": 1311, "annotation": null}, {"text": "BEFL", "start": 1312, "end": 1316, "annotation": null}, {"text": "has", "start": 1317, "end": 1320, "annotation": null}, {"text": "a", "start": 1321, "end": 1322, "annotation": null}, {"text": "narrow", "start": 1323, "end": 1329, "annotation": null}, {"text": "linewidth", "start": 1330, "end": 1339, "annotation": null}, {"text": ".", "start": 1339, "end": 1340, "annotation": null}], [{"text": "It", "start": 1341, "end": 1343, "annotation": null}, {"text": "is", "start": 1344, "end": 1346, "annotation": null}, {"text": "suitable", "start": 1347, "end": 1355, "annotation": null}, {"text": "for", "start": 1356, "end": 1359, "annotation": null}, {"text": "many", "start": 1360, "end": 1364, "annotation": null}, {"text": "potential", "start": 1365, "end": 1374, "annotation": null}, {"text": "applications", "start": 1375, "end": 1387, "annotation": null}, {"text": ",", "start": 1387, "end": 1388, "annotation": null}, {"text": "such", "start": 1389, "end": 1393, "annotation": null}, {"text": "as", "start": 1394, "end": 1396, "annotation": null}, {"text": "optical", "start": 1397, "end": 1404, "annotation": null}, {"text": "communication", "start": 1405, "end": 1418, "annotation": null}, {"text": "and", "start": 1419, "end": 1422, "annotation": null}, {"text": "sensors", "start": 1423, "end": 1430, "annotation": null}, {"text": ".", "start": 1430, "end": 1431, "annotation": null}]], "meta": {"doi": "10.1016/j.yofte.2012.03.002"}} +{"remark": "doping_annt1", "text": "We have achieved over 1000% colossal magnetoresistance (CMR) at room temperature by introducing well-controlled disorder to the A-site ordered manganites, Sm 1 - x La x + y Ba 1 - y Mn 2 O 6 . The La-doping to the A-sites (Sm and Ba) of mother compound, SmBaMn 2 O 6 , has mainly three different effects: (1) ionic-size randomness (IR) by Sm(La), (2) charge randomness (CR) by Ba(La) and (3) carrier doping by La/Ba. Any CMR associated with the melting of charge/orbital order (CO) phase by magnetic field is not caused by only IR, because the CO state is very stable in the homogeneous electrostatic potential at the A-site. However, a slight CR destabilizes the CO state and realizes phase separation state between CO and ferromagnetic domains, resulting in an insulator\u2013metal transition under magnetic field, CMR effect. Therefore, the electrostatic potential disorder (CR) at the A-site is an essential role for CMR effect.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "have", "start": 3, "end": 7, "annotation": null}, {"text": "achieved", "start": 8, "end": 16, "annotation": null}, {"text": "over", "start": 17, "end": 21, "annotation": null}, {"text": "1000", "start": 22, "end": 26, "annotation": null}, {"text": "%", "start": 26, "end": 27, "annotation": null}, {"text": "colossal", "start": 28, "end": 36, "annotation": null}, {"text": "magnetoresistance", "start": 37, "end": 54, "annotation": null}, {"text": "(", "start": 55, "end": 56, "annotation": null}, {"text": "CMR", "start": 56, "end": 59, "annotation": null}, {"text": ")", "start": 59, "end": 60, "annotation": null}, {"text": "at", "start": 61, "end": 63, "annotation": null}, {"text": "room", "start": 64, "end": 68, "annotation": null}, {"text": "temperature", "start": 69, "end": 80, "annotation": null}, {"text": "by", "start": 81, "end": 83, "annotation": null}, {"text": "introducing", "start": 84, "end": 95, "annotation": null}, {"text": "well", "start": 96, "end": 100, "annotation": null}, {"text": "-", "start": 100, "end": 101, "annotation": null}, {"text": "controlled", "start": 101, "end": 111, "annotation": null}, {"text": "disorder", "start": 112, "end": 120, "annotation": null}, {"text": "to", "start": 121, "end": 123, "annotation": null}, {"text": "the", "start": 124, "end": 127, "annotation": null}, {"text": "A-site", "start": 128, "end": 134, "annotation": null}, {"text": "ordered", "start": 135, "end": 142, "annotation": null}, {"text": "manganites", "start": 143, "end": 153, "annotation": null}, {"text": ",", "start": 153, "end": 154, "annotation": null}, {"text": "Sm", "start": 155, "end": 157, "annotation": null}, {"text": "1", "start": 158, "end": 159, "annotation": null}, {"text": "-", "start": 160, "end": 161, "annotation": null}, {"text": "x", "start": 162, "end": 163, "annotation": null}, {"text": "La", "start": 164, "end": 166, "annotation": null}, {"text": "x", "start": 167, "end": 168, "annotation": null}, {"text": "+", "start": 169, "end": 170, "annotation": null}, {"text": "y", "start": 171, "end": 172, "annotation": null}, {"text": "Ba", "start": 173, "end": 175, "annotation": null}, {"text": "1", "start": 176, "end": 177, "annotation": null}, {"text": "-", "start": 178, "end": 179, "annotation": null}, {"text": "y", "start": 180, "end": 181, "annotation": null}, {"text": "Mn", "start": 182, "end": 184, "annotation": null}, {"text": "2", "start": 185, "end": 186, "annotation": null}, {"text": "O", "start": 187, "end": 188, "annotation": null}, {"text": "6", "start": 189, "end": 190, "annotation": null}, {"text": ".", "start": 191, "end": 192, "annotation": null}], [{"text": "The", "start": 193, "end": 196, "annotation": null}, {"text": "La", "start": 197, "end": 199, "annotation": "DOPANT"}, {"text": "-", "start": 199, "end": 200, "annotation": null}, {"text": "doping", "start": 200, "end": 206, "annotation": null}, {"text": "to", "start": 207, "end": 209, "annotation": null}, {"text": "the", "start": 210, "end": 213, "annotation": null}, {"text": "A-sites", "start": 214, "end": 221, "annotation": null}, {"text": "(", "start": 222, "end": 223, "annotation": null}, {"text": "Sm", "start": 223, "end": 225, "annotation": null}, {"text": "and", "start": 226, "end": 229, "annotation": null}, {"text": "Ba", "start": 230, "end": 232, "annotation": null}, {"text": ")", "start": 232, "end": 233, "annotation": null}, {"text": "of", "start": 234, "end": 236, "annotation": null}, {"text": "mother", "start": 237, "end": 243, "annotation": null}, {"text": "compound", "start": 244, "end": 252, "annotation": null}, {"text": ",", "start": 252, "end": 253, "annotation": null}, {"text": "SmBaMn", "start": 254, "end": 260, "annotation": "BASEMAT"}, {"text": "2", "start": 261, "end": 262, "annotation": "BASEMAT"}, {"text": "O", "start": 263, "end": 264, "annotation": "BASEMAT"}, {"text": "6", "start": 265, "end": 266, "annotation": "BASEMAT"}, {"text": ",", "start": 267, "end": 268, "annotation": null}, {"text": "has", "start": 269, "end": 272, "annotation": null}, {"text": "mainly", "start": 273, "end": 279, "annotation": null}, {"text": "three", "start": 280, "end": 285, "annotation": null}, {"text": "different", "start": 286, "end": 295, "annotation": null}, {"text": "effects", "start": 296, "end": 303, "annotation": null}, {"text": ":", "start": 303, "end": 304, "annotation": null}, {"text": "(", "start": 305, "end": 306, "annotation": null}, {"text": "1", "start": 306, "end": 307, "annotation": null}, {"text": ")", "start": 307, "end": 308, "annotation": null}, {"text": "ionic", "start": 309, "end": 314, "annotation": null}, {"text": "-", "start": 314, "end": 315, "annotation": null}, {"text": "size", "start": 315, "end": 319, "annotation": null}, {"text": "randomness", "start": 320, "end": 330, "annotation": null}, {"text": "(", "start": 331, "end": 332, "annotation": null}, {"text": "IR", "start": 332, "end": 334, "annotation": null}, {"text": ")", "start": 334, "end": 335, "annotation": null}, {"text": "by", "start": 336, "end": 338, "annotation": null}, {"text": "Sm(La)", "start": 339, "end": 345, "annotation": null}, {"text": ",", "start": 345, "end": 346, "annotation": null}, {"text": "(", "start": 347, "end": 348, "annotation": null}, {"text": "2", "start": 348, "end": 349, "annotation": null}, {"text": ")", "start": 349, "end": 350, "annotation": null}, {"text": "charge", "start": 351, "end": 357, "annotation": null}, {"text": "randomness", "start": 358, "end": 368, "annotation": null}, {"text": "(", "start": 369, "end": 370, "annotation": null}, {"text": "CR", "start": 370, "end": 372, "annotation": null}, {"text": ")", "start": 372, "end": 373, "annotation": null}, {"text": "by", "start": 374, "end": 376, "annotation": null}, {"text": "Ba(La)", "start": 377, "end": 383, "annotation": null}, {"text": "and", "start": 384, "end": 387, "annotation": null}, {"text": "(", "start": 388, "end": 389, "annotation": null}, {"text": "3", "start": 389, "end": 390, "annotation": null}, {"text": ")", "start": 390, "end": 391, "annotation": null}, {"text": "carrier", "start": 392, "end": 399, "annotation": null}, {"text": "doping", "start": 400, "end": 406, "annotation": null}, {"text": "by", "start": 407, "end": 409, "annotation": null}, {"text": "La", "start": 410, "end": 412, "annotation": "DOPANT"}, {"text": "/", "start": 412, "end": 413, "annotation": null}, {"text": "Ba", "start": 413, "end": 415, "annotation": "DOPANT"}, {"text": ".", "start": 415, "end": 416, "annotation": null}], [{"text": "Any", "start": 417, "end": 420, "annotation": null}, {"text": "CMR", "start": 421, "end": 424, "annotation": null}, {"text": "associated", "start": 425, "end": 435, "annotation": null}, {"text": "with", "start": 436, "end": 440, "annotation": null}, {"text": "the", "start": 441, "end": 444, "annotation": null}, {"text": "melting", "start": 445, "end": 452, "annotation": null}, {"text": "of", "start": 453, "end": 455, "annotation": null}, {"text": "charge", "start": 456, "end": 462, "annotation": null}, {"text": "/", "start": 462, "end": 463, "annotation": null}, {"text": "orbital", "start": 463, "end": 470, "annotation": null}, {"text": "order", "start": 471, "end": 476, "annotation": null}, {"text": "(", "start": 477, "end": 478, "annotation": null}, {"text": "CO", "start": 478, "end": 480, "annotation": null}, {"text": ")", "start": 480, "end": 481, "annotation": null}, {"text": "phase", "start": 482, "end": 487, "annotation": null}, {"text": "by", "start": 488, "end": 490, "annotation": null}, {"text": "magnetic", "start": 491, "end": 499, "annotation": null}, {"text": "field", "start": 500, "end": 505, "annotation": null}, {"text": "is", "start": 506, "end": 508, "annotation": null}, {"text": "not", "start": 509, "end": 512, "annotation": null}, {"text": "caused", "start": 513, "end": 519, "annotation": null}, {"text": "by", "start": 520, "end": 522, "annotation": null}, {"text": "only", "start": 523, "end": 527, "annotation": null}, {"text": "IR", "start": 528, "end": 530, "annotation": null}, {"text": ",", "start": 530, "end": 531, "annotation": null}, {"text": "because", "start": 532, "end": 539, "annotation": null}, {"text": "the", "start": 540, "end": 543, "annotation": null}, {"text": "CO", "start": 544, "end": 546, "annotation": null}, {"text": "state", "start": 547, "end": 552, "annotation": null}, {"text": "is", "start": 553, "end": 555, "annotation": null}, {"text": "very", "start": 556, "end": 560, "annotation": null}, {"text": "stable", "start": 561, "end": 567, "annotation": null}, {"text": "in", "start": 568, "end": 570, "annotation": null}, {"text": "the", "start": 571, "end": 574, "annotation": null}, {"text": "homogeneous", "start": 575, "end": 586, "annotation": null}, {"text": "electrostatic", "start": 587, "end": 600, "annotation": null}, {"text": "potential", "start": 601, "end": 610, "annotation": null}, {"text": "at", "start": 611, "end": 613, "annotation": null}, {"text": "the", "start": 614, "end": 617, "annotation": null}, {"text": "A-site", "start": 618, "end": 624, "annotation": null}, {"text": ".", "start": 624, "end": 625, "annotation": null}], [{"text": "However", "start": 626, "end": 633, "annotation": null}, {"text": ",", "start": 633, "end": 634, "annotation": null}, {"text": "a", "start": 635, "end": 636, "annotation": null}, {"text": "slight", "start": 637, "end": 643, "annotation": null}, {"text": "CR", "start": 644, "end": 646, "annotation": null}, {"text": "destabilizes", "start": 647, "end": 659, "annotation": null}, {"text": "the", "start": 660, "end": 663, "annotation": null}, {"text": "CO", "start": 664, "end": 666, "annotation": null}, {"text": "state", "start": 667, "end": 672, "annotation": null}, {"text": "and", "start": 673, "end": 676, "annotation": null}, {"text": "realizes", "start": 677, "end": 685, "annotation": null}, {"text": "phase", "start": 686, "end": 691, "annotation": null}, {"text": "separation", "start": 692, "end": 702, "annotation": null}, {"text": "state", "start": 703, "end": 708, "annotation": null}, {"text": "between", "start": 709, "end": 716, "annotation": null}, {"text": "CO", "start": 717, "end": 719, "annotation": null}, {"text": "and", "start": 720, "end": 723, "annotation": null}, {"text": "ferromagnetic", "start": 724, "end": 737, "annotation": null}, {"text": "domains", "start": 738, "end": 745, "annotation": null}, {"text": ",", "start": 745, "end": 746, "annotation": null}, {"text": "resulting", "start": 747, "end": 756, "annotation": null}, {"text": "in", "start": 757, "end": 759, "annotation": null}, {"text": "an", "start": 760, "end": 762, "annotation": null}, {"text": "insulator", "start": 763, "end": 772, "annotation": null}, {"text": "\u2013", "start": 772, "end": 773, "annotation": null}, {"text": "metal", "start": 773, "end": 778, "annotation": null}, {"text": "transition", "start": 779, "end": 789, "annotation": null}, {"text": "under", "start": 790, "end": 795, "annotation": null}, {"text": "magnetic", "start": 796, "end": 804, "annotation": null}, {"text": "field", "start": 805, "end": 810, "annotation": null}, {"text": ",", "start": 810, "end": 811, "annotation": null}, {"text": "CMR", "start": 812, "end": 815, "annotation": null}, {"text": "effect", "start": 816, "end": 822, "annotation": null}, {"text": ".", "start": 822, "end": 823, "annotation": null}], [{"text": "Therefore", "start": 824, "end": 833, "annotation": null}, {"text": ",", "start": 833, "end": 834, "annotation": null}, {"text": "the", "start": 835, "end": 838, "annotation": null}, {"text": "electrostatic", "start": 839, "end": 852, "annotation": null}, {"text": "potential", "start": 853, "end": 862, "annotation": null}, {"text": "disorder", "start": 863, "end": 871, "annotation": null}, {"text": "(", "start": 872, "end": 873, "annotation": null}, {"text": "CR", "start": 873, "end": 875, "annotation": null}, {"text": ")", "start": 875, "end": 876, "annotation": null}, {"text": "at", "start": 877, "end": 879, "annotation": null}, {"text": "the", "start": 880, "end": 883, "annotation": null}, {"text": "A-site", "start": 884, "end": 890, "annotation": null}, {"text": "is", "start": 891, "end": 893, "annotation": null}, {"text": "an", "start": 894, "end": 896, "annotation": null}, {"text": "essential", "start": 897, "end": 906, "annotation": null}, {"text": "role", "start": 907, "end": 911, "annotation": null}, {"text": "for", "start": 912, "end": 915, "annotation": null}, {"text": "CMR", "start": 916, "end": 919, "annotation": null}, {"text": "effect", "start": 920, "end": 926, "annotation": null}, {"text": ".", "start": 926, "end": 927, "annotation": null}]], "meta": {"doi": "10.1016/j.physb.2006.01.236"}} {"text": "zirconium oxycarbide (ZrCxOy) ceramics were hot pressed using ZrC-5ZrO2 and ZrC-5ZrO2-5Zr (number in mol%) mixtures as starting powders, and the solid solution and densification processes were investigated. When 5 mol% ZrO2 were added to ZrC matrix, ZrCxOy and CO were formed during the reaction between ZrC and ZrO2 occurred above 1600 \u00b0C. And the sintered ZrCxOy ceramic had numerous pores. However, the co-doping of ZrO2 and Zr could reduce the reaction temperatures and CO amounts in ZrC-5ZrO2-5Zr system, resulting in a near fully dense ZrCxOy ceramic. The chemical composition of obtained ZrCxOy ceramics were also calculated according to oxygen content and reaction processes.", "meta": {"doi": "10.1016/j.jallcom.2017.09.183"}, "_input_hash": 772230437, "_task_hash": -1091170133, "tokens": [[{"text": "zirconium", "start": 0, "end": 9, "id": 0, "annotation": null}, {"text": "oxycarbide", "start": 10, "end": 20, "id": 1, "annotation": null}, {"text": "(", "start": 21, "end": 22, "id": 2, "annotation": null}, {"text": "ZrCxOy", "start": 23, "end": 29, "id": 3, "annotation": null}, {"text": ")", "start": 30, "end": 31, "id": 4, "annotation": null}, {"text": "ceramics", "start": 32, "end": 40, "id": 5, "annotation": null}, {"text": "were", "start": 41, "end": 45, "id": 6, "annotation": null}, {"text": "hot", "start": 46, "end": 49, "id": 7, "annotation": null}, {"text": "pressed", "start": 50, "end": 57, "id": 8, "annotation": null}, {"text": "using", "start": 58, "end": 63, "id": 9, "annotation": null}, {"text": "ZrC-5ZrO2", "start": 64, "end": 73, "id": 10, "annotation": null}, {"text": "and", "start": 74, "end": 77, "id": 11, "annotation": null}, {"text": "ZrC-5ZrO2", "start": 78, "end": 87, "id": 12, "annotation": null}, {"text": "-", "start": 88, "end": 89, "id": 13, "annotation": null}, {"text": "5Zr", "start": 90, "end": 93, "id": 14, "annotation": null}, {"text": "(", "start": 94, "end": 95, "id": 15, "annotation": null}, {"text": "number", "start": 96, "end": 102, "id": 16, "annotation": null}, {"text": "in", "start": 103, "end": 105, "id": 17, "annotation": null}, {"text": "mol%", "start": 106, "end": 110, "id": 18, "annotation": null}, {"text": ")", "start": 111, "end": 112, "id": 19, "annotation": null}, {"text": "mixtures", "start": 113, "end": 121, "id": 20, "annotation": null}, {"text": "as", "start": 122, "end": 124, "id": 21, "annotation": null}, {"text": "starting", "start": 125, "end": 133, "id": 22, "annotation": null}, {"text": "powders", "start": 134, "end": 141, "id": 23, "annotation": null}, {"text": ",", "start": 142, "end": 143, "id": 24, "annotation": null}, {"text": "and", "start": 144, "end": 147, "id": 25, "annotation": null}, {"text": "the", "start": 148, "end": 151, "id": 26, "annotation": null}, {"text": "solid", "start": 152, "end": 157, "id": 27, "annotation": null}, {"text": "solution", "start": 158, "end": 166, "id": 28, "annotation": null}, {"text": "and", "start": 167, "end": 170, "id": 29, "annotation": null}, {"text": "densification", "start": 171, "end": 184, "id": 30, "annotation": null}, {"text": "processes", "start": 185, "end": 194, "id": 31, "annotation": null}, {"text": "were", "start": 195, "end": 199, "id": 32, "annotation": null}, {"text": "investigated", "start": 200, "end": 212, "id": 33, "annotation": null}, {"text": ".", "start": 213, "end": 214, "id": 34, "annotation": null}], [{"text": "When", "start": 215, "end": 219, "id": 35, "annotation": null}, {"text": "5", "start": 220, "end": 221, "id": 36, "annotation": null}, {"text": "mol%", "start": 222, "end": 226, "id": 37, "annotation": null}, {"text": "ZrO2", "start": 227, "end": 231, "id": 38, "annotation": null}, {"text": "were", "start": 232, "end": 236, "id": 39, "annotation": null}, {"text": "added", "start": 237, "end": 242, "id": 40, "annotation": null}, {"text": "to", "start": 243, "end": 245, "id": 41, "annotation": null}, {"text": "ZrC", "start": 246, "end": 249, "id": 42, "annotation": null}, {"text": "matrix", "start": 250, "end": 256, "id": 43, "annotation": null}, {"text": ",", "start": 257, "end": 258, "id": 44, "annotation": null}, {"text": "ZrCxOy", "start": 259, "end": 265, "id": 45, "annotation": null}, {"text": "and", "start": 266, "end": 269, "id": 46, "annotation": null}, {"text": "CO", "start": 270, "end": 272, "id": 47, "annotation": null}, {"text": "were", "start": 273, "end": 277, "id": 48, "annotation": null}, {"text": "formed", "start": 278, "end": 284, "id": 49, "annotation": null}, {"text": "during", "start": 285, "end": 291, "id": 50, "annotation": null}, {"text": "the", "start": 292, "end": 295, "id": 51, "annotation": null}, {"text": "reaction", "start": 296, "end": 304, "id": 52, "annotation": null}, {"text": "between", "start": 305, "end": 312, "id": 53, "annotation": null}, {"text": "ZrC", "start": 313, "end": 316, "id": 54, "annotation": null}, {"text": "and", "start": 317, "end": 320, "id": 55, "annotation": null}, {"text": "ZrO2", "start": 321, "end": 325, "id": 56, "annotation": null}, {"text": "occurred", "start": 326, "end": 334, "id": 57, "annotation": null}, {"text": "above", "start": 335, "end": 340, "id": 58, "annotation": null}, {"text": "1600", "start": 341, "end": 345, "id": 59, "annotation": null}, {"text": "\u00b0", "start": 346, "end": 347, "id": 60, "annotation": null}, {"text": "C", "start": 348, "end": 349, "id": 61, "annotation": null}, {"text": ".", "start": 350, "end": 351, "id": 62, "annotation": null}], [{"text": "And", "start": 352, "end": 355, "id": 63, "annotation": null}, {"text": "the", "start": 356, "end": 359, "id": 64, "annotation": null}, {"text": "sintered", "start": 360, "end": 368, "id": 65, "annotation": null}, {"text": "ZrCxOy", "start": 369, "end": 375, "id": 66, "annotation": null}, {"text": "ceramic", "start": 376, "end": 383, "id": 67, "annotation": null}, {"text": "had", "start": 384, "end": 387, "id": 68, "annotation": null}, {"text": "numerous", "start": 388, "end": 396, "id": 69, "annotation": null}, {"text": "pores", "start": 397, "end": 402, "id": 70, "annotation": null}, {"text": ".", "start": 403, "end": 404, "id": 71, "annotation": null}], [{"text": "However", "start": 405, "end": 412, "id": 72, "annotation": null}, {"text": ",", "start": 413, "end": 414, "id": 73, "annotation": null}, {"text": "the", "start": 415, "end": 418, "id": 74, "annotation": null}, {"text": "co", "start": 419, "end": 421, "id": 75, "annotation": null}, {"text": "-", "start": 422, "end": 423, "id": 76, "annotation": null}, {"text": "doping", "start": 424, "end": 430, "id": 77, "annotation": null}, {"text": "of", "start": 431, "end": 433, "id": 78, "annotation": null}, {"text": "ZrO2", "start": 434, "end": 438, "id": 79, "annotation": "BASEMAT"}, {"text": "and", "start": 439, "end": 442, "id": 80, "annotation": null}, {"text": "Zr", "start": 443, "end": 445, "id": 81, "annotation": "BASEMAT"}, {"text": "could", "start": 446, "end": 451, "id": 82, "annotation": null}, {"text": "reduce", "start": 452, "end": 458, "id": 83, "annotation": null}, {"text": "the", "start": 459, "end": 462, "id": 84, "annotation": null}, {"text": "reaction", "start": 463, "end": 471, "id": 85, "annotation": null}, {"text": "temperatures", "start": 472, "end": 484, "id": 86, "annotation": null}, {"text": "and", "start": 485, "end": 488, "id": 87, "annotation": null}, {"text": "CO", "start": 489, "end": 491, "id": 88, "annotation": null}, {"text": "amounts", "start": 492, "end": 499, "id": 89, "annotation": null}, {"text": "in", "start": 500, "end": 502, "id": 90, "annotation": null}, {"text": "ZrC-5ZrO2", "start": 503, "end": 512, "id": 91, "annotation": null}, {"text": "-", "start": 513, "end": 514, "id": 92, "annotation": null}, {"text": "5Zr", "start": 515, "end": 518, "id": 93, "annotation": null}, {"text": "system", "start": 519, "end": 525, "id": 94, "annotation": null}, {"text": ",", "start": 526, "end": 527, "id": 95, "annotation": null}, {"text": "resulting", "start": 528, "end": 537, "id": 96, "annotation": null}, {"text": "in", "start": 538, "end": 540, "id": 97, "annotation": null}, {"text": "a", "start": 541, "end": 542, "id": 98, "annotation": null}, {"text": "near", "start": 543, "end": 547, "id": 99, "annotation": null}, {"text": "fully", "start": 548, "end": 553, "id": 100, "annotation": null}, {"text": "dense", "start": 554, "end": 559, "id": 101, "annotation": null}, {"text": "ZrCxOy", "start": 560, "end": 566, "id": 102, "annotation": null}, {"text": "ceramic", "start": 567, "end": 574, "id": 103, "annotation": null}, {"text": ".", "start": 575, "end": 576, "id": 104, "annotation": null}], [{"text": "The", "start": 577, "end": 580, "id": 105, "annotation": null}, {"text": "chemical", "start": 581, "end": 589, "id": 106, "annotation": null}, {"text": "composition", "start": 590, "end": 601, "id": 107, "annotation": null}, {"text": "of", "start": 602, "end": 604, "id": 108, "annotation": null}, {"text": "obtained", "start": 605, "end": 613, "id": 109, "annotation": null}, {"text": "ZrCxOy", "start": 614, "end": 620, "id": 110, "annotation": null}, {"text": "ceramics", "start": 621, "end": 629, "id": 111, "annotation": null}, {"text": "were", "start": 630, "end": 634, "id": 112, "annotation": null}, {"text": "also", "start": 635, "end": 639, "id": 113, "annotation": null}, {"text": "calculated", "start": 640, "end": 650, "id": 114, "annotation": null}, {"text": "according", "start": 651, "end": 660, "id": 115, "annotation": null}, {"text": "to", "start": 661, "end": 663, "id": 116, "annotation": null}, {"text": "oxygen", "start": 664, "end": 670, "id": 117, "annotation": null}, {"text": "content", "start": 671, "end": 678, "id": 118, "annotation": null}, {"text": "and", "start": 679, "end": 682, "id": 119, "annotation": null}, {"text": "reaction", "start": 683, "end": 691, "id": 120, "annotation": null}, {"text": "processes", "start": 692, "end": 701, "id": 121, "annotation": null}, {"text": ".", "start": 702, "end": 703, "id": 122, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "Quenching experiments were carried out to study the coarsening phenomena of Y2BaCuO5 (211) particles in liquid (Ba3Cu5O8) which form as a result of the peritectic decomposition of YBa2Cu3O7\u2212x (123) above 1010\u00b0C. The morphology of 211 particles was observed to become more acicular as the time of hold increased at 1040\u00b0C, showing an anisotropic growth rate of the 211 particles in the liquid. Also, the coarsening rate was found to be increased in the presence of excess added liquid phase (Ba3Cu5O8) in the 123. Externally added 211 particles were found to act as heterogeneous nucleation sites for the peritectically formed 211. The observed cored 211 morphology development in the Er 211 doped, melt textured, Y 123 pellets was explained on the basis of ripening of 211 particles. Reduced coarsening of 211 particles was observed in the presence of 0.5 wt.% Pt doping.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Quenching", "start": 0, "end": 9, "annotation": null}, {"text": "experiments", "start": 10, "end": 21, "annotation": null}, {"text": "were", "start": 22, "end": 26, "annotation": null}, {"text": "carried", "start": 27, "end": 34, "annotation": null}, {"text": "out", "start": 35, "end": 38, "annotation": null}, {"text": "to", "start": 39, "end": 41, "annotation": null}, {"text": "study", "start": 42, "end": 47, "annotation": null}, {"text": "the", "start": 48, "end": 51, "annotation": null}, {"text": "coarsening", "start": 52, "end": 62, "annotation": null}, {"text": "phenomena", "start": 63, "end": 72, "annotation": null}, {"text": "of", "start": 73, "end": 75, "annotation": null}, {"text": "Y2BaCuO5", "start": 76, "end": 84, "annotation": null}, {"text": "(", "start": 85, "end": 86, "annotation": null}, {"text": "211", "start": 86, "end": 89, "annotation": null}, {"text": ")", "start": 89, "end": 90, "annotation": null}, {"text": "particles", "start": 91, "end": 100, "annotation": null}, {"text": "in", "start": 101, "end": 103, "annotation": null}, {"text": "liquid", "start": 104, "end": 110, "annotation": null}, {"text": "(", "start": 111, "end": 112, "annotation": null}, {"text": "Ba3Cu5O8", "start": 112, "end": 120, "annotation": null}, {"text": ")", "start": 120, "end": 121, "annotation": null}, {"text": "which", "start": 122, "end": 127, "annotation": null}, {"text": "form", "start": 128, "end": 132, "annotation": null}, {"text": "as", "start": 133, "end": 135, "annotation": null}, {"text": "a", "start": 136, "end": 137, "annotation": null}, {"text": "result", "start": 138, "end": 144, "annotation": null}, {"text": "of", "start": 145, "end": 147, "annotation": null}, {"text": "the", "start": 148, "end": 151, "annotation": null}, {"text": "peritectic", "start": 152, "end": 162, "annotation": null}, {"text": "decomposition", "start": 163, "end": 176, "annotation": null}, {"text": "of", "start": 177, "end": 179, "annotation": null}, {"text": "YBa2Cu3O7\u2212x", "start": 180, "end": 191, "annotation": null}, {"text": "(", "start": 192, "end": 193, "annotation": null}, {"text": "123", "start": 193, "end": 196, "annotation": null}, {"text": ")", "start": 196, "end": 197, "annotation": null}, {"text": "above", "start": 198, "end": 203, "annotation": null}, {"text": "1010", "start": 204, "end": 208, "annotation": null}, {"text": "\u00b0", "start": 208, "end": 209, "annotation": null}, {"text": "C", "start": 209, "end": 210, "annotation": null}, {"text": ".", "start": 210, "end": 211, "annotation": null}], [{"text": "The", "start": 212, "end": 215, "annotation": null}, {"text": "morphology", "start": 216, "end": 226, "annotation": null}, {"text": "of", "start": 227, "end": 229, "annotation": null}, {"text": "211", "start": 230, "end": 233, "annotation": null}, {"text": "particles", "start": 234, "end": 243, "annotation": null}, {"text": "was", "start": 244, "end": 247, "annotation": null}, {"text": "observed", "start": 248, "end": 256, "annotation": null}, {"text": "to", "start": 257, "end": 259, "annotation": null}, {"text": "become", "start": 260, "end": 266, "annotation": null}, {"text": "more", "start": 267, "end": 271, "annotation": null}, {"text": "acicular", "start": 272, "end": 280, "annotation": null}, {"text": "as", "start": 281, "end": 283, "annotation": null}, {"text": "the", "start": 284, "end": 287, "annotation": null}, {"text": "time", "start": 288, "end": 292, "annotation": null}, {"text": "of", "start": 293, "end": 295, "annotation": null}, {"text": "hold", "start": 296, "end": 300, "annotation": null}, {"text": "increased", "start": 301, "end": 310, "annotation": null}, {"text": "at", "start": 311, "end": 313, "annotation": null}, {"text": "1040", "start": 314, "end": 318, "annotation": null}, {"text": "\u00b0", "start": 318, "end": 319, "annotation": null}, {"text": "C", "start": 319, "end": 320, "annotation": null}, {"text": ",", "start": 320, "end": 321, "annotation": null}, {"text": "showing", "start": 322, "end": 329, "annotation": null}, {"text": "an", "start": 330, "end": 332, "annotation": null}, {"text": "anisotropic", "start": 333, "end": 344, "annotation": null}, {"text": "growth", "start": 345, "end": 351, "annotation": null}, {"text": "rate", "start": 352, "end": 356, "annotation": null}, {"text": "of", "start": 357, "end": 359, "annotation": null}, {"text": "the", "start": 360, "end": 363, "annotation": null}, {"text": "211", "start": 364, "end": 367, "annotation": null}, {"text": "particles", "start": 368, "end": 377, "annotation": null}, {"text": "in", "start": 378, "end": 380, "annotation": null}, {"text": "the", "start": 381, "end": 384, "annotation": null}, {"text": "liquid", "start": 385, "end": 391, "annotation": null}, {"text": ".", "start": 391, "end": 392, "annotation": null}], [{"text": "Also", "start": 393, "end": 397, "annotation": null}, {"text": ",", "start": 397, "end": 398, "annotation": null}, {"text": "the", "start": 399, "end": 402, "annotation": null}, {"text": "coarsening", "start": 403, "end": 413, "annotation": null}, {"text": "rate", "start": 414, "end": 418, "annotation": null}, {"text": "was", "start": 419, "end": 422, "annotation": null}, {"text": "found", "start": 423, "end": 428, "annotation": null}, {"text": "to", "start": 429, "end": 431, "annotation": null}, {"text": "be", "start": 432, "end": 434, "annotation": null}, {"text": "increased", "start": 435, "end": 444, "annotation": null}, {"text": "in", "start": 445, "end": 447, "annotation": null}, {"text": "the", "start": 448, "end": 451, "annotation": null}, {"text": "presence", "start": 452, "end": 460, "annotation": null}, {"text": "of", "start": 461, "end": 463, "annotation": null}, {"text": "excess", "start": 464, "end": 470, "annotation": null}, {"text": "added", "start": 471, "end": 476, "annotation": null}, {"text": "liquid", "start": 477, "end": 483, "annotation": null}, {"text": "phase", "start": 484, "end": 489, "annotation": null}, {"text": "(", "start": 490, "end": 491, "annotation": null}, {"text": "Ba3Cu5O8", "start": 491, "end": 499, "annotation": null}, {"text": ")", "start": 499, "end": 500, "annotation": null}, {"text": "in", "start": 501, "end": 503, "annotation": null}, {"text": "the", "start": 504, "end": 507, "annotation": null}, {"text": "123", "start": 508, "end": 511, "annotation": null}, {"text": ".", "start": 511, "end": 512, "annotation": null}], [{"text": "Externally", "start": 513, "end": 523, "annotation": null}, {"text": "added", "start": 524, "end": 529, "annotation": null}, {"text": "211", "start": 530, "end": 533, "annotation": null}, {"text": "particles", "start": 534, "end": 543, "annotation": null}, {"text": "were", "start": 544, "end": 548, "annotation": null}, {"text": "found", "start": 549, "end": 554, "annotation": null}, {"text": "to", "start": 555, "end": 557, "annotation": null}, {"text": "act", "start": 558, "end": 561, "annotation": null}, {"text": "as", "start": 562, "end": 564, "annotation": null}, {"text": "heterogeneous", "start": 565, "end": 578, "annotation": null}, {"text": "nucleation", "start": 579, "end": 589, "annotation": null}, {"text": "sites", "start": 590, "end": 595, "annotation": null}, {"text": "for", "start": 596, "end": 599, "annotation": null}, {"text": "the", "start": 600, "end": 603, "annotation": null}, {"text": "peritectically", "start": 604, "end": 618, "annotation": null}, {"text": "formed", "start": 619, "end": 625, "annotation": null}, {"text": "211", "start": 626, "end": 629, "annotation": null}, {"text": ".", "start": 629, "end": 630, "annotation": null}], [{"text": "The", "start": 631, "end": 634, "annotation": null}, {"text": "observed", "start": 635, "end": 643, "annotation": null}, {"text": "cored", "start": 644, "end": 649, "annotation": null}, {"text": "211", "start": 650, "end": 653, "annotation": null}, {"text": "morphology", "start": 654, "end": 664, "annotation": null}, {"text": "development", "start": 665, "end": 676, "annotation": null}, {"text": "in", "start": 677, "end": 679, "annotation": null}, {"text": "the", "start": 680, "end": 683, "annotation": null}, {"text": "Er", "start": 684, "end": 686, "annotation": "DOPANT"}, {"text": "211", "start": 687, "end": 690, "annotation": "DOPANT"}, {"text": "doped", "start": 691, "end": 696, "annotation": "DOPANT"}, {"text": ",", "start": 696, "end": 697, "annotation": null}, {"text": "melt", "start": 698, "end": 702, "annotation": null}, {"text": "textured", "start": 703, "end": 711, "annotation": null}, {"text": ",", "start": 711, "end": 712, "annotation": null}, {"text": "Y", "start": 713, "end": 714, "annotation": "BASEMAT"}, {"text": "123", "start": 715, "end": 718, "annotation": "BASEMAT"}, {"text": "pellets", "start": 719, "end": 726, "annotation": "BASEMAT"}, {"text": "was", "start": 727, "end": 730, "annotation": null}, {"text": "explained", "start": 731, "end": 740, "annotation": null}, {"text": "on", "start": 741, "end": 743, "annotation": null}, {"text": "the", "start": 744, "end": 747, "annotation": null}, {"text": "basis", "start": 748, "end": 753, "annotation": null}, {"text": "of", "start": 754, "end": 756, "annotation": null}, {"text": "ripening", "start": 757, "end": 765, "annotation": null}, {"text": "of", "start": 766, "end": 768, "annotation": null}, {"text": "211", "start": 769, "end": 772, "annotation": null}, {"text": "particles", "start": 773, "end": 782, "annotation": null}, {"text": ".", "start": 782, "end": 783, "annotation": null}], [{"text": "Reduced", "start": 784, "end": 791, "annotation": null}, {"text": "coarsening", "start": 792, "end": 802, "annotation": null}, {"text": "of", "start": 803, "end": 805, "annotation": null}, {"text": "211", "start": 806, "end": 809, "annotation": null}, {"text": "particles", "start": 810, "end": 819, "annotation": null}, {"text": "was", "start": 820, "end": 823, "annotation": null}, {"text": "observed", "start": 824, "end": 832, "annotation": null}, {"text": "in", "start": 833, "end": 835, "annotation": null}, {"text": "the", "start": 836, "end": 839, "annotation": null}, {"text": "presence", "start": 840, "end": 848, "annotation": null}, {"text": "of", "start": 849, "end": 851, "annotation": null}, {"text": "0.5", "start": 852, "end": 855, "annotation": "DOPMODQ"}, {"text": "wt.", "start": 856, "end": 859, "annotation": "DOPMODQ"}, {"text": "%", "start": 859, "end": 860, "annotation": "DOPMODQ"}, {"text": "Pt", "start": 861, "end": 863, "annotation": "DOPANT"}, {"text": "doping", "start": 864, "end": 870, "annotation": null}, {"text": ".", "start": 870, "end": 871, "annotation": null}]]} +{"remark": "doping_annt3", "text": "Quenching experiments were carried out to study the coarsening phenomena of Y2BaCuO5 (211) particles in liquid (Ba3Cu5O8) which form as a result of the peritectic decomposition of YBa2Cu3O7\u2212x (123) above 1010\u00b0C. The morphology of 211 particles was observed to become more acicular as the time of hold increased at 1040\u00b0C, showing an anisotropic growth rate of the 211 particles in the liquid. Also, the coarsening rate was found to be increased in the presence of excess added liquid phase (Ba3Cu5O8) in the 123. Externally added 211 particles were found to act as heterogeneous nucleation sites for the peritectically formed 211. The observed cored 211 morphology development in the Er 211 doped, melt textured, Y 123 pellets was explained on the basis of ripening of 211 particles. Reduced coarsening of 211 particles was observed in the presence of 0.5 wt.% Pt doping.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Quenching", "start": 0, "end": 9, "annotation": null}, {"text": "experiments", "start": 10, "end": 21, "annotation": null}, {"text": "were", "start": 22, "end": 26, "annotation": null}, {"text": "carried", "start": 27, "end": 34, "annotation": null}, {"text": "out", "start": 35, "end": 38, "annotation": null}, {"text": "to", "start": 39, "end": 41, "annotation": null}, {"text": "study", "start": 42, "end": 47, "annotation": null}, {"text": "the", "start": 48, "end": 51, "annotation": null}, {"text": "coarsening", "start": 52, "end": 62, "annotation": null}, {"text": "phenomena", "start": 63, "end": 72, "annotation": null}, {"text": "of", "start": 73, "end": 75, "annotation": null}, {"text": "Y2BaCuO5", "start": 76, "end": 84, "annotation": null}, {"text": "(", "start": 85, "end": 86, "annotation": null}, {"text": "211", "start": 86, "end": 89, "annotation": null}, {"text": ")", "start": 89, "end": 90, "annotation": null}, {"text": "particles", "start": 91, "end": 100, "annotation": null}, {"text": "in", "start": 101, "end": 103, "annotation": null}, {"text": "liquid", "start": 104, "end": 110, "annotation": null}, {"text": "(", "start": 111, "end": 112, "annotation": null}, {"text": "Ba3Cu5O8", "start": 112, "end": 120, "annotation": null}, {"text": ")", "start": 120, "end": 121, "annotation": null}, {"text": "which", "start": 122, "end": 127, "annotation": null}, {"text": "form", "start": 128, "end": 132, "annotation": null}, {"text": "as", "start": 133, "end": 135, "annotation": null}, {"text": "a", "start": 136, "end": 137, "annotation": null}, {"text": "result", "start": 138, "end": 144, "annotation": null}, {"text": "of", "start": 145, "end": 147, "annotation": null}, {"text": "the", "start": 148, "end": 151, "annotation": null}, {"text": "peritectic", "start": 152, "end": 162, "annotation": null}, {"text": "decomposition", "start": 163, "end": 176, "annotation": null}, {"text": "of", "start": 177, "end": 179, "annotation": null}, {"text": "YBa2Cu3O7\u2212x", "start": 180, "end": 191, "annotation": null}, {"text": "(", "start": 192, "end": 193, "annotation": null}, {"text": "123", "start": 193, "end": 196, "annotation": null}, {"text": ")", "start": 196, "end": 197, "annotation": null}, {"text": "above", "start": 198, "end": 203, "annotation": null}, {"text": "1010", "start": 204, "end": 208, "annotation": null}, {"text": "\u00b0", "start": 208, "end": 209, "annotation": null}, {"text": "C", "start": 209, "end": 210, "annotation": null}, {"text": ".", "start": 210, "end": 211, "annotation": null}], [{"text": "The", "start": 212, "end": 215, "annotation": null}, {"text": "morphology", "start": 216, "end": 226, "annotation": null}, {"text": "of", "start": 227, "end": 229, "annotation": null}, {"text": "211", "start": 230, "end": 233, "annotation": null}, {"text": "particles", "start": 234, "end": 243, "annotation": null}, {"text": "was", "start": 244, "end": 247, "annotation": null}, {"text": "observed", "start": 248, "end": 256, "annotation": null}, {"text": "to", "start": 257, "end": 259, "annotation": null}, {"text": "become", "start": 260, "end": 266, "annotation": null}, {"text": "more", "start": 267, "end": 271, "annotation": null}, {"text": "acicular", "start": 272, "end": 280, "annotation": null}, {"text": "as", "start": 281, "end": 283, "annotation": null}, {"text": "the", "start": 284, "end": 287, "annotation": null}, {"text": "time", "start": 288, "end": 292, "annotation": null}, {"text": "of", "start": 293, "end": 295, "annotation": null}, {"text": "hold", "start": 296, "end": 300, "annotation": null}, {"text": "increased", "start": 301, "end": 310, "annotation": null}, {"text": "at", "start": 311, "end": 313, "annotation": null}, {"text": "1040", "start": 314, "end": 318, "annotation": null}, {"text": "\u00b0", "start": 318, "end": 319, "annotation": null}, {"text": "C", "start": 319, "end": 320, "annotation": null}, {"text": ",", "start": 320, "end": 321, "annotation": null}, {"text": "showing", "start": 322, "end": 329, "annotation": null}, {"text": "an", "start": 330, "end": 332, "annotation": null}, {"text": "anisotropic", "start": 333, "end": 344, "annotation": null}, {"text": "growth", "start": 345, "end": 351, "annotation": null}, {"text": "rate", "start": 352, "end": 356, "annotation": null}, {"text": "of", "start": 357, "end": 359, "annotation": null}, {"text": "the", "start": 360, "end": 363, "annotation": null}, {"text": "211", "start": 364, "end": 367, "annotation": null}, {"text": "particles", "start": 368, "end": 377, "annotation": null}, {"text": "in", "start": 378, "end": 380, "annotation": null}, {"text": "the", "start": 381, "end": 384, "annotation": null}, {"text": "liquid", "start": 385, "end": 391, "annotation": null}, {"text": ".", "start": 391, "end": 392, "annotation": null}], [{"text": "Also", "start": 393, "end": 397, "annotation": null}, {"text": ",", "start": 397, "end": 398, "annotation": null}, {"text": "the", "start": 399, "end": 402, "annotation": null}, {"text": "coarsening", "start": 403, "end": 413, "annotation": null}, {"text": "rate", "start": 414, "end": 418, "annotation": null}, {"text": "was", "start": 419, "end": 422, "annotation": null}, {"text": "found", "start": 423, "end": 428, "annotation": null}, {"text": "to", "start": 429, "end": 431, "annotation": null}, {"text": "be", "start": 432, "end": 434, "annotation": null}, {"text": "increased", "start": 435, "end": 444, "annotation": null}, {"text": "in", "start": 445, "end": 447, "annotation": null}, {"text": "the", "start": 448, "end": 451, "annotation": null}, {"text": "presence", "start": 452, "end": 460, "annotation": null}, {"text": "of", "start": 461, "end": 463, "annotation": null}, {"text": "excess", "start": 464, "end": 470, "annotation": null}, {"text": "added", "start": 471, "end": 476, "annotation": null}, {"text": "liquid", "start": 477, "end": 483, "annotation": null}, {"text": "phase", "start": 484, "end": 489, "annotation": null}, {"text": "(", "start": 490, "end": 491, "annotation": null}, {"text": "Ba3Cu5O8", "start": 491, "end": 499, "annotation": null}, {"text": ")", "start": 499, "end": 500, "annotation": null}, {"text": "in", "start": 501, "end": 503, "annotation": null}, {"text": "the", "start": 504, "end": 507, "annotation": null}, {"text": "123", "start": 508, "end": 511, "annotation": null}, {"text": ".", "start": 511, "end": 512, "annotation": null}], [{"text": "Externally", "start": 513, "end": 523, "annotation": null}, {"text": "added", "start": 524, "end": 529, "annotation": null}, {"text": "211", "start": 530, "end": 533, "annotation": null}, {"text": "particles", "start": 534, "end": 543, "annotation": null}, {"text": "were", "start": 544, "end": 548, "annotation": null}, {"text": "found", "start": 549, "end": 554, "annotation": null}, {"text": "to", "start": 555, "end": 557, "annotation": null}, {"text": "act", "start": 558, "end": 561, "annotation": null}, {"text": "as", "start": 562, "end": 564, "annotation": null}, {"text": "heterogeneous", "start": 565, "end": 578, "annotation": null}, {"text": "nucleation", "start": 579, "end": 589, "annotation": null}, {"text": "sites", "start": 590, "end": 595, "annotation": null}, {"text": "for", "start": 596, "end": 599, "annotation": null}, {"text": "the", "start": 600, "end": 603, "annotation": null}, {"text": "peritectically", "start": 604, "end": 618, "annotation": null}, {"text": "formed", "start": 619, "end": 625, "annotation": null}, {"text": "211", "start": 626, "end": 629, "annotation": null}, {"text": ".", "start": 629, "end": 630, "annotation": null}], [{"text": "The", "start": 631, "end": 634, "annotation": null}, {"text": "observed", "start": 635, "end": 643, "annotation": null}, {"text": "cored", "start": 644, "end": 649, "annotation": null}, {"text": "211", "start": 650, "end": 653, "annotation": null}, {"text": "morphology", "start": 654, "end": 664, "annotation": null}, {"text": "development", "start": 665, "end": 676, "annotation": null}, {"text": "in", "start": 677, "end": 679, "annotation": null}, {"text": "the", "start": 680, "end": 683, "annotation": null}, {"text": "Er", "start": 684, "end": 686, "annotation": "DOPANT"}, {"text": "211", "start": 687, "end": 690, "annotation": "DOPANT"}, {"text": "doped", "start": 691, "end": 696, "annotation": null}, {"text": ",", "start": 696, "end": 697, "annotation": null}, {"text": "melt", "start": 698, "end": 702, "annotation": null}, {"text": "textured", "start": 703, "end": 711, "annotation": null}, {"text": ",", "start": 711, "end": 712, "annotation": null}, {"text": "Y", "start": 713, "end": 714, "annotation": "BASEMAT"}, {"text": "123", "start": 715, "end": 718, "annotation": "BASEMAT"}, {"text": "pellets", "start": 719, "end": 726, "annotation": "BASEMAT"}, {"text": "was", "start": 727, "end": 730, "annotation": null}, {"text": "explained", "start": 731, "end": 740, "annotation": null}, {"text": "on", "start": 741, "end": 743, "annotation": null}, {"text": "the", "start": 744, "end": 747, "annotation": null}, {"text": "basis", "start": 748, "end": 753, "annotation": null}, {"text": "of", "start": 754, "end": 756, "annotation": null}, {"text": "ripening", "start": 757, "end": 765, "annotation": null}, {"text": "of", "start": 766, "end": 768, "annotation": null}, {"text": "211", "start": 769, "end": 772, "annotation": null}, {"text": "particles", "start": 773, "end": 782, "annotation": null}, {"text": ".", "start": 782, "end": 783, "annotation": null}], [{"text": "Reduced", "start": 784, "end": 791, "annotation": null}, {"text": "coarsening", "start": 792, "end": 802, "annotation": null}, {"text": "of", "start": 803, "end": 805, "annotation": null}, {"text": "211", "start": 806, "end": 809, "annotation": null}, {"text": "particles", "start": 810, "end": 819, "annotation": null}, {"text": "was", "start": 820, "end": 823, "annotation": null}, {"text": "observed", "start": 824, "end": 832, "annotation": null}, {"text": "in", "start": 833, "end": 835, "annotation": null}, {"text": "the", "start": 836, "end": 839, "annotation": null}, {"text": "presence", "start": 840, "end": 848, "annotation": null}, {"text": "of", "start": 849, "end": 851, "annotation": null}, {"text": "0.5", "start": 852, "end": 855, "annotation": "DOPMODQ"}, {"text": "wt.", "start": 856, "end": 859, "annotation": "DOPMODQ"}, {"text": "%", "start": 859, "end": 860, "annotation": "DOPMODQ"}, {"text": "Pt", "start": 861, "end": 863, "annotation": "DOPANT"}, {"text": "doping", "start": 864, "end": 870, "annotation": null}, {"text": ".", "start": 870, "end": 871, "annotation": null}]], "meta": {"doi": "10.1007/BF02818068"}} {"text": "We have synthesized pure and Mg-alloyed hematite thin films on F-doped, SnO2-coated glass substrates by radiofrequency magnetron cosputtering of iron oxide with and without MgO sources in mixed Ar/O2 and mixed N2/O2 ambient. We found that hematite films deposited in N2/O2 ambient exhibited much poorer crystallinity than those deposited in Ar/O2 ambient. We determined that Mg alloying led to increased crystallinity and bandgap. Furthermore, we found that Mg alloying inverted the type of conductivity of the thin films: pure hematite thin films exhibited n-type conductivity, whereas Mg-alloyed hematite thin films exhibited p-type conductivity.", "meta": {"doi": "10.1007/s11664-012-2205-4"}, "_input_hash": 1166037039, "_task_hash": -1370470197, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "have", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "synthesized", "start": 8, "end": 19, "id": 2, "annotation": null}, {"text": "pure", "start": 20, "end": 24, "id": 3, "annotation": null}, {"text": "and", "start": 25, "end": 28, "id": 4, "annotation": null}, {"text": "Mg", "start": 29, "end": 31, "id": 5, "annotation": null}, {"text": "-", "start": 32, "end": 33, "id": 6, "annotation": null}, {"text": "alloyed", "start": 34, "end": 41, "id": 7, "annotation": null}, {"text": "hematite", "start": 42, "end": 50, "id": 8, "annotation": null}, {"text": "thin", "start": 51, "end": 55, "id": 9, "annotation": null}, {"text": "films", "start": 56, "end": 61, "id": 10, "annotation": null}, {"text": "on", "start": 62, "end": 64, "id": 11, "annotation": null}, {"text": "F", "start": 65, "end": 66, "id": 12, "annotation": "DOPANT"}, {"text": "-", "start": 67, "end": 68, "id": 13, "annotation": null}, {"text": "doped", "start": 69, "end": 74, "id": 14, "annotation": null}, {"text": ",", "start": 75, "end": 76, "id": 15, "annotation": null}, {"text": "SnO2-coated", "start": 77, "end": 88, "id": 16, "annotation": null}, {"text": "glass", "start": 89, "end": 94, "id": 17, "annotation": "BASEMAT"}, {"text": "substrates", "start": 95, "end": 105, "id": 18, "annotation": null}, {"text": "by", "start": 106, "end": 108, "id": 19, "annotation": null}, {"text": "radiofrequency", "start": 109, "end": 123, "id": 20, "annotation": null}, {"text": "magnetron", "start": 124, "end": 133, "id": 21, "annotation": null}, {"text": "cosputtering", "start": 134, "end": 146, "id": 22, "annotation": null}, {"text": "of", "start": 147, "end": 149, "id": 23, "annotation": null}, {"text": "iron", "start": 150, "end": 154, "id": 24, "annotation": null}, {"text": "oxide", "start": 155, "end": 160, "id": 25, "annotation": null}, {"text": "with", "start": 161, "end": 165, "id": 26, "annotation": null}, {"text": "and", "start": 166, "end": 169, "id": 27, "annotation": null}, {"text": "without", "start": 170, "end": 177, "id": 28, "annotation": null}, {"text": "MgO", "start": 178, "end": 181, "id": 29, "annotation": null}, {"text": "sources", "start": 182, "end": 189, "id": 30, "annotation": null}, {"text": "in", "start": 190, "end": 192, "id": 31, "annotation": null}, {"text": "mixed", "start": 193, "end": 198, "id": 32, "annotation": null}, {"text": "Ar", "start": 199, "end": 201, "id": 33, "annotation": null}, {"text": "/", "start": 202, "end": 203, "id": 34, "annotation": null}, {"text": "O2", "start": 204, "end": 206, "id": 35, "annotation": null}, {"text": "and", "start": 207, "end": 210, "id": 36, "annotation": null}, {"text": "mixed", "start": 211, "end": 216, "id": 37, "annotation": null}, {"text": "N2", "start": 217, "end": 219, "id": 38, "annotation": null}, {"text": "/", "start": 220, "end": 221, "id": 39, "annotation": null}, {"text": "O2", "start": 222, "end": 224, "id": 40, "annotation": null}, {"text": "ambient", "start": 225, "end": 232, "id": 41, "annotation": null}, {"text": ".", "start": 233, "end": 234, "id": 42, "annotation": null}], [{"text": "We", "start": 235, "end": 237, "id": 43, "annotation": null}, {"text": "found", "start": 238, "end": 243, "id": 44, "annotation": null}, {"text": "that", "start": 244, "end": 248, "id": 45, "annotation": null}, {"text": "hematite", "start": 249, "end": 257, "id": 46, "annotation": null}, {"text": "films", "start": 258, "end": 263, "id": 47, "annotation": null}, {"text": "deposited", "start": 264, "end": 273, "id": 48, "annotation": null}, {"text": "in", "start": 274, "end": 276, "id": 49, "annotation": null}, {"text": "N2", "start": 277, "end": 279, "id": 50, "annotation": null}, {"text": "/", "start": 280, "end": 281, "id": 51, "annotation": null}, {"text": "O2", "start": 282, "end": 284, "id": 52, "annotation": null}, {"text": "ambient", "start": 285, "end": 292, "id": 53, "annotation": null}, {"text": "exhibited", "start": 293, "end": 302, "id": 54, "annotation": null}, {"text": "much", "start": 303, "end": 307, "id": 55, "annotation": null}, {"text": "poorer", "start": 308, "end": 314, "id": 56, "annotation": null}, {"text": "crystallinity", "start": 315, "end": 328, "id": 57, "annotation": null}, {"text": "than", "start": 329, "end": 333, "id": 58, "annotation": null}, {"text": "those", "start": 334, "end": 339, "id": 59, "annotation": null}, {"text": "deposited", "start": 340, "end": 349, "id": 60, "annotation": null}, {"text": "in", "start": 350, "end": 352, "id": 61, "annotation": null}, {"text": "Ar", "start": 353, "end": 355, "id": 62, "annotation": null}, {"text": "/", "start": 356, "end": 357, "id": 63, "annotation": null}, {"text": "O2", "start": 358, "end": 360, "id": 64, "annotation": null}, {"text": "ambient", "start": 361, "end": 368, "id": 65, "annotation": null}, {"text": ".", "start": 369, "end": 370, "id": 66, "annotation": null}], [{"text": "We", "start": 371, "end": 373, "id": 67, "annotation": null}, {"text": "determined", "start": 374, "end": 384, "id": 68, "annotation": null}, {"text": "that", "start": 385, "end": 389, "id": 69, "annotation": null}, {"text": "Mg", "start": 390, "end": 392, "id": 70, "annotation": null}, {"text": "alloying", "start": 393, "end": 401, "id": 71, "annotation": null}, {"text": "led", "start": 402, "end": 405, "id": 72, "annotation": null}, {"text": "to", "start": 406, "end": 408, "id": 73, "annotation": null}, {"text": "increased", "start": 409, "end": 418, "id": 74, "annotation": null}, {"text": "crystallinity", "start": 419, "end": 432, "id": 75, "annotation": null}, {"text": "and", "start": 433, "end": 436, "id": 76, "annotation": null}, {"text": "bandgap", "start": 437, "end": 444, "id": 77, "annotation": null}, {"text": ".", "start": 445, "end": 446, "id": 78, "annotation": null}], [{"text": "Furthermore", "start": 447, "end": 458, "id": 79, "annotation": null}, {"text": ",", "start": 459, "end": 460, "id": 80, "annotation": null}, {"text": "we", "start": 461, "end": 463, "id": 81, "annotation": null}, {"text": "found", "start": 464, "end": 469, "id": 82, "annotation": null}, {"text": "that", "start": 470, "end": 474, "id": 83, "annotation": null}, {"text": "Mg", "start": 475, "end": 477, "id": 84, "annotation": null}, {"text": "alloying", "start": 478, "end": 486, "id": 85, "annotation": null}, {"text": "inverted", "start": 487, "end": 495, "id": 86, "annotation": null}, {"text": "the", "start": 496, "end": 499, "id": 87, "annotation": null}, {"text": "type", "start": 500, "end": 504, "id": 88, "annotation": null}, {"text": "of", "start": 505, "end": 507, "id": 89, "annotation": null}, {"text": "conductivity", "start": 508, "end": 520, "id": 90, "annotation": null}, {"text": "of", "start": 521, "end": 523, "id": 91, "annotation": null}, {"text": "the", "start": 524, "end": 527, "id": 92, "annotation": null}, {"text": "thin", "start": 528, "end": 532, "id": 93, "annotation": null}, {"text": "films", "start": 533, "end": 538, "id": 94, "annotation": null}, {"text": ":", "start": 539, "end": 540, "id": 95, "annotation": null}, {"text": "pure", "start": 541, "end": 545, "id": 96, "annotation": null}, {"text": "hematite", "start": 546, "end": 554, "id": 97, "annotation": null}, {"text": "thin", "start": 555, "end": 559, "id": 98, "annotation": null}, {"text": "films", "start": 560, "end": 565, "id": 99, "annotation": null}, {"text": "exhibited", "start": 566, "end": 575, "id": 100, "annotation": null}, {"text": "n", "start": 576, "end": 577, "id": 101, "annotation": null}, {"text": "-", "start": 578, "end": 579, "id": 102, "annotation": null}, {"text": "type", "start": 580, "end": 584, "id": 103, "annotation": null}, {"text": "conductivity", "start": 585, "end": 597, "id": 104, "annotation": null}, {"text": ",", "start": 598, "end": 599, "id": 105, "annotation": null}, {"text": "whereas", "start": 600, "end": 607, "id": 106, "annotation": null}, {"text": "Mg", "start": 608, "end": 610, "id": 107, "annotation": null}, {"text": "-", "start": 611, "end": 612, "id": 108, "annotation": null}, {"text": "alloyed", "start": 613, "end": 620, "id": 109, "annotation": null}, {"text": "hematite", "start": 621, "end": 629, "id": 110, "annotation": null}, {"text": "thin", "start": 630, "end": 634, "id": 111, "annotation": null}, {"text": "films", "start": 635, "end": 640, "id": 112, "annotation": null}, {"text": "exhibited", "start": 641, "end": 650, "id": 113, "annotation": null}, {"text": "p", "start": 651, "end": 652, "id": 114, "annotation": null}, {"text": "-", "start": 653, "end": 654, "id": 115, "annotation": null}, {"text": "type", "start": 655, "end": 659, "id": 116, "annotation": null}, {"text": "conductivity", "start": 660, "end": 672, "id": 117, "annotation": null}, {"text": ".", "start": 673, "end": 674, "id": 118, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "Newly developed high-light-yield inorganic scintillators coupled to waveshifting optical fibers provide the capability of efficient X-ray detection and millimeter scale position resolution suitable for high-energy cosmic ray instruments, hard X-ray/gamma ray astronomy telescopes and applications to national security. The CASTER design for NASA's proposed Black Hole Finder Probe mission, in particular, calls for a 6\u20138m2 hard X-ray coded aperture imaging telescope operating in the 20\u2013600keV energy band, putting significant constraints on cost and readout complexity. The development of new inorganic scintillator materials (e.g., cerium-doped LaBr3 and LaCl3) provides improved energy resolution and timing performance that is well suited to the requirements for national security and astrophysics applications. LaBr3 or LaCl3 detector arrays coupled with waveshifting fiber optic readout represent a significant advance in the performance capabilities of scintillator-based gamma cameras and provide the potential for a feasible approach to affordable, large area, extremely sensitive detectors. We describe some of the applications and present laboratory test results demonstrating the expected scintillator performance.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Newly", "start": 0, "end": 5, "annotation": null}, {"text": "developed", "start": 6, "end": 15, "annotation": null}, {"text": "high", "start": 16, "end": 20, "annotation": null}, {"text": "-", "start": 20, "end": 21, "annotation": null}, {"text": "light", "start": 21, "end": 26, "annotation": null}, {"text": "-", "start": 26, "end": 27, "annotation": null}, {"text": "yield", "start": 27, "end": 32, "annotation": null}, {"text": "inorganic", "start": 33, "end": 42, "annotation": null}, {"text": "scintillators", "start": 43, "end": 56, "annotation": null}, {"text": "coupled", "start": 57, "end": 64, "annotation": null}, {"text": "to", "start": 65, "end": 67, "annotation": null}, {"text": "waveshifting", "start": 68, "end": 80, "annotation": null}, {"text": "optical", "start": 81, "end": 88, "annotation": null}, {"text": "fibers", "start": 89, "end": 95, "annotation": null}, {"text": "provide", "start": 96, "end": 103, "annotation": null}, {"text": "the", "start": 104, "end": 107, "annotation": null}, {"text": "capability", "start": 108, "end": 118, "annotation": null}, {"text": "of", "start": 119, "end": 121, "annotation": null}, {"text": "efficient", "start": 122, "end": 131, "annotation": null}, {"text": "X-ray", "start": 132, "end": 137, "annotation": null}, {"text": "detection", "start": 138, "end": 147, "annotation": null}, {"text": "and", "start": 148, "end": 151, "annotation": null}, {"text": "millimeter", "start": 152, "end": 162, "annotation": null}, {"text": "scale", "start": 163, "end": 168, "annotation": null}, {"text": "position", "start": 169, "end": 177, "annotation": null}, {"text": "resolution", "start": 178, "end": 188, "annotation": null}, {"text": "suitable", "start": 189, "end": 197, "annotation": null}, {"text": "for", "start": 198, "end": 201, "annotation": null}, {"text": "high", "start": 202, "end": 206, "annotation": null}, {"text": "-", "start": 206, "end": 207, "annotation": null}, {"text": "energy", "start": 207, "end": 213, "annotation": null}, {"text": "cosmic", "start": 214, "end": 220, "annotation": null}, {"text": "ray", "start": 221, "end": 224, "annotation": null}, {"text": "instruments", "start": 225, "end": 236, "annotation": null}, {"text": ",", "start": 236, "end": 237, "annotation": null}, {"text": "hard", "start": 238, "end": 242, "annotation": null}, {"text": "X-ray", "start": 243, "end": 248, "annotation": null}, {"text": "/", "start": 248, "end": 249, "annotation": null}, {"text": "gamma", "start": 249, "end": 254, "annotation": null}, {"text": "ray", "start": 255, "end": 258, "annotation": null}, {"text": "astronomy", "start": 259, "end": 268, "annotation": null}, {"text": "telescopes", "start": 269, "end": 279, "annotation": null}, {"text": "and", "start": 280, "end": 283, "annotation": null}, {"text": "applications", "start": 284, "end": 296, "annotation": null}, {"text": "to", "start": 297, "end": 299, "annotation": null}, {"text": "national", "start": 300, "end": 308, "annotation": null}, {"text": "security", "start": 309, "end": 317, "annotation": null}, {"text": ".", "start": 317, "end": 318, "annotation": null}], [{"text": "The", "start": 319, "end": 322, "annotation": null}, {"text": "CASTER", "start": 323, "end": 329, "annotation": null}, {"text": "design", "start": 330, "end": 336, "annotation": null}, {"text": "for", "start": 337, "end": 340, "annotation": null}, {"text": "NASA", "start": 341, "end": 345, "annotation": null}, {"text": "'s", "start": 345, "end": 347, "annotation": null}, {"text": "proposed", "start": 348, "end": 356, "annotation": null}, {"text": "Black", "start": 357, "end": 362, "annotation": null}, {"text": "Hole", "start": 363, "end": 367, "annotation": null}, {"text": "Finder", "start": 368, "end": 374, "annotation": null}, {"text": "Probe", "start": 375, "end": 380, "annotation": null}, {"text": "mission", "start": 381, "end": 388, "annotation": null}, {"text": ",", "start": 388, "end": 389, "annotation": null}, {"text": "in", "start": 390, "end": 392, "annotation": null}, {"text": "particular", "start": 393, "end": 403, "annotation": null}, {"text": ",", "start": 403, "end": 404, "annotation": null}, {"text": "calls", "start": 405, "end": 410, "annotation": null}, {"text": "for", "start": 411, "end": 414, "annotation": null}, {"text": "a", "start": 415, "end": 416, "annotation": null}, {"text": "6", "start": 417, "end": 418, "annotation": null}, {"text": "\u2013", "start": 418, "end": 419, "annotation": null}, {"text": "8m2", "start": 419, "end": 422, "annotation": null}, {"text": "hard", "start": 423, "end": 427, "annotation": null}, {"text": "X-ray", "start": 428, "end": 433, "annotation": null}, {"text": "coded", "start": 434, "end": 439, "annotation": null}, {"text": "aperture", "start": 440, "end": 448, "annotation": null}, {"text": "imaging", "start": 449, "end": 456, "annotation": null}, {"text": "telescope", "start": 457, "end": 466, "annotation": null}, {"text": "operating", "start": 467, "end": 476, "annotation": null}, {"text": "in", "start": 477, "end": 479, "annotation": null}, {"text": "the", "start": 480, "end": 483, "annotation": null}, {"text": "20", "start": 484, "end": 486, "annotation": null}, {"text": "\u2013", "start": 486, "end": 487, "annotation": null}, {"text": "600keV", "start": 487, "end": 493, "annotation": null}, {"text": "energy", "start": 494, "end": 500, "annotation": null}, {"text": "band", "start": 501, "end": 505, "annotation": null}, {"text": ",", "start": 505, "end": 506, "annotation": null}, {"text": "putting", "start": 507, "end": 514, "annotation": null}, {"text": "significant", "start": 515, "end": 526, "annotation": null}, {"text": "constraints", "start": 527, "end": 538, "annotation": null}, {"text": "on", "start": 539, "end": 541, "annotation": null}, {"text": "cost", "start": 542, "end": 546, "annotation": null}, {"text": "and", "start": 547, "end": 550, "annotation": null}, {"text": "readout", "start": 551, "end": 558, "annotation": null}, {"text": "complexity", "start": 559, "end": 569, "annotation": null}, {"text": ".", "start": 569, "end": 570, "annotation": null}], [{"text": "The", "start": 571, "end": 574, "annotation": null}, {"text": "development", "start": 575, "end": 586, "annotation": null}, {"text": "of", "start": 587, "end": 589, "annotation": null}, {"text": "new", "start": 590, "end": 593, "annotation": null}, {"text": "inorganic", "start": 594, "end": 603, "annotation": null}, {"text": "scintillator", "start": 604, "end": 616, "annotation": null}, {"text": "materials", "start": 617, "end": 626, "annotation": null}, {"text": "(", "start": 627, "end": 628, "annotation": null}, {"text": "e.g.", "start": 628, "end": 632, "annotation": null}, {"text": ",", "start": 632, "end": 633, "annotation": null}, {"text": "cerium", "start": 634, "end": 640, "annotation": "DOPANT"}, {"text": "-", "start": 640, "end": 641, "annotation": null}, {"text": "doped", "start": 641, "end": 646, "annotation": null}, {"text": "LaBr3", "start": 647, "end": 652, "annotation": "BASEMAT"}, {"text": "and", "start": 653, "end": 656, "annotation": null}, {"text": "LaCl3", "start": 657, "end": 662, "annotation": "BASEMAT"}, {"text": ")", "start": 662, "end": 663, "annotation": null}, {"text": "provides", "start": 664, "end": 672, "annotation": null}, {"text": "improved", "start": 673, "end": 681, "annotation": null}, {"text": "energy", "start": 682, "end": 688, "annotation": null}, {"text": "resolution", "start": 689, "end": 699, "annotation": null}, {"text": "and", "start": 700, "end": 703, "annotation": null}, {"text": "timing", "start": 704, "end": 710, "annotation": null}, {"text": "performance", "start": 711, "end": 722, "annotation": null}, {"text": "that", "start": 723, "end": 727, "annotation": null}, {"text": "is", "start": 728, "end": 730, "annotation": null}, {"text": "well", "start": 731, "end": 735, "annotation": null}, {"text": "suited", "start": 736, "end": 742, "annotation": null}, {"text": "to", "start": 743, "end": 745, "annotation": null}, {"text": "the", "start": 746, "end": 749, "annotation": null}, {"text": "requirements", "start": 750, "end": 762, "annotation": null}, {"text": "for", "start": 763, "end": 766, "annotation": null}, {"text": "national", "start": 767, "end": 775, "annotation": null}, {"text": "security", "start": 776, "end": 784, "annotation": null}, {"text": "and", "start": 785, "end": 788, "annotation": null}, {"text": "astrophysics", "start": 789, "end": 801, "annotation": null}, {"text": "applications", "start": 802, "end": 814, "annotation": null}, {"text": ".", "start": 814, "end": 815, "annotation": null}], [{"text": "LaBr3", "start": 816, "end": 821, "annotation": null}, {"text": "or", "start": 822, "end": 824, "annotation": null}, {"text": "LaCl3", "start": 825, "end": 830, "annotation": null}, {"text": "detector", "start": 831, "end": 839, "annotation": null}, {"text": "arrays", "start": 840, "end": 846, "annotation": null}, {"text": "coupled", "start": 847, "end": 854, "annotation": null}, {"text": "with", "start": 855, "end": 859, "annotation": null}, {"text": "waveshifting", "start": 860, "end": 872, "annotation": null}, {"text": "fiber", "start": 873, "end": 878, "annotation": null}, {"text": "optic", "start": 879, "end": 884, "annotation": null}, {"text": "readout", "start": 885, "end": 892, "annotation": null}, {"text": "represent", "start": 893, "end": 902, "annotation": null}, {"text": "a", "start": 903, "end": 904, "annotation": null}, {"text": "significant", "start": 905, "end": 916, "annotation": null}, {"text": "advance", "start": 917, "end": 924, "annotation": null}, {"text": "in", "start": 925, "end": 927, "annotation": null}, {"text": "the", "start": 928, "end": 931, "annotation": null}, {"text": "performance", "start": 932, "end": 943, "annotation": null}, {"text": "capabilities", "start": 944, "end": 956, "annotation": null}, {"text": "of", "start": 957, "end": 959, "annotation": null}, {"text": "scintillator", "start": 960, "end": 972, "annotation": null}, {"text": "-", "start": 972, "end": 973, "annotation": null}, {"text": "based", "start": 973, "end": 978, "annotation": null}, {"text": "gamma", "start": 979, "end": 984, "annotation": null}, {"text": "cameras", "start": 985, "end": 992, "annotation": null}, {"text": "and", "start": 993, "end": 996, "annotation": null}, {"text": "provide", "start": 997, "end": 1004, "annotation": null}, {"text": "the", "start": 1005, "end": 1008, "annotation": null}, {"text": "potential", "start": 1009, "end": 1018, "annotation": null}, {"text": "for", "start": 1019, "end": 1022, "annotation": null}, {"text": "a", "start": 1023, "end": 1024, "annotation": null}, {"text": "feasible", "start": 1025, "end": 1033, "annotation": null}, {"text": "approach", "start": 1034, "end": 1042, "annotation": null}, {"text": "to", "start": 1043, "end": 1045, "annotation": null}, {"text": "affordable", "start": 1046, "end": 1056, "annotation": null}, {"text": ",", "start": 1056, "end": 1057, "annotation": null}, {"text": "large", "start": 1058, "end": 1063, "annotation": null}, {"text": "area", "start": 1064, "end": 1068, "annotation": null}, {"text": ",", "start": 1068, "end": 1069, "annotation": null}, {"text": "extremely", "start": 1070, "end": 1079, "annotation": null}, {"text": "sensitive", "start": 1080, "end": 1089, "annotation": null}, {"text": "detectors", "start": 1090, "end": 1099, "annotation": null}, {"text": ".", "start": 1099, "end": 1100, "annotation": null}], [{"text": "We", "start": 1101, "end": 1103, "annotation": null}, {"text": "describe", "start": 1104, "end": 1112, "annotation": null}, {"text": "some", "start": 1113, "end": 1117, "annotation": null}, {"text": "of", "start": 1118, "end": 1120, "annotation": null}, {"text": "the", "start": 1121, "end": 1124, "annotation": null}, {"text": "applications", "start": 1125, "end": 1137, "annotation": null}, {"text": "and", "start": 1138, "end": 1141, "annotation": null}, {"text": "present", "start": 1142, "end": 1149, "annotation": null}, {"text": "laboratory", "start": 1150, "end": 1160, "annotation": null}, {"text": "test", "start": 1161, "end": 1165, "annotation": null}, {"text": "results", "start": 1166, "end": 1173, "annotation": null}, {"text": "demonstrating", "start": 1174, "end": 1187, "annotation": null}, {"text": "the", "start": 1188, "end": 1191, "annotation": null}, {"text": "expected", "start": 1192, "end": 1200, "annotation": null}, {"text": "scintillator", "start": 1201, "end": 1213, "annotation": null}, {"text": "performance", "start": 1214, "end": 1225, "annotation": null}, {"text": ".", "start": 1225, "end": 1226, "annotation": null}]]} +{"remark": "doping_annt2", "text": "Newly developed high-light-yield inorganic scintillators coupled to waveshifting optical fibers provide the capability of efficient X-ray detection and millimeter scale position resolution suitable for high-energy cosmic ray instruments, hard X-ray/gamma ray astronomy telescopes and applications to national security. The CASTER design for NASA's proposed Black Hole Finder Probe mission, in particular, calls for a 6\u20138m2 hard X-ray coded aperture imaging telescope operating in the 20\u2013600keV energy band, putting significant constraints on cost and readout complexity. The development of new inorganic scintillator materials (e.g., cerium-doped LaBr3 and LaCl3) provides improved energy resolution and timing performance that is well suited to the requirements for national security and astrophysics applications. LaBr3 or LaCl3 detector arrays coupled with waveshifting fiber optic readout represent a significant advance in the performance capabilities of scintillator-based gamma cameras and provide the potential for a feasible approach to affordable, large area, extremely sensitive detectors. We describe some of the applications and present laboratory test results demonstrating the expected scintillator performance.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Newly", "start": 0, "end": 5, "annotation": null}, {"text": "developed", "start": 6, "end": 15, "annotation": null}, {"text": "high", "start": 16, "end": 20, "annotation": null}, {"text": "-", "start": 20, "end": 21, "annotation": null}, {"text": "light", "start": 21, "end": 26, "annotation": null}, {"text": "-", "start": 26, "end": 27, "annotation": null}, {"text": "yield", "start": 27, "end": 32, "annotation": null}, {"text": "inorganic", "start": 33, "end": 42, "annotation": null}, {"text": "scintillators", "start": 43, "end": 56, "annotation": null}, {"text": "coupled", "start": 57, "end": 64, "annotation": null}, {"text": "to", "start": 65, "end": 67, "annotation": null}, {"text": "waveshifting", "start": 68, "end": 80, "annotation": null}, {"text": "optical", "start": 81, "end": 88, "annotation": null}, {"text": "fibers", "start": 89, "end": 95, "annotation": null}, {"text": "provide", "start": 96, "end": 103, "annotation": null}, {"text": "the", "start": 104, "end": 107, "annotation": null}, {"text": "capability", "start": 108, "end": 118, "annotation": null}, {"text": "of", "start": 119, "end": 121, "annotation": null}, {"text": "efficient", "start": 122, "end": 131, "annotation": null}, {"text": "X-ray", "start": 132, "end": 137, "annotation": null}, {"text": "detection", "start": 138, "end": 147, "annotation": null}, {"text": "and", "start": 148, "end": 151, "annotation": null}, {"text": "millimeter", "start": 152, "end": 162, "annotation": null}, {"text": "scale", "start": 163, "end": 168, "annotation": null}, {"text": "position", "start": 169, "end": 177, "annotation": null}, {"text": "resolution", "start": 178, "end": 188, "annotation": null}, {"text": "suitable", "start": 189, "end": 197, "annotation": null}, {"text": "for", "start": 198, "end": 201, "annotation": null}, {"text": "high", "start": 202, "end": 206, "annotation": null}, {"text": "-", "start": 206, "end": 207, "annotation": null}, {"text": "energy", "start": 207, "end": 213, "annotation": null}, {"text": "cosmic", "start": 214, "end": 220, "annotation": null}, {"text": "ray", "start": 221, "end": 224, "annotation": null}, {"text": "instruments", "start": 225, "end": 236, "annotation": null}, {"text": ",", "start": 236, "end": 237, "annotation": null}, {"text": "hard", "start": 238, "end": 242, "annotation": null}, {"text": "X-ray", "start": 243, "end": 248, "annotation": null}, {"text": "/", "start": 248, "end": 249, "annotation": null}, {"text": "gamma", "start": 249, "end": 254, "annotation": null}, {"text": "ray", "start": 255, "end": 258, "annotation": null}, {"text": "astronomy", "start": 259, "end": 268, "annotation": null}, {"text": "telescopes", "start": 269, "end": 279, "annotation": null}, {"text": "and", "start": 280, "end": 283, "annotation": null}, {"text": "applications", "start": 284, "end": 296, "annotation": null}, {"text": "to", "start": 297, "end": 299, "annotation": null}, {"text": "national", "start": 300, "end": 308, "annotation": null}, {"text": "security", "start": 309, "end": 317, "annotation": null}, {"text": ".", "start": 317, "end": 318, "annotation": null}], [{"text": "The", "start": 319, "end": 322, "annotation": null}, {"text": "CASTER", "start": 323, "end": 329, "annotation": null}, {"text": "design", "start": 330, "end": 336, "annotation": null}, {"text": "for", "start": 337, "end": 340, "annotation": null}, {"text": "NASA", "start": 341, "end": 345, "annotation": null}, {"text": "'s", "start": 345, "end": 347, "annotation": null}, {"text": "proposed", "start": 348, "end": 356, "annotation": null}, {"text": "Black", "start": 357, "end": 362, "annotation": null}, {"text": "Hole", "start": 363, "end": 367, "annotation": null}, {"text": "Finder", "start": 368, "end": 374, "annotation": null}, {"text": "Probe", "start": 375, "end": 380, "annotation": null}, {"text": "mission", "start": 381, "end": 388, "annotation": null}, {"text": ",", "start": 388, "end": 389, "annotation": null}, {"text": "in", "start": 390, "end": 392, "annotation": null}, {"text": "particular", "start": 393, "end": 403, "annotation": null}, {"text": ",", "start": 403, "end": 404, "annotation": null}, {"text": "calls", "start": 405, "end": 410, "annotation": null}, {"text": "for", "start": 411, "end": 414, "annotation": null}, {"text": "a", "start": 415, "end": 416, "annotation": null}, {"text": "6", "start": 417, "end": 418, "annotation": null}, {"text": "\u2013", "start": 418, "end": 419, "annotation": null}, {"text": "8m2", "start": 419, "end": 422, "annotation": null}, {"text": "hard", "start": 423, "end": 427, "annotation": null}, {"text": "X-ray", "start": 428, "end": 433, "annotation": null}, {"text": "coded", "start": 434, "end": 439, "annotation": null}, {"text": "aperture", "start": 440, "end": 448, "annotation": null}, {"text": "imaging", "start": 449, "end": 456, "annotation": null}, {"text": "telescope", "start": 457, "end": 466, "annotation": null}, {"text": "operating", "start": 467, "end": 476, "annotation": null}, {"text": "in", "start": 477, "end": 479, "annotation": null}, {"text": "the", "start": 480, "end": 483, "annotation": null}, {"text": "20", "start": 484, "end": 486, "annotation": null}, {"text": "\u2013", "start": 486, "end": 487, "annotation": null}, {"text": "600keV", "start": 487, "end": 493, "annotation": null}, {"text": "energy", "start": 494, "end": 500, "annotation": null}, {"text": "band", "start": 501, "end": 505, "annotation": null}, {"text": ",", "start": 505, "end": 506, "annotation": null}, {"text": "putting", "start": 507, "end": 514, "annotation": null}, {"text": "significant", "start": 515, "end": 526, "annotation": null}, {"text": "constraints", "start": 527, "end": 538, "annotation": null}, {"text": "on", "start": 539, "end": 541, "annotation": null}, {"text": "cost", "start": 542, "end": 546, "annotation": null}, {"text": "and", "start": 547, "end": 550, "annotation": null}, {"text": "readout", "start": 551, "end": 558, "annotation": null}, {"text": "complexity", "start": 559, "end": 569, "annotation": null}, {"text": ".", "start": 569, "end": 570, "annotation": null}], [{"text": "The", "start": 571, "end": 574, "annotation": null}, {"text": "development", "start": 575, "end": 586, "annotation": null}, {"text": "of", "start": 587, "end": 589, "annotation": null}, {"text": "new", "start": 590, "end": 593, "annotation": null}, {"text": "inorganic", "start": 594, "end": 603, "annotation": null}, {"text": "scintillator", "start": 604, "end": 616, "annotation": null}, {"text": "materials", "start": 617, "end": 626, "annotation": null}, {"text": "(", "start": 627, "end": 628, "annotation": null}, {"text": "e.g.", "start": 628, "end": 632, "annotation": null}, {"text": ",", "start": 632, "end": 633, "annotation": null}, {"text": "cerium", "start": 634, "end": 640, "annotation": "DOPANT"}, {"text": "-", "start": 640, "end": 641, "annotation": null}, {"text": "doped", "start": 641, "end": 646, "annotation": null}, {"text": "LaBr3", "start": 647, "end": 652, "annotation": "BASEMAT"}, {"text": "and", "start": 653, "end": 656, "annotation": null}, {"text": "LaCl3", "start": 657, "end": 662, "annotation": "BASEMAT"}, {"text": ")", "start": 662, "end": 663, "annotation": null}, {"text": "provides", "start": 664, "end": 672, "annotation": null}, {"text": "improved", "start": 673, "end": 681, "annotation": null}, {"text": "energy", "start": 682, "end": 688, "annotation": null}, {"text": "resolution", "start": 689, "end": 699, "annotation": null}, {"text": "and", "start": 700, "end": 703, "annotation": null}, {"text": "timing", "start": 704, "end": 710, "annotation": null}, {"text": "performance", "start": 711, "end": 722, "annotation": null}, {"text": "that", "start": 723, "end": 727, "annotation": null}, {"text": "is", "start": 728, "end": 730, "annotation": null}, {"text": "well", "start": 731, "end": 735, "annotation": null}, {"text": "suited", "start": 736, "end": 742, "annotation": null}, {"text": "to", "start": 743, "end": 745, "annotation": null}, {"text": "the", "start": 746, "end": 749, "annotation": null}, {"text": "requirements", "start": 750, "end": 762, "annotation": null}, {"text": "for", "start": 763, "end": 766, "annotation": null}, {"text": "national", "start": 767, "end": 775, "annotation": null}, {"text": "security", "start": 776, "end": 784, "annotation": null}, {"text": "and", "start": 785, "end": 788, "annotation": null}, {"text": "astrophysics", "start": 789, "end": 801, "annotation": null}, {"text": "applications", "start": 802, "end": 814, "annotation": null}, {"text": ".", "start": 814, "end": 815, "annotation": null}], [{"text": "LaBr3", "start": 816, "end": 821, "annotation": null}, {"text": "or", "start": 822, "end": 824, "annotation": null}, {"text": "LaCl3", "start": 825, "end": 830, "annotation": null}, {"text": "detector", "start": 831, "end": 839, "annotation": null}, {"text": "arrays", "start": 840, "end": 846, "annotation": null}, {"text": "coupled", "start": 847, "end": 854, "annotation": null}, {"text": "with", "start": 855, "end": 859, "annotation": null}, {"text": "waveshifting", "start": 860, "end": 872, "annotation": null}, {"text": "fiber", "start": 873, "end": 878, "annotation": null}, {"text": "optic", "start": 879, "end": 884, "annotation": null}, {"text": "readout", "start": 885, "end": 892, "annotation": null}, {"text": "represent", "start": 893, "end": 902, "annotation": null}, {"text": "a", "start": 903, "end": 904, "annotation": null}, {"text": "significant", "start": 905, "end": 916, "annotation": null}, {"text": "advance", "start": 917, "end": 924, "annotation": null}, {"text": "in", "start": 925, "end": 927, "annotation": null}, {"text": "the", "start": 928, "end": 931, "annotation": null}, {"text": "performance", "start": 932, "end": 943, "annotation": null}, {"text": "capabilities", "start": 944, "end": 956, "annotation": null}, {"text": "of", "start": 957, "end": 959, "annotation": null}, {"text": "scintillator", "start": 960, "end": 972, "annotation": null}, {"text": "-", "start": 972, "end": 973, "annotation": null}, {"text": "based", "start": 973, "end": 978, "annotation": null}, {"text": "gamma", "start": 979, "end": 984, "annotation": null}, {"text": "cameras", "start": 985, "end": 992, "annotation": null}, {"text": "and", "start": 993, "end": 996, "annotation": null}, {"text": "provide", "start": 997, "end": 1004, "annotation": null}, {"text": "the", "start": 1005, "end": 1008, "annotation": null}, {"text": "potential", "start": 1009, "end": 1018, "annotation": null}, {"text": "for", "start": 1019, "end": 1022, "annotation": null}, {"text": "a", "start": 1023, "end": 1024, "annotation": null}, {"text": "feasible", "start": 1025, "end": 1033, "annotation": null}, {"text": "approach", "start": 1034, "end": 1042, "annotation": null}, {"text": "to", "start": 1043, "end": 1045, "annotation": null}, {"text": "affordable", "start": 1046, "end": 1056, "annotation": null}, {"text": ",", "start": 1056, "end": 1057, "annotation": null}, {"text": "large", "start": 1058, "end": 1063, "annotation": null}, {"text": "area", "start": 1064, "end": 1068, "annotation": null}, {"text": ",", "start": 1068, "end": 1069, "annotation": null}, {"text": "extremely", "start": 1070, "end": 1079, "annotation": null}, {"text": "sensitive", "start": 1080, "end": 1089, "annotation": null}, {"text": "detectors", "start": 1090, "end": 1099, "annotation": null}, {"text": ".", "start": 1099, "end": 1100, "annotation": null}], [{"text": "We", "start": 1101, "end": 1103, "annotation": null}, {"text": "describe", "start": 1104, "end": 1112, "annotation": null}, {"text": "some", "start": 1113, "end": 1117, "annotation": null}, {"text": "of", "start": 1118, "end": 1120, "annotation": null}, {"text": "the", "start": 1121, "end": 1124, "annotation": null}, {"text": "applications", "start": 1125, "end": 1137, "annotation": null}, {"text": "and", "start": 1138, "end": 1141, "annotation": null}, {"text": "present", "start": 1142, "end": 1149, "annotation": null}, {"text": "laboratory", "start": 1150, "end": 1160, "annotation": null}, {"text": "test", "start": 1161, "end": 1165, "annotation": null}, {"text": "results", "start": 1166, "end": 1173, "annotation": null}, {"text": "demonstrating", "start": 1174, "end": 1187, "annotation": null}, {"text": "the", "start": 1188, "end": 1191, "annotation": null}, {"text": "expected", "start": 1192, "end": 1200, "annotation": null}, {"text": "scintillator", "start": 1201, "end": 1213, "annotation": null}, {"text": "performance", "start": 1214, "end": 1225, "annotation": null}, {"text": ".", "start": 1225, "end": 1226, "annotation": null}]], "meta": {"doi": "10.1016/j.nima.2006.02.191"}} {"text": "Composite electrolytes composed of Sm3+ and Nd3+ co-doped ceria (SNDC) and binary carbonates (Li2CO3\u2013Na2CO3) were investigated with respect to their microstructure, morphology and electrical conductivity. As a function of temperature, the electrical conductivity of the composite electrolytes was measured in air. The addition of (Li/Na)2CO3 to SNDC enhanced the high temperature conductivity. The conductivity also rose sharply around the intenerating and melting point of carbonates. The best performance of 0.01S/cm at 481\u00b0C was achieved for the composite electrolyte containing 20wt.% carbonates. It is also estimated that the reason for the conductivity enhancement of SNDC is that the number of oxygen transfer routes increases at the interface between SNDC and (Li/Na)2CO3.", "meta": {"doi": "10.1016/j.compscitech.2009.10.006"}, "_input_hash": -1280239818, "_task_hash": 621755562, "tokens": [[{"text": "Composite", "start": 0, "end": 9, "id": 0, "annotation": null}, {"text": "electrolytes", "start": 10, "end": 22, "id": 1, "annotation": null}, {"text": "composed", "start": 23, "end": 31, "id": 2, "annotation": null}, {"text": "of", "start": 32, "end": 34, "id": 3, "annotation": null}, {"text": "Sm3", "start": 35, "end": 38, "id": 4, "annotation": "DOPANT"}, {"text": "+", "start": 39, "end": 40, "id": 5, "annotation": "DOPANT"}, {"text": "and", "start": 41, "end": 44, "id": 6, "annotation": null}, {"text": "Nd3", "start": 45, "end": 48, "id": 7, "annotation": "DOPANT"}, {"text": "+", "start": 49, "end": 50, "id": 8, "annotation": "DOPANT"}, {"text": "co", "start": 51, "end": 53, "id": 9, "annotation": null}, {"text": "-", "start": 54, "end": 55, "id": 10, "annotation": null}, {"text": "doped", "start": 56, "end": 61, "id": 11, "annotation": null}, {"text": "ceria", "start": 62, "end": 67, "id": 12, "annotation": "BASEMAT"}, {"text": "(", "start": 68, "end": 69, "id": 13, "annotation": null}, {"text": "SNDC", "start": 70, "end": 74, "id": 14, "annotation": null}, {"text": ")", "start": 75, "end": 76, "id": 15, "annotation": null}, {"text": "and", "start": 77, "end": 80, "id": 16, "annotation": null}, {"text": "binary", "start": 81, "end": 87, "id": 17, "annotation": null}, {"text": "carbonates", "start": 88, "end": 98, "id": 18, "annotation": null}, {"text": "(", "start": 99, "end": 100, "id": 19, "annotation": null}, {"text": "Li2CO3\u2013Na2CO3", "start": 101, "end": 114, "id": 20, "annotation": null}, {"text": ")", "start": 115, "end": 116, "id": 21, "annotation": null}, {"text": "were", "start": 117, "end": 121, "id": 22, "annotation": null}, {"text": "investigated", "start": 122, "end": 134, "id": 23, "annotation": null}, {"text": "with", "start": 135, "end": 139, "id": 24, "annotation": null}, {"text": "respect", "start": 140, "end": 147, "id": 25, "annotation": null}, {"text": "to", "start": 148, "end": 150, "id": 26, "annotation": null}, {"text": "their", "start": 151, "end": 156, "id": 27, "annotation": null}, {"text": "microstructure", "start": 157, "end": 171, "id": 28, "annotation": null}, {"text": ",", "start": 172, "end": 173, "id": 29, "annotation": null}, {"text": "morphology", "start": 174, "end": 184, "id": 30, "annotation": null}, {"text": "and", "start": 185, "end": 188, "id": 31, "annotation": null}, {"text": "electrical", "start": 189, "end": 199, "id": 32, "annotation": null}, {"text": "conductivity", "start": 200, "end": 212, "id": 33, "annotation": null}, {"text": ".", "start": 213, "end": 214, "id": 34, "annotation": null}], [{"text": "As", "start": 215, "end": 217, "id": 35, "annotation": null}, {"text": "a", "start": 218, "end": 219, "id": 36, "annotation": null}, {"text": "function", "start": 220, "end": 228, "id": 37, "annotation": null}, {"text": "of", "start": 229, "end": 231, "id": 38, "annotation": null}, {"text": "temperature", "start": 232, "end": 243, "id": 39, "annotation": null}, {"text": ",", "start": 244, "end": 245, "id": 40, "annotation": null}, {"text": "the", "start": 246, "end": 249, "id": 41, "annotation": null}, {"text": "electrical", "start": 250, "end": 260, "id": 42, "annotation": null}, {"text": "conductivity", "start": 261, "end": 273, "id": 43, "annotation": null}, {"text": "of", "start": 274, "end": 276, "id": 44, "annotation": null}, {"text": "the", "start": 277, "end": 280, "id": 45, "annotation": null}, {"text": "composite", "start": 281, "end": 290, "id": 46, "annotation": null}, {"text": "electrolytes", "start": 291, "end": 303, "id": 47, "annotation": null}, {"text": "was", "start": 304, "end": 307, "id": 48, "annotation": null}, {"text": "measured", "start": 308, "end": 316, "id": 49, "annotation": null}, {"text": "in", "start": 317, "end": 319, "id": 50, "annotation": null}, {"text": "air", "start": 320, "end": 323, "id": 51, "annotation": null}, {"text": ".", "start": 324, "end": 325, "id": 52, "annotation": null}], [{"text": "The", "start": 326, "end": 329, "id": 53, "annotation": null}, {"text": "addition", "start": 330, "end": 338, "id": 54, "annotation": null}, {"text": "of", "start": 339, "end": 341, "id": 55, "annotation": null}, {"text": "(", "start": 342, "end": 343, "id": 56, "annotation": null}, {"text": "Li", "start": 344, "end": 346, "id": 57, "annotation": null}, {"text": "/", "start": 347, "end": 348, "id": 58, "annotation": null}, {"text": "Na)2CO3", "start": 349, "end": 356, "id": 59, "annotation": null}, {"text": "to", "start": 357, "end": 359, "id": 60, "annotation": null}, {"text": "SNDC", "start": 360, "end": 364, "id": 61, "annotation": null}, {"text": "enhanced", "start": 365, "end": 373, "id": 62, "annotation": null}, {"text": "the", "start": 374, "end": 377, "id": 63, "annotation": null}, {"text": "high", "start": 378, "end": 382, "id": 64, "annotation": null}, {"text": "temperature", "start": 383, "end": 394, "id": 65, "annotation": null}, {"text": "conductivity", "start": 395, "end": 407, "id": 66, "annotation": null}, {"text": ".", "start": 408, "end": 409, "id": 67, "annotation": null}], [{"text": "The", "start": 410, "end": 413, "id": 68, "annotation": null}, {"text": "conductivity", "start": 414, "end": 426, "id": 69, "annotation": null}, {"text": "also", "start": 427, "end": 431, "id": 70, "annotation": null}, {"text": "rose", "start": 432, "end": 436, "id": 71, "annotation": null}, {"text": "sharply", "start": 437, "end": 444, "id": 72, "annotation": null}, {"text": "around", "start": 445, "end": 451, "id": 73, "annotation": null}, {"text": "the", "start": 452, "end": 455, "id": 74, "annotation": null}, {"text": "intenerating", "start": 456, "end": 468, "id": 75, "annotation": null}, {"text": "and", "start": 469, "end": 472, "id": 76, "annotation": null}, {"text": "melting", "start": 473, "end": 480, "id": 77, "annotation": null}, {"text": "point", "start": 481, "end": 486, "id": 78, "annotation": null}, {"text": "of", "start": 487, "end": 489, "id": 79, "annotation": null}, {"text": "carbonates", "start": 490, "end": 500, "id": 80, "annotation": null}, {"text": ".", "start": 501, "end": 502, "id": 81, "annotation": null}], [{"text": "The", "start": 503, "end": 506, "id": 82, "annotation": null}, {"text": "best", "start": 507, "end": 511, "id": 83, "annotation": null}, {"text": "performance", "start": 512, "end": 523, "id": 84, "annotation": null}, {"text": "of", "start": 524, "end": 526, "id": 85, "annotation": null}, {"text": "0.01S", "start": 527, "end": 532, "id": 86, "annotation": null}, {"text": "/", "start": 533, "end": 534, "id": 87, "annotation": null}, {"text": "cm", "start": 535, "end": 537, "id": 88, "annotation": null}, {"text": "at", "start": 538, "end": 540, "id": 89, "annotation": null}, {"text": "481", "start": 541, "end": 544, "id": 90, "annotation": null}, {"text": "\u00b0", "start": 545, "end": 546, "id": 91, "annotation": null}, {"text": "C", "start": 547, "end": 548, "id": 92, "annotation": null}, {"text": "was", "start": 549, "end": 552, "id": 93, "annotation": null}, {"text": "achieved", "start": 553, "end": 561, "id": 94, "annotation": null}, {"text": "for", "start": 562, "end": 565, "id": 95, "annotation": null}, {"text": "the", "start": 566, "end": 569, "id": 96, "annotation": null}, {"text": "composite", "start": 570, "end": 579, "id": 97, "annotation": null}, {"text": "electrolyte", "start": 580, "end": 591, "id": 98, "annotation": null}, {"text": "containing", "start": 592, "end": 602, "id": 99, "annotation": null}, {"text": "20wt.%", "start": 603, "end": 609, "id": 100, "annotation": null}, {"text": "carbonates", "start": 610, "end": 620, "id": 101, "annotation": null}, {"text": ".", "start": 621, "end": 622, "id": 102, "annotation": null}], [{"text": "It", "start": 623, "end": 625, "id": 103, "annotation": null}, {"text": "is", "start": 626, "end": 628, "id": 104, "annotation": null}, {"text": "also", "start": 629, "end": 633, "id": 105, "annotation": null}, {"text": "estimated", "start": 634, "end": 643, "id": 106, "annotation": null}, {"text": "that", "start": 644, "end": 648, "id": 107, "annotation": null}, {"text": "the", "start": 649, "end": 652, "id": 108, "annotation": null}, {"text": "reason", "start": 653, "end": 659, "id": 109, "annotation": null}, {"text": "for", "start": 660, "end": 663, "id": 110, "annotation": null}, {"text": "the", "start": 664, "end": 667, "id": 111, "annotation": null}, {"text": "conductivity", "start": 668, "end": 680, "id": 112, "annotation": null}, {"text": "enhancement", "start": 681, "end": 692, "id": 113, "annotation": null}, {"text": "of", "start": 693, "end": 695, "id": 114, "annotation": null}, {"text": "SNDC", "start": 696, "end": 700, "id": 115, "annotation": null}, {"text": "is", "start": 701, "end": 703, "id": 116, "annotation": null}, {"text": "that", "start": 704, "end": 708, "id": 117, "annotation": null}, {"text": "the", "start": 709, "end": 712, "id": 118, "annotation": null}, {"text": "number", "start": 713, "end": 719, "id": 119, "annotation": null}, {"text": "of", "start": 720, "end": 722, "id": 120, "annotation": null}, {"text": "oxygen", "start": 723, "end": 729, "id": 121, "annotation": null}, {"text": "transfer", "start": 730, "end": 738, "id": 122, "annotation": null}, {"text": "routes", "start": 739, "end": 745, "id": 123, "annotation": null}, {"text": "increases", "start": 746, "end": 755, "id": 124, "annotation": null}, {"text": "at", "start": 756, "end": 758, "id": 125, "annotation": null}, {"text": "the", "start": 759, "end": 762, "id": 126, "annotation": null}, {"text": "interface", "start": 763, "end": 772, "id": 127, "annotation": null}, {"text": "between", "start": 773, "end": 780, "id": 128, "annotation": null}, {"text": "SNDC", "start": 781, "end": 785, "id": 129, "annotation": null}, {"text": "and", "start": 786, "end": 789, "id": 130, "annotation": null}, {"text": "(", "start": 790, "end": 791, "id": 131, "annotation": null}, {"text": "Li", "start": 792, "end": 794, "id": 132, "annotation": null}, {"text": "/", "start": 795, "end": 796, "id": 133, "annotation": null}, {"text": "Na)2CO3", "start": 797, "end": 804, "id": 134, "annotation": null}, {"text": ".", "start": 805, "end": 806, "id": 135, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "According to the intrinsic kinetics of electro-oxidation, a novel three-stage reaction theory (3SRT) involved charge transfer controlled (CTC), mixed-phase controlled (MPC) and mass transport controlled (MTC) regimes is presented to describe the oxidation of organic pollutants by using a packed-bed electrode reactor (PBER). The proposed 3SRT could be universally used for overall oxidation due to the introduction of a parameter, current utilization ratio of \u03b3 (\u223c1.0) related to anode materials. The existence of MPC regime is due to the difference of the applied current density between metallic anode and bipolar activated carbon (AC) particulate anode caused by the difference of the electrode area of the two kinds of anodes. The proposed theory was employed for prediction of chemical oxygen demand (COD) during treatment of synthetic phenolic wastewater, thiophene-2,5-dicarboxylic acid manufacturing wastewater and pyridine wastewater by using IrO2 doped tantalum oxide (IrO2-Ta2O5/Ti) anode. The regression analysis and F-test results illustrate the 3SRT satisfactorily matches the experimental data obtained at different operation conditions such as current density, initial COD values and flow rate. These results confirm the proposed 3SRT could effectively predict the change of concentration of organic pollutants during electro-oxidation by using a PBER.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "According", "start": 0, "end": 9, "annotation": null}, {"text": "to", "start": 10, "end": 12, "annotation": null}, {"text": "the", "start": 13, "end": 16, "annotation": null}, {"text": "intrinsic", "start": 17, "end": 26, "annotation": null}, {"text": "kinetics", "start": 27, "end": 35, "annotation": null}, {"text": "of", "start": 36, "end": 38, "annotation": null}, {"text": "electro-oxidation", "start": 39, "end": 56, "annotation": null}, {"text": ",", "start": 56, "end": 57, "annotation": null}, {"text": "a", "start": 58, "end": 59, "annotation": null}, {"text": "novel", "start": 60, "end": 65, "annotation": null}, {"text": "three", "start": 66, "end": 71, "annotation": null}, {"text": "-", "start": 71, "end": 72, "annotation": null}, {"text": "stage", "start": 72, "end": 77, "annotation": null}, {"text": "reaction", "start": 78, "end": 86, "annotation": null}, {"text": "theory", "start": 87, "end": 93, "annotation": null}, {"text": "(", "start": 94, "end": 95, "annotation": null}, {"text": "3SRT", "start": 95, "end": 99, "annotation": null}, {"text": ")", "start": 99, "end": 100, "annotation": null}, {"text": "involved", "start": 101, "end": 109, "annotation": null}, {"text": "charge", "start": 110, "end": 116, "annotation": null}, {"text": "transfer", "start": 117, "end": 125, "annotation": null}, {"text": "controlled", "start": 126, "end": 136, "annotation": null}, {"text": "(", "start": 137, "end": 138, "annotation": null}, {"text": "CTC", "start": 138, "end": 141, "annotation": null}, {"text": ")", "start": 141, "end": 142, "annotation": null}, {"text": ",", "start": 142, "end": 143, "annotation": null}, {"text": "mixed", "start": 144, "end": 149, "annotation": null}, {"text": "-", "start": 149, "end": 150, "annotation": null}, {"text": "phase", "start": 150, "end": 155, "annotation": null}, {"text": "controlled", "start": 156, "end": 166, "annotation": null}, {"text": "(", "start": 167, "end": 168, "annotation": null}, {"text": "MPC", "start": 168, "end": 171, "annotation": null}, {"text": ")", "start": 171, "end": 172, "annotation": null}, {"text": "and", "start": 173, "end": 176, "annotation": null}, {"text": "mass", "start": 177, "end": 181, "annotation": null}, {"text": "transport", "start": 182, "end": 191, "annotation": null}, {"text": "controlled", "start": 192, "end": 202, "annotation": null}, {"text": "(", "start": 203, "end": 204, "annotation": null}, {"text": "MTC", "start": 204, "end": 207, "annotation": null}, {"text": ")", "start": 207, "end": 208, "annotation": null}, {"text": "regimes", "start": 209, "end": 216, "annotation": null}, {"text": "is", "start": 217, "end": 219, "annotation": null}, {"text": "presented", "start": 220, "end": 229, "annotation": null}, {"text": "to", "start": 230, "end": 232, "annotation": null}, {"text": "describe", "start": 233, "end": 241, "annotation": null}, {"text": "the", "start": 242, "end": 245, "annotation": null}, {"text": "oxidation", "start": 246, "end": 255, "annotation": null}, {"text": "of", "start": 256, "end": 258, "annotation": null}, {"text": "organic", "start": 259, "end": 266, "annotation": null}, {"text": "pollutants", "start": 267, "end": 277, "annotation": null}, {"text": "by", "start": 278, "end": 280, "annotation": null}, {"text": "using", "start": 281, "end": 286, "annotation": null}, {"text": "a", "start": 287, "end": 288, "annotation": null}, {"text": "packed", "start": 289, "end": 295, "annotation": null}, {"text": "-", "start": 295, "end": 296, "annotation": null}, {"text": "bed", "start": 296, "end": 299, "annotation": null}, {"text": "electrode", "start": 300, "end": 309, "annotation": null}, {"text": "reactor", "start": 310, "end": 317, "annotation": null}, {"text": "(", "start": 318, "end": 319, "annotation": null}, {"text": "PBER", "start": 319, "end": 323, "annotation": null}, {"text": ")", "start": 323, "end": 324, "annotation": null}, {"text": ".", "start": 324, "end": 325, "annotation": null}], [{"text": "The", "start": 326, "end": 329, "annotation": null}, {"text": "proposed", "start": 330, "end": 338, "annotation": null}, {"text": "3SRT", "start": 339, "end": 343, "annotation": null}, {"text": "could", "start": 344, "end": 349, "annotation": null}, {"text": "be", "start": 350, "end": 352, "annotation": null}, {"text": "universally", "start": 353, "end": 364, "annotation": null}, {"text": "used", "start": 365, "end": 369, "annotation": null}, {"text": "for", "start": 370, "end": 373, "annotation": null}, {"text": "overall", "start": 374, "end": 381, "annotation": null}, {"text": "oxidation", "start": 382, "end": 391, "annotation": null}, {"text": "due", "start": 392, "end": 395, "annotation": null}, {"text": "to", "start": 396, "end": 398, "annotation": null}, {"text": "the", "start": 399, "end": 402, "annotation": null}, {"text": "introduction", "start": 403, "end": 415, "annotation": null}, {"text": "of", "start": 416, "end": 418, "annotation": null}, {"text": "a", "start": 419, "end": 420, "annotation": null}, {"text": "parameter", "start": 421, "end": 430, "annotation": null}, {"text": ",", "start": 430, "end": 431, "annotation": null}, {"text": "current", "start": 432, "end": 439, "annotation": null}, {"text": "utilization", "start": 440, "end": 451, "annotation": null}, {"text": "ratio", "start": 452, "end": 457, "annotation": null}, {"text": "of", "start": 458, "end": 460, "annotation": null}, {"text": "\u03b3", "start": 461, "end": 462, "annotation": null}, {"text": "(", "start": 463, "end": 464, "annotation": null}, {"text": "\u223c", "start": 464, "end": 465, "annotation": null}, {"text": "1.0", "start": 465, "end": 468, "annotation": null}, {"text": ")", "start": 468, "end": 469, "annotation": null}, {"text": "related", "start": 470, "end": 477, "annotation": null}, {"text": "to", "start": 478, "end": 480, "annotation": null}, {"text": "anode", "start": 481, "end": 486, "annotation": null}, {"text": "materials", "start": 487, "end": 496, "annotation": null}, {"text": ".", "start": 496, "end": 497, "annotation": null}], [{"text": "The", "start": 498, "end": 501, "annotation": null}, {"text": "existence", "start": 502, "end": 511, "annotation": null}, {"text": "of", "start": 512, "end": 514, "annotation": null}, {"text": "MPC", "start": 515, "end": 518, "annotation": null}, {"text": "regime", "start": 519, "end": 525, "annotation": null}, {"text": "is", "start": 526, "end": 528, "annotation": null}, {"text": "due", "start": 529, "end": 532, "annotation": null}, {"text": "to", "start": 533, "end": 535, "annotation": null}, {"text": "the", "start": 536, "end": 539, "annotation": null}, {"text": "difference", "start": 540, "end": 550, "annotation": null}, {"text": "of", "start": 551, "end": 553, "annotation": null}, {"text": "the", "start": 554, "end": 557, "annotation": null}, {"text": "applied", "start": 558, "end": 565, "annotation": null}, {"text": "current", "start": 566, "end": 573, "annotation": null}, {"text": "density", "start": 574, "end": 581, "annotation": null}, {"text": "between", "start": 582, "end": 589, "annotation": null}, {"text": "metallic", "start": 590, "end": 598, "annotation": null}, {"text": "anode", "start": 599, "end": 604, "annotation": null}, {"text": "and", "start": 605, "end": 608, "annotation": null}, {"text": "bipolar", "start": 609, "end": 616, "annotation": null}, {"text": "activated", "start": 617, "end": 626, "annotation": null}, {"text": "carbon", "start": 627, "end": 633, "annotation": null}, {"text": "(", "start": 634, "end": 635, "annotation": null}, {"text": "AC", "start": 635, "end": 637, "annotation": null}, {"text": ")", "start": 637, "end": 638, "annotation": null}, {"text": "particulate", "start": 639, "end": 650, "annotation": null}, {"text": "anode", "start": 651, "end": 656, "annotation": null}, {"text": "caused", "start": 657, "end": 663, "annotation": null}, {"text": "by", "start": 664, "end": 666, "annotation": null}, {"text": "the", "start": 667, "end": 670, "annotation": null}, {"text": "difference", "start": 671, "end": 681, "annotation": null}, {"text": "of", "start": 682, "end": 684, "annotation": null}, {"text": "the", "start": 685, "end": 688, "annotation": null}, {"text": "electrode", "start": 689, "end": 698, "annotation": null}, {"text": "area", "start": 699, "end": 703, "annotation": null}, {"text": "of", "start": 704, "end": 706, "annotation": null}, {"text": "the", "start": 707, "end": 710, "annotation": null}, {"text": "two", "start": 711, "end": 714, "annotation": null}, {"text": "kinds", "start": 715, "end": 720, "annotation": null}, {"text": "of", "start": 721, "end": 723, "annotation": null}, {"text": "anodes", "start": 724, "end": 730, "annotation": null}, {"text": ".", "start": 730, "end": 731, "annotation": null}], [{"text": "The", "start": 732, "end": 735, "annotation": null}, {"text": "proposed", "start": 736, "end": 744, "annotation": null}, {"text": "theory", "start": 745, "end": 751, "annotation": null}, {"text": "was", "start": 752, "end": 755, "annotation": null}, {"text": "employed", "start": 756, "end": 764, "annotation": null}, {"text": "for", "start": 765, "end": 768, "annotation": null}, {"text": "prediction", "start": 769, "end": 779, "annotation": null}, {"text": "of", "start": 780, "end": 782, "annotation": null}, {"text": "chemical", "start": 783, "end": 791, "annotation": null}, {"text": "oxygen", "start": 792, "end": 798, "annotation": null}, {"text": "demand", "start": 799, "end": 805, "annotation": null}, {"text": "(", "start": 806, "end": 807, "annotation": null}, {"text": "COD", "start": 807, "end": 810, "annotation": null}, {"text": ")", "start": 810, "end": 811, "annotation": null}, {"text": "during", "start": 812, "end": 818, "annotation": null}, {"text": "treatment", "start": 819, "end": 828, "annotation": null}, {"text": "of", "start": 829, "end": 831, "annotation": null}, {"text": "synthetic", "start": 832, "end": 841, "annotation": null}, {"text": "phenolic", "start": 842, "end": 850, "annotation": null}, {"text": "wastewater", "start": 851, "end": 861, "annotation": null}, {"text": ",", "start": 861, "end": 862, "annotation": null}, {"text": "thiophene-2,5-dicarboxylic", "start": 863, "end": 889, "annotation": null}, {"text": "acid", "start": 890, "end": 894, "annotation": null}, {"text": "manufacturing", "start": 895, "end": 908, "annotation": null}, {"text": "wastewater", "start": 909, "end": 919, "annotation": null}, {"text": "and", "start": 920, "end": 923, "annotation": null}, {"text": "pyridine", "start": 924, "end": 932, "annotation": null}, {"text": "wastewater", "start": 933, "end": 943, "annotation": null}, {"text": "by", "start": 944, "end": 946, "annotation": null}, {"text": "using", "start": 947, "end": 952, "annotation": null}, {"text": "IrO2", "start": 953, "end": 957, "annotation": "DOPANT"}, {"text": "doped", "start": 958, "end": 963, "annotation": null}, {"text": "tantalum", "start": 964, "end": 972, "annotation": "BASEMAT"}, {"text": "oxide", "start": 973, "end": 978, "annotation": "BASEMAT"}, {"text": "(", "start": 979, "end": 980, "annotation": null}, {"text": "IrO2-Ta2O5", "start": 980, "end": 990, "annotation": "BASEMAT"}, {"text": "/", "start": 990, "end": 991, "annotation": "BASEMAT"}, {"text": "Ti", "start": 991, "end": 993, "annotation": "BASEMAT"}, {"text": ")", "start": 993, "end": 994, "annotation": null}, {"text": "anode", "start": 995, "end": 1000, "annotation": null}, {"text": ".", "start": 1000, "end": 1001, "annotation": null}], [{"text": "The", "start": 1002, "end": 1005, "annotation": null}, {"text": "regression", "start": 1006, "end": 1016, "annotation": null}, {"text": "analysis", "start": 1017, "end": 1025, "annotation": null}, {"text": "and", "start": 1026, "end": 1029, "annotation": null}, {"text": "F-test", "start": 1030, "end": 1036, "annotation": null}, {"text": "results", "start": 1037, "end": 1044, "annotation": null}, {"text": "illustrate", "start": 1045, "end": 1055, "annotation": null}, {"text": "the", "start": 1056, "end": 1059, "annotation": null}, {"text": "3SRT", "start": 1060, "end": 1064, "annotation": null}, {"text": "satisfactorily", "start": 1065, "end": 1079, "annotation": null}, {"text": "matches", "start": 1080, "end": 1087, "annotation": null}, {"text": "the", "start": 1088, "end": 1091, "annotation": null}, {"text": "experimental", "start": 1092, "end": 1104, "annotation": null}, {"text": "data", "start": 1105, "end": 1109, "annotation": null}, {"text": "obtained", "start": 1110, "end": 1118, "annotation": null}, {"text": "at", "start": 1119, "end": 1121, "annotation": null}, {"text": "different", "start": 1122, "end": 1131, "annotation": null}, {"text": "operation", "start": 1132, "end": 1141, "annotation": null}, {"text": "conditions", "start": 1142, "end": 1152, "annotation": null}, {"text": "such", "start": 1153, "end": 1157, "annotation": null}, {"text": "as", "start": 1158, "end": 1160, "annotation": null}, {"text": "current", "start": 1161, "end": 1168, "annotation": null}, {"text": "density", "start": 1169, "end": 1176, "annotation": null}, {"text": ",", "start": 1176, "end": 1177, "annotation": null}, {"text": "initial", "start": 1178, "end": 1185, "annotation": null}, {"text": "COD", "start": 1186, "end": 1189, "annotation": null}, {"text": "values", "start": 1190, "end": 1196, "annotation": null}, {"text": "and", "start": 1197, "end": 1200, "annotation": null}, {"text": "flow", "start": 1201, "end": 1205, "annotation": null}, {"text": "rate", "start": 1206, "end": 1210, "annotation": null}, {"text": ".", "start": 1210, "end": 1211, "annotation": null}], [{"text": "These", "start": 1212, "end": 1217, "annotation": null}, {"text": "results", "start": 1218, "end": 1225, "annotation": null}, {"text": "confirm", "start": 1226, "end": 1233, "annotation": null}, {"text": "the", "start": 1234, "end": 1237, "annotation": null}, {"text": "proposed", "start": 1238, "end": 1246, "annotation": null}, {"text": "3SRT", "start": 1247, "end": 1251, "annotation": null}, {"text": "could", "start": 1252, "end": 1257, "annotation": null}, {"text": "effectively", "start": 1258, "end": 1269, "annotation": null}, {"text": "predict", "start": 1270, "end": 1277, "annotation": null}, {"text": "the", "start": 1278, "end": 1281, "annotation": null}, {"text": "change", "start": 1282, "end": 1288, "annotation": null}, {"text": "of", "start": 1289, "end": 1291, "annotation": null}, {"text": "concentration", "start": 1292, "end": 1305, "annotation": null}, {"text": "of", "start": 1306, "end": 1308, "annotation": null}, {"text": "organic", "start": 1309, "end": 1316, "annotation": null}, {"text": "pollutants", "start": 1317, "end": 1327, "annotation": null}, {"text": "during", "start": 1328, "end": 1334, "annotation": null}, {"text": "electro-oxidation", "start": 1335, "end": 1352, "annotation": null}, {"text": "by", "start": 1353, "end": 1355, "annotation": null}, {"text": "using", "start": 1356, "end": 1361, "annotation": null}, {"text": "a", "start": 1362, "end": 1363, "annotation": null}, {"text": "PBER", "start": 1364, "end": 1368, "annotation": null}, {"text": ".", "start": 1368, "end": 1369, "annotation": null}]]} -{"remark": "doping_annt3", "text": "The compression creep behaviour of pressureless sintered Y2O3/Al2O3/AIN-doped Si3N4 was studied between 1473 and 1673 K, under stresses ranging from 100\u2013300 MPa. Strain rate versus stress and temperature analysis give a stress exponent n\u22431 and an activation energy Q=860 kJ mol\u22121. Microstructural change was investigated by transmission electron microscopy. The observed strain whorls, the stress exponent and the activation energy are indicative of a solution-diffusion-precipitation accommodated grain-boundary sliding where the diffusion through the glass is rate controlling.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "compression", "start": 4, "end": 15, "annotation": null}, {"text": "creep", "start": 16, "end": 21, "annotation": null}, {"text": "behaviour", "start": 22, "end": 31, "annotation": null}, {"text": "of", "start": 32, "end": 34, "annotation": null}, {"text": "pressureless", "start": 35, "end": 47, "annotation": null}, {"text": "sintered", "start": 48, "end": 56, "annotation": null}, {"text": "Y2O3", "start": 57, "end": 61, "annotation": "DOPANT"}, {"text": "/", "start": 61, "end": 62, "annotation": "DOPANT"}, {"text": "Al2O3", "start": 62, "end": 67, "annotation": "DOPANT"}, {"text": "/", "start": 67, "end": 68, "annotation": "DOPANT"}, {"text": "AIN", "start": 68, "end": 71, "annotation": "DOPANT"}, {"text": "-", "start": 71, "end": 72, "annotation": null}, {"text": "doped", "start": 72, "end": 77, "annotation": null}, {"text": "Si3N4", "start": 78, "end": 83, "annotation": "BASEMAT"}, {"text": "was", "start": 84, "end": 87, "annotation": null}, {"text": "studied", "start": 88, "end": 95, "annotation": null}, {"text": "between", "start": 96, "end": 103, "annotation": null}, {"text": "1473", "start": 104, "end": 108, "annotation": null}, {"text": "and", "start": 109, "end": 112, "annotation": null}, {"text": "1673", "start": 113, "end": 117, "annotation": null}, {"text": "K", "start": 118, "end": 119, "annotation": null}, {"text": ",", "start": 119, "end": 120, "annotation": null}, {"text": "under", "start": 121, "end": 126, "annotation": null}, {"text": "stresses", "start": 127, "end": 135, "annotation": null}, {"text": "ranging", "start": 136, "end": 143, "annotation": null}, {"text": "from", "start": 144, "end": 148, "annotation": null}, {"text": "100", "start": 149, "end": 152, "annotation": null}, {"text": "\u2013", "start": 152, "end": 153, "annotation": null}, {"text": "300", "start": 153, "end": 156, "annotation": null}, {"text": "MPa", "start": 157, "end": 160, "annotation": null}, {"text": ".", "start": 160, "end": 161, "annotation": null}], [{"text": "Strain", "start": 162, "end": 168, "annotation": null}, {"text": "rate", "start": 169, "end": 173, "annotation": null}, {"text": "versus", "start": 174, "end": 180, "annotation": null}, {"text": "stress", "start": 181, "end": 187, "annotation": null}, {"text": "and", "start": 188, "end": 191, "annotation": null}, {"text": "temperature", "start": 192, "end": 203, "annotation": null}, {"text": "analysis", "start": 204, "end": 212, "annotation": null}, {"text": "give", "start": 213, "end": 217, "annotation": null}, {"text": "a", "start": 218, "end": 219, "annotation": null}, {"text": "stress", "start": 220, "end": 226, "annotation": null}, {"text": "exponent", "start": 227, "end": 235, "annotation": null}, {"text": "n\u22431", "start": 236, "end": 239, "annotation": null}, {"text": "and", "start": 240, "end": 243, "annotation": null}, {"text": "an", "start": 244, "end": 246, "annotation": null}, {"text": "activation", "start": 247, "end": 257, "annotation": null}, {"text": "energy", "start": 258, "end": 264, "annotation": null}, {"text": "Q", "start": 265, "end": 266, "annotation": null}, {"text": "=", "start": 266, "end": 267, "annotation": null}, {"text": "860", "start": 267, "end": 270, "annotation": null}, {"text": "kJ", "start": 271, "end": 273, "annotation": null}, {"text": "mol\u22121", "start": 274, "end": 279, "annotation": null}, {"text": ".", "start": 279, "end": 280, "annotation": null}], [{"text": "Microstructural", "start": 281, "end": 296, "annotation": null}, {"text": "change", "start": 297, "end": 303, "annotation": null}, {"text": "was", "start": 304, "end": 307, "annotation": null}, {"text": "investigated", "start": 308, "end": 320, "annotation": null}, {"text": "by", "start": 321, "end": 323, "annotation": null}, {"text": "transmission", "start": 324, "end": 336, "annotation": null}, {"text": "electron", "start": 337, "end": 345, "annotation": null}, {"text": "microscopy", "start": 346, "end": 356, "annotation": null}, {"text": ".", "start": 356, "end": 357, "annotation": null}], [{"text": "The", "start": 358, "end": 361, "annotation": null}, {"text": "observed", "start": 362, "end": 370, "annotation": null}, {"text": "strain", "start": 371, "end": 377, "annotation": null}, {"text": "whorls", "start": 378, "end": 384, "annotation": null}, {"text": ",", "start": 384, "end": 385, "annotation": null}, {"text": "the", "start": 386, "end": 389, "annotation": null}, {"text": "stress", "start": 390, "end": 396, "annotation": null}, {"text": "exponent", "start": 397, "end": 405, "annotation": null}, {"text": "and", "start": 406, "end": 409, "annotation": null}, {"text": "the", "start": 410, "end": 413, "annotation": null}, {"text": "activation", "start": 414, "end": 424, "annotation": null}, {"text": "energy", "start": 425, "end": 431, "annotation": null}, {"text": "are", "start": 432, "end": 435, "annotation": null}, {"text": "indicative", "start": 436, "end": 446, "annotation": null}, {"text": "of", "start": 447, "end": 449, "annotation": null}, {"text": "a", "start": 450, "end": 451, "annotation": null}, {"text": "solution-diffusion-precipitation", "start": 452, "end": 484, "annotation": null}, {"text": "accommodated", "start": 485, "end": 497, "annotation": null}, {"text": "grain", "start": 498, "end": 503, "annotation": null}, {"text": "-", "start": 503, "end": 504, "annotation": null}, {"text": "boundary", "start": 504, "end": 512, "annotation": null}, {"text": "sliding", "start": 513, "end": 520, "annotation": null}, {"text": "where", "start": 521, "end": 526, "annotation": null}, {"text": "the", "start": 527, "end": 530, "annotation": null}, {"text": "diffusion", "start": 531, "end": 540, "annotation": null}, {"text": "through", "start": 541, "end": 548, "annotation": null}, {"text": "the", "start": 549, "end": 552, "annotation": null}, {"text": "glass", "start": 553, "end": 558, "annotation": null}, {"text": "is", "start": 559, "end": 561, "annotation": null}, {"text": "rate", "start": 562, "end": 566, "annotation": null}, {"text": "controlling", "start": 567, "end": 578, "annotation": null}, {"text": ".", "start": 578, "end": 579, "annotation": null}]]} -{"text": "The phonon Raman spectra of Bi2Sr2Ca1xYxCu2O8 + d (x = 0\u20131) have been investigated in a number of well-defined single crystal and polycrystalline samples. From the polarization and Y doping dependence, and from a comparison with previous reports on Bi-based cuprates, we identify the (6A1g + 1B1g) symmetry modes that are Raman allowed within the ideal body-centered tetragonal unit-cell. The vibrational modes that involve atoms in the CuO5 pyramid exhibit drastic changes with increasing Y doping: the bridging-oxygen phonon softens strongly, whereas the CuO2-plane phonons both harden and increase in intensity with increasing Y content. Although the intensity increases can be attributed to the reduced metallic screening in the hole-depleted Y doped samples, the phonon frequency variations are mainly due to the structural changes induced by the decrease in the average Ca/Y ion radius.", "meta": {"doi": "10.1016/S0921-5107(96)01634-0"}, "_input_hash": 369295952, "_task_hash": -1690616109, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "phonon", "start": 4, "end": 10, "id": 1, "annotation": null}, {"text": "Raman", "start": 11, "end": 16, "id": 2, "annotation": null}, {"text": "spectra", "start": 17, "end": 24, "id": 3, "annotation": null}, {"text": "of", "start": 25, "end": 27, "id": 4, "annotation": null}, {"text": "Bi2Sr2Ca1xYxCu2O8", "start": 28, "end": 45, "id": 5, "annotation": "BASEMAT"}, {"text": "+", "start": 46, "end": 47, "id": 6, "annotation": null}, {"text": "d", "start": 48, "end": 49, "id": 7, "annotation": "BASEMAT"}, {"text": "(", "start": 50, "end": 51, "id": 8, "annotation": null}, {"text": "x", "start": 52, "end": 53, "id": 9, "annotation": "DOPMODQ"}, {"text": "=", "start": 54, "end": 55, "id": 10, "annotation": null}, {"text": "0\u20131", "start": 56, "end": 59, "id": 11, "annotation": "DOPMODQ"}, {"text": ")", "start": 60, "end": 61, "id": 12, "annotation": null}, {"text": "have", "start": 62, "end": 66, "id": 13, "annotation": null}, {"text": "been", "start": 67, "end": 71, "id": 14, "annotation": null}, {"text": "investigated", "start": 72, "end": 84, "id": 15, "annotation": null}, {"text": "in", "start": 85, "end": 87, "id": 16, "annotation": null}, {"text": "a", "start": 88, "end": 89, "id": 17, "annotation": null}, {"text": "number", "start": 90, "end": 96, "id": 18, "annotation": null}, {"text": "of", "start": 97, "end": 99, "id": 19, "annotation": null}, {"text": "well", "start": 100, "end": 104, "id": 20, "annotation": null}, {"text": "-", "start": 105, "end": 106, "id": 21, "annotation": null}, {"text": "defined", "start": 107, "end": 114, "id": 22, "annotation": null}, {"text": "single", "start": 115, "end": 121, "id": 23, "annotation": null}, {"text": "crystal", "start": 122, "end": 129, "id": 24, "annotation": null}, {"text": "and", "start": 130, "end": 133, "id": 25, "annotation": null}, {"text": "polycrystalline", "start": 134, "end": 149, "id": 26, "annotation": null}, {"text": "samples", "start": 150, "end": 157, "id": 27, "annotation": null}, {"text": ".", "start": 158, "end": 159, "id": 28, "annotation": null}], [{"text": "From", "start": 160, "end": 164, "id": 29, "annotation": null}, {"text": "the", "start": 165, "end": 168, "id": 30, "annotation": null}, {"text": "polarization", "start": 169, "end": 181, "id": 31, "annotation": null}, {"text": "and", "start": 182, "end": 185, "id": 32, "annotation": null}, {"text": "Y", "start": 186, "end": 187, "id": 33, "annotation": "DOPANT"}, {"text": "doping", "start": 188, "end": 194, "id": 34, "annotation": null}, {"text": "dependence", "start": 195, "end": 205, "id": 35, "annotation": null}, {"text": ",", "start": 206, "end": 207, "id": 36, "annotation": null}, {"text": "and", "start": 208, "end": 211, "id": 37, "annotation": null}, {"text": "from", "start": 212, "end": 216, "id": 38, "annotation": null}, {"text": "a", "start": 217, "end": 218, "id": 39, "annotation": null}, {"text": "comparison", "start": 219, "end": 229, "id": 40, "annotation": null}, {"text": "with", "start": 230, "end": 234, "id": 41, "annotation": null}, {"text": "previous", "start": 235, "end": 243, "id": 42, "annotation": null}, {"text": "reports", "start": 244, "end": 251, "id": 43, "annotation": null}, {"text": "on", "start": 252, "end": 254, "id": 44, "annotation": null}, {"text": "Bi", "start": 255, "end": 257, "id": 45, "annotation": null}, {"text": "-", "start": 258, "end": 259, "id": 46, "annotation": null}, {"text": "based", "start": 260, "end": 265, "id": 47, "annotation": null}, {"text": "cuprates", "start": 266, "end": 274, "id": 48, "annotation": null}, {"text": ",", "start": 275, "end": 276, "id": 49, "annotation": null}, {"text": "we", "start": 277, "end": 279, "id": 50, "annotation": null}, {"text": "identify", "start": 280, "end": 288, "id": 51, "annotation": null}, {"text": "the", "start": 289, "end": 292, "id": 52, "annotation": null}, {"text": "(", "start": 293, "end": 294, "id": 53, "annotation": null}, {"text": "6A1", "start": 295, "end": 298, "id": 54, "annotation": null}, {"text": "g", "start": 299, "end": 300, "id": 55, "annotation": null}, {"text": "+", "start": 301, "end": 302, "id": 56, "annotation": null}, {"text": "1B1", "start": 303, "end": 306, "id": 57, "annotation": null}, {"text": "g", "start": 307, "end": 308, "id": 58, "annotation": null}, {"text": ")", "start": 309, "end": 310, "id": 59, "annotation": null}, {"text": "symmetry", "start": 311, "end": 319, "id": 60, "annotation": null}, {"text": "modes", "start": 320, "end": 325, "id": 61, "annotation": null}, {"text": "that", "start": 326, "end": 330, "id": 62, "annotation": null}, {"text": "are", "start": 331, "end": 334, "id": 63, "annotation": null}, {"text": "Raman", "start": 335, "end": 340, "id": 64, "annotation": null}, {"text": "allowed", "start": 341, "end": 348, "id": 65, "annotation": null}, {"text": "within", "start": 349, "end": 355, "id": 66, "annotation": null}, {"text": "the", "start": 356, "end": 359, "id": 67, "annotation": null}, {"text": "ideal", "start": 360, "end": 365, "id": 68, "annotation": null}, {"text": "body", "start": 366, "end": 370, "id": 69, "annotation": null}, {"text": "-", "start": 371, "end": 372, "id": 70, "annotation": null}, {"text": "centered", "start": 373, "end": 381, "id": 71, "annotation": null}, {"text": "tetragonal", "start": 382, "end": 392, "id": 72, "annotation": null}, {"text": "unit", "start": 393, "end": 397, "id": 73, "annotation": null}, {"text": "-", "start": 398, "end": 399, "id": 74, "annotation": null}, {"text": "cell", "start": 400, "end": 404, "id": 75, "annotation": null}, {"text": ".", "start": 405, "end": 406, "id": 76, "annotation": null}], [{"text": "The", "start": 407, "end": 410, "id": 77, "annotation": null}, {"text": "vibrational", "start": 411, "end": 422, "id": 78, "annotation": null}, {"text": "modes", "start": 423, "end": 428, "id": 79, "annotation": null}, {"text": "that", "start": 429, "end": 433, "id": 80, "annotation": null}, {"text": "involve", "start": 434, "end": 441, "id": 81, "annotation": null}, {"text": "atoms", "start": 442, "end": 447, "id": 82, "annotation": null}, {"text": "in", "start": 448, "end": 450, "id": 83, "annotation": null}, {"text": "the", "start": 451, "end": 454, "id": 84, "annotation": null}, {"text": "CuO5", "start": 455, "end": 459, "id": 85, "annotation": null}, {"text": "pyramid", "start": 460, "end": 467, "id": 86, "annotation": null}, {"text": "exhibit", "start": 468, "end": 475, "id": 87, "annotation": null}, {"text": "drastic", "start": 476, "end": 483, "id": 88, "annotation": null}, {"text": "changes", "start": 484, "end": 491, "id": 89, "annotation": null}, {"text": "with", "start": 492, "end": 496, "id": 90, "annotation": null}, {"text": "increasing", "start": 497, "end": 507, "id": 91, "annotation": null}, {"text": "Y", "start": 508, "end": 509, "id": 92, "annotation": "DOPANT"}, {"text": "doping", "start": 510, "end": 516, "id": 93, "annotation": null}, {"text": ":", "start": 517, "end": 518, "id": 94, "annotation": null}, {"text": "the", "start": 519, "end": 522, "id": 95, "annotation": null}, {"text": "bridging", "start": 523, "end": 531, "id": 96, "annotation": null}, {"text": "-", "start": 532, "end": 533, "id": 97, "annotation": null}, {"text": "oxygen", "start": 534, "end": 540, "id": 98, "annotation": null}, {"text": "phonon", "start": 541, "end": 547, "id": 99, "annotation": null}, {"text": "softens", "start": 548, "end": 555, "id": 100, "annotation": null}, {"text": "strongly", "start": 556, "end": 564, "id": 101, "annotation": null}, {"text": ",", "start": 565, "end": 566, "id": 102, "annotation": null}, {"text": "whereas", "start": 567, "end": 574, "id": 103, "annotation": null}, {"text": "the", "start": 575, "end": 578, "id": 104, "annotation": null}, {"text": "CuO2-plane", "start": 579, "end": 589, "id": 105, "annotation": null}, {"text": "phonons", "start": 590, "end": 597, "id": 106, "annotation": null}, {"text": "both", "start": 598, "end": 602, "id": 107, "annotation": null}, {"text": "harden", "start": 603, "end": 609, "id": 108, "annotation": null}, {"text": "and", "start": 610, "end": 613, "id": 109, "annotation": null}, {"text": "increase", "start": 614, "end": 622, "id": 110, "annotation": null}, {"text": "in", "start": 623, "end": 625, "id": 111, "annotation": null}, {"text": "intensity", "start": 626, "end": 635, "id": 112, "annotation": null}, {"text": "with", "start": 636, "end": 640, "id": 113, "annotation": null}, {"text": "increasing", "start": 641, "end": 651, "id": 114, "annotation": null}, {"text": "Y", "start": 652, "end": 653, "id": 115, "annotation": "DOPANT"}, {"text": "content", "start": 654, "end": 661, "id": 116, "annotation": null}, {"text": ".", "start": 662, "end": 663, "id": 117, "annotation": null}], [{"text": "Although", "start": 664, "end": 672, "id": 118, "annotation": null}, {"text": "the", "start": 673, "end": 676, "id": 119, "annotation": null}, {"text": "intensity", "start": 677, "end": 686, "id": 120, "annotation": null}, {"text": "increases", "start": 687, "end": 696, "id": 121, "annotation": null}, {"text": "can", "start": 697, "end": 700, "id": 122, "annotation": null}, {"text": "be", "start": 701, "end": 703, "id": 123, "annotation": null}, {"text": "attributed", "start": 704, "end": 714, "id": 124, "annotation": null}, {"text": "to", "start": 715, "end": 717, "id": 125, "annotation": null}, {"text": "the", "start": 718, "end": 721, "id": 126, "annotation": null}, {"text": "reduced", "start": 722, "end": 729, "id": 127, "annotation": null}, {"text": "metallic", "start": 730, "end": 738, "id": 128, "annotation": null}, {"text": "screening", "start": 739, "end": 748, "id": 129, "annotation": null}, {"text": "in", "start": 749, "end": 751, "id": 130, "annotation": null}, {"text": "the", "start": 752, "end": 755, "id": 131, "annotation": null}, {"text": "hole", "start": 756, "end": 760, "id": 132, "annotation": null}, {"text": "-", "start": 761, "end": 762, "id": 133, "annotation": null}, {"text": "depleted", "start": 763, "end": 771, "id": 134, "annotation": null}, {"text": "Y", "start": 772, "end": 773, "id": 135, "annotation": "DOPANT"}, {"text": "doped", "start": 774, "end": 779, "id": 136, "annotation": null}, {"text": "samples", "start": 780, "end": 787, "id": 137, "annotation": "BASEMAT"}, {"text": ",", "start": 788, "end": 789, "id": 138, "annotation": null}, {"text": "the", "start": 790, "end": 793, "id": 139, "annotation": null}, {"text": "phonon", "start": 794, "end": 800, "id": 140, "annotation": null}, {"text": "frequency", "start": 801, "end": 810, "id": 141, "annotation": null}, {"text": "variations", "start": 811, "end": 821, "id": 142, "annotation": null}, {"text": "are", "start": 822, "end": 825, "id": 143, "annotation": null}, {"text": "mainly", "start": 826, "end": 832, "id": 144, "annotation": null}, {"text": "due", "start": 833, "end": 836, "id": 145, "annotation": null}, {"text": "to", "start": 837, "end": 839, "id": 146, "annotation": null}, {"text": "the", "start": 840, "end": 843, "id": 147, "annotation": null}, {"text": "structural", "start": 844, "end": 854, "id": 148, "annotation": null}, {"text": "changes", "start": 855, "end": 862, "id": 149, "annotation": null}, {"text": "induced", "start": 863, "end": 870, "id": 150, "annotation": null}, {"text": "by", "start": 871, "end": 873, "id": 151, "annotation": null}, {"text": "the", "start": 874, "end": 877, "id": 152, "annotation": null}, {"text": "decrease", "start": 878, "end": 886, "id": 153, "annotation": null}, {"text": "in", "start": 887, "end": 889, "id": 154, "annotation": null}, {"text": "the", "start": 890, "end": 893, "id": 155, "annotation": null}, {"text": "average", "start": 894, "end": 901, "id": 156, "annotation": null}, {"text": "Ca", "start": 902, "end": 904, "id": 157, "annotation": null}, {"text": "/", "start": 905, "end": 906, "id": 158, "annotation": null}, {"text": "Y", "start": 907, "end": 908, "id": 159, "annotation": "DOPANT"}, {"text": "ion", "start": 909, "end": 912, "id": 160, "annotation": null}, {"text": "radius", "start": 913, "end": 919, "id": 161, "annotation": null}, {"text": ".", "start": 920, "end": 921, "id": 162, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "According to the intrinsic kinetics of electro-oxidation, a novel three-stage reaction theory (3SRT) involved charge transfer controlled (CTC), mixed-phase controlled (MPC) and mass transport controlled (MTC) regimes is presented to describe the oxidation of organic pollutants by using a packed-bed electrode reactor (PBER). The proposed 3SRT could be universally used for overall oxidation due to the introduction of a parameter, current utilization ratio of \u03b3 (\u223c1.0) related to anode materials. The existence of MPC regime is due to the difference of the applied current density between metallic anode and bipolar activated carbon (AC) particulate anode caused by the difference of the electrode area of the two kinds of anodes. The proposed theory was employed for prediction of chemical oxygen demand (COD) during treatment of synthetic phenolic wastewater, thiophene-2,5-dicarboxylic acid manufacturing wastewater and pyridine wastewater by using IrO2 doped tantalum oxide (IrO2-Ta2O5/Ti) anode. The regression analysis and F-test results illustrate the 3SRT satisfactorily matches the experimental data obtained at different operation conditions such as current density, initial COD values and flow rate. These results confirm the proposed 3SRT could effectively predict the change of concentration of organic pollutants during electro-oxidation by using a PBER.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "According", "start": 0, "end": 9, "annotation": null}, {"text": "to", "start": 10, "end": 12, "annotation": null}, {"text": "the", "start": 13, "end": 16, "annotation": null}, {"text": "intrinsic", "start": 17, "end": 26, "annotation": null}, {"text": "kinetics", "start": 27, "end": 35, "annotation": null}, {"text": "of", "start": 36, "end": 38, "annotation": null}, {"text": "electro-oxidation", "start": 39, "end": 56, "annotation": null}, {"text": ",", "start": 56, "end": 57, "annotation": null}, {"text": "a", "start": 58, "end": 59, "annotation": null}, {"text": "novel", "start": 60, "end": 65, "annotation": null}, {"text": "three", "start": 66, "end": 71, "annotation": null}, {"text": "-", "start": 71, "end": 72, "annotation": null}, {"text": "stage", "start": 72, "end": 77, "annotation": null}, {"text": "reaction", "start": 78, "end": 86, "annotation": null}, {"text": "theory", "start": 87, "end": 93, "annotation": null}, {"text": "(", "start": 94, "end": 95, "annotation": null}, {"text": "3SRT", "start": 95, "end": 99, "annotation": null}, {"text": ")", "start": 99, "end": 100, "annotation": null}, {"text": "involved", "start": 101, "end": 109, "annotation": null}, {"text": "charge", "start": 110, "end": 116, "annotation": null}, {"text": "transfer", "start": 117, "end": 125, "annotation": null}, {"text": "controlled", "start": 126, "end": 136, "annotation": null}, {"text": "(", "start": 137, "end": 138, "annotation": null}, {"text": "CTC", "start": 138, "end": 141, "annotation": null}, {"text": ")", "start": 141, "end": 142, "annotation": null}, {"text": ",", "start": 142, "end": 143, "annotation": null}, {"text": "mixed", "start": 144, "end": 149, "annotation": null}, {"text": "-", "start": 149, "end": 150, "annotation": null}, {"text": "phase", "start": 150, "end": 155, "annotation": null}, {"text": "controlled", "start": 156, "end": 166, "annotation": null}, {"text": "(", "start": 167, "end": 168, "annotation": null}, {"text": "MPC", "start": 168, "end": 171, "annotation": null}, {"text": ")", "start": 171, "end": 172, "annotation": null}, {"text": "and", "start": 173, "end": 176, "annotation": null}, {"text": "mass", "start": 177, "end": 181, "annotation": null}, {"text": "transport", "start": 182, "end": 191, "annotation": null}, {"text": "controlled", "start": 192, "end": 202, "annotation": null}, {"text": "(", "start": 203, "end": 204, "annotation": null}, {"text": "MTC", "start": 204, "end": 207, "annotation": null}, {"text": ")", "start": 207, "end": 208, "annotation": null}, {"text": "regimes", "start": 209, "end": 216, "annotation": null}, {"text": "is", "start": 217, "end": 219, "annotation": null}, {"text": "presented", "start": 220, "end": 229, "annotation": null}, {"text": "to", "start": 230, "end": 232, "annotation": null}, {"text": "describe", "start": 233, "end": 241, "annotation": null}, {"text": "the", "start": 242, "end": 245, "annotation": null}, {"text": "oxidation", "start": 246, "end": 255, "annotation": null}, {"text": "of", "start": 256, "end": 258, "annotation": null}, {"text": "organic", "start": 259, "end": 266, "annotation": null}, {"text": "pollutants", "start": 267, "end": 277, "annotation": null}, {"text": "by", "start": 278, "end": 280, "annotation": null}, {"text": "using", "start": 281, "end": 286, "annotation": null}, {"text": "a", "start": 287, "end": 288, "annotation": null}, {"text": "packed", "start": 289, "end": 295, "annotation": null}, {"text": "-", "start": 295, "end": 296, "annotation": null}, {"text": "bed", "start": 296, "end": 299, "annotation": null}, {"text": "electrode", "start": 300, "end": 309, "annotation": null}, {"text": "reactor", "start": 310, "end": 317, "annotation": null}, {"text": "(", "start": 318, "end": 319, "annotation": null}, {"text": "PBER", "start": 319, "end": 323, "annotation": null}, {"text": ")", "start": 323, "end": 324, "annotation": null}, {"text": ".", "start": 324, "end": 325, "annotation": null}], [{"text": "The", "start": 326, "end": 329, "annotation": null}, {"text": "proposed", "start": 330, "end": 338, "annotation": null}, {"text": "3SRT", "start": 339, "end": 343, "annotation": null}, {"text": "could", "start": 344, "end": 349, "annotation": null}, {"text": "be", "start": 350, "end": 352, "annotation": null}, {"text": "universally", "start": 353, "end": 364, "annotation": null}, {"text": "used", "start": 365, "end": 369, "annotation": null}, {"text": "for", "start": 370, "end": 373, "annotation": null}, {"text": "overall", "start": 374, "end": 381, "annotation": null}, {"text": "oxidation", "start": 382, "end": 391, "annotation": null}, {"text": "due", "start": 392, "end": 395, "annotation": null}, {"text": "to", "start": 396, "end": 398, "annotation": null}, {"text": "the", "start": 399, "end": 402, "annotation": null}, {"text": "introduction", "start": 403, "end": 415, "annotation": null}, {"text": "of", "start": 416, "end": 418, "annotation": null}, {"text": "a", "start": 419, "end": 420, "annotation": null}, {"text": "parameter", "start": 421, "end": 430, "annotation": null}, {"text": ",", "start": 430, "end": 431, "annotation": null}, {"text": "current", "start": 432, "end": 439, "annotation": null}, {"text": "utilization", "start": 440, "end": 451, "annotation": null}, {"text": "ratio", "start": 452, "end": 457, "annotation": null}, {"text": "of", "start": 458, "end": 460, "annotation": null}, {"text": "\u03b3", "start": 461, "end": 462, "annotation": null}, {"text": "(", "start": 463, "end": 464, "annotation": null}, {"text": "\u223c", "start": 464, "end": 465, "annotation": null}, {"text": "1.0", "start": 465, "end": 468, "annotation": null}, {"text": ")", "start": 468, "end": 469, "annotation": null}, {"text": "related", "start": 470, "end": 477, "annotation": null}, {"text": "to", "start": 478, "end": 480, "annotation": null}, {"text": "anode", "start": 481, "end": 486, "annotation": null}, {"text": "materials", "start": 487, "end": 496, "annotation": null}, {"text": ".", "start": 496, "end": 497, "annotation": null}], [{"text": "The", "start": 498, "end": 501, "annotation": null}, {"text": "existence", "start": 502, "end": 511, "annotation": null}, {"text": "of", "start": 512, "end": 514, "annotation": null}, {"text": "MPC", "start": 515, "end": 518, "annotation": null}, {"text": "regime", "start": 519, "end": 525, "annotation": null}, {"text": "is", "start": 526, "end": 528, "annotation": null}, {"text": "due", "start": 529, "end": 532, "annotation": null}, {"text": "to", "start": 533, "end": 535, "annotation": null}, {"text": "the", "start": 536, "end": 539, "annotation": null}, {"text": "difference", "start": 540, "end": 550, "annotation": null}, {"text": "of", "start": 551, "end": 553, "annotation": null}, {"text": "the", "start": 554, "end": 557, "annotation": null}, {"text": "applied", "start": 558, "end": 565, "annotation": null}, {"text": "current", "start": 566, "end": 573, "annotation": null}, {"text": "density", "start": 574, "end": 581, "annotation": null}, {"text": "between", "start": 582, "end": 589, "annotation": null}, {"text": "metallic", "start": 590, "end": 598, "annotation": null}, {"text": "anode", "start": 599, "end": 604, "annotation": null}, {"text": "and", "start": 605, "end": 608, "annotation": null}, {"text": "bipolar", "start": 609, "end": 616, "annotation": null}, {"text": "activated", "start": 617, "end": 626, "annotation": null}, {"text": "carbon", "start": 627, "end": 633, "annotation": null}, {"text": "(", "start": 634, "end": 635, "annotation": null}, {"text": "AC", "start": 635, "end": 637, "annotation": null}, {"text": ")", "start": 637, "end": 638, "annotation": null}, {"text": "particulate", "start": 639, "end": 650, "annotation": null}, {"text": "anode", "start": 651, "end": 656, "annotation": null}, {"text": "caused", "start": 657, "end": 663, "annotation": null}, {"text": "by", "start": 664, "end": 666, "annotation": null}, {"text": "the", "start": 667, "end": 670, "annotation": null}, {"text": "difference", "start": 671, "end": 681, "annotation": null}, {"text": "of", "start": 682, "end": 684, "annotation": null}, {"text": "the", "start": 685, "end": 688, "annotation": null}, {"text": "electrode", "start": 689, "end": 698, "annotation": null}, {"text": "area", "start": 699, "end": 703, "annotation": null}, {"text": "of", "start": 704, "end": 706, "annotation": null}, {"text": "the", "start": 707, "end": 710, "annotation": null}, {"text": "two", "start": 711, "end": 714, "annotation": null}, {"text": "kinds", "start": 715, "end": 720, "annotation": null}, {"text": "of", "start": 721, "end": 723, "annotation": null}, {"text": "anodes", "start": 724, "end": 730, "annotation": null}, {"text": ".", "start": 730, "end": 731, "annotation": null}], [{"text": "The", "start": 732, "end": 735, "annotation": null}, {"text": "proposed", "start": 736, "end": 744, "annotation": null}, {"text": "theory", "start": 745, "end": 751, "annotation": null}, {"text": "was", "start": 752, "end": 755, "annotation": null}, {"text": "employed", "start": 756, "end": 764, "annotation": null}, {"text": "for", "start": 765, "end": 768, "annotation": null}, {"text": "prediction", "start": 769, "end": 779, "annotation": null}, {"text": "of", "start": 780, "end": 782, "annotation": null}, {"text": "chemical", "start": 783, "end": 791, "annotation": null}, {"text": "oxygen", "start": 792, "end": 798, "annotation": null}, {"text": "demand", "start": 799, "end": 805, "annotation": null}, {"text": "(", "start": 806, "end": 807, "annotation": null}, {"text": "COD", "start": 807, "end": 810, "annotation": null}, {"text": ")", "start": 810, "end": 811, "annotation": null}, {"text": "during", "start": 812, "end": 818, "annotation": null}, {"text": "treatment", "start": 819, "end": 828, "annotation": null}, {"text": "of", "start": 829, "end": 831, "annotation": null}, {"text": "synthetic", "start": 832, "end": 841, "annotation": null}, {"text": "phenolic", "start": 842, "end": 850, "annotation": null}, {"text": "wastewater", "start": 851, "end": 861, "annotation": null}, {"text": ",", "start": 861, "end": 862, "annotation": null}, {"text": "thiophene-2,5-dicarboxylic", "start": 863, "end": 889, "annotation": null}, {"text": "acid", "start": 890, "end": 894, "annotation": null}, {"text": "manufacturing", "start": 895, "end": 908, "annotation": null}, {"text": "wastewater", "start": 909, "end": 919, "annotation": null}, {"text": "and", "start": 920, "end": 923, "annotation": null}, {"text": "pyridine", "start": 924, "end": 932, "annotation": null}, {"text": "wastewater", "start": 933, "end": 943, "annotation": null}, {"text": "by", "start": 944, "end": 946, "annotation": null}, {"text": "using", "start": 947, "end": 952, "annotation": null}, {"text": "IrO2", "start": 953, "end": 957, "annotation": "DOPANT"}, {"text": "doped", "start": 958, "end": 963, "annotation": null}, {"text": "tantalum", "start": 964, "end": 972, "annotation": "BASEMAT"}, {"text": "oxide", "start": 973, "end": 978, "annotation": "BASEMAT"}, {"text": "(", "start": 979, "end": 980, "annotation": null}, {"text": "IrO2-Ta2O5", "start": 980, "end": 990, "annotation": "BASEMAT"}, {"text": "/", "start": 990, "end": 991, "annotation": "BASEMAT"}, {"text": "Ti", "start": 991, "end": 993, "annotation": "BASEMAT"}, {"text": ")", "start": 993, "end": 994, "annotation": null}, {"text": "anode", "start": 995, "end": 1000, "annotation": null}, {"text": ".", "start": 1000, "end": 1001, "annotation": null}], [{"text": "The", "start": 1002, "end": 1005, "annotation": null}, {"text": "regression", "start": 1006, "end": 1016, "annotation": null}, {"text": "analysis", "start": 1017, "end": 1025, "annotation": null}, {"text": "and", "start": 1026, "end": 1029, "annotation": null}, {"text": "F-test", "start": 1030, "end": 1036, "annotation": null}, {"text": "results", "start": 1037, "end": 1044, "annotation": null}, {"text": "illustrate", "start": 1045, "end": 1055, "annotation": null}, {"text": "the", "start": 1056, "end": 1059, "annotation": null}, {"text": "3SRT", "start": 1060, "end": 1064, "annotation": null}, {"text": "satisfactorily", "start": 1065, "end": 1079, "annotation": null}, {"text": "matches", "start": 1080, "end": 1087, "annotation": null}, {"text": "the", "start": 1088, "end": 1091, "annotation": null}, {"text": "experimental", "start": 1092, "end": 1104, "annotation": null}, {"text": "data", "start": 1105, "end": 1109, "annotation": null}, {"text": "obtained", "start": 1110, "end": 1118, "annotation": null}, {"text": "at", "start": 1119, "end": 1121, "annotation": null}, {"text": "different", "start": 1122, "end": 1131, "annotation": null}, {"text": "operation", "start": 1132, "end": 1141, "annotation": null}, {"text": "conditions", "start": 1142, "end": 1152, "annotation": null}, {"text": "such", "start": 1153, "end": 1157, "annotation": null}, {"text": "as", "start": 1158, "end": 1160, "annotation": null}, {"text": "current", "start": 1161, "end": 1168, "annotation": null}, {"text": "density", "start": 1169, "end": 1176, "annotation": null}, {"text": ",", "start": 1176, "end": 1177, "annotation": null}, {"text": "initial", "start": 1178, "end": 1185, "annotation": null}, {"text": "COD", "start": 1186, "end": 1189, "annotation": null}, {"text": "values", "start": 1190, "end": 1196, "annotation": null}, {"text": "and", "start": 1197, "end": 1200, "annotation": null}, {"text": "flow", "start": 1201, "end": 1205, "annotation": null}, {"text": "rate", "start": 1206, "end": 1210, "annotation": null}, {"text": ".", "start": 1210, "end": 1211, "annotation": null}], [{"text": "These", "start": 1212, "end": 1217, "annotation": null}, {"text": "results", "start": 1218, "end": 1225, "annotation": null}, {"text": "confirm", "start": 1226, "end": 1233, "annotation": null}, {"text": "the", "start": 1234, "end": 1237, "annotation": null}, {"text": "proposed", "start": 1238, "end": 1246, "annotation": null}, {"text": "3SRT", "start": 1247, "end": 1251, "annotation": null}, {"text": "could", "start": 1252, "end": 1257, "annotation": null}, {"text": "effectively", "start": 1258, "end": 1269, "annotation": null}, {"text": "predict", "start": 1270, "end": 1277, "annotation": null}, {"text": "the", "start": 1278, "end": 1281, "annotation": null}, {"text": "change", "start": 1282, "end": 1288, "annotation": null}, {"text": "of", "start": 1289, "end": 1291, "annotation": null}, {"text": "concentration", "start": 1292, "end": 1305, "annotation": null}, {"text": "of", "start": 1306, "end": 1308, "annotation": null}, {"text": "organic", "start": 1309, "end": 1316, "annotation": null}, {"text": "pollutants", "start": 1317, "end": 1327, "annotation": null}, {"text": "during", "start": 1328, "end": 1334, "annotation": null}, {"text": "electro-oxidation", "start": 1335, "end": 1352, "annotation": null}, {"text": "by", "start": 1353, "end": 1355, "annotation": null}, {"text": "using", "start": 1356, "end": 1361, "annotation": null}, {"text": "a", "start": 1362, "end": 1363, "annotation": null}, {"text": "PBER", "start": 1364, "end": 1368, "annotation": null}, {"text": ".", "start": 1368, "end": 1369, "annotation": null}]], "meta": {"doi": "10.1016/j.cej.2015.08.132"}} +{"remark": "doping_annt3", "text": "The compression creep behaviour of pressureless sintered Y2O3/Al2O3/AIN-doped Si3N4 was studied between 1473 and 1673 K, under stresses ranging from 100\u2013300 MPa. Strain rate versus stress and temperature analysis give a stress exponent n\u22431 and an activation energy Q=860 kJ mol\u22121. Microstructural change was investigated by transmission electron microscopy. The observed strain whorls, the stress exponent and the activation energy are indicative of a solution-diffusion-precipitation accommodated grain-boundary sliding where the diffusion through the glass is rate controlling.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "compression", "start": 4, "end": 15, "annotation": null}, {"text": "creep", "start": 16, "end": 21, "annotation": null}, {"text": "behaviour", "start": 22, "end": 31, "annotation": null}, {"text": "of", "start": 32, "end": 34, "annotation": null}, {"text": "pressureless", "start": 35, "end": 47, "annotation": null}, {"text": "sintered", "start": 48, "end": 56, "annotation": null}, {"text": "Y2O3", "start": 57, "end": 61, "annotation": "DOPANT"}, {"text": "/", "start": 61, "end": 62, "annotation": "DOPANT"}, {"text": "Al2O3", "start": 62, "end": 67, "annotation": "DOPANT"}, {"text": "/", "start": 67, "end": 68, "annotation": "DOPANT"}, {"text": "AIN", "start": 68, "end": 71, "annotation": "DOPANT"}, {"text": "-", "start": 71, "end": 72, "annotation": null}, {"text": "doped", "start": 72, "end": 77, "annotation": null}, {"text": "Si3N4", "start": 78, "end": 83, "annotation": "BASEMAT"}, {"text": "was", "start": 84, "end": 87, "annotation": null}, {"text": "studied", "start": 88, "end": 95, "annotation": null}, {"text": "between", "start": 96, "end": 103, "annotation": null}, {"text": "1473", "start": 104, "end": 108, "annotation": null}, {"text": "and", "start": 109, "end": 112, "annotation": null}, {"text": "1673", "start": 113, "end": 117, "annotation": null}, {"text": "K", "start": 118, "end": 119, "annotation": null}, {"text": ",", "start": 119, "end": 120, "annotation": null}, {"text": "under", "start": 121, "end": 126, "annotation": null}, {"text": "stresses", "start": 127, "end": 135, "annotation": null}, {"text": "ranging", "start": 136, "end": 143, "annotation": null}, {"text": "from", "start": 144, "end": 148, "annotation": null}, {"text": "100", "start": 149, "end": 152, "annotation": null}, {"text": "\u2013", "start": 152, "end": 153, "annotation": null}, {"text": "300", "start": 153, "end": 156, "annotation": null}, {"text": "MPa", "start": 157, "end": 160, "annotation": null}, {"text": ".", "start": 160, "end": 161, "annotation": null}], [{"text": "Strain", "start": 162, "end": 168, "annotation": null}, {"text": "rate", "start": 169, "end": 173, "annotation": null}, {"text": "versus", "start": 174, "end": 180, "annotation": null}, {"text": "stress", "start": 181, "end": 187, "annotation": null}, {"text": "and", "start": 188, "end": 191, "annotation": null}, {"text": "temperature", "start": 192, "end": 203, "annotation": null}, {"text": "analysis", "start": 204, "end": 212, "annotation": null}, {"text": "give", "start": 213, "end": 217, "annotation": null}, {"text": "a", "start": 218, "end": 219, "annotation": null}, {"text": "stress", "start": 220, "end": 226, "annotation": null}, {"text": "exponent", "start": 227, "end": 235, "annotation": null}, {"text": "n\u22431", "start": 236, "end": 239, "annotation": null}, {"text": "and", "start": 240, "end": 243, "annotation": null}, {"text": "an", "start": 244, "end": 246, "annotation": null}, {"text": "activation", "start": 247, "end": 257, "annotation": null}, {"text": "energy", "start": 258, "end": 264, "annotation": null}, {"text": "Q", "start": 265, "end": 266, "annotation": null}, {"text": "=", "start": 266, "end": 267, "annotation": null}, {"text": "860", "start": 267, "end": 270, "annotation": null}, {"text": "kJ", "start": 271, "end": 273, "annotation": null}, {"text": "mol\u22121", "start": 274, "end": 279, "annotation": null}, {"text": ".", "start": 279, "end": 280, "annotation": null}], [{"text": "Microstructural", "start": 281, "end": 296, "annotation": null}, {"text": "change", "start": 297, "end": 303, "annotation": null}, {"text": "was", "start": 304, "end": 307, "annotation": null}, {"text": "investigated", "start": 308, "end": 320, "annotation": null}, {"text": "by", "start": 321, "end": 323, "annotation": null}, {"text": "transmission", "start": 324, "end": 336, "annotation": null}, {"text": "electron", "start": 337, "end": 345, "annotation": null}, {"text": "microscopy", "start": 346, "end": 356, "annotation": null}, {"text": ".", "start": 356, "end": 357, "annotation": null}], [{"text": "The", "start": 358, "end": 361, "annotation": null}, {"text": "observed", "start": 362, "end": 370, "annotation": null}, {"text": "strain", "start": 371, "end": 377, "annotation": null}, {"text": "whorls", "start": 378, "end": 384, "annotation": null}, {"text": ",", "start": 384, "end": 385, "annotation": null}, {"text": "the", "start": 386, "end": 389, "annotation": null}, {"text": "stress", "start": 390, "end": 396, "annotation": null}, {"text": "exponent", "start": 397, "end": 405, "annotation": null}, {"text": "and", "start": 406, "end": 409, "annotation": null}, {"text": "the", "start": 410, "end": 413, "annotation": null}, {"text": "activation", "start": 414, "end": 424, "annotation": null}, {"text": "energy", "start": 425, "end": 431, "annotation": null}, {"text": "are", "start": 432, "end": 435, "annotation": null}, {"text": "indicative", "start": 436, "end": 446, "annotation": null}, {"text": "of", "start": 447, "end": 449, "annotation": null}, {"text": "a", "start": 450, "end": 451, "annotation": null}, {"text": "solution-diffusion-precipitation", "start": 452, "end": 484, "annotation": null}, {"text": "accommodated", "start": 485, "end": 497, "annotation": null}, {"text": "grain", "start": 498, "end": 503, "annotation": null}, {"text": "-", "start": 503, "end": 504, "annotation": null}, {"text": "boundary", "start": 504, "end": 512, "annotation": null}, {"text": "sliding", "start": 513, "end": 520, "annotation": null}, {"text": "where", "start": 521, "end": 526, "annotation": null}, {"text": "the", "start": 527, "end": 530, "annotation": null}, {"text": "diffusion", "start": 531, "end": 540, "annotation": null}, {"text": "through", "start": 541, "end": 548, "annotation": null}, {"text": "the", "start": 549, "end": 552, "annotation": null}, {"text": "glass", "start": 553, "end": 558, "annotation": null}, {"text": "is", "start": 559, "end": 561, "annotation": null}, {"text": "rate", "start": 562, "end": 566, "annotation": null}, {"text": "controlling", "start": 567, "end": 578, "annotation": null}, {"text": ".", "start": 578, "end": 579, "annotation": null}]], "meta": {"doi": "10.1007/BF00400873"}} +{"text": "The phonon Raman spectra of Bi2Sr2Ca1xYxCu2O8 + d (x = 0\u20131) have been investigated in a number of well-defined single crystal and polycrystalline samples. From the polarization and Y doping dependence, and from a comparison with previous reports on Bi-based cuprates, we identify the (6A1g + 1B1g) symmetry modes that are Raman allowed within the ideal body-centered tetragonal unit-cell. The vibrational modes that involve atoms in the CuO5 pyramid exhibit drastic changes with increasing Y doping: the bridging-oxygen phonon softens strongly, whereas the CuO2-plane phonons both harden and increase in intensity with increasing Y content. Although the intensity increases can be attributed to the reduced metallic screening in the hole-depleted Y doped samples, the phonon frequency variations are mainly due to the structural changes induced by the decrease in the average Ca/Y ion radius.", "meta": {"doi": "10.1016/S0921-5107(96)01634-0"}, "_input_hash": 369295952, "_task_hash": -1690616109, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "phonon", "start": 4, "end": 10, "id": 1, "annotation": null}, {"text": "Raman", "start": 11, "end": 16, "id": 2, "annotation": null}, {"text": "spectra", "start": 17, "end": 24, "id": 3, "annotation": null}, {"text": "of", "start": 25, "end": 27, "id": 4, "annotation": null}, {"text": "Bi2Sr2Ca1xYxCu2O8", "start": 28, "end": 45, "id": 5, "annotation": "BASEMAT"}, {"text": "+", "start": 46, "end": 47, "id": 6, "annotation": "BASEMAT"}, {"text": "d", "start": 48, "end": 49, "id": 7, "annotation": "BASEMAT"}, {"text": "(", "start": 50, "end": 51, "id": 8, "annotation": null}, {"text": "x", "start": 52, "end": 53, "id": 9, "annotation": "DOPMODQ"}, {"text": "=", "start": 54, "end": 55, "id": 10, "annotation": "DOPMODQ"}, {"text": "0\u20131", "start": 56, "end": 59, "id": 11, "annotation": "DOPMODQ"}, {"text": ")", "start": 60, "end": 61, "id": 12, "annotation": null}, {"text": "have", "start": 62, "end": 66, "id": 13, "annotation": null}, {"text": "been", "start": 67, "end": 71, "id": 14, "annotation": null}, {"text": "investigated", "start": 72, "end": 84, "id": 15, "annotation": null}, {"text": "in", "start": 85, "end": 87, "id": 16, "annotation": null}, {"text": "a", "start": 88, "end": 89, "id": 17, "annotation": null}, {"text": "number", "start": 90, "end": 96, "id": 18, "annotation": null}, {"text": "of", "start": 97, "end": 99, "id": 19, "annotation": null}, {"text": "well", "start": 100, "end": 104, "id": 20, "annotation": null}, {"text": "-", "start": 105, "end": 106, "id": 21, "annotation": null}, {"text": "defined", "start": 107, "end": 114, "id": 22, "annotation": null}, {"text": "single", "start": 115, "end": 121, "id": 23, "annotation": null}, {"text": "crystal", "start": 122, "end": 129, "id": 24, "annotation": null}, {"text": "and", "start": 130, "end": 133, "id": 25, "annotation": null}, {"text": "polycrystalline", "start": 134, "end": 149, "id": 26, "annotation": null}, {"text": "samples", "start": 150, "end": 157, "id": 27, "annotation": null}, {"text": ".", "start": 158, "end": 159, "id": 28, "annotation": null}], [{"text": "From", "start": 160, "end": 164, "id": 29, "annotation": null}, {"text": "the", "start": 165, "end": 168, "id": 30, "annotation": null}, {"text": "polarization", "start": 169, "end": 181, "id": 31, "annotation": null}, {"text": "and", "start": 182, "end": 185, "id": 32, "annotation": null}, {"text": "Y", "start": 186, "end": 187, "id": 33, "annotation": "DOPANT"}, {"text": "doping", "start": 188, "end": 194, "id": 34, "annotation": null}, {"text": "dependence", "start": 195, "end": 205, "id": 35, "annotation": null}, {"text": ",", "start": 206, "end": 207, "id": 36, "annotation": null}, {"text": "and", "start": 208, "end": 211, "id": 37, "annotation": null}, {"text": "from", "start": 212, "end": 216, "id": 38, "annotation": null}, {"text": "a", "start": 217, "end": 218, "id": 39, "annotation": null}, {"text": "comparison", "start": 219, "end": 229, "id": 40, "annotation": null}, {"text": "with", "start": 230, "end": 234, "id": 41, "annotation": null}, {"text": "previous", "start": 235, "end": 243, "id": 42, "annotation": null}, {"text": "reports", "start": 244, "end": 251, "id": 43, "annotation": null}, {"text": "on", "start": 252, "end": 254, "id": 44, "annotation": null}, {"text": "Bi", "start": 255, "end": 257, "id": 45, "annotation": null}, {"text": "-", "start": 258, "end": 259, "id": 46, "annotation": null}, {"text": "based", "start": 260, "end": 265, "id": 47, "annotation": null}, {"text": "cuprates", "start": 266, "end": 274, "id": 48, "annotation": null}, {"text": ",", "start": 275, "end": 276, "id": 49, "annotation": null}, {"text": "we", "start": 277, "end": 279, "id": 50, "annotation": null}, {"text": "identify", "start": 280, "end": 288, "id": 51, "annotation": null}, {"text": "the", "start": 289, "end": 292, "id": 52, "annotation": null}, {"text": "(", "start": 293, "end": 294, "id": 53, "annotation": null}, {"text": "6A1", "start": 295, "end": 298, "id": 54, "annotation": null}, {"text": "g", "start": 299, "end": 300, "id": 55, "annotation": null}, {"text": "+", "start": 301, "end": 302, "id": 56, "annotation": null}, {"text": "1B1", "start": 303, "end": 306, "id": 57, "annotation": null}, {"text": "g", "start": 307, "end": 308, "id": 58, "annotation": null}, {"text": ")", "start": 309, "end": 310, "id": 59, "annotation": null}, {"text": "symmetry", "start": 311, "end": 319, "id": 60, "annotation": null}, {"text": "modes", "start": 320, "end": 325, "id": 61, "annotation": null}, {"text": "that", "start": 326, "end": 330, "id": 62, "annotation": null}, {"text": "are", "start": 331, "end": 334, "id": 63, "annotation": null}, {"text": "Raman", "start": 335, "end": 340, "id": 64, "annotation": null}, {"text": "allowed", "start": 341, "end": 348, "id": 65, "annotation": null}, {"text": "within", "start": 349, "end": 355, "id": 66, "annotation": null}, {"text": "the", "start": 356, "end": 359, "id": 67, "annotation": null}, {"text": "ideal", "start": 360, "end": 365, "id": 68, "annotation": null}, {"text": "body", "start": 366, "end": 370, "id": 69, "annotation": null}, {"text": "-", "start": 371, "end": 372, "id": 70, "annotation": null}, {"text": "centered", "start": 373, "end": 381, "id": 71, "annotation": null}, {"text": "tetragonal", "start": 382, "end": 392, "id": 72, "annotation": null}, {"text": "unit", "start": 393, "end": 397, "id": 73, "annotation": null}, {"text": "-", "start": 398, "end": 399, "id": 74, "annotation": null}, {"text": "cell", "start": 400, "end": 404, "id": 75, "annotation": null}, {"text": ".", "start": 405, "end": 406, "id": 76, "annotation": null}], [{"text": "The", "start": 407, "end": 410, "id": 77, "annotation": null}, {"text": "vibrational", "start": 411, "end": 422, "id": 78, "annotation": null}, {"text": "modes", "start": 423, "end": 428, "id": 79, "annotation": null}, {"text": "that", "start": 429, "end": 433, "id": 80, "annotation": null}, {"text": "involve", "start": 434, "end": 441, "id": 81, "annotation": null}, {"text": "atoms", "start": 442, "end": 447, "id": 82, "annotation": null}, {"text": "in", "start": 448, "end": 450, "id": 83, "annotation": null}, {"text": "the", "start": 451, "end": 454, "id": 84, "annotation": null}, {"text": "CuO5", "start": 455, "end": 459, "id": 85, "annotation": null}, {"text": "pyramid", "start": 460, "end": 467, "id": 86, "annotation": null}, {"text": "exhibit", "start": 468, "end": 475, "id": 87, "annotation": null}, {"text": "drastic", "start": 476, "end": 483, "id": 88, "annotation": null}, {"text": "changes", "start": 484, "end": 491, "id": 89, "annotation": null}, {"text": "with", "start": 492, "end": 496, "id": 90, "annotation": null}, {"text": "increasing", "start": 497, "end": 507, "id": 91, "annotation": null}, {"text": "Y", "start": 508, "end": 509, "id": 92, "annotation": "DOPANT"}, {"text": "doping", "start": 510, "end": 516, "id": 93, "annotation": null}, {"text": ":", "start": 517, "end": 518, "id": 94, "annotation": null}, {"text": "the", "start": 519, "end": 522, "id": 95, "annotation": null}, {"text": "bridging", "start": 523, "end": 531, "id": 96, "annotation": null}, {"text": "-", "start": 532, "end": 533, "id": 97, "annotation": null}, {"text": "oxygen", "start": 534, "end": 540, "id": 98, "annotation": null}, {"text": "phonon", "start": 541, "end": 547, "id": 99, "annotation": null}, {"text": "softens", "start": 548, "end": 555, "id": 100, "annotation": null}, {"text": "strongly", "start": 556, "end": 564, "id": 101, "annotation": null}, {"text": ",", "start": 565, "end": 566, "id": 102, "annotation": null}, {"text": "whereas", "start": 567, "end": 574, "id": 103, "annotation": null}, {"text": "the", "start": 575, "end": 578, "id": 104, "annotation": null}, {"text": "CuO2-plane", "start": 579, "end": 589, "id": 105, "annotation": null}, {"text": "phonons", "start": 590, "end": 597, "id": 106, "annotation": null}, {"text": "both", "start": 598, "end": 602, "id": 107, "annotation": null}, {"text": "harden", "start": 603, "end": 609, "id": 108, "annotation": null}, {"text": "and", "start": 610, "end": 613, "id": 109, "annotation": null}, {"text": "increase", "start": 614, "end": 622, "id": 110, "annotation": null}, {"text": "in", "start": 623, "end": 625, "id": 111, "annotation": null}, {"text": "intensity", "start": 626, "end": 635, "id": 112, "annotation": null}, {"text": "with", "start": 636, "end": 640, "id": 113, "annotation": null}, {"text": "increasing", "start": 641, "end": 651, "id": 114, "annotation": null}, {"text": "Y", "start": 652, "end": 653, "id": 115, "annotation": "DOPANT"}, {"text": "content", "start": 654, "end": 661, "id": 116, "annotation": null}, {"text": ".", "start": 662, "end": 663, "id": 117, "annotation": null}], [{"text": "Although", "start": 664, "end": 672, "id": 118, "annotation": null}, {"text": "the", "start": 673, "end": 676, "id": 119, "annotation": null}, {"text": "intensity", "start": 677, "end": 686, "id": 120, "annotation": null}, {"text": "increases", "start": 687, "end": 696, "id": 121, "annotation": null}, {"text": "can", "start": 697, "end": 700, "id": 122, "annotation": null}, {"text": "be", "start": 701, "end": 703, "id": 123, "annotation": null}, {"text": "attributed", "start": 704, "end": 714, "id": 124, "annotation": null}, {"text": "to", "start": 715, "end": 717, "id": 125, "annotation": null}, {"text": "the", "start": 718, "end": 721, "id": 126, "annotation": null}, {"text": "reduced", "start": 722, "end": 729, "id": 127, "annotation": null}, {"text": "metallic", "start": 730, "end": 738, "id": 128, "annotation": null}, {"text": "screening", "start": 739, "end": 748, "id": 129, "annotation": null}, {"text": "in", "start": 749, "end": 751, "id": 130, "annotation": null}, {"text": "the", "start": 752, "end": 755, "id": 131, "annotation": null}, {"text": "hole", "start": 756, "end": 760, "id": 132, "annotation": null}, {"text": "-", "start": 761, "end": 762, "id": 133, "annotation": null}, {"text": "depleted", "start": 763, "end": 771, "id": 134, "annotation": null}, {"text": "Y", "start": 772, "end": 773, "id": 135, "annotation": "DOPANT"}, {"text": "doped", "start": 774, "end": 779, "id": 136, "annotation": null}, {"text": "samples", "start": 780, "end": 787, "id": 137, "annotation": "BASEMAT"}, {"text": ",", "start": 788, "end": 789, "id": 138, "annotation": null}, {"text": "the", "start": 790, "end": 793, "id": 139, "annotation": null}, {"text": "phonon", "start": 794, "end": 800, "id": 140, "annotation": null}, {"text": "frequency", "start": 801, "end": 810, "id": 141, "annotation": null}, {"text": "variations", "start": 811, "end": 821, "id": 142, "annotation": null}, {"text": "are", "start": 822, "end": 825, "id": 143, "annotation": null}, {"text": "mainly", "start": 826, "end": 832, "id": 144, "annotation": null}, {"text": "due", "start": 833, "end": 836, "id": 145, "annotation": null}, {"text": "to", "start": 837, "end": 839, "id": 146, "annotation": null}, {"text": "the", "start": 840, "end": 843, "id": 147, "annotation": null}, {"text": "structural", "start": 844, "end": 854, "id": 148, "annotation": null}, {"text": "changes", "start": 855, "end": 862, "id": 149, "annotation": null}, {"text": "induced", "start": 863, "end": 870, "id": 150, "annotation": null}, {"text": "by", "start": 871, "end": 873, "id": 151, "annotation": null}, {"text": "the", "start": 874, "end": 877, "id": 152, "annotation": null}, {"text": "decrease", "start": 878, "end": 886, "id": 153, "annotation": null}, {"text": "in", "start": 887, "end": 889, "id": 154, "annotation": null}, {"text": "the", "start": 890, "end": 893, "id": 155, "annotation": null}, {"text": "average", "start": 894, "end": 901, "id": 156, "annotation": null}, {"text": "Ca", "start": 902, "end": 904, "id": 157, "annotation": null}, {"text": "/", "start": 905, "end": 906, "id": 158, "annotation": null}, {"text": "Y", "start": 907, "end": 908, "id": 159, "annotation": "DOPANT"}, {"text": "ion", "start": 909, "end": 912, "id": 160, "annotation": null}, {"text": "radius", "start": 913, "end": 919, "id": 161, "annotation": null}, {"text": ".", "start": 920, "end": 921, "id": 162, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The interest in metal-organic frameworks (MOFs) is growing exponentially due to their remarkable properties (high porosity, large surface area, thermal, and mechanical stability). They are usually synthesized as bulk crystalline solid materials. However, the sustainable development of MOFs as technological systems, material design and tuning their shape are of prime importance in order to use them as efficient devices. The development of deposition or the growing approaches of these materials on various supports provide useful techniques to reach this goal. Moreover, to study some particular properties, such as optical, catalysis, or even photocatalysis, MOFs need to be attached onto transparent conductive oxide (TCO) supports, such as indium tin oxide (ITO) or fluorine-doped tin oxide (FTO). This review is focused on the early advances in the growth and deposition of MOFs on TCO supports via various conventional methods.", "meta": {"doi": "10.1039/c7nj03171h"}, "_input_hash": -572655493, "_task_hash": -1654555571, "tokens": [[{"text": "The", "start": 93, "end": 96, "id": 16, "annotation": null}, {"text": "interest", "start": 97, "end": 105, "id": 17, "annotation": null}, {"text": "in", "start": 106, "end": 108, "id": 18, "annotation": null}, {"text": "metal", "start": 109, "end": 114, "id": 19, "annotation": null}, {"text": "-", "start": 115, "end": 116, "id": 20, "annotation": null}, {"text": "organic", "start": 117, "end": 124, "id": 21, "annotation": null}, {"text": "frameworks", "start": 125, "end": 135, "id": 22, "annotation": null}, {"text": "(", "start": 136, "end": 137, "id": 23, "annotation": null}, {"text": "MOFs", "start": 138, "end": 142, "id": 24, "annotation": null}, {"text": ")", "start": 143, "end": 144, "id": 25, "annotation": null}, {"text": "is", "start": 145, "end": 147, "id": 26, "annotation": null}, {"text": "growing", "start": 148, "end": 155, "id": 27, "annotation": null}, {"text": "exponentially", "start": 156, "end": 169, "id": 28, "annotation": null}, {"text": "due", "start": 170, "end": 173, "id": 29, "annotation": null}, {"text": "to", "start": 174, "end": 176, "id": 30, "annotation": null}, {"text": "their", "start": 177, "end": 182, "id": 31, "annotation": null}, {"text": "remarkable", "start": 183, "end": 193, "id": 32, "annotation": null}, {"text": "properties", "start": 194, "end": 204, "id": 33, "annotation": null}, {"text": "(", "start": 205, "end": 206, "id": 34, "annotation": null}, {"text": "high", "start": 207, "end": 211, "id": 35, "annotation": null}, {"text": "porosity", "start": 212, "end": 220, "id": 36, "annotation": null}, {"text": ",", "start": 221, "end": 222, "id": 37, "annotation": null}, {"text": "large", "start": 223, "end": 228, "id": 38, "annotation": null}, {"text": "surface", "start": 229, "end": 236, "id": 39, "annotation": null}, {"text": "area", "start": 237, "end": 241, "id": 40, "annotation": null}, {"text": ",", "start": 242, "end": 243, "id": 41, "annotation": null}, {"text": "thermal", "start": 244, "end": 251, "id": 42, "annotation": null}, {"text": ",", "start": 252, "end": 253, "id": 43, "annotation": null}, {"text": "and", "start": 254, "end": 257, "id": 44, "annotation": null}, {"text": "mechanical", "start": 258, "end": 268, "id": 45, "annotation": null}, {"text": "stability", "start": 269, "end": 278, "id": 46, "annotation": null}, {"text": ")", "start": 279, "end": 280, "id": 47, "annotation": null}, {"text": ".", "start": 281, "end": 282, "id": 48, "annotation": null}], [{"text": "They", "start": 283, "end": 287, "id": 49, "annotation": null}, {"text": "are", "start": 288, "end": 291, "id": 50, "annotation": null}, {"text": "usually", "start": 292, "end": 299, "id": 51, "annotation": null}, {"text": "synthesized", "start": 300, "end": 311, "id": 52, "annotation": null}, {"text": "as", "start": 312, "end": 314, "id": 53, "annotation": null}, {"text": "bulk", "start": 315, "end": 319, "id": 54, "annotation": null}, {"text": "crystalline", "start": 320, "end": 331, "id": 55, "annotation": null}, {"text": "solid", "start": 332, "end": 337, "id": 56, "annotation": null}, {"text": "materials", "start": 338, "end": 347, "id": 57, "annotation": null}, {"text": ".", "start": 348, "end": 349, "id": 58, "annotation": null}], [{"text": "However", "start": 350, "end": 357, "id": 59, "annotation": null}, {"text": ",", "start": 358, "end": 359, "id": 60, "annotation": null}, {"text": "the", "start": 360, "end": 363, "id": 61, "annotation": null}, {"text": "sustainable", "start": 364, "end": 375, "id": 62, "annotation": null}, {"text": "development", "start": 376, "end": 387, "id": 63, "annotation": null}, {"text": "of", "start": 388, "end": 390, "id": 64, "annotation": null}, {"text": "MOFs", "start": 391, "end": 395, "id": 65, "annotation": null}, {"text": "as", "start": 396, "end": 398, "id": 66, "annotation": null}, {"text": "technological", "start": 399, "end": 412, "id": 67, "annotation": null}, {"text": "systems", "start": 413, "end": 420, "id": 68, "annotation": null}, {"text": ",", "start": 421, "end": 422, "id": 69, "annotation": null}, {"text": "material", "start": 423, "end": 431, "id": 70, "annotation": null}, {"text": "design", "start": 432, "end": 438, "id": 71, "annotation": null}, {"text": "and", "start": 439, "end": 442, "id": 72, "annotation": null}, {"text": "tuning", "start": 443, "end": 449, "id": 73, "annotation": null}, {"text": "their", "start": 450, "end": 455, "id": 74, "annotation": null}, {"text": "shape", "start": 456, "end": 461, "id": 75, "annotation": null}, {"text": "are", "start": 462, "end": 465, "id": 76, "annotation": null}, {"text": "of", "start": 466, "end": 468, "id": 77, "annotation": null}, {"text": "prime", "start": 469, "end": 474, "id": 78, "annotation": null}, {"text": "importance", "start": 475, "end": 485, "id": 79, "annotation": null}, {"text": "in", "start": 486, "end": 488, "id": 80, "annotation": null}, {"text": "order", "start": 489, "end": 494, "id": 81, "annotation": null}, {"text": "to", "start": 495, "end": 497, "id": 82, "annotation": null}, {"text": "use", "start": 498, "end": 501, "id": 83, "annotation": null}, {"text": "them", "start": 502, "end": 506, "id": 84, "annotation": null}, {"text": "as", "start": 507, "end": 509, "id": 85, "annotation": null}, {"text": "efficient", "start": 510, "end": 519, "id": 86, "annotation": null}, {"text": "devices", "start": 520, "end": 527, "id": 87, "annotation": null}, {"text": ".", "start": 528, "end": 529, "id": 88, "annotation": null}], [{"text": "The", "start": 530, "end": 533, "id": 89, "annotation": null}, {"text": "development", "start": 534, "end": 545, "id": 90, "annotation": null}, {"text": "of", "start": 546, "end": 548, "id": 91, "annotation": null}, {"text": "deposition", "start": 549, "end": 559, "id": 92, "annotation": null}, {"text": "or", "start": 560, "end": 562, "id": 93, "annotation": null}, {"text": "the", "start": 563, "end": 566, "id": 94, "annotation": null}, {"text": "growing", "start": 567, "end": 574, "id": 95, "annotation": null}, {"text": "approaches", "start": 575, "end": 585, "id": 96, "annotation": null}, {"text": "of", "start": 586, "end": 588, "id": 97, "annotation": null}, {"text": "these", "start": 589, "end": 594, "id": 98, "annotation": null}, {"text": "materials", "start": 595, "end": 604, "id": 99, "annotation": null}, {"text": "on", "start": 605, "end": 607, "id": 100, "annotation": null}, {"text": "various", "start": 608, "end": 615, "id": 101, "annotation": null}, {"text": "supports", "start": 616, "end": 624, "id": 102, "annotation": null}, {"text": "provide", "start": 625, "end": 632, "id": 103, "annotation": null}, {"text": "useful", "start": 633, "end": 639, "id": 104, "annotation": null}, {"text": "techniques", "start": 640, "end": 650, "id": 105, "annotation": null}, {"text": "to", "start": 651, "end": 653, "id": 106, "annotation": null}, {"text": "reach", "start": 654, "end": 659, "id": 107, "annotation": null}, {"text": "this", "start": 660, "end": 664, "id": 108, "annotation": null}, {"text": "goal", "start": 665, "end": 669, "id": 109, "annotation": null}, {"text": ".", "start": 670, "end": 671, "id": 110, "annotation": null}], [{"text": "Moreover", "start": 672, "end": 680, "id": 111, "annotation": null}, {"text": ",", "start": 681, "end": 682, "id": 112, "annotation": null}, {"text": "to", "start": 683, "end": 685, "id": 113, "annotation": null}, {"text": "study", "start": 686, "end": 691, "id": 114, "annotation": null}, {"text": "some", "start": 692, "end": 696, "id": 115, "annotation": null}, {"text": "particular", "start": 697, "end": 707, "id": 116, "annotation": null}, {"text": "properties", "start": 708, "end": 718, "id": 117, "annotation": null}, {"text": ",", "start": 719, "end": 720, "id": 118, "annotation": null}, {"text": "such", "start": 721, "end": 725, "id": 119, "annotation": null}, {"text": "as", "start": 726, "end": 728, "id": 120, "annotation": null}, {"text": "optical", "start": 729, "end": 736, "id": 121, "annotation": null}, {"text": ",", "start": 737, "end": 738, "id": 122, "annotation": null}, {"text": "catalysis", "start": 739, "end": 748, "id": 123, "annotation": null}, {"text": ",", "start": 749, "end": 750, "id": 124, "annotation": null}, {"text": "or", "start": 751, "end": 753, "id": 125, "annotation": null}, {"text": "even", "start": 754, "end": 758, "id": 126, "annotation": null}, {"text": "photocatalysis", "start": 759, "end": 773, "id": 127, "annotation": null}, {"text": ",", "start": 774, "end": 775, "id": 128, "annotation": null}, {"text": "MOFs", "start": 776, "end": 780, "id": 129, "annotation": null}, {"text": "need", "start": 781, "end": 785, "id": 130, "annotation": null}, {"text": "to", "start": 786, "end": 788, "id": 131, "annotation": null}, {"text": "be", "start": 789, "end": 791, "id": 132, "annotation": null}, {"text": "attached", "start": 792, "end": 800, "id": 133, "annotation": null}, {"text": "onto", "start": 801, "end": 805, "id": 134, "annotation": null}, {"text": "transparent", "start": 806, "end": 817, "id": 135, "annotation": null}, {"text": "conductive", "start": 818, "end": 828, "id": 136, "annotation": null}, {"text": "oxide", "start": 829, "end": 834, "id": 137, "annotation": null}, {"text": "(", "start": 835, "end": 836, "id": 138, "annotation": null}, {"text": "TCO", "start": 837, "end": 840, "id": 139, "annotation": null}, {"text": ")", "start": 841, "end": 842, "id": 140, "annotation": null}, {"text": "supports", "start": 843, "end": 851, "id": 141, "annotation": null}, {"text": ",", "start": 852, "end": 853, "id": 142, "annotation": null}, {"text": "such", "start": 854, "end": 858, "id": 143, "annotation": null}, {"text": "as", "start": 859, "end": 861, "id": 144, "annotation": null}, {"text": "indium", "start": 862, "end": 868, "id": 145, "annotation": null}, {"text": "tin", "start": 869, "end": 872, "id": 146, "annotation": null}, {"text": "oxide", "start": 873, "end": 878, "id": 147, "annotation": null}, {"text": "(", "start": 879, "end": 880, "id": 148, "annotation": null}, {"text": "ITO", "start": 881, "end": 884, "id": 149, "annotation": null}, {"text": ")", "start": 885, "end": 886, "id": 150, "annotation": null}, {"text": "or", "start": 887, "end": 889, "id": 151, "annotation": null}, {"text": "fluorine", "start": 890, "end": 898, "id": 152, "annotation": "DOPANT"}, {"text": "-", "start": 899, "end": 900, "id": 153, "annotation": null}, {"text": "doped", "start": 901, "end": 906, "id": 154, "annotation": null}, {"text": "tin", "start": 907, "end": 910, "id": 155, "annotation": "BASEMAT"}, {"text": "oxide", "start": 911, "end": 916, "id": 156, "annotation": "BASEMAT"}, {"text": "(", "start": 917, "end": 918, "id": 157, "annotation": null}, {"text": "FTO", "start": 919, "end": 922, "id": 158, "annotation": null}, {"text": ")", "start": 923, "end": 924, "id": 159, "annotation": null}, {"text": ".", "start": 925, "end": 926, "id": 160, "annotation": null}], [{"text": "This", "start": 927, "end": 931, "id": 161, "annotation": null}, {"text": "review", "start": 932, "end": 938, "id": 162, "annotation": null}, {"text": "is", "start": 939, "end": 941, "id": 163, "annotation": null}, {"text": "focused", "start": 942, "end": 949, "id": 164, "annotation": null}, {"text": "on", "start": 950, "end": 952, "id": 165, "annotation": null}, {"text": "the", "start": 953, "end": 956, "id": 166, "annotation": null}, {"text": "early", "start": 957, "end": 962, "id": 167, "annotation": null}, {"text": "advances", "start": 963, "end": 971, "id": 168, "annotation": null}, {"text": "in", "start": 972, "end": 974, "id": 169, "annotation": null}, {"text": "the", "start": 975, "end": 978, "id": 170, "annotation": null}, {"text": "growth", "start": 979, "end": 985, "id": 171, "annotation": null}, {"text": "and", "start": 986, "end": 989, "id": 172, "annotation": null}, {"text": "deposition", "start": 990, "end": 1000, "id": 173, "annotation": null}, {"text": "of", "start": 1001, "end": 1003, "id": 174, "annotation": null}, {"text": "MOFs", "start": 1004, "end": 1008, "id": 175, "annotation": null}, {"text": "on", "start": 1009, "end": 1011, "id": 176, "annotation": null}, {"text": "TCO", "start": 1012, "end": 1015, "id": 177, "annotation": null}, {"text": "supports", "start": 1016, "end": 1024, "id": 178, "annotation": null}, {"text": "via", "start": 1025, "end": 1028, "id": 179, "annotation": null}, {"text": "various", "start": 1029, "end": 1036, "id": 180, "annotation": null}, {"text": "conventional", "start": 1037, "end": 1049, "id": 181, "annotation": null}, {"text": "methods", "start": 1050, "end": 1057, "id": 182, "annotation": null}, {"text": ".", "start": 1058, "end": 1059, "id": 183, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "Continuous-wave lasing of Bi-doped fiber lasers in a wavelength range of 1150-1215 nm with a power of up to 15 W has been obtained for the first time. The unsaturable optical losses in Bi-doped fibers have been revealed and their influence on the Bi-laser operation is investigated. Frequency doubling of the Bi-fiber laser radiation is demonstrated that can be used as a yellow light source (wavelength of 580 nm). \u00a9 2007 Optical Society of America.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Continuous", "start": 0, "end": 10, "annotation": null}, {"text": "-", "start": 10, "end": 11, "annotation": null}, {"text": "wave", "start": 11, "end": 15, "annotation": null}, {"text": "lasing", "start": 16, "end": 22, "annotation": null}, {"text": "of", "start": 23, "end": 25, "annotation": null}, {"text": "Bi-doped", "start": 26, "end": 34, "annotation": "DOPANT"}, {"text": "fiber", "start": 35, "end": 40, "annotation": "BASEMAT"}, {"text": "lasers", "start": 41, "end": 47, "annotation": null}, {"text": "in", "start": 48, "end": 50, "annotation": null}, {"text": "a", "start": 51, "end": 52, "annotation": null}, {"text": "wavelength", "start": 53, "end": 63, "annotation": null}, {"text": "range", "start": 64, "end": 69, "annotation": null}, {"text": "of", "start": 70, "end": 72, "annotation": null}, {"text": "1150-1215", "start": 73, "end": 82, "annotation": null}, {"text": "nm", "start": 83, "end": 85, "annotation": null}, {"text": "with", "start": 86, "end": 90, "annotation": null}, {"text": "a", "start": 91, "end": 92, "annotation": null}, {"text": "power", "start": 93, "end": 98, "annotation": null}, {"text": "of", "start": 99, "end": 101, "annotation": null}, {"text": "up", "start": 102, "end": 104, "annotation": null}, {"text": "to", "start": 105, "end": 107, "annotation": null}, {"text": "15", "start": 108, "end": 110, "annotation": null}, {"text": "W", "start": 111, "end": 112, "annotation": null}, {"text": "has", "start": 113, "end": 116, "annotation": null}, {"text": "been", "start": 117, "end": 121, "annotation": null}, {"text": "obtained", "start": 122, "end": 130, "annotation": null}, {"text": "for", "start": 131, "end": 134, "annotation": null}, {"text": "the", "start": 135, "end": 138, "annotation": null}, {"text": "first", "start": 139, "end": 144, "annotation": null}, {"text": "time", "start": 145, "end": 149, "annotation": null}, {"text": ".", "start": 149, "end": 150, "annotation": null}], [{"text": "The", "start": 151, "end": 154, "annotation": null}, {"text": "unsaturable", "start": 155, "end": 166, "annotation": null}, {"text": "optical", "start": 167, "end": 174, "annotation": null}, {"text": "losses", "start": 175, "end": 181, "annotation": null}, {"text": "in", "start": 182, "end": 184, "annotation": null}, {"text": "Bi-doped", "start": 185, "end": 193, "annotation": "DOPANT"}, {"text": "fibers", "start": 194, "end": 200, "annotation": "BASEMAT"}, {"text": "have", "start": 201, "end": 205, "annotation": null}, {"text": "been", "start": 206, "end": 210, "annotation": null}, {"text": "revealed", "start": 211, "end": 219, "annotation": null}, {"text": "and", "start": 220, "end": 223, "annotation": null}, {"text": "their", "start": 224, "end": 229, "annotation": null}, {"text": "influence", "start": 230, "end": 239, "annotation": null}, {"text": "on", "start": 240, "end": 242, "annotation": null}, {"text": "the", "start": 243, "end": 246, "annotation": null}, {"text": "Bi-laser", "start": 247, "end": 255, "annotation": null}, {"text": "operation", "start": 256, "end": 265, "annotation": null}, {"text": "is", "start": 266, "end": 268, "annotation": null}, {"text": "investigated", "start": 269, "end": 281, "annotation": null}, {"text": ".", "start": 281, "end": 282, "annotation": null}], [{"text": "Frequency", "start": 283, "end": 292, "annotation": null}, {"text": "doubling", "start": 293, "end": 301, "annotation": null}, {"text": "of", "start": 302, "end": 304, "annotation": null}, {"text": "the", "start": 305, "end": 308, "annotation": null}, {"text": "Bi-fiber", "start": 309, "end": 317, "annotation": null}, {"text": "laser", "start": 318, "end": 323, "annotation": null}, {"text": "radiation", "start": 324, "end": 333, "annotation": null}, {"text": "is", "start": 334, "end": 336, "annotation": null}, {"text": "demonstrated", "start": 337, "end": 349, "annotation": null}, {"text": "that", "start": 350, "end": 354, "annotation": null}, {"text": "can", "start": 355, "end": 358, "annotation": null}, {"text": "be", "start": 359, "end": 361, "annotation": null}, {"text": "used", "start": 362, "end": 366, "annotation": null}, {"text": "as", "start": 367, "end": 369, "annotation": null}, {"text": "a", "start": 370, "end": 371, "annotation": null}, {"text": "yellow", "start": 372, "end": 378, "annotation": null}, {"text": "light", "start": 379, "end": 384, "annotation": null}, {"text": "source", "start": 385, "end": 391, "annotation": null}, {"text": "(", "start": 392, "end": 393, "annotation": null}, {"text": "wavelength", "start": 393, "end": 403, "annotation": null}, {"text": "of", "start": 404, "end": 406, "annotation": null}, {"text": "580", "start": 407, "end": 410, "annotation": null}, {"text": "nm", "start": 411, "end": 413, "annotation": null}, {"text": ")", "start": 413, "end": 414, "annotation": null}, {"text": ".", "start": 414, "end": 415, "annotation": null}]]} -{"text": "Polycrystalline samples of Ca3\u2212xAgxCo3.95Fe0.05O9+\u03b4 (x\u00a0=\u00a00.0, 0.1, 0.2, and 0.3) have been prepared by conventional solid-state synthesis. The x-ray diffraction patterns reveal that all the samples are single phase. The thermopower of all the samples is positive, indicating that the predominant carriers are holes over the entire temperature range. The electrical resistivity and thermopower simultaneously decrease with increasing Ag content. The highest power factor (2.66\u00a0\u03bcW\u00a0cm\u22121\u00a0K\u22122 at 150\u00a0K) is reached for the Ca2.8Ag0.2Co3.95Fe0.05O9+\u03b4, representing an improvement of about 16\u00a0% compared to the undoped sample. These results suggest that the Ag is an effective doping element for enhancing the thermoelectric properties of Ca3Co3.95Fe0.05O9+\u03b4.", "meta": {"doi": "10.1007/s11664-013-2922-3"}, "_input_hash": 1171520742, "_task_hash": -250267072, "tokens": [[{"text": "Polycrystalline", "start": 0, "end": 15, "id": 0, "annotation": null}, {"text": "samples", "start": 16, "end": 23, "id": 1, "annotation": null}, {"text": "of", "start": 24, "end": 26, "id": 2, "annotation": null}, {"text": "Ca3\u2212xAgxCo3.95Fe0.05O9+\u03b4", "start": 27, "end": 51, "id": 3, "annotation": "BASEMAT"}, {"text": "(", "start": 52, "end": 53, "id": 4, "annotation": null}, {"text": "x", "start": 54, "end": 55, "id": 5, "annotation": "DOPMODQ"}, {"text": "=", "start": 56, "end": 57, "id": 7, "annotation": null}, {"text": "0.0", "start": 58, "end": 61, "id": 9, "annotation": null}, {"text": ",", "start": 62, "end": 63, "id": 10, "annotation": null}, {"text": "0.1", "start": 64, "end": 67, "id": 11, "annotation": null}, {"text": ",", "start": 68, "end": 69, "id": 12, "annotation": null}, {"text": "0.2", "start": 70, "end": 73, "id": 13, "annotation": null}, {"text": ",", "start": 74, "end": 75, "id": 14, "annotation": null}, {"text": "and", "start": 76, "end": 79, "id": 15, "annotation": null}, {"text": "0.3", "start": 80, "end": 83, "id": 16, "annotation": "DOPMODQ"}, {"text": ")", "start": 84, "end": 85, "id": 17, "annotation": null}, {"text": "have", "start": 86, "end": 90, "id": 18, "annotation": null}, {"text": "been", "start": 91, "end": 95, "id": 19, "annotation": null}, {"text": "prepared", "start": 96, "end": 104, "id": 20, "annotation": null}, {"text": "by", "start": 105, "end": 107, "id": 21, "annotation": null}, {"text": "conventional", "start": 108, "end": 120, "id": 22, "annotation": null}, {"text": "solid", "start": 121, "end": 126, "id": 23, "annotation": null}, {"text": "-", "start": 127, "end": 128, "id": 24, "annotation": null}, {"text": "state", "start": 129, "end": 134, "id": 25, "annotation": null}, {"text": "synthesis", "start": 135, "end": 144, "id": 26, "annotation": null}, {"text": ".", "start": 145, "end": 146, "id": 27, "annotation": null}], [{"text": "The", "start": 147, "end": 150, "id": 28, "annotation": null}, {"text": "x", "start": 151, "end": 152, "id": 29, "annotation": null}, {"text": "-", "start": 153, "end": 154, "id": 30, "annotation": null}, {"text": "ray", "start": 155, "end": 158, "id": 31, "annotation": null}, {"text": "diffraction", "start": 159, "end": 170, "id": 32, "annotation": null}, {"text": "patterns", "start": 171, "end": 179, "id": 33, "annotation": null}, {"text": "reveal", "start": 180, "end": 186, "id": 34, "annotation": null}, {"text": "that", "start": 187, "end": 191, "id": 35, "annotation": null}, {"text": "all", "start": 192, "end": 195, "id": 36, "annotation": null}, {"text": "the", "start": 196, "end": 199, "id": 37, "annotation": null}, {"text": "samples", "start": 200, "end": 207, "id": 38, "annotation": null}, {"text": "are", "start": 208, "end": 211, "id": 39, "annotation": null}, {"text": "single", "start": 212, "end": 218, "id": 40, "annotation": null}, {"text": "phase", "start": 219, "end": 224, "id": 41, "annotation": null}, {"text": ".", "start": 225, "end": 226, "id": 42, "annotation": null}], [{"text": "The", "start": 227, "end": 230, "id": 43, "annotation": null}, {"text": "thermopower", "start": 231, "end": 242, "id": 44, "annotation": null}, {"text": "of", "start": 243, "end": 245, "id": 45, "annotation": null}, {"text": "all", "start": 246, "end": 249, "id": 46, "annotation": null}, {"text": "the", "start": 250, "end": 253, "id": 47, "annotation": null}, {"text": "samples", "start": 254, "end": 261, "id": 48, "annotation": null}, {"text": "is", "start": 262, "end": 264, "id": 49, "annotation": null}, {"text": "positive", "start": 265, "end": 273, "id": 50, "annotation": null}, {"text": ",", "start": 274, "end": 275, "id": 51, "annotation": null}, {"text": "indicating", "start": 276, "end": 286, "id": 52, "annotation": null}, {"text": "that", "start": 287, "end": 291, "id": 53, "annotation": null}, {"text": "the", "start": 292, "end": 295, "id": 54, "annotation": null}, {"text": "predominant", "start": 296, "end": 307, "id": 55, "annotation": null}, {"text": "carriers", "start": 308, "end": 316, "id": 56, "annotation": null}, {"text": "are", "start": 317, "end": 320, "id": 57, "annotation": null}, {"text": "holes", "start": 321, "end": 326, "id": 58, "annotation": null}, {"text": "over", "start": 327, "end": 331, "id": 59, "annotation": null}, {"text": "the", "start": 332, "end": 335, "id": 60, "annotation": null}, {"text": "entire", "start": 336, "end": 342, "id": 61, "annotation": null}, {"text": "temperature", "start": 343, "end": 354, "id": 62, "annotation": null}, {"text": "range", "start": 355, "end": 360, "id": 63, "annotation": null}, {"text": ".", "start": 361, "end": 362, "id": 64, "annotation": null}], [{"text": "The", "start": 363, "end": 366, "id": 65, "annotation": null}, {"text": "electrical", "start": 367, "end": 377, "id": 66, "annotation": null}, {"text": "resistivity", "start": 378, "end": 389, "id": 67, "annotation": null}, {"text": "and", "start": 390, "end": 393, "id": 68, "annotation": null}, {"text": "thermopower", "start": 394, "end": 405, "id": 69, "annotation": null}, {"text": "simultaneously", "start": 406, "end": 420, "id": 70, "annotation": null}, {"text": "decrease", "start": 421, "end": 429, "id": 71, "annotation": null}, {"text": "with", "start": 430, "end": 434, "id": 72, "annotation": null}, {"text": "increasing", "start": 435, "end": 445, "id": 73, "annotation": null}, {"text": "Ag", "start": 446, "end": 448, "id": 74, "annotation": null}, {"text": "content", "start": 449, "end": 456, "id": 75, "annotation": null}, {"text": ".", "start": 457, "end": 458, "id": 76, "annotation": null}], [{"text": "The", "start": 459, "end": 462, "id": 77, "annotation": null}, {"text": "highest", "start": 463, "end": 470, "id": 78, "annotation": null}, {"text": "power", "start": 471, "end": 476, "id": 79, "annotation": null}, {"text": "factor", "start": 477, "end": 483, "id": 80, "annotation": null}, {"text": "(", "start": 484, "end": 485, "id": 81, "annotation": null}, {"text": "2.66", "start": 486, "end": 490, "id": 82, "annotation": null}, {"text": "\u03bcW", "start": 491, "end": 493, "id": 84, "annotation": null}, {"text": "cm\u22121", "start": 494, "end": 498, "id": 86, "annotation": null}, {"text": "K\u22122", "start": 499, "end": 502, "id": 88, "annotation": null}, {"text": "at", "start": 503, "end": 505, "id": 89, "annotation": null}, {"text": "150", "start": 506, "end": 509, "id": 90, "annotation": null}, {"text": "K", "start": 510, "end": 511, "id": 92, "annotation": null}, {"text": ")", "start": 512, "end": 513, "id": 93, "annotation": null}, {"text": "is", "start": 514, "end": 516, "id": 94, "annotation": null}, {"text": "reached", "start": 517, "end": 524, "id": 95, "annotation": null}, {"text": "for", "start": 525, "end": 528, "id": 96, "annotation": null}, {"text": "the", "start": 529, "end": 532, "id": 97, "annotation": null}, {"text": "Ca2.8Ag0.2Co3.95Fe0.05O9+\u03b4", "start": 533, "end": 559, "id": 98, "annotation": null}, {"text": ",", "start": 560, "end": 561, "id": 99, "annotation": null}, {"text": "representing", "start": 562, "end": 574, "id": 100, "annotation": null}, {"text": "an", "start": 575, "end": 577, "id": 101, "annotation": null}, {"text": "improvement", "start": 578, "end": 589, "id": 102, "annotation": null}, {"text": "of", "start": 590, "end": 592, "id": 103, "annotation": null}, {"text": "about", "start": 593, "end": 598, "id": 104, "annotation": null}, {"text": "16", "start": 599, "end": 601, "id": 105, "annotation": null}, {"text": "%", "start": 602, "end": 603, "id": 107, "annotation": null}, {"text": "compared", "start": 604, "end": 612, "id": 108, "annotation": null}, {"text": "to", "start": 613, "end": 615, "id": 109, "annotation": null}, {"text": "the", "start": 616, "end": 619, "id": 110, "annotation": null}, {"text": "undoped", "start": 620, "end": 627, "id": 111, "annotation": null}, {"text": "sample", "start": 628, "end": 634, "id": 112, "annotation": null}, {"text": ".", "start": 635, "end": 636, "id": 113, "annotation": null}], [{"text": "These", "start": 637, "end": 642, "id": 114, "annotation": null}, {"text": "results", "start": 643, "end": 650, "id": 115, "annotation": null}, {"text": "suggest", "start": 651, "end": 658, "id": 116, "annotation": null}, {"text": "that", "start": 659, "end": 663, "id": 117, "annotation": null}, {"text": "the", "start": 664, "end": 667, "id": 118, "annotation": null}, {"text": "Ag", "start": 668, "end": 670, "id": 119, "annotation": "DOPANT"}, {"text": "is", "start": 671, "end": 673, "id": 120, "annotation": null}, {"text": "an", "start": 674, "end": 676, "id": 121, "annotation": null}, {"text": "effective", "start": 677, "end": 686, "id": 122, "annotation": null}, {"text": "doping", "start": 687, "end": 693, "id": 123, "annotation": null}, {"text": "element", "start": 694, "end": 701, "id": 124, "annotation": null}, {"text": "for", "start": 702, "end": 705, "id": 125, "annotation": null}, {"text": "enhancing", "start": 706, "end": 715, "id": 126, "annotation": null}, {"text": "the", "start": 716, "end": 719, "id": 127, "annotation": null}, {"text": "thermoelectric", "start": 720, "end": 734, "id": 128, "annotation": null}, {"text": "properties", "start": 735, "end": 745, "id": 129, "annotation": null}, {"text": "of", "start": 746, "end": 748, "id": 130, "annotation": null}, {"text": "Ca3Co3.95Fe0.05O9+\u03b4", "start": 749, "end": 768, "id": 131, "annotation": "BASEMAT"}, {"text": ".", "start": 769, "end": 770, "id": 132, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "When the metal contact of a silicon solar cell is restricted to a fraction of the rear surface, the flow of electrons and holes towards that contact is constricted, which is beneficial for minority charge carriers but detrimental for majority carriers. It is possible to describe their 2D/3D transport and determine their concentration in the vertical and transversal dimensions of the solar cell by separately studying the central region near the contact and the peripheral region surrounding it. A virtue of such geometric approach is that it establishes a link between analytical models and computer simulations, providing both physical insight and sufficient accuracy to optimise partial rear contact devices. In this paper, we extend a previous version of the geometric model to solar cells having a full-area, locally contacted dopant diffusion on the rear surface. The case for n-type versus p-type wafers is considered, point contacts are compared with line contacts, including the impact of the metal/semiconductor resistance and bulk recombination is evaluated. Copyright \u00a9 2013 John Wiley & Sons, Ltd.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "When", "start": 0, "end": 4, "annotation": null}, {"text": "the", "start": 5, "end": 8, "annotation": null}, {"text": "metal", "start": 9, "end": 14, "annotation": null}, {"text": "contact", "start": 15, "end": 22, "annotation": null}, {"text": "of", "start": 23, "end": 25, "annotation": null}, {"text": "a", "start": 26, "end": 27, "annotation": null}, {"text": "silicon", "start": 28, "end": 35, "annotation": null}, {"text": "solar", "start": 36, "end": 41, "annotation": null}, {"text": "cell", "start": 42, "end": 46, "annotation": null}, {"text": "is", "start": 47, "end": 49, "annotation": null}, {"text": "restricted", "start": 50, "end": 60, "annotation": null}, {"text": "to", "start": 61, "end": 63, "annotation": null}, {"text": "a", "start": 64, "end": 65, "annotation": null}, {"text": "fraction", "start": 66, "end": 74, "annotation": null}, {"text": "of", "start": 75, "end": 77, "annotation": null}, {"text": "the", "start": 78, "end": 81, "annotation": null}, {"text": "rear", "start": 82, "end": 86, "annotation": null}, {"text": "surface", "start": 87, "end": 94, "annotation": null}, {"text": ",", "start": 94, "end": 95, "annotation": null}, {"text": "the", "start": 96, "end": 99, "annotation": null}, {"text": "flow", "start": 100, "end": 104, "annotation": null}, {"text": "of", "start": 105, "end": 107, "annotation": null}, {"text": "electrons", "start": 108, "end": 117, "annotation": null}, {"text": "and", "start": 118, "end": 121, "annotation": null}, {"text": "holes", "start": 122, "end": 127, "annotation": null}, {"text": "towards", "start": 128, "end": 135, "annotation": null}, {"text": "that", "start": 136, "end": 140, "annotation": null}, {"text": "contact", "start": 141, "end": 148, "annotation": null}, {"text": "is", "start": 149, "end": 151, "annotation": null}, {"text": "constricted", "start": 152, "end": 163, "annotation": null}, {"text": ",", "start": 163, "end": 164, "annotation": null}, {"text": "which", "start": 165, "end": 170, "annotation": null}, {"text": "is", "start": 171, "end": 173, "annotation": null}, {"text": "beneficial", "start": 174, "end": 184, "annotation": null}, {"text": "for", "start": 185, "end": 188, "annotation": null}, {"text": "minority", "start": 189, "end": 197, "annotation": null}, {"text": "charge", "start": 198, "end": 204, "annotation": null}, {"text": "carriers", "start": 205, "end": 213, "annotation": null}, {"text": "but", "start": 214, "end": 217, "annotation": null}, {"text": "detrimental", "start": 218, "end": 229, "annotation": null}, {"text": "for", "start": 230, "end": 233, "annotation": null}, {"text": "majority", "start": 234, "end": 242, "annotation": null}, {"text": "carriers", "start": 243, "end": 251, "annotation": null}, {"text": ".", "start": 251, "end": 252, "annotation": null}], [{"text": "It", "start": 253, "end": 255, "annotation": null}, {"text": "is", "start": 256, "end": 258, "annotation": null}, {"text": "possible", "start": 259, "end": 267, "annotation": null}, {"text": "to", "start": 268, "end": 270, "annotation": null}, {"text": "describe", "start": 271, "end": 279, "annotation": null}, {"text": "their", "start": 280, "end": 285, "annotation": null}, {"text": "2D", "start": 286, "end": 288, "annotation": null}, {"text": "/", "start": 288, "end": 289, "annotation": null}, {"text": "3D", "start": 289, "end": 291, "annotation": null}, {"text": "transport", "start": 292, "end": 301, "annotation": null}, {"text": "and", "start": 302, "end": 305, "annotation": null}, {"text": "determine", "start": 306, "end": 315, "annotation": null}, {"text": "their", "start": 316, "end": 321, "annotation": null}, {"text": "concentration", "start": 322, "end": 335, "annotation": null}, {"text": "in", "start": 336, "end": 338, "annotation": null}, {"text": "the", "start": 339, "end": 342, "annotation": null}, {"text": "vertical", "start": 343, "end": 351, "annotation": null}, {"text": "and", "start": 352, "end": 355, "annotation": null}, {"text": "transversal", "start": 356, "end": 367, "annotation": null}, {"text": "dimensions", "start": 368, "end": 378, "annotation": null}, {"text": "of", "start": 379, "end": 381, "annotation": null}, {"text": "the", "start": 382, "end": 385, "annotation": null}, {"text": "solar", "start": 386, "end": 391, "annotation": null}, {"text": "cell", "start": 392, "end": 396, "annotation": null}, {"text": "by", "start": 397, "end": 399, "annotation": null}, {"text": "separately", "start": 400, "end": 410, "annotation": null}, {"text": "studying", "start": 411, "end": 419, "annotation": null}, {"text": "the", "start": 420, "end": 423, "annotation": null}, {"text": "central", "start": 424, "end": 431, "annotation": null}, {"text": "region", "start": 432, "end": 438, "annotation": null}, {"text": "near", "start": 439, "end": 443, "annotation": null}, {"text": "the", "start": 444, "end": 447, "annotation": null}, {"text": "contact", "start": 448, "end": 455, "annotation": null}, {"text": "and", "start": 456, "end": 459, "annotation": null}, {"text": "the", "start": 460, "end": 463, "annotation": null}, {"text": "peripheral", "start": 464, "end": 474, "annotation": null}, {"text": "region", "start": 475, "end": 481, "annotation": null}, {"text": "surrounding", "start": 482, "end": 493, "annotation": null}, {"text": "it", "start": 494, "end": 496, "annotation": null}, {"text": ".", "start": 496, "end": 497, "annotation": null}], [{"text": "A", "start": 498, "end": 499, "annotation": null}, {"text": "virtue", "start": 500, "end": 506, "annotation": null}, {"text": "of", "start": 507, "end": 509, "annotation": null}, {"text": "such", "start": 510, "end": 514, "annotation": null}, {"text": "geometric", "start": 515, "end": 524, "annotation": null}, {"text": "approach", "start": 525, "end": 533, "annotation": null}, {"text": "is", "start": 534, "end": 536, "annotation": null}, {"text": "that", "start": 537, "end": 541, "annotation": null}, {"text": "it", "start": 542, "end": 544, "annotation": null}, {"text": "establishes", "start": 545, "end": 556, "annotation": null}, {"text": "a", "start": 557, "end": 558, "annotation": null}, {"text": "link", "start": 559, "end": 563, "annotation": null}, {"text": "between", "start": 564, "end": 571, "annotation": null}, {"text": "analytical", "start": 572, "end": 582, "annotation": null}, {"text": "models", "start": 583, "end": 589, "annotation": null}, {"text": "and", "start": 590, "end": 593, "annotation": null}, {"text": "computer", "start": 594, "end": 602, "annotation": null}, {"text": "simulations", "start": 603, "end": 614, "annotation": null}, {"text": ",", "start": 614, "end": 615, "annotation": null}, {"text": "providing", "start": 616, "end": 625, "annotation": null}, {"text": "both", "start": 626, "end": 630, "annotation": null}, {"text": "physical", "start": 631, "end": 639, "annotation": null}, {"text": "insight", "start": 640, "end": 647, "annotation": null}, {"text": "and", "start": 648, "end": 651, "annotation": null}, {"text": "sufficient", "start": 652, "end": 662, "annotation": null}, {"text": "accuracy", "start": 663, "end": 671, "annotation": null}, {"text": "to", "start": 672, "end": 674, "annotation": null}, {"text": "optimise", "start": 675, "end": 683, "annotation": null}, {"text": "partial", "start": 684, "end": 691, "annotation": null}, {"text": "rear", "start": 692, "end": 696, "annotation": null}, {"text": "contact", "start": 697, "end": 704, "annotation": null}, {"text": "devices", "start": 705, "end": 712, "annotation": null}, {"text": ".", "start": 712, "end": 713, "annotation": null}], [{"text": "In", "start": 714, "end": 716, "annotation": null}, {"text": "this", "start": 717, "end": 721, "annotation": null}, {"text": "paper", "start": 722, "end": 727, "annotation": null}, {"text": ",", "start": 727, "end": 728, "annotation": null}, {"text": "we", "start": 729, "end": 731, "annotation": null}, {"text": "extend", "start": 732, "end": 738, "annotation": null}, {"text": "a", "start": 739, "end": 740, "annotation": null}, {"text": "previous", "start": 741, "end": 749, "annotation": null}, {"text": "version", "start": 750, "end": 757, "annotation": null}, {"text": "of", "start": 758, "end": 760, "annotation": null}, {"text": "the", "start": 761, "end": 764, "annotation": null}, {"text": "geometric", "start": 765, "end": 774, "annotation": null}, {"text": "model", "start": 775, "end": 780, "annotation": null}, {"text": "to", "start": 781, "end": 783, "annotation": null}, {"text": "solar", "start": 784, "end": 789, "annotation": null}, {"text": "cells", "start": 790, "end": 795, "annotation": null}, {"text": "having", "start": 796, "end": 802, "annotation": null}, {"text": "a", "start": 803, "end": 804, "annotation": null}, {"text": "full", "start": 805, "end": 809, "annotation": null}, {"text": "-", "start": 809, "end": 810, "annotation": null}, {"text": "area", "start": 810, "end": 814, "annotation": null}, {"text": ",", "start": 814, "end": 815, "annotation": null}, {"text": "locally", "start": 816, "end": 823, "annotation": null}, {"text": "contacted", "start": 824, "end": 833, "annotation": null}, {"text": "dopant", "start": 834, "end": 840, "annotation": null}, {"text": "diffusion", "start": 841, "end": 850, "annotation": null}, {"text": "on", "start": 851, "end": 853, "annotation": null}, {"text": "the", "start": 854, "end": 857, "annotation": null}, {"text": "rear", "start": 858, "end": 862, "annotation": null}, {"text": "surface", "start": 863, "end": 870, "annotation": null}, {"text": ".", "start": 870, "end": 871, "annotation": null}], [{"text": "The", "start": 872, "end": 875, "annotation": null}, {"text": "case", "start": 876, "end": 880, "annotation": null}, {"text": "for", "start": 881, "end": 884, "annotation": null}, {"text": "n", "start": 885, "end": 886, "annotation": "DOPANT"}, {"text": "-", "start": 886, "end": 887, "annotation": "DOPANT"}, {"text": "type", "start": 887, "end": 891, "annotation": "DOPANT"}, {"text": "versus", "start": 892, "end": 898, "annotation": null}, {"text": "p", "start": 899, "end": 900, "annotation": "DOPANT"}, {"text": "-", "start": 900, "end": 901, "annotation": "DOPANT"}, {"text": "type", "start": 901, "end": 905, "annotation": "DOPANT"}, {"text": "wafers", "start": 906, "end": 912, "annotation": "BASEMAT"}, {"text": "is", "start": 913, "end": 915, "annotation": null}, {"text": "considered", "start": 916, "end": 926, "annotation": null}, {"text": ",", "start": 926, "end": 927, "annotation": null}, {"text": "point", "start": 928, "end": 933, "annotation": null}, {"text": "contacts", "start": 934, "end": 942, "annotation": null}, {"text": "are", "start": 943, "end": 946, "annotation": null}, {"text": "compared", "start": 947, "end": 955, "annotation": null}, {"text": "with", "start": 956, "end": 960, "annotation": null}, {"text": "line", "start": 961, "end": 965, "annotation": null}, {"text": "contacts", "start": 966, "end": 974, "annotation": null}, {"text": ",", "start": 974, "end": 975, "annotation": null}, {"text": "including", "start": 976, "end": 985, "annotation": null}, {"text": "the", "start": 986, "end": 989, "annotation": null}, {"text": "impact", "start": 990, "end": 996, "annotation": null}, {"text": "of", "start": 997, "end": 999, "annotation": null}, {"text": "the", "start": 1000, "end": 1003, "annotation": null}, {"text": "metal", "start": 1004, "end": 1009, "annotation": null}, {"text": "/", "start": 1009, "end": 1010, "annotation": null}, {"text": "semiconductor", "start": 1010, "end": 1023, "annotation": null}, {"text": "resistance", "start": 1024, "end": 1034, "annotation": null}, {"text": "and", "start": 1035, "end": 1038, "annotation": null}, {"text": "bulk", "start": 1039, "end": 1043, "annotation": null}, {"text": "recombination", "start": 1044, "end": 1057, "annotation": null}, {"text": "is", "start": 1058, "end": 1060, "annotation": null}, {"text": "evaluated", "start": 1061, "end": 1070, "annotation": null}, {"text": ".", "start": 1070, "end": 1071, "annotation": null}]]} -{"text": "Fabrication of a ZnO p-n homojunction within a single structure by a simple process is a challenging task. In this work, an intrinsic p-type surface conductive layer of ZnO with a controlled concentration of holes over n-type conductive bulk was obtained by a one-step room-temperature process via hydrogen plasma treatment. Non-contact surface sensitive techniques, such as Kelvin probe force microscopy and conductive force atomic microscopy, confirmed the existence of surface p-type conductivity through analyzing the distribution and concentration of charge carriers on the topmost surface of hydrogenated ZnO. A theoretical framework was constructed to provide a rationale of the p-type surface conductivity and justify its relation to the treatment time. It is believed that this finding will open a new possibility for the fabrication of ZnO based p-n junction devices.", "meta": {"doi": "10.1088/1361-6463/aa6e91"}, "_input_hash": 685532856, "_task_hash": 1997069167, "tokens": [[{"text": "Fabrication", "start": 27, "end": 38, "id": 5, "annotation": null}, {"text": "of", "start": 39, "end": 41, "id": 6, "annotation": null}, {"text": "a", "start": 42, "end": 43, "id": 7, "annotation": null}, {"text": "ZnO", "start": 44, "end": 47, "id": 8, "annotation": null}, {"text": "p", "start": 48, "end": 49, "id": 9, "annotation": null}, {"text": "-", "start": 50, "end": 51, "id": 10, "annotation": null}, {"text": "n", "start": 52, "end": 53, "id": 11, "annotation": null}, {"text": "homojunction", "start": 54, "end": 66, "id": 12, "annotation": null}, {"text": "within", "start": 67, "end": 73, "id": 13, "annotation": null}, {"text": "a", "start": 74, "end": 75, "id": 14, "annotation": null}, {"text": "single", "start": 76, "end": 82, "id": 15, "annotation": null}, {"text": "structure", "start": 83, "end": 92, "id": 16, "annotation": null}, {"text": "by", "start": 93, "end": 95, "id": 17, "annotation": null}, {"text": "a", "start": 96, "end": 97, "id": 18, "annotation": null}, {"text": "simple", "start": 98, "end": 104, "id": 19, "annotation": null}, {"text": "process", "start": 105, "end": 112, "id": 20, "annotation": null}, {"text": "is", "start": 113, "end": 115, "id": 21, "annotation": null}, {"text": "a", "start": 116, "end": 117, "id": 22, "annotation": null}, {"text": "challenging", "start": 118, "end": 129, "id": 23, "annotation": null}, {"text": "task", "start": 130, "end": 134, "id": 24, "annotation": null}, {"text": ".", "start": 135, "end": 136, "id": 25, "annotation": null}], [{"text": "In", "start": 137, "end": 139, "id": 26, "annotation": null}, {"text": "this", "start": 140, "end": 144, "id": 27, "annotation": null}, {"text": "work", "start": 145, "end": 149, "id": 28, "annotation": null}, {"text": ",", "start": 150, "end": 151, "id": 29, "annotation": null}, {"text": "an", "start": 152, "end": 154, "id": 30, "annotation": null}, {"text": "intrinsic", "start": 155, "end": 164, "id": 31, "annotation": null}, {"text": "p", "start": 165, "end": 166, "id": 32, "annotation": "DOPANT"}, {"text": "-", "start": 167, "end": 168, "id": 33, "annotation": null}, {"text": "type", "start": 169, "end": 173, "id": 34, "annotation": "DOPANT"}, {"text": "surface", "start": 174, "end": 181, "id": 35, "annotation": null}, {"text": "conductive", "start": 182, "end": 192, "id": 36, "annotation": null}, {"text": "layer", "start": 193, "end": 198, "id": 37, "annotation": null}, {"text": "of", "start": 199, "end": 201, "id": 38, "annotation": null}, {"text": "ZnO", "start": 202, "end": 205, "id": 39, "annotation": "BASEMAT"}, {"text": "with", "start": 206, "end": 210, "id": 40, "annotation": null}, {"text": "a", "start": 211, "end": 212, "id": 41, "annotation": null}, {"text": "controlled", "start": 213, "end": 223, "id": 42, "annotation": null}, {"text": "concentration", "start": 224, "end": 237, "id": 43, "annotation": null}, {"text": "of", "start": 238, "end": 240, "id": 44, "annotation": null}, {"text": "holes", "start": 241, "end": 246, "id": 45, "annotation": "DOPANT"}, {"text": "over", "start": 247, "end": 251, "id": 46, "annotation": null}, {"text": "n", "start": 252, "end": 253, "id": 47, "annotation": "DOPANT"}, {"text": "-", "start": 254, "end": 255, "id": 48, "annotation": null}, {"text": "type", "start": 256, "end": 260, "id": 49, "annotation": "DOPANT"}, {"text": "conductive", "start": 261, "end": 271, "id": 50, "annotation": null}, {"text": "bulk", "start": 272, "end": 276, "id": 51, "annotation": "BASEMAT"}, {"text": "was", "start": 277, "end": 280, "id": 52, "annotation": null}, {"text": "obtained", "start": 281, "end": 289, "id": 53, "annotation": null}, {"text": "by", "start": 290, "end": 292, "id": 54, "annotation": null}, {"text": "a", "start": 293, "end": 294, "id": 55, "annotation": null}, {"text": "one", "start": 295, "end": 298, "id": 56, "annotation": null}, {"text": "-", "start": 299, "end": 300, "id": 57, "annotation": null}, {"text": "step", "start": 301, "end": 305, "id": 58, "annotation": null}, {"text": "room", "start": 306, "end": 310, "id": 59, "annotation": null}, {"text": "-", "start": 311, "end": 312, "id": 60, "annotation": null}, {"text": "temperature", "start": 313, "end": 324, "id": 61, "annotation": null}, {"text": "process", "start": 325, "end": 332, "id": 62, "annotation": null}, {"text": "via", "start": 333, "end": 336, "id": 63, "annotation": null}, {"text": "hydrogen", "start": 337, "end": 345, "id": 64, "annotation": null}, {"text": "plasma", "start": 346, "end": 352, "id": 65, "annotation": null}, {"text": "treatment", "start": 353, "end": 362, "id": 66, "annotation": null}, {"text": ".", "start": 363, "end": 364, "id": 67, "annotation": null}], [{"text": "Non", "start": 365, "end": 368, "id": 68, "annotation": null}, {"text": "-", "start": 369, "end": 370, "id": 69, "annotation": null}, {"text": "contact", "start": 371, "end": 378, "id": 70, "annotation": null}, {"text": "surface", "start": 379, "end": 386, "id": 71, "annotation": null}, {"text": "sensitive", "start": 387, "end": 396, "id": 72, "annotation": null}, {"text": "techniques", "start": 397, "end": 407, "id": 73, "annotation": null}, {"text": ",", "start": 408, "end": 409, "id": 74, "annotation": null}, {"text": "such", "start": 410, "end": 414, "id": 75, "annotation": null}, {"text": "as", "start": 415, "end": 417, "id": 76, "annotation": null}, {"text": "Kelvin", "start": 418, "end": 424, "id": 77, "annotation": null}, {"text": "probe", "start": 425, "end": 430, "id": 78, "annotation": null}, {"text": "force", "start": 431, "end": 436, "id": 79, "annotation": null}, {"text": "microscopy", "start": 437, "end": 447, "id": 80, "annotation": null}, {"text": "and", "start": 448, "end": 451, "id": 81, "annotation": null}, {"text": "conductive", "start": 452, "end": 462, "id": 82, "annotation": null}, {"text": "force", "start": 463, "end": 468, "id": 83, "annotation": null}, {"text": "atomic", "start": 469, "end": 475, "id": 84, "annotation": null}, {"text": "microscopy", "start": 476, "end": 486, "id": 85, "annotation": null}, {"text": ",", "start": 487, "end": 488, "id": 86, "annotation": null}, {"text": "confirmed", "start": 489, "end": 498, "id": 87, "annotation": null}, {"text": "the", "start": 499, "end": 502, "id": 88, "annotation": null}, {"text": "existence", "start": 503, "end": 512, "id": 89, "annotation": null}, {"text": "of", "start": 513, "end": 515, "id": 90, "annotation": null}, {"text": "surface", "start": 516, "end": 523, "id": 91, "annotation": null}, {"text": "p", "start": 524, "end": 525, "id": 92, "annotation": null}, {"text": "-", "start": 526, "end": 527, "id": 93, "annotation": null}, {"text": "type", "start": 528, "end": 532, "id": 94, "annotation": null}, {"text": "conductivity", "start": 533, "end": 545, "id": 95, "annotation": null}, {"text": "through", "start": 546, "end": 553, "id": 96, "annotation": null}, {"text": "analyzing", "start": 554, "end": 563, "id": 97, "annotation": null}, {"text": "the", "start": 564, "end": 567, "id": 98, "annotation": null}, {"text": "distribution", "start": 568, "end": 580, "id": 99, "annotation": null}, {"text": "and", "start": 581, "end": 584, "id": 100, "annotation": null}, {"text": "concentration", "start": 585, "end": 598, "id": 101, "annotation": null}, {"text": "of", "start": 599, "end": 601, "id": 102, "annotation": null}, {"text": "charge", "start": 602, "end": 608, "id": 103, "annotation": null}, {"text": "carriers", "start": 609, "end": 617, "id": 104, "annotation": null}, {"text": "on", "start": 618, "end": 620, "id": 105, "annotation": null}, {"text": "the", "start": 621, "end": 624, "id": 106, "annotation": null}, {"text": "topmost", "start": 625, "end": 632, "id": 107, "annotation": null}, {"text": "surface", "start": 633, "end": 640, "id": 108, "annotation": null}, {"text": "of", "start": 641, "end": 643, "id": 109, "annotation": null}, {"text": "hydrogenated", "start": 644, "end": 656, "id": 110, "annotation": null}, {"text": "ZnO.", "start": 657, "end": 661, "id": 111, "annotation": null}], [{"text": "A", "start": 662, "end": 663, "id": 112, "annotation": null}, {"text": "theoretical", "start": 664, "end": 675, "id": 113, "annotation": null}, {"text": "framework", "start": 676, "end": 685, "id": 114, "annotation": null}, {"text": "was", "start": 686, "end": 689, "id": 115, "annotation": null}, {"text": "constructed", "start": 690, "end": 701, "id": 116, "annotation": null}, {"text": "to", "start": 702, "end": 704, "id": 117, "annotation": null}, {"text": "provide", "start": 705, "end": 712, "id": 118, "annotation": null}, {"text": "a", "start": 713, "end": 714, "id": 119, "annotation": null}, {"text": "rationale", "start": 715, "end": 724, "id": 120, "annotation": null}, {"text": "of", "start": 725, "end": 727, "id": 121, "annotation": null}, {"text": "the", "start": 728, "end": 731, "id": 122, "annotation": null}, {"text": "p", "start": 732, "end": 733, "id": 123, "annotation": null}, {"text": "-", "start": 734, "end": 735, "id": 124, "annotation": null}, {"text": "type", "start": 736, "end": 740, "id": 125, "annotation": null}, {"text": "surface", "start": 741, "end": 748, "id": 126, "annotation": null}, {"text": "conductivity", "start": 749, "end": 761, "id": 127, "annotation": null}, {"text": "and", "start": 762, "end": 765, "id": 128, "annotation": null}, {"text": "justify", "start": 766, "end": 773, "id": 129, "annotation": null}, {"text": "its", "start": 774, "end": 777, "id": 130, "annotation": null}, {"text": "relation", "start": 778, "end": 786, "id": 131, "annotation": null}, {"text": "to", "start": 787, "end": 789, "id": 132, "annotation": null}, {"text": "the", "start": 790, "end": 793, "id": 133, "annotation": null}, {"text": "treatment", "start": 794, "end": 803, "id": 134, "annotation": null}, {"text": "time", "start": 804, "end": 808, "id": 135, "annotation": null}, {"text": ".", "start": 809, "end": 810, "id": 136, "annotation": null}], [{"text": "It", "start": 811, "end": 813, "id": 137, "annotation": null}, {"text": "is", "start": 814, "end": 816, "id": 138, "annotation": null}, {"text": "believed", "start": 817, "end": 825, "id": 139, "annotation": null}, {"text": "that", "start": 826, "end": 830, "id": 140, "annotation": null}, {"text": "this", "start": 831, "end": 835, "id": 141, "annotation": null}, {"text": "finding", "start": 836, "end": 843, "id": 142, "annotation": null}, {"text": "will", "start": 844, "end": 848, "id": 143, "annotation": null}, {"text": "open", "start": 849, "end": 853, "id": 144, "annotation": null}, {"text": "a", "start": 854, "end": 855, "id": 145, "annotation": null}, {"text": "new", "start": 856, "end": 859, "id": 146, "annotation": null}, {"text": "possibility", "start": 860, "end": 871, "id": 147, "annotation": null}, {"text": "for", "start": 872, "end": 875, "id": 148, "annotation": null}, {"text": "the", "start": 876, "end": 879, "id": 149, "annotation": null}, {"text": "fabrication", "start": 880, "end": 891, "id": 150, "annotation": null}, {"text": "of", "start": 892, "end": 894, "id": 151, "annotation": null}, {"text": "ZnO", "start": 895, "end": 898, "id": 152, "annotation": null}, {"text": "based", "start": 899, "end": 904, "id": 153, "annotation": null}, {"text": "p", "start": 905, "end": 906, "id": 154, "annotation": null}, {"text": "-", "start": 907, "end": 908, "id": 155, "annotation": null}, {"text": "n", "start": 909, "end": 910, "id": 156, "annotation": null}, {"text": "junction", "start": 911, "end": 919, "id": 157, "annotation": null}, {"text": "devices", "start": 920, "end": 927, "id": 158, "annotation": null}, {"text": ".", "start": 928, "end": 929, "id": 159, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Cu-related green luminescence (GL) band in n-type ZnO layers grown by molecular beam epitaxy on sapphire and a bulk ZnO sample grown by hydrothermal method have been studied with above-bandgap excitation. Annealing of the samples in air at temperatures above 600 \u00b0C resulted in an increase in the concentration of Cu Zn acceptors, followed by a dramatic enhancement of the Cu-related GL band peaking at 2.45 eV, and a characteristic fine structure. The GL band quenched at temperatures between 250 and 500 K due to escape of holes from the excited state of the Cu Zn acceptor to the valence band. Energy position of this state in the bandgap of ZnO and its capture cross section for holes were estimated as 0.38 eV and 2\u00d7 10 -13 cm 2 , respectively.", "meta": {"doi": "10.1116/1.3110023"}, "_input_hash": -447431310, "_task_hash": 554478503, "tokens": [[{"text": "Cu", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "-", "start": 3, "end": 4, "id": 1, "annotation": null}, {"text": "related", "start": 5, "end": 12, "id": 2, "annotation": null}, {"text": "green", "start": 13, "end": 18, "id": 3, "annotation": null}, {"text": "luminescence", "start": 19, "end": 31, "id": 4, "annotation": null}, {"text": "(", "start": 32, "end": 33, "id": 5, "annotation": null}, {"text": "GL", "start": 34, "end": 36, "id": 6, "annotation": null}, {"text": ")", "start": 37, "end": 38, "id": 7, "annotation": null}, {"text": "band", "start": 39, "end": 43, "id": 8, "annotation": null}, {"text": "in", "start": 44, "end": 46, "id": 9, "annotation": null}, {"text": "n", "start": 47, "end": 48, "id": 10, "annotation": "DOPANT"}, {"text": "-", "start": 49, "end": 50, "id": 11, "annotation": null}, {"text": "type", "start": 51, "end": 55, "id": 12, "annotation": "DOPANT"}, {"text": "ZnO", "start": 56, "end": 59, "id": 13, "annotation": "BASEMAT"}, {"text": "layers", "start": 60, "end": 66, "id": 14, "annotation": null}, {"text": "grown", "start": 67, "end": 72, "id": 15, "annotation": null}, {"text": "by", "start": 73, "end": 75, "id": 16, "annotation": null}, {"text": "molecular", "start": 76, "end": 85, "id": 17, "annotation": null}, {"text": "beam", "start": 86, "end": 90, "id": 18, "annotation": null}, {"text": "epitaxy", "start": 91, "end": 98, "id": 19, "annotation": null}, {"text": "on", "start": 99, "end": 101, "id": 20, "annotation": null}, {"text": "sapphire", "start": 102, "end": 110, "id": 21, "annotation": null}, {"text": "and", "start": 111, "end": 114, "id": 22, "annotation": null}, {"text": "a", "start": 115, "end": 116, "id": 23, "annotation": null}, {"text": "bulk", "start": 117, "end": 121, "id": 24, "annotation": null}, {"text": "ZnO", "start": 122, "end": 125, "id": 25, "annotation": null}, {"text": "sample", "start": 126, "end": 132, "id": 26, "annotation": null}, {"text": "grown", "start": 133, "end": 138, "id": 27, "annotation": null}, {"text": "by", "start": 139, "end": 141, "id": 28, "annotation": null}, {"text": "hydrothermal", "start": 142, "end": 154, "id": 29, "annotation": null}, {"text": "method", "start": 155, "end": 161, "id": 30, "annotation": null}, {"text": "have", "start": 162, "end": 166, "id": 31, "annotation": null}, {"text": "been", "start": 167, "end": 171, "id": 32, "annotation": null}, {"text": "studied", "start": 172, "end": 179, "id": 33, "annotation": null}, {"text": "with", "start": 180, "end": 184, "id": 34, "annotation": null}, {"text": "above", "start": 185, "end": 190, "id": 35, "annotation": null}, {"text": "-", "start": 191, "end": 192, "id": 36, "annotation": null}, {"text": "bandgap", "start": 193, "end": 200, "id": 37, "annotation": null}, {"text": "excitation", "start": 201, "end": 211, "id": 38, "annotation": null}, {"text": ".", "start": 212, "end": 213, "id": 39, "annotation": null}], [{"text": "Annealing", "start": 214, "end": 223, "id": 40, "annotation": null}, {"text": "of", "start": 224, "end": 226, "id": 41, "annotation": null}, {"text": "the", "start": 227, "end": 230, "id": 42, "annotation": null}, {"text": "samples", "start": 231, "end": 238, "id": 43, "annotation": null}, {"text": "in", "start": 239, "end": 241, "id": 44, "annotation": null}, {"text": "air", "start": 242, "end": 245, "id": 45, "annotation": null}, {"text": "at", "start": 246, "end": 248, "id": 46, "annotation": null}, {"text": "temperatures", "start": 249, "end": 261, "id": 47, "annotation": null}, {"text": "above", "start": 262, "end": 267, "id": 48, "annotation": null}, {"text": "600", "start": 268, "end": 271, "id": 49, "annotation": null}, {"text": "\u00b0", "start": 272, "end": 273, "id": 50, "annotation": null}, {"text": "C", "start": 274, "end": 275, "id": 51, "annotation": null}, {"text": "resulted", "start": 276, "end": 284, "id": 52, "annotation": null}, {"text": "in", "start": 285, "end": 287, "id": 53, "annotation": null}, {"text": "an", "start": 288, "end": 290, "id": 54, "annotation": null}, {"text": "increase", "start": 291, "end": 299, "id": 55, "annotation": null}, {"text": "in", "start": 300, "end": 302, "id": 56, "annotation": null}, {"text": "the", "start": 303, "end": 306, "id": 57, "annotation": null}, {"text": "concentration", "start": 307, "end": 320, "id": 58, "annotation": null}, {"text": "of", "start": 321, "end": 323, "id": 59, "annotation": null}, {"text": "Cu", "start": 324, "end": 326, "id": 60, "annotation": null}, {"text": "Zn", "start": 327, "end": 329, "id": 61, "annotation": null}, {"text": "acceptors", "start": 330, "end": 339, "id": 62, "annotation": null}, {"text": ",", "start": 340, "end": 341, "id": 63, "annotation": null}, {"text": "followed", "start": 342, "end": 350, "id": 64, "annotation": null}, {"text": "by", "start": 351, "end": 353, "id": 65, "annotation": null}, {"text": "a", "start": 354, "end": 355, "id": 66, "annotation": null}, {"text": "dramatic", "start": 356, "end": 364, "id": 67, "annotation": null}, {"text": "enhancement", "start": 365, "end": 376, "id": 68, "annotation": null}, {"text": "of", "start": 377, "end": 379, "id": 69, "annotation": null}, {"text": "the", "start": 380, "end": 383, "id": 70, "annotation": null}, {"text": "Cu", "start": 384, "end": 386, "id": 71, "annotation": null}, {"text": "-", "start": 387, "end": 388, "id": 72, "annotation": null}, {"text": "related", "start": 389, "end": 396, "id": 73, "annotation": null}, {"text": "GL", "start": 397, "end": 399, "id": 74, "annotation": null}, {"text": "band", "start": 400, "end": 404, "id": 75, "annotation": null}, {"text": "peaking", "start": 405, "end": 412, "id": 76, "annotation": null}, {"text": "at", "start": 413, "end": 415, "id": 77, "annotation": null}, {"text": "2.45", "start": 416, "end": 420, "id": 78, "annotation": null}, {"text": "eV", "start": 421, "end": 423, "id": 79, "annotation": null}, {"text": ",", "start": 424, "end": 425, "id": 80, "annotation": null}, {"text": "and", "start": 426, "end": 429, "id": 81, "annotation": null}, {"text": "a", "start": 430, "end": 431, "id": 82, "annotation": null}, {"text": "characteristic", "start": 432, "end": 446, "id": 83, "annotation": null}, {"text": "fine", "start": 447, "end": 451, "id": 84, "annotation": null}, {"text": "structure", "start": 452, "end": 461, "id": 85, "annotation": null}, {"text": ".", "start": 462, "end": 463, "id": 86, "annotation": null}], [{"text": "The", "start": 464, "end": 467, "id": 87, "annotation": null}, {"text": "GL", "start": 468, "end": 470, "id": 88, "annotation": null}, {"text": "band", "start": 471, "end": 475, "id": 89, "annotation": null}, {"text": "quenched", "start": 476, "end": 484, "id": 90, "annotation": null}, {"text": "at", "start": 485, "end": 487, "id": 91, "annotation": null}, {"text": "temperatures", "start": 488, "end": 500, "id": 92, "annotation": null}, {"text": "between", "start": 501, "end": 508, "id": 93, "annotation": null}, {"text": "250", "start": 509, "end": 512, "id": 94, "annotation": null}, {"text": "and", "start": 513, "end": 516, "id": 95, "annotation": null}, {"text": "500", "start": 517, "end": 520, "id": 96, "annotation": null}, {"text": "K", "start": 521, "end": 522, "id": 97, "annotation": null}, {"text": "due", "start": 523, "end": 526, "id": 98, "annotation": null}, {"text": "to", "start": 527, "end": 529, "id": 99, "annotation": null}, {"text": "escape", "start": 530, "end": 536, "id": 100, "annotation": null}, {"text": "of", "start": 537, "end": 539, "id": 101, "annotation": null}, {"text": "holes", "start": 540, "end": 545, "id": 102, "annotation": null}, {"text": "from", "start": 546, "end": 550, "id": 103, "annotation": null}, {"text": "the", "start": 551, "end": 554, "id": 104, "annotation": null}, {"text": "excited", "start": 555, "end": 562, "id": 105, "annotation": null}, {"text": "state", "start": 563, "end": 568, "id": 106, "annotation": null}, {"text": "of", "start": 569, "end": 571, "id": 107, "annotation": null}, {"text": "the", "start": 572, "end": 575, "id": 108, "annotation": null}, {"text": "Cu", "start": 576, "end": 578, "id": 109, "annotation": null}, {"text": "Zn", "start": 579, "end": 581, "id": 110, "annotation": null}, {"text": "acceptor", "start": 582, "end": 590, "id": 111, "annotation": null}, {"text": "to", "start": 591, "end": 593, "id": 112, "annotation": null}, {"text": "the", "start": 594, "end": 597, "id": 113, "annotation": null}, {"text": "valence", "start": 598, "end": 605, "id": 114, "annotation": null}, {"text": "band", "start": 606, "end": 610, "id": 115, "annotation": null}, {"text": ".", "start": 611, "end": 612, "id": 116, "annotation": null}], [{"text": "Energy", "start": 613, "end": 619, "id": 117, "annotation": null}, {"text": "position", "start": 620, "end": 628, "id": 118, "annotation": null}, {"text": "of", "start": 629, "end": 631, "id": 119, "annotation": null}, {"text": "this", "start": 632, "end": 636, "id": 120, "annotation": null}, {"text": "state", "start": 637, "end": 642, "id": 121, "annotation": null}, {"text": "in", "start": 643, "end": 645, "id": 122, "annotation": null}, {"text": "the", "start": 646, "end": 649, "id": 123, "annotation": null}, {"text": "bandgap", "start": 650, "end": 657, "id": 124, "annotation": null}, {"text": "of", "start": 658, "end": 660, "id": 125, "annotation": null}, {"text": "ZnO", "start": 661, "end": 664, "id": 126, "annotation": null}, {"text": "and", "start": 665, "end": 668, "id": 127, "annotation": null}, {"text": "its", "start": 669, "end": 672, "id": 128, "annotation": null}, {"text": "capture", "start": 673, "end": 680, "id": 129, "annotation": null}, {"text": "cross", "start": 681, "end": 686, "id": 130, "annotation": null}, {"text": "section", "start": 687, "end": 694, "id": 131, "annotation": null}, {"text": "for", "start": 695, "end": 698, "id": 132, "annotation": null}, {"text": "holes", "start": 699, "end": 704, "id": 133, "annotation": null}, {"text": "were", "start": 705, "end": 709, "id": 134, "annotation": null}, {"text": "estimated", "start": 710, "end": 719, "id": 135, "annotation": null}, {"text": "as", "start": 720, "end": 722, "id": 136, "annotation": null}, {"text": "0.38", "start": 723, "end": 727, "id": 137, "annotation": null}, {"text": "eV", "start": 728, "end": 730, "id": 138, "annotation": null}, {"text": "and", "start": 731, "end": 734, "id": 139, "annotation": null}, {"text": "2\u00d7", "start": 735, "end": 737, "id": 140, "annotation": null}, {"text": "10", "start": 738, "end": 740, "id": 141, "annotation": null}, {"text": "-13", "start": 741, "end": 744, "id": 142, "annotation": null}, {"text": "cm", "start": 745, "end": 747, "id": 143, "annotation": null}, {"text": "2", "start": 748, "end": 749, "id": 144, "annotation": null}, {"text": ",", "start": 750, "end": 751, "id": 145, "annotation": null}, {"text": "respectively", "start": 752, "end": 764, "id": 146, "annotation": null}, {"text": ".", "start": 765, "end": 766, "id": 147, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "Tin dioxide thin films have been deposited on alumina substrates by different methods in order to test their reliability as a breath analyser. Despite the obvious simplicity of spray pyrolysis, both the structural and electrical properties of the films thus prepared were strongly dependent to the deposition conditions. The samples exhibited poor crystallinity and porous microstructure. They were sensitive to ethanol vapour but since the resistance of the samples reached several M\u03a9, antimony doping was performed to fit a more convenient detection range. An alternative method was then used to prepare tin dioxyde thin films by evaporation of metallic tin followed by thermal oxidation. In this case, grain size was enhanced up to 100 nm but films remained highly porous. The ethanol sensitivity of evaporated samples was determined. In order to study more accurately the influence of microstructure on sensing ability, dense thin films were prepared using a CVD method with tetrabutyl tin as precursor. Preliminary results indicated that films with different crystallite sizes could be grown by varying the deposition temperature.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Tin", "start": 0, "end": 3, "annotation": null}, {"text": "dioxide", "start": 4, "end": 11, "annotation": null}, {"text": "thin", "start": 12, "end": 16, "annotation": null}, {"text": "films", "start": 17, "end": 22, "annotation": null}, {"text": "have", "start": 23, "end": 27, "annotation": null}, {"text": "been", "start": 28, "end": 32, "annotation": null}, {"text": "deposited", "start": 33, "end": 42, "annotation": null}, {"text": "on", "start": 43, "end": 45, "annotation": null}, {"text": "alumina", "start": 46, "end": 53, "annotation": null}, {"text": "substrates", "start": 54, "end": 64, "annotation": null}, {"text": "by", "start": 65, "end": 67, "annotation": null}, {"text": "different", "start": 68, "end": 77, "annotation": null}, {"text": "methods", "start": 78, "end": 85, "annotation": null}, {"text": "in", "start": 86, "end": 88, "annotation": null}, {"text": "order", "start": 89, "end": 94, "annotation": null}, {"text": "to", "start": 95, "end": 97, "annotation": null}, {"text": "test", "start": 98, "end": 102, "annotation": null}, {"text": "their", "start": 103, "end": 108, "annotation": null}, {"text": "reliability", "start": 109, "end": 120, "annotation": null}, {"text": "as", "start": 121, "end": 123, "annotation": null}, {"text": "a", "start": 124, "end": 125, "annotation": null}, {"text": "breath", "start": 126, "end": 132, "annotation": null}, {"text": "analyser", "start": 133, "end": 141, "annotation": null}, {"text": ".", "start": 141, "end": 142, "annotation": null}], [{"text": "Despite", "start": 143, "end": 150, "annotation": null}, {"text": "the", "start": 151, "end": 154, "annotation": null}, {"text": "obvious", "start": 155, "end": 162, "annotation": null}, {"text": "simplicity", "start": 163, "end": 173, "annotation": null}, {"text": "of", "start": 174, "end": 176, "annotation": null}, {"text": "spray", "start": 177, "end": 182, "annotation": null}, {"text": "pyrolysis", "start": 183, "end": 192, "annotation": null}, {"text": ",", "start": 192, "end": 193, "annotation": null}, {"text": "both", "start": 194, "end": 198, "annotation": null}, {"text": "the", "start": 199, "end": 202, "annotation": null}, {"text": "structural", "start": 203, "end": 213, "annotation": null}, {"text": "and", "start": 214, "end": 217, "annotation": null}, {"text": "electrical", "start": 218, "end": 228, "annotation": null}, {"text": "properties", "start": 229, "end": 239, "annotation": null}, {"text": "of", "start": 240, "end": 242, "annotation": null}, {"text": "the", "start": 243, "end": 246, "annotation": null}, {"text": "films", "start": 247, "end": 252, "annotation": null}, {"text": "thus", "start": 253, "end": 257, "annotation": null}, {"text": "prepared", "start": 258, "end": 266, "annotation": null}, {"text": "were", "start": 267, "end": 271, "annotation": null}, {"text": "strongly", "start": 272, "end": 280, "annotation": null}, {"text": "dependent", "start": 281, "end": 290, "annotation": null}, {"text": "to", "start": 291, "end": 293, "annotation": null}, {"text": "the", "start": 294, "end": 297, "annotation": null}, {"text": "deposition", "start": 298, "end": 308, "annotation": null}, {"text": "conditions", "start": 309, "end": 319, "annotation": null}, {"text": ".", "start": 319, "end": 320, "annotation": null}], [{"text": "The", "start": 321, "end": 324, "annotation": null}, {"text": "samples", "start": 325, "end": 332, "annotation": null}, {"text": "exhibited", "start": 333, "end": 342, "annotation": null}, {"text": "poor", "start": 343, "end": 347, "annotation": null}, {"text": "crystallinity", "start": 348, "end": 361, "annotation": null}, {"text": "and", "start": 362, "end": 365, "annotation": null}, {"text": "porous", "start": 366, "end": 372, "annotation": null}, {"text": "microstructure", "start": 373, "end": 387, "annotation": null}, {"text": ".", "start": 387, "end": 388, "annotation": null}], [{"text": "They", "start": 389, "end": 393, "annotation": null}, {"text": "were", "start": 394, "end": 398, "annotation": null}, {"text": "sensitive", "start": 399, "end": 408, "annotation": null}, {"text": "to", "start": 409, "end": 411, "annotation": null}, {"text": "ethanol", "start": 412, "end": 419, "annotation": null}, {"text": "vapour", "start": 420, "end": 426, "annotation": null}, {"text": "but", "start": 427, "end": 430, "annotation": null}, {"text": "since", "start": 431, "end": 436, "annotation": null}, {"text": "the", "start": 437, "end": 440, "annotation": null}, {"text": "resistance", "start": 441, "end": 451, "annotation": null}, {"text": "of", "start": 452, "end": 454, "annotation": null}, {"text": "the", "start": 455, "end": 458, "annotation": null}, {"text": "samples", "start": 459, "end": 466, "annotation": null}, {"text": "reached", "start": 467, "end": 474, "annotation": null}, {"text": "several", "start": 475, "end": 482, "annotation": null}, {"text": "M\u03a9", "start": 483, "end": 485, "annotation": null}, {"text": ",", "start": 485, "end": 486, "annotation": null}, {"text": "antimony", "start": 487, "end": 495, "annotation": "DOPANT"}, {"text": "doping", "start": 496, "end": 502, "annotation": null}, {"text": "was", "start": 503, "end": 506, "annotation": null}, {"text": "performed", "start": 507, "end": 516, "annotation": null}, {"text": "to", "start": 517, "end": 519, "annotation": null}, {"text": "fit", "start": 520, "end": 523, "annotation": null}, {"text": "a", "start": 524, "end": 525, "annotation": null}, {"text": "more", "start": 526, "end": 530, "annotation": null}, {"text": "convenient", "start": 531, "end": 541, "annotation": null}, {"text": "detection", "start": 542, "end": 551, "annotation": null}, {"text": "range", "start": 552, "end": 557, "annotation": null}, {"text": ".", "start": 557, "end": 558, "annotation": null}], [{"text": "An", "start": 559, "end": 561, "annotation": null}, {"text": "alternative", "start": 562, "end": 573, "annotation": null}, {"text": "method", "start": 574, "end": 580, "annotation": null}, {"text": "was", "start": 581, "end": 584, "annotation": null}, {"text": "then", "start": 585, "end": 589, "annotation": null}, {"text": "used", "start": 590, "end": 594, "annotation": null}, {"text": "to", "start": 595, "end": 597, "annotation": null}, {"text": "prepare", "start": 598, "end": 605, "annotation": null}, {"text": "tin", "start": 606, "end": 609, "annotation": null}, {"text": "dioxyde", "start": 610, "end": 617, "annotation": null}, {"text": "thin", "start": 618, "end": 622, "annotation": null}, {"text": "films", "start": 623, "end": 628, "annotation": null}, {"text": "by", "start": 629, "end": 631, "annotation": null}, {"text": "evaporation", "start": 632, "end": 643, "annotation": null}, {"text": "of", "start": 644, "end": 646, "annotation": null}, {"text": "metallic", "start": 647, "end": 655, "annotation": null}, {"text": "tin", "start": 656, "end": 659, "annotation": null}, {"text": "followed", "start": 660, "end": 668, "annotation": null}, {"text": "by", "start": 669, "end": 671, "annotation": null}, {"text": "thermal", "start": 672, "end": 679, "annotation": null}, {"text": "oxidation", "start": 680, "end": 689, "annotation": null}, {"text": ".", "start": 689, "end": 690, "annotation": null}], [{"text": "In", "start": 691, "end": 693, "annotation": null}, {"text": "this", "start": 694, "end": 698, "annotation": null}, {"text": "case", "start": 699, "end": 703, "annotation": null}, {"text": ",", "start": 703, "end": 704, "annotation": null}, {"text": "grain", "start": 705, "end": 710, "annotation": null}, {"text": "size", "start": 711, "end": 715, "annotation": null}, {"text": "was", "start": 716, "end": 719, "annotation": null}, {"text": "enhanced", "start": 720, "end": 728, "annotation": null}, {"text": "up", "start": 729, "end": 731, "annotation": null}, {"text": "to", "start": 732, "end": 734, "annotation": null}, {"text": "100", "start": 735, "end": 738, "annotation": null}, {"text": "nm", "start": 739, "end": 741, "annotation": null}, {"text": "but", "start": 742, "end": 745, "annotation": null}, {"text": "films", "start": 746, "end": 751, "annotation": null}, {"text": "remained", "start": 752, "end": 760, "annotation": null}, {"text": "highly", "start": 761, "end": 767, "annotation": null}, {"text": "porous", "start": 768, "end": 774, "annotation": null}, {"text": ".", "start": 774, "end": 775, "annotation": null}], [{"text": "The", "start": 776, "end": 779, "annotation": null}, {"text": "ethanol", "start": 780, "end": 787, "annotation": null}, {"text": "sensitivity", "start": 788, "end": 799, "annotation": null}, {"text": "of", "start": 800, "end": 802, "annotation": null}, {"text": "evaporated", "start": 803, "end": 813, "annotation": null}, {"text": "samples", "start": 814, "end": 821, "annotation": null}, {"text": "was", "start": 822, "end": 825, "annotation": null}, {"text": "determined", "start": 826, "end": 836, "annotation": null}, {"text": ".", "start": 836, "end": 837, "annotation": null}], [{"text": "In", "start": 838, "end": 840, "annotation": null}, {"text": "order", "start": 841, "end": 846, "annotation": null}, {"text": "to", "start": 847, "end": 849, "annotation": null}, {"text": "study", "start": 850, "end": 855, "annotation": null}, {"text": "more", "start": 856, "end": 860, "annotation": null}, {"text": "accurately", "start": 861, "end": 871, "annotation": null}, {"text": "the", "start": 872, "end": 875, "annotation": null}, {"text": "influence", "start": 876, "end": 885, "annotation": null}, {"text": "of", "start": 886, "end": 888, "annotation": null}, {"text": "microstructure", "start": 889, "end": 903, "annotation": null}, {"text": "on", "start": 904, "end": 906, "annotation": null}, {"text": "sensing", "start": 907, "end": 914, "annotation": null}, {"text": "ability", "start": 915, "end": 922, "annotation": null}, {"text": ",", "start": 922, "end": 923, "annotation": null}, {"text": "dense", "start": 924, "end": 929, "annotation": null}, {"text": "thin", "start": 930, "end": 934, "annotation": null}, {"text": "films", "start": 935, "end": 940, "annotation": null}, {"text": "were", "start": 941, "end": 945, "annotation": null}, {"text": "prepared", "start": 946, "end": 954, "annotation": null}, {"text": "using", "start": 955, "end": 960, "annotation": null}, {"text": "a", "start": 961, "end": 962, "annotation": null}, {"text": "CVD", "start": 963, "end": 966, "annotation": null}, {"text": "method", "start": 967, "end": 973, "annotation": null}, {"text": "with", "start": 974, "end": 978, "annotation": null}, {"text": "tetrabutyl", "start": 979, "end": 989, "annotation": null}, {"text": "tin", "start": 990, "end": 993, "annotation": null}, {"text": "as", "start": 994, "end": 996, "annotation": null}, {"text": "precursor", "start": 997, "end": 1006, "annotation": null}, {"text": ".", "start": 1006, "end": 1007, "annotation": null}], [{"text": "Preliminary", "start": 1008, "end": 1019, "annotation": null}, {"text": "results", "start": 1020, "end": 1027, "annotation": null}, {"text": "indicated", "start": 1028, "end": 1037, "annotation": null}, {"text": "that", "start": 1038, "end": 1042, "annotation": null}, {"text": "films", "start": 1043, "end": 1048, "annotation": null}, {"text": "with", "start": 1049, "end": 1053, "annotation": null}, {"text": "different", "start": 1054, "end": 1063, "annotation": null}, {"text": "crystallite", "start": 1064, "end": 1075, "annotation": null}, {"text": "sizes", "start": 1076, "end": 1081, "annotation": null}, {"text": "could", "start": 1082, "end": 1087, "annotation": null}, {"text": "be", "start": 1088, "end": 1090, "annotation": null}, {"text": "grown", "start": 1091, "end": 1096, "annotation": null}, {"text": "by", "start": 1097, "end": 1099, "annotation": null}, {"text": "varying", "start": 1100, "end": 1107, "annotation": null}, {"text": "the", "start": 1108, "end": 1111, "annotation": null}, {"text": "deposition", "start": 1112, "end": 1122, "annotation": null}, {"text": "temperature", "start": 1123, "end": 1134, "annotation": null}, {"text": ".", "start": 1134, "end": 1135, "annotation": null}]]} +{"remark": "doping_annt2", "text": "Continuous-wave lasing of Bi-doped fiber lasers in a wavelength range of 1150-1215 nm with a power of up to 15 W has been obtained for the first time. The unsaturable optical losses in Bi-doped fibers have been revealed and their influence on the Bi-laser operation is investigated. Frequency doubling of the Bi-fiber laser radiation is demonstrated that can be used as a yellow light source (wavelength of 580 nm). \u00a9 2007 Optical Society of America.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Continuous", "start": 0, "end": 10, "annotation": null}, {"text": "-", "start": 10, "end": 11, "annotation": null}, {"text": "wave", "start": 11, "end": 15, "annotation": null}, {"text": "lasing", "start": 16, "end": 22, "annotation": null}, {"text": "of", "start": 23, "end": 25, "annotation": null}, {"text": "Bi-doped", "start": 26, "end": 34, "annotation": "DOPANT"}, {"text": "fiber", "start": 35, "end": 40, "annotation": "BASEMAT"}, {"text": "lasers", "start": 41, "end": 47, "annotation": null}, {"text": "in", "start": 48, "end": 50, "annotation": null}, {"text": "a", "start": 51, "end": 52, "annotation": null}, {"text": "wavelength", "start": 53, "end": 63, "annotation": null}, {"text": "range", "start": 64, "end": 69, "annotation": null}, {"text": "of", "start": 70, "end": 72, "annotation": null}, {"text": "1150-1215", "start": 73, "end": 82, "annotation": null}, {"text": "nm", "start": 83, "end": 85, "annotation": null}, {"text": "with", "start": 86, "end": 90, "annotation": null}, {"text": "a", "start": 91, "end": 92, "annotation": null}, {"text": "power", "start": 93, "end": 98, "annotation": null}, {"text": "of", "start": 99, "end": 101, "annotation": null}, {"text": "up", "start": 102, "end": 104, "annotation": null}, {"text": "to", "start": 105, "end": 107, "annotation": null}, {"text": "15", "start": 108, "end": 110, "annotation": null}, {"text": "W", "start": 111, "end": 112, "annotation": null}, {"text": "has", "start": 113, "end": 116, "annotation": null}, {"text": "been", "start": 117, "end": 121, "annotation": null}, {"text": "obtained", "start": 122, "end": 130, "annotation": null}, {"text": "for", "start": 131, "end": 134, "annotation": null}, {"text": "the", "start": 135, "end": 138, "annotation": null}, {"text": "first", "start": 139, "end": 144, "annotation": null}, {"text": "time", "start": 145, "end": 149, "annotation": null}, {"text": ".", "start": 149, "end": 150, "annotation": null}], [{"text": "The", "start": 151, "end": 154, "annotation": null}, {"text": "unsaturable", "start": 155, "end": 166, "annotation": null}, {"text": "optical", "start": 167, "end": 174, "annotation": null}, {"text": "losses", "start": 175, "end": 181, "annotation": null}, {"text": "in", "start": 182, "end": 184, "annotation": null}, {"text": "Bi-doped", "start": 185, "end": 193, "annotation": "DOPANT"}, {"text": "fibers", "start": 194, "end": 200, "annotation": "BASEMAT"}, {"text": "have", "start": 201, "end": 205, "annotation": null}, {"text": "been", "start": 206, "end": 210, "annotation": null}, {"text": "revealed", "start": 211, "end": 219, "annotation": null}, {"text": "and", "start": 220, "end": 223, "annotation": null}, {"text": "their", "start": 224, "end": 229, "annotation": null}, {"text": "influence", "start": 230, "end": 239, "annotation": null}, {"text": "on", "start": 240, "end": 242, "annotation": null}, {"text": "the", "start": 243, "end": 246, "annotation": null}, {"text": "Bi-laser", "start": 247, "end": 255, "annotation": null}, {"text": "operation", "start": 256, "end": 265, "annotation": null}, {"text": "is", "start": 266, "end": 268, "annotation": null}, {"text": "investigated", "start": 269, "end": 281, "annotation": null}, {"text": ".", "start": 281, "end": 282, "annotation": null}], [{"text": "Frequency", "start": 283, "end": 292, "annotation": null}, {"text": "doubling", "start": 293, "end": 301, "annotation": null}, {"text": "of", "start": 302, "end": 304, "annotation": null}, {"text": "the", "start": 305, "end": 308, "annotation": null}, {"text": "Bi-fiber", "start": 309, "end": 317, "annotation": null}, {"text": "laser", "start": 318, "end": 323, "annotation": null}, {"text": "radiation", "start": 324, "end": 333, "annotation": null}, {"text": "is", "start": 334, "end": 336, "annotation": null}, {"text": "demonstrated", "start": 337, "end": 349, "annotation": null}, {"text": "that", "start": 350, "end": 354, "annotation": null}, {"text": "can", "start": 355, "end": 358, "annotation": null}, {"text": "be", "start": 359, "end": 361, "annotation": null}, {"text": "used", "start": 362, "end": 366, "annotation": null}, {"text": "as", "start": 367, "end": 369, "annotation": null}, {"text": "a", "start": 370, "end": 371, "annotation": null}, {"text": "yellow", "start": 372, "end": 378, "annotation": null}, {"text": "light", "start": 379, "end": 384, "annotation": null}, {"text": "source", "start": 385, "end": 391, "annotation": null}, {"text": "(", "start": 392, "end": 393, "annotation": null}, {"text": "wavelength", "start": 393, "end": 403, "annotation": null}, {"text": "of", "start": 404, "end": 406, "annotation": null}, {"text": "580", "start": 407, "end": 410, "annotation": null}, {"text": "nm", "start": 411, "end": 413, "annotation": null}, {"text": ")", "start": 413, "end": 414, "annotation": null}, {"text": ".", "start": 414, "end": 415, "annotation": null}]], "meta": {"doi": "10.1364/JOSAB.24.001749"}} +{"text": "Polycrystalline samples of Ca3\u2212xAgxCo3.95Fe0.05O9+\u03b4 (x\u00a0=\u00a00.0, 0.1, 0.2, and 0.3) have been prepared by conventional solid-state synthesis. The x-ray diffraction patterns reveal that all the samples are single phase. The thermopower of all the samples is positive, indicating that the predominant carriers are holes over the entire temperature range. The electrical resistivity and thermopower simultaneously decrease with increasing Ag content. The highest power factor (2.66\u00a0\u03bcW\u00a0cm\u22121\u00a0K\u22122 at 150\u00a0K) is reached for the Ca2.8Ag0.2Co3.95Fe0.05O9+\u03b4, representing an improvement of about 16\u00a0% compared to the undoped sample. These results suggest that the Ag is an effective doping element for enhancing the thermoelectric properties of Ca3Co3.95Fe0.05O9+\u03b4.", "meta": {"doi": "10.1007/s11664-013-2922-3"}, "_input_hash": 1171520742, "_task_hash": -250267072, "tokens": [[{"text": "Polycrystalline", "start": 0, "end": 15, "id": 0, "annotation": null}, {"text": "samples", "start": 16, "end": 23, "id": 1, "annotation": null}, {"text": "of", "start": 24, "end": 26, "id": 2, "annotation": null}, {"text": "Ca3\u2212xAgxCo3.95Fe0.05O9+\u03b4", "start": 27, "end": 51, "id": 3, "annotation": "BASEMAT"}, {"text": "(", "start": 52, "end": 53, "id": 4, "annotation": null}, {"text": "x", "start": 54, "end": 55, "id": 5, "annotation": "DOPMODQ"}, {"text": "=", "start": 56, "end": 57, "id": 7, "annotation": "DOPMODQ"}, {"text": "0.0", "start": 58, "end": 61, "id": 9, "annotation": "DOPMODQ"}, {"text": ",", "start": 62, "end": 63, "id": 10, "annotation": "DOPMODQ"}, {"text": "0.1", "start": 64, "end": 67, "id": 11, "annotation": "DOPMODQ"}, {"text": ",", "start": 68, "end": 69, "id": 12, "annotation": "DOPMODQ"}, {"text": "0.2", "start": 70, "end": 73, "id": 13, "annotation": "DOPMODQ"}, {"text": ",", "start": 74, "end": 75, "id": 14, "annotation": "DOPMODQ"}, {"text": "and", "start": 76, "end": 79, "id": 15, "annotation": null}, {"text": "0.3", "start": 80, "end": 83, "id": 16, "annotation": "DOPMODQ"}, {"text": ")", "start": 84, "end": 85, "id": 17, "annotation": null}, {"text": "have", "start": 86, "end": 90, "id": 18, "annotation": null}, {"text": "been", "start": 91, "end": 95, "id": 19, "annotation": null}, {"text": "prepared", "start": 96, "end": 104, "id": 20, "annotation": null}, {"text": "by", "start": 105, "end": 107, "id": 21, "annotation": null}, {"text": "conventional", "start": 108, "end": 120, "id": 22, "annotation": null}, {"text": "solid", "start": 121, "end": 126, "id": 23, "annotation": null}, {"text": "-", "start": 127, "end": 128, "id": 24, "annotation": null}, {"text": "state", "start": 129, "end": 134, "id": 25, "annotation": null}, {"text": "synthesis", "start": 135, "end": 144, "id": 26, "annotation": null}, {"text": ".", "start": 145, "end": 146, "id": 27, "annotation": null}], [{"text": "The", "start": 147, "end": 150, "id": 28, "annotation": null}, {"text": "x", "start": 151, "end": 152, "id": 29, "annotation": null}, {"text": "-", "start": 153, "end": 154, "id": 30, "annotation": null}, {"text": "ray", "start": 155, "end": 158, "id": 31, "annotation": null}, {"text": "diffraction", "start": 159, "end": 170, "id": 32, "annotation": null}, {"text": "patterns", "start": 171, "end": 179, "id": 33, "annotation": null}, {"text": "reveal", "start": 180, "end": 186, "id": 34, "annotation": null}, {"text": "that", "start": 187, "end": 191, "id": 35, "annotation": null}, {"text": "all", "start": 192, "end": 195, "id": 36, "annotation": null}, {"text": "the", "start": 196, "end": 199, "id": 37, "annotation": null}, {"text": "samples", "start": 200, "end": 207, "id": 38, "annotation": null}, {"text": "are", "start": 208, "end": 211, "id": 39, "annotation": null}, {"text": "single", "start": 212, "end": 218, "id": 40, "annotation": null}, {"text": "phase", "start": 219, "end": 224, "id": 41, "annotation": null}, {"text": ".", "start": 225, "end": 226, "id": 42, "annotation": null}], [{"text": "The", "start": 227, "end": 230, "id": 43, "annotation": null}, {"text": "thermopower", "start": 231, "end": 242, "id": 44, "annotation": null}, {"text": "of", "start": 243, "end": 245, "id": 45, "annotation": null}, {"text": "all", "start": 246, "end": 249, "id": 46, "annotation": null}, {"text": "the", "start": 250, "end": 253, "id": 47, "annotation": null}, {"text": "samples", "start": 254, "end": 261, "id": 48, "annotation": null}, {"text": "is", "start": 262, "end": 264, "id": 49, "annotation": null}, {"text": "positive", "start": 265, "end": 273, "id": 50, "annotation": null}, {"text": ",", "start": 274, "end": 275, "id": 51, "annotation": null}, {"text": "indicating", "start": 276, "end": 286, "id": 52, "annotation": null}, {"text": "that", "start": 287, "end": 291, "id": 53, "annotation": null}, {"text": "the", "start": 292, "end": 295, "id": 54, "annotation": null}, {"text": "predominant", "start": 296, "end": 307, "id": 55, "annotation": null}, {"text": "carriers", "start": 308, "end": 316, "id": 56, "annotation": null}, {"text": "are", "start": 317, "end": 320, "id": 57, "annotation": null}, {"text": "holes", "start": 321, "end": 326, "id": 58, "annotation": null}, {"text": "over", "start": 327, "end": 331, "id": 59, "annotation": null}, {"text": "the", "start": 332, "end": 335, "id": 60, "annotation": null}, {"text": "entire", "start": 336, "end": 342, "id": 61, "annotation": null}, {"text": "temperature", "start": 343, "end": 354, "id": 62, "annotation": null}, {"text": "range", "start": 355, "end": 360, "id": 63, "annotation": null}, {"text": ".", "start": 361, "end": 362, "id": 64, "annotation": null}], [{"text": "The", "start": 363, "end": 366, "id": 65, "annotation": null}, {"text": "electrical", "start": 367, "end": 377, "id": 66, "annotation": null}, {"text": "resistivity", "start": 378, "end": 389, "id": 67, "annotation": null}, {"text": "and", "start": 390, "end": 393, "id": 68, "annotation": null}, {"text": "thermopower", "start": 394, "end": 405, "id": 69, "annotation": null}, {"text": "simultaneously", "start": 406, "end": 420, "id": 70, "annotation": null}, {"text": "decrease", "start": 421, "end": 429, "id": 71, "annotation": null}, {"text": "with", "start": 430, "end": 434, "id": 72, "annotation": null}, {"text": "increasing", "start": 435, "end": 445, "id": 73, "annotation": null}, {"text": "Ag", "start": 446, "end": 448, "id": 74, "annotation": null}, {"text": "content", "start": 449, "end": 456, "id": 75, "annotation": null}, {"text": ".", "start": 457, "end": 458, "id": 76, "annotation": null}], [{"text": "The", "start": 459, "end": 462, "id": 77, "annotation": null}, {"text": "highest", "start": 463, "end": 470, "id": 78, "annotation": null}, {"text": "power", "start": 471, "end": 476, "id": 79, "annotation": null}, {"text": "factor", "start": 477, "end": 483, "id": 80, "annotation": null}, {"text": "(", "start": 484, "end": 485, "id": 81, "annotation": null}, {"text": "2.66", "start": 486, "end": 490, "id": 82, "annotation": null}, {"text": "\u03bcW", "start": 491, "end": 493, "id": 84, "annotation": null}, {"text": "cm\u22121", "start": 494, "end": 498, "id": 86, "annotation": null}, {"text": "K\u22122", "start": 499, "end": 502, "id": 88, "annotation": null}, {"text": "at", "start": 503, "end": 505, "id": 89, "annotation": null}, {"text": "150", "start": 506, "end": 509, "id": 90, "annotation": null}, {"text": "K", "start": 510, "end": 511, "id": 92, "annotation": null}, {"text": ")", "start": 512, "end": 513, "id": 93, "annotation": null}, {"text": "is", "start": 514, "end": 516, "id": 94, "annotation": null}, {"text": "reached", "start": 517, "end": 524, "id": 95, "annotation": null}, {"text": "for", "start": 525, "end": 528, "id": 96, "annotation": null}, {"text": "the", "start": 529, "end": 532, "id": 97, "annotation": null}, {"text": "Ca2.8Ag0.2Co3.95Fe0.05O9+\u03b4", "start": 533, "end": 559, "id": 98, "annotation": null}, {"text": ",", "start": 560, "end": 561, "id": 99, "annotation": null}, {"text": "representing", "start": 562, "end": 574, "id": 100, "annotation": null}, {"text": "an", "start": 575, "end": 577, "id": 101, "annotation": null}, {"text": "improvement", "start": 578, "end": 589, "id": 102, "annotation": null}, {"text": "of", "start": 590, "end": 592, "id": 103, "annotation": null}, {"text": "about", "start": 593, "end": 598, "id": 104, "annotation": null}, {"text": "16", "start": 599, "end": 601, "id": 105, "annotation": null}, {"text": "%", "start": 602, "end": 603, "id": 107, "annotation": null}, {"text": "compared", "start": 604, "end": 612, "id": 108, "annotation": null}, {"text": "to", "start": 613, "end": 615, "id": 109, "annotation": null}, {"text": "the", "start": 616, "end": 619, "id": 110, "annotation": null}, {"text": "undoped", "start": 620, "end": 627, "id": 111, "annotation": null}, {"text": "sample", "start": 628, "end": 634, "id": 112, "annotation": null}, {"text": ".", "start": 635, "end": 636, "id": 113, "annotation": null}], [{"text": "These", "start": 637, "end": 642, "id": 114, "annotation": null}, {"text": "results", "start": 643, "end": 650, "id": 115, "annotation": null}, {"text": "suggest", "start": 651, "end": 658, "id": 116, "annotation": null}, {"text": "that", "start": 659, "end": 663, "id": 117, "annotation": null}, {"text": "the", "start": 664, "end": 667, "id": 118, "annotation": null}, {"text": "Ag", "start": 668, "end": 670, "id": 119, "annotation": "DOPANT"}, {"text": "is", "start": 671, "end": 673, "id": 120, "annotation": null}, {"text": "an", "start": 674, "end": 676, "id": 121, "annotation": null}, {"text": "effective", "start": 677, "end": 686, "id": 122, "annotation": null}, {"text": "doping", "start": 687, "end": 693, "id": 123, "annotation": null}, {"text": "element", "start": 694, "end": 701, "id": 124, "annotation": null}, {"text": "for", "start": 702, "end": 705, "id": 125, "annotation": null}, {"text": "enhancing", "start": 706, "end": 715, "id": 126, "annotation": null}, {"text": "the", "start": 716, "end": 719, "id": 127, "annotation": null}, {"text": "thermoelectric", "start": 720, "end": 734, "id": 128, "annotation": null}, {"text": "properties", "start": 735, "end": 745, "id": 129, "annotation": null}, {"text": "of", "start": 746, "end": 748, "id": 130, "annotation": null}, {"text": "Ca3Co3.95Fe0.05O9+\u03b4", "start": 749, "end": 768, "id": 131, "annotation": "BASEMAT"}, {"text": ".", "start": 769, "end": 770, "id": 132, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt3", "text": "When the metal contact of a silicon solar cell is restricted to a fraction of the rear surface, the flow of electrons and holes towards that contact is constricted, which is beneficial for minority charge carriers but detrimental for majority carriers. It is possible to describe their 2D/3D transport and determine their concentration in the vertical and transversal dimensions of the solar cell by separately studying the central region near the contact and the peripheral region surrounding it. A virtue of such geometric approach is that it establishes a link between analytical models and computer simulations, providing both physical insight and sufficient accuracy to optimise partial rear contact devices. In this paper, we extend a previous version of the geometric model to solar cells having a full-area, locally contacted dopant diffusion on the rear surface. The case for n-type versus p-type wafers is considered, point contacts are compared with line contacts, including the impact of the metal/semiconductor resistance and bulk recombination is evaluated. Copyright \u00a9 2013 John Wiley & Sons, Ltd.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "When", "start": 0, "end": 4, "annotation": null}, {"text": "the", "start": 5, "end": 8, "annotation": null}, {"text": "metal", "start": 9, "end": 14, "annotation": null}, {"text": "contact", "start": 15, "end": 22, "annotation": null}, {"text": "of", "start": 23, "end": 25, "annotation": null}, {"text": "a", "start": 26, "end": 27, "annotation": null}, {"text": "silicon", "start": 28, "end": 35, "annotation": null}, {"text": "solar", "start": 36, "end": 41, "annotation": null}, {"text": "cell", "start": 42, "end": 46, "annotation": null}, {"text": "is", "start": 47, "end": 49, "annotation": null}, {"text": "restricted", "start": 50, "end": 60, "annotation": null}, {"text": "to", "start": 61, "end": 63, "annotation": null}, {"text": "a", "start": 64, "end": 65, "annotation": null}, {"text": "fraction", "start": 66, "end": 74, "annotation": null}, {"text": "of", "start": 75, "end": 77, "annotation": null}, {"text": "the", "start": 78, "end": 81, "annotation": null}, {"text": "rear", "start": 82, "end": 86, "annotation": null}, {"text": "surface", "start": 87, "end": 94, "annotation": null}, {"text": ",", "start": 94, "end": 95, "annotation": null}, {"text": "the", "start": 96, "end": 99, "annotation": null}, {"text": "flow", "start": 100, "end": 104, "annotation": null}, {"text": "of", "start": 105, "end": 107, "annotation": null}, {"text": "electrons", "start": 108, "end": 117, "annotation": null}, {"text": "and", "start": 118, "end": 121, "annotation": null}, {"text": "holes", "start": 122, "end": 127, "annotation": null}, {"text": "towards", "start": 128, "end": 135, "annotation": null}, {"text": "that", "start": 136, "end": 140, "annotation": null}, {"text": "contact", "start": 141, "end": 148, "annotation": null}, {"text": "is", "start": 149, "end": 151, "annotation": null}, {"text": "constricted", "start": 152, "end": 163, "annotation": null}, {"text": ",", "start": 163, "end": 164, "annotation": null}, {"text": "which", "start": 165, "end": 170, "annotation": null}, {"text": "is", "start": 171, "end": 173, "annotation": null}, {"text": "beneficial", "start": 174, "end": 184, "annotation": null}, {"text": "for", "start": 185, "end": 188, "annotation": null}, {"text": "minority", "start": 189, "end": 197, "annotation": null}, {"text": "charge", "start": 198, "end": 204, "annotation": null}, {"text": "carriers", "start": 205, "end": 213, "annotation": null}, {"text": "but", "start": 214, "end": 217, "annotation": null}, {"text": "detrimental", "start": 218, "end": 229, "annotation": null}, {"text": "for", "start": 230, "end": 233, "annotation": null}, {"text": "majority", "start": 234, "end": 242, "annotation": null}, {"text": "carriers", "start": 243, "end": 251, "annotation": null}, {"text": ".", "start": 251, "end": 252, "annotation": null}], [{"text": "It", "start": 253, "end": 255, "annotation": null}, {"text": "is", "start": 256, "end": 258, "annotation": null}, {"text": "possible", "start": 259, "end": 267, "annotation": null}, {"text": "to", "start": 268, "end": 270, "annotation": null}, {"text": "describe", "start": 271, "end": 279, "annotation": null}, {"text": "their", "start": 280, "end": 285, "annotation": null}, {"text": "2D", "start": 286, "end": 288, "annotation": null}, {"text": "/", "start": 288, "end": 289, "annotation": null}, {"text": "3D", "start": 289, "end": 291, "annotation": null}, {"text": "transport", "start": 292, "end": 301, "annotation": null}, {"text": "and", "start": 302, "end": 305, "annotation": null}, {"text": "determine", "start": 306, "end": 315, "annotation": null}, {"text": "their", "start": 316, "end": 321, "annotation": null}, {"text": "concentration", "start": 322, "end": 335, "annotation": null}, {"text": "in", "start": 336, "end": 338, "annotation": null}, {"text": "the", "start": 339, "end": 342, "annotation": null}, {"text": "vertical", "start": 343, "end": 351, "annotation": null}, {"text": "and", "start": 352, "end": 355, "annotation": null}, {"text": "transversal", "start": 356, "end": 367, "annotation": null}, {"text": "dimensions", "start": 368, "end": 378, "annotation": null}, {"text": "of", "start": 379, "end": 381, "annotation": null}, {"text": "the", "start": 382, "end": 385, "annotation": null}, {"text": "solar", "start": 386, "end": 391, "annotation": null}, {"text": "cell", "start": 392, "end": 396, "annotation": null}, {"text": "by", "start": 397, "end": 399, "annotation": null}, {"text": "separately", "start": 400, "end": 410, "annotation": null}, {"text": "studying", "start": 411, "end": 419, "annotation": null}, {"text": "the", "start": 420, "end": 423, "annotation": null}, {"text": "central", "start": 424, "end": 431, "annotation": null}, {"text": "region", "start": 432, "end": 438, "annotation": null}, {"text": "near", "start": 439, "end": 443, "annotation": null}, {"text": "the", "start": 444, "end": 447, "annotation": null}, {"text": "contact", "start": 448, "end": 455, "annotation": null}, {"text": "and", "start": 456, "end": 459, "annotation": null}, {"text": "the", "start": 460, "end": 463, "annotation": null}, {"text": "peripheral", "start": 464, "end": 474, "annotation": null}, {"text": "region", "start": 475, "end": 481, "annotation": null}, {"text": "surrounding", "start": 482, "end": 493, "annotation": null}, {"text": "it", "start": 494, "end": 496, "annotation": null}, {"text": ".", "start": 496, "end": 497, "annotation": null}], [{"text": "A", "start": 498, "end": 499, "annotation": null}, {"text": "virtue", "start": 500, "end": 506, "annotation": null}, {"text": "of", "start": 507, "end": 509, "annotation": null}, {"text": "such", "start": 510, "end": 514, "annotation": null}, {"text": "geometric", "start": 515, "end": 524, "annotation": null}, {"text": "approach", "start": 525, "end": 533, "annotation": null}, {"text": "is", "start": 534, "end": 536, "annotation": null}, {"text": "that", "start": 537, "end": 541, "annotation": null}, {"text": "it", "start": 542, "end": 544, "annotation": null}, {"text": "establishes", "start": 545, "end": 556, "annotation": null}, {"text": "a", "start": 557, "end": 558, "annotation": null}, {"text": "link", "start": 559, "end": 563, "annotation": null}, {"text": "between", "start": 564, "end": 571, "annotation": null}, {"text": "analytical", "start": 572, "end": 582, "annotation": null}, {"text": "models", "start": 583, "end": 589, "annotation": null}, {"text": "and", "start": 590, "end": 593, "annotation": null}, {"text": "computer", "start": 594, "end": 602, "annotation": null}, {"text": "simulations", "start": 603, "end": 614, "annotation": null}, {"text": ",", "start": 614, "end": 615, "annotation": null}, {"text": "providing", "start": 616, "end": 625, "annotation": null}, {"text": "both", "start": 626, "end": 630, "annotation": null}, {"text": "physical", "start": 631, "end": 639, "annotation": null}, {"text": "insight", "start": 640, "end": 647, "annotation": null}, {"text": "and", "start": 648, "end": 651, "annotation": null}, {"text": "sufficient", "start": 652, "end": 662, "annotation": null}, {"text": "accuracy", "start": 663, "end": 671, "annotation": null}, {"text": "to", "start": 672, "end": 674, "annotation": null}, {"text": "optimise", "start": 675, "end": 683, "annotation": null}, {"text": "partial", "start": 684, "end": 691, "annotation": null}, {"text": "rear", "start": 692, "end": 696, "annotation": null}, {"text": "contact", "start": 697, "end": 704, "annotation": null}, {"text": "devices", "start": 705, "end": 712, "annotation": null}, {"text": ".", "start": 712, "end": 713, "annotation": null}], [{"text": "In", "start": 714, "end": 716, "annotation": null}, {"text": "this", "start": 717, "end": 721, "annotation": null}, {"text": "paper", "start": 722, "end": 727, "annotation": null}, {"text": ",", "start": 727, "end": 728, "annotation": null}, {"text": "we", "start": 729, "end": 731, "annotation": null}, {"text": "extend", "start": 732, "end": 738, "annotation": null}, {"text": "a", "start": 739, "end": 740, "annotation": null}, {"text": "previous", "start": 741, "end": 749, "annotation": null}, {"text": "version", "start": 750, "end": 757, "annotation": null}, {"text": "of", "start": 758, "end": 760, "annotation": null}, {"text": "the", "start": 761, "end": 764, "annotation": null}, {"text": "geometric", "start": 765, "end": 774, "annotation": null}, {"text": "model", "start": 775, "end": 780, "annotation": null}, {"text": "to", "start": 781, "end": 783, "annotation": null}, {"text": "solar", "start": 784, "end": 789, "annotation": null}, {"text": "cells", "start": 790, "end": 795, "annotation": null}, {"text": "having", "start": 796, "end": 802, "annotation": null}, {"text": "a", "start": 803, "end": 804, "annotation": null}, {"text": "full", "start": 805, "end": 809, "annotation": null}, {"text": "-", "start": 809, "end": 810, "annotation": null}, {"text": "area", "start": 810, "end": 814, "annotation": null}, {"text": ",", "start": 814, "end": 815, "annotation": null}, {"text": "locally", "start": 816, "end": 823, "annotation": null}, {"text": "contacted", "start": 824, "end": 833, "annotation": null}, {"text": "dopant", "start": 834, "end": 840, "annotation": null}, {"text": "diffusion", "start": 841, "end": 850, "annotation": null}, {"text": "on", "start": 851, "end": 853, "annotation": null}, {"text": "the", "start": 854, "end": 857, "annotation": null}, {"text": "rear", "start": 858, "end": 862, "annotation": null}, {"text": "surface", "start": 863, "end": 870, "annotation": null}, {"text": ".", "start": 870, "end": 871, "annotation": null}], [{"text": "The", "start": 872, "end": 875, "annotation": null}, {"text": "case", "start": 876, "end": 880, "annotation": null}, {"text": "for", "start": 881, "end": 884, "annotation": null}, {"text": "n", "start": 885, "end": 886, "annotation": "DOPANT"}, {"text": "-", "start": 886, "end": 887, "annotation": "DOPANT"}, {"text": "type", "start": 887, "end": 891, "annotation": "DOPANT"}, {"text": "versus", "start": 892, "end": 898, "annotation": null}, {"text": "p", "start": 899, "end": 900, "annotation": "DOPANT"}, {"text": "-", "start": 900, "end": 901, "annotation": "DOPANT"}, {"text": "type", "start": 901, "end": 905, "annotation": "DOPANT"}, {"text": "wafers", "start": 906, "end": 912, "annotation": "BASEMAT"}, {"text": "is", "start": 913, "end": 915, "annotation": null}, {"text": "considered", "start": 916, "end": 926, "annotation": null}, {"text": ",", "start": 926, "end": 927, "annotation": null}, {"text": "point", "start": 928, "end": 933, "annotation": null}, {"text": "contacts", "start": 934, "end": 942, "annotation": null}, {"text": "are", "start": 943, "end": 946, "annotation": null}, {"text": "compared", "start": 947, "end": 955, "annotation": null}, {"text": "with", "start": 956, "end": 960, "annotation": null}, {"text": "line", "start": 961, "end": 965, "annotation": null}, {"text": "contacts", "start": 966, "end": 974, "annotation": null}, {"text": ",", "start": 974, "end": 975, "annotation": null}, {"text": "including", "start": 976, "end": 985, "annotation": null}, {"text": "the", "start": 986, "end": 989, "annotation": null}, {"text": "impact", "start": 990, "end": 996, "annotation": null}, {"text": "of", "start": 997, "end": 999, "annotation": null}, {"text": "the", "start": 1000, "end": 1003, "annotation": null}, {"text": "metal", "start": 1004, "end": 1009, "annotation": null}, {"text": "/", "start": 1009, "end": 1010, "annotation": null}, {"text": "semiconductor", "start": 1010, "end": 1023, "annotation": null}, {"text": "resistance", "start": 1024, "end": 1034, "annotation": null}, {"text": "and", "start": 1035, "end": 1038, "annotation": null}, {"text": "bulk", "start": 1039, "end": 1043, "annotation": null}, {"text": "recombination", "start": 1044, "end": 1057, "annotation": null}, {"text": "is", "start": 1058, "end": 1060, "annotation": null}, {"text": "evaluated", "start": 1061, "end": 1070, "annotation": null}, {"text": ".", "start": 1070, "end": 1071, "annotation": null}]], "meta": {"doi": "10.1002/pip.2433"}} +{"text": "Fabrication of a ZnO p-n homojunction within a single structure by a simple process is a challenging task. In this work, an intrinsic p-type surface conductive layer of ZnO with a controlled concentration of holes over n-type conductive bulk was obtained by a one-step room-temperature process via hydrogen plasma treatment. Non-contact surface sensitive techniques, such as Kelvin probe force microscopy and conductive force atomic microscopy, confirmed the existence of surface p-type conductivity through analyzing the distribution and concentration of charge carriers on the topmost surface of hydrogenated ZnO. A theoretical framework was constructed to provide a rationale of the p-type surface conductivity and justify its relation to the treatment time. It is believed that this finding will open a new possibility for the fabrication of ZnO based p-n junction devices.", "meta": {"doi": "10.1088/1361-6463/aa6e91"}, "_input_hash": 685532856, "_task_hash": 1997069167, "tokens": [[{"text": "Fabrication", "start": 27, "end": 38, "id": 5, "annotation": null}, {"text": "of", "start": 39, "end": 41, "id": 6, "annotation": null}, {"text": "a", "start": 42, "end": 43, "id": 7, "annotation": null}, {"text": "ZnO", "start": 44, "end": 47, "id": 8, "annotation": null}, {"text": "p", "start": 48, "end": 49, "id": 9, "annotation": null}, {"text": "-", "start": 50, "end": 51, "id": 10, "annotation": null}, {"text": "n", "start": 52, "end": 53, "id": 11, "annotation": null}, {"text": "homojunction", "start": 54, "end": 66, "id": 12, "annotation": null}, {"text": "within", "start": 67, "end": 73, "id": 13, "annotation": null}, {"text": "a", "start": 74, "end": 75, "id": 14, "annotation": null}, {"text": "single", "start": 76, "end": 82, "id": 15, "annotation": null}, {"text": "structure", "start": 83, "end": 92, "id": 16, "annotation": null}, {"text": "by", "start": 93, "end": 95, "id": 17, "annotation": null}, {"text": "a", "start": 96, "end": 97, "id": 18, "annotation": null}, {"text": "simple", "start": 98, "end": 104, "id": 19, "annotation": null}, {"text": "process", "start": 105, "end": 112, "id": 20, "annotation": null}, {"text": "is", "start": 113, "end": 115, "id": 21, "annotation": null}, {"text": "a", "start": 116, "end": 117, "id": 22, "annotation": null}, {"text": "challenging", "start": 118, "end": 129, "id": 23, "annotation": null}, {"text": "task", "start": 130, "end": 134, "id": 24, "annotation": null}, {"text": ".", "start": 135, "end": 136, "id": 25, "annotation": null}], [{"text": "In", "start": 137, "end": 139, "id": 26, "annotation": null}, {"text": "this", "start": 140, "end": 144, "id": 27, "annotation": null}, {"text": "work", "start": 145, "end": 149, "id": 28, "annotation": null}, {"text": ",", "start": 150, "end": 151, "id": 29, "annotation": null}, {"text": "an", "start": 152, "end": 154, "id": 30, "annotation": null}, {"text": "intrinsic", "start": 155, "end": 164, "id": 31, "annotation": null}, {"text": "p", "start": 165, "end": 166, "id": 32, "annotation": "DOPANT"}, {"text": "-", "start": 167, "end": 168, "id": 33, "annotation": "DOPANT"}, {"text": "type", "start": 169, "end": 173, "id": 34, "annotation": "DOPANT"}, {"text": "surface", "start": 174, "end": 181, "id": 35, "annotation": null}, {"text": "conductive", "start": 182, "end": 192, "id": 36, "annotation": null}, {"text": "layer", "start": 193, "end": 198, "id": 37, "annotation": null}, {"text": "of", "start": 199, "end": 201, "id": 38, "annotation": null}, {"text": "ZnO", "start": 202, "end": 205, "id": 39, "annotation": "BASEMAT"}, {"text": "with", "start": 206, "end": 210, "id": 40, "annotation": null}, {"text": "a", "start": 211, "end": 212, "id": 41, "annotation": null}, {"text": "controlled", "start": 213, "end": 223, "id": 42, "annotation": null}, {"text": "concentration", "start": 224, "end": 237, "id": 43, "annotation": null}, {"text": "of", "start": 238, "end": 240, "id": 44, "annotation": null}, {"text": "holes", "start": 241, "end": 246, "id": 45, "annotation": "DOPANT"}, {"text": "over", "start": 247, "end": 251, "id": 46, "annotation": null}, {"text": "n", "start": 252, "end": 253, "id": 47, "annotation": "DOPANT"}, {"text": "-", "start": 254, "end": 255, "id": 48, "annotation": "DOPANT"}, {"text": "type", "start": 256, "end": 260, "id": 49, "annotation": "DOPANT"}, {"text": "conductive", "start": 261, "end": 271, "id": 50, "annotation": null}, {"text": "bulk", "start": 272, "end": 276, "id": 51, "annotation": "BASEMAT"}, {"text": "was", "start": 277, "end": 280, "id": 52, "annotation": null}, {"text": "obtained", "start": 281, "end": 289, "id": 53, "annotation": null}, {"text": "by", "start": 290, "end": 292, "id": 54, "annotation": null}, {"text": "a", "start": 293, "end": 294, "id": 55, "annotation": null}, {"text": "one", "start": 295, "end": 298, "id": 56, "annotation": null}, {"text": "-", "start": 299, "end": 300, "id": 57, "annotation": null}, {"text": "step", "start": 301, "end": 305, "id": 58, "annotation": null}, {"text": "room", "start": 306, "end": 310, "id": 59, "annotation": null}, {"text": "-", "start": 311, "end": 312, "id": 60, "annotation": null}, {"text": "temperature", "start": 313, "end": 324, "id": 61, "annotation": null}, {"text": "process", "start": 325, "end": 332, "id": 62, "annotation": null}, {"text": "via", "start": 333, "end": 336, "id": 63, "annotation": null}, {"text": "hydrogen", "start": 337, "end": 345, "id": 64, "annotation": null}, {"text": "plasma", "start": 346, "end": 352, "id": 65, "annotation": null}, {"text": "treatment", "start": 353, "end": 362, "id": 66, "annotation": null}, {"text": ".", "start": 363, "end": 364, "id": 67, "annotation": null}], [{"text": "Non", "start": 365, "end": 368, "id": 68, "annotation": null}, {"text": "-", "start": 369, "end": 370, "id": 69, "annotation": null}, {"text": "contact", "start": 371, "end": 378, "id": 70, "annotation": null}, {"text": "surface", "start": 379, "end": 386, "id": 71, "annotation": null}, {"text": "sensitive", "start": 387, "end": 396, "id": 72, "annotation": null}, {"text": "techniques", "start": 397, "end": 407, "id": 73, "annotation": null}, {"text": ",", "start": 408, "end": 409, "id": 74, "annotation": null}, {"text": "such", "start": 410, "end": 414, "id": 75, "annotation": null}, {"text": "as", "start": 415, "end": 417, "id": 76, "annotation": null}, {"text": "Kelvin", "start": 418, "end": 424, "id": 77, "annotation": null}, {"text": "probe", "start": 425, "end": 430, "id": 78, "annotation": null}, {"text": "force", "start": 431, "end": 436, "id": 79, "annotation": null}, {"text": "microscopy", "start": 437, "end": 447, "id": 80, "annotation": null}, {"text": "and", "start": 448, "end": 451, "id": 81, "annotation": null}, {"text": "conductive", "start": 452, "end": 462, "id": 82, "annotation": null}, {"text": "force", "start": 463, "end": 468, "id": 83, "annotation": null}, {"text": "atomic", "start": 469, "end": 475, "id": 84, "annotation": null}, {"text": "microscopy", "start": 476, "end": 486, "id": 85, "annotation": null}, {"text": ",", "start": 487, "end": 488, "id": 86, "annotation": null}, {"text": "confirmed", "start": 489, "end": 498, "id": 87, "annotation": null}, {"text": "the", "start": 499, "end": 502, "id": 88, "annotation": null}, {"text": "existence", "start": 503, "end": 512, "id": 89, "annotation": null}, {"text": "of", "start": 513, "end": 515, "id": 90, "annotation": null}, {"text": "surface", "start": 516, "end": 523, "id": 91, "annotation": null}, {"text": "p", "start": 524, "end": 525, "id": 92, "annotation": null}, {"text": "-", "start": 526, "end": 527, "id": 93, "annotation": null}, {"text": "type", "start": 528, "end": 532, "id": 94, "annotation": null}, {"text": "conductivity", "start": 533, "end": 545, "id": 95, "annotation": null}, {"text": "through", "start": 546, "end": 553, "id": 96, "annotation": null}, {"text": "analyzing", "start": 554, "end": 563, "id": 97, "annotation": null}, {"text": "the", "start": 564, "end": 567, "id": 98, "annotation": null}, {"text": "distribution", "start": 568, "end": 580, "id": 99, "annotation": null}, {"text": "and", "start": 581, "end": 584, "id": 100, "annotation": null}, {"text": "concentration", "start": 585, "end": 598, "id": 101, "annotation": null}, {"text": "of", "start": 599, "end": 601, "id": 102, "annotation": null}, {"text": "charge", "start": 602, "end": 608, "id": 103, "annotation": null}, {"text": "carriers", "start": 609, "end": 617, "id": 104, "annotation": null}, {"text": "on", "start": 618, "end": 620, "id": 105, "annotation": null}, {"text": "the", "start": 621, "end": 624, "id": 106, "annotation": null}, {"text": "topmost", "start": 625, "end": 632, "id": 107, "annotation": null}, {"text": "surface", "start": 633, "end": 640, "id": 108, "annotation": null}, {"text": "of", "start": 641, "end": 643, "id": 109, "annotation": null}, {"text": "hydrogenated", "start": 644, "end": 656, "id": 110, "annotation": null}, {"text": "ZnO.", "start": 657, "end": 661, "id": 111, "annotation": null}], [{"text": "A", "start": 662, "end": 663, "id": 112, "annotation": null}, {"text": "theoretical", "start": 664, "end": 675, "id": 113, "annotation": null}, {"text": "framework", "start": 676, "end": 685, "id": 114, "annotation": null}, {"text": "was", "start": 686, "end": 689, "id": 115, "annotation": null}, {"text": "constructed", "start": 690, "end": 701, "id": 116, "annotation": null}, {"text": "to", "start": 702, "end": 704, "id": 117, "annotation": null}, {"text": "provide", "start": 705, "end": 712, "id": 118, "annotation": null}, {"text": "a", "start": 713, "end": 714, "id": 119, "annotation": null}, {"text": "rationale", "start": 715, "end": 724, "id": 120, "annotation": null}, {"text": "of", "start": 725, "end": 727, "id": 121, "annotation": null}, {"text": "the", "start": 728, "end": 731, "id": 122, "annotation": null}, {"text": "p", "start": 732, "end": 733, "id": 123, "annotation": null}, {"text": "-", "start": 734, "end": 735, "id": 124, "annotation": null}, {"text": "type", "start": 736, "end": 740, "id": 125, "annotation": null}, {"text": "surface", "start": 741, "end": 748, "id": 126, "annotation": null}, {"text": "conductivity", "start": 749, "end": 761, "id": 127, "annotation": null}, {"text": "and", "start": 762, "end": 765, "id": 128, "annotation": null}, {"text": "justify", "start": 766, "end": 773, "id": 129, "annotation": null}, {"text": "its", "start": 774, "end": 777, "id": 130, "annotation": null}, {"text": "relation", "start": 778, "end": 786, "id": 131, "annotation": null}, {"text": "to", "start": 787, "end": 789, "id": 132, "annotation": null}, {"text": "the", "start": 790, "end": 793, "id": 133, "annotation": null}, {"text": "treatment", "start": 794, "end": 803, "id": 134, "annotation": null}, {"text": "time", "start": 804, "end": 808, "id": 135, "annotation": null}, {"text": ".", "start": 809, "end": 810, "id": 136, "annotation": null}], [{"text": "It", "start": 811, "end": 813, "id": 137, "annotation": null}, {"text": "is", "start": 814, "end": 816, "id": 138, "annotation": null}, {"text": "believed", "start": 817, "end": 825, "id": 139, "annotation": null}, {"text": "that", "start": 826, "end": 830, "id": 140, "annotation": null}, {"text": "this", "start": 831, "end": 835, "id": 141, "annotation": null}, {"text": "finding", "start": 836, "end": 843, "id": 142, "annotation": null}, {"text": "will", "start": 844, "end": 848, "id": 143, "annotation": null}, {"text": "open", "start": 849, "end": 853, "id": 144, "annotation": null}, {"text": "a", "start": 854, "end": 855, "id": 145, "annotation": null}, {"text": "new", "start": 856, "end": 859, "id": 146, "annotation": null}, {"text": "possibility", "start": 860, "end": 871, "id": 147, "annotation": null}, {"text": "for", "start": 872, "end": 875, "id": 148, "annotation": null}, {"text": "the", "start": 876, "end": 879, "id": 149, "annotation": null}, {"text": "fabrication", "start": 880, "end": 891, "id": 150, "annotation": null}, {"text": "of", "start": 892, "end": 894, "id": 151, "annotation": null}, {"text": "ZnO", "start": 895, "end": 898, "id": 152, "annotation": null}, {"text": "based", "start": 899, "end": 904, "id": 153, "annotation": null}, {"text": "p", "start": 905, "end": 906, "id": 154, "annotation": null}, {"text": "-", "start": 907, "end": 908, "id": 155, "annotation": null}, {"text": "n", "start": 909, "end": 910, "id": 156, "annotation": null}, {"text": "junction", "start": 911, "end": 919, "id": 157, "annotation": null}, {"text": "devices", "start": 920, "end": 927, "id": 158, "annotation": null}, {"text": ".", "start": 928, "end": 929, "id": 159, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Cu-related green luminescence (GL) band in n-type ZnO layers grown by molecular beam epitaxy on sapphire and a bulk ZnO sample grown by hydrothermal method have been studied with above-bandgap excitation. Annealing of the samples in air at temperatures above 600 \u00b0C resulted in an increase in the concentration of Cu Zn acceptors, followed by a dramatic enhancement of the Cu-related GL band peaking at 2.45 eV, and a characteristic fine structure. The GL band quenched at temperatures between 250 and 500 K due to escape of holes from the excited state of the Cu Zn acceptor to the valence band. Energy position of this state in the bandgap of ZnO and its capture cross section for holes were estimated as 0.38 eV and 2\u00d7 10 -13 cm 2 , respectively.", "meta": {"doi": "10.1116/1.3110023"}, "_input_hash": -447431310, "_task_hash": 554478503, "tokens": [[{"text": "Cu", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "-", "start": 3, "end": 4, "id": 1, "annotation": null}, {"text": "related", "start": 5, "end": 12, "id": 2, "annotation": null}, {"text": "green", "start": 13, "end": 18, "id": 3, "annotation": null}, {"text": "luminescence", "start": 19, "end": 31, "id": 4, "annotation": null}, {"text": "(", "start": 32, "end": 33, "id": 5, "annotation": null}, {"text": "GL", "start": 34, "end": 36, "id": 6, "annotation": null}, {"text": ")", "start": 37, "end": 38, "id": 7, "annotation": null}, {"text": "band", "start": 39, "end": 43, "id": 8, "annotation": null}, {"text": "in", "start": 44, "end": 46, "id": 9, "annotation": null}, {"text": "n", "start": 47, "end": 48, "id": 10, "annotation": "DOPANT"}, {"text": "-", "start": 49, "end": 50, "id": 11, "annotation": "DOPANT"}, {"text": "type", "start": 51, "end": 55, "id": 12, "annotation": "DOPANT"}, {"text": "ZnO", "start": 56, "end": 59, "id": 13, "annotation": "BASEMAT"}, {"text": "layers", "start": 60, "end": 66, "id": 14, "annotation": null}, {"text": "grown", "start": 67, "end": 72, "id": 15, "annotation": null}, {"text": "by", "start": 73, "end": 75, "id": 16, "annotation": null}, {"text": "molecular", "start": 76, "end": 85, "id": 17, "annotation": null}, {"text": "beam", "start": 86, "end": 90, "id": 18, "annotation": null}, {"text": "epitaxy", "start": 91, "end": 98, "id": 19, "annotation": null}, {"text": "on", "start": 99, "end": 101, "id": 20, "annotation": null}, {"text": "sapphire", "start": 102, "end": 110, "id": 21, "annotation": null}, {"text": "and", "start": 111, "end": 114, "id": 22, "annotation": null}, {"text": "a", "start": 115, "end": 116, "id": 23, "annotation": null}, {"text": "bulk", "start": 117, "end": 121, "id": 24, "annotation": null}, {"text": "ZnO", "start": 122, "end": 125, "id": 25, "annotation": null}, {"text": "sample", "start": 126, "end": 132, "id": 26, "annotation": null}, {"text": "grown", "start": 133, "end": 138, "id": 27, "annotation": null}, {"text": "by", "start": 139, "end": 141, "id": 28, "annotation": null}, {"text": "hydrothermal", "start": 142, "end": 154, "id": 29, "annotation": null}, {"text": "method", "start": 155, "end": 161, "id": 30, "annotation": null}, {"text": "have", "start": 162, "end": 166, "id": 31, "annotation": null}, {"text": "been", "start": 167, "end": 171, "id": 32, "annotation": null}, {"text": "studied", "start": 172, "end": 179, "id": 33, "annotation": null}, {"text": "with", "start": 180, "end": 184, "id": 34, "annotation": null}, {"text": "above", "start": 185, "end": 190, "id": 35, "annotation": null}, {"text": "-", "start": 191, "end": 192, "id": 36, "annotation": null}, {"text": "bandgap", "start": 193, "end": 200, "id": 37, "annotation": null}, {"text": "excitation", "start": 201, "end": 211, "id": 38, "annotation": null}, {"text": ".", "start": 212, "end": 213, "id": 39, "annotation": null}], [{"text": "Annealing", "start": 214, "end": 223, "id": 40, "annotation": null}, {"text": "of", "start": 224, "end": 226, "id": 41, "annotation": null}, {"text": "the", "start": 227, "end": 230, "id": 42, "annotation": null}, {"text": "samples", "start": 231, "end": 238, "id": 43, "annotation": null}, {"text": "in", "start": 239, "end": 241, "id": 44, "annotation": null}, {"text": "air", "start": 242, "end": 245, "id": 45, "annotation": null}, {"text": "at", "start": 246, "end": 248, "id": 46, "annotation": null}, {"text": "temperatures", "start": 249, "end": 261, "id": 47, "annotation": null}, {"text": "above", "start": 262, "end": 267, "id": 48, "annotation": null}, {"text": "600", "start": 268, "end": 271, "id": 49, "annotation": null}, {"text": "\u00b0", "start": 272, "end": 273, "id": 50, "annotation": null}, {"text": "C", "start": 274, "end": 275, "id": 51, "annotation": null}, {"text": "resulted", "start": 276, "end": 284, "id": 52, "annotation": null}, {"text": "in", "start": 285, "end": 287, "id": 53, "annotation": null}, {"text": "an", "start": 288, "end": 290, "id": 54, "annotation": null}, {"text": "increase", "start": 291, "end": 299, "id": 55, "annotation": null}, {"text": "in", "start": 300, "end": 302, "id": 56, "annotation": null}, {"text": "the", "start": 303, "end": 306, "id": 57, "annotation": null}, {"text": "concentration", "start": 307, "end": 320, "id": 58, "annotation": null}, {"text": "of", "start": 321, "end": 323, "id": 59, "annotation": null}, {"text": "Cu", "start": 324, "end": 326, "id": 60, "annotation": null}, {"text": "Zn", "start": 327, "end": 329, "id": 61, "annotation": null}, {"text": "acceptors", "start": 330, "end": 339, "id": 62, "annotation": null}, {"text": ",", "start": 340, "end": 341, "id": 63, "annotation": null}, {"text": "followed", "start": 342, "end": 350, "id": 64, "annotation": null}, {"text": "by", "start": 351, "end": 353, "id": 65, "annotation": null}, {"text": "a", "start": 354, "end": 355, "id": 66, "annotation": null}, {"text": "dramatic", "start": 356, "end": 364, "id": 67, "annotation": null}, {"text": "enhancement", "start": 365, "end": 376, "id": 68, "annotation": null}, {"text": "of", "start": 377, "end": 379, "id": 69, "annotation": null}, {"text": "the", "start": 380, "end": 383, "id": 70, "annotation": null}, {"text": "Cu", "start": 384, "end": 386, "id": 71, "annotation": null}, {"text": "-", "start": 387, "end": 388, "id": 72, "annotation": null}, {"text": "related", "start": 389, "end": 396, "id": 73, "annotation": null}, {"text": "GL", "start": 397, "end": 399, "id": 74, "annotation": null}, {"text": "band", "start": 400, "end": 404, "id": 75, "annotation": null}, {"text": "peaking", "start": 405, "end": 412, "id": 76, "annotation": null}, {"text": "at", "start": 413, "end": 415, "id": 77, "annotation": null}, {"text": "2.45", "start": 416, "end": 420, "id": 78, "annotation": null}, {"text": "eV", "start": 421, "end": 423, "id": 79, "annotation": null}, {"text": ",", "start": 424, "end": 425, "id": 80, "annotation": null}, {"text": "and", "start": 426, "end": 429, "id": 81, "annotation": null}, {"text": "a", "start": 430, "end": 431, "id": 82, "annotation": null}, {"text": "characteristic", "start": 432, "end": 446, "id": 83, "annotation": null}, {"text": "fine", "start": 447, "end": 451, "id": 84, "annotation": null}, {"text": "structure", "start": 452, "end": 461, "id": 85, "annotation": null}, {"text": ".", "start": 462, "end": 463, "id": 86, "annotation": null}], [{"text": "The", "start": 464, "end": 467, "id": 87, "annotation": null}, {"text": "GL", "start": 468, "end": 470, "id": 88, "annotation": null}, {"text": "band", "start": 471, "end": 475, "id": 89, "annotation": null}, {"text": "quenched", "start": 476, "end": 484, "id": 90, "annotation": null}, {"text": "at", "start": 485, "end": 487, "id": 91, "annotation": null}, {"text": "temperatures", "start": 488, "end": 500, "id": 92, "annotation": null}, {"text": "between", "start": 501, "end": 508, "id": 93, "annotation": null}, {"text": "250", "start": 509, "end": 512, "id": 94, "annotation": null}, {"text": "and", "start": 513, "end": 516, "id": 95, "annotation": null}, {"text": "500", "start": 517, "end": 520, "id": 96, "annotation": null}, {"text": "K", "start": 521, "end": 522, "id": 97, "annotation": null}, {"text": "due", "start": 523, "end": 526, "id": 98, "annotation": null}, {"text": "to", "start": 527, "end": 529, "id": 99, "annotation": null}, {"text": "escape", "start": 530, "end": 536, "id": 100, "annotation": null}, {"text": "of", "start": 537, "end": 539, "id": 101, "annotation": null}, {"text": "holes", "start": 540, "end": 545, "id": 102, "annotation": null}, {"text": "from", "start": 546, "end": 550, "id": 103, "annotation": null}, {"text": "the", "start": 551, "end": 554, "id": 104, "annotation": null}, {"text": "excited", "start": 555, "end": 562, "id": 105, "annotation": null}, {"text": "state", "start": 563, "end": 568, "id": 106, "annotation": null}, {"text": "of", "start": 569, "end": 571, "id": 107, "annotation": null}, {"text": "the", "start": 572, "end": 575, "id": 108, "annotation": null}, {"text": "Cu", "start": 576, "end": 578, "id": 109, "annotation": null}, {"text": "Zn", "start": 579, "end": 581, "id": 110, "annotation": null}, {"text": "acceptor", "start": 582, "end": 590, "id": 111, "annotation": null}, {"text": "to", "start": 591, "end": 593, "id": 112, "annotation": null}, {"text": "the", "start": 594, "end": 597, "id": 113, "annotation": null}, {"text": "valence", "start": 598, "end": 605, "id": 114, "annotation": null}, {"text": "band", "start": 606, "end": 610, "id": 115, "annotation": null}, {"text": ".", "start": 611, "end": 612, "id": 116, "annotation": null}], [{"text": "Energy", "start": 613, "end": 619, "id": 117, "annotation": null}, {"text": "position", "start": 620, "end": 628, "id": 118, "annotation": null}, {"text": "of", "start": 629, "end": 631, "id": 119, "annotation": null}, {"text": "this", "start": 632, "end": 636, "id": 120, "annotation": null}, {"text": "state", "start": 637, "end": 642, "id": 121, "annotation": null}, {"text": "in", "start": 643, "end": 645, "id": 122, "annotation": null}, {"text": "the", "start": 646, "end": 649, "id": 123, "annotation": null}, {"text": "bandgap", "start": 650, "end": 657, "id": 124, "annotation": null}, {"text": "of", "start": 658, "end": 660, "id": 125, "annotation": null}, {"text": "ZnO", "start": 661, "end": 664, "id": 126, "annotation": null}, {"text": "and", "start": 665, "end": 668, "id": 127, "annotation": null}, {"text": "its", "start": 669, "end": 672, "id": 128, "annotation": null}, {"text": "capture", "start": 673, "end": 680, "id": 129, "annotation": null}, {"text": "cross", "start": 681, "end": 686, "id": 130, "annotation": null}, {"text": "section", "start": 687, "end": 694, "id": 131, "annotation": null}, {"text": "for", "start": 695, "end": 698, "id": 132, "annotation": null}, {"text": "holes", "start": 699, "end": 704, "id": 133, "annotation": null}, {"text": "were", "start": 705, "end": 709, "id": 134, "annotation": null}, {"text": "estimated", "start": 710, "end": 719, "id": 135, "annotation": null}, {"text": "as", "start": 720, "end": 722, "id": 136, "annotation": null}, {"text": "0.38", "start": 723, "end": 727, "id": 137, "annotation": null}, {"text": "eV", "start": 728, "end": 730, "id": 138, "annotation": null}, {"text": "and", "start": 731, "end": 734, "id": 139, "annotation": null}, {"text": "2\u00d7", "start": 735, "end": 737, "id": 140, "annotation": null}, {"text": "10", "start": 738, "end": 740, "id": 141, "annotation": null}, {"text": "-13", "start": 741, "end": 744, "id": 142, "annotation": null}, {"text": "cm", "start": 745, "end": 747, "id": 143, "annotation": null}, {"text": "2", "start": 748, "end": 749, "id": 144, "annotation": null}, {"text": ",", "start": 750, "end": 751, "id": 145, "annotation": null}, {"text": "respectively", "start": 752, "end": 764, "id": 146, "annotation": null}, {"text": ".", "start": 765, "end": 766, "id": 147, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt3", "text": "Tin dioxide thin films have been deposited on alumina substrates by different methods in order to test their reliability as a breath analyser. Despite the obvious simplicity of spray pyrolysis, both the structural and electrical properties of the films thus prepared were strongly dependent to the deposition conditions. The samples exhibited poor crystallinity and porous microstructure. They were sensitive to ethanol vapour but since the resistance of the samples reached several M\u03a9, antimony doping was performed to fit a more convenient detection range. An alternative method was then used to prepare tin dioxyde thin films by evaporation of metallic tin followed by thermal oxidation. In this case, grain size was enhanced up to 100 nm but films remained highly porous. The ethanol sensitivity of evaporated samples was determined. In order to study more accurately the influence of microstructure on sensing ability, dense thin films were prepared using a CVD method with tetrabutyl tin as precursor. Preliminary results indicated that films with different crystallite sizes could be grown by varying the deposition temperature.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Tin", "start": 0, "end": 3, "annotation": null}, {"text": "dioxide", "start": 4, "end": 11, "annotation": null}, {"text": "thin", "start": 12, "end": 16, "annotation": null}, {"text": "films", "start": 17, "end": 22, "annotation": null}, {"text": "have", "start": 23, "end": 27, "annotation": null}, {"text": "been", "start": 28, "end": 32, "annotation": null}, {"text": "deposited", "start": 33, "end": 42, "annotation": null}, {"text": "on", "start": 43, "end": 45, "annotation": null}, {"text": "alumina", "start": 46, "end": 53, "annotation": null}, {"text": "substrates", "start": 54, "end": 64, "annotation": null}, {"text": "by", "start": 65, "end": 67, "annotation": null}, {"text": "different", "start": 68, "end": 77, "annotation": null}, {"text": "methods", "start": 78, "end": 85, "annotation": null}, {"text": "in", "start": 86, "end": 88, "annotation": null}, {"text": "order", "start": 89, "end": 94, "annotation": null}, {"text": "to", "start": 95, "end": 97, "annotation": null}, {"text": "test", "start": 98, "end": 102, "annotation": null}, {"text": "their", "start": 103, "end": 108, "annotation": null}, {"text": "reliability", "start": 109, "end": 120, "annotation": null}, {"text": "as", "start": 121, "end": 123, "annotation": null}, {"text": "a", "start": 124, "end": 125, "annotation": null}, {"text": "breath", "start": 126, "end": 132, "annotation": null}, {"text": "analyser", "start": 133, "end": 141, "annotation": null}, {"text": ".", "start": 141, "end": 142, "annotation": null}], [{"text": "Despite", "start": 143, "end": 150, "annotation": null}, {"text": "the", "start": 151, "end": 154, "annotation": null}, {"text": "obvious", "start": 155, "end": 162, "annotation": null}, {"text": "simplicity", "start": 163, "end": 173, "annotation": null}, {"text": "of", "start": 174, "end": 176, "annotation": null}, {"text": "spray", "start": 177, "end": 182, "annotation": null}, {"text": "pyrolysis", "start": 183, "end": 192, "annotation": null}, {"text": ",", "start": 192, "end": 193, "annotation": null}, {"text": "both", "start": 194, "end": 198, "annotation": null}, {"text": "the", "start": 199, "end": 202, "annotation": null}, {"text": "structural", "start": 203, "end": 213, "annotation": null}, {"text": "and", "start": 214, "end": 217, "annotation": null}, {"text": "electrical", "start": 218, "end": 228, "annotation": null}, {"text": "properties", "start": 229, "end": 239, "annotation": null}, {"text": "of", "start": 240, "end": 242, "annotation": null}, {"text": "the", "start": 243, "end": 246, "annotation": null}, {"text": "films", "start": 247, "end": 252, "annotation": null}, {"text": "thus", "start": 253, "end": 257, "annotation": null}, {"text": "prepared", "start": 258, "end": 266, "annotation": null}, {"text": "were", "start": 267, "end": 271, "annotation": null}, {"text": "strongly", "start": 272, "end": 280, "annotation": null}, {"text": "dependent", "start": 281, "end": 290, "annotation": null}, {"text": "to", "start": 291, "end": 293, "annotation": null}, {"text": "the", "start": 294, "end": 297, "annotation": null}, {"text": "deposition", "start": 298, "end": 308, "annotation": null}, {"text": "conditions", "start": 309, "end": 319, "annotation": null}, {"text": ".", "start": 319, "end": 320, "annotation": null}], [{"text": "The", "start": 321, "end": 324, "annotation": null}, {"text": "samples", "start": 325, "end": 332, "annotation": null}, {"text": "exhibited", "start": 333, "end": 342, "annotation": null}, {"text": "poor", "start": 343, "end": 347, "annotation": null}, {"text": "crystallinity", "start": 348, "end": 361, "annotation": null}, {"text": "and", "start": 362, "end": 365, "annotation": null}, {"text": "porous", "start": 366, "end": 372, "annotation": null}, {"text": "microstructure", "start": 373, "end": 387, "annotation": null}, {"text": ".", "start": 387, "end": 388, "annotation": null}], [{"text": "They", "start": 389, "end": 393, "annotation": null}, {"text": "were", "start": 394, "end": 398, "annotation": null}, {"text": "sensitive", "start": 399, "end": 408, "annotation": null}, {"text": "to", "start": 409, "end": 411, "annotation": null}, {"text": "ethanol", "start": 412, "end": 419, "annotation": null}, {"text": "vapour", "start": 420, "end": 426, "annotation": null}, {"text": "but", "start": 427, "end": 430, "annotation": null}, {"text": "since", "start": 431, "end": 436, "annotation": null}, {"text": "the", "start": 437, "end": 440, "annotation": null}, {"text": "resistance", "start": 441, "end": 451, "annotation": null}, {"text": "of", "start": 452, "end": 454, "annotation": null}, {"text": "the", "start": 455, "end": 458, "annotation": null}, {"text": "samples", "start": 459, "end": 466, "annotation": null}, {"text": "reached", "start": 467, "end": 474, "annotation": null}, {"text": "several", "start": 475, "end": 482, "annotation": null}, {"text": "M\u03a9", "start": 483, "end": 485, "annotation": null}, {"text": ",", "start": 485, "end": 486, "annotation": null}, {"text": "antimony", "start": 487, "end": 495, "annotation": "DOPANT"}, {"text": "doping", "start": 496, "end": 502, "annotation": null}, {"text": "was", "start": 503, "end": 506, "annotation": null}, {"text": "performed", "start": 507, "end": 516, "annotation": null}, {"text": "to", "start": 517, "end": 519, "annotation": null}, {"text": "fit", "start": 520, "end": 523, "annotation": null}, {"text": "a", "start": 524, "end": 525, "annotation": null}, {"text": "more", "start": 526, "end": 530, "annotation": null}, {"text": "convenient", "start": 531, "end": 541, "annotation": null}, {"text": "detection", "start": 542, "end": 551, "annotation": null}, {"text": "range", "start": 552, "end": 557, "annotation": null}, {"text": ".", "start": 557, "end": 558, "annotation": null}], [{"text": "An", "start": 559, "end": 561, "annotation": null}, {"text": "alternative", "start": 562, "end": 573, "annotation": null}, {"text": "method", "start": 574, "end": 580, "annotation": null}, {"text": "was", "start": 581, "end": 584, "annotation": null}, {"text": "then", "start": 585, "end": 589, "annotation": null}, {"text": "used", "start": 590, "end": 594, "annotation": null}, {"text": "to", "start": 595, "end": 597, "annotation": null}, {"text": "prepare", "start": 598, "end": 605, "annotation": null}, {"text": "tin", "start": 606, "end": 609, "annotation": null}, {"text": "dioxyde", "start": 610, "end": 617, "annotation": null}, {"text": "thin", "start": 618, "end": 622, "annotation": null}, {"text": "films", "start": 623, "end": 628, "annotation": null}, {"text": "by", "start": 629, "end": 631, "annotation": null}, {"text": "evaporation", "start": 632, "end": 643, "annotation": null}, {"text": "of", "start": 644, "end": 646, "annotation": null}, {"text": "metallic", "start": 647, "end": 655, "annotation": null}, {"text": "tin", "start": 656, "end": 659, "annotation": null}, {"text": "followed", "start": 660, "end": 668, "annotation": null}, {"text": "by", "start": 669, "end": 671, "annotation": null}, {"text": "thermal", "start": 672, "end": 679, "annotation": null}, {"text": "oxidation", "start": 680, "end": 689, "annotation": null}, {"text": ".", "start": 689, "end": 690, "annotation": null}], [{"text": "In", "start": 691, "end": 693, "annotation": null}, {"text": "this", "start": 694, "end": 698, "annotation": null}, {"text": "case", "start": 699, "end": 703, "annotation": null}, {"text": ",", "start": 703, "end": 704, "annotation": null}, {"text": "grain", "start": 705, "end": 710, "annotation": null}, {"text": "size", "start": 711, "end": 715, "annotation": null}, {"text": "was", "start": 716, "end": 719, "annotation": null}, {"text": "enhanced", "start": 720, "end": 728, "annotation": null}, {"text": "up", "start": 729, "end": 731, "annotation": null}, {"text": "to", "start": 732, "end": 734, "annotation": null}, {"text": "100", "start": 735, "end": 738, "annotation": null}, {"text": "nm", "start": 739, "end": 741, "annotation": null}, {"text": "but", "start": 742, "end": 745, "annotation": null}, {"text": "films", "start": 746, "end": 751, "annotation": null}, {"text": "remained", "start": 752, "end": 760, "annotation": null}, {"text": "highly", "start": 761, "end": 767, "annotation": null}, {"text": "porous", "start": 768, "end": 774, "annotation": null}, {"text": ".", "start": 774, "end": 775, "annotation": null}], [{"text": "The", "start": 776, "end": 779, "annotation": null}, {"text": "ethanol", "start": 780, "end": 787, "annotation": null}, {"text": "sensitivity", "start": 788, "end": 799, "annotation": null}, {"text": "of", "start": 800, "end": 802, "annotation": null}, {"text": "evaporated", "start": 803, "end": 813, "annotation": null}, {"text": "samples", "start": 814, "end": 821, "annotation": null}, {"text": "was", "start": 822, "end": 825, "annotation": null}, {"text": "determined", "start": 826, "end": 836, "annotation": null}, {"text": ".", "start": 836, "end": 837, "annotation": null}], [{"text": "In", "start": 838, "end": 840, "annotation": null}, {"text": "order", "start": 841, "end": 846, "annotation": null}, {"text": "to", "start": 847, "end": 849, "annotation": null}, {"text": "study", "start": 850, "end": 855, "annotation": null}, {"text": "more", "start": 856, "end": 860, "annotation": null}, {"text": "accurately", "start": 861, "end": 871, "annotation": null}, {"text": "the", "start": 872, "end": 875, "annotation": null}, {"text": "influence", "start": 876, "end": 885, "annotation": null}, {"text": "of", "start": 886, "end": 888, "annotation": null}, {"text": "microstructure", "start": 889, "end": 903, "annotation": null}, {"text": "on", "start": 904, "end": 906, "annotation": null}, {"text": "sensing", "start": 907, "end": 914, "annotation": null}, {"text": "ability", "start": 915, "end": 922, "annotation": null}, {"text": ",", "start": 922, "end": 923, "annotation": null}, {"text": "dense", "start": 924, "end": 929, "annotation": null}, {"text": "thin", "start": 930, "end": 934, "annotation": null}, {"text": "films", "start": 935, "end": 940, "annotation": null}, {"text": "were", "start": 941, "end": 945, "annotation": null}, {"text": "prepared", "start": 946, "end": 954, "annotation": null}, {"text": "using", "start": 955, "end": 960, "annotation": null}, {"text": "a", "start": 961, "end": 962, "annotation": null}, {"text": "CVD", "start": 963, "end": 966, "annotation": null}, {"text": "method", "start": 967, "end": 973, "annotation": null}, {"text": "with", "start": 974, "end": 978, "annotation": null}, {"text": "tetrabutyl", "start": 979, "end": 989, "annotation": null}, {"text": "tin", "start": 990, "end": 993, "annotation": null}, {"text": "as", "start": 994, "end": 996, "annotation": null}, {"text": "precursor", "start": 997, "end": 1006, "annotation": null}, {"text": ".", "start": 1006, "end": 1007, "annotation": null}], [{"text": "Preliminary", "start": 1008, "end": 1019, "annotation": null}, {"text": "results", "start": 1020, "end": 1027, "annotation": null}, {"text": "indicated", "start": 1028, "end": 1037, "annotation": null}, {"text": "that", "start": 1038, "end": 1042, "annotation": null}, {"text": "films", "start": 1043, "end": 1048, "annotation": null}, {"text": "with", "start": 1049, "end": 1053, "annotation": null}, {"text": "different", "start": 1054, "end": 1063, "annotation": null}, {"text": "crystallite", "start": 1064, "end": 1075, "annotation": null}, {"text": "sizes", "start": 1076, "end": 1081, "annotation": null}, {"text": "could", "start": 1082, "end": 1087, "annotation": null}, {"text": "be", "start": 1088, "end": 1090, "annotation": null}, {"text": "grown", "start": 1091, "end": 1096, "annotation": null}, {"text": "by", "start": 1097, "end": 1099, "annotation": null}, {"text": "varying", "start": 1100, "end": 1107, "annotation": null}, {"text": "the", "start": 1108, "end": 1111, "annotation": null}, {"text": "deposition", "start": 1112, "end": 1122, "annotation": null}, {"text": "temperature", "start": 1123, "end": 1134, "annotation": null}, {"text": ".", "start": 1134, "end": 1135, "annotation": null}]], "meta": {"doi": "10.1007/BF02375297"}} {"text": "Creep deformation in ultrafine-grained (0.1 to 1\u03bcm) Fe-doped magnesia polycrystals is studied in compression, at temperatures of 700 to 1050\u00b0 C, and constant loads of 50 to 140 MPa. The stress exponent observed to be nearly unity and the strong grain size sensitivity (\u0117\u223cd\u22122.85) suggest that diffusional creep mechanisms dominate the deformation. In the grain size range of the present study the grain boundary diffusion contribution is significantly more important than lattice diffusion. Magnesium is tentatively identified as the rate-controlling species along grain boundaries from an analysis of the diffusivities inferred from the present work and from other authors for Fe-doped magnesia.", "meta": {"doi": "10.1007/BF02402748"}, "_input_hash": -1329125647, "_task_hash": 751486580, "tokens": [[{"text": "Creep", "start": 0, "end": 5, "id": 0, "annotation": null}, {"text": "deformation", "start": 6, "end": 17, "id": 1, "annotation": null}, {"text": "in", "start": 18, "end": 20, "id": 2, "annotation": null}, {"text": "ultrafine", "start": 21, "end": 30, "id": 3, "annotation": null}, {"text": "-", "start": 31, "end": 32, "id": 4, "annotation": null}, {"text": "grained", "start": 33, "end": 40, "id": 5, "annotation": null}, {"text": "(", "start": 41, "end": 42, "id": 6, "annotation": null}, {"text": "0.1", "start": 43, "end": 46, "id": 7, "annotation": null}, {"text": "to", "start": 47, "end": 49, "id": 8, "annotation": null}, {"text": "1\u03bcm", "start": 50, "end": 53, "id": 9, "annotation": null}, {"text": ")", "start": 54, "end": 55, "id": 10, "annotation": null}, {"text": "Fe", "start": 56, "end": 58, "id": 11, "annotation": "DOPANT"}, {"text": "-", "start": 59, "end": 60, "id": 12, "annotation": null}, {"text": "doped", "start": 61, "end": 66, "id": 13, "annotation": null}, {"text": "magnesia", "start": 67, "end": 75, "id": 14, "annotation": "BASEMAT"}, {"text": "polycrystals", "start": 76, "end": 88, "id": 15, "annotation": null}, {"text": "is", "start": 89, "end": 91, "id": 16, "annotation": null}, {"text": "studied", "start": 92, "end": 99, "id": 17, "annotation": null}, {"text": "in", "start": 100, "end": 102, "id": 18, "annotation": null}, {"text": "compression", "start": 103, "end": 114, "id": 19, "annotation": null}, {"text": ",", "start": 115, "end": 116, "id": 20, "annotation": null}, {"text": "at", "start": 117, "end": 119, "id": 21, "annotation": null}, {"text": "temperatures", "start": 120, "end": 132, "id": 22, "annotation": null}, {"text": "of", "start": 133, "end": 135, "id": 23, "annotation": null}, {"text": "700", "start": 136, "end": 139, "id": 24, "annotation": null}, {"text": "to", "start": 140, "end": 142, "id": 25, "annotation": null}, {"text": "1050", "start": 143, "end": 147, "id": 26, "annotation": null}, {"text": "\u00b0", "start": 148, "end": 149, "id": 27, "annotation": null}, {"text": "C", "start": 150, "end": 151, "id": 28, "annotation": null}, {"text": ",", "start": 152, "end": 153, "id": 29, "annotation": null}, {"text": "and", "start": 154, "end": 157, "id": 30, "annotation": null}, {"text": "constant", "start": 158, "end": 166, "id": 31, "annotation": null}, {"text": "loads", "start": 167, "end": 172, "id": 32, "annotation": null}, {"text": "of", "start": 173, "end": 175, "id": 33, "annotation": null}, {"text": "50", "start": 176, "end": 178, "id": 34, "annotation": null}, {"text": "to", "start": 179, "end": 181, "id": 35, "annotation": null}, {"text": "140", "start": 182, "end": 185, "id": 36, "annotation": null}, {"text": "MPa", "start": 186, "end": 189, "id": 37, "annotation": null}, {"text": ".", "start": 190, "end": 191, "id": 38, "annotation": null}], [{"text": "The", "start": 192, "end": 195, "id": 39, "annotation": null}, {"text": "stress", "start": 196, "end": 202, "id": 40, "annotation": null}, {"text": "exponent", "start": 203, "end": 211, "id": 41, "annotation": null}, {"text": "observed", "start": 212, "end": 220, "id": 42, "annotation": null}, {"text": "to", "start": 221, "end": 223, "id": 43, "annotation": null}, {"text": "be", "start": 224, "end": 226, "id": 44, "annotation": null}, {"text": "nearly", "start": 227, "end": 233, "id": 45, "annotation": null}, {"text": "unity", "start": 234, "end": 239, "id": 46, "annotation": null}, {"text": "and", "start": 240, "end": 243, "id": 47, "annotation": null}, {"text": "the", "start": 244, "end": 247, "id": 48, "annotation": null}, {"text": "strong", "start": 248, "end": 254, "id": 49, "annotation": null}, {"text": "grain", "start": 255, "end": 260, "id": 50, "annotation": null}, {"text": "size", "start": 261, "end": 265, "id": 51, "annotation": null}, {"text": "sensitivity", "start": 266, "end": 277, "id": 52, "annotation": null}, {"text": "(", "start": 278, "end": 279, "id": 53, "annotation": null}, {"text": "\u0117\u223cd\u22122.85", "start": 280, "end": 288, "id": 54, "annotation": null}, {"text": ")", "start": 289, "end": 290, "id": 55, "annotation": null}, {"text": "suggest", "start": 291, "end": 298, "id": 56, "annotation": null}, {"text": "that", "start": 299, "end": 303, "id": 57, "annotation": null}, {"text": "diffusional", "start": 304, "end": 315, "id": 58, "annotation": null}, {"text": "creep", "start": 316, "end": 321, "id": 59, "annotation": null}, {"text": "mechanisms", "start": 322, "end": 332, "id": 60, "annotation": null}, {"text": "dominate", "start": 333, "end": 341, "id": 61, "annotation": null}, {"text": "the", "start": 342, "end": 345, "id": 62, "annotation": null}, {"text": "deformation", "start": 346, "end": 357, "id": 63, "annotation": null}, {"text": ".", "start": 358, "end": 359, "id": 64, "annotation": null}], [{"text": "In", "start": 360, "end": 362, "id": 65, "annotation": null}, {"text": "the", "start": 363, "end": 366, "id": 66, "annotation": null}, {"text": "grain", "start": 367, "end": 372, "id": 67, "annotation": null}, {"text": "size", "start": 373, "end": 377, "id": 68, "annotation": null}, {"text": "range", "start": 378, "end": 383, "id": 69, "annotation": null}, {"text": "of", "start": 384, "end": 386, "id": 70, "annotation": null}, {"text": "the", "start": 387, "end": 390, "id": 71, "annotation": null}, {"text": "present", "start": 391, "end": 398, "id": 72, "annotation": null}, {"text": "study", "start": 399, "end": 404, "id": 73, "annotation": null}, {"text": "the", "start": 405, "end": 408, "id": 74, "annotation": null}, {"text": "grain", "start": 409, "end": 414, "id": 75, "annotation": null}, {"text": "boundary", "start": 415, "end": 423, "id": 76, "annotation": null}, {"text": "diffusion", "start": 424, "end": 433, "id": 77, "annotation": null}, {"text": "contribution", "start": 434, "end": 446, "id": 78, "annotation": null}, {"text": "is", "start": 447, "end": 449, "id": 79, "annotation": null}, {"text": "significantly", "start": 450, "end": 463, "id": 80, "annotation": null}, {"text": "more", "start": 464, "end": 468, "id": 81, "annotation": null}, {"text": "important", "start": 469, "end": 478, "id": 82, "annotation": null}, {"text": "than", "start": 479, "end": 483, "id": 83, "annotation": null}, {"text": "lattice", "start": 484, "end": 491, "id": 84, "annotation": null}, {"text": "diffusion", "start": 492, "end": 501, "id": 85, "annotation": null}, {"text": ".", "start": 502, "end": 503, "id": 86, "annotation": null}], [{"text": "Magnesium", "start": 504, "end": 513, "id": 87, "annotation": null}, {"text": "is", "start": 514, "end": 516, "id": 88, "annotation": null}, {"text": "tentatively", "start": 517, "end": 528, "id": 89, "annotation": null}, {"text": "identified", "start": 529, "end": 539, "id": 90, "annotation": null}, {"text": "as", "start": 540, "end": 542, "id": 91, "annotation": null}, {"text": "the", "start": 543, "end": 546, "id": 92, "annotation": null}, {"text": "rate", "start": 547, "end": 551, "id": 93, "annotation": null}, {"text": "-", "start": 552, "end": 553, "id": 94, "annotation": null}, {"text": "controlling", "start": 554, "end": 565, "id": 95, "annotation": null}, {"text": "species", "start": 566, "end": 573, "id": 96, "annotation": null}, {"text": "along", "start": 574, "end": 579, "id": 97, "annotation": null}, {"text": "grain", "start": 580, "end": 585, "id": 98, "annotation": null}, {"text": "boundaries", "start": 586, "end": 596, "id": 99, "annotation": null}, {"text": "from", "start": 597, "end": 601, "id": 100, "annotation": null}, {"text": "an", "start": 602, "end": 604, "id": 101, "annotation": null}, {"text": "analysis", "start": 605, "end": 613, "id": 102, "annotation": null}, {"text": "of", "start": 614, "end": 616, "id": 103, "annotation": null}, {"text": "the", "start": 617, "end": 620, "id": 104, "annotation": null}, {"text": "diffusivities", "start": 621, "end": 634, "id": 105, "annotation": null}, {"text": "inferred", "start": 635, "end": 643, "id": 106, "annotation": null}, {"text": "from", "start": 644, "end": 648, "id": 107, "annotation": null}, {"text": "the", "start": 649, "end": 652, "id": 108, "annotation": null}, {"text": "present", "start": 653, "end": 660, "id": 109, "annotation": null}, {"text": "work", "start": 661, "end": 665, "id": 110, "annotation": null}, {"text": "and", "start": 666, "end": 669, "id": 111, "annotation": null}, {"text": "from", "start": 670, "end": 674, "id": 112, "annotation": null}, {"text": "other", "start": 675, "end": 680, "id": 113, "annotation": null}, {"text": "authors", "start": 681, "end": 688, "id": 114, "annotation": null}, {"text": "for", "start": 689, "end": 692, "id": 115, "annotation": null}, {"text": "Fe", "start": 693, "end": 695, "id": 116, "annotation": "DOPANT"}, {"text": "-", "start": 696, "end": 697, "id": 117, "annotation": null}, {"text": "doped", "start": 698, "end": 703, "id": 118, "annotation": null}, {"text": "magnesia", "start": 704, "end": 712, "id": 119, "annotation": "BASEMAT"}, {"text": ".", "start": 713, "end": 714, "id": 120, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Thermally stimulated luminescence (TSL) of aluminoborosilicate glass doped with CdSe nanoparticles (28 and 47\u00c5) has been studied after exposure to ionizing radiation; the intense TSL peaks were observed at temperatures 150 and 85\u00b0C, respectively. The optical absorption spectra, as well as TSL of the irradiated samples containing CuBr nanoparticles (44\u00c5) were also measured. In the case of CuBr, TSL was observed neither before nor after irradiation. The dependence of TSL intensity on irradiation time indicates that glass activated by CdSe nanoparticles shows promise as a dosimetric material.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Thermally", "start": 0, "end": 9, "annotation": null}, {"text": "stimulated", "start": 10, "end": 20, "annotation": null}, {"text": "luminescence", "start": 21, "end": 33, "annotation": null}, {"text": "(", "start": 34, "end": 35, "annotation": null}, {"text": "TSL", "start": 35, "end": 38, "annotation": null}, {"text": ")", "start": 38, "end": 39, "annotation": null}, {"text": "of", "start": 40, "end": 42, "annotation": null}, {"text": "aluminoborosilicate", "start": 43, "end": 62, "annotation": "BASEMAT"}, {"text": "glass", "start": 63, "end": 68, "annotation": "BASEMAT"}, {"text": "doped", "start": 69, "end": 74, "annotation": null}, {"text": "with", "start": 75, "end": 79, "annotation": null}, {"text": "CdSe", "start": 80, "end": 84, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 85, "end": 98, "annotation": null}, {"text": "(", "start": 99, "end": 100, "annotation": null}, {"text": "28", "start": 100, "end": 102, "annotation": null}, {"text": "and", "start": 103, "end": 106, "annotation": null}, {"text": "47\u00c5", "start": 107, "end": 110, "annotation": null}, {"text": ")", "start": 110, "end": 111, "annotation": null}, {"text": "has", "start": 112, "end": 115, "annotation": null}, {"text": "been", "start": 116, "end": 120, "annotation": null}, {"text": "studied", "start": 121, "end": 128, "annotation": null}, {"text": "after", "start": 129, "end": 134, "annotation": null}, {"text": "exposure", "start": 135, "end": 143, "annotation": null}, {"text": "to", "start": 144, "end": 146, "annotation": null}, {"text": "ionizing", "start": 147, "end": 155, "annotation": null}, {"text": "radiation", "start": 156, "end": 165, "annotation": null}, {"text": ";", "start": 165, "end": 166, "annotation": null}, {"text": "the", "start": 167, "end": 170, "annotation": null}, {"text": "intense", "start": 171, "end": 178, "annotation": null}, {"text": "TSL", "start": 179, "end": 182, "annotation": null}, {"text": "peaks", "start": 183, "end": 188, "annotation": null}, {"text": "were", "start": 189, "end": 193, "annotation": null}, {"text": "observed", "start": 194, "end": 202, "annotation": null}, {"text": "at", "start": 203, "end": 205, "annotation": null}, {"text": "temperatures", "start": 206, "end": 218, "annotation": null}, {"text": "150", "start": 219, "end": 222, "annotation": null}, {"text": "and", "start": 223, "end": 226, "annotation": null}, {"text": "85", "start": 227, "end": 229, "annotation": null}, {"text": "\u00b0", "start": 229, "end": 230, "annotation": null}, {"text": "C", "start": 230, "end": 231, "annotation": null}, {"text": ",", "start": 231, "end": 232, "annotation": null}, {"text": "respectively", "start": 233, "end": 245, "annotation": null}, {"text": ".", "start": 245, "end": 246, "annotation": null}], [{"text": "The", "start": 247, "end": 250, "annotation": null}, {"text": "optical", "start": 251, "end": 258, "annotation": null}, {"text": "absorption", "start": 259, "end": 269, "annotation": null}, {"text": "spectra", "start": 270, "end": 277, "annotation": null}, {"text": ",", "start": 277, "end": 278, "annotation": null}, {"text": "as", "start": 279, "end": 281, "annotation": null}, {"text": "well", "start": 282, "end": 286, "annotation": null}, {"text": "as", "start": 287, "end": 289, "annotation": null}, {"text": "TSL", "start": 290, "end": 293, "annotation": null}, {"text": "of", "start": 294, "end": 296, "annotation": null}, {"text": "the", "start": 297, "end": 300, "annotation": null}, {"text": "irradiated", "start": 301, "end": 311, "annotation": null}, {"text": "samples", "start": 312, "end": 319, "annotation": null}, {"text": "containing", "start": 320, "end": 330, "annotation": null}, {"text": "CuBr", "start": 331, "end": 335, "annotation": null}, {"text": "nanoparticles", "start": 336, "end": 349, "annotation": null}, {"text": "(", "start": 350, "end": 351, "annotation": null}, {"text": "44\u00c5", "start": 351, "end": 354, "annotation": null}, {"text": ")", "start": 354, "end": 355, "annotation": null}, {"text": "were", "start": 356, "end": 360, "annotation": null}, {"text": "also", "start": 361, "end": 365, "annotation": null}, {"text": "measured", "start": 366, "end": 374, "annotation": null}, {"text": ".", "start": 374, "end": 375, "annotation": null}], [{"text": "In", "start": 376, "end": 378, "annotation": null}, {"text": "the", "start": 379, "end": 382, "annotation": null}, {"text": "case", "start": 383, "end": 387, "annotation": null}, {"text": "of", "start": 388, "end": 390, "annotation": null}, {"text": "CuBr", "start": 391, "end": 395, "annotation": null}, {"text": ",", "start": 395, "end": 396, "annotation": null}, {"text": "TSL", "start": 397, "end": 400, "annotation": null}, {"text": "was", "start": 401, "end": 404, "annotation": null}, {"text": "observed", "start": 405, "end": 413, "annotation": null}, {"text": "neither", "start": 414, "end": 421, "annotation": null}, {"text": "before", "start": 422, "end": 428, "annotation": null}, {"text": "nor", "start": 429, "end": 432, "annotation": null}, {"text": "after", "start": 433, "end": 438, "annotation": null}, {"text": "irradiation", "start": 439, "end": 450, "annotation": null}, {"text": ".", "start": 450, "end": 451, "annotation": null}], [{"text": "The", "start": 452, "end": 455, "annotation": null}, {"text": "dependence", "start": 456, "end": 466, "annotation": null}, {"text": "of", "start": 467, "end": 469, "annotation": null}, {"text": "TSL", "start": 470, "end": 473, "annotation": null}, {"text": "intensity", "start": 474, "end": 483, "annotation": null}, {"text": "on", "start": 484, "end": 486, "annotation": null}, {"text": "irradiation", "start": 487, "end": 498, "annotation": null}, {"text": "time", "start": 499, "end": 503, "annotation": null}, {"text": "indicates", "start": 504, "end": 513, "annotation": null}, {"text": "that", "start": 514, "end": 518, "annotation": null}, {"text": "glass", "start": 519, "end": 524, "annotation": "BASEMAT"}, {"text": "activated", "start": 525, "end": 534, "annotation": null}, {"text": "by", "start": 535, "end": 537, "annotation": null}, {"text": "CdSe", "start": 538, "end": 542, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 543, "end": 556, "annotation": null}, {"text": "shows", "start": 557, "end": 562, "annotation": null}, {"text": "promise", "start": 563, "end": 570, "annotation": null}, {"text": "as", "start": 571, "end": 573, "annotation": null}, {"text": "a", "start": 574, "end": 575, "annotation": null}, {"text": "dosimetric", "start": 576, "end": 586, "annotation": null}, {"text": "material", "start": 587, "end": 595, "annotation": null}, {"text": ".", "start": 595, "end": 596, "annotation": null}]]} -{"remark": "doping_annt2", "text": "Al doped zinc oxide (AZO) thin films were deposited on AZO buffered glass substrates by DC magnetron sputtering. The effect of buffer thickness on the electrical, structural, morphological, and optical properties of the AZO thin films was studied experimentally. As the buffer thickness increased, the resistivity of AZO thin film decreased from 6.4\u00d710\u22124 \u03a9 cm (no buffer) to 3.8\u00d710\u22124 \u03a9 cm (160-nm-thick buffer) and the corresponding mobility increased from 33.4 to 51.2cm2/Vs,resulting from an improvement of crystallinity. The haze factor of the AZO thin films increased with increasing buffer thickness up to 160nm, and then slightly decreased. A high average haze factor of 56.7% in the range from 400 to 1100nm was obtained in the thin film that incorporated a 160-nm-thick buffer, which was attributed to the large feature size of the craters on the surface and the high RMS surface roughness.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Al", "start": 0, "end": 2, "annotation": "DOPANT"}, {"text": "doped", "start": 3, "end": 8, "annotation": null}, {"text": "zinc", "start": 9, "end": 13, "annotation": "BASEMAT"}, {"text": "oxide", "start": 14, "end": 19, "annotation": "BASEMAT"}, {"text": "(", "start": 20, "end": 21, "annotation": null}, {"text": "AZO", "start": 21, "end": 24, "annotation": null}, {"text": ")", "start": 24, "end": 25, "annotation": null}, {"text": "thin", "start": 26, "end": 30, "annotation": null}, {"text": "films", "start": 31, "end": 36, "annotation": null}, {"text": "were", "start": 37, "end": 41, "annotation": null}, {"text": "deposited", "start": 42, "end": 51, "annotation": null}, {"text": "on", "start": 52, "end": 54, "annotation": null}, {"text": "AZO", "start": 55, "end": 58, "annotation": null}, {"text": "buffered", "start": 59, "end": 67, "annotation": null}, {"text": "glass", "start": 68, "end": 73, "annotation": null}, {"text": "substrates", "start": 74, "end": 84, "annotation": null}, {"text": "by", "start": 85, "end": 87, "annotation": null}, {"text": "DC", "start": 88, "end": 90, "annotation": null}, {"text": "magnetron", "start": 91, "end": 100, "annotation": null}, {"text": "sputtering", "start": 101, "end": 111, "annotation": null}, {"text": ".", "start": 111, "end": 112, "annotation": null}], [{"text": "The", "start": 113, "end": 116, "annotation": null}, {"text": "effect", "start": 117, "end": 123, "annotation": null}, {"text": "of", "start": 124, "end": 126, "annotation": null}, {"text": "buffer", "start": 127, "end": 133, "annotation": null}, {"text": "thickness", "start": 134, "end": 143, "annotation": null}, {"text": "on", "start": 144, "end": 146, "annotation": null}, {"text": "the", "start": 147, "end": 150, "annotation": null}, {"text": "electrical", "start": 151, "end": 161, "annotation": null}, {"text": ",", "start": 161, "end": 162, "annotation": null}, {"text": "structural", "start": 163, "end": 173, "annotation": null}, {"text": ",", "start": 173, "end": 174, "annotation": null}, {"text": "morphological", "start": 175, "end": 188, "annotation": null}, {"text": ",", "start": 188, "end": 189, "annotation": null}, {"text": "and", "start": 190, "end": 193, "annotation": null}, {"text": "optical", "start": 194, "end": 201, "annotation": null}, {"text": "properties", "start": 202, "end": 212, "annotation": null}, {"text": "of", "start": 213, "end": 215, "annotation": null}, {"text": "the", "start": 216, "end": 219, "annotation": null}, {"text": "AZO", "start": 220, "end": 223, "annotation": null}, {"text": "thin", "start": 224, "end": 228, "annotation": null}, {"text": "films", "start": 229, "end": 234, "annotation": null}, {"text": "was", "start": 235, "end": 238, "annotation": null}, {"text": "studied", "start": 239, "end": 246, "annotation": null}, {"text": "experimentally", "start": 247, "end": 261, "annotation": null}, {"text": ".", "start": 261, "end": 262, "annotation": null}], [{"text": "As", "start": 263, "end": 265, "annotation": null}, {"text": "the", "start": 266, "end": 269, "annotation": null}, {"text": "buffer", "start": 270, "end": 276, "annotation": null}, {"text": "thickness", "start": 277, "end": 286, "annotation": null}, {"text": "increased", "start": 287, "end": 296, "annotation": null}, {"text": ",", "start": 296, "end": 297, "annotation": null}, {"text": "the", "start": 298, "end": 301, "annotation": null}, {"text": "resistivity", "start": 302, "end": 313, "annotation": null}, {"text": "of", "start": 314, "end": 316, "annotation": null}, {"text": "AZO", "start": 317, "end": 320, "annotation": null}, {"text": "thin", "start": 321, "end": 325, "annotation": null}, {"text": "film", "start": 326, "end": 330, "annotation": null}, {"text": "decreased", "start": 331, "end": 340, "annotation": null}, {"text": "from", "start": 341, "end": 345, "annotation": null}, {"text": "6.4", "start": 346, "end": 349, "annotation": null}, {"text": "\u00d7", "start": 349, "end": 350, "annotation": null}, {"text": "10", "start": 350, "end": 352, "annotation": null}, {"text": "\u2212", "start": 352, "end": 353, "annotation": null}, {"text": "4", "start": 353, "end": 354, "annotation": null}, {"text": "\u03a9", "start": 355, "end": 356, "annotation": null}, {"text": "cm", "start": 357, "end": 359, "annotation": null}, {"text": "(", "start": 360, "end": 361, "annotation": null}, {"text": "no", "start": 361, "end": 363, "annotation": null}, {"text": "buffer", "start": 364, "end": 370, "annotation": null}, {"text": ")", "start": 370, "end": 371, "annotation": null}, {"text": "to", "start": 372, "end": 374, "annotation": null}, {"text": "3.8", "start": 375, "end": 378, "annotation": null}, {"text": "\u00d7", "start": 378, "end": 379, "annotation": null}, {"text": "10", "start": 379, "end": 381, "annotation": null}, {"text": "\u2212", "start": 381, "end": 382, "annotation": null}, {"text": "4", "start": 382, "end": 383, "annotation": null}, {"text": "\u03a9", "start": 384, "end": 385, "annotation": null}, {"text": "cm", "start": 386, "end": 388, "annotation": null}, {"text": "(", "start": 389, "end": 390, "annotation": null}, {"text": "160-nm-thick", "start": 390, "end": 402, "annotation": null}, {"text": "buffer", "start": 403, "end": 409, "annotation": null}, {"text": ")", "start": 409, "end": 410, "annotation": null}, {"text": "and", "start": 411, "end": 414, "annotation": null}, {"text": "the", "start": 415, "end": 418, "annotation": null}, {"text": "corresponding", "start": 419, "end": 432, "annotation": null}, {"text": "mobility", "start": 433, "end": 441, "annotation": null}, {"text": "increased", "start": 442, "end": 451, "annotation": null}, {"text": "from", "start": 452, "end": 456, "annotation": null}, {"text": "33.4", "start": 457, "end": 461, "annotation": null}, {"text": "to", "start": 462, "end": 464, "annotation": null}, {"text": "51.2", "start": 465, "end": 469, "annotation": null}, {"text": "cm2", "start": 469, "end": 472, "annotation": null}, {"text": "/", "start": 472, "end": 473, "annotation": null}, {"text": "Vs,resulting", "start": 473, "end": 485, "annotation": null}, {"text": "from", "start": 486, "end": 490, "annotation": null}, {"text": "an", "start": 491, "end": 493, "annotation": null}, {"text": "improvement", "start": 494, "end": 505, "annotation": null}, {"text": "of", "start": 506, "end": 508, "annotation": null}, {"text": "crystallinity", "start": 509, "end": 522, "annotation": null}, {"text": ".", "start": 522, "end": 523, "annotation": null}], [{"text": "The", "start": 524, "end": 527, "annotation": null}, {"text": "haze", "start": 528, "end": 532, "annotation": null}, {"text": "factor", "start": 533, "end": 539, "annotation": null}, {"text": "of", "start": 540, "end": 542, "annotation": null}, {"text": "the", "start": 543, "end": 546, "annotation": null}, {"text": "AZO", "start": 547, "end": 550, "annotation": null}, {"text": "thin", "start": 551, "end": 555, "annotation": null}, {"text": "films", "start": 556, "end": 561, "annotation": null}, {"text": "increased", "start": 562, "end": 571, "annotation": null}, {"text": "with", "start": 572, "end": 576, "annotation": null}, {"text": "increasing", "start": 577, "end": 587, "annotation": null}, {"text": "buffer", "start": 588, "end": 594, "annotation": null}, {"text": "thickness", "start": 595, "end": 604, "annotation": null}, {"text": "up", "start": 605, "end": 607, "annotation": null}, {"text": "to", "start": 608, "end": 610, "annotation": null}, {"text": "160", "start": 611, "end": 614, "annotation": null}, {"text": "nm", "start": 614, "end": 616, "annotation": null}, {"text": ",", "start": 616, "end": 617, "annotation": null}, {"text": "and", "start": 618, "end": 621, "annotation": null}, {"text": "then", "start": 622, "end": 626, "annotation": null}, {"text": "slightly", "start": 627, "end": 635, "annotation": null}, {"text": "decreased", "start": 636, "end": 645, "annotation": null}, {"text": ".", "start": 645, "end": 646, "annotation": null}], [{"text": "A", "start": 647, "end": 648, "annotation": null}, {"text": "high", "start": 649, "end": 653, "annotation": null}, {"text": "average", "start": 654, "end": 661, "annotation": null}, {"text": "haze", "start": 662, "end": 666, "annotation": null}, {"text": "factor", "start": 667, "end": 673, "annotation": null}, {"text": "of", "start": 674, "end": 676, "annotation": null}, {"text": "56.7", "start": 677, "end": 681, "annotation": null}, {"text": "%", "start": 681, "end": 682, "annotation": null}, {"text": "in", "start": 683, "end": 685, "annotation": null}, {"text": "the", "start": 686, "end": 689, "annotation": null}, {"text": "range", "start": 690, "end": 695, "annotation": null}, {"text": "from", "start": 696, "end": 700, "annotation": null}, {"text": "400", "start": 701, "end": 704, "annotation": null}, {"text": "to", "start": 705, "end": 707, "annotation": null}, {"text": "1100", "start": 708, "end": 712, "annotation": null}, {"text": "nm", "start": 712, "end": 714, "annotation": null}, {"text": "was", "start": 715, "end": 718, "annotation": null}, {"text": "obtained", "start": 719, "end": 727, "annotation": null}, {"text": "in", "start": 728, "end": 730, "annotation": null}, {"text": "the", "start": 731, "end": 734, "annotation": null}, {"text": "thin", "start": 735, "end": 739, "annotation": null}, {"text": "film", "start": 740, "end": 744, "annotation": null}, {"text": "that", "start": 745, "end": 749, "annotation": null}, {"text": "incorporated", "start": 750, "end": 762, "annotation": null}, {"text": "a", "start": 763, "end": 764, "annotation": null}, {"text": "160-nm-thick", "start": 765, "end": 777, "annotation": null}, {"text": "buffer", "start": 778, "end": 784, "annotation": null}, {"text": ",", "start": 784, "end": 785, "annotation": null}, {"text": "which", "start": 786, "end": 791, "annotation": null}, {"text": "was", "start": 792, "end": 795, "annotation": null}, {"text": "attributed", "start": 796, "end": 806, "annotation": null}, {"text": "to", "start": 807, "end": 809, "annotation": null}, {"text": "the", "start": 810, "end": 813, "annotation": null}, {"text": "large", "start": 814, "end": 819, "annotation": null}, {"text": "feature", "start": 820, "end": 827, "annotation": null}, {"text": "size", "start": 828, "end": 832, "annotation": null}, {"text": "of", "start": 833, "end": 835, "annotation": null}, {"text": "the", "start": 836, "end": 839, "annotation": null}, {"text": "craters", "start": 840, "end": 847, "annotation": null}, {"text": "on", "start": 848, "end": 850, "annotation": null}, {"text": "the", "start": 851, "end": 854, "annotation": null}, {"text": "surface", "start": 855, "end": 862, "annotation": null}, {"text": "and", "start": 863, "end": 866, "annotation": null}, {"text": "the", "start": 867, "end": 870, "annotation": null}, {"text": "high", "start": 871, "end": 875, "annotation": null}, {"text": "RMS", "start": 876, "end": 879, "annotation": null}, {"text": "surface", "start": 880, "end": 887, "annotation": null}, {"text": "roughness", "start": 888, "end": 897, "annotation": null}, {"text": ".", "start": 897, "end": 898, "annotation": null}]]} -{"remark": "doping_annt3", "text": "A new self\u2010consistent thermal\u2010electrical model of etched\u2010well GaAs/ AlGaAs vertical\u2010cavity surface\u2010emitting lasers is developed. The model features a realistic distribution of heat sources and two\u2010dimensional current\u2010 and heat\u2010flux spreading. It is shown that the P\u2010AlGaAs layer represents a major source of Joule heating that may easily exceed the active\u2010region heating. A moderate increase of the P\u2010AlGaAs layer doping is shown to be very effective in reducing the excessive heating. Copyright \u00a9 1991 Wiley Periodicals, Inc., A Wiley Company", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "new", "start": 2, "end": 5, "annotation": null}, {"text": "self\u2010consistent", "start": 6, "end": 21, "annotation": null}, {"text": "thermal\u2010electrical", "start": 22, "end": 40, "annotation": null}, {"text": "model", "start": 41, "end": 46, "annotation": null}, {"text": "of", "start": 47, "end": 49, "annotation": null}, {"text": "etched\u2010well", "start": 50, "end": 61, "annotation": null}, {"text": "GaAs", "start": 62, "end": 66, "annotation": null}, {"text": "/", "start": 66, "end": 67, "annotation": null}, {"text": "AlGaAs", "start": 68, "end": 74, "annotation": null}, {"text": "vertical\u2010cavity", "start": 75, "end": 90, "annotation": null}, {"text": "surface\u2010emitting", "start": 91, "end": 107, "annotation": null}, {"text": "lasers", "start": 108, "end": 114, "annotation": null}, {"text": "is", "start": 115, "end": 117, "annotation": null}, {"text": "developed", "start": 118, "end": 127, "annotation": null}, {"text": ".", "start": 127, "end": 128, "annotation": null}], [{"text": "The", "start": 129, "end": 132, "annotation": null}, {"text": "model", "start": 133, "end": 138, "annotation": null}, {"text": "features", "start": 139, "end": 147, "annotation": null}, {"text": "a", "start": 148, "end": 149, "annotation": null}, {"text": "realistic", "start": 150, "end": 159, "annotation": null}, {"text": "distribution", "start": 160, "end": 172, "annotation": null}, {"text": "of", "start": 173, "end": 175, "annotation": null}, {"text": "heat", "start": 176, "end": 180, "annotation": null}, {"text": "sources", "start": 181, "end": 188, "annotation": null}, {"text": "and", "start": 189, "end": 192, "annotation": null}, {"text": "two\u2010dimensional", "start": 193, "end": 208, "annotation": null}, {"text": "current\u2010", "start": 209, "end": 217, "annotation": null}, {"text": "and", "start": 218, "end": 221, "annotation": null}, {"text": "heat\u2010flux", "start": 222, "end": 231, "annotation": null}, {"text": "spreading", "start": 232, "end": 241, "annotation": null}, {"text": ".", "start": 241, "end": 242, "annotation": null}], [{"text": "It", "start": 243, "end": 245, "annotation": null}, {"text": "is", "start": 246, "end": 248, "annotation": null}, {"text": "shown", "start": 249, "end": 254, "annotation": null}, {"text": "that", "start": 255, "end": 259, "annotation": null}, {"text": "the", "start": 260, "end": 263, "annotation": null}, {"text": "P\u2010AlGaAs", "start": 264, "end": 272, "annotation": null}, {"text": "layer", "start": 273, "end": 278, "annotation": null}, {"text": "represents", "start": 279, "end": 289, "annotation": null}, {"text": "a", "start": 290, "end": 291, "annotation": null}, {"text": "major", "start": 292, "end": 297, "annotation": null}, {"text": "source", "start": 298, "end": 304, "annotation": null}, {"text": "of", "start": 305, "end": 307, "annotation": null}, {"text": "Joule", "start": 308, "end": 313, "annotation": null}, {"text": "heating", "start": 314, "end": 321, "annotation": null}, {"text": "that", "start": 322, "end": 326, "annotation": null}, {"text": "may", "start": 327, "end": 330, "annotation": null}, {"text": "easily", "start": 331, "end": 337, "annotation": null}, {"text": "exceed", "start": 338, "end": 344, "annotation": null}, {"text": "the", "start": 345, "end": 348, "annotation": null}, {"text": "active\u2010region", "start": 349, "end": 362, "annotation": null}, {"text": "heating", "start": 363, "end": 370, "annotation": null}, {"text": ".", "start": 370, "end": 371, "annotation": null}], [{"text": "A", "start": 372, "end": 373, "annotation": null}, {"text": "moderate", "start": 374, "end": 382, "annotation": null}, {"text": "increase", "start": 383, "end": 391, "annotation": null}, {"text": "of", "start": 392, "end": 394, "annotation": null}, {"text": "the", "start": 395, "end": 398, "annotation": null}, {"text": "P\u2010AlGaAs", "start": 399, "end": 407, "annotation": "BASEMAT"}, {"text": "layer", "start": 408, "end": 413, "annotation": null}, {"text": "doping", "start": 414, "end": 420, "annotation": null}, {"text": "is", "start": 421, "end": 423, "annotation": null}, {"text": "shown", "start": 424, "end": 429, "annotation": null}, {"text": "to", "start": 430, "end": 432, "annotation": null}, {"text": "be", "start": 433, "end": 435, "annotation": null}, {"text": "very", "start": 436, "end": 440, "annotation": null}, {"text": "effective", "start": 441, "end": 450, "annotation": null}, {"text": "in", "start": 451, "end": 453, "annotation": null}, {"text": "reducing", "start": 454, "end": 462, "annotation": null}, {"text": "the", "start": 463, "end": 466, "annotation": null}, {"text": "excessive", "start": 467, "end": 476, "annotation": null}, {"text": "heating", "start": 477, "end": 484, "annotation": null}, {"text": ".", "start": 484, "end": 485, "annotation": null}]]} -{"remark": "doping_annt3", "text": "A systematic study of the variation in resistivity and lifetime on cell performance, before and after light-induced degradation (LID), was performed along \u223c900-mmlong commercially grown B- and Ga-doped Czochralski (Cz) ingots. Manufacturable screen-printed solar cells were fabricated and analyzed from different locations on the ingots. Despite the large variation in resistivity (0-57-2-5 \u03c9cm) and lifetime (100-1000 \u03bcs) in the Ga-doped Cz ingot, the efficiency variation was found to be \u2264 0-5% with an average efficiency of \u223c17-1%. No LID was observed in these cells. In contrast to the Ga-doped ingot, the B-doped ingot showed a relatively tight resistivity range (0-87-1 -22 \u03c9 cm), resulting in smaller spread in lifetime (60-400 \u03bc s) and efficiency (16-5-16-7%) along the ingot. However, the LID reduced the efficiency of these B-doped cells by about 1-1% absolute. Additionally, the use of thinner substrate and higher resistivity (4-3 \u03c9 cm) B-doped C z was found to reduce the LID significantly, resulting in an efficiency reduction of 0-5-0-6%, as opposed to >1-0% in \u223c1 \u03c9cm \u223c17% efficient screen-printed cells. As a result, Ga-doped Cz cells gave 1.5 and 0.7% higher stabilized efficiency relative to 1 and 4-3 \u03c9cm B-doped Cz Si cells, respectively. Copyright \u00a9 2005 John Wiley & Sons, Ltd.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "systematic", "start": 2, "end": 12, "annotation": null}, {"text": "study", "start": 13, "end": 18, "annotation": null}, {"text": "of", "start": 19, "end": 21, "annotation": null}, {"text": "the", "start": 22, "end": 25, "annotation": null}, {"text": "variation", "start": 26, "end": 35, "annotation": null}, {"text": "in", "start": 36, "end": 38, "annotation": null}, {"text": "resistivity", "start": 39, "end": 50, "annotation": null}, {"text": "and", "start": 51, "end": 54, "annotation": null}, {"text": "lifetime", "start": 55, "end": 63, "annotation": null}, {"text": "on", "start": 64, "end": 66, "annotation": null}, {"text": "cell", "start": 67, "end": 71, "annotation": null}, {"text": "performance", "start": 72, "end": 83, "annotation": null}, {"text": ",", "start": 83, "end": 84, "annotation": null}, {"text": "before", "start": 85, "end": 91, "annotation": null}, {"text": "and", "start": 92, "end": 95, "annotation": null}, {"text": "after", "start": 96, "end": 101, "annotation": null}, {"text": "light", "start": 102, "end": 107, "annotation": null}, {"text": "-", "start": 107, "end": 108, "annotation": null}, {"text": "induced", "start": 108, "end": 115, "annotation": null}, {"text": "degradation", "start": 116, "end": 127, "annotation": null}, {"text": "(", "start": 128, "end": 129, "annotation": null}, {"text": "LID", "start": 129, "end": 132, "annotation": null}, {"text": ")", "start": 132, "end": 133, "annotation": null}, {"text": ",", "start": 133, "end": 134, "annotation": null}, {"text": "was", "start": 135, "end": 138, "annotation": null}, {"text": "performed", "start": 139, "end": 148, "annotation": null}, {"text": "along", "start": 149, "end": 154, "annotation": null}, {"text": "\u223c", "start": 155, "end": 156, "annotation": null}, {"text": "900-mmlong", "start": 156, "end": 166, "annotation": null}, {"text": "commercially", "start": 167, "end": 179, "annotation": null}, {"text": "grown", "start": 180, "end": 185, "annotation": null}, {"text": "B-", "start": 186, "end": 188, "annotation": "DOPANT"}, {"text": "and", "start": 189, "end": 192, "annotation": null}, {"text": "Ga", "start": 193, "end": 195, "annotation": "DOPANT"}, {"text": "-", "start": 195, "end": 196, "annotation": null}, {"text": "doped", "start": 196, "end": 201, "annotation": null}, {"text": "Czochralski", "start": 202, "end": 213, "annotation": "BASEMAT"}, {"text": "(", "start": 214, "end": 215, "annotation": null}, {"text": "Cz", "start": 215, "end": 217, "annotation": "BASEMAT"}, {"text": ")", "start": 217, "end": 218, "annotation": null}, {"text": "ingots", "start": 219, "end": 225, "annotation": "BASEMAT"}, {"text": ".", "start": 225, "end": 226, "annotation": null}], [{"text": "Manufacturable", "start": 227, "end": 241, "annotation": null}, {"text": "screen", "start": 242, "end": 248, "annotation": null}, {"text": "-", "start": 248, "end": 249, "annotation": null}, {"text": "printed", "start": 249, "end": 256, "annotation": null}, {"text": "solar", "start": 257, "end": 262, "annotation": null}, {"text": "cells", "start": 263, "end": 268, "annotation": null}, {"text": "were", "start": 269, "end": 273, "annotation": null}, {"text": "fabricated", "start": 274, "end": 284, "annotation": null}, {"text": "and", "start": 285, "end": 288, "annotation": null}, {"text": "analyzed", "start": 289, "end": 297, "annotation": null}, {"text": "from", "start": 298, "end": 302, "annotation": null}, {"text": "different", "start": 303, "end": 312, "annotation": null}, {"text": "locations", "start": 313, "end": 322, "annotation": null}, {"text": "on", "start": 323, "end": 325, "annotation": null}, {"text": "the", "start": 326, "end": 329, "annotation": null}, {"text": "ingots", "start": 330, "end": 336, "annotation": null}, {"text": ".", "start": 336, "end": 337, "annotation": null}], [{"text": "Despite", "start": 338, "end": 345, "annotation": null}, {"text": "the", "start": 346, "end": 349, "annotation": null}, {"text": "large", "start": 350, "end": 355, "annotation": null}, {"text": "variation", "start": 356, "end": 365, "annotation": null}, {"text": "in", "start": 366, "end": 368, "annotation": null}, {"text": "resistivity", "start": 369, "end": 380, "annotation": null}, {"text": "(", "start": 381, "end": 382, "annotation": null}, {"text": "0-57-2-5", "start": 382, "end": 390, "annotation": null}, {"text": "\u03c9cm", "start": 391, "end": 394, "annotation": null}, {"text": ")", "start": 394, "end": 395, "annotation": null}, {"text": "and", "start": 396, "end": 399, "annotation": null}, {"text": "lifetime", "start": 400, "end": 408, "annotation": null}, {"text": "(", "start": 409, "end": 410, "annotation": null}, {"text": "100-1000", "start": 410, "end": 418, "annotation": null}, {"text": "\u03bcs", "start": 419, "end": 421, "annotation": null}, {"text": ")", "start": 421, "end": 422, "annotation": null}, {"text": "in", "start": 423, "end": 425, "annotation": null}, {"text": "the", "start": 426, "end": 429, "annotation": null}, {"text": "Ga", "start": 430, "end": 432, "annotation": "DOPANT"}, {"text": "-", "start": 432, "end": 433, "annotation": null}, {"text": "doped", "start": 433, "end": 438, "annotation": null}, {"text": "Cz", "start": 439, "end": 441, "annotation": "BASEMAT"}, {"text": "ingot", "start": 442, "end": 447, "annotation": "BASEMAT"}, {"text": ",", "start": 447, "end": 448, "annotation": null}, {"text": "the", "start": 449, "end": 452, "annotation": null}, {"text": "efficiency", "start": 453, "end": 463, "annotation": null}, {"text": "variation", "start": 464, "end": 473, "annotation": null}, {"text": "was", "start": 474, "end": 477, "annotation": null}, {"text": "found", "start": 478, "end": 483, "annotation": null}, {"text": "to", "start": 484, "end": 486, "annotation": null}, {"text": "be", "start": 487, "end": 489, "annotation": null}, {"text": "\u2264", "start": 490, "end": 491, "annotation": null}, {"text": "0-5", "start": 492, "end": 495, "annotation": null}, {"text": "%", "start": 495, "end": 496, "annotation": null}, {"text": "with", "start": 497, "end": 501, "annotation": null}, {"text": "an", "start": 502, "end": 504, "annotation": null}, {"text": "average", "start": 505, "end": 512, "annotation": null}, {"text": "efficiency", "start": 513, "end": 523, "annotation": null}, {"text": "of", "start": 524, "end": 526, "annotation": null}, {"text": "\u223c", "start": 527, "end": 528, "annotation": null}, {"text": "17-1", "start": 528, "end": 532, "annotation": null}, {"text": "%", "start": 532, "end": 533, "annotation": null}, {"text": ".", "start": 533, "end": 534, "annotation": null}], [{"text": "No", "start": 535, "end": 537, "annotation": null}, {"text": "LID", "start": 538, "end": 541, "annotation": null}, {"text": "was", "start": 542, "end": 545, "annotation": null}, {"text": "observed", "start": 546, "end": 554, "annotation": null}, {"text": "in", "start": 555, "end": 557, "annotation": null}, {"text": "these", "start": 558, "end": 563, "annotation": null}, {"text": "cells", "start": 564, "end": 569, "annotation": null}, {"text": ".", "start": 569, "end": 570, "annotation": null}], [{"text": "In", "start": 571, "end": 573, "annotation": null}, {"text": "contrast", "start": 574, "end": 582, "annotation": null}, {"text": "to", "start": 583, "end": 585, "annotation": null}, {"text": "the", "start": 586, "end": 589, "annotation": null}, {"text": "Ga", "start": 590, "end": 592, "annotation": "DOPANT"}, {"text": "-", "start": 592, "end": 593, "annotation": null}, {"text": "doped", "start": 593, "end": 598, "annotation": null}, {"text": "ingot", "start": 599, "end": 604, "annotation": "BASEMAT"}, {"text": ",", "start": 604, "end": 605, "annotation": null}, {"text": "the", "start": 606, "end": 609, "annotation": null}, {"text": "B", "start": 610, "end": 611, "annotation": "DOPANT"}, {"text": "-", "start": 611, "end": 612, "annotation": null}, {"text": "doped", "start": 612, "end": 617, "annotation": null}, {"text": "ingot", "start": 618, "end": 623, "annotation": "BASEMAT"}, {"text": "showed", "start": 624, "end": 630, "annotation": null}, {"text": "a", "start": 631, "end": 632, "annotation": null}, {"text": "relatively", "start": 633, "end": 643, "annotation": null}, {"text": "tight", "start": 644, "end": 649, "annotation": null}, {"text": "resistivity", "start": 650, "end": 661, "annotation": null}, {"text": "range", "start": 662, "end": 667, "annotation": null}, {"text": "(", "start": 668, "end": 669, "annotation": null}, {"text": "0-87-1", "start": 669, "end": 675, "annotation": null}, {"text": "-22", "start": 676, "end": 679, "annotation": null}, {"text": "\u03c9", "start": 680, "end": 681, "annotation": null}, {"text": "cm", "start": 682, "end": 684, "annotation": null}, {"text": ")", "start": 684, "end": 685, "annotation": null}, {"text": ",", "start": 685, "end": 686, "annotation": null}, {"text": "resulting", "start": 687, "end": 696, "annotation": null}, {"text": "in", "start": 697, "end": 699, "annotation": null}, {"text": "smaller", "start": 700, "end": 707, "annotation": null}, {"text": "spread", "start": 708, "end": 714, "annotation": null}, {"text": "in", "start": 715, "end": 717, "annotation": null}, {"text": "lifetime", "start": 718, "end": 726, "annotation": null}, {"text": "(", "start": 727, "end": 728, "annotation": null}, {"text": "60-400", "start": 728, "end": 734, "annotation": null}, {"text": "\u03bc", "start": 735, "end": 736, "annotation": null}, {"text": "s", "start": 737, "end": 738, "annotation": null}, {"text": ")", "start": 738, "end": 739, "annotation": null}, {"text": "and", "start": 740, "end": 743, "annotation": null}, {"text": "efficiency", "start": 744, "end": 754, "annotation": null}, {"text": "(", "start": 755, "end": 756, "annotation": null}, {"text": "16-5-16-7", "start": 756, "end": 765, "annotation": null}, {"text": "%", "start": 765, "end": 766, "annotation": null}, {"text": ")", "start": 766, "end": 767, "annotation": null}, {"text": "along", "start": 768, "end": 773, "annotation": null}, {"text": "the", "start": 774, "end": 777, "annotation": null}, {"text": "ingot", "start": 778, "end": 783, "annotation": null}, {"text": ".", "start": 783, "end": 784, "annotation": null}], [{"text": "However", "start": 785, "end": 792, "annotation": null}, {"text": ",", "start": 792, "end": 793, "annotation": null}, {"text": "the", "start": 794, "end": 797, "annotation": null}, {"text": "LID", "start": 798, "end": 801, "annotation": null}, {"text": "reduced", "start": 802, "end": 809, "annotation": null}, {"text": "the", "start": 810, "end": 813, "annotation": null}, {"text": "efficiency", "start": 814, "end": 824, "annotation": null}, {"text": "of", "start": 825, "end": 827, "annotation": null}, {"text": "these", "start": 828, "end": 833, "annotation": null}, {"text": "B", "start": 834, "end": 835, "annotation": "DOPANT"}, {"text": "-", "start": 835, "end": 836, "annotation": null}, {"text": "doped", "start": 836, "end": 841, "annotation": null}, {"text": "cells", "start": 842, "end": 847, "annotation": "BASEMAT"}, {"text": "by", "start": 848, "end": 850, "annotation": null}, {"text": "about", "start": 851, "end": 856, "annotation": null}, {"text": "1-1", "start": 857, "end": 860, "annotation": null}, {"text": "%", "start": 860, "end": 861, "annotation": null}, {"text": "absolute", "start": 862, "end": 870, "annotation": null}, {"text": ".", "start": 870, "end": 871, "annotation": null}], [{"text": "Additionally", "start": 872, "end": 884, "annotation": null}, {"text": ",", "start": 884, "end": 885, "annotation": null}, {"text": "the", "start": 886, "end": 889, "annotation": null}, {"text": "use", "start": 890, "end": 893, "annotation": null}, {"text": "of", "start": 894, "end": 896, "annotation": null}, {"text": "thinner", "start": 897, "end": 904, "annotation": null}, {"text": "substrate", "start": 905, "end": 914, "annotation": null}, {"text": "and", "start": 915, "end": 918, "annotation": null}, {"text": "higher", "start": 919, "end": 925, "annotation": null}, {"text": "resistivity", "start": 926, "end": 937, "annotation": null}, {"text": "(", "start": 938, "end": 939, "annotation": null}, {"text": "4-3", "start": 939, "end": 942, "annotation": null}, {"text": "\u03c9", "start": 943, "end": 944, "annotation": null}, {"text": "cm", "start": 945, "end": 947, "annotation": null}, {"text": ")", "start": 947, "end": 948, "annotation": null}, {"text": "B", "start": 949, "end": 950, "annotation": "DOPANT"}, {"text": "-", "start": 950, "end": 951, "annotation": null}, {"text": "doped", "start": 951, "end": 956, "annotation": null}, {"text": "C", "start": 957, "end": 958, "annotation": "BASEMAT"}, {"text": "z", "start": 959, "end": 960, "annotation": "BASEMAT"}, {"text": "was", "start": 961, "end": 964, "annotation": null}, {"text": "found", "start": 965, "end": 970, "annotation": null}, {"text": "to", "start": 971, "end": 973, "annotation": null}, {"text": "reduce", "start": 974, "end": 980, "annotation": null}, {"text": "the", "start": 981, "end": 984, "annotation": null}, {"text": "LID", "start": 985, "end": 988, "annotation": null}, {"text": "significantly", "start": 989, "end": 1002, "annotation": null}, {"text": ",", "start": 1002, "end": 1003, "annotation": null}, {"text": "resulting", "start": 1004, "end": 1013, "annotation": null}, {"text": "in", "start": 1014, "end": 1016, "annotation": null}, {"text": "an", "start": 1017, "end": 1019, "annotation": null}, {"text": "efficiency", "start": 1020, "end": 1030, "annotation": null}, {"text": "reduction", "start": 1031, "end": 1040, "annotation": null}, {"text": "of", "start": 1041, "end": 1043, "annotation": null}, {"text": "0-5-0-6", "start": 1044, "end": 1051, "annotation": null}, {"text": "%", "start": 1051, "end": 1052, "annotation": null}, {"text": ",", "start": 1052, "end": 1053, "annotation": null}, {"text": "as", "start": 1054, "end": 1056, "annotation": null}, {"text": "opposed", "start": 1057, "end": 1064, "annotation": null}, {"text": "to", "start": 1065, "end": 1067, "annotation": null}, {"text": ">", "start": 1068, "end": 1069, "annotation": null}, {"text": "1-0", "start": 1069, "end": 1072, "annotation": null}, {"text": "%", "start": 1072, "end": 1073, "annotation": null}, {"text": "in", "start": 1074, "end": 1076, "annotation": null}, {"text": "\u223c", "start": 1077, "end": 1078, "annotation": null}, {"text": "1", "start": 1078, "end": 1079, "annotation": null}, {"text": "\u03c9cm", "start": 1080, "end": 1083, "annotation": null}, {"text": "\u223c", "start": 1084, "end": 1085, "annotation": null}, {"text": "17", "start": 1085, "end": 1087, "annotation": null}, {"text": "%", "start": 1087, "end": 1088, "annotation": null}, {"text": "efficient", "start": 1089, "end": 1098, "annotation": null}, {"text": "screen", "start": 1099, "end": 1105, "annotation": null}, {"text": "-", "start": 1105, "end": 1106, "annotation": null}, {"text": "printed", "start": 1106, "end": 1113, "annotation": null}, {"text": "cells", "start": 1114, "end": 1119, "annotation": null}, {"text": ".", "start": 1119, "end": 1120, "annotation": null}], [{"text": "As", "start": 1121, "end": 1123, "annotation": null}, {"text": "a", "start": 1124, "end": 1125, "annotation": null}, {"text": "result", "start": 1126, "end": 1132, "annotation": null}, {"text": ",", "start": 1132, "end": 1133, "annotation": null}, {"text": "Ga", "start": 1134, "end": 1136, "annotation": "DOPANT"}, {"text": "-", "start": 1136, "end": 1137, "annotation": null}, {"text": "doped", "start": 1137, "end": 1142, "annotation": null}, {"text": "Cz", "start": 1143, "end": 1145, "annotation": "BASEMAT"}, {"text": "cells", "start": 1146, "end": 1151, "annotation": "BASEMAT"}, {"text": "gave", "start": 1152, "end": 1156, "annotation": null}, {"text": "1.5", "start": 1157, "end": 1160, "annotation": null}, {"text": "and", "start": 1161, "end": 1164, "annotation": null}, {"text": "0.7", "start": 1165, "end": 1168, "annotation": null}, {"text": "%", "start": 1168, "end": 1169, "annotation": null}, {"text": "higher", "start": 1170, "end": 1176, "annotation": null}, {"text": "stabilized", "start": 1177, "end": 1187, "annotation": null}, {"text": "efficiency", "start": 1188, "end": 1198, "annotation": null}, {"text": "relative", "start": 1199, "end": 1207, "annotation": null}, {"text": "to", "start": 1208, "end": 1210, "annotation": null}, {"text": "1", "start": 1211, "end": 1212, "annotation": null}, {"text": "and", "start": 1213, "end": 1216, "annotation": null}, {"text": "4-3", "start": 1217, "end": 1220, "annotation": null}, {"text": "\u03c9cm", "start": 1221, "end": 1224, "annotation": null}, {"text": "B", "start": 1225, "end": 1226, "annotation": "DOPANT"}, {"text": "-", "start": 1226, "end": 1227, "annotation": null}, {"text": "doped", "start": 1227, "end": 1232, "annotation": null}, {"text": "Cz", "start": 1233, "end": 1235, "annotation": "BASEMAT"}, {"text": "Si", "start": 1236, "end": 1238, "annotation": "BASEMAT"}, {"text": "cells", "start": 1239, "end": 1244, "annotation": "BASEMAT"}, {"text": ",", "start": 1244, "end": 1245, "annotation": null}, {"text": "respectively", "start": 1246, "end": 1258, "annotation": null}, {"text": ".", "start": 1258, "end": 1259, "annotation": null}]]} +{"remark": "doping_annt1", "text": "Thermally stimulated luminescence (TSL) of aluminoborosilicate glass doped with CdSe nanoparticles (28 and 47\u00c5) has been studied after exposure to ionizing radiation; the intense TSL peaks were observed at temperatures 150 and 85\u00b0C, respectively. The optical absorption spectra, as well as TSL of the irradiated samples containing CuBr nanoparticles (44\u00c5) were also measured. In the case of CuBr, TSL was observed neither before nor after irradiation. The dependence of TSL intensity on irradiation time indicates that glass activated by CdSe nanoparticles shows promise as a dosimetric material.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Thermally", "start": 0, "end": 9, "annotation": null}, {"text": "stimulated", "start": 10, "end": 20, "annotation": null}, {"text": "luminescence", "start": 21, "end": 33, "annotation": null}, {"text": "(", "start": 34, "end": 35, "annotation": null}, {"text": "TSL", "start": 35, "end": 38, "annotation": null}, {"text": ")", "start": 38, "end": 39, "annotation": null}, {"text": "of", "start": 40, "end": 42, "annotation": null}, {"text": "aluminoborosilicate", "start": 43, "end": 62, "annotation": "BASEMAT"}, {"text": "glass", "start": 63, "end": 68, "annotation": "BASEMAT"}, {"text": "doped", "start": 69, "end": 74, "annotation": null}, {"text": "with", "start": 75, "end": 79, "annotation": null}, {"text": "CdSe", "start": 80, "end": 84, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 85, "end": 98, "annotation": null}, {"text": "(", "start": 99, "end": 100, "annotation": null}, {"text": "28", "start": 100, "end": 102, "annotation": null}, {"text": "and", "start": 103, "end": 106, "annotation": null}, {"text": "47\u00c5", "start": 107, "end": 110, "annotation": null}, {"text": ")", "start": 110, "end": 111, "annotation": null}, {"text": "has", "start": 112, "end": 115, "annotation": null}, {"text": "been", "start": 116, "end": 120, "annotation": null}, {"text": "studied", "start": 121, "end": 128, "annotation": null}, {"text": "after", "start": 129, "end": 134, "annotation": null}, {"text": "exposure", "start": 135, "end": 143, "annotation": null}, {"text": "to", "start": 144, "end": 146, "annotation": null}, {"text": "ionizing", "start": 147, "end": 155, "annotation": null}, {"text": "radiation", "start": 156, "end": 165, "annotation": null}, {"text": ";", "start": 165, "end": 166, "annotation": null}, {"text": "the", "start": 167, "end": 170, "annotation": null}, {"text": "intense", "start": 171, "end": 178, "annotation": null}, {"text": "TSL", "start": 179, "end": 182, "annotation": null}, {"text": "peaks", "start": 183, "end": 188, "annotation": null}, {"text": "were", "start": 189, "end": 193, "annotation": null}, {"text": "observed", "start": 194, "end": 202, "annotation": null}, {"text": "at", "start": 203, "end": 205, "annotation": null}, {"text": "temperatures", "start": 206, "end": 218, "annotation": null}, {"text": "150", "start": 219, "end": 222, "annotation": null}, {"text": "and", "start": 223, "end": 226, "annotation": null}, {"text": "85", "start": 227, "end": 229, "annotation": null}, {"text": "\u00b0", "start": 229, "end": 230, "annotation": null}, {"text": "C", "start": 230, "end": 231, "annotation": null}, {"text": ",", "start": 231, "end": 232, "annotation": null}, {"text": "respectively", "start": 233, "end": 245, "annotation": null}, {"text": ".", "start": 245, "end": 246, "annotation": null}], [{"text": "The", "start": 247, "end": 250, "annotation": null}, {"text": "optical", "start": 251, "end": 258, "annotation": null}, {"text": "absorption", "start": 259, "end": 269, "annotation": null}, {"text": "spectra", "start": 270, "end": 277, "annotation": null}, {"text": ",", "start": 277, "end": 278, "annotation": null}, {"text": "as", "start": 279, "end": 281, "annotation": null}, {"text": "well", "start": 282, "end": 286, "annotation": null}, {"text": "as", "start": 287, "end": 289, "annotation": null}, {"text": "TSL", "start": 290, "end": 293, "annotation": null}, {"text": "of", "start": 294, "end": 296, "annotation": null}, {"text": "the", "start": 297, "end": 300, "annotation": null}, {"text": "irradiated", "start": 301, "end": 311, "annotation": null}, {"text": "samples", "start": 312, "end": 319, "annotation": null}, {"text": "containing", "start": 320, "end": 330, "annotation": null}, {"text": "CuBr", "start": 331, "end": 335, "annotation": null}, {"text": "nanoparticles", "start": 336, "end": 349, "annotation": null}, {"text": "(", "start": 350, "end": 351, "annotation": null}, {"text": "44\u00c5", "start": 351, "end": 354, "annotation": null}, {"text": ")", "start": 354, "end": 355, "annotation": null}, {"text": "were", "start": 356, "end": 360, "annotation": null}, {"text": "also", "start": 361, "end": 365, "annotation": null}, {"text": "measured", "start": 366, "end": 374, "annotation": null}, {"text": ".", "start": 374, "end": 375, "annotation": null}], [{"text": "In", "start": 376, "end": 378, "annotation": null}, {"text": "the", "start": 379, "end": 382, "annotation": null}, {"text": "case", "start": 383, "end": 387, "annotation": null}, {"text": "of", "start": 388, "end": 390, "annotation": null}, {"text": "CuBr", "start": 391, "end": 395, "annotation": null}, {"text": ",", "start": 395, "end": 396, "annotation": null}, {"text": "TSL", "start": 397, "end": 400, "annotation": null}, {"text": "was", "start": 401, "end": 404, "annotation": null}, {"text": "observed", "start": 405, "end": 413, "annotation": null}, {"text": "neither", "start": 414, "end": 421, "annotation": null}, {"text": "before", "start": 422, "end": 428, "annotation": null}, {"text": "nor", "start": 429, "end": 432, "annotation": null}, {"text": "after", "start": 433, "end": 438, "annotation": null}, {"text": "irradiation", "start": 439, "end": 450, "annotation": null}, {"text": ".", "start": 450, "end": 451, "annotation": null}], [{"text": "The", "start": 452, "end": 455, "annotation": null}, {"text": "dependence", "start": 456, "end": 466, "annotation": null}, {"text": "of", "start": 467, "end": 469, "annotation": null}, {"text": "TSL", "start": 470, "end": 473, "annotation": null}, {"text": "intensity", "start": 474, "end": 483, "annotation": null}, {"text": "on", "start": 484, "end": 486, "annotation": null}, {"text": "irradiation", "start": 487, "end": 498, "annotation": null}, {"text": "time", "start": 499, "end": 503, "annotation": null}, {"text": "indicates", "start": 504, "end": 513, "annotation": null}, {"text": "that", "start": 514, "end": 518, "annotation": null}, {"text": "glass", "start": 519, "end": 524, "annotation": "BASEMAT"}, {"text": "activated", "start": 525, "end": 534, "annotation": null}, {"text": "by", "start": 535, "end": 537, "annotation": null}, {"text": "CdSe", "start": 538, "end": 542, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 543, "end": 556, "annotation": null}, {"text": "shows", "start": 557, "end": 562, "annotation": null}, {"text": "promise", "start": 563, "end": 570, "annotation": null}, {"text": "as", "start": 571, "end": 573, "annotation": null}, {"text": "a", "start": 574, "end": 575, "annotation": null}, {"text": "dosimetric", "start": 576, "end": 586, "annotation": null}, {"text": "material", "start": 587, "end": 595, "annotation": null}, {"text": ".", "start": 595, "end": 596, "annotation": null}]], "meta": {"doi": "10.1016/j.jlumin.2009.05.013"}} +{"remark": "doping_annt2", "text": "Al doped zinc oxide (AZO) thin films were deposited on AZO buffered glass substrates by DC magnetron sputtering. The effect of buffer thickness on the electrical, structural, morphological, and optical properties of the AZO thin films was studied experimentally. As the buffer thickness increased, the resistivity of AZO thin film decreased from 6.4\u00d710\u22124 \u03a9 cm (no buffer) to 3.8\u00d710\u22124 \u03a9 cm (160-nm-thick buffer) and the corresponding mobility increased from 33.4 to 51.2cm2/Vs,resulting from an improvement of crystallinity. The haze factor of the AZO thin films increased with increasing buffer thickness up to 160nm, and then slightly decreased. A high average haze factor of 56.7% in the range from 400 to 1100nm was obtained in the thin film that incorporated a 160-nm-thick buffer, which was attributed to the large feature size of the craters on the surface and the high RMS surface roughness.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Al", "start": 0, "end": 2, "annotation": "DOPANT"}, {"text": "doped", "start": 3, "end": 8, "annotation": null}, {"text": "zinc", "start": 9, "end": 13, "annotation": "BASEMAT"}, {"text": "oxide", "start": 14, "end": 19, "annotation": "BASEMAT"}, {"text": "(", "start": 20, "end": 21, "annotation": null}, {"text": "AZO", "start": 21, "end": 24, "annotation": null}, {"text": ")", "start": 24, "end": 25, "annotation": null}, {"text": "thin", "start": 26, "end": 30, "annotation": null}, {"text": "films", "start": 31, "end": 36, "annotation": null}, {"text": "were", "start": 37, "end": 41, "annotation": null}, {"text": "deposited", "start": 42, "end": 51, "annotation": null}, {"text": "on", "start": 52, "end": 54, "annotation": null}, {"text": "AZO", "start": 55, "end": 58, "annotation": null}, {"text": "buffered", "start": 59, "end": 67, "annotation": null}, {"text": "glass", "start": 68, "end": 73, "annotation": null}, {"text": "substrates", "start": 74, "end": 84, "annotation": null}, {"text": "by", "start": 85, "end": 87, "annotation": null}, {"text": "DC", "start": 88, "end": 90, "annotation": null}, {"text": "magnetron", "start": 91, "end": 100, "annotation": null}, {"text": "sputtering", "start": 101, "end": 111, "annotation": null}, {"text": ".", "start": 111, "end": 112, "annotation": null}], [{"text": "The", "start": 113, "end": 116, "annotation": null}, {"text": "effect", "start": 117, "end": 123, "annotation": null}, {"text": "of", "start": 124, "end": 126, "annotation": null}, {"text": "buffer", "start": 127, "end": 133, "annotation": null}, {"text": "thickness", "start": 134, "end": 143, "annotation": null}, {"text": "on", "start": 144, "end": 146, "annotation": null}, {"text": "the", "start": 147, "end": 150, "annotation": null}, {"text": "electrical", "start": 151, "end": 161, "annotation": null}, {"text": ",", "start": 161, "end": 162, "annotation": null}, {"text": "structural", "start": 163, "end": 173, "annotation": null}, {"text": ",", "start": 173, "end": 174, "annotation": null}, {"text": "morphological", "start": 175, "end": 188, "annotation": null}, {"text": ",", "start": 188, "end": 189, "annotation": null}, {"text": "and", "start": 190, "end": 193, "annotation": null}, {"text": "optical", "start": 194, "end": 201, "annotation": null}, {"text": "properties", "start": 202, "end": 212, "annotation": null}, {"text": "of", "start": 213, "end": 215, "annotation": null}, {"text": "the", "start": 216, "end": 219, "annotation": null}, {"text": "AZO", "start": 220, "end": 223, "annotation": null}, {"text": "thin", "start": 224, "end": 228, "annotation": null}, {"text": "films", "start": 229, "end": 234, "annotation": null}, {"text": "was", "start": 235, "end": 238, "annotation": null}, {"text": "studied", "start": 239, "end": 246, "annotation": null}, {"text": "experimentally", "start": 247, "end": 261, "annotation": null}, {"text": ".", "start": 261, "end": 262, "annotation": null}], [{"text": "As", "start": 263, "end": 265, "annotation": null}, {"text": "the", "start": 266, "end": 269, "annotation": null}, {"text": "buffer", "start": 270, "end": 276, "annotation": null}, {"text": "thickness", "start": 277, "end": 286, "annotation": null}, {"text": "increased", "start": 287, "end": 296, "annotation": null}, {"text": ",", "start": 296, "end": 297, "annotation": null}, {"text": "the", "start": 298, "end": 301, "annotation": null}, {"text": "resistivity", "start": 302, "end": 313, "annotation": null}, {"text": "of", "start": 314, "end": 316, "annotation": null}, {"text": "AZO", "start": 317, "end": 320, "annotation": null}, {"text": "thin", "start": 321, "end": 325, "annotation": null}, {"text": "film", "start": 326, "end": 330, "annotation": null}, {"text": "decreased", "start": 331, "end": 340, "annotation": null}, {"text": "from", "start": 341, "end": 345, "annotation": null}, {"text": "6.4", "start": 346, "end": 349, "annotation": null}, {"text": "\u00d7", "start": 349, "end": 350, "annotation": null}, {"text": "10", "start": 350, "end": 352, "annotation": null}, {"text": "\u2212", "start": 352, "end": 353, "annotation": null}, {"text": "4", "start": 353, "end": 354, "annotation": null}, {"text": "\u03a9", "start": 355, "end": 356, "annotation": null}, {"text": "cm", "start": 357, "end": 359, "annotation": null}, {"text": "(", "start": 360, "end": 361, "annotation": null}, {"text": "no", "start": 361, "end": 363, "annotation": null}, {"text": "buffer", "start": 364, "end": 370, "annotation": null}, {"text": ")", "start": 370, "end": 371, "annotation": null}, {"text": "to", "start": 372, "end": 374, "annotation": null}, {"text": "3.8", "start": 375, "end": 378, "annotation": null}, {"text": "\u00d7", "start": 378, "end": 379, "annotation": null}, {"text": "10", "start": 379, "end": 381, "annotation": null}, {"text": "\u2212", "start": 381, "end": 382, "annotation": null}, {"text": "4", "start": 382, "end": 383, "annotation": null}, {"text": "\u03a9", "start": 384, "end": 385, "annotation": null}, {"text": "cm", "start": 386, "end": 388, "annotation": null}, {"text": "(", "start": 389, "end": 390, "annotation": null}, {"text": "160-nm-thick", "start": 390, "end": 402, "annotation": null}, {"text": "buffer", "start": 403, "end": 409, "annotation": null}, {"text": ")", "start": 409, "end": 410, "annotation": null}, {"text": "and", "start": 411, "end": 414, "annotation": null}, {"text": "the", "start": 415, "end": 418, "annotation": null}, {"text": "corresponding", "start": 419, "end": 432, "annotation": null}, {"text": "mobility", "start": 433, "end": 441, "annotation": null}, {"text": "increased", "start": 442, "end": 451, "annotation": null}, {"text": "from", "start": 452, "end": 456, "annotation": null}, {"text": "33.4", "start": 457, "end": 461, "annotation": null}, {"text": "to", "start": 462, "end": 464, "annotation": null}, {"text": "51.2", "start": 465, "end": 469, "annotation": null}, {"text": "cm2", "start": 469, "end": 472, "annotation": null}, {"text": "/", "start": 472, "end": 473, "annotation": null}, {"text": "Vs,resulting", "start": 473, "end": 485, "annotation": null}, {"text": "from", "start": 486, "end": 490, "annotation": null}, {"text": "an", "start": 491, "end": 493, "annotation": null}, {"text": "improvement", "start": 494, "end": 505, "annotation": null}, {"text": "of", "start": 506, "end": 508, "annotation": null}, {"text": "crystallinity", "start": 509, "end": 522, "annotation": null}, {"text": ".", "start": 522, "end": 523, "annotation": null}], [{"text": "The", "start": 524, "end": 527, "annotation": null}, {"text": "haze", "start": 528, "end": 532, "annotation": null}, {"text": "factor", "start": 533, "end": 539, "annotation": null}, {"text": "of", "start": 540, "end": 542, "annotation": null}, {"text": "the", "start": 543, "end": 546, "annotation": null}, {"text": "AZO", "start": 547, "end": 550, "annotation": null}, {"text": "thin", "start": 551, "end": 555, "annotation": null}, {"text": "films", "start": 556, "end": 561, "annotation": null}, {"text": "increased", "start": 562, "end": 571, "annotation": null}, {"text": "with", "start": 572, "end": 576, "annotation": null}, {"text": "increasing", "start": 577, "end": 587, "annotation": null}, {"text": "buffer", "start": 588, "end": 594, "annotation": null}, {"text": "thickness", "start": 595, "end": 604, "annotation": null}, {"text": "up", "start": 605, "end": 607, "annotation": null}, {"text": "to", "start": 608, "end": 610, "annotation": null}, {"text": "160", "start": 611, "end": 614, "annotation": null}, {"text": "nm", "start": 614, "end": 616, "annotation": null}, {"text": ",", "start": 616, "end": 617, "annotation": null}, {"text": "and", "start": 618, "end": 621, "annotation": null}, {"text": "then", "start": 622, "end": 626, "annotation": null}, {"text": "slightly", "start": 627, "end": 635, "annotation": null}, {"text": "decreased", "start": 636, "end": 645, "annotation": null}, {"text": ".", "start": 645, "end": 646, "annotation": null}], [{"text": "A", "start": 647, "end": 648, "annotation": null}, {"text": "high", "start": 649, "end": 653, "annotation": null}, {"text": "average", "start": 654, "end": 661, "annotation": null}, {"text": "haze", "start": 662, "end": 666, "annotation": null}, {"text": "factor", "start": 667, "end": 673, "annotation": null}, {"text": "of", "start": 674, "end": 676, "annotation": null}, {"text": "56.7", "start": 677, "end": 681, "annotation": null}, {"text": "%", "start": 681, "end": 682, "annotation": null}, {"text": "in", "start": 683, "end": 685, "annotation": null}, {"text": "the", "start": 686, "end": 689, "annotation": null}, {"text": "range", "start": 690, "end": 695, "annotation": null}, {"text": "from", "start": 696, "end": 700, "annotation": null}, {"text": "400", "start": 701, "end": 704, "annotation": null}, {"text": "to", "start": 705, "end": 707, "annotation": null}, {"text": "1100", "start": 708, "end": 712, "annotation": null}, {"text": "nm", "start": 712, "end": 714, "annotation": null}, {"text": "was", "start": 715, "end": 718, "annotation": null}, {"text": "obtained", "start": 719, "end": 727, "annotation": null}, {"text": "in", "start": 728, "end": 730, "annotation": null}, {"text": "the", "start": 731, "end": 734, "annotation": null}, {"text": "thin", "start": 735, "end": 739, "annotation": null}, {"text": "film", "start": 740, "end": 744, "annotation": null}, {"text": "that", "start": 745, "end": 749, "annotation": null}, {"text": "incorporated", "start": 750, "end": 762, "annotation": null}, {"text": "a", "start": 763, "end": 764, "annotation": null}, {"text": "160-nm-thick", "start": 765, "end": 777, "annotation": null}, {"text": "buffer", "start": 778, "end": 784, "annotation": null}, {"text": ",", "start": 784, "end": 785, "annotation": null}, {"text": "which", "start": 786, "end": 791, "annotation": null}, {"text": "was", "start": 792, "end": 795, "annotation": null}, {"text": "attributed", "start": 796, "end": 806, "annotation": null}, {"text": "to", "start": 807, "end": 809, "annotation": null}, {"text": "the", "start": 810, "end": 813, "annotation": null}, {"text": "large", "start": 814, "end": 819, "annotation": null}, {"text": "feature", "start": 820, "end": 827, "annotation": null}, {"text": "size", "start": 828, "end": 832, "annotation": null}, {"text": "of", "start": 833, "end": 835, "annotation": null}, {"text": "the", "start": 836, "end": 839, "annotation": null}, {"text": "craters", "start": 840, "end": 847, "annotation": null}, {"text": "on", "start": 848, "end": 850, "annotation": null}, {"text": "the", "start": 851, "end": 854, "annotation": null}, {"text": "surface", "start": 855, "end": 862, "annotation": null}, {"text": "and", "start": 863, "end": 866, "annotation": null}, {"text": "the", "start": 867, "end": 870, "annotation": null}, {"text": "high", "start": 871, "end": 875, "annotation": null}, {"text": "RMS", "start": 876, "end": 879, "annotation": null}, {"text": "surface", "start": 880, "end": 887, "annotation": null}, {"text": "roughness", "start": 888, "end": 897, "annotation": null}, {"text": ".", "start": 897, "end": 898, "annotation": null}]], "meta": {"doi": "10.1007/s10854-017-6415-7"}} +{"remark": "doping_annt3", "text": "A new self\u2010consistent thermal\u2010electrical model of etched\u2010well GaAs/ AlGaAs vertical\u2010cavity surface\u2010emitting lasers is developed. The model features a realistic distribution of heat sources and two\u2010dimensional current\u2010 and heat\u2010flux spreading. It is shown that the P\u2010AlGaAs layer represents a major source of Joule heating that may easily exceed the active\u2010region heating. A moderate increase of the P\u2010AlGaAs layer doping is shown to be very effective in reducing the excessive heating. Copyright \u00a9 1991 Wiley Periodicals, Inc., A Wiley Company", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "new", "start": 2, "end": 5, "annotation": null}, {"text": "self\u2010consistent", "start": 6, "end": 21, "annotation": null}, {"text": "thermal\u2010electrical", "start": 22, "end": 40, "annotation": null}, {"text": "model", "start": 41, "end": 46, "annotation": null}, {"text": "of", "start": 47, "end": 49, "annotation": null}, {"text": "etched\u2010well", "start": 50, "end": 61, "annotation": null}, {"text": "GaAs", "start": 62, "end": 66, "annotation": null}, {"text": "/", "start": 66, "end": 67, "annotation": null}, {"text": "AlGaAs", "start": 68, "end": 74, "annotation": null}, {"text": "vertical\u2010cavity", "start": 75, "end": 90, "annotation": null}, {"text": "surface\u2010emitting", "start": 91, "end": 107, "annotation": null}, {"text": "lasers", "start": 108, "end": 114, "annotation": null}, {"text": "is", "start": 115, "end": 117, "annotation": null}, {"text": "developed", "start": 118, "end": 127, "annotation": null}, {"text": ".", "start": 127, "end": 128, "annotation": null}], [{"text": "The", "start": 129, "end": 132, "annotation": null}, {"text": "model", "start": 133, "end": 138, "annotation": null}, {"text": "features", "start": 139, "end": 147, "annotation": null}, {"text": "a", "start": 148, "end": 149, "annotation": null}, {"text": "realistic", "start": 150, "end": 159, "annotation": null}, {"text": "distribution", "start": 160, "end": 172, "annotation": null}, {"text": "of", "start": 173, "end": 175, "annotation": null}, {"text": "heat", "start": 176, "end": 180, "annotation": null}, {"text": "sources", "start": 181, "end": 188, "annotation": null}, {"text": "and", "start": 189, "end": 192, "annotation": null}, {"text": "two\u2010dimensional", "start": 193, "end": 208, "annotation": null}, {"text": "current\u2010", "start": 209, "end": 217, "annotation": null}, {"text": "and", "start": 218, "end": 221, "annotation": null}, {"text": "heat\u2010flux", "start": 222, "end": 231, "annotation": null}, {"text": "spreading", "start": 232, "end": 241, "annotation": null}, {"text": ".", "start": 241, "end": 242, "annotation": null}], [{"text": "It", "start": 243, "end": 245, "annotation": null}, {"text": "is", "start": 246, "end": 248, "annotation": null}, {"text": "shown", "start": 249, "end": 254, "annotation": null}, {"text": "that", "start": 255, "end": 259, "annotation": null}, {"text": "the", "start": 260, "end": 263, "annotation": null}, {"text": "P\u2010AlGaAs", "start": 264, "end": 272, "annotation": null}, {"text": "layer", "start": 273, "end": 278, "annotation": null}, {"text": "represents", "start": 279, "end": 289, "annotation": null}, {"text": "a", "start": 290, "end": 291, "annotation": null}, {"text": "major", "start": 292, "end": 297, "annotation": null}, {"text": "source", "start": 298, "end": 304, "annotation": null}, {"text": "of", "start": 305, "end": 307, "annotation": null}, {"text": "Joule", "start": 308, "end": 313, "annotation": null}, {"text": "heating", "start": 314, "end": 321, "annotation": null}, {"text": "that", "start": 322, "end": 326, "annotation": null}, {"text": "may", "start": 327, "end": 330, "annotation": null}, {"text": "easily", "start": 331, "end": 337, "annotation": null}, {"text": "exceed", "start": 338, "end": 344, "annotation": null}, {"text": "the", "start": 345, "end": 348, "annotation": null}, {"text": "active\u2010region", "start": 349, "end": 362, "annotation": null}, {"text": "heating", "start": 363, "end": 370, "annotation": null}, {"text": ".", "start": 370, "end": 371, "annotation": null}], [{"text": "A", "start": 372, "end": 373, "annotation": null}, {"text": "moderate", "start": 374, "end": 382, "annotation": null}, {"text": "increase", "start": 383, "end": 391, "annotation": null}, {"text": "of", "start": 392, "end": 394, "annotation": null}, {"text": "the", "start": 395, "end": 398, "annotation": null}, {"text": "P\u2010AlGaAs", "start": 399, "end": 407, "annotation": "BASEMAT"}, {"text": "layer", "start": 408, "end": 413, "annotation": null}, {"text": "doping", "start": 414, "end": 420, "annotation": null}, {"text": "is", "start": 421, "end": 423, "annotation": null}, {"text": "shown", "start": 424, "end": 429, "annotation": null}, {"text": "to", "start": 430, "end": 432, "annotation": null}, {"text": "be", "start": 433, "end": 435, "annotation": null}, {"text": "very", "start": 436, "end": 440, "annotation": null}, {"text": "effective", "start": 441, "end": 450, "annotation": null}, {"text": "in", "start": 451, "end": 453, "annotation": null}, {"text": "reducing", "start": 454, "end": 462, "annotation": null}, {"text": "the", "start": 463, "end": 466, "annotation": null}, {"text": "excessive", "start": 467, "end": 476, "annotation": null}, {"text": "heating", "start": 477, "end": 484, "annotation": null}, {"text": ".", "start": 484, "end": 485, "annotation": null}]], "meta": {"doi": "10.1002/mop.4650041209"}} +{"remark": "doping_annt3", "text": "A systematic study of the variation in resistivity and lifetime on cell performance, before and after light-induced degradation (LID), was performed along \u223c900-mmlong commercially grown B- and Ga-doped Czochralski (Cz) ingots. Manufacturable screen-printed solar cells were fabricated and analyzed from different locations on the ingots. Despite the large variation in resistivity (0-57-2-5 \u03c9cm) and lifetime (100-1000 \u03bcs) in the Ga-doped Cz ingot, the efficiency variation was found to be \u2264 0-5% with an average efficiency of \u223c17-1%. No LID was observed in these cells. In contrast to the Ga-doped ingot, the B-doped ingot showed a relatively tight resistivity range (0-87-1 -22 \u03c9 cm), resulting in smaller spread in lifetime (60-400 \u03bc s) and efficiency (16-5-16-7%) along the ingot. However, the LID reduced the efficiency of these B-doped cells by about 1-1% absolute. Additionally, the use of thinner substrate and higher resistivity (4-3 \u03c9 cm) B-doped C z was found to reduce the LID significantly, resulting in an efficiency reduction of 0-5-0-6%, as opposed to >1-0% in \u223c1 \u03c9cm \u223c17% efficient screen-printed cells. As a result, Ga-doped Cz cells gave 1.5 and 0.7% higher stabilized efficiency relative to 1 and 4-3 \u03c9cm B-doped Cz Si cells, respectively. Copyright \u00a9 2005 John Wiley & Sons, Ltd.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "systematic", "start": 2, "end": 12, "annotation": null}, {"text": "study", "start": 13, "end": 18, "annotation": null}, {"text": "of", "start": 19, "end": 21, "annotation": null}, {"text": "the", "start": 22, "end": 25, "annotation": null}, {"text": "variation", "start": 26, "end": 35, "annotation": null}, {"text": "in", "start": 36, "end": 38, "annotation": null}, {"text": "resistivity", "start": 39, "end": 50, "annotation": null}, {"text": "and", "start": 51, "end": 54, "annotation": null}, {"text": "lifetime", "start": 55, "end": 63, "annotation": null}, {"text": "on", "start": 64, "end": 66, "annotation": null}, {"text": "cell", "start": 67, "end": 71, "annotation": null}, {"text": "performance", "start": 72, "end": 83, "annotation": null}, {"text": ",", "start": 83, "end": 84, "annotation": null}, {"text": "before", "start": 85, "end": 91, "annotation": null}, {"text": "and", "start": 92, "end": 95, "annotation": null}, {"text": "after", "start": 96, "end": 101, "annotation": null}, {"text": "light", "start": 102, "end": 107, "annotation": null}, {"text": "-", "start": 107, "end": 108, "annotation": null}, {"text": "induced", "start": 108, "end": 115, "annotation": null}, {"text": "degradation", "start": 116, "end": 127, "annotation": null}, {"text": "(", "start": 128, "end": 129, "annotation": null}, {"text": "LID", "start": 129, "end": 132, "annotation": null}, {"text": ")", "start": 132, "end": 133, "annotation": null}, {"text": ",", "start": 133, "end": 134, "annotation": null}, {"text": "was", "start": 135, "end": 138, "annotation": null}, {"text": "performed", "start": 139, "end": 148, "annotation": null}, {"text": "along", "start": 149, "end": 154, "annotation": null}, {"text": "\u223c", "start": 155, "end": 156, "annotation": null}, {"text": "900-mmlong", "start": 156, "end": 166, "annotation": null}, {"text": "commercially", "start": 167, "end": 179, "annotation": null}, {"text": "grown", "start": 180, "end": 185, "annotation": null}, {"text": "B-", "start": 186, "end": 188, "annotation": "DOPANT"}, {"text": "and", "start": 189, "end": 192, "annotation": null}, {"text": "Ga", "start": 193, "end": 195, "annotation": "DOPANT"}, {"text": "-", "start": 195, "end": 196, "annotation": null}, {"text": "doped", "start": 196, "end": 201, "annotation": null}, {"text": "Czochralski", "start": 202, "end": 213, "annotation": "BASEMAT"}, {"text": "(", "start": 214, "end": 215, "annotation": null}, {"text": "Cz", "start": 215, "end": 217, "annotation": "BASEMAT"}, {"text": ")", "start": 217, "end": 218, "annotation": null}, {"text": "ingots", "start": 219, "end": 225, "annotation": "BASEMAT"}, {"text": ".", "start": 225, "end": 226, "annotation": null}], [{"text": "Manufacturable", "start": 227, "end": 241, "annotation": null}, {"text": "screen", "start": 242, "end": 248, "annotation": null}, {"text": "-", "start": 248, "end": 249, "annotation": null}, {"text": "printed", "start": 249, "end": 256, "annotation": null}, {"text": "solar", "start": 257, "end": 262, "annotation": null}, {"text": "cells", "start": 263, "end": 268, "annotation": null}, {"text": "were", "start": 269, "end": 273, "annotation": null}, {"text": "fabricated", "start": 274, "end": 284, "annotation": null}, {"text": "and", "start": 285, "end": 288, "annotation": null}, {"text": "analyzed", "start": 289, "end": 297, "annotation": null}, {"text": "from", "start": 298, "end": 302, "annotation": null}, {"text": "different", "start": 303, "end": 312, "annotation": null}, {"text": "locations", "start": 313, "end": 322, "annotation": null}, {"text": "on", "start": 323, "end": 325, "annotation": null}, {"text": "the", "start": 326, "end": 329, "annotation": null}, {"text": "ingots", "start": 330, "end": 336, "annotation": null}, {"text": ".", "start": 336, "end": 337, "annotation": null}], [{"text": "Despite", "start": 338, "end": 345, "annotation": null}, {"text": "the", "start": 346, "end": 349, "annotation": null}, {"text": "large", "start": 350, "end": 355, "annotation": null}, {"text": "variation", "start": 356, "end": 365, "annotation": null}, {"text": "in", "start": 366, "end": 368, "annotation": null}, {"text": "resistivity", "start": 369, "end": 380, "annotation": null}, {"text": "(", "start": 381, "end": 382, "annotation": null}, {"text": "0-57-2-5", "start": 382, "end": 390, "annotation": null}, {"text": "\u03c9cm", "start": 391, "end": 394, "annotation": null}, {"text": ")", "start": 394, "end": 395, "annotation": null}, {"text": "and", "start": 396, "end": 399, "annotation": null}, {"text": "lifetime", "start": 400, "end": 408, "annotation": null}, {"text": "(", "start": 409, "end": 410, "annotation": null}, {"text": "100-1000", "start": 410, "end": 418, "annotation": null}, {"text": "\u03bcs", "start": 419, "end": 421, "annotation": null}, {"text": ")", "start": 421, "end": 422, "annotation": null}, {"text": "in", "start": 423, "end": 425, "annotation": null}, {"text": "the", "start": 426, "end": 429, "annotation": null}, {"text": "Ga", "start": 430, "end": 432, "annotation": "DOPANT"}, {"text": "-", "start": 432, "end": 433, "annotation": null}, {"text": "doped", "start": 433, "end": 438, "annotation": null}, {"text": "Cz", "start": 439, "end": 441, "annotation": "BASEMAT"}, {"text": "ingot", "start": 442, "end": 447, "annotation": "BASEMAT"}, {"text": ",", "start": 447, "end": 448, "annotation": null}, {"text": "the", "start": 449, "end": 452, "annotation": null}, {"text": "efficiency", "start": 453, "end": 463, "annotation": null}, {"text": "variation", "start": 464, "end": 473, "annotation": null}, {"text": "was", "start": 474, "end": 477, "annotation": null}, {"text": "found", "start": 478, "end": 483, "annotation": null}, {"text": "to", "start": 484, "end": 486, "annotation": null}, {"text": "be", "start": 487, "end": 489, "annotation": null}, {"text": "\u2264", "start": 490, "end": 491, "annotation": null}, {"text": "0-5", "start": 492, "end": 495, "annotation": null}, {"text": "%", "start": 495, "end": 496, "annotation": null}, {"text": "with", "start": 497, "end": 501, "annotation": null}, {"text": "an", "start": 502, "end": 504, "annotation": null}, {"text": "average", "start": 505, "end": 512, "annotation": null}, {"text": "efficiency", "start": 513, "end": 523, "annotation": null}, {"text": "of", "start": 524, "end": 526, "annotation": null}, {"text": "\u223c", "start": 527, "end": 528, "annotation": null}, {"text": "17-1", "start": 528, "end": 532, "annotation": null}, {"text": "%", "start": 532, "end": 533, "annotation": null}, {"text": ".", "start": 533, "end": 534, "annotation": null}], [{"text": "No", "start": 535, "end": 537, "annotation": null}, {"text": "LID", "start": 538, "end": 541, "annotation": null}, {"text": "was", "start": 542, "end": 545, "annotation": null}, {"text": "observed", "start": 546, "end": 554, "annotation": null}, {"text": "in", "start": 555, "end": 557, "annotation": null}, {"text": "these", "start": 558, "end": 563, "annotation": null}, {"text": "cells", "start": 564, "end": 569, "annotation": null}, {"text": ".", "start": 569, "end": 570, "annotation": null}], [{"text": "In", "start": 571, "end": 573, "annotation": null}, {"text": "contrast", "start": 574, "end": 582, "annotation": null}, {"text": "to", "start": 583, "end": 585, "annotation": null}, {"text": "the", "start": 586, "end": 589, "annotation": null}, {"text": "Ga", "start": 590, "end": 592, "annotation": "DOPANT"}, {"text": "-", "start": 592, "end": 593, "annotation": null}, {"text": "doped", "start": 593, "end": 598, "annotation": null}, {"text": "ingot", "start": 599, "end": 604, "annotation": "BASEMAT"}, {"text": ",", "start": 604, "end": 605, "annotation": null}, {"text": "the", "start": 606, "end": 609, "annotation": null}, {"text": "B", "start": 610, "end": 611, "annotation": "DOPANT"}, {"text": "-", "start": 611, "end": 612, "annotation": null}, {"text": "doped", "start": 612, "end": 617, "annotation": null}, {"text": "ingot", "start": 618, "end": 623, "annotation": "BASEMAT"}, {"text": "showed", "start": 624, "end": 630, "annotation": null}, {"text": "a", "start": 631, "end": 632, "annotation": null}, {"text": "relatively", "start": 633, "end": 643, "annotation": null}, {"text": "tight", "start": 644, "end": 649, "annotation": null}, {"text": "resistivity", "start": 650, "end": 661, "annotation": null}, {"text": "range", "start": 662, "end": 667, "annotation": null}, {"text": "(", "start": 668, "end": 669, "annotation": null}, {"text": "0-87-1", "start": 669, "end": 675, "annotation": null}, {"text": "-22", "start": 676, "end": 679, "annotation": null}, {"text": "\u03c9", "start": 680, "end": 681, "annotation": null}, {"text": "cm", "start": 682, "end": 684, "annotation": null}, {"text": ")", "start": 684, "end": 685, "annotation": null}, {"text": ",", "start": 685, "end": 686, "annotation": null}, {"text": "resulting", "start": 687, "end": 696, "annotation": null}, {"text": "in", "start": 697, "end": 699, "annotation": null}, {"text": "smaller", "start": 700, "end": 707, "annotation": null}, {"text": "spread", "start": 708, "end": 714, "annotation": null}, {"text": "in", "start": 715, "end": 717, "annotation": null}, {"text": "lifetime", "start": 718, "end": 726, "annotation": null}, {"text": "(", "start": 727, "end": 728, "annotation": null}, {"text": "60-400", "start": 728, "end": 734, "annotation": null}, {"text": "\u03bc", "start": 735, "end": 736, "annotation": null}, {"text": "s", "start": 737, "end": 738, "annotation": null}, {"text": ")", "start": 738, "end": 739, "annotation": null}, {"text": "and", "start": 740, "end": 743, "annotation": null}, {"text": "efficiency", "start": 744, "end": 754, "annotation": null}, {"text": "(", "start": 755, "end": 756, "annotation": null}, {"text": "16-5-16-7", "start": 756, "end": 765, "annotation": null}, {"text": "%", "start": 765, "end": 766, "annotation": null}, {"text": ")", "start": 766, "end": 767, "annotation": null}, {"text": "along", "start": 768, "end": 773, "annotation": null}, {"text": "the", "start": 774, "end": 777, "annotation": null}, {"text": "ingot", "start": 778, "end": 783, "annotation": null}, {"text": ".", "start": 783, "end": 784, "annotation": null}], [{"text": "However", "start": 785, "end": 792, "annotation": null}, {"text": ",", "start": 792, "end": 793, "annotation": null}, {"text": "the", "start": 794, "end": 797, "annotation": null}, {"text": "LID", "start": 798, "end": 801, "annotation": null}, {"text": "reduced", "start": 802, "end": 809, "annotation": null}, {"text": "the", "start": 810, "end": 813, "annotation": null}, {"text": "efficiency", "start": 814, "end": 824, "annotation": null}, {"text": "of", "start": 825, "end": 827, "annotation": null}, {"text": "these", "start": 828, "end": 833, "annotation": null}, {"text": "B", "start": 834, "end": 835, "annotation": "DOPANT"}, {"text": "-", "start": 835, "end": 836, "annotation": null}, {"text": "doped", "start": 836, "end": 841, "annotation": null}, {"text": "cells", "start": 842, "end": 847, "annotation": "BASEMAT"}, {"text": "by", "start": 848, "end": 850, "annotation": null}, {"text": "about", "start": 851, "end": 856, "annotation": null}, {"text": "1-1", "start": 857, "end": 860, "annotation": null}, {"text": "%", "start": 860, "end": 861, "annotation": null}, {"text": "absolute", "start": 862, "end": 870, "annotation": null}, {"text": ".", "start": 870, "end": 871, "annotation": null}], [{"text": "Additionally", "start": 872, "end": 884, "annotation": null}, {"text": ",", "start": 884, "end": 885, "annotation": null}, {"text": "the", "start": 886, "end": 889, "annotation": null}, {"text": "use", "start": 890, "end": 893, "annotation": null}, {"text": "of", "start": 894, "end": 896, "annotation": null}, {"text": "thinner", "start": 897, "end": 904, "annotation": null}, {"text": "substrate", "start": 905, "end": 914, "annotation": null}, {"text": "and", "start": 915, "end": 918, "annotation": null}, {"text": "higher", "start": 919, "end": 925, "annotation": null}, {"text": "resistivity", "start": 926, "end": 937, "annotation": null}, {"text": "(", "start": 938, "end": 939, "annotation": null}, {"text": "4-3", "start": 939, "end": 942, "annotation": null}, {"text": "\u03c9", "start": 943, "end": 944, "annotation": null}, {"text": "cm", "start": 945, "end": 947, "annotation": null}, {"text": ")", "start": 947, "end": 948, "annotation": null}, {"text": "B", "start": 949, "end": 950, "annotation": "DOPANT"}, {"text": "-", "start": 950, "end": 951, "annotation": null}, {"text": "doped", "start": 951, "end": 956, "annotation": null}, {"text": "C", "start": 957, "end": 958, "annotation": "BASEMAT"}, {"text": "z", "start": 959, "end": 960, "annotation": "BASEMAT"}, {"text": "was", "start": 961, "end": 964, "annotation": null}, {"text": "found", "start": 965, "end": 970, "annotation": null}, {"text": "to", "start": 971, "end": 973, "annotation": null}, {"text": "reduce", "start": 974, "end": 980, "annotation": null}, {"text": "the", "start": 981, "end": 984, "annotation": null}, {"text": "LID", "start": 985, "end": 988, "annotation": null}, {"text": "significantly", "start": 989, "end": 1002, "annotation": null}, {"text": ",", "start": 1002, "end": 1003, "annotation": null}, {"text": "resulting", "start": 1004, "end": 1013, "annotation": null}, {"text": "in", "start": 1014, "end": 1016, "annotation": null}, {"text": "an", "start": 1017, "end": 1019, "annotation": null}, {"text": "efficiency", "start": 1020, "end": 1030, "annotation": null}, {"text": "reduction", "start": 1031, "end": 1040, "annotation": null}, {"text": "of", "start": 1041, "end": 1043, "annotation": null}, {"text": "0-5-0-6", "start": 1044, "end": 1051, "annotation": null}, {"text": "%", "start": 1051, "end": 1052, "annotation": null}, {"text": ",", "start": 1052, "end": 1053, "annotation": null}, {"text": "as", "start": 1054, "end": 1056, "annotation": null}, {"text": "opposed", "start": 1057, "end": 1064, "annotation": null}, {"text": "to", "start": 1065, "end": 1067, "annotation": null}, {"text": ">", "start": 1068, "end": 1069, "annotation": null}, {"text": "1-0", "start": 1069, "end": 1072, "annotation": null}, {"text": "%", "start": 1072, "end": 1073, "annotation": null}, {"text": "in", "start": 1074, "end": 1076, "annotation": null}, {"text": "\u223c", "start": 1077, "end": 1078, "annotation": null}, {"text": "1", "start": 1078, "end": 1079, "annotation": null}, {"text": "\u03c9cm", "start": 1080, "end": 1083, "annotation": null}, {"text": "\u223c", "start": 1084, "end": 1085, "annotation": null}, {"text": "17", "start": 1085, "end": 1087, "annotation": null}, {"text": "%", "start": 1087, "end": 1088, "annotation": null}, {"text": "efficient", "start": 1089, "end": 1098, "annotation": null}, {"text": "screen", "start": 1099, "end": 1105, "annotation": null}, {"text": "-", "start": 1105, "end": 1106, "annotation": null}, {"text": "printed", "start": 1106, "end": 1113, "annotation": null}, {"text": "cells", "start": 1114, "end": 1119, "annotation": null}, {"text": ".", "start": 1119, "end": 1120, "annotation": null}], [{"text": "As", "start": 1121, "end": 1123, "annotation": null}, {"text": "a", "start": 1124, "end": 1125, "annotation": null}, {"text": "result", "start": 1126, "end": 1132, "annotation": null}, {"text": ",", "start": 1132, "end": 1133, "annotation": null}, {"text": "Ga", "start": 1134, "end": 1136, "annotation": "DOPANT"}, {"text": "-", "start": 1136, "end": 1137, "annotation": null}, {"text": "doped", "start": 1137, "end": 1142, "annotation": null}, {"text": "Cz", "start": 1143, "end": 1145, "annotation": "BASEMAT"}, {"text": "cells", "start": 1146, "end": 1151, "annotation": "BASEMAT"}, {"text": "gave", "start": 1152, "end": 1156, "annotation": null}, {"text": "1.5", "start": 1157, "end": 1160, "annotation": null}, {"text": "and", "start": 1161, "end": 1164, "annotation": null}, {"text": "0.7", "start": 1165, "end": 1168, "annotation": null}, {"text": "%", "start": 1168, "end": 1169, "annotation": null}, {"text": "higher", "start": 1170, "end": 1176, "annotation": null}, {"text": "stabilized", "start": 1177, "end": 1187, "annotation": null}, {"text": "efficiency", "start": 1188, "end": 1198, "annotation": null}, {"text": "relative", "start": 1199, "end": 1207, "annotation": null}, {"text": "to", "start": 1208, "end": 1210, "annotation": null}, {"text": "1", "start": 1211, "end": 1212, "annotation": null}, {"text": "and", "start": 1213, "end": 1216, "annotation": null}, {"text": "4-3", "start": 1217, "end": 1220, "annotation": null}, {"text": "\u03c9cm", "start": 1221, "end": 1224, "annotation": null}, {"text": "B", "start": 1225, "end": 1226, "annotation": "DOPANT"}, {"text": "-", "start": 1226, "end": 1227, "annotation": null}, {"text": "doped", "start": 1227, "end": 1232, "annotation": null}, {"text": "Cz", "start": 1233, "end": 1235, "annotation": "BASEMAT"}, {"text": "Si", "start": 1236, "end": 1238, "annotation": "BASEMAT"}, {"text": "cells", "start": 1239, "end": 1244, "annotation": "BASEMAT"}, {"text": ",", "start": 1244, "end": 1245, "annotation": null}, {"text": "respectively", "start": 1246, "end": 1258, "annotation": null}, {"text": ".", "start": 1258, "end": 1259, "annotation": null}]], "meta": {"doi": "10.1002/pip.659"}} {"text": "Ultra-fine Gd-doped ceria (GDC) powders were synthesized via co-precipitation using ammonium carbonate as the precipitant. The crystallite size of the resultant GDC powders was measured as \u223c33 nm. The dilatometry test of the powder compacts and the relative density measurement of sintered pellets with various sintering temperatures revealed the synthesized nano-GDC powders had superior sinterability compared to commercial GDC powders (e.g., 96% vs 78% in relative density at 1300 \u00b0C, respectively). Based on the total conductivity measurement of the co-precipitated GDC via electrochemical impedance spectroscopy, we found there was an optimum sintering temperature range (1300\u20131400 \u00b0C) to achieve both high density and high conductivity due to significant increase in grain boundary resistance at higher temperature (1500 \u00b0C). Moreover, the nano-sized and highly sinterable co-precipitated GDC effectively enhanced oxygen reduction reaction at the La0.6Sr0.4Co0.2Fe0.8O3\u2212\u03b4/GDC composite cathode due to increase in active reaction sites as well as enhanced phase connectivity in 3D-bulk at lower sintering temperatures.", "meta": {"doi": "10.1016/j.jallcom.2016.04.270"}, "_input_hash": 1271461077, "_task_hash": -1559932189, "tokens": [[{"text": "Ultra", "start": 0, "end": 5, "id": 0, "annotation": null}, {"text": "-", "start": 6, "end": 7, "id": 1, "annotation": null}, {"text": "fine", "start": 8, "end": 12, "id": 2, "annotation": null}, {"text": "Gd", "start": 13, "end": 15, "id": 3, "annotation": "DOPANT"}, {"text": "-", "start": 16, "end": 17, "id": 4, "annotation": null}, {"text": "doped", "start": 18, "end": 23, "id": 5, "annotation": null}, {"text": "ceria", "start": 24, "end": 29, "id": 6, "annotation": "BASEMAT"}, {"text": "(", "start": 30, "end": 31, "id": 7, "annotation": null}, {"text": "GDC", "start": 32, "end": 35, "id": 8, "annotation": null}, {"text": ")", "start": 36, "end": 37, "id": 9, "annotation": null}, {"text": "powders", "start": 38, "end": 45, "id": 10, "annotation": null}, {"text": "were", "start": 46, "end": 50, "id": 11, "annotation": null}, {"text": "synthesized", "start": 51, "end": 62, "id": 12, "annotation": null}, {"text": "via", "start": 63, "end": 66, "id": 13, "annotation": null}, {"text": "co", "start": 67, "end": 69, "id": 14, "annotation": null}, {"text": "-", "start": 70, "end": 71, "id": 15, "annotation": null}, {"text": "precipitation", "start": 72, "end": 85, "id": 16, "annotation": null}, {"text": "using", "start": 86, "end": 91, "id": 17, "annotation": null}, {"text": "ammonium", "start": 92, "end": 100, "id": 18, "annotation": null}, {"text": "carbonate", "start": 101, "end": 110, "id": 19, "annotation": null}, {"text": "as", "start": 111, "end": 113, "id": 20, "annotation": null}, {"text": "the", "start": 114, "end": 117, "id": 21, "annotation": null}, {"text": "precipitant", "start": 118, "end": 129, "id": 22, "annotation": null}, {"text": ".", "start": 130, "end": 131, "id": 23, "annotation": null}], [{"text": "The", "start": 132, "end": 135, "id": 24, "annotation": null}, {"text": "crystallite", "start": 136, "end": 147, "id": 25, "annotation": null}, {"text": "size", "start": 148, "end": 152, "id": 26, "annotation": null}, {"text": "of", "start": 153, "end": 155, "id": 27, "annotation": null}, {"text": "the", "start": 156, "end": 159, "id": 28, "annotation": null}, {"text": "resultant", "start": 160, "end": 169, "id": 29, "annotation": null}, {"text": "GDC", "start": 170, "end": 173, "id": 30, "annotation": null}, {"text": "powders", "start": 174, "end": 181, "id": 31, "annotation": null}, {"text": "was", "start": 182, "end": 185, "id": 32, "annotation": null}, {"text": "measured", "start": 186, "end": 194, "id": 33, "annotation": null}, {"text": "as", "start": 195, "end": 197, "id": 34, "annotation": null}, {"text": "\u223c33", "start": 198, "end": 201, "id": 35, "annotation": null}, {"text": "nm", "start": 202, "end": 204, "id": 36, "annotation": null}, {"text": ".", "start": 205, "end": 206, "id": 37, "annotation": null}], [{"text": "The", "start": 207, "end": 210, "id": 38, "annotation": null}, {"text": "dilatometry", "start": 211, "end": 222, "id": 39, "annotation": null}, {"text": "test", "start": 223, "end": 227, "id": 40, "annotation": null}, {"text": "of", "start": 228, "end": 230, "id": 41, "annotation": null}, {"text": "the", "start": 231, "end": 234, "id": 42, "annotation": null}, {"text": "powder", "start": 235, "end": 241, "id": 43, "annotation": null}, {"text": "compacts", "start": 242, "end": 250, "id": 44, "annotation": null}, {"text": "and", "start": 251, "end": 254, "id": 45, "annotation": null}, {"text": "the", "start": 255, "end": 258, "id": 46, "annotation": null}, {"text": "relative", "start": 259, "end": 267, "id": 47, "annotation": null}, {"text": "density", "start": 268, "end": 275, "id": 48, "annotation": null}, {"text": "measurement", "start": 276, "end": 287, "id": 49, "annotation": null}, {"text": "of", "start": 288, "end": 290, "id": 50, "annotation": null}, {"text": "sintered", "start": 291, "end": 299, "id": 51, "annotation": null}, {"text": "pellets", "start": 300, "end": 307, "id": 52, "annotation": null}, {"text": "with", "start": 308, "end": 312, "id": 53, "annotation": null}, {"text": "various", "start": 313, "end": 320, "id": 54, "annotation": null}, {"text": "sintering", "start": 321, "end": 330, "id": 55, "annotation": null}, {"text": "temperatures", "start": 331, "end": 343, "id": 56, "annotation": null}, {"text": "revealed", "start": 344, "end": 352, "id": 57, "annotation": null}, {"text": "the", "start": 353, "end": 356, "id": 58, "annotation": null}, {"text": "synthesized", "start": 357, "end": 368, "id": 59, "annotation": null}, {"text": "nano", "start": 369, "end": 373, "id": 60, "annotation": null}, {"text": "-", "start": 374, "end": 375, "id": 61, "annotation": null}, {"text": "GDC", "start": 376, "end": 379, "id": 62, "annotation": null}, {"text": "powders", "start": 380, "end": 387, "id": 63, "annotation": null}, {"text": "had", "start": 388, "end": 391, "id": 64, "annotation": null}, {"text": "superior", "start": 392, "end": 400, "id": 65, "annotation": null}, {"text": "sinterability", "start": 401, "end": 414, "id": 66, "annotation": null}, {"text": "compared", "start": 415, "end": 423, "id": 67, "annotation": null}, {"text": "to", "start": 424, "end": 426, "id": 68, "annotation": null}, {"text": "commercial", "start": 427, "end": 437, "id": 69, "annotation": null}, {"text": "GDC", "start": 438, "end": 441, "id": 70, "annotation": null}, {"text": "powders", "start": 442, "end": 449, "id": 71, "annotation": null}, {"text": "(", "start": 450, "end": 451, "id": 72, "annotation": null}, {"text": "e.g.", "start": 452, "end": 456, "id": 73, "annotation": null}, {"text": ",", "start": 457, "end": 458, "id": 74, "annotation": null}, {"text": "96", "start": 459, "end": 461, "id": 75, "annotation": null}, {"text": "%", "start": 462, "end": 463, "id": 76, "annotation": null}, {"text": "vs", "start": 464, "end": 466, "id": 77, "annotation": null}, {"text": "78", "start": 467, "end": 469, "id": 78, "annotation": null}, {"text": "%", "start": 470, "end": 471, "id": 79, "annotation": null}, {"text": "in", "start": 472, "end": 474, "id": 80, "annotation": null}, {"text": "relative", "start": 475, "end": 483, "id": 81, "annotation": null}, {"text": "density", "start": 484, "end": 491, "id": 82, "annotation": null}, {"text": "at", "start": 492, "end": 494, "id": 83, "annotation": null}, {"text": "1300", "start": 495, "end": 499, "id": 84, "annotation": null}, {"text": "\u00b0", "start": 500, "end": 501, "id": 85, "annotation": null}, {"text": "C", "start": 502, "end": 503, "id": 86, "annotation": null}, {"text": ",", "start": 504, "end": 505, "id": 87, "annotation": null}, {"text": "respectively", "start": 506, "end": 518, "id": 88, "annotation": null}, {"text": ")", "start": 519, "end": 520, "id": 89, "annotation": null}, {"text": ".", "start": 521, "end": 522, "id": 90, "annotation": null}], [{"text": "Based", "start": 523, "end": 528, "id": 91, "annotation": null}, {"text": "on", "start": 529, "end": 531, "id": 92, "annotation": null}, {"text": "the", "start": 532, "end": 535, "id": 93, "annotation": null}, {"text": "total", "start": 536, "end": 541, "id": 94, "annotation": null}, {"text": "conductivity", "start": 542, "end": 554, "id": 95, "annotation": null}, {"text": "measurement", "start": 555, "end": 566, "id": 96, "annotation": null}, {"text": "of", "start": 567, "end": 569, "id": 97, "annotation": null}, {"text": "the", "start": 570, "end": 573, "id": 98, "annotation": null}, {"text": "co", "start": 574, "end": 576, "id": 99, "annotation": null}, {"text": "-", "start": 577, "end": 578, "id": 100, "annotation": null}, {"text": "precipitated", "start": 579, "end": 591, "id": 101, "annotation": null}, {"text": "GDC", "start": 592, "end": 595, "id": 102, "annotation": null}, {"text": "via", "start": 596, "end": 599, "id": 103, "annotation": null}, {"text": "electrochemical", "start": 600, "end": 615, "id": 104, "annotation": null}, {"text": "impedance", "start": 616, "end": 625, "id": 105, "annotation": null}, {"text": "spectroscopy", "start": 626, "end": 638, "id": 106, "annotation": null}, {"text": ",", "start": 639, "end": 640, "id": 107, "annotation": null}, {"text": "we", "start": 641, "end": 643, "id": 108, "annotation": null}, {"text": "found", "start": 644, "end": 649, "id": 109, "annotation": null}, {"text": "there", "start": 650, "end": 655, "id": 110, "annotation": null}, {"text": "was", "start": 656, "end": 659, "id": 111, "annotation": null}, {"text": "an", "start": 660, "end": 662, "id": 112, "annotation": null}, {"text": "optimum", "start": 663, "end": 670, "id": 113, "annotation": null}, {"text": "sintering", "start": 671, "end": 680, "id": 114, "annotation": null}, {"text": "temperature", "start": 681, "end": 692, "id": 115, "annotation": null}, {"text": "range", "start": 693, "end": 698, "id": 116, "annotation": null}, {"text": "(", "start": 699, "end": 700, "id": 117, "annotation": null}, {"text": "1300\u20131400", "start": 701, "end": 710, "id": 118, "annotation": null}, {"text": "\u00b0", "start": 711, "end": 712, "id": 119, "annotation": null}, {"text": "C", "start": 713, "end": 714, "id": 120, "annotation": null}, {"text": ")", "start": 715, "end": 716, "id": 121, "annotation": null}, {"text": "to", "start": 717, "end": 719, "id": 122, "annotation": null}, {"text": "achieve", "start": 720, "end": 727, "id": 123, "annotation": null}, {"text": "both", "start": 728, "end": 732, "id": 124, "annotation": null}, {"text": "high", "start": 733, "end": 737, "id": 125, "annotation": null}, {"text": "density", "start": 738, "end": 745, "id": 126, "annotation": null}, {"text": "and", "start": 746, "end": 749, "id": 127, "annotation": null}, {"text": "high", "start": 750, "end": 754, "id": 128, "annotation": null}, {"text": "conductivity", "start": 755, "end": 767, "id": 129, "annotation": null}, {"text": "due", "start": 768, "end": 771, "id": 130, "annotation": null}, {"text": "to", "start": 772, "end": 774, "id": 131, "annotation": null}, {"text": "significant", "start": 775, "end": 786, "id": 132, "annotation": null}, {"text": "increase", "start": 787, "end": 795, "id": 133, "annotation": null}, {"text": "in", "start": 796, "end": 798, "id": 134, "annotation": null}, {"text": "grain", "start": 799, "end": 804, "id": 135, "annotation": null}, {"text": "boundary", "start": 805, "end": 813, "id": 136, "annotation": null}, {"text": "resistance", "start": 814, "end": 824, "id": 137, "annotation": null}, {"text": "at", "start": 825, "end": 827, "id": 138, "annotation": null}, {"text": "higher", "start": 828, "end": 834, "id": 139, "annotation": null}, {"text": "temperature", "start": 835, "end": 846, "id": 140, "annotation": null}, {"text": "(", "start": 847, "end": 848, "id": 141, "annotation": null}, {"text": "1500", "start": 849, "end": 853, "id": 142, "annotation": null}, {"text": "\u00b0", "start": 854, "end": 855, "id": 143, "annotation": null}, {"text": "C", "start": 856, "end": 857, "id": 144, "annotation": null}, {"text": ")", "start": 858, "end": 859, "id": 145, "annotation": null}, {"text": ".", "start": 860, "end": 861, "id": 146, "annotation": null}], [{"text": "Moreover", "start": 862, "end": 870, "id": 147, "annotation": null}, {"text": ",", "start": 871, "end": 872, "id": 148, "annotation": null}, {"text": "the", "start": 873, "end": 876, "id": 149, "annotation": null}, {"text": "nano", "start": 877, "end": 881, "id": 150, "annotation": null}, {"text": "-", "start": 882, "end": 883, "id": 151, "annotation": null}, {"text": "sized", "start": 884, "end": 889, "id": 152, "annotation": null}, {"text": "and", "start": 890, "end": 893, "id": 153, "annotation": null}, {"text": "highly", "start": 894, "end": 900, "id": 154, "annotation": null}, {"text": "sinterable", "start": 901, "end": 911, "id": 155, "annotation": null}, {"text": "co", "start": 912, "end": 914, "id": 156, "annotation": null}, {"text": "-", "start": 915, "end": 916, "id": 157, "annotation": null}, {"text": "precipitated", "start": 917, "end": 929, "id": 158, "annotation": null}, {"text": "GDC", "start": 930, "end": 933, "id": 159, "annotation": null}, {"text": "effectively", "start": 934, "end": 945, "id": 160, "annotation": null}, {"text": "enhanced", "start": 946, "end": 954, "id": 161, "annotation": null}, {"text": "oxygen", "start": 955, "end": 961, "id": 162, "annotation": null}, {"text": "reduction", "start": 962, "end": 971, "id": 163, "annotation": null}, {"text": "reaction", "start": 972, "end": 980, "id": 164, "annotation": null}, {"text": "at", "start": 981, "end": 983, "id": 165, "annotation": null}, {"text": "the", "start": 984, "end": 987, "id": 166, "annotation": null}, {"text": "La0.6Sr0.4Co0.2Fe0.8O3\u2212\u03b4", "start": 988, "end": 1012, "id": 167, "annotation": null}, {"text": "/", "start": 1013, "end": 1014, "id": 168, "annotation": null}, {"text": "GDC", "start": 1015, "end": 1018, "id": 169, "annotation": null}, {"text": "composite", "start": 1019, "end": 1028, "id": 170, "annotation": null}, {"text": "cathode", "start": 1029, "end": 1036, "id": 171, "annotation": null}, {"text": "due", "start": 1037, "end": 1040, "id": 172, "annotation": null}, {"text": "to", "start": 1041, "end": 1043, "id": 173, "annotation": null}, {"text": "increase", "start": 1044, "end": 1052, "id": 174, "annotation": null}, {"text": "in", "start": 1053, "end": 1055, "id": 175, "annotation": null}, {"text": "active", "start": 1056, "end": 1062, "id": 176, "annotation": null}, {"text": "reaction", "start": 1063, "end": 1071, "id": 177, "annotation": null}, {"text": "sites", "start": 1072, "end": 1077, "id": 178, "annotation": null}, {"text": "as", "start": 1078, "end": 1080, "id": 179, "annotation": null}, {"text": "well", "start": 1081, "end": 1085, "id": 180, "annotation": null}, {"text": "as", "start": 1086, "end": 1088, "id": 181, "annotation": null}, {"text": "enhanced", "start": 1089, "end": 1097, "id": 182, "annotation": null}, {"text": "phase", "start": 1098, "end": 1103, "id": 183, "annotation": null}, {"text": "connectivity", "start": 1104, "end": 1116, "id": 184, "annotation": null}, {"text": "in", "start": 1117, "end": 1119, "id": 185, "annotation": null}, {"text": "3D", "start": 1120, "end": 1122, "id": 186, "annotation": null}, {"text": "-", "start": 1123, "end": 1124, "id": 187, "annotation": null}, {"text": "bulk", "start": 1125, "end": 1129, "id": 188, "annotation": null}, {"text": "at", "start": 1130, "end": 1132, "id": 189, "annotation": null}, {"text": "lower", "start": 1133, "end": 1138, "id": 190, "annotation": null}, {"text": "sintering", "start": 1139, "end": 1148, "id": 191, "annotation": null}, {"text": "temperatures", "start": 1149, "end": 1161, "id": 192, "annotation": null}, {"text": ".", "start": 1162, "end": 1163, "id": 193, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The structural, magnetic, electronic and optical properties of the Zn0.5Cr0.5SZB, Zn0.5Cr0.5SW and Zn0.5Cr0.5SRS are studied by spin-polarized first-principles calculation. After optimization Zn0.5Cr0.5SZB system changes its original cubic structure of ZnSZB to a tetragonal structure, while Zn0.5Cr0.5SW and Zn0.5Cr0.5SRS still remain their original hexagonal structure of ZnSW and tetragonal structure of ZnSRS, respectively. The total moments of these Cr doped ZnS systems are mainly contributed by local magnetic moments of Cr2+ ion. Zn0.5Cr0.5SZB, Zn0.5Cr0.5SW and Zn0.5Cr0.5SRS are all half-metal with 100% spin polarization. The Zn0.5Cr0.5SW has the biggest static dielectric constant \u025b1(0) and refractive index n(0). The Zn0.5Cr0.5SZB, Zn0.5Cr0.5SW and Zn0.5Cr0.5SRS have tow absorption regions in the ranges of 0\u201327eV and 41\u201355eV, but the absorption width decreases for Zn0.5Cr0.5SW, Zn0.5Cr0.5SZB and Zn0.5Cr0.5SRS successively. The results will give a guide for design and application of the Zn0.5Cr0.5SZB, Zn0.5Cr0.5SW and Zn0.5Cr0.5SRS in spintronic devices and optical detectors.", "meta": {"doi": "10.1016/j.commatsci.2015.10.013"}, "_input_hash": 1959311412, "_task_hash": -1293654517, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "structural", "start": 4, "end": 14, "id": 1, "annotation": null}, {"text": ",", "start": 15, "end": 16, "id": 2, "annotation": null}, {"text": "magnetic", "start": 17, "end": 25, "id": 3, "annotation": null}, {"text": ",", "start": 26, "end": 27, "id": 4, "annotation": null}, {"text": "electronic", "start": 28, "end": 38, "id": 5, "annotation": null}, {"text": "and", "start": 39, "end": 42, "id": 6, "annotation": null}, {"text": "optical", "start": 43, "end": 50, "id": 7, "annotation": null}, {"text": "properties", "start": 51, "end": 61, "id": 8, "annotation": null}, {"text": "of", "start": 62, "end": 64, "id": 9, "annotation": null}, {"text": "the", "start": 65, "end": 68, "id": 10, "annotation": null}, {"text": "Zn0.5Cr0.5SZB", "start": 69, "end": 82, "id": 11, "annotation": null}, {"text": ",", "start": 83, "end": 84, "id": 12, "annotation": null}, {"text": "Zn0.5Cr0.5SW", "start": 85, "end": 97, "id": 13, "annotation": null}, {"text": "and", "start": 98, "end": 101, "id": 14, "annotation": null}, {"text": "Zn0.5Cr0.5SRS", "start": 102, "end": 115, "id": 15, "annotation": null}, {"text": "are", "start": 116, "end": 119, "id": 16, "annotation": null}, {"text": "studied", "start": 120, "end": 127, "id": 17, "annotation": null}, {"text": "by", "start": 128, "end": 130, "id": 18, "annotation": null}, {"text": "spin", "start": 131, "end": 135, "id": 19, "annotation": null}, {"text": "-", "start": 136, "end": 137, "id": 20, "annotation": null}, {"text": "polarized", "start": 138, "end": 147, "id": 21, "annotation": null}, {"text": "first", "start": 148, "end": 153, "id": 22, "annotation": null}, {"text": "-", "start": 154, "end": 155, "id": 23, "annotation": null}, {"text": "principles", "start": 156, "end": 166, "id": 24, "annotation": null}, {"text": "calculation", "start": 167, "end": 178, "id": 25, "annotation": null}, {"text": ".", "start": 179, "end": 180, "id": 26, "annotation": null}], [{"text": "After", "start": 181, "end": 186, "id": 27, "annotation": null}, {"text": "optimization", "start": 187, "end": 199, "id": 28, "annotation": null}, {"text": "Zn0.5Cr0.5SZB", "start": 200, "end": 213, "id": 29, "annotation": null}, {"text": "system", "start": 214, "end": 220, "id": 30, "annotation": null}, {"text": "changes", "start": 221, "end": 228, "id": 31, "annotation": null}, {"text": "its", "start": 229, "end": 232, "id": 32, "annotation": null}, {"text": "original", "start": 233, "end": 241, "id": 33, "annotation": null}, {"text": "cubic", "start": 242, "end": 247, "id": 34, "annotation": null}, {"text": "structure", "start": 248, "end": 257, "id": 35, "annotation": null}, {"text": "of", "start": 258, "end": 260, "id": 36, "annotation": null}, {"text": "ZnSZB", "start": 261, "end": 266, "id": 37, "annotation": null}, {"text": "to", "start": 267, "end": 269, "id": 38, "annotation": null}, {"text": "a", "start": 270, "end": 271, "id": 39, "annotation": null}, {"text": "tetragonal", "start": 272, "end": 282, "id": 40, "annotation": null}, {"text": "structure", "start": 283, "end": 292, "id": 41, "annotation": null}, {"text": ",", "start": 293, "end": 294, "id": 42, "annotation": null}, {"text": "while", "start": 295, "end": 300, "id": 43, "annotation": null}, {"text": "Zn0.5Cr0.5SW", "start": 301, "end": 313, "id": 44, "annotation": null}, {"text": "and", "start": 314, "end": 317, "id": 45, "annotation": null}, {"text": "Zn0.5Cr0.5SRS", "start": 318, "end": 331, "id": 46, "annotation": null}, {"text": "still", "start": 332, "end": 337, "id": 47, "annotation": null}, {"text": "remain", "start": 338, "end": 344, "id": 48, "annotation": null}, {"text": "their", "start": 345, "end": 350, "id": 49, "annotation": null}, {"text": "original", "start": 351, "end": 359, "id": 50, "annotation": null}, {"text": "hexagonal", "start": 360, "end": 369, "id": 51, "annotation": null}, {"text": "structure", "start": 370, "end": 379, "id": 52, "annotation": null}, {"text": "of", "start": 380, "end": 382, "id": 53, "annotation": null}, {"text": "ZnSW", "start": 383, "end": 387, "id": 54, "annotation": null}, {"text": "and", "start": 388, "end": 391, "id": 55, "annotation": null}, {"text": "tetragonal", "start": 392, "end": 402, "id": 56, "annotation": null}, {"text": "structure", "start": 403, "end": 412, "id": 57, "annotation": null}, {"text": "of", "start": 413, "end": 415, "id": 58, "annotation": null}, {"text": "ZnSRS", "start": 416, "end": 421, "id": 59, "annotation": null}, {"text": ",", "start": 422, "end": 423, "id": 60, "annotation": null}, {"text": "respectively", "start": 424, "end": 436, "id": 61, "annotation": null}, {"text": ".", "start": 437, "end": 438, "id": 62, "annotation": null}], [{"text": "The", "start": 439, "end": 442, "id": 63, "annotation": null}, {"text": "total", "start": 443, "end": 448, "id": 64, "annotation": null}, {"text": "moments", "start": 449, "end": 456, "id": 65, "annotation": null}, {"text": "of", "start": 457, "end": 459, "id": 66, "annotation": null}, {"text": "these", "start": 460, "end": 465, "id": 67, "annotation": null}, {"text": "Cr", "start": 466, "end": 468, "id": 68, "annotation": "DOPANT"}, {"text": "doped", "start": 469, "end": 474, "id": 69, "annotation": null}, {"text": "ZnS", "start": 475, "end": 478, "id": 70, "annotation": "BASEMAT"}, {"text": "systems", "start": 479, "end": 486, "id": 71, "annotation": null}, {"text": "are", "start": 487, "end": 490, "id": 72, "annotation": null}, {"text": "mainly", "start": 491, "end": 497, "id": 73, "annotation": null}, {"text": "contributed", "start": 498, "end": 509, "id": 74, "annotation": null}, {"text": "by", "start": 510, "end": 512, "id": 75, "annotation": null}, {"text": "local", "start": 513, "end": 518, "id": 76, "annotation": null}, {"text": "magnetic", "start": 519, "end": 527, "id": 77, "annotation": null}, {"text": "moments", "start": 528, "end": 535, "id": 78, "annotation": null}, {"text": "of", "start": 536, "end": 538, "id": 79, "annotation": null}, {"text": "Cr2", "start": 539, "end": 542, "id": 80, "annotation": "DOPANT"}, {"text": "+", "start": 543, "end": 544, "id": 81, "annotation": "DOPANT"}, {"text": "ion", "start": 545, "end": 548, "id": 82, "annotation": null}, {"text": ".", "start": 549, "end": 550, "id": 83, "annotation": null}], [{"text": "Zn0.5Cr0.5SZB", "start": 551, "end": 564, "id": 84, "annotation": null}, {"text": ",", "start": 565, "end": 566, "id": 85, "annotation": null}, {"text": "Zn0.5Cr0.5SW", "start": 567, "end": 579, "id": 86, "annotation": null}, {"text": "and", "start": 580, "end": 583, "id": 87, "annotation": null}, {"text": "Zn0.5Cr0.5SRS", "start": 584, "end": 597, "id": 88, "annotation": null}, {"text": "are", "start": 598, "end": 601, "id": 89, "annotation": null}, {"text": "all", "start": 602, "end": 605, "id": 90, "annotation": null}, {"text": "half", "start": 606, "end": 610, "id": 91, "annotation": null}, {"text": "-", "start": 611, "end": 612, "id": 92, "annotation": null}, {"text": "metal", "start": 613, "end": 618, "id": 93, "annotation": null}, {"text": "with", "start": 619, "end": 623, "id": 94, "annotation": null}, {"text": "100", "start": 624, "end": 627, "id": 95, "annotation": null}, {"text": "%", "start": 628, "end": 629, "id": 96, "annotation": null}, {"text": "spin", "start": 630, "end": 634, "id": 97, "annotation": null}, {"text": "polarization", "start": 635, "end": 647, "id": 98, "annotation": null}, {"text": ".", "start": 648, "end": 649, "id": 99, "annotation": null}], [{"text": "The", "start": 650, "end": 653, "id": 100, "annotation": null}, {"text": "Zn0.5Cr0.5SW", "start": 654, "end": 666, "id": 101, "annotation": null}, {"text": "has", "start": 667, "end": 670, "id": 102, "annotation": null}, {"text": "the", "start": 671, "end": 674, "id": 103, "annotation": null}, {"text": "biggest", "start": 675, "end": 682, "id": 104, "annotation": null}, {"text": "static", "start": 683, "end": 689, "id": 105, "annotation": null}, {"text": "dielectric", "start": 690, "end": 700, "id": 106, "annotation": null}, {"text": "constant", "start": 701, "end": 709, "id": 107, "annotation": null}, {"text": "\u025b1(0", "start": 710, "end": 714, "id": 108, "annotation": null}, {"text": ")", "start": 715, "end": 716, "id": 109, "annotation": null}, {"text": "and", "start": 717, "end": 720, "id": 110, "annotation": null}, {"text": "refractive", "start": 721, "end": 731, "id": 111, "annotation": null}, {"text": "index", "start": 732, "end": 737, "id": 112, "annotation": null}, {"text": "n(0", "start": 738, "end": 741, "id": 113, "annotation": null}, {"text": ")", "start": 742, "end": 743, "id": 114, "annotation": null}, {"text": ".", "start": 744, "end": 745, "id": 115, "annotation": null}], [{"text": "The", "start": 746, "end": 749, "id": 116, "annotation": null}, {"text": "Zn0.5Cr0.5SZB", "start": 750, "end": 763, "id": 117, "annotation": null}, {"text": ",", "start": 764, "end": 765, "id": 118, "annotation": null}, {"text": "Zn0.5Cr0.5SW", "start": 766, "end": 778, "id": 119, "annotation": null}, {"text": "and", "start": 779, "end": 782, "id": 120, "annotation": null}, {"text": "Zn0.5Cr0.5SRS", "start": 783, "end": 796, "id": 121, "annotation": null}, {"text": "have", "start": 797, "end": 801, "id": 122, "annotation": null}, {"text": "tow", "start": 802, "end": 805, "id": 123, "annotation": null}, {"text": "absorption", "start": 806, "end": 816, "id": 124, "annotation": null}, {"text": "regions", "start": 817, "end": 824, "id": 125, "annotation": null}, {"text": "in", "start": 825, "end": 827, "id": 126, "annotation": null}, {"text": "the", "start": 828, "end": 831, "id": 127, "annotation": null}, {"text": "ranges", "start": 832, "end": 838, "id": 128, "annotation": null}, {"text": "of", "start": 839, "end": 841, "id": 129, "annotation": null}, {"text": "0\u201327eV", "start": 842, "end": 848, "id": 130, "annotation": null}, {"text": "and", "start": 849, "end": 852, "id": 131, "annotation": null}, {"text": "41\u201355eV", "start": 853, "end": 860, "id": 132, "annotation": null}, {"text": ",", "start": 861, "end": 862, "id": 133, "annotation": null}, {"text": "but", "start": 863, "end": 866, "id": 134, "annotation": null}, {"text": "the", "start": 867, "end": 870, "id": 135, "annotation": null}, {"text": "absorption", "start": 871, "end": 881, "id": 136, "annotation": null}, {"text": "width", "start": 882, "end": 887, "id": 137, "annotation": null}, {"text": "decreases", "start": 888, "end": 897, "id": 138, "annotation": null}, {"text": "for", "start": 898, "end": 901, "id": 139, "annotation": null}, {"text": "Zn0.5Cr0.5SW", "start": 902, "end": 914, "id": 140, "annotation": null}, {"text": ",", "start": 915, "end": 916, "id": 141, "annotation": null}, {"text": "Zn0.5Cr0.5SZB", "start": 917, "end": 930, "id": 142, "annotation": null}, {"text": "and", "start": 931, "end": 934, "id": 143, "annotation": null}, {"text": "Zn0.5Cr0.5SRS", "start": 935, "end": 948, "id": 144, "annotation": null}, {"text": "successively", "start": 949, "end": 961, "id": 145, "annotation": null}, {"text": ".", "start": 962, "end": 963, "id": 146, "annotation": null}], [{"text": "The", "start": 964, "end": 967, "id": 147, "annotation": null}, {"text": "results", "start": 968, "end": 975, "id": 148, "annotation": null}, {"text": "will", "start": 976, "end": 980, "id": 149, "annotation": null}, {"text": "give", "start": 981, "end": 985, "id": 150, "annotation": null}, {"text": "a", "start": 986, "end": 987, "id": 151, "annotation": null}, {"text": "guide", "start": 988, "end": 993, "id": 152, "annotation": null}, {"text": "for", "start": 994, "end": 997, "id": 153, "annotation": null}, {"text": "design", "start": 998, "end": 1004, "id": 154, "annotation": null}, {"text": "and", "start": 1005, "end": 1008, "id": 155, "annotation": null}, {"text": "application", "start": 1009, "end": 1020, "id": 156, "annotation": null}, {"text": "of", "start": 1021, "end": 1023, "id": 157, "annotation": null}, {"text": "the", "start": 1024, "end": 1027, "id": 158, "annotation": null}, {"text": "Zn0.5Cr0.5SZB", "start": 1028, "end": 1041, "id": 159, "annotation": null}, {"text": ",", "start": 1042, "end": 1043, "id": 160, "annotation": null}, {"text": "Zn0.5Cr0.5SW", "start": 1044, "end": 1056, "id": 161, "annotation": null}, {"text": "and", "start": 1057, "end": 1060, "id": 162, "annotation": null}, {"text": "Zn0.5Cr0.5SRS", "start": 1061, "end": 1074, "id": 163, "annotation": null}, {"text": "in", "start": 1075, "end": 1077, "id": 164, "annotation": null}, {"text": "spintronic", "start": 1078, "end": 1088, "id": 165, "annotation": null}, {"text": "devices", "start": 1089, "end": 1096, "id": 166, "annotation": null}, {"text": "and", "start": 1097, "end": 1100, "id": 167, "annotation": null}, {"text": "optical", "start": 1101, "end": 1108, "id": 168, "annotation": null}, {"text": "detectors", "start": 1109, "end": 1118, "id": 169, "annotation": null}, {"text": ".", "start": 1119, "end": 1120, "id": 170, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "With an instrument consisting of four mercury probes, simple, rapid, and nondestructive four-point probe measurements can be done on freshly etched n-type silicon samples. Measurements on bulk material and on thin layers with a conventional and with a mercury four-point probe are compared. The ratio of two current-voltage configurations is used as a figure of merit of the instruments. The precision is found to be about 2% and the systematic deviation from theory, which is supposed to be satisfied by a conventional four-point probe, amounts to about 8% for thin layers and much less on bulk material. A number of aspects which may affect the performance are discussed. Because the instrument has no penetrating probes it is particularly useful for very thin heterotype epitaxial layers and for shallow, ion implanted samples. Experiments have also been done on polycrystalline silicon, metallic glass, and conductive plastic layers. \u00a9 1975, The Electrochemical Society, Inc. All rights reserved.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "With", "start": 0, "end": 4, "annotation": null}, {"text": "an", "start": 5, "end": 7, "annotation": null}, {"text": "instrument", "start": 8, "end": 18, "annotation": null}, {"text": "consisting", "start": 19, "end": 29, "annotation": null}, {"text": "of", "start": 30, "end": 32, "annotation": null}, {"text": "four", "start": 33, "end": 37, "annotation": null}, {"text": "mercury", "start": 38, "end": 45, "annotation": null}, {"text": "probes", "start": 46, "end": 52, "annotation": null}, {"text": ",", "start": 52, "end": 53, "annotation": null}, {"text": "simple", "start": 54, "end": 60, "annotation": null}, {"text": ",", "start": 60, "end": 61, "annotation": null}, {"text": "rapid", "start": 62, "end": 67, "annotation": null}, {"text": ",", "start": 67, "end": 68, "annotation": null}, {"text": "and", "start": 69, "end": 72, "annotation": null}, {"text": "nondestructive", "start": 73, "end": 87, "annotation": null}, {"text": "four", "start": 88, "end": 92, "annotation": null}, {"text": "-", "start": 92, "end": 93, "annotation": null}, {"text": "point", "start": 93, "end": 98, "annotation": null}, {"text": "probe", "start": 99, "end": 104, "annotation": null}, {"text": "measurements", "start": 105, "end": 117, "annotation": null}, {"text": "can", "start": 118, "end": 121, "annotation": null}, {"text": "be", "start": 122, "end": 124, "annotation": null}, {"text": "done", "start": 125, "end": 129, "annotation": null}, {"text": "on", "start": 130, "end": 132, "annotation": null}, {"text": "freshly", "start": 133, "end": 140, "annotation": null}, {"text": "etched", "start": 141, "end": 147, "annotation": null}, {"text": "n", "start": 148, "end": 149, "annotation": "DOPANT"}, {"text": "-", "start": 149, "end": 150, "annotation": "DOPANT"}, {"text": "type", "start": 150, "end": 154, "annotation": "DOPANT"}, {"text": "silicon", "start": 155, "end": 162, "annotation": "BASEMAT"}, {"text": "samples", "start": 163, "end": 170, "annotation": null}, {"text": ".", "start": 170, "end": 171, "annotation": null}], [{"text": "Measurements", "start": 172, "end": 184, "annotation": null}, {"text": "on", "start": 185, "end": 187, "annotation": null}, {"text": "bulk", "start": 188, "end": 192, "annotation": null}, {"text": "material", "start": 193, "end": 201, "annotation": null}, {"text": "and", "start": 202, "end": 205, "annotation": null}, {"text": "on", "start": 206, "end": 208, "annotation": null}, {"text": "thin", "start": 209, "end": 213, "annotation": null}, {"text": "layers", "start": 214, "end": 220, "annotation": null}, {"text": "with", "start": 221, "end": 225, "annotation": null}, {"text": "a", "start": 226, "end": 227, "annotation": null}, {"text": "conventional", "start": 228, "end": 240, "annotation": null}, {"text": "and", "start": 241, "end": 244, "annotation": null}, {"text": "with", "start": 245, "end": 249, "annotation": null}, {"text": "a", "start": 250, "end": 251, "annotation": null}, {"text": "mercury", "start": 252, "end": 259, "annotation": null}, {"text": "four", "start": 260, "end": 264, "annotation": null}, {"text": "-", "start": 264, "end": 265, "annotation": null}, {"text": "point", "start": 265, "end": 270, "annotation": null}, {"text": "probe", "start": 271, "end": 276, "annotation": null}, {"text": "are", "start": 277, "end": 280, "annotation": null}, {"text": "compared", "start": 281, "end": 289, "annotation": null}, {"text": ".", "start": 289, "end": 290, "annotation": null}], [{"text": "The", "start": 291, "end": 294, "annotation": null}, {"text": "ratio", "start": 295, "end": 300, "annotation": null}, {"text": "of", "start": 301, "end": 303, "annotation": null}, {"text": "two", "start": 304, "end": 307, "annotation": null}, {"text": "current", "start": 308, "end": 315, "annotation": null}, {"text": "-", "start": 315, "end": 316, "annotation": null}, {"text": "voltage", "start": 316, "end": 323, "annotation": null}, {"text": "configurations", "start": 324, "end": 338, "annotation": null}, {"text": "is", "start": 339, "end": 341, "annotation": null}, {"text": "used", "start": 342, "end": 346, "annotation": null}, {"text": "as", "start": 347, "end": 349, "annotation": null}, {"text": "a", "start": 350, "end": 351, "annotation": null}, {"text": "figure", "start": 352, "end": 358, "annotation": null}, {"text": "of", "start": 359, "end": 361, "annotation": null}, {"text": "merit", "start": 362, "end": 367, "annotation": null}, {"text": "of", "start": 368, "end": 370, "annotation": null}, {"text": "the", "start": 371, "end": 374, "annotation": null}, {"text": "instruments", "start": 375, "end": 386, "annotation": null}, {"text": ".", "start": 386, "end": 387, "annotation": null}], [{"text": "The", "start": 388, "end": 391, "annotation": null}, {"text": "precision", "start": 392, "end": 401, "annotation": null}, {"text": "is", "start": 402, "end": 404, "annotation": null}, {"text": "found", "start": 405, "end": 410, "annotation": null}, {"text": "to", "start": 411, "end": 413, "annotation": null}, {"text": "be", "start": 414, "end": 416, "annotation": null}, {"text": "about", "start": 417, "end": 422, "annotation": null}, {"text": "2", "start": 423, "end": 424, "annotation": null}, {"text": "%", "start": 424, "end": 425, "annotation": null}, {"text": "and", "start": 426, "end": 429, "annotation": null}, {"text": "the", "start": 430, "end": 433, "annotation": null}, {"text": "systematic", "start": 434, "end": 444, "annotation": null}, {"text": "deviation", "start": 445, "end": 454, "annotation": null}, {"text": "from", "start": 455, "end": 459, "annotation": null}, {"text": "theory", "start": 460, "end": 466, "annotation": null}, {"text": ",", "start": 466, "end": 467, "annotation": null}, {"text": "which", "start": 468, "end": 473, "annotation": null}, {"text": "is", "start": 474, "end": 476, "annotation": null}, {"text": "supposed", "start": 477, "end": 485, "annotation": null}, {"text": "to", "start": 486, "end": 488, "annotation": null}, {"text": "be", "start": 489, "end": 491, "annotation": null}, {"text": "satisfied", "start": 492, "end": 501, "annotation": null}, {"text": "by", "start": 502, "end": 504, "annotation": null}, {"text": "a", "start": 505, "end": 506, "annotation": null}, {"text": "conventional", "start": 507, "end": 519, "annotation": null}, {"text": "four", "start": 520, "end": 524, "annotation": null}, {"text": "-", "start": 524, "end": 525, "annotation": null}, {"text": "point", "start": 525, "end": 530, "annotation": null}, {"text": "probe", "start": 531, "end": 536, "annotation": null}, {"text": ",", "start": 536, "end": 537, "annotation": null}, {"text": "amounts", "start": 538, "end": 545, "annotation": null}, {"text": "to", "start": 546, "end": 548, "annotation": null}, {"text": "about", "start": 549, "end": 554, "annotation": null}, {"text": "8", "start": 555, "end": 556, "annotation": null}, {"text": "%", "start": 556, "end": 557, "annotation": null}, {"text": "for", "start": 558, "end": 561, "annotation": null}, {"text": "thin", "start": 562, "end": 566, "annotation": null}, {"text": "layers", "start": 567, "end": 573, "annotation": null}, {"text": "and", "start": 574, "end": 577, "annotation": null}, {"text": "much", "start": 578, "end": 582, "annotation": null}, {"text": "less", "start": 583, "end": 587, "annotation": null}, {"text": "on", "start": 588, "end": 590, "annotation": null}, {"text": "bulk", "start": 591, "end": 595, "annotation": null}, {"text": "material", "start": 596, "end": 604, "annotation": null}, {"text": ".", "start": 604, "end": 605, "annotation": null}], [{"text": "A", "start": 606, "end": 607, "annotation": null}, {"text": "number", "start": 608, "end": 614, "annotation": null}, {"text": "of", "start": 615, "end": 617, "annotation": null}, {"text": "aspects", "start": 618, "end": 625, "annotation": null}, {"text": "which", "start": 626, "end": 631, "annotation": null}, {"text": "may", "start": 632, "end": 635, "annotation": null}, {"text": "affect", "start": 636, "end": 642, "annotation": null}, {"text": "the", "start": 643, "end": 646, "annotation": null}, {"text": "performance", "start": 647, "end": 658, "annotation": null}, {"text": "are", "start": 659, "end": 662, "annotation": null}, {"text": "discussed", "start": 663, "end": 672, "annotation": null}, {"text": ".", "start": 672, "end": 673, "annotation": null}], [{"text": "Because", "start": 674, "end": 681, "annotation": null}, {"text": "the", "start": 682, "end": 685, "annotation": null}, {"text": "instrument", "start": 686, "end": 696, "annotation": null}, {"text": "has", "start": 697, "end": 700, "annotation": null}, {"text": "no", "start": 701, "end": 703, "annotation": null}, {"text": "penetrating", "start": 704, "end": 715, "annotation": null}, {"text": "probes", "start": 716, "end": 722, "annotation": null}, {"text": "it", "start": 723, "end": 725, "annotation": null}, {"text": "is", "start": 726, "end": 728, "annotation": null}, {"text": "particularly", "start": 729, "end": 741, "annotation": null}, {"text": "useful", "start": 742, "end": 748, "annotation": null}, {"text": "for", "start": 749, "end": 752, "annotation": null}, {"text": "very", "start": 753, "end": 757, "annotation": null}, {"text": "thin", "start": 758, "end": 762, "annotation": null}, {"text": "heterotype", "start": 763, "end": 773, "annotation": null}, {"text": "epitaxial", "start": 774, "end": 783, "annotation": null}, {"text": "layers", "start": 784, "end": 790, "annotation": null}, {"text": "and", "start": 791, "end": 794, "annotation": null}, {"text": "for", "start": 795, "end": 798, "annotation": null}, {"text": "shallow", "start": 799, "end": 806, "annotation": null}, {"text": ",", "start": 806, "end": 807, "annotation": null}, {"text": "ion", "start": 808, "end": 811, "annotation": null}, {"text": "implanted", "start": 812, "end": 821, "annotation": null}, {"text": "samples", "start": 822, "end": 829, "annotation": null}, {"text": ".", "start": 829, "end": 830, "annotation": null}], [{"text": "Experiments", "start": 831, "end": 842, "annotation": null}, {"text": "have", "start": 843, "end": 847, "annotation": null}, {"text": "also", "start": 848, "end": 852, "annotation": null}, {"text": "been", "start": 853, "end": 857, "annotation": null}, {"text": "done", "start": 858, "end": 862, "annotation": null}, {"text": "on", "start": 863, "end": 865, "annotation": null}, {"text": "polycrystalline", "start": 866, "end": 881, "annotation": null}, {"text": "silicon", "start": 882, "end": 889, "annotation": null}, {"text": ",", "start": 889, "end": 890, "annotation": null}, {"text": "metallic", "start": 891, "end": 899, "annotation": null}, {"text": "glass", "start": 900, "end": 905, "annotation": null}, {"text": ",", "start": 905, "end": 906, "annotation": null}, {"text": "and", "start": 907, "end": 910, "annotation": null}, {"text": "conductive", "start": 911, "end": 921, "annotation": null}, {"text": "plastic", "start": 922, "end": 929, "annotation": null}, {"text": "layers", "start": 930, "end": 936, "annotation": null}, {"text": ".", "start": 936, "end": 937, "annotation": null}], [{"text": "All", "start": 980, "end": 983, "annotation": null}, {"text": "rights", "start": 984, "end": 990, "annotation": null}, {"text": "reserved", "start": 991, "end": 999, "annotation": null}, {"text": ".", "start": 999, "end": 1000, "annotation": null}]]} +{"remark": "doping_annt1", "text": "With an instrument consisting of four mercury probes, simple, rapid, and nondestructive four-point probe measurements can be done on freshly etched n-type silicon samples. Measurements on bulk material and on thin layers with a conventional and with a mercury four-point probe are compared. The ratio of two current-voltage configurations is used as a figure of merit of the instruments. The precision is found to be about 2% and the systematic deviation from theory, which is supposed to be satisfied by a conventional four-point probe, amounts to about 8% for thin layers and much less on bulk material. A number of aspects which may affect the performance are discussed. Because the instrument has no penetrating probes it is particularly useful for very thin heterotype epitaxial layers and for shallow, ion implanted samples. Experiments have also been done on polycrystalline silicon, metallic glass, and conductive plastic layers. \u00a9 1975, The Electrochemical Society, Inc. All rights reserved.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "With", "start": 0, "end": 4, "annotation": null}, {"text": "an", "start": 5, "end": 7, "annotation": null}, {"text": "instrument", "start": 8, "end": 18, "annotation": null}, {"text": "consisting", "start": 19, "end": 29, "annotation": null}, {"text": "of", "start": 30, "end": 32, "annotation": null}, {"text": "four", "start": 33, "end": 37, "annotation": null}, {"text": "mercury", "start": 38, "end": 45, "annotation": null}, {"text": "probes", "start": 46, "end": 52, "annotation": null}, {"text": ",", "start": 52, "end": 53, "annotation": null}, {"text": "simple", "start": 54, "end": 60, "annotation": null}, {"text": ",", "start": 60, "end": 61, "annotation": null}, {"text": "rapid", "start": 62, "end": 67, "annotation": null}, {"text": ",", "start": 67, "end": 68, "annotation": null}, {"text": "and", "start": 69, "end": 72, "annotation": null}, {"text": "nondestructive", "start": 73, "end": 87, "annotation": null}, {"text": "four", "start": 88, "end": 92, "annotation": null}, {"text": "-", "start": 92, "end": 93, "annotation": null}, {"text": "point", "start": 93, "end": 98, "annotation": null}, {"text": "probe", "start": 99, "end": 104, "annotation": null}, {"text": "measurements", "start": 105, "end": 117, "annotation": null}, {"text": "can", "start": 118, "end": 121, "annotation": null}, {"text": "be", "start": 122, "end": 124, "annotation": null}, {"text": "done", "start": 125, "end": 129, "annotation": null}, {"text": "on", "start": 130, "end": 132, "annotation": null}, {"text": "freshly", "start": 133, "end": 140, "annotation": null}, {"text": "etched", "start": 141, "end": 147, "annotation": null}, {"text": "n", "start": 148, "end": 149, "annotation": "DOPANT"}, {"text": "-", "start": 149, "end": 150, "annotation": "DOPANT"}, {"text": "type", "start": 150, "end": 154, "annotation": "DOPANT"}, {"text": "silicon", "start": 155, "end": 162, "annotation": "BASEMAT"}, {"text": "samples", "start": 163, "end": 170, "annotation": null}, {"text": ".", "start": 170, "end": 171, "annotation": null}], [{"text": "Measurements", "start": 172, "end": 184, "annotation": null}, {"text": "on", "start": 185, "end": 187, "annotation": null}, {"text": "bulk", "start": 188, "end": 192, "annotation": null}, {"text": "material", "start": 193, "end": 201, "annotation": null}, {"text": "and", "start": 202, "end": 205, "annotation": null}, {"text": "on", "start": 206, "end": 208, "annotation": null}, {"text": "thin", "start": 209, "end": 213, "annotation": null}, {"text": "layers", "start": 214, "end": 220, "annotation": null}, {"text": "with", "start": 221, "end": 225, "annotation": null}, {"text": "a", "start": 226, "end": 227, "annotation": null}, {"text": "conventional", "start": 228, "end": 240, "annotation": null}, {"text": "and", "start": 241, "end": 244, "annotation": null}, {"text": "with", "start": 245, "end": 249, "annotation": null}, {"text": "a", "start": 250, "end": 251, "annotation": null}, {"text": "mercury", "start": 252, "end": 259, "annotation": null}, {"text": "four", "start": 260, "end": 264, "annotation": null}, {"text": "-", "start": 264, "end": 265, "annotation": null}, {"text": "point", "start": 265, "end": 270, "annotation": null}, {"text": "probe", "start": 271, "end": 276, "annotation": null}, {"text": "are", "start": 277, "end": 280, "annotation": null}, {"text": "compared", "start": 281, "end": 289, "annotation": null}, {"text": ".", "start": 289, "end": 290, "annotation": null}], [{"text": "The", "start": 291, "end": 294, "annotation": null}, {"text": "ratio", "start": 295, "end": 300, "annotation": null}, {"text": "of", "start": 301, "end": 303, "annotation": null}, {"text": "two", "start": 304, "end": 307, "annotation": null}, {"text": "current", "start": 308, "end": 315, "annotation": null}, {"text": "-", "start": 315, "end": 316, "annotation": null}, {"text": "voltage", "start": 316, "end": 323, "annotation": null}, {"text": "configurations", "start": 324, "end": 338, "annotation": null}, {"text": "is", "start": 339, "end": 341, "annotation": null}, {"text": "used", "start": 342, "end": 346, "annotation": null}, {"text": "as", "start": 347, "end": 349, "annotation": null}, {"text": "a", "start": 350, "end": 351, "annotation": null}, {"text": "figure", "start": 352, "end": 358, "annotation": null}, {"text": "of", "start": 359, "end": 361, "annotation": null}, {"text": "merit", "start": 362, "end": 367, "annotation": null}, {"text": "of", "start": 368, "end": 370, "annotation": null}, {"text": "the", "start": 371, "end": 374, "annotation": null}, {"text": "instruments", "start": 375, "end": 386, "annotation": null}, {"text": ".", "start": 386, "end": 387, "annotation": null}], [{"text": "The", "start": 388, "end": 391, "annotation": null}, {"text": "precision", "start": 392, "end": 401, "annotation": null}, {"text": "is", "start": 402, "end": 404, "annotation": null}, {"text": "found", "start": 405, "end": 410, "annotation": null}, {"text": "to", "start": 411, "end": 413, "annotation": null}, {"text": "be", "start": 414, "end": 416, "annotation": null}, {"text": "about", "start": 417, "end": 422, "annotation": null}, {"text": "2", "start": 423, "end": 424, "annotation": null}, {"text": "%", "start": 424, "end": 425, "annotation": null}, {"text": "and", "start": 426, "end": 429, "annotation": null}, {"text": "the", "start": 430, "end": 433, "annotation": null}, {"text": "systematic", "start": 434, "end": 444, "annotation": null}, {"text": "deviation", "start": 445, "end": 454, "annotation": null}, {"text": "from", "start": 455, "end": 459, "annotation": null}, {"text": "theory", "start": 460, "end": 466, "annotation": null}, {"text": ",", "start": 466, "end": 467, "annotation": null}, {"text": "which", "start": 468, "end": 473, "annotation": null}, {"text": "is", "start": 474, "end": 476, "annotation": null}, {"text": "supposed", "start": 477, "end": 485, "annotation": null}, {"text": "to", "start": 486, "end": 488, "annotation": null}, {"text": "be", "start": 489, "end": 491, "annotation": null}, {"text": "satisfied", "start": 492, "end": 501, "annotation": null}, {"text": "by", "start": 502, "end": 504, "annotation": null}, {"text": "a", "start": 505, "end": 506, "annotation": null}, {"text": "conventional", "start": 507, "end": 519, "annotation": null}, {"text": "four", "start": 520, "end": 524, "annotation": null}, {"text": "-", "start": 524, "end": 525, "annotation": null}, {"text": "point", "start": 525, "end": 530, "annotation": null}, {"text": "probe", "start": 531, "end": 536, "annotation": null}, {"text": ",", "start": 536, "end": 537, "annotation": null}, {"text": "amounts", "start": 538, "end": 545, "annotation": null}, {"text": "to", "start": 546, "end": 548, "annotation": null}, {"text": "about", "start": 549, "end": 554, "annotation": null}, {"text": "8", "start": 555, "end": 556, "annotation": null}, {"text": "%", "start": 556, "end": 557, "annotation": null}, {"text": "for", "start": 558, "end": 561, "annotation": null}, {"text": "thin", "start": 562, "end": 566, "annotation": null}, {"text": "layers", "start": 567, "end": 573, "annotation": null}, {"text": "and", "start": 574, "end": 577, "annotation": null}, {"text": "much", "start": 578, "end": 582, "annotation": null}, {"text": "less", "start": 583, "end": 587, "annotation": null}, {"text": "on", "start": 588, "end": 590, "annotation": null}, {"text": "bulk", "start": 591, "end": 595, "annotation": null}, {"text": "material", "start": 596, "end": 604, "annotation": null}, {"text": ".", "start": 604, "end": 605, "annotation": null}], [{"text": "A", "start": 606, "end": 607, "annotation": null}, {"text": "number", "start": 608, "end": 614, "annotation": null}, {"text": "of", "start": 615, "end": 617, "annotation": null}, {"text": "aspects", "start": 618, "end": 625, "annotation": null}, {"text": "which", "start": 626, "end": 631, "annotation": null}, {"text": "may", "start": 632, "end": 635, "annotation": null}, {"text": "affect", "start": 636, "end": 642, "annotation": null}, {"text": "the", "start": 643, "end": 646, "annotation": null}, {"text": "performance", "start": 647, "end": 658, "annotation": null}, {"text": "are", "start": 659, "end": 662, "annotation": null}, {"text": "discussed", "start": 663, "end": 672, "annotation": null}, {"text": ".", "start": 672, "end": 673, "annotation": null}], [{"text": "Because", "start": 674, "end": 681, "annotation": null}, {"text": "the", "start": 682, "end": 685, "annotation": null}, {"text": "instrument", "start": 686, "end": 696, "annotation": null}, {"text": "has", "start": 697, "end": 700, "annotation": null}, {"text": "no", "start": 701, "end": 703, "annotation": null}, {"text": "penetrating", "start": 704, "end": 715, "annotation": null}, {"text": "probes", "start": 716, "end": 722, "annotation": null}, {"text": "it", "start": 723, "end": 725, "annotation": null}, {"text": "is", "start": 726, "end": 728, "annotation": null}, {"text": "particularly", "start": 729, "end": 741, "annotation": null}, {"text": "useful", "start": 742, "end": 748, "annotation": null}, {"text": "for", "start": 749, "end": 752, "annotation": null}, {"text": "very", "start": 753, "end": 757, "annotation": null}, {"text": "thin", "start": 758, "end": 762, "annotation": null}, {"text": "heterotype", "start": 763, "end": 773, "annotation": null}, {"text": "epitaxial", "start": 774, "end": 783, "annotation": null}, {"text": "layers", "start": 784, "end": 790, "annotation": null}, {"text": "and", "start": 791, "end": 794, "annotation": null}, {"text": "for", "start": 795, "end": 798, "annotation": null}, {"text": "shallow", "start": 799, "end": 806, "annotation": null}, {"text": ",", "start": 806, "end": 807, "annotation": null}, {"text": "ion", "start": 808, "end": 811, "annotation": null}, {"text": "implanted", "start": 812, "end": 821, "annotation": null}, {"text": "samples", "start": 822, "end": 829, "annotation": null}, {"text": ".", "start": 829, "end": 830, "annotation": null}], [{"text": "Experiments", "start": 831, "end": 842, "annotation": null}, {"text": "have", "start": 843, "end": 847, "annotation": null}, {"text": "also", "start": 848, "end": 852, "annotation": null}, {"text": "been", "start": 853, "end": 857, "annotation": null}, {"text": "done", "start": 858, "end": 862, "annotation": null}, {"text": "on", "start": 863, "end": 865, "annotation": null}, {"text": "polycrystalline", "start": 866, "end": 881, "annotation": null}, {"text": "silicon", "start": 882, "end": 889, "annotation": null}, {"text": ",", "start": 889, "end": 890, "annotation": null}, {"text": "metallic", "start": 891, "end": 899, "annotation": null}, {"text": "glass", "start": 900, "end": 905, "annotation": null}, {"text": ",", "start": 905, "end": 906, "annotation": null}, {"text": "and", "start": 907, "end": 910, "annotation": null}, {"text": "conductive", "start": 911, "end": 921, "annotation": null}, {"text": "plastic", "start": 922, "end": 929, "annotation": null}, {"text": "layers", "start": 930, "end": 936, "annotation": null}, {"text": ".", "start": 936, "end": 937, "annotation": null}], [{"text": "All", "start": 980, "end": 983, "annotation": null}, {"text": "rights", "start": 984, "end": 990, "annotation": null}, {"text": "reserved", "start": 991, "end": 999, "annotation": null}, {"text": ".", "start": 999, "end": 1000, "annotation": null}]], "meta": {"doi": "10.1149/1.2134141"}} {"text": "Pt counter electrodes (CEs) with different platinum loading have been prepared using chemical reduced method on flexible indium-doped tin oxide coated polyethylene naphthalate (ITO-PEN) for dye-sensitized solar cells (DSSCs). H2PtCl6\u00b76H2O terpineol solutions were screen printed on the transparent ITO-PEN substrates. After drying, H2PtCl6 was reduced by treating it in NaBH4 solution followed by the hydrothermal treatment at 100\u00b0C. The obtained Pt CEs with different Pt-loading (2.4\u20137.7\u03bcg/cm2) were characterized by SEM, XPS, electrochemical impedance and transmission spectrum measurement. The Pt CEs show high catalytic activity, low charge transfer resistance (0.26\u20131.38\u03a9cm2) and good light transmittance (about 70% at 400\u2013800nm). The light-to-electricity conversion efficiency of the flexible DSSC fabricated with the prepared Pt CE and the TiO2 photoanode prepared on Ti substrate by screen printing technique attains 5.41% under the simulated AM 1.5 sunlight, which is almost same as that based on the thermal decomposited Pt CE on FTO-glass. Compared with other methods to prepare Pt CEs, chemical reduced method is simple and suitable for flexible polymer substrates and the large scale preparation of DSSCs.", "meta": {"doi": "10.1016/j.electacta.2010.01.108"}, "_input_hash": 1798947276, "_task_hash": 230311494, "tokens": [[{"text": "Pt", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "counter", "start": 3, "end": 10, "id": 1, "annotation": null}, {"text": "electrodes", "start": 11, "end": 21, "id": 2, "annotation": null}, {"text": "(", "start": 22, "end": 23, "id": 3, "annotation": null}, {"text": "CEs", "start": 24, "end": 27, "id": 4, "annotation": null}, {"text": ")", "start": 28, "end": 29, "id": 5, "annotation": null}, {"text": "with", "start": 30, "end": 34, "id": 6, "annotation": null}, {"text": "different", "start": 35, "end": 44, "id": 7, "annotation": null}, {"text": "platinum", "start": 45, "end": 53, "id": 8, "annotation": null}, {"text": "loading", "start": 54, "end": 61, "id": 9, "annotation": null}, {"text": "have", "start": 62, "end": 66, "id": 10, "annotation": null}, {"text": "been", "start": 67, "end": 71, "id": 11, "annotation": null}, {"text": "prepared", "start": 72, "end": 80, "id": 12, "annotation": null}, {"text": "using", "start": 81, "end": 86, "id": 13, "annotation": null}, {"text": "chemical", "start": 87, "end": 95, "id": 14, "annotation": null}, {"text": "reduced", "start": 96, "end": 103, "id": 15, "annotation": null}, {"text": "method", "start": 104, "end": 110, "id": 16, "annotation": null}, {"text": "on", "start": 111, "end": 113, "id": 17, "annotation": null}, {"text": "flexible", "start": 114, "end": 122, "id": 18, "annotation": null}, {"text": "indium", "start": 123, "end": 129, "id": 19, "annotation": "DOPANT"}, {"text": "-", "start": 130, "end": 131, "id": 20, "annotation": null}, {"text": "doped", "start": 132, "end": 137, "id": 21, "annotation": null}, {"text": "tin", "start": 138, "end": 141, "id": 22, "annotation": "BASEMAT"}, {"text": "oxide", "start": 142, "end": 147, "id": 23, "annotation": "BASEMAT"}, {"text": "coated", "start": 148, "end": 154, "id": 24, "annotation": null}, {"text": "polyethylene", "start": 155, "end": 167, "id": 25, "annotation": null}, {"text": "naphthalate", "start": 168, "end": 179, "id": 26, "annotation": null}, {"text": "(", "start": 180, "end": 181, "id": 27, "annotation": null}, {"text": "ITO", "start": 182, "end": 185, "id": 28, "annotation": null}, {"text": "-", "start": 186, "end": 187, "id": 29, "annotation": null}, {"text": "PEN", "start": 188, "end": 191, "id": 30, "annotation": null}, {"text": ")", "start": 192, "end": 193, "id": 31, "annotation": null}, {"text": "for", "start": 194, "end": 197, "id": 32, "annotation": null}, {"text": "dye", "start": 198, "end": 201, "id": 33, "annotation": null}, {"text": "-", "start": 202, "end": 203, "id": 34, "annotation": null}, {"text": "sensitized", "start": 204, "end": 214, "id": 35, "annotation": null}, {"text": "solar", "start": 215, "end": 220, "id": 36, "annotation": null}, {"text": "cells", "start": 221, "end": 226, "id": 37, "annotation": null}, {"text": "(", "start": 227, "end": 228, "id": 38, "annotation": null}, {"text": "DSSCs", "start": 229, "end": 234, "id": 39, "annotation": null}, {"text": ")", "start": 235, "end": 236, "id": 40, "annotation": null}, {"text": ".", "start": 237, "end": 238, "id": 41, "annotation": null}], [{"text": "H2PtCl6\u00b76H2O", "start": 239, "end": 251, "id": 42, "annotation": null}, {"text": "terpineol", "start": 252, "end": 261, "id": 43, "annotation": null}, {"text": "solutions", "start": 262, "end": 271, "id": 44, "annotation": null}, {"text": "were", "start": 272, "end": 276, "id": 45, "annotation": null}, {"text": "screen", "start": 277, "end": 283, "id": 46, "annotation": null}, {"text": "printed", "start": 284, "end": 291, "id": 47, "annotation": null}, {"text": "on", "start": 292, "end": 294, "id": 48, "annotation": null}, {"text": "the", "start": 295, "end": 298, "id": 49, "annotation": null}, {"text": "transparent", "start": 299, "end": 310, "id": 50, "annotation": null}, {"text": "ITO", "start": 311, "end": 314, "id": 51, "annotation": null}, {"text": "-", "start": 315, "end": 316, "id": 52, "annotation": null}, {"text": "PEN", "start": 317, "end": 320, "id": 53, "annotation": null}, {"text": "substrates", "start": 321, "end": 331, "id": 54, "annotation": null}, {"text": ".", "start": 332, "end": 333, "id": 55, "annotation": null}], [{"text": "After", "start": 334, "end": 339, "id": 56, "annotation": null}, {"text": "drying", "start": 340, "end": 346, "id": 57, "annotation": null}, {"text": ",", "start": 347, "end": 348, "id": 58, "annotation": null}, {"text": "H2PtCl6", "start": 349, "end": 356, "id": 59, "annotation": null}, {"text": "was", "start": 357, "end": 360, "id": 60, "annotation": null}, {"text": "reduced", "start": 361, "end": 368, "id": 61, "annotation": null}, {"text": "by", "start": 369, "end": 371, "id": 62, "annotation": null}, {"text": "treating", "start": 372, "end": 380, "id": 63, "annotation": null}, {"text": "it", "start": 381, "end": 383, "id": 64, "annotation": null}, {"text": "in", "start": 384, "end": 386, "id": 65, "annotation": null}, {"text": "NaBH4", "start": 387, "end": 392, "id": 66, "annotation": null}, {"text": "solution", "start": 393, "end": 401, "id": 67, "annotation": null}, {"text": "followed", "start": 402, "end": 410, "id": 68, "annotation": null}, {"text": "by", "start": 411, "end": 413, "id": 69, "annotation": null}, {"text": "the", "start": 414, "end": 417, "id": 70, "annotation": null}, {"text": "hydrothermal", "start": 418, "end": 430, "id": 71, "annotation": null}, {"text": "treatment", "start": 431, "end": 440, "id": 72, "annotation": null}, {"text": "at", "start": 441, "end": 443, "id": 73, "annotation": null}, {"text": "100", "start": 444, "end": 447, "id": 74, "annotation": null}, {"text": "\u00b0", "start": 448, "end": 449, "id": 75, "annotation": null}, {"text": "C", "start": 450, "end": 451, "id": 76, "annotation": null}, {"text": ".", "start": 452, "end": 453, "id": 77, "annotation": null}], [{"text": "The", "start": 454, "end": 457, "id": 78, "annotation": null}, {"text": "obtained", "start": 458, "end": 466, "id": 79, "annotation": null}, {"text": "Pt", "start": 467, "end": 469, "id": 80, "annotation": null}, {"text": "CEs", "start": 470, "end": 473, "id": 81, "annotation": null}, {"text": "with", "start": 474, "end": 478, "id": 82, "annotation": null}, {"text": "different", "start": 479, "end": 488, "id": 83, "annotation": null}, {"text": "Pt", "start": 489, "end": 491, "id": 84, "annotation": null}, {"text": "-", "start": 492, "end": 493, "id": 85, "annotation": null}, {"text": "loading", "start": 494, "end": 501, "id": 86, "annotation": null}, {"text": "(", "start": 502, "end": 503, "id": 87, "annotation": null}, {"text": "2.4\u20137.7\u03bcg", "start": 504, "end": 513, "id": 88, "annotation": null}, {"text": "/", "start": 514, "end": 515, "id": 89, "annotation": null}, {"text": "cm2", "start": 516, "end": 519, "id": 90, "annotation": null}, {"text": ")", "start": 520, "end": 521, "id": 91, "annotation": null}, {"text": "were", "start": 522, "end": 526, "id": 92, "annotation": null}, {"text": "characterized", "start": 527, "end": 540, "id": 93, "annotation": null}, {"text": "by", "start": 541, "end": 543, "id": 94, "annotation": null}, {"text": "SEM", "start": 544, "end": 547, "id": 95, "annotation": null}, {"text": ",", "start": 548, "end": 549, "id": 96, "annotation": null}, {"text": "XPS", "start": 550, "end": 553, "id": 97, "annotation": null}, {"text": ",", "start": 554, "end": 555, "id": 98, "annotation": null}, {"text": "electrochemical", "start": 556, "end": 571, "id": 99, "annotation": null}, {"text": "impedance", "start": 572, "end": 581, "id": 100, "annotation": null}, {"text": "and", "start": 582, "end": 585, "id": 101, "annotation": null}, {"text": "transmission", "start": 586, "end": 598, "id": 102, "annotation": null}, {"text": "spectrum", "start": 599, "end": 607, "id": 103, "annotation": null}, {"text": "measurement", "start": 608, "end": 619, "id": 104, "annotation": null}, {"text": ".", "start": 620, "end": 621, "id": 105, "annotation": null}], [{"text": "The", "start": 622, "end": 625, "id": 106, "annotation": null}, {"text": "Pt", "start": 626, "end": 628, "id": 107, "annotation": null}, {"text": "CEs", "start": 629, "end": 632, "id": 108, "annotation": null}, {"text": "show", "start": 633, "end": 637, "id": 109, "annotation": null}, {"text": "high", "start": 638, "end": 642, "id": 110, "annotation": null}, {"text": "catalytic", "start": 643, "end": 652, "id": 111, "annotation": null}, {"text": "activity", "start": 653, "end": 661, "id": 112, "annotation": null}, {"text": ",", "start": 662, "end": 663, "id": 113, "annotation": null}, {"text": "low", "start": 664, "end": 667, "id": 114, "annotation": null}, {"text": "charge", "start": 668, "end": 674, "id": 115, "annotation": null}, {"text": "transfer", "start": 675, "end": 683, "id": 116, "annotation": null}, {"text": "resistance", "start": 684, "end": 694, "id": 117, "annotation": null}, {"text": "(", "start": 695, "end": 696, "id": 118, "annotation": null}, {"text": "0.26\u20131.38\u03a9cm2", "start": 697, "end": 710, "id": 119, "annotation": null}, {"text": ")", "start": 711, "end": 712, "id": 120, "annotation": null}, {"text": "and", "start": 713, "end": 716, "id": 121, "annotation": null}, {"text": "good", "start": 717, "end": 721, "id": 122, "annotation": null}, {"text": "light", "start": 722, "end": 727, "id": 123, "annotation": null}, {"text": "transmittance", "start": 728, "end": 741, "id": 124, "annotation": null}, {"text": "(", "start": 742, "end": 743, "id": 125, "annotation": null}, {"text": "about", "start": 744, "end": 749, "id": 126, "annotation": null}, {"text": "70", "start": 750, "end": 752, "id": 127, "annotation": null}, {"text": "%", "start": 753, "end": 754, "id": 128, "annotation": null}, {"text": "at", "start": 755, "end": 757, "id": 129, "annotation": null}, {"text": "400\u2013800", "start": 758, "end": 765, "id": 130, "annotation": null}, {"text": "nm", "start": 766, "end": 768, "id": 131, "annotation": null}, {"text": ")", "start": 769, "end": 770, "id": 132, "annotation": null}, {"text": ".", "start": 771, "end": 772, "id": 133, "annotation": null}], [{"text": "The", "start": 773, "end": 776, "id": 134, "annotation": null}, {"text": "light", "start": 777, "end": 782, "id": 135, "annotation": null}, {"text": "-", "start": 783, "end": 784, "id": 136, "annotation": null}, {"text": "to", "start": 785, "end": 787, "id": 137, "annotation": null}, {"text": "-", "start": 788, "end": 789, "id": 138, "annotation": null}, {"text": "electricity", "start": 790, "end": 801, "id": 139, "annotation": null}, {"text": "conversion", "start": 802, "end": 812, "id": 140, "annotation": null}, {"text": "efficiency", "start": 813, "end": 823, "id": 141, "annotation": null}, {"text": "of", "start": 824, "end": 826, "id": 142, "annotation": null}, {"text": "the", "start": 827, "end": 830, "id": 143, "annotation": null}, {"text": "flexible", "start": 831, "end": 839, "id": 144, "annotation": null}, {"text": "DSSC", "start": 840, "end": 844, "id": 145, "annotation": null}, {"text": "fabricated", "start": 845, "end": 855, "id": 146, "annotation": null}, {"text": "with", "start": 856, "end": 860, "id": 147, "annotation": null}, {"text": "the", "start": 861, "end": 864, "id": 148, "annotation": null}, {"text": "prepared", "start": 865, "end": 873, "id": 149, "annotation": null}, {"text": "Pt", "start": 874, "end": 876, "id": 150, "annotation": null}, {"text": "CE", "start": 877, "end": 879, "id": 151, "annotation": null}, {"text": "and", "start": 880, "end": 883, "id": 152, "annotation": null}, {"text": "the", "start": 884, "end": 887, "id": 153, "annotation": null}, {"text": "TiO2", "start": 888, "end": 892, "id": 154, "annotation": null}, {"text": "photoanode", "start": 893, "end": 903, "id": 155, "annotation": null}, {"text": "prepared", "start": 904, "end": 912, "id": 156, "annotation": null}, {"text": "on", "start": 913, "end": 915, "id": 157, "annotation": null}, {"text": "Ti", "start": 916, "end": 918, "id": 158, "annotation": null}, {"text": "substrate", "start": 919, "end": 928, "id": 159, "annotation": null}, {"text": "by", "start": 929, "end": 931, "id": 160, "annotation": null}, {"text": "screen", "start": 932, "end": 938, "id": 161, "annotation": null}, {"text": "printing", "start": 939, "end": 947, "id": 162, "annotation": null}, {"text": "technique", "start": 948, "end": 957, "id": 163, "annotation": null}, {"text": "attains", "start": 958, "end": 965, "id": 164, "annotation": null}, {"text": "5.41", "start": 966, "end": 970, "id": 165, "annotation": null}, {"text": "%", "start": 971, "end": 972, "id": 166, "annotation": null}, {"text": "under", "start": 973, "end": 978, "id": 167, "annotation": null}, {"text": "the", "start": 979, "end": 982, "id": 168, "annotation": null}, {"text": "simulated", "start": 983, "end": 992, "id": 169, "annotation": null}, {"text": "AM", "start": 993, "end": 995, "id": 170, "annotation": null}, {"text": "1.5", "start": 996, "end": 999, "id": 171, "annotation": null}, {"text": "sunlight", "start": 1000, "end": 1008, "id": 172, "annotation": null}, {"text": ",", "start": 1009, "end": 1010, "id": 173, "annotation": null}, {"text": "which", "start": 1011, "end": 1016, "id": 174, "annotation": null}, {"text": "is", "start": 1017, "end": 1019, "id": 175, "annotation": null}, {"text": "almost", "start": 1020, "end": 1026, "id": 176, "annotation": null}, {"text": "same", "start": 1027, "end": 1031, "id": 177, "annotation": null}, {"text": "as", "start": 1032, "end": 1034, "id": 178, "annotation": null}, {"text": "that", "start": 1035, "end": 1039, "id": 179, "annotation": null}, {"text": "based", "start": 1040, "end": 1045, "id": 180, "annotation": null}, {"text": "on", "start": 1046, "end": 1048, "id": 181, "annotation": null}, {"text": "the", "start": 1049, "end": 1052, "id": 182, "annotation": null}, {"text": "thermal", "start": 1053, "end": 1060, "id": 183, "annotation": null}, {"text": "decomposited", "start": 1061, "end": 1073, "id": 184, "annotation": null}, {"text": "Pt", "start": 1074, "end": 1076, "id": 185, "annotation": null}, {"text": "CE", "start": 1077, "end": 1079, "id": 186, "annotation": null}, {"text": "on", "start": 1080, "end": 1082, "id": 187, "annotation": null}, {"text": "FTO", "start": 1083, "end": 1086, "id": 188, "annotation": null}, {"text": "-", "start": 1087, "end": 1088, "id": 189, "annotation": null}, {"text": "glass", "start": 1089, "end": 1094, "id": 190, "annotation": null}, {"text": ".", "start": 1095, "end": 1096, "id": 191, "annotation": null}], [{"text": "Compared", "start": 1097, "end": 1105, "id": 192, "annotation": null}, {"text": "with", "start": 1106, "end": 1110, "id": 193, "annotation": null}, {"text": "other", "start": 1111, "end": 1116, "id": 194, "annotation": null}, {"text": "methods", "start": 1117, "end": 1124, "id": 195, "annotation": null}, {"text": "to", "start": 1125, "end": 1127, "id": 196, "annotation": null}, {"text": "prepare", "start": 1128, "end": 1135, "id": 197, "annotation": null}, {"text": "Pt", "start": 1136, "end": 1138, "id": 198, "annotation": null}, {"text": "CEs", "start": 1139, "end": 1142, "id": 199, "annotation": null}, {"text": ",", "start": 1143, "end": 1144, "id": 200, "annotation": null}, {"text": "chemical", "start": 1145, "end": 1153, "id": 201, "annotation": null}, {"text": "reduced", "start": 1154, "end": 1161, "id": 202, "annotation": null}, {"text": "method", "start": 1162, "end": 1168, "id": 203, "annotation": null}, {"text": "is", "start": 1169, "end": 1171, "id": 204, "annotation": null}, {"text": "simple", "start": 1172, "end": 1178, "id": 205, "annotation": null}, {"text": "and", "start": 1179, "end": 1182, "id": 206, "annotation": null}, {"text": "suitable", "start": 1183, "end": 1191, "id": 207, "annotation": null}, {"text": "for", "start": 1192, "end": 1195, "id": 208, "annotation": null}, {"text": "flexible", "start": 1196, "end": 1204, "id": 209, "annotation": null}, {"text": "polymer", "start": 1205, "end": 1212, "id": 210, "annotation": null}, {"text": "substrates", "start": 1213, "end": 1223, "id": 211, "annotation": null}, {"text": "and", "start": 1224, "end": 1227, "id": 212, "annotation": null}, {"text": "the", "start": 1228, "end": 1231, "id": 213, "annotation": null}, {"text": "large", "start": 1232, "end": 1237, "id": 214, "annotation": null}, {"text": "scale", "start": 1238, "end": 1243, "id": 215, "annotation": null}, {"text": "preparation", "start": 1244, "end": 1255, "id": 216, "annotation": null}, {"text": "of", "start": 1256, "end": 1258, "id": 217, "annotation": null}, {"text": "DSSCs", "start": 1259, "end": 1264, "id": 218, "annotation": null}, {"text": ".", "start": 1265, "end": 1266, "id": 219, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "\u00a9 2015 N. Manjula et al., published by De Gruyter Open 2015. Thin films of manganese-doped cadmium oxide (CdO:Mn) with different Mn-doping levels (0, 1, 2, 3 and 4 at.%) were deposited on glass substrates by employing an inexpensive, simplified spray technique using a perfume atomizer at 375 \u00b0C. The influence of Mn incorporation on the structural, morphological, optical and electrical properties of CdO films has been studied. All the films exhibit cubic crystal structure with a (1 1 1) preferential orientation. Mn-doping causes a slight shift of the (1 1 1) diffraction peak towards higher angle. The crystallite size of the films is found to decrease from 34.63 nm to 17.68 nm with an increase in Mn doping concentration. The CdO:Mn film coated with 1 at.% Mn exhibit a high transparency of nearly 90 % which decreases for higher doping concentration. The optical band gap decreases with an increase in Mn doping concentration. All the films have electrical resistivity of the order of 10-4 \u03a9\u00b7cm.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Thin", "start": 61, "end": 65, "annotation": null}, {"text": "films", "start": 66, "end": 71, "annotation": null}, {"text": "of", "start": 72, "end": 74, "annotation": null}, {"text": "manganese", "start": 75, "end": 84, "annotation": "DOPANT"}, {"text": "-", "start": 84, "end": 85, "annotation": null}, {"text": "doped", "start": 85, "end": 90, "annotation": null}, {"text": "cadmium", "start": 91, "end": 98, "annotation": "BASEMAT"}, {"text": "oxide", "start": 99, "end": 104, "annotation": "BASEMAT"}, {"text": "(", "start": 105, "end": 106, "annotation": null}, {"text": "CdO", "start": 106, "end": 109, "annotation": "BASEMAT"}, {"text": ":", "start": 109, "end": 110, "annotation": null}, {"text": "Mn", "start": 110, "end": 112, "annotation": "DOPANT"}, {"text": ")", "start": 112, "end": 113, "annotation": null}, {"text": "with", "start": 114, "end": 118, "annotation": null}, {"text": "different", "start": 119, "end": 128, "annotation": null}, {"text": "Mn", "start": 129, "end": 131, "annotation": "DOPANT"}, {"text": "-", "start": 131, "end": 132, "annotation": null}, {"text": "doping", "start": 132, "end": 138, "annotation": null}, {"text": "levels", "start": 139, "end": 145, "annotation": null}, {"text": "(", "start": 146, "end": 147, "annotation": null}, {"text": "0", "start": 147, "end": 148, "annotation": "DOPMODQ"}, {"text": ",", "start": 148, "end": 149, "annotation": "DOPMODQ"}, {"text": "1", "start": 150, "end": 151, "annotation": "DOPMODQ"}, {"text": ",", "start": 151, "end": 152, "annotation": "DOPMODQ"}, {"text": "2", "start": 153, "end": 154, "annotation": "DOPMODQ"}, {"text": ",", "start": 154, "end": 155, "annotation": "DOPMODQ"}, {"text": "3", "start": 156, "end": 157, "annotation": "DOPMODQ"}, {"text": "and", "start": 158, "end": 161, "annotation": "DOPMODQ"}, {"text": "4", "start": 162, "end": 163, "annotation": "DOPMODQ"}, {"text": "at.", "start": 164, "end": 167, "annotation": "DOPMODQ"}, {"text": "%", "start": 167, "end": 168, "annotation": "DOPMODQ"}, {"text": ")", "start": 168, "end": 169, "annotation": null}, {"text": "were", "start": 170, "end": 174, "annotation": null}, {"text": "deposited", "start": 175, "end": 184, "annotation": null}, {"text": "on", "start": 185, "end": 187, "annotation": null}, {"text": "glass", "start": 188, "end": 193, "annotation": null}, {"text": "substrates", "start": 194, "end": 204, "annotation": null}, {"text": "by", "start": 205, "end": 207, "annotation": null}, {"text": "employing", "start": 208, "end": 217, "annotation": null}, {"text": "an", "start": 218, "end": 220, "annotation": null}, {"text": "inexpensive", "start": 221, "end": 232, "annotation": null}, {"text": ",", "start": 232, "end": 233, "annotation": null}, {"text": "simplified", "start": 234, "end": 244, "annotation": null}, {"text": "spray", "start": 245, "end": 250, "annotation": null}, {"text": "technique", "start": 251, "end": 260, "annotation": null}, {"text": "using", "start": 261, "end": 266, "annotation": null}, {"text": "a", "start": 267, "end": 268, "annotation": null}, {"text": "perfume", "start": 269, "end": 276, "annotation": null}, {"text": "atomizer", "start": 277, "end": 285, "annotation": null}, {"text": "at", "start": 286, "end": 288, "annotation": null}, {"text": "375", "start": 289, "end": 292, "annotation": null}, {"text": "\u00b0", "start": 293, "end": 294, "annotation": null}, {"text": "C", "start": 294, "end": 295, "annotation": null}, {"text": ".", "start": 295, "end": 296, "annotation": null}], [{"text": "The", "start": 297, "end": 300, "annotation": null}, {"text": "influence", "start": 301, "end": 310, "annotation": null}, {"text": "of", "start": 311, "end": 313, "annotation": null}, {"text": "Mn", "start": 314, "end": 316, "annotation": null}, {"text": "incorporation", "start": 317, "end": 330, "annotation": null}, {"text": "on", "start": 331, "end": 333, "annotation": null}, {"text": "the", "start": 334, "end": 337, "annotation": null}, {"text": "structural", "start": 338, "end": 348, "annotation": null}, {"text": ",", "start": 348, "end": 349, "annotation": null}, {"text": "morphological", "start": 350, "end": 363, "annotation": null}, {"text": ",", "start": 363, "end": 364, "annotation": null}, {"text": "optical", "start": 365, "end": 372, "annotation": null}, {"text": "and", "start": 373, "end": 376, "annotation": null}, {"text": "electrical", "start": 377, "end": 387, "annotation": null}, {"text": "properties", "start": 388, "end": 398, "annotation": null}, {"text": "of", "start": 399, "end": 401, "annotation": null}, {"text": "CdO", "start": 402, "end": 405, "annotation": null}, {"text": "films", "start": 406, "end": 411, "annotation": null}, {"text": "has", "start": 412, "end": 415, "annotation": null}, {"text": "been", "start": 416, "end": 420, "annotation": null}, {"text": "studied", "start": 421, "end": 428, "annotation": null}, {"text": ".", "start": 428, "end": 429, "annotation": null}], [{"text": "All", "start": 430, "end": 433, "annotation": null}, {"text": "the", "start": 434, "end": 437, "annotation": null}, {"text": "films", "start": 438, "end": 443, "annotation": null}, {"text": "exhibit", "start": 444, "end": 451, "annotation": null}, {"text": "cubic", "start": 452, "end": 457, "annotation": null}, {"text": "crystal", "start": 458, "end": 465, "annotation": null}, {"text": "structure", "start": 466, "end": 475, "annotation": null}, {"text": "with", "start": 476, "end": 480, "annotation": null}, {"text": "a", "start": 481, "end": 482, "annotation": null}, {"text": "(", "start": 483, "end": 484, "annotation": null}, {"text": "1", "start": 484, "end": 485, "annotation": null}, {"text": "1", "start": 486, "end": 487, "annotation": null}, {"text": "1", "start": 488, "end": 489, "annotation": null}, {"text": ")", "start": 489, "end": 490, "annotation": null}, {"text": "preferential", "start": 491, "end": 503, "annotation": null}, {"text": "orientation", "start": 504, "end": 515, "annotation": null}, {"text": ".", "start": 515, "end": 516, "annotation": null}], [{"text": "Mn", "start": 517, "end": 519, "annotation": null}, {"text": "-", "start": 519, "end": 520, "annotation": null}, {"text": "doping", "start": 520, "end": 526, "annotation": null}, {"text": "causes", "start": 527, "end": 533, "annotation": null}, {"text": "a", "start": 534, "end": 535, "annotation": null}, {"text": "slight", "start": 536, "end": 542, "annotation": null}, {"text": "shift", "start": 543, "end": 548, "annotation": null}, {"text": "of", "start": 549, "end": 551, "annotation": null}, {"text": "the", "start": 552, "end": 555, "annotation": null}, {"text": "(", "start": 556, "end": 557, "annotation": null}, {"text": "1", "start": 557, "end": 558, "annotation": null}, {"text": "1", "start": 559, "end": 560, "annotation": null}, {"text": "1", "start": 561, "end": 562, "annotation": null}, {"text": ")", "start": 562, "end": 563, "annotation": null}, {"text": "diffraction", "start": 564, "end": 575, "annotation": null}, {"text": "peak", "start": 576, "end": 580, "annotation": null}, {"text": "towards", "start": 581, "end": 588, "annotation": null}, {"text": "higher", "start": 589, "end": 595, "annotation": null}, {"text": "angle", "start": 596, "end": 601, "annotation": null}, {"text": ".", "start": 601, "end": 602, "annotation": null}], [{"text": "The", "start": 603, "end": 606, "annotation": null}, {"text": "crystallite", "start": 607, "end": 618, "annotation": null}, {"text": "size", "start": 619, "end": 623, "annotation": null}, {"text": "of", "start": 624, "end": 626, "annotation": null}, {"text": "the", "start": 627, "end": 630, "annotation": null}, {"text": "films", "start": 631, "end": 636, "annotation": "BASEMAT"}, {"text": "is", "start": 637, "end": 639, "annotation": null}, {"text": "found", "start": 640, "end": 645, "annotation": null}, {"text": "to", "start": 646, "end": 648, "annotation": null}, {"text": "decrease", "start": 649, "end": 657, "annotation": null}, {"text": "from", "start": 658, "end": 662, "annotation": null}, {"text": "34.63", "start": 663, "end": 668, "annotation": null}, {"text": "nm", "start": 669, "end": 671, "annotation": null}, {"text": "to", "start": 672, "end": 674, "annotation": null}, {"text": "17.68", "start": 675, "end": 680, "annotation": null}, {"text": "nm", "start": 681, "end": 683, "annotation": null}, {"text": "with", "start": 684, "end": 688, "annotation": null}, {"text": "an", "start": 689, "end": 691, "annotation": null}, {"text": "increase", "start": 692, "end": 700, "annotation": null}, {"text": "in", "start": 701, "end": 703, "annotation": null}, {"text": "Mn", "start": 704, "end": 706, "annotation": "DOPANT"}, {"text": "doping", "start": 707, "end": 713, "annotation": null}, {"text": "concentration", "start": 714, "end": 727, "annotation": null}, {"text": ".", "start": 727, "end": 728, "annotation": null}], [{"text": "The", "start": 729, "end": 732, "annotation": null}, {"text": "CdO", "start": 733, "end": 736, "annotation": "BASEMAT"}, {"text": ":", "start": 736, "end": 737, "annotation": null}, {"text": "Mn", "start": 737, "end": 739, "annotation": "DOPANT"}, {"text": "film", "start": 740, "end": 744, "annotation": null}, {"text": "coated", "start": 745, "end": 751, "annotation": null}, {"text": "with", "start": 752, "end": 756, "annotation": null}, {"text": "1", "start": 757, "end": 758, "annotation": "DOPMODQ"}, {"text": "at.", "start": 759, "end": 762, "annotation": "DOPMODQ"}, {"text": "%", "start": 762, "end": 763, "annotation": "DOPMODQ"}, {"text": "Mn", "start": 764, "end": 766, "annotation": null}, {"text": "exhibit", "start": 767, "end": 774, "annotation": null}, {"text": "a", "start": 775, "end": 776, "annotation": null}, {"text": "high", "start": 777, "end": 781, "annotation": null}, {"text": "transparency", "start": 782, "end": 794, "annotation": null}, {"text": "of", "start": 795, "end": 797, "annotation": null}, {"text": "nearly", "start": 798, "end": 804, "annotation": null}, {"text": "90", "start": 805, "end": 807, "annotation": null}, {"text": "%", "start": 808, "end": 809, "annotation": null}, {"text": "which", "start": 810, "end": 815, "annotation": null}, {"text": "decreases", "start": 816, "end": 825, "annotation": null}, {"text": "for", "start": 826, "end": 829, "annotation": null}, {"text": "higher", "start": 830, "end": 836, "annotation": null}, {"text": "doping", "start": 837, "end": 843, "annotation": null}, {"text": "concentration", "start": 844, "end": 857, "annotation": null}, {"text": ".", "start": 857, "end": 858, "annotation": null}], [{"text": "The", "start": 859, "end": 862, "annotation": null}, {"text": "optical", "start": 863, "end": 870, "annotation": null}, {"text": "band", "start": 871, "end": 875, "annotation": null}, {"text": "gap", "start": 876, "end": 879, "annotation": null}, {"text": "decreases", "start": 880, "end": 889, "annotation": null}, {"text": "with", "start": 890, "end": 894, "annotation": null}, {"text": "an", "start": 895, "end": 897, "annotation": null}, {"text": "increase", "start": 898, "end": 906, "annotation": null}, {"text": "in", "start": 907, "end": 909, "annotation": null}, {"text": "Mn", "start": 910, "end": 912, "annotation": "DOPANT"}, {"text": "doping", "start": 913, "end": 919, "annotation": null}, {"text": "concentration", "start": 920, "end": 933, "annotation": null}, {"text": ".", "start": 933, "end": 934, "annotation": null}], [{"text": "All", "start": 935, "end": 938, "annotation": null}, {"text": "the", "start": 939, "end": 942, "annotation": null}, {"text": "films", "start": 943, "end": 948, "annotation": null}, {"text": "have", "start": 949, "end": 953, "annotation": null}, {"text": "electrical", "start": 954, "end": 964, "annotation": null}, {"text": "resistivity", "start": 965, "end": 976, "annotation": null}, {"text": "of", "start": 977, "end": 979, "annotation": null}, {"text": "the", "start": 980, "end": 983, "annotation": null}, {"text": "order", "start": 984, "end": 989, "annotation": null}, {"text": "of", "start": 990, "end": 992, "annotation": null}, {"text": "10-4", "start": 993, "end": 997, "annotation": null}, {"text": "\u03a9\u00b7cm", "start": 998, "end": 1002, "annotation": null}, {"text": ".", "start": 1002, "end": 1003, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Yb-doped yttrium aluminum garnet (Yb:YAG) ceramics were prepared via solid state reaction of oxide powders. The Yb concentration ranged from 0 to 10at.%. Silicon in the form of tetraethyl orthosilicate (TEOS) was added as a sintering aid in amounts of 0.3 and 0.5wt.% with respect to the weight of solid. Thermal analyses (high temperature XRD, TG-DSC, dilatometric analyses) were performed on various compositions. Sintering was conducted under high vacuum and clean atmosphere. The influence of TEOS addition and Yb content was observed both in connection with phase transformations in function of temperature, and with microstructure and properties of sintered materials.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Yb", "start": 0, "end": 2, "annotation": "DOPANT"}, {"text": "-", "start": 2, "end": 3, "annotation": null}, {"text": "doped", "start": 3, "end": 8, "annotation": null}, {"text": "yttrium", "start": 9, "end": 16, "annotation": "BASEMAT"}, {"text": "aluminum", "start": 17, "end": 25, "annotation": "BASEMAT"}, {"text": "garnet", "start": 26, "end": 32, "annotation": "BASEMAT"}, {"text": "(", "start": 33, "end": 34, "annotation": null}, {"text": "Yb", "start": 34, "end": 36, "annotation": "DOPANT"}, {"text": ":", "start": 36, "end": 37, "annotation": null}, {"text": "YAG", "start": 37, "end": 40, "annotation": "BASEMAT"}, {"text": ")", "start": 40, "end": 41, "annotation": null}, {"text": "ceramics", "start": 42, "end": 50, "annotation": null}, {"text": "were", "start": 51, "end": 55, "annotation": null}, {"text": "prepared", "start": 56, "end": 64, "annotation": null}, {"text": "via", "start": 65, "end": 68, "annotation": null}, {"text": "solid", "start": 69, "end": 74, "annotation": null}, {"text": "state", "start": 75, "end": 80, "annotation": null}, {"text": "reaction", "start": 81, "end": 89, "annotation": null}, {"text": "of", "start": 90, "end": 92, "annotation": null}, {"text": "oxide", "start": 93, "end": 98, "annotation": null}, {"text": "powders", "start": 99, "end": 106, "annotation": null}, {"text": ".", "start": 106, "end": 107, "annotation": null}], [{"text": "The", "start": 108, "end": 111, "annotation": null}, {"text": "Yb", "start": 112, "end": 114, "annotation": "DOPANT"}, {"text": "concentration", "start": 115, "end": 128, "annotation": null}, {"text": "ranged", "start": 129, "end": 135, "annotation": null}, {"text": "from", "start": 136, "end": 140, "annotation": null}, {"text": "0", "start": 141, "end": 142, "annotation": "DOPMODQ"}, {"text": "to", "start": 143, "end": 145, "annotation": "DOPMODQ"}, {"text": "10at.", "start": 146, "end": 151, "annotation": "DOPMODQ"}, {"text": "%", "start": 151, "end": 152, "annotation": "DOPMODQ"}, {"text": ".", "start": 152, "end": 153, "annotation": null}], [{"text": "Silicon", "start": 154, "end": 161, "annotation": null}, {"text": "in", "start": 162, "end": 164, "annotation": null}, {"text": "the", "start": 165, "end": 168, "annotation": null}, {"text": "form", "start": 169, "end": 173, "annotation": null}, {"text": "of", "start": 174, "end": 176, "annotation": null}, {"text": "tetraethyl", "start": 177, "end": 187, "annotation": null}, {"text": "orthosilicate", "start": 188, "end": 201, "annotation": null}, {"text": "(", "start": 202, "end": 203, "annotation": null}, {"text": "TEOS", "start": 203, "end": 207, "annotation": null}, {"text": ")", "start": 207, "end": 208, "annotation": null}, {"text": "was", "start": 209, "end": 212, "annotation": null}, {"text": "added", "start": 213, "end": 218, "annotation": null}, {"text": "as", "start": 219, "end": 221, "annotation": null}, {"text": "a", "start": 222, "end": 223, "annotation": null}, {"text": "sintering", "start": 224, "end": 233, "annotation": null}, {"text": "aid", "start": 234, "end": 237, "annotation": null}, {"text": "in", "start": 238, "end": 240, "annotation": null}, {"text": "amounts", "start": 241, "end": 248, "annotation": null}, {"text": "of", "start": 249, "end": 251, "annotation": null}, {"text": "0.3", "start": 252, "end": 255, "annotation": null}, {"text": "and", "start": 256, "end": 259, "annotation": null}, {"text": "0.5wt.", "start": 260, "end": 266, "annotation": null}, {"text": "%", "start": 266, "end": 267, "annotation": null}, {"text": "with", "start": 268, "end": 272, "annotation": null}, {"text": "respect", "start": 273, "end": 280, "annotation": null}, {"text": "to", "start": 281, "end": 283, "annotation": null}, {"text": "the", "start": 284, "end": 287, "annotation": null}, {"text": "weight", "start": 288, "end": 294, "annotation": null}, {"text": "of", "start": 295, "end": 297, "annotation": null}, {"text": "solid", "start": 298, "end": 303, "annotation": null}, {"text": ".", "start": 303, "end": 304, "annotation": null}], [{"text": "Thermal", "start": 305, "end": 312, "annotation": null}, {"text": "analyses", "start": 313, "end": 321, "annotation": null}, {"text": "(", "start": 322, "end": 323, "annotation": null}, {"text": "high", "start": 323, "end": 327, "annotation": null}, {"text": "temperature", "start": 328, "end": 339, "annotation": null}, {"text": "XRD", "start": 340, "end": 343, "annotation": null}, {"text": ",", "start": 343, "end": 344, "annotation": null}, {"text": "TG", "start": 345, "end": 347, "annotation": null}, {"text": "-", "start": 347, "end": 348, "annotation": null}, {"text": "DSC", "start": 348, "end": 351, "annotation": null}, {"text": ",", "start": 351, "end": 352, "annotation": null}, {"text": "dilatometric", "start": 353, "end": 365, "annotation": null}, {"text": "analyses", "start": 366, "end": 374, "annotation": null}, {"text": ")", "start": 374, "end": 375, "annotation": null}, {"text": "were", "start": 376, "end": 380, "annotation": null}, {"text": "performed", "start": 381, "end": 390, "annotation": null}, {"text": "on", "start": 391, "end": 393, "annotation": null}, {"text": "various", "start": 394, "end": 401, "annotation": null}, {"text": "compositions", "start": 402, "end": 414, "annotation": null}, {"text": ".", "start": 414, "end": 415, "annotation": null}], [{"text": "Sintering", "start": 416, "end": 425, "annotation": null}, {"text": "was", "start": 426, "end": 429, "annotation": null}, {"text": "conducted", "start": 430, "end": 439, "annotation": null}, {"text": "under", "start": 440, "end": 445, "annotation": null}, {"text": "high", "start": 446, "end": 450, "annotation": null}, {"text": "vacuum", "start": 451, "end": 457, "annotation": null}, {"text": "and", "start": 458, "end": 461, "annotation": null}, {"text": "clean", "start": 462, "end": 467, "annotation": null}, {"text": "atmosphere", "start": 468, "end": 478, "annotation": null}, {"text": ".", "start": 478, "end": 479, "annotation": null}], [{"text": "The", "start": 480, "end": 483, "annotation": null}, {"text": "influence", "start": 484, "end": 493, "annotation": null}, {"text": "of", "start": 494, "end": 496, "annotation": null}, {"text": "TEOS", "start": 497, "end": 501, "annotation": null}, {"text": "addition", "start": 502, "end": 510, "annotation": null}, {"text": "and", "start": 511, "end": 514, "annotation": null}, {"text": "Yb", "start": 515, "end": 517, "annotation": null}, {"text": "content", "start": 518, "end": 525, "annotation": null}, {"text": "was", "start": 526, "end": 529, "annotation": null}, {"text": "observed", "start": 530, "end": 538, "annotation": null}, {"text": "both", "start": 539, "end": 543, "annotation": null}, {"text": "in", "start": 544, "end": 546, "annotation": null}, {"text": "connection", "start": 547, "end": 557, "annotation": null}, {"text": "with", "start": 558, "end": 562, "annotation": null}, {"text": "phase", "start": 563, "end": 568, "annotation": null}, {"text": "transformations", "start": 569, "end": 584, "annotation": null}, {"text": "in", "start": 585, "end": 587, "annotation": null}, {"text": "function", "start": 588, "end": 596, "annotation": null}, {"text": "of", "start": 597, "end": 599, "annotation": null}, {"text": "temperature", "start": 600, "end": 611, "annotation": null}, {"text": ",", "start": 611, "end": 612, "annotation": null}, {"text": "and", "start": 613, "end": 616, "annotation": null}, {"text": "with", "start": 617, "end": 621, "annotation": null}, {"text": "microstructure", "start": 622, "end": 636, "annotation": null}, {"text": "and", "start": 637, "end": 640, "annotation": null}, {"text": "properties", "start": 641, "end": 651, "annotation": null}, {"text": "of", "start": 652, "end": 654, "annotation": null}, {"text": "sintered", "start": 655, "end": 663, "annotation": null}, {"text": "materials", "start": 664, "end": 673, "annotation": null}, {"text": ".", "start": 673, "end": 674, "annotation": null}]]} +{"remark": "doping_annt3", "text": "\u00a9 2015 N. Manjula et al., published by De Gruyter Open 2015. Thin films of manganese-doped cadmium oxide (CdO:Mn) with different Mn-doping levels (0, 1, 2, 3 and 4 at.%) were deposited on glass substrates by employing an inexpensive, simplified spray technique using a perfume atomizer at 375 \u00b0C. The influence of Mn incorporation on the structural, morphological, optical and electrical properties of CdO films has been studied. All the films exhibit cubic crystal structure with a (1 1 1) preferential orientation. Mn-doping causes a slight shift of the (1 1 1) diffraction peak towards higher angle. The crystallite size of the films is found to decrease from 34.63 nm to 17.68 nm with an increase in Mn doping concentration. The CdO:Mn film coated with 1 at.% Mn exhibit a high transparency of nearly 90 % which decreases for higher doping concentration. The optical band gap decreases with an increase in Mn doping concentration. All the films have electrical resistivity of the order of 10-4 \u03a9\u00b7cm.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Thin", "start": 61, "end": 65, "annotation": null}, {"text": "films", "start": 66, "end": 71, "annotation": null}, {"text": "of", "start": 72, "end": 74, "annotation": null}, {"text": "manganese", "start": 75, "end": 84, "annotation": "DOPANT"}, {"text": "-", "start": 84, "end": 85, "annotation": null}, {"text": "doped", "start": 85, "end": 90, "annotation": null}, {"text": "cadmium", "start": 91, "end": 98, "annotation": "BASEMAT"}, {"text": "oxide", "start": 99, "end": 104, "annotation": "BASEMAT"}, {"text": "(", "start": 105, "end": 106, "annotation": null}, {"text": "CdO", "start": 106, "end": 109, "annotation": "BASEMAT"}, {"text": ":", "start": 109, "end": 110, "annotation": null}, {"text": "Mn", "start": 110, "end": 112, "annotation": "DOPANT"}, {"text": ")", "start": 112, "end": 113, "annotation": null}, {"text": "with", "start": 114, "end": 118, "annotation": null}, {"text": "different", "start": 119, "end": 128, "annotation": null}, {"text": "Mn", "start": 129, "end": 131, "annotation": "DOPANT"}, {"text": "-", "start": 131, "end": 132, "annotation": null}, {"text": "doping", "start": 132, "end": 138, "annotation": null}, {"text": "levels", "start": 139, "end": 145, "annotation": null}, {"text": "(", "start": 146, "end": 147, "annotation": null}, {"text": "0", "start": 147, "end": 148, "annotation": "DOPMODQ"}, {"text": ",", "start": 148, "end": 149, "annotation": "DOPMODQ"}, {"text": "1", "start": 150, "end": 151, "annotation": "DOPMODQ"}, {"text": ",", "start": 151, "end": 152, "annotation": "DOPMODQ"}, {"text": "2", "start": 153, "end": 154, "annotation": "DOPMODQ"}, {"text": ",", "start": 154, "end": 155, "annotation": "DOPMODQ"}, {"text": "3", "start": 156, "end": 157, "annotation": "DOPMODQ"}, {"text": "and", "start": 158, "end": 161, "annotation": "DOPMODQ"}, {"text": "4", "start": 162, "end": 163, "annotation": "DOPMODQ"}, {"text": "at.", "start": 164, "end": 167, "annotation": "DOPMODQ"}, {"text": "%", "start": 167, "end": 168, "annotation": "DOPMODQ"}, {"text": ")", "start": 168, "end": 169, "annotation": null}, {"text": "were", "start": 170, "end": 174, "annotation": null}, {"text": "deposited", "start": 175, "end": 184, "annotation": null}, {"text": "on", "start": 185, "end": 187, "annotation": null}, {"text": "glass", "start": 188, "end": 193, "annotation": null}, {"text": "substrates", "start": 194, "end": 204, "annotation": null}, {"text": "by", "start": 205, "end": 207, "annotation": null}, {"text": "employing", "start": 208, "end": 217, "annotation": null}, {"text": "an", "start": 218, "end": 220, "annotation": null}, {"text": "inexpensive", "start": 221, "end": 232, "annotation": null}, {"text": ",", "start": 232, "end": 233, "annotation": null}, {"text": "simplified", "start": 234, "end": 244, "annotation": null}, {"text": "spray", "start": 245, "end": 250, "annotation": null}, {"text": "technique", "start": 251, "end": 260, "annotation": null}, {"text": "using", "start": 261, "end": 266, "annotation": null}, {"text": "a", "start": 267, "end": 268, "annotation": null}, {"text": "perfume", "start": 269, "end": 276, "annotation": null}, {"text": "atomizer", "start": 277, "end": 285, "annotation": null}, {"text": "at", "start": 286, "end": 288, "annotation": null}, {"text": "375", "start": 289, "end": 292, "annotation": null}, {"text": "\u00b0", "start": 293, "end": 294, "annotation": null}, {"text": "C", "start": 294, "end": 295, "annotation": null}, {"text": ".", "start": 295, "end": 296, "annotation": null}], [{"text": "The", "start": 297, "end": 300, "annotation": null}, {"text": "influence", "start": 301, "end": 310, "annotation": null}, {"text": "of", "start": 311, "end": 313, "annotation": null}, {"text": "Mn", "start": 314, "end": 316, "annotation": null}, {"text": "incorporation", "start": 317, "end": 330, "annotation": null}, {"text": "on", "start": 331, "end": 333, "annotation": null}, {"text": "the", "start": 334, "end": 337, "annotation": null}, {"text": "structural", "start": 338, "end": 348, "annotation": null}, {"text": ",", "start": 348, "end": 349, "annotation": null}, {"text": "morphological", "start": 350, "end": 363, "annotation": null}, {"text": ",", "start": 363, "end": 364, "annotation": null}, {"text": "optical", "start": 365, "end": 372, "annotation": null}, {"text": "and", "start": 373, "end": 376, "annotation": null}, {"text": "electrical", "start": 377, "end": 387, "annotation": null}, {"text": "properties", "start": 388, "end": 398, "annotation": null}, {"text": "of", "start": 399, "end": 401, "annotation": null}, {"text": "CdO", "start": 402, "end": 405, "annotation": null}, {"text": "films", "start": 406, "end": 411, "annotation": null}, {"text": "has", "start": 412, "end": 415, "annotation": null}, {"text": "been", "start": 416, "end": 420, "annotation": null}, {"text": "studied", "start": 421, "end": 428, "annotation": null}, {"text": ".", "start": 428, "end": 429, "annotation": null}], [{"text": "All", "start": 430, "end": 433, "annotation": null}, {"text": "the", "start": 434, "end": 437, "annotation": null}, {"text": "films", "start": 438, "end": 443, "annotation": null}, {"text": "exhibit", "start": 444, "end": 451, "annotation": null}, {"text": "cubic", "start": 452, "end": 457, "annotation": null}, {"text": "crystal", "start": 458, "end": 465, "annotation": null}, {"text": "structure", "start": 466, "end": 475, "annotation": null}, {"text": "with", "start": 476, "end": 480, "annotation": null}, {"text": "a", "start": 481, "end": 482, "annotation": null}, {"text": "(", "start": 483, "end": 484, "annotation": null}, {"text": "1", "start": 484, "end": 485, "annotation": null}, {"text": "1", "start": 486, "end": 487, "annotation": null}, {"text": "1", "start": 488, "end": 489, "annotation": null}, {"text": ")", "start": 489, "end": 490, "annotation": null}, {"text": "preferential", "start": 491, "end": 503, "annotation": null}, {"text": "orientation", "start": 504, "end": 515, "annotation": null}, {"text": ".", "start": 515, "end": 516, "annotation": null}], [{"text": "Mn", "start": 517, "end": 519, "annotation": null}, {"text": "-", "start": 519, "end": 520, "annotation": null}, {"text": "doping", "start": 520, "end": 526, "annotation": null}, {"text": "causes", "start": 527, "end": 533, "annotation": null}, {"text": "a", "start": 534, "end": 535, "annotation": null}, {"text": "slight", "start": 536, "end": 542, "annotation": null}, {"text": "shift", "start": 543, "end": 548, "annotation": null}, {"text": "of", "start": 549, "end": 551, "annotation": null}, {"text": "the", "start": 552, "end": 555, "annotation": null}, {"text": "(", "start": 556, "end": 557, "annotation": null}, {"text": "1", "start": 557, "end": 558, "annotation": null}, {"text": "1", "start": 559, "end": 560, "annotation": null}, {"text": "1", "start": 561, "end": 562, "annotation": null}, {"text": ")", "start": 562, "end": 563, "annotation": null}, {"text": "diffraction", "start": 564, "end": 575, "annotation": null}, {"text": "peak", "start": 576, "end": 580, "annotation": null}, {"text": "towards", "start": 581, "end": 588, "annotation": null}, {"text": "higher", "start": 589, "end": 595, "annotation": null}, {"text": "angle", "start": 596, "end": 601, "annotation": null}, {"text": ".", "start": 601, "end": 602, "annotation": null}], [{"text": "The", "start": 603, "end": 606, "annotation": null}, {"text": "crystallite", "start": 607, "end": 618, "annotation": null}, {"text": "size", "start": 619, "end": 623, "annotation": null}, {"text": "of", "start": 624, "end": 626, "annotation": null}, {"text": "the", "start": 627, "end": 630, "annotation": null}, {"text": "films", "start": 631, "end": 636, "annotation": "BASEMAT"}, {"text": "is", "start": 637, "end": 639, "annotation": null}, {"text": "found", "start": 640, "end": 645, "annotation": null}, {"text": "to", "start": 646, "end": 648, "annotation": null}, {"text": "decrease", "start": 649, "end": 657, "annotation": null}, {"text": "from", "start": 658, "end": 662, "annotation": null}, {"text": "34.63", "start": 663, "end": 668, "annotation": null}, {"text": "nm", "start": 669, "end": 671, "annotation": null}, {"text": "to", "start": 672, "end": 674, "annotation": null}, {"text": "17.68", "start": 675, "end": 680, "annotation": null}, {"text": "nm", "start": 681, "end": 683, "annotation": null}, {"text": "with", "start": 684, "end": 688, "annotation": null}, {"text": "an", "start": 689, "end": 691, "annotation": null}, {"text": "increase", "start": 692, "end": 700, "annotation": null}, {"text": "in", "start": 701, "end": 703, "annotation": null}, {"text": "Mn", "start": 704, "end": 706, "annotation": "DOPANT"}, {"text": "doping", "start": 707, "end": 713, "annotation": null}, {"text": "concentration", "start": 714, "end": 727, "annotation": null}, {"text": ".", "start": 727, "end": 728, "annotation": null}], [{"text": "The", "start": 729, "end": 732, "annotation": null}, {"text": "CdO", "start": 733, "end": 736, "annotation": "BASEMAT"}, {"text": ":", "start": 736, "end": 737, "annotation": null}, {"text": "Mn", "start": 737, "end": 739, "annotation": "DOPANT"}, {"text": "film", "start": 740, "end": 744, "annotation": null}, {"text": "coated", "start": 745, "end": 751, "annotation": null}, {"text": "with", "start": 752, "end": 756, "annotation": null}, {"text": "1", "start": 757, "end": 758, "annotation": "DOPMODQ"}, {"text": "at.", "start": 759, "end": 762, "annotation": "DOPMODQ"}, {"text": "%", "start": 762, "end": 763, "annotation": "DOPMODQ"}, {"text": "Mn", "start": 764, "end": 766, "annotation": null}, {"text": "exhibit", "start": 767, "end": 774, "annotation": null}, {"text": "a", "start": 775, "end": 776, "annotation": null}, {"text": "high", "start": 777, "end": 781, "annotation": null}, {"text": "transparency", "start": 782, "end": 794, "annotation": null}, {"text": "of", "start": 795, "end": 797, "annotation": null}, {"text": "nearly", "start": 798, "end": 804, "annotation": null}, {"text": "90", "start": 805, "end": 807, "annotation": null}, {"text": "%", "start": 808, "end": 809, "annotation": null}, {"text": "which", "start": 810, "end": 815, "annotation": null}, {"text": "decreases", "start": 816, "end": 825, "annotation": null}, {"text": "for", "start": 826, "end": 829, "annotation": null}, {"text": "higher", "start": 830, "end": 836, "annotation": null}, {"text": "doping", "start": 837, "end": 843, "annotation": null}, {"text": "concentration", "start": 844, "end": 857, "annotation": null}, {"text": ".", "start": 857, "end": 858, "annotation": null}], [{"text": "The", "start": 859, "end": 862, "annotation": null}, {"text": "optical", "start": 863, "end": 870, "annotation": null}, {"text": "band", "start": 871, "end": 875, "annotation": null}, {"text": "gap", "start": 876, "end": 879, "annotation": null}, {"text": "decreases", "start": 880, "end": 889, "annotation": null}, {"text": "with", "start": 890, "end": 894, "annotation": null}, {"text": "an", "start": 895, "end": 897, "annotation": null}, {"text": "increase", "start": 898, "end": 906, "annotation": null}, {"text": "in", "start": 907, "end": 909, "annotation": null}, {"text": "Mn", "start": 910, "end": 912, "annotation": "DOPANT"}, {"text": "doping", "start": 913, "end": 919, "annotation": null}, {"text": "concentration", "start": 920, "end": 933, "annotation": null}, {"text": ".", "start": 933, "end": 934, "annotation": null}], [{"text": "All", "start": 935, "end": 938, "annotation": null}, {"text": "the", "start": 939, "end": 942, "annotation": null}, {"text": "films", "start": 943, "end": 948, "annotation": null}, {"text": "have", "start": 949, "end": 953, "annotation": null}, {"text": "electrical", "start": 954, "end": 964, "annotation": null}, {"text": "resistivity", "start": 965, "end": 976, "annotation": null}, {"text": "of", "start": 977, "end": 979, "annotation": null}, {"text": "the", "start": 980, "end": 983, "annotation": null}, {"text": "order", "start": 984, "end": 989, "annotation": null}, {"text": "of", "start": 990, "end": 992, "annotation": null}, {"text": "10-4", "start": 993, "end": 997, "annotation": null}, {"text": "\u03a9\u00b7cm", "start": 998, "end": 1002, "annotation": null}, {"text": ".", "start": 1002, "end": 1003, "annotation": null}]], "meta": {"doi": "10.1515/msp-2015-0115"}} +{"remark": "doping_annt1", "text": "Yb-doped yttrium aluminum garnet (Yb:YAG) ceramics were prepared via solid state reaction of oxide powders. The Yb concentration ranged from 0 to 10at.%. Silicon in the form of tetraethyl orthosilicate (TEOS) was added as a sintering aid in amounts of 0.3 and 0.5wt.% with respect to the weight of solid. Thermal analyses (high temperature XRD, TG-DSC, dilatometric analyses) were performed on various compositions. Sintering was conducted under high vacuum and clean atmosphere. The influence of TEOS addition and Yb content was observed both in connection with phase transformations in function of temperature, and with microstructure and properties of sintered materials.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Yb", "start": 0, "end": 2, "annotation": "DOPANT"}, {"text": "-", "start": 2, "end": 3, "annotation": null}, {"text": "doped", "start": 3, "end": 8, "annotation": null}, {"text": "yttrium", "start": 9, "end": 16, "annotation": "BASEMAT"}, {"text": "aluminum", "start": 17, "end": 25, "annotation": "BASEMAT"}, {"text": "garnet", "start": 26, "end": 32, "annotation": "BASEMAT"}, {"text": "(", "start": 33, "end": 34, "annotation": null}, {"text": "Yb", "start": 34, "end": 36, "annotation": "DOPANT"}, {"text": ":", "start": 36, "end": 37, "annotation": null}, {"text": "YAG", "start": 37, "end": 40, "annotation": "BASEMAT"}, {"text": ")", "start": 40, "end": 41, "annotation": null}, {"text": "ceramics", "start": 42, "end": 50, "annotation": null}, {"text": "were", "start": 51, "end": 55, "annotation": null}, {"text": "prepared", "start": 56, "end": 64, "annotation": null}, {"text": "via", "start": 65, "end": 68, "annotation": null}, {"text": "solid", "start": 69, "end": 74, "annotation": null}, {"text": "state", "start": 75, "end": 80, "annotation": null}, {"text": "reaction", "start": 81, "end": 89, "annotation": null}, {"text": "of", "start": 90, "end": 92, "annotation": null}, {"text": "oxide", "start": 93, "end": 98, "annotation": null}, {"text": "powders", "start": 99, "end": 106, "annotation": null}, {"text": ".", "start": 106, "end": 107, "annotation": null}], [{"text": "The", "start": 108, "end": 111, "annotation": null}, {"text": "Yb", "start": 112, "end": 114, "annotation": "DOPANT"}, {"text": "concentration", "start": 115, "end": 128, "annotation": null}, {"text": "ranged", "start": 129, "end": 135, "annotation": null}, {"text": "from", "start": 136, "end": 140, "annotation": null}, {"text": "0", "start": 141, "end": 142, "annotation": "DOPMODQ"}, {"text": "to", "start": 143, "end": 145, "annotation": "DOPMODQ"}, {"text": "10at.", "start": 146, "end": 151, "annotation": "DOPMODQ"}, {"text": "%", "start": 151, "end": 152, "annotation": "DOPMODQ"}, {"text": ".", "start": 152, "end": 153, "annotation": null}], [{"text": "Silicon", "start": 154, "end": 161, "annotation": null}, {"text": "in", "start": 162, "end": 164, "annotation": null}, {"text": "the", "start": 165, "end": 168, "annotation": null}, {"text": "form", "start": 169, "end": 173, "annotation": null}, {"text": "of", "start": 174, "end": 176, "annotation": null}, {"text": "tetraethyl", "start": 177, "end": 187, "annotation": null}, {"text": "orthosilicate", "start": 188, "end": 201, "annotation": null}, {"text": "(", "start": 202, "end": 203, "annotation": null}, {"text": "TEOS", "start": 203, "end": 207, "annotation": null}, {"text": ")", "start": 207, "end": 208, "annotation": null}, {"text": "was", "start": 209, "end": 212, "annotation": null}, {"text": "added", "start": 213, "end": 218, "annotation": null}, {"text": "as", "start": 219, "end": 221, "annotation": null}, {"text": "a", "start": 222, "end": 223, "annotation": null}, {"text": "sintering", "start": 224, "end": 233, "annotation": null}, {"text": "aid", "start": 234, "end": 237, "annotation": null}, {"text": "in", "start": 238, "end": 240, "annotation": null}, {"text": "amounts", "start": 241, "end": 248, "annotation": null}, {"text": "of", "start": 249, "end": 251, "annotation": null}, {"text": "0.3", "start": 252, "end": 255, "annotation": null}, {"text": "and", "start": 256, "end": 259, "annotation": null}, {"text": "0.5wt.", "start": 260, "end": 266, "annotation": null}, {"text": "%", "start": 266, "end": 267, "annotation": null}, {"text": "with", "start": 268, "end": 272, "annotation": null}, {"text": "respect", "start": 273, "end": 280, "annotation": null}, {"text": "to", "start": 281, "end": 283, "annotation": null}, {"text": "the", "start": 284, "end": 287, "annotation": null}, {"text": "weight", "start": 288, "end": 294, "annotation": null}, {"text": "of", "start": 295, "end": 297, "annotation": null}, {"text": "solid", "start": 298, "end": 303, "annotation": null}, {"text": ".", "start": 303, "end": 304, "annotation": null}], [{"text": "Thermal", "start": 305, "end": 312, "annotation": null}, {"text": "analyses", "start": 313, "end": 321, "annotation": null}, {"text": "(", "start": 322, "end": 323, "annotation": null}, {"text": "high", "start": 323, "end": 327, "annotation": null}, {"text": "temperature", "start": 328, "end": 339, "annotation": null}, {"text": "XRD", "start": 340, "end": 343, "annotation": null}, {"text": ",", "start": 343, "end": 344, "annotation": null}, {"text": "TG", "start": 345, "end": 347, "annotation": null}, {"text": "-", "start": 347, "end": 348, "annotation": null}, {"text": "DSC", "start": 348, "end": 351, "annotation": null}, {"text": ",", "start": 351, "end": 352, "annotation": null}, {"text": "dilatometric", "start": 353, "end": 365, "annotation": null}, {"text": "analyses", "start": 366, "end": 374, "annotation": null}, {"text": ")", "start": 374, "end": 375, "annotation": null}, {"text": "were", "start": 376, "end": 380, "annotation": null}, {"text": "performed", "start": 381, "end": 390, "annotation": null}, {"text": "on", "start": 391, "end": 393, "annotation": null}, {"text": "various", "start": 394, "end": 401, "annotation": null}, {"text": "compositions", "start": 402, "end": 414, "annotation": null}, {"text": ".", "start": 414, "end": 415, "annotation": null}], [{"text": "Sintering", "start": 416, "end": 425, "annotation": null}, {"text": "was", "start": 426, "end": 429, "annotation": null}, {"text": "conducted", "start": 430, "end": 439, "annotation": null}, {"text": "under", "start": 440, "end": 445, "annotation": null}, {"text": "high", "start": 446, "end": 450, "annotation": null}, {"text": "vacuum", "start": 451, "end": 457, "annotation": null}, {"text": "and", "start": 458, "end": 461, "annotation": null}, {"text": "clean", "start": 462, "end": 467, "annotation": null}, {"text": "atmosphere", "start": 468, "end": 478, "annotation": null}, {"text": ".", "start": 478, "end": 479, "annotation": null}], [{"text": "The", "start": 480, "end": 483, "annotation": null}, {"text": "influence", "start": 484, "end": 493, "annotation": null}, {"text": "of", "start": 494, "end": 496, "annotation": null}, {"text": "TEOS", "start": 497, "end": 501, "annotation": null}, {"text": "addition", "start": 502, "end": 510, "annotation": null}, {"text": "and", "start": 511, "end": 514, "annotation": null}, {"text": "Yb", "start": 515, "end": 517, "annotation": null}, {"text": "content", "start": 518, "end": 525, "annotation": null}, {"text": "was", "start": 526, "end": 529, "annotation": null}, {"text": "observed", "start": 530, "end": 538, "annotation": null}, {"text": "both", "start": 539, "end": 543, "annotation": null}, {"text": "in", "start": 544, "end": 546, "annotation": null}, {"text": "connection", "start": 547, "end": 557, "annotation": null}, {"text": "with", "start": 558, "end": 562, "annotation": null}, {"text": "phase", "start": 563, "end": 568, "annotation": null}, {"text": "transformations", "start": 569, "end": 584, "annotation": null}, {"text": "in", "start": 585, "end": 587, "annotation": null}, {"text": "function", "start": 588, "end": 596, "annotation": null}, {"text": "of", "start": 597, "end": 599, "annotation": null}, {"text": "temperature", "start": 600, "end": 611, "annotation": null}, {"text": ",", "start": 611, "end": 612, "annotation": null}, {"text": "and", "start": 613, "end": 616, "annotation": null}, {"text": "with", "start": 617, "end": 621, "annotation": null}, {"text": "microstructure", "start": 622, "end": 636, "annotation": null}, {"text": "and", "start": 637, "end": 640, "annotation": null}, {"text": "properties", "start": 641, "end": 651, "annotation": null}, {"text": "of", "start": 652, "end": 654, "annotation": null}, {"text": "sintered", "start": 655, "end": 663, "annotation": null}, {"text": "materials", "start": 664, "end": 673, "annotation": null}, {"text": ".", "start": 673, "end": 674, "annotation": null}]], "meta": {"doi": "10.1016/j.jeurceramsoc.2012.02.045"}} {"text": "A superconductive sign found in electric resistivity behavior of mixed ceramic Pr124/Pr123 is searched and discussed, to advance preceding discussion about the superconductive region induced by intergrain charge transfer effect in ceramic Pr247 containing the related impurity phases. Observed reduction effects for largely impure ceramic of Pr247 with Pr124 and Pr123 and for simply dual-phase sample of Pr124/Pr123 inform us that the oxygen-reduction brings not only superconductive electron doping but also normal resistivity enhancement. Milder heat treatment condition is expected to assist possible attainment of zero-resistivity for Pr124/Pr123.", "meta": {"doi": "10.1016/j.physc.2009.11.158"}, "_input_hash": 1352436687, "_task_hash": -842144769, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "superconductive", "start": 2, "end": 17, "id": 1, "annotation": null}, {"text": "sign", "start": 18, "end": 22, "id": 2, "annotation": null}, {"text": "found", "start": 23, "end": 28, "id": 3, "annotation": null}, {"text": "in", "start": 29, "end": 31, "id": 4, "annotation": null}, {"text": "electric", "start": 32, "end": 40, "id": 5, "annotation": null}, {"text": "resistivity", "start": 41, "end": 52, "id": 6, "annotation": null}, {"text": "behavior", "start": 53, "end": 61, "id": 7, "annotation": null}, {"text": "of", "start": 62, "end": 64, "id": 8, "annotation": null}, {"text": "mixed", "start": 65, "end": 70, "id": 9, "annotation": null}, {"text": "ceramic", "start": 71, "end": 78, "id": 10, "annotation": null}, {"text": "Pr124", "start": 79, "end": 84, "id": 11, "annotation": null}, {"text": "/", "start": 85, "end": 86, "id": 12, "annotation": null}, {"text": "Pr123", "start": 87, "end": 92, "id": 13, "annotation": null}, {"text": "is", "start": 93, "end": 95, "id": 14, "annotation": null}, {"text": "searched", "start": 96, "end": 104, "id": 15, "annotation": null}, {"text": "and", "start": 105, "end": 108, "id": 16, "annotation": null}, {"text": "discussed", "start": 109, "end": 118, "id": 17, "annotation": null}, {"text": ",", "start": 119, "end": 120, "id": 18, "annotation": null}, {"text": "to", "start": 121, "end": 123, "id": 19, "annotation": null}, {"text": "advance", "start": 124, "end": 131, "id": 20, "annotation": null}, {"text": "preceding", "start": 132, "end": 141, "id": 21, "annotation": null}, {"text": "discussion", "start": 142, "end": 152, "id": 22, "annotation": null}, {"text": "about", "start": 153, "end": 158, "id": 23, "annotation": null}, {"text": "the", "start": 159, "end": 162, "id": 24, "annotation": null}, {"text": "superconductive", "start": 163, "end": 178, "id": 25, "annotation": null}, {"text": "region", "start": 179, "end": 185, "id": 26, "annotation": null}, {"text": "induced", "start": 186, "end": 193, "id": 27, "annotation": null}, {"text": "by", "start": 194, "end": 196, "id": 28, "annotation": null}, {"text": "intergrain", "start": 197, "end": 207, "id": 29, "annotation": null}, {"text": "charge", "start": 208, "end": 214, "id": 30, "annotation": null}, {"text": "transfer", "start": 215, "end": 223, "id": 31, "annotation": null}, {"text": "effect", "start": 224, "end": 230, "id": 32, "annotation": null}, {"text": "in", "start": 231, "end": 233, "id": 33, "annotation": null}, {"text": "ceramic", "start": 234, "end": 241, "id": 34, "annotation": null}, {"text": "Pr247", "start": 242, "end": 247, "id": 35, "annotation": null}, {"text": "containing", "start": 248, "end": 258, "id": 36, "annotation": null}, {"text": "the", "start": 259, "end": 262, "id": 37, "annotation": null}, {"text": "related", "start": 263, "end": 270, "id": 38, "annotation": null}, {"text": "impurity", "start": 271, "end": 279, "id": 39, "annotation": null}, {"text": "phases", "start": 280, "end": 286, "id": 40, "annotation": null}, {"text": ".", "start": 287, "end": 288, "id": 41, "annotation": null}], [{"text": "Observed", "start": 289, "end": 297, "id": 42, "annotation": null}, {"text": "reduction", "start": 298, "end": 307, "id": 43, "annotation": null}, {"text": "effects", "start": 308, "end": 315, "id": 44, "annotation": null}, {"text": "for", "start": 316, "end": 319, "id": 45, "annotation": null}, {"text": "largely", "start": 320, "end": 327, "id": 46, "annotation": null}, {"text": "impure", "start": 328, "end": 334, "id": 47, "annotation": null}, {"text": "ceramic", "start": 335, "end": 342, "id": 48, "annotation": null}, {"text": "of", "start": 343, "end": 345, "id": 49, "annotation": null}, {"text": "Pr247", "start": 346, "end": 351, "id": 50, "annotation": null}, {"text": "with", "start": 352, "end": 356, "id": 51, "annotation": null}, {"text": "Pr124", "start": 357, "end": 362, "id": 52, "annotation": null}, {"text": "and", "start": 363, "end": 366, "id": 53, "annotation": null}, {"text": "Pr123", "start": 367, "end": 372, "id": 54, "annotation": null}, {"text": "and", "start": 373, "end": 376, "id": 55, "annotation": null}, {"text": "for", "start": 377, "end": 380, "id": 56, "annotation": null}, {"text": "simply", "start": 381, "end": 387, "id": 57, "annotation": null}, {"text": "dual", "start": 388, "end": 392, "id": 58, "annotation": null}, {"text": "-", "start": 393, "end": 394, "id": 59, "annotation": null}, {"text": "phase", "start": 395, "end": 400, "id": 60, "annotation": null}, {"text": "sample", "start": 401, "end": 407, "id": 61, "annotation": null}, {"text": "of", "start": 408, "end": 410, "id": 62, "annotation": null}, {"text": "Pr124", "start": 411, "end": 416, "id": 63, "annotation": "BASEMAT"}, {"text": "/", "start": 417, "end": 418, "id": 64, "annotation": null}, {"text": "Pr123", "start": 419, "end": 424, "id": 65, "annotation": "BASEMAT"}, {"text": "inform", "start": 425, "end": 431, "id": 66, "annotation": null}, {"text": "us", "start": 432, "end": 434, "id": 67, "annotation": null}, {"text": "that", "start": 435, "end": 439, "id": 68, "annotation": null}, {"text": "the", "start": 440, "end": 443, "id": 69, "annotation": null}, {"text": "oxygen", "start": 444, "end": 450, "id": 70, "annotation": null}, {"text": "-", "start": 451, "end": 452, "id": 71, "annotation": null}, {"text": "reduction", "start": 453, "end": 462, "id": 72, "annotation": null}, {"text": "brings", "start": 463, "end": 469, "id": 73, "annotation": null}, {"text": "not", "start": 470, "end": 473, "id": 74, "annotation": null}, {"text": "only", "start": 474, "end": 478, "id": 75, "annotation": null}, {"text": "superconductive", "start": 479, "end": 494, "id": 76, "annotation": null}, {"text": "electron", "start": 495, "end": 503, "id": 77, "annotation": "DOPANT"}, {"text": "doping", "start": 504, "end": 510, "id": 78, "annotation": null}, {"text": "but", "start": 511, "end": 514, "id": 79, "annotation": null}, {"text": "also", "start": 515, "end": 519, "id": 80, "annotation": null}, {"text": "normal", "start": 520, "end": 526, "id": 81, "annotation": null}, {"text": "resistivity", "start": 527, "end": 538, "id": 82, "annotation": null}, {"text": "enhancement", "start": 539, "end": 550, "id": 83, "annotation": null}, {"text": ".", "start": 551, "end": 552, "id": 84, "annotation": null}], [{"text": "Milder", "start": 553, "end": 559, "id": 85, "annotation": null}, {"text": "heat", "start": 560, "end": 564, "id": 86, "annotation": null}, {"text": "treatment", "start": 565, "end": 574, "id": 87, "annotation": null}, {"text": "condition", "start": 575, "end": 584, "id": 88, "annotation": null}, {"text": "is", "start": 585, "end": 587, "id": 89, "annotation": null}, {"text": "expected", "start": 588, "end": 596, "id": 90, "annotation": null}, {"text": "to", "start": 597, "end": 599, "id": 91, "annotation": null}, {"text": "assist", "start": 600, "end": 606, "id": 92, "annotation": null}, {"text": "possible", "start": 607, "end": 615, "id": 93, "annotation": null}, {"text": "attainment", "start": 616, "end": 626, "id": 94, "annotation": null}, {"text": "of", "start": 627, "end": 629, "id": 95, "annotation": null}, {"text": "zero", "start": 630, "end": 634, "id": 96, "annotation": null}, {"text": "-", "start": 635, "end": 636, "id": 97, "annotation": null}, {"text": "resistivity", "start": 637, "end": 648, "id": 98, "annotation": null}, {"text": "for", "start": 649, "end": 652, "id": 99, "annotation": null}, {"text": "Pr124", "start": 653, "end": 658, "id": 100, "annotation": null}, {"text": "/", "start": 659, "end": 660, "id": 101, "annotation": null}, {"text": "Pr123", "start": 661, "end": 666, "id": 102, "annotation": null}, {"text": ".", "start": 667, "end": 668, "id": 103, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "For the understanding of Ce-doped high-Tc cuprates with the so-called TA-structure, we have performed 63,65Cu and 139La NMR measurements in T\u2032-Pr1.3-xLa0.7CexCuO4+\u03b4 single crystals with x = 0.10 and 0.15. The N\u00e9el temperature (TN) was evaluated from the temperature (T) dependence of the 139La NMR line width. For x = 0.10, TN decreased from 190 K in the as-grown crystal to 60 K in the oxygen-reduced crystal annealed at 800\u00b0C. For x = 0.15, TN of 170 K in the as-grown crystal decreased to zero through the same heat treatment. The oxygen reduction strongly suppressed the antiferromagnetic (AF) order. 63,65Cu NMR spectra had a narrow center line and broad satellites with a small electric field gradient in the paramagnetic state. In the AF state, in contrast, 63,65Cu NMR spectra had a large electric field gradient. The T dependence of the 63Cu nuclear spin-lattice relaxation rate (1/T1) showed the existence of large spin fluctuations in the paramagnetic state. The spin fluctuations seem to play a key role in the appearance of superconductivity in the TA-cuprates.", "meta": {"doi": "10.7566/JPSJ.85.024708"}, "_input_hash": -967235348, "_task_hash": 1497644537, "tokens": [[{"text": "For", "start": 39, "end": 42, "id": 8, "annotation": null}, {"text": "the", "start": 43, "end": 46, "id": 9, "annotation": null}, {"text": "understanding", "start": 47, "end": 60, "id": 10, "annotation": null}, {"text": "of", "start": 61, "end": 63, "id": 11, "annotation": null}, {"text": "Ce", "start": 64, "end": 66, "id": 12, "annotation": "DOPANT"}, {"text": "-", "start": 67, "end": 68, "id": 13, "annotation": null}, {"text": "doped", "start": 69, "end": 74, "id": 14, "annotation": null}, {"text": "high", "start": 75, "end": 79, "id": 15, "annotation": null}, {"text": "-", "start": 80, "end": 81, "id": 16, "annotation": null}, {"text": "Tc", "start": 82, "end": 84, "id": 17, "annotation": null}, {"text": "cuprates", "start": 85, "end": 93, "id": 18, "annotation": "BASEMAT"}, {"text": "with", "start": 94, "end": 98, "id": 19, "annotation": null}, {"text": "the", "start": 99, "end": 102, "id": 20, "annotation": null}, {"text": "so", "start": 103, "end": 105, "id": 21, "annotation": null}, {"text": "-", "start": 106, "end": 107, "id": 22, "annotation": null}, {"text": "called", "start": 108, "end": 114, "id": 23, "annotation": null}, {"text": "TA", "start": 115, "end": 117, "id": 24, "annotation": null}, {"text": "-", "start": 118, "end": 119, "id": 25, "annotation": null}, {"text": "structure", "start": 120, "end": 129, "id": 26, "annotation": null}, {"text": ",", "start": 130, "end": 131, "id": 27, "annotation": null}, {"text": "we", "start": 132, "end": 134, "id": 28, "annotation": null}, {"text": "have", "start": 135, "end": 139, "id": 29, "annotation": null}, {"text": "performed", "start": 140, "end": 149, "id": 30, "annotation": null}, {"text": "63,65Cu", "start": 150, "end": 157, "id": 31, "annotation": null}, {"text": "and", "start": 158, "end": 161, "id": 32, "annotation": null}, {"text": "139La", "start": 162, "end": 167, "id": 33, "annotation": null}, {"text": "NMR", "start": 168, "end": 171, "id": 34, "annotation": null}, {"text": "measurements", "start": 172, "end": 184, "id": 35, "annotation": null}, {"text": "in", "start": 185, "end": 187, "id": 36, "annotation": null}, {"text": "T\u2032-Pr1.3-xLa0.7CexCuO4+\u03b4", "start": 188, "end": 212, "id": 37, "annotation": null}, {"text": "single", "start": 213, "end": 219, "id": 38, "annotation": null}, {"text": "crystals", "start": 220, "end": 228, "id": 39, "annotation": null}, {"text": "with", "start": 229, "end": 233, "id": 40, "annotation": null}, {"text": "x", "start": 234, "end": 235, "id": 41, "annotation": "DOPMODQ"}, {"text": "=", "start": 236, "end": 237, "id": 42, "annotation": null}, {"text": "0.10", "start": 238, "end": 242, "id": 43, "annotation": null}, {"text": "and", "start": 243, "end": 246, "id": 44, "annotation": null}, {"text": "0.15", "start": 247, "end": 251, "id": 45, "annotation": "DOPMODQ"}, {"text": ".", "start": 252, "end": 253, "id": 46, "annotation": null}], [{"text": "The", "start": 254, "end": 257, "id": 47, "annotation": null}, {"text": "N\u00e9el", "start": 258, "end": 262, "id": 48, "annotation": null}, {"text": "temperature", "start": 263, "end": 274, "id": 49, "annotation": null}, {"text": "(", "start": 275, "end": 276, "id": 50, "annotation": null}, {"text": "TN", "start": 277, "end": 279, "id": 51, "annotation": null}, {"text": ")", "start": 280, "end": 281, "id": 52, "annotation": null}, {"text": "was", "start": 282, "end": 285, "id": 53, "annotation": null}, {"text": "evaluated", "start": 286, "end": 295, "id": 54, "annotation": null}, {"text": "from", "start": 296, "end": 300, "id": 55, "annotation": null}, {"text": "the", "start": 301, "end": 304, "id": 56, "annotation": null}, {"text": "temperature", "start": 305, "end": 316, "id": 57, "annotation": null}, {"text": "(", "start": 317, "end": 318, "id": 58, "annotation": null}, {"text": "T", "start": 319, "end": 320, "id": 59, "annotation": null}, {"text": ")", "start": 321, "end": 322, "id": 60, "annotation": null}, {"text": "dependence", "start": 323, "end": 333, "id": 61, "annotation": null}, {"text": "of", "start": 334, "end": 336, "id": 62, "annotation": null}, {"text": "the", "start": 337, "end": 340, "id": 63, "annotation": null}, {"text": "139La", "start": 341, "end": 346, "id": 64, "annotation": null}, {"text": "NMR", "start": 347, "end": 350, "id": 65, "annotation": null}, {"text": "line", "start": 351, "end": 355, "id": 66, "annotation": null}, {"text": "width", "start": 356, "end": 361, "id": 67, "annotation": null}, {"text": ".", "start": 362, "end": 363, "id": 68, "annotation": null}], [{"text": "For", "start": 364, "end": 367, "id": 69, "annotation": null}, {"text": "x", "start": 368, "end": 369, "id": 70, "annotation": "DOPMODQ"}, {"text": "=", "start": 370, "end": 371, "id": 71, "annotation": null}, {"text": "0.10", "start": 372, "end": 376, "id": 72, "annotation": "DOPMODQ"}, {"text": ",", "start": 377, "end": 378, "id": 73, "annotation": null}, {"text": "TN", "start": 379, "end": 381, "id": 74, "annotation": null}, {"text": "decreased", "start": 382, "end": 391, "id": 75, "annotation": null}, {"text": "from", "start": 392, "end": 396, "id": 76, "annotation": null}, {"text": "190", "start": 397, "end": 400, "id": 77, "annotation": null}, {"text": "K", "start": 401, "end": 402, "id": 78, "annotation": null}, {"text": "in", "start": 403, "end": 405, "id": 79, "annotation": null}, {"text": "the", "start": 406, "end": 409, "id": 80, "annotation": null}, {"text": "as", "start": 410, "end": 412, "id": 81, "annotation": null}, {"text": "-", "start": 413, "end": 414, "id": 82, "annotation": null}, {"text": "grown", "start": 415, "end": 420, "id": 83, "annotation": null}, {"text": "crystal", "start": 421, "end": 428, "id": 84, "annotation": null}, {"text": "to", "start": 429, "end": 431, "id": 85, "annotation": null}, {"text": "60", "start": 432, "end": 434, "id": 86, "annotation": null}, {"text": "K", "start": 435, "end": 436, "id": 87, "annotation": null}, {"text": "in", "start": 437, "end": 439, "id": 88, "annotation": null}, {"text": "the", "start": 440, "end": 443, "id": 89, "annotation": null}, {"text": "oxygen", "start": 444, "end": 450, "id": 90, "annotation": null}, {"text": "-", "start": 451, "end": 452, "id": 91, "annotation": null}, {"text": "reduced", "start": 453, "end": 460, "id": 92, "annotation": null}, {"text": "crystal", "start": 461, "end": 468, "id": 93, "annotation": null}, {"text": "annealed", "start": 469, "end": 477, "id": 94, "annotation": null}, {"text": "at", "start": 478, "end": 480, "id": 95, "annotation": null}, {"text": "800", "start": 481, "end": 484, "id": 96, "annotation": null}, {"text": "\u00b0", "start": 485, "end": 486, "id": 97, "annotation": null}, {"text": "C", "start": 487, "end": 488, "id": 98, "annotation": null}, {"text": ".", "start": 489, "end": 490, "id": 99, "annotation": null}], [{"text": "For", "start": 491, "end": 494, "id": 100, "annotation": null}, {"text": "x", "start": 495, "end": 496, "id": 101, "annotation": "DOPMODQ"}, {"text": "=", "start": 497, "end": 498, "id": 102, "annotation": null}, {"text": "0.15", "start": 499, "end": 503, "id": 103, "annotation": "DOPMODQ"}, {"text": ",", "start": 504, "end": 505, "id": 104, "annotation": null}, {"text": "TN", "start": 506, "end": 508, "id": 105, "annotation": null}, {"text": "of", "start": 509, "end": 511, "id": 106, "annotation": null}, {"text": "170", "start": 512, "end": 515, "id": 107, "annotation": null}, {"text": "K", "start": 516, "end": 517, "id": 108, "annotation": null}, {"text": "in", "start": 518, "end": 520, "id": 109, "annotation": null}, {"text": "the", "start": 521, "end": 524, "id": 110, "annotation": null}, {"text": "as", "start": 525, "end": 527, "id": 111, "annotation": null}, {"text": "-", "start": 528, "end": 529, "id": 112, "annotation": null}, {"text": "grown", "start": 530, "end": 535, "id": 113, "annotation": null}, {"text": "crystal", "start": 536, "end": 543, "id": 114, "annotation": null}, {"text": "decreased", "start": 544, "end": 553, "id": 115, "annotation": null}, {"text": "to", "start": 554, "end": 556, "id": 116, "annotation": null}, {"text": "zero", "start": 557, "end": 561, "id": 117, "annotation": null}, {"text": "through", "start": 562, "end": 569, "id": 118, "annotation": null}, {"text": "the", "start": 570, "end": 573, "id": 119, "annotation": null}, {"text": "same", "start": 574, "end": 578, "id": 120, "annotation": null}, {"text": "heat", "start": 579, "end": 583, "id": 121, "annotation": null}, {"text": "treatment", "start": 584, "end": 593, "id": 122, "annotation": null}, {"text": ".", "start": 594, "end": 595, "id": 123, "annotation": null}], [{"text": "The", "start": 596, "end": 599, "id": 124, "annotation": null}, {"text": "oxygen", "start": 600, "end": 606, "id": 125, "annotation": null}, {"text": "reduction", "start": 607, "end": 616, "id": 126, "annotation": null}, {"text": "strongly", "start": 617, "end": 625, "id": 127, "annotation": null}, {"text": "suppressed", "start": 626, "end": 636, "id": 128, "annotation": null}, {"text": "the", "start": 637, "end": 640, "id": 129, "annotation": null}, {"text": "antiferromagnetic", "start": 641, "end": 658, "id": 130, "annotation": null}, {"text": "(", "start": 659, "end": 660, "id": 131, "annotation": null}, {"text": "AF", "start": 661, "end": 663, "id": 132, "annotation": null}, {"text": ")", "start": 664, "end": 665, "id": 133, "annotation": null}, {"text": "order", "start": 666, "end": 671, "id": 134, "annotation": null}, {"text": ".", "start": 672, "end": 673, "id": 135, "annotation": null}], [{"text": "63,65Cu", "start": 674, "end": 681, "id": 136, "annotation": null}, {"text": "NMR", "start": 682, "end": 685, "id": 137, "annotation": null}, {"text": "spectra", "start": 686, "end": 693, "id": 138, "annotation": null}, {"text": "had", "start": 694, "end": 697, "id": 139, "annotation": null}, {"text": "a", "start": 698, "end": 699, "id": 140, "annotation": null}, {"text": "narrow", "start": 700, "end": 706, "id": 141, "annotation": null}, {"text": "center", "start": 707, "end": 713, "id": 142, "annotation": null}, {"text": "line", "start": 714, "end": 718, "id": 143, "annotation": null}, {"text": "and", "start": 719, "end": 722, "id": 144, "annotation": null}, {"text": "broad", "start": 723, "end": 728, "id": 145, "annotation": null}, {"text": "satellites", "start": 729, "end": 739, "id": 146, "annotation": null}, {"text": "with", "start": 740, "end": 744, "id": 147, "annotation": null}, {"text": "a", "start": 745, "end": 746, "id": 148, "annotation": null}, {"text": "small", "start": 747, "end": 752, "id": 149, "annotation": null}, {"text": "electric", "start": 753, "end": 761, "id": 150, "annotation": null}, {"text": "field", "start": 762, "end": 767, "id": 151, "annotation": null}, {"text": "gradient", "start": 768, "end": 776, "id": 152, "annotation": null}, {"text": "in", "start": 777, "end": 779, "id": 153, "annotation": null}, {"text": "the", "start": 780, "end": 783, "id": 154, "annotation": null}, {"text": "paramagnetic", "start": 784, "end": 796, "id": 155, "annotation": null}, {"text": "state", "start": 797, "end": 802, "id": 156, "annotation": null}, {"text": ".", "start": 803, "end": 804, "id": 157, "annotation": null}], [{"text": "In", "start": 805, "end": 807, "id": 158, "annotation": null}, {"text": "the", "start": 808, "end": 811, "id": 159, "annotation": null}, {"text": "AF", "start": 812, "end": 814, "id": 160, "annotation": null}, {"text": "state", "start": 815, "end": 820, "id": 161, "annotation": null}, {"text": ",", "start": 821, "end": 822, "id": 162, "annotation": null}, {"text": "in", "start": 823, "end": 825, "id": 163, "annotation": null}, {"text": "contrast", "start": 826, "end": 834, "id": 164, "annotation": null}, {"text": ",", "start": 835, "end": 836, "id": 165, "annotation": null}, {"text": "63,65Cu", "start": 837, "end": 844, "id": 166, "annotation": null}, {"text": "NMR", "start": 845, "end": 848, "id": 167, "annotation": null}, {"text": "spectra", "start": 849, "end": 856, "id": 168, "annotation": null}, {"text": "had", "start": 857, "end": 860, "id": 169, "annotation": null}, {"text": "a", "start": 861, "end": 862, "id": 170, "annotation": null}, {"text": "large", "start": 863, "end": 868, "id": 171, "annotation": null}, {"text": "electric", "start": 869, "end": 877, "id": 172, "annotation": null}, {"text": "field", "start": 878, "end": 883, "id": 173, "annotation": null}, {"text": "gradient", "start": 884, "end": 892, "id": 174, "annotation": null}, {"text": ".", "start": 893, "end": 894, "id": 175, "annotation": null}], [{"text": "The", "start": 895, "end": 898, "id": 176, "annotation": null}, {"text": "T", "start": 899, "end": 900, "id": 177, "annotation": null}, {"text": "dependence", "start": 901, "end": 911, "id": 178, "annotation": null}, {"text": "of", "start": 912, "end": 914, "id": 179, "annotation": null}, {"text": "the", "start": 915, "end": 918, "id": 180, "annotation": null}, {"text": "63Cu", "start": 919, "end": 923, "id": 181, "annotation": null}, {"text": "nuclear", "start": 924, "end": 931, "id": 182, "annotation": null}, {"text": "spin", "start": 932, "end": 936, "id": 183, "annotation": null}, {"text": "-", "start": 937, "end": 938, "id": 184, "annotation": null}, {"text": "lattice", "start": 939, "end": 946, "id": 185, "annotation": null}, {"text": "relaxation", "start": 947, "end": 957, "id": 186, "annotation": null}, {"text": "rate", "start": 958, "end": 962, "id": 187, "annotation": null}, {"text": "(", "start": 963, "end": 964, "id": 188, "annotation": null}, {"text": "1", "start": 965, "end": 966, "id": 189, "annotation": null}, {"text": "/", "start": 967, "end": 968, "id": 190, "annotation": null}, {"text": "T1", "start": 969, "end": 971, "id": 191, "annotation": null}, {"text": ")", "start": 972, "end": 973, "id": 192, "annotation": null}, {"text": "showed", "start": 974, "end": 980, "id": 193, "annotation": null}, {"text": "the", "start": 981, "end": 984, "id": 194, "annotation": null}, {"text": "existence", "start": 985, "end": 994, "id": 195, "annotation": null}, {"text": "of", "start": 995, "end": 997, "id": 196, "annotation": null}, {"text": "large", "start": 998, "end": 1003, "id": 197, "annotation": null}, {"text": "spin", "start": 1004, "end": 1008, "id": 198, "annotation": null}, {"text": "fluctuations", "start": 1009, "end": 1021, "id": 199, "annotation": null}, {"text": "in", "start": 1022, "end": 1024, "id": 200, "annotation": null}, {"text": "the", "start": 1025, "end": 1028, "id": 201, "annotation": null}, {"text": "paramagnetic", "start": 1029, "end": 1041, "id": 202, "annotation": null}, {"text": "state", "start": 1042, "end": 1047, "id": 203, "annotation": null}, {"text": ".", "start": 1048, "end": 1049, "id": 204, "annotation": null}], [{"text": "The", "start": 1050, "end": 1053, "id": 205, "annotation": null}, {"text": "spin", "start": 1054, "end": 1058, "id": 206, "annotation": null}, {"text": "fluctuations", "start": 1059, "end": 1071, "id": 207, "annotation": null}, {"text": "seem", "start": 1072, "end": 1076, "id": 208, "annotation": null}, {"text": "to", "start": 1077, "end": 1079, "id": 209, "annotation": null}, {"text": "play", "start": 1080, "end": 1084, "id": 210, "annotation": null}, {"text": "a", "start": 1085, "end": 1086, "id": 211, "annotation": null}, {"text": "key", "start": 1087, "end": 1090, "id": 212, "annotation": null}, {"text": "role", "start": 1091, "end": 1095, "id": 213, "annotation": null}, {"text": "in", "start": 1096, "end": 1098, "id": 214, "annotation": null}, {"text": "the", "start": 1099, "end": 1102, "id": 215, "annotation": null}, {"text": "appearance", "start": 1103, "end": 1113, "id": 216, "annotation": null}, {"text": "of", "start": 1114, "end": 1116, "id": 217, "annotation": null}, {"text": "superconductivity", "start": 1117, "end": 1134, "id": 218, "annotation": null}, {"text": "in", "start": 1135, "end": 1137, "id": 219, "annotation": null}, {"text": "the", "start": 1138, "end": 1141, "id": 220, "annotation": null}, {"text": "TA", "start": 1142, "end": 1144, "id": 221, "annotation": null}, {"text": "-", "start": 1145, "end": 1146, "id": 222, "annotation": null}, {"text": "cuprates", "start": 1147, "end": 1155, "id": 223, "annotation": null}, {"text": ".", "start": 1156, "end": 1157, "id": 224, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "\u00a9 2017 IOP Publishing Ltd. Excitation parameters shown by a plasmonic structure are different in the near infrared (NIR) region as compared with that of the visible region. Fluoride-based glass materials show high transparency in the infrared (IR) region, which plays an important role from an experimental point of view. In order to explore optical sensors based on a heavy metal doped fluoride substrate, performance of a surface plasmon resonance (SPR) based sensor having HBL glass as the substrate material to couple direct light in the NIR region is discussed. The proposed sensor's structure is based on Kretschmann configuration with gold (Au) deposited on an HBL glass substrate. Experimental refractive index values of water samples containing different NaCl concentrations are taken as the sensing medium for design and modelling of the sensor. The analysis was carried out for some different samples also. An HBL-based SPR sensor is able to provide significantly enhanced sensing performance compared with other conventional glass substrates operated in different spectral regions (SF10 in visible and SiO2in NIR). The study paves the way for designing SPR sensor probes based on fluoride optical fibers in the IR region for different biological and chemical applications.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Fluoride", "start": 173, "end": 181, "annotation": null}, {"text": "-", "start": 181, "end": 182, "annotation": null}, {"text": "based", "start": 182, "end": 187, "annotation": null}, {"text": "glass", "start": 188, "end": 193, "annotation": null}, {"text": "materials", "start": 194, "end": 203, "annotation": null}, {"text": "show", "start": 204, "end": 208, "annotation": null}, {"text": "high", "start": 209, "end": 213, "annotation": null}, {"text": "transparency", "start": 214, "end": 226, "annotation": null}, {"text": "in", "start": 227, "end": 229, "annotation": null}, {"text": "the", "start": 230, "end": 233, "annotation": null}, {"text": "infrared", "start": 234, "end": 242, "annotation": null}, {"text": "(", "start": 243, "end": 244, "annotation": null}, {"text": "IR", "start": 244, "end": 246, "annotation": null}, {"text": ")", "start": 246, "end": 247, "annotation": null}, {"text": "region", "start": 248, "end": 254, "annotation": null}, {"text": ",", "start": 254, "end": 255, "annotation": null}, {"text": "which", "start": 256, "end": 261, "annotation": null}, {"text": "plays", "start": 262, "end": 267, "annotation": null}, {"text": "an", "start": 268, "end": 270, "annotation": null}, {"text": "important", "start": 271, "end": 280, "annotation": null}, {"text": "role", "start": 281, "end": 285, "annotation": null}, {"text": "from", "start": 286, "end": 290, "annotation": null}, {"text": "an", "start": 291, "end": 293, "annotation": null}, {"text": "experimental", "start": 294, "end": 306, "annotation": null}, {"text": "point", "start": 307, "end": 312, "annotation": null}, {"text": "of", "start": 313, "end": 315, "annotation": null}, {"text": "view", "start": 316, "end": 320, "annotation": null}, {"text": ".", "start": 320, "end": 321, "annotation": null}], [{"text": "In", "start": 322, "end": 324, "annotation": null}, {"text": "order", "start": 325, "end": 330, "annotation": null}, {"text": "to", "start": 331, "end": 333, "annotation": null}, {"text": "explore", "start": 334, "end": 341, "annotation": null}, {"text": "optical", "start": 342, "end": 349, "annotation": null}, {"text": "sensors", "start": 350, "end": 357, "annotation": null}, {"text": "based", "start": 358, "end": 363, "annotation": null}, {"text": "on", "start": 364, "end": 366, "annotation": null}, {"text": "a", "start": 367, "end": 368, "annotation": null}, {"text": "heavy", "start": 369, "end": 374, "annotation": "DOPANT"}, {"text": "metal", "start": 375, "end": 380, "annotation": "DOPANT"}, {"text": "doped", "start": 381, "end": 386, "annotation": null}, {"text": "fluoride", "start": 387, "end": 395, "annotation": "BASEMAT"}, {"text": "substrate", "start": 396, "end": 405, "annotation": null}, {"text": ",", "start": 405, "end": 406, "annotation": null}, {"text": "performance", "start": 407, "end": 418, "annotation": null}, {"text": "of", "start": 419, "end": 421, "annotation": null}, {"text": "a", "start": 422, "end": 423, "annotation": null}, {"text": "surface", "start": 424, "end": 431, "annotation": null}, {"text": "plasmon", "start": 432, "end": 439, "annotation": null}, {"text": "resonance", "start": 440, "end": 449, "annotation": null}, {"text": "(", "start": 450, "end": 451, "annotation": null}, {"text": "SPR", "start": 451, "end": 454, "annotation": null}, {"text": ")", "start": 454, "end": 455, "annotation": null}, {"text": "based", "start": 456, "end": 461, "annotation": null}, {"text": "sensor", "start": 462, "end": 468, "annotation": null}, {"text": "having", "start": 469, "end": 475, "annotation": null}, {"text": "HBL", "start": 476, "end": 479, "annotation": null}, {"text": "glass", "start": 480, "end": 485, "annotation": null}, {"text": "as", "start": 486, "end": 488, "annotation": null}, {"text": "the", "start": 489, "end": 492, "annotation": null}, {"text": "substrate", "start": 493, "end": 502, "annotation": null}, {"text": "material", "start": 503, "end": 511, "annotation": null}, {"text": "to", "start": 512, "end": 514, "annotation": null}, {"text": "couple", "start": 515, "end": 521, "annotation": null}, {"text": "direct", "start": 522, "end": 528, "annotation": null}, {"text": "light", "start": 529, "end": 534, "annotation": null}, {"text": "in", "start": 535, "end": 537, "annotation": null}, {"text": "the", "start": 538, "end": 541, "annotation": null}, {"text": "NIR", "start": 542, "end": 545, "annotation": null}, {"text": "region", "start": 546, "end": 552, "annotation": null}, {"text": "is", "start": 553, "end": 555, "annotation": null}, {"text": "discussed", "start": 556, "end": 565, "annotation": null}, {"text": ".", "start": 565, "end": 566, "annotation": null}], [{"text": "The", "start": 567, "end": 570, "annotation": null}, {"text": "proposed", "start": 571, "end": 579, "annotation": null}, {"text": "sensor", "start": 580, "end": 586, "annotation": null}, {"text": "'s", "start": 586, "end": 588, "annotation": null}, {"text": "structure", "start": 589, "end": 598, "annotation": null}, {"text": "is", "start": 599, "end": 601, "annotation": null}, {"text": "based", "start": 602, "end": 607, "annotation": null}, {"text": "on", "start": 608, "end": 610, "annotation": null}, {"text": "Kretschmann", "start": 611, "end": 622, "annotation": null}, {"text": "configuration", "start": 623, "end": 636, "annotation": null}, {"text": "with", "start": 637, "end": 641, "annotation": null}, {"text": "gold", "start": 642, "end": 646, "annotation": null}, {"text": "(", "start": 647, "end": 648, "annotation": null}, {"text": "Au", "start": 648, "end": 650, "annotation": null}, {"text": ")", "start": 650, "end": 651, "annotation": null}, {"text": "deposited", "start": 652, "end": 661, "annotation": null}, {"text": "on", "start": 662, "end": 664, "annotation": null}, {"text": "an", "start": 665, "end": 667, "annotation": null}, {"text": "HBL", "start": 668, "end": 671, "annotation": null}, {"text": "glass", "start": 672, "end": 677, "annotation": null}, {"text": "substrate", "start": 678, "end": 687, "annotation": null}, {"text": ".", "start": 687, "end": 688, "annotation": null}], [{"text": "Experimental", "start": 689, "end": 701, "annotation": null}, {"text": "refractive", "start": 702, "end": 712, "annotation": null}, {"text": "index", "start": 713, "end": 718, "annotation": null}, {"text": "values", "start": 719, "end": 725, "annotation": null}, {"text": "of", "start": 726, "end": 728, "annotation": null}, {"text": "water", "start": 729, "end": 734, "annotation": null}, {"text": "samples", "start": 735, "end": 742, "annotation": null}, {"text": "containing", "start": 743, "end": 753, "annotation": null}, {"text": "different", "start": 754, "end": 763, "annotation": null}, {"text": "NaCl", "start": 764, "end": 768, "annotation": null}, {"text": "concentrations", "start": 769, "end": 783, "annotation": null}, {"text": "are", "start": 784, "end": 787, "annotation": null}, {"text": "taken", "start": 788, "end": 793, "annotation": null}, {"text": "as", "start": 794, "end": 796, "annotation": null}, {"text": "the", "start": 797, "end": 800, "annotation": null}, {"text": "sensing", "start": 801, "end": 808, "annotation": null}, {"text": "medium", "start": 809, "end": 815, "annotation": null}, {"text": "for", "start": 816, "end": 819, "annotation": null}, {"text": "design", "start": 820, "end": 826, "annotation": null}, {"text": "and", "start": 827, "end": 830, "annotation": null}, {"text": "modelling", "start": 831, "end": 840, "annotation": null}, {"text": "of", "start": 841, "end": 843, "annotation": null}, {"text": "the", "start": 844, "end": 847, "annotation": null}, {"text": "sensor", "start": 848, "end": 854, "annotation": null}, {"text": ".", "start": 854, "end": 855, "annotation": null}], [{"text": "The", "start": 856, "end": 859, "annotation": null}, {"text": "analysis", "start": 860, "end": 868, "annotation": null}, {"text": "was", "start": 869, "end": 872, "annotation": null}, {"text": "carried", "start": 873, "end": 880, "annotation": null}, {"text": "out", "start": 881, "end": 884, "annotation": null}, {"text": "for", "start": 885, "end": 888, "annotation": null}, {"text": "some", "start": 889, "end": 893, "annotation": null}, {"text": "different", "start": 894, "end": 903, "annotation": null}, {"text": "samples", "start": 904, "end": 911, "annotation": null}, {"text": "also", "start": 912, "end": 916, "annotation": null}, {"text": ".", "start": 916, "end": 917, "annotation": null}], [{"text": "An", "start": 918, "end": 920, "annotation": null}, {"text": "HBL", "start": 921, "end": 924, "annotation": null}, {"text": "-", "start": 924, "end": 925, "annotation": null}, {"text": "based", "start": 925, "end": 930, "annotation": null}, {"text": "SPR", "start": 931, "end": 934, "annotation": null}, {"text": "sensor", "start": 935, "end": 941, "annotation": null}, {"text": "is", "start": 942, "end": 944, "annotation": null}, {"text": "able", "start": 945, "end": 949, "annotation": null}, {"text": "to", "start": 950, "end": 952, "annotation": null}, {"text": "provide", "start": 953, "end": 960, "annotation": null}, {"text": "significantly", "start": 961, "end": 974, "annotation": null}, {"text": "enhanced", "start": 975, "end": 983, "annotation": null}, {"text": "sensing", "start": 984, "end": 991, "annotation": null}, {"text": "performance", "start": 992, "end": 1003, "annotation": null}, {"text": "compared", "start": 1004, "end": 1012, "annotation": null}, {"text": "with", "start": 1013, "end": 1017, "annotation": null}, {"text": "other", "start": 1018, "end": 1023, "annotation": null}, {"text": "conventional", "start": 1024, "end": 1036, "annotation": null}, {"text": "glass", "start": 1037, "end": 1042, "annotation": null}, {"text": "substrates", "start": 1043, "end": 1053, "annotation": null}, {"text": "operated", "start": 1054, "end": 1062, "annotation": null}, {"text": "in", "start": 1063, "end": 1065, "annotation": null}, {"text": "different", "start": 1066, "end": 1075, "annotation": null}, {"text": "spectral", "start": 1076, "end": 1084, "annotation": null}, {"text": "regions", "start": 1085, "end": 1092, "annotation": null}, {"text": "(", "start": 1093, "end": 1094, "annotation": null}, {"text": "SF10", "start": 1094, "end": 1098, "annotation": null}, {"text": "in", "start": 1099, "end": 1101, "annotation": null}, {"text": "visible", "start": 1102, "end": 1109, "annotation": null}, {"text": "and", "start": 1110, "end": 1113, "annotation": null}, {"text": "SiO2in", "start": 1114, "end": 1120, "annotation": null}, {"text": "NIR", "start": 1121, "end": 1124, "annotation": null}, {"text": ")", "start": 1124, "end": 1125, "annotation": null}, {"text": ".", "start": 1125, "end": 1126, "annotation": null}], [{"text": "The", "start": 1127, "end": 1130, "annotation": null}, {"text": "study", "start": 1131, "end": 1136, "annotation": null}, {"text": "paves", "start": 1137, "end": 1142, "annotation": null}, {"text": "the", "start": 1143, "end": 1146, "annotation": null}, {"text": "way", "start": 1147, "end": 1150, "annotation": null}, {"text": "for", "start": 1151, "end": 1154, "annotation": null}, {"text": "designing", "start": 1155, "end": 1164, "annotation": null}, {"text": "SPR", "start": 1165, "end": 1168, "annotation": null}, {"text": "sensor", "start": 1169, "end": 1175, "annotation": null}, {"text": "probes", "start": 1176, "end": 1182, "annotation": null}, {"text": "based", "start": 1183, "end": 1188, "annotation": null}, {"text": "on", "start": 1189, "end": 1191, "annotation": null}, {"text": "fluoride", "start": 1192, "end": 1200, "annotation": null}, {"text": "optical", "start": 1201, "end": 1208, "annotation": null}, {"text": "fibers", "start": 1209, "end": 1215, "annotation": null}, {"text": "in", "start": 1216, "end": 1218, "annotation": null}, {"text": "the", "start": 1219, "end": 1222, "annotation": null}, {"text": "IR", "start": 1223, "end": 1225, "annotation": null}, {"text": "region", "start": 1226, "end": 1232, "annotation": null}, {"text": "for", "start": 1233, "end": 1236, "annotation": null}, {"text": "different", "start": 1237, "end": 1246, "annotation": null}, {"text": "biological", "start": 1247, "end": 1257, "annotation": null}, {"text": "and", "start": 1258, "end": 1261, "annotation": null}, {"text": "chemical", "start": 1262, "end": 1270, "annotation": null}, {"text": "applications", "start": 1271, "end": 1283, "annotation": null}, {"text": ".", "start": 1283, "end": 1284, "annotation": null}]]} +{"text": "For the understanding of Ce-doped high-Tc cuprates with the so-called TA-structure, we have performed 63,65Cu and 139La NMR measurements in T\u2032-Pr1.3-xLa0.7CexCuO4+\u03b4 single crystals with x = 0.10 and 0.15. The N\u00e9el temperature (TN) was evaluated from the temperature (T) dependence of the 139La NMR line width. For x = 0.10, TN decreased from 190 K in the as-grown crystal to 60 K in the oxygen-reduced crystal annealed at 800\u00b0C. For x = 0.15, TN of 170 K in the as-grown crystal decreased to zero through the same heat treatment. The oxygen reduction strongly suppressed the antiferromagnetic (AF) order. 63,65Cu NMR spectra had a narrow center line and broad satellites with a small electric field gradient in the paramagnetic state. In the AF state, in contrast, 63,65Cu NMR spectra had a large electric field gradient. The T dependence of the 63Cu nuclear spin-lattice relaxation rate (1/T1) showed the existence of large spin fluctuations in the paramagnetic state. The spin fluctuations seem to play a key role in the appearance of superconductivity in the TA-cuprates.", "meta": {"doi": "10.7566/JPSJ.85.024708"}, "_input_hash": -967235348, "_task_hash": 1497644537, "tokens": [[{"text": "For", "start": 39, "end": 42, "id": 8, "annotation": null}, {"text": "the", "start": 43, "end": 46, "id": 9, "annotation": null}, {"text": "understanding", "start": 47, "end": 60, "id": 10, "annotation": null}, {"text": "of", "start": 61, "end": 63, "id": 11, "annotation": null}, {"text": "Ce", "start": 64, "end": 66, "id": 12, "annotation": "DOPANT"}, {"text": "-", "start": 67, "end": 68, "id": 13, "annotation": null}, {"text": "doped", "start": 69, "end": 74, "id": 14, "annotation": null}, {"text": "high", "start": 75, "end": 79, "id": 15, "annotation": null}, {"text": "-", "start": 80, "end": 81, "id": 16, "annotation": null}, {"text": "Tc", "start": 82, "end": 84, "id": 17, "annotation": null}, {"text": "cuprates", "start": 85, "end": 93, "id": 18, "annotation": "BASEMAT"}, {"text": "with", "start": 94, "end": 98, "id": 19, "annotation": null}, {"text": "the", "start": 99, "end": 102, "id": 20, "annotation": null}, {"text": "so", "start": 103, "end": 105, "id": 21, "annotation": null}, {"text": "-", "start": 106, "end": 107, "id": 22, "annotation": null}, {"text": "called", "start": 108, "end": 114, "id": 23, "annotation": null}, {"text": "TA", "start": 115, "end": 117, "id": 24, "annotation": null}, {"text": "-", "start": 118, "end": 119, "id": 25, "annotation": null}, {"text": "structure", "start": 120, "end": 129, "id": 26, "annotation": null}, {"text": ",", "start": 130, "end": 131, "id": 27, "annotation": null}, {"text": "we", "start": 132, "end": 134, "id": 28, "annotation": null}, {"text": "have", "start": 135, "end": 139, "id": 29, "annotation": null}, {"text": "performed", "start": 140, "end": 149, "id": 30, "annotation": null}, {"text": "63,65Cu", "start": 150, "end": 157, "id": 31, "annotation": null}, {"text": "and", "start": 158, "end": 161, "id": 32, "annotation": null}, {"text": "139La", "start": 162, "end": 167, "id": 33, "annotation": null}, {"text": "NMR", "start": 168, "end": 171, "id": 34, "annotation": null}, {"text": "measurements", "start": 172, "end": 184, "id": 35, "annotation": null}, {"text": "in", "start": 185, "end": 187, "id": 36, "annotation": null}, {"text": "T\u2032-Pr1.3-xLa0.7CexCuO4+\u03b4", "start": 188, "end": 212, "id": 37, "annotation": null}, {"text": "single", "start": 213, "end": 219, "id": 38, "annotation": null}, {"text": "crystals", "start": 220, "end": 228, "id": 39, "annotation": null}, {"text": "with", "start": 229, "end": 233, "id": 40, "annotation": null}, {"text": "x", "start": 234, "end": 235, "id": 41, "annotation": "DOPMODQ"}, {"text": "=", "start": 236, "end": 237, "id": 42, "annotation": "DOPMODQ"}, {"text": "0.10", "start": 238, "end": 242, "id": 43, "annotation": "DOPMODQ"}, {"text": "and", "start": 243, "end": 246, "id": 44, "annotation": "DOPMODQ"}, {"text": "0.15", "start": 247, "end": 251, "id": 45, "annotation": "DOPMODQ"}, {"text": ".", "start": 252, "end": 253, "id": 46, "annotation": null}], [{"text": "The", "start": 254, "end": 257, "id": 47, "annotation": null}, {"text": "N\u00e9el", "start": 258, "end": 262, "id": 48, "annotation": null}, {"text": "temperature", "start": 263, "end": 274, "id": 49, "annotation": null}, {"text": "(", "start": 275, "end": 276, "id": 50, "annotation": null}, {"text": "TN", "start": 277, "end": 279, "id": 51, "annotation": null}, {"text": ")", "start": 280, "end": 281, "id": 52, "annotation": null}, {"text": "was", "start": 282, "end": 285, "id": 53, "annotation": null}, {"text": "evaluated", "start": 286, "end": 295, "id": 54, "annotation": null}, {"text": "from", "start": 296, "end": 300, "id": 55, "annotation": null}, {"text": "the", "start": 301, "end": 304, "id": 56, "annotation": null}, {"text": "temperature", "start": 305, "end": 316, "id": 57, "annotation": null}, {"text": "(", "start": 317, "end": 318, "id": 58, "annotation": null}, {"text": "T", "start": 319, "end": 320, "id": 59, "annotation": null}, {"text": ")", "start": 321, "end": 322, "id": 60, "annotation": null}, {"text": "dependence", "start": 323, "end": 333, "id": 61, "annotation": null}, {"text": "of", "start": 334, "end": 336, "id": 62, "annotation": null}, {"text": "the", "start": 337, "end": 340, "id": 63, "annotation": null}, {"text": "139La", "start": 341, "end": 346, "id": 64, "annotation": null}, {"text": "NMR", "start": 347, "end": 350, "id": 65, "annotation": null}, {"text": "line", "start": 351, "end": 355, "id": 66, "annotation": null}, {"text": "width", "start": 356, "end": 361, "id": 67, "annotation": null}, {"text": ".", "start": 362, "end": 363, "id": 68, "annotation": null}], [{"text": "For", "start": 364, "end": 367, "id": 69, "annotation": null}, {"text": "x", "start": 368, "end": 369, "id": 70, "annotation": "DOPMODQ"}, {"text": "=", "start": 370, "end": 371, "id": 71, "annotation": "DOPMODQ"}, {"text": "0.10", "start": 372, "end": 376, "id": 72, "annotation": "DOPMODQ"}, {"text": ",", "start": 377, "end": 378, "id": 73, "annotation": null}, {"text": "TN", "start": 379, "end": 381, "id": 74, "annotation": null}, {"text": "decreased", "start": 382, "end": 391, "id": 75, "annotation": null}, {"text": "from", "start": 392, "end": 396, "id": 76, "annotation": null}, {"text": "190", "start": 397, "end": 400, "id": 77, "annotation": null}, {"text": "K", "start": 401, "end": 402, "id": 78, "annotation": null}, {"text": "in", "start": 403, "end": 405, "id": 79, "annotation": null}, {"text": "the", "start": 406, "end": 409, "id": 80, "annotation": null}, {"text": "as", "start": 410, "end": 412, "id": 81, "annotation": null}, {"text": "-", "start": 413, "end": 414, "id": 82, "annotation": null}, {"text": "grown", "start": 415, "end": 420, "id": 83, "annotation": null}, {"text": "crystal", "start": 421, "end": 428, "id": 84, "annotation": null}, {"text": "to", "start": 429, "end": 431, "id": 85, "annotation": null}, {"text": "60", "start": 432, "end": 434, "id": 86, "annotation": null}, {"text": "K", "start": 435, "end": 436, "id": 87, "annotation": null}, {"text": "in", "start": 437, "end": 439, "id": 88, "annotation": null}, {"text": "the", "start": 440, "end": 443, "id": 89, "annotation": null}, {"text": "oxygen", "start": 444, "end": 450, "id": 90, "annotation": null}, {"text": "-", "start": 451, "end": 452, "id": 91, "annotation": null}, {"text": "reduced", "start": 453, "end": 460, "id": 92, "annotation": null}, {"text": "crystal", "start": 461, "end": 468, "id": 93, "annotation": null}, {"text": "annealed", "start": 469, "end": 477, "id": 94, "annotation": null}, {"text": "at", "start": 478, "end": 480, "id": 95, "annotation": null}, {"text": "800", "start": 481, "end": 484, "id": 96, "annotation": null}, {"text": "\u00b0", "start": 485, "end": 486, "id": 97, "annotation": null}, {"text": "C", "start": 487, "end": 488, "id": 98, "annotation": null}, {"text": ".", "start": 489, "end": 490, "id": 99, "annotation": null}], [{"text": "For", "start": 491, "end": 494, "id": 100, "annotation": null}, {"text": "x", "start": 495, "end": 496, "id": 101, "annotation": "DOPMODQ"}, {"text": "=", "start": 497, "end": 498, "id": 102, "annotation": "DOPMODQ"}, {"text": "0.15", "start": 499, "end": 503, "id": 103, "annotation": "DOPMODQ"}, {"text": ",", "start": 504, "end": 505, "id": 104, "annotation": null}, {"text": "TN", "start": 506, "end": 508, "id": 105, "annotation": null}, {"text": "of", "start": 509, "end": 511, "id": 106, "annotation": null}, {"text": "170", "start": 512, "end": 515, "id": 107, "annotation": null}, {"text": "K", "start": 516, "end": 517, "id": 108, "annotation": null}, {"text": "in", "start": 518, "end": 520, "id": 109, "annotation": null}, {"text": "the", "start": 521, "end": 524, "id": 110, "annotation": null}, {"text": "as", "start": 525, "end": 527, "id": 111, "annotation": null}, {"text": "-", "start": 528, "end": 529, "id": 112, "annotation": null}, {"text": "grown", "start": 530, "end": 535, "id": 113, "annotation": null}, {"text": "crystal", "start": 536, "end": 543, "id": 114, "annotation": null}, {"text": "decreased", "start": 544, "end": 553, "id": 115, "annotation": null}, {"text": "to", "start": 554, "end": 556, "id": 116, "annotation": null}, {"text": "zero", "start": 557, "end": 561, "id": 117, "annotation": null}, {"text": "through", "start": 562, "end": 569, "id": 118, "annotation": null}, {"text": "the", "start": 570, "end": 573, "id": 119, "annotation": null}, {"text": "same", "start": 574, "end": 578, "id": 120, "annotation": null}, {"text": "heat", "start": 579, "end": 583, "id": 121, "annotation": null}, {"text": "treatment", "start": 584, "end": 593, "id": 122, "annotation": null}, {"text": ".", "start": 594, "end": 595, "id": 123, "annotation": null}], [{"text": "The", "start": 596, "end": 599, "id": 124, "annotation": null}, {"text": "oxygen", "start": 600, "end": 606, "id": 125, "annotation": null}, {"text": "reduction", "start": 607, "end": 616, "id": 126, "annotation": null}, {"text": "strongly", "start": 617, "end": 625, "id": 127, "annotation": null}, {"text": "suppressed", "start": 626, "end": 636, "id": 128, "annotation": null}, {"text": "the", "start": 637, "end": 640, "id": 129, "annotation": null}, {"text": "antiferromagnetic", "start": 641, "end": 658, "id": 130, "annotation": null}, {"text": "(", "start": 659, "end": 660, "id": 131, "annotation": null}, {"text": "AF", "start": 661, "end": 663, "id": 132, "annotation": null}, {"text": ")", "start": 664, "end": 665, "id": 133, "annotation": null}, {"text": "order", "start": 666, "end": 671, "id": 134, "annotation": null}, {"text": ".", "start": 672, "end": 673, "id": 135, "annotation": null}], [{"text": "63,65Cu", "start": 674, "end": 681, "id": 136, "annotation": null}, {"text": "NMR", "start": 682, "end": 685, "id": 137, "annotation": null}, {"text": "spectra", "start": 686, "end": 693, "id": 138, "annotation": null}, {"text": "had", "start": 694, "end": 697, "id": 139, "annotation": null}, {"text": "a", "start": 698, "end": 699, "id": 140, "annotation": null}, {"text": "narrow", "start": 700, "end": 706, "id": 141, "annotation": null}, {"text": "center", "start": 707, "end": 713, "id": 142, "annotation": null}, {"text": "line", "start": 714, "end": 718, "id": 143, "annotation": null}, {"text": "and", "start": 719, "end": 722, "id": 144, "annotation": null}, {"text": "broad", "start": 723, "end": 728, "id": 145, "annotation": null}, {"text": "satellites", "start": 729, "end": 739, "id": 146, "annotation": null}, {"text": "with", "start": 740, "end": 744, "id": 147, "annotation": null}, {"text": "a", "start": 745, "end": 746, "id": 148, "annotation": null}, {"text": "small", "start": 747, "end": 752, "id": 149, "annotation": null}, {"text": "electric", "start": 753, "end": 761, "id": 150, "annotation": null}, {"text": "field", "start": 762, "end": 767, "id": 151, "annotation": null}, {"text": "gradient", "start": 768, "end": 776, "id": 152, "annotation": null}, {"text": "in", "start": 777, "end": 779, "id": 153, "annotation": null}, {"text": "the", "start": 780, "end": 783, "id": 154, "annotation": null}, {"text": "paramagnetic", "start": 784, "end": 796, "id": 155, "annotation": null}, {"text": "state", "start": 797, "end": 802, "id": 156, "annotation": null}, {"text": ".", "start": 803, "end": 804, "id": 157, "annotation": null}], [{"text": "In", "start": 805, "end": 807, "id": 158, "annotation": null}, {"text": "the", "start": 808, "end": 811, "id": 159, "annotation": null}, {"text": "AF", "start": 812, "end": 814, "id": 160, "annotation": null}, {"text": "state", "start": 815, "end": 820, "id": 161, "annotation": null}, {"text": ",", "start": 821, "end": 822, "id": 162, "annotation": null}, {"text": "in", "start": 823, "end": 825, "id": 163, "annotation": null}, {"text": "contrast", "start": 826, "end": 834, "id": 164, "annotation": null}, {"text": ",", "start": 835, "end": 836, "id": 165, "annotation": null}, {"text": "63,65Cu", "start": 837, "end": 844, "id": 166, "annotation": null}, {"text": "NMR", "start": 845, "end": 848, "id": 167, "annotation": null}, {"text": "spectra", "start": 849, "end": 856, "id": 168, "annotation": null}, {"text": "had", "start": 857, "end": 860, "id": 169, "annotation": null}, {"text": "a", "start": 861, "end": 862, "id": 170, "annotation": null}, {"text": "large", "start": 863, "end": 868, "id": 171, "annotation": null}, {"text": "electric", "start": 869, "end": 877, "id": 172, "annotation": null}, {"text": "field", "start": 878, "end": 883, "id": 173, "annotation": null}, {"text": "gradient", "start": 884, "end": 892, "id": 174, "annotation": null}, {"text": ".", "start": 893, "end": 894, "id": 175, "annotation": null}], [{"text": "The", "start": 895, "end": 898, "id": 176, "annotation": null}, {"text": "T", "start": 899, "end": 900, "id": 177, "annotation": null}, {"text": "dependence", "start": 901, "end": 911, "id": 178, "annotation": null}, {"text": "of", "start": 912, "end": 914, "id": 179, "annotation": null}, {"text": "the", "start": 915, "end": 918, "id": 180, "annotation": null}, {"text": "63Cu", "start": 919, "end": 923, "id": 181, "annotation": null}, {"text": "nuclear", "start": 924, "end": 931, "id": 182, "annotation": null}, {"text": "spin", "start": 932, "end": 936, "id": 183, "annotation": null}, {"text": "-", "start": 937, "end": 938, "id": 184, "annotation": null}, {"text": "lattice", "start": 939, "end": 946, "id": 185, "annotation": null}, {"text": "relaxation", "start": 947, "end": 957, "id": 186, "annotation": null}, {"text": "rate", "start": 958, "end": 962, "id": 187, "annotation": null}, {"text": "(", "start": 963, "end": 964, "id": 188, "annotation": null}, {"text": "1", "start": 965, "end": 966, "id": 189, "annotation": null}, {"text": "/", "start": 967, "end": 968, "id": 190, "annotation": null}, {"text": "T1", "start": 969, "end": 971, "id": 191, "annotation": null}, {"text": ")", "start": 972, "end": 973, "id": 192, "annotation": null}, {"text": "showed", "start": 974, "end": 980, "id": 193, "annotation": null}, {"text": "the", "start": 981, "end": 984, "id": 194, "annotation": null}, {"text": "existence", "start": 985, "end": 994, "id": 195, "annotation": null}, {"text": "of", "start": 995, "end": 997, "id": 196, "annotation": null}, {"text": "large", "start": 998, "end": 1003, "id": 197, "annotation": null}, {"text": "spin", "start": 1004, "end": 1008, "id": 198, "annotation": null}, {"text": "fluctuations", "start": 1009, "end": 1021, "id": 199, "annotation": null}, {"text": "in", "start": 1022, "end": 1024, "id": 200, "annotation": null}, {"text": "the", "start": 1025, "end": 1028, "id": 201, "annotation": null}, {"text": "paramagnetic", "start": 1029, "end": 1041, "id": 202, "annotation": null}, {"text": "state", "start": 1042, "end": 1047, "id": 203, "annotation": null}, {"text": ".", "start": 1048, "end": 1049, "id": 204, "annotation": null}], [{"text": "The", "start": 1050, "end": 1053, "id": 205, "annotation": null}, {"text": "spin", "start": 1054, "end": 1058, "id": 206, "annotation": null}, {"text": "fluctuations", "start": 1059, "end": 1071, "id": 207, "annotation": null}, {"text": "seem", "start": 1072, "end": 1076, "id": 208, "annotation": null}, {"text": "to", "start": 1077, "end": 1079, "id": 209, "annotation": null}, {"text": "play", "start": 1080, "end": 1084, "id": 210, "annotation": null}, {"text": "a", "start": 1085, "end": 1086, "id": 211, "annotation": null}, {"text": "key", "start": 1087, "end": 1090, "id": 212, "annotation": null}, {"text": "role", "start": 1091, "end": 1095, "id": 213, "annotation": null}, {"text": "in", "start": 1096, "end": 1098, "id": 214, "annotation": null}, {"text": "the", "start": 1099, "end": 1102, "id": 215, "annotation": null}, {"text": "appearance", "start": 1103, "end": 1113, "id": 216, "annotation": null}, {"text": "of", "start": 1114, "end": 1116, "id": 217, "annotation": null}, {"text": "superconductivity", "start": 1117, "end": 1134, "id": 218, "annotation": null}, {"text": "in", "start": 1135, "end": 1137, "id": 219, "annotation": null}, {"text": "the", "start": 1138, "end": 1141, "id": 220, "annotation": null}, {"text": "TA", "start": 1142, "end": 1144, "id": 221, "annotation": null}, {"text": "-", "start": 1145, "end": 1146, "id": 222, "annotation": null}, {"text": "cuprates", "start": 1147, "end": 1155, "id": 223, "annotation": null}, {"text": ".", "start": 1156, "end": 1157, "id": 224, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "\u00a9 2017 IOP Publishing Ltd. Excitation parameters shown by a plasmonic structure are different in the near infrared (NIR) region as compared with that of the visible region. Fluoride-based glass materials show high transparency in the infrared (IR) region, which plays an important role from an experimental point of view. In order to explore optical sensors based on a heavy metal doped fluoride substrate, performance of a surface plasmon resonance (SPR) based sensor having HBL glass as the substrate material to couple direct light in the NIR region is discussed. The proposed sensor's structure is based on Kretschmann configuration with gold (Au) deposited on an HBL glass substrate. Experimental refractive index values of water samples containing different NaCl concentrations are taken as the sensing medium for design and modelling of the sensor. The analysis was carried out for some different samples also. An HBL-based SPR sensor is able to provide significantly enhanced sensing performance compared with other conventional glass substrates operated in different spectral regions (SF10 in visible and SiO2in NIR). The study paves the way for designing SPR sensor probes based on fluoride optical fibers in the IR region for different biological and chemical applications.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Fluoride", "start": 173, "end": 181, "annotation": null}, {"text": "-", "start": 181, "end": 182, "annotation": null}, {"text": "based", "start": 182, "end": 187, "annotation": null}, {"text": "glass", "start": 188, "end": 193, "annotation": null}, {"text": "materials", "start": 194, "end": 203, "annotation": null}, {"text": "show", "start": 204, "end": 208, "annotation": null}, {"text": "high", "start": 209, "end": 213, "annotation": null}, {"text": "transparency", "start": 214, "end": 226, "annotation": null}, {"text": "in", "start": 227, "end": 229, "annotation": null}, {"text": "the", "start": 230, "end": 233, "annotation": null}, {"text": "infrared", "start": 234, "end": 242, "annotation": null}, {"text": "(", "start": 243, "end": 244, "annotation": null}, {"text": "IR", "start": 244, "end": 246, "annotation": null}, {"text": ")", "start": 246, "end": 247, "annotation": null}, {"text": "region", "start": 248, "end": 254, "annotation": null}, {"text": ",", "start": 254, "end": 255, "annotation": null}, {"text": "which", "start": 256, "end": 261, "annotation": null}, {"text": "plays", "start": 262, "end": 267, "annotation": null}, {"text": "an", "start": 268, "end": 270, "annotation": null}, {"text": "important", "start": 271, "end": 280, "annotation": null}, {"text": "role", "start": 281, "end": 285, "annotation": null}, {"text": "from", "start": 286, "end": 290, "annotation": null}, {"text": "an", "start": 291, "end": 293, "annotation": null}, {"text": "experimental", "start": 294, "end": 306, "annotation": null}, {"text": "point", "start": 307, "end": 312, "annotation": null}, {"text": "of", "start": 313, "end": 315, "annotation": null}, {"text": "view", "start": 316, "end": 320, "annotation": null}, {"text": ".", "start": 320, "end": 321, "annotation": null}], [{"text": "In", "start": 322, "end": 324, "annotation": null}, {"text": "order", "start": 325, "end": 330, "annotation": null}, {"text": "to", "start": 331, "end": 333, "annotation": null}, {"text": "explore", "start": 334, "end": 341, "annotation": null}, {"text": "optical", "start": 342, "end": 349, "annotation": null}, {"text": "sensors", "start": 350, "end": 357, "annotation": null}, {"text": "based", "start": 358, "end": 363, "annotation": null}, {"text": "on", "start": 364, "end": 366, "annotation": null}, {"text": "a", "start": 367, "end": 368, "annotation": null}, {"text": "heavy", "start": 369, "end": 374, "annotation": "DOPANT"}, {"text": "metal", "start": 375, "end": 380, "annotation": "DOPANT"}, {"text": "doped", "start": 381, "end": 386, "annotation": null}, {"text": "fluoride", "start": 387, "end": 395, "annotation": "BASEMAT"}, {"text": "substrate", "start": 396, "end": 405, "annotation": null}, {"text": ",", "start": 405, "end": 406, "annotation": null}, {"text": "performance", "start": 407, "end": 418, "annotation": null}, {"text": "of", "start": 419, "end": 421, "annotation": null}, {"text": "a", "start": 422, "end": 423, "annotation": null}, {"text": "surface", "start": 424, "end": 431, "annotation": null}, {"text": "plasmon", "start": 432, "end": 439, "annotation": null}, {"text": "resonance", "start": 440, "end": 449, "annotation": null}, {"text": "(", "start": 450, "end": 451, "annotation": null}, {"text": "SPR", "start": 451, "end": 454, "annotation": null}, {"text": ")", "start": 454, "end": 455, "annotation": null}, {"text": "based", "start": 456, "end": 461, "annotation": null}, {"text": "sensor", "start": 462, "end": 468, "annotation": null}, {"text": "having", "start": 469, "end": 475, "annotation": null}, {"text": "HBL", "start": 476, "end": 479, "annotation": null}, {"text": "glass", "start": 480, "end": 485, "annotation": null}, {"text": "as", "start": 486, "end": 488, "annotation": null}, {"text": "the", "start": 489, "end": 492, "annotation": null}, {"text": "substrate", "start": 493, "end": 502, "annotation": null}, {"text": "material", "start": 503, "end": 511, "annotation": null}, {"text": "to", "start": 512, "end": 514, "annotation": null}, {"text": "couple", "start": 515, "end": 521, "annotation": null}, {"text": "direct", "start": 522, "end": 528, "annotation": null}, {"text": "light", "start": 529, "end": 534, "annotation": null}, {"text": "in", "start": 535, "end": 537, "annotation": null}, {"text": "the", "start": 538, "end": 541, "annotation": null}, {"text": "NIR", "start": 542, "end": 545, "annotation": null}, {"text": "region", "start": 546, "end": 552, "annotation": null}, {"text": "is", "start": 553, "end": 555, "annotation": null}, {"text": "discussed", "start": 556, "end": 565, "annotation": null}, {"text": ".", "start": 565, "end": 566, "annotation": null}], [{"text": "The", "start": 567, "end": 570, "annotation": null}, {"text": "proposed", "start": 571, "end": 579, "annotation": null}, {"text": "sensor", "start": 580, "end": 586, "annotation": null}, {"text": "'s", "start": 586, "end": 588, "annotation": null}, {"text": "structure", "start": 589, "end": 598, "annotation": null}, {"text": "is", "start": 599, "end": 601, "annotation": null}, {"text": "based", "start": 602, "end": 607, "annotation": null}, {"text": "on", "start": 608, "end": 610, "annotation": null}, {"text": "Kretschmann", "start": 611, "end": 622, "annotation": null}, {"text": "configuration", "start": 623, "end": 636, "annotation": null}, {"text": "with", "start": 637, "end": 641, "annotation": null}, {"text": "gold", "start": 642, "end": 646, "annotation": null}, {"text": "(", "start": 647, "end": 648, "annotation": null}, {"text": "Au", "start": 648, "end": 650, "annotation": null}, {"text": ")", "start": 650, "end": 651, "annotation": null}, {"text": "deposited", "start": 652, "end": 661, "annotation": null}, {"text": "on", "start": 662, "end": 664, "annotation": null}, {"text": "an", "start": 665, "end": 667, "annotation": null}, {"text": "HBL", "start": 668, "end": 671, "annotation": null}, {"text": "glass", "start": 672, "end": 677, "annotation": null}, {"text": "substrate", "start": 678, "end": 687, "annotation": null}, {"text": ".", "start": 687, "end": 688, "annotation": null}], [{"text": "Experimental", "start": 689, "end": 701, "annotation": null}, {"text": "refractive", "start": 702, "end": 712, "annotation": null}, {"text": "index", "start": 713, "end": 718, "annotation": null}, {"text": "values", "start": 719, "end": 725, "annotation": null}, {"text": "of", "start": 726, "end": 728, "annotation": null}, {"text": "water", "start": 729, "end": 734, "annotation": null}, {"text": "samples", "start": 735, "end": 742, "annotation": null}, {"text": "containing", "start": 743, "end": 753, "annotation": null}, {"text": "different", "start": 754, "end": 763, "annotation": null}, {"text": "NaCl", "start": 764, "end": 768, "annotation": null}, {"text": "concentrations", "start": 769, "end": 783, "annotation": null}, {"text": "are", "start": 784, "end": 787, "annotation": null}, {"text": "taken", "start": 788, "end": 793, "annotation": null}, {"text": "as", "start": 794, "end": 796, "annotation": null}, {"text": "the", "start": 797, "end": 800, "annotation": null}, {"text": "sensing", "start": 801, "end": 808, "annotation": null}, {"text": "medium", "start": 809, "end": 815, "annotation": null}, {"text": "for", "start": 816, "end": 819, "annotation": null}, {"text": "design", "start": 820, "end": 826, "annotation": null}, {"text": "and", "start": 827, "end": 830, "annotation": null}, {"text": "modelling", "start": 831, "end": 840, "annotation": null}, {"text": "of", "start": 841, "end": 843, "annotation": null}, {"text": "the", "start": 844, "end": 847, "annotation": null}, {"text": "sensor", "start": 848, "end": 854, "annotation": null}, {"text": ".", "start": 854, "end": 855, "annotation": null}], [{"text": "The", "start": 856, "end": 859, "annotation": null}, {"text": "analysis", "start": 860, "end": 868, "annotation": null}, {"text": "was", "start": 869, "end": 872, "annotation": null}, {"text": "carried", "start": 873, "end": 880, "annotation": null}, {"text": "out", "start": 881, "end": 884, "annotation": null}, {"text": "for", "start": 885, "end": 888, "annotation": null}, {"text": "some", "start": 889, "end": 893, "annotation": null}, {"text": "different", "start": 894, "end": 903, "annotation": null}, {"text": "samples", "start": 904, "end": 911, "annotation": null}, {"text": "also", "start": 912, "end": 916, "annotation": null}, {"text": ".", "start": 916, "end": 917, "annotation": null}], [{"text": "An", "start": 918, "end": 920, "annotation": null}, {"text": "HBL", "start": 921, "end": 924, "annotation": null}, {"text": "-", "start": 924, "end": 925, "annotation": null}, {"text": "based", "start": 925, "end": 930, "annotation": null}, {"text": "SPR", "start": 931, "end": 934, "annotation": null}, {"text": "sensor", "start": 935, "end": 941, "annotation": null}, {"text": "is", "start": 942, "end": 944, "annotation": null}, {"text": "able", "start": 945, "end": 949, "annotation": null}, {"text": "to", "start": 950, "end": 952, "annotation": null}, {"text": "provide", "start": 953, "end": 960, "annotation": null}, {"text": "significantly", "start": 961, "end": 974, "annotation": null}, {"text": "enhanced", "start": 975, "end": 983, "annotation": null}, {"text": "sensing", "start": 984, "end": 991, "annotation": null}, {"text": "performance", "start": 992, "end": 1003, "annotation": null}, {"text": "compared", "start": 1004, "end": 1012, "annotation": null}, {"text": "with", "start": 1013, "end": 1017, "annotation": null}, {"text": "other", "start": 1018, "end": 1023, "annotation": null}, {"text": "conventional", "start": 1024, "end": 1036, "annotation": null}, {"text": "glass", "start": 1037, "end": 1042, "annotation": null}, {"text": "substrates", "start": 1043, "end": 1053, "annotation": null}, {"text": "operated", "start": 1054, "end": 1062, "annotation": null}, {"text": "in", "start": 1063, "end": 1065, "annotation": null}, {"text": "different", "start": 1066, "end": 1075, "annotation": null}, {"text": "spectral", "start": 1076, "end": 1084, "annotation": null}, {"text": "regions", "start": 1085, "end": 1092, "annotation": null}, {"text": "(", "start": 1093, "end": 1094, "annotation": null}, {"text": "SF10", "start": 1094, "end": 1098, "annotation": null}, {"text": "in", "start": 1099, "end": 1101, "annotation": null}, {"text": "visible", "start": 1102, "end": 1109, "annotation": null}, {"text": "and", "start": 1110, "end": 1113, "annotation": null}, {"text": "SiO2in", "start": 1114, "end": 1120, "annotation": null}, {"text": "NIR", "start": 1121, "end": 1124, "annotation": null}, {"text": ")", "start": 1124, "end": 1125, "annotation": null}, {"text": ".", "start": 1125, "end": 1126, "annotation": null}], [{"text": "The", "start": 1127, "end": 1130, "annotation": null}, {"text": "study", "start": 1131, "end": 1136, "annotation": null}, {"text": "paves", "start": 1137, "end": 1142, "annotation": null}, {"text": "the", "start": 1143, "end": 1146, "annotation": null}, {"text": "way", "start": 1147, "end": 1150, "annotation": null}, {"text": "for", "start": 1151, "end": 1154, "annotation": null}, {"text": "designing", "start": 1155, "end": 1164, "annotation": null}, {"text": "SPR", "start": 1165, "end": 1168, "annotation": null}, {"text": "sensor", "start": 1169, "end": 1175, "annotation": null}, {"text": "probes", "start": 1176, "end": 1182, "annotation": null}, {"text": "based", "start": 1183, "end": 1188, "annotation": null}, {"text": "on", "start": 1189, "end": 1191, "annotation": null}, {"text": "fluoride", "start": 1192, "end": 1200, "annotation": null}, {"text": "optical", "start": 1201, "end": 1208, "annotation": null}, {"text": "fibers", "start": 1209, "end": 1215, "annotation": null}, {"text": "in", "start": 1216, "end": 1218, "annotation": null}, {"text": "the", "start": 1219, "end": 1222, "annotation": null}, {"text": "IR", "start": 1223, "end": 1225, "annotation": null}, {"text": "region", "start": 1226, "end": 1232, "annotation": null}, {"text": "for", "start": 1233, "end": 1236, "annotation": null}, {"text": "different", "start": 1237, "end": 1246, "annotation": null}, {"text": "biological", "start": 1247, "end": 1257, "annotation": null}, {"text": "and", "start": 1258, "end": 1261, "annotation": null}, {"text": "chemical", "start": 1262, "end": 1270, "annotation": null}, {"text": "applications", "start": 1271, "end": 1283, "annotation": null}, {"text": ".", "start": 1283, "end": 1284, "annotation": null}]], "meta": {"doi": "10.1088/1361-6463/aa66aa"}} {"text": "Photodeposition of Pt on the Sc-doped La5Ti2CuS5O7 (Sc-LTC) photocathode, a visible-light-responsive semiconducting oxysulfide, is accomplished in a solution containing H2PtCl6 and K2C2O4. Pt particles are selectively deposited on the top surface of rod-like Sc-LTC particles as a result of one-dimensional transfer of photogenerated electrons.", "meta": {"doi": "10.1039/C4CC10297E"}, "_input_hash": 1416170631, "_task_hash": 1955932384, "tokens": [[{"text": "Photodeposition", "start": 0, "end": 15, "id": 0, "annotation": null}, {"text": "of", "start": 16, "end": 18, "id": 1, "annotation": null}, {"text": "Pt", "start": 19, "end": 21, "id": 2, "annotation": null}, {"text": "on", "start": 22, "end": 24, "id": 3, "annotation": null}, {"text": "the", "start": 25, "end": 28, "id": 4, "annotation": null}, {"text": "Sc", "start": 29, "end": 31, "id": 5, "annotation": "DOPANT"}, {"text": "-", "start": 32, "end": 33, "id": 6, "annotation": null}, {"text": "doped", "start": 34, "end": 39, "id": 7, "annotation": null}, {"text": "La5Ti2CuS5O7", "start": 40, "end": 52, "id": 8, "annotation": "BASEMAT"}, {"text": "(", "start": 53, "end": 54, "id": 9, "annotation": null}, {"text": "Sc", "start": 55, "end": 57, "id": 10, "annotation": "DOPANT"}, {"text": "-", "start": 58, "end": 59, "id": 11, "annotation": null}, {"text": "LTC", "start": 60, "end": 63, "id": 12, "annotation": "BASEMAT"}, {"text": ")", "start": 64, "end": 65, "id": 13, "annotation": null}, {"text": "photocathode", "start": 66, "end": 78, "id": 14, "annotation": null}, {"text": ",", "start": 79, "end": 80, "id": 15, "annotation": null}, {"text": "a", "start": 81, "end": 82, "id": 16, "annotation": null}, {"text": "visible", "start": 83, "end": 90, "id": 17, "annotation": null}, {"text": "-", "start": 91, "end": 92, "id": 18, "annotation": null}, {"text": "light", "start": 93, "end": 98, "id": 19, "annotation": null}, {"text": "-", "start": 99, "end": 100, "id": 20, "annotation": null}, {"text": "responsive", "start": 101, "end": 111, "id": 21, "annotation": null}, {"text": "semiconducting", "start": 112, "end": 126, "id": 22, "annotation": null}, {"text": "oxysulfide", "start": 127, "end": 137, "id": 23, "annotation": null}, {"text": ",", "start": 138, "end": 139, "id": 24, "annotation": null}, {"text": "is", "start": 140, "end": 142, "id": 25, "annotation": null}, {"text": "accomplished", "start": 143, "end": 155, "id": 26, "annotation": null}, {"text": "in", "start": 156, "end": 158, "id": 27, "annotation": null}, {"text": "a", "start": 159, "end": 160, "id": 28, "annotation": null}, {"text": "solution", "start": 161, "end": 169, "id": 29, "annotation": null}, {"text": "containing", "start": 170, "end": 180, "id": 30, "annotation": null}, {"text": "H2PtCl6", "start": 181, "end": 188, "id": 31, "annotation": null}, {"text": "and", "start": 189, "end": 192, "id": 32, "annotation": null}, {"text": "K2C2O4", "start": 193, "end": 199, "id": 33, "annotation": null}, {"text": ".", "start": 200, "end": 201, "id": 34, "annotation": null}], [{"text": "Pt", "start": 202, "end": 204, "id": 35, "annotation": null}, {"text": "particles", "start": 205, "end": 214, "id": 36, "annotation": null}, {"text": "are", "start": 215, "end": 218, "id": 37, "annotation": null}, {"text": "selectively", "start": 219, "end": 230, "id": 38, "annotation": null}, {"text": "deposited", "start": 231, "end": 240, "id": 39, "annotation": null}, {"text": "on", "start": 241, "end": 243, "id": 40, "annotation": null}, {"text": "the", "start": 244, "end": 247, "id": 41, "annotation": null}, {"text": "top", "start": 248, "end": 251, "id": 42, "annotation": null}, {"text": "surface", "start": 252, "end": 259, "id": 43, "annotation": null}, {"text": "of", "start": 260, "end": 262, "id": 44, "annotation": null}, {"text": "rod", "start": 263, "end": 266, "id": 45, "annotation": null}, {"text": "-", "start": 267, "end": 268, "id": 46, "annotation": null}, {"text": "like", "start": 269, "end": 273, "id": 47, "annotation": null}, {"text": "Sc", "start": 274, "end": 276, "id": 48, "annotation": "DOPANT"}, {"text": "-", "start": 277, "end": 278, "id": 49, "annotation": null}, {"text": "LTC", "start": 279, "end": 282, "id": 50, "annotation": "BASEMAT"}, {"text": "particles", "start": 283, "end": 292, "id": 51, "annotation": null}, {"text": "as", "start": 293, "end": 295, "id": 52, "annotation": null}, {"text": "a", "start": 296, "end": 297, "id": 53, "annotation": null}, {"text": "result", "start": 298, "end": 304, "id": 54, "annotation": null}, {"text": "of", "start": 305, "end": 307, "id": 55, "annotation": null}, {"text": "one", "start": 308, "end": 311, "id": 56, "annotation": null}, {"text": "-", "start": 312, "end": 313, "id": 57, "annotation": null}, {"text": "dimensional", "start": 314, "end": 325, "id": 58, "annotation": null}, {"text": "transfer", "start": 326, "end": 334, "id": 59, "annotation": null}, {"text": "of", "start": 335, "end": 337, "id": 60, "annotation": null}, {"text": "photogenerated", "start": 338, "end": 352, "id": 61, "annotation": null}, {"text": "electrons", "start": 353, "end": 362, "id": 62, "annotation": null}, {"text": ".", "start": 363, "end": 364, "id": 63, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "\u00a9 2018 Elsevier B.V. Cerium (IV) oxide (CeO 2 ) is the most accessible noble rare earth metal oxide for the excitation of the excitons by light-harvesting performance. The present work is focused on Erbium doped ceria nanoparticles that were beneficially obtained by hydrothermal method from cerium nitrate and Erbium nitrate as precursors for decomposition of Rhodamine-B (RhB) dye in the polluted waste water removed from the industries. Dye removal efficiency of the catalyst was found to be nearly ~94%. The structural phases, functional groups and the transitions are identified with the help of various techniques. XRD pattern determines the development of cubic phase with the particle size is 20 nm. Highly crystalline nature of as-synthesized nanomaterials with an average diameter of 35 nm was investigated by HRSEM. The crystalline size, shape and textural morphology, of the Erbium doped ceria nanostructures were analysed by HRTEM. Our results suggest, that the concentration of OH\u2013 ion determines the lattice constants and oxygen vacancy in the nanostructures which stimulate the probability of photocatalytic decomposition effect of organic pollutants, due to synergistic approach. In this context, both unhydrolyzed things and their swiftly drip from deceased or scratched cells with conceded membranes, even when the cells embrace some are outstanding attention. Although, the loss of viable cells also depends on epithelial cell dynamically conceal of numerous molar matrix.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 168, "end": 171, "annotation": null}, {"text": "present", "start": 172, "end": 179, "annotation": null}, {"text": "work", "start": 180, "end": 184, "annotation": null}, {"text": "is", "start": 185, "end": 187, "annotation": null}, {"text": "focused", "start": 188, "end": 195, "annotation": null}, {"text": "on", "start": 196, "end": 198, "annotation": null}, {"text": "Erbium", "start": 199, "end": 205, "annotation": "DOPANT"}, {"text": "doped", "start": 206, "end": 211, "annotation": null}, {"text": "ceria", "start": 212, "end": 217, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 218, "end": 231, "annotation": null}, {"text": "that", "start": 232, "end": 236, "annotation": null}, {"text": "were", "start": 237, "end": 241, "annotation": null}, {"text": "beneficially", "start": 242, "end": 254, "annotation": null}, {"text": "obtained", "start": 255, "end": 263, "annotation": null}, {"text": "by", "start": 264, "end": 266, "annotation": null}, {"text": "hydrothermal", "start": 267, "end": 279, "annotation": null}, {"text": "method", "start": 280, "end": 286, "annotation": null}, {"text": "from", "start": 287, "end": 291, "annotation": null}, {"text": "cerium", "start": 292, "end": 298, "annotation": null}, {"text": "nitrate", "start": 299, "end": 306, "annotation": null}, {"text": "and", "start": 307, "end": 310, "annotation": null}, {"text": "Erbium", "start": 311, "end": 317, "annotation": null}, {"text": "nitrate", "start": 318, "end": 325, "annotation": null}, {"text": "as", "start": 326, "end": 328, "annotation": null}, {"text": "precursors", "start": 329, "end": 339, "annotation": null}, {"text": "for", "start": 340, "end": 343, "annotation": null}, {"text": "decomposition", "start": 344, "end": 357, "annotation": null}, {"text": "of", "start": 358, "end": 360, "annotation": null}, {"text": "Rhodamine-B", "start": 361, "end": 372, "annotation": null}, {"text": "(", "start": 373, "end": 374, "annotation": null}, {"text": "RhB", "start": 374, "end": 377, "annotation": null}, {"text": ")", "start": 377, "end": 378, "annotation": null}, {"text": "dye", "start": 379, "end": 382, "annotation": null}, {"text": "in", "start": 383, "end": 385, "annotation": null}, {"text": "the", "start": 386, "end": 389, "annotation": null}, {"text": "polluted", "start": 390, "end": 398, "annotation": null}, {"text": "waste", "start": 399, "end": 404, "annotation": null}, {"text": "water", "start": 405, "end": 410, "annotation": null}, {"text": "removed", "start": 411, "end": 418, "annotation": null}, {"text": "from", "start": 419, "end": 423, "annotation": null}, {"text": "the", "start": 424, "end": 427, "annotation": null}, {"text": "industries", "start": 428, "end": 438, "annotation": null}, {"text": ".", "start": 438, "end": 439, "annotation": null}], [{"text": "Dye", "start": 440, "end": 443, "annotation": null}, {"text": "removal", "start": 444, "end": 451, "annotation": null}, {"text": "efficiency", "start": 452, "end": 462, "annotation": null}, {"text": "of", "start": 463, "end": 465, "annotation": null}, {"text": "the", "start": 466, "end": 469, "annotation": null}, {"text": "catalyst", "start": 470, "end": 478, "annotation": null}, {"text": "was", "start": 479, "end": 482, "annotation": null}, {"text": "found", "start": 483, "end": 488, "annotation": null}, {"text": "to", "start": 489, "end": 491, "annotation": null}, {"text": "be", "start": 492, "end": 494, "annotation": null}, {"text": "nearly", "start": 495, "end": 501, "annotation": null}, {"text": "~", "start": 502, "end": 503, "annotation": null}, {"text": "94", "start": 503, "end": 505, "annotation": null}, {"text": "%", "start": 505, "end": 506, "annotation": null}, {"text": ".", "start": 506, "end": 507, "annotation": null}], [{"text": "The", "start": 508, "end": 511, "annotation": null}, {"text": "structural", "start": 512, "end": 522, "annotation": null}, {"text": "phases", "start": 523, "end": 529, "annotation": null}, {"text": ",", "start": 529, "end": 530, "annotation": null}, {"text": "functional", "start": 531, "end": 541, "annotation": null}, {"text": "groups", "start": 542, "end": 548, "annotation": null}, {"text": "and", "start": 549, "end": 552, "annotation": null}, {"text": "the", "start": 553, "end": 556, "annotation": null}, {"text": "transitions", "start": 557, "end": 568, "annotation": null}, {"text": "are", "start": 569, "end": 572, "annotation": null}, {"text": "identified", "start": 573, "end": 583, "annotation": null}, {"text": "with", "start": 584, "end": 588, "annotation": null}, {"text": "the", "start": 589, "end": 592, "annotation": null}, {"text": "help", "start": 593, "end": 597, "annotation": null}, {"text": "of", "start": 598, "end": 600, "annotation": null}, {"text": "various", "start": 601, "end": 608, "annotation": null}, {"text": "techniques", "start": 609, "end": 619, "annotation": null}, {"text": ".", "start": 619, "end": 620, "annotation": null}], [{"text": "XRD", "start": 621, "end": 624, "annotation": null}, {"text": "pattern", "start": 625, "end": 632, "annotation": null}, {"text": "determines", "start": 633, "end": 643, "annotation": null}, {"text": "the", "start": 644, "end": 647, "annotation": null}, {"text": "development", "start": 648, "end": 659, "annotation": null}, {"text": "of", "start": 660, "end": 662, "annotation": null}, {"text": "cubic", "start": 663, "end": 668, "annotation": null}, {"text": "phase", "start": 669, "end": 674, "annotation": null}, {"text": "with", "start": 675, "end": 679, "annotation": null}, {"text": "the", "start": 680, "end": 683, "annotation": null}, {"text": "particle", "start": 684, "end": 692, "annotation": null}, {"text": "size", "start": 693, "end": 697, "annotation": null}, {"text": "is", "start": 698, "end": 700, "annotation": null}, {"text": "20", "start": 701, "end": 703, "annotation": null}, {"text": "nm", "start": 704, "end": 706, "annotation": null}, {"text": ".", "start": 706, "end": 707, "annotation": null}], [{"text": "Highly", "start": 708, "end": 714, "annotation": null}, {"text": "crystalline", "start": 715, "end": 726, "annotation": null}, {"text": "nature", "start": 727, "end": 733, "annotation": null}, {"text": "of", "start": 734, "end": 736, "annotation": null}, {"text": "as-synthesized", "start": 737, "end": 751, "annotation": null}, {"text": "nanomaterials", "start": 752, "end": 765, "annotation": null}, {"text": "with", "start": 766, "end": 770, "annotation": null}, {"text": "an", "start": 771, "end": 773, "annotation": null}, {"text": "average", "start": 774, "end": 781, "annotation": null}, {"text": "diameter", "start": 782, "end": 790, "annotation": null}, {"text": "of", "start": 791, "end": 793, "annotation": null}, {"text": "35", "start": 794, "end": 796, "annotation": null}, {"text": "nm", "start": 797, "end": 799, "annotation": null}, {"text": "was", "start": 800, "end": 803, "annotation": null}, {"text": "investigated", "start": 804, "end": 816, "annotation": null}, {"text": "by", "start": 817, "end": 819, "annotation": null}, {"text": "HRSEM", "start": 820, "end": 825, "annotation": null}, {"text": ".", "start": 825, "end": 826, "annotation": null}], [{"text": "The", "start": 827, "end": 830, "annotation": null}, {"text": "crystalline", "start": 831, "end": 842, "annotation": null}, {"text": "size", "start": 843, "end": 847, "annotation": null}, {"text": ",", "start": 847, "end": 848, "annotation": null}, {"text": "shape", "start": 849, "end": 854, "annotation": null}, {"text": "and", "start": 855, "end": 858, "annotation": null}, {"text": "textural", "start": 859, "end": 867, "annotation": null}, {"text": "morphology", "start": 868, "end": 878, "annotation": null}, {"text": ",", "start": 878, "end": 879, "annotation": null}, {"text": "of", "start": 880, "end": 882, "annotation": null}, {"text": "the", "start": 883, "end": 886, "annotation": null}, {"text": "Erbium", "start": 887, "end": 893, "annotation": null}, {"text": "doped", "start": 894, "end": 899, "annotation": null}, {"text": "ceria", "start": 900, "end": 905, "annotation": null}, {"text": "nanostructures", "start": 906, "end": 920, "annotation": null}, {"text": "were", "start": 921, "end": 925, "annotation": null}, {"text": "analysed", "start": 926, "end": 934, "annotation": null}, {"text": "by", "start": 935, "end": 937, "annotation": null}, {"text": "HRTEM", "start": 938, "end": 943, "annotation": null}, {"text": ".", "start": 943, "end": 944, "annotation": null}], [{"text": "Our", "start": 945, "end": 948, "annotation": null}, {"text": "results", "start": 949, "end": 956, "annotation": null}, {"text": "suggest", "start": 957, "end": 964, "annotation": null}, {"text": ",", "start": 964, "end": 965, "annotation": null}, {"text": "that", "start": 966, "end": 970, "annotation": null}, {"text": "the", "start": 971, "end": 974, "annotation": null}, {"text": "concentration", "start": 975, "end": 988, "annotation": null}, {"text": "of", "start": 989, "end": 991, "annotation": null}, {"text": "OH", "start": 992, "end": 994, "annotation": null}, {"text": "\u2013", "start": 994, "end": 995, "annotation": null}, {"text": "ion", "start": 996, "end": 999, "annotation": null}, {"text": "determines", "start": 1000, "end": 1010, "annotation": null}, {"text": "the", "start": 1011, "end": 1014, "annotation": null}, {"text": "lattice", "start": 1015, "end": 1022, "annotation": null}, {"text": "constants", "start": 1023, "end": 1032, "annotation": null}, {"text": "and", "start": 1033, "end": 1036, "annotation": null}, {"text": "oxygen", "start": 1037, "end": 1043, "annotation": null}, {"text": "vacancy", "start": 1044, "end": 1051, "annotation": null}, {"text": "in", "start": 1052, "end": 1054, "annotation": null}, {"text": "the", "start": 1055, "end": 1058, "annotation": null}, {"text": "nanostructures", "start": 1059, "end": 1073, "annotation": null}, {"text": "which", "start": 1074, "end": 1079, "annotation": null}, {"text": "stimulate", "start": 1080, "end": 1089, "annotation": null}, {"text": "the", "start": 1090, "end": 1093, "annotation": null}, {"text": "probability", "start": 1094, "end": 1105, "annotation": null}, {"text": "of", "start": 1106, "end": 1108, "annotation": null}, {"text": "photocatalytic", "start": 1109, "end": 1123, "annotation": null}, {"text": "decomposition", "start": 1124, "end": 1137, "annotation": null}, {"text": "effect", "start": 1138, "end": 1144, "annotation": null}, {"text": "of", "start": 1145, "end": 1147, "annotation": null}, {"text": "organic", "start": 1148, "end": 1155, "annotation": null}, {"text": "pollutants", "start": 1156, "end": 1166, "annotation": null}, {"text": ",", "start": 1166, "end": 1167, "annotation": null}, {"text": "due", "start": 1168, "end": 1171, "annotation": null}, {"text": "to", "start": 1172, "end": 1174, "annotation": null}, {"text": "synergistic", "start": 1175, "end": 1186, "annotation": null}, {"text": "approach", "start": 1187, "end": 1195, "annotation": null}, {"text": ".", "start": 1195, "end": 1196, "annotation": null}], [{"text": "In", "start": 1197, "end": 1199, "annotation": null}, {"text": "this", "start": 1200, "end": 1204, "annotation": null}, {"text": "context", "start": 1205, "end": 1212, "annotation": null}, {"text": ",", "start": 1212, "end": 1213, "annotation": null}, {"text": "both", "start": 1214, "end": 1218, "annotation": null}, {"text": "unhydrolyzed", "start": 1219, "end": 1231, "annotation": null}, {"text": "things", "start": 1232, "end": 1238, "annotation": null}, {"text": "and", "start": 1239, "end": 1242, "annotation": null}, {"text": "their", "start": 1243, "end": 1248, "annotation": null}, {"text": "swiftly", "start": 1249, "end": 1256, "annotation": null}, {"text": "drip", "start": 1257, "end": 1261, "annotation": null}, {"text": "from", "start": 1262, "end": 1266, "annotation": null}, {"text": "deceased", "start": 1267, "end": 1275, "annotation": null}, {"text": "or", "start": 1276, "end": 1278, "annotation": null}, {"text": "scratched", "start": 1279, "end": 1288, "annotation": null}, {"text": "cells", "start": 1289, "end": 1294, "annotation": null}, {"text": "with", "start": 1295, "end": 1299, "annotation": null}, {"text": "conceded", "start": 1300, "end": 1308, "annotation": null}, {"text": "membranes", "start": 1309, "end": 1318, "annotation": null}, {"text": ",", "start": 1318, "end": 1319, "annotation": null}, {"text": "even", "start": 1320, "end": 1324, "annotation": null}, {"text": "when", "start": 1325, "end": 1329, "annotation": null}, {"text": "the", "start": 1330, "end": 1333, "annotation": null}, {"text": "cells", "start": 1334, "end": 1339, "annotation": null}, {"text": "embrace", "start": 1340, "end": 1347, "annotation": null}, {"text": "some", "start": 1348, "end": 1352, "annotation": null}, {"text": "are", "start": 1353, "end": 1356, "annotation": null}, {"text": "outstanding", "start": 1357, "end": 1368, "annotation": null}, {"text": "attention", "start": 1369, "end": 1378, "annotation": null}, {"text": ".", "start": 1378, "end": 1379, "annotation": null}], [{"text": "Although", "start": 1380, "end": 1388, "annotation": null}, {"text": ",", "start": 1388, "end": 1389, "annotation": null}, {"text": "the", "start": 1390, "end": 1393, "annotation": null}, {"text": "loss", "start": 1394, "end": 1398, "annotation": null}, {"text": "of", "start": 1399, "end": 1401, "annotation": null}, {"text": "viable", "start": 1402, "end": 1408, "annotation": null}, {"text": "cells", "start": 1409, "end": 1414, "annotation": null}, {"text": "also", "start": 1415, "end": 1419, "annotation": null}, {"text": "depends", "start": 1420, "end": 1427, "annotation": null}, {"text": "on", "start": 1428, "end": 1430, "annotation": null}, {"text": "epithelial", "start": 1431, "end": 1441, "annotation": null}, {"text": "cell", "start": 1442, "end": 1446, "annotation": null}, {"text": "dynamically", "start": 1447, "end": 1458, "annotation": null}, {"text": "conceal", "start": 1459, "end": 1466, "annotation": null}, {"text": "of", "start": 1467, "end": 1469, "annotation": null}, {"text": "numerous", "start": 1470, "end": 1478, "annotation": null}, {"text": "molar", "start": 1479, "end": 1484, "annotation": null}, {"text": "matrix", "start": 1485, "end": 1491, "annotation": null}, {"text": ".", "start": 1491, "end": 1492, "annotation": null}]]} -{"text": "Using a simple LCAO model by Harrison, we have qualitatively studied the edge state of bilayer phosphorene, which is a unit structure of the layered crystal of black phosphorus. This model successfully reproduces the isolated edge state in the bulk gap in monolayer phosphorene. In bilayer phosphorene, however, it shows that edge states are almost buried in the valence band and there is no isolated midgap edge state at the zigzag edge. Since the buried edge state works as acceptor, holes are doped from the edge state into the bulk. This gives a possible explanation for p-type conduction in undoped black phosphorus. Under the vertical electric field, the intrinsic hole doping is reduced because a part of edge states move into the gap. These features of bilayer phosphorene might be better suited for device application.", "meta": {"doi": "10.7566/JPSJ.84.013703"}, "_input_hash": -818847482, "_task_hash": 2145829864, "tokens": [[{"text": "Using", "start": 39, "end": 44, "id": 8, "annotation": null}, {"text": "a", "start": 45, "end": 46, "id": 9, "annotation": null}, {"text": "simple", "start": 47, "end": 53, "id": 10, "annotation": null}, {"text": "LCAO", "start": 54, "end": 58, "id": 11, "annotation": null}, {"text": "model", "start": 59, "end": 64, "id": 12, "annotation": null}, {"text": "by", "start": 65, "end": 67, "id": 13, "annotation": null}, {"text": "Harrison", "start": 68, "end": 76, "id": 14, "annotation": null}, {"text": ",", "start": 77, "end": 78, "id": 15, "annotation": null}, {"text": "we", "start": 79, "end": 81, "id": 16, "annotation": null}, {"text": "have", "start": 82, "end": 86, "id": 17, "annotation": null}, {"text": "qualitatively", "start": 87, "end": 100, "id": 18, "annotation": null}, {"text": "studied", "start": 101, "end": 108, "id": 19, "annotation": null}, {"text": "the", "start": 109, "end": 112, "id": 20, "annotation": null}, {"text": "edge", "start": 113, "end": 117, "id": 21, "annotation": null}, {"text": "state", "start": 118, "end": 123, "id": 22, "annotation": null}, {"text": "of", "start": 124, "end": 126, "id": 23, "annotation": null}, {"text": "bilayer", "start": 127, "end": 134, "id": 24, "annotation": null}, {"text": "phosphorene", "start": 135, "end": 146, "id": 25, "annotation": null}, {"text": ",", "start": 147, "end": 148, "id": 26, "annotation": null}, {"text": "which", "start": 149, "end": 154, "id": 27, "annotation": null}, {"text": "is", "start": 155, "end": 157, "id": 28, "annotation": null}, {"text": "a", "start": 158, "end": 159, "id": 29, "annotation": null}, {"text": "unit", "start": 160, "end": 164, "id": 30, "annotation": null}, {"text": "structure", "start": 165, "end": 174, "id": 31, "annotation": null}, {"text": "of", "start": 175, "end": 177, "id": 32, "annotation": null}, {"text": "the", "start": 178, "end": 181, "id": 33, "annotation": null}, {"text": "layered", "start": 182, "end": 189, "id": 34, "annotation": null}, {"text": "crystal", "start": 190, "end": 197, "id": 35, "annotation": null}, {"text": "of", "start": 198, "end": 200, "id": 36, "annotation": null}, {"text": "black", "start": 201, "end": 206, "id": 37, "annotation": null}, {"text": "phosphorus", "start": 207, "end": 217, "id": 38, "annotation": null}, {"text": ".", "start": 218, "end": 219, "id": 39, "annotation": null}], [{"text": "This", "start": 220, "end": 224, "id": 40, "annotation": null}, {"text": "model", "start": 225, "end": 230, "id": 41, "annotation": null}, {"text": "successfully", "start": 231, "end": 243, "id": 42, "annotation": null}, {"text": "reproduces", "start": 244, "end": 254, "id": 43, "annotation": null}, {"text": "the", "start": 255, "end": 258, "id": 44, "annotation": null}, {"text": "isolated", "start": 259, "end": 267, "id": 45, "annotation": null}, {"text": "edge", "start": 268, "end": 272, "id": 46, "annotation": null}, {"text": "state", "start": 273, "end": 278, "id": 47, "annotation": null}, {"text": "in", "start": 279, "end": 281, "id": 48, "annotation": null}, {"text": "the", "start": 282, "end": 285, "id": 49, "annotation": null}, {"text": "bulk", "start": 286, "end": 290, "id": 50, "annotation": null}, {"text": "gap", "start": 291, "end": 294, "id": 51, "annotation": null}, {"text": "in", "start": 295, "end": 297, "id": 52, "annotation": null}, {"text": "monolayer", "start": 298, "end": 307, "id": 53, "annotation": null}, {"text": "phosphorene", "start": 308, "end": 319, "id": 54, "annotation": null}, {"text": ".", "start": 320, "end": 321, "id": 55, "annotation": null}], [{"text": "In", "start": 322, "end": 324, "id": 56, "annotation": null}, {"text": "bilayer", "start": 325, "end": 332, "id": 57, "annotation": null}, {"text": "phosphorene", "start": 333, "end": 344, "id": 58, "annotation": null}, {"text": ",", "start": 345, "end": 346, "id": 59, "annotation": null}, {"text": "however", "start": 347, "end": 354, "id": 60, "annotation": null}, {"text": ",", "start": 355, "end": 356, "id": 61, "annotation": null}, {"text": "it", "start": 357, "end": 359, "id": 62, "annotation": null}, {"text": "shows", "start": 360, "end": 365, "id": 63, "annotation": null}, {"text": "that", "start": 366, "end": 370, "id": 64, "annotation": null}, {"text": "edge", "start": 371, "end": 375, "id": 65, "annotation": null}, {"text": "states", "start": 376, "end": 382, "id": 66, "annotation": null}, {"text": "are", "start": 383, "end": 386, "id": 67, "annotation": null}, {"text": "almost", "start": 387, "end": 393, "id": 68, "annotation": null}, {"text": "buried", "start": 394, "end": 400, "id": 69, "annotation": null}, {"text": "in", "start": 401, "end": 403, "id": 70, "annotation": null}, {"text": "the", "start": 404, "end": 407, "id": 71, "annotation": null}, {"text": "valence", "start": 408, "end": 415, "id": 72, "annotation": null}, {"text": "band", "start": 416, "end": 420, "id": 73, "annotation": null}, {"text": "and", "start": 421, "end": 424, "id": 74, "annotation": null}, {"text": "there", "start": 425, "end": 430, "id": 75, "annotation": null}, {"text": "is", "start": 431, "end": 433, "id": 76, "annotation": null}, {"text": "no", "start": 434, "end": 436, "id": 77, "annotation": null}, {"text": "isolated", "start": 437, "end": 445, "id": 78, "annotation": null}, {"text": "midgap", "start": 446, "end": 452, "id": 79, "annotation": null}, {"text": "edge", "start": 453, "end": 457, "id": 80, "annotation": null}, {"text": "state", "start": 458, "end": 463, "id": 81, "annotation": null}, {"text": "at", "start": 464, "end": 466, "id": 82, "annotation": null}, {"text": "the", "start": 467, "end": 470, "id": 83, "annotation": null}, {"text": "zigzag", "start": 471, "end": 477, "id": 84, "annotation": null}, {"text": "edge", "start": 478, "end": 482, "id": 85, "annotation": null}, {"text": ".", "start": 483, "end": 484, "id": 86, "annotation": null}], [{"text": "Since", "start": 485, "end": 490, "id": 87, "annotation": null}, {"text": "the", "start": 491, "end": 494, "id": 88, "annotation": null}, {"text": "buried", "start": 495, "end": 501, "id": 89, "annotation": null}, {"text": "edge", "start": 502, "end": 506, "id": 90, "annotation": null}, {"text": "state", "start": 507, "end": 512, "id": 91, "annotation": null}, {"text": "works", "start": 513, "end": 518, "id": 92, "annotation": null}, {"text": "as", "start": 519, "end": 521, "id": 93, "annotation": null}, {"text": "acceptor", "start": 522, "end": 530, "id": 94, "annotation": null}, {"text": ",", "start": 531, "end": 532, "id": 95, "annotation": null}, {"text": "holes", "start": 533, "end": 538, "id": 96, "annotation": "DOPANT"}, {"text": "are", "start": 539, "end": 542, "id": 97, "annotation": null}, {"text": "doped", "start": 543, "end": 548, "id": 98, "annotation": null}, {"text": "from", "start": 549, "end": 553, "id": 99, "annotation": null}, {"text": "the", "start": 554, "end": 557, "id": 100, "annotation": null}, {"text": "edge", "start": 558, "end": 562, "id": 101, "annotation": null}, {"text": "state", "start": 563, "end": 568, "id": 102, "annotation": null}, {"text": "into", "start": 569, "end": 573, "id": 103, "annotation": null}, {"text": "the", "start": 574, "end": 577, "id": 104, "annotation": null}, {"text": "bulk", "start": 578, "end": 582, "id": 105, "annotation": "BASEMAT"}, {"text": ".", "start": 583, "end": 584, "id": 106, "annotation": null}], [{"text": "This", "start": 585, "end": 589, "id": 107, "annotation": null}, {"text": "gives", "start": 590, "end": 595, "id": 108, "annotation": null}, {"text": "a", "start": 596, "end": 597, "id": 109, "annotation": null}, {"text": "possible", "start": 598, "end": 606, "id": 110, "annotation": null}, {"text": "explanation", "start": 607, "end": 618, "id": 111, "annotation": null}, {"text": "for", "start": 619, "end": 622, "id": 112, "annotation": null}, {"text": "p", "start": 623, "end": 624, "id": 113, "annotation": "DOPANT"}, {"text": "-", "start": 625, "end": 626, "id": 114, "annotation": null}, {"text": "type", "start": 627, "end": 631, "id": 115, "annotation": "DOPANT"}, {"text": "conduction", "start": 632, "end": 642, "id": 116, "annotation": null}, {"text": "in", "start": 643, "end": 645, "id": 117, "annotation": null}, {"text": "undoped", "start": 646, "end": 653, "id": 118, "annotation": null}, {"text": "black", "start": 654, "end": 659, "id": 119, "annotation": null}, {"text": "phosphorus", "start": 660, "end": 670, "id": 120, "annotation": "BASEMAT"}, {"text": ".", "start": 671, "end": 672, "id": 121, "annotation": null}], [{"text": "Under", "start": 673, "end": 678, "id": 122, "annotation": null}, {"text": "the", "start": 679, "end": 682, "id": 123, "annotation": null}, {"text": "vertical", "start": 683, "end": 691, "id": 124, "annotation": null}, {"text": "electric", "start": 692, "end": 700, "id": 125, "annotation": null}, {"text": "field", "start": 701, "end": 706, "id": 126, "annotation": null}, {"text": ",", "start": 707, "end": 708, "id": 127, "annotation": null}, {"text": "the", "start": 709, "end": 712, "id": 128, "annotation": null}, {"text": "intrinsic", "start": 713, "end": 722, "id": 129, "annotation": null}, {"text": "hole", "start": 723, "end": 727, "id": 130, "annotation": "DOPANT"}, {"text": "doping", "start": 728, "end": 734, "id": 131, "annotation": null}, {"text": "is", "start": 735, "end": 737, "id": 132, "annotation": null}, {"text": "reduced", "start": 738, "end": 745, "id": 133, "annotation": null}, {"text": "because", "start": 746, "end": 753, "id": 134, "annotation": null}, {"text": "a", "start": 754, "end": 755, "id": 135, "annotation": null}, {"text": "part", "start": 756, "end": 760, "id": 136, "annotation": null}, {"text": "of", "start": 761, "end": 763, "id": 137, "annotation": null}, {"text": "edge", "start": 764, "end": 768, "id": 138, "annotation": null}, {"text": "states", "start": 769, "end": 775, "id": 139, "annotation": null}, {"text": "move", "start": 776, "end": 780, "id": 140, "annotation": null}, {"text": "into", "start": 781, "end": 785, "id": 141, "annotation": null}, {"text": "the", "start": 786, "end": 789, "id": 142, "annotation": null}, {"text": "gap", "start": 790, "end": 793, "id": 143, "annotation": null}, {"text": ".", "start": 794, "end": 795, "id": 144, "annotation": null}], [{"text": "These", "start": 796, "end": 801, "id": 145, "annotation": null}, {"text": "features", "start": 802, "end": 810, "id": 146, "annotation": null}, {"text": "of", "start": 811, "end": 813, "id": 147, "annotation": null}, {"text": "bilayer", "start": 814, "end": 821, "id": 148, "annotation": null}, {"text": "phosphorene", "start": 822, "end": 833, "id": 149, "annotation": null}, {"text": "might", "start": 834, "end": 839, "id": 150, "annotation": null}, {"text": "be", "start": 840, "end": 842, "id": 151, "annotation": null}, {"text": "better", "start": 843, "end": 849, "id": 152, "annotation": null}, {"text": "suited", "start": 850, "end": 856, "id": 153, "annotation": null}, {"text": "for", "start": 857, "end": 860, "id": 154, "annotation": null}, {"text": "device", "start": 861, "end": 867, "id": 155, "annotation": null}, {"text": "application", "start": 868, "end": 879, "id": 156, "annotation": null}, {"text": ".", "start": 880, "end": 881, "id": 157, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "Centimeter-sized single crystals of pure and Er-doped KPb2Cl5 were successfully grown by the Bridgman\u2013Stockbarger method using silica ampoules sealed under HCl gas. The phase transition that occurs at 255\u00b0C (528.15K) was characterized by differential scanning calorimetry and found not to entail mechanical breakdown of the crystals. The KPb2Cl5 volumic mass and specific heat functions were measured from \u223c700 to 760K and \u223c120 to 760K, respectively. An updated Ellingham diagram for chlorides aimed at choosing the crucible material, synthesis and crystal growth atmosphere, and starting products is proposed.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Centimeter", "start": 0, "end": 10, "annotation": null}, {"text": "-", "start": 10, "end": 11, "annotation": null}, {"text": "sized", "start": 11, "end": 16, "annotation": null}, {"text": "single", "start": 17, "end": 23, "annotation": null}, {"text": "crystals", "start": 24, "end": 32, "annotation": null}, {"text": "of", "start": 33, "end": 35, "annotation": null}, {"text": "pure", "start": 36, "end": 40, "annotation": null}, {"text": "and", "start": 41, "end": 44, "annotation": null}, {"text": "Er", "start": 45, "end": 47, "annotation": "DOPANT"}, {"text": "-", "start": 47, "end": 48, "annotation": null}, {"text": "doped", "start": 48, "end": 53, "annotation": null}, {"text": "KPb2Cl5", "start": 54, "end": 61, "annotation": "BASEMAT"}, {"text": "were", "start": 62, "end": 66, "annotation": null}, {"text": "successfully", "start": 67, "end": 79, "annotation": null}, {"text": "grown", "start": 80, "end": 85, "annotation": null}, {"text": "by", "start": 86, "end": 88, "annotation": null}, {"text": "the", "start": 89, "end": 92, "annotation": null}, {"text": "Bridgman", "start": 93, "end": 101, "annotation": null}, {"text": "\u2013", "start": 101, "end": 102, "annotation": null}, {"text": "Stockbarger", "start": 102, "end": 113, "annotation": null}, {"text": "method", "start": 114, "end": 120, "annotation": null}, {"text": "using", "start": 121, "end": 126, "annotation": null}, {"text": "silica", "start": 127, "end": 133, "annotation": null}, {"text": "ampoules", "start": 134, "end": 142, "annotation": null}, {"text": "sealed", "start": 143, "end": 149, "annotation": null}, {"text": "under", "start": 150, "end": 155, "annotation": null}, {"text": "HCl", "start": 156, "end": 159, "annotation": null}, {"text": "gas", "start": 160, "end": 163, "annotation": null}, {"text": ".", "start": 163, "end": 164, "annotation": null}], [{"text": "The", "start": 165, "end": 168, "annotation": null}, {"text": "phase", "start": 169, "end": 174, "annotation": null}, {"text": "transition", "start": 175, "end": 185, "annotation": null}, {"text": "that", "start": 186, "end": 190, "annotation": null}, {"text": "occurs", "start": 191, "end": 197, "annotation": null}, {"text": "at", "start": 198, "end": 200, "annotation": null}, {"text": "255", "start": 201, "end": 204, "annotation": null}, {"text": "\u00b0", "start": 204, "end": 205, "annotation": null}, {"text": "C", "start": 205, "end": 206, "annotation": null}, {"text": "(", "start": 207, "end": 208, "annotation": null}, {"text": "528.15K", "start": 208, "end": 215, "annotation": null}, {"text": ")", "start": 215, "end": 216, "annotation": null}, {"text": "was", "start": 217, "end": 220, "annotation": null}, {"text": "characterized", "start": 221, "end": 234, "annotation": null}, {"text": "by", "start": 235, "end": 237, "annotation": null}, {"text": "differential", "start": 238, "end": 250, "annotation": null}, {"text": "scanning", "start": 251, "end": 259, "annotation": null}, {"text": "calorimetry", "start": 260, "end": 271, "annotation": null}, {"text": "and", "start": 272, "end": 275, "annotation": null}, {"text": "found", "start": 276, "end": 281, "annotation": null}, {"text": "not", "start": 282, "end": 285, "annotation": null}, {"text": "to", "start": 286, "end": 288, "annotation": null}, {"text": "entail", "start": 289, "end": 295, "annotation": null}, {"text": "mechanical", "start": 296, "end": 306, "annotation": null}, {"text": "breakdown", "start": 307, "end": 316, "annotation": null}, {"text": "of", "start": 317, "end": 319, "annotation": null}, {"text": "the", "start": 320, "end": 323, "annotation": null}, {"text": "crystals", "start": 324, "end": 332, "annotation": null}, {"text": ".", "start": 332, "end": 333, "annotation": null}], [{"text": "The", "start": 334, "end": 337, "annotation": null}, {"text": "KPb2Cl5", "start": 338, "end": 345, "annotation": null}, {"text": "volumic", "start": 346, "end": 353, "annotation": null}, {"text": "mass", "start": 354, "end": 358, "annotation": null}, {"text": "and", "start": 359, "end": 362, "annotation": null}, {"text": "specific", "start": 363, "end": 371, "annotation": null}, {"text": "heat", "start": 372, "end": 376, "annotation": null}, {"text": "functions", "start": 377, "end": 386, "annotation": null}, {"text": "were", "start": 387, "end": 391, "annotation": null}, {"text": "measured", "start": 392, "end": 400, "annotation": null}, {"text": "from", "start": 401, "end": 405, "annotation": null}, {"text": "\u223c", "start": 406, "end": 407, "annotation": null}, {"text": "700", "start": 407, "end": 410, "annotation": null}, {"text": "to", "start": 411, "end": 413, "annotation": null}, {"text": "760K", "start": 414, "end": 418, "annotation": null}, {"text": "and", "start": 419, "end": 422, "annotation": null}, {"text": "\u223c", "start": 423, "end": 424, "annotation": null}, {"text": "120", "start": 424, "end": 427, "annotation": null}, {"text": "to", "start": 428, "end": 430, "annotation": null}, {"text": "760K", "start": 431, "end": 435, "annotation": null}, {"text": ",", "start": 435, "end": 436, "annotation": null}, {"text": "respectively", "start": 437, "end": 449, "annotation": null}, {"text": ".", "start": 449, "end": 450, "annotation": null}], [{"text": "An", "start": 451, "end": 453, "annotation": null}, {"text": "updated", "start": 454, "end": 461, "annotation": null}, {"text": "Ellingham", "start": 462, "end": 471, "annotation": null}, {"text": "diagram", "start": 472, "end": 479, "annotation": null}, {"text": "for", "start": 480, "end": 483, "annotation": null}, {"text": "chlorides", "start": 484, "end": 493, "annotation": null}, {"text": "aimed", "start": 494, "end": 499, "annotation": null}, {"text": "at", "start": 500, "end": 502, "annotation": null}, {"text": "choosing", "start": 503, "end": 511, "annotation": null}, {"text": "the", "start": 512, "end": 515, "annotation": null}, {"text": "crucible", "start": 516, "end": 524, "annotation": null}, {"text": "material", "start": 525, "end": 533, "annotation": null}, {"text": ",", "start": 533, "end": 534, "annotation": null}, {"text": "synthesis", "start": 535, "end": 544, "annotation": null}, {"text": "and", "start": 545, "end": 548, "annotation": null}, {"text": "crystal", "start": 549, "end": 556, "annotation": null}, {"text": "growth", "start": 557, "end": 563, "annotation": null}, {"text": "atmosphere", "start": 564, "end": 574, "annotation": null}, {"text": ",", "start": 574, "end": 575, "annotation": null}, {"text": "and", "start": 576, "end": 579, "annotation": null}, {"text": "starting", "start": 580, "end": 588, "annotation": null}, {"text": "products", "start": 589, "end": 597, "annotation": null}, {"text": "is", "start": 598, "end": 600, "annotation": null}, {"text": "proposed", "start": 601, "end": 609, "annotation": null}, {"text": ".", "start": 609, "end": 610, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Robust visible-light Gd\u2013La codoped TiO2 nanotubes were successfully synthesized via an ultrasonic hydrothermal method and the photocatalytic activities were evaluated by photodegrading Rhodamine B (RB). The calcined Gd\u2013La codoped TiO2 nanotubes have significantly enhanced photocatalytic activities than the uncalcined ones. The La3+ and Gd3+ in the lattices of rare earth oxides may be substituted by Ti4+, creating abundant oxygen vacancies and surface defects for electron trapping and dye adsorption, accelerating the separation of photogenerated electron\u2013hole pairs and RB photodegradation. The formation of an excitation energy level below the conduction band of TiO2 from the binding of electrons and oxygen vacancies decreases the excitation energy of Gd\u2013La codoped TiO2 nanotubes, resulting in robust photocatalysts. The results suggest that Gd\u2013La codoped TiO2 nanotubes calcined at 500\u00b0C are very promising for enhancing the photocatalytic activity of photocatalysts in visible-light region.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Robust", "start": 0, "end": 6, "annotation": null}, {"text": "visible", "start": 7, "end": 14, "annotation": null}, {"text": "-", "start": 14, "end": 15, "annotation": null}, {"text": "light", "start": 15, "end": 20, "annotation": null}, {"text": "Gd", "start": 21, "end": 23, "annotation": "DOPANT"}, {"text": "\u2013", "start": 23, "end": 24, "annotation": "DOPANT"}, {"text": "La", "start": 24, "end": 26, "annotation": "DOPANT"}, {"text": "codoped", "start": 27, "end": 34, "annotation": null}, {"text": "TiO2", "start": 35, "end": 39, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 40, "end": 49, "annotation": null}, {"text": "were", "start": 50, "end": 54, "annotation": null}, {"text": "successfully", "start": 55, "end": 67, "annotation": null}, {"text": "synthesized", "start": 68, "end": 79, "annotation": null}, {"text": "via", "start": 80, "end": 83, "annotation": null}, {"text": "an", "start": 84, "end": 86, "annotation": null}, {"text": "ultrasonic", "start": 87, "end": 97, "annotation": null}, {"text": "hydrothermal", "start": 98, "end": 110, "annotation": null}, {"text": "method", "start": 111, "end": 117, "annotation": null}, {"text": "and", "start": 118, "end": 121, "annotation": null}, {"text": "the", "start": 122, "end": 125, "annotation": null}, {"text": "photocatalytic", "start": 126, "end": 140, "annotation": null}, {"text": "activities", "start": 141, "end": 151, "annotation": null}, {"text": "were", "start": 152, "end": 156, "annotation": null}, {"text": "evaluated", "start": 157, "end": 166, "annotation": null}, {"text": "by", "start": 167, "end": 169, "annotation": null}, {"text": "photodegrading", "start": 170, "end": 184, "annotation": null}, {"text": "Rhodamine", "start": 185, "end": 194, "annotation": null}, {"text": "B", "start": 195, "end": 196, "annotation": null}, {"text": "(", "start": 197, "end": 198, "annotation": null}, {"text": "RB", "start": 198, "end": 200, "annotation": null}, {"text": ")", "start": 200, "end": 201, "annotation": null}, {"text": ".", "start": 201, "end": 202, "annotation": null}], [{"text": "The", "start": 203, "end": 206, "annotation": null}, {"text": "calcined", "start": 207, "end": 215, "annotation": null}, {"text": "Gd", "start": 216, "end": 218, "annotation": "DOPANT"}, {"text": "\u2013", "start": 218, "end": 219, "annotation": "DOPANT"}, {"text": "La", "start": 219, "end": 221, "annotation": "DOPANT"}, {"text": "codoped", "start": 222, "end": 229, "annotation": null}, {"text": "TiO2", "start": 230, "end": 234, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 235, "end": 244, "annotation": null}, {"text": "have", "start": 245, "end": 249, "annotation": null}, {"text": "significantly", "start": 250, "end": 263, "annotation": null}, {"text": "enhanced", "start": 264, "end": 272, "annotation": null}, {"text": "photocatalytic", "start": 273, "end": 287, "annotation": null}, {"text": "activities", "start": 288, "end": 298, "annotation": null}, {"text": "than", "start": 299, "end": 303, "annotation": null}, {"text": "the", "start": 304, "end": 307, "annotation": null}, {"text": "uncalcined", "start": 308, "end": 318, "annotation": null}, {"text": "ones", "start": 319, "end": 323, "annotation": null}, {"text": ".", "start": 323, "end": 324, "annotation": null}], [{"text": "The", "start": 325, "end": 328, "annotation": null}, {"text": "La3+", "start": 329, "end": 333, "annotation": null}, {"text": "and", "start": 334, "end": 337, "annotation": null}, {"text": "Gd3+", "start": 338, "end": 342, "annotation": null}, {"text": "in", "start": 343, "end": 345, "annotation": null}, {"text": "the", "start": 346, "end": 349, "annotation": null}, {"text": "lattices", "start": 350, "end": 358, "annotation": null}, {"text": "of", "start": 359, "end": 361, "annotation": null}, {"text": "rare", "start": 362, "end": 366, "annotation": null}, {"text": "earth", "start": 367, "end": 372, "annotation": null}, {"text": "oxides", "start": 373, "end": 379, "annotation": null}, {"text": "may", "start": 380, "end": 383, "annotation": null}, {"text": "be", "start": 384, "end": 386, "annotation": null}, {"text": "substituted", "start": 387, "end": 398, "annotation": null}, {"text": "by", "start": 399, "end": 401, "annotation": null}, {"text": "Ti4+", "start": 402, "end": 406, "annotation": null}, {"text": ",", "start": 406, "end": 407, "annotation": null}, {"text": "creating", "start": 408, "end": 416, "annotation": null}, {"text": "abundant", "start": 417, "end": 425, "annotation": null}, {"text": "oxygen", "start": 426, "end": 432, "annotation": null}, {"text": "vacancies", "start": 433, "end": 442, "annotation": null}, {"text": "and", "start": 443, "end": 446, "annotation": null}, {"text": "surface", "start": 447, "end": 454, "annotation": null}, {"text": "defects", "start": 455, "end": 462, "annotation": null}, {"text": "for", "start": 463, "end": 466, "annotation": null}, {"text": "electron", "start": 467, "end": 475, "annotation": null}, {"text": "trapping", "start": 476, "end": 484, "annotation": null}, {"text": "and", "start": 485, "end": 488, "annotation": null}, {"text": "dye", "start": 489, "end": 492, "annotation": null}, {"text": "adsorption", "start": 493, "end": 503, "annotation": null}, {"text": ",", "start": 503, "end": 504, "annotation": null}, {"text": "accelerating", "start": 505, "end": 517, "annotation": null}, {"text": "the", "start": 518, "end": 521, "annotation": null}, {"text": "separation", "start": 522, "end": 532, "annotation": null}, {"text": "of", "start": 533, "end": 535, "annotation": null}, {"text": "photogenerated", "start": 536, "end": 550, "annotation": null}, {"text": "electron", "start": 551, "end": 559, "annotation": null}, {"text": "\u2013", "start": 559, "end": 560, "annotation": null}, {"text": "hole", "start": 560, "end": 564, "annotation": null}, {"text": "pairs", "start": 565, "end": 570, "annotation": null}, {"text": "and", "start": 571, "end": 574, "annotation": null}, {"text": "RB", "start": 575, "end": 577, "annotation": null}, {"text": "photodegradation", "start": 578, "end": 594, "annotation": null}, {"text": ".", "start": 594, "end": 595, "annotation": null}], [{"text": "The", "start": 596, "end": 599, "annotation": null}, {"text": "formation", "start": 600, "end": 609, "annotation": null}, {"text": "of", "start": 610, "end": 612, "annotation": null}, {"text": "an", "start": 613, "end": 615, "annotation": null}, {"text": "excitation", "start": 616, "end": 626, "annotation": null}, {"text": "energy", "start": 627, "end": 633, "annotation": null}, {"text": "level", "start": 634, "end": 639, "annotation": null}, {"text": "below", "start": 640, "end": 645, "annotation": null}, {"text": "the", "start": 646, "end": 649, "annotation": null}, {"text": "conduction", "start": 650, "end": 660, "annotation": null}, {"text": "band", "start": 661, "end": 665, "annotation": null}, {"text": "of", "start": 666, "end": 668, "annotation": null}, {"text": "TiO2", "start": 669, "end": 673, "annotation": null}, {"text": "from", "start": 674, "end": 678, "annotation": null}, {"text": "the", "start": 679, "end": 682, "annotation": null}, {"text": "binding", "start": 683, "end": 690, "annotation": null}, {"text": "of", "start": 691, "end": 693, "annotation": null}, {"text": "electrons", "start": 694, "end": 703, "annotation": null}, {"text": "and", "start": 704, "end": 707, "annotation": null}, {"text": "oxygen", "start": 708, "end": 714, "annotation": null}, {"text": "vacancies", "start": 715, "end": 724, "annotation": null}, {"text": "decreases", "start": 725, "end": 734, "annotation": null}, {"text": "the", "start": 735, "end": 738, "annotation": null}, {"text": "excitation", "start": 739, "end": 749, "annotation": null}, {"text": "energy", "start": 750, "end": 756, "annotation": null}, {"text": "of", "start": 757, "end": 759, "annotation": null}, {"text": "Gd", "start": 760, "end": 762, "annotation": "DOPANT"}, {"text": "\u2013", "start": 762, "end": 763, "annotation": "DOPANT"}, {"text": "La", "start": 763, "end": 765, "annotation": "DOPANT"}, {"text": "codoped", "start": 766, "end": 773, "annotation": null}, {"text": "TiO2", "start": 774, "end": 778, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 779, "end": 788, "annotation": null}, {"text": ",", "start": 788, "end": 789, "annotation": null}, {"text": "resulting", "start": 790, "end": 799, "annotation": null}, {"text": "in", "start": 800, "end": 802, "annotation": null}, {"text": "robust", "start": 803, "end": 809, "annotation": null}, {"text": "photocatalysts", "start": 810, "end": 824, "annotation": null}, {"text": ".", "start": 824, "end": 825, "annotation": null}], [{"text": "The", "start": 826, "end": 829, "annotation": null}, {"text": "results", "start": 830, "end": 837, "annotation": null}, {"text": "suggest", "start": 838, "end": 845, "annotation": null}, {"text": "that", "start": 846, "end": 850, "annotation": null}, {"text": "Gd", "start": 851, "end": 853, "annotation": "DOPANT"}, {"text": "\u2013", "start": 853, "end": 854, "annotation": "DOPANT"}, {"text": "La", "start": 854, "end": 856, "annotation": "DOPANT"}, {"text": "codoped", "start": 857, "end": 864, "annotation": null}, {"text": "TiO2", "start": 865, "end": 869, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 870, "end": 879, "annotation": null}, {"text": "calcined", "start": 880, "end": 888, "annotation": null}, {"text": "at", "start": 889, "end": 891, "annotation": null}, {"text": "500", "start": 892, "end": 895, "annotation": null}, {"text": "\u00b0", "start": 895, "end": 896, "annotation": null}, {"text": "C", "start": 896, "end": 897, "annotation": null}, {"text": "are", "start": 898, "end": 901, "annotation": null}, {"text": "very", "start": 902, "end": 906, "annotation": null}, {"text": "promising", "start": 907, "end": 916, "annotation": null}, {"text": "for", "start": 917, "end": 920, "annotation": null}, {"text": "enhancing", "start": 921, "end": 930, "annotation": null}, {"text": "the", "start": 931, "end": 934, "annotation": null}, {"text": "photocatalytic", "start": 935, "end": 949, "annotation": null}, {"text": "activity", "start": 950, "end": 958, "annotation": null}, {"text": "of", "start": 959, "end": 961, "annotation": null}, {"text": "photocatalysts", "start": 962, "end": 976, "annotation": null}, {"text": "in", "start": 977, "end": 979, "annotation": null}, {"text": "visible", "start": 980, "end": 987, "annotation": null}, {"text": "-", "start": 987, "end": 988, "annotation": null}, {"text": "light", "start": 988, "end": 993, "annotation": null}, {"text": "region", "start": 994, "end": 1000, "annotation": null}, {"text": ".", "start": 1000, "end": 1001, "annotation": null}]]} +{"remark": "doping_annt1", "text": "\u00a9 2018 Elsevier B.V. Cerium (IV) oxide (CeO 2 ) is the most accessible noble rare earth metal oxide for the excitation of the excitons by light-harvesting performance. The present work is focused on Erbium doped ceria nanoparticles that were beneficially obtained by hydrothermal method from cerium nitrate and Erbium nitrate as precursors for decomposition of Rhodamine-B (RhB) dye in the polluted waste water removed from the industries. Dye removal efficiency of the catalyst was found to be nearly ~94%. The structural phases, functional groups and the transitions are identified with the help of various techniques. XRD pattern determines the development of cubic phase with the particle size is 20 nm. Highly crystalline nature of as-synthesized nanomaterials with an average diameter of 35 nm was investigated by HRSEM. The crystalline size, shape and textural morphology, of the Erbium doped ceria nanostructures were analysed by HRTEM. Our results suggest, that the concentration of OH\u2013 ion determines the lattice constants and oxygen vacancy in the nanostructures which stimulate the probability of photocatalytic decomposition effect of organic pollutants, due to synergistic approach. In this context, both unhydrolyzed things and their swiftly drip from deceased or scratched cells with conceded membranes, even when the cells embrace some are outstanding attention. Although, the loss of viable cells also depends on epithelial cell dynamically conceal of numerous molar matrix.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 168, "end": 171, "annotation": null}, {"text": "present", "start": 172, "end": 179, "annotation": null}, {"text": "work", "start": 180, "end": 184, "annotation": null}, {"text": "is", "start": 185, "end": 187, "annotation": null}, {"text": "focused", "start": 188, "end": 195, "annotation": null}, {"text": "on", "start": 196, "end": 198, "annotation": null}, {"text": "Erbium", "start": 199, "end": 205, "annotation": "DOPANT"}, {"text": "doped", "start": 206, "end": 211, "annotation": null}, {"text": "ceria", "start": 212, "end": 217, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 218, "end": 231, "annotation": null}, {"text": "that", "start": 232, "end": 236, "annotation": null}, {"text": "were", "start": 237, "end": 241, "annotation": null}, {"text": "beneficially", "start": 242, "end": 254, "annotation": null}, {"text": "obtained", "start": 255, "end": 263, "annotation": null}, {"text": "by", "start": 264, "end": 266, "annotation": null}, {"text": "hydrothermal", "start": 267, "end": 279, "annotation": null}, {"text": "method", "start": 280, "end": 286, "annotation": null}, {"text": "from", "start": 287, "end": 291, "annotation": null}, {"text": "cerium", "start": 292, "end": 298, "annotation": null}, {"text": "nitrate", "start": 299, "end": 306, "annotation": null}, {"text": "and", "start": 307, "end": 310, "annotation": null}, {"text": "Erbium", "start": 311, "end": 317, "annotation": null}, {"text": "nitrate", "start": 318, "end": 325, "annotation": null}, {"text": "as", "start": 326, "end": 328, "annotation": null}, {"text": "precursors", "start": 329, "end": 339, "annotation": null}, {"text": "for", "start": 340, "end": 343, "annotation": null}, {"text": "decomposition", "start": 344, "end": 357, "annotation": null}, {"text": "of", "start": 358, "end": 360, "annotation": null}, {"text": "Rhodamine-B", "start": 361, "end": 372, "annotation": null}, {"text": "(", "start": 373, "end": 374, "annotation": null}, {"text": "RhB", "start": 374, "end": 377, "annotation": null}, {"text": ")", "start": 377, "end": 378, "annotation": null}, {"text": "dye", "start": 379, "end": 382, "annotation": null}, {"text": "in", "start": 383, "end": 385, "annotation": null}, {"text": "the", "start": 386, "end": 389, "annotation": null}, {"text": "polluted", "start": 390, "end": 398, "annotation": null}, {"text": "waste", "start": 399, "end": 404, "annotation": null}, {"text": "water", "start": 405, "end": 410, "annotation": null}, {"text": "removed", "start": 411, "end": 418, "annotation": null}, {"text": "from", "start": 419, "end": 423, "annotation": null}, {"text": "the", "start": 424, "end": 427, "annotation": null}, {"text": "industries", "start": 428, "end": 438, "annotation": null}, {"text": ".", "start": 438, "end": 439, "annotation": null}], [{"text": "Dye", "start": 440, "end": 443, "annotation": null}, {"text": "removal", "start": 444, "end": 451, "annotation": null}, {"text": "efficiency", "start": 452, "end": 462, "annotation": null}, {"text": "of", "start": 463, "end": 465, "annotation": null}, {"text": "the", "start": 466, "end": 469, "annotation": null}, {"text": "catalyst", "start": 470, "end": 478, "annotation": null}, {"text": "was", "start": 479, "end": 482, "annotation": null}, {"text": "found", "start": 483, "end": 488, "annotation": null}, {"text": "to", "start": 489, "end": 491, "annotation": null}, {"text": "be", "start": 492, "end": 494, "annotation": null}, {"text": "nearly", "start": 495, "end": 501, "annotation": null}, {"text": "~", "start": 502, "end": 503, "annotation": null}, {"text": "94", "start": 503, "end": 505, "annotation": null}, {"text": "%", "start": 505, "end": 506, "annotation": null}, {"text": ".", "start": 506, "end": 507, "annotation": null}], [{"text": "The", "start": 508, "end": 511, "annotation": null}, {"text": "structural", "start": 512, "end": 522, "annotation": null}, {"text": "phases", "start": 523, "end": 529, "annotation": null}, {"text": ",", "start": 529, "end": 530, "annotation": null}, {"text": "functional", "start": 531, "end": 541, "annotation": null}, {"text": "groups", "start": 542, "end": 548, "annotation": null}, {"text": "and", "start": 549, "end": 552, "annotation": null}, {"text": "the", "start": 553, "end": 556, "annotation": null}, {"text": "transitions", "start": 557, "end": 568, "annotation": null}, {"text": "are", "start": 569, "end": 572, "annotation": null}, {"text": "identified", "start": 573, "end": 583, "annotation": null}, {"text": "with", "start": 584, "end": 588, "annotation": null}, {"text": "the", "start": 589, "end": 592, "annotation": null}, {"text": "help", "start": 593, "end": 597, "annotation": null}, {"text": "of", "start": 598, "end": 600, "annotation": null}, {"text": "various", "start": 601, "end": 608, "annotation": null}, {"text": "techniques", "start": 609, "end": 619, "annotation": null}, {"text": ".", "start": 619, "end": 620, "annotation": null}], [{"text": "XRD", "start": 621, "end": 624, "annotation": null}, {"text": "pattern", "start": 625, "end": 632, "annotation": null}, {"text": "determines", "start": 633, "end": 643, "annotation": null}, {"text": "the", "start": 644, "end": 647, "annotation": null}, {"text": "development", "start": 648, "end": 659, "annotation": null}, {"text": "of", "start": 660, "end": 662, "annotation": null}, {"text": "cubic", "start": 663, "end": 668, "annotation": null}, {"text": "phase", "start": 669, "end": 674, "annotation": null}, {"text": "with", "start": 675, "end": 679, "annotation": null}, {"text": "the", "start": 680, "end": 683, "annotation": null}, {"text": "particle", "start": 684, "end": 692, "annotation": null}, {"text": "size", "start": 693, "end": 697, "annotation": null}, {"text": "is", "start": 698, "end": 700, "annotation": null}, {"text": "20", "start": 701, "end": 703, "annotation": null}, {"text": "nm", "start": 704, "end": 706, "annotation": null}, {"text": ".", "start": 706, "end": 707, "annotation": null}], [{"text": "Highly", "start": 708, "end": 714, "annotation": null}, {"text": "crystalline", "start": 715, "end": 726, "annotation": null}, {"text": "nature", "start": 727, "end": 733, "annotation": null}, {"text": "of", "start": 734, "end": 736, "annotation": null}, {"text": "as-synthesized", "start": 737, "end": 751, "annotation": null}, {"text": "nanomaterials", "start": 752, "end": 765, "annotation": null}, {"text": "with", "start": 766, "end": 770, "annotation": null}, {"text": "an", "start": 771, "end": 773, "annotation": null}, {"text": "average", "start": 774, "end": 781, "annotation": null}, {"text": "diameter", "start": 782, "end": 790, "annotation": null}, {"text": "of", "start": 791, "end": 793, "annotation": null}, {"text": "35", "start": 794, "end": 796, "annotation": null}, {"text": "nm", "start": 797, "end": 799, "annotation": null}, {"text": "was", "start": 800, "end": 803, "annotation": null}, {"text": "investigated", "start": 804, "end": 816, "annotation": null}, {"text": "by", "start": 817, "end": 819, "annotation": null}, {"text": "HRSEM", "start": 820, "end": 825, "annotation": null}, {"text": ".", "start": 825, "end": 826, "annotation": null}], [{"text": "The", "start": 827, "end": 830, "annotation": null}, {"text": "crystalline", "start": 831, "end": 842, "annotation": null}, {"text": "size", "start": 843, "end": 847, "annotation": null}, {"text": ",", "start": 847, "end": 848, "annotation": null}, {"text": "shape", "start": 849, "end": 854, "annotation": null}, {"text": "and", "start": 855, "end": 858, "annotation": null}, {"text": "textural", "start": 859, "end": 867, "annotation": null}, {"text": "morphology", "start": 868, "end": 878, "annotation": null}, {"text": ",", "start": 878, "end": 879, "annotation": null}, {"text": "of", "start": 880, "end": 882, "annotation": null}, {"text": "the", "start": 883, "end": 886, "annotation": null}, {"text": "Erbium", "start": 887, "end": 893, "annotation": null}, {"text": "doped", "start": 894, "end": 899, "annotation": null}, {"text": "ceria", "start": 900, "end": 905, "annotation": null}, {"text": "nanostructures", "start": 906, "end": 920, "annotation": null}, {"text": "were", "start": 921, "end": 925, "annotation": null}, {"text": "analysed", "start": 926, "end": 934, "annotation": null}, {"text": "by", "start": 935, "end": 937, "annotation": null}, {"text": "HRTEM", "start": 938, "end": 943, "annotation": null}, {"text": ".", "start": 943, "end": 944, "annotation": null}], [{"text": "Our", "start": 945, "end": 948, "annotation": null}, {"text": "results", "start": 949, "end": 956, "annotation": null}, {"text": "suggest", "start": 957, "end": 964, "annotation": null}, {"text": ",", "start": 964, "end": 965, "annotation": null}, {"text": "that", "start": 966, "end": 970, "annotation": null}, {"text": "the", "start": 971, "end": 974, "annotation": null}, {"text": "concentration", "start": 975, "end": 988, "annotation": null}, {"text": "of", "start": 989, "end": 991, "annotation": null}, {"text": "OH", "start": 992, "end": 994, "annotation": null}, {"text": "\u2013", "start": 994, "end": 995, "annotation": null}, {"text": "ion", "start": 996, "end": 999, "annotation": null}, {"text": "determines", "start": 1000, "end": 1010, "annotation": null}, {"text": "the", "start": 1011, "end": 1014, "annotation": null}, {"text": "lattice", "start": 1015, "end": 1022, "annotation": null}, {"text": "constants", "start": 1023, "end": 1032, "annotation": null}, {"text": "and", "start": 1033, "end": 1036, "annotation": null}, {"text": "oxygen", "start": 1037, "end": 1043, "annotation": null}, {"text": "vacancy", "start": 1044, "end": 1051, "annotation": null}, {"text": "in", "start": 1052, "end": 1054, "annotation": null}, {"text": "the", "start": 1055, "end": 1058, "annotation": null}, {"text": "nanostructures", "start": 1059, "end": 1073, "annotation": null}, {"text": "which", "start": 1074, "end": 1079, "annotation": null}, {"text": "stimulate", "start": 1080, "end": 1089, "annotation": null}, {"text": "the", "start": 1090, "end": 1093, "annotation": null}, {"text": "probability", "start": 1094, "end": 1105, "annotation": null}, {"text": "of", "start": 1106, "end": 1108, "annotation": null}, {"text": "photocatalytic", "start": 1109, "end": 1123, "annotation": null}, {"text": "decomposition", "start": 1124, "end": 1137, "annotation": null}, {"text": "effect", "start": 1138, "end": 1144, "annotation": null}, {"text": "of", "start": 1145, "end": 1147, "annotation": null}, {"text": "organic", "start": 1148, "end": 1155, "annotation": null}, {"text": "pollutants", "start": 1156, "end": 1166, "annotation": null}, {"text": ",", "start": 1166, "end": 1167, "annotation": null}, {"text": "due", "start": 1168, "end": 1171, "annotation": null}, {"text": "to", "start": 1172, "end": 1174, "annotation": null}, {"text": "synergistic", "start": 1175, "end": 1186, "annotation": null}, {"text": "approach", "start": 1187, "end": 1195, "annotation": null}, {"text": ".", "start": 1195, "end": 1196, "annotation": null}], [{"text": "In", "start": 1197, "end": 1199, "annotation": null}, {"text": "this", "start": 1200, "end": 1204, "annotation": null}, {"text": "context", "start": 1205, "end": 1212, "annotation": null}, {"text": ",", "start": 1212, "end": 1213, "annotation": null}, {"text": "both", "start": 1214, "end": 1218, "annotation": null}, {"text": "unhydrolyzed", "start": 1219, "end": 1231, "annotation": null}, {"text": "things", "start": 1232, "end": 1238, "annotation": null}, {"text": "and", "start": 1239, "end": 1242, "annotation": null}, {"text": "their", "start": 1243, "end": 1248, "annotation": null}, {"text": "swiftly", "start": 1249, "end": 1256, "annotation": null}, {"text": "drip", "start": 1257, "end": 1261, "annotation": null}, {"text": "from", "start": 1262, "end": 1266, "annotation": null}, {"text": "deceased", "start": 1267, "end": 1275, "annotation": null}, {"text": "or", "start": 1276, "end": 1278, "annotation": null}, {"text": "scratched", "start": 1279, "end": 1288, "annotation": null}, {"text": "cells", "start": 1289, "end": 1294, "annotation": null}, {"text": "with", "start": 1295, "end": 1299, "annotation": null}, {"text": "conceded", "start": 1300, "end": 1308, "annotation": null}, {"text": "membranes", "start": 1309, "end": 1318, "annotation": null}, {"text": ",", "start": 1318, "end": 1319, "annotation": null}, {"text": "even", "start": 1320, "end": 1324, "annotation": null}, {"text": "when", "start": 1325, "end": 1329, "annotation": null}, {"text": "the", "start": 1330, "end": 1333, "annotation": null}, {"text": "cells", "start": 1334, "end": 1339, "annotation": null}, {"text": "embrace", "start": 1340, "end": 1347, "annotation": null}, {"text": "some", "start": 1348, "end": 1352, "annotation": null}, {"text": "are", "start": 1353, "end": 1356, "annotation": null}, {"text": "outstanding", "start": 1357, "end": 1368, "annotation": null}, {"text": "attention", "start": 1369, "end": 1378, "annotation": null}, {"text": ".", "start": 1378, "end": 1379, "annotation": null}], [{"text": "Although", "start": 1380, "end": 1388, "annotation": null}, {"text": ",", "start": 1388, "end": 1389, "annotation": null}, {"text": "the", "start": 1390, "end": 1393, "annotation": null}, {"text": "loss", "start": 1394, "end": 1398, "annotation": null}, {"text": "of", "start": 1399, "end": 1401, "annotation": null}, {"text": "viable", "start": 1402, "end": 1408, "annotation": null}, {"text": "cells", "start": 1409, "end": 1414, "annotation": null}, {"text": "also", "start": 1415, "end": 1419, "annotation": null}, {"text": "depends", "start": 1420, "end": 1427, "annotation": null}, {"text": "on", "start": 1428, "end": 1430, "annotation": null}, {"text": "epithelial", "start": 1431, "end": 1441, "annotation": null}, {"text": "cell", "start": 1442, "end": 1446, "annotation": null}, {"text": "dynamically", "start": 1447, "end": 1458, "annotation": null}, {"text": "conceal", "start": 1459, "end": 1466, "annotation": null}, {"text": "of", "start": 1467, "end": 1469, "annotation": null}, {"text": "numerous", "start": 1470, "end": 1478, "annotation": null}, {"text": "molar", "start": 1479, "end": 1484, "annotation": null}, {"text": "matrix", "start": 1485, "end": 1491, "annotation": null}, {"text": ".", "start": 1491, "end": 1492, "annotation": null}]], "meta": {"doi": "10.1016/j.jphotobiol.2018.06.011"}} +{"text": "Using a simple LCAO model by Harrison, we have qualitatively studied the edge state of bilayer phosphorene, which is a unit structure of the layered crystal of black phosphorus. This model successfully reproduces the isolated edge state in the bulk gap in monolayer phosphorene. In bilayer phosphorene, however, it shows that edge states are almost buried in the valence band and there is no isolated midgap edge state at the zigzag edge. Since the buried edge state works as acceptor, holes are doped from the edge state into the bulk. This gives a possible explanation for p-type conduction in undoped black phosphorus. Under the vertical electric field, the intrinsic hole doping is reduced because a part of edge states move into the gap. These features of bilayer phosphorene might be better suited for device application.", "meta": {"doi": "10.7566/JPSJ.84.013703"}, "_input_hash": -818847482, "_task_hash": 2145829864, "tokens": [[{"text": "Using", "start": 39, "end": 44, "id": 8, "annotation": null}, {"text": "a", "start": 45, "end": 46, "id": 9, "annotation": null}, {"text": "simple", "start": 47, "end": 53, "id": 10, "annotation": null}, {"text": "LCAO", "start": 54, "end": 58, "id": 11, "annotation": null}, {"text": "model", "start": 59, "end": 64, "id": 12, "annotation": null}, {"text": "by", "start": 65, "end": 67, "id": 13, "annotation": null}, {"text": "Harrison", "start": 68, "end": 76, "id": 14, "annotation": null}, {"text": ",", "start": 77, "end": 78, "id": 15, "annotation": null}, {"text": "we", "start": 79, "end": 81, "id": 16, "annotation": null}, {"text": "have", "start": 82, "end": 86, "id": 17, "annotation": null}, {"text": "qualitatively", "start": 87, "end": 100, "id": 18, "annotation": null}, {"text": "studied", "start": 101, "end": 108, "id": 19, "annotation": null}, {"text": "the", "start": 109, "end": 112, "id": 20, "annotation": null}, {"text": "edge", "start": 113, "end": 117, "id": 21, "annotation": null}, {"text": "state", "start": 118, "end": 123, "id": 22, "annotation": null}, {"text": "of", "start": 124, "end": 126, "id": 23, "annotation": null}, {"text": "bilayer", "start": 127, "end": 134, "id": 24, "annotation": null}, {"text": "phosphorene", "start": 135, "end": 146, "id": 25, "annotation": null}, {"text": ",", "start": 147, "end": 148, "id": 26, "annotation": null}, {"text": "which", "start": 149, "end": 154, "id": 27, "annotation": null}, {"text": "is", "start": 155, "end": 157, "id": 28, "annotation": null}, {"text": "a", "start": 158, "end": 159, "id": 29, "annotation": null}, {"text": "unit", "start": 160, "end": 164, "id": 30, "annotation": null}, {"text": "structure", "start": 165, "end": 174, "id": 31, "annotation": null}, {"text": "of", "start": 175, "end": 177, "id": 32, "annotation": null}, {"text": "the", "start": 178, "end": 181, "id": 33, "annotation": null}, {"text": "layered", "start": 182, "end": 189, "id": 34, "annotation": null}, {"text": "crystal", "start": 190, "end": 197, "id": 35, "annotation": null}, {"text": "of", "start": 198, "end": 200, "id": 36, "annotation": null}, {"text": "black", "start": 201, "end": 206, "id": 37, "annotation": null}, {"text": "phosphorus", "start": 207, "end": 217, "id": 38, "annotation": null}, {"text": ".", "start": 218, "end": 219, "id": 39, "annotation": null}], [{"text": "This", "start": 220, "end": 224, "id": 40, "annotation": null}, {"text": "model", "start": 225, "end": 230, "id": 41, "annotation": null}, {"text": "successfully", "start": 231, "end": 243, "id": 42, "annotation": null}, {"text": "reproduces", "start": 244, "end": 254, "id": 43, "annotation": null}, {"text": "the", "start": 255, "end": 258, "id": 44, "annotation": null}, {"text": "isolated", "start": 259, "end": 267, "id": 45, "annotation": null}, {"text": "edge", "start": 268, "end": 272, "id": 46, "annotation": null}, {"text": "state", "start": 273, "end": 278, "id": 47, "annotation": null}, {"text": "in", "start": 279, "end": 281, "id": 48, "annotation": null}, {"text": "the", "start": 282, "end": 285, "id": 49, "annotation": null}, {"text": "bulk", "start": 286, "end": 290, "id": 50, "annotation": null}, {"text": "gap", "start": 291, "end": 294, "id": 51, "annotation": null}, {"text": "in", "start": 295, "end": 297, "id": 52, "annotation": null}, {"text": "monolayer", "start": 298, "end": 307, "id": 53, "annotation": null}, {"text": "phosphorene", "start": 308, "end": 319, "id": 54, "annotation": null}, {"text": ".", "start": 320, "end": 321, "id": 55, "annotation": null}], [{"text": "In", "start": 322, "end": 324, "id": 56, "annotation": null}, {"text": "bilayer", "start": 325, "end": 332, "id": 57, "annotation": null}, {"text": "phosphorene", "start": 333, "end": 344, "id": 58, "annotation": null}, {"text": ",", "start": 345, "end": 346, "id": 59, "annotation": null}, {"text": "however", "start": 347, "end": 354, "id": 60, "annotation": null}, {"text": ",", "start": 355, "end": 356, "id": 61, "annotation": null}, {"text": "it", "start": 357, "end": 359, "id": 62, "annotation": null}, {"text": "shows", "start": 360, "end": 365, "id": 63, "annotation": null}, {"text": "that", "start": 366, "end": 370, "id": 64, "annotation": null}, {"text": "edge", "start": 371, "end": 375, "id": 65, "annotation": null}, {"text": "states", "start": 376, "end": 382, "id": 66, "annotation": null}, {"text": "are", "start": 383, "end": 386, "id": 67, "annotation": null}, {"text": "almost", "start": 387, "end": 393, "id": 68, "annotation": null}, {"text": "buried", "start": 394, "end": 400, "id": 69, "annotation": null}, {"text": "in", "start": 401, "end": 403, "id": 70, "annotation": null}, {"text": "the", "start": 404, "end": 407, "id": 71, "annotation": null}, {"text": "valence", "start": 408, "end": 415, "id": 72, "annotation": null}, {"text": "band", "start": 416, "end": 420, "id": 73, "annotation": null}, {"text": "and", "start": 421, "end": 424, "id": 74, "annotation": null}, {"text": "there", "start": 425, "end": 430, "id": 75, "annotation": null}, {"text": "is", "start": 431, "end": 433, "id": 76, "annotation": null}, {"text": "no", "start": 434, "end": 436, "id": 77, "annotation": null}, {"text": "isolated", "start": 437, "end": 445, "id": 78, "annotation": null}, {"text": "midgap", "start": 446, "end": 452, "id": 79, "annotation": null}, {"text": "edge", "start": 453, "end": 457, "id": 80, "annotation": null}, {"text": "state", "start": 458, "end": 463, "id": 81, "annotation": null}, {"text": "at", "start": 464, "end": 466, "id": 82, "annotation": null}, {"text": "the", "start": 467, "end": 470, "id": 83, "annotation": null}, {"text": "zigzag", "start": 471, "end": 477, "id": 84, "annotation": null}, {"text": "edge", "start": 478, "end": 482, "id": 85, "annotation": null}, {"text": ".", "start": 483, "end": 484, "id": 86, "annotation": null}], [{"text": "Since", "start": 485, "end": 490, "id": 87, "annotation": null}, {"text": "the", "start": 491, "end": 494, "id": 88, "annotation": null}, {"text": "buried", "start": 495, "end": 501, "id": 89, "annotation": null}, {"text": "edge", "start": 502, "end": 506, "id": 90, "annotation": null}, {"text": "state", "start": 507, "end": 512, "id": 91, "annotation": null}, {"text": "works", "start": 513, "end": 518, "id": 92, "annotation": null}, {"text": "as", "start": 519, "end": 521, "id": 93, "annotation": null}, {"text": "acceptor", "start": 522, "end": 530, "id": 94, "annotation": null}, {"text": ",", "start": 531, "end": 532, "id": 95, "annotation": null}, {"text": "holes", "start": 533, "end": 538, "id": 96, "annotation": "DOPANT"}, {"text": "are", "start": 539, "end": 542, "id": 97, "annotation": null}, {"text": "doped", "start": 543, "end": 548, "id": 98, "annotation": null}, {"text": "from", "start": 549, "end": 553, "id": 99, "annotation": null}, {"text": "the", "start": 554, "end": 557, "id": 100, "annotation": null}, {"text": "edge", "start": 558, "end": 562, "id": 101, "annotation": null}, {"text": "state", "start": 563, "end": 568, "id": 102, "annotation": null}, {"text": "into", "start": 569, "end": 573, "id": 103, "annotation": null}, {"text": "the", "start": 574, "end": 577, "id": 104, "annotation": null}, {"text": "bulk", "start": 578, "end": 582, "id": 105, "annotation": "BASEMAT"}, {"text": ".", "start": 583, "end": 584, "id": 106, "annotation": null}], [{"text": "This", "start": 585, "end": 589, "id": 107, "annotation": null}, {"text": "gives", "start": 590, "end": 595, "id": 108, "annotation": null}, {"text": "a", "start": 596, "end": 597, "id": 109, "annotation": null}, {"text": "possible", "start": 598, "end": 606, "id": 110, "annotation": null}, {"text": "explanation", "start": 607, "end": 618, "id": 111, "annotation": null}, {"text": "for", "start": 619, "end": 622, "id": 112, "annotation": null}, {"text": "p", "start": 623, "end": 624, "id": 113, "annotation": "DOPANT"}, {"text": "-", "start": 625, "end": 626, "id": 114, "annotation": "DOPANT"}, {"text": "type", "start": 627, "end": 631, "id": 115, "annotation": "DOPANT"}, {"text": "conduction", "start": 632, "end": 642, "id": 116, "annotation": null}, {"text": "in", "start": 643, "end": 645, "id": 117, "annotation": null}, {"text": "undoped", "start": 646, "end": 653, "id": 118, "annotation": null}, {"text": "black", "start": 654, "end": 659, "id": 119, "annotation": null}, {"text": "phosphorus", "start": 660, "end": 670, "id": 120, "annotation": "BASEMAT"}, {"text": ".", "start": 671, "end": 672, "id": 121, "annotation": null}], [{"text": "Under", "start": 673, "end": 678, "id": 122, "annotation": null}, {"text": "the", "start": 679, "end": 682, "id": 123, "annotation": null}, {"text": "vertical", "start": 683, "end": 691, "id": 124, "annotation": null}, {"text": "electric", "start": 692, "end": 700, "id": 125, "annotation": null}, {"text": "field", "start": 701, "end": 706, "id": 126, "annotation": null}, {"text": ",", "start": 707, "end": 708, "id": 127, "annotation": null}, {"text": "the", "start": 709, "end": 712, "id": 128, "annotation": null}, {"text": "intrinsic", "start": 713, "end": 722, "id": 129, "annotation": null}, {"text": "hole", "start": 723, "end": 727, "id": 130, "annotation": "DOPANT"}, {"text": "doping", "start": 728, "end": 734, "id": 131, "annotation": null}, {"text": "is", "start": 735, "end": 737, "id": 132, "annotation": null}, {"text": "reduced", "start": 738, "end": 745, "id": 133, "annotation": null}, {"text": "because", "start": 746, "end": 753, "id": 134, "annotation": null}, {"text": "a", "start": 754, "end": 755, "id": 135, "annotation": null}, {"text": "part", "start": 756, "end": 760, "id": 136, "annotation": null}, {"text": "of", "start": 761, "end": 763, "id": 137, "annotation": null}, {"text": "edge", "start": 764, "end": 768, "id": 138, "annotation": null}, {"text": "states", "start": 769, "end": 775, "id": 139, "annotation": null}, {"text": "move", "start": 776, "end": 780, "id": 140, "annotation": null}, {"text": "into", "start": 781, "end": 785, "id": 141, "annotation": null}, {"text": "the", "start": 786, "end": 789, "id": 142, "annotation": null}, {"text": "gap", "start": 790, "end": 793, "id": 143, "annotation": null}, {"text": ".", "start": 794, "end": 795, "id": 144, "annotation": null}], [{"text": "These", "start": 796, "end": 801, "id": 145, "annotation": null}, {"text": "features", "start": 802, "end": 810, "id": 146, "annotation": null}, {"text": "of", "start": 811, "end": 813, "id": 147, "annotation": null}, {"text": "bilayer", "start": 814, "end": 821, "id": 148, "annotation": null}, {"text": "phosphorene", "start": 822, "end": 833, "id": 149, "annotation": null}, {"text": "might", "start": 834, "end": 839, "id": 150, "annotation": null}, {"text": "be", "start": 840, "end": 842, "id": 151, "annotation": null}, {"text": "better", "start": 843, "end": 849, "id": 152, "annotation": null}, {"text": "suited", "start": 850, "end": 856, "id": 153, "annotation": null}, {"text": "for", "start": 857, "end": 860, "id": 154, "annotation": null}, {"text": "device", "start": 861, "end": 867, "id": 155, "annotation": null}, {"text": "application", "start": 868, "end": 879, "id": 156, "annotation": null}, {"text": ".", "start": 880, "end": 881, "id": 157, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt2", "text": "Centimeter-sized single crystals of pure and Er-doped KPb2Cl5 were successfully grown by the Bridgman\u2013Stockbarger method using silica ampoules sealed under HCl gas. The phase transition that occurs at 255\u00b0C (528.15K) was characterized by differential scanning calorimetry and found not to entail mechanical breakdown of the crystals. The KPb2Cl5 volumic mass and specific heat functions were measured from \u223c700 to 760K and \u223c120 to 760K, respectively. An updated Ellingham diagram for chlorides aimed at choosing the crucible material, synthesis and crystal growth atmosphere, and starting products is proposed.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Centimeter", "start": 0, "end": 10, "annotation": null}, {"text": "-", "start": 10, "end": 11, "annotation": null}, {"text": "sized", "start": 11, "end": 16, "annotation": null}, {"text": "single", "start": 17, "end": 23, "annotation": null}, {"text": "crystals", "start": 24, "end": 32, "annotation": null}, {"text": "of", "start": 33, "end": 35, "annotation": null}, {"text": "pure", "start": 36, "end": 40, "annotation": null}, {"text": "and", "start": 41, "end": 44, "annotation": null}, {"text": "Er", "start": 45, "end": 47, "annotation": "DOPANT"}, {"text": "-", "start": 47, "end": 48, "annotation": null}, {"text": "doped", "start": 48, "end": 53, "annotation": null}, {"text": "KPb2Cl5", "start": 54, "end": 61, "annotation": "BASEMAT"}, {"text": "were", "start": 62, "end": 66, "annotation": null}, {"text": "successfully", "start": 67, "end": 79, "annotation": null}, {"text": "grown", "start": 80, "end": 85, "annotation": null}, {"text": "by", "start": 86, "end": 88, "annotation": null}, {"text": "the", "start": 89, "end": 92, "annotation": null}, {"text": "Bridgman", "start": 93, "end": 101, "annotation": null}, {"text": "\u2013", "start": 101, "end": 102, "annotation": null}, {"text": "Stockbarger", "start": 102, "end": 113, "annotation": null}, {"text": "method", "start": 114, "end": 120, "annotation": null}, {"text": "using", "start": 121, "end": 126, "annotation": null}, {"text": "silica", "start": 127, "end": 133, "annotation": null}, {"text": "ampoules", "start": 134, "end": 142, "annotation": null}, {"text": "sealed", "start": 143, "end": 149, "annotation": null}, {"text": "under", "start": 150, "end": 155, "annotation": null}, {"text": "HCl", "start": 156, "end": 159, "annotation": null}, {"text": "gas", "start": 160, "end": 163, "annotation": null}, {"text": ".", "start": 163, "end": 164, "annotation": null}], [{"text": "The", "start": 165, "end": 168, "annotation": null}, {"text": "phase", "start": 169, "end": 174, "annotation": null}, {"text": "transition", "start": 175, "end": 185, "annotation": null}, {"text": "that", "start": 186, "end": 190, "annotation": null}, {"text": "occurs", "start": 191, "end": 197, "annotation": null}, {"text": "at", "start": 198, "end": 200, "annotation": null}, {"text": "255", "start": 201, "end": 204, "annotation": null}, {"text": "\u00b0", "start": 204, "end": 205, "annotation": null}, {"text": "C", "start": 205, "end": 206, "annotation": null}, {"text": "(", "start": 207, "end": 208, "annotation": null}, {"text": "528.15K", "start": 208, "end": 215, "annotation": null}, {"text": ")", "start": 215, "end": 216, "annotation": null}, {"text": "was", "start": 217, "end": 220, "annotation": null}, {"text": "characterized", "start": 221, "end": 234, "annotation": null}, {"text": "by", "start": 235, "end": 237, "annotation": null}, {"text": "differential", "start": 238, "end": 250, "annotation": null}, {"text": "scanning", "start": 251, "end": 259, "annotation": null}, {"text": "calorimetry", "start": 260, "end": 271, "annotation": null}, {"text": "and", "start": 272, "end": 275, "annotation": null}, {"text": "found", "start": 276, "end": 281, "annotation": null}, {"text": "not", "start": 282, "end": 285, "annotation": null}, {"text": "to", "start": 286, "end": 288, "annotation": null}, {"text": "entail", "start": 289, "end": 295, "annotation": null}, {"text": "mechanical", "start": 296, "end": 306, "annotation": null}, {"text": "breakdown", "start": 307, "end": 316, "annotation": null}, {"text": "of", "start": 317, "end": 319, "annotation": null}, {"text": "the", "start": 320, "end": 323, "annotation": null}, {"text": "crystals", "start": 324, "end": 332, "annotation": null}, {"text": ".", "start": 332, "end": 333, "annotation": null}], [{"text": "The", "start": 334, "end": 337, "annotation": null}, {"text": "KPb2Cl5", "start": 338, "end": 345, "annotation": null}, {"text": "volumic", "start": 346, "end": 353, "annotation": null}, {"text": "mass", "start": 354, "end": 358, "annotation": null}, {"text": "and", "start": 359, "end": 362, "annotation": null}, {"text": "specific", "start": 363, "end": 371, "annotation": null}, {"text": "heat", "start": 372, "end": 376, "annotation": null}, {"text": "functions", "start": 377, "end": 386, "annotation": null}, {"text": "were", "start": 387, "end": 391, "annotation": null}, {"text": "measured", "start": 392, "end": 400, "annotation": null}, {"text": "from", "start": 401, "end": 405, "annotation": null}, {"text": "\u223c", "start": 406, "end": 407, "annotation": null}, {"text": "700", "start": 407, "end": 410, "annotation": null}, {"text": "to", "start": 411, "end": 413, "annotation": null}, {"text": "760K", "start": 414, "end": 418, "annotation": null}, {"text": "and", "start": 419, "end": 422, "annotation": null}, {"text": "\u223c", "start": 423, "end": 424, "annotation": null}, {"text": "120", "start": 424, "end": 427, "annotation": null}, {"text": "to", "start": 428, "end": 430, "annotation": null}, {"text": "760K", "start": 431, "end": 435, "annotation": null}, {"text": ",", "start": 435, "end": 436, "annotation": null}, {"text": "respectively", "start": 437, "end": 449, "annotation": null}, {"text": ".", "start": 449, "end": 450, "annotation": null}], [{"text": "An", "start": 451, "end": 453, "annotation": null}, {"text": "updated", "start": 454, "end": 461, "annotation": null}, {"text": "Ellingham", "start": 462, "end": 471, "annotation": null}, {"text": "diagram", "start": 472, "end": 479, "annotation": null}, {"text": "for", "start": 480, "end": 483, "annotation": null}, {"text": "chlorides", "start": 484, "end": 493, "annotation": null}, {"text": "aimed", "start": 494, "end": 499, "annotation": null}, {"text": "at", "start": 500, "end": 502, "annotation": null}, {"text": "choosing", "start": 503, "end": 511, "annotation": null}, {"text": "the", "start": 512, "end": 515, "annotation": null}, {"text": "crucible", "start": 516, "end": 524, "annotation": null}, {"text": "material", "start": 525, "end": 533, "annotation": null}, {"text": ",", "start": 533, "end": 534, "annotation": null}, {"text": "synthesis", "start": 535, "end": 544, "annotation": null}, {"text": "and", "start": 545, "end": 548, "annotation": null}, {"text": "crystal", "start": 549, "end": 556, "annotation": null}, {"text": "growth", "start": 557, "end": 563, "annotation": null}, {"text": "atmosphere", "start": 564, "end": 574, "annotation": null}, {"text": ",", "start": 574, "end": 575, "annotation": null}, {"text": "and", "start": 576, "end": 579, "annotation": null}, {"text": "starting", "start": 580, "end": 588, "annotation": null}, {"text": "products", "start": 589, "end": 597, "annotation": null}, {"text": "is", "start": 598, "end": 600, "annotation": null}, {"text": "proposed", "start": 601, "end": 609, "annotation": null}, {"text": ".", "start": 609, "end": 610, "annotation": null}]], "meta": {"doi": "10.1016/j.jcrysgro.2005.10.015"}} +{"remark": "doping_annt1", "text": "Robust visible-light Gd\u2013La codoped TiO2 nanotubes were successfully synthesized via an ultrasonic hydrothermal method and the photocatalytic activities were evaluated by photodegrading Rhodamine B (RB). The calcined Gd\u2013La codoped TiO2 nanotubes have significantly enhanced photocatalytic activities than the uncalcined ones. The La3+ and Gd3+ in the lattices of rare earth oxides may be substituted by Ti4+, creating abundant oxygen vacancies and surface defects for electron trapping and dye adsorption, accelerating the separation of photogenerated electron\u2013hole pairs and RB photodegradation. The formation of an excitation energy level below the conduction band of TiO2 from the binding of electrons and oxygen vacancies decreases the excitation energy of Gd\u2013La codoped TiO2 nanotubes, resulting in robust photocatalysts. The results suggest that Gd\u2013La codoped TiO2 nanotubes calcined at 500\u00b0C are very promising for enhancing the photocatalytic activity of photocatalysts in visible-light region.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Robust", "start": 0, "end": 6, "annotation": null}, {"text": "visible", "start": 7, "end": 14, "annotation": null}, {"text": "-", "start": 14, "end": 15, "annotation": null}, {"text": "light", "start": 15, "end": 20, "annotation": null}, {"text": "Gd", "start": 21, "end": 23, "annotation": "DOPANT"}, {"text": "\u2013", "start": 23, "end": 24, "annotation": "DOPANT"}, {"text": "La", "start": 24, "end": 26, "annotation": "DOPANT"}, {"text": "codoped", "start": 27, "end": 34, "annotation": null}, {"text": "TiO2", "start": 35, "end": 39, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 40, "end": 49, "annotation": null}, {"text": "were", "start": 50, "end": 54, "annotation": null}, {"text": "successfully", "start": 55, "end": 67, "annotation": null}, {"text": "synthesized", "start": 68, "end": 79, "annotation": null}, {"text": "via", "start": 80, "end": 83, "annotation": null}, {"text": "an", "start": 84, "end": 86, "annotation": null}, {"text": "ultrasonic", "start": 87, "end": 97, "annotation": null}, {"text": "hydrothermal", "start": 98, "end": 110, "annotation": null}, {"text": "method", "start": 111, "end": 117, "annotation": null}, {"text": "and", "start": 118, "end": 121, "annotation": null}, {"text": "the", "start": 122, "end": 125, "annotation": null}, {"text": "photocatalytic", "start": 126, "end": 140, "annotation": null}, {"text": "activities", "start": 141, "end": 151, "annotation": null}, {"text": "were", "start": 152, "end": 156, "annotation": null}, {"text": "evaluated", "start": 157, "end": 166, "annotation": null}, {"text": "by", "start": 167, "end": 169, "annotation": null}, {"text": "photodegrading", "start": 170, "end": 184, "annotation": null}, {"text": "Rhodamine", "start": 185, "end": 194, "annotation": null}, {"text": "B", "start": 195, "end": 196, "annotation": null}, {"text": "(", "start": 197, "end": 198, "annotation": null}, {"text": "RB", "start": 198, "end": 200, "annotation": null}, {"text": ")", "start": 200, "end": 201, "annotation": null}, {"text": ".", "start": 201, "end": 202, "annotation": null}], [{"text": "The", "start": 203, "end": 206, "annotation": null}, {"text": "calcined", "start": 207, "end": 215, "annotation": null}, {"text": "Gd", "start": 216, "end": 218, "annotation": "DOPANT"}, {"text": "\u2013", "start": 218, "end": 219, "annotation": "DOPANT"}, {"text": "La", "start": 219, "end": 221, "annotation": "DOPANT"}, {"text": "codoped", "start": 222, "end": 229, "annotation": null}, {"text": "TiO2", "start": 230, "end": 234, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 235, "end": 244, "annotation": null}, {"text": "have", "start": 245, "end": 249, "annotation": null}, {"text": "significantly", "start": 250, "end": 263, "annotation": null}, {"text": "enhanced", "start": 264, "end": 272, "annotation": null}, {"text": "photocatalytic", "start": 273, "end": 287, "annotation": null}, {"text": "activities", "start": 288, "end": 298, "annotation": null}, {"text": "than", "start": 299, "end": 303, "annotation": null}, {"text": "the", "start": 304, "end": 307, "annotation": null}, {"text": "uncalcined", "start": 308, "end": 318, "annotation": null}, {"text": "ones", "start": 319, "end": 323, "annotation": null}, {"text": ".", "start": 323, "end": 324, "annotation": null}], [{"text": "The", "start": 325, "end": 328, "annotation": null}, {"text": "La3+", "start": 329, "end": 333, "annotation": null}, {"text": "and", "start": 334, "end": 337, "annotation": null}, {"text": "Gd3+", "start": 338, "end": 342, "annotation": null}, {"text": "in", "start": 343, "end": 345, "annotation": null}, {"text": "the", "start": 346, "end": 349, "annotation": null}, {"text": "lattices", "start": 350, "end": 358, "annotation": null}, {"text": "of", "start": 359, "end": 361, "annotation": null}, {"text": "rare", "start": 362, "end": 366, "annotation": null}, {"text": "earth", "start": 367, "end": 372, "annotation": null}, {"text": "oxides", "start": 373, "end": 379, "annotation": null}, {"text": "may", "start": 380, "end": 383, "annotation": null}, {"text": "be", "start": 384, "end": 386, "annotation": null}, {"text": "substituted", "start": 387, "end": 398, "annotation": null}, {"text": "by", "start": 399, "end": 401, "annotation": null}, {"text": "Ti4+", "start": 402, "end": 406, "annotation": null}, {"text": ",", "start": 406, "end": 407, "annotation": null}, {"text": "creating", "start": 408, "end": 416, "annotation": null}, {"text": "abundant", "start": 417, "end": 425, "annotation": null}, {"text": "oxygen", "start": 426, "end": 432, "annotation": null}, {"text": "vacancies", "start": 433, "end": 442, "annotation": null}, {"text": "and", "start": 443, "end": 446, "annotation": null}, {"text": "surface", "start": 447, "end": 454, "annotation": null}, {"text": "defects", "start": 455, "end": 462, "annotation": null}, {"text": "for", "start": 463, "end": 466, "annotation": null}, {"text": "electron", "start": 467, "end": 475, "annotation": null}, {"text": "trapping", "start": 476, "end": 484, "annotation": null}, {"text": "and", "start": 485, "end": 488, "annotation": null}, {"text": "dye", "start": 489, "end": 492, "annotation": null}, {"text": "adsorption", "start": 493, "end": 503, "annotation": null}, {"text": ",", "start": 503, "end": 504, "annotation": null}, {"text": "accelerating", "start": 505, "end": 517, "annotation": null}, {"text": "the", "start": 518, "end": 521, "annotation": null}, {"text": "separation", "start": 522, "end": 532, "annotation": null}, {"text": "of", "start": 533, "end": 535, "annotation": null}, {"text": "photogenerated", "start": 536, "end": 550, "annotation": null}, {"text": "electron", "start": 551, "end": 559, "annotation": null}, {"text": "\u2013", "start": 559, "end": 560, "annotation": null}, {"text": "hole", "start": 560, "end": 564, "annotation": null}, {"text": "pairs", "start": 565, "end": 570, "annotation": null}, {"text": "and", "start": 571, "end": 574, "annotation": null}, {"text": "RB", "start": 575, "end": 577, "annotation": null}, {"text": "photodegradation", "start": 578, "end": 594, "annotation": null}, {"text": ".", "start": 594, "end": 595, "annotation": null}], [{"text": "The", "start": 596, "end": 599, "annotation": null}, {"text": "formation", "start": 600, "end": 609, "annotation": null}, {"text": "of", "start": 610, "end": 612, "annotation": null}, {"text": "an", "start": 613, "end": 615, "annotation": null}, {"text": "excitation", "start": 616, "end": 626, "annotation": null}, {"text": "energy", "start": 627, "end": 633, "annotation": null}, {"text": "level", "start": 634, "end": 639, "annotation": null}, {"text": "below", "start": 640, "end": 645, "annotation": null}, {"text": "the", "start": 646, "end": 649, "annotation": null}, {"text": "conduction", "start": 650, "end": 660, "annotation": null}, {"text": "band", "start": 661, "end": 665, "annotation": null}, {"text": "of", "start": 666, "end": 668, "annotation": null}, {"text": "TiO2", "start": 669, "end": 673, "annotation": null}, {"text": "from", "start": 674, "end": 678, "annotation": null}, {"text": "the", "start": 679, "end": 682, "annotation": null}, {"text": "binding", "start": 683, "end": 690, "annotation": null}, {"text": "of", "start": 691, "end": 693, "annotation": null}, {"text": "electrons", "start": 694, "end": 703, "annotation": null}, {"text": "and", "start": 704, "end": 707, "annotation": null}, {"text": "oxygen", "start": 708, "end": 714, "annotation": null}, {"text": "vacancies", "start": 715, "end": 724, "annotation": null}, {"text": "decreases", "start": 725, "end": 734, "annotation": null}, {"text": "the", "start": 735, "end": 738, "annotation": null}, {"text": "excitation", "start": 739, "end": 749, "annotation": null}, {"text": "energy", "start": 750, "end": 756, "annotation": null}, {"text": "of", "start": 757, "end": 759, "annotation": null}, {"text": "Gd", "start": 760, "end": 762, "annotation": "DOPANT"}, {"text": "\u2013", "start": 762, "end": 763, "annotation": "DOPANT"}, {"text": "La", "start": 763, "end": 765, "annotation": "DOPANT"}, {"text": "codoped", "start": 766, "end": 773, "annotation": null}, {"text": "TiO2", "start": 774, "end": 778, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 779, "end": 788, "annotation": null}, {"text": ",", "start": 788, "end": 789, "annotation": null}, {"text": "resulting", "start": 790, "end": 799, "annotation": null}, {"text": "in", "start": 800, "end": 802, "annotation": null}, {"text": "robust", "start": 803, "end": 809, "annotation": null}, {"text": "photocatalysts", "start": 810, "end": 824, "annotation": null}, {"text": ".", "start": 824, "end": 825, "annotation": null}], [{"text": "The", "start": 826, "end": 829, "annotation": null}, {"text": "results", "start": 830, "end": 837, "annotation": null}, {"text": "suggest", "start": 838, "end": 845, "annotation": null}, {"text": "that", "start": 846, "end": 850, "annotation": null}, {"text": "Gd", "start": 851, "end": 853, "annotation": "DOPANT"}, {"text": "\u2013", "start": 853, "end": 854, "annotation": "DOPANT"}, {"text": "La", "start": 854, "end": 856, "annotation": "DOPANT"}, {"text": "codoped", "start": 857, "end": 864, "annotation": null}, {"text": "TiO2", "start": 865, "end": 869, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 870, "end": 879, "annotation": null}, {"text": "calcined", "start": 880, "end": 888, "annotation": null}, {"text": "at", "start": 889, "end": 891, "annotation": null}, {"text": "500", "start": 892, "end": 895, "annotation": null}, {"text": "\u00b0", "start": 895, "end": 896, "annotation": null}, {"text": "C", "start": 896, "end": 897, "annotation": null}, {"text": "are", "start": 898, "end": 901, "annotation": null}, {"text": "very", "start": 902, "end": 906, "annotation": null}, {"text": "promising", "start": 907, "end": 916, "annotation": null}, {"text": "for", "start": 917, "end": 920, "annotation": null}, {"text": "enhancing", "start": 921, "end": 930, "annotation": null}, {"text": "the", "start": 931, "end": 934, "annotation": null}, {"text": "photocatalytic", "start": 935, "end": 949, "annotation": null}, {"text": "activity", "start": 950, "end": 958, "annotation": null}, {"text": "of", "start": 959, "end": 961, "annotation": null}, {"text": "photocatalysts", "start": 962, "end": 976, "annotation": null}, {"text": "in", "start": 977, "end": 979, "annotation": null}, {"text": "visible", "start": 980, "end": 987, "annotation": null}, {"text": "-", "start": 987, "end": 988, "annotation": null}, {"text": "light", "start": 988, "end": 993, "annotation": null}, {"text": "region", "start": 994, "end": 1000, "annotation": null}, {"text": ".", "start": 1000, "end": 1001, "annotation": null}]], "meta": {"doi": "10.1016/j.ceramint.2013.10.054"}} {"text": "We investigate the growth of Cr\u2013N codoped anatase TiO2(001) thin films, prepared with a pulsed-laser-deposition (PLD) method using a mixed Cr2O3 and TiN ceramic target (6at.% Cr), and characterized using scanning tunneling microscopy (STM), X-ray and ultraviolet photoemission spectroscopy (XPS/UPS), and ultraviolet\u2013visible (UV\u2013Vis) absorption spectroscopy. We find that the doping concentration of N in the films can be finely tuned by the O2 pressure and the growth temperature. By optimizing the growth conditions, we obtain the anatase TiO2(001) films with relatively smooth (1\u00d74) reconstructed surface at equally codoped contents of 6at.% Cr and 6at.% N. The roughness of the surface is about 0.9nm in root mean square, and the typical size of the (1\u00d74) terraces is about 20nm. The XPS results indicate that Cr and N should be both substitutionally doped in the film. From the UPS spectrum for the codoped film, the valence band maximum is significantly lifted by about 1.3eV, indicating a narrowing band gap of 1.9eV. The optical absorption spectrum shows that the codoped film noticeably absorbs the light at less than 710nm. Derived from the optical absorption spectrum, an estimated band gap value of 1.78eV is obtained, which is consistent with the UPS result.", "meta": {"doi": "10.1016/j.susc.2013.05.008"}, "_input_hash": 1574624331, "_task_hash": 591158318, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "investigate", "start": 3, "end": 14, "id": 1, "annotation": null}, {"text": "the", "start": 15, "end": 18, "id": 2, "annotation": null}, {"text": "growth", "start": 19, "end": 25, "id": 3, "annotation": null}, {"text": "of", "start": 26, "end": 28, "id": 4, "annotation": null}, {"text": "Cr", "start": 29, "end": 31, "id": 5, "annotation": "DOPANT"}, {"text": "\u2013", "start": 32, "end": 33, "id": 6, "annotation": null}, {"text": "N", "start": 34, "end": 35, "id": 7, "annotation": "DOPANT"}, {"text": "codoped", "start": 36, "end": 43, "id": 8, "annotation": null}, {"text": "anatase", "start": 44, "end": 51, "id": 9, "annotation": null}, {"text": "TiO2(001", "start": 52, "end": 60, "id": 10, "annotation": "BASEMAT"}, {"text": ")", "start": 61, "end": 62, "id": 11, "annotation": "BASEMAT"}, {"text": "thin", "start": 63, "end": 67, "id": 12, "annotation": null}, {"text": "films", "start": 68, "end": 73, "id": 13, "annotation": null}, {"text": ",", "start": 74, "end": 75, "id": 14, "annotation": null}, {"text": "prepared", "start": 76, "end": 84, "id": 15, "annotation": null}, {"text": "with", "start": 85, "end": 89, "id": 16, "annotation": null}, {"text": "a", "start": 90, "end": 91, "id": 17, "annotation": null}, {"text": "pulsed", "start": 92, "end": 98, "id": 18, "annotation": null}, {"text": "-", "start": 99, "end": 100, "id": 19, "annotation": null}, {"text": "laser", "start": 101, "end": 106, "id": 20, "annotation": null}, {"text": "-", "start": 107, "end": 108, "id": 21, "annotation": null}, {"text": "deposition", "start": 109, "end": 119, "id": 22, "annotation": null}, {"text": "(", "start": 120, "end": 121, "id": 23, "annotation": null}, {"text": "PLD", "start": 122, "end": 125, "id": 24, "annotation": null}, {"text": ")", "start": 126, "end": 127, "id": 25, "annotation": null}, {"text": "method", "start": 128, "end": 134, "id": 26, "annotation": null}, {"text": "using", "start": 135, "end": 140, "id": 27, "annotation": null}, {"text": "a", "start": 141, "end": 142, "id": 28, "annotation": null}, {"text": "mixed", "start": 143, "end": 148, "id": 29, "annotation": null}, {"text": "Cr2O3", "start": 149, "end": 154, "id": 30, "annotation": null}, {"text": "and", "start": 155, "end": 158, "id": 31, "annotation": null}, {"text": "TiN", "start": 159, "end": 162, "id": 32, "annotation": null}, {"text": "ceramic", "start": 163, "end": 170, "id": 33, "annotation": null}, {"text": "target", "start": 171, "end": 177, "id": 34, "annotation": null}, {"text": "(", "start": 178, "end": 179, "id": 35, "annotation": null}, {"text": "6at.%", "start": 180, "end": 185, "id": 36, "annotation": null}, {"text": "Cr", "start": 186, "end": 188, "id": 37, "annotation": null}, {"text": ")", "start": 189, "end": 190, "id": 38, "annotation": null}, {"text": ",", "start": 191, "end": 192, "id": 39, "annotation": null}, {"text": "and", "start": 193, "end": 196, "id": 40, "annotation": null}, {"text": "characterized", "start": 197, "end": 210, "id": 41, "annotation": null}, {"text": "using", "start": 211, "end": 216, "id": 42, "annotation": null}, {"text": "scanning", "start": 217, "end": 225, "id": 43, "annotation": null}, {"text": "tunneling", "start": 226, "end": 235, "id": 44, "annotation": null}, {"text": "microscopy", "start": 236, "end": 246, "id": 45, "annotation": null}, {"text": "(", "start": 247, "end": 248, "id": 46, "annotation": null}, {"text": "STM", "start": 249, "end": 252, "id": 47, "annotation": null}, {"text": ")", "start": 253, "end": 254, "id": 48, "annotation": null}, {"text": ",", "start": 255, "end": 256, "id": 49, "annotation": null}, {"text": "X", "start": 257, "end": 258, "id": 50, "annotation": null}, {"text": "-", "start": 259, "end": 260, "id": 51, "annotation": null}, {"text": "ray", "start": 261, "end": 264, "id": 52, "annotation": null}, {"text": "and", "start": 265, "end": 268, "id": 53, "annotation": null}, {"text": "ultraviolet", "start": 269, "end": 280, "id": 54, "annotation": null}, {"text": "photoemission", "start": 281, "end": 294, "id": 55, "annotation": null}, {"text": "spectroscopy", "start": 295, "end": 307, "id": 56, "annotation": null}, {"text": "(", "start": 308, "end": 309, "id": 57, "annotation": null}, {"text": "XPS", "start": 310, "end": 313, "id": 58, "annotation": null}, {"text": "/", "start": 314, "end": 315, "id": 59, "annotation": null}, {"text": "UPS", "start": 316, "end": 319, "id": 60, "annotation": null}, {"text": ")", "start": 320, "end": 321, "id": 61, "annotation": null}, {"text": ",", "start": 322, "end": 323, "id": 62, "annotation": null}, {"text": "and", "start": 324, "end": 327, "id": 63, "annotation": null}, {"text": "ultraviolet", "start": 328, "end": 339, "id": 64, "annotation": null}, {"text": "\u2013", "start": 340, "end": 341, "id": 65, "annotation": null}, {"text": "visible", "start": 342, "end": 349, "id": 66, "annotation": null}, {"text": "(", "start": 350, "end": 351, "id": 67, "annotation": null}, {"text": "UV", "start": 352, "end": 354, "id": 68, "annotation": null}, {"text": "\u2013", "start": 355, "end": 356, "id": 69, "annotation": null}, {"text": "Vis", "start": 357, "end": 360, "id": 70, "annotation": null}, {"text": ")", "start": 361, "end": 362, "id": 71, "annotation": null}, {"text": "absorption", "start": 363, "end": 373, "id": 72, "annotation": null}, {"text": "spectroscopy", "start": 374, "end": 386, "id": 73, "annotation": null}, {"text": ".", "start": 387, "end": 388, "id": 74, "annotation": null}], [{"text": "We", "start": 389, "end": 391, "id": 75, "annotation": null}, {"text": "find", "start": 392, "end": 396, "id": 76, "annotation": null}, {"text": "that", "start": 397, "end": 401, "id": 77, "annotation": null}, {"text": "the", "start": 402, "end": 405, "id": 78, "annotation": null}, {"text": "doping", "start": 406, "end": 412, "id": 79, "annotation": null}, {"text": "concentration", "start": 413, "end": 426, "id": 80, "annotation": null}, {"text": "of", "start": 427, "end": 429, "id": 81, "annotation": null}, {"text": "N", "start": 430, "end": 431, "id": 82, "annotation": "DOPANT"}, {"text": "in", "start": 432, "end": 434, "id": 83, "annotation": null}, {"text": "the", "start": 435, "end": 438, "id": 84, "annotation": null}, {"text": "films", "start": 439, "end": 444, "id": 85, "annotation": null}, {"text": "can", "start": 445, "end": 448, "id": 86, "annotation": null}, {"text": "be", "start": 449, "end": 451, "id": 87, "annotation": null}, {"text": "finely", "start": 452, "end": 458, "id": 88, "annotation": null}, {"text": "tuned", "start": 459, "end": 464, "id": 89, "annotation": null}, {"text": "by", "start": 465, "end": 467, "id": 90, "annotation": null}, {"text": "the", "start": 468, "end": 471, "id": 91, "annotation": null}, {"text": "O2", "start": 472, "end": 474, "id": 92, "annotation": null}, {"text": "pressure", "start": 475, "end": 483, "id": 93, "annotation": null}, {"text": "and", "start": 484, "end": 487, "id": 94, "annotation": null}, {"text": "the", "start": 488, "end": 491, "id": 95, "annotation": null}, {"text": "growth", "start": 492, "end": 498, "id": 96, "annotation": null}, {"text": "temperature", "start": 499, "end": 510, "id": 97, "annotation": null}, {"text": ".", "start": 511, "end": 512, "id": 98, "annotation": null}], [{"text": "By", "start": 513, "end": 515, "id": 99, "annotation": null}, {"text": "optimizing", "start": 516, "end": 526, "id": 100, "annotation": null}, {"text": "the", "start": 527, "end": 530, "id": 101, "annotation": null}, {"text": "growth", "start": 531, "end": 537, "id": 102, "annotation": null}, {"text": "conditions", "start": 538, "end": 548, "id": 103, "annotation": null}, {"text": ",", "start": 549, "end": 550, "id": 104, "annotation": null}, {"text": "we", "start": 551, "end": 553, "id": 105, "annotation": null}, {"text": "obtain", "start": 554, "end": 560, "id": 106, "annotation": null}, {"text": "the", "start": 561, "end": 564, "id": 107, "annotation": null}, {"text": "anatase", "start": 565, "end": 572, "id": 108, "annotation": null}, {"text": "TiO2(001", "start": 573, "end": 581, "id": 109, "annotation": "BASEMAT"}, {"text": ")", "start": 582, "end": 583, "id": 110, "annotation": "BASEMAT"}, {"text": "films", "start": 584, "end": 589, "id": 111, "annotation": null}, {"text": "with", "start": 590, "end": 594, "id": 112, "annotation": null}, {"text": "relatively", "start": 595, "end": 605, "id": 113, "annotation": null}, {"text": "smooth", "start": 606, "end": 612, "id": 114, "annotation": null}, {"text": "(", "start": 613, "end": 614, "id": 115, "annotation": null}, {"text": "1\u00d74", "start": 615, "end": 618, "id": 116, "annotation": null}, {"text": ")", "start": 619, "end": 620, "id": 117, "annotation": null}, {"text": "reconstructed", "start": 621, "end": 634, "id": 118, "annotation": null}, {"text": "surface", "start": 635, "end": 642, "id": 119, "annotation": null}, {"text": "at", "start": 643, "end": 645, "id": 120, "annotation": null}, {"text": "equally", "start": 646, "end": 653, "id": 121, "annotation": null}, {"text": "codoped", "start": 654, "end": 661, "id": 122, "annotation": null}, {"text": "contents", "start": 662, "end": 670, "id": 123, "annotation": null}, {"text": "of", "start": 671, "end": 673, "id": 124, "annotation": null}, {"text": "6at.%", "start": 674, "end": 679, "id": 125, "annotation": "DOPMODQ"}, {"text": "Cr", "start": 680, "end": 682, "id": 126, "annotation": "DOPANT"}, {"text": "and", "start": 683, "end": 686, "id": 127, "annotation": null}, {"text": "6at.%", "start": 687, "end": 692, "id": 128, "annotation": "DOPMODQ"}, {"text": "N.", "start": 693, "end": 695, "id": 129, "annotation": "DOPANT"}], [{"text": "The", "start": 696, "end": 699, "id": 130, "annotation": null}, {"text": "roughness", "start": 700, "end": 709, "id": 131, "annotation": null}, {"text": "of", "start": 710, "end": 712, "id": 132, "annotation": null}, {"text": "the", "start": 713, "end": 716, "id": 133, "annotation": null}, {"text": "surface", "start": 717, "end": 724, "id": 134, "annotation": null}, {"text": "is", "start": 725, "end": 727, "id": 135, "annotation": null}, {"text": "about", "start": 728, "end": 733, "id": 136, "annotation": null}, {"text": "0.9", "start": 734, "end": 737, "id": 137, "annotation": null}, {"text": "nm", "start": 738, "end": 740, "id": 138, "annotation": null}, {"text": "in", "start": 741, "end": 743, "id": 139, "annotation": null}, {"text": "root", "start": 744, "end": 748, "id": 140, "annotation": null}, {"text": "mean", "start": 749, "end": 753, "id": 141, "annotation": null}, {"text": "square", "start": 754, "end": 760, "id": 142, "annotation": null}, {"text": ",", "start": 761, "end": 762, "id": 143, "annotation": null}, {"text": "and", "start": 763, "end": 766, "id": 144, "annotation": null}, {"text": "the", "start": 767, "end": 770, "id": 145, "annotation": null}, {"text": "typical", "start": 771, "end": 778, "id": 146, "annotation": null}, {"text": "size", "start": 779, "end": 783, "id": 147, "annotation": null}, {"text": "of", "start": 784, "end": 786, "id": 148, "annotation": null}, {"text": "the", "start": 787, "end": 790, "id": 149, "annotation": null}, {"text": "(", "start": 791, "end": 792, "id": 150, "annotation": null}, {"text": "1\u00d74", "start": 793, "end": 796, "id": 151, "annotation": null}, {"text": ")", "start": 797, "end": 798, "id": 152, "annotation": null}, {"text": "terraces", "start": 799, "end": 807, "id": 153, "annotation": null}, {"text": "is", "start": 808, "end": 810, "id": 154, "annotation": null}, {"text": "about", "start": 811, "end": 816, "id": 155, "annotation": null}, {"text": "20", "start": 817, "end": 819, "id": 156, "annotation": null}, {"text": "nm", "start": 820, "end": 822, "id": 157, "annotation": null}, {"text": ".", "start": 823, "end": 824, "id": 158, "annotation": null}], [{"text": "The", "start": 825, "end": 828, "id": 159, "annotation": null}, {"text": "XPS", "start": 829, "end": 832, "id": 160, "annotation": null}, {"text": "results", "start": 833, "end": 840, "id": 161, "annotation": null}, {"text": "indicate", "start": 841, "end": 849, "id": 162, "annotation": null}, {"text": "that", "start": 850, "end": 854, "id": 163, "annotation": null}, {"text": "Cr", "start": 855, "end": 857, "id": 164, "annotation": "DOPANT"}, {"text": "and", "start": 858, "end": 861, "id": 165, "annotation": null}, {"text": "N", "start": 862, "end": 863, "id": 166, "annotation": "DOPANT"}, {"text": "should", "start": 864, "end": 870, "id": 167, "annotation": null}, {"text": "be", "start": 871, "end": 873, "id": 168, "annotation": null}, {"text": "both", "start": 874, "end": 878, "id": 169, "annotation": null}, {"text": "substitutionally", "start": 879, "end": 895, "id": 170, "annotation": null}, {"text": "doped", "start": 896, "end": 901, "id": 171, "annotation": null}, {"text": "in", "start": 902, "end": 904, "id": 172, "annotation": null}, {"text": "the", "start": 905, "end": 908, "id": 173, "annotation": null}, {"text": "film", "start": 909, "end": 913, "id": 174, "annotation": "BASEMAT"}, {"text": ".", "start": 914, "end": 915, "id": 175, "annotation": null}], [{"text": "From", "start": 916, "end": 920, "id": 176, "annotation": null}, {"text": "the", "start": 921, "end": 924, "id": 177, "annotation": null}, {"text": "UPS", "start": 925, "end": 928, "id": 178, "annotation": null}, {"text": "spectrum", "start": 929, "end": 937, "id": 179, "annotation": null}, {"text": "for", "start": 938, "end": 941, "id": 180, "annotation": null}, {"text": "the", "start": 942, "end": 945, "id": 181, "annotation": null}, {"text": "codoped", "start": 946, "end": 953, "id": 182, "annotation": null}, {"text": "film", "start": 954, "end": 958, "id": 183, "annotation": "BASEMAT"}, {"text": ",", "start": 959, "end": 960, "id": 184, "annotation": null}, {"text": "the", "start": 961, "end": 964, "id": 185, "annotation": null}, {"text": "valence", "start": 965, "end": 972, "id": 186, "annotation": null}, {"text": "band", "start": 973, "end": 977, "id": 187, "annotation": null}, {"text": "maximum", "start": 978, "end": 985, "id": 188, "annotation": null}, {"text": "is", "start": 986, "end": 988, "id": 189, "annotation": null}, {"text": "significantly", "start": 989, "end": 1002, "id": 190, "annotation": null}, {"text": "lifted", "start": 1003, "end": 1009, "id": 191, "annotation": null}, {"text": "by", "start": 1010, "end": 1012, "id": 192, "annotation": null}, {"text": "about", "start": 1013, "end": 1018, "id": 193, "annotation": null}, {"text": "1.3eV", "start": 1019, "end": 1024, "id": 194, "annotation": null}, {"text": ",", "start": 1025, "end": 1026, "id": 195, "annotation": null}, {"text": "indicating", "start": 1027, "end": 1037, "id": 196, "annotation": null}, {"text": "a", "start": 1038, "end": 1039, "id": 197, "annotation": null}, {"text": "narrowing", "start": 1040, "end": 1049, "id": 198, "annotation": null}, {"text": "band", "start": 1050, "end": 1054, "id": 199, "annotation": null}, {"text": "gap", "start": 1055, "end": 1058, "id": 200, "annotation": null}, {"text": "of", "start": 1059, "end": 1061, "id": 201, "annotation": null}, {"text": "1.9eV.", "start": 1062, "end": 1068, "id": 202, "annotation": null}], [{"text": "The", "start": 1069, "end": 1072, "id": 203, "annotation": null}, {"text": "optical", "start": 1073, "end": 1080, "id": 204, "annotation": null}, {"text": "absorption", "start": 1081, "end": 1091, "id": 205, "annotation": null}, {"text": "spectrum", "start": 1092, "end": 1100, "id": 206, "annotation": null}, {"text": "shows", "start": 1101, "end": 1106, "id": 207, "annotation": null}, {"text": "that", "start": 1107, "end": 1111, "id": 208, "annotation": null}, {"text": "the", "start": 1112, "end": 1115, "id": 209, "annotation": null}, {"text": "codoped", "start": 1116, "end": 1123, "id": 210, "annotation": null}, {"text": "film", "start": 1124, "end": 1128, "id": 211, "annotation": null}, {"text": "noticeably", "start": 1129, "end": 1139, "id": 212, "annotation": null}, {"text": "absorbs", "start": 1140, "end": 1147, "id": 213, "annotation": null}, {"text": "the", "start": 1148, "end": 1151, "id": 214, "annotation": null}, {"text": "light", "start": 1152, "end": 1157, "id": 215, "annotation": null}, {"text": "at", "start": 1158, "end": 1160, "id": 216, "annotation": null}, {"text": "less", "start": 1161, "end": 1165, "id": 217, "annotation": null}, {"text": "than", "start": 1166, "end": 1170, "id": 218, "annotation": null}, {"text": "710", "start": 1171, "end": 1174, "id": 219, "annotation": null}, {"text": "nm", "start": 1175, "end": 1177, "id": 220, "annotation": null}, {"text": ".", "start": 1178, "end": 1179, "id": 221, "annotation": null}], [{"text": "Derived", "start": 1180, "end": 1187, "id": 222, "annotation": null}, {"text": "from", "start": 1188, "end": 1192, "id": 223, "annotation": null}, {"text": "the", "start": 1193, "end": 1196, "id": 224, "annotation": null}, {"text": "optical", "start": 1197, "end": 1204, "id": 225, "annotation": null}, {"text": "absorption", "start": 1205, "end": 1215, "id": 226, "annotation": null}, {"text": "spectrum", "start": 1216, "end": 1224, "id": 227, "annotation": null}, {"text": ",", "start": 1225, "end": 1226, "id": 228, "annotation": null}, {"text": "an", "start": 1227, "end": 1229, "id": 229, "annotation": null}, {"text": "estimated", "start": 1230, "end": 1239, "id": 230, "annotation": null}, {"text": "band", "start": 1240, "end": 1244, "id": 231, "annotation": null}, {"text": "gap", "start": 1245, "end": 1248, "id": 232, "annotation": null}, {"text": "value", "start": 1249, "end": 1254, "id": 233, "annotation": null}, {"text": "of", "start": 1255, "end": 1257, "id": 234, "annotation": null}, {"text": "1.78eV", "start": 1258, "end": 1264, "id": 235, "annotation": null}, {"text": "is", "start": 1265, "end": 1267, "id": 236, "annotation": null}, {"text": "obtained", "start": 1268, "end": 1276, "id": 237, "annotation": null}, {"text": ",", "start": 1277, "end": 1278, "id": 238, "annotation": null}, {"text": "which", "start": 1279, "end": 1284, "id": 239, "annotation": null}, {"text": "is", "start": 1285, "end": 1287, "id": 240, "annotation": null}, {"text": "consistent", "start": 1288, "end": 1298, "id": 241, "annotation": null}, {"text": "with", "start": 1299, "end": 1303, "id": 242, "annotation": null}, {"text": "the", "start": 1304, "end": 1307, "id": 243, "annotation": null}, {"text": "UPS", "start": 1308, "end": 1311, "id": 244, "annotation": null}, {"text": "result", "start": 1312, "end": 1318, "id": 245, "annotation": null}, {"text": ".", "start": 1319, "end": 1320, "id": 246, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "This paper presents a study of the precipitation of ZnO and CuO crystals during the sintering of Cu-doped Ni-Zn ferrites. The nature of the resulting crystal precipitates were analysed using scanning electron microscopy (SEM), energy-dispersive X-ray (EDX) analysis, X-ray diffraction (XRD), and X-ray photoelectron spectroscopy (XPS), confirming the findings of a previous paper (Part I). This study examines the influence of sintering temperature and sintering time of the thermal cycle on their formation, and on their microstructure and electromagnetic properties. The same two consecutive chemical reactions proposed in Part I can be used to explain the bulk precipitation and subsequent re-dissolution of the zinc and copper oxides observed during sintering. The effect of these crystal precipitates on the final properties of this type of soft ferrite was also analysed, revealing a deterioration in its electromagnetic performance.", "meta": {"doi": "10.1016/j.jeurceramsoc.2016.07.033"}, "_input_hash": 36630085, "_task_hash": 2138042474, "tokens": [[{"text": "This", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "paper", "start": 5, "end": 10, "id": 1, "annotation": null}, {"text": "presents", "start": 11, "end": 19, "id": 2, "annotation": null}, {"text": "a", "start": 20, "end": 21, "id": 3, "annotation": null}, {"text": "study", "start": 22, "end": 27, "id": 4, "annotation": null}, {"text": "of", "start": 28, "end": 30, "id": 5, "annotation": null}, {"text": "the", "start": 31, "end": 34, "id": 6, "annotation": null}, {"text": "precipitation", "start": 35, "end": 48, "id": 7, "annotation": null}, {"text": "of", "start": 49, "end": 51, "id": 8, "annotation": null}, {"text": "ZnO", "start": 52, "end": 55, "id": 9, "annotation": null}, {"text": "and", "start": 56, "end": 59, "id": 10, "annotation": null}, {"text": "CuO", "start": 60, "end": 63, "id": 11, "annotation": null}, {"text": "crystals", "start": 64, "end": 72, "id": 12, "annotation": null}, {"text": "during", "start": 73, "end": 79, "id": 13, "annotation": null}, {"text": "the", "start": 80, "end": 83, "id": 14, "annotation": null}, {"text": "sintering", "start": 84, "end": 93, "id": 15, "annotation": null}, {"text": "of", "start": 94, "end": 96, "id": 16, "annotation": null}, {"text": "Cu", "start": 97, "end": 99, "id": 17, "annotation": "DOPANT"}, {"text": "-", "start": 100, "end": 101, "id": 18, "annotation": null}, {"text": "doped", "start": 102, "end": 107, "id": 19, "annotation": null}, {"text": "Ni", "start": 108, "end": 110, "id": 20, "annotation": "BASEMAT"}, {"text": "-", "start": 111, "end": 112, "id": 21, "annotation": null}, {"text": "Zn", "start": 113, "end": 115, "id": 22, "annotation": null}, {"text": "ferrites", "start": 116, "end": 124, "id": 23, "annotation": "BASEMAT"}, {"text": ".", "start": 125, "end": 126, "id": 24, "annotation": null}], [{"text": "The", "start": 127, "end": 130, "id": 25, "annotation": null}, {"text": "nature", "start": 131, "end": 137, "id": 26, "annotation": null}, {"text": "of", "start": 138, "end": 140, "id": 27, "annotation": null}, {"text": "the", "start": 141, "end": 144, "id": 28, "annotation": null}, {"text": "resulting", "start": 145, "end": 154, "id": 29, "annotation": null}, {"text": "crystal", "start": 155, "end": 162, "id": 30, "annotation": null}, {"text": "precipitates", "start": 163, "end": 175, "id": 31, "annotation": null}, {"text": "were", "start": 176, "end": 180, "id": 32, "annotation": null}, {"text": "analysed", "start": 181, "end": 189, "id": 33, "annotation": null}, {"text": "using", "start": 190, "end": 195, "id": 34, "annotation": null}, {"text": "scanning", "start": 196, "end": 204, "id": 35, "annotation": null}, {"text": "electron", "start": 205, "end": 213, "id": 36, "annotation": null}, {"text": "microscopy", "start": 214, "end": 224, "id": 37, "annotation": null}, {"text": "(", "start": 225, "end": 226, "id": 38, "annotation": null}, {"text": "SEM", "start": 227, "end": 230, "id": 39, "annotation": null}, {"text": ")", "start": 231, "end": 232, "id": 40, "annotation": null}, {"text": ",", "start": 233, "end": 234, "id": 41, "annotation": null}, {"text": "energy", "start": 235, "end": 241, "id": 42, "annotation": null}, {"text": "-", "start": 242, "end": 243, "id": 43, "annotation": null}, {"text": "dispersive", "start": 244, "end": 254, "id": 44, "annotation": null}, {"text": "X", "start": 255, "end": 256, "id": 45, "annotation": null}, {"text": "-", "start": 257, "end": 258, "id": 46, "annotation": null}, {"text": "ray", "start": 259, "end": 262, "id": 47, "annotation": null}, {"text": "(", "start": 263, "end": 264, "id": 48, "annotation": null}, {"text": "EDX", "start": 265, "end": 268, "id": 49, "annotation": null}, {"text": ")", "start": 269, "end": 270, "id": 50, "annotation": null}, {"text": "analysis", "start": 271, "end": 279, "id": 51, "annotation": null}, {"text": ",", "start": 280, "end": 281, "id": 52, "annotation": null}, {"text": "X", "start": 282, "end": 283, "id": 53, "annotation": null}, {"text": "-", "start": 284, "end": 285, "id": 54, "annotation": null}, {"text": "ray", "start": 286, "end": 289, "id": 55, "annotation": null}, {"text": "diffraction", "start": 290, "end": 301, "id": 56, "annotation": null}, {"text": "(", "start": 302, "end": 303, "id": 57, "annotation": null}, {"text": "XRD", "start": 304, "end": 307, "id": 58, "annotation": null}, {"text": ")", "start": 308, "end": 309, "id": 59, "annotation": null}, {"text": ",", "start": 310, "end": 311, "id": 60, "annotation": null}, {"text": "and", "start": 312, "end": 315, "id": 61, "annotation": null}, {"text": "X", "start": 316, "end": 317, "id": 62, "annotation": null}, {"text": "-", "start": 318, "end": 319, "id": 63, "annotation": null}, {"text": "ray", "start": 320, "end": 323, "id": 64, "annotation": null}, {"text": "photoelectron", "start": 324, "end": 337, "id": 65, "annotation": null}, {"text": "spectroscopy", "start": 338, "end": 350, "id": 66, "annotation": null}, {"text": "(", "start": 351, "end": 352, "id": 67, "annotation": null}, {"text": "XPS", "start": 353, "end": 356, "id": 68, "annotation": null}, {"text": ")", "start": 357, "end": 358, "id": 69, "annotation": null}, {"text": ",", "start": 359, "end": 360, "id": 70, "annotation": null}, {"text": "confirming", "start": 361, "end": 371, "id": 71, "annotation": null}, {"text": "the", "start": 372, "end": 375, "id": 72, "annotation": null}, {"text": "findings", "start": 376, "end": 384, "id": 73, "annotation": null}, {"text": "of", "start": 385, "end": 387, "id": 74, "annotation": null}, {"text": "a", "start": 388, "end": 389, "id": 75, "annotation": null}, {"text": "previous", "start": 390, "end": 398, "id": 76, "annotation": null}, {"text": "paper", "start": 399, "end": 404, "id": 77, "annotation": null}, {"text": "(", "start": 405, "end": 406, "id": 78, "annotation": null}, {"text": "Part", "start": 407, "end": 411, "id": 79, "annotation": null}, {"text": "I", "start": 412, "end": 413, "id": 80, "annotation": null}, {"text": ")", "start": 414, "end": 415, "id": 81, "annotation": null}, {"text": ".", "start": 416, "end": 417, "id": 82, "annotation": null}], [{"text": "This", "start": 418, "end": 422, "id": 83, "annotation": null}, {"text": "study", "start": 423, "end": 428, "id": 84, "annotation": null}, {"text": "examines", "start": 429, "end": 437, "id": 85, "annotation": null}, {"text": "the", "start": 438, "end": 441, "id": 86, "annotation": null}, {"text": "influence", "start": 442, "end": 451, "id": 87, "annotation": null}, {"text": "of", "start": 452, "end": 454, "id": 88, "annotation": null}, {"text": "sintering", "start": 455, "end": 464, "id": 89, "annotation": null}, {"text": "temperature", "start": 465, "end": 476, "id": 90, "annotation": null}, {"text": "and", "start": 477, "end": 480, "id": 91, "annotation": null}, {"text": "sintering", "start": 481, "end": 490, "id": 92, "annotation": null}, {"text": "time", "start": 491, "end": 495, "id": 93, "annotation": null}, {"text": "of", "start": 496, "end": 498, "id": 94, "annotation": null}, {"text": "the", "start": 499, "end": 502, "id": 95, "annotation": null}, {"text": "thermal", "start": 503, "end": 510, "id": 96, "annotation": null}, {"text": "cycle", "start": 511, "end": 516, "id": 97, "annotation": null}, {"text": "on", "start": 517, "end": 519, "id": 98, "annotation": null}, {"text": "their", "start": 520, "end": 525, "id": 99, "annotation": null}, {"text": "formation", "start": 526, "end": 535, "id": 100, "annotation": null}, {"text": ",", "start": 536, "end": 537, "id": 101, "annotation": null}, {"text": "and", "start": 538, "end": 541, "id": 102, "annotation": null}, {"text": "on", "start": 542, "end": 544, "id": 103, "annotation": null}, {"text": "their", "start": 545, "end": 550, "id": 104, "annotation": null}, {"text": "microstructure", "start": 551, "end": 565, "id": 105, "annotation": null}, {"text": "and", "start": 566, "end": 569, "id": 106, "annotation": null}, {"text": "electromagnetic", "start": 570, "end": 585, "id": 107, "annotation": null}, {"text": "properties", "start": 586, "end": 596, "id": 108, "annotation": null}, {"text": ".", "start": 597, "end": 598, "id": 109, "annotation": null}], [{"text": "The", "start": 599, "end": 602, "id": 110, "annotation": null}, {"text": "same", "start": 603, "end": 607, "id": 111, "annotation": null}, {"text": "two", "start": 608, "end": 611, "id": 112, "annotation": null}, {"text": "consecutive", "start": 612, "end": 623, "id": 113, "annotation": null}, {"text": "chemical", "start": 624, "end": 632, "id": 114, "annotation": null}, {"text": "reactions", "start": 633, "end": 642, "id": 115, "annotation": null}, {"text": "proposed", "start": 643, "end": 651, "id": 116, "annotation": null}, {"text": "in", "start": 652, "end": 654, "id": 117, "annotation": null}, {"text": "Part", "start": 655, "end": 659, "id": 118, "annotation": null}, {"text": "I", "start": 660, "end": 661, "id": 119, "annotation": null}, {"text": "can", "start": 662, "end": 665, "id": 120, "annotation": null}, {"text": "be", "start": 666, "end": 668, "id": 121, "annotation": null}, {"text": "used", "start": 669, "end": 673, "id": 122, "annotation": null}, {"text": "to", "start": 674, "end": 676, "id": 123, "annotation": null}, {"text": "explain", "start": 677, "end": 684, "id": 124, "annotation": null}, {"text": "the", "start": 685, "end": 688, "id": 125, "annotation": null}, {"text": "bulk", "start": 689, "end": 693, "id": 126, "annotation": null}, {"text": "precipitation", "start": 694, "end": 707, "id": 127, "annotation": null}, {"text": "and", "start": 708, "end": 711, "id": 128, "annotation": null}, {"text": "subsequent", "start": 712, "end": 722, "id": 129, "annotation": null}, {"text": "re", "start": 723, "end": 725, "id": 130, "annotation": null}, {"text": "-", "start": 726, "end": 727, "id": 131, "annotation": null}, {"text": "dissolution", "start": 728, "end": 739, "id": 132, "annotation": null}, {"text": "of", "start": 740, "end": 742, "id": 133, "annotation": null}, {"text": "the", "start": 743, "end": 746, "id": 134, "annotation": null}, {"text": "zinc", "start": 747, "end": 751, "id": 135, "annotation": null}, {"text": "and", "start": 752, "end": 755, "id": 136, "annotation": null}, {"text": "copper", "start": 756, "end": 762, "id": 137, "annotation": null}, {"text": "oxides", "start": 763, "end": 769, "id": 138, "annotation": null}, {"text": "observed", "start": 770, "end": 778, "id": 139, "annotation": null}, {"text": "during", "start": 779, "end": 785, "id": 140, "annotation": null}, {"text": "sintering", "start": 786, "end": 795, "id": 141, "annotation": null}, {"text": ".", "start": 796, "end": 797, "id": 142, "annotation": null}], [{"text": "The", "start": 798, "end": 801, "id": 143, "annotation": null}, {"text": "effect", "start": 802, "end": 808, "id": 144, "annotation": null}, {"text": "of", "start": 809, "end": 811, "id": 145, "annotation": null}, {"text": "these", "start": 812, "end": 817, "id": 146, "annotation": null}, {"text": "crystal", "start": 818, "end": 825, "id": 147, "annotation": null}, {"text": "precipitates", "start": 826, "end": 838, "id": 148, "annotation": null}, {"text": "on", "start": 839, "end": 841, "id": 149, "annotation": null}, {"text": "the", "start": 842, "end": 845, "id": 150, "annotation": null}, {"text": "final", "start": 846, "end": 851, "id": 151, "annotation": null}, {"text": "properties", "start": 852, "end": 862, "id": 152, "annotation": null}, {"text": "of", "start": 863, "end": 865, "id": 153, "annotation": null}, {"text": "this", "start": 866, "end": 870, "id": 154, "annotation": null}, {"text": "type", "start": 871, "end": 875, "id": 155, "annotation": null}, {"text": "of", "start": 876, "end": 878, "id": 156, "annotation": null}, {"text": "soft", "start": 879, "end": 883, "id": 157, "annotation": null}, {"text": "ferrite", "start": 884, "end": 891, "id": 158, "annotation": null}, {"text": "was", "start": 892, "end": 895, "id": 159, "annotation": null}, {"text": "also", "start": 896, "end": 900, "id": 160, "annotation": null}, {"text": "analysed", "start": 901, "end": 909, "id": 161, "annotation": null}, {"text": ",", "start": 910, "end": 911, "id": 162, "annotation": null}, {"text": "revealing", "start": 912, "end": 921, "id": 163, "annotation": null}, {"text": "a", "start": 922, "end": 923, "id": 164, "annotation": null}, {"text": "deterioration", "start": 924, "end": 937, "id": 165, "annotation": null}, {"text": "in", "start": 938, "end": 940, "id": 166, "annotation": null}, {"text": "its", "start": 941, "end": 944, "id": 167, "annotation": null}, {"text": "electromagnetic", "start": 945, "end": 960, "id": 168, "annotation": null}, {"text": "performance", "start": 961, "end": 972, "id": 169, "annotation": null}, {"text": ".", "start": 973, "end": 974, "id": 170, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "The radiation-induced defects, which give rise to the absorption bands at 956, 944 and 936cm\u22121 in silicon and are suggested to be the self-interstitial\u2013interstitial-oxygen-related complexes IOi and I2Oi, have been studied by FTIR. N-type C-rich Si crystals co-doped with 16O and 18O isotopes were irradiated at T=80K with 5MeV electrons and then annealed isochronally up to 360K. The oxygen isotopic shifts of the bands assigned to IO and I2O are determined and a direct evidence of the oxygen incorporation in the defects is presented. Appearance of a number of new bands has been observed upon the interstitial carbon Ci annealing and they are attributed to precursors of the CiOi complex.", "meta": {"doi": "10.1016/S0921-4526(01)00731-1"}, "_input_hash": 13946713, "_task_hash": 44131274, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "radiation", "start": 4, "end": 13, "id": 1, "annotation": null}, {"text": "-", "start": 14, "end": 15, "id": 2, "annotation": null}, {"text": "induced", "start": 16, "end": 23, "id": 3, "annotation": null}, {"text": "defects", "start": 24, "end": 31, "id": 4, "annotation": null}, {"text": ",", "start": 32, "end": 33, "id": 5, "annotation": null}, {"text": "which", "start": 34, "end": 39, "id": 6, "annotation": null}, {"text": "give", "start": 40, "end": 44, "id": 7, "annotation": null}, {"text": "rise", "start": 45, "end": 49, "id": 8, "annotation": null}, {"text": "to", "start": 50, "end": 52, "id": 9, "annotation": null}, {"text": "the", "start": 53, "end": 56, "id": 10, "annotation": null}, {"text": "absorption", "start": 57, "end": 67, "id": 11, "annotation": null}, {"text": "bands", "start": 68, "end": 73, "id": 12, "annotation": null}, {"text": "at", "start": 74, "end": 76, "id": 13, "annotation": null}, {"text": "956", "start": 77, "end": 80, "id": 14, "annotation": null}, {"text": ",", "start": 81, "end": 82, "id": 15, "annotation": null}, {"text": "944", "start": 83, "end": 86, "id": 16, "annotation": null}, {"text": "and", "start": 87, "end": 90, "id": 17, "annotation": null}, {"text": "936cm\u22121", "start": 91, "end": 98, "id": 18, "annotation": null}, {"text": "in", "start": 99, "end": 101, "id": 19, "annotation": null}, {"text": "silicon", "start": 102, "end": 109, "id": 20, "annotation": null}, {"text": "and", "start": 110, "end": 113, "id": 21, "annotation": null}, {"text": "are", "start": 114, "end": 117, "id": 22, "annotation": null}, {"text": "suggested", "start": 118, "end": 127, "id": 23, "annotation": null}, {"text": "to", "start": 128, "end": 130, "id": 24, "annotation": null}, {"text": "be", "start": 131, "end": 133, "id": 25, "annotation": null}, {"text": "the", "start": 134, "end": 137, "id": 26, "annotation": null}, {"text": "self", "start": 138, "end": 142, "id": 27, "annotation": null}, {"text": "-", "start": 143, "end": 144, "id": 28, "annotation": null}, {"text": "interstitial", "start": 145, "end": 157, "id": 29, "annotation": null}, {"text": "\u2013", "start": 158, "end": 159, "id": 30, "annotation": null}, {"text": "interstitial", "start": 160, "end": 172, "id": 31, "annotation": null}, {"text": "-", "start": 173, "end": 174, "id": 32, "annotation": null}, {"text": "oxygen", "start": 175, "end": 181, "id": 33, "annotation": null}, {"text": "-", "start": 182, "end": 183, "id": 34, "annotation": null}, {"text": "related", "start": 184, "end": 191, "id": 35, "annotation": null}, {"text": "complexes", "start": 192, "end": 201, "id": 36, "annotation": null}, {"text": "IOi", "start": 202, "end": 205, "id": 37, "annotation": null}, {"text": "and", "start": 206, "end": 209, "id": 38, "annotation": null}, {"text": "I2Oi", "start": 210, "end": 214, "id": 39, "annotation": null}, {"text": ",", "start": 215, "end": 216, "id": 40, "annotation": null}, {"text": "have", "start": 217, "end": 221, "id": 41, "annotation": null}, {"text": "been", "start": 222, "end": 226, "id": 42, "annotation": null}, {"text": "studied", "start": 227, "end": 234, "id": 43, "annotation": null}, {"text": "by", "start": 235, "end": 237, "id": 44, "annotation": null}, {"text": "FTIR", "start": 238, "end": 242, "id": 45, "annotation": null}, {"text": ".", "start": 243, "end": 244, "id": 46, "annotation": null}], [{"text": "N", "start": 245, "end": 246, "id": 47, "annotation": "DOPANT"}, {"text": "-", "start": 247, "end": 248, "id": 48, "annotation": null}, {"text": "type", "start": 249, "end": 253, "id": 49, "annotation": "DOPANT"}, {"text": "C", "start": 254, "end": 255, "id": 50, "annotation": null}, {"text": "-", "start": 256, "end": 257, "id": 51, "annotation": null}, {"text": "rich", "start": 258, "end": 262, "id": 52, "annotation": null}, {"text": "Si", "start": 263, "end": 265, "id": 53, "annotation": "BASEMAT"}, {"text": "crystals", "start": 266, "end": 274, "id": 54, "annotation": null}, {"text": "co", "start": 275, "end": 277, "id": 55, "annotation": null}, {"text": "-", "start": 278, "end": 279, "id": 56, "annotation": null}, {"text": "doped", "start": 280, "end": 285, "id": 57, "annotation": null}, {"text": "with", "start": 286, "end": 290, "id": 58, "annotation": null}, {"text": "16O", "start": 291, "end": 294, "id": 59, "annotation": "DOPANT"}, {"text": "and", "start": 295, "end": 298, "id": 60, "annotation": null}, {"text": "18O", "start": 299, "end": 302, "id": 61, "annotation": "DOPANT"}, {"text": "isotopes", "start": 303, "end": 311, "id": 62, "annotation": null}, {"text": "were", "start": 312, "end": 316, "id": 63, "annotation": null}, {"text": "irradiated", "start": 317, "end": 327, "id": 64, "annotation": null}, {"text": "at", "start": 328, "end": 330, "id": 65, "annotation": null}, {"text": "T=80", "start": 331, "end": 335, "id": 66, "annotation": null}, {"text": "K", "start": 336, "end": 337, "id": 67, "annotation": null}, {"text": "with", "start": 338, "end": 342, "id": 68, "annotation": null}, {"text": "5MeV", "start": 343, "end": 347, "id": 69, "annotation": null}, {"text": "electrons", "start": 348, "end": 357, "id": 70, "annotation": null}, {"text": "and", "start": 358, "end": 361, "id": 71, "annotation": null}, {"text": "then", "start": 362, "end": 366, "id": 72, "annotation": null}, {"text": "annealed", "start": 367, "end": 375, "id": 73, "annotation": null}, {"text": "isochronally", "start": 376, "end": 388, "id": 74, "annotation": null}, {"text": "up", "start": 389, "end": 391, "id": 75, "annotation": null}, {"text": "to", "start": 392, "end": 394, "id": 76, "annotation": null}, {"text": "360K.", "start": 395, "end": 400, "id": 77, "annotation": null}], [{"text": "The", "start": 401, "end": 404, "id": 78, "annotation": null}, {"text": "oxygen", "start": 405, "end": 411, "id": 79, "annotation": null}, {"text": "isotopic", "start": 412, "end": 420, "id": 80, "annotation": null}, {"text": "shifts", "start": 421, "end": 427, "id": 81, "annotation": null}, {"text": "of", "start": 428, "end": 430, "id": 82, "annotation": null}, {"text": "the", "start": 431, "end": 434, "id": 83, "annotation": null}, {"text": "bands", "start": 435, "end": 440, "id": 84, "annotation": null}, {"text": "assigned", "start": 441, "end": 449, "id": 85, "annotation": null}, {"text": "to", "start": 450, "end": 452, "id": 86, "annotation": null}, {"text": "IO", "start": 453, "end": 455, "id": 87, "annotation": null}, {"text": "and", "start": 456, "end": 459, "id": 88, "annotation": null}, {"text": "I2O", "start": 460, "end": 463, "id": 89, "annotation": null}, {"text": "are", "start": 464, "end": 467, "id": 90, "annotation": null}, {"text": "determined", "start": 468, "end": 478, "id": 91, "annotation": null}, {"text": "and", "start": 479, "end": 482, "id": 92, "annotation": null}, {"text": "a", "start": 483, "end": 484, "id": 93, "annotation": null}, {"text": "direct", "start": 485, "end": 491, "id": 94, "annotation": null}, {"text": "evidence", "start": 492, "end": 500, "id": 95, "annotation": null}, {"text": "of", "start": 501, "end": 503, "id": 96, "annotation": null}, {"text": "the", "start": 504, "end": 507, "id": 97, "annotation": null}, {"text": "oxygen", "start": 508, "end": 514, "id": 98, "annotation": null}, {"text": "incorporation", "start": 515, "end": 528, "id": 99, "annotation": null}, {"text": "in", "start": 529, "end": 531, "id": 100, "annotation": null}, {"text": "the", "start": 532, "end": 535, "id": 101, "annotation": null}, {"text": "defects", "start": 536, "end": 543, "id": 102, "annotation": null}, {"text": "is", "start": 544, "end": 546, "id": 103, "annotation": null}, {"text": "presented", "start": 547, "end": 556, "id": 104, "annotation": null}, {"text": ".", "start": 557, "end": 558, "id": 105, "annotation": null}], [{"text": "Appearance", "start": 559, "end": 569, "id": 106, "annotation": null}, {"text": "of", "start": 570, "end": 572, "id": 107, "annotation": null}, {"text": "a", "start": 573, "end": 574, "id": 108, "annotation": null}, {"text": "number", "start": 575, "end": 581, "id": 109, "annotation": null}, {"text": "of", "start": 582, "end": 584, "id": 110, "annotation": null}, {"text": "new", "start": 585, "end": 588, "id": 111, "annotation": null}, {"text": "bands", "start": 589, "end": 594, "id": 112, "annotation": null}, {"text": "has", "start": 595, "end": 598, "id": 113, "annotation": null}, {"text": "been", "start": 599, "end": 603, "id": 114, "annotation": null}, {"text": "observed", "start": 604, "end": 612, "id": 115, "annotation": null}, {"text": "upon", "start": 613, "end": 617, "id": 116, "annotation": null}, {"text": "the", "start": 618, "end": 621, "id": 117, "annotation": null}, {"text": "interstitial", "start": 622, "end": 634, "id": 118, "annotation": null}, {"text": "carbon", "start": 635, "end": 641, "id": 119, "annotation": null}, {"text": "Ci", "start": 642, "end": 644, "id": 120, "annotation": null}, {"text": "annealing", "start": 645, "end": 654, "id": 121, "annotation": null}, {"text": "and", "start": 655, "end": 658, "id": 122, "annotation": null}, {"text": "they", "start": 659, "end": 663, "id": 123, "annotation": null}, {"text": "are", "start": 664, "end": 667, "id": 124, "annotation": null}, {"text": "attributed", "start": 668, "end": 678, "id": 125, "annotation": null}, {"text": "to", "start": 679, "end": 681, "id": 126, "annotation": null}, {"text": "precursors", "start": 682, "end": 692, "id": 127, "annotation": null}, {"text": "of", "start": 693, "end": 695, "id": 128, "annotation": null}, {"text": "the", "start": 696, "end": 699, "id": 129, "annotation": null}, {"text": "CiOi", "start": 700, "end": 704, "id": 130, "annotation": null}, {"text": "complex", "start": 705, "end": 712, "id": 131, "annotation": null}, {"text": ".", "start": 713, "end": 714, "id": 132, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "The radiation-induced defects, which give rise to the absorption bands at 956, 944 and 936cm\u22121 in silicon and are suggested to be the self-interstitial\u2013interstitial-oxygen-related complexes IOi and I2Oi, have been studied by FTIR. N-type C-rich Si crystals co-doped with 16O and 18O isotopes were irradiated at T=80K with 5MeV electrons and then annealed isochronally up to 360K. The oxygen isotopic shifts of the bands assigned to IO and I2O are determined and a direct evidence of the oxygen incorporation in the defects is presented. Appearance of a number of new bands has been observed upon the interstitial carbon Ci annealing and they are attributed to precursors of the CiOi complex.", "meta": {"doi": "10.1016/S0921-4526(01)00731-1"}, "_input_hash": 13946713, "_task_hash": 44131274, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "radiation", "start": 4, "end": 13, "id": 1, "annotation": null}, {"text": "-", "start": 14, "end": 15, "id": 2, "annotation": null}, {"text": "induced", "start": 16, "end": 23, "id": 3, "annotation": null}, {"text": "defects", "start": 24, "end": 31, "id": 4, "annotation": null}, {"text": ",", "start": 32, "end": 33, "id": 5, "annotation": null}, {"text": "which", "start": 34, "end": 39, "id": 6, "annotation": null}, {"text": "give", "start": 40, "end": 44, "id": 7, "annotation": null}, {"text": "rise", "start": 45, "end": 49, "id": 8, "annotation": null}, {"text": "to", "start": 50, "end": 52, "id": 9, "annotation": null}, {"text": "the", "start": 53, "end": 56, "id": 10, "annotation": null}, {"text": "absorption", "start": 57, "end": 67, "id": 11, "annotation": null}, {"text": "bands", "start": 68, "end": 73, "id": 12, "annotation": null}, {"text": "at", "start": 74, "end": 76, "id": 13, "annotation": null}, {"text": "956", "start": 77, "end": 80, "id": 14, "annotation": null}, {"text": ",", "start": 81, "end": 82, "id": 15, "annotation": null}, {"text": "944", "start": 83, "end": 86, "id": 16, "annotation": null}, {"text": "and", "start": 87, "end": 90, "id": 17, "annotation": null}, {"text": "936cm\u22121", "start": 91, "end": 98, "id": 18, "annotation": null}, {"text": "in", "start": 99, "end": 101, "id": 19, "annotation": null}, {"text": "silicon", "start": 102, "end": 109, "id": 20, "annotation": null}, {"text": "and", "start": 110, "end": 113, "id": 21, "annotation": null}, {"text": "are", "start": 114, "end": 117, "id": 22, "annotation": null}, {"text": "suggested", "start": 118, "end": 127, "id": 23, "annotation": null}, {"text": "to", "start": 128, "end": 130, "id": 24, "annotation": null}, {"text": "be", "start": 131, "end": 133, "id": 25, "annotation": null}, {"text": "the", "start": 134, "end": 137, "id": 26, "annotation": null}, {"text": "self", "start": 138, "end": 142, "id": 27, "annotation": null}, {"text": "-", "start": 143, "end": 144, "id": 28, "annotation": null}, {"text": "interstitial", "start": 145, "end": 157, "id": 29, "annotation": null}, {"text": "\u2013", "start": 158, "end": 159, "id": 30, "annotation": null}, {"text": "interstitial", "start": 160, "end": 172, "id": 31, "annotation": null}, {"text": "-", "start": 173, "end": 174, "id": 32, "annotation": null}, {"text": "oxygen", "start": 175, "end": 181, "id": 33, "annotation": null}, {"text": "-", "start": 182, "end": 183, "id": 34, "annotation": null}, {"text": "related", "start": 184, "end": 191, "id": 35, "annotation": null}, {"text": "complexes", "start": 192, "end": 201, "id": 36, "annotation": null}, {"text": "IOi", "start": 202, "end": 205, "id": 37, "annotation": null}, {"text": "and", "start": 206, "end": 209, "id": 38, "annotation": null}, {"text": "I2Oi", "start": 210, "end": 214, "id": 39, "annotation": null}, {"text": ",", "start": 215, "end": 216, "id": 40, "annotation": null}, {"text": "have", "start": 217, "end": 221, "id": 41, "annotation": null}, {"text": "been", "start": 222, "end": 226, "id": 42, "annotation": null}, {"text": "studied", "start": 227, "end": 234, "id": 43, "annotation": null}, {"text": "by", "start": 235, "end": 237, "id": 44, "annotation": null}, {"text": "FTIR", "start": 238, "end": 242, "id": 45, "annotation": null}, {"text": ".", "start": 243, "end": 244, "id": 46, "annotation": null}], [{"text": "N", "start": 245, "end": 246, "id": 47, "annotation": "DOPANT"}, {"text": "-", "start": 247, "end": 248, "id": 48, "annotation": "DOPANT"}, {"text": "type", "start": 249, "end": 253, "id": 49, "annotation": "DOPANT"}, {"text": "C", "start": 254, "end": 255, "id": 50, "annotation": null}, {"text": "-", "start": 256, "end": 257, "id": 51, "annotation": null}, {"text": "rich", "start": 258, "end": 262, "id": 52, "annotation": null}, {"text": "Si", "start": 263, "end": 265, "id": 53, "annotation": "BASEMAT"}, {"text": "crystals", "start": 266, "end": 274, "id": 54, "annotation": null}, {"text": "co", "start": 275, "end": 277, "id": 55, "annotation": null}, {"text": "-", "start": 278, "end": 279, "id": 56, "annotation": null}, {"text": "doped", "start": 280, "end": 285, "id": 57, "annotation": null}, {"text": "with", "start": 286, "end": 290, "id": 58, "annotation": null}, {"text": "16O", "start": 291, "end": 294, "id": 59, "annotation": "DOPANT"}, {"text": "and", "start": 295, "end": 298, "id": 60, "annotation": null}, {"text": "18O", "start": 299, "end": 302, "id": 61, "annotation": "DOPANT"}, {"text": "isotopes", "start": 303, "end": 311, "id": 62, "annotation": null}, {"text": "were", "start": 312, "end": 316, "id": 63, "annotation": null}, {"text": "irradiated", "start": 317, "end": 327, "id": 64, "annotation": null}, {"text": "at", "start": 328, "end": 330, "id": 65, "annotation": null}, {"text": "T=80", "start": 331, "end": 335, "id": 66, "annotation": null}, {"text": "K", "start": 336, "end": 337, "id": 67, "annotation": null}, {"text": "with", "start": 338, "end": 342, "id": 68, "annotation": null}, {"text": "5MeV", "start": 343, "end": 347, "id": 69, "annotation": null}, {"text": "electrons", "start": 348, "end": 357, "id": 70, "annotation": null}, {"text": "and", "start": 358, "end": 361, "id": 71, "annotation": null}, {"text": "then", "start": 362, "end": 366, "id": 72, "annotation": null}, {"text": "annealed", "start": 367, "end": 375, "id": 73, "annotation": null}, {"text": "isochronally", "start": 376, "end": 388, "id": 74, "annotation": null}, {"text": "up", "start": 389, "end": 391, "id": 75, "annotation": null}, {"text": "to", "start": 392, "end": 394, "id": 76, "annotation": null}, {"text": "360K.", "start": 395, "end": 400, "id": 77, "annotation": null}], [{"text": "The", "start": 401, "end": 404, "id": 78, "annotation": null}, {"text": "oxygen", "start": 405, "end": 411, "id": 79, "annotation": null}, {"text": "isotopic", "start": 412, "end": 420, "id": 80, "annotation": null}, {"text": "shifts", "start": 421, "end": 427, "id": 81, "annotation": null}, {"text": "of", "start": 428, "end": 430, "id": 82, "annotation": null}, {"text": "the", "start": 431, "end": 434, "id": 83, "annotation": null}, {"text": "bands", "start": 435, "end": 440, "id": 84, "annotation": null}, {"text": "assigned", "start": 441, "end": 449, "id": 85, "annotation": null}, {"text": "to", "start": 450, "end": 452, "id": 86, "annotation": null}, {"text": "IO", "start": 453, "end": 455, "id": 87, "annotation": null}, {"text": "and", "start": 456, "end": 459, "id": 88, "annotation": null}, {"text": "I2O", "start": 460, "end": 463, "id": 89, "annotation": null}, {"text": "are", "start": 464, "end": 467, "id": 90, "annotation": null}, {"text": "determined", "start": 468, "end": 478, "id": 91, "annotation": null}, {"text": "and", "start": 479, "end": 482, "id": 92, "annotation": null}, {"text": "a", "start": 483, "end": 484, "id": 93, "annotation": null}, {"text": "direct", "start": 485, "end": 491, "id": 94, "annotation": null}, {"text": "evidence", "start": 492, "end": 500, "id": 95, "annotation": null}, {"text": "of", "start": 501, "end": 503, "id": 96, "annotation": null}, {"text": "the", "start": 504, "end": 507, "id": 97, "annotation": null}, {"text": "oxygen", "start": 508, "end": 514, "id": 98, "annotation": null}, {"text": "incorporation", "start": 515, "end": 528, "id": 99, "annotation": null}, {"text": "in", "start": 529, "end": 531, "id": 100, "annotation": null}, {"text": "the", "start": 532, "end": 535, "id": 101, "annotation": null}, {"text": "defects", "start": 536, "end": 543, "id": 102, "annotation": null}, {"text": "is", "start": 544, "end": 546, "id": 103, "annotation": null}, {"text": "presented", "start": 547, "end": 556, "id": 104, "annotation": null}, {"text": ".", "start": 557, "end": 558, "id": 105, "annotation": null}], [{"text": "Appearance", "start": 559, "end": 569, "id": 106, "annotation": null}, {"text": "of", "start": 570, "end": 572, "id": 107, "annotation": null}, {"text": "a", "start": 573, "end": 574, "id": 108, "annotation": null}, {"text": "number", "start": 575, "end": 581, "id": 109, "annotation": null}, {"text": "of", "start": 582, "end": 584, "id": 110, "annotation": null}, {"text": "new", "start": 585, "end": 588, "id": 111, "annotation": null}, {"text": "bands", "start": 589, "end": 594, "id": 112, "annotation": null}, {"text": "has", "start": 595, "end": 598, "id": 113, "annotation": null}, {"text": "been", "start": 599, "end": 603, "id": 114, "annotation": null}, {"text": "observed", "start": 604, "end": 612, "id": 115, "annotation": null}, {"text": "upon", "start": 613, "end": 617, "id": 116, "annotation": null}, {"text": "the", "start": 618, "end": 621, "id": 117, "annotation": null}, {"text": "interstitial", "start": 622, "end": 634, "id": 118, "annotation": null}, {"text": "carbon", "start": 635, "end": 641, "id": 119, "annotation": null}, {"text": "Ci", "start": 642, "end": 644, "id": 120, "annotation": null}, {"text": "annealing", "start": 645, "end": 654, "id": 121, "annotation": null}, {"text": "and", "start": 655, "end": 658, "id": 122, "annotation": null}, {"text": "they", "start": 659, "end": 663, "id": 123, "annotation": null}, {"text": "are", "start": 664, "end": 667, "id": 124, "annotation": null}, {"text": "attributed", "start": 668, "end": 678, "id": 125, "annotation": null}, {"text": "to", "start": 679, "end": 681, "id": 126, "annotation": null}, {"text": "precursors", "start": 682, "end": 692, "id": 127, "annotation": null}, {"text": "of", "start": 693, "end": 695, "id": 128, "annotation": null}, {"text": "the", "start": 696, "end": 699, "id": 129, "annotation": null}, {"text": "CiOi", "start": 700, "end": 704, "id": 130, "annotation": null}, {"text": "complex", "start": 705, "end": 712, "id": 131, "annotation": null}, {"text": ".", "start": 713, "end": 714, "id": 132, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Relationships between microstructure and transport properties of bicrystal grain boundary (BGB) junctions were studied in cobalt-doped BaFe2As2 (BaFe2As2:Co) epitaxial films grown on [001]-tilt bicrystal substrates of MgO and (La, Sr)(Al, Ta)O3 with misorientation angles \u03b8 GB =3\u201345\u00b0. The \u03b8 GB of BaFe2As2:Co BGBs were exactly transferred from those of the bicrystal substrates. No segregation of impurities was detected at the BGB junction interfaces, and the chemical compositions of the BGBs were uniform and the same as those in the bulk film regions. A transition from a strongly-coupled GB behavior to a weak-link behavior was observed in current density\u2013voltage characteristics under self-field around \u03b8 GB \u223c9\u00b0. The critical current density decreased from (1.2\u20131.6)\u00d7106 A/cm2 of the intragrain transport to (0.7\u20131.1)\u00d7105 A/cm2 of \u03b8 GB =45\u00b0 because supercurrent becomes more governed by Josephson current with increasing \u03b8 GB.", "meta": {"doi": "10.1016/j.mseb.2011.12.009"}, "_input_hash": -393923486, "_task_hash": -797276832, "tokens": [[{"text": "Relationships", "start": 0, "end": 13, "id": 0, "annotation": null}, {"text": "between", "start": 14, "end": 21, "id": 1, "annotation": null}, {"text": "microstructure", "start": 22, "end": 36, "id": 2, "annotation": null}, {"text": "and", "start": 37, "end": 40, "id": 3, "annotation": null}, {"text": "transport", "start": 41, "end": 50, "id": 4, "annotation": null}, {"text": "properties", "start": 51, "end": 61, "id": 5, "annotation": null}, {"text": "of", "start": 62, "end": 64, "id": 6, "annotation": null}, {"text": "bicrystal", "start": 65, "end": 74, "id": 7, "annotation": null}, {"text": "grain", "start": 75, "end": 80, "id": 8, "annotation": null}, {"text": "boundary", "start": 81, "end": 89, "id": 9, "annotation": null}, {"text": "(", "start": 90, "end": 91, "id": 10, "annotation": null}, {"text": "BGB", "start": 92, "end": 95, "id": 11, "annotation": null}, {"text": ")", "start": 96, "end": 97, "id": 12, "annotation": null}, {"text": "junctions", "start": 98, "end": 107, "id": 13, "annotation": null}, {"text": "were", "start": 108, "end": 112, "id": 14, "annotation": null}, {"text": "studied", "start": 113, "end": 120, "id": 15, "annotation": null}, {"text": "in", "start": 121, "end": 123, "id": 16, "annotation": null}, {"text": "cobalt", "start": 124, "end": 130, "id": 17, "annotation": "DOPANT"}, {"text": "-", "start": 131, "end": 132, "id": 18, "annotation": null}, {"text": "doped", "start": 133, "end": 138, "id": 19, "annotation": null}, {"text": "BaFe2As2", "start": 139, "end": 147, "id": 20, "annotation": "BASEMAT"}, {"text": "(", "start": 148, "end": 149, "id": 21, "annotation": null}, {"text": "BaFe2As2", "start": 150, "end": 158, "id": 22, "annotation": "BASEMAT"}, {"text": ":", "start": 159, "end": 160, "id": 23, "annotation": null}, {"text": "Co", "start": 161, "end": 163, "id": 24, "annotation": "DOPANT"}, {"text": ")", "start": 164, "end": 165, "id": 25, "annotation": null}, {"text": "epitaxial", "start": 166, "end": 175, "id": 26, "annotation": null}, {"text": "films", "start": 176, "end": 181, "id": 27, "annotation": null}, {"text": "grown", "start": 182, "end": 187, "id": 28, "annotation": null}, {"text": "on", "start": 188, "end": 190, "id": 29, "annotation": null}, {"text": "[", "start": 191, "end": 192, "id": 30, "annotation": null}, {"text": "001]-tilt", "start": 193, "end": 202, "id": 31, "annotation": null}, {"text": "bicrystal", "start": 203, "end": 212, "id": 32, "annotation": null}, {"text": "substrates", "start": 213, "end": 223, "id": 33, "annotation": null}, {"text": "of", "start": 224, "end": 226, "id": 34, "annotation": null}, {"text": "MgO", "start": 227, "end": 230, "id": 35, "annotation": null}, {"text": "and", "start": 231, "end": 234, "id": 36, "annotation": null}, {"text": "(", "start": 235, "end": 236, "id": 37, "annotation": null}, {"text": "La", "start": 237, "end": 239, "id": 38, "annotation": null}, {"text": ",", "start": 240, "end": 241, "id": 39, "annotation": null}, {"text": "Sr)(Al", "start": 242, "end": 248, "id": 40, "annotation": null}, {"text": ",", "start": 249, "end": 250, "id": 41, "annotation": null}, {"text": "Ta)O3", "start": 251, "end": 256, "id": 42, "annotation": null}, {"text": "with", "start": 257, "end": 261, "id": 43, "annotation": null}, {"text": "misorientation", "start": 262, "end": 276, "id": 44, "annotation": null}, {"text": "angles", "start": 277, "end": 283, "id": 45, "annotation": null}, {"text": "\u03b8", "start": 284, "end": 285, "id": 46, "annotation": null}, {"text": "GB", "start": 286, "end": 288, "id": 47, "annotation": null}, {"text": "=", "start": 289, "end": 290, "id": 48, "annotation": null}, {"text": "3\u201345", "start": 291, "end": 295, "id": 49, "annotation": null}, {"text": "\u00b0", "start": 296, "end": 297, "id": 50, "annotation": null}, {"text": ".", "start": 298, "end": 299, "id": 51, "annotation": null}], [{"text": "The", "start": 300, "end": 303, "id": 52, "annotation": null}, {"text": "\u03b8", "start": 304, "end": 305, "id": 53, "annotation": null}, {"text": "GB", "start": 306, "end": 308, "id": 54, "annotation": null}, {"text": "of", "start": 309, "end": 311, "id": 55, "annotation": null}, {"text": "BaFe2As2", "start": 312, "end": 320, "id": 56, "annotation": "BASEMAT"}, {"text": ":", "start": 321, "end": 322, "id": 57, "annotation": null}, {"text": "Co", "start": 323, "end": 325, "id": 58, "annotation": "DOPANT"}, {"text": "BGBs", "start": 326, "end": 330, "id": 59, "annotation": null}, {"text": "were", "start": 331, "end": 335, "id": 60, "annotation": null}, {"text": "exactly", "start": 336, "end": 343, "id": 61, "annotation": null}, {"text": "transferred", "start": 344, "end": 355, "id": 62, "annotation": null}, {"text": "from", "start": 356, "end": 360, "id": 63, "annotation": null}, {"text": "those", "start": 361, "end": 366, "id": 64, "annotation": null}, {"text": "of", "start": 367, "end": 369, "id": 65, "annotation": null}, {"text": "the", "start": 370, "end": 373, "id": 66, "annotation": null}, {"text": "bicrystal", "start": 374, "end": 383, "id": 67, "annotation": null}, {"text": "substrates", "start": 384, "end": 394, "id": 68, "annotation": null}, {"text": ".", "start": 395, "end": 396, "id": 69, "annotation": null}], [{"text": "No", "start": 397, "end": 399, "id": 70, "annotation": null}, {"text": "segregation", "start": 400, "end": 411, "id": 71, "annotation": null}, {"text": "of", "start": 412, "end": 414, "id": 72, "annotation": null}, {"text": "impurities", "start": 415, "end": 425, "id": 73, "annotation": null}, {"text": "was", "start": 426, "end": 429, "id": 74, "annotation": null}, {"text": "detected", "start": 430, "end": 438, "id": 75, "annotation": null}, {"text": "at", "start": 439, "end": 441, "id": 76, "annotation": null}, {"text": "the", "start": 442, "end": 445, "id": 77, "annotation": null}, {"text": "BGB", "start": 446, "end": 449, "id": 78, "annotation": null}, {"text": "junction", "start": 450, "end": 458, "id": 79, "annotation": null}, {"text": "interfaces", "start": 459, "end": 469, "id": 80, "annotation": null}, {"text": ",", "start": 470, "end": 471, "id": 81, "annotation": null}, {"text": "and", "start": 472, "end": 475, "id": 82, "annotation": null}, {"text": "the", "start": 476, "end": 479, "id": 83, "annotation": null}, {"text": "chemical", "start": 480, "end": 488, "id": 84, "annotation": null}, {"text": "compositions", "start": 489, "end": 501, "id": 85, "annotation": null}, {"text": "of", "start": 502, "end": 504, "id": 86, "annotation": null}, {"text": "the", "start": 505, "end": 508, "id": 87, "annotation": null}, {"text": "BGBs", "start": 509, "end": 513, "id": 88, "annotation": null}, {"text": "were", "start": 514, "end": 518, "id": 89, "annotation": null}, {"text": "uniform", "start": 519, "end": 526, "id": 90, "annotation": null}, {"text": "and", "start": 527, "end": 530, "id": 91, "annotation": null}, {"text": "the", "start": 531, "end": 534, "id": 92, "annotation": null}, {"text": "same", "start": 535, "end": 539, "id": 93, "annotation": null}, {"text": "as", "start": 540, "end": 542, "id": 94, "annotation": null}, {"text": "those", "start": 543, "end": 548, "id": 95, "annotation": null}, {"text": "in", "start": 549, "end": 551, "id": 96, "annotation": null}, {"text": "the", "start": 552, "end": 555, "id": 97, "annotation": null}, {"text": "bulk", "start": 556, "end": 560, "id": 98, "annotation": null}, {"text": "film", "start": 561, "end": 565, "id": 99, "annotation": null}, {"text": "regions", "start": 566, "end": 573, "id": 100, "annotation": null}, {"text": ".", "start": 574, "end": 575, "id": 101, "annotation": null}], [{"text": "A", "start": 576, "end": 577, "id": 102, "annotation": null}, {"text": "transition", "start": 578, "end": 588, "id": 103, "annotation": null}, {"text": "from", "start": 589, "end": 593, "id": 104, "annotation": null}, {"text": "a", "start": 594, "end": 595, "id": 105, "annotation": null}, {"text": "strongly", "start": 596, "end": 604, "id": 106, "annotation": null}, {"text": "-", "start": 605, "end": 606, "id": 107, "annotation": null}, {"text": "coupled", "start": 607, "end": 614, "id": 108, "annotation": null}, {"text": "GB", "start": 615, "end": 617, "id": 109, "annotation": null}, {"text": "behavior", "start": 618, "end": 626, "id": 110, "annotation": null}, {"text": "to", "start": 627, "end": 629, "id": 111, "annotation": null}, {"text": "a", "start": 630, "end": 631, "id": 112, "annotation": null}, {"text": "weak", "start": 632, "end": 636, "id": 113, "annotation": null}, {"text": "-", "start": 637, "end": 638, "id": 114, "annotation": null}, {"text": "link", "start": 639, "end": 643, "id": 115, "annotation": null}, {"text": "behavior", "start": 644, "end": 652, "id": 116, "annotation": null}, {"text": "was", "start": 653, "end": 656, "id": 117, "annotation": null}, {"text": "observed", "start": 657, "end": 665, "id": 118, "annotation": null}, {"text": "in", "start": 666, "end": 668, "id": 119, "annotation": null}, {"text": "current", "start": 669, "end": 676, "id": 120, "annotation": null}, {"text": "density", "start": 677, "end": 684, "id": 121, "annotation": null}, {"text": "\u2013", "start": 685, "end": 686, "id": 122, "annotation": null}, {"text": "voltage", "start": 687, "end": 694, "id": 123, "annotation": null}, {"text": "characteristics", "start": 695, "end": 710, "id": 124, "annotation": null}, {"text": "under", "start": 711, "end": 716, "id": 125, "annotation": null}, {"text": "self", "start": 717, "end": 721, "id": 126, "annotation": null}, {"text": "-", "start": 722, "end": 723, "id": 127, "annotation": null}, {"text": "field", "start": 724, "end": 729, "id": 128, "annotation": null}, {"text": "around", "start": 730, "end": 736, "id": 129, "annotation": null}, {"text": "\u03b8", "start": 737, "end": 738, "id": 130, "annotation": null}, {"text": "GB", "start": 739, "end": 741, "id": 131, "annotation": null}, {"text": "\u223c9", "start": 742, "end": 744, "id": 132, "annotation": null}, {"text": "\u00b0", "start": 745, "end": 746, "id": 133, "annotation": null}, {"text": ".", "start": 747, "end": 748, "id": 134, "annotation": null}], [{"text": "The", "start": 749, "end": 752, "id": 135, "annotation": null}, {"text": "critical", "start": 753, "end": 761, "id": 136, "annotation": null}, {"text": "current", "start": 762, "end": 769, "id": 137, "annotation": null}, {"text": "density", "start": 770, "end": 777, "id": 138, "annotation": null}, {"text": "decreased", "start": 778, "end": 787, "id": 139, "annotation": null}, {"text": "from", "start": 788, "end": 792, "id": 140, "annotation": null}, {"text": "(", "start": 793, "end": 794, "id": 141, "annotation": null}, {"text": "1.2\u20131.6)\u00d7106", "start": 795, "end": 807, "id": 142, "annotation": null}, {"text": "A", "start": 808, "end": 809, "id": 143, "annotation": null}, {"text": "/", "start": 810, "end": 811, "id": 144, "annotation": null}, {"text": "cm2", "start": 812, "end": 815, "id": 145, "annotation": null}, {"text": "of", "start": 816, "end": 818, "id": 146, "annotation": null}, {"text": "the", "start": 819, "end": 822, "id": 147, "annotation": null}, {"text": "intragrain", "start": 823, "end": 833, "id": 148, "annotation": null}, {"text": "transport", "start": 834, "end": 843, "id": 149, "annotation": null}, {"text": "to", "start": 844, "end": 846, "id": 150, "annotation": null}, {"text": "(", "start": 847, "end": 848, "id": 151, "annotation": null}, {"text": "0.7\u20131.1)\u00d7105", "start": 849, "end": 861, "id": 152, "annotation": null}, {"text": "A", "start": 862, "end": 863, "id": 153, "annotation": null}, {"text": "/", "start": 864, "end": 865, "id": 154, "annotation": null}, {"text": "cm2", "start": 866, "end": 869, "id": 155, "annotation": null}, {"text": "of", "start": 870, "end": 872, "id": 156, "annotation": null}, {"text": "\u03b8", "start": 873, "end": 874, "id": 157, "annotation": null}, {"text": "GB", "start": 875, "end": 877, "id": 158, "annotation": null}, {"text": "=", "start": 878, "end": 879, "id": 159, "annotation": null}, {"text": "45", "start": 880, "end": 882, "id": 160, "annotation": null}, {"text": "\u00b0", "start": 883, "end": 884, "id": 161, "annotation": null}, {"text": "because", "start": 885, "end": 892, "id": 162, "annotation": null}, {"text": "supercurrent", "start": 893, "end": 905, "id": 163, "annotation": null}, {"text": "becomes", "start": 906, "end": 913, "id": 164, "annotation": null}, {"text": "more", "start": 914, "end": 918, "id": 165, "annotation": null}, {"text": "governed", "start": 919, "end": 927, "id": 166, "annotation": null}, {"text": "by", "start": 928, "end": 930, "id": 167, "annotation": null}, {"text": "Josephson", "start": 931, "end": 940, "id": 168, "annotation": null}, {"text": "current", "start": 941, "end": 948, "id": 169, "annotation": null}, {"text": "with", "start": 949, "end": 953, "id": 170, "annotation": null}, {"text": "increasing", "start": 954, "end": 964, "id": 171, "annotation": null}, {"text": "\u03b8", "start": 965, "end": 966, "id": 172, "annotation": null}, {"text": "GB", "start": 967, "end": 969, "id": 173, "annotation": null}, {"text": ".", "start": 970, "end": 971, "id": 174, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "InP/InGaAs/InP double heterojunction bipolar transistors (DHBTs) were designed for wide band digital and analog circuits, and fabricated using a conventional mesa structure with benzocyclobutene (BCB) passivation and planarization process techniques. Our devices exhibit a maximum f t of 203 GHz, which is the highest f t for DHBTs in mainland China. The emitter size is 1.0 \u00d7 20 \u03bcm 2 . The DC current gain \u03b2 is 166, and BV CEO 4.34 V. The devices reported here employ a 40 nm highly doped InGaAs base region and a 203 nm InGaAsP composite structure. They are suitable for high speed and intermediate power applications.", "meta": {"doi": "10.1088/1674-4926/30/1/014002"}, "_input_hash": -926089731, "_task_hash": -741761535, "tokens": [[{"text": "InP", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "/", "start": 4, "end": 5, "id": 1, "annotation": null}, {"text": "InGaAs", "start": 6, "end": 12, "id": 2, "annotation": null}, {"text": "/", "start": 13, "end": 14, "id": 3, "annotation": null}, {"text": "InP", "start": 15, "end": 18, "id": 4, "annotation": null}, {"text": "double", "start": 19, "end": 25, "id": 5, "annotation": null}, {"text": "heterojunction", "start": 26, "end": 40, "id": 6, "annotation": null}, {"text": "bipolar", "start": 41, "end": 48, "id": 7, "annotation": null}, {"text": "transistors", "start": 49, "end": 60, "id": 8, "annotation": null}, {"text": "(", "start": 61, "end": 62, "id": 9, "annotation": null}, {"text": "DHBTs", "start": 63, "end": 68, "id": 10, "annotation": null}, {"text": ")", "start": 69, "end": 70, "id": 11, "annotation": null}, {"text": "were", "start": 71, "end": 75, "id": 12, "annotation": null}, {"text": "designed", "start": 76, "end": 84, "id": 13, "annotation": null}, {"text": "for", "start": 85, "end": 88, "id": 14, "annotation": null}, {"text": "wide", "start": 89, "end": 93, "id": 15, "annotation": null}, {"text": "band", "start": 94, "end": 98, "id": 16, "annotation": null}, {"text": "digital", "start": 99, "end": 106, "id": 17, "annotation": null}, {"text": "and", "start": 107, "end": 110, "id": 18, "annotation": null}, {"text": "analog", "start": 111, "end": 117, "id": 19, "annotation": null}, {"text": "circuits", "start": 118, "end": 126, "id": 20, "annotation": null}, {"text": ",", "start": 127, "end": 128, "id": 21, "annotation": null}, {"text": "and", "start": 129, "end": 132, "id": 22, "annotation": null}, {"text": "fabricated", "start": 133, "end": 143, "id": 23, "annotation": null}, {"text": "using", "start": 144, "end": 149, "id": 24, "annotation": null}, {"text": "a", "start": 150, "end": 151, "id": 25, "annotation": null}, {"text": "conventional", "start": 152, "end": 164, "id": 26, "annotation": null}, {"text": "mesa", "start": 165, "end": 169, "id": 27, "annotation": null}, {"text": "structure", "start": 170, "end": 179, "id": 28, "annotation": null}, {"text": "with", "start": 180, "end": 184, "id": 29, "annotation": null}, {"text": "benzocyclobutene", "start": 185, "end": 201, "id": 30, "annotation": null}, {"text": "(", "start": 202, "end": 203, "id": 31, "annotation": null}, {"text": "BCB", "start": 204, "end": 207, "id": 32, "annotation": null}, {"text": ")", "start": 208, "end": 209, "id": 33, "annotation": null}, {"text": "passivation", "start": 210, "end": 221, "id": 34, "annotation": null}, {"text": "and", "start": 222, "end": 225, "id": 35, "annotation": null}, {"text": "planarization", "start": 226, "end": 239, "id": 36, "annotation": null}, {"text": "process", "start": 240, "end": 247, "id": 37, "annotation": null}, {"text": "techniques", "start": 248, "end": 258, "id": 38, "annotation": null}, {"text": ".", "start": 259, "end": 260, "id": 39, "annotation": null}], [{"text": "Our", "start": 261, "end": 264, "id": 40, "annotation": null}, {"text": "devices", "start": 265, "end": 272, "id": 41, "annotation": null}, {"text": "exhibit", "start": 273, "end": 280, "id": 42, "annotation": null}, {"text": "a", "start": 281, "end": 282, "id": 43, "annotation": null}, {"text": "maximum", "start": 283, "end": 290, "id": 44, "annotation": null}, {"text": "f", "start": 291, "end": 292, "id": 45, "annotation": null}, {"text": "t", "start": 293, "end": 294, "id": 46, "annotation": null}, {"text": "of", "start": 295, "end": 297, "id": 47, "annotation": null}, {"text": "203", "start": 298, "end": 301, "id": 48, "annotation": null}, {"text": "GHz", "start": 302, "end": 305, "id": 49, "annotation": null}, {"text": ",", "start": 306, "end": 307, "id": 50, "annotation": null}, {"text": "which", "start": 308, "end": 313, "id": 51, "annotation": null}, {"text": "is", "start": 314, "end": 316, "id": 52, "annotation": null}, {"text": "the", "start": 317, "end": 320, "id": 53, "annotation": null}, {"text": "highest", "start": 321, "end": 328, "id": 54, "annotation": null}, {"text": "f", "start": 329, "end": 330, "id": 55, "annotation": null}, {"text": "t", "start": 331, "end": 332, "id": 56, "annotation": null}, {"text": "for", "start": 333, "end": 336, "id": 57, "annotation": null}, {"text": "DHBTs", "start": 337, "end": 342, "id": 58, "annotation": null}, {"text": "in", "start": 343, "end": 345, "id": 59, "annotation": null}, {"text": "mainland", "start": 346, "end": 354, "id": 60, "annotation": null}, {"text": "China", "start": 355, "end": 360, "id": 61, "annotation": null}, {"text": ".", "start": 361, "end": 362, "id": 62, "annotation": null}], [{"text": "The", "start": 363, "end": 366, "id": 63, "annotation": null}, {"text": "emitter", "start": 367, "end": 374, "id": 64, "annotation": null}, {"text": "size", "start": 375, "end": 379, "id": 65, "annotation": null}, {"text": "is", "start": 380, "end": 382, "id": 66, "annotation": null}, {"text": "1.0", "start": 383, "end": 386, "id": 67, "annotation": null}, {"text": "\u00d7", "start": 387, "end": 388, "id": 68, "annotation": null}, {"text": "20", "start": 389, "end": 391, "id": 69, "annotation": null}, {"text": "\u03bcm", "start": 392, "end": 394, "id": 70, "annotation": null}, {"text": "2", "start": 395, "end": 396, "id": 71, "annotation": null}, {"text": ".", "start": 397, "end": 398, "id": 72, "annotation": null}], [{"text": "The", "start": 399, "end": 402, "id": 73, "annotation": null}, {"text": "DC", "start": 403, "end": 405, "id": 74, "annotation": null}, {"text": "current", "start": 406, "end": 413, "id": 75, "annotation": null}, {"text": "gain", "start": 414, "end": 418, "id": 76, "annotation": null}, {"text": "\u03b2", "start": 419, "end": 420, "id": 77, "annotation": null}, {"text": "is", "start": 421, "end": 423, "id": 78, "annotation": null}, {"text": "166", "start": 424, "end": 427, "id": 79, "annotation": null}, {"text": ",", "start": 428, "end": 429, "id": 80, "annotation": null}, {"text": "and", "start": 430, "end": 433, "id": 81, "annotation": null}, {"text": "BV", "start": 434, "end": 436, "id": 82, "annotation": null}, {"text": "CEO", "start": 437, "end": 440, "id": 83, "annotation": null}, {"text": "4.34", "start": 441, "end": 445, "id": 84, "annotation": null}, {"text": "V.", "start": 446, "end": 448, "id": 85, "annotation": null}], [{"text": "The", "start": 449, "end": 452, "id": 86, "annotation": null}, {"text": "devices", "start": 453, "end": 460, "id": 87, "annotation": null}, {"text": "reported", "start": 461, "end": 469, "id": 88, "annotation": null}, {"text": "here", "start": 470, "end": 474, "id": 89, "annotation": null}, {"text": "employ", "start": 475, "end": 481, "id": 90, "annotation": null}, {"text": "a", "start": 482, "end": 483, "id": 91, "annotation": null}, {"text": "40", "start": 484, "end": 486, "id": 92, "annotation": null}, {"text": "nm", "start": 487, "end": 489, "id": 93, "annotation": null}, {"text": "highly", "start": 490, "end": 496, "id": 94, "annotation": null}, {"text": "doped", "start": 497, "end": 502, "id": 95, "annotation": null}, {"text": "InGaAs", "start": 503, "end": 509, "id": 96, "annotation": "BASEMAT"}, {"text": "base", "start": 510, "end": 514, "id": 97, "annotation": null}, {"text": "region", "start": 515, "end": 521, "id": 98, "annotation": null}, {"text": "and", "start": 522, "end": 525, "id": 99, "annotation": null}, {"text": "a", "start": 526, "end": 527, "id": 100, "annotation": null}, {"text": "203", "start": 528, "end": 531, "id": 101, "annotation": null}, {"text": "nm", "start": 532, "end": 534, "id": 102, "annotation": null}, {"text": "InGaAsP", "start": 535, "end": 542, "id": 103, "annotation": null}, {"text": "composite", "start": 543, "end": 552, "id": 104, "annotation": null}, {"text": "structure", "start": 553, "end": 562, "id": 105, "annotation": null}, {"text": ".", "start": 563, "end": 564, "id": 106, "annotation": null}], [{"text": "They", "start": 565, "end": 569, "id": 107, "annotation": null}, {"text": "are", "start": 570, "end": 573, "id": 108, "annotation": null}, {"text": "suitable", "start": 574, "end": 582, "id": 109, "annotation": null}, {"text": "for", "start": 583, "end": 586, "id": 110, "annotation": null}, {"text": "high", "start": 587, "end": 591, "id": 111, "annotation": null}, {"text": "speed", "start": 592, "end": 597, "id": 112, "annotation": null}, {"text": "and", "start": 598, "end": 601, "id": 113, "annotation": null}, {"text": "intermediate", "start": 602, "end": 614, "id": 114, "annotation": null}, {"text": "power", "start": 615, "end": 620, "id": 115, "annotation": null}, {"text": "applications", "start": 621, "end": 633, "id": 116, "annotation": null}, {"text": ".", "start": 634, "end": 635, "id": 117, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Yttrium-doped ZnO (YZO) thin film transistors (TFTs) are fabricated on sol-gel derived yttrium oxide (Y2O3) dielectric layers by solution process. The sol-gel derived Y2O3 layer annealed at 300\u00b0C showed a leakage current density of less than 10-6 A cm-2 at 10 V. Increasing the annealing temperature led to a decrease in the leakage current density by more than two orders of magnitude. The Y2O3 dielectrics annealed at 300\u00b0C exhibited crystalline phase, smooth surface and a high dielectric constant. The YZO TFTs built on a sol-gel derived Y2O3 layer showed charge carrier mobility of 6.19 to 27.10 cm2 V-1 s-1 upon annealing of YZO at 350 to 500\u00b0C. The chemical composition was determined by x-ray photoelectron spectroscopy to confirm the doping of Y in the ZnO at all annealing temperatures. The results reveal the potential of Y2O3 dielectric for developing low-temperature and high-performance electronic devices.", "meta": {"doi": "10.1088/1361-6641/aad998"}, "_input_hash": -80674173, "_task_hash": -689034511, "tokens": [[{"text": "Yttrium", "start": 27, "end": 34, "id": 5, "annotation": "DOPANT"}, {"text": "-", "start": 35, "end": 36, "id": 6, "annotation": null}, {"text": "doped", "start": 37, "end": 42, "id": 7, "annotation": null}, {"text": "ZnO", "start": 43, "end": 46, "id": 8, "annotation": "BASEMAT"}, {"text": "(", "start": 47, "end": 48, "id": 9, "annotation": null}, {"text": "YZO", "start": 49, "end": 52, "id": 10, "annotation": null}, {"text": ")", "start": 53, "end": 54, "id": 11, "annotation": null}, {"text": "thin", "start": 55, "end": 59, "id": 12, "annotation": null}, {"text": "film", "start": 60, "end": 64, "id": 13, "annotation": null}, {"text": "transistors", "start": 65, "end": 76, "id": 14, "annotation": null}, {"text": "(", "start": 77, "end": 78, "id": 15, "annotation": null}, {"text": "TFTs", "start": 79, "end": 83, "id": 16, "annotation": null}, {"text": ")", "start": 84, "end": 85, "id": 17, "annotation": null}, {"text": "are", "start": 86, "end": 89, "id": 18, "annotation": null}, {"text": "fabricated", "start": 90, "end": 100, "id": 19, "annotation": null}, {"text": "on", "start": 101, "end": 103, "id": 20, "annotation": null}, {"text": "sol", "start": 104, "end": 107, "id": 21, "annotation": null}, {"text": "-", "start": 108, "end": 109, "id": 22, "annotation": null}, {"text": "gel", "start": 110, "end": 113, "id": 23, "annotation": null}, {"text": "derived", "start": 114, "end": 121, "id": 24, "annotation": null}, {"text": "yttrium", "start": 122, "end": 129, "id": 25, "annotation": null}, {"text": "oxide", "start": 130, "end": 135, "id": 26, "annotation": null}, {"text": "(", "start": 136, "end": 137, "id": 27, "annotation": null}, {"text": "Y2O3", "start": 138, "end": 142, "id": 28, "annotation": null}, {"text": ")", "start": 143, "end": 144, "id": 29, "annotation": null}, {"text": "dielectric", "start": 145, "end": 155, "id": 30, "annotation": null}, {"text": "layers", "start": 156, "end": 162, "id": 31, "annotation": null}, {"text": "by", "start": 163, "end": 165, "id": 32, "annotation": null}, {"text": "solution", "start": 166, "end": 174, "id": 33, "annotation": null}, {"text": "process", "start": 175, "end": 182, "id": 34, "annotation": null}, {"text": ".", "start": 183, "end": 184, "id": 35, "annotation": null}], [{"text": "The", "start": 185, "end": 188, "id": 36, "annotation": null}, {"text": "sol", "start": 189, "end": 192, "id": 37, "annotation": null}, {"text": "-", "start": 193, "end": 194, "id": 38, "annotation": null}, {"text": "gel", "start": 195, "end": 198, "id": 39, "annotation": null}, {"text": "derived", "start": 199, "end": 206, "id": 40, "annotation": null}, {"text": "Y2O3", "start": 207, "end": 211, "id": 41, "annotation": null}, {"text": "layer", "start": 212, "end": 217, "id": 42, "annotation": null}, {"text": "annealed", "start": 218, "end": 226, "id": 43, "annotation": null}, {"text": "at", "start": 227, "end": 229, "id": 44, "annotation": null}, {"text": "300", "start": 230, "end": 233, "id": 45, "annotation": null}, {"text": "\u00b0", "start": 234, "end": 235, "id": 46, "annotation": null}, {"text": "C", "start": 236, "end": 237, "id": 47, "annotation": null}, {"text": "showed", "start": 238, "end": 244, "id": 48, "annotation": null}, {"text": "a", "start": 245, "end": 246, "id": 49, "annotation": null}, {"text": "leakage", "start": 247, "end": 254, "id": 50, "annotation": null}, {"text": "current", "start": 255, "end": 262, "id": 51, "annotation": null}, {"text": "density", "start": 263, "end": 270, "id": 52, "annotation": null}, {"text": "of", "start": 271, "end": 273, "id": 53, "annotation": null}, {"text": "less", "start": 274, "end": 278, "id": 54, "annotation": null}, {"text": "than", "start": 279, "end": 283, "id": 55, "annotation": null}, {"text": "10", "start": 284, "end": 286, "id": 56, "annotation": null}, {"text": "-", "start": 287, "end": 288, "id": 57, "annotation": null}, {"text": "6", "start": 289, "end": 290, "id": 58, "annotation": null}, {"text": "A", "start": 291, "end": 292, "id": 59, "annotation": null}, {"text": "cm-2", "start": 293, "end": 297, "id": 60, "annotation": null}, {"text": "at", "start": 298, "end": 300, "id": 61, "annotation": null}, {"text": "10", "start": 301, "end": 303, "id": 62, "annotation": null}, {"text": "V.", "start": 304, "end": 306, "id": 63, "annotation": null}], [{"text": "Increasing", "start": 307, "end": 317, "id": 64, "annotation": null}, {"text": "the", "start": 318, "end": 321, "id": 65, "annotation": null}, {"text": "annealing", "start": 322, "end": 331, "id": 66, "annotation": null}, {"text": "temperature", "start": 332, "end": 343, "id": 67, "annotation": null}, {"text": "led", "start": 344, "end": 347, "id": 68, "annotation": null}, {"text": "to", "start": 348, "end": 350, "id": 69, "annotation": null}, {"text": "a", "start": 351, "end": 352, "id": 70, "annotation": null}, {"text": "decrease", "start": 353, "end": 361, "id": 71, "annotation": null}, {"text": "in", "start": 362, "end": 364, "id": 72, "annotation": null}, {"text": "the", "start": 365, "end": 368, "id": 73, "annotation": null}, {"text": "leakage", "start": 369, "end": 376, "id": 74, "annotation": null}, {"text": "current", "start": 377, "end": 384, "id": 75, "annotation": null}, {"text": "density", "start": 385, "end": 392, "id": 76, "annotation": null}, {"text": "by", "start": 393, "end": 395, "id": 77, "annotation": null}, {"text": "more", "start": 396, "end": 400, "id": 78, "annotation": null}, {"text": "than", "start": 401, "end": 405, "id": 79, "annotation": null}, {"text": "two", "start": 406, "end": 409, "id": 80, "annotation": null}, {"text": "orders", "start": 410, "end": 416, "id": 81, "annotation": null}, {"text": "of", "start": 417, "end": 419, "id": 82, "annotation": null}, {"text": "magnitude", "start": 420, "end": 429, "id": 83, "annotation": null}, {"text": ".", "start": 430, "end": 431, "id": 84, "annotation": null}], [{"text": "The", "start": 432, "end": 435, "id": 85, "annotation": null}, {"text": "Y2O3", "start": 436, "end": 440, "id": 86, "annotation": null}, {"text": "dielectrics", "start": 441, "end": 452, "id": 87, "annotation": null}, {"text": "annealed", "start": 453, "end": 461, "id": 88, "annotation": null}, {"text": "at", "start": 462, "end": 464, "id": 89, "annotation": null}, {"text": "300", "start": 465, "end": 468, "id": 90, "annotation": null}, {"text": "\u00b0", "start": 469, "end": 470, "id": 91, "annotation": null}, {"text": "C", "start": 471, "end": 472, "id": 92, "annotation": null}, {"text": "exhibited", "start": 473, "end": 482, "id": 93, "annotation": null}, {"text": "crystalline", "start": 483, "end": 494, "id": 94, "annotation": null}, {"text": "phase", "start": 495, "end": 500, "id": 95, "annotation": null}, {"text": ",", "start": 501, "end": 502, "id": 96, "annotation": null}, {"text": "smooth", "start": 503, "end": 509, "id": 97, "annotation": null}, {"text": "surface", "start": 510, "end": 517, "id": 98, "annotation": null}, {"text": "and", "start": 518, "end": 521, "id": 99, "annotation": null}, {"text": "a", "start": 522, "end": 523, "id": 100, "annotation": null}, {"text": "high", "start": 524, "end": 528, "id": 101, "annotation": null}, {"text": "dielectric", "start": 529, "end": 539, "id": 102, "annotation": null}, {"text": "constant", "start": 540, "end": 548, "id": 103, "annotation": null}, {"text": ".", "start": 549, "end": 550, "id": 104, "annotation": null}], [{"text": "The", "start": 551, "end": 554, "id": 105, "annotation": null}, {"text": "YZO", "start": 555, "end": 558, "id": 106, "annotation": null}, {"text": "TFTs", "start": 559, "end": 563, "id": 107, "annotation": null}, {"text": "built", "start": 564, "end": 569, "id": 108, "annotation": null}, {"text": "on", "start": 570, "end": 572, "id": 109, "annotation": null}, {"text": "a", "start": 573, "end": 574, "id": 110, "annotation": null}, {"text": "sol", "start": 575, "end": 578, "id": 111, "annotation": null}, {"text": "-", "start": 579, "end": 580, "id": 112, "annotation": null}, {"text": "gel", "start": 581, "end": 584, "id": 113, "annotation": null}, {"text": "derived", "start": 585, "end": 592, "id": 114, "annotation": null}, {"text": "Y2O3", "start": 593, "end": 597, "id": 115, "annotation": null}, {"text": "layer", "start": 598, "end": 603, "id": 116, "annotation": null}, {"text": "showed", "start": 604, "end": 610, "id": 117, "annotation": null}, {"text": "charge", "start": 611, "end": 617, "id": 118, "annotation": null}, {"text": "carrier", "start": 618, "end": 625, "id": 119, "annotation": null}, {"text": "mobility", "start": 626, "end": 634, "id": 120, "annotation": null}, {"text": "of", "start": 635, "end": 637, "id": 121, "annotation": null}, {"text": "6.19", "start": 638, "end": 642, "id": 122, "annotation": null}, {"text": "to", "start": 643, "end": 645, "id": 123, "annotation": null}, {"text": "27.10", "start": 646, "end": 651, "id": 124, "annotation": null}, {"text": "cm2", "start": 652, "end": 655, "id": 125, "annotation": null}, {"text": "V-1", "start": 656, "end": 659, "id": 126, "annotation": null}, {"text": "s-1", "start": 660, "end": 663, "id": 127, "annotation": null}, {"text": "upon", "start": 664, "end": 668, "id": 128, "annotation": null}, {"text": "annealing", "start": 669, "end": 678, "id": 129, "annotation": null}, {"text": "of", "start": 679, "end": 681, "id": 130, "annotation": null}, {"text": "YZO", "start": 682, "end": 685, "id": 131, "annotation": null}, {"text": "at", "start": 686, "end": 688, "id": 132, "annotation": null}, {"text": "350", "start": 689, "end": 692, "id": 133, "annotation": null}, {"text": "to", "start": 693, "end": 695, "id": 134, "annotation": null}, {"text": "500", "start": 696, "end": 699, "id": 135, "annotation": null}, {"text": "\u00b0", "start": 700, "end": 701, "id": 136, "annotation": null}, {"text": "C", "start": 702, "end": 703, "id": 137, "annotation": null}, {"text": ".", "start": 704, "end": 705, "id": 138, "annotation": null}], [{"text": "The", "start": 706, "end": 709, "id": 139, "annotation": null}, {"text": "chemical", "start": 710, "end": 718, "id": 140, "annotation": null}, {"text": "composition", "start": 719, "end": 730, "id": 141, "annotation": null}, {"text": "was", "start": 731, "end": 734, "id": 142, "annotation": null}, {"text": "determined", "start": 735, "end": 745, "id": 143, "annotation": null}, {"text": "by", "start": 746, "end": 748, "id": 144, "annotation": null}, {"text": "x", "start": 749, "end": 750, "id": 145, "annotation": null}, {"text": "-", "start": 751, "end": 752, "id": 146, "annotation": null}, {"text": "ray", "start": 753, "end": 756, "id": 147, "annotation": null}, {"text": "photoelectron", "start": 757, "end": 770, "id": 148, "annotation": null}, {"text": "spectroscopy", "start": 771, "end": 783, "id": 149, "annotation": null}, {"text": "to", "start": 784, "end": 786, "id": 150, "annotation": null}, {"text": "confirm", "start": 787, "end": 794, "id": 151, "annotation": null}, {"text": "the", "start": 795, "end": 798, "id": 152, "annotation": null}, {"text": "doping", "start": 799, "end": 805, "id": 153, "annotation": null}, {"text": "of", "start": 806, "end": 808, "id": 154, "annotation": null}, {"text": "Y", "start": 809, "end": 810, "id": 155, "annotation": "DOPANT"}, {"text": "in", "start": 811, "end": 813, "id": 156, "annotation": null}, {"text": "the", "start": 814, "end": 817, "id": 157, "annotation": null}, {"text": "ZnO", "start": 818, "end": 821, "id": 158, "annotation": "BASEMAT"}, {"text": "at", "start": 822, "end": 824, "id": 159, "annotation": null}, {"text": "all", "start": 825, "end": 828, "id": 160, "annotation": null}, {"text": "annealing", "start": 829, "end": 838, "id": 161, "annotation": null}, {"text": "temperatures", "start": 839, "end": 851, "id": 162, "annotation": null}, {"text": ".", "start": 852, "end": 853, "id": 163, "annotation": null}], [{"text": "The", "start": 854, "end": 857, "id": 164, "annotation": null}, {"text": "results", "start": 858, "end": 865, "id": 165, "annotation": null}, {"text": "reveal", "start": 866, "end": 872, "id": 166, "annotation": null}, {"text": "the", "start": 873, "end": 876, "id": 167, "annotation": null}, {"text": "potential", "start": 877, "end": 886, "id": 168, "annotation": null}, {"text": "of", "start": 887, "end": 889, "id": 169, "annotation": null}, {"text": "Y2O3", "start": 890, "end": 894, "id": 170, "annotation": null}, {"text": "dielectric", "start": 895, "end": 905, "id": 171, "annotation": null}, {"text": "for", "start": 906, "end": 909, "id": 172, "annotation": null}, {"text": "developing", "start": 910, "end": 920, "id": 173, "annotation": null}, {"text": "low", "start": 921, "end": 924, "id": 174, "annotation": null}, {"text": "-", "start": 925, "end": 926, "id": 175, "annotation": null}, {"text": "temperature", "start": 927, "end": 938, "id": 176, "annotation": null}, {"text": "and", "start": 939, "end": 942, "id": 177, "annotation": null}, {"text": "high", "start": 943, "end": 947, "id": 178, "annotation": null}, {"text": "-", "start": 948, "end": 949, "id": 179, "annotation": null}, {"text": "performance", "start": 950, "end": 961, "id": 180, "annotation": null}, {"text": "electronic", "start": 962, "end": 972, "id": 181, "annotation": null}, {"text": "devices", "start": 973, "end": 980, "id": 182, "annotation": null}, {"text": ".", "start": 981, "end": 982, "id": 183, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "In this study, Sr1.94MgSi2O7: 0.02Eu2+, 0.04Dy3+ and Sr1.928MgSi2O7: 0.02Eu2+, 0.04Dy3+, 0.012Nd3+ long afterglow luminescent materials were successfully synthesized via the sol\u2013gel method under reducing atmosphere at 1100\u00b0C for 3h. No phase structure effect of Sr2MgSi2O7, or significant lattice distortion occurred while a small amount of rare earth ions were doped. Moreover, co-doping Sr2MgSi2O7: Eu2+, Dy3+ with Nd3+ has virtually no effect on the morphology of Sr2MgSi2O7: Eu2+, Dy3+. Co-doping Sr2MgSi2O7: Eu2+, Dy3+ with Nd3+ has also no evident effect on the position of the fluorescence emission peak. However, the applied concentration of Nd3+ co-doping created deeper traps and enhanced the afterglow properties of Sr2MgSi2O7: Eu2+, Dy3+.", "meta": {"doi": "10.1016/j.ceramint.2016.09.051"}, "_input_hash": 1694064468, "_task_hash": 2038862717, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "study", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": ",", "start": 14, "end": 15, "id": 3, "annotation": null}, {"text": "Sr1.94MgSi2O7", "start": 16, "end": 29, "id": 4, "annotation": "BASEMAT"}, {"text": ":", "start": 30, "end": 31, "id": 5, "annotation": null}, {"text": "0.02Eu2", "start": 32, "end": 39, "id": 6, "annotation": "DOPANT"}, {"text": "+", "start": 40, "end": 41, "id": 7, "annotation": "DOPANT"}, {"text": ",", "start": 42, "end": 43, "id": 8, "annotation": null}, {"text": "0.04Dy3", "start": 44, "end": 51, "id": 9, "annotation": "DOPANT"}, {"text": "+", "start": 52, "end": 53, "id": 10, "annotation": "DOPANT"}, {"text": "and", "start": 54, "end": 57, "id": 11, "annotation": null}, {"text": "Sr1.928MgSi2O7", "start": 58, "end": 72, "id": 12, "annotation": "BASEMAT"}, {"text": ":", "start": 73, "end": 74, "id": 13, "annotation": null}, {"text": "0.02Eu2", "start": 75, "end": 82, "id": 14, "annotation": "DOPANT"}, {"text": "+", "start": 83, "end": 84, "id": 15, "annotation": "DOPANT"}, {"text": ",", "start": 85, "end": 86, "id": 16, "annotation": null}, {"text": "0.04Dy3", "start": 87, "end": 94, "id": 17, "annotation": "DOPANT"}, {"text": "+", "start": 95, "end": 96, "id": 18, "annotation": "DOPANT"}, {"text": ",", "start": 97, "end": 98, "id": 19, "annotation": null}, {"text": "0.012Nd3", "start": 99, "end": 107, "id": 20, "annotation": "DOPANT"}, {"text": "+", "start": 108, "end": 109, "id": 21, "annotation": "DOPANT"}, {"text": "long", "start": 110, "end": 114, "id": 22, "annotation": null}, {"text": "afterglow", "start": 115, "end": 124, "id": 23, "annotation": null}, {"text": "luminescent", "start": 125, "end": 136, "id": 24, "annotation": null}, {"text": "materials", "start": 137, "end": 146, "id": 25, "annotation": null}, {"text": "were", "start": 147, "end": 151, "id": 26, "annotation": null}, {"text": "successfully", "start": 152, "end": 164, "id": 27, "annotation": null}, {"text": "synthesized", "start": 165, "end": 176, "id": 28, "annotation": null}, {"text": "via", "start": 177, "end": 180, "id": 29, "annotation": null}, {"text": "the", "start": 181, "end": 184, "id": 30, "annotation": null}, {"text": "sol", "start": 185, "end": 188, "id": 31, "annotation": null}, {"text": "\u2013", "start": 189, "end": 190, "id": 32, "annotation": null}, {"text": "gel", "start": 191, "end": 194, "id": 33, "annotation": null}, {"text": "method", "start": 195, "end": 201, "id": 34, "annotation": null}, {"text": "under", "start": 202, "end": 207, "id": 35, "annotation": null}, {"text": "reducing", "start": 208, "end": 216, "id": 36, "annotation": null}, {"text": "atmosphere", "start": 217, "end": 227, "id": 37, "annotation": null}, {"text": "at", "start": 228, "end": 230, "id": 38, "annotation": null}, {"text": "1100", "start": 231, "end": 235, "id": 39, "annotation": null}, {"text": "\u00b0", "start": 236, "end": 237, "id": 40, "annotation": null}, {"text": "C", "start": 238, "end": 239, "id": 41, "annotation": null}, {"text": "for", "start": 240, "end": 243, "id": 42, "annotation": null}, {"text": "3h", "start": 244, "end": 246, "id": 43, "annotation": null}, {"text": ".", "start": 247, "end": 248, "id": 44, "annotation": null}], [{"text": "No", "start": 249, "end": 251, "id": 45, "annotation": null}, {"text": "phase", "start": 252, "end": 257, "id": 46, "annotation": null}, {"text": "structure", "start": 258, "end": 267, "id": 47, "annotation": null}, {"text": "effect", "start": 268, "end": 274, "id": 48, "annotation": null}, {"text": "of", "start": 275, "end": 277, "id": 49, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 278, "end": 288, "id": 50, "annotation": "BASEMAT"}, {"text": ",", "start": 289, "end": 290, "id": 51, "annotation": null}, {"text": "or", "start": 291, "end": 293, "id": 52, "annotation": null}, {"text": "significant", "start": 294, "end": 305, "id": 53, "annotation": null}, {"text": "lattice", "start": 306, "end": 313, "id": 54, "annotation": null}, {"text": "distortion", "start": 314, "end": 324, "id": 55, "annotation": null}, {"text": "occurred", "start": 325, "end": 333, "id": 56, "annotation": null}, {"text": "while", "start": 334, "end": 339, "id": 57, "annotation": null}, {"text": "a", "start": 340, "end": 341, "id": 58, "annotation": null}, {"text": "small", "start": 342, "end": 347, "id": 59, "annotation": null}, {"text": "amount", "start": 348, "end": 354, "id": 60, "annotation": null}, {"text": "of", "start": 355, "end": 357, "id": 61, "annotation": null}, {"text": "rare", "start": 358, "end": 362, "id": 62, "annotation": "DOPANT"}, {"text": "earth", "start": 363, "end": 368, "id": 63, "annotation": null}, {"text": "ions", "start": 369, "end": 373, "id": 64, "annotation": "DOPANT"}, {"text": "were", "start": 374, "end": 378, "id": 65, "annotation": null}, {"text": "doped", "start": 379, "end": 384, "id": 66, "annotation": null}, {"text": ".", "start": 385, "end": 386, "id": 67, "annotation": null}], [{"text": "Moreover", "start": 387, "end": 395, "id": 68, "annotation": null}, {"text": ",", "start": 396, "end": 397, "id": 69, "annotation": null}, {"text": "co", "start": 398, "end": 400, "id": 70, "annotation": null}, {"text": "-", "start": 401, "end": 402, "id": 71, "annotation": null}, {"text": "doping", "start": 403, "end": 409, "id": 72, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 410, "end": 420, "id": 73, "annotation": "BASEMAT"}, {"text": ":", "start": 421, "end": 422, "id": 74, "annotation": null}, {"text": "Eu2", "start": 423, "end": 426, "id": 75, "annotation": "DOPANT"}, {"text": "+", "start": 427, "end": 428, "id": 76, "annotation": "DOPANT"}, {"text": ",", "start": 429, "end": 430, "id": 77, "annotation": null}, {"text": "Dy3", "start": 431, "end": 434, "id": 78, "annotation": "DOPANT"}, {"text": "+", "start": 435, "end": 436, "id": 79, "annotation": "DOPANT"}, {"text": "with", "start": 437, "end": 441, "id": 80, "annotation": null}, {"text": "Nd3", "start": 442, "end": 445, "id": 81, "annotation": "DOPANT"}, {"text": "+", "start": 446, "end": 447, "id": 82, "annotation": "DOPANT"}, {"text": "has", "start": 448, "end": 451, "id": 83, "annotation": null}, {"text": "virtually", "start": 452, "end": 461, "id": 84, "annotation": null}, {"text": "no", "start": 462, "end": 464, "id": 85, "annotation": null}, {"text": "effect", "start": 465, "end": 471, "id": 86, "annotation": null}, {"text": "on", "start": 472, "end": 474, "id": 87, "annotation": null}, {"text": "the", "start": 475, "end": 478, "id": 88, "annotation": null}, {"text": "morphology", "start": 479, "end": 489, "id": 89, "annotation": null}, {"text": "of", "start": 490, "end": 492, "id": 90, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 493, "end": 503, "id": 91, "annotation": "BASEMAT"}, {"text": ":", "start": 504, "end": 505, "id": 92, "annotation": null}, {"text": "Eu2", "start": 506, "end": 509, "id": 93, "annotation": "DOPANT"}, {"text": "+", "start": 510, "end": 511, "id": 94, "annotation": "DOPANT"}, {"text": ",", "start": 512, "end": 513, "id": 95, "annotation": null}, {"text": "Dy3", "start": 514, "end": 517, "id": 96, "annotation": "DOPANT"}, {"text": "+", "start": 518, "end": 519, "id": 97, "annotation": "DOPANT"}, {"text": ".", "start": 520, "end": 521, "id": 98, "annotation": null}], [{"text": "Co", "start": 522, "end": 524, "id": 99, "annotation": null}, {"text": "-", "start": 525, "end": 526, "id": 100, "annotation": null}, {"text": "doping", "start": 527, "end": 533, "id": 101, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 534, "end": 544, "id": 102, "annotation": "BASEMAT"}, {"text": ":", "start": 545, "end": 546, "id": 103, "annotation": null}, {"text": "Eu2", "start": 547, "end": 550, "id": 104, "annotation": "DOPANT"}, {"text": "+", "start": 551, "end": 552, "id": 105, "annotation": "DOPANT"}, {"text": ",", "start": 553, "end": 554, "id": 106, "annotation": null}, {"text": "Dy3", "start": 555, "end": 558, "id": 107, "annotation": "DOPANT"}, {"text": "+", "start": 559, "end": 560, "id": 108, "annotation": "DOPANT"}, {"text": "with", "start": 561, "end": 565, "id": 109, "annotation": null}, {"text": "Nd3", "start": 566, "end": 569, "id": 110, "annotation": "DOPANT"}, {"text": "+", "start": 570, "end": 571, "id": 111, "annotation": "DOPANT"}, {"text": "has", "start": 572, "end": 575, "id": 112, "annotation": null}, {"text": "also", "start": 576, "end": 580, "id": 113, "annotation": null}, {"text": "no", "start": 581, "end": 583, "id": 114, "annotation": null}, {"text": "evident", "start": 584, "end": 591, "id": 115, "annotation": null}, {"text": "effect", "start": 592, "end": 598, "id": 116, "annotation": null}, {"text": "on", "start": 599, "end": 601, "id": 117, "annotation": null}, {"text": "the", "start": 602, "end": 605, "id": 118, "annotation": null}, {"text": "position", "start": 606, "end": 614, "id": 119, "annotation": null}, {"text": "of", "start": 615, "end": 617, "id": 120, "annotation": null}, {"text": "the", "start": 618, "end": 621, "id": 121, "annotation": null}, {"text": "fluorescence", "start": 622, "end": 634, "id": 122, "annotation": null}, {"text": "emission", "start": 635, "end": 643, "id": 123, "annotation": null}, {"text": "peak", "start": 644, "end": 648, "id": 124, "annotation": null}, {"text": ".", "start": 649, "end": 650, "id": 125, "annotation": null}], [{"text": "However", "start": 651, "end": 658, "id": 126, "annotation": null}, {"text": ",", "start": 659, "end": 660, "id": 127, "annotation": null}, {"text": "the", "start": 661, "end": 664, "id": 128, "annotation": null}, {"text": "applied", "start": 665, "end": 672, "id": 129, "annotation": null}, {"text": "concentration", "start": 673, "end": 686, "id": 130, "annotation": null}, {"text": "of", "start": 687, "end": 689, "id": 131, "annotation": null}, {"text": "Nd3", "start": 690, "end": 693, "id": 132, "annotation": "DOPANT"}, {"text": "+", "start": 694, "end": 695, "id": 133, "annotation": "DOPANT"}, {"text": "co", "start": 696, "end": 698, "id": 134, "annotation": null}, {"text": "-", "start": 699, "end": 700, "id": 135, "annotation": null}, {"text": "doping", "start": 701, "end": 707, "id": 136, "annotation": null}, {"text": "created", "start": 708, "end": 715, "id": 137, "annotation": null}, {"text": "deeper", "start": 716, "end": 722, "id": 138, "annotation": null}, {"text": "traps", "start": 723, "end": 728, "id": 139, "annotation": null}, {"text": "and", "start": 729, "end": 732, "id": 140, "annotation": null}, {"text": "enhanced", "start": 733, "end": 741, "id": 141, "annotation": null}, {"text": "the", "start": 742, "end": 745, "id": 142, "annotation": null}, {"text": "afterglow", "start": 746, "end": 755, "id": 143, "annotation": null}, {"text": "properties", "start": 756, "end": 766, "id": 144, "annotation": null}, {"text": "of", "start": 767, "end": 769, "id": 145, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 770, "end": 780, "id": 146, "annotation": "BASEMAT"}, {"text": ":", "start": 781, "end": 782, "id": 147, "annotation": null}, {"text": "Eu2", "start": 783, "end": 786, "id": 148, "annotation": "DOPANT"}, {"text": "+", "start": 787, "end": 788, "id": 149, "annotation": "DOPANT"}, {"text": ",", "start": 789, "end": 790, "id": 150, "annotation": null}, {"text": "Dy3", "start": 791, "end": 794, "id": 151, "annotation": "DOPANT"}, {"text": "+", "start": 795, "end": 796, "id": 152, "annotation": "DOPANT"}, {"text": ".", "start": 797, "end": 798, "id": 153, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The fabrication of electrocatalysts that are active for more than one of the water splitting reactions has gained significant momentum. Here we demonstrate such a material produced via an electrochemical process that is based on amorphous cobalt sulfide films doped with oxygen which are active for the hydrogen evolution reaction (HER) and oxygen evolution reaction (OER) under alkaline conditions. The optimum electrochemical protocol was found to be a repetitive potential cycling approach rather than a constant potential to create an amorphous CoSx film containing oxygen. Samples with a Co : S ratio of 1.56 : 1 were found to be active for the HER in 0.5 M H2SO4, phosphate buffer and 0.1 M NaOH. Significantly this activity is comparable to highly crystalline nanomaterials of cobalt sulfide. Density functional theory calculations indicated that a reduced S-Co coordination number, as encountered in amorphous materials, leads to an optimum binding energy for hydrogen adsorption on the material which facilitates good electron transfer kinetics. In addition, this material was also active for the OER in alkaline conditions with evidence of conversion to cobalt oxide which gave a low overpotential of 370 mV for an applied current density of 10 mA cm-2 with a Tafel slope of 67 mV dec-1. This simple approach shows promise for the fabrication of a dual action electrocatalyst for electrochemical water splitting under alkaline conditions.", "meta": {"doi": "10.1039/c7ra10394h"}, "_input_hash": 550920985, "_task_hash": 1679710118, "tokens": [[{"text": "The", "start": 40, "end": 43, "id": 8, "annotation": null}, {"text": "fabrication", "start": 44, "end": 55, "id": 9, "annotation": null}, {"text": "of", "start": 56, "end": 58, "id": 10, "annotation": null}, {"text": "electrocatalysts", "start": 59, "end": 75, "id": 11, "annotation": null}, {"text": "that", "start": 76, "end": 80, "id": 12, "annotation": null}, {"text": "are", "start": 81, "end": 84, "id": 13, "annotation": null}, {"text": "active", "start": 85, "end": 91, "id": 14, "annotation": null}, {"text": "for", "start": 92, "end": 95, "id": 15, "annotation": null}, {"text": "more", "start": 96, "end": 100, "id": 16, "annotation": null}, {"text": "than", "start": 101, "end": 105, "id": 17, "annotation": null}, {"text": "one", "start": 106, "end": 109, "id": 18, "annotation": null}, {"text": "of", "start": 110, "end": 112, "id": 19, "annotation": null}, {"text": "the", "start": 113, "end": 116, "id": 20, "annotation": null}, {"text": "water", "start": 117, "end": 122, "id": 21, "annotation": null}, {"text": "splitting", "start": 123, "end": 132, "id": 22, "annotation": null}, {"text": "reactions", "start": 133, "end": 142, "id": 23, "annotation": null}, {"text": "has", "start": 143, "end": 146, "id": 24, "annotation": null}, {"text": "gained", "start": 147, "end": 153, "id": 25, "annotation": null}, {"text": "significant", "start": 154, "end": 165, "id": 26, "annotation": null}, {"text": "momentum", "start": 166, "end": 174, "id": 27, "annotation": null}, {"text": ".", "start": 175, "end": 176, "id": 28, "annotation": null}], [{"text": "Here", "start": 177, "end": 181, "id": 29, "annotation": null}, {"text": "we", "start": 182, "end": 184, "id": 30, "annotation": null}, {"text": "demonstrate", "start": 185, "end": 196, "id": 31, "annotation": null}, {"text": "such", "start": 197, "end": 201, "id": 32, "annotation": null}, {"text": "a", "start": 202, "end": 203, "id": 33, "annotation": null}, {"text": "material", "start": 204, "end": 212, "id": 34, "annotation": null}, {"text": "produced", "start": 213, "end": 221, "id": 35, "annotation": null}, {"text": "via", "start": 222, "end": 225, "id": 36, "annotation": null}, {"text": "an", "start": 226, "end": 228, "id": 37, "annotation": null}, {"text": "electrochemical", "start": 229, "end": 244, "id": 38, "annotation": null}, {"text": "process", "start": 245, "end": 252, "id": 39, "annotation": null}, {"text": "that", "start": 253, "end": 257, "id": 40, "annotation": null}, {"text": "is", "start": 258, "end": 260, "id": 41, "annotation": null}, {"text": "based", "start": 261, "end": 266, "id": 42, "annotation": null}, {"text": "on", "start": 267, "end": 269, "id": 43, "annotation": null}, {"text": "amorphous", "start": 270, "end": 279, "id": 44, "annotation": null}, {"text": "cobalt", "start": 280, "end": 286, "id": 45, "annotation": "BASEMAT"}, {"text": "sulfide", "start": 287, "end": 294, "id": 46, "annotation": "BASEMAT"}, {"text": "films", "start": 295, "end": 300, "id": 47, "annotation": null}, {"text": "doped", "start": 301, "end": 306, "id": 48, "annotation": null}, {"text": "with", "start": 307, "end": 311, "id": 49, "annotation": null}, {"text": "oxygen", "start": 312, "end": 318, "id": 50, "annotation": "DOPANT"}, {"text": "which", "start": 319, "end": 324, "id": 51, "annotation": null}, {"text": "are", "start": 325, "end": 328, "id": 52, "annotation": null}, {"text": "active", "start": 329, "end": 335, "id": 53, "annotation": null}, {"text": "for", "start": 336, "end": 339, "id": 54, "annotation": null}, {"text": "the", "start": 340, "end": 343, "id": 55, "annotation": null}, {"text": "hydrogen", "start": 344, "end": 352, "id": 56, "annotation": null}, {"text": "evolution", "start": 353, "end": 362, "id": 57, "annotation": null}, {"text": "reaction", "start": 363, "end": 371, "id": 58, "annotation": null}, {"text": "(", "start": 372, "end": 373, "id": 59, "annotation": null}, {"text": "HER", "start": 374, "end": 377, "id": 60, "annotation": null}, {"text": ")", "start": 378, "end": 379, "id": 61, "annotation": null}, {"text": "and", "start": 380, "end": 383, "id": 62, "annotation": null}, {"text": "oxygen", "start": 384, "end": 390, "id": 63, "annotation": null}, {"text": "evolution", "start": 391, "end": 400, "id": 64, "annotation": null}, {"text": "reaction", "start": 401, "end": 409, "id": 65, "annotation": null}, {"text": "(", "start": 410, "end": 411, "id": 66, "annotation": null}, {"text": "OER", "start": 412, "end": 415, "id": 67, "annotation": null}, {"text": ")", "start": 416, "end": 417, "id": 68, "annotation": null}, {"text": "under", "start": 418, "end": 423, "id": 69, "annotation": null}, {"text": "alkaline", "start": 424, "end": 432, "id": 70, "annotation": null}, {"text": "conditions", "start": 433, "end": 443, "id": 71, "annotation": null}, {"text": ".", "start": 444, "end": 445, "id": 72, "annotation": null}], [{"text": "The", "start": 446, "end": 449, "id": 73, "annotation": null}, {"text": "optimum", "start": 450, "end": 457, "id": 74, "annotation": null}, {"text": "electrochemical", "start": 458, "end": 473, "id": 75, "annotation": null}, {"text": "protocol", "start": 474, "end": 482, "id": 76, "annotation": null}, {"text": "was", "start": 483, "end": 486, "id": 77, "annotation": null}, {"text": "found", "start": 487, "end": 492, "id": 78, "annotation": null}, {"text": "to", "start": 493, "end": 495, "id": 79, "annotation": null}, {"text": "be", "start": 496, "end": 498, "id": 80, "annotation": null}, {"text": "a", "start": 499, "end": 500, "id": 81, "annotation": null}, {"text": "repetitive", "start": 501, "end": 511, "id": 82, "annotation": null}, {"text": "potential", "start": 512, "end": 521, "id": 83, "annotation": null}, {"text": "cycling", "start": 522, "end": 529, "id": 84, "annotation": null}, {"text": "approach", "start": 530, "end": 538, "id": 85, "annotation": null}, {"text": "rather", "start": 539, "end": 545, "id": 86, "annotation": null}, {"text": "than", "start": 546, "end": 550, "id": 87, "annotation": null}, {"text": "a", "start": 551, "end": 552, "id": 88, "annotation": null}, {"text": "constant", "start": 553, "end": 561, "id": 89, "annotation": null}, {"text": "potential", "start": 562, "end": 571, "id": 90, "annotation": null}, {"text": "to", "start": 572, "end": 574, "id": 91, "annotation": null}, {"text": "create", "start": 575, "end": 581, "id": 92, "annotation": null}, {"text": "an", "start": 582, "end": 584, "id": 93, "annotation": null}, {"text": "amorphous", "start": 585, "end": 594, "id": 94, "annotation": null}, {"text": "CoSx", "start": 595, "end": 599, "id": 95, "annotation": null}, {"text": "film", "start": 600, "end": 604, "id": 96, "annotation": null}, {"text": "containing", "start": 605, "end": 615, "id": 97, "annotation": null}, {"text": "oxygen", "start": 616, "end": 622, "id": 98, "annotation": null}, {"text": ".", "start": 623, "end": 624, "id": 99, "annotation": null}], [{"text": "Samples", "start": 625, "end": 632, "id": 100, "annotation": null}, {"text": "with", "start": 633, "end": 637, "id": 101, "annotation": null}, {"text": "a", "start": 638, "end": 639, "id": 102, "annotation": null}, {"text": "Co", "start": 640, "end": 642, "id": 103, "annotation": null}, {"text": ":", "start": 643, "end": 644, "id": 104, "annotation": null}, {"text": "S", "start": 645, "end": 646, "id": 105, "annotation": null}, {"text": "ratio", "start": 647, "end": 652, "id": 106, "annotation": null}, {"text": "of", "start": 653, "end": 655, "id": 107, "annotation": null}, {"text": "1.56", "start": 656, "end": 660, "id": 108, "annotation": null}, {"text": ":", "start": 661, "end": 662, "id": 109, "annotation": null}, {"text": "1", "start": 663, "end": 664, "id": 110, "annotation": null}, {"text": "were", "start": 665, "end": 669, "id": 111, "annotation": null}, {"text": "found", "start": 670, "end": 675, "id": 112, "annotation": null}, {"text": "to", "start": 676, "end": 678, "id": 113, "annotation": null}, {"text": "be", "start": 679, "end": 681, "id": 114, "annotation": null}, {"text": "active", "start": 682, "end": 688, "id": 115, "annotation": null}, {"text": "for", "start": 689, "end": 692, "id": 116, "annotation": null}, {"text": "the", "start": 693, "end": 696, "id": 117, "annotation": null}, {"text": "HER", "start": 697, "end": 700, "id": 118, "annotation": null}, {"text": "in", "start": 701, "end": 703, "id": 119, "annotation": null}, {"text": "0.5", "start": 704, "end": 707, "id": 120, "annotation": null}, {"text": "M", "start": 708, "end": 709, "id": 121, "annotation": null}, {"text": "H2SO4", "start": 710, "end": 715, "id": 122, "annotation": null}, {"text": ",", "start": 716, "end": 717, "id": 123, "annotation": null}, {"text": "phosphate", "start": 718, "end": 727, "id": 124, "annotation": null}, {"text": "buffer", "start": 728, "end": 734, "id": 125, "annotation": null}, {"text": "and", "start": 735, "end": 738, "id": 126, "annotation": null}, {"text": "0.1", "start": 739, "end": 742, "id": 127, "annotation": null}, {"text": "M", "start": 743, "end": 744, "id": 128, "annotation": null}, {"text": "NaOH", "start": 745, "end": 749, "id": 129, "annotation": null}, {"text": ".", "start": 750, "end": 751, "id": 130, "annotation": null}], [{"text": "Significantly", "start": 752, "end": 765, "id": 131, "annotation": null}, {"text": "this", "start": 766, "end": 770, "id": 132, "annotation": null}, {"text": "activity", "start": 771, "end": 779, "id": 133, "annotation": null}, {"text": "is", "start": 780, "end": 782, "id": 134, "annotation": null}, {"text": "comparable", "start": 783, "end": 793, "id": 135, "annotation": null}, {"text": "to", "start": 794, "end": 796, "id": 136, "annotation": null}, {"text": "highly", "start": 797, "end": 803, "id": 137, "annotation": null}, {"text": "crystalline", "start": 804, "end": 815, "id": 138, "annotation": null}, {"text": "nanomaterials", "start": 816, "end": 829, "id": 139, "annotation": null}, {"text": "of", "start": 830, "end": 832, "id": 140, "annotation": null}, {"text": "cobalt", "start": 833, "end": 839, "id": 141, "annotation": null}, {"text": "sulfide", "start": 840, "end": 847, "id": 142, "annotation": null}, {"text": ".", "start": 848, "end": 849, "id": 143, "annotation": null}], [{"text": "Density", "start": 850, "end": 857, "id": 144, "annotation": null}, {"text": "functional", "start": 858, "end": 868, "id": 145, "annotation": null}, {"text": "theory", "start": 869, "end": 875, "id": 146, "annotation": null}, {"text": "calculations", "start": 876, "end": 888, "id": 147, "annotation": null}, {"text": "indicated", "start": 889, "end": 898, "id": 148, "annotation": null}, {"text": "that", "start": 899, "end": 903, "id": 149, "annotation": null}, {"text": "a", "start": 904, "end": 905, "id": 150, "annotation": null}, {"text": "reduced", "start": 906, "end": 913, "id": 151, "annotation": null}, {"text": "S", "start": 914, "end": 915, "id": 152, "annotation": null}, {"text": "-", "start": 916, "end": 917, "id": 153, "annotation": null}, {"text": "Co", "start": 918, "end": 920, "id": 154, "annotation": null}, {"text": "coordination", "start": 921, "end": 933, "id": 155, "annotation": null}, {"text": "number", "start": 934, "end": 940, "id": 156, "annotation": null}, {"text": ",", "start": 941, "end": 942, "id": 157, "annotation": null}, {"text": "as", "start": 943, "end": 945, "id": 158, "annotation": null}, {"text": "encountered", "start": 946, "end": 957, "id": 159, "annotation": null}, {"text": "in", "start": 958, "end": 960, "id": 160, "annotation": null}, {"text": "amorphous", "start": 961, "end": 970, "id": 161, "annotation": null}, {"text": "materials", "start": 971, "end": 980, "id": 162, "annotation": null}, {"text": ",", "start": 981, "end": 982, "id": 163, "annotation": null}, {"text": "leads", "start": 983, "end": 988, "id": 164, "annotation": null}, {"text": "to", "start": 989, "end": 991, "id": 165, "annotation": null}, {"text": "an", "start": 992, "end": 994, "id": 166, "annotation": null}, {"text": "optimum", "start": 995, "end": 1002, "id": 167, "annotation": null}, {"text": "binding", "start": 1003, "end": 1010, "id": 168, "annotation": null}, {"text": "energy", "start": 1011, "end": 1017, "id": 169, "annotation": null}, {"text": "for", "start": 1018, "end": 1021, "id": 170, "annotation": null}, {"text": "hydrogen", "start": 1022, "end": 1030, "id": 171, "annotation": null}, {"text": "adsorption", "start": 1031, "end": 1041, "id": 172, "annotation": null}, {"text": "on", "start": 1042, "end": 1044, "id": 173, "annotation": null}, {"text": "the", "start": 1045, "end": 1048, "id": 174, "annotation": null}, {"text": "material", "start": 1049, "end": 1057, "id": 175, "annotation": null}, {"text": "which", "start": 1058, "end": 1063, "id": 176, "annotation": null}, {"text": "facilitates", "start": 1064, "end": 1075, "id": 177, "annotation": null}, {"text": "good", "start": 1076, "end": 1080, "id": 178, "annotation": null}, {"text": "electron", "start": 1081, "end": 1089, "id": 179, "annotation": null}, {"text": "transfer", "start": 1090, "end": 1098, "id": 180, "annotation": null}, {"text": "kinetics", "start": 1099, "end": 1107, "id": 181, "annotation": null}, {"text": ".", "start": 1108, "end": 1109, "id": 182, "annotation": null}], [{"text": "In", "start": 1110, "end": 1112, "id": 183, "annotation": null}, {"text": "addition", "start": 1113, "end": 1121, "id": 184, "annotation": null}, {"text": ",", "start": 1122, "end": 1123, "id": 185, "annotation": null}, {"text": "this", "start": 1124, "end": 1128, "id": 186, "annotation": null}, {"text": "material", "start": 1129, "end": 1137, "id": 187, "annotation": null}, {"text": "was", "start": 1138, "end": 1141, "id": 188, "annotation": null}, {"text": "also", "start": 1142, "end": 1146, "id": 189, "annotation": null}, {"text": "active", "start": 1147, "end": 1153, "id": 190, "annotation": null}, {"text": "for", "start": 1154, "end": 1157, "id": 191, "annotation": null}, {"text": "the", "start": 1158, "end": 1161, "id": 192, "annotation": null}, {"text": "OER", "start": 1162, "end": 1165, "id": 193, "annotation": null}, {"text": "in", "start": 1166, "end": 1168, "id": 194, "annotation": null}, {"text": "alkaline", "start": 1169, "end": 1177, "id": 195, "annotation": null}, {"text": "conditions", "start": 1178, "end": 1188, "id": 196, "annotation": null}, {"text": "with", "start": 1189, "end": 1193, "id": 197, "annotation": null}, {"text": "evidence", "start": 1194, "end": 1202, "id": 198, "annotation": null}, {"text": "of", "start": 1203, "end": 1205, "id": 199, "annotation": null}, {"text": "conversion", "start": 1206, "end": 1216, "id": 200, "annotation": null}, {"text": "to", "start": 1217, "end": 1219, "id": 201, "annotation": null}, {"text": "cobalt", "start": 1220, "end": 1226, "id": 202, "annotation": null}, {"text": "oxide", "start": 1227, "end": 1232, "id": 203, "annotation": null}, {"text": "which", "start": 1233, "end": 1238, "id": 204, "annotation": null}, {"text": "gave", "start": 1239, "end": 1243, "id": 205, "annotation": null}, {"text": "a", "start": 1244, "end": 1245, "id": 206, "annotation": null}, {"text": "low", "start": 1246, "end": 1249, "id": 207, "annotation": null}, {"text": "overpotential", "start": 1250, "end": 1263, "id": 208, "annotation": null}, {"text": "of", "start": 1264, "end": 1266, "id": 209, "annotation": null}, {"text": "370", "start": 1267, "end": 1270, "id": 210, "annotation": null}, {"text": "mV", "start": 1271, "end": 1273, "id": 211, "annotation": null}, {"text": "for", "start": 1274, "end": 1277, "id": 212, "annotation": null}, {"text": "an", "start": 1278, "end": 1280, "id": 213, "annotation": null}, {"text": "applied", "start": 1281, "end": 1288, "id": 214, "annotation": null}, {"text": "current", "start": 1289, "end": 1296, "id": 215, "annotation": null}, {"text": "density", "start": 1297, "end": 1304, "id": 216, "annotation": null}, {"text": "of", "start": 1305, "end": 1307, "id": 217, "annotation": null}, {"text": "10", "start": 1308, "end": 1310, "id": 218, "annotation": null}, {"text": "mA", "start": 1311, "end": 1313, "id": 219, "annotation": null}, {"text": "cm-2", "start": 1314, "end": 1318, "id": 220, "annotation": null}, {"text": "with", "start": 1319, "end": 1323, "id": 221, "annotation": null}, {"text": "a", "start": 1324, "end": 1325, "id": 222, "annotation": null}, {"text": "Tafel", "start": 1326, "end": 1331, "id": 223, "annotation": null}, {"text": "slope", "start": 1332, "end": 1337, "id": 224, "annotation": null}, {"text": "of", "start": 1338, "end": 1340, "id": 225, "annotation": null}, {"text": "67", "start": 1341, "end": 1343, "id": 226, "annotation": null}, {"text": "mV", "start": 1344, "end": 1346, "id": 227, "annotation": null}, {"text": "dec-1", "start": 1347, "end": 1352, "id": 228, "annotation": null}, {"text": ".", "start": 1353, "end": 1354, "id": 229, "annotation": null}], [{"text": "This", "start": 1355, "end": 1359, "id": 230, "annotation": null}, {"text": "simple", "start": 1360, "end": 1366, "id": 231, "annotation": null}, {"text": "approach", "start": 1367, "end": 1375, "id": 232, "annotation": null}, {"text": "shows", "start": 1376, "end": 1381, "id": 233, "annotation": null}, {"text": "promise", "start": 1382, "end": 1389, "id": 234, "annotation": null}, {"text": "for", "start": 1390, "end": 1393, "id": 235, "annotation": null}, {"text": "the", "start": 1394, "end": 1397, "id": 236, "annotation": null}, {"text": "fabrication", "start": 1398, "end": 1409, "id": 237, "annotation": null}, {"text": "of", "start": 1410, "end": 1412, "id": 238, "annotation": null}, {"text": "a", "start": 1413, "end": 1414, "id": 239, "annotation": null}, {"text": "dual", "start": 1415, "end": 1419, "id": 240, "annotation": null}, {"text": "action", "start": 1420, "end": 1426, "id": 241, "annotation": null}, {"text": "electrocatalyst", "start": 1427, "end": 1442, "id": 242, "annotation": null}, {"text": "for", "start": 1443, "end": 1446, "id": 243, "annotation": null}, {"text": "electrochemical", "start": 1447, "end": 1462, "id": 244, "annotation": null}, {"text": "water", "start": 1463, "end": 1468, "id": 245, "annotation": null}, {"text": "splitting", "start": 1469, "end": 1478, "id": 246, "annotation": null}, {"text": "under", "start": 1479, "end": 1484, "id": 247, "annotation": null}, {"text": "alkaline", "start": 1485, "end": 1493, "id": 248, "annotation": null}, {"text": "conditions", "start": 1494, "end": 1504, "id": 249, "annotation": null}, {"text": ".", "start": 1505, "end": 1506, "id": 250, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The alkali-doped electrosodalites form a unique class of magnetic materials where the magnetism comes from nonatom centered unpaired F-center electrons found inside body-centered cubic arrangements of alkali ion clusters supported by sodalite host lattices. In the present work the crystal structure of potassium-electrosodalite (PES) has been determined at 20 K using synchrotron powder diffraction. Using the linearized augmented plane wave method the electronic structure of sodium-electrosodalite (SES) and PES is calculated. While nonmagnetic and ferromagnetic phases of SES and PES are found to be metallic, DFT in both the LSDA and the GGA version correctly predicts the nonmetallic AFM phase to be the electronic ground state. Despite PES having a larger unit cell than SES the temperature of magnetic ordering is higher. This is found to be due to both a broadening of the bands belonging to the F-center states and to lower on-site correlations. Calculated optical properties are reported and the formation of F centers inside sodalite cages causes the materials to absorb light with energies around 1 eV and above, depending on structure. Non-nuclear maxima are found in the total electron density of both SES and PES and the spin density is found mainly in the center of the sodalite cage.", "meta": {"doi": "10.1103/PhysRevB.64.195102"}, "_input_hash": 796408058, "_task_hash": 1092793059, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "alkali", "start": 4, "end": 10, "id": 1, "annotation": "DOPANT"}, {"text": "-", "start": 11, "end": 12, "id": 2, "annotation": null}, {"text": "doped", "start": 13, "end": 18, "id": 3, "annotation": null}, {"text": "electrosodalites", "start": 19, "end": 35, "id": 4, "annotation": "BASEMAT"}, {"text": "form", "start": 36, "end": 40, "id": 5, "annotation": null}, {"text": "a", "start": 41, "end": 42, "id": 6, "annotation": null}, {"text": "unique", "start": 43, "end": 49, "id": 7, "annotation": null}, {"text": "class", "start": 50, "end": 55, "id": 8, "annotation": null}, {"text": "of", "start": 56, "end": 58, "id": 9, "annotation": null}, {"text": "magnetic", "start": 59, "end": 67, "id": 10, "annotation": null}, {"text": "materials", "start": 68, "end": 77, "id": 11, "annotation": null}, {"text": "where", "start": 78, "end": 83, "id": 12, "annotation": null}, {"text": "the", "start": 84, "end": 87, "id": 13, "annotation": null}, {"text": "magnetism", "start": 88, "end": 97, "id": 14, "annotation": null}, {"text": "comes", "start": 98, "end": 103, "id": 15, "annotation": null}, {"text": "from", "start": 104, "end": 108, "id": 16, "annotation": null}, {"text": "nonatom", "start": 109, "end": 116, "id": 17, "annotation": null}, {"text": "centered", "start": 117, "end": 125, "id": 18, "annotation": null}, {"text": "unpaired", "start": 126, "end": 134, "id": 19, "annotation": null}, {"text": "F", "start": 135, "end": 136, "id": 20, "annotation": null}, {"text": "-", "start": 137, "end": 138, "id": 21, "annotation": null}, {"text": "center", "start": 139, "end": 145, "id": 22, "annotation": null}, {"text": "electrons", "start": 146, "end": 155, "id": 23, "annotation": null}, {"text": "found", "start": 156, "end": 161, "id": 24, "annotation": null}, {"text": "inside", "start": 162, "end": 168, "id": 25, "annotation": null}, {"text": "body", "start": 169, "end": 173, "id": 26, "annotation": null}, {"text": "-", "start": 174, "end": 175, "id": 27, "annotation": null}, {"text": "centered", "start": 176, "end": 184, "id": 28, "annotation": null}, {"text": "cubic", "start": 185, "end": 190, "id": 29, "annotation": null}, {"text": "arrangements", "start": 191, "end": 203, "id": 30, "annotation": null}, {"text": "of", "start": 204, "end": 206, "id": 31, "annotation": null}, {"text": "alkali", "start": 207, "end": 213, "id": 32, "annotation": null}, {"text": "ion", "start": 214, "end": 217, "id": 33, "annotation": null}, {"text": "clusters", "start": 218, "end": 226, "id": 34, "annotation": null}, {"text": "supported", "start": 227, "end": 236, "id": 35, "annotation": null}, {"text": "by", "start": 237, "end": 239, "id": 36, "annotation": null}, {"text": "sodalite", "start": 240, "end": 248, "id": 37, "annotation": null}, {"text": "host", "start": 249, "end": 253, "id": 38, "annotation": null}, {"text": "lattices", "start": 254, "end": 262, "id": 39, "annotation": null}, {"text": ".", "start": 263, "end": 264, "id": 40, "annotation": null}], [{"text": "In", "start": 265, "end": 267, "id": 41, "annotation": null}, {"text": "the", "start": 268, "end": 271, "id": 42, "annotation": null}, {"text": "present", "start": 272, "end": 279, "id": 43, "annotation": null}, {"text": "work", "start": 280, "end": 284, "id": 44, "annotation": null}, {"text": "the", "start": 285, "end": 288, "id": 45, "annotation": null}, {"text": "crystal", "start": 289, "end": 296, "id": 46, "annotation": null}, {"text": "structure", "start": 297, "end": 306, "id": 47, "annotation": null}, {"text": "of", "start": 307, "end": 309, "id": 48, "annotation": null}, {"text": "potassium", "start": 310, "end": 319, "id": 49, "annotation": "DOPANT"}, {"text": "-", "start": 320, "end": 321, "id": 50, "annotation": null}, {"text": "electrosodalite", "start": 322, "end": 337, "id": 51, "annotation": "BASEMAT"}, {"text": "(", "start": 338, "end": 339, "id": 52, "annotation": null}, {"text": "PES", "start": 340, "end": 343, "id": 53, "annotation": null}, {"text": ")", "start": 344, "end": 345, "id": 54, "annotation": null}, {"text": "has", "start": 346, "end": 349, "id": 55, "annotation": null}, {"text": "been", "start": 350, "end": 354, "id": 56, "annotation": null}, {"text": "determined", "start": 355, "end": 365, "id": 57, "annotation": null}, {"text": "at", "start": 366, "end": 368, "id": 58, "annotation": null}, {"text": "20", "start": 369, "end": 371, "id": 59, "annotation": null}, {"text": "K", "start": 372, "end": 373, "id": 60, "annotation": null}, {"text": "using", "start": 374, "end": 379, "id": 61, "annotation": null}, {"text": "synchrotron", "start": 380, "end": 391, "id": 62, "annotation": null}, {"text": "powder", "start": 392, "end": 398, "id": 63, "annotation": null}, {"text": "diffraction", "start": 399, "end": 410, "id": 64, "annotation": null}, {"text": ".", "start": 411, "end": 412, "id": 65, "annotation": null}], [{"text": "Using", "start": 413, "end": 418, "id": 66, "annotation": null}, {"text": "the", "start": 419, "end": 422, "id": 67, "annotation": null}, {"text": "linearized", "start": 423, "end": 433, "id": 68, "annotation": null}, {"text": "augmented", "start": 434, "end": 443, "id": 69, "annotation": null}, {"text": "plane", "start": 444, "end": 449, "id": 70, "annotation": null}, {"text": "wave", "start": 450, "end": 454, "id": 71, "annotation": null}, {"text": "method", "start": 455, "end": 461, "id": 72, "annotation": null}, {"text": "the", "start": 462, "end": 465, "id": 73, "annotation": null}, {"text": "electronic", "start": 466, "end": 476, "id": 74, "annotation": null}, {"text": "structure", "start": 477, "end": 486, "id": 75, "annotation": null}, {"text": "of", "start": 487, "end": 489, "id": 76, "annotation": null}, {"text": "sodium", "start": 490, "end": 496, "id": 77, "annotation": "DOPANT"}, {"text": "-", "start": 497, "end": 498, "id": 78, "annotation": null}, {"text": "electrosodalite", "start": 499, "end": 514, "id": 79, "annotation": "BASEMAT"}, {"text": "(", "start": 515, "end": 516, "id": 80, "annotation": null}, {"text": "SES", "start": 517, "end": 520, "id": 81, "annotation": null}, {"text": ")", "start": 521, "end": 522, "id": 82, "annotation": null}, {"text": "and", "start": 523, "end": 526, "id": 83, "annotation": null}, {"text": "PES", "start": 527, "end": 530, "id": 84, "annotation": null}, {"text": "is", "start": 531, "end": 533, "id": 85, "annotation": null}, {"text": "calculated", "start": 534, "end": 544, "id": 86, "annotation": null}, {"text": ".", "start": 545, "end": 546, "id": 87, "annotation": null}], [{"text": "While", "start": 547, "end": 552, "id": 88, "annotation": null}, {"text": "nonmagnetic", "start": 553, "end": 564, "id": 89, "annotation": null}, {"text": "and", "start": 565, "end": 568, "id": 90, "annotation": null}, {"text": "ferromagnetic", "start": 569, "end": 582, "id": 91, "annotation": null}, {"text": "phases", "start": 583, "end": 589, "id": 92, "annotation": null}, {"text": "of", "start": 590, "end": 592, "id": 93, "annotation": null}, {"text": "SES", "start": 593, "end": 596, "id": 94, "annotation": null}, {"text": "and", "start": 597, "end": 600, "id": 95, "annotation": null}, {"text": "PES", "start": 601, "end": 604, "id": 96, "annotation": null}, {"text": "are", "start": 605, "end": 608, "id": 97, "annotation": null}, {"text": "found", "start": 609, "end": 614, "id": 98, "annotation": null}, {"text": "to", "start": 615, "end": 617, "id": 99, "annotation": null}, {"text": "be", "start": 618, "end": 620, "id": 100, "annotation": null}, {"text": "metallic", "start": 621, "end": 629, "id": 101, "annotation": null}, {"text": ",", "start": 630, "end": 631, "id": 102, "annotation": null}, {"text": "DFT", "start": 632, "end": 635, "id": 103, "annotation": null}, {"text": "in", "start": 636, "end": 638, "id": 104, "annotation": null}, {"text": "both", "start": 639, "end": 643, "id": 105, "annotation": null}, {"text": "the", "start": 644, "end": 647, "id": 106, "annotation": null}, {"text": "LSDA", "start": 648, "end": 652, "id": 107, "annotation": null}, {"text": "and", "start": 653, "end": 656, "id": 108, "annotation": null}, {"text": "the", "start": 657, "end": 660, "id": 109, "annotation": null}, {"text": "GGA", "start": 661, "end": 664, "id": 110, "annotation": null}, {"text": "version", "start": 665, "end": 672, "id": 111, "annotation": null}, {"text": "correctly", "start": 673, "end": 682, "id": 112, "annotation": null}, {"text": "predicts", "start": 683, "end": 691, "id": 113, "annotation": null}, {"text": "the", "start": 692, "end": 695, "id": 114, "annotation": null}, {"text": "nonmetallic", "start": 696, "end": 707, "id": 115, "annotation": null}, {"text": "AFM", "start": 708, "end": 711, "id": 116, "annotation": null}, {"text": "phase", "start": 712, "end": 717, "id": 117, "annotation": null}, {"text": "to", "start": 718, "end": 720, "id": 118, "annotation": null}, {"text": "be", "start": 721, "end": 723, "id": 119, "annotation": null}, {"text": "the", "start": 724, "end": 727, "id": 120, "annotation": null}, {"text": "electronic", "start": 728, "end": 738, "id": 121, "annotation": null}, {"text": "ground", "start": 739, "end": 745, "id": 122, "annotation": null}, {"text": "state", "start": 746, "end": 751, "id": 123, "annotation": null}, {"text": ".", "start": 752, "end": 753, "id": 124, "annotation": null}], [{"text": "Despite", "start": 754, "end": 761, "id": 125, "annotation": null}, {"text": "PES", "start": 762, "end": 765, "id": 126, "annotation": null}, {"text": "having", "start": 766, "end": 772, "id": 127, "annotation": null}, {"text": "a", "start": 773, "end": 774, "id": 128, "annotation": null}, {"text": "larger", "start": 775, "end": 781, "id": 129, "annotation": null}, {"text": "unit", "start": 782, "end": 786, "id": 130, "annotation": null}, {"text": "cell", "start": 787, "end": 791, "id": 131, "annotation": null}, {"text": "than", "start": 792, "end": 796, "id": 132, "annotation": null}, {"text": "SES", "start": 797, "end": 800, "id": 133, "annotation": null}, {"text": "the", "start": 801, "end": 804, "id": 134, "annotation": null}, {"text": "temperature", "start": 805, "end": 816, "id": 135, "annotation": null}, {"text": "of", "start": 817, "end": 819, "id": 136, "annotation": null}, {"text": "magnetic", "start": 820, "end": 828, "id": 137, "annotation": null}, {"text": "ordering", "start": 829, "end": 837, "id": 138, "annotation": null}, {"text": "is", "start": 838, "end": 840, "id": 139, "annotation": null}, {"text": "higher", "start": 841, "end": 847, "id": 140, "annotation": null}, {"text": ".", "start": 848, "end": 849, "id": 141, "annotation": null}], [{"text": "This", "start": 850, "end": 854, "id": 142, "annotation": null}, {"text": "is", "start": 855, "end": 857, "id": 143, "annotation": null}, {"text": "found", "start": 858, "end": 863, "id": 144, "annotation": null}, {"text": "to", "start": 864, "end": 866, "id": 145, "annotation": null}, {"text": "be", "start": 867, "end": 869, "id": 146, "annotation": null}, {"text": "due", "start": 870, "end": 873, "id": 147, "annotation": null}, {"text": "to", "start": 874, "end": 876, "id": 148, "annotation": null}, {"text": "both", "start": 877, "end": 881, "id": 149, "annotation": null}, {"text": "a", "start": 882, "end": 883, "id": 150, "annotation": null}, {"text": "broadening", "start": 884, "end": 894, "id": 151, "annotation": null}, {"text": "of", "start": 895, "end": 897, "id": 152, "annotation": null}, {"text": "the", "start": 898, "end": 901, "id": 153, "annotation": null}, {"text": "bands", "start": 902, "end": 907, "id": 154, "annotation": null}, {"text": "belonging", "start": 908, "end": 917, "id": 155, "annotation": null}, {"text": "to", "start": 918, "end": 920, "id": 156, "annotation": null}, {"text": "the", "start": 921, "end": 924, "id": 157, "annotation": null}, {"text": "F", "start": 925, "end": 926, "id": 158, "annotation": null}, {"text": "-", "start": 927, "end": 928, "id": 159, "annotation": null}, {"text": "center", "start": 929, "end": 935, "id": 160, "annotation": null}, {"text": "states", "start": 936, "end": 942, "id": 161, "annotation": null}, {"text": "and", "start": 943, "end": 946, "id": 162, "annotation": null}, {"text": "to", "start": 947, "end": 949, "id": 163, "annotation": null}, {"text": "lower", "start": 950, "end": 955, "id": 164, "annotation": null}, {"text": "on", "start": 956, "end": 958, "id": 165, "annotation": null}, {"text": "-", "start": 959, "end": 960, "id": 166, "annotation": null}, {"text": "site", "start": 961, "end": 965, "id": 167, "annotation": null}, {"text": "correlations", "start": 966, "end": 978, "id": 168, "annotation": null}, {"text": ".", "start": 979, "end": 980, "id": 169, "annotation": null}], [{"text": "Calculated", "start": 981, "end": 991, "id": 170, "annotation": null}, {"text": "optical", "start": 992, "end": 999, "id": 171, "annotation": null}, {"text": "properties", "start": 1000, "end": 1010, "id": 172, "annotation": null}, {"text": "are", "start": 1011, "end": 1014, "id": 173, "annotation": null}, {"text": "reported", "start": 1015, "end": 1023, "id": 174, "annotation": null}, {"text": "and", "start": 1024, "end": 1027, "id": 175, "annotation": null}, {"text": "the", "start": 1028, "end": 1031, "id": 176, "annotation": null}, {"text": "formation", "start": 1032, "end": 1041, "id": 177, "annotation": null}, {"text": "of", "start": 1042, "end": 1044, "id": 178, "annotation": null}, {"text": "F", "start": 1045, "end": 1046, "id": 179, "annotation": null}, {"text": "centers", "start": 1047, "end": 1054, "id": 180, "annotation": null}, {"text": "inside", "start": 1055, "end": 1061, "id": 181, "annotation": null}, {"text": "sodalite", "start": 1062, "end": 1070, "id": 182, "annotation": null}, {"text": "cages", "start": 1071, "end": 1076, "id": 183, "annotation": null}, {"text": "causes", "start": 1077, "end": 1083, "id": 184, "annotation": null}, {"text": "the", "start": 1084, "end": 1087, "id": 185, "annotation": null}, {"text": "materials", "start": 1088, "end": 1097, "id": 186, "annotation": null}, {"text": "to", "start": 1098, "end": 1100, "id": 187, "annotation": null}, {"text": "absorb", "start": 1101, "end": 1107, "id": 188, "annotation": null}, {"text": "light", "start": 1108, "end": 1113, "id": 189, "annotation": null}, {"text": "with", "start": 1114, "end": 1118, "id": 190, "annotation": null}, {"text": "energies", "start": 1119, "end": 1127, "id": 191, "annotation": null}, {"text": "around", "start": 1128, "end": 1134, "id": 192, "annotation": null}, {"text": "1", "start": 1135, "end": 1136, "id": 193, "annotation": null}, {"text": "eV", "start": 1137, "end": 1139, "id": 194, "annotation": null}, {"text": "and", "start": 1140, "end": 1143, "id": 195, "annotation": null}, {"text": "above", "start": 1144, "end": 1149, "id": 196, "annotation": null}, {"text": ",", "start": 1150, "end": 1151, "id": 197, "annotation": null}, {"text": "depending", "start": 1152, "end": 1161, "id": 198, "annotation": null}, {"text": "on", "start": 1162, "end": 1164, "id": 199, "annotation": null}, {"text": "structure", "start": 1165, "end": 1174, "id": 200, "annotation": null}, {"text": ".", "start": 1175, "end": 1176, "id": 201, "annotation": null}], [{"text": "Non", "start": 1177, "end": 1180, "id": 202, "annotation": null}, {"text": "-", "start": 1181, "end": 1182, "id": 203, "annotation": null}, {"text": "nuclear", "start": 1183, "end": 1190, "id": 204, "annotation": null}, {"text": "maxima", "start": 1191, "end": 1197, "id": 205, "annotation": null}, {"text": "are", "start": 1198, "end": 1201, "id": 206, "annotation": null}, {"text": "found", "start": 1202, "end": 1207, "id": 207, "annotation": null}, {"text": "in", "start": 1208, "end": 1210, "id": 208, "annotation": null}, {"text": "the", "start": 1211, "end": 1214, "id": 209, "annotation": null}, {"text": "total", "start": 1215, "end": 1220, "id": 210, "annotation": null}, {"text": "electron", "start": 1221, "end": 1229, "id": 211, "annotation": null}, {"text": "density", "start": 1230, "end": 1237, "id": 212, "annotation": null}, {"text": "of", "start": 1238, "end": 1240, "id": 213, "annotation": null}, {"text": "both", "start": 1241, "end": 1245, "id": 214, "annotation": null}, {"text": "SES", "start": 1246, "end": 1249, "id": 215, "annotation": null}, {"text": "and", "start": 1250, "end": 1253, "id": 216, "annotation": null}, {"text": "PES", "start": 1254, "end": 1257, "id": 217, "annotation": null}, {"text": "and", "start": 1258, "end": 1261, "id": 218, "annotation": null}, {"text": "the", "start": 1262, "end": 1265, "id": 219, "annotation": null}, {"text": "spin", "start": 1266, "end": 1270, "id": 220, "annotation": null}, {"text": "density", "start": 1271, "end": 1278, "id": 221, "annotation": null}, {"text": "is", "start": 1279, "end": 1281, "id": 222, "annotation": null}, {"text": "found", "start": 1282, "end": 1287, "id": 223, "annotation": null}, {"text": "mainly", "start": 1288, "end": 1294, "id": 224, "annotation": null}, {"text": "in", "start": 1295, "end": 1297, "id": 225, "annotation": null}, {"text": "the", "start": 1298, "end": 1301, "id": 226, "annotation": null}, {"text": "center", "start": 1302, "end": 1308, "id": 227, "annotation": null}, {"text": "of", "start": 1309, "end": 1311, "id": 228, "annotation": null}, {"text": "the", "start": 1312, "end": 1315, "id": 229, "annotation": null}, {"text": "sodalite", "start": 1316, "end": 1324, "id": 230, "annotation": null}, {"text": "cage", "start": 1325, "end": 1329, "id": 231, "annotation": null}, {"text": ".", "start": 1330, "end": 1331, "id": 232, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "The Eu2+-doped glasses and glass ceramics containing SrF 2 nanocrystals were prepared and their luminescence properties were investigated. The formation of SrF2 nanocrystals in glass ceramics was confirmed by X-ray diffraction and transmission electron microscopy. The melting in a reducing atmosphere and then the crystallization of glass resulted in the reduction of almost all Eu3+ ions to Eu2+ ions in the glass ceramics. The Eu2+-doped glass ceramics containing SrF 2 nanocrystals exhibited a much stronger broad blue emission band and a longer lifetime of excited state than the glasses. \u00a9 2010 The American Ceramic Society.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "Eu2+", "start": 4, "end": 8, "annotation": "DOPANT"}, {"text": "-", "start": 8, "end": 9, "annotation": null}, {"text": "doped", "start": 9, "end": 14, "annotation": null}, {"text": "glasses", "start": 15, "end": 22, "annotation": null}, {"text": "and", "start": 23, "end": 26, "annotation": null}, {"text": "glass", "start": 27, "end": 32, "annotation": null}, {"text": "ceramics", "start": 33, "end": 41, "annotation": null}, {"text": "containing", "start": 42, "end": 52, "annotation": null}, {"text": "SrF", "start": 53, "end": 56, "annotation": "BASEMAT"}, {"text": "2", "start": 57, "end": 58, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 59, "end": 71, "annotation": null}, {"text": "were", "start": 72, "end": 76, "annotation": null}, {"text": "prepared", "start": 77, "end": 85, "annotation": null}, {"text": "and", "start": 86, "end": 89, "annotation": null}, {"text": "their", "start": 90, "end": 95, "annotation": null}, {"text": "luminescence", "start": 96, "end": 108, "annotation": null}, {"text": "properties", "start": 109, "end": 119, "annotation": null}, {"text": "were", "start": 120, "end": 124, "annotation": null}, {"text": "investigated", "start": 125, "end": 137, "annotation": null}, {"text": ".", "start": 137, "end": 138, "annotation": null}], [{"text": "The", "start": 139, "end": 142, "annotation": null}, {"text": "formation", "start": 143, "end": 152, "annotation": null}, {"text": "of", "start": 153, "end": 155, "annotation": null}, {"text": "SrF2", "start": 156, "end": 160, "annotation": null}, {"text": "nanocrystals", "start": 161, "end": 173, "annotation": null}, {"text": "in", "start": 174, "end": 176, "annotation": null}, {"text": "glass", "start": 177, "end": 182, "annotation": null}, {"text": "ceramics", "start": 183, "end": 191, "annotation": null}, {"text": "was", "start": 192, "end": 195, "annotation": null}, {"text": "confirmed", "start": 196, "end": 205, "annotation": null}, {"text": "by", "start": 206, "end": 208, "annotation": null}, {"text": "X-ray", "start": 209, "end": 214, "annotation": null}, {"text": "diffraction", "start": 215, "end": 226, "annotation": null}, {"text": "and", "start": 227, "end": 230, "annotation": null}, {"text": "transmission", "start": 231, "end": 243, "annotation": null}, {"text": "electron", "start": 244, "end": 252, "annotation": null}, {"text": "microscopy", "start": 253, "end": 263, "annotation": null}, {"text": ".", "start": 263, "end": 264, "annotation": null}], [{"text": "The", "start": 265, "end": 268, "annotation": null}, {"text": "melting", "start": 269, "end": 276, "annotation": null}, {"text": "in", "start": 277, "end": 279, "annotation": null}, {"text": "a", "start": 280, "end": 281, "annotation": null}, {"text": "reducing", "start": 282, "end": 290, "annotation": null}, {"text": "atmosphere", "start": 291, "end": 301, "annotation": null}, {"text": "and", "start": 302, "end": 305, "annotation": null}, {"text": "then", "start": 306, "end": 310, "annotation": null}, {"text": "the", "start": 311, "end": 314, "annotation": null}, {"text": "crystallization", "start": 315, "end": 330, "annotation": null}, {"text": "of", "start": 331, "end": 333, "annotation": null}, {"text": "glass", "start": 334, "end": 339, "annotation": null}, {"text": "resulted", "start": 340, "end": 348, "annotation": null}, {"text": "in", "start": 349, "end": 351, "annotation": null}, {"text": "the", "start": 352, "end": 355, "annotation": null}, {"text": "reduction", "start": 356, "end": 365, "annotation": null}, {"text": "of", "start": 366, "end": 368, "annotation": null}, {"text": "almost", "start": 369, "end": 375, "annotation": null}, {"text": "all", "start": 376, "end": 379, "annotation": null}, {"text": "Eu3+", "start": 380, "end": 384, "annotation": null}, {"text": "ions", "start": 385, "end": 389, "annotation": null}, {"text": "to", "start": 390, "end": 392, "annotation": null}, {"text": "Eu2+", "start": 393, "end": 397, "annotation": null}, {"text": "ions", "start": 398, "end": 402, "annotation": null}, {"text": "in", "start": 403, "end": 405, "annotation": null}, {"text": "the", "start": 406, "end": 409, "annotation": null}, {"text": "glass", "start": 410, "end": 415, "annotation": null}, {"text": "ceramics", "start": 416, "end": 424, "annotation": null}, {"text": ".", "start": 424, "end": 425, "annotation": null}], [{"text": "The", "start": 426, "end": 429, "annotation": null}, {"text": "Eu2+", "start": 430, "end": 434, "annotation": "DOPANT"}, {"text": "-", "start": 434, "end": 435, "annotation": null}, {"text": "doped", "start": 435, "end": 440, "annotation": null}, {"text": "glass", "start": 441, "end": 446, "annotation": null}, {"text": "ceramics", "start": 447, "end": 455, "annotation": null}, {"text": "containing", "start": 456, "end": 466, "annotation": null}, {"text": "SrF", "start": 467, "end": 470, "annotation": "BASEMAT"}, {"text": "2", "start": 471, "end": 472, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 473, "end": 485, "annotation": null}, {"text": "exhibited", "start": 486, "end": 495, "annotation": null}, {"text": "a", "start": 496, "end": 497, "annotation": null}, {"text": "much", "start": 498, "end": 502, "annotation": null}, {"text": "stronger", "start": 503, "end": 511, "annotation": null}, {"text": "broad", "start": 512, "end": 517, "annotation": null}, {"text": "blue", "start": 518, "end": 522, "annotation": null}, {"text": "emission", "start": 523, "end": 531, "annotation": null}, {"text": "band", "start": 532, "end": 536, "annotation": null}, {"text": "and", "start": 537, "end": 540, "annotation": null}, {"text": "a", "start": 541, "end": 542, "annotation": null}, {"text": "longer", "start": 543, "end": 549, "annotation": null}, {"text": "lifetime", "start": 550, "end": 558, "annotation": null}, {"text": "of", "start": 559, "end": 561, "annotation": null}, {"text": "excited", "start": 562, "end": 569, "annotation": null}, {"text": "state", "start": 570, "end": 575, "annotation": null}, {"text": "than", "start": 576, "end": 580, "annotation": null}, {"text": "the", "start": 581, "end": 584, "annotation": null}, {"text": "glasses", "start": 585, "end": 592, "annotation": null}, {"text": ".", "start": 592, "end": 593, "annotation": null}]]} -{"remark": "doping_annt3", "text": "Nontrivial mechanisms of low-temperature diffusion of impurities in solids have been discovered recently. We studied accelerated diffusion of phosphorus in a single crystal of silicon, which takes place during decomposition of an over-saturated inhomogeneous solid solution. A thin (1.5\u20132 \u03bcm) doped layer was formed by low-temperature diffusion from the gas phase. The distribution profile, which was determined by the method of differential conductivity, shows that heat treatment at 550\u00b0C leads to a decrease in the donor concentration in the subsurface region and to the impurity movement into the bulk of the sample. The diffusion coefficient has been calculated on the computer using experimental data, and in the range between 400\u00b0C and 700\u00b0C has been represented by the Arrhenius equation. The value of the frequency term is equal to 3.7\u00b710\u22126 cm2/sec, and the value of the activation energy is 1.81 eV. The presented results have been analyzed, as well as the data obtained from the measurements on carrier mobility (using the Hall effect) and the parameters of the crystal lattice (using the method of asymmetric double crystal x-ray spectrometer). A physical model for the dissociation diffusion is proposed, which is controlled by the decay, and analytical expressions are obtained which describe the main characteristics of the process.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Nontrivial", "start": 0, "end": 10, "annotation": null}, {"text": "mechanisms", "start": 11, "end": 21, "annotation": null}, {"text": "of", "start": 22, "end": 24, "annotation": null}, {"text": "low", "start": 25, "end": 28, "annotation": null}, {"text": "-", "start": 28, "end": 29, "annotation": null}, {"text": "temperature", "start": 29, "end": 40, "annotation": null}, {"text": "diffusion", "start": 41, "end": 50, "annotation": null}, {"text": "of", "start": 51, "end": 53, "annotation": null}, {"text": "impurities", "start": 54, "end": 64, "annotation": null}, {"text": "in", "start": 65, "end": 67, "annotation": null}, {"text": "solids", "start": 68, "end": 74, "annotation": null}, {"text": "have", "start": 75, "end": 79, "annotation": null}, {"text": "been", "start": 80, "end": 84, "annotation": null}, {"text": "discovered", "start": 85, "end": 95, "annotation": null}, {"text": "recently", "start": 96, "end": 104, "annotation": null}, {"text": ".", "start": 104, "end": 105, "annotation": null}], [{"text": "We", "start": 106, "end": 108, "annotation": null}, {"text": "studied", "start": 109, "end": 116, "annotation": null}, {"text": "accelerated", "start": 117, "end": 128, "annotation": null}, {"text": "diffusion", "start": 129, "end": 138, "annotation": null}, {"text": "of", "start": 139, "end": 141, "annotation": null}, {"text": "phosphorus", "start": 142, "end": 152, "annotation": null}, {"text": "in", "start": 153, "end": 155, "annotation": null}, {"text": "a", "start": 156, "end": 157, "annotation": null}, {"text": "single", "start": 158, "end": 164, "annotation": null}, {"text": "crystal", "start": 165, "end": 172, "annotation": null}, {"text": "of", "start": 173, "end": 175, "annotation": null}, {"text": "silicon", "start": 176, "end": 183, "annotation": null}, {"text": ",", "start": 183, "end": 184, "annotation": null}, {"text": "which", "start": 185, "end": 190, "annotation": null}, {"text": "takes", "start": 191, "end": 196, "annotation": null}, {"text": "place", "start": 197, "end": 202, "annotation": null}, {"text": "during", "start": 203, "end": 209, "annotation": null}, {"text": "decomposition", "start": 210, "end": 223, "annotation": null}, {"text": "of", "start": 224, "end": 226, "annotation": null}, {"text": "an", "start": 227, "end": 229, "annotation": null}, {"text": "over-saturated", "start": 230, "end": 244, "annotation": null}, {"text": "inhomogeneous", "start": 245, "end": 258, "annotation": null}, {"text": "solid", "start": 259, "end": 264, "annotation": null}, {"text": "solution", "start": 265, "end": 273, "annotation": null}, {"text": ".", "start": 273, "end": 274, "annotation": null}], [{"text": "A", "start": 275, "end": 276, "annotation": null}, {"text": "thin", "start": 277, "end": 281, "annotation": null}, {"text": "(", "start": 282, "end": 283, "annotation": null}, {"text": "1.5", "start": 283, "end": 286, "annotation": null}, {"text": "\u2013", "start": 286, "end": 287, "annotation": null}, {"text": "2", "start": 287, "end": 288, "annotation": null}, {"text": "\u03bcm", "start": 289, "end": 291, "annotation": null}, {"text": ")", "start": 291, "end": 292, "annotation": null}, {"text": "doped", "start": 293, "end": 298, "annotation": null}, {"text": "layer", "start": 299, "end": 304, "annotation": "BASEMAT"}, {"text": "was", "start": 305, "end": 308, "annotation": null}, {"text": "formed", "start": 309, "end": 315, "annotation": null}, {"text": "by", "start": 316, "end": 318, "annotation": null}, {"text": "low", "start": 319, "end": 322, "annotation": null}, {"text": "-", "start": 322, "end": 323, "annotation": null}, {"text": "temperature", "start": 323, "end": 334, "annotation": null}, {"text": "diffusion", "start": 335, "end": 344, "annotation": null}, {"text": "from", "start": 345, "end": 349, "annotation": null}, {"text": "the", "start": 350, "end": 353, "annotation": null}, {"text": "gas", "start": 354, "end": 357, "annotation": null}, {"text": "phase", "start": 358, "end": 363, "annotation": null}, {"text": ".", "start": 363, "end": 364, "annotation": null}], [{"text": "The", "start": 365, "end": 368, "annotation": null}, {"text": "distribution", "start": 369, "end": 381, "annotation": null}, {"text": "profile", "start": 382, "end": 389, "annotation": null}, {"text": ",", "start": 389, "end": 390, "annotation": null}, {"text": "which", "start": 391, "end": 396, "annotation": null}, {"text": "was", "start": 397, "end": 400, "annotation": null}, {"text": "determined", "start": 401, "end": 411, "annotation": null}, {"text": "by", "start": 412, "end": 414, "annotation": null}, {"text": "the", "start": 415, "end": 418, "annotation": null}, {"text": "method", "start": 419, "end": 425, "annotation": null}, {"text": "of", "start": 426, "end": 428, "annotation": null}, {"text": "differential", "start": 429, "end": 441, "annotation": null}, {"text": "conductivity", "start": 442, "end": 454, "annotation": null}, {"text": ",", "start": 454, "end": 455, "annotation": null}, {"text": "shows", "start": 456, "end": 461, "annotation": null}, {"text": "that", "start": 462, "end": 466, "annotation": null}, {"text": "heat", "start": 467, "end": 471, "annotation": null}, {"text": "treatment", "start": 472, "end": 481, "annotation": null}, {"text": "at", "start": 482, "end": 484, "annotation": null}, {"text": "550", "start": 485, "end": 488, "annotation": null}, {"text": "\u00b0", "start": 488, "end": 489, "annotation": null}, {"text": "C", "start": 489, "end": 490, "annotation": null}, {"text": "leads", "start": 491, "end": 496, "annotation": null}, {"text": "to", "start": 497, "end": 499, "annotation": null}, {"text": "a", "start": 500, "end": 501, "annotation": null}, {"text": "decrease", "start": 502, "end": 510, "annotation": null}, {"text": "in", "start": 511, "end": 513, "annotation": null}, {"text": "the", "start": 514, "end": 517, "annotation": null}, {"text": "donor", "start": 518, "end": 523, "annotation": null}, {"text": "concentration", "start": 524, "end": 537, "annotation": null}, {"text": "in", "start": 538, "end": 540, "annotation": null}, {"text": "the", "start": 541, "end": 544, "annotation": null}, {"text": "subsurface", "start": 545, "end": 555, "annotation": null}, {"text": "region", "start": 556, "end": 562, "annotation": null}, {"text": "and", "start": 563, "end": 566, "annotation": null}, {"text": "to", "start": 567, "end": 569, "annotation": null}, {"text": "the", "start": 570, "end": 573, "annotation": null}, {"text": "impurity", "start": 574, "end": 582, "annotation": null}, {"text": "movement", "start": 583, "end": 591, "annotation": null}, {"text": "into", "start": 592, "end": 596, "annotation": null}, {"text": "the", "start": 597, "end": 600, "annotation": null}, {"text": "bulk", "start": 601, "end": 605, "annotation": null}, {"text": "of", "start": 606, "end": 608, "annotation": null}, {"text": "the", "start": 609, "end": 612, "annotation": null}, {"text": "sample", "start": 613, "end": 619, "annotation": null}, {"text": ".", "start": 619, "end": 620, "annotation": null}], [{"text": "The", "start": 621, "end": 624, "annotation": null}, {"text": "diffusion", "start": 625, "end": 634, "annotation": null}, {"text": "coefficient", "start": 635, "end": 646, "annotation": null}, {"text": "has", "start": 647, "end": 650, "annotation": null}, {"text": "been", "start": 651, "end": 655, "annotation": null}, {"text": "calculated", "start": 656, "end": 666, "annotation": null}, {"text": "on", "start": 667, "end": 669, "annotation": null}, {"text": "the", "start": 670, "end": 673, "annotation": null}, {"text": "computer", "start": 674, "end": 682, "annotation": null}, {"text": "using", "start": 683, "end": 688, "annotation": null}, {"text": "experimental", "start": 689, "end": 701, "annotation": null}, {"text": "data", "start": 702, "end": 706, "annotation": null}, {"text": ",", "start": 706, "end": 707, "annotation": null}, {"text": "and", "start": 708, "end": 711, "annotation": null}, {"text": "in", "start": 712, "end": 714, "annotation": null}, {"text": "the", "start": 715, "end": 718, "annotation": null}, {"text": "range", "start": 719, "end": 724, "annotation": null}, {"text": "between", "start": 725, "end": 732, "annotation": null}, {"text": "400", "start": 733, "end": 736, "annotation": null}, {"text": "\u00b0", "start": 736, "end": 737, "annotation": null}, {"text": "C", "start": 737, "end": 738, "annotation": null}, {"text": "and", "start": 739, "end": 742, "annotation": null}, {"text": "700", "start": 743, "end": 746, "annotation": null}, {"text": "\u00b0", "start": 746, "end": 747, "annotation": null}, {"text": "C", "start": 747, "end": 748, "annotation": null}, {"text": "has", "start": 749, "end": 752, "annotation": null}, {"text": "been", "start": 753, "end": 757, "annotation": null}, {"text": "represented", "start": 758, "end": 769, "annotation": null}, {"text": "by", "start": 770, "end": 772, "annotation": null}, {"text": "the", "start": 773, "end": 776, "annotation": null}, {"text": "Arrhenius", "start": 777, "end": 786, "annotation": null}, {"text": "equation", "start": 787, "end": 795, "annotation": null}, {"text": ".", "start": 795, "end": 796, "annotation": null}], [{"text": "The", "start": 797, "end": 800, "annotation": null}, {"text": "value", "start": 801, "end": 806, "annotation": null}, {"text": "of", "start": 807, "end": 809, "annotation": null}, {"text": "the", "start": 810, "end": 813, "annotation": null}, {"text": "frequency", "start": 814, "end": 823, "annotation": null}, {"text": "term", "start": 824, "end": 828, "annotation": null}, {"text": "is", "start": 829, "end": 831, "annotation": null}, {"text": "equal", "start": 832, "end": 837, "annotation": null}, {"text": "to", "start": 838, "end": 840, "annotation": null}, {"text": "3.7\u00b710\u22126", "start": 841, "end": 849, "annotation": null}, {"text": "cm2", "start": 850, "end": 853, "annotation": null}, {"text": "/", "start": 853, "end": 854, "annotation": null}, {"text": "sec", "start": 854, "end": 857, "annotation": null}, {"text": ",", "start": 857, "end": 858, "annotation": null}, {"text": "and", "start": 859, "end": 862, "annotation": null}, {"text": "the", "start": 863, "end": 866, "annotation": null}, {"text": "value", "start": 867, "end": 872, "annotation": null}, {"text": "of", "start": 873, "end": 875, "annotation": null}, {"text": "the", "start": 876, "end": 879, "annotation": null}, {"text": "activation", "start": 880, "end": 890, "annotation": null}, {"text": "energy", "start": 891, "end": 897, "annotation": null}, {"text": "is", "start": 898, "end": 900, "annotation": null}, {"text": "1.81", "start": 901, "end": 905, "annotation": null}, {"text": "eV", "start": 906, "end": 908, "annotation": null}, {"text": ".", "start": 908, "end": 909, "annotation": null}], [{"text": "The", "start": 910, "end": 913, "annotation": null}, {"text": "presented", "start": 914, "end": 923, "annotation": null}, {"text": "results", "start": 924, "end": 931, "annotation": null}, {"text": "have", "start": 932, "end": 936, "annotation": null}, {"text": "been", "start": 937, "end": 941, "annotation": null}, {"text": "analyzed", "start": 942, "end": 950, "annotation": null}, {"text": ",", "start": 950, "end": 951, "annotation": null}, {"text": "as", "start": 952, "end": 954, "annotation": null}, {"text": "well", "start": 955, "end": 959, "annotation": null}, {"text": "as", "start": 960, "end": 962, "annotation": null}, {"text": "the", "start": 963, "end": 966, "annotation": null}, {"text": "data", "start": 967, "end": 971, "annotation": null}, {"text": "obtained", "start": 972, "end": 980, "annotation": null}, {"text": "from", "start": 981, "end": 985, "annotation": null}, {"text": "the", "start": 986, "end": 989, "annotation": null}, {"text": "measurements", "start": 990, "end": 1002, "annotation": null}, {"text": "on", "start": 1003, "end": 1005, "annotation": null}, {"text": "carrier", "start": 1006, "end": 1013, "annotation": null}, {"text": "mobility", "start": 1014, "end": 1022, "annotation": null}, {"text": "(", "start": 1023, "end": 1024, "annotation": null}, {"text": "using", "start": 1024, "end": 1029, "annotation": null}, {"text": "the", "start": 1030, "end": 1033, "annotation": null}, {"text": "Hall", "start": 1034, "end": 1038, "annotation": null}, {"text": "effect", "start": 1039, "end": 1045, "annotation": null}, {"text": ")", "start": 1045, "end": 1046, "annotation": null}, {"text": "and", "start": 1047, "end": 1050, "annotation": null}, {"text": "the", "start": 1051, "end": 1054, "annotation": null}, {"text": "parameters", "start": 1055, "end": 1065, "annotation": null}, {"text": "of", "start": 1066, "end": 1068, "annotation": null}, {"text": "the", "start": 1069, "end": 1072, "annotation": null}, {"text": "crystal", "start": 1073, "end": 1080, "annotation": null}, {"text": "lattice", "start": 1081, "end": 1088, "annotation": null}, {"text": "(", "start": 1089, "end": 1090, "annotation": null}, {"text": "using", "start": 1090, "end": 1095, "annotation": null}, {"text": "the", "start": 1096, "end": 1099, "annotation": null}, {"text": "method", "start": 1100, "end": 1106, "annotation": null}, {"text": "of", "start": 1107, "end": 1109, "annotation": null}, {"text": "asymmetric", "start": 1110, "end": 1120, "annotation": null}, {"text": "double", "start": 1121, "end": 1127, "annotation": null}, {"text": "crystal", "start": 1128, "end": 1135, "annotation": null}, {"text": "x-ray", "start": 1136, "end": 1141, "annotation": null}, {"text": "spectrometer", "start": 1142, "end": 1154, "annotation": null}, {"text": ")", "start": 1154, "end": 1155, "annotation": null}, {"text": ".", "start": 1155, "end": 1156, "annotation": null}], [{"text": "A", "start": 1157, "end": 1158, "annotation": null}, {"text": "physical", "start": 1159, "end": 1167, "annotation": null}, {"text": "model", "start": 1168, "end": 1173, "annotation": null}, {"text": "for", "start": 1174, "end": 1177, "annotation": null}, {"text": "the", "start": 1178, "end": 1181, "annotation": null}, {"text": "dissociation", "start": 1182, "end": 1194, "annotation": null}, {"text": "diffusion", "start": 1195, "end": 1204, "annotation": null}, {"text": "is", "start": 1205, "end": 1207, "annotation": null}, {"text": "proposed", "start": 1208, "end": 1216, "annotation": null}, {"text": ",", "start": 1216, "end": 1217, "annotation": null}, {"text": "which", "start": 1218, "end": 1223, "annotation": null}, {"text": "is", "start": 1224, "end": 1226, "annotation": null}, {"text": "controlled", "start": 1227, "end": 1237, "annotation": null}, {"text": "by", "start": 1238, "end": 1240, "annotation": null}, {"text": "the", "start": 1241, "end": 1244, "annotation": null}, {"text": "decay", "start": 1245, "end": 1250, "annotation": null}, {"text": ",", "start": 1250, "end": 1251, "annotation": null}, {"text": "and", "start": 1252, "end": 1255, "annotation": null}, {"text": "analytical", "start": 1256, "end": 1266, "annotation": null}, {"text": "expressions", "start": 1267, "end": 1278, "annotation": null}, {"text": "are", "start": 1279, "end": 1282, "annotation": null}, {"text": "obtained", "start": 1283, "end": 1291, "annotation": null}, {"text": "which", "start": 1292, "end": 1297, "annotation": null}, {"text": "describe", "start": 1298, "end": 1306, "annotation": null}, {"text": "the", "start": 1307, "end": 1310, "annotation": null}, {"text": "main", "start": 1311, "end": 1315, "annotation": null}, {"text": "characteristics", "start": 1316, "end": 1331, "annotation": null}, {"text": "of", "start": 1332, "end": 1334, "annotation": null}, {"text": "the", "start": 1335, "end": 1338, "annotation": null}, {"text": "process", "start": 1339, "end": 1346, "annotation": null}, {"text": ".", "start": 1346, "end": 1347, "annotation": null}]]} -{"remark": "doping_annt1", "text": "When the metal contact of a silicon solar cell is restricted to a fraction of the rear surface, the flow of electrons and holes towards that contact is constricted, which is beneficial for minority charge carriers but detrimental for majority carriers. It is possible to describe their 2D/3D transport and determine their concentration in the vertical and transversal dimensions of the solar cell by separately studying the central region near the contact and the peripheral region surrounding it. A virtue of such geometric approach is that it establishes a link between analytical models and computer simulations, providing both physical insight and sufficient accuracy to optimise partial rear contact devices. In this paper, we extend a previous version of the geometric model to solar cells having a full-area, locally contacted dopant diffusion on the rear surface. The case for n-type versus p-type wafers is considered, point contacts are compared with line contacts, including the impact of the metal/semiconductor resistance and bulk recombination is evaluated. Copyright \u00a9 2013 John Wiley & Sons, Ltd.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "When", "start": 0, "end": 4, "annotation": null}, {"text": "the", "start": 5, "end": 8, "annotation": null}, {"text": "metal", "start": 9, "end": 14, "annotation": null}, {"text": "contact", "start": 15, "end": 22, "annotation": null}, {"text": "of", "start": 23, "end": 25, "annotation": null}, {"text": "a", "start": 26, "end": 27, "annotation": null}, {"text": "silicon", "start": 28, "end": 35, "annotation": null}, {"text": "solar", "start": 36, "end": 41, "annotation": null}, {"text": "cell", "start": 42, "end": 46, "annotation": null}, {"text": "is", "start": 47, "end": 49, "annotation": null}, {"text": "restricted", "start": 50, "end": 60, "annotation": null}, {"text": "to", "start": 61, "end": 63, "annotation": null}, {"text": "a", "start": 64, "end": 65, "annotation": null}, {"text": "fraction", "start": 66, "end": 74, "annotation": null}, {"text": "of", "start": 75, "end": 77, "annotation": null}, {"text": "the", "start": 78, "end": 81, "annotation": null}, {"text": "rear", "start": 82, "end": 86, "annotation": null}, {"text": "surface", "start": 87, "end": 94, "annotation": null}, {"text": ",", "start": 94, "end": 95, "annotation": null}, {"text": "the", "start": 96, "end": 99, "annotation": null}, {"text": "flow", "start": 100, "end": 104, "annotation": null}, {"text": "of", "start": 105, "end": 107, "annotation": null}, {"text": "electrons", "start": 108, "end": 117, "annotation": null}, {"text": "and", "start": 118, "end": 121, "annotation": null}, {"text": "holes", "start": 122, "end": 127, "annotation": null}, {"text": "towards", "start": 128, "end": 135, "annotation": null}, {"text": "that", "start": 136, "end": 140, "annotation": null}, {"text": "contact", "start": 141, "end": 148, "annotation": null}, {"text": "is", "start": 149, "end": 151, "annotation": null}, {"text": "constricted", "start": 152, "end": 163, "annotation": null}, {"text": ",", "start": 163, "end": 164, "annotation": null}, {"text": "which", "start": 165, "end": 170, "annotation": null}, {"text": "is", "start": 171, "end": 173, "annotation": null}, {"text": "beneficial", "start": 174, "end": 184, "annotation": null}, {"text": "for", "start": 185, "end": 188, "annotation": null}, {"text": "minority", "start": 189, "end": 197, "annotation": null}, {"text": "charge", "start": 198, "end": 204, "annotation": null}, {"text": "carriers", "start": 205, "end": 213, "annotation": null}, {"text": "but", "start": 214, "end": 217, "annotation": null}, {"text": "detrimental", "start": 218, "end": 229, "annotation": null}, {"text": "for", "start": 230, "end": 233, "annotation": null}, {"text": "majority", "start": 234, "end": 242, "annotation": null}, {"text": "carriers", "start": 243, "end": 251, "annotation": null}, {"text": ".", "start": 251, "end": 252, "annotation": null}], [{"text": "It", "start": 253, "end": 255, "annotation": null}, {"text": "is", "start": 256, "end": 258, "annotation": null}, {"text": "possible", "start": 259, "end": 267, "annotation": null}, {"text": "to", "start": 268, "end": 270, "annotation": null}, {"text": "describe", "start": 271, "end": 279, "annotation": null}, {"text": "their", "start": 280, "end": 285, "annotation": null}, {"text": "2D", "start": 286, "end": 288, "annotation": null}, {"text": "/", "start": 288, "end": 289, "annotation": null}, {"text": "3D", "start": 289, "end": 291, "annotation": null}, {"text": "transport", "start": 292, "end": 301, "annotation": null}, {"text": "and", "start": 302, "end": 305, "annotation": null}, {"text": "determine", "start": 306, "end": 315, "annotation": null}, {"text": "their", "start": 316, "end": 321, "annotation": null}, {"text": "concentration", "start": 322, "end": 335, "annotation": null}, {"text": "in", "start": 336, "end": 338, "annotation": null}, {"text": "the", "start": 339, "end": 342, "annotation": null}, {"text": "vertical", "start": 343, "end": 351, "annotation": null}, {"text": "and", "start": 352, "end": 355, "annotation": null}, {"text": "transversal", "start": 356, "end": 367, "annotation": null}, {"text": "dimensions", "start": 368, "end": 378, "annotation": null}, {"text": "of", "start": 379, "end": 381, "annotation": null}, {"text": "the", "start": 382, "end": 385, "annotation": null}, {"text": "solar", "start": 386, "end": 391, "annotation": null}, {"text": "cell", "start": 392, "end": 396, "annotation": null}, {"text": "by", "start": 397, "end": 399, "annotation": null}, {"text": "separately", "start": 400, "end": 410, "annotation": null}, {"text": "studying", "start": 411, "end": 419, "annotation": null}, {"text": "the", "start": 420, "end": 423, "annotation": null}, {"text": "central", "start": 424, "end": 431, "annotation": null}, {"text": "region", "start": 432, "end": 438, "annotation": null}, {"text": "near", "start": 439, "end": 443, "annotation": null}, {"text": "the", "start": 444, "end": 447, "annotation": null}, {"text": "contact", "start": 448, "end": 455, "annotation": null}, {"text": "and", "start": 456, "end": 459, "annotation": null}, {"text": "the", "start": 460, "end": 463, "annotation": null}, {"text": "peripheral", "start": 464, "end": 474, "annotation": null}, {"text": "region", "start": 475, "end": 481, "annotation": null}, {"text": "surrounding", "start": 482, "end": 493, "annotation": null}, {"text": "it", "start": 494, "end": 496, "annotation": null}, {"text": ".", "start": 496, "end": 497, "annotation": null}], [{"text": "A", "start": 498, "end": 499, "annotation": null}, {"text": "virtue", "start": 500, "end": 506, "annotation": null}, {"text": "of", "start": 507, "end": 509, "annotation": null}, {"text": "such", "start": 510, "end": 514, "annotation": null}, {"text": "geometric", "start": 515, "end": 524, "annotation": null}, {"text": "approach", "start": 525, "end": 533, "annotation": null}, {"text": "is", "start": 534, "end": 536, "annotation": null}, {"text": "that", "start": 537, "end": 541, "annotation": null}, {"text": "it", "start": 542, "end": 544, "annotation": null}, {"text": "establishes", "start": 545, "end": 556, "annotation": null}, {"text": "a", "start": 557, "end": 558, "annotation": null}, {"text": "link", "start": 559, "end": 563, "annotation": null}, {"text": "between", "start": 564, "end": 571, "annotation": null}, {"text": "analytical", "start": 572, "end": 582, "annotation": null}, {"text": "models", "start": 583, "end": 589, "annotation": null}, {"text": "and", "start": 590, "end": 593, "annotation": null}, {"text": "computer", "start": 594, "end": 602, "annotation": null}, {"text": "simulations", "start": 603, "end": 614, "annotation": null}, {"text": ",", "start": 614, "end": 615, "annotation": null}, {"text": "providing", "start": 616, "end": 625, "annotation": null}, {"text": "both", "start": 626, "end": 630, "annotation": null}, {"text": "physical", "start": 631, "end": 639, "annotation": null}, {"text": "insight", "start": 640, "end": 647, "annotation": null}, {"text": "and", "start": 648, "end": 651, "annotation": null}, {"text": "sufficient", "start": 652, "end": 662, "annotation": null}, {"text": "accuracy", "start": 663, "end": 671, "annotation": null}, {"text": "to", "start": 672, "end": 674, "annotation": null}, {"text": "optimise", "start": 675, "end": 683, "annotation": null}, {"text": "partial", "start": 684, "end": 691, "annotation": null}, {"text": "rear", "start": 692, "end": 696, "annotation": null}, {"text": "contact", "start": 697, "end": 704, "annotation": null}, {"text": "devices", "start": 705, "end": 712, "annotation": null}, {"text": ".", "start": 712, "end": 713, "annotation": null}], [{"text": "In", "start": 714, "end": 716, "annotation": null}, {"text": "this", "start": 717, "end": 721, "annotation": null}, {"text": "paper", "start": 722, "end": 727, "annotation": null}, {"text": ",", "start": 727, "end": 728, "annotation": null}, {"text": "we", "start": 729, "end": 731, "annotation": null}, {"text": "extend", "start": 732, "end": 738, "annotation": null}, {"text": "a", "start": 739, "end": 740, "annotation": null}, {"text": "previous", "start": 741, "end": 749, "annotation": null}, {"text": "version", "start": 750, "end": 757, "annotation": null}, {"text": "of", "start": 758, "end": 760, "annotation": null}, {"text": "the", "start": 761, "end": 764, "annotation": null}, {"text": "geometric", "start": 765, "end": 774, "annotation": null}, {"text": "model", "start": 775, "end": 780, "annotation": null}, {"text": "to", "start": 781, "end": 783, "annotation": null}, {"text": "solar", "start": 784, "end": 789, "annotation": null}, {"text": "cells", "start": 790, "end": 795, "annotation": null}, {"text": "having", "start": 796, "end": 802, "annotation": null}, {"text": "a", "start": 803, "end": 804, "annotation": null}, {"text": "full", "start": 805, "end": 809, "annotation": null}, {"text": "-", "start": 809, "end": 810, "annotation": null}, {"text": "area", "start": 810, "end": 814, "annotation": null}, {"text": ",", "start": 814, "end": 815, "annotation": null}, {"text": "locally", "start": 816, "end": 823, "annotation": null}, {"text": "contacted", "start": 824, "end": 833, "annotation": null}, {"text": "dopant", "start": 834, "end": 840, "annotation": null}, {"text": "diffusion", "start": 841, "end": 850, "annotation": null}, {"text": "on", "start": 851, "end": 853, "annotation": null}, {"text": "the", "start": 854, "end": 857, "annotation": null}, {"text": "rear", "start": 858, "end": 862, "annotation": null}, {"text": "surface", "start": 863, "end": 870, "annotation": null}, {"text": ".", "start": 870, "end": 871, "annotation": null}], [{"text": "The", "start": 872, "end": 875, "annotation": null}, {"text": "case", "start": 876, "end": 880, "annotation": null}, {"text": "for", "start": 881, "end": 884, "annotation": null}, {"text": "n", "start": 885, "end": 886, "annotation": "DOPANT"}, {"text": "-", "start": 886, "end": 887, "annotation": "DOPANT"}, {"text": "type", "start": 887, "end": 891, "annotation": "DOPANT"}, {"text": "versus", "start": 892, "end": 898, "annotation": null}, {"text": "p", "start": 899, "end": 900, "annotation": "DOPANT"}, {"text": "-", "start": 900, "end": 901, "annotation": "DOPANT"}, {"text": "type", "start": 901, "end": 905, "annotation": "DOPANT"}, {"text": "wafers", "start": 906, "end": 912, "annotation": "BASEMAT"}, {"text": "is", "start": 913, "end": 915, "annotation": null}, {"text": "considered", "start": 916, "end": 926, "annotation": null}, {"text": ",", "start": 926, "end": 927, "annotation": null}, {"text": "point", "start": 928, "end": 933, "annotation": null}, {"text": "contacts", "start": 934, "end": 942, "annotation": null}, {"text": "are", "start": 943, "end": 946, "annotation": null}, {"text": "compared", "start": 947, "end": 955, "annotation": null}, {"text": "with", "start": 956, "end": 960, "annotation": null}, {"text": "line", "start": 961, "end": 965, "annotation": null}, {"text": "contacts", "start": 966, "end": 974, "annotation": null}, {"text": ",", "start": 974, "end": 975, "annotation": null}, {"text": "including", "start": 976, "end": 985, "annotation": null}, {"text": "the", "start": 986, "end": 989, "annotation": null}, {"text": "impact", "start": 990, "end": 996, "annotation": null}, {"text": "of", "start": 997, "end": 999, "annotation": null}, {"text": "the", "start": 1000, "end": 1003, "annotation": null}, {"text": "metal", "start": 1004, "end": 1009, "annotation": null}, {"text": "/", "start": 1009, "end": 1010, "annotation": null}, {"text": "semiconductor", "start": 1010, "end": 1023, "annotation": null}, {"text": "resistance", "start": 1024, "end": 1034, "annotation": null}, {"text": "and", "start": 1035, "end": 1038, "annotation": null}, {"text": "bulk", "start": 1039, "end": 1043, "annotation": null}, {"text": "recombination", "start": 1044, "end": 1057, "annotation": null}, {"text": "is", "start": 1058, "end": 1060, "annotation": null}, {"text": "evaluated", "start": 1061, "end": 1070, "annotation": null}, {"text": ".", "start": 1070, "end": 1071, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Polycrystalline Ti1\u2212xFexN films with different Fe atomic fractions (x) were fabricated by reactive facing-target sputtering. The lattice orientation changes from (200) to (111) with the increase of x, which makes the surface morphology evolve from spherical, triangular-pyramid-like islands to random-leafs-like ones. The films are ferromagnetic with a Curie temperature of higher than 305K, and the saturation magnetization (Ms) is very small. Obvious asymmetric M\u2013H curves are observed at low temperatures, and the shift of M\u2013H curves decreases with the increasing temperature because of the relaxation of the pinned moments at low temperatures. All of the samples show semiconducting-like behavior with a mechanism of variable-range hopping at low-temperature range. Magnetoresistance (MR) is very small. The small Ms and MR can be explained by the facts that the interaction between Fe3+\u2013N3\u2212\u2013Fe3+ is antiferromagnetic superexchange coupling, and no double exchange exists in Fe3+\u2013N3\u2212\u2013Ti3+, which is different from that in the Cr-doped TiN films.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Polycrystalline", "start": 0, "end": 15, "annotation": null}, {"text": "Ti1\u2212xFexN", "start": 16, "end": 25, "annotation": null}, {"text": "films", "start": 26, "end": 31, "annotation": null}, {"text": "with", "start": 32, "end": 36, "annotation": null}, {"text": "different", "start": 37, "end": 46, "annotation": null}, {"text": "Fe", "start": 47, "end": 49, "annotation": null}, {"text": "atomic", "start": 50, "end": 56, "annotation": null}, {"text": "fractions", "start": 57, "end": 66, "annotation": null}, {"text": "(", "start": 67, "end": 68, "annotation": null}, {"text": "x", "start": 68, "end": 69, "annotation": null}, {"text": ")", "start": 69, "end": 70, "annotation": null}, {"text": "were", "start": 71, "end": 75, "annotation": null}, {"text": "fabricated", "start": 76, "end": 86, "annotation": null}, {"text": "by", "start": 87, "end": 89, "annotation": null}, {"text": "reactive", "start": 90, "end": 98, "annotation": null}, {"text": "facing", "start": 99, "end": 105, "annotation": null}, {"text": "-", "start": 105, "end": 106, "annotation": null}, {"text": "target", "start": 106, "end": 112, "annotation": null}, {"text": "sputtering", "start": 113, "end": 123, "annotation": null}, {"text": ".", "start": 123, "end": 124, "annotation": null}], [{"text": "The", "start": 125, "end": 128, "annotation": null}, {"text": "lattice", "start": 129, "end": 136, "annotation": null}, {"text": "orientation", "start": 137, "end": 148, "annotation": null}, {"text": "changes", "start": 149, "end": 156, "annotation": null}, {"text": "from", "start": 157, "end": 161, "annotation": null}, {"text": "(", "start": 162, "end": 163, "annotation": null}, {"text": "200", "start": 163, "end": 166, "annotation": null}, {"text": ")", "start": 166, "end": 167, "annotation": null}, {"text": "to", "start": 168, "end": 170, "annotation": null}, {"text": "(", "start": 171, "end": 172, "annotation": null}, {"text": "111", "start": 172, "end": 175, "annotation": null}, {"text": ")", "start": 175, "end": 176, "annotation": null}, {"text": "with", "start": 177, "end": 181, "annotation": null}, {"text": "the", "start": 182, "end": 185, "annotation": null}, {"text": "increase", "start": 186, "end": 194, "annotation": null}, {"text": "of", "start": 195, "end": 197, "annotation": null}, {"text": "x", "start": 198, "end": 199, "annotation": null}, {"text": ",", "start": 199, "end": 200, "annotation": null}, {"text": "which", "start": 201, "end": 206, "annotation": null}, {"text": "makes", "start": 207, "end": 212, "annotation": null}, {"text": "the", "start": 213, "end": 216, "annotation": null}, {"text": "surface", "start": 217, "end": 224, "annotation": null}, {"text": "morphology", "start": 225, "end": 235, "annotation": null}, {"text": "evolve", "start": 236, "end": 242, "annotation": null}, {"text": "from", "start": 243, "end": 247, "annotation": null}, {"text": "spherical", "start": 248, "end": 257, "annotation": null}, {"text": ",", "start": 257, "end": 258, "annotation": null}, {"text": "triangular", "start": 259, "end": 269, "annotation": null}, {"text": "-", "start": 269, "end": 270, "annotation": null}, {"text": "pyramid", "start": 270, "end": 277, "annotation": null}, {"text": "-", "start": 277, "end": 278, "annotation": null}, {"text": "like", "start": 278, "end": 282, "annotation": null}, {"text": "islands", "start": 283, "end": 290, "annotation": null}, {"text": "to", "start": 291, "end": 293, "annotation": null}, {"text": "random", "start": 294, "end": 300, "annotation": null}, {"text": "-", "start": 300, "end": 301, "annotation": null}, {"text": "leafs", "start": 301, "end": 306, "annotation": null}, {"text": "-", "start": 306, "end": 307, "annotation": null}, {"text": "like", "start": 307, "end": 311, "annotation": null}, {"text": "ones", "start": 312, "end": 316, "annotation": null}, {"text": ".", "start": 316, "end": 317, "annotation": null}], [{"text": "The", "start": 318, "end": 321, "annotation": null}, {"text": "films", "start": 322, "end": 327, "annotation": null}, {"text": "are", "start": 328, "end": 331, "annotation": null}, {"text": "ferromagnetic", "start": 332, "end": 345, "annotation": null}, {"text": "with", "start": 346, "end": 350, "annotation": null}, {"text": "a", "start": 351, "end": 352, "annotation": null}, {"text": "Curie", "start": 353, "end": 358, "annotation": null}, {"text": "temperature", "start": 359, "end": 370, "annotation": null}, {"text": "of", "start": 371, "end": 373, "annotation": null}, {"text": "higher", "start": 374, "end": 380, "annotation": null}, {"text": "than", "start": 381, "end": 385, "annotation": null}, {"text": "305K", "start": 386, "end": 390, "annotation": null}, {"text": ",", "start": 390, "end": 391, "annotation": null}, {"text": "and", "start": 392, "end": 395, "annotation": null}, {"text": "the", "start": 396, "end": 399, "annotation": null}, {"text": "saturation", "start": 400, "end": 410, "annotation": null}, {"text": "magnetization", "start": 411, "end": 424, "annotation": null}, {"text": "(", "start": 425, "end": 426, "annotation": null}, {"text": "Ms", "start": 426, "end": 428, "annotation": null}, {"text": ")", "start": 428, "end": 429, "annotation": null}, {"text": "is", "start": 430, "end": 432, "annotation": null}, {"text": "very", "start": 433, "end": 437, "annotation": null}, {"text": "small", "start": 438, "end": 443, "annotation": null}, {"text": ".", "start": 443, "end": 444, "annotation": null}], [{"text": "Obvious", "start": 445, "end": 452, "annotation": null}, {"text": "asymmetric", "start": 453, "end": 463, "annotation": null}, {"text": "M", "start": 464, "end": 465, "annotation": null}, {"text": "\u2013", "start": 465, "end": 466, "annotation": null}, {"text": "H", "start": 466, "end": 467, "annotation": null}, {"text": "curves", "start": 468, "end": 474, "annotation": null}, {"text": "are", "start": 475, "end": 478, "annotation": null}, {"text": "observed", "start": 479, "end": 487, "annotation": null}, {"text": "at", "start": 488, "end": 490, "annotation": null}, {"text": "low", "start": 491, "end": 494, "annotation": null}, {"text": "temperatures", "start": 495, "end": 507, "annotation": null}, {"text": ",", "start": 507, "end": 508, "annotation": null}, {"text": "and", "start": 509, "end": 512, "annotation": null}, {"text": "the", "start": 513, "end": 516, "annotation": null}, {"text": "shift", "start": 517, "end": 522, "annotation": null}, {"text": "of", "start": 523, "end": 525, "annotation": null}, {"text": "M", "start": 526, "end": 527, "annotation": null}, {"text": "\u2013", "start": 527, "end": 528, "annotation": null}, {"text": "H", "start": 528, "end": 529, "annotation": null}, {"text": "curves", "start": 530, "end": 536, "annotation": null}, {"text": "decreases", "start": 537, "end": 546, "annotation": null}, {"text": "with", "start": 547, "end": 551, "annotation": null}, {"text": "the", "start": 552, "end": 555, "annotation": null}, {"text": "increasing", "start": 556, "end": 566, "annotation": null}, {"text": "temperature", "start": 567, "end": 578, "annotation": null}, {"text": "because", "start": 579, "end": 586, "annotation": null}, {"text": "of", "start": 587, "end": 589, "annotation": null}, {"text": "the", "start": 590, "end": 593, "annotation": null}, {"text": "relaxation", "start": 594, "end": 604, "annotation": null}, {"text": "of", "start": 605, "end": 607, "annotation": null}, {"text": "the", "start": 608, "end": 611, "annotation": null}, {"text": "pinned", "start": 612, "end": 618, "annotation": null}, {"text": "moments", "start": 619, "end": 626, "annotation": null}, {"text": "at", "start": 627, "end": 629, "annotation": null}, {"text": "low", "start": 630, "end": 633, "annotation": null}, {"text": "temperatures", "start": 634, "end": 646, "annotation": null}, {"text": ".", "start": 646, "end": 647, "annotation": null}], [{"text": "All", "start": 648, "end": 651, "annotation": null}, {"text": "of", "start": 652, "end": 654, "annotation": null}, {"text": "the", "start": 655, "end": 658, "annotation": null}, {"text": "samples", "start": 659, "end": 666, "annotation": null}, {"text": "show", "start": 667, "end": 671, "annotation": null}, {"text": "semiconducting", "start": 672, "end": 686, "annotation": null}, {"text": "-", "start": 686, "end": 687, "annotation": null}, {"text": "like", "start": 687, "end": 691, "annotation": null}, {"text": "behavior", "start": 692, "end": 700, "annotation": null}, {"text": "with", "start": 701, "end": 705, "annotation": null}, {"text": "a", "start": 706, "end": 707, "annotation": null}, {"text": "mechanism", "start": 708, "end": 717, "annotation": null}, {"text": "of", "start": 718, "end": 720, "annotation": null}, {"text": "variable", "start": 721, "end": 729, "annotation": null}, {"text": "-", "start": 729, "end": 730, "annotation": null}, {"text": "range", "start": 730, "end": 735, "annotation": null}, {"text": "hopping", "start": 736, "end": 743, "annotation": null}, {"text": "at", "start": 744, "end": 746, "annotation": null}, {"text": "low", "start": 747, "end": 750, "annotation": null}, {"text": "-", "start": 750, "end": 751, "annotation": null}, {"text": "temperature", "start": 751, "end": 762, "annotation": null}, {"text": "range", "start": 763, "end": 768, "annotation": null}, {"text": ".", "start": 768, "end": 769, "annotation": null}], [{"text": "Magnetoresistance", "start": 770, "end": 787, "annotation": null}, {"text": "(", "start": 788, "end": 789, "annotation": null}, {"text": "MR", "start": 789, "end": 791, "annotation": null}, {"text": ")", "start": 791, "end": 792, "annotation": null}, {"text": "is", "start": 793, "end": 795, "annotation": null}, {"text": "very", "start": 796, "end": 800, "annotation": null}, {"text": "small", "start": 801, "end": 806, "annotation": null}, {"text": ".", "start": 806, "end": 807, "annotation": null}], [{"text": "The", "start": 808, "end": 811, "annotation": null}, {"text": "small", "start": 812, "end": 817, "annotation": null}, {"text": "Ms", "start": 818, "end": 820, "annotation": null}, {"text": "and", "start": 821, "end": 824, "annotation": null}, {"text": "MR", "start": 825, "end": 827, "annotation": null}, {"text": "can", "start": 828, "end": 831, "annotation": null}, {"text": "be", "start": 832, "end": 834, "annotation": null}, {"text": "explained", "start": 835, "end": 844, "annotation": null}, {"text": "by", "start": 845, "end": 847, "annotation": null}, {"text": "the", "start": 848, "end": 851, "annotation": null}, {"text": "facts", "start": 852, "end": 857, "annotation": null}, {"text": "that", "start": 858, "end": 862, "annotation": null}, {"text": "the", "start": 863, "end": 866, "annotation": null}, {"text": "interaction", "start": 867, "end": 878, "annotation": null}, {"text": "between", "start": 879, "end": 886, "annotation": null}, {"text": "Fe3+", "start": 887, "end": 891, "annotation": null}, {"text": "\u2013", "start": 891, "end": 892, "annotation": null}, {"text": "N3\u2212", "start": 892, "end": 895, "annotation": null}, {"text": "\u2013", "start": 895, "end": 896, "annotation": null}, {"text": "Fe3+", "start": 896, "end": 900, "annotation": null}, {"text": "is", "start": 901, "end": 903, "annotation": null}, {"text": "antiferromagnetic", "start": 904, "end": 921, "annotation": null}, {"text": "superexchange", "start": 922, "end": 935, "annotation": null}, {"text": "coupling", "start": 936, "end": 944, "annotation": null}, {"text": ",", "start": 944, "end": 945, "annotation": null}, {"text": "and", "start": 946, "end": 949, "annotation": null}, {"text": "no", "start": 950, "end": 952, "annotation": null}, {"text": "double", "start": 953, "end": 959, "annotation": null}, {"text": "exchange", "start": 960, "end": 968, "annotation": null}, {"text": "exists", "start": 969, "end": 975, "annotation": null}, {"text": "in", "start": 976, "end": 978, "annotation": null}, {"text": "Fe3+", "start": 979, "end": 983, "annotation": null}, {"text": "\u2013", "start": 983, "end": 984, "annotation": null}, {"text": "N3\u2212", "start": 984, "end": 987, "annotation": null}, {"text": "\u2013", "start": 987, "end": 988, "annotation": null}, {"text": "Ti3+", "start": 988, "end": 992, "annotation": null}, {"text": ",", "start": 992, "end": 993, "annotation": null}, {"text": "which", "start": 994, "end": 999, "annotation": null}, {"text": "is", "start": 1000, "end": 1002, "annotation": null}, {"text": "different", "start": 1003, "end": 1012, "annotation": null}, {"text": "from", "start": 1013, "end": 1017, "annotation": null}, {"text": "that", "start": 1018, "end": 1022, "annotation": null}, {"text": "in", "start": 1023, "end": 1025, "annotation": null}, {"text": "the", "start": 1026, "end": 1029, "annotation": null}, {"text": "Cr", "start": 1030, "end": 1032, "annotation": "DOPANT"}, {"text": "-", "start": 1032, "end": 1033, "annotation": null}, {"text": "doped", "start": 1033, "end": 1038, "annotation": null}, {"text": "TiN", "start": 1039, "end": 1042, "annotation": "BASEMAT"}, {"text": "films", "start": 1043, "end": 1048, "annotation": null}, {"text": ".", "start": 1048, "end": 1049, "annotation": null}]]} +{"remark": "doping_annt1", "text": "The Eu2+-doped glasses and glass ceramics containing SrF 2 nanocrystals were prepared and their luminescence properties were investigated. The formation of SrF2 nanocrystals in glass ceramics was confirmed by X-ray diffraction and transmission electron microscopy. The melting in a reducing atmosphere and then the crystallization of glass resulted in the reduction of almost all Eu3+ ions to Eu2+ ions in the glass ceramics. The Eu2+-doped glass ceramics containing SrF 2 nanocrystals exhibited a much stronger broad blue emission band and a longer lifetime of excited state than the glasses. \u00a9 2010 The American Ceramic Society.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "Eu2+", "start": 4, "end": 8, "annotation": "DOPANT"}, {"text": "-", "start": 8, "end": 9, "annotation": null}, {"text": "doped", "start": 9, "end": 14, "annotation": null}, {"text": "glasses", "start": 15, "end": 22, "annotation": null}, {"text": "and", "start": 23, "end": 26, "annotation": null}, {"text": "glass", "start": 27, "end": 32, "annotation": null}, {"text": "ceramics", "start": 33, "end": 41, "annotation": null}, {"text": "containing", "start": 42, "end": 52, "annotation": null}, {"text": "SrF", "start": 53, "end": 56, "annotation": "BASEMAT"}, {"text": "2", "start": 57, "end": 58, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 59, "end": 71, "annotation": null}, {"text": "were", "start": 72, "end": 76, "annotation": null}, {"text": "prepared", "start": 77, "end": 85, "annotation": null}, {"text": "and", "start": 86, "end": 89, "annotation": null}, {"text": "their", "start": 90, "end": 95, "annotation": null}, {"text": "luminescence", "start": 96, "end": 108, "annotation": null}, {"text": "properties", "start": 109, "end": 119, "annotation": null}, {"text": "were", "start": 120, "end": 124, "annotation": null}, {"text": "investigated", "start": 125, "end": 137, "annotation": null}, {"text": ".", "start": 137, "end": 138, "annotation": null}], [{"text": "The", "start": 139, "end": 142, "annotation": null}, {"text": "formation", "start": 143, "end": 152, "annotation": null}, {"text": "of", "start": 153, "end": 155, "annotation": null}, {"text": "SrF2", "start": 156, "end": 160, "annotation": null}, {"text": "nanocrystals", "start": 161, "end": 173, "annotation": null}, {"text": "in", "start": 174, "end": 176, "annotation": null}, {"text": "glass", "start": 177, "end": 182, "annotation": null}, {"text": "ceramics", "start": 183, "end": 191, "annotation": null}, {"text": "was", "start": 192, "end": 195, "annotation": null}, {"text": "confirmed", "start": 196, "end": 205, "annotation": null}, {"text": "by", "start": 206, "end": 208, "annotation": null}, {"text": "X-ray", "start": 209, "end": 214, "annotation": null}, {"text": "diffraction", "start": 215, "end": 226, "annotation": null}, {"text": "and", "start": 227, "end": 230, "annotation": null}, {"text": "transmission", "start": 231, "end": 243, "annotation": null}, {"text": "electron", "start": 244, "end": 252, "annotation": null}, {"text": "microscopy", "start": 253, "end": 263, "annotation": null}, {"text": ".", "start": 263, "end": 264, "annotation": null}], [{"text": "The", "start": 265, "end": 268, "annotation": null}, {"text": "melting", "start": 269, "end": 276, "annotation": null}, {"text": "in", "start": 277, "end": 279, "annotation": null}, {"text": "a", "start": 280, "end": 281, "annotation": null}, {"text": "reducing", "start": 282, "end": 290, "annotation": null}, {"text": "atmosphere", "start": 291, "end": 301, "annotation": null}, {"text": "and", "start": 302, "end": 305, "annotation": null}, {"text": "then", "start": 306, "end": 310, "annotation": null}, {"text": "the", "start": 311, "end": 314, "annotation": null}, {"text": "crystallization", "start": 315, "end": 330, "annotation": null}, {"text": "of", "start": 331, "end": 333, "annotation": null}, {"text": "glass", "start": 334, "end": 339, "annotation": null}, {"text": "resulted", "start": 340, "end": 348, "annotation": null}, {"text": "in", "start": 349, "end": 351, "annotation": null}, {"text": "the", "start": 352, "end": 355, "annotation": null}, {"text": "reduction", "start": 356, "end": 365, "annotation": null}, {"text": "of", "start": 366, "end": 368, "annotation": null}, {"text": "almost", "start": 369, "end": 375, "annotation": null}, {"text": "all", "start": 376, "end": 379, "annotation": null}, {"text": "Eu3+", "start": 380, "end": 384, "annotation": null}, {"text": "ions", "start": 385, "end": 389, "annotation": null}, {"text": "to", "start": 390, "end": 392, "annotation": null}, {"text": "Eu2+", "start": 393, "end": 397, "annotation": null}, {"text": "ions", "start": 398, "end": 402, "annotation": null}, {"text": "in", "start": 403, "end": 405, "annotation": null}, {"text": "the", "start": 406, "end": 409, "annotation": null}, {"text": "glass", "start": 410, "end": 415, "annotation": null}, {"text": "ceramics", "start": 416, "end": 424, "annotation": null}, {"text": ".", "start": 424, "end": 425, "annotation": null}], [{"text": "The", "start": 426, "end": 429, "annotation": null}, {"text": "Eu2+", "start": 430, "end": 434, "annotation": "DOPANT"}, {"text": "-", "start": 434, "end": 435, "annotation": null}, {"text": "doped", "start": 435, "end": 440, "annotation": null}, {"text": "glass", "start": 441, "end": 446, "annotation": null}, {"text": "ceramics", "start": 447, "end": 455, "annotation": null}, {"text": "containing", "start": 456, "end": 466, "annotation": null}, {"text": "SrF", "start": 467, "end": 470, "annotation": "BASEMAT"}, {"text": "2", "start": 471, "end": 472, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 473, "end": 485, "annotation": null}, {"text": "exhibited", "start": 486, "end": 495, "annotation": null}, {"text": "a", "start": 496, "end": 497, "annotation": null}, {"text": "much", "start": 498, "end": 502, "annotation": null}, {"text": "stronger", "start": 503, "end": 511, "annotation": null}, {"text": "broad", "start": 512, "end": 517, "annotation": null}, {"text": "blue", "start": 518, "end": 522, "annotation": null}, {"text": "emission", "start": 523, "end": 531, "annotation": null}, {"text": "band", "start": 532, "end": 536, "annotation": null}, {"text": "and", "start": 537, "end": 540, "annotation": null}, {"text": "a", "start": 541, "end": 542, "annotation": null}, {"text": "longer", "start": 543, "end": 549, "annotation": null}, {"text": "lifetime", "start": 550, "end": 558, "annotation": null}, {"text": "of", "start": 559, "end": 561, "annotation": null}, {"text": "excited", "start": 562, "end": 569, "annotation": null}, {"text": "state", "start": 570, "end": 575, "annotation": null}, {"text": "than", "start": 576, "end": 580, "annotation": null}, {"text": "the", "start": 581, "end": 584, "annotation": null}, {"text": "glasses", "start": 585, "end": 592, "annotation": null}, {"text": ".", "start": 592, "end": 593, "annotation": null}]], "meta": {"doi": "10.1111/j.1551-2916.2010.03756.x"}} +{"remark": "doping_annt3", "text": "Nontrivial mechanisms of low-temperature diffusion of impurities in solids have been discovered recently. We studied accelerated diffusion of phosphorus in a single crystal of silicon, which takes place during decomposition of an over-saturated inhomogeneous solid solution. A thin (1.5\u20132 \u03bcm) doped layer was formed by low-temperature diffusion from the gas phase. The distribution profile, which was determined by the method of differential conductivity, shows that heat treatment at 550\u00b0C leads to a decrease in the donor concentration in the subsurface region and to the impurity movement into the bulk of the sample. The diffusion coefficient has been calculated on the computer using experimental data, and in the range between 400\u00b0C and 700\u00b0C has been represented by the Arrhenius equation. The value of the frequency term is equal to 3.7\u00b710\u22126 cm2/sec, and the value of the activation energy is 1.81 eV. The presented results have been analyzed, as well as the data obtained from the measurements on carrier mobility (using the Hall effect) and the parameters of the crystal lattice (using the method of asymmetric double crystal x-ray spectrometer). A physical model for the dissociation diffusion is proposed, which is controlled by the decay, and analytical expressions are obtained which describe the main characteristics of the process.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Nontrivial", "start": 0, "end": 10, "annotation": null}, {"text": "mechanisms", "start": 11, "end": 21, "annotation": null}, {"text": "of", "start": 22, "end": 24, "annotation": null}, {"text": "low", "start": 25, "end": 28, "annotation": null}, {"text": "-", "start": 28, "end": 29, "annotation": null}, {"text": "temperature", "start": 29, "end": 40, "annotation": null}, {"text": "diffusion", "start": 41, "end": 50, "annotation": null}, {"text": "of", "start": 51, "end": 53, "annotation": null}, {"text": "impurities", "start": 54, "end": 64, "annotation": null}, {"text": "in", "start": 65, "end": 67, "annotation": null}, {"text": "solids", "start": 68, "end": 74, "annotation": null}, {"text": "have", "start": 75, "end": 79, "annotation": null}, {"text": "been", "start": 80, "end": 84, "annotation": null}, {"text": "discovered", "start": 85, "end": 95, "annotation": null}, {"text": "recently", "start": 96, "end": 104, "annotation": null}, {"text": ".", "start": 104, "end": 105, "annotation": null}], [{"text": "We", "start": 106, "end": 108, "annotation": null}, {"text": "studied", "start": 109, "end": 116, "annotation": null}, {"text": "accelerated", "start": 117, "end": 128, "annotation": null}, {"text": "diffusion", "start": 129, "end": 138, "annotation": null}, {"text": "of", "start": 139, "end": 141, "annotation": null}, {"text": "phosphorus", "start": 142, "end": 152, "annotation": null}, {"text": "in", "start": 153, "end": 155, "annotation": null}, {"text": "a", "start": 156, "end": 157, "annotation": null}, {"text": "single", "start": 158, "end": 164, "annotation": null}, {"text": "crystal", "start": 165, "end": 172, "annotation": null}, {"text": "of", "start": 173, "end": 175, "annotation": null}, {"text": "silicon", "start": 176, "end": 183, "annotation": null}, {"text": ",", "start": 183, "end": 184, "annotation": null}, {"text": "which", "start": 185, "end": 190, "annotation": null}, {"text": "takes", "start": 191, "end": 196, "annotation": null}, {"text": "place", "start": 197, "end": 202, "annotation": null}, {"text": "during", "start": 203, "end": 209, "annotation": null}, {"text": "decomposition", "start": 210, "end": 223, "annotation": null}, {"text": "of", "start": 224, "end": 226, "annotation": null}, {"text": "an", "start": 227, "end": 229, "annotation": null}, {"text": "over-saturated", "start": 230, "end": 244, "annotation": null}, {"text": "inhomogeneous", "start": 245, "end": 258, "annotation": null}, {"text": "solid", "start": 259, "end": 264, "annotation": null}, {"text": "solution", "start": 265, "end": 273, "annotation": null}, {"text": ".", "start": 273, "end": 274, "annotation": null}], [{"text": "A", "start": 275, "end": 276, "annotation": null}, {"text": "thin", "start": 277, "end": 281, "annotation": null}, {"text": "(", "start": 282, "end": 283, "annotation": null}, {"text": "1.5", "start": 283, "end": 286, "annotation": null}, {"text": "\u2013", "start": 286, "end": 287, "annotation": null}, {"text": "2", "start": 287, "end": 288, "annotation": null}, {"text": "\u03bcm", "start": 289, "end": 291, "annotation": null}, {"text": ")", "start": 291, "end": 292, "annotation": null}, {"text": "doped", "start": 293, "end": 298, "annotation": null}, {"text": "layer", "start": 299, "end": 304, "annotation": "BASEMAT"}, {"text": "was", "start": 305, "end": 308, "annotation": null}, {"text": "formed", "start": 309, "end": 315, "annotation": null}, {"text": "by", "start": 316, "end": 318, "annotation": null}, {"text": "low", "start": 319, "end": 322, "annotation": null}, {"text": "-", "start": 322, "end": 323, "annotation": null}, {"text": "temperature", "start": 323, "end": 334, "annotation": null}, {"text": "diffusion", "start": 335, "end": 344, "annotation": null}, {"text": "from", "start": 345, "end": 349, "annotation": null}, {"text": "the", "start": 350, "end": 353, "annotation": null}, {"text": "gas", "start": 354, "end": 357, "annotation": null}, {"text": "phase", "start": 358, "end": 363, "annotation": null}, {"text": ".", "start": 363, "end": 364, "annotation": null}], [{"text": "The", "start": 365, "end": 368, "annotation": null}, {"text": "distribution", "start": 369, "end": 381, "annotation": null}, {"text": "profile", "start": 382, "end": 389, "annotation": null}, {"text": ",", "start": 389, "end": 390, "annotation": null}, {"text": "which", "start": 391, "end": 396, "annotation": null}, {"text": "was", "start": 397, "end": 400, "annotation": null}, {"text": "determined", "start": 401, "end": 411, "annotation": null}, {"text": "by", "start": 412, "end": 414, "annotation": null}, {"text": "the", "start": 415, "end": 418, "annotation": null}, {"text": "method", "start": 419, "end": 425, "annotation": null}, {"text": "of", "start": 426, "end": 428, "annotation": null}, {"text": "differential", "start": 429, "end": 441, "annotation": null}, {"text": "conductivity", "start": 442, "end": 454, "annotation": null}, {"text": ",", "start": 454, "end": 455, "annotation": null}, {"text": "shows", "start": 456, "end": 461, "annotation": null}, {"text": "that", "start": 462, "end": 466, "annotation": null}, {"text": "heat", "start": 467, "end": 471, "annotation": null}, {"text": "treatment", "start": 472, "end": 481, "annotation": null}, {"text": "at", "start": 482, "end": 484, "annotation": null}, {"text": "550", "start": 485, "end": 488, "annotation": null}, {"text": "\u00b0", "start": 488, "end": 489, "annotation": null}, {"text": "C", "start": 489, "end": 490, "annotation": null}, {"text": "leads", "start": 491, "end": 496, "annotation": null}, {"text": "to", "start": 497, "end": 499, "annotation": null}, {"text": "a", "start": 500, "end": 501, "annotation": null}, {"text": "decrease", "start": 502, "end": 510, "annotation": null}, {"text": "in", "start": 511, "end": 513, "annotation": null}, {"text": "the", "start": 514, "end": 517, "annotation": null}, {"text": "donor", "start": 518, "end": 523, "annotation": null}, {"text": "concentration", "start": 524, "end": 537, "annotation": null}, {"text": "in", "start": 538, "end": 540, "annotation": null}, {"text": "the", "start": 541, "end": 544, "annotation": null}, {"text": "subsurface", "start": 545, "end": 555, "annotation": null}, {"text": "region", "start": 556, "end": 562, "annotation": null}, {"text": "and", "start": 563, "end": 566, "annotation": null}, {"text": "to", "start": 567, "end": 569, "annotation": null}, {"text": "the", "start": 570, "end": 573, "annotation": null}, {"text": "impurity", "start": 574, "end": 582, "annotation": null}, {"text": "movement", "start": 583, "end": 591, "annotation": null}, {"text": "into", "start": 592, "end": 596, "annotation": null}, {"text": "the", "start": 597, "end": 600, "annotation": null}, {"text": "bulk", "start": 601, "end": 605, "annotation": null}, {"text": "of", "start": 606, "end": 608, "annotation": null}, {"text": "the", "start": 609, "end": 612, "annotation": null}, {"text": "sample", "start": 613, "end": 619, "annotation": null}, {"text": ".", "start": 619, "end": 620, "annotation": null}], [{"text": "The", "start": 621, "end": 624, "annotation": null}, {"text": "diffusion", "start": 625, "end": 634, "annotation": null}, {"text": "coefficient", "start": 635, "end": 646, "annotation": null}, {"text": "has", "start": 647, "end": 650, "annotation": null}, {"text": "been", "start": 651, "end": 655, "annotation": null}, {"text": "calculated", "start": 656, "end": 666, "annotation": null}, {"text": "on", "start": 667, "end": 669, "annotation": null}, {"text": "the", "start": 670, "end": 673, "annotation": null}, {"text": "computer", "start": 674, "end": 682, "annotation": null}, {"text": "using", "start": 683, "end": 688, "annotation": null}, {"text": "experimental", "start": 689, "end": 701, "annotation": null}, {"text": "data", "start": 702, "end": 706, "annotation": null}, {"text": ",", "start": 706, "end": 707, "annotation": null}, {"text": "and", "start": 708, "end": 711, "annotation": null}, {"text": "in", "start": 712, "end": 714, "annotation": null}, {"text": "the", "start": 715, "end": 718, "annotation": null}, {"text": "range", "start": 719, "end": 724, "annotation": null}, {"text": "between", "start": 725, "end": 732, "annotation": null}, {"text": "400", "start": 733, "end": 736, "annotation": null}, {"text": "\u00b0", "start": 736, "end": 737, "annotation": null}, {"text": "C", "start": 737, "end": 738, "annotation": null}, {"text": "and", "start": 739, "end": 742, "annotation": null}, {"text": "700", "start": 743, "end": 746, "annotation": null}, {"text": "\u00b0", "start": 746, "end": 747, "annotation": null}, {"text": "C", "start": 747, "end": 748, "annotation": null}, {"text": "has", "start": 749, "end": 752, "annotation": null}, {"text": "been", "start": 753, "end": 757, "annotation": null}, {"text": "represented", "start": 758, "end": 769, "annotation": null}, {"text": "by", "start": 770, "end": 772, "annotation": null}, {"text": "the", "start": 773, "end": 776, "annotation": null}, {"text": "Arrhenius", "start": 777, "end": 786, "annotation": null}, {"text": "equation", "start": 787, "end": 795, "annotation": null}, {"text": ".", "start": 795, "end": 796, "annotation": null}], [{"text": "The", "start": 797, "end": 800, "annotation": null}, {"text": "value", "start": 801, "end": 806, "annotation": null}, {"text": "of", "start": 807, "end": 809, "annotation": null}, {"text": "the", "start": 810, "end": 813, "annotation": null}, {"text": "frequency", "start": 814, "end": 823, "annotation": null}, {"text": "term", "start": 824, "end": 828, "annotation": null}, {"text": "is", "start": 829, "end": 831, "annotation": null}, {"text": "equal", "start": 832, "end": 837, "annotation": null}, {"text": "to", "start": 838, "end": 840, "annotation": null}, {"text": "3.7\u00b710\u22126", "start": 841, "end": 849, "annotation": null}, {"text": "cm2", "start": 850, "end": 853, "annotation": null}, {"text": "/", "start": 853, "end": 854, "annotation": null}, {"text": "sec", "start": 854, "end": 857, "annotation": null}, {"text": ",", "start": 857, "end": 858, "annotation": null}, {"text": "and", "start": 859, "end": 862, "annotation": null}, {"text": "the", "start": 863, "end": 866, "annotation": null}, {"text": "value", "start": 867, "end": 872, "annotation": null}, {"text": "of", "start": 873, "end": 875, "annotation": null}, {"text": "the", "start": 876, "end": 879, "annotation": null}, {"text": "activation", "start": 880, "end": 890, "annotation": null}, {"text": "energy", "start": 891, "end": 897, "annotation": null}, {"text": "is", "start": 898, "end": 900, "annotation": null}, {"text": "1.81", "start": 901, "end": 905, "annotation": null}, {"text": "eV", "start": 906, "end": 908, "annotation": null}, {"text": ".", "start": 908, "end": 909, "annotation": null}], [{"text": "The", "start": 910, "end": 913, "annotation": null}, {"text": "presented", "start": 914, "end": 923, "annotation": null}, {"text": "results", "start": 924, "end": 931, "annotation": null}, {"text": "have", "start": 932, "end": 936, "annotation": null}, {"text": "been", "start": 937, "end": 941, "annotation": null}, {"text": "analyzed", "start": 942, "end": 950, "annotation": null}, {"text": ",", "start": 950, "end": 951, "annotation": null}, {"text": "as", "start": 952, "end": 954, "annotation": null}, {"text": "well", "start": 955, "end": 959, "annotation": null}, {"text": "as", "start": 960, "end": 962, "annotation": null}, {"text": "the", "start": 963, "end": 966, "annotation": null}, {"text": "data", "start": 967, "end": 971, "annotation": null}, {"text": "obtained", "start": 972, "end": 980, "annotation": null}, {"text": "from", "start": 981, "end": 985, "annotation": null}, {"text": "the", "start": 986, "end": 989, "annotation": null}, {"text": "measurements", "start": 990, "end": 1002, "annotation": null}, {"text": "on", "start": 1003, "end": 1005, "annotation": null}, {"text": "carrier", "start": 1006, "end": 1013, "annotation": null}, {"text": "mobility", "start": 1014, "end": 1022, "annotation": null}, {"text": "(", "start": 1023, "end": 1024, "annotation": null}, {"text": "using", "start": 1024, "end": 1029, "annotation": null}, {"text": "the", "start": 1030, "end": 1033, "annotation": null}, {"text": "Hall", "start": 1034, "end": 1038, "annotation": null}, {"text": "effect", "start": 1039, "end": 1045, "annotation": null}, {"text": ")", "start": 1045, "end": 1046, "annotation": null}, {"text": "and", "start": 1047, "end": 1050, "annotation": null}, {"text": "the", "start": 1051, "end": 1054, "annotation": null}, {"text": "parameters", "start": 1055, "end": 1065, "annotation": null}, {"text": "of", "start": 1066, "end": 1068, "annotation": null}, {"text": "the", "start": 1069, "end": 1072, "annotation": null}, {"text": "crystal", "start": 1073, "end": 1080, "annotation": null}, {"text": "lattice", "start": 1081, "end": 1088, "annotation": null}, {"text": "(", "start": 1089, "end": 1090, "annotation": null}, {"text": "using", "start": 1090, "end": 1095, "annotation": null}, {"text": "the", "start": 1096, "end": 1099, "annotation": null}, {"text": "method", "start": 1100, "end": 1106, "annotation": null}, {"text": "of", "start": 1107, "end": 1109, "annotation": null}, {"text": "asymmetric", "start": 1110, "end": 1120, "annotation": null}, {"text": "double", "start": 1121, "end": 1127, "annotation": null}, {"text": "crystal", "start": 1128, "end": 1135, "annotation": null}, {"text": "x-ray", "start": 1136, "end": 1141, "annotation": null}, {"text": "spectrometer", "start": 1142, "end": 1154, "annotation": null}, {"text": ")", "start": 1154, "end": 1155, "annotation": null}, {"text": ".", "start": 1155, "end": 1156, "annotation": null}], [{"text": "A", "start": 1157, "end": 1158, "annotation": null}, {"text": "physical", "start": 1159, "end": 1167, "annotation": null}, {"text": "model", "start": 1168, "end": 1173, "annotation": null}, {"text": "for", "start": 1174, "end": 1177, "annotation": null}, {"text": "the", "start": 1178, "end": 1181, "annotation": null}, {"text": "dissociation", "start": 1182, "end": 1194, "annotation": null}, {"text": "diffusion", "start": 1195, "end": 1204, "annotation": null}, {"text": "is", "start": 1205, "end": 1207, "annotation": null}, {"text": "proposed", "start": 1208, "end": 1216, "annotation": null}, {"text": ",", "start": 1216, "end": 1217, "annotation": null}, {"text": "which", "start": 1218, "end": 1223, "annotation": null}, {"text": "is", "start": 1224, "end": 1226, "annotation": null}, {"text": "controlled", "start": 1227, "end": 1237, "annotation": null}, {"text": "by", "start": 1238, "end": 1240, "annotation": null}, {"text": "the", "start": 1241, "end": 1244, "annotation": null}, {"text": "decay", "start": 1245, "end": 1250, "annotation": null}, {"text": ",", "start": 1250, "end": 1251, "annotation": null}, {"text": "and", "start": 1252, "end": 1255, "annotation": null}, {"text": "analytical", "start": 1256, "end": 1266, "annotation": null}, {"text": "expressions", "start": 1267, "end": 1278, "annotation": null}, {"text": "are", "start": 1279, "end": 1282, "annotation": null}, {"text": "obtained", "start": 1283, "end": 1291, "annotation": null}, {"text": "which", "start": 1292, "end": 1297, "annotation": null}, {"text": "describe", "start": 1298, "end": 1306, "annotation": null}, {"text": "the", "start": 1307, "end": 1310, "annotation": null}, {"text": "main", "start": 1311, "end": 1315, "annotation": null}, {"text": "characteristics", "start": 1316, "end": 1331, "annotation": null}, {"text": "of", "start": 1332, "end": 1334, "annotation": null}, {"text": "the", "start": 1335, "end": 1338, "annotation": null}, {"text": "process", "start": 1339, "end": 1346, "annotation": null}, {"text": ".", "start": 1346, "end": 1347, "annotation": null}]], "meta": {"doi": "10.1007/BF00895983"}} +{"remark": "doping_annt1", "text": "When the metal contact of a silicon solar cell is restricted to a fraction of the rear surface, the flow of electrons and holes towards that contact is constricted, which is beneficial for minority charge carriers but detrimental for majority carriers. It is possible to describe their 2D/3D transport and determine their concentration in the vertical and transversal dimensions of the solar cell by separately studying the central region near the contact and the peripheral region surrounding it. A virtue of such geometric approach is that it establishes a link between analytical models and computer simulations, providing both physical insight and sufficient accuracy to optimise partial rear contact devices. In this paper, we extend a previous version of the geometric model to solar cells having a full-area, locally contacted dopant diffusion on the rear surface. The case for n-type versus p-type wafers is considered, point contacts are compared with line contacts, including the impact of the metal/semiconductor resistance and bulk recombination is evaluated. Copyright \u00a9 2013 John Wiley & Sons, Ltd.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "When", "start": 0, "end": 4, "annotation": null}, {"text": "the", "start": 5, "end": 8, "annotation": null}, {"text": "metal", "start": 9, "end": 14, "annotation": null}, {"text": "contact", "start": 15, "end": 22, "annotation": null}, {"text": "of", "start": 23, "end": 25, "annotation": null}, {"text": "a", "start": 26, "end": 27, "annotation": null}, {"text": "silicon", "start": 28, "end": 35, "annotation": null}, {"text": "solar", "start": 36, "end": 41, "annotation": null}, {"text": "cell", "start": 42, "end": 46, "annotation": null}, {"text": "is", "start": 47, "end": 49, "annotation": null}, {"text": "restricted", "start": 50, "end": 60, "annotation": null}, {"text": "to", "start": 61, "end": 63, "annotation": null}, {"text": "a", "start": 64, "end": 65, "annotation": null}, {"text": "fraction", "start": 66, "end": 74, "annotation": null}, {"text": "of", "start": 75, "end": 77, "annotation": null}, {"text": "the", "start": 78, "end": 81, "annotation": null}, {"text": "rear", "start": 82, "end": 86, "annotation": null}, {"text": "surface", "start": 87, "end": 94, "annotation": null}, {"text": ",", "start": 94, "end": 95, "annotation": null}, {"text": "the", "start": 96, "end": 99, "annotation": null}, {"text": "flow", "start": 100, "end": 104, "annotation": null}, {"text": "of", "start": 105, "end": 107, "annotation": null}, {"text": "electrons", "start": 108, "end": 117, "annotation": null}, {"text": "and", "start": 118, "end": 121, "annotation": null}, {"text": "holes", "start": 122, "end": 127, "annotation": null}, {"text": "towards", "start": 128, "end": 135, "annotation": null}, {"text": "that", "start": 136, "end": 140, "annotation": null}, {"text": "contact", "start": 141, "end": 148, "annotation": null}, {"text": "is", "start": 149, "end": 151, "annotation": null}, {"text": "constricted", "start": 152, "end": 163, "annotation": null}, {"text": ",", "start": 163, "end": 164, "annotation": null}, {"text": "which", "start": 165, "end": 170, "annotation": null}, {"text": "is", "start": 171, "end": 173, "annotation": null}, {"text": "beneficial", "start": 174, "end": 184, "annotation": null}, {"text": "for", "start": 185, "end": 188, "annotation": null}, {"text": "minority", "start": 189, "end": 197, "annotation": null}, {"text": "charge", "start": 198, "end": 204, "annotation": null}, {"text": "carriers", "start": 205, "end": 213, "annotation": null}, {"text": "but", "start": 214, "end": 217, "annotation": null}, {"text": "detrimental", "start": 218, "end": 229, "annotation": null}, {"text": "for", "start": 230, "end": 233, "annotation": null}, {"text": "majority", "start": 234, "end": 242, "annotation": null}, {"text": "carriers", "start": 243, "end": 251, "annotation": null}, {"text": ".", "start": 251, "end": 252, "annotation": null}], [{"text": "It", "start": 253, "end": 255, "annotation": null}, {"text": "is", "start": 256, "end": 258, "annotation": null}, {"text": "possible", "start": 259, "end": 267, "annotation": null}, {"text": "to", "start": 268, "end": 270, "annotation": null}, {"text": "describe", "start": 271, "end": 279, "annotation": null}, {"text": "their", "start": 280, "end": 285, "annotation": null}, {"text": "2D", "start": 286, "end": 288, "annotation": null}, {"text": "/", "start": 288, "end": 289, "annotation": null}, {"text": "3D", "start": 289, "end": 291, "annotation": null}, {"text": "transport", "start": 292, "end": 301, "annotation": null}, {"text": "and", "start": 302, "end": 305, "annotation": null}, {"text": "determine", "start": 306, "end": 315, "annotation": null}, {"text": "their", "start": 316, "end": 321, "annotation": null}, {"text": "concentration", "start": 322, "end": 335, "annotation": null}, {"text": "in", "start": 336, "end": 338, "annotation": null}, {"text": "the", "start": 339, "end": 342, "annotation": null}, {"text": "vertical", "start": 343, "end": 351, "annotation": null}, {"text": "and", "start": 352, "end": 355, "annotation": null}, {"text": "transversal", "start": 356, "end": 367, "annotation": null}, {"text": "dimensions", "start": 368, "end": 378, "annotation": null}, {"text": "of", "start": 379, "end": 381, "annotation": null}, {"text": "the", "start": 382, "end": 385, "annotation": null}, {"text": "solar", "start": 386, "end": 391, "annotation": null}, {"text": "cell", "start": 392, "end": 396, "annotation": null}, {"text": "by", "start": 397, "end": 399, "annotation": null}, {"text": "separately", "start": 400, "end": 410, "annotation": null}, {"text": "studying", "start": 411, "end": 419, "annotation": null}, {"text": "the", "start": 420, "end": 423, "annotation": null}, {"text": "central", "start": 424, "end": 431, "annotation": null}, {"text": "region", "start": 432, "end": 438, "annotation": null}, {"text": "near", "start": 439, "end": 443, "annotation": null}, {"text": "the", "start": 444, "end": 447, "annotation": null}, {"text": "contact", "start": 448, "end": 455, "annotation": null}, {"text": "and", "start": 456, "end": 459, "annotation": null}, {"text": "the", "start": 460, "end": 463, "annotation": null}, {"text": "peripheral", "start": 464, "end": 474, "annotation": null}, {"text": "region", "start": 475, "end": 481, "annotation": null}, {"text": "surrounding", "start": 482, "end": 493, "annotation": null}, {"text": "it", "start": 494, "end": 496, "annotation": null}, {"text": ".", "start": 496, "end": 497, "annotation": null}], [{"text": "A", "start": 498, "end": 499, "annotation": null}, {"text": "virtue", "start": 500, "end": 506, "annotation": null}, {"text": "of", "start": 507, "end": 509, "annotation": null}, {"text": "such", "start": 510, "end": 514, "annotation": null}, {"text": "geometric", "start": 515, "end": 524, "annotation": null}, {"text": "approach", "start": 525, "end": 533, "annotation": null}, {"text": "is", "start": 534, "end": 536, "annotation": null}, {"text": "that", "start": 537, "end": 541, "annotation": null}, {"text": "it", "start": 542, "end": 544, "annotation": null}, {"text": "establishes", "start": 545, "end": 556, "annotation": null}, {"text": "a", "start": 557, "end": 558, "annotation": null}, {"text": "link", "start": 559, "end": 563, "annotation": null}, {"text": "between", "start": 564, "end": 571, "annotation": null}, {"text": "analytical", "start": 572, "end": 582, "annotation": null}, {"text": "models", "start": 583, "end": 589, "annotation": null}, {"text": "and", "start": 590, "end": 593, "annotation": null}, {"text": "computer", "start": 594, "end": 602, "annotation": null}, {"text": "simulations", "start": 603, "end": 614, "annotation": null}, {"text": ",", "start": 614, "end": 615, "annotation": null}, {"text": "providing", "start": 616, "end": 625, "annotation": null}, {"text": "both", "start": 626, "end": 630, "annotation": null}, {"text": "physical", "start": 631, "end": 639, "annotation": null}, {"text": "insight", "start": 640, "end": 647, "annotation": null}, {"text": "and", "start": 648, "end": 651, "annotation": null}, {"text": "sufficient", "start": 652, "end": 662, "annotation": null}, {"text": "accuracy", "start": 663, "end": 671, "annotation": null}, {"text": "to", "start": 672, "end": 674, "annotation": null}, {"text": "optimise", "start": 675, "end": 683, "annotation": null}, {"text": "partial", "start": 684, "end": 691, "annotation": null}, {"text": "rear", "start": 692, "end": 696, "annotation": null}, {"text": "contact", "start": 697, "end": 704, "annotation": null}, {"text": "devices", "start": 705, "end": 712, "annotation": null}, {"text": ".", "start": 712, "end": 713, "annotation": null}], [{"text": "In", "start": 714, "end": 716, "annotation": null}, {"text": "this", "start": 717, "end": 721, "annotation": null}, {"text": "paper", "start": 722, "end": 727, "annotation": null}, {"text": ",", "start": 727, "end": 728, "annotation": null}, {"text": "we", "start": 729, "end": 731, "annotation": null}, {"text": "extend", "start": 732, "end": 738, "annotation": null}, {"text": "a", "start": 739, "end": 740, "annotation": null}, {"text": "previous", "start": 741, "end": 749, "annotation": null}, {"text": "version", "start": 750, "end": 757, "annotation": null}, {"text": "of", "start": 758, "end": 760, "annotation": null}, {"text": "the", "start": 761, "end": 764, "annotation": null}, {"text": "geometric", "start": 765, "end": 774, "annotation": null}, {"text": "model", "start": 775, "end": 780, "annotation": null}, {"text": "to", "start": 781, "end": 783, "annotation": null}, {"text": "solar", "start": 784, "end": 789, "annotation": null}, {"text": "cells", "start": 790, "end": 795, "annotation": null}, {"text": "having", "start": 796, "end": 802, "annotation": null}, {"text": "a", "start": 803, "end": 804, "annotation": null}, {"text": "full", "start": 805, "end": 809, "annotation": null}, {"text": "-", "start": 809, "end": 810, "annotation": null}, {"text": "area", "start": 810, "end": 814, "annotation": null}, {"text": ",", "start": 814, "end": 815, "annotation": null}, {"text": "locally", "start": 816, "end": 823, "annotation": null}, {"text": "contacted", "start": 824, "end": 833, "annotation": null}, {"text": "dopant", "start": 834, "end": 840, "annotation": null}, {"text": "diffusion", "start": 841, "end": 850, "annotation": null}, {"text": "on", "start": 851, "end": 853, "annotation": null}, {"text": "the", "start": 854, "end": 857, "annotation": null}, {"text": "rear", "start": 858, "end": 862, "annotation": null}, {"text": "surface", "start": 863, "end": 870, "annotation": null}, {"text": ".", "start": 870, "end": 871, "annotation": null}], [{"text": "The", "start": 872, "end": 875, "annotation": null}, {"text": "case", "start": 876, "end": 880, "annotation": null}, {"text": "for", "start": 881, "end": 884, "annotation": null}, {"text": "n", "start": 885, "end": 886, "annotation": "DOPANT"}, {"text": "-", "start": 886, "end": 887, "annotation": "DOPANT"}, {"text": "type", "start": 887, "end": 891, "annotation": "DOPANT"}, {"text": "versus", "start": 892, "end": 898, "annotation": null}, {"text": "p", "start": 899, "end": 900, "annotation": "DOPANT"}, {"text": "-", "start": 900, "end": 901, "annotation": "DOPANT"}, {"text": "type", "start": 901, "end": 905, "annotation": "DOPANT"}, {"text": "wafers", "start": 906, "end": 912, "annotation": "BASEMAT"}, {"text": "is", "start": 913, "end": 915, "annotation": null}, {"text": "considered", "start": 916, "end": 926, "annotation": null}, {"text": ",", "start": 926, "end": 927, "annotation": null}, {"text": "point", "start": 928, "end": 933, "annotation": null}, {"text": "contacts", "start": 934, "end": 942, "annotation": null}, {"text": "are", "start": 943, "end": 946, "annotation": null}, {"text": "compared", "start": 947, "end": 955, "annotation": null}, {"text": "with", "start": 956, "end": 960, "annotation": null}, {"text": "line", "start": 961, "end": 965, "annotation": null}, {"text": "contacts", "start": 966, "end": 974, "annotation": null}, {"text": ",", "start": 974, "end": 975, "annotation": null}, {"text": "including", "start": 976, "end": 985, "annotation": null}, {"text": "the", "start": 986, "end": 989, "annotation": null}, {"text": "impact", "start": 990, "end": 996, "annotation": null}, {"text": "of", "start": 997, "end": 999, "annotation": null}, {"text": "the", "start": 1000, "end": 1003, "annotation": null}, {"text": "metal", "start": 1004, "end": 1009, "annotation": null}, {"text": "/", "start": 1009, "end": 1010, "annotation": null}, {"text": "semiconductor", "start": 1010, "end": 1023, "annotation": null}, {"text": "resistance", "start": 1024, "end": 1034, "annotation": null}, {"text": "and", "start": 1035, "end": 1038, "annotation": null}, {"text": "bulk", "start": 1039, "end": 1043, "annotation": null}, {"text": "recombination", "start": 1044, "end": 1057, "annotation": null}, {"text": "is", "start": 1058, "end": 1060, "annotation": null}, {"text": "evaluated", "start": 1061, "end": 1070, "annotation": null}, {"text": ".", "start": 1070, "end": 1071, "annotation": null}]], "meta": {"doi": "10.1002/pip.2433"}} +{"remark": "doping_annt1", "text": "Polycrystalline Ti1\u2212xFexN films with different Fe atomic fractions (x) were fabricated by reactive facing-target sputtering. The lattice orientation changes from (200) to (111) with the increase of x, which makes the surface morphology evolve from spherical, triangular-pyramid-like islands to random-leafs-like ones. The films are ferromagnetic with a Curie temperature of higher than 305K, and the saturation magnetization (Ms) is very small. Obvious asymmetric M\u2013H curves are observed at low temperatures, and the shift of M\u2013H curves decreases with the increasing temperature because of the relaxation of the pinned moments at low temperatures. All of the samples show semiconducting-like behavior with a mechanism of variable-range hopping at low-temperature range. Magnetoresistance (MR) is very small. The small Ms and MR can be explained by the facts that the interaction between Fe3+\u2013N3\u2212\u2013Fe3+ is antiferromagnetic superexchange coupling, and no double exchange exists in Fe3+\u2013N3\u2212\u2013Ti3+, which is different from that in the Cr-doped TiN films.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Polycrystalline", "start": 0, "end": 15, "annotation": null}, {"text": "Ti1\u2212xFexN", "start": 16, "end": 25, "annotation": null}, {"text": "films", "start": 26, "end": 31, "annotation": null}, {"text": "with", "start": 32, "end": 36, "annotation": null}, {"text": "different", "start": 37, "end": 46, "annotation": null}, {"text": "Fe", "start": 47, "end": 49, "annotation": null}, {"text": "atomic", "start": 50, "end": 56, "annotation": null}, {"text": "fractions", "start": 57, "end": 66, "annotation": null}, {"text": "(", "start": 67, "end": 68, "annotation": null}, {"text": "x", "start": 68, "end": 69, "annotation": null}, {"text": ")", "start": 69, "end": 70, "annotation": null}, {"text": "were", "start": 71, "end": 75, "annotation": null}, {"text": "fabricated", "start": 76, "end": 86, "annotation": null}, {"text": "by", "start": 87, "end": 89, "annotation": null}, {"text": "reactive", "start": 90, "end": 98, "annotation": null}, {"text": "facing", "start": 99, "end": 105, "annotation": null}, {"text": "-", "start": 105, "end": 106, "annotation": null}, {"text": "target", "start": 106, "end": 112, "annotation": null}, {"text": "sputtering", "start": 113, "end": 123, "annotation": null}, {"text": ".", "start": 123, "end": 124, "annotation": null}], [{"text": "The", "start": 125, "end": 128, "annotation": null}, {"text": "lattice", "start": 129, "end": 136, "annotation": null}, {"text": "orientation", "start": 137, "end": 148, "annotation": null}, {"text": "changes", "start": 149, "end": 156, "annotation": null}, {"text": "from", "start": 157, "end": 161, "annotation": null}, {"text": "(", "start": 162, "end": 163, "annotation": null}, {"text": "200", "start": 163, "end": 166, "annotation": null}, {"text": ")", "start": 166, "end": 167, "annotation": null}, {"text": "to", "start": 168, "end": 170, "annotation": null}, {"text": "(", "start": 171, "end": 172, "annotation": null}, {"text": "111", "start": 172, "end": 175, "annotation": null}, {"text": ")", "start": 175, "end": 176, "annotation": null}, {"text": "with", "start": 177, "end": 181, "annotation": null}, {"text": "the", "start": 182, "end": 185, "annotation": null}, {"text": "increase", "start": 186, "end": 194, "annotation": null}, {"text": "of", "start": 195, "end": 197, "annotation": null}, {"text": "x", "start": 198, "end": 199, "annotation": null}, {"text": ",", "start": 199, "end": 200, "annotation": null}, {"text": "which", "start": 201, "end": 206, "annotation": null}, {"text": "makes", "start": 207, "end": 212, "annotation": null}, {"text": "the", "start": 213, "end": 216, "annotation": null}, {"text": "surface", "start": 217, "end": 224, "annotation": null}, {"text": "morphology", "start": 225, "end": 235, "annotation": null}, {"text": "evolve", "start": 236, "end": 242, "annotation": null}, {"text": "from", "start": 243, "end": 247, "annotation": null}, {"text": "spherical", "start": 248, "end": 257, "annotation": null}, {"text": ",", "start": 257, "end": 258, "annotation": null}, {"text": "triangular", "start": 259, "end": 269, "annotation": null}, {"text": "-", "start": 269, "end": 270, "annotation": null}, {"text": "pyramid", "start": 270, "end": 277, "annotation": null}, {"text": "-", "start": 277, "end": 278, "annotation": null}, {"text": "like", "start": 278, "end": 282, "annotation": null}, {"text": "islands", "start": 283, "end": 290, "annotation": null}, {"text": "to", "start": 291, "end": 293, "annotation": null}, {"text": "random", "start": 294, "end": 300, "annotation": null}, {"text": "-", "start": 300, "end": 301, "annotation": null}, {"text": "leafs", "start": 301, "end": 306, "annotation": null}, {"text": "-", "start": 306, "end": 307, "annotation": null}, {"text": "like", "start": 307, "end": 311, "annotation": null}, {"text": "ones", "start": 312, "end": 316, "annotation": null}, {"text": ".", "start": 316, "end": 317, "annotation": null}], [{"text": "The", "start": 318, "end": 321, "annotation": null}, {"text": "films", "start": 322, "end": 327, "annotation": null}, {"text": "are", "start": 328, "end": 331, "annotation": null}, {"text": "ferromagnetic", "start": 332, "end": 345, "annotation": null}, {"text": "with", "start": 346, "end": 350, "annotation": null}, {"text": "a", "start": 351, "end": 352, "annotation": null}, {"text": "Curie", "start": 353, "end": 358, "annotation": null}, {"text": "temperature", "start": 359, "end": 370, "annotation": null}, {"text": "of", "start": 371, "end": 373, "annotation": null}, {"text": "higher", "start": 374, "end": 380, "annotation": null}, {"text": "than", "start": 381, "end": 385, "annotation": null}, {"text": "305K", "start": 386, "end": 390, "annotation": null}, {"text": ",", "start": 390, "end": 391, "annotation": null}, {"text": "and", "start": 392, "end": 395, "annotation": null}, {"text": "the", "start": 396, "end": 399, "annotation": null}, {"text": "saturation", "start": 400, "end": 410, "annotation": null}, {"text": "magnetization", "start": 411, "end": 424, "annotation": null}, {"text": "(", "start": 425, "end": 426, "annotation": null}, {"text": "Ms", "start": 426, "end": 428, "annotation": null}, {"text": ")", "start": 428, "end": 429, "annotation": null}, {"text": "is", "start": 430, "end": 432, "annotation": null}, {"text": "very", "start": 433, "end": 437, "annotation": null}, {"text": "small", "start": 438, "end": 443, "annotation": null}, {"text": ".", "start": 443, "end": 444, "annotation": null}], [{"text": "Obvious", "start": 445, "end": 452, "annotation": null}, {"text": "asymmetric", "start": 453, "end": 463, "annotation": null}, {"text": "M", "start": 464, "end": 465, "annotation": null}, {"text": "\u2013", "start": 465, "end": 466, "annotation": null}, {"text": "H", "start": 466, "end": 467, "annotation": null}, {"text": "curves", "start": 468, "end": 474, "annotation": null}, {"text": "are", "start": 475, "end": 478, "annotation": null}, {"text": "observed", "start": 479, "end": 487, "annotation": null}, {"text": "at", "start": 488, "end": 490, "annotation": null}, {"text": "low", "start": 491, "end": 494, "annotation": null}, {"text": "temperatures", "start": 495, "end": 507, "annotation": null}, {"text": ",", "start": 507, "end": 508, "annotation": null}, {"text": "and", "start": 509, "end": 512, "annotation": null}, {"text": "the", "start": 513, "end": 516, "annotation": null}, {"text": "shift", "start": 517, "end": 522, "annotation": null}, {"text": "of", "start": 523, "end": 525, "annotation": null}, {"text": "M", "start": 526, "end": 527, "annotation": null}, {"text": "\u2013", "start": 527, "end": 528, "annotation": null}, {"text": "H", "start": 528, "end": 529, "annotation": null}, {"text": "curves", "start": 530, "end": 536, "annotation": null}, {"text": "decreases", "start": 537, "end": 546, "annotation": null}, {"text": "with", "start": 547, "end": 551, "annotation": null}, {"text": "the", "start": 552, "end": 555, "annotation": null}, {"text": "increasing", "start": 556, "end": 566, "annotation": null}, {"text": "temperature", "start": 567, "end": 578, "annotation": null}, {"text": "because", "start": 579, "end": 586, "annotation": null}, {"text": "of", "start": 587, "end": 589, "annotation": null}, {"text": "the", "start": 590, "end": 593, "annotation": null}, {"text": "relaxation", "start": 594, "end": 604, "annotation": null}, {"text": "of", "start": 605, "end": 607, "annotation": null}, {"text": "the", "start": 608, "end": 611, "annotation": null}, {"text": "pinned", "start": 612, "end": 618, "annotation": null}, {"text": "moments", "start": 619, "end": 626, "annotation": null}, {"text": "at", "start": 627, "end": 629, "annotation": null}, {"text": "low", "start": 630, "end": 633, "annotation": null}, {"text": "temperatures", "start": 634, "end": 646, "annotation": null}, {"text": ".", "start": 646, "end": 647, "annotation": null}], [{"text": "All", "start": 648, "end": 651, "annotation": null}, {"text": "of", "start": 652, "end": 654, "annotation": null}, {"text": "the", "start": 655, "end": 658, "annotation": null}, {"text": "samples", "start": 659, "end": 666, "annotation": null}, {"text": "show", "start": 667, "end": 671, "annotation": null}, {"text": "semiconducting", "start": 672, "end": 686, "annotation": null}, {"text": "-", "start": 686, "end": 687, "annotation": null}, {"text": "like", "start": 687, "end": 691, "annotation": null}, {"text": "behavior", "start": 692, "end": 700, "annotation": null}, {"text": "with", "start": 701, "end": 705, "annotation": null}, {"text": "a", "start": 706, "end": 707, "annotation": null}, {"text": "mechanism", "start": 708, "end": 717, "annotation": null}, {"text": "of", "start": 718, "end": 720, "annotation": null}, {"text": "variable", "start": 721, "end": 729, "annotation": null}, {"text": "-", "start": 729, "end": 730, "annotation": null}, {"text": "range", "start": 730, "end": 735, "annotation": null}, {"text": "hopping", "start": 736, "end": 743, "annotation": null}, {"text": "at", "start": 744, "end": 746, "annotation": null}, {"text": "low", "start": 747, "end": 750, "annotation": null}, {"text": "-", "start": 750, "end": 751, "annotation": null}, {"text": "temperature", "start": 751, "end": 762, "annotation": null}, {"text": "range", "start": 763, "end": 768, "annotation": null}, {"text": ".", "start": 768, "end": 769, "annotation": null}], [{"text": "Magnetoresistance", "start": 770, "end": 787, "annotation": null}, {"text": "(", "start": 788, "end": 789, "annotation": null}, {"text": "MR", "start": 789, "end": 791, "annotation": null}, {"text": ")", "start": 791, "end": 792, "annotation": null}, {"text": "is", "start": 793, "end": 795, "annotation": null}, {"text": "very", "start": 796, "end": 800, "annotation": null}, {"text": "small", "start": 801, "end": 806, "annotation": null}, {"text": ".", "start": 806, "end": 807, "annotation": null}], [{"text": "The", "start": 808, "end": 811, "annotation": null}, {"text": "small", "start": 812, "end": 817, "annotation": null}, {"text": "Ms", "start": 818, "end": 820, "annotation": null}, {"text": "and", "start": 821, "end": 824, "annotation": null}, {"text": "MR", "start": 825, "end": 827, "annotation": null}, {"text": "can", "start": 828, "end": 831, "annotation": null}, {"text": "be", "start": 832, "end": 834, "annotation": null}, {"text": "explained", "start": 835, "end": 844, "annotation": null}, {"text": "by", "start": 845, "end": 847, "annotation": null}, {"text": "the", "start": 848, "end": 851, "annotation": null}, {"text": "facts", "start": 852, "end": 857, "annotation": null}, {"text": "that", "start": 858, "end": 862, "annotation": null}, {"text": "the", "start": 863, "end": 866, "annotation": null}, {"text": "interaction", "start": 867, "end": 878, "annotation": null}, {"text": "between", "start": 879, "end": 886, "annotation": null}, {"text": "Fe3+", "start": 887, "end": 891, "annotation": null}, {"text": "\u2013", "start": 891, "end": 892, "annotation": null}, {"text": "N3\u2212", "start": 892, "end": 895, "annotation": null}, {"text": "\u2013", "start": 895, "end": 896, "annotation": null}, {"text": "Fe3+", "start": 896, "end": 900, "annotation": null}, {"text": "is", "start": 901, "end": 903, "annotation": null}, {"text": "antiferromagnetic", "start": 904, "end": 921, "annotation": null}, {"text": "superexchange", "start": 922, "end": 935, "annotation": null}, {"text": "coupling", "start": 936, "end": 944, "annotation": null}, {"text": ",", "start": 944, "end": 945, "annotation": null}, {"text": "and", "start": 946, "end": 949, "annotation": null}, {"text": "no", "start": 950, "end": 952, "annotation": null}, {"text": "double", "start": 953, "end": 959, "annotation": null}, {"text": "exchange", "start": 960, "end": 968, "annotation": null}, {"text": "exists", "start": 969, "end": 975, "annotation": null}, {"text": "in", "start": 976, "end": 978, "annotation": null}, {"text": "Fe3+", "start": 979, "end": 983, "annotation": null}, {"text": "\u2013", "start": 983, "end": 984, "annotation": null}, {"text": "N3\u2212", "start": 984, "end": 987, "annotation": null}, {"text": "\u2013", "start": 987, "end": 988, "annotation": null}, {"text": "Ti3+", "start": 988, "end": 992, "annotation": null}, {"text": ",", "start": 992, "end": 993, "annotation": null}, {"text": "which", "start": 994, "end": 999, "annotation": null}, {"text": "is", "start": 1000, "end": 1002, "annotation": null}, {"text": "different", "start": 1003, "end": 1012, "annotation": null}, {"text": "from", "start": 1013, "end": 1017, "annotation": null}, {"text": "that", "start": 1018, "end": 1022, "annotation": null}, {"text": "in", "start": 1023, "end": 1025, "annotation": null}, {"text": "the", "start": 1026, "end": 1029, "annotation": null}, {"text": "Cr", "start": 1030, "end": 1032, "annotation": "DOPANT"}, {"text": "-", "start": 1032, "end": 1033, "annotation": null}, {"text": "doped", "start": 1033, "end": 1038, "annotation": null}, {"text": "TiN", "start": 1039, "end": 1042, "annotation": "BASEMAT"}, {"text": "films", "start": 1043, "end": 1048, "annotation": null}, {"text": ".", "start": 1048, "end": 1049, "annotation": null}]], "meta": {"doi": "10.1016/j.apsusc.2012.01.088"}} {"text": "Overall, boosting the formation of the active NiOOH layer distinctly improves the electro catalytic activity of nickel-based materials. Moreover, due to the adsorption capacity, the carbonaceous supports improve the electrocatalytic activities of several function materials including nickel. In this manuscript, nitrogen doping is introduced as an effective strategy to enhance formation of the NiOOH active layer on the surface of nickel nanoparticles decorating carbon nanofibers. Typically, addition of urea to the nickel acetate/poly(vinyl alcohol)/water sol-gel leads to obtain nitrogen-doped and nickel-decorated carbon nanofibers after electrospinning the prepared solution and calcination the nanofiber mats under Ar at 750 \u00b0C. The invoked characterizations including XRD, TEM, SEM and XPS affirmed formation of smooth nitrogen-doped carbon nanofibers decorated by crystalline nickel nanoparticles. Nitrogen doping strongly enhanced the formation of NiOOH active layer on the surface of the metallic nanoparticles which distinctly improved the electrocatalytic activity toward urea oxidation. However, the electrochemical measurements indicated that the content of the urea in the initial electrospun solution should be optimized as the results showed that the best nickel surface activation as well as the maximum observed current density can be achieved when the urea content is kept at 5 wt%. Typically, the observed current densities using 1.0 M urea (in 1 M KOH) were 3.15, 29.7, 13.75, 47.55, 14.13 and 9.85 mA/cm2 for the nanofibers obtained from electrospun solutions having 0, 1, 2, 5, 7 and 9 wt% urea, respectively. Moreover, the proposed nitrogen doping strategy leads to perform a distinguish decrease in the onset potential of the urea electrooxidation which reduces the required energy for the electrolysis process.", "meta": {"doi": "10.1016/j.ijhydene.2017.07.076"}, "_input_hash": -1834515628, "_task_hash": -1069720193, "tokens": [[{"text": "Overall", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": ",", "start": 8, "end": 9, "id": 1, "annotation": null}, {"text": "boosting", "start": 10, "end": 18, "id": 2, "annotation": null}, {"text": "the", "start": 19, "end": 22, "id": 3, "annotation": null}, {"text": "formation", "start": 23, "end": 32, "id": 4, "annotation": null}, {"text": "of", "start": 33, "end": 35, "id": 5, "annotation": null}, {"text": "the", "start": 36, "end": 39, "id": 6, "annotation": null}, {"text": "active", "start": 40, "end": 46, "id": 7, "annotation": null}, {"text": "NiOOH", "start": 47, "end": 52, "id": 8, "annotation": null}, {"text": "layer", "start": 53, "end": 58, "id": 9, "annotation": null}, {"text": "distinctly", "start": 59, "end": 69, "id": 10, "annotation": null}, {"text": "improves", "start": 70, "end": 78, "id": 11, "annotation": null}, {"text": "the", "start": 79, "end": 82, "id": 12, "annotation": null}, {"text": "electro", "start": 83, "end": 90, "id": 13, "annotation": null}, {"text": "catalytic", "start": 91, "end": 100, "id": 14, "annotation": null}, {"text": "activity", "start": 101, "end": 109, "id": 15, "annotation": null}, {"text": "of", "start": 110, "end": 112, "id": 16, "annotation": null}, {"text": "nickel", "start": 113, "end": 119, "id": 17, "annotation": null}, {"text": "-", "start": 120, "end": 121, "id": 18, "annotation": null}, {"text": "based", "start": 122, "end": 127, "id": 19, "annotation": null}, {"text": "materials", "start": 128, "end": 137, "id": 20, "annotation": null}, {"text": ".", "start": 138, "end": 139, "id": 21, "annotation": null}], [{"text": "Moreover", "start": 140, "end": 148, "id": 22, "annotation": null}, {"text": ",", "start": 149, "end": 150, "id": 23, "annotation": null}, {"text": "due", "start": 151, "end": 154, "id": 24, "annotation": null}, {"text": "to", "start": 155, "end": 157, "id": 25, "annotation": null}, {"text": "the", "start": 158, "end": 161, "id": 26, "annotation": null}, {"text": "adsorption", "start": 162, "end": 172, "id": 27, "annotation": null}, {"text": "capacity", "start": 173, "end": 181, "id": 28, "annotation": null}, {"text": ",", "start": 182, "end": 183, "id": 29, "annotation": null}, {"text": "the", "start": 184, "end": 187, "id": 30, "annotation": null}, {"text": "carbonaceous", "start": 188, "end": 200, "id": 31, "annotation": null}, {"text": "supports", "start": 201, "end": 209, "id": 32, "annotation": null}, {"text": "improve", "start": 210, "end": 217, "id": 33, "annotation": null}, {"text": "the", "start": 218, "end": 221, "id": 34, "annotation": null}, {"text": "electrocatalytic", "start": 222, "end": 238, "id": 35, "annotation": null}, {"text": "activities", "start": 239, "end": 249, "id": 36, "annotation": null}, {"text": "of", "start": 250, "end": 252, "id": 37, "annotation": null}, {"text": "several", "start": 253, "end": 260, "id": 38, "annotation": null}, {"text": "function", "start": 261, "end": 269, "id": 39, "annotation": null}, {"text": "materials", "start": 270, "end": 279, "id": 40, "annotation": null}, {"text": "including", "start": 280, "end": 289, "id": 41, "annotation": null}, {"text": "nickel", "start": 290, "end": 296, "id": 42, "annotation": null}, {"text": ".", "start": 297, "end": 298, "id": 43, "annotation": null}], [{"text": "In", "start": 299, "end": 301, "id": 44, "annotation": null}, {"text": "this", "start": 302, "end": 306, "id": 45, "annotation": null}, {"text": "manuscript", "start": 307, "end": 317, "id": 46, "annotation": null}, {"text": ",", "start": 318, "end": 319, "id": 47, "annotation": null}, {"text": "nitrogen", "start": 320, "end": 328, "id": 48, "annotation": "DOPANT"}, {"text": "doping", "start": 329, "end": 335, "id": 49, "annotation": null}, {"text": "is", "start": 336, "end": 338, "id": 50, "annotation": null}, {"text": "introduced", "start": 339, "end": 349, "id": 51, "annotation": null}, {"text": "as", "start": 350, "end": 352, "id": 52, "annotation": null}, {"text": "an", "start": 353, "end": 355, "id": 53, "annotation": null}, {"text": "effective", "start": 356, "end": 365, "id": 54, "annotation": null}, {"text": "strategy", "start": 366, "end": 374, "id": 55, "annotation": null}, {"text": "to", "start": 375, "end": 377, "id": 56, "annotation": null}, {"text": "enhance", "start": 378, "end": 385, "id": 57, "annotation": null}, {"text": "formation", "start": 386, "end": 395, "id": 58, "annotation": null}, {"text": "of", "start": 396, "end": 398, "id": 59, "annotation": null}, {"text": "the", "start": 399, "end": 402, "id": 60, "annotation": null}, {"text": "NiOOH", "start": 403, "end": 408, "id": 61, "annotation": null}, {"text": "active", "start": 409, "end": 415, "id": 62, "annotation": null}, {"text": "layer", "start": 416, "end": 421, "id": 63, "annotation": null}, {"text": "on", "start": 422, "end": 424, "id": 64, "annotation": null}, {"text": "the", "start": 425, "end": 428, "id": 65, "annotation": null}, {"text": "surface", "start": 429, "end": 436, "id": 66, "annotation": null}, {"text": "of", "start": 437, "end": 439, "id": 67, "annotation": null}, {"text": "nickel", "start": 440, "end": 446, "id": 68, "annotation": null}, {"text": "nanoparticles", "start": 447, "end": 460, "id": 69, "annotation": null}, {"text": "decorating", "start": 461, "end": 471, "id": 70, "annotation": null}, {"text": "carbon", "start": 472, "end": 478, "id": 71, "annotation": "BASEMAT"}, {"text": "nanofibers", "start": 479, "end": 489, "id": 72, "annotation": null}, {"text": ".", "start": 490, "end": 491, "id": 73, "annotation": null}], [{"text": "Typically", "start": 492, "end": 501, "id": 74, "annotation": null}, {"text": ",", "start": 502, "end": 503, "id": 75, "annotation": null}, {"text": "addition", "start": 504, "end": 512, "id": 76, "annotation": null}, {"text": "of", "start": 513, "end": 515, "id": 77, "annotation": null}, {"text": "urea", "start": 516, "end": 520, "id": 78, "annotation": null}, {"text": "to", "start": 521, "end": 523, "id": 79, "annotation": null}, {"text": "the", "start": 524, "end": 527, "id": 80, "annotation": null}, {"text": "nickel", "start": 528, "end": 534, "id": 81, "annotation": null}, {"text": "acetate", "start": 535, "end": 542, "id": 82, "annotation": null}, {"text": "/", "start": 543, "end": 544, "id": 83, "annotation": null}, {"text": "poly(vinyl", "start": 545, "end": 555, "id": 84, "annotation": null}, {"text": "alcohol)/water", "start": 556, "end": 570, "id": 85, "annotation": null}, {"text": "sol", "start": 571, "end": 574, "id": 86, "annotation": null}, {"text": "-", "start": 575, "end": 576, "id": 87, "annotation": null}, {"text": "gel", "start": 577, "end": 580, "id": 88, "annotation": null}, {"text": "leads", "start": 581, "end": 586, "id": 89, "annotation": null}, {"text": "to", "start": 587, "end": 589, "id": 90, "annotation": null}, {"text": "obtain", "start": 590, "end": 596, "id": 91, "annotation": null}, {"text": "nitrogen", "start": 597, "end": 605, "id": 92, "annotation": "DOPANT"}, {"text": "-", "start": 606, "end": 607, "id": 93, "annotation": null}, {"text": "doped", "start": 608, "end": 613, "id": 94, "annotation": null}, {"text": "and", "start": 614, "end": 617, "id": 95, "annotation": null}, {"text": "nickel", "start": 618, "end": 624, "id": 96, "annotation": null}, {"text": "-", "start": 625, "end": 626, "id": 97, "annotation": null}, {"text": "decorated", "start": 627, "end": 636, "id": 98, "annotation": null}, {"text": "carbon", "start": 637, "end": 643, "id": 99, "annotation": "BASEMAT"}, {"text": "nanofibers", "start": 644, "end": 654, "id": 100, "annotation": null}, {"text": "after", "start": 655, "end": 660, "id": 101, "annotation": null}, {"text": "electrospinning", "start": 661, "end": 676, "id": 102, "annotation": null}, {"text": "the", "start": 677, "end": 680, "id": 103, "annotation": null}, {"text": "prepared", "start": 681, "end": 689, "id": 104, "annotation": null}, {"text": "solution", "start": 690, "end": 698, "id": 105, "annotation": null}, {"text": "and", "start": 699, "end": 702, "id": 106, "annotation": null}, {"text": "calcination", "start": 703, "end": 714, "id": 107, "annotation": null}, {"text": "the", "start": 715, "end": 718, "id": 108, "annotation": null}, {"text": "nanofiber", "start": 719, "end": 728, "id": 109, "annotation": null}, {"text": "mats", "start": 729, "end": 733, "id": 110, "annotation": null}, {"text": "under", "start": 734, "end": 739, "id": 111, "annotation": null}, {"text": "Ar", "start": 740, "end": 742, "id": 112, "annotation": null}, {"text": "at", "start": 743, "end": 745, "id": 113, "annotation": null}, {"text": "750", "start": 746, "end": 749, "id": 114, "annotation": null}, {"text": "\u00b0", "start": 750, "end": 751, "id": 115, "annotation": null}, {"text": "C", "start": 752, "end": 753, "id": 116, "annotation": null}, {"text": ".", "start": 754, "end": 755, "id": 117, "annotation": null}], [{"text": "The", "start": 756, "end": 759, "id": 118, "annotation": null}, {"text": "invoked", "start": 760, "end": 767, "id": 119, "annotation": null}, {"text": "characterizations", "start": 768, "end": 785, "id": 120, "annotation": null}, {"text": "including", "start": 786, "end": 795, "id": 121, "annotation": null}, {"text": "XRD", "start": 796, "end": 799, "id": 122, "annotation": null}, {"text": ",", "start": 800, "end": 801, "id": 123, "annotation": null}, {"text": "TEM", "start": 802, "end": 805, "id": 124, "annotation": null}, {"text": ",", "start": 806, "end": 807, "id": 125, "annotation": null}, {"text": "SEM", "start": 808, "end": 811, "id": 126, "annotation": null}, {"text": "and", "start": 812, "end": 815, "id": 127, "annotation": null}, {"text": "XPS", "start": 816, "end": 819, "id": 128, "annotation": null}, {"text": "affirmed", "start": 820, "end": 828, "id": 129, "annotation": null}, {"text": "formation", "start": 829, "end": 838, "id": 130, "annotation": null}, {"text": "of", "start": 839, "end": 841, "id": 131, "annotation": null}, {"text": "smooth", "start": 842, "end": 848, "id": 132, "annotation": null}, {"text": "nitrogen", "start": 849, "end": 857, "id": 133, "annotation": "DOPANT"}, {"text": "-", "start": 858, "end": 859, "id": 134, "annotation": null}, {"text": "doped", "start": 860, "end": 865, "id": 135, "annotation": null}, {"text": "carbon", "start": 866, "end": 872, "id": 136, "annotation": "BASEMAT"}, {"text": "nanofibers", "start": 873, "end": 883, "id": 137, "annotation": null}, {"text": "decorated", "start": 884, "end": 893, "id": 138, "annotation": null}, {"text": "by", "start": 894, "end": 896, "id": 139, "annotation": null}, {"text": "crystalline", "start": 897, "end": 908, "id": 140, "annotation": null}, {"text": "nickel", "start": 909, "end": 915, "id": 141, "annotation": null}, {"text": "nanoparticles", "start": 916, "end": 929, "id": 142, "annotation": null}, {"text": ".", "start": 930, "end": 931, "id": 143, "annotation": null}], [{"text": "Nitrogen", "start": 932, "end": 940, "id": 144, "annotation": "DOPANT"}, {"text": "doping", "start": 941, "end": 947, "id": 145, "annotation": null}, {"text": "strongly", "start": 948, "end": 956, "id": 146, "annotation": null}, {"text": "enhanced", "start": 957, "end": 965, "id": 147, "annotation": null}, {"text": "the", "start": 966, "end": 969, "id": 148, "annotation": null}, {"text": "formation", "start": 970, "end": 979, "id": 149, "annotation": null}, {"text": "of", "start": 980, "end": 982, "id": 150, "annotation": null}, {"text": "NiOOH", "start": 983, "end": 988, "id": 151, "annotation": null}, {"text": "active", "start": 989, "end": 995, "id": 152, "annotation": null}, {"text": "layer", "start": 996, "end": 1001, "id": 153, "annotation": null}, {"text": "on", "start": 1002, "end": 1004, "id": 154, "annotation": null}, {"text": "the", "start": 1005, "end": 1008, "id": 155, "annotation": null}, {"text": "surface", "start": 1009, "end": 1016, "id": 156, "annotation": null}, {"text": "of", "start": 1017, "end": 1019, "id": 157, "annotation": null}, {"text": "the", "start": 1020, "end": 1023, "id": 158, "annotation": null}, {"text": "metallic", "start": 1024, "end": 1032, "id": 159, "annotation": null}, {"text": "nanoparticles", "start": 1033, "end": 1046, "id": 160, "annotation": null}, {"text": "which", "start": 1047, "end": 1052, "id": 161, "annotation": null}, {"text": "distinctly", "start": 1053, "end": 1063, "id": 162, "annotation": null}, {"text": "improved", "start": 1064, "end": 1072, "id": 163, "annotation": null}, {"text": "the", "start": 1073, "end": 1076, "id": 164, "annotation": null}, {"text": "electrocatalytic", "start": 1077, "end": 1093, "id": 165, "annotation": null}, {"text": "activity", "start": 1094, "end": 1102, "id": 166, "annotation": null}, {"text": "toward", "start": 1103, "end": 1109, "id": 167, "annotation": null}, {"text": "urea", "start": 1110, "end": 1114, "id": 168, "annotation": null}, {"text": "oxidation", "start": 1115, "end": 1124, "id": 169, "annotation": null}, {"text": ".", "start": 1125, "end": 1126, "id": 170, "annotation": null}], [{"text": "However", "start": 1127, "end": 1134, "id": 171, "annotation": null}, {"text": ",", "start": 1135, "end": 1136, "id": 172, "annotation": null}, {"text": "the", "start": 1137, "end": 1140, "id": 173, "annotation": null}, {"text": "electrochemical", "start": 1141, "end": 1156, "id": 174, "annotation": null}, {"text": "measurements", "start": 1157, "end": 1169, "id": 175, "annotation": null}, {"text": "indicated", "start": 1170, "end": 1179, "id": 176, "annotation": null}, {"text": "that", "start": 1180, "end": 1184, "id": 177, "annotation": null}, {"text": "the", "start": 1185, "end": 1188, "id": 178, "annotation": null}, {"text": "content", "start": 1189, "end": 1196, "id": 179, "annotation": null}, {"text": "of", "start": 1197, "end": 1199, "id": 180, "annotation": null}, {"text": "the", "start": 1200, "end": 1203, "id": 181, "annotation": null}, {"text": "urea", "start": 1204, "end": 1208, "id": 182, "annotation": null}, {"text": "in", "start": 1209, "end": 1211, "id": 183, "annotation": null}, {"text": "the", "start": 1212, "end": 1215, "id": 184, "annotation": null}, {"text": "initial", "start": 1216, "end": 1223, "id": 185, "annotation": null}, {"text": "electrospun", "start": 1224, "end": 1235, "id": 186, "annotation": null}, {"text": "solution", "start": 1236, "end": 1244, "id": 187, "annotation": null}, {"text": "should", "start": 1245, "end": 1251, "id": 188, "annotation": null}, {"text": "be", "start": 1252, "end": 1254, "id": 189, "annotation": null}, {"text": "optimized", "start": 1255, "end": 1264, "id": 190, "annotation": null}, {"text": "as", "start": 1265, "end": 1267, "id": 191, "annotation": null}, {"text": "the", "start": 1268, "end": 1271, "id": 192, "annotation": null}, {"text": "results", "start": 1272, "end": 1279, "id": 193, "annotation": null}, {"text": "showed", "start": 1280, "end": 1286, "id": 194, "annotation": null}, {"text": "that", "start": 1287, "end": 1291, "id": 195, "annotation": null}, {"text": "the", "start": 1292, "end": 1295, "id": 196, "annotation": null}, {"text": "best", "start": 1296, "end": 1300, "id": 197, "annotation": null}, {"text": "nickel", "start": 1301, "end": 1307, "id": 198, "annotation": null}, {"text": "surface", "start": 1308, "end": 1315, "id": 199, "annotation": null}, {"text": "activation", "start": 1316, "end": 1326, "id": 200, "annotation": null}, {"text": "as", "start": 1327, "end": 1329, "id": 201, "annotation": null}, {"text": "well", "start": 1330, "end": 1334, "id": 202, "annotation": null}, {"text": "as", "start": 1335, "end": 1337, "id": 203, "annotation": null}, {"text": "the", "start": 1338, "end": 1341, "id": 204, "annotation": null}, {"text": "maximum", "start": 1342, "end": 1349, "id": 205, "annotation": null}, {"text": "observed", "start": 1350, "end": 1358, "id": 206, "annotation": null}, {"text": "current", "start": 1359, "end": 1366, "id": 207, "annotation": null}, {"text": "density", "start": 1367, "end": 1374, "id": 208, "annotation": null}, {"text": "can", "start": 1375, "end": 1378, "id": 209, "annotation": null}, {"text": "be", "start": 1379, "end": 1381, "id": 210, "annotation": null}, {"text": "achieved", "start": 1382, "end": 1390, "id": 211, "annotation": null}, {"text": "when", "start": 1391, "end": 1395, "id": 212, "annotation": null}, {"text": "the", "start": 1396, "end": 1399, "id": 213, "annotation": null}, {"text": "urea", "start": 1400, "end": 1404, "id": 214, "annotation": null}, {"text": "content", "start": 1405, "end": 1412, "id": 215, "annotation": null}, {"text": "is", "start": 1413, "end": 1415, "id": 216, "annotation": null}, {"text": "kept", "start": 1416, "end": 1420, "id": 217, "annotation": null}, {"text": "at", "start": 1421, "end": 1423, "id": 218, "annotation": null}, {"text": "5", "start": 1424, "end": 1425, "id": 219, "annotation": null}, {"text": "wt%", "start": 1426, "end": 1429, "id": 220, "annotation": null}, {"text": ".", "start": 1430, "end": 1431, "id": 221, "annotation": null}], [{"text": "Typically", "start": 1432, "end": 1441, "id": 222, "annotation": null}, {"text": ",", "start": 1442, "end": 1443, "id": 223, "annotation": null}, {"text": "the", "start": 1444, "end": 1447, "id": 224, "annotation": null}, {"text": "observed", "start": 1448, "end": 1456, "id": 225, "annotation": null}, {"text": "current", "start": 1457, "end": 1464, "id": 226, "annotation": null}, {"text": "densities", "start": 1465, "end": 1474, "id": 227, "annotation": null}, {"text": "using", "start": 1475, "end": 1480, "id": 228, "annotation": null}, {"text": "1.0", "start": 1481, "end": 1484, "id": 229, "annotation": null}, {"text": "M", "start": 1485, "end": 1486, "id": 230, "annotation": null}, {"text": "urea", "start": 1487, "end": 1491, "id": 231, "annotation": null}, {"text": "(", "start": 1492, "end": 1493, "id": 232, "annotation": null}, {"text": "in", "start": 1494, "end": 1496, "id": 233, "annotation": null}, {"text": "1", "start": 1497, "end": 1498, "id": 234, "annotation": null}, {"text": "M", "start": 1499, "end": 1500, "id": 235, "annotation": null}, {"text": "KOH", "start": 1501, "end": 1504, "id": 236, "annotation": null}, {"text": ")", "start": 1505, "end": 1506, "id": 237, "annotation": null}, {"text": "were", "start": 1507, "end": 1511, "id": 238, "annotation": null}, {"text": "3.15", "start": 1512, "end": 1516, "id": 239, "annotation": null}, {"text": ",", "start": 1517, "end": 1518, "id": 240, "annotation": null}, {"text": "29.7", "start": 1519, "end": 1523, "id": 241, "annotation": null}, {"text": ",", "start": 1524, "end": 1525, "id": 242, "annotation": null}, {"text": "13.75", "start": 1526, "end": 1531, "id": 243, "annotation": null}, {"text": ",", "start": 1532, "end": 1533, "id": 244, "annotation": null}, {"text": "47.55", "start": 1534, "end": 1539, "id": 245, "annotation": null}, {"text": ",", "start": 1540, "end": 1541, "id": 246, "annotation": null}, {"text": "14.13", "start": 1542, "end": 1547, "id": 247, "annotation": null}, {"text": "and", "start": 1548, "end": 1551, "id": 248, "annotation": null}, {"text": "9.85", "start": 1552, "end": 1556, "id": 249, "annotation": null}, {"text": "mA", "start": 1557, "end": 1559, "id": 250, "annotation": null}, {"text": "/", "start": 1560, "end": 1561, "id": 251, "annotation": null}, {"text": "cm2", "start": 1562, "end": 1565, "id": 252, "annotation": null}, {"text": "for", "start": 1566, "end": 1569, "id": 253, "annotation": null}, {"text": "the", "start": 1570, "end": 1573, "id": 254, "annotation": null}, {"text": "nanofibers", "start": 1574, "end": 1584, "id": 255, "annotation": null}, {"text": "obtained", "start": 1585, "end": 1593, "id": 256, "annotation": null}, {"text": "from", "start": 1594, "end": 1598, "id": 257, "annotation": null}, {"text": "electrospun", "start": 1599, "end": 1610, "id": 258, "annotation": null}, {"text": "solutions", "start": 1611, "end": 1620, "id": 259, "annotation": null}, {"text": "having", "start": 1621, "end": 1627, "id": 260, "annotation": null}, {"text": "0", "start": 1628, "end": 1629, "id": 261, "annotation": null}, {"text": ",", "start": 1630, "end": 1631, "id": 262, "annotation": null}, {"text": "1", "start": 1632, "end": 1633, "id": 263, "annotation": null}, {"text": ",", "start": 1634, "end": 1635, "id": 264, "annotation": null}, {"text": "2", "start": 1636, "end": 1637, "id": 265, "annotation": null}, {"text": ",", "start": 1638, "end": 1639, "id": 266, "annotation": null}, {"text": "5", "start": 1640, "end": 1641, "id": 267, "annotation": null}, {"text": ",", "start": 1642, "end": 1643, "id": 268, "annotation": null}, {"text": "7", "start": 1644, "end": 1645, "id": 269, "annotation": null}, {"text": "and", "start": 1646, "end": 1649, "id": 270, "annotation": null}, {"text": "9", "start": 1650, "end": 1651, "id": 271, "annotation": null}, {"text": "wt%", "start": 1652, "end": 1655, "id": 272, "annotation": null}, {"text": "urea", "start": 1656, "end": 1660, "id": 273, "annotation": null}, {"text": ",", "start": 1661, "end": 1662, "id": 274, "annotation": null}, {"text": "respectively", "start": 1663, "end": 1675, "id": 275, "annotation": null}, {"text": ".", "start": 1676, "end": 1677, "id": 276, "annotation": null}], [{"text": "Moreover", "start": 1678, "end": 1686, "id": 277, "annotation": null}, {"text": ",", "start": 1687, "end": 1688, "id": 278, "annotation": null}, {"text": "the", "start": 1689, "end": 1692, "id": 279, "annotation": null}, {"text": "proposed", "start": 1693, "end": 1701, "id": 280, "annotation": null}, {"text": "nitrogen", "start": 1702, "end": 1710, "id": 281, "annotation": "DOPANT"}, {"text": "doping", "start": 1711, "end": 1717, "id": 282, "annotation": null}, {"text": "strategy", "start": 1718, "end": 1726, "id": 283, "annotation": null}, {"text": "leads", "start": 1727, "end": 1732, "id": 284, "annotation": null}, {"text": "to", "start": 1733, "end": 1735, "id": 285, "annotation": null}, {"text": "perform", "start": 1736, "end": 1743, "id": 286, "annotation": null}, {"text": "a", "start": 1744, "end": 1745, "id": 287, "annotation": null}, {"text": "distinguish", "start": 1746, "end": 1757, "id": 288, "annotation": null}, {"text": "decrease", "start": 1758, "end": 1766, "id": 289, "annotation": null}, {"text": "in", "start": 1767, "end": 1769, "id": 290, "annotation": null}, {"text": "the", "start": 1770, "end": 1773, "id": 291, "annotation": null}, {"text": "onset", "start": 1774, "end": 1779, "id": 292, "annotation": null}, {"text": "potential", "start": 1780, "end": 1789, "id": 293, "annotation": null}, {"text": "of", "start": 1790, "end": 1792, "id": 294, "annotation": null}, {"text": "the", "start": 1793, "end": 1796, "id": 295, "annotation": null}, {"text": "urea", "start": 1797, "end": 1801, "id": 296, "annotation": null}, {"text": "electrooxidation", "start": 1802, "end": 1818, "id": 297, "annotation": null}, {"text": "which", "start": 1819, "end": 1824, "id": 298, "annotation": null}, {"text": "reduces", "start": 1825, "end": 1832, "id": 299, "annotation": null}, {"text": "the", "start": 1833, "end": 1836, "id": 300, "annotation": null}, {"text": "required", "start": 1837, "end": 1845, "id": 301, "annotation": null}, {"text": "energy", "start": 1846, "end": 1852, "id": 302, "annotation": null}, {"text": "for", "start": 1853, "end": 1856, "id": 303, "annotation": null}, {"text": "the", "start": 1857, "end": 1860, "id": 304, "annotation": null}, {"text": "electrolysis", "start": 1861, "end": 1873, "id": 305, "annotation": null}, {"text": "process", "start": 1874, "end": 1881, "id": 306, "annotation": null}, {"text": ".", "start": 1882, "end": 1883, "id": 307, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "This Letter reports on the preparation and properties of germanium-doped silica thin films by a new technique namely inductively coupled plasma-enhanced chemical vapor deposition (ICP-CVD). 13.56 MHz ICP was generated inside the chamber upon the supplying of 1 KW r.f. power at 2.5 Pa. The Films have been deposited on Si-wafers from the tetraethoxysilane, tetramethoxygermane and oxygen system at 400 \u00b0C. The behaviors of \u223c200 and \u223c240 nm UV absorptions under different treatment conditions comprising annealing temperatures and excimer laser exposure have been systematically investigated. A low propagation loss of \u223c0.1 dB/cm at 1550 nm has been achieved.", "meta": {"doi": "10.1016/S0009-2614(02)01837-7"}, "_input_hash": 1435429638, "_task_hash": -642334234, "tokens": [[{"text": "This", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "Letter", "start": 5, "end": 11, "id": 1, "annotation": null}, {"text": "reports", "start": 12, "end": 19, "id": 2, "annotation": null}, {"text": "on", "start": 20, "end": 22, "id": 3, "annotation": null}, {"text": "the", "start": 23, "end": 26, "id": 4, "annotation": null}, {"text": "preparation", "start": 27, "end": 38, "id": 5, "annotation": null}, {"text": "and", "start": 39, "end": 42, "id": 6, "annotation": null}, {"text": "properties", "start": 43, "end": 53, "id": 7, "annotation": null}, {"text": "of", "start": 54, "end": 56, "id": 8, "annotation": null}, {"text": "germanium", "start": 57, "end": 66, "id": 9, "annotation": "DOPANT"}, {"text": "-", "start": 67, "end": 68, "id": 10, "annotation": null}, {"text": "doped", "start": 69, "end": 74, "id": 11, "annotation": null}, {"text": "silica", "start": 75, "end": 81, "id": 12, "annotation": "BASEMAT"}, {"text": "thin", "start": 82, "end": 86, "id": 13, "annotation": null}, {"text": "films", "start": 87, "end": 92, "id": 14, "annotation": null}, {"text": "by", "start": 93, "end": 95, "id": 15, "annotation": null}, {"text": "a", "start": 96, "end": 97, "id": 16, "annotation": null}, {"text": "new", "start": 98, "end": 101, "id": 17, "annotation": null}, {"text": "technique", "start": 102, "end": 111, "id": 18, "annotation": null}, {"text": "namely", "start": 112, "end": 118, "id": 19, "annotation": null}, {"text": "inductively", "start": 119, "end": 130, "id": 20, "annotation": null}, {"text": "coupled", "start": 131, "end": 138, "id": 21, "annotation": null}, {"text": "plasma", "start": 139, "end": 145, "id": 22, "annotation": null}, {"text": "-", "start": 146, "end": 147, "id": 23, "annotation": null}, {"text": "enhanced", "start": 148, "end": 156, "id": 24, "annotation": null}, {"text": "chemical", "start": 157, "end": 165, "id": 25, "annotation": null}, {"text": "vapor", "start": 166, "end": 171, "id": 26, "annotation": null}, {"text": "deposition", "start": 172, "end": 182, "id": 27, "annotation": null}, {"text": "(", "start": 183, "end": 184, "id": 28, "annotation": null}, {"text": "ICP", "start": 185, "end": 188, "id": 29, "annotation": null}, {"text": "-", "start": 189, "end": 190, "id": 30, "annotation": null}, {"text": "CVD", "start": 191, "end": 194, "id": 31, "annotation": null}, {"text": ")", "start": 195, "end": 196, "id": 32, "annotation": null}, {"text": ".", "start": 197, "end": 198, "id": 33, "annotation": null}], [{"text": "13.56", "start": 199, "end": 204, "id": 34, "annotation": null}, {"text": "MHz", "start": 205, "end": 208, "id": 35, "annotation": null}, {"text": "ICP", "start": 209, "end": 212, "id": 36, "annotation": null}, {"text": "was", "start": 213, "end": 216, "id": 37, "annotation": null}, {"text": "generated", "start": 217, "end": 226, "id": 38, "annotation": null}, {"text": "inside", "start": 227, "end": 233, "id": 39, "annotation": null}, {"text": "the", "start": 234, "end": 237, "id": 40, "annotation": null}, {"text": "chamber", "start": 238, "end": 245, "id": 41, "annotation": null}, {"text": "upon", "start": 246, "end": 250, "id": 42, "annotation": null}, {"text": "the", "start": 251, "end": 254, "id": 43, "annotation": null}, {"text": "supplying", "start": 255, "end": 264, "id": 44, "annotation": null}, {"text": "of", "start": 265, "end": 267, "id": 45, "annotation": null}, {"text": "1", "start": 268, "end": 269, "id": 46, "annotation": null}, {"text": "KW", "start": 270, "end": 272, "id": 47, "annotation": null}, {"text": "r.f", "start": 273, "end": 276, "id": 48, "annotation": null}, {"text": ".", "start": 277, "end": 278, "id": 49, "annotation": null}], [{"text": "power", "start": 279, "end": 284, "id": 50, "annotation": null}, {"text": "at", "start": 285, "end": 287, "id": 51, "annotation": null}, {"text": "2.5", "start": 288, "end": 291, "id": 52, "annotation": null}, {"text": "Pa.", "start": 292, "end": 295, "id": 53, "annotation": null}], [{"text": "The", "start": 296, "end": 299, "id": 54, "annotation": null}, {"text": "Films", "start": 300, "end": 305, "id": 55, "annotation": null}, {"text": "have", "start": 306, "end": 310, "id": 56, "annotation": null}, {"text": "been", "start": 311, "end": 315, "id": 57, "annotation": null}, {"text": "deposited", "start": 316, "end": 325, "id": 58, "annotation": null}, {"text": "on", "start": 326, "end": 328, "id": 59, "annotation": null}, {"text": "Si", "start": 329, "end": 331, "id": 60, "annotation": null}, {"text": "-", "start": 332, "end": 333, "id": 61, "annotation": null}, {"text": "wafers", "start": 334, "end": 340, "id": 62, "annotation": null}, {"text": "from", "start": 341, "end": 345, "id": 63, "annotation": null}, {"text": "the", "start": 346, "end": 349, "id": 64, "annotation": null}, {"text": "tetraethoxysilane", "start": 350, "end": 367, "id": 65, "annotation": null}, {"text": ",", "start": 368, "end": 369, "id": 66, "annotation": null}, {"text": "tetramethoxygermane", "start": 370, "end": 389, "id": 67, "annotation": null}, {"text": "and", "start": 390, "end": 393, "id": 68, "annotation": null}, {"text": "oxygen", "start": 394, "end": 400, "id": 69, "annotation": null}, {"text": "system", "start": 401, "end": 407, "id": 70, "annotation": null}, {"text": "at", "start": 408, "end": 410, "id": 71, "annotation": null}, {"text": "400", "start": 411, "end": 414, "id": 72, "annotation": null}, {"text": "\u00b0", "start": 415, "end": 416, "id": 73, "annotation": null}, {"text": "C", "start": 417, "end": 418, "id": 74, "annotation": null}, {"text": ".", "start": 419, "end": 420, "id": 75, "annotation": null}], [{"text": "The", "start": 421, "end": 424, "id": 76, "annotation": null}, {"text": "behaviors", "start": 425, "end": 434, "id": 77, "annotation": null}, {"text": "of", "start": 435, "end": 437, "id": 78, "annotation": null}, {"text": "\u223c200", "start": 438, "end": 442, "id": 79, "annotation": null}, {"text": "and", "start": 443, "end": 446, "id": 80, "annotation": null}, {"text": "\u223c240", "start": 447, "end": 451, "id": 81, "annotation": null}, {"text": "nm", "start": 452, "end": 454, "id": 82, "annotation": null}, {"text": "UV", "start": 455, "end": 457, "id": 83, "annotation": null}, {"text": "absorptions", "start": 458, "end": 469, "id": 84, "annotation": null}, {"text": "under", "start": 470, "end": 475, "id": 85, "annotation": null}, {"text": "different", "start": 476, "end": 485, "id": 86, "annotation": null}, {"text": "treatment", "start": 486, "end": 495, "id": 87, "annotation": null}, {"text": "conditions", "start": 496, "end": 506, "id": 88, "annotation": null}, {"text": "comprising", "start": 507, "end": 517, "id": 89, "annotation": null}, {"text": "annealing", "start": 518, "end": 527, "id": 90, "annotation": null}, {"text": "temperatures", "start": 528, "end": 540, "id": 91, "annotation": null}, {"text": "and", "start": 541, "end": 544, "id": 92, "annotation": null}, {"text": "excimer", "start": 545, "end": 552, "id": 93, "annotation": null}, {"text": "laser", "start": 553, "end": 558, "id": 94, "annotation": null}, {"text": "exposure", "start": 559, "end": 567, "id": 95, "annotation": null}, {"text": "have", "start": 568, "end": 572, "id": 96, "annotation": null}, {"text": "been", "start": 573, "end": 577, "id": 97, "annotation": null}, {"text": "systematically", "start": 578, "end": 592, "id": 98, "annotation": null}, {"text": "investigated", "start": 593, "end": 605, "id": 99, "annotation": null}, {"text": ".", "start": 606, "end": 607, "id": 100, "annotation": null}], [{"text": "A", "start": 608, "end": 609, "id": 101, "annotation": null}, {"text": "low", "start": 610, "end": 613, "id": 102, "annotation": null}, {"text": "propagation", "start": 614, "end": 625, "id": 103, "annotation": null}, {"text": "loss", "start": 626, "end": 630, "id": 104, "annotation": null}, {"text": "of", "start": 631, "end": 633, "id": 105, "annotation": null}, {"text": "\u223c0.1", "start": 634, "end": 638, "id": 106, "annotation": null}, {"text": "dB", "start": 639, "end": 641, "id": 107, "annotation": null}, {"text": "/", "start": 642, "end": 643, "id": 108, "annotation": null}, {"text": "cm", "start": 644, "end": 646, "id": 109, "annotation": null}, {"text": "at", "start": 647, "end": 649, "id": 110, "annotation": null}, {"text": "1550", "start": 650, "end": 654, "id": 111, "annotation": null}, {"text": "nm", "start": 655, "end": 657, "id": 112, "annotation": null}, {"text": "has", "start": 658, "end": 661, "id": 113, "annotation": null}, {"text": "been", "start": 662, "end": 666, "id": 114, "annotation": null}, {"text": "achieved", "start": 667, "end": 675, "id": 115, "annotation": null}, {"text": ".", "start": 676, "end": 677, "id": 116, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Ga doped ZnO (GZO) thin films were prepared by rf-magnetron sputtering on glass substrate for window heater applications. Electrical and optical properties of these films were analyzed in order to investigate on substrate temperature and rf power dependencies. High quality GZO films with a resistivity of 1.30\u00d710\u22124 \u03a9 cm and a transparency above 90% in the visible range were able to be formed. GZO films have been patterned on glass substrate as a line heater. This GZO line heater showed the rapid heat radiation property from room temperature to 90 \u00b0C for 22 s at the applied voltage of 42 V. These results could provide a possibility to use GZO as effective transparent heaters.", "meta": {"doi": "10.1016/j.tsf.2007.03.100"}, "_input_hash": -1749293764, "_task_hash": 129082547, "tokens": [[{"text": "Ga", "start": 0, "end": 2, "id": 0, "annotation": "DOPANT"}, {"text": "doped", "start": 3, "end": 8, "id": 1, "annotation": null}, {"text": "ZnO", "start": 9, "end": 12, "id": 2, "annotation": "BASEMAT"}, {"text": "(", "start": 13, "end": 14, "id": 3, "annotation": null}, {"text": "GZO", "start": 15, "end": 18, "id": 4, "annotation": null}, {"text": ")", "start": 19, "end": 20, "id": 5, "annotation": null}, {"text": "thin", "start": 21, "end": 25, "id": 6, "annotation": null}, {"text": "films", "start": 26, "end": 31, "id": 7, "annotation": null}, {"text": "were", "start": 32, "end": 36, "id": 8, "annotation": null}, {"text": "prepared", "start": 37, "end": 45, "id": 9, "annotation": null}, {"text": "by", "start": 46, "end": 48, "id": 10, "annotation": null}, {"text": "rf", "start": 49, "end": 51, "id": 11, "annotation": null}, {"text": "-", "start": 52, "end": 53, "id": 12, "annotation": null}, {"text": "magnetron", "start": 54, "end": 63, "id": 13, "annotation": null}, {"text": "sputtering", "start": 64, "end": 74, "id": 14, "annotation": null}, {"text": "on", "start": 75, "end": 77, "id": 15, "annotation": null}, {"text": "glass", "start": 78, "end": 83, "id": 16, "annotation": null}, {"text": "substrate", "start": 84, "end": 93, "id": 17, "annotation": null}, {"text": "for", "start": 94, "end": 97, "id": 18, "annotation": null}, {"text": "window", "start": 98, "end": 104, "id": 19, "annotation": null}, {"text": "heater", "start": 105, "end": 111, "id": 20, "annotation": null}, {"text": "applications", "start": 112, "end": 124, "id": 21, "annotation": null}, {"text": ".", "start": 125, "end": 126, "id": 22, "annotation": null}], [{"text": "Electrical", "start": 127, "end": 137, "id": 23, "annotation": null}, {"text": "and", "start": 138, "end": 141, "id": 24, "annotation": null}, {"text": "optical", "start": 142, "end": 149, "id": 25, "annotation": null}, {"text": "properties", "start": 150, "end": 160, "id": 26, "annotation": null}, {"text": "of", "start": 161, "end": 163, "id": 27, "annotation": null}, {"text": "these", "start": 164, "end": 169, "id": 28, "annotation": null}, {"text": "films", "start": 170, "end": 175, "id": 29, "annotation": null}, {"text": "were", "start": 176, "end": 180, "id": 30, "annotation": null}, {"text": "analyzed", "start": 181, "end": 189, "id": 31, "annotation": null}, {"text": "in", "start": 190, "end": 192, "id": 32, "annotation": null}, {"text": "order", "start": 193, "end": 198, "id": 33, "annotation": null}, {"text": "to", "start": 199, "end": 201, "id": 34, "annotation": null}, {"text": "investigate", "start": 202, "end": 213, "id": 35, "annotation": null}, {"text": "on", "start": 214, "end": 216, "id": 36, "annotation": null}, {"text": "substrate", "start": 217, "end": 226, "id": 37, "annotation": null}, {"text": "temperature", "start": 227, "end": 238, "id": 38, "annotation": null}, {"text": "and", "start": 239, "end": 242, "id": 39, "annotation": null}, {"text": "rf", "start": 243, "end": 245, "id": 40, "annotation": null}, {"text": "power", "start": 246, "end": 251, "id": 41, "annotation": null}, {"text": "dependencies", "start": 252, "end": 264, "id": 42, "annotation": null}, {"text": ".", "start": 265, "end": 266, "id": 43, "annotation": null}], [{"text": "High", "start": 267, "end": 271, "id": 44, "annotation": null}, {"text": "quality", "start": 272, "end": 279, "id": 45, "annotation": null}, {"text": "GZO", "start": 280, "end": 283, "id": 46, "annotation": null}, {"text": "films", "start": 284, "end": 289, "id": 47, "annotation": null}, {"text": "with", "start": 290, "end": 294, "id": 48, "annotation": null}, {"text": "a", "start": 295, "end": 296, "id": 49, "annotation": null}, {"text": "resistivity", "start": 297, "end": 308, "id": 50, "annotation": null}, {"text": "of", "start": 309, "end": 311, "id": 51, "annotation": null}, {"text": "1.30\u00d710\u22124", "start": 312, "end": 321, "id": 52, "annotation": null}, {"text": "\u03a9", "start": 322, "end": 323, "id": 53, "annotation": null}, {"text": "cm", "start": 324, "end": 326, "id": 54, "annotation": null}, {"text": "and", "start": 327, "end": 330, "id": 55, "annotation": null}, {"text": "a", "start": 331, "end": 332, "id": 56, "annotation": null}, {"text": "transparency", "start": 333, "end": 345, "id": 57, "annotation": null}, {"text": "above", "start": 346, "end": 351, "id": 58, "annotation": null}, {"text": "90", "start": 352, "end": 354, "id": 59, "annotation": null}, {"text": "%", "start": 355, "end": 356, "id": 60, "annotation": null}, {"text": "in", "start": 357, "end": 359, "id": 61, "annotation": null}, {"text": "the", "start": 360, "end": 363, "id": 62, "annotation": null}, {"text": "visible", "start": 364, "end": 371, "id": 63, "annotation": null}, {"text": "range", "start": 372, "end": 377, "id": 64, "annotation": null}, {"text": "were", "start": 378, "end": 382, "id": 65, "annotation": null}, {"text": "able", "start": 383, "end": 387, "id": 66, "annotation": null}, {"text": "to", "start": 388, "end": 390, "id": 67, "annotation": null}, {"text": "be", "start": 391, "end": 393, "id": 68, "annotation": null}, {"text": "formed", "start": 394, "end": 400, "id": 69, "annotation": null}, {"text": ".", "start": 401, "end": 402, "id": 70, "annotation": null}], [{"text": "GZO", "start": 403, "end": 406, "id": 71, "annotation": null}, {"text": "films", "start": 407, "end": 412, "id": 72, "annotation": null}, {"text": "have", "start": 413, "end": 417, "id": 73, "annotation": null}, {"text": "been", "start": 418, "end": 422, "id": 74, "annotation": null}, {"text": "patterned", "start": 423, "end": 432, "id": 75, "annotation": null}, {"text": "on", "start": 433, "end": 435, "id": 76, "annotation": null}, {"text": "glass", "start": 436, "end": 441, "id": 77, "annotation": null}, {"text": "substrate", "start": 442, "end": 451, "id": 78, "annotation": null}, {"text": "as", "start": 452, "end": 454, "id": 79, "annotation": null}, {"text": "a", "start": 455, "end": 456, "id": 80, "annotation": null}, {"text": "line", "start": 457, "end": 461, "id": 81, "annotation": null}, {"text": "heater", "start": 462, "end": 468, "id": 82, "annotation": null}, {"text": ".", "start": 469, "end": 470, "id": 83, "annotation": null}], [{"text": "This", "start": 471, "end": 475, "id": 84, "annotation": null}, {"text": "GZO", "start": 476, "end": 479, "id": 85, "annotation": null}, {"text": "line", "start": 480, "end": 484, "id": 86, "annotation": null}, {"text": "heater", "start": 485, "end": 491, "id": 87, "annotation": null}, {"text": "showed", "start": 492, "end": 498, "id": 88, "annotation": null}, {"text": "the", "start": 499, "end": 502, "id": 89, "annotation": null}, {"text": "rapid", "start": 503, "end": 508, "id": 90, "annotation": null}, {"text": "heat", "start": 509, "end": 513, "id": 91, "annotation": null}, {"text": "radiation", "start": 514, "end": 523, "id": 92, "annotation": null}, {"text": "property", "start": 524, "end": 532, "id": 93, "annotation": null}, {"text": "from", "start": 533, "end": 537, "id": 94, "annotation": null}, {"text": "room", "start": 538, "end": 542, "id": 95, "annotation": null}, {"text": "temperature", "start": 543, "end": 554, "id": 96, "annotation": null}, {"text": "to", "start": 555, "end": 557, "id": 97, "annotation": null}, {"text": "90", "start": 558, "end": 560, "id": 98, "annotation": null}, {"text": "\u00b0", "start": 561, "end": 562, "id": 99, "annotation": null}, {"text": "C", "start": 563, "end": 564, "id": 100, "annotation": null}, {"text": "for", "start": 565, "end": 568, "id": 101, "annotation": null}, {"text": "22", "start": 569, "end": 571, "id": 102, "annotation": null}, {"text": "s", "start": 572, "end": 573, "id": 103, "annotation": null}, {"text": "at", "start": 574, "end": 576, "id": 104, "annotation": null}, {"text": "the", "start": 577, "end": 580, "id": 105, "annotation": null}, {"text": "applied", "start": 581, "end": 588, "id": 106, "annotation": null}, {"text": "voltage", "start": 589, "end": 596, "id": 107, "annotation": null}, {"text": "of", "start": 597, "end": 599, "id": 108, "annotation": null}, {"text": "42", "start": 600, "end": 602, "id": 109, "annotation": null}, {"text": "V.", "start": 603, "end": 605, "id": 110, "annotation": null}], [{"text": "These", "start": 606, "end": 611, "id": 111, "annotation": null}, {"text": "results", "start": 612, "end": 619, "id": 112, "annotation": null}, {"text": "could", "start": 620, "end": 625, "id": 113, "annotation": null}, {"text": "provide", "start": 626, "end": 633, "id": 114, "annotation": null}, {"text": "a", "start": 634, "end": 635, "id": 115, "annotation": null}, {"text": "possibility", "start": 636, "end": 647, "id": 116, "annotation": null}, {"text": "to", "start": 648, "end": 650, "id": 117, "annotation": null}, {"text": "use", "start": 651, "end": 654, "id": 118, "annotation": null}, {"text": "GZO", "start": 655, "end": 658, "id": 119, "annotation": null}, {"text": "as", "start": 659, "end": 661, "id": 120, "annotation": null}, {"text": "effective", "start": 662, "end": 671, "id": 121, "annotation": null}, {"text": "transparent", "start": 672, "end": 683, "id": 122, "annotation": null}, {"text": "heaters", "start": 684, "end": 691, "id": 123, "annotation": null}, {"text": ".", "start": 692, "end": 693, "id": 124, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "\u00a9 2015 WILEY-VCH Verlag GmbH & Co. KGaA. Fiber lasers operating via Raman gain or based on rare-earth-doped active fibers are widely used as sources of CW radiation. However, these lasers are only quasi-CW: their intensity fluctuates strongly on short time scales. Here the framework of the complex Ginzburg-Landau equations, which are well known as an efficient model of mode-locked fiber lasers, is applied for the description of quasi-CW fiber lasers. The vector Ginzburg-Landau model of a Raman fiber laser describes the experimentally observed turbulent-like intensity dynamics, as well as polarization rogue waves. Our results open debates about the common underlying physics of operation of very different laser types - quasi-CW lasers and passively mode-locked lasers. Fiber lasers operating via Raman gain or based on rare-earth-doped active fibers are widely used as sources of CW radiation. However, these lasers are only quasi-CW: their intensity fluctuates strongly on short time scales. Here the framework of the complex Ginzburg-Landau equations, which are well known as an efficient model of mode-locked fiber lasers, is applied for the description of quasi-CW fiber lasers. Our results open debates about the common underlying physics of operation of very different laser types - quasi-CW lasers and passively mode-locked lasers.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "KGaA", "start": 35, "end": 39, "annotation": null}, {"text": ".", "start": 39, "end": 40, "annotation": null}], [{"text": "Fiber", "start": 41, "end": 46, "annotation": null}, {"text": "lasers", "start": 47, "end": 53, "annotation": null}, {"text": "operating", "start": 54, "end": 63, "annotation": null}, {"text": "via", "start": 64, "end": 67, "annotation": null}, {"text": "Raman", "start": 68, "end": 73, "annotation": null}, {"text": "gain", "start": 74, "end": 78, "annotation": null}, {"text": "or", "start": 79, "end": 81, "annotation": null}, {"text": "based", "start": 82, "end": 87, "annotation": null}, {"text": "on", "start": 88, "end": 90, "annotation": null}, {"text": "rare", "start": 91, "end": 95, "annotation": "DOPANT"}, {"text": "-", "start": 95, "end": 96, "annotation": "DOPANT"}, {"text": "earth", "start": 96, "end": 101, "annotation": "DOPANT"}, {"text": "-", "start": 101, "end": 102, "annotation": null}, {"text": "doped", "start": 102, "end": 107, "annotation": null}, {"text": "active", "start": 108, "end": 114, "annotation": "BASEMAT"}, {"text": "fibers", "start": 115, "end": 121, "annotation": "BASEMAT"}, {"text": "are", "start": 122, "end": 125, "annotation": null}, {"text": "widely", "start": 126, "end": 132, "annotation": null}, {"text": "used", "start": 133, "end": 137, "annotation": null}, {"text": "as", "start": 138, "end": 140, "annotation": null}, {"text": "sources", "start": 141, "end": 148, "annotation": null}, {"text": "of", "start": 149, "end": 151, "annotation": null}, {"text": "CW", "start": 152, "end": 154, "annotation": null}, {"text": "radiation", "start": 155, "end": 164, "annotation": null}, {"text": ".", "start": 164, "end": 165, "annotation": null}], [{"text": "However", "start": 166, "end": 173, "annotation": null}, {"text": ",", "start": 173, "end": 174, "annotation": null}, {"text": "these", "start": 175, "end": 180, "annotation": null}, {"text": "lasers", "start": 181, "end": 187, "annotation": null}, {"text": "are", "start": 188, "end": 191, "annotation": null}, {"text": "only", "start": 192, "end": 196, "annotation": null}, {"text": "quasi-CW", "start": 197, "end": 205, "annotation": null}, {"text": ":", "start": 205, "end": 206, "annotation": null}, {"text": "their", "start": 207, "end": 212, "annotation": null}, {"text": "intensity", "start": 213, "end": 222, "annotation": null}, {"text": "fluctuates", "start": 223, "end": 233, "annotation": null}, {"text": "strongly", "start": 234, "end": 242, "annotation": null}, {"text": "on", "start": 243, "end": 245, "annotation": null}, {"text": "short", "start": 246, "end": 251, "annotation": null}, {"text": "time", "start": 252, "end": 256, "annotation": null}, {"text": "scales", "start": 257, "end": 263, "annotation": null}, {"text": ".", "start": 263, "end": 264, "annotation": null}], [{"text": "Here", "start": 265, "end": 269, "annotation": null}, {"text": "the", "start": 270, "end": 273, "annotation": null}, {"text": "framework", "start": 274, "end": 283, "annotation": null}, {"text": "of", "start": 284, "end": 286, "annotation": null}, {"text": "the", "start": 287, "end": 290, "annotation": null}, {"text": "complex", "start": 291, "end": 298, "annotation": null}, {"text": "Ginzburg", "start": 299, "end": 307, "annotation": null}, {"text": "-", "start": 307, "end": 308, "annotation": null}, {"text": "Landau", "start": 308, "end": 314, "annotation": null}, {"text": "equations", "start": 315, "end": 324, "annotation": null}, {"text": ",", "start": 324, "end": 325, "annotation": null}, {"text": "which", "start": 326, "end": 331, "annotation": null}, {"text": "are", "start": 332, "end": 335, "annotation": null}, {"text": "well", "start": 336, "end": 340, "annotation": null}, {"text": "known", "start": 341, "end": 346, "annotation": null}, {"text": "as", "start": 347, "end": 349, "annotation": null}, {"text": "an", "start": 350, "end": 352, "annotation": null}, {"text": "efficient", "start": 353, "end": 362, "annotation": null}, {"text": "model", "start": 363, "end": 368, "annotation": null}, {"text": "of", "start": 369, "end": 371, "annotation": null}, {"text": "mode", "start": 372, "end": 376, "annotation": null}, {"text": "-", "start": 376, "end": 377, "annotation": null}, {"text": "locked", "start": 377, "end": 383, "annotation": null}, {"text": "fiber", "start": 384, "end": 389, "annotation": null}, {"text": "lasers", "start": 390, "end": 396, "annotation": null}, {"text": ",", "start": 396, "end": 397, "annotation": null}, {"text": "is", "start": 398, "end": 400, "annotation": null}, {"text": "applied", "start": 401, "end": 408, "annotation": null}, {"text": "for", "start": 409, "end": 412, "annotation": null}, {"text": "the", "start": 413, "end": 416, "annotation": null}, {"text": "description", "start": 417, "end": 428, "annotation": null}, {"text": "of", "start": 429, "end": 431, "annotation": null}, {"text": "quasi-CW", "start": 432, "end": 440, "annotation": null}, {"text": "fiber", "start": 441, "end": 446, "annotation": null}, {"text": "lasers", "start": 447, "end": 453, "annotation": null}, {"text": ".", "start": 453, "end": 454, "annotation": null}], [{"text": "The", "start": 455, "end": 458, "annotation": null}, {"text": "vector", "start": 459, "end": 465, "annotation": null}, {"text": "Ginzburg", "start": 466, "end": 474, "annotation": null}, {"text": "-", "start": 474, "end": 475, "annotation": null}, {"text": "Landau", "start": 475, "end": 481, "annotation": null}, {"text": "model", "start": 482, "end": 487, "annotation": null}, {"text": "of", "start": 488, "end": 490, "annotation": null}, {"text": "a", "start": 491, "end": 492, "annotation": null}, {"text": "Raman", "start": 493, "end": 498, "annotation": null}, {"text": "fiber", "start": 499, "end": 504, "annotation": null}, {"text": "laser", "start": 505, "end": 510, "annotation": null}, {"text": "describes", "start": 511, "end": 520, "annotation": null}, {"text": "the", "start": 521, "end": 524, "annotation": null}, {"text": "experimentally", "start": 525, "end": 539, "annotation": null}, {"text": "observed", "start": 540, "end": 548, "annotation": null}, {"text": "turbulent", "start": 549, "end": 558, "annotation": null}, {"text": "-", "start": 558, "end": 559, "annotation": null}, {"text": "like", "start": 559, "end": 563, "annotation": null}, {"text": "intensity", "start": 564, "end": 573, "annotation": null}, {"text": "dynamics", "start": 574, "end": 582, "annotation": null}, {"text": ",", "start": 582, "end": 583, "annotation": null}, {"text": "as", "start": 584, "end": 586, "annotation": null}, {"text": "well", "start": 587, "end": 591, "annotation": null}, {"text": "as", "start": 592, "end": 594, "annotation": null}, {"text": "polarization", "start": 595, "end": 607, "annotation": null}, {"text": "rogue", "start": 608, "end": 613, "annotation": null}, {"text": "waves", "start": 614, "end": 619, "annotation": null}, {"text": ".", "start": 619, "end": 620, "annotation": null}], [{"text": "Our", "start": 621, "end": 624, "annotation": null}, {"text": "results", "start": 625, "end": 632, "annotation": null}, {"text": "open", "start": 633, "end": 637, "annotation": null}, {"text": "debates", "start": 638, "end": 645, "annotation": null}, {"text": "about", "start": 646, "end": 651, "annotation": null}, {"text": "the", "start": 652, "end": 655, "annotation": null}, {"text": "common", "start": 656, "end": 662, "annotation": null}, {"text": "underlying", "start": 663, "end": 673, "annotation": null}, {"text": "physics", "start": 674, "end": 681, "annotation": null}, {"text": "of", "start": 682, "end": 684, "annotation": null}, {"text": "operation", "start": 685, "end": 694, "annotation": null}, {"text": "of", "start": 695, "end": 697, "annotation": null}, {"text": "very", "start": 698, "end": 702, "annotation": null}, {"text": "different", "start": 703, "end": 712, "annotation": null}, {"text": "laser", "start": 713, "end": 718, "annotation": null}, {"text": "types", "start": 719, "end": 724, "annotation": null}, {"text": "-", "start": 725, "end": 726, "annotation": null}, {"text": "quasi-CW", "start": 727, "end": 735, "annotation": null}, {"text": "lasers", "start": 736, "end": 742, "annotation": null}, {"text": "and", "start": 743, "end": 746, "annotation": null}, {"text": "passively", "start": 747, "end": 756, "annotation": null}, {"text": "mode", "start": 757, "end": 761, "annotation": null}, {"text": "-", "start": 761, "end": 762, "annotation": null}, {"text": "locked", "start": 762, "end": 768, "annotation": null}, {"text": "lasers", "start": 769, "end": 775, "annotation": null}, {"text": ".", "start": 775, "end": 776, "annotation": null}], [{"text": "Fiber", "start": 777, "end": 782, "annotation": null}, {"text": "lasers", "start": 783, "end": 789, "annotation": null}, {"text": "operating", "start": 790, "end": 799, "annotation": null}, {"text": "via", "start": 800, "end": 803, "annotation": null}, {"text": "Raman", "start": 804, "end": 809, "annotation": null}, {"text": "gain", "start": 810, "end": 814, "annotation": null}, {"text": "or", "start": 815, "end": 817, "annotation": null}, {"text": "based", "start": 818, "end": 823, "annotation": null}, {"text": "on", "start": 824, "end": 826, "annotation": null}, {"text": "rare", "start": 827, "end": 831, "annotation": "DOPANT"}, {"text": "-", "start": 831, "end": 832, "annotation": "DOPANT"}, {"text": "earth", "start": 832, "end": 837, "annotation": "DOPANT"}, {"text": "-", "start": 837, "end": 838, "annotation": null}, {"text": "doped", "start": 838, "end": 843, "annotation": null}, {"text": "active", "start": 844, "end": 850, "annotation": "BASEMAT"}, {"text": "fibers", "start": 851, "end": 857, "annotation": "BASEMAT"}, {"text": "are", "start": 858, "end": 861, "annotation": null}, {"text": "widely", "start": 862, "end": 868, "annotation": null}, {"text": "used", "start": 869, "end": 873, "annotation": null}, {"text": "as", "start": 874, "end": 876, "annotation": null}, {"text": "sources", "start": 877, "end": 884, "annotation": null}, {"text": "of", "start": 885, "end": 887, "annotation": null}, {"text": "CW", "start": 888, "end": 890, "annotation": null}, {"text": "radiation", "start": 891, "end": 900, "annotation": null}, {"text": ".", "start": 900, "end": 901, "annotation": null}], [{"text": "However", "start": 902, "end": 909, "annotation": null}, {"text": ",", "start": 909, "end": 910, "annotation": null}, {"text": "these", "start": 911, "end": 916, "annotation": null}, {"text": "lasers", "start": 917, "end": 923, "annotation": null}, {"text": "are", "start": 924, "end": 927, "annotation": null}, {"text": "only", "start": 928, "end": 932, "annotation": null}, {"text": "quasi-CW", "start": 933, "end": 941, "annotation": null}, {"text": ":", "start": 941, "end": 942, "annotation": null}, {"text": "their", "start": 943, "end": 948, "annotation": null}, {"text": "intensity", "start": 949, "end": 958, "annotation": null}, {"text": "fluctuates", "start": 959, "end": 969, "annotation": null}, {"text": "strongly", "start": 970, "end": 978, "annotation": null}, {"text": "on", "start": 979, "end": 981, "annotation": null}, {"text": "short", "start": 982, "end": 987, "annotation": null}, {"text": "time", "start": 988, "end": 992, "annotation": null}, {"text": "scales", "start": 993, "end": 999, "annotation": null}, {"text": ".", "start": 999, "end": 1000, "annotation": null}], [{"text": "Here", "start": 1001, "end": 1005, "annotation": null}, {"text": "the", "start": 1006, "end": 1009, "annotation": null}, {"text": "framework", "start": 1010, "end": 1019, "annotation": null}, {"text": "of", "start": 1020, "end": 1022, "annotation": null}, {"text": "the", "start": 1023, "end": 1026, "annotation": null}, {"text": "complex", "start": 1027, "end": 1034, "annotation": null}, {"text": "Ginzburg", "start": 1035, "end": 1043, "annotation": null}, {"text": "-", "start": 1043, "end": 1044, "annotation": null}, {"text": "Landau", "start": 1044, "end": 1050, "annotation": null}, {"text": "equations", "start": 1051, "end": 1060, "annotation": null}, {"text": ",", "start": 1060, "end": 1061, "annotation": null}, {"text": "which", "start": 1062, "end": 1067, "annotation": null}, {"text": "are", "start": 1068, "end": 1071, "annotation": null}, {"text": "well", "start": 1072, "end": 1076, "annotation": null}, {"text": "known", "start": 1077, "end": 1082, "annotation": null}, {"text": "as", "start": 1083, "end": 1085, "annotation": null}, {"text": "an", "start": 1086, "end": 1088, "annotation": null}, {"text": "efficient", "start": 1089, "end": 1098, "annotation": null}, {"text": "model", "start": 1099, "end": 1104, "annotation": null}, {"text": "of", "start": 1105, "end": 1107, "annotation": null}, {"text": "mode", "start": 1108, "end": 1112, "annotation": null}, {"text": "-", "start": 1112, "end": 1113, "annotation": null}, {"text": "locked", "start": 1113, "end": 1119, "annotation": null}, {"text": "fiber", "start": 1120, "end": 1125, "annotation": null}, {"text": "lasers", "start": 1126, "end": 1132, "annotation": null}, {"text": ",", "start": 1132, "end": 1133, "annotation": null}, {"text": "is", "start": 1134, "end": 1136, "annotation": null}, {"text": "applied", "start": 1137, "end": 1144, "annotation": null}, {"text": "for", "start": 1145, "end": 1148, "annotation": null}, {"text": "the", "start": 1149, "end": 1152, "annotation": null}, {"text": "description", "start": 1153, "end": 1164, "annotation": null}, {"text": "of", "start": 1165, "end": 1167, "annotation": null}, {"text": "quasi-CW", "start": 1168, "end": 1176, "annotation": null}, {"text": "fiber", "start": 1177, "end": 1182, "annotation": null}, {"text": "lasers", "start": 1183, "end": 1189, "annotation": null}, {"text": ".", "start": 1189, "end": 1190, "annotation": null}], [{"text": "Our", "start": 1191, "end": 1194, "annotation": null}, {"text": "results", "start": 1195, "end": 1202, "annotation": null}, {"text": "open", "start": 1203, "end": 1207, "annotation": null}, {"text": "debates", "start": 1208, "end": 1215, "annotation": null}, {"text": "about", "start": 1216, "end": 1221, "annotation": null}, {"text": "the", "start": 1222, "end": 1225, "annotation": null}, {"text": "common", "start": 1226, "end": 1232, "annotation": null}, {"text": "underlying", "start": 1233, "end": 1243, "annotation": null}, {"text": "physics", "start": 1244, "end": 1251, "annotation": null}, {"text": "of", "start": 1252, "end": 1254, "annotation": null}, {"text": "operation", "start": 1255, "end": 1264, "annotation": null}, {"text": "of", "start": 1265, "end": 1267, "annotation": null}, {"text": "very", "start": 1268, "end": 1272, "annotation": null}, {"text": "different", "start": 1273, "end": 1282, "annotation": null}, {"text": "laser", "start": 1283, "end": 1288, "annotation": null}, {"text": "types", "start": 1289, "end": 1294, "annotation": null}, {"text": "-", "start": 1295, "end": 1296, "annotation": null}, {"text": "quasi-CW", "start": 1297, "end": 1305, "annotation": null}, {"text": "lasers", "start": 1306, "end": 1312, "annotation": null}, {"text": "and", "start": 1313, "end": 1316, "annotation": null}, {"text": "passively", "start": 1317, "end": 1326, "annotation": null}, {"text": "mode", "start": 1327, "end": 1331, "annotation": null}, {"text": "-", "start": 1331, "end": 1332, "annotation": null}, {"text": "locked", "start": 1332, "end": 1338, "annotation": null}, {"text": "lasers", "start": 1339, "end": 1345, "annotation": null}, {"text": ".", "start": 1345, "end": 1346, "annotation": null}]]} -{"remark": "doping_annt1", "text": "The bad resistance to SO2 was still the primary defect of Mn/TiO2 catalyst for selective catalytic reduction of NOx with NH3. To address that, a series of MnNb/TiO2 catalyst samples with different Nb/Mn molar ratio were prepared by sol-gel method and used in NH3-SCR reaction. Experimental results indicated that the MnNb/TiO2-0.12 catalyst exhibited outstanding SCR activity and SO2 resistance. The introduction of Nb into Mn/TiO2 catalyst could promote the formation of more Mn4+ and chemisorbed oxygen species on its surface, along with the generation of more NO2. In addition, the doping of Nb on Mn/TiO2 catalyst could remarkably intensify its surface acidity. All these factors were conducive to improving the SCR performance of MnNb/TiO2-0.12 catalyst. The results of DRIFT study revealed that the NH3-SCR reaction over MnNb/TiO2-0.12 catalyst took place through both Eley\u2013Rideal and Langmuir-Hinshelwood pathways, in which Eley\u2013Rideal pathway was predominant. In the presence of SO2, it seemed that the NH3-SCR reaction over Mn/TiO2 and MnNb/TiO2-0.12 mainly happened between adsorbed NO2 and gaseous NH3 (Eley\u2013Rideal mechanism), thus the formation of more NO2 over MnNb/TiO2-0.12 catalyst should mainly account for its super SO2 tolerance.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "bad", "start": 4, "end": 7, "annotation": null}, {"text": "resistance", "start": 8, "end": 18, "annotation": null}, {"text": "to", "start": 19, "end": 21, "annotation": null}, {"text": "SO2", "start": 22, "end": 25, "annotation": null}, {"text": "was", "start": 26, "end": 29, "annotation": null}, {"text": "still", "start": 30, "end": 35, "annotation": null}, {"text": "the", "start": 36, "end": 39, "annotation": null}, {"text": "primary", "start": 40, "end": 47, "annotation": null}, {"text": "defect", "start": 48, "end": 54, "annotation": null}, {"text": "of", "start": 55, "end": 57, "annotation": null}, {"text": "Mn", "start": 58, "end": 60, "annotation": null}, {"text": "/", "start": 60, "end": 61, "annotation": null}, {"text": "TiO2", "start": 61, "end": 65, "annotation": null}, {"text": "catalyst", "start": 66, "end": 74, "annotation": null}, {"text": "for", "start": 75, "end": 78, "annotation": null}, {"text": "selective", "start": 79, "end": 88, "annotation": null}, {"text": "catalytic", "start": 89, "end": 98, "annotation": null}, {"text": "reduction", "start": 99, "end": 108, "annotation": null}, {"text": "of", "start": 109, "end": 111, "annotation": null}, {"text": "NOx", "start": 112, "end": 115, "annotation": null}, {"text": "with", "start": 116, "end": 120, "annotation": null}, {"text": "NH3", "start": 121, "end": 124, "annotation": null}, {"text": ".", "start": 124, "end": 125, "annotation": null}], [{"text": "To", "start": 126, "end": 128, "annotation": null}, {"text": "address", "start": 129, "end": 136, "annotation": null}, {"text": "that", "start": 137, "end": 141, "annotation": null}, {"text": ",", "start": 141, "end": 142, "annotation": null}, {"text": "a", "start": 143, "end": 144, "annotation": null}, {"text": "series", "start": 145, "end": 151, "annotation": null}, {"text": "of", "start": 152, "end": 154, "annotation": null}, {"text": "MnNb", "start": 155, "end": 159, "annotation": null}, {"text": "/", "start": 159, "end": 160, "annotation": null}, {"text": "TiO2", "start": 160, "end": 164, "annotation": null}, {"text": "catalyst", "start": 165, "end": 173, "annotation": null}, {"text": "samples", "start": 174, "end": 181, "annotation": null}, {"text": "with", "start": 182, "end": 186, "annotation": null}, {"text": "different", "start": 187, "end": 196, "annotation": null}, {"text": "Nb", "start": 197, "end": 199, "annotation": null}, {"text": "/", "start": 199, "end": 200, "annotation": null}, {"text": "Mn", "start": 200, "end": 202, "annotation": null}, {"text": "molar", "start": 203, "end": 208, "annotation": null}, {"text": "ratio", "start": 209, "end": 214, "annotation": null}, {"text": "were", "start": 215, "end": 219, "annotation": null}, {"text": "prepared", "start": 220, "end": 228, "annotation": null}, {"text": "by", "start": 229, "end": 231, "annotation": null}, {"text": "sol", "start": 232, "end": 235, "annotation": null}, {"text": "-", "start": 235, "end": 236, "annotation": null}, {"text": "gel", "start": 236, "end": 239, "annotation": null}, {"text": "method", "start": 240, "end": 246, "annotation": null}, {"text": "and", "start": 247, "end": 250, "annotation": null}, {"text": "used", "start": 251, "end": 255, "annotation": null}, {"text": "in", "start": 256, "end": 258, "annotation": null}, {"text": "NH3", "start": 259, "end": 262, "annotation": null}, {"text": "-", "start": 262, "end": 263, "annotation": null}, {"text": "SCR", "start": 263, "end": 266, "annotation": null}, {"text": "reaction", "start": 267, "end": 275, "annotation": null}, {"text": ".", "start": 275, "end": 276, "annotation": null}], [{"text": "Experimental", "start": 277, "end": 289, "annotation": null}, {"text": "results", "start": 290, "end": 297, "annotation": null}, {"text": "indicated", "start": 298, "end": 307, "annotation": null}, {"text": "that", "start": 308, "end": 312, "annotation": null}, {"text": "the", "start": 313, "end": 316, "annotation": null}, {"text": "MnNb", "start": 317, "end": 321, "annotation": null}, {"text": "/", "start": 321, "end": 322, "annotation": null}, {"text": "TiO2", "start": 322, "end": 326, "annotation": null}, {"text": "-", "start": 326, "end": 327, "annotation": null}, {"text": "0.12", "start": 327, "end": 331, "annotation": null}, {"text": "catalyst", "start": 332, "end": 340, "annotation": null}, {"text": "exhibited", "start": 341, "end": 350, "annotation": null}, {"text": "outstanding", "start": 351, "end": 362, "annotation": null}, {"text": "SCR", "start": 363, "end": 366, "annotation": null}, {"text": "activity", "start": 367, "end": 375, "annotation": null}, {"text": "and", "start": 376, "end": 379, "annotation": null}, {"text": "SO2", "start": 380, "end": 383, "annotation": null}, {"text": "resistance", "start": 384, "end": 394, "annotation": null}, {"text": ".", "start": 394, "end": 395, "annotation": null}], [{"text": "The", "start": 396, "end": 399, "annotation": null}, {"text": "introduction", "start": 400, "end": 412, "annotation": null}, {"text": "of", "start": 413, "end": 415, "annotation": null}, {"text": "Nb", "start": 416, "end": 418, "annotation": "DOPANT"}, {"text": "into", "start": 419, "end": 423, "annotation": null}, {"text": "Mn", "start": 424, "end": 426, "annotation": "BASEMAT"}, {"text": "/", "start": 426, "end": 427, "annotation": "BASEMAT"}, {"text": "TiO2", "start": 427, "end": 431, "annotation": "BASEMAT"}, {"text": "catalyst", "start": 432, "end": 440, "annotation": null}, {"text": "could", "start": 441, "end": 446, "annotation": null}, {"text": "promote", "start": 447, "end": 454, "annotation": null}, {"text": "the", "start": 455, "end": 458, "annotation": null}, {"text": "formation", "start": 459, "end": 468, "annotation": null}, {"text": "of", "start": 469, "end": 471, "annotation": null}, {"text": "more", "start": 472, "end": 476, "annotation": null}, {"text": "Mn4+", "start": 477, "end": 481, "annotation": null}, {"text": "and", "start": 482, "end": 485, "annotation": null}, {"text": "chemisorbed", "start": 486, "end": 497, "annotation": null}, {"text": "oxygen", "start": 498, "end": 504, "annotation": null}, {"text": "species", "start": 505, "end": 512, "annotation": null}, {"text": "on", "start": 513, "end": 515, "annotation": null}, {"text": "its", "start": 516, "end": 519, "annotation": null}, {"text": "surface", "start": 520, "end": 527, "annotation": null}, {"text": ",", "start": 527, "end": 528, "annotation": null}, {"text": "along", "start": 529, "end": 534, "annotation": null}, {"text": "with", "start": 535, "end": 539, "annotation": null}, {"text": "the", "start": 540, "end": 543, "annotation": null}, {"text": "generation", "start": 544, "end": 554, "annotation": null}, {"text": "of", "start": 555, "end": 557, "annotation": null}, {"text": "more", "start": 558, "end": 562, "annotation": null}, {"text": "NO2", "start": 563, "end": 566, "annotation": null}, {"text": ".", "start": 566, "end": 567, "annotation": null}], [{"text": "In", "start": 568, "end": 570, "annotation": null}, {"text": "addition", "start": 571, "end": 579, "annotation": null}, {"text": ",", "start": 579, "end": 580, "annotation": null}, {"text": "the", "start": 581, "end": 584, "annotation": null}, {"text": "doping", "start": 585, "end": 591, "annotation": null}, {"text": "of", "start": 592, "end": 594, "annotation": null}, {"text": "Nb", "start": 595, "end": 597, "annotation": "DOPANT"}, {"text": "on", "start": 598, "end": 600, "annotation": null}, {"text": "Mn", "start": 601, "end": 603, "annotation": "BASEMAT"}, {"text": "/", "start": 603, "end": 604, "annotation": "BASEMAT"}, {"text": "TiO2", "start": 604, "end": 608, "annotation": "BASEMAT"}, {"text": "catalyst", "start": 609, "end": 617, "annotation": null}, {"text": "could", "start": 618, "end": 623, "annotation": null}, {"text": "remarkably", "start": 624, "end": 634, "annotation": null}, {"text": "intensify", "start": 635, "end": 644, "annotation": null}, {"text": "its", "start": 645, "end": 648, "annotation": null}, {"text": "surface", "start": 649, "end": 656, "annotation": null}, {"text": "acidity", "start": 657, "end": 664, "annotation": null}, {"text": ".", "start": 664, "end": 665, "annotation": null}], [{"text": "All", "start": 666, "end": 669, "annotation": null}, {"text": "these", "start": 670, "end": 675, "annotation": null}, {"text": "factors", "start": 676, "end": 683, "annotation": null}, {"text": "were", "start": 684, "end": 688, "annotation": null}, {"text": "conducive", "start": 689, "end": 698, "annotation": null}, {"text": "to", "start": 699, "end": 701, "annotation": null}, {"text": "improving", "start": 702, "end": 711, "annotation": null}, {"text": "the", "start": 712, "end": 715, "annotation": null}, {"text": "SCR", "start": 716, "end": 719, "annotation": null}, {"text": "performance", "start": 720, "end": 731, "annotation": null}, {"text": "of", "start": 732, "end": 734, "annotation": null}, {"text": "MnNb", "start": 735, "end": 739, "annotation": null}, {"text": "/", "start": 739, "end": 740, "annotation": null}, {"text": "TiO2", "start": 740, "end": 744, "annotation": null}, {"text": "-", "start": 744, "end": 745, "annotation": null}, {"text": "0.12", "start": 745, "end": 749, "annotation": null}, {"text": "catalyst", "start": 750, "end": 758, "annotation": null}, {"text": ".", "start": 758, "end": 759, "annotation": null}], [{"text": "The", "start": 760, "end": 763, "annotation": null}, {"text": "results", "start": 764, "end": 771, "annotation": null}, {"text": "of", "start": 772, "end": 774, "annotation": null}, {"text": "DRIFT", "start": 775, "end": 780, "annotation": null}, {"text": "study", "start": 781, "end": 786, "annotation": null}, {"text": "revealed", "start": 787, "end": 795, "annotation": null}, {"text": "that", "start": 796, "end": 800, "annotation": null}, {"text": "the", "start": 801, "end": 804, "annotation": null}, {"text": "NH3", "start": 805, "end": 808, "annotation": null}, {"text": "-", "start": 808, "end": 809, "annotation": null}, {"text": "SCR", "start": 809, "end": 812, "annotation": null}, {"text": "reaction", "start": 813, "end": 821, "annotation": null}, {"text": "over", "start": 822, "end": 826, "annotation": null}, {"text": "MnNb", "start": 827, "end": 831, "annotation": null}, {"text": "/", "start": 831, "end": 832, "annotation": null}, {"text": "TiO2", "start": 832, "end": 836, "annotation": null}, {"text": "-", "start": 836, "end": 837, "annotation": null}, {"text": "0.12", "start": 837, "end": 841, "annotation": null}, {"text": "catalyst", "start": 842, "end": 850, "annotation": null}, {"text": "took", "start": 851, "end": 855, "annotation": null}, {"text": "place", "start": 856, "end": 861, "annotation": null}, {"text": "through", "start": 862, "end": 869, "annotation": null}, {"text": "both", "start": 870, "end": 874, "annotation": null}, {"text": "Eley", "start": 875, "end": 879, "annotation": null}, {"text": "\u2013", "start": 879, "end": 880, "annotation": null}, {"text": "Rideal", "start": 880, "end": 886, "annotation": null}, {"text": "and", "start": 887, "end": 890, "annotation": null}, {"text": "Langmuir", "start": 891, "end": 899, "annotation": null}, {"text": "-", "start": 899, "end": 900, "annotation": null}, {"text": "Hinshelwood", "start": 900, "end": 911, "annotation": null}, {"text": "pathways", "start": 912, "end": 920, "annotation": null}, {"text": ",", "start": 920, "end": 921, "annotation": null}, {"text": "in", "start": 922, "end": 924, "annotation": null}, {"text": "which", "start": 925, "end": 930, "annotation": null}, {"text": "Eley", "start": 931, "end": 935, "annotation": null}, {"text": "\u2013", "start": 935, "end": 936, "annotation": null}, {"text": "Rideal", "start": 936, "end": 942, "annotation": null}, {"text": "pathway", "start": 943, "end": 950, "annotation": null}, {"text": "was", "start": 951, "end": 954, "annotation": null}, {"text": "predominant", "start": 955, "end": 966, "annotation": null}, {"text": ".", "start": 966, "end": 967, "annotation": null}], [{"text": "In", "start": 968, "end": 970, "annotation": null}, {"text": "the", "start": 971, "end": 974, "annotation": null}, {"text": "presence", "start": 975, "end": 983, "annotation": null}, {"text": "of", "start": 984, "end": 986, "annotation": null}, {"text": "SO2", "start": 987, "end": 990, "annotation": null}, {"text": ",", "start": 990, "end": 991, "annotation": null}, {"text": "it", "start": 992, "end": 994, "annotation": null}, {"text": "seemed", "start": 995, "end": 1001, "annotation": null}, {"text": "that", "start": 1002, "end": 1006, "annotation": null}, {"text": "the", "start": 1007, "end": 1010, "annotation": null}, {"text": "NH3", "start": 1011, "end": 1014, "annotation": null}, {"text": "-", "start": 1014, "end": 1015, "annotation": null}, {"text": "SCR", "start": 1015, "end": 1018, "annotation": null}, {"text": "reaction", "start": 1019, "end": 1027, "annotation": null}, {"text": "over", "start": 1028, "end": 1032, "annotation": null}, {"text": "Mn", "start": 1033, "end": 1035, "annotation": null}, {"text": "/", "start": 1035, "end": 1036, "annotation": null}, {"text": "TiO2", "start": 1036, "end": 1040, "annotation": null}, {"text": "and", "start": 1041, "end": 1044, "annotation": null}, {"text": "MnNb", "start": 1045, "end": 1049, "annotation": null}, {"text": "/", "start": 1049, "end": 1050, "annotation": null}, {"text": "TiO2", "start": 1050, "end": 1054, "annotation": null}, {"text": "-", "start": 1054, "end": 1055, "annotation": null}, {"text": "0.12", "start": 1055, "end": 1059, "annotation": null}, {"text": "mainly", "start": 1060, "end": 1066, "annotation": null}, {"text": "happened", "start": 1067, "end": 1075, "annotation": null}, {"text": "between", "start": 1076, "end": 1083, "annotation": null}, {"text": "adsorbed", "start": 1084, "end": 1092, "annotation": null}, {"text": "NO2", "start": 1093, "end": 1096, "annotation": null}, {"text": "and", "start": 1097, "end": 1100, "annotation": null}, {"text": "gaseous", "start": 1101, "end": 1108, "annotation": null}, {"text": "NH3", "start": 1109, "end": 1112, "annotation": null}, {"text": "(", "start": 1113, "end": 1114, "annotation": null}, {"text": "Eley", "start": 1114, "end": 1118, "annotation": null}, {"text": "\u2013", "start": 1118, "end": 1119, "annotation": null}, {"text": "Rideal", "start": 1119, "end": 1125, "annotation": null}, {"text": "mechanism", "start": 1126, "end": 1135, "annotation": null}, {"text": ")", "start": 1135, "end": 1136, "annotation": null}, {"text": ",", "start": 1136, "end": 1137, "annotation": null}, {"text": "thus", "start": 1138, "end": 1142, "annotation": null}, {"text": "the", "start": 1143, "end": 1146, "annotation": null}, {"text": "formation", "start": 1147, "end": 1156, "annotation": null}, {"text": "of", "start": 1157, "end": 1159, "annotation": null}, {"text": "more", "start": 1160, "end": 1164, "annotation": null}, {"text": "NO2", "start": 1165, "end": 1168, "annotation": null}, {"text": "over", "start": 1169, "end": 1173, "annotation": null}, {"text": "MnNb", "start": 1174, "end": 1178, "annotation": null}, {"text": "/", "start": 1178, "end": 1179, "annotation": null}, {"text": "TiO2", "start": 1179, "end": 1183, "annotation": null}, {"text": "-", "start": 1183, "end": 1184, "annotation": null}, {"text": "0.12", "start": 1184, "end": 1188, "annotation": null}, {"text": "catalyst", "start": 1189, "end": 1197, "annotation": null}, {"text": "should", "start": 1198, "end": 1204, "annotation": null}, {"text": "mainly", "start": 1205, "end": 1211, "annotation": null}, {"text": "account", "start": 1212, "end": 1219, "annotation": null}, {"text": "for", "start": 1220, "end": 1223, "annotation": null}, {"text": "its", "start": 1224, "end": 1227, "annotation": null}, {"text": "super", "start": 1228, "end": 1233, "annotation": null}, {"text": "SO2", "start": 1234, "end": 1237, "annotation": null}, {"text": "tolerance", "start": 1238, "end": 1247, "annotation": null}, {"text": ".", "start": 1247, "end": 1248, "annotation": null}]]} +{"remark": "doping_annt3", "text": "\u00a9 2015 WILEY-VCH Verlag GmbH & Co. KGaA. Fiber lasers operating via Raman gain or based on rare-earth-doped active fibers are widely used as sources of CW radiation. However, these lasers are only quasi-CW: their intensity fluctuates strongly on short time scales. Here the framework of the complex Ginzburg-Landau equations, which are well known as an efficient model of mode-locked fiber lasers, is applied for the description of quasi-CW fiber lasers. The vector Ginzburg-Landau model of a Raman fiber laser describes the experimentally observed turbulent-like intensity dynamics, as well as polarization rogue waves. Our results open debates about the common underlying physics of operation of very different laser types - quasi-CW lasers and passively mode-locked lasers. Fiber lasers operating via Raman gain or based on rare-earth-doped active fibers are widely used as sources of CW radiation. However, these lasers are only quasi-CW: their intensity fluctuates strongly on short time scales. Here the framework of the complex Ginzburg-Landau equations, which are well known as an efficient model of mode-locked fiber lasers, is applied for the description of quasi-CW fiber lasers. Our results open debates about the common underlying physics of operation of very different laser types - quasi-CW lasers and passively mode-locked lasers.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "KGaA", "start": 35, "end": 39, "annotation": null}, {"text": ".", "start": 39, "end": 40, "annotation": null}], [{"text": "Fiber", "start": 41, "end": 46, "annotation": null}, {"text": "lasers", "start": 47, "end": 53, "annotation": null}, {"text": "operating", "start": 54, "end": 63, "annotation": null}, {"text": "via", "start": 64, "end": 67, "annotation": null}, {"text": "Raman", "start": 68, "end": 73, "annotation": null}, {"text": "gain", "start": 74, "end": 78, "annotation": null}, {"text": "or", "start": 79, "end": 81, "annotation": null}, {"text": "based", "start": 82, "end": 87, "annotation": null}, {"text": "on", "start": 88, "end": 90, "annotation": null}, {"text": "rare", "start": 91, "end": 95, "annotation": "DOPANT"}, {"text": "-", "start": 95, "end": 96, "annotation": "DOPANT"}, {"text": "earth", "start": 96, "end": 101, "annotation": "DOPANT"}, {"text": "-", "start": 101, "end": 102, "annotation": null}, {"text": "doped", "start": 102, "end": 107, "annotation": null}, {"text": "active", "start": 108, "end": 114, "annotation": "BASEMAT"}, {"text": "fibers", "start": 115, "end": 121, "annotation": "BASEMAT"}, {"text": "are", "start": 122, "end": 125, "annotation": null}, {"text": "widely", "start": 126, "end": 132, "annotation": null}, {"text": "used", "start": 133, "end": 137, "annotation": null}, {"text": "as", "start": 138, "end": 140, "annotation": null}, {"text": "sources", "start": 141, "end": 148, "annotation": null}, {"text": "of", "start": 149, "end": 151, "annotation": null}, {"text": "CW", "start": 152, "end": 154, "annotation": null}, {"text": "radiation", "start": 155, "end": 164, "annotation": null}, {"text": ".", "start": 164, "end": 165, "annotation": null}], [{"text": "However", "start": 166, "end": 173, "annotation": null}, {"text": ",", "start": 173, "end": 174, "annotation": null}, {"text": "these", "start": 175, "end": 180, "annotation": null}, {"text": "lasers", "start": 181, "end": 187, "annotation": null}, {"text": "are", "start": 188, "end": 191, "annotation": null}, {"text": "only", "start": 192, "end": 196, "annotation": null}, {"text": "quasi-CW", "start": 197, "end": 205, "annotation": null}, {"text": ":", "start": 205, "end": 206, "annotation": null}, {"text": "their", "start": 207, "end": 212, "annotation": null}, {"text": "intensity", "start": 213, "end": 222, "annotation": null}, {"text": "fluctuates", "start": 223, "end": 233, "annotation": null}, {"text": "strongly", "start": 234, "end": 242, "annotation": null}, {"text": "on", "start": 243, "end": 245, "annotation": null}, {"text": "short", "start": 246, "end": 251, "annotation": null}, {"text": "time", "start": 252, "end": 256, "annotation": null}, {"text": "scales", "start": 257, "end": 263, "annotation": null}, {"text": ".", "start": 263, "end": 264, "annotation": null}], [{"text": "Here", "start": 265, "end": 269, "annotation": null}, {"text": "the", "start": 270, "end": 273, "annotation": null}, {"text": "framework", "start": 274, "end": 283, "annotation": null}, {"text": "of", "start": 284, "end": 286, "annotation": null}, {"text": "the", "start": 287, "end": 290, "annotation": null}, {"text": "complex", "start": 291, "end": 298, "annotation": null}, {"text": "Ginzburg", "start": 299, "end": 307, "annotation": null}, {"text": "-", "start": 307, "end": 308, "annotation": null}, {"text": "Landau", "start": 308, "end": 314, "annotation": null}, {"text": "equations", "start": 315, "end": 324, "annotation": null}, {"text": ",", "start": 324, "end": 325, "annotation": null}, {"text": "which", "start": 326, "end": 331, "annotation": null}, {"text": "are", "start": 332, "end": 335, "annotation": null}, {"text": "well", "start": 336, "end": 340, "annotation": null}, {"text": "known", "start": 341, "end": 346, "annotation": null}, {"text": "as", "start": 347, "end": 349, "annotation": null}, {"text": "an", "start": 350, "end": 352, "annotation": null}, {"text": "efficient", "start": 353, "end": 362, "annotation": null}, {"text": "model", "start": 363, "end": 368, "annotation": null}, {"text": "of", "start": 369, "end": 371, "annotation": null}, {"text": "mode", "start": 372, "end": 376, "annotation": null}, {"text": "-", "start": 376, "end": 377, "annotation": null}, {"text": "locked", "start": 377, "end": 383, "annotation": null}, {"text": "fiber", "start": 384, "end": 389, "annotation": null}, {"text": "lasers", "start": 390, "end": 396, "annotation": null}, {"text": ",", "start": 396, "end": 397, "annotation": null}, {"text": "is", "start": 398, "end": 400, "annotation": null}, {"text": "applied", "start": 401, "end": 408, "annotation": null}, {"text": "for", "start": 409, "end": 412, "annotation": null}, {"text": "the", "start": 413, "end": 416, "annotation": null}, {"text": "description", "start": 417, "end": 428, "annotation": null}, {"text": "of", "start": 429, "end": 431, "annotation": null}, {"text": "quasi-CW", "start": 432, "end": 440, "annotation": null}, {"text": "fiber", "start": 441, "end": 446, "annotation": null}, {"text": "lasers", "start": 447, "end": 453, "annotation": null}, {"text": ".", "start": 453, "end": 454, "annotation": null}], [{"text": "The", "start": 455, "end": 458, "annotation": null}, {"text": "vector", "start": 459, "end": 465, "annotation": null}, {"text": "Ginzburg", "start": 466, "end": 474, "annotation": null}, {"text": "-", "start": 474, "end": 475, "annotation": null}, {"text": "Landau", "start": 475, "end": 481, "annotation": null}, {"text": "model", "start": 482, "end": 487, "annotation": null}, {"text": "of", "start": 488, "end": 490, "annotation": null}, {"text": "a", "start": 491, "end": 492, "annotation": null}, {"text": "Raman", "start": 493, "end": 498, "annotation": null}, {"text": "fiber", "start": 499, "end": 504, "annotation": null}, {"text": "laser", "start": 505, "end": 510, "annotation": null}, {"text": "describes", "start": 511, "end": 520, "annotation": null}, {"text": "the", "start": 521, "end": 524, "annotation": null}, {"text": "experimentally", "start": 525, "end": 539, "annotation": null}, {"text": "observed", "start": 540, "end": 548, "annotation": null}, {"text": "turbulent", "start": 549, "end": 558, "annotation": null}, {"text": "-", "start": 558, "end": 559, "annotation": null}, {"text": "like", "start": 559, "end": 563, "annotation": null}, {"text": "intensity", "start": 564, "end": 573, "annotation": null}, {"text": "dynamics", "start": 574, "end": 582, "annotation": null}, {"text": ",", "start": 582, "end": 583, "annotation": null}, {"text": "as", "start": 584, "end": 586, "annotation": null}, {"text": "well", "start": 587, "end": 591, "annotation": null}, {"text": "as", "start": 592, "end": 594, "annotation": null}, {"text": "polarization", "start": 595, "end": 607, "annotation": null}, {"text": "rogue", "start": 608, "end": 613, "annotation": null}, {"text": "waves", "start": 614, "end": 619, "annotation": null}, {"text": ".", "start": 619, "end": 620, "annotation": null}], [{"text": "Our", "start": 621, "end": 624, "annotation": null}, {"text": "results", "start": 625, "end": 632, "annotation": null}, {"text": "open", "start": 633, "end": 637, "annotation": null}, {"text": "debates", "start": 638, "end": 645, "annotation": null}, {"text": "about", "start": 646, "end": 651, "annotation": null}, {"text": "the", "start": 652, "end": 655, "annotation": null}, {"text": "common", "start": 656, "end": 662, "annotation": null}, {"text": "underlying", "start": 663, "end": 673, "annotation": null}, {"text": "physics", "start": 674, "end": 681, "annotation": null}, {"text": "of", "start": 682, "end": 684, "annotation": null}, {"text": "operation", "start": 685, "end": 694, "annotation": null}, {"text": "of", "start": 695, "end": 697, "annotation": null}, {"text": "very", "start": 698, "end": 702, "annotation": null}, {"text": "different", "start": 703, "end": 712, "annotation": null}, {"text": "laser", "start": 713, "end": 718, "annotation": null}, {"text": "types", "start": 719, "end": 724, "annotation": null}, {"text": "-", "start": 725, "end": 726, "annotation": null}, {"text": "quasi-CW", "start": 727, "end": 735, "annotation": null}, {"text": "lasers", "start": 736, "end": 742, "annotation": null}, {"text": "and", "start": 743, "end": 746, "annotation": null}, {"text": "passively", "start": 747, "end": 756, "annotation": null}, {"text": "mode", "start": 757, "end": 761, "annotation": null}, {"text": "-", "start": 761, "end": 762, "annotation": null}, {"text": "locked", "start": 762, "end": 768, "annotation": null}, {"text": "lasers", "start": 769, "end": 775, "annotation": null}, {"text": ".", "start": 775, "end": 776, "annotation": null}], [{"text": "Fiber", "start": 777, "end": 782, "annotation": null}, {"text": "lasers", "start": 783, "end": 789, "annotation": null}, {"text": "operating", "start": 790, "end": 799, "annotation": null}, {"text": "via", "start": 800, "end": 803, "annotation": null}, {"text": "Raman", "start": 804, "end": 809, "annotation": null}, {"text": "gain", "start": 810, "end": 814, "annotation": null}, {"text": "or", "start": 815, "end": 817, "annotation": null}, {"text": "based", "start": 818, "end": 823, "annotation": null}, {"text": "on", "start": 824, "end": 826, "annotation": null}, {"text": "rare", "start": 827, "end": 831, "annotation": "DOPANT"}, {"text": "-", "start": 831, "end": 832, "annotation": "DOPANT"}, {"text": "earth", "start": 832, "end": 837, "annotation": "DOPANT"}, {"text": "-", "start": 837, "end": 838, "annotation": null}, {"text": "doped", "start": 838, "end": 843, "annotation": null}, {"text": "active", "start": 844, "end": 850, "annotation": "BASEMAT"}, {"text": "fibers", "start": 851, "end": 857, "annotation": "BASEMAT"}, {"text": "are", "start": 858, "end": 861, "annotation": null}, {"text": "widely", "start": 862, "end": 868, "annotation": null}, {"text": "used", "start": 869, "end": 873, "annotation": null}, {"text": "as", "start": 874, "end": 876, "annotation": null}, {"text": "sources", "start": 877, "end": 884, "annotation": null}, {"text": "of", "start": 885, "end": 887, "annotation": null}, {"text": "CW", "start": 888, "end": 890, "annotation": null}, {"text": "radiation", "start": 891, "end": 900, "annotation": null}, {"text": ".", "start": 900, "end": 901, "annotation": null}], [{"text": "However", "start": 902, "end": 909, "annotation": null}, {"text": ",", "start": 909, "end": 910, "annotation": null}, {"text": "these", "start": 911, "end": 916, "annotation": null}, {"text": "lasers", "start": 917, "end": 923, "annotation": null}, {"text": "are", "start": 924, "end": 927, "annotation": null}, {"text": "only", "start": 928, "end": 932, "annotation": null}, {"text": "quasi-CW", "start": 933, "end": 941, "annotation": null}, {"text": ":", "start": 941, "end": 942, "annotation": null}, {"text": "their", "start": 943, "end": 948, "annotation": null}, {"text": "intensity", "start": 949, "end": 958, "annotation": null}, {"text": "fluctuates", "start": 959, "end": 969, "annotation": null}, {"text": "strongly", "start": 970, "end": 978, "annotation": null}, {"text": "on", "start": 979, "end": 981, "annotation": null}, {"text": "short", "start": 982, "end": 987, "annotation": null}, {"text": "time", "start": 988, "end": 992, "annotation": null}, {"text": "scales", "start": 993, "end": 999, "annotation": null}, {"text": ".", "start": 999, "end": 1000, "annotation": null}], [{"text": "Here", "start": 1001, "end": 1005, "annotation": null}, {"text": "the", "start": 1006, "end": 1009, "annotation": null}, {"text": "framework", "start": 1010, "end": 1019, "annotation": null}, {"text": "of", "start": 1020, "end": 1022, "annotation": null}, {"text": "the", "start": 1023, "end": 1026, "annotation": null}, {"text": "complex", "start": 1027, "end": 1034, "annotation": null}, {"text": "Ginzburg", "start": 1035, "end": 1043, "annotation": null}, {"text": "-", "start": 1043, "end": 1044, "annotation": null}, {"text": "Landau", "start": 1044, "end": 1050, "annotation": null}, {"text": "equations", "start": 1051, "end": 1060, "annotation": null}, {"text": ",", "start": 1060, "end": 1061, "annotation": null}, {"text": "which", "start": 1062, "end": 1067, "annotation": null}, {"text": "are", "start": 1068, "end": 1071, "annotation": null}, {"text": "well", "start": 1072, "end": 1076, "annotation": null}, {"text": "known", "start": 1077, "end": 1082, "annotation": null}, {"text": "as", "start": 1083, "end": 1085, "annotation": null}, {"text": "an", "start": 1086, "end": 1088, "annotation": null}, {"text": "efficient", "start": 1089, "end": 1098, "annotation": null}, {"text": "model", "start": 1099, "end": 1104, "annotation": null}, {"text": "of", "start": 1105, "end": 1107, "annotation": null}, {"text": "mode", "start": 1108, "end": 1112, "annotation": null}, {"text": "-", "start": 1112, "end": 1113, "annotation": null}, {"text": "locked", "start": 1113, "end": 1119, "annotation": null}, {"text": "fiber", "start": 1120, "end": 1125, "annotation": null}, {"text": "lasers", "start": 1126, "end": 1132, "annotation": null}, {"text": ",", "start": 1132, "end": 1133, "annotation": null}, {"text": "is", "start": 1134, "end": 1136, "annotation": null}, {"text": "applied", "start": 1137, "end": 1144, "annotation": null}, {"text": "for", "start": 1145, "end": 1148, "annotation": null}, {"text": "the", "start": 1149, "end": 1152, "annotation": null}, {"text": "description", "start": 1153, "end": 1164, "annotation": null}, {"text": "of", "start": 1165, "end": 1167, "annotation": null}, {"text": "quasi-CW", "start": 1168, "end": 1176, "annotation": null}, {"text": "fiber", "start": 1177, "end": 1182, "annotation": null}, {"text": "lasers", "start": 1183, "end": 1189, "annotation": null}, {"text": ".", "start": 1189, "end": 1190, "annotation": null}], [{"text": "Our", "start": 1191, "end": 1194, "annotation": null}, {"text": "results", "start": 1195, "end": 1202, "annotation": null}, {"text": "open", "start": 1203, "end": 1207, "annotation": null}, {"text": "debates", "start": 1208, "end": 1215, "annotation": null}, {"text": "about", "start": 1216, "end": 1221, "annotation": null}, {"text": "the", "start": 1222, "end": 1225, "annotation": null}, {"text": "common", "start": 1226, "end": 1232, "annotation": null}, {"text": "underlying", "start": 1233, "end": 1243, "annotation": null}, {"text": "physics", "start": 1244, "end": 1251, "annotation": null}, {"text": "of", "start": 1252, "end": 1254, "annotation": null}, {"text": "operation", "start": 1255, "end": 1264, "annotation": null}, {"text": "of", "start": 1265, "end": 1267, "annotation": null}, {"text": "very", "start": 1268, "end": 1272, "annotation": null}, {"text": "different", "start": 1273, "end": 1282, "annotation": null}, {"text": "laser", "start": 1283, "end": 1288, "annotation": null}, {"text": "types", "start": 1289, "end": 1294, "annotation": null}, {"text": "-", "start": 1295, "end": 1296, "annotation": null}, {"text": "quasi-CW", "start": 1297, "end": 1305, "annotation": null}, {"text": "lasers", "start": 1306, "end": 1312, "annotation": null}, {"text": "and", "start": 1313, "end": 1316, "annotation": null}, {"text": "passively", "start": 1317, "end": 1326, "annotation": null}, {"text": "mode", "start": 1327, "end": 1331, "annotation": null}, {"text": "-", "start": 1331, "end": 1332, "annotation": null}, {"text": "locked", "start": 1332, "end": 1338, "annotation": null}, {"text": "lasers", "start": 1339, "end": 1345, "annotation": null}, {"text": ".", "start": 1345, "end": 1346, "annotation": null}]], "meta": {"doi": "10.1002/lpor.201500012"}} +{"remark": "doping_annt1", "text": "The bad resistance to SO2 was still the primary defect of Mn/TiO2 catalyst for selective catalytic reduction of NOx with NH3. To address that, a series of MnNb/TiO2 catalyst samples with different Nb/Mn molar ratio were prepared by sol-gel method and used in NH3-SCR reaction. Experimental results indicated that the MnNb/TiO2-0.12 catalyst exhibited outstanding SCR activity and SO2 resistance. The introduction of Nb into Mn/TiO2 catalyst could promote the formation of more Mn4+ and chemisorbed oxygen species on its surface, along with the generation of more NO2. In addition, the doping of Nb on Mn/TiO2 catalyst could remarkably intensify its surface acidity. All these factors were conducive to improving the SCR performance of MnNb/TiO2-0.12 catalyst. The results of DRIFT study revealed that the NH3-SCR reaction over MnNb/TiO2-0.12 catalyst took place through both Eley\u2013Rideal and Langmuir-Hinshelwood pathways, in which Eley\u2013Rideal pathway was predominant. In the presence of SO2, it seemed that the NH3-SCR reaction over Mn/TiO2 and MnNb/TiO2-0.12 mainly happened between adsorbed NO2 and gaseous NH3 (Eley\u2013Rideal mechanism), thus the formation of more NO2 over MnNb/TiO2-0.12 catalyst should mainly account for its super SO2 tolerance.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "bad", "start": 4, "end": 7, "annotation": null}, {"text": "resistance", "start": 8, "end": 18, "annotation": null}, {"text": "to", "start": 19, "end": 21, "annotation": null}, {"text": "SO2", "start": 22, "end": 25, "annotation": null}, {"text": "was", "start": 26, "end": 29, "annotation": null}, {"text": "still", "start": 30, "end": 35, "annotation": null}, {"text": "the", "start": 36, "end": 39, "annotation": null}, {"text": "primary", "start": 40, "end": 47, "annotation": null}, {"text": "defect", "start": 48, "end": 54, "annotation": null}, {"text": "of", "start": 55, "end": 57, "annotation": null}, {"text": "Mn", "start": 58, "end": 60, "annotation": null}, {"text": "/", "start": 60, "end": 61, "annotation": null}, {"text": "TiO2", "start": 61, "end": 65, "annotation": null}, {"text": "catalyst", "start": 66, "end": 74, "annotation": null}, {"text": "for", "start": 75, "end": 78, "annotation": null}, {"text": "selective", "start": 79, "end": 88, "annotation": null}, {"text": "catalytic", "start": 89, "end": 98, "annotation": null}, {"text": "reduction", "start": 99, "end": 108, "annotation": null}, {"text": "of", "start": 109, "end": 111, "annotation": null}, {"text": "NOx", "start": 112, "end": 115, "annotation": null}, {"text": "with", "start": 116, "end": 120, "annotation": null}, {"text": "NH3", "start": 121, "end": 124, "annotation": null}, {"text": ".", "start": 124, "end": 125, "annotation": null}], [{"text": "To", "start": 126, "end": 128, "annotation": null}, {"text": "address", "start": 129, "end": 136, "annotation": null}, {"text": "that", "start": 137, "end": 141, "annotation": null}, {"text": ",", "start": 141, "end": 142, "annotation": null}, {"text": "a", "start": 143, "end": 144, "annotation": null}, {"text": "series", "start": 145, "end": 151, "annotation": null}, {"text": "of", "start": 152, "end": 154, "annotation": null}, {"text": "MnNb", "start": 155, "end": 159, "annotation": null}, {"text": "/", "start": 159, "end": 160, "annotation": null}, {"text": "TiO2", "start": 160, "end": 164, "annotation": null}, {"text": "catalyst", "start": 165, "end": 173, "annotation": null}, {"text": "samples", "start": 174, "end": 181, "annotation": null}, {"text": "with", "start": 182, "end": 186, "annotation": null}, {"text": "different", "start": 187, "end": 196, "annotation": null}, {"text": "Nb", "start": 197, "end": 199, "annotation": null}, {"text": "/", "start": 199, "end": 200, "annotation": null}, {"text": "Mn", "start": 200, "end": 202, "annotation": null}, {"text": "molar", "start": 203, "end": 208, "annotation": null}, {"text": "ratio", "start": 209, "end": 214, "annotation": null}, {"text": "were", "start": 215, "end": 219, "annotation": null}, {"text": "prepared", "start": 220, "end": 228, "annotation": null}, {"text": "by", "start": 229, "end": 231, "annotation": null}, {"text": "sol", "start": 232, "end": 235, "annotation": null}, {"text": "-", "start": 235, "end": 236, "annotation": null}, {"text": "gel", "start": 236, "end": 239, "annotation": null}, {"text": "method", "start": 240, "end": 246, "annotation": null}, {"text": "and", "start": 247, "end": 250, "annotation": null}, {"text": "used", "start": 251, "end": 255, "annotation": null}, {"text": "in", "start": 256, "end": 258, "annotation": null}, {"text": "NH3", "start": 259, "end": 262, "annotation": null}, {"text": "-", "start": 262, "end": 263, "annotation": null}, {"text": "SCR", "start": 263, "end": 266, "annotation": null}, {"text": "reaction", "start": 267, "end": 275, "annotation": null}, {"text": ".", "start": 275, "end": 276, "annotation": null}], [{"text": "Experimental", "start": 277, "end": 289, "annotation": null}, {"text": "results", "start": 290, "end": 297, "annotation": null}, {"text": "indicated", "start": 298, "end": 307, "annotation": null}, {"text": "that", "start": 308, "end": 312, "annotation": null}, {"text": "the", "start": 313, "end": 316, "annotation": null}, {"text": "MnNb", "start": 317, "end": 321, "annotation": null}, {"text": "/", "start": 321, "end": 322, "annotation": null}, {"text": "TiO2", "start": 322, "end": 326, "annotation": null}, {"text": "-", "start": 326, "end": 327, "annotation": null}, {"text": "0.12", "start": 327, "end": 331, "annotation": null}, {"text": "catalyst", "start": 332, "end": 340, "annotation": null}, {"text": "exhibited", "start": 341, "end": 350, "annotation": null}, {"text": "outstanding", "start": 351, "end": 362, "annotation": null}, {"text": "SCR", "start": 363, "end": 366, "annotation": null}, {"text": "activity", "start": 367, "end": 375, "annotation": null}, {"text": "and", "start": 376, "end": 379, "annotation": null}, {"text": "SO2", "start": 380, "end": 383, "annotation": null}, {"text": "resistance", "start": 384, "end": 394, "annotation": null}, {"text": ".", "start": 394, "end": 395, "annotation": null}], [{"text": "The", "start": 396, "end": 399, "annotation": null}, {"text": "introduction", "start": 400, "end": 412, "annotation": null}, {"text": "of", "start": 413, "end": 415, "annotation": null}, {"text": "Nb", "start": 416, "end": 418, "annotation": "DOPANT"}, {"text": "into", "start": 419, "end": 423, "annotation": null}, {"text": "Mn", "start": 424, "end": 426, "annotation": "BASEMAT"}, {"text": "/", "start": 426, "end": 427, "annotation": "BASEMAT"}, {"text": "TiO2", "start": 427, "end": 431, "annotation": "BASEMAT"}, {"text": "catalyst", "start": 432, "end": 440, "annotation": null}, {"text": "could", "start": 441, "end": 446, "annotation": null}, {"text": "promote", "start": 447, "end": 454, "annotation": null}, {"text": "the", "start": 455, "end": 458, "annotation": null}, {"text": "formation", "start": 459, "end": 468, "annotation": null}, {"text": "of", "start": 469, "end": 471, "annotation": null}, {"text": "more", "start": 472, "end": 476, "annotation": null}, {"text": "Mn4+", "start": 477, "end": 481, "annotation": null}, {"text": "and", "start": 482, "end": 485, "annotation": null}, {"text": "chemisorbed", "start": 486, "end": 497, "annotation": null}, {"text": "oxygen", "start": 498, "end": 504, "annotation": null}, {"text": "species", "start": 505, "end": 512, "annotation": null}, {"text": "on", "start": 513, "end": 515, "annotation": null}, {"text": "its", "start": 516, "end": 519, "annotation": null}, {"text": "surface", "start": 520, "end": 527, "annotation": null}, {"text": ",", "start": 527, "end": 528, "annotation": null}, {"text": "along", "start": 529, "end": 534, "annotation": null}, {"text": "with", "start": 535, "end": 539, "annotation": null}, {"text": "the", "start": 540, "end": 543, "annotation": null}, {"text": "generation", "start": 544, "end": 554, "annotation": null}, {"text": "of", "start": 555, "end": 557, "annotation": null}, {"text": "more", "start": 558, "end": 562, "annotation": null}, {"text": "NO2", "start": 563, "end": 566, "annotation": null}, {"text": ".", "start": 566, "end": 567, "annotation": null}], [{"text": "In", "start": 568, "end": 570, "annotation": null}, {"text": "addition", "start": 571, "end": 579, "annotation": null}, {"text": ",", "start": 579, "end": 580, "annotation": null}, {"text": "the", "start": 581, "end": 584, "annotation": null}, {"text": "doping", "start": 585, "end": 591, "annotation": null}, {"text": "of", "start": 592, "end": 594, "annotation": null}, {"text": "Nb", "start": 595, "end": 597, "annotation": "DOPANT"}, {"text": "on", "start": 598, "end": 600, "annotation": null}, {"text": "Mn", "start": 601, "end": 603, "annotation": "BASEMAT"}, {"text": "/", "start": 603, "end": 604, "annotation": "BASEMAT"}, {"text": "TiO2", "start": 604, "end": 608, "annotation": "BASEMAT"}, {"text": "catalyst", "start": 609, "end": 617, "annotation": null}, {"text": "could", "start": 618, "end": 623, "annotation": null}, {"text": "remarkably", "start": 624, "end": 634, "annotation": null}, {"text": "intensify", "start": 635, "end": 644, "annotation": null}, {"text": "its", "start": 645, "end": 648, "annotation": null}, {"text": "surface", "start": 649, "end": 656, "annotation": null}, {"text": "acidity", "start": 657, "end": 664, "annotation": null}, {"text": ".", "start": 664, "end": 665, "annotation": null}], [{"text": "All", "start": 666, "end": 669, "annotation": null}, {"text": "these", "start": 670, "end": 675, "annotation": null}, {"text": "factors", "start": 676, "end": 683, "annotation": null}, {"text": "were", "start": 684, "end": 688, "annotation": null}, {"text": "conducive", "start": 689, "end": 698, "annotation": null}, {"text": "to", "start": 699, "end": 701, "annotation": null}, {"text": "improving", "start": 702, "end": 711, "annotation": null}, {"text": "the", "start": 712, "end": 715, "annotation": null}, {"text": "SCR", "start": 716, "end": 719, "annotation": null}, {"text": "performance", "start": 720, "end": 731, "annotation": null}, {"text": "of", "start": 732, "end": 734, "annotation": null}, {"text": "MnNb", "start": 735, "end": 739, "annotation": null}, {"text": "/", "start": 739, "end": 740, "annotation": null}, {"text": "TiO2", "start": 740, "end": 744, "annotation": null}, {"text": "-", "start": 744, "end": 745, "annotation": null}, {"text": "0.12", "start": 745, "end": 749, "annotation": null}, {"text": "catalyst", "start": 750, "end": 758, "annotation": null}, {"text": ".", "start": 758, "end": 759, "annotation": null}], [{"text": "The", "start": 760, "end": 763, "annotation": null}, {"text": "results", "start": 764, "end": 771, "annotation": null}, {"text": "of", "start": 772, "end": 774, "annotation": null}, {"text": "DRIFT", "start": 775, "end": 780, "annotation": null}, {"text": "study", "start": 781, "end": 786, "annotation": null}, {"text": "revealed", "start": 787, "end": 795, "annotation": null}, {"text": "that", "start": 796, "end": 800, "annotation": null}, {"text": "the", "start": 801, "end": 804, "annotation": null}, {"text": "NH3", "start": 805, "end": 808, "annotation": null}, {"text": "-", "start": 808, "end": 809, "annotation": null}, {"text": "SCR", "start": 809, "end": 812, "annotation": null}, {"text": "reaction", "start": 813, "end": 821, "annotation": null}, {"text": "over", "start": 822, "end": 826, "annotation": null}, {"text": "MnNb", "start": 827, "end": 831, "annotation": null}, {"text": "/", "start": 831, "end": 832, "annotation": null}, {"text": "TiO2", "start": 832, "end": 836, "annotation": null}, {"text": "-", "start": 836, "end": 837, "annotation": null}, {"text": "0.12", "start": 837, "end": 841, "annotation": null}, {"text": "catalyst", "start": 842, "end": 850, "annotation": null}, {"text": "took", "start": 851, "end": 855, "annotation": null}, {"text": "place", "start": 856, "end": 861, "annotation": null}, {"text": "through", "start": 862, "end": 869, "annotation": null}, {"text": "both", "start": 870, "end": 874, "annotation": null}, {"text": "Eley", "start": 875, "end": 879, "annotation": null}, {"text": "\u2013", "start": 879, "end": 880, "annotation": null}, {"text": "Rideal", "start": 880, "end": 886, "annotation": null}, {"text": "and", "start": 887, "end": 890, "annotation": null}, {"text": "Langmuir", "start": 891, "end": 899, "annotation": null}, {"text": "-", "start": 899, "end": 900, "annotation": null}, {"text": "Hinshelwood", "start": 900, "end": 911, "annotation": null}, {"text": "pathways", "start": 912, "end": 920, "annotation": null}, {"text": ",", "start": 920, "end": 921, "annotation": null}, {"text": "in", "start": 922, "end": 924, "annotation": null}, {"text": "which", "start": 925, "end": 930, "annotation": null}, {"text": "Eley", "start": 931, "end": 935, "annotation": null}, {"text": "\u2013", "start": 935, "end": 936, "annotation": null}, {"text": "Rideal", "start": 936, "end": 942, "annotation": null}, {"text": "pathway", "start": 943, "end": 950, "annotation": null}, {"text": "was", "start": 951, "end": 954, "annotation": null}, {"text": "predominant", "start": 955, "end": 966, "annotation": null}, {"text": ".", "start": 966, "end": 967, "annotation": null}], [{"text": "In", "start": 968, "end": 970, "annotation": null}, {"text": "the", "start": 971, "end": 974, "annotation": null}, {"text": "presence", "start": 975, "end": 983, "annotation": null}, {"text": "of", "start": 984, "end": 986, "annotation": null}, {"text": "SO2", "start": 987, "end": 990, "annotation": null}, {"text": ",", "start": 990, "end": 991, "annotation": null}, {"text": "it", "start": 992, "end": 994, "annotation": null}, {"text": "seemed", "start": 995, "end": 1001, "annotation": null}, {"text": "that", "start": 1002, "end": 1006, "annotation": null}, {"text": "the", "start": 1007, "end": 1010, "annotation": null}, {"text": "NH3", "start": 1011, "end": 1014, "annotation": null}, {"text": "-", "start": 1014, "end": 1015, "annotation": null}, {"text": "SCR", "start": 1015, "end": 1018, "annotation": null}, {"text": "reaction", "start": 1019, "end": 1027, "annotation": null}, {"text": "over", "start": 1028, "end": 1032, "annotation": null}, {"text": "Mn", "start": 1033, "end": 1035, "annotation": null}, {"text": "/", "start": 1035, "end": 1036, "annotation": null}, {"text": "TiO2", "start": 1036, "end": 1040, "annotation": null}, {"text": "and", "start": 1041, "end": 1044, "annotation": null}, {"text": "MnNb", "start": 1045, "end": 1049, "annotation": null}, {"text": "/", "start": 1049, "end": 1050, "annotation": null}, {"text": "TiO2", "start": 1050, "end": 1054, "annotation": null}, {"text": "-", "start": 1054, "end": 1055, "annotation": null}, {"text": "0.12", "start": 1055, "end": 1059, "annotation": null}, {"text": "mainly", "start": 1060, "end": 1066, "annotation": null}, {"text": "happened", "start": 1067, "end": 1075, "annotation": null}, {"text": "between", "start": 1076, "end": 1083, "annotation": null}, {"text": "adsorbed", "start": 1084, "end": 1092, "annotation": null}, {"text": "NO2", "start": 1093, "end": 1096, "annotation": null}, {"text": "and", "start": 1097, "end": 1100, "annotation": null}, {"text": "gaseous", "start": 1101, "end": 1108, "annotation": null}, {"text": "NH3", "start": 1109, "end": 1112, "annotation": null}, {"text": "(", "start": 1113, "end": 1114, "annotation": null}, {"text": "Eley", "start": 1114, "end": 1118, "annotation": null}, {"text": "\u2013", "start": 1118, "end": 1119, "annotation": null}, {"text": "Rideal", "start": 1119, "end": 1125, "annotation": null}, {"text": "mechanism", "start": 1126, "end": 1135, "annotation": null}, {"text": ")", "start": 1135, "end": 1136, "annotation": null}, {"text": ",", "start": 1136, "end": 1137, "annotation": null}, {"text": "thus", "start": 1138, "end": 1142, "annotation": null}, {"text": "the", "start": 1143, "end": 1146, "annotation": null}, {"text": "formation", "start": 1147, "end": 1156, "annotation": null}, {"text": "of", "start": 1157, "end": 1159, "annotation": null}, {"text": "more", "start": 1160, "end": 1164, "annotation": null}, {"text": "NO2", "start": 1165, "end": 1168, "annotation": null}, {"text": "over", "start": 1169, "end": 1173, "annotation": null}, {"text": "MnNb", "start": 1174, "end": 1178, "annotation": null}, {"text": "/", "start": 1178, "end": 1179, "annotation": null}, {"text": "TiO2", "start": 1179, "end": 1183, "annotation": null}, {"text": "-", "start": 1183, "end": 1184, "annotation": null}, {"text": "0.12", "start": 1184, "end": 1188, "annotation": null}, {"text": "catalyst", "start": 1189, "end": 1197, "annotation": null}, {"text": "should", "start": 1198, "end": 1204, "annotation": null}, {"text": "mainly", "start": 1205, "end": 1211, "annotation": null}, {"text": "account", "start": 1212, "end": 1219, "annotation": null}, {"text": "for", "start": 1220, "end": 1223, "annotation": null}, {"text": "its", "start": 1224, "end": 1227, "annotation": null}, {"text": "super", "start": 1228, "end": 1233, "annotation": null}, {"text": "SO2", "start": 1234, "end": 1237, "annotation": null}, {"text": "tolerance", "start": 1238, "end": 1247, "annotation": null}, {"text": ".", "start": 1247, "end": 1248, "annotation": null}]], "meta": {"doi": "10.1016/j.apsusc.2018.03.245"}} {"text": "This work reports on the synthesis and characterization of NASICON obtained from solid state reaction between SiO2, Na3PO4\u00b712H2O and two types of zirconia: monoclinic ZrO2 and yttria-doped tetragonal phase (ZrO2)0.97(Y2O3)0.03. Powders and dense samples were characterized by SEM, XRD and DTA. Electrical conductivity was measured by impedance spectroscopy. Results obtained with different NASICON samples showed a significant role of composition and processing conditions on the electrical properties. Dense yttria-doped samples were obtained at a lower temperature than the undoped material. The electrical conductivity, close to 2\u00d710\u22123 S cm\u22121 at room temperature, is significantly higher than the value obtained with the material prepared from pure ZrO2. Attempts to compensate the charge unbalance due to replacement of Y3+ for Zr4+ with additions of Na+ failed. Instead, a drop in electrical conductivity due to an enhancement of the grain boundary impedance was observed. Formation of monoclinic zirconia and glassy phases along the grain boundary were responsible for this effect. Results suggest a major role of microstructure on electrical properties rather than composition.", "meta": {"doi": "10.1016/S0955-2219(00)00264-8"}, "_input_hash": -50520155, "_task_hash": 859278562, "tokens": [[{"text": "This", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "work", "start": 5, "end": 9, "id": 1, "annotation": null}, {"text": "reports", "start": 10, "end": 17, "id": 2, "annotation": null}, {"text": "on", "start": 18, "end": 20, "id": 3, "annotation": null}, {"text": "the", "start": 21, "end": 24, "id": 4, "annotation": null}, {"text": "synthesis", "start": 25, "end": 34, "id": 5, "annotation": null}, {"text": "and", "start": 35, "end": 38, "id": 6, "annotation": null}, {"text": "characterization", "start": 39, "end": 55, "id": 7, "annotation": null}, {"text": "of", "start": 56, "end": 58, "id": 8, "annotation": null}, {"text": "NASICON", "start": 59, "end": 66, "id": 9, "annotation": null}, {"text": "obtained", "start": 67, "end": 75, "id": 10, "annotation": null}, {"text": "from", "start": 76, "end": 80, "id": 11, "annotation": null}, {"text": "solid", "start": 81, "end": 86, "id": 12, "annotation": null}, {"text": "state", "start": 87, "end": 92, "id": 13, "annotation": null}, {"text": "reaction", "start": 93, "end": 101, "id": 14, "annotation": null}, {"text": "between", "start": 102, "end": 109, "id": 15, "annotation": null}, {"text": "SiO2", "start": 110, "end": 114, "id": 16, "annotation": null}, {"text": ",", "start": 115, "end": 116, "id": 17, "annotation": null}, {"text": "Na3PO4\u00b712H2O", "start": 117, "end": 129, "id": 18, "annotation": null}, {"text": "and", "start": 130, "end": 133, "id": 19, "annotation": null}, {"text": "two", "start": 134, "end": 137, "id": 20, "annotation": null}, {"text": "types", "start": 138, "end": 143, "id": 21, "annotation": null}, {"text": "of", "start": 144, "end": 146, "id": 22, "annotation": null}, {"text": "zirconia", "start": 147, "end": 155, "id": 23, "annotation": null}, {"text": ":", "start": 156, "end": 157, "id": 24, "annotation": null}, {"text": "monoclinic", "start": 158, "end": 168, "id": 25, "annotation": null}, {"text": "ZrO2", "start": 169, "end": 173, "id": 26, "annotation": null}, {"text": "and", "start": 174, "end": 177, "id": 27, "annotation": null}, {"text": "yttria", "start": 178, "end": 184, "id": 28, "annotation": "DOPANT"}, {"text": "-", "start": 185, "end": 186, "id": 29, "annotation": null}, {"text": "doped", "start": 187, "end": 192, "id": 30, "annotation": null}, {"text": "tetragonal", "start": 193, "end": 203, "id": 31, "annotation": null}, {"text": "phase", "start": 204, "end": 209, "id": 32, "annotation": null}, {"text": "(", "start": 210, "end": 211, "id": 33, "annotation": "BASEMAT"}, {"text": "ZrO2)0.97(Y2O3)0.03", "start": 212, "end": 231, "id": 34, "annotation": "BASEMAT"}, {"text": ".", "start": 232, "end": 233, "id": 35, "annotation": null}], [{"text": "Powders", "start": 234, "end": 241, "id": 36, "annotation": null}, {"text": "and", "start": 242, "end": 245, "id": 37, "annotation": null}, {"text": "dense", "start": 246, "end": 251, "id": 38, "annotation": null}, {"text": "samples", "start": 252, "end": 259, "id": 39, "annotation": null}, {"text": "were", "start": 260, "end": 264, "id": 40, "annotation": null}, {"text": "characterized", "start": 265, "end": 278, "id": 41, "annotation": null}, {"text": "by", "start": 279, "end": 281, "id": 42, "annotation": null}, {"text": "SEM", "start": 282, "end": 285, "id": 43, "annotation": null}, {"text": ",", "start": 286, "end": 287, "id": 44, "annotation": null}, {"text": "XRD", "start": 288, "end": 291, "id": 45, "annotation": null}, {"text": "and", "start": 292, "end": 295, "id": 46, "annotation": null}, {"text": "DTA", "start": 296, "end": 299, "id": 47, "annotation": null}, {"text": ".", "start": 300, "end": 301, "id": 48, "annotation": null}], [{"text": "Electrical", "start": 302, "end": 312, "id": 49, "annotation": null}, {"text": "conductivity", "start": 313, "end": 325, "id": 50, "annotation": null}, {"text": "was", "start": 326, "end": 329, "id": 51, "annotation": null}, {"text": "measured", "start": 330, "end": 338, "id": 52, "annotation": null}, {"text": "by", "start": 339, "end": 341, "id": 53, "annotation": null}, {"text": "impedance", "start": 342, "end": 351, "id": 54, "annotation": null}, {"text": "spectroscopy", "start": 352, "end": 364, "id": 55, "annotation": null}, {"text": ".", "start": 365, "end": 366, "id": 56, "annotation": null}], [{"text": "Results", "start": 367, "end": 374, "id": 57, "annotation": null}, {"text": "obtained", "start": 375, "end": 383, "id": 58, "annotation": null}, {"text": "with", "start": 384, "end": 388, "id": 59, "annotation": null}, {"text": "different", "start": 389, "end": 398, "id": 60, "annotation": null}, {"text": "NASICON", "start": 399, "end": 406, "id": 61, "annotation": null}, {"text": "samples", "start": 407, "end": 414, "id": 62, "annotation": null}, {"text": "showed", "start": 415, "end": 421, "id": 63, "annotation": null}, {"text": "a", "start": 422, "end": 423, "id": 64, "annotation": null}, {"text": "significant", "start": 424, "end": 435, "id": 65, "annotation": null}, {"text": "role", "start": 436, "end": 440, "id": 66, "annotation": null}, {"text": "of", "start": 441, "end": 443, "id": 67, "annotation": null}, {"text": "composition", "start": 444, "end": 455, "id": 68, "annotation": null}, {"text": "and", "start": 456, "end": 459, "id": 69, "annotation": null}, {"text": "processing", "start": 460, "end": 470, "id": 70, "annotation": null}, {"text": "conditions", "start": 471, "end": 481, "id": 71, "annotation": null}, {"text": "on", "start": 482, "end": 484, "id": 72, "annotation": null}, {"text": "the", "start": 485, "end": 488, "id": 73, "annotation": null}, {"text": "electrical", "start": 489, "end": 499, "id": 74, "annotation": null}, {"text": "properties", "start": 500, "end": 510, "id": 75, "annotation": null}, {"text": ".", "start": 511, "end": 512, "id": 76, "annotation": null}], [{"text": "Dense", "start": 513, "end": 518, "id": 77, "annotation": null}, {"text": "yttria", "start": 519, "end": 525, "id": 78, "annotation": "DOPANT"}, {"text": "-", "start": 526, "end": 527, "id": 79, "annotation": null}, {"text": "doped", "start": 528, "end": 533, "id": 80, "annotation": null}, {"text": "samples", "start": 534, "end": 541, "id": 81, "annotation": "BASEMAT"}, {"text": "were", "start": 542, "end": 546, "id": 82, "annotation": null}, {"text": "obtained", "start": 547, "end": 555, "id": 83, "annotation": null}, {"text": "at", "start": 556, "end": 558, "id": 84, "annotation": null}, {"text": "a", "start": 559, "end": 560, "id": 85, "annotation": null}, {"text": "lower", "start": 561, "end": 566, "id": 86, "annotation": null}, {"text": "temperature", "start": 567, "end": 578, "id": 87, "annotation": null}, {"text": "than", "start": 579, "end": 583, "id": 88, "annotation": null}, {"text": "the", "start": 584, "end": 587, "id": 89, "annotation": null}, {"text": "undoped", "start": 588, "end": 595, "id": 90, "annotation": null}, {"text": "material", "start": 596, "end": 604, "id": 91, "annotation": null}, {"text": ".", "start": 605, "end": 606, "id": 92, "annotation": null}], [{"text": "The", "start": 607, "end": 610, "id": 93, "annotation": null}, {"text": "electrical", "start": 611, "end": 621, "id": 94, "annotation": null}, {"text": "conductivity", "start": 622, "end": 634, "id": 95, "annotation": null}, {"text": ",", "start": 635, "end": 636, "id": 96, "annotation": null}, {"text": "close", "start": 637, "end": 642, "id": 97, "annotation": null}, {"text": "to", "start": 643, "end": 645, "id": 98, "annotation": null}, {"text": "2\u00d710\u22123", "start": 646, "end": 652, "id": 99, "annotation": null}, {"text": "S", "start": 653, "end": 654, "id": 100, "annotation": null}, {"text": "cm\u22121", "start": 655, "end": 659, "id": 101, "annotation": null}, {"text": "at", "start": 660, "end": 662, "id": 102, "annotation": null}, {"text": "room", "start": 663, "end": 667, "id": 103, "annotation": null}, {"text": "temperature", "start": 668, "end": 679, "id": 104, "annotation": null}, {"text": ",", "start": 680, "end": 681, "id": 105, "annotation": null}, {"text": "is", "start": 682, "end": 684, "id": 106, "annotation": null}, {"text": "significantly", "start": 685, "end": 698, "id": 107, "annotation": null}, {"text": "higher", "start": 699, "end": 705, "id": 108, "annotation": null}, {"text": "than", "start": 706, "end": 710, "id": 109, "annotation": null}, {"text": "the", "start": 711, "end": 714, "id": 110, "annotation": null}, {"text": "value", "start": 715, "end": 720, "id": 111, "annotation": null}, {"text": "obtained", "start": 721, "end": 729, "id": 112, "annotation": null}, {"text": "with", "start": 730, "end": 734, "id": 113, "annotation": null}, {"text": "the", "start": 735, "end": 738, "id": 114, "annotation": null}, {"text": "material", "start": 739, "end": 747, "id": 115, "annotation": null}, {"text": "prepared", "start": 748, "end": 756, "id": 116, "annotation": null}, {"text": "from", "start": 757, "end": 761, "id": 117, "annotation": null}, {"text": "pure", "start": 762, "end": 766, "id": 118, "annotation": null}, {"text": "ZrO2", "start": 767, "end": 771, "id": 119, "annotation": null}, {"text": ".", "start": 772, "end": 773, "id": 120, "annotation": null}], [{"text": "Attempts", "start": 774, "end": 782, "id": 121, "annotation": null}, {"text": "to", "start": 783, "end": 785, "id": 122, "annotation": null}, {"text": "compensate", "start": 786, "end": 796, "id": 123, "annotation": null}, {"text": "the", "start": 797, "end": 800, "id": 124, "annotation": null}, {"text": "charge", "start": 801, "end": 807, "id": 125, "annotation": null}, {"text": "unbalance", "start": 808, "end": 817, "id": 126, "annotation": null}, {"text": "due", "start": 818, "end": 821, "id": 127, "annotation": null}, {"text": "to", "start": 822, "end": 824, "id": 128, "annotation": null}, {"text": "replacement", "start": 825, "end": 836, "id": 129, "annotation": null}, {"text": "of", "start": 837, "end": 839, "id": 130, "annotation": null}, {"text": "Y3", "start": 840, "end": 842, "id": 131, "annotation": null}, {"text": "+", "start": 843, "end": 844, "id": 132, "annotation": null}, {"text": "for", "start": 845, "end": 848, "id": 133, "annotation": null}, {"text": "Zr4", "start": 849, "end": 852, "id": 134, "annotation": null}, {"text": "+", "start": 853, "end": 854, "id": 135, "annotation": null}, {"text": "with", "start": 855, "end": 859, "id": 136, "annotation": null}, {"text": "additions", "start": 860, "end": 869, "id": 137, "annotation": null}, {"text": "of", "start": 870, "end": 872, "id": 138, "annotation": null}, {"text": "Na+", "start": 873, "end": 876, "id": 139, "annotation": null}, {"text": "failed", "start": 877, "end": 883, "id": 140, "annotation": null}, {"text": ".", "start": 884, "end": 885, "id": 141, "annotation": null}], [{"text": "Instead", "start": 886, "end": 893, "id": 142, "annotation": null}, {"text": ",", "start": 894, "end": 895, "id": 143, "annotation": null}, {"text": "a", "start": 896, "end": 897, "id": 144, "annotation": null}, {"text": "drop", "start": 898, "end": 902, "id": 145, "annotation": null}, {"text": "in", "start": 903, "end": 905, "id": 146, "annotation": null}, {"text": "electrical", "start": 906, "end": 916, "id": 147, "annotation": null}, {"text": "conductivity", "start": 917, "end": 929, "id": 148, "annotation": null}, {"text": "due", "start": 930, "end": 933, "id": 149, "annotation": null}, {"text": "to", "start": 934, "end": 936, "id": 150, "annotation": null}, {"text": "an", "start": 937, "end": 939, "id": 151, "annotation": null}, {"text": "enhancement", "start": 940, "end": 951, "id": 152, "annotation": null}, {"text": "of", "start": 952, "end": 954, "id": 153, "annotation": null}, {"text": "the", "start": 955, "end": 958, "id": 154, "annotation": null}, {"text": "grain", "start": 959, "end": 964, "id": 155, "annotation": null}, {"text": "boundary", "start": 965, "end": 973, "id": 156, "annotation": null}, {"text": "impedance", "start": 974, "end": 983, "id": 157, "annotation": null}, {"text": "was", "start": 984, "end": 987, "id": 158, "annotation": null}, {"text": "observed", "start": 988, "end": 996, "id": 159, "annotation": null}, {"text": ".", "start": 997, "end": 998, "id": 160, "annotation": null}], [{"text": "Formation", "start": 999, "end": 1008, "id": 161, "annotation": null}, {"text": "of", "start": 1009, "end": 1011, "id": 162, "annotation": null}, {"text": "monoclinic", "start": 1012, "end": 1022, "id": 163, "annotation": null}, {"text": "zirconia", "start": 1023, "end": 1031, "id": 164, "annotation": null}, {"text": "and", "start": 1032, "end": 1035, "id": 165, "annotation": null}, {"text": "glassy", "start": 1036, "end": 1042, "id": 166, "annotation": null}, {"text": "phases", "start": 1043, "end": 1049, "id": 167, "annotation": null}, {"text": "along", "start": 1050, "end": 1055, "id": 168, "annotation": null}, {"text": "the", "start": 1056, "end": 1059, "id": 169, "annotation": null}, {"text": "grain", "start": 1060, "end": 1065, "id": 170, "annotation": null}, {"text": "boundary", "start": 1066, "end": 1074, "id": 171, "annotation": null}, {"text": "were", "start": 1075, "end": 1079, "id": 172, "annotation": null}, {"text": "responsible", "start": 1080, "end": 1091, "id": 173, "annotation": null}, {"text": "for", "start": 1092, "end": 1095, "id": 174, "annotation": null}, {"text": "this", "start": 1096, "end": 1100, "id": 175, "annotation": null}, {"text": "effect", "start": 1101, "end": 1107, "id": 176, "annotation": null}, {"text": ".", "start": 1108, "end": 1109, "id": 177, "annotation": null}], [{"text": "Results", "start": 1110, "end": 1117, "id": 178, "annotation": null}, {"text": "suggest", "start": 1118, "end": 1125, "id": 179, "annotation": null}, {"text": "a", "start": 1126, "end": 1127, "id": 180, "annotation": null}, {"text": "major", "start": 1128, "end": 1133, "id": 181, "annotation": null}, {"text": "role", "start": 1134, "end": 1138, "id": 182, "annotation": null}, {"text": "of", "start": 1139, "end": 1141, "id": 183, "annotation": null}, {"text": "microstructure", "start": 1142, "end": 1156, "id": 184, "annotation": null}, {"text": "on", "start": 1157, "end": 1159, "id": 185, "annotation": null}, {"text": "electrical", "start": 1160, "end": 1170, "id": 186, "annotation": null}, {"text": "properties", "start": 1171, "end": 1181, "id": 187, "annotation": null}, {"text": "rather", "start": 1182, "end": 1188, "id": 188, "annotation": null}, {"text": "than", "start": 1189, "end": 1193, "id": 189, "annotation": null}, {"text": "composition", "start": 1194, "end": 1205, "id": 190, "annotation": null}, {"text": ".", "start": 1206, "end": 1207, "id": 191, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "All transparent photoelectric devices were achieved for the highly-performing photodetectors. The high transparent heterojunction photodetector of the configuration of NiO/ZnO/ITO/PET was realized by using the solid-state sputtering method. All metal oxide layers were formed at room temperature to be applied on the plastic substrate. The ITO layer was directly coated on the PET substrate to work as a transparent conductor. To form the transparent p/n junction, p-type NiO was reactively sputtered following by n-type ZnO deposition onto the ITO. This high visible-range transparent (74.8%) photodetector is extremely sensitive to detect the tiny UV light density of 10 \u03bcW/cm2 with the ultra-fast photoresponse time (19 \u03bcs) and high-photoresponse ratio (1944) due to the merit of excitonic absorption. The design scheme of zero-bias operating transparent heterojunction can be applied for visible electronic devices and solar cells.", "meta": {"doi": "10.1016/j.jallcom.2017.09.158"}, "_input_hash": -1821836632, "_task_hash": -1664278002, "tokens": [[{"text": "All", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "transparent", "start": 4, "end": 15, "id": 1, "annotation": null}, {"text": "photoelectric", "start": 16, "end": 29, "id": 2, "annotation": null}, {"text": "devices", "start": 30, "end": 37, "id": 3, "annotation": null}, {"text": "were", "start": 38, "end": 42, "id": 4, "annotation": null}, {"text": "achieved", "start": 43, "end": 51, "id": 5, "annotation": null}, {"text": "for", "start": 52, "end": 55, "id": 6, "annotation": null}, {"text": "the", "start": 56, "end": 59, "id": 7, "annotation": null}, {"text": "highly", "start": 60, "end": 66, "id": 8, "annotation": null}, {"text": "-", "start": 67, "end": 68, "id": 9, "annotation": null}, {"text": "performing", "start": 69, "end": 79, "id": 10, "annotation": null}, {"text": "photodetectors", "start": 80, "end": 94, "id": 11, "annotation": null}, {"text": ".", "start": 95, "end": 96, "id": 12, "annotation": null}], [{"text": "The", "start": 97, "end": 100, "id": 13, "annotation": null}, {"text": "high", "start": 101, "end": 105, "id": 14, "annotation": null}, {"text": "transparent", "start": 106, "end": 117, "id": 15, "annotation": null}, {"text": "heterojunction", "start": 118, "end": 132, "id": 16, "annotation": null}, {"text": "photodetector", "start": 133, "end": 146, "id": 17, "annotation": null}, {"text": "of", "start": 147, "end": 149, "id": 18, "annotation": null}, {"text": "the", "start": 150, "end": 153, "id": 19, "annotation": null}, {"text": "configuration", "start": 154, "end": 167, "id": 20, "annotation": null}, {"text": "of", "start": 168, "end": 170, "id": 21, "annotation": null}, {"text": "NiO", "start": 171, "end": 174, "id": 22, "annotation": null}, {"text": "/", "start": 175, "end": 176, "id": 23, "annotation": null}, {"text": "ZnO", "start": 177, "end": 180, "id": 24, "annotation": null}, {"text": "/", "start": 181, "end": 182, "id": 25, "annotation": null}, {"text": "ITO", "start": 183, "end": 186, "id": 26, "annotation": null}, {"text": "/", "start": 187, "end": 188, "id": 27, "annotation": null}, {"text": "PET", "start": 189, "end": 192, "id": 28, "annotation": null}, {"text": "was", "start": 193, "end": 196, "id": 29, "annotation": null}, {"text": "realized", "start": 197, "end": 205, "id": 30, "annotation": null}, {"text": "by", "start": 206, "end": 208, "id": 31, "annotation": null}, {"text": "using", "start": 209, "end": 214, "id": 32, "annotation": null}, {"text": "the", "start": 215, "end": 218, "id": 33, "annotation": null}, {"text": "solid", "start": 219, "end": 224, "id": 34, "annotation": null}, {"text": "-", "start": 225, "end": 226, "id": 35, "annotation": null}, {"text": "state", "start": 227, "end": 232, "id": 36, "annotation": null}, {"text": "sputtering", "start": 233, "end": 243, "id": 37, "annotation": null}, {"text": "method", "start": 244, "end": 250, "id": 38, "annotation": null}, {"text": ".", "start": 251, "end": 252, "id": 39, "annotation": null}], [{"text": "All", "start": 253, "end": 256, "id": 40, "annotation": null}, {"text": "metal", "start": 257, "end": 262, "id": 41, "annotation": null}, {"text": "oxide", "start": 263, "end": 268, "id": 42, "annotation": null}, {"text": "layers", "start": 269, "end": 275, "id": 43, "annotation": null}, {"text": "were", "start": 276, "end": 280, "id": 44, "annotation": null}, {"text": "formed", "start": 281, "end": 287, "id": 45, "annotation": null}, {"text": "at", "start": 288, "end": 290, "id": 46, "annotation": null}, {"text": "room", "start": 291, "end": 295, "id": 47, "annotation": null}, {"text": "temperature", "start": 296, "end": 307, "id": 48, "annotation": null}, {"text": "to", "start": 308, "end": 310, "id": 49, "annotation": null}, {"text": "be", "start": 311, "end": 313, "id": 50, "annotation": null}, {"text": "applied", "start": 314, "end": 321, "id": 51, "annotation": null}, {"text": "on", "start": 322, "end": 324, "id": 52, "annotation": null}, {"text": "the", "start": 325, "end": 328, "id": 53, "annotation": null}, {"text": "plastic", "start": 329, "end": 336, "id": 54, "annotation": null}, {"text": "substrate", "start": 337, "end": 346, "id": 55, "annotation": null}, {"text": ".", "start": 347, "end": 348, "id": 56, "annotation": null}], [{"text": "The", "start": 349, "end": 352, "id": 57, "annotation": null}, {"text": "ITO", "start": 353, "end": 356, "id": 58, "annotation": null}, {"text": "layer", "start": 357, "end": 362, "id": 59, "annotation": null}, {"text": "was", "start": 363, "end": 366, "id": 60, "annotation": null}, {"text": "directly", "start": 367, "end": 375, "id": 61, "annotation": null}, {"text": "coated", "start": 376, "end": 382, "id": 62, "annotation": null}, {"text": "on", "start": 383, "end": 385, "id": 63, "annotation": null}, {"text": "the", "start": 386, "end": 389, "id": 64, "annotation": null}, {"text": "PET", "start": 390, "end": 393, "id": 65, "annotation": null}, {"text": "substrate", "start": 394, "end": 403, "id": 66, "annotation": null}, {"text": "to", "start": 404, "end": 406, "id": 67, "annotation": null}, {"text": "work", "start": 407, "end": 411, "id": 68, "annotation": null}, {"text": "as", "start": 412, "end": 414, "id": 69, "annotation": null}, {"text": "a", "start": 415, "end": 416, "id": 70, "annotation": null}, {"text": "transparent", "start": 417, "end": 428, "id": 71, "annotation": null}, {"text": "conductor", "start": 429, "end": 438, "id": 72, "annotation": null}, {"text": ".", "start": 439, "end": 440, "id": 73, "annotation": null}], [{"text": "To", "start": 441, "end": 443, "id": 74, "annotation": null}, {"text": "form", "start": 444, "end": 448, "id": 75, "annotation": null}, {"text": "the", "start": 449, "end": 452, "id": 76, "annotation": null}, {"text": "transparent", "start": 453, "end": 464, "id": 77, "annotation": null}, {"text": "p", "start": 465, "end": 466, "id": 78, "annotation": null}, {"text": "/", "start": 467, "end": 468, "id": 79, "annotation": null}, {"text": "n", "start": 469, "end": 470, "id": 80, "annotation": null}, {"text": "junction", "start": 471, "end": 479, "id": 81, "annotation": null}, {"text": ",", "start": 480, "end": 481, "id": 82, "annotation": null}, {"text": "p", "start": 482, "end": 483, "id": 83, "annotation": "DOPANT"}, {"text": "-", "start": 484, "end": 485, "id": 84, "annotation": null}, {"text": "type", "start": 486, "end": 490, "id": 85, "annotation": "DOPANT"}, {"text": "NiO", "start": 491, "end": 494, "id": 86, "annotation": "BASEMAT"}, {"text": "was", "start": 495, "end": 498, "id": 87, "annotation": null}, {"text": "reactively", "start": 499, "end": 509, "id": 88, "annotation": null}, {"text": "sputtered", "start": 510, "end": 519, "id": 89, "annotation": null}, {"text": "following", "start": 520, "end": 529, "id": 90, "annotation": null}, {"text": "by", "start": 530, "end": 532, "id": 91, "annotation": null}, {"text": "n", "start": 533, "end": 534, "id": 92, "annotation": "DOPANT"}, {"text": "-", "start": 535, "end": 536, "id": 93, "annotation": null}, {"text": "type", "start": 537, "end": 541, "id": 94, "annotation": "DOPANT"}, {"text": "ZnO", "start": 542, "end": 545, "id": 95, "annotation": "BASEMAT"}, {"text": "deposition", "start": 546, "end": 556, "id": 96, "annotation": null}, {"text": "onto", "start": 557, "end": 561, "id": 97, "annotation": null}, {"text": "the", "start": 562, "end": 565, "id": 98, "annotation": null}, {"text": "ITO", "start": 566, "end": 569, "id": 99, "annotation": null}, {"text": ".", "start": 570, "end": 571, "id": 100, "annotation": null}], [{"text": "This", "start": 572, "end": 576, "id": 101, "annotation": null}, {"text": "high", "start": 577, "end": 581, "id": 102, "annotation": null}, {"text": "visible", "start": 582, "end": 589, "id": 103, "annotation": null}, {"text": "-", "start": 590, "end": 591, "id": 104, "annotation": null}, {"text": "range", "start": 592, "end": 597, "id": 105, "annotation": null}, {"text": "transparent", "start": 598, "end": 609, "id": 106, "annotation": null}, {"text": "(", "start": 610, "end": 611, "id": 107, "annotation": null}, {"text": "74.8", "start": 612, "end": 616, "id": 108, "annotation": null}, {"text": "%", "start": 617, "end": 618, "id": 109, "annotation": null}, {"text": ")", "start": 619, "end": 620, "id": 110, "annotation": null}, {"text": "photodetector", "start": 621, "end": 634, "id": 111, "annotation": null}, {"text": "is", "start": 635, "end": 637, "id": 112, "annotation": null}, {"text": "extremely", "start": 638, "end": 647, "id": 113, "annotation": null}, {"text": "sensitive", "start": 648, "end": 657, "id": 114, "annotation": null}, {"text": "to", "start": 658, "end": 660, "id": 115, "annotation": null}, {"text": "detect", "start": 661, "end": 667, "id": 116, "annotation": null}, {"text": "the", "start": 668, "end": 671, "id": 117, "annotation": null}, {"text": "tiny", "start": 672, "end": 676, "id": 118, "annotation": null}, {"text": "UV", "start": 677, "end": 679, "id": 119, "annotation": null}, {"text": "light", "start": 680, "end": 685, "id": 120, "annotation": null}, {"text": "density", "start": 686, "end": 693, "id": 121, "annotation": null}, {"text": "of", "start": 694, "end": 696, "id": 122, "annotation": null}, {"text": "10", "start": 697, "end": 699, "id": 123, "annotation": null}, {"text": "\u03bcW", "start": 700, "end": 702, "id": 124, "annotation": null}, {"text": "/", "start": 703, "end": 704, "id": 125, "annotation": null}, {"text": "cm2", "start": 705, "end": 708, "id": 126, "annotation": null}, {"text": "with", "start": 709, "end": 713, "id": 127, "annotation": null}, {"text": "the", "start": 714, "end": 717, "id": 128, "annotation": null}, {"text": "ultra", "start": 718, "end": 723, "id": 129, "annotation": null}, {"text": "-", "start": 724, "end": 725, "id": 130, "annotation": null}, {"text": "fast", "start": 726, "end": 730, "id": 131, "annotation": null}, {"text": "photoresponse", "start": 731, "end": 744, "id": 132, "annotation": null}, {"text": "time", "start": 745, "end": 749, "id": 133, "annotation": null}, {"text": "(", "start": 750, "end": 751, "id": 134, "annotation": null}, {"text": "19", "start": 752, "end": 754, "id": 135, "annotation": null}, {"text": "\u03bcs", "start": 755, "end": 757, "id": 136, "annotation": null}, {"text": ")", "start": 758, "end": 759, "id": 137, "annotation": null}, {"text": "and", "start": 760, "end": 763, "id": 138, "annotation": null}, {"text": "high", "start": 764, "end": 768, "id": 139, "annotation": null}, {"text": "-", "start": 769, "end": 770, "id": 140, "annotation": null}, {"text": "photoresponse", "start": 771, "end": 784, "id": 141, "annotation": null}, {"text": "ratio", "start": 785, "end": 790, "id": 142, "annotation": null}, {"text": "(", "start": 791, "end": 792, "id": 143, "annotation": null}, {"text": "1944", "start": 793, "end": 797, "id": 144, "annotation": null}, {"text": ")", "start": 798, "end": 799, "id": 145, "annotation": null}, {"text": "due", "start": 800, "end": 803, "id": 146, "annotation": null}, {"text": "to", "start": 804, "end": 806, "id": 147, "annotation": null}, {"text": "the", "start": 807, "end": 810, "id": 148, "annotation": null}, {"text": "merit", "start": 811, "end": 816, "id": 149, "annotation": null}, {"text": "of", "start": 817, "end": 819, "id": 150, "annotation": null}, {"text": "excitonic", "start": 820, "end": 829, "id": 151, "annotation": null}, {"text": "absorption", "start": 830, "end": 840, "id": 152, "annotation": null}, {"text": ".", "start": 841, "end": 842, "id": 153, "annotation": null}], [{"text": "The", "start": 843, "end": 846, "id": 154, "annotation": null}, {"text": "design", "start": 847, "end": 853, "id": 155, "annotation": null}, {"text": "scheme", "start": 854, "end": 860, "id": 156, "annotation": null}, {"text": "of", "start": 861, "end": 863, "id": 157, "annotation": null}, {"text": "zero", "start": 864, "end": 868, "id": 158, "annotation": null}, {"text": "-", "start": 869, "end": 870, "id": 159, "annotation": null}, {"text": "bias", "start": 871, "end": 875, "id": 160, "annotation": null}, {"text": "operating", "start": 876, "end": 885, "id": 161, "annotation": null}, {"text": "transparent", "start": 886, "end": 897, "id": 162, "annotation": null}, {"text": "heterojunction", "start": 898, "end": 912, "id": 163, "annotation": null}, {"text": "can", "start": 913, "end": 916, "id": 164, "annotation": null}, {"text": "be", "start": 917, "end": 919, "id": 165, "annotation": null}, {"text": "applied", "start": 920, "end": 927, "id": 166, "annotation": null}, {"text": "for", "start": 928, "end": 931, "id": 167, "annotation": null}, {"text": "visible", "start": 932, "end": 939, "id": 168, "annotation": null}, {"text": "electronic", "start": 940, "end": 950, "id": 169, "annotation": null}, {"text": "devices", "start": 951, "end": 958, "id": 170, "annotation": null}, {"text": "and", "start": 959, "end": 962, "id": 171, "annotation": null}, {"text": "solar", "start": 963, "end": 968, "id": 172, "annotation": null}, {"text": "cells", "start": 969, "end": 974, "id": 173, "annotation": null}, {"text": ".", "start": 975, "end": 976, "id": 174, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Zn- and Ti-doped thermoelectric misfit cobalt oxides Ca3Co4\u2212x\u2212yZnxTiyO9 (x\u00a0=\u00a00 to 0.5, y\u00a0=\u00a00 to 0.5) were prepared by solid-phase reaction, followed by uniaxial compression molding and sintering at 1173\u00a0K for 20\u00a0h. Powder x-ray diffraction (XRD) data suggest that Zn and Ti dopants substitute in the rocksalt layer rather than in the CoO2 layer for x\u00a0\u2264\u00a00.1 and y\u00a0\u2264\u00a00.1, respectively. In Zn and Ti single-doped samples for x\u00a0\u2264\u00a00.1 and y\u00a0\u2264\u00a00.1, ZT at room temperature increased with x and y through an increase in the absolute Seebeck coefficient despite a decrease in electrical conductivity. In Zn and Ti double-doped samples, minor phases other than the misfit oxides were observed at approximately x\u00a0+\u00a0y\u00a0\u2265\u00a00.1. At x\u00a0\u2264\u00a00.1 and y\u00a0\u2264\u00a00.1, double doping improved the thermoelectric properties. ZT at room temperature reached a maximum value of 0.035 at (x, y)\u00a0=\u00a0(0.1, 0.03).", "meta": {"doi": "10.1007/s11664-012-1929-5"}, "_input_hash": -902908908, "_task_hash": -1332605069, "tokens": [[{"text": "Zn-", "start": 0, "end": 3, "id": 0, "annotation": "DOPANT"}, {"text": "and", "start": 4, "end": 7, "id": 1, "annotation": null}, {"text": "Ti", "start": 8, "end": 10, "id": 2, "annotation": "DOPANT"}, {"text": "-", "start": 11, "end": 12, "id": 3, "annotation": null}, {"text": "doped", "start": 13, "end": 18, "id": 4, "annotation": null}, {"text": "thermoelectric", "start": 19, "end": 33, "id": 5, "annotation": null}, {"text": "misfit", "start": 34, "end": 40, "id": 6, "annotation": null}, {"text": "cobalt", "start": 41, "end": 47, "id": 7, "annotation": "BASEMAT"}, {"text": "oxides", "start": 48, "end": 54, "id": 8, "annotation": "BASEMAT"}, {"text": "Ca3Co4\u2212x\u2212yZnxTiyO9", "start": 55, "end": 73, "id": 9, "annotation": null}, {"text": "(", "start": 74, "end": 75, "id": 10, "annotation": null}, {"text": "x", "start": 76, "end": 77, "id": 11, "annotation": "DOPMODQ"}, {"text": "=", "start": 78, "end": 79, "id": 13, "annotation": null}, {"text": "0", "start": 80, "end": 81, "id": 15, "annotation": null}, {"text": "to", "start": 82, "end": 84, "id": 16, "annotation": null}, {"text": "0.5", "start": 85, "end": 88, "id": 17, "annotation": "DOPMODQ"}, {"text": ",", "start": 89, "end": 90, "id": 18, "annotation": null}, {"text": "y", "start": 91, "end": 92, "id": 19, "annotation": "DOPMODQ"}, {"text": "=", "start": 93, "end": 94, "id": 21, "annotation": null}, {"text": "0", "start": 95, "end": 96, "id": 23, "annotation": null}, {"text": "to", "start": 97, "end": 99, "id": 24, "annotation": null}, {"text": "0.5", "start": 100, "end": 103, "id": 25, "annotation": "DOPMODQ"}, {"text": ")", "start": 104, "end": 105, "id": 26, "annotation": null}, {"text": "were", "start": 106, "end": 110, "id": 27, "annotation": null}, {"text": "prepared", "start": 111, "end": 119, "id": 28, "annotation": null}, {"text": "by", "start": 120, "end": 122, "id": 29, "annotation": null}, {"text": "solid", "start": 123, "end": 128, "id": 30, "annotation": null}, {"text": "-", "start": 129, "end": 130, "id": 31, "annotation": null}, {"text": "phase", "start": 131, "end": 136, "id": 32, "annotation": null}, {"text": "reaction", "start": 137, "end": 145, "id": 33, "annotation": null}, {"text": ",", "start": 146, "end": 147, "id": 34, "annotation": null}, {"text": "followed", "start": 148, "end": 156, "id": 35, "annotation": null}, {"text": "by", "start": 157, "end": 159, "id": 36, "annotation": null}, {"text": "uniaxial", "start": 160, "end": 168, "id": 37, "annotation": null}, {"text": "compression", "start": 169, "end": 180, "id": 38, "annotation": null}, {"text": "molding", "start": 181, "end": 188, "id": 39, "annotation": null}, {"text": "and", "start": 189, "end": 192, "id": 40, "annotation": null}, {"text": "sintering", "start": 193, "end": 202, "id": 41, "annotation": null}, {"text": "at", "start": 203, "end": 205, "id": 42, "annotation": null}, {"text": "1173", "start": 206, "end": 210, "id": 43, "annotation": null}, {"text": "K", "start": 211, "end": 212, "id": 45, "annotation": null}, {"text": "for", "start": 213, "end": 216, "id": 46, "annotation": null}, {"text": "20", "start": 217, "end": 219, "id": 47, "annotation": null}, {"text": "h.", "start": 220, "end": 222, "id": 49, "annotation": null}, {"text": "Powder", "start": 223, "end": 229, "id": 50, "annotation": null}, {"text": "x", "start": 230, "end": 231, "id": 51, "annotation": null}, {"text": "-", "start": 232, "end": 233, "id": 52, "annotation": null}, {"text": "ray", "start": 234, "end": 237, "id": 53, "annotation": null}, {"text": "diffraction", "start": 238, "end": 249, "id": 54, "annotation": null}, {"text": "(", "start": 250, "end": 251, "id": 55, "annotation": null}, {"text": "XRD", "start": 252, "end": 255, "id": 56, "annotation": null}, {"text": ")", "start": 256, "end": 257, "id": 57, "annotation": null}, {"text": "data", "start": 258, "end": 262, "id": 58, "annotation": null}, {"text": "suggest", "start": 263, "end": 270, "id": 59, "annotation": null}, {"text": "that", "start": 271, "end": 275, "id": 60, "annotation": null}, {"text": "Zn", "start": 276, "end": 278, "id": 61, "annotation": "DOPANT"}, {"text": "and", "start": 279, "end": 282, "id": 62, "annotation": null}, {"text": "Ti", "start": 283, "end": 285, "id": 63, "annotation": "DOPANT"}, {"text": "dopants", "start": 286, "end": 293, "id": 64, "annotation": null}, {"text": "substitute", "start": 294, "end": 304, "id": 65, "annotation": null}, {"text": "in", "start": 305, "end": 307, "id": 66, "annotation": null}, {"text": "the", "start": 308, "end": 311, "id": 67, "annotation": null}, {"text": "rocksalt", "start": 312, "end": 320, "id": 68, "annotation": "BASEMAT"}, {"text": "layer", "start": 321, "end": 326, "id": 69, "annotation": null}, {"text": "rather", "start": 327, "end": 333, "id": 70, "annotation": null}, {"text": "than", "start": 334, "end": 338, "id": 71, "annotation": null}, {"text": "in", "start": 339, "end": 341, "id": 72, "annotation": null}, {"text": "the", "start": 342, "end": 345, "id": 73, "annotation": null}, {"text": "CoO2", "start": 346, "end": 350, "id": 74, "annotation": null}, {"text": "layer", "start": 351, "end": 356, "id": 75, "annotation": null}, {"text": "for", "start": 357, "end": 360, "id": 76, "annotation": null}, {"text": "x", "start": 361, "end": 362, "id": 77, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 363, "end": 364, "id": 79, "annotation": null}, {"text": "0.1", "start": 365, "end": 368, "id": 81, "annotation": "DOPMODQ"}, {"text": "and", "start": 369, "end": 372, "id": 82, "annotation": null}, {"text": "y", "start": 373, "end": 374, "id": 83, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 375, "end": 376, "id": 85, "annotation": null}, {"text": "0.1", "start": 377, "end": 380, "id": 87, "annotation": "DOPMODQ"}, {"text": ",", "start": 381, "end": 382, "id": 88, "annotation": null}, {"text": "respectively", "start": 383, "end": 395, "id": 89, "annotation": null}, {"text": ".", "start": 396, "end": 397, "id": 90, "annotation": null}], [{"text": "In", "start": 398, "end": 400, "id": 91, "annotation": null}, {"text": "Zn", "start": 401, "end": 403, "id": 92, "annotation": "DOPANT"}, {"text": "and", "start": 404, "end": 407, "id": 93, "annotation": null}, {"text": "Ti", "start": 408, "end": 410, "id": 94, "annotation": "DOPANT"}, {"text": "single", "start": 411, "end": 417, "id": 95, "annotation": null}, {"text": "-", "start": 418, "end": 419, "id": 96, "annotation": null}, {"text": "doped", "start": 420, "end": 425, "id": 97, "annotation": null}, {"text": "samples", "start": 426, "end": 433, "id": 98, "annotation": null}, {"text": "for", "start": 434, "end": 437, "id": 99, "annotation": null}, {"text": "x", "start": 438, "end": 439, "id": 100, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 440, "end": 441, "id": 102, "annotation": null}, {"text": "0.1", "start": 442, "end": 445, "id": 104, "annotation": "DOPMODQ"}, {"text": "and", "start": 446, "end": 449, "id": 105, "annotation": null}, {"text": "y", "start": 450, "end": 451, "id": 106, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 452, "end": 453, "id": 108, "annotation": null}, {"text": "0.1", "start": 454, "end": 457, "id": 110, "annotation": "DOPMODQ"}, {"text": ",", "start": 458, "end": 459, "id": 111, "annotation": null}, {"text": "ZT", "start": 460, "end": 462, "id": 112, "annotation": null}, {"text": "at", "start": 463, "end": 465, "id": 113, "annotation": null}, {"text": "room", "start": 466, "end": 470, "id": 114, "annotation": null}, {"text": "temperature", "start": 471, "end": 482, "id": 115, "annotation": null}, {"text": "increased", "start": 483, "end": 492, "id": 116, "annotation": null}, {"text": "with", "start": 493, "end": 497, "id": 117, "annotation": null}, {"text": "x", "start": 498, "end": 499, "id": 118, "annotation": null}, {"text": "and", "start": 500, "end": 503, "id": 119, "annotation": null}, {"text": "y", "start": 504, "end": 505, "id": 120, "annotation": null}, {"text": "through", "start": 506, "end": 513, "id": 121, "annotation": null}, {"text": "an", "start": 514, "end": 516, "id": 122, "annotation": null}, {"text": "increase", "start": 517, "end": 525, "id": 123, "annotation": null}, {"text": "in", "start": 526, "end": 528, "id": 124, "annotation": null}, {"text": "the", "start": 529, "end": 532, "id": 125, "annotation": null}, {"text": "absolute", "start": 533, "end": 541, "id": 126, "annotation": null}, {"text": "Seebeck", "start": 542, "end": 549, "id": 127, "annotation": null}, {"text": "coefficient", "start": 550, "end": 561, "id": 128, "annotation": null}, {"text": "despite", "start": 562, "end": 569, "id": 129, "annotation": null}, {"text": "a", "start": 570, "end": 571, "id": 130, "annotation": null}, {"text": "decrease", "start": 572, "end": 580, "id": 131, "annotation": null}, {"text": "in", "start": 581, "end": 583, "id": 132, "annotation": null}, {"text": "electrical", "start": 584, "end": 594, "id": 133, "annotation": null}, {"text": "conductivity", "start": 595, "end": 607, "id": 134, "annotation": null}, {"text": ".", "start": 608, "end": 609, "id": 135, "annotation": null}], [{"text": "In", "start": 610, "end": 612, "id": 136, "annotation": null}, {"text": "Zn", "start": 613, "end": 615, "id": 137, "annotation": "DOPANT"}, {"text": "and", "start": 616, "end": 619, "id": 138, "annotation": null}, {"text": "Ti", "start": 620, "end": 622, "id": 139, "annotation": "DOPANT"}, {"text": "double", "start": 623, "end": 629, "id": 140, "annotation": null}, {"text": "-", "start": 630, "end": 631, "id": 141, "annotation": null}, {"text": "doped", "start": 632, "end": 637, "id": 142, "annotation": null}, {"text": "samples", "start": 638, "end": 645, "id": 143, "annotation": "BASEMAT"}, {"text": ",", "start": 646, "end": 647, "id": 144, "annotation": null}, {"text": "minor", "start": 648, "end": 653, "id": 145, "annotation": null}, {"text": "phases", "start": 654, "end": 660, "id": 146, "annotation": null}, {"text": "other", "start": 661, "end": 666, "id": 147, "annotation": null}, {"text": "than", "start": 667, "end": 671, "id": 148, "annotation": null}, {"text": "the", "start": 672, "end": 675, "id": 149, "annotation": null}, {"text": "misfit", "start": 676, "end": 682, "id": 150, "annotation": null}, {"text": "oxides", "start": 683, "end": 689, "id": 151, "annotation": null}, {"text": "were", "start": 690, "end": 694, "id": 152, "annotation": null}, {"text": "observed", "start": 695, "end": 703, "id": 153, "annotation": null}, {"text": "at", "start": 704, "end": 706, "id": 154, "annotation": null}, {"text": "approximately", "start": 707, "end": 720, "id": 155, "annotation": null}, {"text": "x", "start": 721, "end": 722, "id": 156, "annotation": "DOPMODQ"}, {"text": "+", "start": 723, "end": 724, "id": 158, "annotation": null}, {"text": "y", "start": 725, "end": 726, "id": 160, "annotation": null}, {"text": "\u2265", "start": 727, "end": 728, "id": 162, "annotation": null}, {"text": "0.1", "start": 729, "end": 732, "id": 164, "annotation": "DOPMODQ"}, {"text": ".", "start": 733, "end": 734, "id": 165, "annotation": null}], [{"text": "At", "start": 735, "end": 737, "id": 166, "annotation": null}, {"text": "x", "start": 738, "end": 739, "id": 167, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 740, "end": 741, "id": 169, "annotation": null}, {"text": "0.1", "start": 742, "end": 745, "id": 171, "annotation": "DOPMODQ"}, {"text": "and", "start": 746, "end": 749, "id": 172, "annotation": null}, {"text": "y", "start": 750, "end": 751, "id": 173, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 752, "end": 753, "id": 175, "annotation": null}, {"text": "0.1", "start": 754, "end": 757, "id": 177, "annotation": "DOPMODQ"}, {"text": ",", "start": 758, "end": 759, "id": 178, "annotation": null}, {"text": "double", "start": 760, "end": 766, "id": 179, "annotation": "DOPANT"}, {"text": "doping", "start": 767, "end": 773, "id": 180, "annotation": null}, {"text": "improved", "start": 774, "end": 782, "id": 181, "annotation": null}, {"text": "the", "start": 783, "end": 786, "id": 182, "annotation": null}, {"text": "thermoelectric", "start": 787, "end": 801, "id": 183, "annotation": null}, {"text": "properties", "start": 802, "end": 812, "id": 184, "annotation": null}, {"text": ".", "start": 813, "end": 814, "id": 185, "annotation": null}], [{"text": "ZT", "start": 815, "end": 817, "id": 186, "annotation": null}, {"text": "at", "start": 818, "end": 820, "id": 187, "annotation": null}, {"text": "room", "start": 821, "end": 825, "id": 188, "annotation": null}, {"text": "temperature", "start": 826, "end": 837, "id": 189, "annotation": null}, {"text": "reached", "start": 838, "end": 845, "id": 190, "annotation": null}, {"text": "a", "start": 846, "end": 847, "id": 191, "annotation": null}, {"text": "maximum", "start": 848, "end": 855, "id": 192, "annotation": null}, {"text": "value", "start": 856, "end": 861, "id": 193, "annotation": null}, {"text": "of", "start": 862, "end": 864, "id": 194, "annotation": null}, {"text": "0.035", "start": 865, "end": 870, "id": 195, "annotation": null}, {"text": "at", "start": 871, "end": 873, "id": 196, "annotation": null}, {"text": "(", "start": 874, "end": 875, "id": 197, "annotation": "DOPMODQ"}, {"text": "x", "start": 876, "end": 877, "id": 198, "annotation": null}, {"text": ",", "start": 878, "end": 879, "id": 199, "annotation": null}, {"text": "y", "start": 880, "end": 881, "id": 200, "annotation": null}, {"text": ")", "start": 882, "end": 883, "id": 201, "annotation": null}, {"text": "=", "start": 884, "end": 885, "id": 203, "annotation": null}, {"text": "(", "start": 886, "end": 887, "id": 205, "annotation": null}, {"text": "0.1", "start": 888, "end": 891, "id": 206, "annotation": null}, {"text": ",", "start": 892, "end": 893, "id": 207, "annotation": null}, {"text": "0.03", "start": 894, "end": 898, "id": 208, "annotation": null}, {"text": ")", "start": 899, "end": 900, "id": 209, "annotation": "DOPMODQ"}, {"text": ".", "start": 901, "end": 902, "id": 210, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "All transparent photoelectric devices were achieved for the highly-performing photodetectors. The high transparent heterojunction photodetector of the configuration of NiO/ZnO/ITO/PET was realized by using the solid-state sputtering method. All metal oxide layers were formed at room temperature to be applied on the plastic substrate. The ITO layer was directly coated on the PET substrate to work as a transparent conductor. To form the transparent p/n junction, p-type NiO was reactively sputtered following by n-type ZnO deposition onto the ITO. This high visible-range transparent (74.8%) photodetector is extremely sensitive to detect the tiny UV light density of 10 \u03bcW/cm2 with the ultra-fast photoresponse time (19 \u03bcs) and high-photoresponse ratio (1944) due to the merit of excitonic absorption. The design scheme of zero-bias operating transparent heterojunction can be applied for visible electronic devices and solar cells.", "meta": {"doi": "10.1016/j.jallcom.2017.09.158"}, "_input_hash": -1821836632, "_task_hash": -1664278002, "tokens": [[{"text": "All", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "transparent", "start": 4, "end": 15, "id": 1, "annotation": null}, {"text": "photoelectric", "start": 16, "end": 29, "id": 2, "annotation": null}, {"text": "devices", "start": 30, "end": 37, "id": 3, "annotation": null}, {"text": "were", "start": 38, "end": 42, "id": 4, "annotation": null}, {"text": "achieved", "start": 43, "end": 51, "id": 5, "annotation": null}, {"text": "for", "start": 52, "end": 55, "id": 6, "annotation": null}, {"text": "the", "start": 56, "end": 59, "id": 7, "annotation": null}, {"text": "highly", "start": 60, "end": 66, "id": 8, "annotation": null}, {"text": "-", "start": 67, "end": 68, "id": 9, "annotation": null}, {"text": "performing", "start": 69, "end": 79, "id": 10, "annotation": null}, {"text": "photodetectors", "start": 80, "end": 94, "id": 11, "annotation": null}, {"text": ".", "start": 95, "end": 96, "id": 12, "annotation": null}], [{"text": "The", "start": 97, "end": 100, "id": 13, "annotation": null}, {"text": "high", "start": 101, "end": 105, "id": 14, "annotation": null}, {"text": "transparent", "start": 106, "end": 117, "id": 15, "annotation": null}, {"text": "heterojunction", "start": 118, "end": 132, "id": 16, "annotation": null}, {"text": "photodetector", "start": 133, "end": 146, "id": 17, "annotation": null}, {"text": "of", "start": 147, "end": 149, "id": 18, "annotation": null}, {"text": "the", "start": 150, "end": 153, "id": 19, "annotation": null}, {"text": "configuration", "start": 154, "end": 167, "id": 20, "annotation": null}, {"text": "of", "start": 168, "end": 170, "id": 21, "annotation": null}, {"text": "NiO", "start": 171, "end": 174, "id": 22, "annotation": null}, {"text": "/", "start": 175, "end": 176, "id": 23, "annotation": null}, {"text": "ZnO", "start": 177, "end": 180, "id": 24, "annotation": null}, {"text": "/", "start": 181, "end": 182, "id": 25, "annotation": null}, {"text": "ITO", "start": 183, "end": 186, "id": 26, "annotation": null}, {"text": "/", "start": 187, "end": 188, "id": 27, "annotation": null}, {"text": "PET", "start": 189, "end": 192, "id": 28, "annotation": null}, {"text": "was", "start": 193, "end": 196, "id": 29, "annotation": null}, {"text": "realized", "start": 197, "end": 205, "id": 30, "annotation": null}, {"text": "by", "start": 206, "end": 208, "id": 31, "annotation": null}, {"text": "using", "start": 209, "end": 214, "id": 32, "annotation": null}, {"text": "the", "start": 215, "end": 218, "id": 33, "annotation": null}, {"text": "solid", "start": 219, "end": 224, "id": 34, "annotation": null}, {"text": "-", "start": 225, "end": 226, "id": 35, "annotation": null}, {"text": "state", "start": 227, "end": 232, "id": 36, "annotation": null}, {"text": "sputtering", "start": 233, "end": 243, "id": 37, "annotation": null}, {"text": "method", "start": 244, "end": 250, "id": 38, "annotation": null}, {"text": ".", "start": 251, "end": 252, "id": 39, "annotation": null}], [{"text": "All", "start": 253, "end": 256, "id": 40, "annotation": null}, {"text": "metal", "start": 257, "end": 262, "id": 41, "annotation": null}, {"text": "oxide", "start": 263, "end": 268, "id": 42, "annotation": null}, {"text": "layers", "start": 269, "end": 275, "id": 43, "annotation": null}, {"text": "were", "start": 276, "end": 280, "id": 44, "annotation": null}, {"text": "formed", "start": 281, "end": 287, "id": 45, "annotation": null}, {"text": "at", "start": 288, "end": 290, "id": 46, "annotation": null}, {"text": "room", "start": 291, "end": 295, "id": 47, "annotation": null}, {"text": "temperature", "start": 296, "end": 307, "id": 48, "annotation": null}, {"text": "to", "start": 308, "end": 310, "id": 49, "annotation": null}, {"text": "be", "start": 311, "end": 313, "id": 50, "annotation": null}, {"text": "applied", "start": 314, "end": 321, "id": 51, "annotation": null}, {"text": "on", "start": 322, "end": 324, "id": 52, "annotation": null}, {"text": "the", "start": 325, "end": 328, "id": 53, "annotation": null}, {"text": "plastic", "start": 329, "end": 336, "id": 54, "annotation": null}, {"text": "substrate", "start": 337, "end": 346, "id": 55, "annotation": null}, {"text": ".", "start": 347, "end": 348, "id": 56, "annotation": null}], [{"text": "The", "start": 349, "end": 352, "id": 57, "annotation": null}, {"text": "ITO", "start": 353, "end": 356, "id": 58, "annotation": null}, {"text": "layer", "start": 357, "end": 362, "id": 59, "annotation": null}, {"text": "was", "start": 363, "end": 366, "id": 60, "annotation": null}, {"text": "directly", "start": 367, "end": 375, "id": 61, "annotation": null}, {"text": "coated", "start": 376, "end": 382, "id": 62, "annotation": null}, {"text": "on", "start": 383, "end": 385, "id": 63, "annotation": null}, {"text": "the", "start": 386, "end": 389, "id": 64, "annotation": null}, {"text": "PET", "start": 390, "end": 393, "id": 65, "annotation": null}, {"text": "substrate", "start": 394, "end": 403, "id": 66, "annotation": null}, {"text": "to", "start": 404, "end": 406, "id": 67, "annotation": null}, {"text": "work", "start": 407, "end": 411, "id": 68, "annotation": null}, {"text": "as", "start": 412, "end": 414, "id": 69, "annotation": null}, {"text": "a", "start": 415, "end": 416, "id": 70, "annotation": null}, {"text": "transparent", "start": 417, "end": 428, "id": 71, "annotation": null}, {"text": "conductor", "start": 429, "end": 438, "id": 72, "annotation": null}, {"text": ".", "start": 439, "end": 440, "id": 73, "annotation": null}], [{"text": "To", "start": 441, "end": 443, "id": 74, "annotation": null}, {"text": "form", "start": 444, "end": 448, "id": 75, "annotation": null}, {"text": "the", "start": 449, "end": 452, "id": 76, "annotation": null}, {"text": "transparent", "start": 453, "end": 464, "id": 77, "annotation": null}, {"text": "p", "start": 465, "end": 466, "id": 78, "annotation": null}, {"text": "/", "start": 467, "end": 468, "id": 79, "annotation": null}, {"text": "n", "start": 469, "end": 470, "id": 80, "annotation": null}, {"text": "junction", "start": 471, "end": 479, "id": 81, "annotation": null}, {"text": ",", "start": 480, "end": 481, "id": 82, "annotation": null}, {"text": "p", "start": 482, "end": 483, "id": 83, "annotation": "DOPANT"}, {"text": "-", "start": 484, "end": 485, "id": 84, "annotation": "DOPANT"}, {"text": "type", "start": 486, "end": 490, "id": 85, "annotation": "DOPANT"}, {"text": "NiO", "start": 491, "end": 494, "id": 86, "annotation": "BASEMAT"}, {"text": "was", "start": 495, "end": 498, "id": 87, "annotation": null}, {"text": "reactively", "start": 499, "end": 509, "id": 88, "annotation": null}, {"text": "sputtered", "start": 510, "end": 519, "id": 89, "annotation": null}, {"text": "following", "start": 520, "end": 529, "id": 90, "annotation": null}, {"text": "by", "start": 530, "end": 532, "id": 91, "annotation": null}, {"text": "n", "start": 533, "end": 534, "id": 92, "annotation": "DOPANT"}, {"text": "-", "start": 535, "end": 536, "id": 93, "annotation": "DOPANT"}, {"text": "type", "start": 537, "end": 541, "id": 94, "annotation": "DOPANT"}, {"text": "ZnO", "start": 542, "end": 545, "id": 95, "annotation": "BASEMAT"}, {"text": "deposition", "start": 546, "end": 556, "id": 96, "annotation": null}, {"text": "onto", "start": 557, "end": 561, "id": 97, "annotation": null}, {"text": "the", "start": 562, "end": 565, "id": 98, "annotation": null}, {"text": "ITO", "start": 566, "end": 569, "id": 99, "annotation": null}, {"text": ".", "start": 570, "end": 571, "id": 100, "annotation": null}], [{"text": "This", "start": 572, "end": 576, "id": 101, "annotation": null}, {"text": "high", "start": 577, "end": 581, "id": 102, "annotation": null}, {"text": "visible", "start": 582, "end": 589, "id": 103, "annotation": null}, {"text": "-", "start": 590, "end": 591, "id": 104, "annotation": null}, {"text": "range", "start": 592, "end": 597, "id": 105, "annotation": null}, {"text": "transparent", "start": 598, "end": 609, "id": 106, "annotation": null}, {"text": "(", "start": 610, "end": 611, "id": 107, "annotation": null}, {"text": "74.8", "start": 612, "end": 616, "id": 108, "annotation": null}, {"text": "%", "start": 617, "end": 618, "id": 109, "annotation": null}, {"text": ")", "start": 619, "end": 620, "id": 110, "annotation": null}, {"text": "photodetector", "start": 621, "end": 634, "id": 111, "annotation": null}, {"text": "is", "start": 635, "end": 637, "id": 112, "annotation": null}, {"text": "extremely", "start": 638, "end": 647, "id": 113, "annotation": null}, {"text": "sensitive", "start": 648, "end": 657, "id": 114, "annotation": null}, {"text": "to", "start": 658, "end": 660, "id": 115, "annotation": null}, {"text": "detect", "start": 661, "end": 667, "id": 116, "annotation": null}, {"text": "the", "start": 668, "end": 671, "id": 117, "annotation": null}, {"text": "tiny", "start": 672, "end": 676, "id": 118, "annotation": null}, {"text": "UV", "start": 677, "end": 679, "id": 119, "annotation": null}, {"text": "light", "start": 680, "end": 685, "id": 120, "annotation": null}, {"text": "density", "start": 686, "end": 693, "id": 121, "annotation": null}, {"text": "of", "start": 694, "end": 696, "id": 122, "annotation": null}, {"text": "10", "start": 697, "end": 699, "id": 123, "annotation": null}, {"text": "\u03bcW", "start": 700, "end": 702, "id": 124, "annotation": null}, {"text": "/", "start": 703, "end": 704, "id": 125, "annotation": null}, {"text": "cm2", "start": 705, "end": 708, "id": 126, "annotation": null}, {"text": "with", "start": 709, "end": 713, "id": 127, "annotation": null}, {"text": "the", "start": 714, "end": 717, "id": 128, "annotation": null}, {"text": "ultra", "start": 718, "end": 723, "id": 129, "annotation": null}, {"text": "-", "start": 724, "end": 725, "id": 130, "annotation": null}, {"text": "fast", "start": 726, "end": 730, "id": 131, "annotation": null}, {"text": "photoresponse", "start": 731, "end": 744, "id": 132, "annotation": null}, {"text": "time", "start": 745, "end": 749, "id": 133, "annotation": null}, {"text": "(", "start": 750, "end": 751, "id": 134, "annotation": null}, {"text": "19", "start": 752, "end": 754, "id": 135, "annotation": null}, {"text": "\u03bcs", "start": 755, "end": 757, "id": 136, "annotation": null}, {"text": ")", "start": 758, "end": 759, "id": 137, "annotation": null}, {"text": "and", "start": 760, "end": 763, "id": 138, "annotation": null}, {"text": "high", "start": 764, "end": 768, "id": 139, "annotation": null}, {"text": "-", "start": 769, "end": 770, "id": 140, "annotation": null}, {"text": "photoresponse", "start": 771, "end": 784, "id": 141, "annotation": null}, {"text": "ratio", "start": 785, "end": 790, "id": 142, "annotation": null}, {"text": "(", "start": 791, "end": 792, "id": 143, "annotation": null}, {"text": "1944", "start": 793, "end": 797, "id": 144, "annotation": null}, {"text": ")", "start": 798, "end": 799, "id": 145, "annotation": null}, {"text": "due", "start": 800, "end": 803, "id": 146, "annotation": null}, {"text": "to", "start": 804, "end": 806, "id": 147, "annotation": null}, {"text": "the", "start": 807, "end": 810, "id": 148, "annotation": null}, {"text": "merit", "start": 811, "end": 816, "id": 149, "annotation": null}, {"text": "of", "start": 817, "end": 819, "id": 150, "annotation": null}, {"text": "excitonic", "start": 820, "end": 829, "id": 151, "annotation": null}, {"text": "absorption", "start": 830, "end": 840, "id": 152, "annotation": null}, {"text": ".", "start": 841, "end": 842, "id": 153, "annotation": null}], [{"text": "The", "start": 843, "end": 846, "id": 154, "annotation": null}, {"text": "design", "start": 847, "end": 853, "id": 155, "annotation": null}, {"text": "scheme", "start": 854, "end": 860, "id": 156, "annotation": null}, {"text": "of", "start": 861, "end": 863, "id": 157, "annotation": null}, {"text": "zero", "start": 864, "end": 868, "id": 158, "annotation": null}, {"text": "-", "start": 869, "end": 870, "id": 159, "annotation": null}, {"text": "bias", "start": 871, "end": 875, "id": 160, "annotation": null}, {"text": "operating", "start": 876, "end": 885, "id": 161, "annotation": null}, {"text": "transparent", "start": 886, "end": 897, "id": 162, "annotation": null}, {"text": "heterojunction", "start": 898, "end": 912, "id": 163, "annotation": null}, {"text": "can", "start": 913, "end": 916, "id": 164, "annotation": null}, {"text": "be", "start": 917, "end": 919, "id": 165, "annotation": null}, {"text": "applied", "start": 920, "end": 927, "id": 166, "annotation": null}, {"text": "for", "start": 928, "end": 931, "id": 167, "annotation": null}, {"text": "visible", "start": 932, "end": 939, "id": 168, "annotation": null}, {"text": "electronic", "start": 940, "end": 950, "id": 169, "annotation": null}, {"text": "devices", "start": 951, "end": 958, "id": 170, "annotation": null}, {"text": "and", "start": 959, "end": 962, "id": 171, "annotation": null}, {"text": "solar", "start": 963, "end": 968, "id": 172, "annotation": null}, {"text": "cells", "start": 969, "end": 974, "id": 173, "annotation": null}, {"text": ".", "start": 975, "end": 976, "id": 174, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Zn- and Ti-doped thermoelectric misfit cobalt oxides Ca3Co4\u2212x\u2212yZnxTiyO9 (x\u00a0=\u00a00 to 0.5, y\u00a0=\u00a00 to 0.5) were prepared by solid-phase reaction, followed by uniaxial compression molding and sintering at 1173\u00a0K for 20\u00a0h. Powder x-ray diffraction (XRD) data suggest that Zn and Ti dopants substitute in the rocksalt layer rather than in the CoO2 layer for x\u00a0\u2264\u00a00.1 and y\u00a0\u2264\u00a00.1, respectively. In Zn and Ti single-doped samples for x\u00a0\u2264\u00a00.1 and y\u00a0\u2264\u00a00.1, ZT at room temperature increased with x and y through an increase in the absolute Seebeck coefficient despite a decrease in electrical conductivity. In Zn and Ti double-doped samples, minor phases other than the misfit oxides were observed at approximately x\u00a0+\u00a0y\u00a0\u2265\u00a00.1. At x\u00a0\u2264\u00a00.1 and y\u00a0\u2264\u00a00.1, double doping improved the thermoelectric properties. ZT at room temperature reached a maximum value of 0.035 at (x, y)\u00a0=\u00a0(0.1, 0.03).", "meta": {"doi": "10.1007/s11664-012-1929-5"}, "_input_hash": -902908908, "_task_hash": -1332605069, "tokens": [[{"text": "Zn-", "start": 0, "end": 3, "id": 0, "annotation": "DOPANT"}, {"text": "and", "start": 4, "end": 7, "id": 1, "annotation": null}, {"text": "Ti", "start": 8, "end": 10, "id": 2, "annotation": "DOPANT"}, {"text": "-", "start": 11, "end": 12, "id": 3, "annotation": null}, {"text": "doped", "start": 13, "end": 18, "id": 4, "annotation": null}, {"text": "thermoelectric", "start": 19, "end": 33, "id": 5, "annotation": null}, {"text": "misfit", "start": 34, "end": 40, "id": 6, "annotation": null}, {"text": "cobalt", "start": 41, "end": 47, "id": 7, "annotation": "BASEMAT"}, {"text": "oxides", "start": 48, "end": 54, "id": 8, "annotation": "BASEMAT"}, {"text": "Ca3Co4\u2212x\u2212yZnxTiyO9", "start": 55, "end": 73, "id": 9, "annotation": null}, {"text": "(", "start": 74, "end": 75, "id": 10, "annotation": null}, {"text": "x", "start": 76, "end": 77, "id": 11, "annotation": "DOPMODQ"}, {"text": "=", "start": 78, "end": 79, "id": 13, "annotation": "DOPMODQ"}, {"text": "0", "start": 80, "end": 81, "id": 15, "annotation": "DOPMODQ"}, {"text": "to", "start": 82, "end": 84, "id": 16, "annotation": "DOPMODQ"}, {"text": "0.5", "start": 85, "end": 88, "id": 17, "annotation": "DOPMODQ"}, {"text": ",", "start": 89, "end": 90, "id": 18, "annotation": null}, {"text": "y", "start": 91, "end": 92, "id": 19, "annotation": "DOPMODQ"}, {"text": "=", "start": 93, "end": 94, "id": 21, "annotation": "DOPMODQ"}, {"text": "0", "start": 95, "end": 96, "id": 23, "annotation": "DOPMODQ"}, {"text": "to", "start": 97, "end": 99, "id": 24, "annotation": "DOPMODQ"}, {"text": "0.5", "start": 100, "end": 103, "id": 25, "annotation": "DOPMODQ"}, {"text": ")", "start": 104, "end": 105, "id": 26, "annotation": null}, {"text": "were", "start": 106, "end": 110, "id": 27, "annotation": null}, {"text": "prepared", "start": 111, "end": 119, "id": 28, "annotation": null}, {"text": "by", "start": 120, "end": 122, "id": 29, "annotation": null}, {"text": "solid", "start": 123, "end": 128, "id": 30, "annotation": null}, {"text": "-", "start": 129, "end": 130, "id": 31, "annotation": null}, {"text": "phase", "start": 131, "end": 136, "id": 32, "annotation": null}, {"text": "reaction", "start": 137, "end": 145, "id": 33, "annotation": null}, {"text": ",", "start": 146, "end": 147, "id": 34, "annotation": null}, {"text": "followed", "start": 148, "end": 156, "id": 35, "annotation": null}, {"text": "by", "start": 157, "end": 159, "id": 36, "annotation": null}, {"text": "uniaxial", "start": 160, "end": 168, "id": 37, "annotation": null}, {"text": "compression", "start": 169, "end": 180, "id": 38, "annotation": null}, {"text": "molding", "start": 181, "end": 188, "id": 39, "annotation": null}, {"text": "and", "start": 189, "end": 192, "id": 40, "annotation": null}, {"text": "sintering", "start": 193, "end": 202, "id": 41, "annotation": null}, {"text": "at", "start": 203, "end": 205, "id": 42, "annotation": null}, {"text": "1173", "start": 206, "end": 210, "id": 43, "annotation": null}, {"text": "K", "start": 211, "end": 212, "id": 45, "annotation": null}, {"text": "for", "start": 213, "end": 216, "id": 46, "annotation": null}, {"text": "20", "start": 217, "end": 219, "id": 47, "annotation": null}, {"text": "h.", "start": 220, "end": 222, "id": 49, "annotation": null}, {"text": "Powder", "start": 223, "end": 229, "id": 50, "annotation": null}, {"text": "x", "start": 230, "end": 231, "id": 51, "annotation": null}, {"text": "-", "start": 232, "end": 233, "id": 52, "annotation": null}, {"text": "ray", "start": 234, "end": 237, "id": 53, "annotation": null}, {"text": "diffraction", "start": 238, "end": 249, "id": 54, "annotation": null}, {"text": "(", "start": 250, "end": 251, "id": 55, "annotation": null}, {"text": "XRD", "start": 252, "end": 255, "id": 56, "annotation": null}, {"text": ")", "start": 256, "end": 257, "id": 57, "annotation": null}, {"text": "data", "start": 258, "end": 262, "id": 58, "annotation": null}, {"text": "suggest", "start": 263, "end": 270, "id": 59, "annotation": null}, {"text": "that", "start": 271, "end": 275, "id": 60, "annotation": null}, {"text": "Zn", "start": 276, "end": 278, "id": 61, "annotation": "DOPANT"}, {"text": "and", "start": 279, "end": 282, "id": 62, "annotation": null}, {"text": "Ti", "start": 283, "end": 285, "id": 63, "annotation": "DOPANT"}, {"text": "dopants", "start": 286, "end": 293, "id": 64, "annotation": null}, {"text": "substitute", "start": 294, "end": 304, "id": 65, "annotation": null}, {"text": "in", "start": 305, "end": 307, "id": 66, "annotation": null}, {"text": "the", "start": 308, "end": 311, "id": 67, "annotation": null}, {"text": "rocksalt", "start": 312, "end": 320, "id": 68, "annotation": "BASEMAT"}, {"text": "layer", "start": 321, "end": 326, "id": 69, "annotation": null}, {"text": "rather", "start": 327, "end": 333, "id": 70, "annotation": null}, {"text": "than", "start": 334, "end": 338, "id": 71, "annotation": null}, {"text": "in", "start": 339, "end": 341, "id": 72, "annotation": null}, {"text": "the", "start": 342, "end": 345, "id": 73, "annotation": null}, {"text": "CoO2", "start": 346, "end": 350, "id": 74, "annotation": null}, {"text": "layer", "start": 351, "end": 356, "id": 75, "annotation": null}, {"text": "for", "start": 357, "end": 360, "id": 76, "annotation": null}, {"text": "x", "start": 361, "end": 362, "id": 77, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 363, "end": 364, "id": 79, "annotation": "DOPMODQ"}, {"text": "0.1", "start": 365, "end": 368, "id": 81, "annotation": "DOPMODQ"}, {"text": "and", "start": 369, "end": 372, "id": 82, "annotation": null}, {"text": "y", "start": 373, "end": 374, "id": 83, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 375, "end": 376, "id": 85, "annotation": "DOPMODQ"}, {"text": "0.1", "start": 377, "end": 380, "id": 87, "annotation": "DOPMODQ"}, {"text": ",", "start": 381, "end": 382, "id": 88, "annotation": null}, {"text": "respectively", "start": 383, "end": 395, "id": 89, "annotation": null}, {"text": ".", "start": 396, "end": 397, "id": 90, "annotation": null}], [{"text": "In", "start": 398, "end": 400, "id": 91, "annotation": null}, {"text": "Zn", "start": 401, "end": 403, "id": 92, "annotation": "DOPANT"}, {"text": "and", "start": 404, "end": 407, "id": 93, "annotation": null}, {"text": "Ti", "start": 408, "end": 410, "id": 94, "annotation": "DOPANT"}, {"text": "single", "start": 411, "end": 417, "id": 95, "annotation": null}, {"text": "-", "start": 418, "end": 419, "id": 96, "annotation": null}, {"text": "doped", "start": 420, "end": 425, "id": 97, "annotation": null}, {"text": "samples", "start": 426, "end": 433, "id": 98, "annotation": null}, {"text": "for", "start": 434, "end": 437, "id": 99, "annotation": null}, {"text": "x", "start": 438, "end": 439, "id": 100, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 440, "end": 441, "id": 102, "annotation": "DOPMODQ"}, {"text": "0.1", "start": 442, "end": 445, "id": 104, "annotation": "DOPMODQ"}, {"text": "and", "start": 446, "end": 449, "id": 105, "annotation": null}, {"text": "y", "start": 450, "end": 451, "id": 106, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 452, "end": 453, "id": 108, "annotation": "DOPMODQ"}, {"text": "0.1", "start": 454, "end": 457, "id": 110, "annotation": "DOPMODQ"}, {"text": ",", "start": 458, "end": 459, "id": 111, "annotation": null}, {"text": "ZT", "start": 460, "end": 462, "id": 112, "annotation": null}, {"text": "at", "start": 463, "end": 465, "id": 113, "annotation": null}, {"text": "room", "start": 466, "end": 470, "id": 114, "annotation": null}, {"text": "temperature", "start": 471, "end": 482, "id": 115, "annotation": null}, {"text": "increased", "start": 483, "end": 492, "id": 116, "annotation": null}, {"text": "with", "start": 493, "end": 497, "id": 117, "annotation": null}, {"text": "x", "start": 498, "end": 499, "id": 118, "annotation": null}, {"text": "and", "start": 500, "end": 503, "id": 119, "annotation": null}, {"text": "y", "start": 504, "end": 505, "id": 120, "annotation": null}, {"text": "through", "start": 506, "end": 513, "id": 121, "annotation": null}, {"text": "an", "start": 514, "end": 516, "id": 122, "annotation": null}, {"text": "increase", "start": 517, "end": 525, "id": 123, "annotation": null}, {"text": "in", "start": 526, "end": 528, "id": 124, "annotation": null}, {"text": "the", "start": 529, "end": 532, "id": 125, "annotation": null}, {"text": "absolute", "start": 533, "end": 541, "id": 126, "annotation": null}, {"text": "Seebeck", "start": 542, "end": 549, "id": 127, "annotation": null}, {"text": "coefficient", "start": 550, "end": 561, "id": 128, "annotation": null}, {"text": "despite", "start": 562, "end": 569, "id": 129, "annotation": null}, {"text": "a", "start": 570, "end": 571, "id": 130, "annotation": null}, {"text": "decrease", "start": 572, "end": 580, "id": 131, "annotation": null}, {"text": "in", "start": 581, "end": 583, "id": 132, "annotation": null}, {"text": "electrical", "start": 584, "end": 594, "id": 133, "annotation": null}, {"text": "conductivity", "start": 595, "end": 607, "id": 134, "annotation": null}, {"text": ".", "start": 608, "end": 609, "id": 135, "annotation": null}], [{"text": "In", "start": 610, "end": 612, "id": 136, "annotation": null}, {"text": "Zn", "start": 613, "end": 615, "id": 137, "annotation": "DOPANT"}, {"text": "and", "start": 616, "end": 619, "id": 138, "annotation": null}, {"text": "Ti", "start": 620, "end": 622, "id": 139, "annotation": "DOPANT"}, {"text": "double", "start": 623, "end": 629, "id": 140, "annotation": null}, {"text": "-", "start": 630, "end": 631, "id": 141, "annotation": null}, {"text": "doped", "start": 632, "end": 637, "id": 142, "annotation": null}, {"text": "samples", "start": 638, "end": 645, "id": 143, "annotation": "BASEMAT"}, {"text": ",", "start": 646, "end": 647, "id": 144, "annotation": null}, {"text": "minor", "start": 648, "end": 653, "id": 145, "annotation": null}, {"text": "phases", "start": 654, "end": 660, "id": 146, "annotation": null}, {"text": "other", "start": 661, "end": 666, "id": 147, "annotation": null}, {"text": "than", "start": 667, "end": 671, "id": 148, "annotation": null}, {"text": "the", "start": 672, "end": 675, "id": 149, "annotation": null}, {"text": "misfit", "start": 676, "end": 682, "id": 150, "annotation": null}, {"text": "oxides", "start": 683, "end": 689, "id": 151, "annotation": null}, {"text": "were", "start": 690, "end": 694, "id": 152, "annotation": null}, {"text": "observed", "start": 695, "end": 703, "id": 153, "annotation": null}, {"text": "at", "start": 704, "end": 706, "id": 154, "annotation": null}, {"text": "approximately", "start": 707, "end": 720, "id": 155, "annotation": null}, {"text": "x", "start": 721, "end": 722, "id": 156, "annotation": "DOPMODQ"}, {"text": "+", "start": 723, "end": 724, "id": 158, "annotation": "DOPMODQ"}, {"text": "y", "start": 725, "end": 726, "id": 160, "annotation": "DOPMODQ"}, {"text": "\u2265", "start": 727, "end": 728, "id": 162, "annotation": "DOPMODQ"}, {"text": "0.1", "start": 729, "end": 732, "id": 164, "annotation": "DOPMODQ"}, {"text": ".", "start": 733, "end": 734, "id": 165, "annotation": null}], [{"text": "At", "start": 735, "end": 737, "id": 166, "annotation": null}, {"text": "x", "start": 738, "end": 739, "id": 167, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 740, "end": 741, "id": 169, "annotation": "DOPMODQ"}, {"text": "0.1", "start": 742, "end": 745, "id": 171, "annotation": "DOPMODQ"}, {"text": "and", "start": 746, "end": 749, "id": 172, "annotation": null}, {"text": "y", "start": 750, "end": 751, "id": 173, "annotation": "DOPMODQ"}, {"text": "\u2264", "start": 752, "end": 753, "id": 175, "annotation": "DOPMODQ"}, {"text": "0.1", "start": 754, "end": 757, "id": 177, "annotation": "DOPMODQ"}, {"text": ",", "start": 758, "end": 759, "id": 178, "annotation": null}, {"text": "double", "start": 760, "end": 766, "id": 179, "annotation": "DOPANT"}, {"text": "doping", "start": 767, "end": 773, "id": 180, "annotation": null}, {"text": "improved", "start": 774, "end": 782, "id": 181, "annotation": null}, {"text": "the", "start": 783, "end": 786, "id": 182, "annotation": null}, {"text": "thermoelectric", "start": 787, "end": 801, "id": 183, "annotation": null}, {"text": "properties", "start": 802, "end": 812, "id": 184, "annotation": null}, {"text": ".", "start": 813, "end": 814, "id": 185, "annotation": null}], [{"text": "ZT", "start": 815, "end": 817, "id": 186, "annotation": null}, {"text": "at", "start": 818, "end": 820, "id": 187, "annotation": null}, {"text": "room", "start": 821, "end": 825, "id": 188, "annotation": null}, {"text": "temperature", "start": 826, "end": 837, "id": 189, "annotation": null}, {"text": "reached", "start": 838, "end": 845, "id": 190, "annotation": null}, {"text": "a", "start": 846, "end": 847, "id": 191, "annotation": null}, {"text": "maximum", "start": 848, "end": 855, "id": 192, "annotation": null}, {"text": "value", "start": 856, "end": 861, "id": 193, "annotation": null}, {"text": "of", "start": 862, "end": 864, "id": 194, "annotation": null}, {"text": "0.035", "start": 865, "end": 870, "id": 195, "annotation": null}, {"text": "at", "start": 871, "end": 873, "id": 196, "annotation": null}, {"text": "(", "start": 874, "end": 875, "id": 197, "annotation": "DOPMODQ"}, {"text": "x", "start": 876, "end": 877, "id": 198, "annotation": "DOPMODQ"}, {"text": ",", "start": 878, "end": 879, "id": 199, "annotation": "DOPMODQ"}, {"text": "y", "start": 880, "end": 881, "id": 200, "annotation": "DOPMODQ"}, {"text": ")", "start": 882, "end": 883, "id": 201, "annotation": "DOPMODQ"}, {"text": "=", "start": 884, "end": 885, "id": 203, "annotation": "DOPMODQ"}, {"text": "(", "start": 886, "end": 887, "id": 205, "annotation": "DOPMODQ"}, {"text": "0.1", "start": 888, "end": 891, "id": 206, "annotation": "DOPMODQ"}, {"text": ",", "start": 892, "end": 893, "id": 207, "annotation": "DOPMODQ"}, {"text": "0.03", "start": 894, "end": 898, "id": 208, "annotation": "DOPMODQ"}, {"text": ")", "start": 899, "end": 900, "id": 209, "annotation": "DOPMODQ"}, {"text": ".", "start": 901, "end": 902, "id": 210, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Without using an external precursor a simple and one-step method for the synthesis of C-doped TiO2 submicrospheres has been developed via hydrolysis of titanium tetraisopropoxide in pure methanol followed by calcination under air at 500\u00b0C. Also, with the addition of d-glucose and NH4OH solution during the hydrolysis process, C- or N-doped and C, N co-doped TiO2 submicrospheres can be prepared by the same method. The size of the submicrosphere was homogeneous ranging from 300 to 400nm. The resulting submicrospheres were characterized by FE-SEM, TEM, XRD, XPS and UV\u2013vis diffuse reflectance spectroscopy. The C- or N-doped and C, N co-doped submicrospheres showed obvious absorption in the wavelength up to around 650, 500 and 650nm, respectively. The activity of the photocatalysts was evaluated by the hydroxyl radical formation under visible light irradiation. Finally, the mechanism of sphere formation is discussed.", "meta": {"doi": "10.1016/j.apt.2009.12.009"}, "_input_hash": 487971749, "_task_hash": -480358568, "tokens": [[{"text": "Without", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "using", "start": 8, "end": 13, "id": 1, "annotation": null}, {"text": "an", "start": 14, "end": 16, "id": 2, "annotation": null}, {"text": "external", "start": 17, "end": 25, "id": 3, "annotation": null}, {"text": "precursor", "start": 26, "end": 35, "id": 4, "annotation": null}, {"text": "a", "start": 36, "end": 37, "id": 5, "annotation": null}, {"text": "simple", "start": 38, "end": 44, "id": 6, "annotation": null}, {"text": "and", "start": 45, "end": 48, "id": 7, "annotation": null}, {"text": "one", "start": 49, "end": 52, "id": 8, "annotation": null}, {"text": "-", "start": 53, "end": 54, "id": 9, "annotation": null}, {"text": "step", "start": 55, "end": 59, "id": 10, "annotation": null}, {"text": "method", "start": 60, "end": 66, "id": 11, "annotation": null}, {"text": "for", "start": 67, "end": 70, "id": 12, "annotation": null}, {"text": "the", "start": 71, "end": 74, "id": 13, "annotation": null}, {"text": "synthesis", "start": 75, "end": 84, "id": 14, "annotation": null}, {"text": "of", "start": 85, "end": 87, "id": 15, "annotation": null}, {"text": "C", "start": 88, "end": 89, "id": 16, "annotation": "DOPANT"}, {"text": "-", "start": 90, "end": 91, "id": 17, "annotation": null}, {"text": "doped", "start": 92, "end": 97, "id": 18, "annotation": null}, {"text": "TiO2", "start": 98, "end": 102, "id": 19, "annotation": "BASEMAT"}, {"text": "submicrospheres", "start": 103, "end": 118, "id": 20, "annotation": null}, {"text": "has", "start": 119, "end": 122, "id": 21, "annotation": null}, {"text": "been", "start": 123, "end": 127, "id": 22, "annotation": null}, {"text": "developed", "start": 128, "end": 137, "id": 23, "annotation": null}, {"text": "via", "start": 138, "end": 141, "id": 24, "annotation": null}, {"text": "hydrolysis", "start": 142, "end": 152, "id": 25, "annotation": null}, {"text": "of", "start": 153, "end": 155, "id": 26, "annotation": null}, {"text": "titanium", "start": 156, "end": 164, "id": 27, "annotation": null}, {"text": "tetraisopropoxide", "start": 165, "end": 182, "id": 28, "annotation": null}, {"text": "in", "start": 183, "end": 185, "id": 29, "annotation": null}, {"text": "pure", "start": 186, "end": 190, "id": 30, "annotation": null}, {"text": "methanol", "start": 191, "end": 199, "id": 31, "annotation": null}, {"text": "followed", "start": 200, "end": 208, "id": 32, "annotation": null}, {"text": "by", "start": 209, "end": 211, "id": 33, "annotation": null}, {"text": "calcination", "start": 212, "end": 223, "id": 34, "annotation": null}, {"text": "under", "start": 224, "end": 229, "id": 35, "annotation": null}, {"text": "air", "start": 230, "end": 233, "id": 36, "annotation": null}, {"text": "at", "start": 234, "end": 236, "id": 37, "annotation": null}, {"text": "500", "start": 237, "end": 240, "id": 38, "annotation": null}, {"text": "\u00b0", "start": 241, "end": 242, "id": 39, "annotation": null}, {"text": "C", "start": 243, "end": 244, "id": 40, "annotation": null}, {"text": ".", "start": 245, "end": 246, "id": 41, "annotation": null}], [{"text": "Also", "start": 247, "end": 251, "id": 42, "annotation": null}, {"text": ",", "start": 252, "end": 253, "id": 43, "annotation": null}, {"text": "with", "start": 254, "end": 258, "id": 44, "annotation": null}, {"text": "the", "start": 259, "end": 262, "id": 45, "annotation": null}, {"text": "addition", "start": 263, "end": 271, "id": 46, "annotation": null}, {"text": "of", "start": 272, "end": 274, "id": 47, "annotation": null}, {"text": "d", "start": 275, "end": 276, "id": 48, "annotation": null}, {"text": "-", "start": 277, "end": 278, "id": 49, "annotation": null}, {"text": "glucose", "start": 279, "end": 286, "id": 50, "annotation": null}, {"text": "and", "start": 287, "end": 290, "id": 51, "annotation": null}, {"text": "NH4OH", "start": 291, "end": 296, "id": 52, "annotation": null}, {"text": "solution", "start": 297, "end": 305, "id": 53, "annotation": null}, {"text": "during", "start": 306, "end": 312, "id": 54, "annotation": null}, {"text": "the", "start": 313, "end": 316, "id": 55, "annotation": null}, {"text": "hydrolysis", "start": 317, "end": 327, "id": 56, "annotation": null}, {"text": "process", "start": 328, "end": 335, "id": 57, "annotation": null}, {"text": ",", "start": 336, "end": 337, "id": 58, "annotation": null}, {"text": "C-", "start": 338, "end": 340, "id": 59, "annotation": "DOPANT"}, {"text": "or", "start": 341, "end": 343, "id": 60, "annotation": null}, {"text": "N", "start": 344, "end": 345, "id": 61, "annotation": "DOPANT"}, {"text": "-", "start": 346, "end": 347, "id": 62, "annotation": null}, {"text": "doped", "start": 348, "end": 353, "id": 63, "annotation": null}, {"text": "and", "start": 354, "end": 357, "id": 64, "annotation": null}, {"text": "C", "start": 358, "end": 359, "id": 65, "annotation": "DOPANT"}, {"text": ",", "start": 360, "end": 361, "id": 66, "annotation": null}, {"text": "N", "start": 362, "end": 363, "id": 67, "annotation": "DOPANT"}, {"text": "co", "start": 364, "end": 366, "id": 68, "annotation": null}, {"text": "-", "start": 367, "end": 368, "id": 69, "annotation": null}, {"text": "doped", "start": 369, "end": 374, "id": 70, "annotation": null}, {"text": "TiO2", "start": 375, "end": 379, "id": 71, "annotation": "BASEMAT"}, {"text": "submicrospheres", "start": 380, "end": 395, "id": 72, "annotation": null}, {"text": "can", "start": 396, "end": 399, "id": 73, "annotation": null}, {"text": "be", "start": 400, "end": 402, "id": 74, "annotation": null}, {"text": "prepared", "start": 403, "end": 411, "id": 75, "annotation": null}, {"text": "by", "start": 412, "end": 414, "id": 76, "annotation": null}, {"text": "the", "start": 415, "end": 418, "id": 77, "annotation": null}, {"text": "same", "start": 419, "end": 423, "id": 78, "annotation": null}, {"text": "method", "start": 424, "end": 430, "id": 79, "annotation": null}, {"text": ".", "start": 431, "end": 432, "id": 80, "annotation": null}], [{"text": "The", "start": 433, "end": 436, "id": 81, "annotation": null}, {"text": "size", "start": 437, "end": 441, "id": 82, "annotation": null}, {"text": "of", "start": 442, "end": 444, "id": 83, "annotation": null}, {"text": "the", "start": 445, "end": 448, "id": 84, "annotation": null}, {"text": "submicrosphere", "start": 449, "end": 463, "id": 85, "annotation": null}, {"text": "was", "start": 464, "end": 467, "id": 86, "annotation": null}, {"text": "homogeneous", "start": 468, "end": 479, "id": 87, "annotation": null}, {"text": "ranging", "start": 480, "end": 487, "id": 88, "annotation": null}, {"text": "from", "start": 488, "end": 492, "id": 89, "annotation": null}, {"text": "300", "start": 493, "end": 496, "id": 90, "annotation": null}, {"text": "to", "start": 497, "end": 499, "id": 91, "annotation": null}, {"text": "400", "start": 500, "end": 503, "id": 92, "annotation": null}, {"text": "nm", "start": 504, "end": 506, "id": 93, "annotation": null}, {"text": ".", "start": 507, "end": 508, "id": 94, "annotation": null}], [{"text": "The", "start": 509, "end": 512, "id": 95, "annotation": null}, {"text": "resulting", "start": 513, "end": 522, "id": 96, "annotation": null}, {"text": "submicrospheres", "start": 523, "end": 538, "id": 97, "annotation": null}, {"text": "were", "start": 539, "end": 543, "id": 98, "annotation": null}, {"text": "characterized", "start": 544, "end": 557, "id": 99, "annotation": null}, {"text": "by", "start": 558, "end": 560, "id": 100, "annotation": null}, {"text": "FE", "start": 561, "end": 563, "id": 101, "annotation": null}, {"text": "-", "start": 564, "end": 565, "id": 102, "annotation": null}, {"text": "SEM", "start": 566, "end": 569, "id": 103, "annotation": null}, {"text": ",", "start": 570, "end": 571, "id": 104, "annotation": null}, {"text": "TEM", "start": 572, "end": 575, "id": 105, "annotation": null}, {"text": ",", "start": 576, "end": 577, "id": 106, "annotation": null}, {"text": "XRD", "start": 578, "end": 581, "id": 107, "annotation": null}, {"text": ",", "start": 582, "end": 583, "id": 108, "annotation": null}, {"text": "XPS", "start": 584, "end": 587, "id": 109, "annotation": null}, {"text": "and", "start": 588, "end": 591, "id": 110, "annotation": null}, {"text": "UV", "start": 592, "end": 594, "id": 111, "annotation": null}, {"text": "\u2013", "start": 595, "end": 596, "id": 112, "annotation": null}, {"text": "vis", "start": 597, "end": 600, "id": 113, "annotation": null}, {"text": "diffuse", "start": 601, "end": 608, "id": 114, "annotation": null}, {"text": "reflectance", "start": 609, "end": 620, "id": 115, "annotation": null}, {"text": "spectroscopy", "start": 621, "end": 633, "id": 116, "annotation": null}, {"text": ".", "start": 634, "end": 635, "id": 117, "annotation": null}], [{"text": "The", "start": 636, "end": 639, "id": 118, "annotation": null}, {"text": "C-", "start": 640, "end": 642, "id": 119, "annotation": "DOPANT"}, {"text": "or", "start": 643, "end": 645, "id": 120, "annotation": null}, {"text": "N", "start": 646, "end": 647, "id": 121, "annotation": "DOPANT"}, {"text": "-", "start": 648, "end": 649, "id": 122, "annotation": null}, {"text": "doped", "start": 650, "end": 655, "id": 123, "annotation": null}, {"text": "and", "start": 656, "end": 659, "id": 124, "annotation": null}, {"text": "C", "start": 660, "end": 661, "id": 125, "annotation": "DOPANT"}, {"text": ",", "start": 662, "end": 663, "id": 126, "annotation": null}, {"text": "N", "start": 664, "end": 665, "id": 127, "annotation": "DOPANT"}, {"text": "co", "start": 666, "end": 668, "id": 128, "annotation": null}, {"text": "-", "start": 669, "end": 670, "id": 129, "annotation": null}, {"text": "doped", "start": 671, "end": 676, "id": 130, "annotation": null}, {"text": "submicrospheres", "start": 677, "end": 692, "id": 131, "annotation": "BASEMAT"}, {"text": "showed", "start": 693, "end": 699, "id": 132, "annotation": null}, {"text": "obvious", "start": 700, "end": 707, "id": 133, "annotation": null}, {"text": "absorption", "start": 708, "end": 718, "id": 134, "annotation": null}, {"text": "in", "start": 719, "end": 721, "id": 135, "annotation": null}, {"text": "the", "start": 722, "end": 725, "id": 136, "annotation": null}, {"text": "wavelength", "start": 726, "end": 736, "id": 137, "annotation": null}, {"text": "up", "start": 737, "end": 739, "id": 138, "annotation": null}, {"text": "to", "start": 740, "end": 742, "id": 139, "annotation": null}, {"text": "around", "start": 743, "end": 749, "id": 140, "annotation": null}, {"text": "650", "start": 750, "end": 753, "id": 141, "annotation": null}, {"text": ",", "start": 754, "end": 755, "id": 142, "annotation": null}, {"text": "500", "start": 756, "end": 759, "id": 143, "annotation": null}, {"text": "and", "start": 760, "end": 763, "id": 144, "annotation": null}, {"text": "650", "start": 764, "end": 767, "id": 145, "annotation": null}, {"text": "nm", "start": 768, "end": 770, "id": 146, "annotation": null}, {"text": ",", "start": 771, "end": 772, "id": 147, "annotation": null}, {"text": "respectively", "start": 773, "end": 785, "id": 148, "annotation": null}, {"text": ".", "start": 786, "end": 787, "id": 149, "annotation": null}], [{"text": "The", "start": 788, "end": 791, "id": 150, "annotation": null}, {"text": "activity", "start": 792, "end": 800, "id": 151, "annotation": null}, {"text": "of", "start": 801, "end": 803, "id": 152, "annotation": null}, {"text": "the", "start": 804, "end": 807, "id": 153, "annotation": null}, {"text": "photocatalysts", "start": 808, "end": 822, "id": 154, "annotation": null}, {"text": "was", "start": 823, "end": 826, "id": 155, "annotation": null}, {"text": "evaluated", "start": 827, "end": 836, "id": 156, "annotation": null}, {"text": "by", "start": 837, "end": 839, "id": 157, "annotation": null}, {"text": "the", "start": 840, "end": 843, "id": 158, "annotation": null}, {"text": "hydroxyl", "start": 844, "end": 852, "id": 159, "annotation": null}, {"text": "radical", "start": 853, "end": 860, "id": 160, "annotation": null}, {"text": "formation", "start": 861, "end": 870, "id": 161, "annotation": null}, {"text": "under", "start": 871, "end": 876, "id": 162, "annotation": null}, {"text": "visible", "start": 877, "end": 884, "id": 163, "annotation": null}, {"text": "light", "start": 885, "end": 890, "id": 164, "annotation": null}, {"text": "irradiation", "start": 891, "end": 902, "id": 165, "annotation": null}, {"text": ".", "start": 903, "end": 904, "id": 166, "annotation": null}], [{"text": "Finally", "start": 905, "end": 912, "id": 167, "annotation": null}, {"text": ",", "start": 913, "end": 914, "id": 168, "annotation": null}, {"text": "the", "start": 915, "end": 918, "id": 169, "annotation": null}, {"text": "mechanism", "start": 919, "end": 928, "id": 170, "annotation": null}, {"text": "of", "start": 929, "end": 931, "id": 171, "annotation": null}, {"text": "sphere", "start": 932, "end": 938, "id": 172, "annotation": null}, {"text": "formation", "start": 939, "end": 948, "id": 173, "annotation": null}, {"text": "is", "start": 949, "end": 951, "id": 174, "annotation": null}, {"text": "discussed", "start": 952, "end": 961, "id": 175, "annotation": null}, {"text": ".", "start": 962, "end": 963, "id": 176, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Nuclear spin-lattice relaxation times T 1 of 139 La in high-T c superconductor (La 1-x Sr x ) 2 CuO 4 (x=0.075,0.10) have been measured in zero field. T -11 in the superconducting state decreases rapidly, indicating a superconducting energy gap formation, but no signs of T -11 enhancement are observed just below T c . T -11 in the normal state shows slightly stronger temperature dependence than that expected from the Korringa relation (T 1 T= const.) observed in a highly Sr-doped, nonsuperconducting compound with x=0.15. All rights reserved.", "meta": {"doi": "10.1143/JPSJ.58.2662"}, "_input_hash": -91650711, "_task_hash": -1226174783, "tokens": [[{"text": "Nuclear", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "spin", "start": 8, "end": 12, "id": 1, "annotation": null}, {"text": "-", "start": 13, "end": 14, "id": 2, "annotation": null}, {"text": "lattice", "start": 15, "end": 22, "id": 3, "annotation": null}, {"text": "relaxation", "start": 23, "end": 33, "id": 4, "annotation": null}, {"text": "times", "start": 34, "end": 39, "id": 5, "annotation": null}, {"text": "T", "start": 40, "end": 41, "id": 6, "annotation": null}, {"text": "1", "start": 42, "end": 43, "id": 7, "annotation": null}, {"text": "of", "start": 44, "end": 46, "id": 8, "annotation": null}, {"text": "139", "start": 47, "end": 50, "id": 9, "annotation": null}, {"text": "La", "start": 51, "end": 53, "id": 10, "annotation": null}, {"text": "in", "start": 54, "end": 56, "id": 11, "annotation": null}, {"text": "high", "start": 57, "end": 61, "id": 12, "annotation": null}, {"text": "-", "start": 62, "end": 63, "id": 13, "annotation": null}, {"text": "T", "start": 64, "end": 65, "id": 14, "annotation": null}, {"text": "c", "start": 66, "end": 67, "id": 15, "annotation": null}, {"text": "superconductor", "start": 68, "end": 82, "id": 16, "annotation": null}, {"text": "(", "start": 83, "end": 84, "id": 17, "annotation": "BASEMAT"}, {"text": "La", "start": 85, "end": 87, "id": 18, "annotation": null}, {"text": "1-x", "start": 88, "end": 91, "id": 19, "annotation": "BASEMAT"}, {"text": "Sr", "start": 92, "end": 94, "id": 20, "annotation": "DOPANT"}, {"text": "x", "start": 95, "end": 96, "id": 21, "annotation": "DOPANT"}, {"text": ")", "start": 97, "end": 98, "id": 22, "annotation": "BASEMAT"}, {"text": "2", "start": 99, "end": 100, "id": 23, "annotation": null}, {"text": "CuO", "start": 101, "end": 104, "id": 24, "annotation": null}, {"text": "4", "start": 105, "end": 106, "id": 25, "annotation": null}, {"text": "(", "start": 107, "end": 108, "id": 26, "annotation": "BASEMAT"}, {"text": "x=0.075,0.10", "start": 109, "end": 121, "id": 27, "annotation": "DOPMODQ"}, {"text": ")", "start": 122, "end": 123, "id": 28, "annotation": null}, {"text": "have", "start": 124, "end": 128, "id": 29, "annotation": null}, {"text": "been", "start": 129, "end": 133, "id": 30, "annotation": null}, {"text": "measured", "start": 134, "end": 142, "id": 31, "annotation": null}, {"text": "in", "start": 143, "end": 145, "id": 32, "annotation": null}, {"text": "zero", "start": 146, "end": 150, "id": 33, "annotation": null}, {"text": "field", "start": 151, "end": 156, "id": 34, "annotation": null}, {"text": ".", "start": 157, "end": 158, "id": 35, "annotation": null}], [{"text": "T", "start": 159, "end": 160, "id": 36, "annotation": null}, {"text": "-11", "start": 161, "end": 164, "id": 37, "annotation": null}, {"text": "in", "start": 165, "end": 167, "id": 38, "annotation": null}, {"text": "the", "start": 168, "end": 171, "id": 39, "annotation": null}, {"text": "superconducting", "start": 172, "end": 187, "id": 40, "annotation": null}, {"text": "state", "start": 188, "end": 193, "id": 41, "annotation": null}, {"text": "decreases", "start": 194, "end": 203, "id": 42, "annotation": null}, {"text": "rapidly", "start": 204, "end": 211, "id": 43, "annotation": null}, {"text": ",", "start": 212, "end": 213, "id": 44, "annotation": null}, {"text": "indicating", "start": 214, "end": 224, "id": 45, "annotation": null}, {"text": "a", "start": 225, "end": 226, "id": 46, "annotation": null}, {"text": "superconducting", "start": 227, "end": 242, "id": 47, "annotation": null}, {"text": "energy", "start": 243, "end": 249, "id": 48, "annotation": null}, {"text": "gap", "start": 250, "end": 253, "id": 49, "annotation": null}, {"text": "formation", "start": 254, "end": 263, "id": 50, "annotation": null}, {"text": ",", "start": 264, "end": 265, "id": 51, "annotation": null}, {"text": "but", "start": 266, "end": 269, "id": 52, "annotation": null}, {"text": "no", "start": 270, "end": 272, "id": 53, "annotation": null}, {"text": "signs", "start": 273, "end": 278, "id": 54, "annotation": null}, {"text": "of", "start": 279, "end": 281, "id": 55, "annotation": null}, {"text": "T", "start": 282, "end": 283, "id": 56, "annotation": null}, {"text": "-11", "start": 284, "end": 287, "id": 57, "annotation": null}, {"text": "enhancement", "start": 288, "end": 299, "id": 58, "annotation": null}, {"text": "are", "start": 300, "end": 303, "id": 59, "annotation": null}, {"text": "observed", "start": 304, "end": 312, "id": 60, "annotation": null}, {"text": "just", "start": 313, "end": 317, "id": 61, "annotation": null}, {"text": "below", "start": 318, "end": 323, "id": 62, "annotation": null}, {"text": "T", "start": 324, "end": 325, "id": 63, "annotation": null}, {"text": "c", "start": 326, "end": 327, "id": 64, "annotation": null}, {"text": ".", "start": 328, "end": 329, "id": 65, "annotation": null}], [{"text": "T", "start": 330, "end": 331, "id": 66, "annotation": null}, {"text": "-11", "start": 332, "end": 335, "id": 67, "annotation": null}, {"text": "in", "start": 336, "end": 338, "id": 68, "annotation": null}, {"text": "the", "start": 339, "end": 342, "id": 69, "annotation": null}, {"text": "normal", "start": 343, "end": 349, "id": 70, "annotation": null}, {"text": "state", "start": 350, "end": 355, "id": 71, "annotation": null}, {"text": "shows", "start": 356, "end": 361, "id": 72, "annotation": null}, {"text": "slightly", "start": 362, "end": 370, "id": 73, "annotation": null}, {"text": "stronger", "start": 371, "end": 379, "id": 74, "annotation": null}, {"text": "temperature", "start": 380, "end": 391, "id": 75, "annotation": null}, {"text": "dependence", "start": 392, "end": 402, "id": 76, "annotation": null}, {"text": "than", "start": 403, "end": 407, "id": 77, "annotation": null}, {"text": "that", "start": 408, "end": 412, "id": 78, "annotation": null}, {"text": "expected", "start": 413, "end": 421, "id": 79, "annotation": null}, {"text": "from", "start": 422, "end": 426, "id": 80, "annotation": null}, {"text": "the", "start": 427, "end": 430, "id": 81, "annotation": null}, {"text": "Korringa", "start": 431, "end": 439, "id": 82, "annotation": null}, {"text": "relation", "start": 440, "end": 448, "id": 83, "annotation": null}, {"text": "(", "start": 449, "end": 450, "id": 84, "annotation": null}, {"text": "T", "start": 451, "end": 452, "id": 85, "annotation": null}, {"text": "1", "start": 453, "end": 454, "id": 86, "annotation": null}, {"text": "T=", "start": 455, "end": 457, "id": 87, "annotation": null}, {"text": "const", "start": 458, "end": 463, "id": 88, "annotation": null}, {"text": ".", "start": 464, "end": 465, "id": 89, "annotation": null}, {"text": ")", "start": 466, "end": 467, "id": 90, "annotation": null}], [{"text": "observed", "start": 468, "end": 476, "id": 91, "annotation": null}, {"text": "in", "start": 477, "end": 479, "id": 92, "annotation": null}, {"text": "a", "start": 480, "end": 481, "id": 93, "annotation": null}, {"text": "highly", "start": 482, "end": 488, "id": 94, "annotation": null}, {"text": "Sr", "start": 489, "end": 491, "id": 95, "annotation": "DOPANT"}, {"text": "-", "start": 492, "end": 493, "id": 96, "annotation": null}, {"text": "doped", "start": 494, "end": 499, "id": 97, "annotation": null}, {"text": ",", "start": 500, "end": 501, "id": 98, "annotation": null}, {"text": "nonsuperconducting", "start": 502, "end": 520, "id": 99, "annotation": null}, {"text": "compound", "start": 521, "end": 529, "id": 100, "annotation": "BASEMAT"}, {"text": "with", "start": 530, "end": 534, "id": 101, "annotation": null}, {"text": "x=0.15", "start": 535, "end": 541, "id": 102, "annotation": "DOPMODQ"}, {"text": ".", "start": 542, "end": 543, "id": 103, "annotation": null}], [{"text": "All", "start": 585, "end": 588, "id": 113, "annotation": null}, {"text": "rights", "start": 589, "end": 595, "id": 114, "annotation": null}, {"text": "reserved", "start": 596, "end": 604, "id": 115, "annotation": null}, {"text": ".", "start": 605, "end": 606, "id": 116, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "In this study, we investigate the influence of nanocrystalline diamond (NCD) thin film morphology and thickness on their electrical properties. NCD films are grown on p-type Si substrates with varied thicknesses from 250 to 788nm. Electrical contacts are formed from combination of Ti/Au metal layers (100nm thick each). The I\u2013V and breakdown field measurements are used to analyze the electrical properties of metal/NCD/Si sandwich structure. In addition, NCD films are analyzed by scanning electron microscopy and Raman spectroscopy for better interpretation of the I\u2013V measurements.", "meta": {"doi": "10.1016/j.mejo.2008.06.095"}, "_input_hash": 1725131795, "_task_hash": 1667610824, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "study", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": ",", "start": 14, "end": 15, "id": 3, "annotation": null}, {"text": "we", "start": 16, "end": 18, "id": 4, "annotation": null}, {"text": "investigate", "start": 19, "end": 30, "id": 5, "annotation": null}, {"text": "the", "start": 31, "end": 34, "id": 6, "annotation": null}, {"text": "influence", "start": 35, "end": 44, "id": 7, "annotation": null}, {"text": "of", "start": 45, "end": 47, "id": 8, "annotation": null}, {"text": "nanocrystalline", "start": 48, "end": 63, "id": 9, "annotation": null}, {"text": "diamond", "start": 64, "end": 71, "id": 10, "annotation": null}, {"text": "(", "start": 72, "end": 73, "id": 11, "annotation": null}, {"text": "NCD", "start": 74, "end": 77, "id": 12, "annotation": null}, {"text": ")", "start": 78, "end": 79, "id": 13, "annotation": null}, {"text": "thin", "start": 80, "end": 84, "id": 14, "annotation": null}, {"text": "film", "start": 85, "end": 89, "id": 15, "annotation": null}, {"text": "morphology", "start": 90, "end": 100, "id": 16, "annotation": null}, {"text": "and", "start": 101, "end": 104, "id": 17, "annotation": null}, {"text": "thickness", "start": 105, "end": 114, "id": 18, "annotation": null}, {"text": "on", "start": 115, "end": 117, "id": 19, "annotation": null}, {"text": "their", "start": 118, "end": 123, "id": 20, "annotation": null}, {"text": "electrical", "start": 124, "end": 134, "id": 21, "annotation": null}, {"text": "properties", "start": 135, "end": 145, "id": 22, "annotation": null}, {"text": ".", "start": 146, "end": 147, "id": 23, "annotation": null}], [{"text": "NCD", "start": 148, "end": 151, "id": 24, "annotation": null}, {"text": "films", "start": 152, "end": 157, "id": 25, "annotation": null}, {"text": "are", "start": 158, "end": 161, "id": 26, "annotation": null}, {"text": "grown", "start": 162, "end": 167, "id": 27, "annotation": null}, {"text": "on", "start": 168, "end": 170, "id": 28, "annotation": null}, {"text": "p", "start": 171, "end": 172, "id": 29, "annotation": "DOPANT"}, {"text": "-", "start": 173, "end": 174, "id": 30, "annotation": null}, {"text": "type", "start": 175, "end": 179, "id": 31, "annotation": "DOPANT"}, {"text": "Si", "start": 180, "end": 182, "id": 32, "annotation": "BASEMAT"}, {"text": "substrates", "start": 183, "end": 193, "id": 33, "annotation": null}, {"text": "with", "start": 194, "end": 198, "id": 34, "annotation": null}, {"text": "varied", "start": 199, "end": 205, "id": 35, "annotation": null}, {"text": "thicknesses", "start": 206, "end": 217, "id": 36, "annotation": null}, {"text": "from", "start": 218, "end": 222, "id": 37, "annotation": null}, {"text": "250", "start": 223, "end": 226, "id": 38, "annotation": null}, {"text": "to", "start": 227, "end": 229, "id": 39, "annotation": null}, {"text": "788", "start": 230, "end": 233, "id": 40, "annotation": null}, {"text": "nm", "start": 234, "end": 236, "id": 41, "annotation": null}, {"text": ".", "start": 237, "end": 238, "id": 42, "annotation": null}], [{"text": "Electrical", "start": 239, "end": 249, "id": 43, "annotation": null}, {"text": "contacts", "start": 250, "end": 258, "id": 44, "annotation": null}, {"text": "are", "start": 259, "end": 262, "id": 45, "annotation": null}, {"text": "formed", "start": 263, "end": 269, "id": 46, "annotation": null}, {"text": "from", "start": 270, "end": 274, "id": 47, "annotation": null}, {"text": "combination", "start": 275, "end": 286, "id": 48, "annotation": null}, {"text": "of", "start": 287, "end": 289, "id": 49, "annotation": null}, {"text": "Ti", "start": 290, "end": 292, "id": 50, "annotation": null}, {"text": "/", "start": 293, "end": 294, "id": 51, "annotation": null}, {"text": "Au", "start": 295, "end": 297, "id": 52, "annotation": null}, {"text": "metal", "start": 298, "end": 303, "id": 53, "annotation": null}, {"text": "layers", "start": 304, "end": 310, "id": 54, "annotation": null}, {"text": "(", "start": 311, "end": 312, "id": 55, "annotation": null}, {"text": "100", "start": 313, "end": 316, "id": 56, "annotation": null}, {"text": "nm", "start": 317, "end": 319, "id": 57, "annotation": null}, {"text": "thick", "start": 320, "end": 325, "id": 58, "annotation": null}, {"text": "each", "start": 326, "end": 330, "id": 59, "annotation": null}, {"text": ")", "start": 331, "end": 332, "id": 60, "annotation": null}, {"text": ".", "start": 333, "end": 334, "id": 61, "annotation": null}], [{"text": "The", "start": 335, "end": 338, "id": 62, "annotation": null}, {"text": "I", "start": 339, "end": 340, "id": 63, "annotation": null}, {"text": "\u2013", "start": 341, "end": 342, "id": 64, "annotation": null}, {"text": "V", "start": 343, "end": 344, "id": 65, "annotation": null}, {"text": "and", "start": 345, "end": 348, "id": 66, "annotation": null}, {"text": "breakdown", "start": 349, "end": 358, "id": 67, "annotation": null}, {"text": "field", "start": 359, "end": 364, "id": 68, "annotation": null}, {"text": "measurements", "start": 365, "end": 377, "id": 69, "annotation": null}, {"text": "are", "start": 378, "end": 381, "id": 70, "annotation": null}, {"text": "used", "start": 382, "end": 386, "id": 71, "annotation": null}, {"text": "to", "start": 387, "end": 389, "id": 72, "annotation": null}, {"text": "analyze", "start": 390, "end": 397, "id": 73, "annotation": null}, {"text": "the", "start": 398, "end": 401, "id": 74, "annotation": null}, {"text": "electrical", "start": 402, "end": 412, "id": 75, "annotation": null}, {"text": "properties", "start": 413, "end": 423, "id": 76, "annotation": null}, {"text": "of", "start": 424, "end": 426, "id": 77, "annotation": null}, {"text": "metal", "start": 427, "end": 432, "id": 78, "annotation": null}, {"text": "/", "start": 433, "end": 434, "id": 79, "annotation": null}, {"text": "NCD", "start": 435, "end": 438, "id": 80, "annotation": null}, {"text": "/", "start": 439, "end": 440, "id": 81, "annotation": null}, {"text": "Si", "start": 441, "end": 443, "id": 82, "annotation": null}, {"text": "sandwich", "start": 444, "end": 452, "id": 83, "annotation": null}, {"text": "structure", "start": 453, "end": 462, "id": 84, "annotation": null}, {"text": ".", "start": 463, "end": 464, "id": 85, "annotation": null}], [{"text": "In", "start": 465, "end": 467, "id": 86, "annotation": null}, {"text": "addition", "start": 468, "end": 476, "id": 87, "annotation": null}, {"text": ",", "start": 477, "end": 478, "id": 88, "annotation": null}, {"text": "NCD", "start": 479, "end": 482, "id": 89, "annotation": null}, {"text": "films", "start": 483, "end": 488, "id": 90, "annotation": null}, {"text": "are", "start": 489, "end": 492, "id": 91, "annotation": null}, {"text": "analyzed", "start": 493, "end": 501, "id": 92, "annotation": null}, {"text": "by", "start": 502, "end": 504, "id": 93, "annotation": null}, {"text": "scanning", "start": 505, "end": 513, "id": 94, "annotation": null}, {"text": "electron", "start": 514, "end": 522, "id": 95, "annotation": null}, {"text": "microscopy", "start": 523, "end": 533, "id": 96, "annotation": null}, {"text": "and", "start": 534, "end": 537, "id": 97, "annotation": null}, {"text": "Raman", "start": 538, "end": 543, "id": 98, "annotation": null}, {"text": "spectroscopy", "start": 544, "end": 556, "id": 99, "annotation": null}, {"text": "for", "start": 557, "end": 560, "id": 100, "annotation": null}, {"text": "better", "start": 561, "end": 567, "id": 101, "annotation": null}, {"text": "interpretation", "start": 568, "end": 582, "id": 102, "annotation": null}, {"text": "of", "start": 583, "end": 585, "id": 103, "annotation": null}, {"text": "the", "start": 586, "end": 589, "id": 104, "annotation": null}, {"text": "I", "start": 590, "end": 591, "id": 105, "annotation": null}, {"text": "\u2013", "start": 592, "end": 593, "id": 106, "annotation": null}, {"text": "V", "start": 594, "end": 595, "id": 107, "annotation": null}, {"text": "measurements", "start": 596, "end": 608, "id": 108, "annotation": null}, {"text": ".", "start": 609, "end": 610, "id": 109, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "Results from a study of electrophysical and luminescent properties of zinc-germanium diphosphide single crystals, diffusion doped with copper, are presented. The nature of the dominant defects formed upon copper diffusion in ZnGeP2 is determined using a thermodynamic analysis of defect formation processes in ZnGeP2 and a ZnGeP2: Cu solid solution performed within the framework of the quasichemical analysis method. It is demonstrated that by choosing the copper diffusion method the hole concentration in the ZnGeP2 can be varied over the range 1012\u22121016 cm\u22123. A retrograde character was observed in copper solubility in ZnGeP2 compounds. Defect formation processes in ZnGeP2 upon copper diffusion depend on the degree of atomic ordering in the cation sublattice at the diffusion annealing temperature.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Results", "start": 0, "end": 7, "annotation": null}, {"text": "from", "start": 8, "end": 12, "annotation": null}, {"text": "a", "start": 13, "end": 14, "annotation": null}, {"text": "study", "start": 15, "end": 20, "annotation": null}, {"text": "of", "start": 21, "end": 23, "annotation": null}, {"text": "electrophysical", "start": 24, "end": 39, "annotation": null}, {"text": "and", "start": 40, "end": 43, "annotation": null}, {"text": "luminescent", "start": 44, "end": 55, "annotation": null}, {"text": "properties", "start": 56, "end": 66, "annotation": null}, {"text": "of", "start": 67, "end": 69, "annotation": null}, {"text": "zinc", "start": 70, "end": 74, "annotation": "BASEMAT"}, {"text": "-", "start": 74, "end": 75, "annotation": "BASEMAT"}, {"text": "germanium", "start": 75, "end": 84, "annotation": "BASEMAT"}, {"text": "diphosphide", "start": 85, "end": 96, "annotation": "BASEMAT"}, {"text": "single", "start": 97, "end": 103, "annotation": "BASEMAT"}, {"text": "crystals", "start": 104, "end": 112, "annotation": "BASEMAT"}, {"text": ",", "start": 112, "end": 113, "annotation": null}, {"text": "diffusion", "start": 114, "end": 123, "annotation": null}, {"text": "doped", "start": 124, "end": 129, "annotation": null}, {"text": "with", "start": 130, "end": 134, "annotation": null}, {"text": "copper", "start": 135, "end": 141, "annotation": "DOPANT"}, {"text": ",", "start": 141, "end": 142, "annotation": null}, {"text": "are", "start": 143, "end": 146, "annotation": null}, {"text": "presented", "start": 147, "end": 156, "annotation": null}, {"text": ".", "start": 156, "end": 157, "annotation": null}], [{"text": "The", "start": 158, "end": 161, "annotation": null}, {"text": "nature", "start": 162, "end": 168, "annotation": null}, {"text": "of", "start": 169, "end": 171, "annotation": null}, {"text": "the", "start": 172, "end": 175, "annotation": null}, {"text": "dominant", "start": 176, "end": 184, "annotation": null}, {"text": "defects", "start": 185, "end": 192, "annotation": null}, {"text": "formed", "start": 193, "end": 199, "annotation": null}, {"text": "upon", "start": 200, "end": 204, "annotation": null}, {"text": "copper", "start": 205, "end": 211, "annotation": null}, {"text": "diffusion", "start": 212, "end": 221, "annotation": null}, {"text": "in", "start": 222, "end": 224, "annotation": null}, {"text": "ZnGeP2", "start": 225, "end": 231, "annotation": null}, {"text": "is", "start": 232, "end": 234, "annotation": null}, {"text": "determined", "start": 235, "end": 245, "annotation": null}, {"text": "using", "start": 246, "end": 251, "annotation": null}, {"text": "a", "start": 252, "end": 253, "annotation": null}, {"text": "thermodynamic", "start": 254, "end": 267, "annotation": null}, {"text": "analysis", "start": 268, "end": 276, "annotation": null}, {"text": "of", "start": 277, "end": 279, "annotation": null}, {"text": "defect", "start": 280, "end": 286, "annotation": null}, {"text": "formation", "start": 287, "end": 296, "annotation": null}, {"text": "processes", "start": 297, "end": 306, "annotation": null}, {"text": "in", "start": 307, "end": 309, "annotation": null}, {"text": "ZnGeP2", "start": 310, "end": 316, "annotation": null}, {"text": "and", "start": 317, "end": 320, "annotation": null}, {"text": "a", "start": 321, "end": 322, "annotation": null}, {"text": "ZnGeP2", "start": 323, "end": 329, "annotation": "BASEMAT"}, {"text": ":", "start": 329, "end": 330, "annotation": null}, {"text": "Cu", "start": 331, "end": 333, "annotation": "DOPANT"}, {"text": "solid", "start": 334, "end": 339, "annotation": null}, {"text": "solution", "start": 340, "end": 348, "annotation": null}, {"text": "performed", "start": 349, "end": 358, "annotation": null}, {"text": "within", "start": 359, "end": 365, "annotation": null}, {"text": "the", "start": 366, "end": 369, "annotation": null}, {"text": "framework", "start": 370, "end": 379, "annotation": null}, {"text": "of", "start": 380, "end": 382, "annotation": null}, {"text": "the", "start": 383, "end": 386, "annotation": null}, {"text": "quasichemical", "start": 387, "end": 400, "annotation": null}, {"text": "analysis", "start": 401, "end": 409, "annotation": null}, {"text": "method", "start": 410, "end": 416, "annotation": null}, {"text": ".", "start": 416, "end": 417, "annotation": null}], [{"text": "It", "start": 418, "end": 420, "annotation": null}, {"text": "is", "start": 421, "end": 423, "annotation": null}, {"text": "demonstrated", "start": 424, "end": 436, "annotation": null}, {"text": "that", "start": 437, "end": 441, "annotation": null}, {"text": "by", "start": 442, "end": 444, "annotation": null}, {"text": "choosing", "start": 445, "end": 453, "annotation": null}, {"text": "the", "start": 454, "end": 457, "annotation": null}, {"text": "copper", "start": 458, "end": 464, "annotation": null}, {"text": "diffusion", "start": 465, "end": 474, "annotation": null}, {"text": "method", "start": 475, "end": 481, "annotation": null}, {"text": "the", "start": 482, "end": 485, "annotation": null}, {"text": "hole", "start": 486, "end": 490, "annotation": null}, {"text": "concentration", "start": 491, "end": 504, "annotation": null}, {"text": "in", "start": 505, "end": 507, "annotation": null}, {"text": "the", "start": 508, "end": 511, "annotation": null}, {"text": "ZnGeP2", "start": 512, "end": 518, "annotation": null}, {"text": "can", "start": 519, "end": 522, "annotation": null}, {"text": "be", "start": 523, "end": 525, "annotation": null}, {"text": "varied", "start": 526, "end": 532, "annotation": null}, {"text": "over", "start": 533, "end": 537, "annotation": null}, {"text": "the", "start": 538, "end": 541, "annotation": null}, {"text": "range", "start": 542, "end": 547, "annotation": null}, {"text": "1012", "start": 548, "end": 552, "annotation": null}, {"text": "\u2212", "start": 552, "end": 553, "annotation": null}, {"text": "1016", "start": 553, "end": 557, "annotation": null}, {"text": "cm\u22123", "start": 558, "end": 562, "annotation": null}, {"text": ".", "start": 562, "end": 563, "annotation": null}], [{"text": "A", "start": 564, "end": 565, "annotation": null}, {"text": "retrograde", "start": 566, "end": 576, "annotation": null}, {"text": "character", "start": 577, "end": 586, "annotation": null}, {"text": "was", "start": 587, "end": 590, "annotation": null}, {"text": "observed", "start": 591, "end": 599, "annotation": null}, {"text": "in", "start": 600, "end": 602, "annotation": null}, {"text": "copper", "start": 603, "end": 609, "annotation": null}, {"text": "solubility", "start": 610, "end": 620, "annotation": null}, {"text": "in", "start": 621, "end": 623, "annotation": null}, {"text": "ZnGeP2", "start": 624, "end": 630, "annotation": null}, {"text": "compounds", "start": 631, "end": 640, "annotation": null}, {"text": ".", "start": 640, "end": 641, "annotation": null}], [{"text": "Defect", "start": 642, "end": 648, "annotation": null}, {"text": "formation", "start": 649, "end": 658, "annotation": null}, {"text": "processes", "start": 659, "end": 668, "annotation": null}, {"text": "in", "start": 669, "end": 671, "annotation": null}, {"text": "ZnGeP2", "start": 672, "end": 678, "annotation": null}, {"text": "upon", "start": 679, "end": 683, "annotation": null}, {"text": "copper", "start": 684, "end": 690, "annotation": null}, {"text": "diffusion", "start": 691, "end": 700, "annotation": null}, {"text": "depend", "start": 701, "end": 707, "annotation": null}, {"text": "on", "start": 708, "end": 710, "annotation": null}, {"text": "the", "start": 711, "end": 714, "annotation": null}, {"text": "degree", "start": 715, "end": 721, "annotation": null}, {"text": "of", "start": 722, "end": 724, "annotation": null}, {"text": "atomic", "start": 725, "end": 731, "annotation": null}, {"text": "ordering", "start": 732, "end": 740, "annotation": null}, {"text": "in", "start": 741, "end": 743, "annotation": null}, {"text": "the", "start": 744, "end": 747, "annotation": null}, {"text": "cation", "start": 748, "end": 754, "annotation": null}, {"text": "sublattice", "start": 755, "end": 765, "annotation": null}, {"text": "at", "start": 766, "end": 768, "annotation": null}, {"text": "the", "start": 769, "end": 772, "annotation": null}, {"text": "diffusion", "start": 773, "end": 782, "annotation": null}, {"text": "annealing", "start": 783, "end": 792, "annotation": null}, {"text": "temperature", "start": 793, "end": 804, "annotation": null}, {"text": ".", "start": 804, "end": 805, "annotation": null}]]} -{"remark": "doping_annt2", "text": "The visible light bactericidal ability of nitrogen doped TiO2 (TiON) film on Si (100) has been enhanced greatly (by 22%) through a single-mode microwave irradiation annealing (f=2.45GHz, 20s) in comparison with the conventional heat treatment at the same temperature (500\u00b0C, 300s). Analyses of X-ray photoelectron spectroscopy and transmission electron microscopy showed that the microwave annealed TiON film had a higher nitrogen concentration and much better crystallinity, both of which contribute to its prior bactericidal ability under visible light. The optimized annealing parameters of microwave irradiation are 500\u00b0C within 20s. Increase of annealing temperature and irradiation time resulted in the decrease of nitrogen concentration within the film. The crystallized TiON film has an anatase but not a rutile structure at the annealing temperature up to 800\u00b0C.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "visible", "start": 4, "end": 11, "annotation": null}, {"text": "light", "start": 12, "end": 17, "annotation": null}, {"text": "bactericidal", "start": 18, "end": 30, "annotation": null}, {"text": "ability", "start": 31, "end": 38, "annotation": null}, {"text": "of", "start": 39, "end": 41, "annotation": null}, {"text": "nitrogen", "start": 42, "end": 50, "annotation": "DOPANT"}, {"text": "doped", "start": 51, "end": 56, "annotation": null}, {"text": "TiO2", "start": 57, "end": 61, "annotation": "BASEMAT"}, {"text": "(", "start": 62, "end": 63, "annotation": null}, {"text": "TiON", "start": 63, "end": 67, "annotation": "BASEMAT"}, {"text": ")", "start": 67, "end": 68, "annotation": null}, {"text": "film", "start": 69, "end": 73, "annotation": null}, {"text": "on", "start": 74, "end": 76, "annotation": null}, {"text": "Si", "start": 77, "end": 79, "annotation": null}, {"text": "(", "start": 80, "end": 81, "annotation": null}, {"text": "100", "start": 81, "end": 84, "annotation": null}, {"text": ")", "start": 84, "end": 85, "annotation": null}, {"text": "has", "start": 86, "end": 89, "annotation": null}, {"text": "been", "start": 90, "end": 94, "annotation": null}, {"text": "enhanced", "start": 95, "end": 103, "annotation": null}, {"text": "greatly", "start": 104, "end": 111, "annotation": null}, {"text": "(", "start": 112, "end": 113, "annotation": null}, {"text": "by", "start": 113, "end": 115, "annotation": null}, {"text": "22", "start": 116, "end": 118, "annotation": null}, {"text": "%", "start": 118, "end": 119, "annotation": null}, {"text": ")", "start": 119, "end": 120, "annotation": null}, {"text": "through", "start": 121, "end": 128, "annotation": null}, {"text": "a", "start": 129, "end": 130, "annotation": null}, {"text": "single", "start": 131, "end": 137, "annotation": null}, {"text": "-", "start": 137, "end": 138, "annotation": null}, {"text": "mode", "start": 138, "end": 142, "annotation": null}, {"text": "microwave", "start": 143, "end": 152, "annotation": null}, {"text": "irradiation", "start": 153, "end": 164, "annotation": null}, {"text": "annealing", "start": 165, "end": 174, "annotation": null}, {"text": "(", "start": 175, "end": 176, "annotation": null}, {"text": "f", "start": 176, "end": 177, "annotation": null}, {"text": "=", "start": 177, "end": 178, "annotation": null}, {"text": "2.45GHz", "start": 178, "end": 185, "annotation": null}, {"text": ",", "start": 185, "end": 186, "annotation": null}, {"text": "20s", "start": 187, "end": 190, "annotation": null}, {"text": ")", "start": 190, "end": 191, "annotation": null}, {"text": "in", "start": 192, "end": 194, "annotation": null}, {"text": "comparison", "start": 195, "end": 205, "annotation": null}, {"text": "with", "start": 206, "end": 210, "annotation": null}, {"text": "the", "start": 211, "end": 214, "annotation": null}, {"text": "conventional", "start": 215, "end": 227, "annotation": null}, {"text": "heat", "start": 228, "end": 232, "annotation": null}, {"text": "treatment", "start": 233, "end": 242, "annotation": null}, {"text": "at", "start": 243, "end": 245, "annotation": null}, {"text": "the", "start": 246, "end": 249, "annotation": null}, {"text": "same", "start": 250, "end": 254, "annotation": null}, {"text": "temperature", "start": 255, "end": 266, "annotation": null}, {"text": "(", "start": 267, "end": 268, "annotation": null}, {"text": "500", "start": 268, "end": 271, "annotation": null}, {"text": "\u00b0", "start": 271, "end": 272, "annotation": null}, {"text": "C", "start": 272, "end": 273, "annotation": null}, {"text": ",", "start": 273, "end": 274, "annotation": null}, {"text": "300s", "start": 275, "end": 279, "annotation": null}, {"text": ")", "start": 279, "end": 280, "annotation": null}, {"text": ".", "start": 280, "end": 281, "annotation": null}], [{"text": "Analyses", "start": 282, "end": 290, "annotation": null}, {"text": "of", "start": 291, "end": 293, "annotation": null}, {"text": "X-ray", "start": 294, "end": 299, "annotation": null}, {"text": "photoelectron", "start": 300, "end": 313, "annotation": null}, {"text": "spectroscopy", "start": 314, "end": 326, "annotation": null}, {"text": "and", "start": 327, "end": 330, "annotation": null}, {"text": "transmission", "start": 331, "end": 343, "annotation": null}, {"text": "electron", "start": 344, "end": 352, "annotation": null}, {"text": "microscopy", "start": 353, "end": 363, "annotation": null}, {"text": "showed", "start": 364, "end": 370, "annotation": null}, {"text": "that", "start": 371, "end": 375, "annotation": null}, {"text": "the", "start": 376, "end": 379, "annotation": null}, {"text": "microwave", "start": 380, "end": 389, "annotation": null}, {"text": "annealed", "start": 390, "end": 398, "annotation": null}, {"text": "TiON", "start": 399, "end": 403, "annotation": null}, {"text": "film", "start": 404, "end": 408, "annotation": null}, {"text": "had", "start": 409, "end": 412, "annotation": null}, {"text": "a", "start": 413, "end": 414, "annotation": null}, {"text": "higher", "start": 415, "end": 421, "annotation": null}, {"text": "nitrogen", "start": 422, "end": 430, "annotation": null}, {"text": "concentration", "start": 431, "end": 444, "annotation": null}, {"text": "and", "start": 445, "end": 448, "annotation": null}, {"text": "much", "start": 449, "end": 453, "annotation": null}, {"text": "better", "start": 454, "end": 460, "annotation": null}, {"text": "crystallinity", "start": 461, "end": 474, "annotation": null}, {"text": ",", "start": 474, "end": 475, "annotation": null}, {"text": "both", "start": 476, "end": 480, "annotation": null}, {"text": "of", "start": 481, "end": 483, "annotation": null}, {"text": "which", "start": 484, "end": 489, "annotation": null}, {"text": "contribute", "start": 490, "end": 500, "annotation": null}, {"text": "to", "start": 501, "end": 503, "annotation": null}, {"text": "its", "start": 504, "end": 507, "annotation": null}, {"text": "prior", "start": 508, "end": 513, "annotation": null}, {"text": "bactericidal", "start": 514, "end": 526, "annotation": null}, {"text": "ability", "start": 527, "end": 534, "annotation": null}, {"text": "under", "start": 535, "end": 540, "annotation": null}, {"text": "visible", "start": 541, "end": 548, "annotation": null}, {"text": "light", "start": 549, "end": 554, "annotation": null}, {"text": ".", "start": 554, "end": 555, "annotation": null}], [{"text": "The", "start": 556, "end": 559, "annotation": null}, {"text": "optimized", "start": 560, "end": 569, "annotation": null}, {"text": "annealing", "start": 570, "end": 579, "annotation": null}, {"text": "parameters", "start": 580, "end": 590, "annotation": null}, {"text": "of", "start": 591, "end": 593, "annotation": null}, {"text": "microwave", "start": 594, "end": 603, "annotation": null}, {"text": "irradiation", "start": 604, "end": 615, "annotation": null}, {"text": "are", "start": 616, "end": 619, "annotation": null}, {"text": "500", "start": 620, "end": 623, "annotation": null}, {"text": "\u00b0", "start": 623, "end": 624, "annotation": null}, {"text": "C", "start": 624, "end": 625, "annotation": null}, {"text": "within", "start": 626, "end": 632, "annotation": null}, {"text": "20s", "start": 633, "end": 636, "annotation": null}, {"text": ".", "start": 636, "end": 637, "annotation": null}], [{"text": "Increase", "start": 638, "end": 646, "annotation": null}, {"text": "of", "start": 647, "end": 649, "annotation": null}, {"text": "annealing", "start": 650, "end": 659, "annotation": null}, {"text": "temperature", "start": 660, "end": 671, "annotation": null}, {"text": "and", "start": 672, "end": 675, "annotation": null}, {"text": "irradiation", "start": 676, "end": 687, "annotation": null}, {"text": "time", "start": 688, "end": 692, "annotation": null}, {"text": "resulted", "start": 693, "end": 701, "annotation": null}, {"text": "in", "start": 702, "end": 704, "annotation": null}, {"text": "the", "start": 705, "end": 708, "annotation": null}, {"text": "decrease", "start": 709, "end": 717, "annotation": null}, {"text": "of", "start": 718, "end": 720, "annotation": null}, {"text": "nitrogen", "start": 721, "end": 729, "annotation": null}, {"text": "concentration", "start": 730, "end": 743, "annotation": null}, {"text": "within", "start": 744, "end": 750, "annotation": null}, {"text": "the", "start": 751, "end": 754, "annotation": null}, {"text": "film", "start": 755, "end": 759, "annotation": null}, {"text": ".", "start": 759, "end": 760, "annotation": null}], [{"text": "The", "start": 761, "end": 764, "annotation": null}, {"text": "crystallized", "start": 765, "end": 777, "annotation": null}, {"text": "TiON", "start": 778, "end": 782, "annotation": null}, {"text": "film", "start": 783, "end": 787, "annotation": null}, {"text": "has", "start": 788, "end": 791, "annotation": null}, {"text": "an", "start": 792, "end": 794, "annotation": null}, {"text": "anatase", "start": 795, "end": 802, "annotation": null}, {"text": "but", "start": 803, "end": 806, "annotation": null}, {"text": "not", "start": 807, "end": 810, "annotation": null}, {"text": "a", "start": 811, "end": 812, "annotation": null}, {"text": "rutile", "start": 813, "end": 819, "annotation": null}, {"text": "structure", "start": 820, "end": 829, "annotation": null}, {"text": "at", "start": 830, "end": 832, "annotation": null}, {"text": "the", "start": 833, "end": 836, "annotation": null}, {"text": "annealing", "start": 837, "end": 846, "annotation": null}, {"text": "temperature", "start": 847, "end": 858, "annotation": null}, {"text": "up", "start": 859, "end": 861, "annotation": null}, {"text": "to", "start": 862, "end": 864, "annotation": null}, {"text": "800", "start": 865, "end": 868, "annotation": null}, {"text": "\u00b0", "start": 868, "end": 869, "annotation": null}, {"text": "C", "start": 869, "end": 870, "annotation": null}, {"text": ".", "start": 870, "end": 871, "annotation": null}]]} -{"remark": "doping_annt1", "text": "The six-layer structure of a Si1 \u2212 xGex heterobipolar transistor (HBT) with flat doping levels and abrupt junctions is grown by a silicon molecular beam epitaxy (MBE) process in one run. The process, the MBE equipment used and analytical results (secondary-ion mass spectrometry) are described. The growth temperature is reduced from 650 \u00b0C at the collector to 325 \u00b0C at the emitter contact. A Si1 \u2212 xGex base doping level of 5 \u00d7 1019 cm\u22123 is obtained by coevaporation of silicon, germanium and boron from an electron beam evaporator, a BN effusion cell and a high temperature graphite cell respectively. The n-type doping of 1016\u20131020 cm\u22123 (collector, emitter and emitter contact) is obtained by applying three different antimony dopant incorporation methods. Test transistors fabricated from these structures exhibited low noise, good high frequency performance (fT,fmax > 50 GHz) and low base sheet resistance (less than 1 k\u03a9/\u25a1).", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "six", "start": 4, "end": 7, "annotation": null}, {"text": "-", "start": 7, "end": 8, "annotation": null}, {"text": "layer", "start": 8, "end": 13, "annotation": null}, {"text": "structure", "start": 14, "end": 23, "annotation": null}, {"text": "of", "start": 24, "end": 26, "annotation": null}, {"text": "a", "start": 27, "end": 28, "annotation": null}, {"text": "Si1", "start": 29, "end": 32, "annotation": "DOPANT"}, {"text": "\u2212", "start": 33, "end": 34, "annotation": null}, {"text": "xGex", "start": 35, "end": 39, "annotation": "BASEMAT"}, {"text": "heterobipolar", "start": 40, "end": 53, "annotation": null}, {"text": "transistor", "start": 54, "end": 64, "annotation": null}, {"text": "(", "start": 65, "end": 66, "annotation": null}, {"text": "HBT", "start": 66, "end": 69, "annotation": null}, {"text": ")", "start": 69, "end": 70, "annotation": null}, {"text": "with", "start": 71, "end": 75, "annotation": null}, {"text": "flat", "start": 76, "end": 80, "annotation": null}, {"text": "doping", "start": 81, "end": 87, "annotation": null}, {"text": "levels", "start": 88, "end": 94, "annotation": null}, {"text": "and", "start": 95, "end": 98, "annotation": null}, {"text": "abrupt", "start": 99, "end": 105, "annotation": null}, {"text": "junctions", "start": 106, "end": 115, "annotation": null}, {"text": "is", "start": 116, "end": 118, "annotation": null}, {"text": "grown", "start": 119, "end": 124, "annotation": null}, {"text": "by", "start": 125, "end": 127, "annotation": null}, {"text": "a", "start": 128, "end": 129, "annotation": null}, {"text": "silicon", "start": 130, "end": 137, "annotation": null}, {"text": "molecular", "start": 138, "end": 147, "annotation": null}, {"text": "beam", "start": 148, "end": 152, "annotation": null}, {"text": "epitaxy", "start": 153, "end": 160, "annotation": null}, {"text": "(", "start": 161, "end": 162, "annotation": null}, {"text": "MBE", "start": 162, "end": 165, "annotation": null}, {"text": ")", "start": 165, "end": 166, "annotation": null}, {"text": "process", "start": 167, "end": 174, "annotation": null}, {"text": "in", "start": 175, "end": 177, "annotation": null}, {"text": "one", "start": 178, "end": 181, "annotation": null}, {"text": "run", "start": 182, "end": 185, "annotation": null}, {"text": ".", "start": 185, "end": 186, "annotation": null}], [{"text": "The", "start": 187, "end": 190, "annotation": null}, {"text": "process", "start": 191, "end": 198, "annotation": null}, {"text": ",", "start": 198, "end": 199, "annotation": null}, {"text": "the", "start": 200, "end": 203, "annotation": null}, {"text": "MBE", "start": 204, "end": 207, "annotation": null}, {"text": "equipment", "start": 208, "end": 217, "annotation": null}, {"text": "used", "start": 218, "end": 222, "annotation": null}, {"text": "and", "start": 223, "end": 226, "annotation": null}, {"text": "analytical", "start": 227, "end": 237, "annotation": null}, {"text": "results", "start": 238, "end": 245, "annotation": null}, {"text": "(", "start": 246, "end": 247, "annotation": null}, {"text": "secondary", "start": 247, "end": 256, "annotation": null}, {"text": "-", "start": 256, "end": 257, "annotation": null}, {"text": "ion", "start": 257, "end": 260, "annotation": null}, {"text": "mass", "start": 261, "end": 265, "annotation": null}, {"text": "spectrometry", "start": 266, "end": 278, "annotation": null}, {"text": ")", "start": 278, "end": 279, "annotation": null}, {"text": "are", "start": 280, "end": 283, "annotation": null}, {"text": "described", "start": 284, "end": 293, "annotation": null}, {"text": ".", "start": 293, "end": 294, "annotation": null}], [{"text": "The", "start": 295, "end": 298, "annotation": null}, {"text": "growth", "start": 299, "end": 305, "annotation": null}, {"text": "temperature", "start": 306, "end": 317, "annotation": null}, {"text": "is", "start": 318, "end": 320, "annotation": null}, {"text": "reduced", "start": 321, "end": 328, "annotation": null}, {"text": "from", "start": 329, "end": 333, "annotation": null}, {"text": "650", "start": 334, "end": 337, "annotation": null}, {"text": "\u00b0", "start": 338, "end": 339, "annotation": null}, {"text": "C", "start": 339, "end": 340, "annotation": null}, {"text": "at", "start": 341, "end": 343, "annotation": null}, {"text": "the", "start": 344, "end": 347, "annotation": null}, {"text": "collector", "start": 348, "end": 357, "annotation": null}, {"text": "to", "start": 358, "end": 360, "annotation": null}, {"text": "325", "start": 361, "end": 364, "annotation": null}, {"text": "\u00b0", "start": 365, "end": 366, "annotation": null}, {"text": "C", "start": 366, "end": 367, "annotation": null}, {"text": "at", "start": 368, "end": 370, "annotation": null}, {"text": "the", "start": 371, "end": 374, "annotation": null}, {"text": "emitter", "start": 375, "end": 382, "annotation": null}, {"text": "contact", "start": 383, "end": 390, "annotation": null}, {"text": ".", "start": 390, "end": 391, "annotation": null}], [{"text": "A", "start": 392, "end": 393, "annotation": null}, {"text": "Si1", "start": 394, "end": 397, "annotation": "DOPANT"}, {"text": "\u2212", "start": 398, "end": 399, "annotation": null}, {"text": "xGex", "start": 400, "end": 404, "annotation": "BASEMAT"}, {"text": "base", "start": 405, "end": 409, "annotation": null}, {"text": "doping", "start": 410, "end": 416, "annotation": null}, {"text": "level", "start": 417, "end": 422, "annotation": null}, {"text": "of", "start": 423, "end": 425, "annotation": null}, {"text": "5", "start": 426, "end": 427, "annotation": "DOPMODQ"}, {"text": "\u00d7", "start": 428, "end": 429, "annotation": "DOPMODQ"}, {"text": "1019", "start": 430, "end": 434, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 435, "end": 439, "annotation": "DOPMODQ"}, {"text": "is", "start": 440, "end": 442, "annotation": null}, {"text": "obtained", "start": 443, "end": 451, "annotation": null}, {"text": "by", "start": 452, "end": 454, "annotation": null}, {"text": "coevaporation", "start": 455, "end": 468, "annotation": null}, {"text": "of", "start": 469, "end": 471, "annotation": null}, {"text": "silicon", "start": 472, "end": 479, "annotation": null}, {"text": ",", "start": 479, "end": 480, "annotation": null}, {"text": "germanium", "start": 481, "end": 490, "annotation": null}, {"text": "and", "start": 491, "end": 494, "annotation": null}, {"text": "boron", "start": 495, "end": 500, "annotation": null}, {"text": "from", "start": 501, "end": 505, "annotation": null}, {"text": "an", "start": 506, "end": 508, "annotation": null}, {"text": "electron", "start": 509, "end": 517, "annotation": null}, {"text": "beam", "start": 518, "end": 522, "annotation": null}, {"text": "evaporator", "start": 523, "end": 533, "annotation": null}, {"text": ",", "start": 533, "end": 534, "annotation": null}, {"text": "a", "start": 535, "end": 536, "annotation": null}, {"text": "BN", "start": 537, "end": 539, "annotation": null}, {"text": "effusion", "start": 540, "end": 548, "annotation": null}, {"text": "cell", "start": 549, "end": 553, "annotation": null}, {"text": "and", "start": 554, "end": 557, "annotation": null}, {"text": "a", "start": 558, "end": 559, "annotation": null}, {"text": "high", "start": 560, "end": 564, "annotation": null}, {"text": "temperature", "start": 565, "end": 576, "annotation": null}, {"text": "graphite", "start": 577, "end": 585, "annotation": null}, {"text": "cell", "start": 586, "end": 590, "annotation": null}, {"text": "respectively", "start": 591, "end": 603, "annotation": null}, {"text": ".", "start": 603, "end": 604, "annotation": null}], [{"text": "The", "start": 605, "end": 608, "annotation": null}, {"text": "n", "start": 609, "end": 610, "annotation": "DOPANT"}, {"text": "-", "start": 610, "end": 611, "annotation": "DOPANT"}, {"text": "type", "start": 611, "end": 615, "annotation": "DOPANT"}, {"text": "doping", "start": 616, "end": 622, "annotation": null}, {"text": "of", "start": 623, "end": 625, "annotation": null}, {"text": "1016", "start": 626, "end": 630, "annotation": "DOPMODQ"}, {"text": "\u2013", "start": 630, "end": 631, "annotation": "DOPMODQ"}, {"text": "1020", "start": 631, "end": 635, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 636, "end": 640, "annotation": "DOPMODQ"}, {"text": "(", "start": 641, "end": 642, "annotation": null}, {"text": "collector", "start": 642, "end": 651, "annotation": null}, {"text": ",", "start": 651, "end": 652, "annotation": null}, {"text": "emitter", "start": 653, "end": 660, "annotation": null}, {"text": "and", "start": 661, "end": 664, "annotation": null}, {"text": "emitter", "start": 665, "end": 672, "annotation": null}, {"text": "contact", "start": 673, "end": 680, "annotation": null}, {"text": ")", "start": 680, "end": 681, "annotation": null}, {"text": "is", "start": 682, "end": 684, "annotation": null}, {"text": "obtained", "start": 685, "end": 693, "annotation": null}, {"text": "by", "start": 694, "end": 696, "annotation": null}, {"text": "applying", "start": 697, "end": 705, "annotation": null}, {"text": "three", "start": 706, "end": 711, "annotation": null}, {"text": "different", "start": 712, "end": 721, "annotation": null}, {"text": "antimony", "start": 722, "end": 730, "annotation": null}, {"text": "dopant", "start": 731, "end": 737, "annotation": null}, {"text": "incorporation", "start": 738, "end": 751, "annotation": null}, {"text": "methods", "start": 752, "end": 759, "annotation": null}, {"text": ".", "start": 759, "end": 760, "annotation": null}], [{"text": "Test", "start": 761, "end": 765, "annotation": null}, {"text": "transistors", "start": 766, "end": 777, "annotation": null}, {"text": "fabricated", "start": 778, "end": 788, "annotation": null}, {"text": "from", "start": 789, "end": 793, "annotation": null}, {"text": "these", "start": 794, "end": 799, "annotation": null}, {"text": "structures", "start": 800, "end": 810, "annotation": null}, {"text": "exhibited", "start": 811, "end": 820, "annotation": null}, {"text": "low", "start": 821, "end": 824, "annotation": null}, {"text": "noise", "start": 825, "end": 830, "annotation": null}, {"text": ",", "start": 830, "end": 831, "annotation": null}, {"text": "good", "start": 832, "end": 836, "annotation": null}, {"text": "high", "start": 837, "end": 841, "annotation": null}, {"text": "frequency", "start": 842, "end": 851, "annotation": null}, {"text": "performance", "start": 852, "end": 863, "annotation": null}, {"text": "(", "start": 864, "end": 865, "annotation": null}, {"text": "fT,fmax", "start": 865, "end": 872, "annotation": null}, {"text": ">", "start": 873, "end": 874, "annotation": null}, {"text": "50", "start": 875, "end": 877, "annotation": null}, {"text": "GHz", "start": 878, "end": 881, "annotation": null}, {"text": ")", "start": 881, "end": 882, "annotation": null}, {"text": "and", "start": 883, "end": 886, "annotation": null}, {"text": "low", "start": 887, "end": 890, "annotation": null}, {"text": "base", "start": 891, "end": 895, "annotation": null}, {"text": "sheet", "start": 896, "end": 901, "annotation": null}, {"text": "resistance", "start": 902, "end": 912, "annotation": null}, {"text": "(", "start": 913, "end": 914, "annotation": null}, {"text": "less", "start": 914, "end": 918, "annotation": null}, {"text": "than", "start": 919, "end": 923, "annotation": null}, {"text": "1", "start": 924, "end": 925, "annotation": null}, {"text": "k\u03a9", "start": 926, "end": 928, "annotation": null}, {"text": "/", "start": 928, "end": 929, "annotation": null}, {"text": "\u25a1", "start": 929, "end": 930, "annotation": null}, {"text": ")", "start": 930, "end": 931, "annotation": null}, {"text": ".", "start": 931, "end": 932, "annotation": null}]]} +{"text": "Nuclear spin-lattice relaxation times T 1 of 139 La in high-T c superconductor (La 1-x Sr x ) 2 CuO 4 (x=0.075,0.10) have been measured in zero field. T -11 in the superconducting state decreases rapidly, indicating a superconducting energy gap formation, but no signs of T -11 enhancement are observed just below T c . T -11 in the normal state shows slightly stronger temperature dependence than that expected from the Korringa relation (T 1 T= const.) observed in a highly Sr-doped, nonsuperconducting compound with x=0.15. All rights reserved.", "meta": {"doi": "10.1143/JPSJ.58.2662"}, "_input_hash": -91650711, "_task_hash": -1226174783, "tokens": [[{"text": "Nuclear", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "spin", "start": 8, "end": 12, "id": 1, "annotation": null}, {"text": "-", "start": 13, "end": 14, "id": 2, "annotation": null}, {"text": "lattice", "start": 15, "end": 22, "id": 3, "annotation": null}, {"text": "relaxation", "start": 23, "end": 33, "id": 4, "annotation": null}, {"text": "times", "start": 34, "end": 39, "id": 5, "annotation": null}, {"text": "T", "start": 40, "end": 41, "id": 6, "annotation": null}, {"text": "1", "start": 42, "end": 43, "id": 7, "annotation": null}, {"text": "of", "start": 44, "end": 46, "id": 8, "annotation": null}, {"text": "139", "start": 47, "end": 50, "id": 9, "annotation": null}, {"text": "La", "start": 51, "end": 53, "id": 10, "annotation": null}, {"text": "in", "start": 54, "end": 56, "id": 11, "annotation": null}, {"text": "high", "start": 57, "end": 61, "id": 12, "annotation": null}, {"text": "-", "start": 62, "end": 63, "id": 13, "annotation": null}, {"text": "T", "start": 64, "end": 65, "id": 14, "annotation": null}, {"text": "c", "start": 66, "end": 67, "id": 15, "annotation": null}, {"text": "superconductor", "start": 68, "end": 82, "id": 16, "annotation": null}, {"text": "(", "start": 83, "end": 84, "id": 17, "annotation": "BASEMAT"}, {"text": "La", "start": 85, "end": 87, "id": 18, "annotation": "BASEMAT"}, {"text": "1-x", "start": 88, "end": 91, "id": 19, "annotation": "BASEMAT"}, {"text": "Sr", "start": 92, "end": 94, "id": 20, "annotation": "BASEMAT"}, {"text": "x", "start": 95, "end": 96, "id": 21, "annotation": "BASEMAT"}, {"text": ")", "start": 97, "end": 98, "id": 22, "annotation": "BASEMAT"}, {"text": "2", "start": 99, "end": 100, "id": 23, "annotation": "BASEMAT"}, {"text": "CuO", "start": 101, "end": 104, "id": 24, "annotation": "BASEMAT"}, {"text": "4", "start": 105, "end": 106, "id": 25, "annotation": "BASEMAT"}, {"text": "(", "start": 107, "end": 108, "id": 26, "annotation": null}, {"text": "x=0.075,0.10", "start": 109, "end": 121, "id": 27, "annotation": "DOPMODQ"}, {"text": ")", "start": 122, "end": 123, "id": 28, "annotation": null}, {"text": "have", "start": 124, "end": 128, "id": 29, "annotation": null}, {"text": "been", "start": 129, "end": 133, "id": 30, "annotation": null}, {"text": "measured", "start": 134, "end": 142, "id": 31, "annotation": null}, {"text": "in", "start": 143, "end": 145, "id": 32, "annotation": null}, {"text": "zero", "start": 146, "end": 150, "id": 33, "annotation": null}, {"text": "field", "start": 151, "end": 156, "id": 34, "annotation": null}, {"text": ".", "start": 157, "end": 158, "id": 35, "annotation": null}], [{"text": "T", "start": 159, "end": 160, "id": 36, "annotation": null}, {"text": "-11", "start": 161, "end": 164, "id": 37, "annotation": null}, {"text": "in", "start": 165, "end": 167, "id": 38, "annotation": null}, {"text": "the", "start": 168, "end": 171, "id": 39, "annotation": null}, {"text": "superconducting", "start": 172, "end": 187, "id": 40, "annotation": null}, {"text": "state", "start": 188, "end": 193, "id": 41, "annotation": null}, {"text": "decreases", "start": 194, "end": 203, "id": 42, "annotation": null}, {"text": "rapidly", "start": 204, "end": 211, "id": 43, "annotation": null}, {"text": ",", "start": 212, "end": 213, "id": 44, "annotation": null}, {"text": "indicating", "start": 214, "end": 224, "id": 45, "annotation": null}, {"text": "a", "start": 225, "end": 226, "id": 46, "annotation": null}, {"text": "superconducting", "start": 227, "end": 242, "id": 47, "annotation": null}, {"text": "energy", "start": 243, "end": 249, "id": 48, "annotation": null}, {"text": "gap", "start": 250, "end": 253, "id": 49, "annotation": null}, {"text": "formation", "start": 254, "end": 263, "id": 50, "annotation": null}, {"text": ",", "start": 264, "end": 265, "id": 51, "annotation": null}, {"text": "but", "start": 266, "end": 269, "id": 52, "annotation": null}, {"text": "no", "start": 270, "end": 272, "id": 53, "annotation": null}, {"text": "signs", "start": 273, "end": 278, "id": 54, "annotation": null}, {"text": "of", "start": 279, "end": 281, "id": 55, "annotation": null}, {"text": "T", "start": 282, "end": 283, "id": 56, "annotation": null}, {"text": "-11", "start": 284, "end": 287, "id": 57, "annotation": null}, {"text": "enhancement", "start": 288, "end": 299, "id": 58, "annotation": null}, {"text": "are", "start": 300, "end": 303, "id": 59, "annotation": null}, {"text": "observed", "start": 304, "end": 312, "id": 60, "annotation": null}, {"text": "just", "start": 313, "end": 317, "id": 61, "annotation": null}, {"text": "below", "start": 318, "end": 323, "id": 62, "annotation": null}, {"text": "T", "start": 324, "end": 325, "id": 63, "annotation": null}, {"text": "c", "start": 326, "end": 327, "id": 64, "annotation": null}, {"text": ".", "start": 328, "end": 329, "id": 65, "annotation": null}], [{"text": "T", "start": 330, "end": 331, "id": 66, "annotation": null}, {"text": "-11", "start": 332, "end": 335, "id": 67, "annotation": null}, {"text": "in", "start": 336, "end": 338, "id": 68, "annotation": null}, {"text": "the", "start": 339, "end": 342, "id": 69, "annotation": null}, {"text": "normal", "start": 343, "end": 349, "id": 70, "annotation": null}, {"text": "state", "start": 350, "end": 355, "id": 71, "annotation": null}, {"text": "shows", "start": 356, "end": 361, "id": 72, "annotation": null}, {"text": "slightly", "start": 362, "end": 370, "id": 73, "annotation": null}, {"text": "stronger", "start": 371, "end": 379, "id": 74, "annotation": null}, {"text": "temperature", "start": 380, "end": 391, "id": 75, "annotation": null}, {"text": "dependence", "start": 392, "end": 402, "id": 76, "annotation": null}, {"text": "than", "start": 403, "end": 407, "id": 77, "annotation": null}, {"text": "that", "start": 408, "end": 412, "id": 78, "annotation": null}, {"text": "expected", "start": 413, "end": 421, "id": 79, "annotation": null}, {"text": "from", "start": 422, "end": 426, "id": 80, "annotation": null}, {"text": "the", "start": 427, "end": 430, "id": 81, "annotation": null}, {"text": "Korringa", "start": 431, "end": 439, "id": 82, "annotation": null}, {"text": "relation", "start": 440, "end": 448, "id": 83, "annotation": null}, {"text": "(", "start": 449, "end": 450, "id": 84, "annotation": null}, {"text": "T", "start": 451, "end": 452, "id": 85, "annotation": null}, {"text": "1", "start": 453, "end": 454, "id": 86, "annotation": null}, {"text": "T=", "start": 455, "end": 457, "id": 87, "annotation": null}, {"text": "const", "start": 458, "end": 463, "id": 88, "annotation": null}, {"text": ".", "start": 464, "end": 465, "id": 89, "annotation": null}, {"text": ")", "start": 466, "end": 467, "id": 90, "annotation": null}], [{"text": "observed", "start": 468, "end": 476, "id": 91, "annotation": null}, {"text": "in", "start": 477, "end": 479, "id": 92, "annotation": null}, {"text": "a", "start": 480, "end": 481, "id": 93, "annotation": null}, {"text": "highly", "start": 482, "end": 488, "id": 94, "annotation": null}, {"text": "Sr", "start": 489, "end": 491, "id": 95, "annotation": "DOPANT"}, {"text": "-", "start": 492, "end": 493, "id": 96, "annotation": null}, {"text": "doped", "start": 494, "end": 499, "id": 97, "annotation": null}, {"text": ",", "start": 500, "end": 501, "id": 98, "annotation": null}, {"text": "nonsuperconducting", "start": 502, "end": 520, "id": 99, "annotation": null}, {"text": "compound", "start": 521, "end": 529, "id": 100, "annotation": "BASEMAT"}, {"text": "with", "start": 530, "end": 534, "id": 101, "annotation": null}, {"text": "x=0.15", "start": 535, "end": 541, "id": 102, "annotation": "DOPMODQ"}, {"text": ".", "start": 542, "end": 543, "id": 103, "annotation": null}], [{"text": "All", "start": 585, "end": 588, "id": 113, "annotation": null}, {"text": "rights", "start": 589, "end": 595, "id": 114, "annotation": null}, {"text": "reserved", "start": 596, "end": 604, "id": 115, "annotation": null}, {"text": ".", "start": 605, "end": 606, "id": 116, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "In this study, we investigate the influence of nanocrystalline diamond (NCD) thin film morphology and thickness on their electrical properties. NCD films are grown on p-type Si substrates with varied thicknesses from 250 to 788nm. Electrical contacts are formed from combination of Ti/Au metal layers (100nm thick each). The I\u2013V and breakdown field measurements are used to analyze the electrical properties of metal/NCD/Si sandwich structure. In addition, NCD films are analyzed by scanning electron microscopy and Raman spectroscopy for better interpretation of the I\u2013V measurements.", "meta": {"doi": "10.1016/j.mejo.2008.06.095"}, "_input_hash": 1725131795, "_task_hash": 1667610824, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "study", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": ",", "start": 14, "end": 15, "id": 3, "annotation": null}, {"text": "we", "start": 16, "end": 18, "id": 4, "annotation": null}, {"text": "investigate", "start": 19, "end": 30, "id": 5, "annotation": null}, {"text": "the", "start": 31, "end": 34, "id": 6, "annotation": null}, {"text": "influence", "start": 35, "end": 44, "id": 7, "annotation": null}, {"text": "of", "start": 45, "end": 47, "id": 8, "annotation": null}, {"text": "nanocrystalline", "start": 48, "end": 63, "id": 9, "annotation": null}, {"text": "diamond", "start": 64, "end": 71, "id": 10, "annotation": null}, {"text": "(", "start": 72, "end": 73, "id": 11, "annotation": null}, {"text": "NCD", "start": 74, "end": 77, "id": 12, "annotation": null}, {"text": ")", "start": 78, "end": 79, "id": 13, "annotation": null}, {"text": "thin", "start": 80, "end": 84, "id": 14, "annotation": null}, {"text": "film", "start": 85, "end": 89, "id": 15, "annotation": null}, {"text": "morphology", "start": 90, "end": 100, "id": 16, "annotation": null}, {"text": "and", "start": 101, "end": 104, "id": 17, "annotation": null}, {"text": "thickness", "start": 105, "end": 114, "id": 18, "annotation": null}, {"text": "on", "start": 115, "end": 117, "id": 19, "annotation": null}, {"text": "their", "start": 118, "end": 123, "id": 20, "annotation": null}, {"text": "electrical", "start": 124, "end": 134, "id": 21, "annotation": null}, {"text": "properties", "start": 135, "end": 145, "id": 22, "annotation": null}, {"text": ".", "start": 146, "end": 147, "id": 23, "annotation": null}], [{"text": "NCD", "start": 148, "end": 151, "id": 24, "annotation": null}, {"text": "films", "start": 152, "end": 157, "id": 25, "annotation": null}, {"text": "are", "start": 158, "end": 161, "id": 26, "annotation": null}, {"text": "grown", "start": 162, "end": 167, "id": 27, "annotation": null}, {"text": "on", "start": 168, "end": 170, "id": 28, "annotation": null}, {"text": "p", "start": 171, "end": 172, "id": 29, "annotation": "DOPANT"}, {"text": "-", "start": 173, "end": 174, "id": 30, "annotation": "DOPANT"}, {"text": "type", "start": 175, "end": 179, "id": 31, "annotation": "DOPANT"}, {"text": "Si", "start": 180, "end": 182, "id": 32, "annotation": "BASEMAT"}, {"text": "substrates", "start": 183, "end": 193, "id": 33, "annotation": null}, {"text": "with", "start": 194, "end": 198, "id": 34, "annotation": null}, {"text": "varied", "start": 199, "end": 205, "id": 35, "annotation": null}, {"text": "thicknesses", "start": 206, "end": 217, "id": 36, "annotation": null}, {"text": "from", "start": 218, "end": 222, "id": 37, "annotation": null}, {"text": "250", "start": 223, "end": 226, "id": 38, "annotation": null}, {"text": "to", "start": 227, "end": 229, "id": 39, "annotation": null}, {"text": "788", "start": 230, "end": 233, "id": 40, "annotation": null}, {"text": "nm", "start": 234, "end": 236, "id": 41, "annotation": null}, {"text": ".", "start": 237, "end": 238, "id": 42, "annotation": null}], [{"text": "Electrical", "start": 239, "end": 249, "id": 43, "annotation": null}, {"text": "contacts", "start": 250, "end": 258, "id": 44, "annotation": null}, {"text": "are", "start": 259, "end": 262, "id": 45, "annotation": null}, {"text": "formed", "start": 263, "end": 269, "id": 46, "annotation": null}, {"text": "from", "start": 270, "end": 274, "id": 47, "annotation": null}, {"text": "combination", "start": 275, "end": 286, "id": 48, "annotation": null}, {"text": "of", "start": 287, "end": 289, "id": 49, "annotation": null}, {"text": "Ti", "start": 290, "end": 292, "id": 50, "annotation": null}, {"text": "/", "start": 293, "end": 294, "id": 51, "annotation": null}, {"text": "Au", "start": 295, "end": 297, "id": 52, "annotation": null}, {"text": "metal", "start": 298, "end": 303, "id": 53, "annotation": null}, {"text": "layers", "start": 304, "end": 310, "id": 54, "annotation": null}, {"text": "(", "start": 311, "end": 312, "id": 55, "annotation": null}, {"text": "100", "start": 313, "end": 316, "id": 56, "annotation": null}, {"text": "nm", "start": 317, "end": 319, "id": 57, "annotation": null}, {"text": "thick", "start": 320, "end": 325, "id": 58, "annotation": null}, {"text": "each", "start": 326, "end": 330, "id": 59, "annotation": null}, {"text": ")", "start": 331, "end": 332, "id": 60, "annotation": null}, {"text": ".", "start": 333, "end": 334, "id": 61, "annotation": null}], [{"text": "The", "start": 335, "end": 338, "id": 62, "annotation": null}, {"text": "I", "start": 339, "end": 340, "id": 63, "annotation": null}, {"text": "\u2013", "start": 341, "end": 342, "id": 64, "annotation": null}, {"text": "V", "start": 343, "end": 344, "id": 65, "annotation": null}, {"text": "and", "start": 345, "end": 348, "id": 66, "annotation": null}, {"text": "breakdown", "start": 349, "end": 358, "id": 67, "annotation": null}, {"text": "field", "start": 359, "end": 364, "id": 68, "annotation": null}, {"text": "measurements", "start": 365, "end": 377, "id": 69, "annotation": null}, {"text": "are", "start": 378, "end": 381, "id": 70, "annotation": null}, {"text": "used", "start": 382, "end": 386, "id": 71, "annotation": null}, {"text": "to", "start": 387, "end": 389, "id": 72, "annotation": null}, {"text": "analyze", "start": 390, "end": 397, "id": 73, "annotation": null}, {"text": "the", "start": 398, "end": 401, "id": 74, "annotation": null}, {"text": "electrical", "start": 402, "end": 412, "id": 75, "annotation": null}, {"text": "properties", "start": 413, "end": 423, "id": 76, "annotation": null}, {"text": "of", "start": 424, "end": 426, "id": 77, "annotation": null}, {"text": "metal", "start": 427, "end": 432, "id": 78, "annotation": null}, {"text": "/", "start": 433, "end": 434, "id": 79, "annotation": null}, {"text": "NCD", "start": 435, "end": 438, "id": 80, "annotation": null}, {"text": "/", "start": 439, "end": 440, "id": 81, "annotation": null}, {"text": "Si", "start": 441, "end": 443, "id": 82, "annotation": null}, {"text": "sandwich", "start": 444, "end": 452, "id": 83, "annotation": null}, {"text": "structure", "start": 453, "end": 462, "id": 84, "annotation": null}, {"text": ".", "start": 463, "end": 464, "id": 85, "annotation": null}], [{"text": "In", "start": 465, "end": 467, "id": 86, "annotation": null}, {"text": "addition", "start": 468, "end": 476, "id": 87, "annotation": null}, {"text": ",", "start": 477, "end": 478, "id": 88, "annotation": null}, {"text": "NCD", "start": 479, "end": 482, "id": 89, "annotation": null}, {"text": "films", "start": 483, "end": 488, "id": 90, "annotation": null}, {"text": "are", "start": 489, "end": 492, "id": 91, "annotation": null}, {"text": "analyzed", "start": 493, "end": 501, "id": 92, "annotation": null}, {"text": "by", "start": 502, "end": 504, "id": 93, "annotation": null}, {"text": "scanning", "start": 505, "end": 513, "id": 94, "annotation": null}, {"text": "electron", "start": 514, "end": 522, "id": 95, "annotation": null}, {"text": "microscopy", "start": 523, "end": 533, "id": 96, "annotation": null}, {"text": "and", "start": 534, "end": 537, "id": 97, "annotation": null}, {"text": "Raman", "start": 538, "end": 543, "id": 98, "annotation": null}, {"text": "spectroscopy", "start": 544, "end": 556, "id": 99, "annotation": null}, {"text": "for", "start": 557, "end": 560, "id": 100, "annotation": null}, {"text": "better", "start": 561, "end": 567, "id": 101, "annotation": null}, {"text": "interpretation", "start": 568, "end": 582, "id": 102, "annotation": null}, {"text": "of", "start": 583, "end": 585, "id": 103, "annotation": null}, {"text": "the", "start": 586, "end": 589, "id": 104, "annotation": null}, {"text": "I", "start": 590, "end": 591, "id": 105, "annotation": null}, {"text": "\u2013", "start": 592, "end": 593, "id": 106, "annotation": null}, {"text": "V", "start": 594, "end": 595, "id": 107, "annotation": null}, {"text": "measurements", "start": 596, "end": 608, "id": 108, "annotation": null}, {"text": ".", "start": 609, "end": 610, "id": 109, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt3", "text": "Results from a study of electrophysical and luminescent properties of zinc-germanium diphosphide single crystals, diffusion doped with copper, are presented. The nature of the dominant defects formed upon copper diffusion in ZnGeP2 is determined using a thermodynamic analysis of defect formation processes in ZnGeP2 and a ZnGeP2: Cu solid solution performed within the framework of the quasichemical analysis method. It is demonstrated that by choosing the copper diffusion method the hole concentration in the ZnGeP2 can be varied over the range 1012\u22121016 cm\u22123. A retrograde character was observed in copper solubility in ZnGeP2 compounds. Defect formation processes in ZnGeP2 upon copper diffusion depend on the degree of atomic ordering in the cation sublattice at the diffusion annealing temperature.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Results", "start": 0, "end": 7, "annotation": null}, {"text": "from", "start": 8, "end": 12, "annotation": null}, {"text": "a", "start": 13, "end": 14, "annotation": null}, {"text": "study", "start": 15, "end": 20, "annotation": null}, {"text": "of", "start": 21, "end": 23, "annotation": null}, {"text": "electrophysical", "start": 24, "end": 39, "annotation": null}, {"text": "and", "start": 40, "end": 43, "annotation": null}, {"text": "luminescent", "start": 44, "end": 55, "annotation": null}, {"text": "properties", "start": 56, "end": 66, "annotation": null}, {"text": "of", "start": 67, "end": 69, "annotation": null}, {"text": "zinc", "start": 70, "end": 74, "annotation": "BASEMAT"}, {"text": "-", "start": 74, "end": 75, "annotation": "BASEMAT"}, {"text": "germanium", "start": 75, "end": 84, "annotation": "BASEMAT"}, {"text": "diphosphide", "start": 85, "end": 96, "annotation": "BASEMAT"}, {"text": "single", "start": 97, "end": 103, "annotation": "BASEMAT"}, {"text": "crystals", "start": 104, "end": 112, "annotation": "BASEMAT"}, {"text": ",", "start": 112, "end": 113, "annotation": null}, {"text": "diffusion", "start": 114, "end": 123, "annotation": null}, {"text": "doped", "start": 124, "end": 129, "annotation": null}, {"text": "with", "start": 130, "end": 134, "annotation": null}, {"text": "copper", "start": 135, "end": 141, "annotation": "DOPANT"}, {"text": ",", "start": 141, "end": 142, "annotation": null}, {"text": "are", "start": 143, "end": 146, "annotation": null}, {"text": "presented", "start": 147, "end": 156, "annotation": null}, {"text": ".", "start": 156, "end": 157, "annotation": null}], [{"text": "The", "start": 158, "end": 161, "annotation": null}, {"text": "nature", "start": 162, "end": 168, "annotation": null}, {"text": "of", "start": 169, "end": 171, "annotation": null}, {"text": "the", "start": 172, "end": 175, "annotation": null}, {"text": "dominant", "start": 176, "end": 184, "annotation": null}, {"text": "defects", "start": 185, "end": 192, "annotation": null}, {"text": "formed", "start": 193, "end": 199, "annotation": null}, {"text": "upon", "start": 200, "end": 204, "annotation": null}, {"text": "copper", "start": 205, "end": 211, "annotation": null}, {"text": "diffusion", "start": 212, "end": 221, "annotation": null}, {"text": "in", "start": 222, "end": 224, "annotation": null}, {"text": "ZnGeP2", "start": 225, "end": 231, "annotation": null}, {"text": "is", "start": 232, "end": 234, "annotation": null}, {"text": "determined", "start": 235, "end": 245, "annotation": null}, {"text": "using", "start": 246, "end": 251, "annotation": null}, {"text": "a", "start": 252, "end": 253, "annotation": null}, {"text": "thermodynamic", "start": 254, "end": 267, "annotation": null}, {"text": "analysis", "start": 268, "end": 276, "annotation": null}, {"text": "of", "start": 277, "end": 279, "annotation": null}, {"text": "defect", "start": 280, "end": 286, "annotation": null}, {"text": "formation", "start": 287, "end": 296, "annotation": null}, {"text": "processes", "start": 297, "end": 306, "annotation": null}, {"text": "in", "start": 307, "end": 309, "annotation": null}, {"text": "ZnGeP2", "start": 310, "end": 316, "annotation": null}, {"text": "and", "start": 317, "end": 320, "annotation": null}, {"text": "a", "start": 321, "end": 322, "annotation": null}, {"text": "ZnGeP2", "start": 323, "end": 329, "annotation": "BASEMAT"}, {"text": ":", "start": 329, "end": 330, "annotation": null}, {"text": "Cu", "start": 331, "end": 333, "annotation": "DOPANT"}, {"text": "solid", "start": 334, "end": 339, "annotation": null}, {"text": "solution", "start": 340, "end": 348, "annotation": null}, {"text": "performed", "start": 349, "end": 358, "annotation": null}, {"text": "within", "start": 359, "end": 365, "annotation": null}, {"text": "the", "start": 366, "end": 369, "annotation": null}, {"text": "framework", "start": 370, "end": 379, "annotation": null}, {"text": "of", "start": 380, "end": 382, "annotation": null}, {"text": "the", "start": 383, "end": 386, "annotation": null}, {"text": "quasichemical", "start": 387, "end": 400, "annotation": null}, {"text": "analysis", "start": 401, "end": 409, "annotation": null}, {"text": "method", "start": 410, "end": 416, "annotation": null}, {"text": ".", "start": 416, "end": 417, "annotation": null}], [{"text": "It", "start": 418, "end": 420, "annotation": null}, {"text": "is", "start": 421, "end": 423, "annotation": null}, {"text": "demonstrated", "start": 424, "end": 436, "annotation": null}, {"text": "that", "start": 437, "end": 441, "annotation": null}, {"text": "by", "start": 442, "end": 444, "annotation": null}, {"text": "choosing", "start": 445, "end": 453, "annotation": null}, {"text": "the", "start": 454, "end": 457, "annotation": null}, {"text": "copper", "start": 458, "end": 464, "annotation": null}, {"text": "diffusion", "start": 465, "end": 474, "annotation": null}, {"text": "method", "start": 475, "end": 481, "annotation": null}, {"text": "the", "start": 482, "end": 485, "annotation": null}, {"text": "hole", "start": 486, "end": 490, "annotation": null}, {"text": "concentration", "start": 491, "end": 504, "annotation": null}, {"text": "in", "start": 505, "end": 507, "annotation": null}, {"text": "the", "start": 508, "end": 511, "annotation": null}, {"text": "ZnGeP2", "start": 512, "end": 518, "annotation": null}, {"text": "can", "start": 519, "end": 522, "annotation": null}, {"text": "be", "start": 523, "end": 525, "annotation": null}, {"text": "varied", "start": 526, "end": 532, "annotation": null}, {"text": "over", "start": 533, "end": 537, "annotation": null}, {"text": "the", "start": 538, "end": 541, "annotation": null}, {"text": "range", "start": 542, "end": 547, "annotation": null}, {"text": "1012", "start": 548, "end": 552, "annotation": null}, {"text": "\u2212", "start": 552, "end": 553, "annotation": null}, {"text": "1016", "start": 553, "end": 557, "annotation": null}, {"text": "cm\u22123", "start": 558, "end": 562, "annotation": null}, {"text": ".", "start": 562, "end": 563, "annotation": null}], [{"text": "A", "start": 564, "end": 565, "annotation": null}, {"text": "retrograde", "start": 566, "end": 576, "annotation": null}, {"text": "character", "start": 577, "end": 586, "annotation": null}, {"text": "was", "start": 587, "end": 590, "annotation": null}, {"text": "observed", "start": 591, "end": 599, "annotation": null}, {"text": "in", "start": 600, "end": 602, "annotation": null}, {"text": "copper", "start": 603, "end": 609, "annotation": null}, {"text": "solubility", "start": 610, "end": 620, "annotation": null}, {"text": "in", "start": 621, "end": 623, "annotation": null}, {"text": "ZnGeP2", "start": 624, "end": 630, "annotation": null}, {"text": "compounds", "start": 631, "end": 640, "annotation": null}, {"text": ".", "start": 640, "end": 641, "annotation": null}], [{"text": "Defect", "start": 642, "end": 648, "annotation": null}, {"text": "formation", "start": 649, "end": 658, "annotation": null}, {"text": "processes", "start": 659, "end": 668, "annotation": null}, {"text": "in", "start": 669, "end": 671, "annotation": null}, {"text": "ZnGeP2", "start": 672, "end": 678, "annotation": null}, {"text": "upon", "start": 679, "end": 683, "annotation": null}, {"text": "copper", "start": 684, "end": 690, "annotation": null}, {"text": "diffusion", "start": 691, "end": 700, "annotation": null}, {"text": "depend", "start": 701, "end": 707, "annotation": null}, {"text": "on", "start": 708, "end": 710, "annotation": null}, {"text": "the", "start": 711, "end": 714, "annotation": null}, {"text": "degree", "start": 715, "end": 721, "annotation": null}, {"text": "of", "start": 722, "end": 724, "annotation": null}, {"text": "atomic", "start": 725, "end": 731, "annotation": null}, {"text": "ordering", "start": 732, "end": 740, "annotation": null}, {"text": "in", "start": 741, "end": 743, "annotation": null}, {"text": "the", "start": 744, "end": 747, "annotation": null}, {"text": "cation", "start": 748, "end": 754, "annotation": null}, {"text": "sublattice", "start": 755, "end": 765, "annotation": null}, {"text": "at", "start": 766, "end": 768, "annotation": null}, {"text": "the", "start": 769, "end": 772, "annotation": null}, {"text": "diffusion", "start": 773, "end": 782, "annotation": null}, {"text": "annealing", "start": 783, "end": 792, "annotation": null}, {"text": "temperature", "start": 793, "end": 804, "annotation": null}, {"text": ".", "start": 804, "end": 805, "annotation": null}]], "meta": {"doi": "10.1007/BF00912511"}} +{"remark": "doping_annt2", "text": "The visible light bactericidal ability of nitrogen doped TiO2 (TiON) film on Si (100) has been enhanced greatly (by 22%) through a single-mode microwave irradiation annealing (f=2.45GHz, 20s) in comparison with the conventional heat treatment at the same temperature (500\u00b0C, 300s). Analyses of X-ray photoelectron spectroscopy and transmission electron microscopy showed that the microwave annealed TiON film had a higher nitrogen concentration and much better crystallinity, both of which contribute to its prior bactericidal ability under visible light. The optimized annealing parameters of microwave irradiation are 500\u00b0C within 20s. Increase of annealing temperature and irradiation time resulted in the decrease of nitrogen concentration within the film. The crystallized TiON film has an anatase but not a rutile structure at the annealing temperature up to 800\u00b0C.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "visible", "start": 4, "end": 11, "annotation": null}, {"text": "light", "start": 12, "end": 17, "annotation": null}, {"text": "bactericidal", "start": 18, "end": 30, "annotation": null}, {"text": "ability", "start": 31, "end": 38, "annotation": null}, {"text": "of", "start": 39, "end": 41, "annotation": null}, {"text": "nitrogen", "start": 42, "end": 50, "annotation": "DOPANT"}, {"text": "doped", "start": 51, "end": 56, "annotation": null}, {"text": "TiO2", "start": 57, "end": 61, "annotation": "BASEMAT"}, {"text": "(", "start": 62, "end": 63, "annotation": null}, {"text": "TiON", "start": 63, "end": 67, "annotation": "BASEMAT"}, {"text": ")", "start": 67, "end": 68, "annotation": null}, {"text": "film", "start": 69, "end": 73, "annotation": null}, {"text": "on", "start": 74, "end": 76, "annotation": null}, {"text": "Si", "start": 77, "end": 79, "annotation": null}, {"text": "(", "start": 80, "end": 81, "annotation": null}, {"text": "100", "start": 81, "end": 84, "annotation": null}, {"text": ")", "start": 84, "end": 85, "annotation": null}, {"text": "has", "start": 86, "end": 89, "annotation": null}, {"text": "been", "start": 90, "end": 94, "annotation": null}, {"text": "enhanced", "start": 95, "end": 103, "annotation": null}, {"text": "greatly", "start": 104, "end": 111, "annotation": null}, {"text": "(", "start": 112, "end": 113, "annotation": null}, {"text": "by", "start": 113, "end": 115, "annotation": null}, {"text": "22", "start": 116, "end": 118, "annotation": null}, {"text": "%", "start": 118, "end": 119, "annotation": null}, {"text": ")", "start": 119, "end": 120, "annotation": null}, {"text": "through", "start": 121, "end": 128, "annotation": null}, {"text": "a", "start": 129, "end": 130, "annotation": null}, {"text": "single", "start": 131, "end": 137, "annotation": null}, {"text": "-", "start": 137, "end": 138, "annotation": null}, {"text": "mode", "start": 138, "end": 142, "annotation": null}, {"text": "microwave", "start": 143, "end": 152, "annotation": null}, {"text": "irradiation", "start": 153, "end": 164, "annotation": null}, {"text": "annealing", "start": 165, "end": 174, "annotation": null}, {"text": "(", "start": 175, "end": 176, "annotation": null}, {"text": "f", "start": 176, "end": 177, "annotation": null}, {"text": "=", "start": 177, "end": 178, "annotation": null}, {"text": "2.45GHz", "start": 178, "end": 185, "annotation": null}, {"text": ",", "start": 185, "end": 186, "annotation": null}, {"text": "20s", "start": 187, "end": 190, "annotation": null}, {"text": ")", "start": 190, "end": 191, "annotation": null}, {"text": "in", "start": 192, "end": 194, "annotation": null}, {"text": "comparison", "start": 195, "end": 205, "annotation": null}, {"text": "with", "start": 206, "end": 210, "annotation": null}, {"text": "the", "start": 211, "end": 214, "annotation": null}, {"text": "conventional", "start": 215, "end": 227, "annotation": null}, {"text": "heat", "start": 228, "end": 232, "annotation": null}, {"text": "treatment", "start": 233, "end": 242, "annotation": null}, {"text": "at", "start": 243, "end": 245, "annotation": null}, {"text": "the", "start": 246, "end": 249, "annotation": null}, {"text": "same", "start": 250, "end": 254, "annotation": null}, {"text": "temperature", "start": 255, "end": 266, "annotation": null}, {"text": "(", "start": 267, "end": 268, "annotation": null}, {"text": "500", "start": 268, "end": 271, "annotation": null}, {"text": "\u00b0", "start": 271, "end": 272, "annotation": null}, {"text": "C", "start": 272, "end": 273, "annotation": null}, {"text": ",", "start": 273, "end": 274, "annotation": null}, {"text": "300s", "start": 275, "end": 279, "annotation": null}, {"text": ")", "start": 279, "end": 280, "annotation": null}, {"text": ".", "start": 280, "end": 281, "annotation": null}], [{"text": "Analyses", "start": 282, "end": 290, "annotation": null}, {"text": "of", "start": 291, "end": 293, "annotation": null}, {"text": "X-ray", "start": 294, "end": 299, "annotation": null}, {"text": "photoelectron", "start": 300, "end": 313, "annotation": null}, {"text": "spectroscopy", "start": 314, "end": 326, "annotation": null}, {"text": "and", "start": 327, "end": 330, "annotation": null}, {"text": "transmission", "start": 331, "end": 343, "annotation": null}, {"text": "electron", "start": 344, "end": 352, "annotation": null}, {"text": "microscopy", "start": 353, "end": 363, "annotation": null}, {"text": "showed", "start": 364, "end": 370, "annotation": null}, {"text": "that", "start": 371, "end": 375, "annotation": null}, {"text": "the", "start": 376, "end": 379, "annotation": null}, {"text": "microwave", "start": 380, "end": 389, "annotation": null}, {"text": "annealed", "start": 390, "end": 398, "annotation": null}, {"text": "TiON", "start": 399, "end": 403, "annotation": null}, {"text": "film", "start": 404, "end": 408, "annotation": null}, {"text": "had", "start": 409, "end": 412, "annotation": null}, {"text": "a", "start": 413, "end": 414, "annotation": null}, {"text": "higher", "start": 415, "end": 421, "annotation": null}, {"text": "nitrogen", "start": 422, "end": 430, "annotation": null}, {"text": "concentration", "start": 431, "end": 444, "annotation": null}, {"text": "and", "start": 445, "end": 448, "annotation": null}, {"text": "much", "start": 449, "end": 453, "annotation": null}, {"text": "better", "start": 454, "end": 460, "annotation": null}, {"text": "crystallinity", "start": 461, "end": 474, "annotation": null}, {"text": ",", "start": 474, "end": 475, "annotation": null}, {"text": "both", "start": 476, "end": 480, "annotation": null}, {"text": "of", "start": 481, "end": 483, "annotation": null}, {"text": "which", "start": 484, "end": 489, "annotation": null}, {"text": "contribute", "start": 490, "end": 500, "annotation": null}, {"text": "to", "start": 501, "end": 503, "annotation": null}, {"text": "its", "start": 504, "end": 507, "annotation": null}, {"text": "prior", "start": 508, "end": 513, "annotation": null}, {"text": "bactericidal", "start": 514, "end": 526, "annotation": null}, {"text": "ability", "start": 527, "end": 534, "annotation": null}, {"text": "under", "start": 535, "end": 540, "annotation": null}, {"text": "visible", "start": 541, "end": 548, "annotation": null}, {"text": "light", "start": 549, "end": 554, "annotation": null}, {"text": ".", "start": 554, "end": 555, "annotation": null}], [{"text": "The", "start": 556, "end": 559, "annotation": null}, {"text": "optimized", "start": 560, "end": 569, "annotation": null}, {"text": "annealing", "start": 570, "end": 579, "annotation": null}, {"text": "parameters", "start": 580, "end": 590, "annotation": null}, {"text": "of", "start": 591, "end": 593, "annotation": null}, {"text": "microwave", "start": 594, "end": 603, "annotation": null}, {"text": "irradiation", "start": 604, "end": 615, "annotation": null}, {"text": "are", "start": 616, "end": 619, "annotation": null}, {"text": "500", "start": 620, "end": 623, "annotation": null}, {"text": "\u00b0", "start": 623, "end": 624, "annotation": null}, {"text": "C", "start": 624, "end": 625, "annotation": null}, {"text": "within", "start": 626, "end": 632, "annotation": null}, {"text": "20s", "start": 633, "end": 636, "annotation": null}, {"text": ".", "start": 636, "end": 637, "annotation": null}], [{"text": "Increase", "start": 638, "end": 646, "annotation": null}, {"text": "of", "start": 647, "end": 649, "annotation": null}, {"text": "annealing", "start": 650, "end": 659, "annotation": null}, {"text": "temperature", "start": 660, "end": 671, "annotation": null}, {"text": "and", "start": 672, "end": 675, "annotation": null}, {"text": "irradiation", "start": 676, "end": 687, "annotation": null}, {"text": "time", "start": 688, "end": 692, "annotation": null}, {"text": "resulted", "start": 693, "end": 701, "annotation": null}, {"text": "in", "start": 702, "end": 704, "annotation": null}, {"text": "the", "start": 705, "end": 708, "annotation": null}, {"text": "decrease", "start": 709, "end": 717, "annotation": null}, {"text": "of", "start": 718, "end": 720, "annotation": null}, {"text": "nitrogen", "start": 721, "end": 729, "annotation": null}, {"text": "concentration", "start": 730, "end": 743, "annotation": null}, {"text": "within", "start": 744, "end": 750, "annotation": null}, {"text": "the", "start": 751, "end": 754, "annotation": null}, {"text": "film", "start": 755, "end": 759, "annotation": null}, {"text": ".", "start": 759, "end": 760, "annotation": null}], [{"text": "The", "start": 761, "end": 764, "annotation": null}, {"text": "crystallized", "start": 765, "end": 777, "annotation": null}, {"text": "TiON", "start": 778, "end": 782, "annotation": null}, {"text": "film", "start": 783, "end": 787, "annotation": null}, {"text": "has", "start": 788, "end": 791, "annotation": null}, {"text": "an", "start": 792, "end": 794, "annotation": null}, {"text": "anatase", "start": 795, "end": 802, "annotation": null}, {"text": "but", "start": 803, "end": 806, "annotation": null}, {"text": "not", "start": 807, "end": 810, "annotation": null}, {"text": "a", "start": 811, "end": 812, "annotation": null}, {"text": "rutile", "start": 813, "end": 819, "annotation": null}, {"text": "structure", "start": 820, "end": 829, "annotation": null}, {"text": "at", "start": 830, "end": 832, "annotation": null}, {"text": "the", "start": 833, "end": 836, "annotation": null}, {"text": "annealing", "start": 837, "end": 846, "annotation": null}, {"text": "temperature", "start": 847, "end": 858, "annotation": null}, {"text": "up", "start": 859, "end": 861, "annotation": null}, {"text": "to", "start": 862, "end": 864, "annotation": null}, {"text": "800", "start": 865, "end": 868, "annotation": null}, {"text": "\u00b0", "start": 868, "end": 869, "annotation": null}, {"text": "C", "start": 869, "end": 870, "annotation": null}, {"text": ".", "start": 870, "end": 871, "annotation": null}]], "meta": {"doi": "10.1016/j.tsf.2011.09.080"}} +{"remark": "doping_annt1", "text": "The six-layer structure of a Si1 \u2212 xGex heterobipolar transistor (HBT) with flat doping levels and abrupt junctions is grown by a silicon molecular beam epitaxy (MBE) process in one run. The process, the MBE equipment used and analytical results (secondary-ion mass spectrometry) are described. The growth temperature is reduced from 650 \u00b0C at the collector to 325 \u00b0C at the emitter contact. A Si1 \u2212 xGex base doping level of 5 \u00d7 1019 cm\u22123 is obtained by coevaporation of silicon, germanium and boron from an electron beam evaporator, a BN effusion cell and a high temperature graphite cell respectively. The n-type doping of 1016\u20131020 cm\u22123 (collector, emitter and emitter contact) is obtained by applying three different antimony dopant incorporation methods. Test transistors fabricated from these structures exhibited low noise, good high frequency performance (fT,fmax > 50 GHz) and low base sheet resistance (less than 1 k\u03a9/\u25a1).", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "six", "start": 4, "end": 7, "annotation": null}, {"text": "-", "start": 7, "end": 8, "annotation": null}, {"text": "layer", "start": 8, "end": 13, "annotation": null}, {"text": "structure", "start": 14, "end": 23, "annotation": null}, {"text": "of", "start": 24, "end": 26, "annotation": null}, {"text": "a", "start": 27, "end": 28, "annotation": null}, {"text": "Si1", "start": 29, "end": 32, "annotation": "DOPANT"}, {"text": "\u2212", "start": 33, "end": 34, "annotation": null}, {"text": "xGex", "start": 35, "end": 39, "annotation": "BASEMAT"}, {"text": "heterobipolar", "start": 40, "end": 53, "annotation": null}, {"text": "transistor", "start": 54, "end": 64, "annotation": null}, {"text": "(", "start": 65, "end": 66, "annotation": null}, {"text": "HBT", "start": 66, "end": 69, "annotation": null}, {"text": ")", "start": 69, "end": 70, "annotation": null}, {"text": "with", "start": 71, "end": 75, "annotation": null}, {"text": "flat", "start": 76, "end": 80, "annotation": null}, {"text": "doping", "start": 81, "end": 87, "annotation": null}, {"text": "levels", "start": 88, "end": 94, "annotation": null}, {"text": "and", "start": 95, "end": 98, "annotation": null}, {"text": "abrupt", "start": 99, "end": 105, "annotation": null}, {"text": "junctions", "start": 106, "end": 115, "annotation": null}, {"text": "is", "start": 116, "end": 118, "annotation": null}, {"text": "grown", "start": 119, "end": 124, "annotation": null}, {"text": "by", "start": 125, "end": 127, "annotation": null}, {"text": "a", "start": 128, "end": 129, "annotation": null}, {"text": "silicon", "start": 130, "end": 137, "annotation": null}, {"text": "molecular", "start": 138, "end": 147, "annotation": null}, {"text": "beam", "start": 148, "end": 152, "annotation": null}, {"text": "epitaxy", "start": 153, "end": 160, "annotation": null}, {"text": "(", "start": 161, "end": 162, "annotation": null}, {"text": "MBE", "start": 162, "end": 165, "annotation": null}, {"text": ")", "start": 165, "end": 166, "annotation": null}, {"text": "process", "start": 167, "end": 174, "annotation": null}, {"text": "in", "start": 175, "end": 177, "annotation": null}, {"text": "one", "start": 178, "end": 181, "annotation": null}, {"text": "run", "start": 182, "end": 185, "annotation": null}, {"text": ".", "start": 185, "end": 186, "annotation": null}], [{"text": "The", "start": 187, "end": 190, "annotation": null}, {"text": "process", "start": 191, "end": 198, "annotation": null}, {"text": ",", "start": 198, "end": 199, "annotation": null}, {"text": "the", "start": 200, "end": 203, "annotation": null}, {"text": "MBE", "start": 204, "end": 207, "annotation": null}, {"text": "equipment", "start": 208, "end": 217, "annotation": null}, {"text": "used", "start": 218, "end": 222, "annotation": null}, {"text": "and", "start": 223, "end": 226, "annotation": null}, {"text": "analytical", "start": 227, "end": 237, "annotation": null}, {"text": "results", "start": 238, "end": 245, "annotation": null}, {"text": "(", "start": 246, "end": 247, "annotation": null}, {"text": "secondary", "start": 247, "end": 256, "annotation": null}, {"text": "-", "start": 256, "end": 257, "annotation": null}, {"text": "ion", "start": 257, "end": 260, "annotation": null}, {"text": "mass", "start": 261, "end": 265, "annotation": null}, {"text": "spectrometry", "start": 266, "end": 278, "annotation": null}, {"text": ")", "start": 278, "end": 279, "annotation": null}, {"text": "are", "start": 280, "end": 283, "annotation": null}, {"text": "described", "start": 284, "end": 293, "annotation": null}, {"text": ".", "start": 293, "end": 294, "annotation": null}], [{"text": "The", "start": 295, "end": 298, "annotation": null}, {"text": "growth", "start": 299, "end": 305, "annotation": null}, {"text": "temperature", "start": 306, "end": 317, "annotation": null}, {"text": "is", "start": 318, "end": 320, "annotation": null}, {"text": "reduced", "start": 321, "end": 328, "annotation": null}, {"text": "from", "start": 329, "end": 333, "annotation": null}, {"text": "650", "start": 334, "end": 337, "annotation": null}, {"text": "\u00b0", "start": 338, "end": 339, "annotation": null}, {"text": "C", "start": 339, "end": 340, "annotation": null}, {"text": "at", "start": 341, "end": 343, "annotation": null}, {"text": "the", "start": 344, "end": 347, "annotation": null}, {"text": "collector", "start": 348, "end": 357, "annotation": null}, {"text": "to", "start": 358, "end": 360, "annotation": null}, {"text": "325", "start": 361, "end": 364, "annotation": null}, {"text": "\u00b0", "start": 365, "end": 366, "annotation": null}, {"text": "C", "start": 366, "end": 367, "annotation": null}, {"text": "at", "start": 368, "end": 370, "annotation": null}, {"text": "the", "start": 371, "end": 374, "annotation": null}, {"text": "emitter", "start": 375, "end": 382, "annotation": null}, {"text": "contact", "start": 383, "end": 390, "annotation": null}, {"text": ".", "start": 390, "end": 391, "annotation": null}], [{"text": "A", "start": 392, "end": 393, "annotation": null}, {"text": "Si1", "start": 394, "end": 397, "annotation": "DOPANT"}, {"text": "\u2212", "start": 398, "end": 399, "annotation": null}, {"text": "xGex", "start": 400, "end": 404, "annotation": "BASEMAT"}, {"text": "base", "start": 405, "end": 409, "annotation": null}, {"text": "doping", "start": 410, "end": 416, "annotation": null}, {"text": "level", "start": 417, "end": 422, "annotation": null}, {"text": "of", "start": 423, "end": 425, "annotation": null}, {"text": "5", "start": 426, "end": 427, "annotation": "DOPMODQ"}, {"text": "\u00d7", "start": 428, "end": 429, "annotation": "DOPMODQ"}, {"text": "1019", "start": 430, "end": 434, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 435, "end": 439, "annotation": "DOPMODQ"}, {"text": "is", "start": 440, "end": 442, "annotation": null}, {"text": "obtained", "start": 443, "end": 451, "annotation": null}, {"text": "by", "start": 452, "end": 454, "annotation": null}, {"text": "coevaporation", "start": 455, "end": 468, "annotation": null}, {"text": "of", "start": 469, "end": 471, "annotation": null}, {"text": "silicon", "start": 472, "end": 479, "annotation": null}, {"text": ",", "start": 479, "end": 480, "annotation": null}, {"text": "germanium", "start": 481, "end": 490, "annotation": null}, {"text": "and", "start": 491, "end": 494, "annotation": null}, {"text": "boron", "start": 495, "end": 500, "annotation": null}, {"text": "from", "start": 501, "end": 505, "annotation": null}, {"text": "an", "start": 506, "end": 508, "annotation": null}, {"text": "electron", "start": 509, "end": 517, "annotation": null}, {"text": "beam", "start": 518, "end": 522, "annotation": null}, {"text": "evaporator", "start": 523, "end": 533, "annotation": null}, {"text": ",", "start": 533, "end": 534, "annotation": null}, {"text": "a", "start": 535, "end": 536, "annotation": null}, {"text": "BN", "start": 537, "end": 539, "annotation": null}, {"text": "effusion", "start": 540, "end": 548, "annotation": null}, {"text": "cell", "start": 549, "end": 553, "annotation": null}, {"text": "and", "start": 554, "end": 557, "annotation": null}, {"text": "a", "start": 558, "end": 559, "annotation": null}, {"text": "high", "start": 560, "end": 564, "annotation": null}, {"text": "temperature", "start": 565, "end": 576, "annotation": null}, {"text": "graphite", "start": 577, "end": 585, "annotation": null}, {"text": "cell", "start": 586, "end": 590, "annotation": null}, {"text": "respectively", "start": 591, "end": 603, "annotation": null}, {"text": ".", "start": 603, "end": 604, "annotation": null}], [{"text": "The", "start": 605, "end": 608, "annotation": null}, {"text": "n", "start": 609, "end": 610, "annotation": "DOPANT"}, {"text": "-", "start": 610, "end": 611, "annotation": "DOPANT"}, {"text": "type", "start": 611, "end": 615, "annotation": "DOPANT"}, {"text": "doping", "start": 616, "end": 622, "annotation": null}, {"text": "of", "start": 623, "end": 625, "annotation": null}, {"text": "1016", "start": 626, "end": 630, "annotation": "DOPMODQ"}, {"text": "\u2013", "start": 630, "end": 631, "annotation": "DOPMODQ"}, {"text": "1020", "start": 631, "end": 635, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 636, "end": 640, "annotation": "DOPMODQ"}, {"text": "(", "start": 641, "end": 642, "annotation": null}, {"text": "collector", "start": 642, "end": 651, "annotation": null}, {"text": ",", "start": 651, "end": 652, "annotation": null}, {"text": "emitter", "start": 653, "end": 660, "annotation": null}, {"text": "and", "start": 661, "end": 664, "annotation": null}, {"text": "emitter", "start": 665, "end": 672, "annotation": null}, {"text": "contact", "start": 673, "end": 680, "annotation": null}, {"text": ")", "start": 680, "end": 681, "annotation": null}, {"text": "is", "start": 682, "end": 684, "annotation": null}, {"text": "obtained", "start": 685, "end": 693, "annotation": null}, {"text": "by", "start": 694, "end": 696, "annotation": null}, {"text": "applying", "start": 697, "end": 705, "annotation": null}, {"text": "three", "start": 706, "end": 711, "annotation": null}, {"text": "different", "start": 712, "end": 721, "annotation": null}, {"text": "antimony", "start": 722, "end": 730, "annotation": null}, {"text": "dopant", "start": 731, "end": 737, "annotation": null}, {"text": "incorporation", "start": 738, "end": 751, "annotation": null}, {"text": "methods", "start": 752, "end": 759, "annotation": null}, {"text": ".", "start": 759, "end": 760, "annotation": null}], [{"text": "Test", "start": 761, "end": 765, "annotation": null}, {"text": "transistors", "start": 766, "end": 777, "annotation": null}, {"text": "fabricated", "start": 778, "end": 788, "annotation": null}, {"text": "from", "start": 789, "end": 793, "annotation": null}, {"text": "these", "start": 794, "end": 799, "annotation": null}, {"text": "structures", "start": 800, "end": 810, "annotation": null}, {"text": "exhibited", "start": 811, "end": 820, "annotation": null}, {"text": "low", "start": 821, "end": 824, "annotation": null}, {"text": "noise", "start": 825, "end": 830, "annotation": null}, {"text": ",", "start": 830, "end": 831, "annotation": null}, {"text": "good", "start": 832, "end": 836, "annotation": null}, {"text": "high", "start": 837, "end": 841, "annotation": null}, {"text": "frequency", "start": 842, "end": 851, "annotation": null}, {"text": "performance", "start": 852, "end": 863, "annotation": null}, {"text": "(", "start": 864, "end": 865, "annotation": null}, {"text": "fT,fmax", "start": 865, "end": 872, "annotation": null}, {"text": ">", "start": 873, "end": 874, "annotation": null}, {"text": "50", "start": 875, "end": 877, "annotation": null}, {"text": "GHz", "start": 878, "end": 881, "annotation": null}, {"text": ")", "start": 881, "end": 882, "annotation": null}, {"text": "and", "start": 883, "end": 886, "annotation": null}, {"text": "low", "start": 887, "end": 890, "annotation": null}, {"text": "base", "start": 891, "end": 895, "annotation": null}, {"text": "sheet", "start": 896, "end": 901, "annotation": null}, {"text": "resistance", "start": 902, "end": 912, "annotation": null}, {"text": "(", "start": 913, "end": 914, "annotation": null}, {"text": "less", "start": 914, "end": 918, "annotation": null}, {"text": "than", "start": 919, "end": 923, "annotation": null}, {"text": "1", "start": 924, "end": 925, "annotation": null}, {"text": "k\u03a9", "start": 926, "end": 928, "annotation": null}, {"text": "/", "start": 928, "end": 929, "annotation": null}, {"text": "\u25a1", "start": 929, "end": 930, "annotation": null}, {"text": ")", "start": 930, "end": 931, "annotation": null}, {"text": ".", "start": 931, "end": 932, "annotation": null}]], "meta": {"doi": "10.1016/0040-6090(92)90054-F"}} {"text": "The structual and superconducting properties of Bi2Sr2Ca1\u2212xYxCu2Oz intercalated with iodine between the Bi-O bila yers were studied. Formation of the stage-1 compound was verified by X-ray analysis, TG analysis and TEM observation. Expansion of the c-axis, which is caused by increase in the distance of the BiO-BiO layers, decreases with decreasing intercalated iodine concentration down to 60%. The expansion of the c-axis of fully intercalated compounds increases with increasing Y content from 7.2 \u00c5 for x=0 to 7.5 \u00c5 for x=1.0. The temperature dependence of resistivity showed that iodine-doped samples (x=0 and 0.4) were more semiconductive than non-doped samples. The Tc of the IBi2Sr2Ca1\u2212xYxCu2Oz series in the over-doped region was reduced by 2\u201310 K compared with non-intercalated samples.", "meta": {"doi": "10.1016/0921-4534(92)90573-U"}, "_input_hash": -2068856137, "_task_hash": -823283663, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "structual", "start": 4, "end": 13, "id": 1, "annotation": null}, {"text": "and", "start": 14, "end": 17, "id": 2, "annotation": null}, {"text": "superconducting", "start": 18, "end": 33, "id": 3, "annotation": null}, {"text": "properties", "start": 34, "end": 44, "id": 4, "annotation": null}, {"text": "of", "start": 45, "end": 47, "id": 5, "annotation": null}, {"text": "Bi2Sr2Ca1\u2212xYxCu2Oz", "start": 48, "end": 66, "id": 6, "annotation": "DOPMODQ"}, {"text": "intercalated", "start": 67, "end": 79, "id": 7, "annotation": null}, {"text": "with", "start": 80, "end": 84, "id": 8, "annotation": null}, {"text": "iodine", "start": 85, "end": 91, "id": 9, "annotation": null}, {"text": "between", "start": 92, "end": 99, "id": 10, "annotation": "DOPMODQ"}, {"text": "the", "start": 100, "end": 103, "id": 11, "annotation": null}, {"text": "Bi", "start": 104, "end": 106, "id": 12, "annotation": null}, {"text": "-", "start": 107, "end": 108, "id": 13, "annotation": null}, {"text": "O", "start": 109, "end": 110, "id": 14, "annotation": null}, {"text": "bila", "start": 111, "end": 115, "id": 15, "annotation": null}, {"text": "yers", "start": 116, "end": 120, "id": 16, "annotation": null}, {"text": "were", "start": 121, "end": 125, "id": 17, "annotation": null}, {"text": "studied", "start": 126, "end": 133, "id": 18, "annotation": null}, {"text": ".", "start": 134, "end": 135, "id": 19, "annotation": null}], [{"text": "Formation", "start": 136, "end": 145, "id": 20, "annotation": null}, {"text": "of", "start": 146, "end": 148, "id": 21, "annotation": null}, {"text": "the", "start": 149, "end": 152, "id": 22, "annotation": null}, {"text": "stage-1", "start": 153, "end": 160, "id": 23, "annotation": null}, {"text": "compound", "start": 161, "end": 169, "id": 24, "annotation": null}, {"text": "was", "start": 170, "end": 173, "id": 25, "annotation": null}, {"text": "verified", "start": 174, "end": 182, "id": 26, "annotation": null}, {"text": "by", "start": 183, "end": 185, "id": 27, "annotation": null}, {"text": "X", "start": 186, "end": 187, "id": 28, "annotation": null}, {"text": "-", "start": 188, "end": 189, "id": 29, "annotation": null}, {"text": "ray", "start": 190, "end": 193, "id": 30, "annotation": null}, {"text": "analysis", "start": 194, "end": 202, "id": 31, "annotation": null}, {"text": ",", "start": 203, "end": 204, "id": 32, "annotation": null}, {"text": "TG", "start": 205, "end": 207, "id": 33, "annotation": null}, {"text": "analysis", "start": 208, "end": 216, "id": 34, "annotation": null}, {"text": "and", "start": 217, "end": 220, "id": 35, "annotation": null}, {"text": "TEM", "start": 221, "end": 224, "id": 36, "annotation": null}, {"text": "observation", "start": 225, "end": 236, "id": 37, "annotation": null}, {"text": ".", "start": 237, "end": 238, "id": 38, "annotation": null}], [{"text": "Expansion", "start": 239, "end": 248, "id": 39, "annotation": null}, {"text": "of", "start": 249, "end": 251, "id": 40, "annotation": null}, {"text": "the", "start": 252, "end": 255, "id": 41, "annotation": null}, {"text": "c", "start": 256, "end": 257, "id": 42, "annotation": null}, {"text": "-", "start": 258, "end": 259, "id": 43, "annotation": null}, {"text": "axis", "start": 260, "end": 264, "id": 44, "annotation": null}, {"text": ",", "start": 265, "end": 266, "id": 45, "annotation": null}, {"text": "which", "start": 267, "end": 272, "id": 46, "annotation": null}, {"text": "is", "start": 273, "end": 275, "id": 47, "annotation": null}, {"text": "caused", "start": 276, "end": 282, "id": 48, "annotation": null}, {"text": "by", "start": 283, "end": 285, "id": 49, "annotation": null}, {"text": "increase", "start": 286, "end": 294, "id": 50, "annotation": null}, {"text": "in", "start": 295, "end": 297, "id": 51, "annotation": null}, {"text": "the", "start": 298, "end": 301, "id": 52, "annotation": null}, {"text": "distance", "start": 302, "end": 310, "id": 53, "annotation": null}, {"text": "of", "start": 311, "end": 313, "id": 54, "annotation": null}, {"text": "the", "start": 314, "end": 317, "id": 55, "annotation": null}, {"text": "BiO", "start": 318, "end": 321, "id": 56, "annotation": null}, {"text": "-", "start": 322, "end": 323, "id": 57, "annotation": null}, {"text": "BiO", "start": 324, "end": 327, "id": 58, "annotation": null}, {"text": "layers", "start": 328, "end": 334, "id": 59, "annotation": null}, {"text": ",", "start": 335, "end": 336, "id": 60, "annotation": null}, {"text": "decreases", "start": 337, "end": 346, "id": 61, "annotation": null}, {"text": "with", "start": 347, "end": 351, "id": 62, "annotation": null}, {"text": "decreasing", "start": 352, "end": 362, "id": 63, "annotation": null}, {"text": "intercalated", "start": 363, "end": 375, "id": 64, "annotation": null}, {"text": "iodine", "start": 376, "end": 382, "id": 65, "annotation": null}, {"text": "concentration", "start": 383, "end": 396, "id": 66, "annotation": null}, {"text": "down", "start": 397, "end": 401, "id": 67, "annotation": null}, {"text": "to", "start": 402, "end": 404, "id": 68, "annotation": null}, {"text": "60", "start": 405, "end": 407, "id": 69, "annotation": null}, {"text": "%", "start": 408, "end": 409, "id": 70, "annotation": null}, {"text": ".", "start": 410, "end": 411, "id": 71, "annotation": null}], [{"text": "The", "start": 412, "end": 415, "id": 72, "annotation": null}, {"text": "expansion", "start": 416, "end": 425, "id": 73, "annotation": null}, {"text": "of", "start": 426, "end": 428, "id": 74, "annotation": null}, {"text": "the", "start": 429, "end": 432, "id": 75, "annotation": null}, {"text": "c", "start": 433, "end": 434, "id": 76, "annotation": null}, {"text": "-", "start": 435, "end": 436, "id": 77, "annotation": null}, {"text": "axis", "start": 437, "end": 441, "id": 78, "annotation": null}, {"text": "of", "start": 442, "end": 444, "id": 79, "annotation": null}, {"text": "fully", "start": 445, "end": 450, "id": 80, "annotation": null}, {"text": "intercalated", "start": 451, "end": 463, "id": 81, "annotation": null}, {"text": "compounds", "start": 464, "end": 473, "id": 82, "annotation": null}, {"text": "increases", "start": 474, "end": 483, "id": 83, "annotation": null}, {"text": "with", "start": 484, "end": 488, "id": 84, "annotation": null}, {"text": "increasing", "start": 489, "end": 499, "id": 85, "annotation": null}, {"text": "Y", "start": 500, "end": 501, "id": 86, "annotation": null}, {"text": "content", "start": 502, "end": 509, "id": 87, "annotation": null}, {"text": "from", "start": 510, "end": 514, "id": 88, "annotation": null}, {"text": "7.2", "start": 515, "end": 518, "id": 89, "annotation": null}, {"text": "\u00c5", "start": 519, "end": 520, "id": 90, "annotation": null}, {"text": "for", "start": 521, "end": 524, "id": 91, "annotation": null}, {"text": "x=0", "start": 525, "end": 528, "id": 92, "annotation": null}, {"text": "to", "start": 529, "end": 531, "id": 93, "annotation": null}, {"text": "7.5", "start": 532, "end": 535, "id": 94, "annotation": null}, {"text": "\u00c5", "start": 536, "end": 537, "id": 95, "annotation": null}, {"text": "for", "start": 538, "end": 541, "id": 96, "annotation": null}, {"text": "x=1.0", "start": 542, "end": 547, "id": 97, "annotation": null}, {"text": ".", "start": 548, "end": 549, "id": 98, "annotation": null}], [{"text": "The", "start": 550, "end": 553, "id": 99, "annotation": null}, {"text": "temperature", "start": 554, "end": 565, "id": 100, "annotation": null}, {"text": "dependence", "start": 566, "end": 576, "id": 101, "annotation": null}, {"text": "of", "start": 577, "end": 579, "id": 102, "annotation": null}, {"text": "resistivity", "start": 580, "end": 591, "id": 103, "annotation": null}, {"text": "showed", "start": 592, "end": 598, "id": 104, "annotation": null}, {"text": "that", "start": 599, "end": 603, "id": 105, "annotation": null}, {"text": "iodine", "start": 604, "end": 610, "id": 106, "annotation": "DOPANT"}, {"text": "-", "start": 611, "end": 612, "id": 107, "annotation": null}, {"text": "doped", "start": 613, "end": 618, "id": 108, "annotation": null}, {"text": "samples", "start": 619, "end": 626, "id": 109, "annotation": "BASEMAT"}, {"text": "(", "start": 627, "end": 628, "id": 110, "annotation": null}, {"text": "x=0", "start": 629, "end": 632, "id": 111, "annotation": "DOPMODQ"}, {"text": "and", "start": 633, "end": 636, "id": 112, "annotation": null}, {"text": "0.4", "start": 637, "end": 640, "id": 113, "annotation": "DOPMODQ"}, {"text": ")", "start": 641, "end": 642, "id": 114, "annotation": null}, {"text": "were", "start": 643, "end": 647, "id": 115, "annotation": null}, {"text": "more", "start": 648, "end": 652, "id": 116, "annotation": null}, {"text": "semiconductive", "start": 653, "end": 667, "id": 117, "annotation": null}, {"text": "than", "start": 668, "end": 672, "id": 118, "annotation": null}, {"text": "non", "start": 673, "end": 676, "id": 119, "annotation": null}, {"text": "-", "start": 677, "end": 678, "id": 120, "annotation": null}, {"text": "doped", "start": 679, "end": 684, "id": 121, "annotation": null}, {"text": "samples", "start": 685, "end": 692, "id": 122, "annotation": null}, {"text": ".", "start": 693, "end": 694, "id": 123, "annotation": null}], [{"text": "The", "start": 695, "end": 698, "id": 124, "annotation": null}, {"text": "Tc", "start": 699, "end": 701, "id": 125, "annotation": null}, {"text": "of", "start": 702, "end": 704, "id": 126, "annotation": null}, {"text": "the", "start": 705, "end": 708, "id": 127, "annotation": null}, {"text": "IBi2Sr2Ca1\u2212xYxCu2Oz", "start": 709, "end": 728, "id": 128, "annotation": null}, {"text": "series", "start": 729, "end": 735, "id": 129, "annotation": null}, {"text": "in", "start": 736, "end": 738, "id": 130, "annotation": null}, {"text": "the", "start": 739, "end": 742, "id": 131, "annotation": null}, {"text": "over", "start": 743, "end": 747, "id": 132, "annotation": null}, {"text": "-", "start": 748, "end": 749, "id": 133, "annotation": null}, {"text": "doped", "start": 750, "end": 755, "id": 134, "annotation": null}, {"text": "region", "start": 756, "end": 762, "id": 135, "annotation": null}, {"text": "was", "start": 763, "end": 766, "id": 136, "annotation": null}, {"text": "reduced", "start": 767, "end": 774, "id": 137, "annotation": null}, {"text": "by", "start": 775, "end": 777, "id": 138, "annotation": null}, {"text": "2\u201310", "start": 778, "end": 782, "id": 139, "annotation": null}, {"text": "K", "start": 783, "end": 784, "id": 140, "annotation": null}, {"text": "compared", "start": 785, "end": 793, "id": 141, "annotation": null}, {"text": "with", "start": 794, "end": 798, "id": 142, "annotation": null}, {"text": "non", "start": 799, "end": 802, "id": 143, "annotation": null}, {"text": "-", "start": 803, "end": 804, "id": 144, "annotation": null}, {"text": "intercalated", "start": 805, "end": 817, "id": 145, "annotation": null}, {"text": "samples", "start": 818, "end": 825, "id": 146, "annotation": null}, {"text": ".", "start": 826, "end": 827, "id": 147, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "The optical transmission spectra of CdSexS1-x doped low viscosity silicate glass are experimentally studied. Glass samples were subjected to one- or multi-step heat treatment for different lengths of time. We have followed the modification of the absorption spectra after each heat treatment. The red shift of the absorption edge and the accompanying change of coloration from orange to red are explained by size-quantization effects in the energy spectrum of electrons and holes in semiconductor nanoparticles thermally developed in low viscosity glass matrix. X-ray diffraction data show no stoichiometry changes during the heat treatment processes. Crystallites composition ($x\\approx 0.5$) defined from the diffraction peaks was very close to the value estimated from the position of absorption edge.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "optical", "start": 4, "end": 11, "annotation": null}, {"text": "transmission", "start": 12, "end": 24, "annotation": null}, {"text": "spectra", "start": 25, "end": 32, "annotation": null}, {"text": "of", "start": 33, "end": 35, "annotation": null}, {"text": "CdSexS1-x", "start": 36, "end": 45, "annotation": "DOPANT"}, {"text": "doped", "start": 46, "end": 51, "annotation": null}, {"text": "low", "start": 52, "end": 55, "annotation": null}, {"text": "viscosity", "start": 56, "end": 65, "annotation": null}, {"text": "silicate", "start": 66, "end": 74, "annotation": "BASEMAT"}, {"text": "glass", "start": 75, "end": 80, "annotation": "BASEMAT"}, {"text": "are", "start": 81, "end": 84, "annotation": null}, {"text": "experimentally", "start": 85, "end": 99, "annotation": null}, {"text": "studied", "start": 100, "end": 107, "annotation": null}, {"text": ".", "start": 107, "end": 108, "annotation": null}], [{"text": "Glass", "start": 109, "end": 114, "annotation": null}, {"text": "samples", "start": 115, "end": 122, "annotation": null}, {"text": "were", "start": 123, "end": 127, "annotation": null}, {"text": "subjected", "start": 128, "end": 137, "annotation": null}, {"text": "to", "start": 138, "end": 140, "annotation": null}, {"text": "one-", "start": 141, "end": 145, "annotation": null}, {"text": "or", "start": 146, "end": 148, "annotation": null}, {"text": "multi-step", "start": 149, "end": 159, "annotation": null}, {"text": "heat", "start": 160, "end": 164, "annotation": null}, {"text": "treatment", "start": 165, "end": 174, "annotation": null}, {"text": "for", "start": 175, "end": 178, "annotation": null}, {"text": "different", "start": 179, "end": 188, "annotation": null}, {"text": "lengths", "start": 189, "end": 196, "annotation": null}, {"text": "of", "start": 197, "end": 199, "annotation": null}, {"text": "time", "start": 200, "end": 204, "annotation": null}, {"text": ".", "start": 204, "end": 205, "annotation": null}], [{"text": "We", "start": 206, "end": 208, "annotation": null}, {"text": "have", "start": 209, "end": 213, "annotation": null}, {"text": "followed", "start": 214, "end": 222, "annotation": null}, {"text": "the", "start": 223, "end": 226, "annotation": null}, {"text": "modification", "start": 227, "end": 239, "annotation": null}, {"text": "of", "start": 240, "end": 242, "annotation": null}, {"text": "the", "start": 243, "end": 246, "annotation": null}, {"text": "absorption", "start": 247, "end": 257, "annotation": null}, {"text": "spectra", "start": 258, "end": 265, "annotation": null}, {"text": "after", "start": 266, "end": 271, "annotation": null}, {"text": "each", "start": 272, "end": 276, "annotation": null}, {"text": "heat", "start": 277, "end": 281, "annotation": null}, {"text": "treatment", "start": 282, "end": 291, "annotation": null}, {"text": ".", "start": 291, "end": 292, "annotation": null}], [{"text": "The", "start": 293, "end": 296, "annotation": null}, {"text": "red", "start": 297, "end": 300, "annotation": null}, {"text": "shift", "start": 301, "end": 306, "annotation": null}, {"text": "of", "start": 307, "end": 309, "annotation": null}, {"text": "the", "start": 310, "end": 313, "annotation": null}, {"text": "absorption", "start": 314, "end": 324, "annotation": null}, {"text": "edge", "start": 325, "end": 329, "annotation": null}, {"text": "and", "start": 330, "end": 333, "annotation": null}, {"text": "the", "start": 334, "end": 337, "annotation": null}, {"text": "accompanying", "start": 338, "end": 350, "annotation": null}, {"text": "change", "start": 351, "end": 357, "annotation": null}, {"text": "of", "start": 358, "end": 360, "annotation": null}, {"text": "coloration", "start": 361, "end": 371, "annotation": null}, {"text": "from", "start": 372, "end": 376, "annotation": null}, {"text": "orange", "start": 377, "end": 383, "annotation": null}, {"text": "to", "start": 384, "end": 386, "annotation": null}, {"text": "red", "start": 387, "end": 390, "annotation": null}, {"text": "are", "start": 391, "end": 394, "annotation": null}, {"text": "explained", "start": 395, "end": 404, "annotation": null}, {"text": "by", "start": 405, "end": 407, "annotation": null}, {"text": "size", "start": 408, "end": 412, "annotation": null}, {"text": "-", "start": 412, "end": 413, "annotation": null}, {"text": "quantization", "start": 413, "end": 425, "annotation": null}, {"text": "effects", "start": 426, "end": 433, "annotation": null}, {"text": "in", "start": 434, "end": 436, "annotation": null}, {"text": "the", "start": 437, "end": 440, "annotation": null}, {"text": "energy", "start": 441, "end": 447, "annotation": null}, {"text": "spectrum", "start": 448, "end": 456, "annotation": null}, {"text": "of", "start": 457, "end": 459, "annotation": null}, {"text": "electrons", "start": 460, "end": 469, "annotation": null}, {"text": "and", "start": 470, "end": 473, "annotation": null}, {"text": "holes", "start": 474, "end": 479, "annotation": null}, {"text": "in", "start": 480, "end": 482, "annotation": null}, {"text": "semiconductor", "start": 483, "end": 496, "annotation": null}, {"text": "nanoparticles", "start": 497, "end": 510, "annotation": null}, {"text": "thermally", "start": 511, "end": 520, "annotation": null}, {"text": "developed", "start": 521, "end": 530, "annotation": null}, {"text": "in", "start": 531, "end": 533, "annotation": null}, {"text": "low", "start": 534, "end": 537, "annotation": null}, {"text": "viscosity", "start": 538, "end": 547, "annotation": null}, {"text": "glass", "start": 548, "end": 553, "annotation": null}, {"text": "matrix", "start": 554, "end": 560, "annotation": null}, {"text": ".", "start": 560, "end": 561, "annotation": null}], [{"text": "X-ray", "start": 562, "end": 567, "annotation": null}, {"text": "diffraction", "start": 568, "end": 579, "annotation": null}, {"text": "data", "start": 580, "end": 584, "annotation": null}, {"text": "show", "start": 585, "end": 589, "annotation": null}, {"text": "no", "start": 590, "end": 592, "annotation": null}, {"text": "stoichiometry", "start": 593, "end": 606, "annotation": null}, {"text": "changes", "start": 607, "end": 614, "annotation": null}, {"text": "during", "start": 615, "end": 621, "annotation": null}, {"text": "the", "start": 622, "end": 625, "annotation": null}, {"text": "heat", "start": 626, "end": 630, "annotation": null}, {"text": "treatment", "start": 631, "end": 640, "annotation": null}, {"text": "processes", "start": 641, "end": 650, "annotation": null}, {"text": ".", "start": 650, "end": 651, "annotation": null}], [{"text": "Crystallites", "start": 652, "end": 664, "annotation": null}, {"text": "composition", "start": 665, "end": 676, "annotation": null}, {"text": "(", "start": 677, "end": 678, "annotation": null}, {"text": "$", "start": 678, "end": 679, "annotation": null}, {"text": "x\\approx", "start": 679, "end": 687, "annotation": null}, {"text": "0.5", "start": 688, "end": 691, "annotation": null}, {"text": "$", "start": 691, "end": 692, "annotation": null}, {"text": ")", "start": 692, "end": 693, "annotation": null}, {"text": "defined", "start": 694, "end": 701, "annotation": null}, {"text": "from", "start": 702, "end": 706, "annotation": null}, {"text": "the", "start": 707, "end": 710, "annotation": null}, {"text": "diffraction", "start": 711, "end": 722, "annotation": null}, {"text": "peaks", "start": 723, "end": 728, "annotation": null}, {"text": "was", "start": 729, "end": 732, "annotation": null}, {"text": "very", "start": 733, "end": 737, "annotation": null}, {"text": "close", "start": 738, "end": 743, "annotation": null}, {"text": "to", "start": 744, "end": 746, "annotation": null}, {"text": "the", "start": 747, "end": 750, "annotation": null}, {"text": "value", "start": 751, "end": 756, "annotation": null}, {"text": "estimated", "start": 757, "end": 766, "annotation": null}, {"text": "from", "start": 767, "end": 771, "annotation": null}, {"text": "the", "start": 772, "end": 775, "annotation": null}, {"text": "position", "start": 776, "end": 784, "annotation": null}, {"text": "of", "start": 785, "end": 787, "annotation": null}, {"text": "absorption", "start": 788, "end": 798, "annotation": null}, {"text": "edge", "start": 799, "end": 803, "annotation": null}, {"text": ".", "start": 803, "end": 804, "annotation": null}]]} +{"remark": "doping_annt1", "text": "The optical transmission spectra of CdSexS1-x doped low viscosity silicate glass are experimentally studied. Glass samples were subjected to one- or multi-step heat treatment for different lengths of time. We have followed the modification of the absorption spectra after each heat treatment. The red shift of the absorption edge and the accompanying change of coloration from orange to red are explained by size-quantization effects in the energy spectrum of electrons and holes in semiconductor nanoparticles thermally developed in low viscosity glass matrix. X-ray diffraction data show no stoichiometry changes during the heat treatment processes. Crystallites composition ($x\\approx 0.5$) defined from the diffraction peaks was very close to the value estimated from the position of absorption edge.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "optical", "start": 4, "end": 11, "annotation": null}, {"text": "transmission", "start": 12, "end": 24, "annotation": null}, {"text": "spectra", "start": 25, "end": 32, "annotation": null}, {"text": "of", "start": 33, "end": 35, "annotation": null}, {"text": "CdSexS1-x", "start": 36, "end": 45, "annotation": "DOPANT"}, {"text": "doped", "start": 46, "end": 51, "annotation": null}, {"text": "low", "start": 52, "end": 55, "annotation": null}, {"text": "viscosity", "start": 56, "end": 65, "annotation": null}, {"text": "silicate", "start": 66, "end": 74, "annotation": "BASEMAT"}, {"text": "glass", "start": 75, "end": 80, "annotation": "BASEMAT"}, {"text": "are", "start": 81, "end": 84, "annotation": null}, {"text": "experimentally", "start": 85, "end": 99, "annotation": null}, {"text": "studied", "start": 100, "end": 107, "annotation": null}, {"text": ".", "start": 107, "end": 108, "annotation": null}], [{"text": "Glass", "start": 109, "end": 114, "annotation": null}, {"text": "samples", "start": 115, "end": 122, "annotation": null}, {"text": "were", "start": 123, "end": 127, "annotation": null}, {"text": "subjected", "start": 128, "end": 137, "annotation": null}, {"text": "to", "start": 138, "end": 140, "annotation": null}, {"text": "one-", "start": 141, "end": 145, "annotation": null}, {"text": "or", "start": 146, "end": 148, "annotation": null}, {"text": "multi-step", "start": 149, "end": 159, "annotation": null}, {"text": "heat", "start": 160, "end": 164, "annotation": null}, {"text": "treatment", "start": 165, "end": 174, "annotation": null}, {"text": "for", "start": 175, "end": 178, "annotation": null}, {"text": "different", "start": 179, "end": 188, "annotation": null}, {"text": "lengths", "start": 189, "end": 196, "annotation": null}, {"text": "of", "start": 197, "end": 199, "annotation": null}, {"text": "time", "start": 200, "end": 204, "annotation": null}, {"text": ".", "start": 204, "end": 205, "annotation": null}], [{"text": "We", "start": 206, "end": 208, "annotation": null}, {"text": "have", "start": 209, "end": 213, "annotation": null}, {"text": "followed", "start": 214, "end": 222, "annotation": null}, {"text": "the", "start": 223, "end": 226, "annotation": null}, {"text": "modification", "start": 227, "end": 239, "annotation": null}, {"text": "of", "start": 240, "end": 242, "annotation": null}, {"text": "the", "start": 243, "end": 246, "annotation": null}, {"text": "absorption", "start": 247, "end": 257, "annotation": null}, {"text": "spectra", "start": 258, "end": 265, "annotation": null}, {"text": "after", "start": 266, "end": 271, "annotation": null}, {"text": "each", "start": 272, "end": 276, "annotation": null}, {"text": "heat", "start": 277, "end": 281, "annotation": null}, {"text": "treatment", "start": 282, "end": 291, "annotation": null}, {"text": ".", "start": 291, "end": 292, "annotation": null}], [{"text": "The", "start": 293, "end": 296, "annotation": null}, {"text": "red", "start": 297, "end": 300, "annotation": null}, {"text": "shift", "start": 301, "end": 306, "annotation": null}, {"text": "of", "start": 307, "end": 309, "annotation": null}, {"text": "the", "start": 310, "end": 313, "annotation": null}, {"text": "absorption", "start": 314, "end": 324, "annotation": null}, {"text": "edge", "start": 325, "end": 329, "annotation": null}, {"text": "and", "start": 330, "end": 333, "annotation": null}, {"text": "the", "start": 334, "end": 337, "annotation": null}, {"text": "accompanying", "start": 338, "end": 350, "annotation": null}, {"text": "change", "start": 351, "end": 357, "annotation": null}, {"text": "of", "start": 358, "end": 360, "annotation": null}, {"text": "coloration", "start": 361, "end": 371, "annotation": null}, {"text": "from", "start": 372, "end": 376, "annotation": null}, {"text": "orange", "start": 377, "end": 383, "annotation": null}, {"text": "to", "start": 384, "end": 386, "annotation": null}, {"text": "red", "start": 387, "end": 390, "annotation": null}, {"text": "are", "start": 391, "end": 394, "annotation": null}, {"text": "explained", "start": 395, "end": 404, "annotation": null}, {"text": "by", "start": 405, "end": 407, "annotation": null}, {"text": "size", "start": 408, "end": 412, "annotation": null}, {"text": "-", "start": 412, "end": 413, "annotation": null}, {"text": "quantization", "start": 413, "end": 425, "annotation": null}, {"text": "effects", "start": 426, "end": 433, "annotation": null}, {"text": "in", "start": 434, "end": 436, "annotation": null}, {"text": "the", "start": 437, "end": 440, "annotation": null}, {"text": "energy", "start": 441, "end": 447, "annotation": null}, {"text": "spectrum", "start": 448, "end": 456, "annotation": null}, {"text": "of", "start": 457, "end": 459, "annotation": null}, {"text": "electrons", "start": 460, "end": 469, "annotation": null}, {"text": "and", "start": 470, "end": 473, "annotation": null}, {"text": "holes", "start": 474, "end": 479, "annotation": null}, {"text": "in", "start": 480, "end": 482, "annotation": null}, {"text": "semiconductor", "start": 483, "end": 496, "annotation": null}, {"text": "nanoparticles", "start": 497, "end": 510, "annotation": null}, {"text": "thermally", "start": 511, "end": 520, "annotation": null}, {"text": "developed", "start": 521, "end": 530, "annotation": null}, {"text": "in", "start": 531, "end": 533, "annotation": null}, {"text": "low", "start": 534, "end": 537, "annotation": null}, {"text": "viscosity", "start": 538, "end": 547, "annotation": null}, {"text": "glass", "start": 548, "end": 553, "annotation": null}, {"text": "matrix", "start": 554, "end": 560, "annotation": null}, {"text": ".", "start": 560, "end": 561, "annotation": null}], [{"text": "X-ray", "start": 562, "end": 567, "annotation": null}, {"text": "diffraction", "start": 568, "end": 579, "annotation": null}, {"text": "data", "start": 580, "end": 584, "annotation": null}, {"text": "show", "start": 585, "end": 589, "annotation": null}, {"text": "no", "start": 590, "end": 592, "annotation": null}, {"text": "stoichiometry", "start": 593, "end": 606, "annotation": null}, {"text": "changes", "start": 607, "end": 614, "annotation": null}, {"text": "during", "start": 615, "end": 621, "annotation": null}, {"text": "the", "start": 622, "end": 625, "annotation": null}, {"text": "heat", "start": 626, "end": 630, "annotation": null}, {"text": "treatment", "start": 631, "end": 640, "annotation": null}, {"text": "processes", "start": 641, "end": 650, "annotation": null}, {"text": ".", "start": 650, "end": 651, "annotation": null}], [{"text": "Crystallites", "start": 652, "end": 664, "annotation": null}, {"text": "composition", "start": 665, "end": 676, "annotation": null}, {"text": "(", "start": 677, "end": 678, "annotation": null}, {"text": "$", "start": 678, "end": 679, "annotation": null}, {"text": "x\\approx", "start": 679, "end": 687, "annotation": null}, {"text": "0.5", "start": 688, "end": 691, "annotation": null}, {"text": "$", "start": 691, "end": 692, "annotation": null}, {"text": ")", "start": 692, "end": 693, "annotation": null}, {"text": "defined", "start": 694, "end": 701, "annotation": null}, {"text": "from", "start": 702, "end": 706, "annotation": null}, {"text": "the", "start": 707, "end": 710, "annotation": null}, {"text": "diffraction", "start": 711, "end": 722, "annotation": null}, {"text": "peaks", "start": 723, "end": 728, "annotation": null}, {"text": "was", "start": 729, "end": 732, "annotation": null}, {"text": "very", "start": 733, "end": 737, "annotation": null}, {"text": "close", "start": 738, "end": 743, "annotation": null}, {"text": "to", "start": 744, "end": 746, "annotation": null}, {"text": "the", "start": 747, "end": 750, "annotation": null}, {"text": "value", "start": 751, "end": 756, "annotation": null}, {"text": "estimated", "start": 757, "end": 766, "annotation": null}, {"text": "from", "start": 767, "end": 771, "annotation": null}, {"text": "the", "start": 772, "end": 775, "annotation": null}, {"text": "position", "start": 776, "end": 784, "annotation": null}, {"text": "of", "start": 785, "end": 787, "annotation": null}, {"text": "absorption", "start": 788, "end": 798, "annotation": null}, {"text": "edge", "start": 799, "end": 803, "annotation": null}, {"text": ".", "start": 803, "end": 804, "annotation": null}]], "meta": {"doi": "10.1140/epjb/e2003-00239-7"}} {"text": "Electrical conductivity of conducting polymer blends based on polyaniline has been studied under different aging conditions. The relative stability of these films with various dopants has been compared and the evolution of the transport properties with aging has been investigated in the range 77 to 300K. All results are interpreted in the framework of a heterogeneous model where conduction is mainly dominated by a hopping mechanism between conducting clusters separated by thin insulating barriers. Above the percolation threshold, thermal aging leads to an expansion of the insulating barriers to the detriment of the cluster size.", "meta": {"doi": "10.1016/S0379-6779(98)01113-8"}, "_input_hash": 1424774582, "_task_hash": -263288569, "tokens": [[{"text": "Electrical", "start": 0, "end": 10, "id": 0, "annotation": null}, {"text": "conductivity", "start": 11, "end": 23, "id": 1, "annotation": null}, {"text": "of", "start": 24, "end": 26, "id": 2, "annotation": null}, {"text": "conducting", "start": 27, "end": 37, "id": 3, "annotation": null}, {"text": "polymer", "start": 38, "end": 45, "id": 4, "annotation": null}, {"text": "blends", "start": 46, "end": 52, "id": 5, "annotation": null}, {"text": "based", "start": 53, "end": 58, "id": 6, "annotation": null}, {"text": "on", "start": 59, "end": 61, "id": 7, "annotation": null}, {"text": "polyaniline", "start": 62, "end": 73, "id": 8, "annotation": null}, {"text": "has", "start": 74, "end": 77, "id": 9, "annotation": null}, {"text": "been", "start": 78, "end": 82, "id": 10, "annotation": null}, {"text": "studied", "start": 83, "end": 90, "id": 11, "annotation": null}, {"text": "under", "start": 91, "end": 96, "id": 12, "annotation": null}, {"text": "different", "start": 97, "end": 106, "id": 13, "annotation": null}, {"text": "aging", "start": 107, "end": 112, "id": 14, "annotation": null}, {"text": "conditions", "start": 113, "end": 123, "id": 15, "annotation": null}, {"text": ".", "start": 124, "end": 125, "id": 16, "annotation": null}], [{"text": "The", "start": 126, "end": 129, "id": 17, "annotation": null}, {"text": "relative", "start": 130, "end": 138, "id": 18, "annotation": null}, {"text": "stability", "start": 139, "end": 148, "id": 19, "annotation": null}, {"text": "of", "start": 149, "end": 151, "id": 20, "annotation": null}, {"text": "these", "start": 152, "end": 157, "id": 21, "annotation": null}, {"text": "films", "start": 158, "end": 163, "id": 22, "annotation": "BASEMAT"}, {"text": "with", "start": 164, "end": 168, "id": 23, "annotation": null}, {"text": "various", "start": 169, "end": 176, "id": 24, "annotation": null}, {"text": "dopants", "start": 177, "end": 184, "id": 25, "annotation": null}, {"text": "has", "start": 185, "end": 188, "id": 26, "annotation": null}, {"text": "been", "start": 189, "end": 193, "id": 27, "annotation": null}, {"text": "compared", "start": 194, "end": 202, "id": 28, "annotation": null}, {"text": "and", "start": 203, "end": 206, "id": 29, "annotation": null}, {"text": "the", "start": 207, "end": 210, "id": 30, "annotation": null}, {"text": "evolution", "start": 211, "end": 220, "id": 31, "annotation": null}, {"text": "of", "start": 221, "end": 223, "id": 32, "annotation": null}, {"text": "the", "start": 224, "end": 227, "id": 33, "annotation": null}, {"text": "transport", "start": 228, "end": 237, "id": 34, "annotation": null}, {"text": "properties", "start": 238, "end": 248, "id": 35, "annotation": null}, {"text": "with", "start": 249, "end": 253, "id": 36, "annotation": null}, {"text": "aging", "start": 254, "end": 259, "id": 37, "annotation": null}, {"text": "has", "start": 260, "end": 263, "id": 38, "annotation": null}, {"text": "been", "start": 264, "end": 268, "id": 39, "annotation": null}, {"text": "investigated", "start": 269, "end": 281, "id": 40, "annotation": null}, {"text": "in", "start": 282, "end": 284, "id": 41, "annotation": null}, {"text": "the", "start": 285, "end": 288, "id": 42, "annotation": null}, {"text": "range", "start": 289, "end": 294, "id": 43, "annotation": null}, {"text": "77", "start": 295, "end": 297, "id": 44, "annotation": null}, {"text": "to", "start": 298, "end": 300, "id": 45, "annotation": null}, {"text": "300K.", "start": 301, "end": 306, "id": 46, "annotation": null}], [{"text": "All", "start": 307, "end": 310, "id": 47, "annotation": null}, {"text": "results", "start": 311, "end": 318, "id": 48, "annotation": null}, {"text": "are", "start": 319, "end": 322, "id": 49, "annotation": null}, {"text": "interpreted", "start": 323, "end": 334, "id": 50, "annotation": null}, {"text": "in", "start": 335, "end": 337, "id": 51, "annotation": null}, {"text": "the", "start": 338, "end": 341, "id": 52, "annotation": null}, {"text": "framework", "start": 342, "end": 351, "id": 53, "annotation": null}, {"text": "of", "start": 352, "end": 354, "id": 54, "annotation": null}, {"text": "a", "start": 355, "end": 356, "id": 55, "annotation": null}, {"text": "heterogeneous", "start": 357, "end": 370, "id": 56, "annotation": null}, {"text": "model", "start": 371, "end": 376, "id": 57, "annotation": null}, {"text": "where", "start": 377, "end": 382, "id": 58, "annotation": null}, {"text": "conduction", "start": 383, "end": 393, "id": 59, "annotation": null}, {"text": "is", "start": 394, "end": 396, "id": 60, "annotation": null}, {"text": "mainly", "start": 397, "end": 403, "id": 61, "annotation": null}, {"text": "dominated", "start": 404, "end": 413, "id": 62, "annotation": null}, {"text": "by", "start": 414, "end": 416, "id": 63, "annotation": null}, {"text": "a", "start": 417, "end": 418, "id": 64, "annotation": null}, {"text": "hopping", "start": 419, "end": 426, "id": 65, "annotation": null}, {"text": "mechanism", "start": 427, "end": 436, "id": 66, "annotation": null}, {"text": "between", "start": 437, "end": 444, "id": 67, "annotation": null}, {"text": "conducting", "start": 445, "end": 455, "id": 68, "annotation": null}, {"text": "clusters", "start": 456, "end": 464, "id": 69, "annotation": null}, {"text": "separated", "start": 465, "end": 474, "id": 70, "annotation": null}, {"text": "by", "start": 475, "end": 477, "id": 71, "annotation": null}, {"text": "thin", "start": 478, "end": 482, "id": 72, "annotation": null}, {"text": "insulating", "start": 483, "end": 493, "id": 73, "annotation": null}, {"text": "barriers", "start": 494, "end": 502, "id": 74, "annotation": null}, {"text": ".", "start": 503, "end": 504, "id": 75, "annotation": null}], [{"text": "Above", "start": 505, "end": 510, "id": 76, "annotation": null}, {"text": "the", "start": 511, "end": 514, "id": 77, "annotation": null}, {"text": "percolation", "start": 515, "end": 526, "id": 78, "annotation": null}, {"text": "threshold", "start": 527, "end": 536, "id": 79, "annotation": null}, {"text": ",", "start": 537, "end": 538, "id": 80, "annotation": null}, {"text": "thermal", "start": 539, "end": 546, "id": 81, "annotation": null}, {"text": "aging", "start": 547, "end": 552, "id": 82, "annotation": null}, {"text": "leads", "start": 553, "end": 558, "id": 83, "annotation": null}, {"text": "to", "start": 559, "end": 561, "id": 84, "annotation": null}, {"text": "an", "start": 562, "end": 564, "id": 85, "annotation": null}, {"text": "expansion", "start": 565, "end": 574, "id": 86, "annotation": null}, {"text": "of", "start": 575, "end": 577, "id": 87, "annotation": null}, {"text": "the", "start": 578, "end": 581, "id": 88, "annotation": null}, {"text": "insulating", "start": 582, "end": 592, "id": 89, "annotation": null}, {"text": "barriers", "start": 593, "end": 601, "id": 90, "annotation": null}, {"text": "to", "start": 602, "end": 604, "id": 91, "annotation": null}, {"text": "the", "start": 605, "end": 608, "id": 92, "annotation": null}, {"text": "detriment", "start": 609, "end": 618, "id": 93, "annotation": null}, {"text": "of", "start": 619, "end": 621, "id": 94, "annotation": null}, {"text": "the", "start": 622, "end": 625, "id": 95, "annotation": null}, {"text": "cluster", "start": 626, "end": 633, "id": 96, "annotation": null}, {"text": "size", "start": 634, "end": 638, "id": 97, "annotation": null}, {"text": ".", "start": 639, "end": 640, "id": 98, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "A characterization method based on the careful measurement of the characteristic parameters and fluorescence emission spectra of a highly Yb-doped double-clad fiber is presented. The method is successfully checked by numerically fitting experimental results of a ring laser based on highly doped double-clad Yb-doped silica fibers with different dopant concentrations, fiber lengths and ring-laser output-coupler rates.", "meta": {"doi": "10.1088/1054-660X/26/12/125105"}, "_input_hash": -174395258, "_task_hash": -416180774, "tokens": [[{"text": "A", "start": 18, "end": 19, "id": 4, "annotation": null}, {"text": "characterization", "start": 20, "end": 36, "id": 5, "annotation": null}, {"text": "method", "start": 37, "end": 43, "id": 6, "annotation": null}, {"text": "based", "start": 44, "end": 49, "id": 7, "annotation": null}, {"text": "on", "start": 50, "end": 52, "id": 8, "annotation": null}, {"text": "the", "start": 53, "end": 56, "id": 9, "annotation": null}, {"text": "careful", "start": 57, "end": 64, "id": 10, "annotation": null}, {"text": "measurement", "start": 65, "end": 76, "id": 11, "annotation": null}, {"text": "of", "start": 77, "end": 79, "id": 12, "annotation": null}, {"text": "the", "start": 80, "end": 83, "id": 13, "annotation": null}, {"text": "characteristic", "start": 84, "end": 98, "id": 14, "annotation": null}, {"text": "parameters", "start": 99, "end": 109, "id": 15, "annotation": null}, {"text": "and", "start": 110, "end": 113, "id": 16, "annotation": null}, {"text": "fluorescence", "start": 114, "end": 126, "id": 17, "annotation": null}, {"text": "emission", "start": 127, "end": 135, "id": 18, "annotation": null}, {"text": "spectra", "start": 136, "end": 143, "id": 19, "annotation": null}, {"text": "of", "start": 144, "end": 146, "id": 20, "annotation": null}, {"text": "a", "start": 147, "end": 148, "id": 21, "annotation": null}, {"text": "highly", "start": 149, "end": 155, "id": 22, "annotation": null}, {"text": "Yb", "start": 156, "end": 158, "id": 23, "annotation": "DOPANT"}, {"text": "-", "start": 159, "end": 160, "id": 24, "annotation": null}, {"text": "doped", "start": 161, "end": 166, "id": 25, "annotation": null}, {"text": "double", "start": 167, "end": 173, "id": 26, "annotation": null}, {"text": "-", "start": 174, "end": 175, "id": 27, "annotation": null}, {"text": "clad", "start": 176, "end": 180, "id": 28, "annotation": null}, {"text": "fiber", "start": 181, "end": 186, "id": 29, "annotation": "BASEMAT"}, {"text": "is", "start": 187, "end": 189, "id": 30, "annotation": null}, {"text": "presented", "start": 190, "end": 199, "id": 31, "annotation": null}, {"text": ".", "start": 200, "end": 201, "id": 32, "annotation": null}], [{"text": "The", "start": 202, "end": 205, "id": 33, "annotation": null}, {"text": "method", "start": 206, "end": 212, "id": 34, "annotation": null}, {"text": "is", "start": 213, "end": 215, "id": 35, "annotation": null}, {"text": "successfully", "start": 216, "end": 228, "id": 36, "annotation": null}, {"text": "checked", "start": 229, "end": 236, "id": 37, "annotation": null}, {"text": "by", "start": 237, "end": 239, "id": 38, "annotation": null}, {"text": "numerically", "start": 240, "end": 251, "id": 39, "annotation": null}, {"text": "fitting", "start": 252, "end": 259, "id": 40, "annotation": null}, {"text": "experimental", "start": 260, "end": 272, "id": 41, "annotation": null}, {"text": "results", "start": 273, "end": 280, "id": 42, "annotation": null}, {"text": "of", "start": 281, "end": 283, "id": 43, "annotation": null}, {"text": "a", "start": 284, "end": 285, "id": 44, "annotation": null}, {"text": "ring", "start": 286, "end": 290, "id": 45, "annotation": null}, {"text": "laser", "start": 291, "end": 296, "id": 46, "annotation": null}, {"text": "based", "start": 297, "end": 302, "id": 47, "annotation": null}, {"text": "on", "start": 303, "end": 305, "id": 48, "annotation": null}, {"text": "highly", "start": 306, "end": 312, "id": 49, "annotation": null}, {"text": "doped", "start": 313, "end": 318, "id": 50, "annotation": null}, {"text": "double", "start": 319, "end": 325, "id": 51, "annotation": null}, {"text": "-", "start": 326, "end": 327, "id": 52, "annotation": null}, {"text": "clad", "start": 328, "end": 332, "id": 53, "annotation": null}, {"text": "Yb", "start": 333, "end": 335, "id": 54, "annotation": "DOPANT"}, {"text": "-", "start": 336, "end": 337, "id": 55, "annotation": null}, {"text": "doped", "start": 338, "end": 343, "id": 56, "annotation": null}, {"text": "silica", "start": 344, "end": 350, "id": 57, "annotation": "BASEMAT"}, {"text": "fibers", "start": 351, "end": 357, "id": 58, "annotation": null}, {"text": "with", "start": 358, "end": 362, "id": 59, "annotation": null}, {"text": "different", "start": 363, "end": 372, "id": 60, "annotation": null}, {"text": "dopant", "start": 373, "end": 379, "id": 61, "annotation": null}, {"text": "concentrations", "start": 380, "end": 394, "id": 62, "annotation": null}, {"text": ",", "start": 395, "end": 396, "id": 63, "annotation": null}, {"text": "fiber", "start": 397, "end": 402, "id": 64, "annotation": null}, {"text": "lengths", "start": 403, "end": 410, "id": 65, "annotation": null}, {"text": "and", "start": 411, "end": 414, "id": 66, "annotation": null}, {"text": "ring", "start": 415, "end": 419, "id": 67, "annotation": null}, {"text": "-", "start": 420, "end": 421, "id": 68, "annotation": null}, {"text": "laser", "start": 422, "end": 427, "id": 69, "annotation": null}, {"text": "output", "start": 428, "end": 434, "id": 70, "annotation": null}, {"text": "-", "start": 435, "end": 436, "id": 71, "annotation": null}, {"text": "coupler", "start": 437, "end": 444, "id": 72, "annotation": null}, {"text": "rates", "start": 445, "end": 450, "id": 73, "annotation": null}, {"text": ".", "start": 451, "end": 452, "id": 74, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "In the present study, the effect of TiO2 doping on (1\u2212x) Bi2O3 (x)TiO2 (x=0.05, 0.10, 0.15, 0.20) materials is investigated using X-ray diffraction (XRD), differential thermal analysis (DTA), ac conductivity, scanning electron microscopy (SEM) and energy dispersive spectroscopy (EDS). XRD results show the formation of single phase Bi12TiO20 at x\u22650.15 concentration of TiO2. It is observed that, the lower concentration of TiO2 leads to the formation of mixed phase. The x=0.15 and x=0.20 samples exhibit regular and uniform distribution of the grains as compared to x=0.10 sample. The highest conductivity is observed for x=0.15 specimen, e.g., 9\u00d710\u22127Scm\u22121.", "meta": {"doi": "10.1016/j.ceramint.2011.10.043"}, "_input_hash": 468711084, "_task_hash": -1987035505, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "the", "start": 3, "end": 6, "id": 1, "annotation": null}, {"text": "present", "start": 7, "end": 14, "id": 2, "annotation": null}, {"text": "study", "start": 15, "end": 20, "id": 3, "annotation": null}, {"text": ",", "start": 21, "end": 22, "id": 4, "annotation": null}, {"text": "the", "start": 23, "end": 26, "id": 5, "annotation": null}, {"text": "effect", "start": 27, "end": 33, "id": 6, "annotation": null}, {"text": "of", "start": 34, "end": 36, "id": 7, "annotation": null}, {"text": "TiO2", "start": 37, "end": 41, "id": 8, "annotation": "DOPANT"}, {"text": "doping", "start": 42, "end": 48, "id": 9, "annotation": null}, {"text": "on", "start": 49, "end": 51, "id": 10, "annotation": null}, {"text": "(", "start": 52, "end": 53, "id": 11, "annotation": "BASEMAT"}, {"text": "1\u2212x", "start": 54, "end": 57, "id": 12, "annotation": null}, {"text": ")", "start": 58, "end": 59, "id": 13, "annotation": null}, {"text": "Bi2O3", "start": 60, "end": 65, "id": 14, "annotation": null}, {"text": "(", "start": 66, "end": 67, "id": 15, "annotation": null}, {"text": "x)TiO2", "start": 68, "end": 74, "id": 16, "annotation": "BASEMAT"}, {"text": "(", "start": 75, "end": 76, "id": 17, "annotation": null}, {"text": "x=0.05", "start": 77, "end": 83, "id": 18, "annotation": "DOPMODQ"}, {"text": ",", "start": 84, "end": 85, "id": 19, "annotation": null}, {"text": "0.10", "start": 86, "end": 90, "id": 20, "annotation": null}, {"text": ",", "start": 91, "end": 92, "id": 21, "annotation": null}, {"text": "0.15", "start": 93, "end": 97, "id": 22, "annotation": null}, {"text": ",", "start": 98, "end": 99, "id": 23, "annotation": null}, {"text": "0.20", "start": 100, "end": 104, "id": 24, "annotation": "DOPMODQ"}, {"text": ")", "start": 105, "end": 106, "id": 25, "annotation": null}, {"text": "materials", "start": 107, "end": 116, "id": 26, "annotation": null}, {"text": "is", "start": 117, "end": 119, "id": 27, "annotation": null}, {"text": "investigated", "start": 120, "end": 132, "id": 28, "annotation": null}, {"text": "using", "start": 133, "end": 138, "id": 29, "annotation": null}, {"text": "X", "start": 139, "end": 140, "id": 30, "annotation": null}, {"text": "-", "start": 141, "end": 142, "id": 31, "annotation": null}, {"text": "ray", "start": 143, "end": 146, "id": 32, "annotation": null}, {"text": "diffraction", "start": 147, "end": 158, "id": 33, "annotation": null}, {"text": "(", "start": 159, "end": 160, "id": 34, "annotation": null}, {"text": "XRD", "start": 161, "end": 164, "id": 35, "annotation": null}, {"text": ")", "start": 165, "end": 166, "id": 36, "annotation": null}, {"text": ",", "start": 167, "end": 168, "id": 37, "annotation": null}, {"text": "differential", "start": 169, "end": 181, "id": 38, "annotation": null}, {"text": "thermal", "start": 182, "end": 189, "id": 39, "annotation": null}, {"text": "analysis", "start": 190, "end": 198, "id": 40, "annotation": null}, {"text": "(", "start": 199, "end": 200, "id": 41, "annotation": null}, {"text": "DTA", "start": 201, "end": 204, "id": 42, "annotation": null}, {"text": ")", "start": 205, "end": 206, "id": 43, "annotation": null}, {"text": ",", "start": 207, "end": 208, "id": 44, "annotation": null}, {"text": "ac", "start": 209, "end": 211, "id": 45, "annotation": null}, {"text": "conductivity", "start": 212, "end": 224, "id": 46, "annotation": null}, {"text": ",", "start": 225, "end": 226, "id": 47, "annotation": null}, {"text": "scanning", "start": 227, "end": 235, "id": 48, "annotation": null}, {"text": "electron", "start": 236, "end": 244, "id": 49, "annotation": null}, {"text": "microscopy", "start": 245, "end": 255, "id": 50, "annotation": null}, {"text": "(", "start": 256, "end": 257, "id": 51, "annotation": null}, {"text": "SEM", "start": 258, "end": 261, "id": 52, "annotation": null}, {"text": ")", "start": 262, "end": 263, "id": 53, "annotation": null}, {"text": "and", "start": 264, "end": 267, "id": 54, "annotation": null}, {"text": "energy", "start": 268, "end": 274, "id": 55, "annotation": null}, {"text": "dispersive", "start": 275, "end": 285, "id": 56, "annotation": null}, {"text": "spectroscopy", "start": 286, "end": 298, "id": 57, "annotation": null}, {"text": "(", "start": 299, "end": 300, "id": 58, "annotation": null}, {"text": "EDS", "start": 301, "end": 304, "id": 59, "annotation": null}, {"text": ")", "start": 305, "end": 306, "id": 60, "annotation": null}, {"text": ".", "start": 307, "end": 308, "id": 61, "annotation": null}], [{"text": "XRD", "start": 309, "end": 312, "id": 62, "annotation": null}, {"text": "results", "start": 313, "end": 320, "id": 63, "annotation": null}, {"text": "show", "start": 321, "end": 325, "id": 64, "annotation": null}, {"text": "the", "start": 326, "end": 329, "id": 65, "annotation": null}, {"text": "formation", "start": 330, "end": 339, "id": 66, "annotation": null}, {"text": "of", "start": 340, "end": 342, "id": 67, "annotation": null}, {"text": "single", "start": 343, "end": 349, "id": 68, "annotation": null}, {"text": "phase", "start": 350, "end": 355, "id": 69, "annotation": null}, {"text": "Bi12TiO20", "start": 356, "end": 365, "id": 70, "annotation": null}, {"text": "at", "start": 366, "end": 368, "id": 71, "annotation": null}, {"text": "x\u22650.15", "start": 369, "end": 375, "id": 72, "annotation": "DOPMODQ"}, {"text": "concentration", "start": 376, "end": 389, "id": 73, "annotation": null}, {"text": "of", "start": 390, "end": 392, "id": 74, "annotation": null}, {"text": "TiO2", "start": 393, "end": 397, "id": 75, "annotation": "DOPANT"}, {"text": ".", "start": 398, "end": 399, "id": 76, "annotation": null}], [{"text": "It", "start": 400, "end": 402, "id": 77, "annotation": null}, {"text": "is", "start": 403, "end": 405, "id": 78, "annotation": null}, {"text": "observed", "start": 406, "end": 414, "id": 79, "annotation": null}, {"text": "that", "start": 415, "end": 419, "id": 80, "annotation": null}, {"text": ",", "start": 420, "end": 421, "id": 81, "annotation": null}, {"text": "the", "start": 422, "end": 425, "id": 82, "annotation": null}, {"text": "lower", "start": 426, "end": 431, "id": 83, "annotation": null}, {"text": "concentration", "start": 432, "end": 445, "id": 84, "annotation": null}, {"text": "of", "start": 446, "end": 448, "id": 85, "annotation": null}, {"text": "TiO2", "start": 449, "end": 453, "id": 86, "annotation": "DOPANT"}, {"text": "leads", "start": 454, "end": 459, "id": 87, "annotation": null}, {"text": "to", "start": 460, "end": 462, "id": 88, "annotation": null}, {"text": "the", "start": 463, "end": 466, "id": 89, "annotation": null}, {"text": "formation", "start": 467, "end": 476, "id": 90, "annotation": null}, {"text": "of", "start": 477, "end": 479, "id": 91, "annotation": null}, {"text": "mixed", "start": 480, "end": 485, "id": 92, "annotation": null}, {"text": "phase", "start": 486, "end": 491, "id": 93, "annotation": null}, {"text": ".", "start": 492, "end": 493, "id": 94, "annotation": null}], [{"text": "The", "start": 494, "end": 497, "id": 95, "annotation": null}, {"text": "x=0.15", "start": 498, "end": 504, "id": 96, "annotation": "DOPMODQ"}, {"text": "and", "start": 505, "end": 508, "id": 97, "annotation": null}, {"text": "x=0.20", "start": 509, "end": 515, "id": 98, "annotation": "DOPMODQ"}, {"text": "samples", "start": 516, "end": 523, "id": 99, "annotation": null}, {"text": "exhibit", "start": 524, "end": 531, "id": 100, "annotation": null}, {"text": "regular", "start": 532, "end": 539, "id": 101, "annotation": null}, {"text": "and", "start": 540, "end": 543, "id": 102, "annotation": null}, {"text": "uniform", "start": 544, "end": 551, "id": 103, "annotation": null}, {"text": "distribution", "start": 552, "end": 564, "id": 104, "annotation": null}, {"text": "of", "start": 565, "end": 567, "id": 105, "annotation": null}, {"text": "the", "start": 568, "end": 571, "id": 106, "annotation": null}, {"text": "grains", "start": 572, "end": 578, "id": 107, "annotation": null}, {"text": "as", "start": 579, "end": 581, "id": 108, "annotation": null}, {"text": "compared", "start": 582, "end": 590, "id": 109, "annotation": null}, {"text": "to", "start": 591, "end": 593, "id": 110, "annotation": null}, {"text": "x=0.10", "start": 594, "end": 600, "id": 111, "annotation": "DOPMODQ"}, {"text": "sample", "start": 601, "end": 607, "id": 112, "annotation": null}, {"text": ".", "start": 608, "end": 609, "id": 113, "annotation": null}], [{"text": "The", "start": 610, "end": 613, "id": 114, "annotation": null}, {"text": "highest", "start": 614, "end": 621, "id": 115, "annotation": null}, {"text": "conductivity", "start": 622, "end": 634, "id": 116, "annotation": null}, {"text": "is", "start": 635, "end": 637, "id": 117, "annotation": null}, {"text": "observed", "start": 638, "end": 646, "id": 118, "annotation": null}, {"text": "for", "start": 647, "end": 650, "id": 119, "annotation": null}, {"text": "x=0.15", "start": 651, "end": 657, "id": 120, "annotation": "DOPMODQ"}, {"text": "specimen", "start": 658, "end": 666, "id": 121, "annotation": null}, {"text": ",", "start": 667, "end": 668, "id": 122, "annotation": null}, {"text": "e.g.", "start": 669, "end": 673, "id": 123, "annotation": null}, {"text": ",", "start": 674, "end": 675, "id": 124, "annotation": null}, {"text": "9\u00d710\u22127Scm\u22121", "start": 676, "end": 687, "id": 125, "annotation": null}, {"text": ".", "start": 688, "end": 689, "id": 126, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "In the present study, the effect of TiO2 doping on (1\u2212x) Bi2O3 (x)TiO2 (x=0.05, 0.10, 0.15, 0.20) materials is investigated using X-ray diffraction (XRD), differential thermal analysis (DTA), ac conductivity, scanning electron microscopy (SEM) and energy dispersive spectroscopy (EDS). XRD results show the formation of single phase Bi12TiO20 at x\u22650.15 concentration of TiO2. It is observed that, the lower concentration of TiO2 leads to the formation of mixed phase. The x=0.15 and x=0.20 samples exhibit regular and uniform distribution of the grains as compared to x=0.10 sample. The highest conductivity is observed for x=0.15 specimen, e.g., 9\u00d710\u22127Scm\u22121.", "meta": {"doi": "10.1016/j.ceramint.2011.10.043"}, "_input_hash": 468711084, "_task_hash": -1987035505, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "the", "start": 3, "end": 6, "id": 1, "annotation": null}, {"text": "present", "start": 7, "end": 14, "id": 2, "annotation": null}, {"text": "study", "start": 15, "end": 20, "id": 3, "annotation": null}, {"text": ",", "start": 21, "end": 22, "id": 4, "annotation": null}, {"text": "the", "start": 23, "end": 26, "id": 5, "annotation": null}, {"text": "effect", "start": 27, "end": 33, "id": 6, "annotation": null}, {"text": "of", "start": 34, "end": 36, "id": 7, "annotation": null}, {"text": "TiO2", "start": 37, "end": 41, "id": 8, "annotation": "DOPANT"}, {"text": "doping", "start": 42, "end": 48, "id": 9, "annotation": null}, {"text": "on", "start": 49, "end": 51, "id": 10, "annotation": null}, {"text": "(", "start": 52, "end": 53, "id": 11, "annotation": "BASEMAT"}, {"text": "1\u2212x", "start": 54, "end": 57, "id": 12, "annotation": "BASEMAT"}, {"text": ")", "start": 58, "end": 59, "id": 13, "annotation": "BASEMAT"}, {"text": "Bi2O3", "start": 60, "end": 65, "id": 14, "annotation": "BASEMAT"}, {"text": "(", "start": 66, "end": 67, "id": 15, "annotation": "BASEMAT"}, {"text": "x)TiO2", "start": 68, "end": 74, "id": 16, "annotation": "BASEMAT"}, {"text": "(", "start": 75, "end": 76, "id": 17, "annotation": null}, {"text": "x=0.05", "start": 77, "end": 83, "id": 18, "annotation": "DOPMODQ"}, {"text": ",", "start": 84, "end": 85, "id": 19, "annotation": "DOPMODQ"}, {"text": "0.10", "start": 86, "end": 90, "id": 20, "annotation": "DOPMODQ"}, {"text": ",", "start": 91, "end": 92, "id": 21, "annotation": "DOPMODQ"}, {"text": "0.15", "start": 93, "end": 97, "id": 22, "annotation": "DOPMODQ"}, {"text": ",", "start": 98, "end": 99, "id": 23, "annotation": "DOPMODQ"}, {"text": "0.20", "start": 100, "end": 104, "id": 24, "annotation": "DOPMODQ"}, {"text": ")", "start": 105, "end": 106, "id": 25, "annotation": null}, {"text": "materials", "start": 107, "end": 116, "id": 26, "annotation": null}, {"text": "is", "start": 117, "end": 119, "id": 27, "annotation": null}, {"text": "investigated", "start": 120, "end": 132, "id": 28, "annotation": null}, {"text": "using", "start": 133, "end": 138, "id": 29, "annotation": null}, {"text": "X", "start": 139, "end": 140, "id": 30, "annotation": null}, {"text": "-", "start": 141, "end": 142, "id": 31, "annotation": null}, {"text": "ray", "start": 143, "end": 146, "id": 32, "annotation": null}, {"text": "diffraction", "start": 147, "end": 158, "id": 33, "annotation": null}, {"text": "(", "start": 159, "end": 160, "id": 34, "annotation": null}, {"text": "XRD", "start": 161, "end": 164, "id": 35, "annotation": null}, {"text": ")", "start": 165, "end": 166, "id": 36, "annotation": null}, {"text": ",", "start": 167, "end": 168, "id": 37, "annotation": null}, {"text": "differential", "start": 169, "end": 181, "id": 38, "annotation": null}, {"text": "thermal", "start": 182, "end": 189, "id": 39, "annotation": null}, {"text": "analysis", "start": 190, "end": 198, "id": 40, "annotation": null}, {"text": "(", "start": 199, "end": 200, "id": 41, "annotation": null}, {"text": "DTA", "start": 201, "end": 204, "id": 42, "annotation": null}, {"text": ")", "start": 205, "end": 206, "id": 43, "annotation": null}, {"text": ",", "start": 207, "end": 208, "id": 44, "annotation": null}, {"text": "ac", "start": 209, "end": 211, "id": 45, "annotation": null}, {"text": "conductivity", "start": 212, "end": 224, "id": 46, "annotation": null}, {"text": ",", "start": 225, "end": 226, "id": 47, "annotation": null}, {"text": "scanning", "start": 227, "end": 235, "id": 48, "annotation": null}, {"text": "electron", "start": 236, "end": 244, "id": 49, "annotation": null}, {"text": "microscopy", "start": 245, "end": 255, "id": 50, "annotation": null}, {"text": "(", "start": 256, "end": 257, "id": 51, "annotation": null}, {"text": "SEM", "start": 258, "end": 261, "id": 52, "annotation": null}, {"text": ")", "start": 262, "end": 263, "id": 53, "annotation": null}, {"text": "and", "start": 264, "end": 267, "id": 54, "annotation": null}, {"text": "energy", "start": 268, "end": 274, "id": 55, "annotation": null}, {"text": "dispersive", "start": 275, "end": 285, "id": 56, "annotation": null}, {"text": "spectroscopy", "start": 286, "end": 298, "id": 57, "annotation": null}, {"text": "(", "start": 299, "end": 300, "id": 58, "annotation": null}, {"text": "EDS", "start": 301, "end": 304, "id": 59, "annotation": null}, {"text": ")", "start": 305, "end": 306, "id": 60, "annotation": null}, {"text": ".", "start": 307, "end": 308, "id": 61, "annotation": null}], [{"text": "XRD", "start": 309, "end": 312, "id": 62, "annotation": null}, {"text": "results", "start": 313, "end": 320, "id": 63, "annotation": null}, {"text": "show", "start": 321, "end": 325, "id": 64, "annotation": null}, {"text": "the", "start": 326, "end": 329, "id": 65, "annotation": null}, {"text": "formation", "start": 330, "end": 339, "id": 66, "annotation": null}, {"text": "of", "start": 340, "end": 342, "id": 67, "annotation": null}, {"text": "single", "start": 343, "end": 349, "id": 68, "annotation": null}, {"text": "phase", "start": 350, "end": 355, "id": 69, "annotation": null}, {"text": "Bi12TiO20", "start": 356, "end": 365, "id": 70, "annotation": null}, {"text": "at", "start": 366, "end": 368, "id": 71, "annotation": null}, {"text": "x\u22650.15", "start": 369, "end": 375, "id": 72, "annotation": "DOPMODQ"}, {"text": "concentration", "start": 376, "end": 389, "id": 73, "annotation": null}, {"text": "of", "start": 390, "end": 392, "id": 74, "annotation": null}, {"text": "TiO2", "start": 393, "end": 397, "id": 75, "annotation": "DOPANT"}, {"text": ".", "start": 398, "end": 399, "id": 76, "annotation": null}], [{"text": "It", "start": 400, "end": 402, "id": 77, "annotation": null}, {"text": "is", "start": 403, "end": 405, "id": 78, "annotation": null}, {"text": "observed", "start": 406, "end": 414, "id": 79, "annotation": null}, {"text": "that", "start": 415, "end": 419, "id": 80, "annotation": null}, {"text": ",", "start": 420, "end": 421, "id": 81, "annotation": null}, {"text": "the", "start": 422, "end": 425, "id": 82, "annotation": null}, {"text": "lower", "start": 426, "end": 431, "id": 83, "annotation": null}, {"text": "concentration", "start": 432, "end": 445, "id": 84, "annotation": null}, {"text": "of", "start": 446, "end": 448, "id": 85, "annotation": null}, {"text": "TiO2", "start": 449, "end": 453, "id": 86, "annotation": "DOPANT"}, {"text": "leads", "start": 454, "end": 459, "id": 87, "annotation": null}, {"text": "to", "start": 460, "end": 462, "id": 88, "annotation": null}, {"text": "the", "start": 463, "end": 466, "id": 89, "annotation": null}, {"text": "formation", "start": 467, "end": 476, "id": 90, "annotation": null}, {"text": "of", "start": 477, "end": 479, "id": 91, "annotation": null}, {"text": "mixed", "start": 480, "end": 485, "id": 92, "annotation": null}, {"text": "phase", "start": 486, "end": 491, "id": 93, "annotation": null}, {"text": ".", "start": 492, "end": 493, "id": 94, "annotation": null}], [{"text": "The", "start": 494, "end": 497, "id": 95, "annotation": null}, {"text": "x=0.15", "start": 498, "end": 504, "id": 96, "annotation": "DOPMODQ"}, {"text": "and", "start": 505, "end": 508, "id": 97, "annotation": null}, {"text": "x=0.20", "start": 509, "end": 515, "id": 98, "annotation": "DOPMODQ"}, {"text": "samples", "start": 516, "end": 523, "id": 99, "annotation": null}, {"text": "exhibit", "start": 524, "end": 531, "id": 100, "annotation": null}, {"text": "regular", "start": 532, "end": 539, "id": 101, "annotation": null}, {"text": "and", "start": 540, "end": 543, "id": 102, "annotation": null}, {"text": "uniform", "start": 544, "end": 551, "id": 103, "annotation": null}, {"text": "distribution", "start": 552, "end": 564, "id": 104, "annotation": null}, {"text": "of", "start": 565, "end": 567, "id": 105, "annotation": null}, {"text": "the", "start": 568, "end": 571, "id": 106, "annotation": null}, {"text": "grains", "start": 572, "end": 578, "id": 107, "annotation": null}, {"text": "as", "start": 579, "end": 581, "id": 108, "annotation": null}, {"text": "compared", "start": 582, "end": 590, "id": 109, "annotation": null}, {"text": "to", "start": 591, "end": 593, "id": 110, "annotation": null}, {"text": "x=0.10", "start": 594, "end": 600, "id": 111, "annotation": "DOPMODQ"}, {"text": "sample", "start": 601, "end": 607, "id": 112, "annotation": null}, {"text": ".", "start": 608, "end": 609, "id": 113, "annotation": null}], [{"text": "The", "start": 610, "end": 613, "id": 114, "annotation": null}, {"text": "highest", "start": 614, "end": 621, "id": 115, "annotation": null}, {"text": "conductivity", "start": 622, "end": 634, "id": 116, "annotation": null}, {"text": "is", "start": 635, "end": 637, "id": 117, "annotation": null}, {"text": "observed", "start": 638, "end": 646, "id": 118, "annotation": null}, {"text": "for", "start": 647, "end": 650, "id": 119, "annotation": null}, {"text": "x=0.15", "start": 651, "end": 657, "id": 120, "annotation": "DOPMODQ"}, {"text": "specimen", "start": 658, "end": 666, "id": 121, "annotation": null}, {"text": ",", "start": 667, "end": 668, "id": 122, "annotation": null}, {"text": "e.g.", "start": 669, "end": 673, "id": 123, "annotation": null}, {"text": ",", "start": 674, "end": 675, "id": 124, "annotation": null}, {"text": "9\u00d710\u22127Scm\u22121", "start": 676, "end": 687, "id": 125, "annotation": null}, {"text": ".", "start": 688, "end": 689, "id": 126, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The optical and electrical properties of graphene doping organic photovoltaics devices are investigated. The root-mean-square roughness, photoluminescence and optical absorption increase with increasing graphene content. Graphene also improves the open-circuit voltage and short-circuit current density. The best performance was obtained with 3 wt% graphene concent, with an open-circuit voltage of 0.62 V, a short-circuit current density value of 6.138 mA cm -2 , a fill factor of 61.912 %, and a power conversion efficiency of 2.35 %.", "meta": {"doi": "10.1007/s00542-013-1817-9"}, "_input_hash": 1247273194, "_task_hash": -1836979574, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "optical", "start": 4, "end": 11, "id": 1, "annotation": null}, {"text": "and", "start": 12, "end": 15, "id": 2, "annotation": null}, {"text": "electrical", "start": 16, "end": 26, "id": 3, "annotation": null}, {"text": "properties", "start": 27, "end": 37, "id": 4, "annotation": null}, {"text": "of", "start": 38, "end": 40, "id": 5, "annotation": null}, {"text": "graphene", "start": 41, "end": 49, "id": 6, "annotation": "DOPANT"}, {"text": "doping", "start": 50, "end": 56, "id": 7, "annotation": null}, {"text": "organic", "start": 57, "end": 64, "id": 8, "annotation": null}, {"text": "photovoltaics", "start": 65, "end": 78, "id": 9, "annotation": "BASEMAT"}, {"text": "devices", "start": 79, "end": 86, "id": 10, "annotation": "BASEMAT"}, {"text": "are", "start": 87, "end": 90, "id": 11, "annotation": null}, {"text": "investigated", "start": 91, "end": 103, "id": 12, "annotation": null}, {"text": ".", "start": 104, "end": 105, "id": 13, "annotation": null}], [{"text": "The", "start": 106, "end": 109, "id": 14, "annotation": null}, {"text": "root", "start": 110, "end": 114, "id": 15, "annotation": null}, {"text": "-", "start": 115, "end": 116, "id": 16, "annotation": null}, {"text": "mean", "start": 117, "end": 121, "id": 17, "annotation": null}, {"text": "-", "start": 122, "end": 123, "id": 18, "annotation": null}, {"text": "square", "start": 124, "end": 130, "id": 19, "annotation": null}, {"text": "roughness", "start": 131, "end": 140, "id": 20, "annotation": null}, {"text": ",", "start": 141, "end": 142, "id": 21, "annotation": null}, {"text": "photoluminescence", "start": 143, "end": 160, "id": 22, "annotation": null}, {"text": "and", "start": 161, "end": 164, "id": 23, "annotation": null}, {"text": "optical", "start": 165, "end": 172, "id": 24, "annotation": null}, {"text": "absorption", "start": 173, "end": 183, "id": 25, "annotation": null}, {"text": "increase", "start": 184, "end": 192, "id": 26, "annotation": null}, {"text": "with", "start": 193, "end": 197, "id": 27, "annotation": null}, {"text": "increasing", "start": 198, "end": 208, "id": 28, "annotation": null}, {"text": "graphene", "start": 209, "end": 217, "id": 29, "annotation": null}, {"text": "content", "start": 218, "end": 225, "id": 30, "annotation": null}, {"text": ".", "start": 226, "end": 227, "id": 31, "annotation": null}], [{"text": "Graphene", "start": 228, "end": 236, "id": 32, "annotation": null}, {"text": "also", "start": 237, "end": 241, "id": 33, "annotation": null}, {"text": "improves", "start": 242, "end": 250, "id": 34, "annotation": null}, {"text": "the", "start": 251, "end": 254, "id": 35, "annotation": null}, {"text": "open", "start": 255, "end": 259, "id": 36, "annotation": null}, {"text": "-", "start": 260, "end": 261, "id": 37, "annotation": null}, {"text": "circuit", "start": 262, "end": 269, "id": 38, "annotation": null}, {"text": "voltage", "start": 270, "end": 277, "id": 39, "annotation": null}, {"text": "and", "start": 278, "end": 281, "id": 40, "annotation": null}, {"text": "short", "start": 282, "end": 287, "id": 41, "annotation": null}, {"text": "-", "start": 288, "end": 289, "id": 42, "annotation": null}, {"text": "circuit", "start": 290, "end": 297, "id": 43, "annotation": null}, {"text": "current", "start": 298, "end": 305, "id": 44, "annotation": null}, {"text": "density", "start": 306, "end": 313, "id": 45, "annotation": null}, {"text": ".", "start": 314, "end": 315, "id": 46, "annotation": null}], [{"text": "The", "start": 316, "end": 319, "id": 47, "annotation": null}, {"text": "best", "start": 320, "end": 324, "id": 48, "annotation": null}, {"text": "performance", "start": 325, "end": 336, "id": 49, "annotation": null}, {"text": "was", "start": 337, "end": 340, "id": 50, "annotation": null}, {"text": "obtained", "start": 341, "end": 349, "id": 51, "annotation": null}, {"text": "with", "start": 350, "end": 354, "id": 52, "annotation": null}, {"text": "3", "start": 355, "end": 356, "id": 53, "annotation": "DOPMODQ"}, {"text": "wt%", "start": 357, "end": 360, "id": 54, "annotation": "DOPMODQ"}, {"text": "graphene", "start": 361, "end": 369, "id": 55, "annotation": "DOPANT"}, {"text": "concent", "start": 370, "end": 377, "id": 56, "annotation": null}, {"text": ",", "start": 378, "end": 379, "id": 57, "annotation": null}, {"text": "with", "start": 380, "end": 384, "id": 58, "annotation": null}, {"text": "an", "start": 385, "end": 387, "id": 59, "annotation": null}, {"text": "open", "start": 388, "end": 392, "id": 60, "annotation": null}, {"text": "-", "start": 393, "end": 394, "id": 61, "annotation": null}, {"text": "circuit", "start": 395, "end": 402, "id": 62, "annotation": null}, {"text": "voltage", "start": 403, "end": 410, "id": 63, "annotation": null}, {"text": "of", "start": 411, "end": 413, "id": 64, "annotation": null}, {"text": "0.62", "start": 414, "end": 418, "id": 65, "annotation": null}, {"text": "V", "start": 419, "end": 420, "id": 66, "annotation": null}, {"text": ",", "start": 421, "end": 422, "id": 67, "annotation": null}, {"text": "a", "start": 423, "end": 424, "id": 68, "annotation": null}, {"text": "short", "start": 425, "end": 430, "id": 69, "annotation": null}, {"text": "-", "start": 431, "end": 432, "id": 70, "annotation": null}, {"text": "circuit", "start": 433, "end": 440, "id": 71, "annotation": null}, {"text": "current", "start": 441, "end": 448, "id": 72, "annotation": null}, {"text": "density", "start": 449, "end": 456, "id": 73, "annotation": null}, {"text": "value", "start": 457, "end": 462, "id": 74, "annotation": null}, {"text": "of", "start": 463, "end": 465, "id": 75, "annotation": null}, {"text": "6.138", "start": 466, "end": 471, "id": 76, "annotation": null}, {"text": "mA", "start": 472, "end": 474, "id": 77, "annotation": null}, {"text": "cm", "start": 475, "end": 477, "id": 78, "annotation": null}, {"text": "-2", "start": 478, "end": 480, "id": 79, "annotation": null}, {"text": ",", "start": 481, "end": 482, "id": 80, "annotation": null}, {"text": "a", "start": 483, "end": 484, "id": 81, "annotation": null}, {"text": "fill", "start": 485, "end": 489, "id": 82, "annotation": null}, {"text": "factor", "start": 490, "end": 496, "id": 83, "annotation": null}, {"text": "of", "start": 497, "end": 499, "id": 84, "annotation": null}, {"text": "61.912", "start": 500, "end": 506, "id": 85, "annotation": null}, {"text": "%", "start": 507, "end": 508, "id": 86, "annotation": null}, {"text": ",", "start": 509, "end": 510, "id": 87, "annotation": null}, {"text": "and", "start": 511, "end": 514, "id": 88, "annotation": null}, {"text": "a", "start": 515, "end": 516, "id": 89, "annotation": null}, {"text": "power", "start": 517, "end": 522, "id": 90, "annotation": null}, {"text": "conversion", "start": 523, "end": 533, "id": 91, "annotation": null}, {"text": "efficiency", "start": 534, "end": 544, "id": 92, "annotation": null}, {"text": "of", "start": 545, "end": 547, "id": 93, "annotation": null}, {"text": "2.35", "start": 548, "end": 552, "id": 94, "annotation": null}, {"text": "%", "start": 553, "end": 554, "id": 95, "annotation": null}, {"text": ".", "start": 555, "end": 556, "id": 96, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Chromium nitride (CrN)-based materials display broad applications as protective coatings for automotive, power generation and aerospace industries, in which surfaces are often subjected to wear and corrosion. By using an appropriate choice of dopant, one can further increase the mechanical hardness, corrosion and oxidation resistance of these coatings. In order to identify the effect of dopants on the structural evolution and surface electronic properties of CrN coatings, Cr1-z(Al/Si)zN coatings were prepared by magnetron sputtering and then characterized via X-ray diffraction (XRD) and soft X-ray synchrotron radiation Near-edge X-ray Absorption Fine Structure (NEXAFS) studies around N K-edge. Higher degree of crystallinity of the coatings were identified through XRD studies. The bonding structure, of the doped CrN coating, was analyzed by Near-edge X-ray Absorption Fine Structure (NEXAFS) measurements performed around the N K-edge (390\u2013450 eV) in the Auger electron yield (AEY) and total fluorescence yield (TFY) modes. NEXAFS analysis revealed Cr3d(Al3p/Si3p)N2p hybridizations in Cr1-z(Al/Si)zN compositions and complex structure splitting via spin\u2013orbit interaction of the Cr3d levels.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Chromium", "start": 0, "end": 8, "annotation": null}, {"text": "nitride", "start": 9, "end": 16, "annotation": null}, {"text": "(CrN)-based", "start": 17, "end": 28, "annotation": null}, {"text": "materials", "start": 29, "end": 38, "annotation": null}, {"text": "display", "start": 39, "end": 46, "annotation": null}, {"text": "broad", "start": 47, "end": 52, "annotation": null}, {"text": "applications", "start": 53, "end": 65, "annotation": null}, {"text": "as", "start": 66, "end": 68, "annotation": null}, {"text": "protective", "start": 69, "end": 79, "annotation": null}, {"text": "coatings", "start": 80, "end": 88, "annotation": null}, {"text": "for", "start": 89, "end": 92, "annotation": null}, {"text": "automotive", "start": 93, "end": 103, "annotation": null}, {"text": ",", "start": 103, "end": 104, "annotation": null}, {"text": "power", "start": 105, "end": 110, "annotation": null}, {"text": "generation", "start": 111, "end": 121, "annotation": null}, {"text": "and", "start": 122, "end": 125, "annotation": null}, {"text": "aerospace", "start": 126, "end": 135, "annotation": null}, {"text": "industries", "start": 136, "end": 146, "annotation": null}, {"text": ",", "start": 146, "end": 147, "annotation": null}, {"text": "in", "start": 148, "end": 150, "annotation": null}, {"text": "which", "start": 151, "end": 156, "annotation": null}, {"text": "surfaces", "start": 157, "end": 165, "annotation": null}, {"text": "are", "start": 166, "end": 169, "annotation": null}, {"text": "often", "start": 170, "end": 175, "annotation": null}, {"text": "subjected", "start": 176, "end": 185, "annotation": null}, {"text": "to", "start": 186, "end": 188, "annotation": null}, {"text": "wear", "start": 189, "end": 193, "annotation": null}, {"text": "and", "start": 194, "end": 197, "annotation": null}, {"text": "corrosion", "start": 198, "end": 207, "annotation": null}, {"text": ".", "start": 207, "end": 208, "annotation": null}], [{"text": "By", "start": 209, "end": 211, "annotation": null}, {"text": "using", "start": 212, "end": 217, "annotation": null}, {"text": "an", "start": 218, "end": 220, "annotation": null}, {"text": "appropriate", "start": 221, "end": 232, "annotation": null}, {"text": "choice", "start": 233, "end": 239, "annotation": null}, {"text": "of", "start": 240, "end": 242, "annotation": null}, {"text": "dopant", "start": 243, "end": 249, "annotation": null}, {"text": ",", "start": 249, "end": 250, "annotation": null}, {"text": "one", "start": 251, "end": 254, "annotation": null}, {"text": "can", "start": 255, "end": 258, "annotation": null}, {"text": "further", "start": 259, "end": 266, "annotation": null}, {"text": "increase", "start": 267, "end": 275, "annotation": null}, {"text": "the", "start": 276, "end": 279, "annotation": null}, {"text": "mechanical", "start": 280, "end": 290, "annotation": null}, {"text": "hardness", "start": 291, "end": 299, "annotation": null}, {"text": ",", "start": 299, "end": 300, "annotation": null}, {"text": "corrosion", "start": 301, "end": 310, "annotation": null}, {"text": "and", "start": 311, "end": 314, "annotation": null}, {"text": "oxidation", "start": 315, "end": 324, "annotation": null}, {"text": "resistance", "start": 325, "end": 335, "annotation": null}, {"text": "of", "start": 336, "end": 338, "annotation": null}, {"text": "these", "start": 339, "end": 344, "annotation": null}, {"text": "coatings", "start": 345, "end": 353, "annotation": null}, {"text": ".", "start": 353, "end": 354, "annotation": null}], [{"text": "In", "start": 355, "end": 357, "annotation": null}, {"text": "order", "start": 358, "end": 363, "annotation": null}, {"text": "to", "start": 364, "end": 366, "annotation": null}, {"text": "identify", "start": 367, "end": 375, "annotation": null}, {"text": "the", "start": 376, "end": 379, "annotation": null}, {"text": "effect", "start": 380, "end": 386, "annotation": null}, {"text": "of", "start": 387, "end": 389, "annotation": null}, {"text": "dopants", "start": 390, "end": 397, "annotation": "DOPANT"}, {"text": "on", "start": 398, "end": 400, "annotation": null}, {"text": "the", "start": 401, "end": 404, "annotation": null}, {"text": "structural", "start": 405, "end": 415, "annotation": null}, {"text": "evolution", "start": 416, "end": 425, "annotation": null}, {"text": "and", "start": 426, "end": 429, "annotation": null}, {"text": "surface", "start": 430, "end": 437, "annotation": null}, {"text": "electronic", "start": 438, "end": 448, "annotation": null}, {"text": "properties", "start": 449, "end": 459, "annotation": null}, {"text": "of", "start": 460, "end": 462, "annotation": null}, {"text": "CrN", "start": 463, "end": 466, "annotation": "BASEMAT"}, {"text": "coatings", "start": 467, "end": 475, "annotation": null}, {"text": ",", "start": 475, "end": 476, "annotation": null}, {"text": "Cr1", "start": 477, "end": 480, "annotation": null}, {"text": "-", "start": 480, "end": 481, "annotation": null}, {"text": "z(Al", "start": 481, "end": 485, "annotation": null}, {"text": "/", "start": 485, "end": 486, "annotation": null}, {"text": "Si)zN", "start": 486, "end": 491, "annotation": null}, {"text": "coatings", "start": 492, "end": 500, "annotation": null}, {"text": "were", "start": 501, "end": 505, "annotation": null}, {"text": "prepared", "start": 506, "end": 514, "annotation": null}, {"text": "by", "start": 515, "end": 517, "annotation": null}, {"text": "magnetron", "start": 518, "end": 527, "annotation": null}, {"text": "sputtering", "start": 528, "end": 538, "annotation": null}, {"text": "and", "start": 539, "end": 542, "annotation": null}, {"text": "then", "start": 543, "end": 547, "annotation": null}, {"text": "characterized", "start": 548, "end": 561, "annotation": null}, {"text": "via", "start": 562, "end": 565, "annotation": null}, {"text": "X-ray", "start": 566, "end": 571, "annotation": null}, {"text": "diffraction", "start": 572, "end": 583, "annotation": null}, {"text": "(", "start": 584, "end": 585, "annotation": null}, {"text": "XRD", "start": 585, "end": 588, "annotation": null}, {"text": ")", "start": 588, "end": 589, "annotation": null}, {"text": "and", "start": 590, "end": 593, "annotation": null}, {"text": "soft", "start": 594, "end": 598, "annotation": null}, {"text": "X-ray", "start": 599, "end": 604, "annotation": null}, {"text": "synchrotron", "start": 605, "end": 616, "annotation": null}, {"text": "radiation", "start": 617, "end": 626, "annotation": null}, {"text": "Near", "start": 627, "end": 631, "annotation": null}, {"text": "-", "start": 631, "end": 632, "annotation": null}, {"text": "edge", "start": 632, "end": 636, "annotation": null}, {"text": "X-ray", "start": 637, "end": 642, "annotation": null}, {"text": "Absorption", "start": 643, "end": 653, "annotation": null}, {"text": "Fine", "start": 654, "end": 658, "annotation": null}, {"text": "Structure", "start": 659, "end": 668, "annotation": null}, {"text": "(", "start": 669, "end": 670, "annotation": null}, {"text": "NEXAFS", "start": 670, "end": 676, "annotation": null}, {"text": ")", "start": 676, "end": 677, "annotation": null}, {"text": "studies", "start": 678, "end": 685, "annotation": null}, {"text": "around", "start": 686, "end": 692, "annotation": null}, {"text": "N", "start": 693, "end": 694, "annotation": null}, {"text": "K", "start": 695, "end": 696, "annotation": null}, {"text": "-", "start": 696, "end": 697, "annotation": null}, {"text": "edge", "start": 697, "end": 701, "annotation": null}, {"text": ".", "start": 701, "end": 702, "annotation": null}], [{"text": "Higher", "start": 703, "end": 709, "annotation": null}, {"text": "degree", "start": 710, "end": 716, "annotation": null}, {"text": "of", "start": 717, "end": 719, "annotation": null}, {"text": "crystallinity", "start": 720, "end": 733, "annotation": null}, {"text": "of", "start": 734, "end": 736, "annotation": null}, {"text": "the", "start": 737, "end": 740, "annotation": null}, {"text": "coatings", "start": 741, "end": 749, "annotation": null}, {"text": "were", "start": 750, "end": 754, "annotation": null}, {"text": "identified", "start": 755, "end": 765, "annotation": null}, {"text": "through", "start": 766, "end": 773, "annotation": null}, {"text": "XRD", "start": 774, "end": 777, "annotation": null}, {"text": "studies", "start": 778, "end": 785, "annotation": null}, {"text": ".", "start": 785, "end": 786, "annotation": null}], [{"text": "The", "start": 787, "end": 790, "annotation": null}, {"text": "bonding", "start": 791, "end": 798, "annotation": null}, {"text": "structure", "start": 799, "end": 808, "annotation": null}, {"text": ",", "start": 808, "end": 809, "annotation": null}, {"text": "of", "start": 810, "end": 812, "annotation": null}, {"text": "the", "start": 813, "end": 816, "annotation": null}, {"text": "doped", "start": 817, "end": 822, "annotation": "DOPANT"}, {"text": "CrN", "start": 823, "end": 826, "annotation": "BASEMAT"}, {"text": "coating", "start": 827, "end": 834, "annotation": null}, {"text": ",", "start": 834, "end": 835, "annotation": null}, {"text": "was", "start": 836, "end": 839, "annotation": null}, {"text": "analyzed", "start": 840, "end": 848, "annotation": null}, {"text": "by", "start": 849, "end": 851, "annotation": null}, {"text": "Near", "start": 852, "end": 856, "annotation": null}, {"text": "-", "start": 856, "end": 857, "annotation": null}, {"text": "edge", "start": 857, "end": 861, "annotation": null}, {"text": "X-ray", "start": 862, "end": 867, "annotation": null}, {"text": "Absorption", "start": 868, "end": 878, "annotation": null}, {"text": "Fine", "start": 879, "end": 883, "annotation": null}, {"text": "Structure", "start": 884, "end": 893, "annotation": null}, {"text": "(", "start": 894, "end": 895, "annotation": null}, {"text": "NEXAFS", "start": 895, "end": 901, "annotation": null}, {"text": ")", "start": 901, "end": 902, "annotation": null}, {"text": "measurements", "start": 903, "end": 915, "annotation": null}, {"text": "performed", "start": 916, "end": 925, "annotation": null}, {"text": "around", "start": 926, "end": 932, "annotation": null}, {"text": "the", "start": 933, "end": 936, "annotation": null}, {"text": "N", "start": 937, "end": 938, "annotation": null}, {"text": "K", "start": 939, "end": 940, "annotation": null}, {"text": "-", "start": 940, "end": 941, "annotation": null}, {"text": "edge", "start": 941, "end": 945, "annotation": null}, {"text": "(", "start": 946, "end": 947, "annotation": null}, {"text": "390", "start": 947, "end": 950, "annotation": null}, {"text": "\u2013", "start": 950, "end": 951, "annotation": null}, {"text": "450", "start": 951, "end": 954, "annotation": null}, {"text": "eV", "start": 955, "end": 957, "annotation": null}, {"text": ")", "start": 957, "end": 958, "annotation": null}, {"text": "in", "start": 959, "end": 961, "annotation": null}, {"text": "the", "start": 962, "end": 965, "annotation": null}, {"text": "Auger", "start": 966, "end": 971, "annotation": null}, {"text": "electron", "start": 972, "end": 980, "annotation": null}, {"text": "yield", "start": 981, "end": 986, "annotation": null}, {"text": "(", "start": 987, "end": 988, "annotation": null}, {"text": "AEY", "start": 988, "end": 991, "annotation": null}, {"text": ")", "start": 991, "end": 992, "annotation": null}, {"text": "and", "start": 993, "end": 996, "annotation": null}, {"text": "total", "start": 997, "end": 1002, "annotation": null}, {"text": "fluorescence", "start": 1003, "end": 1015, "annotation": null}, {"text": "yield", "start": 1016, "end": 1021, "annotation": null}, {"text": "(", "start": 1022, "end": 1023, "annotation": null}, {"text": "TFY", "start": 1023, "end": 1026, "annotation": null}, {"text": ")", "start": 1026, "end": 1027, "annotation": null}, {"text": "modes", "start": 1028, "end": 1033, "annotation": null}, {"text": ".", "start": 1033, "end": 1034, "annotation": null}], [{"text": "NEXAFS", "start": 1035, "end": 1041, "annotation": null}, {"text": "analysis", "start": 1042, "end": 1050, "annotation": null}, {"text": "revealed", "start": 1051, "end": 1059, "annotation": null}, {"text": "Cr3d(Al3p", "start": 1060, "end": 1069, "annotation": null}, {"text": "/", "start": 1069, "end": 1070, "annotation": null}, {"text": "Si3p)N2p", "start": 1070, "end": 1078, "annotation": null}, {"text": "hybridizations", "start": 1079, "end": 1093, "annotation": null}, {"text": "in", "start": 1094, "end": 1096, "annotation": null}, {"text": "Cr1", "start": 1097, "end": 1100, "annotation": null}, {"text": "-", "start": 1100, "end": 1101, "annotation": null}, {"text": "z(Al", "start": 1101, "end": 1105, "annotation": null}, {"text": "/", "start": 1105, "end": 1106, "annotation": null}, {"text": "Si)zN", "start": 1106, "end": 1111, "annotation": null}, {"text": "compositions", "start": 1112, "end": 1124, "annotation": null}, {"text": "and", "start": 1125, "end": 1128, "annotation": null}, {"text": "complex", "start": 1129, "end": 1136, "annotation": null}, {"text": "structure", "start": 1137, "end": 1146, "annotation": null}, {"text": "splitting", "start": 1147, "end": 1156, "annotation": null}, {"text": "via", "start": 1157, "end": 1160, "annotation": null}, {"text": "spin", "start": 1161, "end": 1165, "annotation": null}, {"text": "\u2013", "start": 1165, "end": 1166, "annotation": null}, {"text": "orbit", "start": 1166, "end": 1171, "annotation": null}, {"text": "interaction", "start": 1172, "end": 1183, "annotation": null}, {"text": "of", "start": 1184, "end": 1186, "annotation": null}, {"text": "the", "start": 1187, "end": 1190, "annotation": null}, {"text": "Cr3d", "start": 1191, "end": 1195, "annotation": null}, {"text": "levels", "start": 1196, "end": 1202, "annotation": null}, {"text": ".", "start": 1202, "end": 1203, "annotation": null}]]} -{"remark": "doping_annt1", "text": "The systems Y1-xPrxBa2Cu3Oz with x=0 to 1 and YBa2(Cu1-yMy)3Oz, MFe and Co, with y=0 to 0.26, and z=6 and 7, doped with 57Fe, have been studied by dc magnetometry to determine the superconducting phase transition temperature and by 57Fe M\u00f6ssbauer spectroscopy to determine the antiferromagnetic phase transition temperature TN of the Cu(2) site. In those cases where substitution is made out of the CuO2 planes, for z=7, Tc is reduced with increasing the dopant concentration. Antiferromagnetism is found at concentrations where the superconductivity disappears, which means that the materials exhibit either superconductivity or antiferromagnetic order, depending on composition. The phase diagrams obtained are very similar to the well-known oxygen content dependence phase diagram. For z=6, TN changes very little with x or y. There is no conclusive evidence for overlap of superconductivity and antiferromagnetism. For substitution of Zn in the CuO2 plane (Zn) a different behavior is observed. Here the magnetic order is never found in oxygen rich samples, and appears in oxygen poor samples only for y<0.08. \u00a9 1990.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "systems", "start": 4, "end": 11, "annotation": null}, {"text": "Y1-xPrxBa2Cu3Oz", "start": 12, "end": 27, "annotation": "BASEMAT"}, {"text": "with", "start": 28, "end": 32, "annotation": "BASEMAT"}, {"text": "x", "start": 33, "end": 34, "annotation": "BASEMAT"}, {"text": "=", "start": 34, "end": 35, "annotation": "BASEMAT"}, {"text": "0", "start": 35, "end": 36, "annotation": "BASEMAT"}, {"text": "to", "start": 37, "end": 39, "annotation": "BASEMAT"}, {"text": "1", "start": 40, "end": 41, "annotation": "BASEMAT"}, {"text": "and", "start": 42, "end": 45, "annotation": null}, {"text": "YBa2(Cu1-yMy)3Oz", "start": 46, "end": 62, "annotation": "BASEMAT"}, {"text": ",", "start": 62, "end": 63, "annotation": "BASEMAT"}, {"text": "MFe", "start": 64, "end": 67, "annotation": "BASEMAT"}, {"text": "and", "start": 68, "end": 71, "annotation": "BASEMAT"}, {"text": "Co", "start": 72, "end": 74, "annotation": "BASEMAT"}, {"text": ",", "start": 74, "end": 75, "annotation": "BASEMAT"}, {"text": "with", "start": 76, "end": 80, "annotation": "BASEMAT"}, {"text": "y", "start": 81, "end": 82, "annotation": "BASEMAT"}, {"text": "=", "start": 82, "end": 83, "annotation": "BASEMAT"}, {"text": "0", "start": 83, "end": 84, "annotation": "BASEMAT"}, {"text": "to", "start": 85, "end": 87, "annotation": "BASEMAT"}, {"text": "0.26", "start": 88, "end": 92, "annotation": "BASEMAT"}, {"text": ",", "start": 92, "end": 93, "annotation": "BASEMAT"}, {"text": "and", "start": 94, "end": 97, "annotation": "BASEMAT"}, {"text": "z", "start": 98, "end": 99, "annotation": "BASEMAT"}, {"text": "=", "start": 99, "end": 100, "annotation": "BASEMAT"}, {"text": "6", "start": 100, "end": 101, "annotation": "BASEMAT"}, {"text": "and", "start": 102, "end": 105, "annotation": "BASEMAT"}, {"text": "7", "start": 106, "end": 107, "annotation": "BASEMAT"}, {"text": ",", "start": 107, "end": 108, "annotation": null}, {"text": "doped", "start": 109, "end": 114, "annotation": null}, {"text": "with", "start": 115, "end": 119, "annotation": null}, {"text": "57Fe", "start": 120, "end": 124, "annotation": "DOPANT"}, {"text": ",", "start": 124, "end": 125, "annotation": null}, {"text": "have", "start": 126, "end": 130, "annotation": null}, {"text": "been", "start": 131, "end": 135, "annotation": null}, {"text": "studied", "start": 136, "end": 143, "annotation": null}, {"text": "by", "start": 144, "end": 146, "annotation": null}, {"text": "dc", "start": 147, "end": 149, "annotation": null}, {"text": "magnetometry", "start": 150, "end": 162, "annotation": null}, {"text": "to", "start": 163, "end": 165, "annotation": null}, {"text": "determine", "start": 166, "end": 175, "annotation": null}, {"text": "the", "start": 176, "end": 179, "annotation": null}, {"text": "superconducting", "start": 180, "end": 195, "annotation": null}, {"text": "phase", "start": 196, "end": 201, "annotation": null}, {"text": "transition", "start": 202, "end": 212, "annotation": null}, {"text": "temperature", "start": 213, "end": 224, "annotation": null}, {"text": "and", "start": 225, "end": 228, "annotation": null}, {"text": "by", "start": 229, "end": 231, "annotation": null}, {"text": "57Fe", "start": 232, "end": 236, "annotation": null}, {"text": "M\u00f6ssbauer", "start": 237, "end": 246, "annotation": null}, {"text": "spectroscopy", "start": 247, "end": 259, "annotation": null}, {"text": "to", "start": 260, "end": 262, "annotation": null}, {"text": "determine", "start": 263, "end": 272, "annotation": null}, {"text": "the", "start": 273, "end": 276, "annotation": null}, {"text": "antiferromagnetic", "start": 277, "end": 294, "annotation": null}, {"text": "phase", "start": 295, "end": 300, "annotation": null}, {"text": "transition", "start": 301, "end": 311, "annotation": null}, {"text": "temperature", "start": 312, "end": 323, "annotation": null}, {"text": "TN", "start": 324, "end": 326, "annotation": null}, {"text": "of", "start": 327, "end": 329, "annotation": null}, {"text": "the", "start": 330, "end": 333, "annotation": null}, {"text": "Cu(2)", "start": 334, "end": 339, "annotation": null}, {"text": "site", "start": 340, "end": 344, "annotation": null}, {"text": ".", "start": 344, "end": 345, "annotation": null}], [{"text": "In", "start": 346, "end": 348, "annotation": null}, {"text": "those", "start": 349, "end": 354, "annotation": null}, {"text": "cases", "start": 355, "end": 360, "annotation": null}, {"text": "where", "start": 361, "end": 366, "annotation": null}, {"text": "substitution", "start": 367, "end": 379, "annotation": null}, {"text": "is", "start": 380, "end": 382, "annotation": null}, {"text": "made", "start": 383, "end": 387, "annotation": null}, {"text": "out", "start": 388, "end": 391, "annotation": null}, {"text": "of", "start": 392, "end": 394, "annotation": null}, {"text": "the", "start": 395, "end": 398, "annotation": null}, {"text": "CuO2", "start": 399, "end": 403, "annotation": null}, {"text": "planes", "start": 404, "end": 410, "annotation": null}, {"text": ",", "start": 410, "end": 411, "annotation": null}, {"text": "for", "start": 412, "end": 415, "annotation": null}, {"text": "z", "start": 416, "end": 417, "annotation": null}, {"text": "=", "start": 417, "end": 418, "annotation": null}, {"text": "7", "start": 418, "end": 419, "annotation": null}, {"text": ",", "start": 419, "end": 420, "annotation": null}, {"text": "Tc", "start": 421, "end": 423, "annotation": null}, {"text": "is", "start": 424, "end": 426, "annotation": null}, {"text": "reduced", "start": 427, "end": 434, "annotation": null}, {"text": "with", "start": 435, "end": 439, "annotation": null}, {"text": "increasing", "start": 440, "end": 450, "annotation": null}, {"text": "the", "start": 451, "end": 454, "annotation": null}, {"text": "dopant", "start": 455, "end": 461, "annotation": null}, {"text": "concentration", "start": 462, "end": 475, "annotation": null}, {"text": ".", "start": 475, "end": 476, "annotation": null}], [{"text": "Antiferromagnetism", "start": 477, "end": 495, "annotation": null}, {"text": "is", "start": 496, "end": 498, "annotation": null}, {"text": "found", "start": 499, "end": 504, "annotation": null}, {"text": "at", "start": 505, "end": 507, "annotation": null}, {"text": "concentrations", "start": 508, "end": 522, "annotation": null}, {"text": "where", "start": 523, "end": 528, "annotation": null}, {"text": "the", "start": 529, "end": 532, "annotation": null}, {"text": "superconductivity", "start": 533, "end": 550, "annotation": null}, {"text": "disappears", "start": 551, "end": 561, "annotation": null}, {"text": ",", "start": 561, "end": 562, "annotation": null}, {"text": "which", "start": 563, "end": 568, "annotation": null}, {"text": "means", "start": 569, "end": 574, "annotation": null}, {"text": "that", "start": 575, "end": 579, "annotation": null}, {"text": "the", "start": 580, "end": 583, "annotation": null}, {"text": "materials", "start": 584, "end": 593, "annotation": null}, {"text": "exhibit", "start": 594, "end": 601, "annotation": null}, {"text": "either", "start": 602, "end": 608, "annotation": null}, {"text": "superconductivity", "start": 609, "end": 626, "annotation": null}, {"text": "or", "start": 627, "end": 629, "annotation": null}, {"text": "antiferromagnetic", "start": 630, "end": 647, "annotation": null}, {"text": "order", "start": 648, "end": 653, "annotation": null}, {"text": ",", "start": 653, "end": 654, "annotation": null}, {"text": "depending", "start": 655, "end": 664, "annotation": null}, {"text": "on", "start": 665, "end": 667, "annotation": null}, {"text": "composition", "start": 668, "end": 679, "annotation": null}, {"text": ".", "start": 679, "end": 680, "annotation": null}], [{"text": "The", "start": 681, "end": 684, "annotation": null}, {"text": "phase", "start": 685, "end": 690, "annotation": null}, {"text": "diagrams", "start": 691, "end": 699, "annotation": null}, {"text": "obtained", "start": 700, "end": 708, "annotation": null}, {"text": "are", "start": 709, "end": 712, "annotation": null}, {"text": "very", "start": 713, "end": 717, "annotation": null}, {"text": "similar", "start": 718, "end": 725, "annotation": null}, {"text": "to", "start": 726, "end": 728, "annotation": null}, {"text": "the", "start": 729, "end": 732, "annotation": null}, {"text": "well", "start": 733, "end": 737, "annotation": null}, {"text": "-", "start": 737, "end": 738, "annotation": null}, {"text": "known", "start": 738, "end": 743, "annotation": null}, {"text": "oxygen", "start": 744, "end": 750, "annotation": null}, {"text": "content", "start": 751, "end": 758, "annotation": null}, {"text": "dependence", "start": 759, "end": 769, "annotation": null}, {"text": "phase", "start": 770, "end": 775, "annotation": null}, {"text": "diagram", "start": 776, "end": 783, "annotation": null}, {"text": ".", "start": 783, "end": 784, "annotation": null}], [{"text": "For", "start": 785, "end": 788, "annotation": null}, {"text": "z", "start": 789, "end": 790, "annotation": null}, {"text": "=", "start": 790, "end": 791, "annotation": null}, {"text": "6", "start": 791, "end": 792, "annotation": null}, {"text": ",", "start": 792, "end": 793, "annotation": null}, {"text": "TN", "start": 794, "end": 796, "annotation": null}, {"text": "changes", "start": 797, "end": 804, "annotation": null}, {"text": "very", "start": 805, "end": 809, "annotation": null}, {"text": "little", "start": 810, "end": 816, "annotation": null}, {"text": "with", "start": 817, "end": 821, "annotation": null}, {"text": "x", "start": 822, "end": 823, "annotation": null}, {"text": "or", "start": 824, "end": 826, "annotation": null}, {"text": "y", "start": 827, "end": 828, "annotation": null}, {"text": ".", "start": 828, "end": 829, "annotation": null}], [{"text": "There", "start": 830, "end": 835, "annotation": null}, {"text": "is", "start": 836, "end": 838, "annotation": null}, {"text": "no", "start": 839, "end": 841, "annotation": null}, {"text": "conclusive", "start": 842, "end": 852, "annotation": null}, {"text": "evidence", "start": 853, "end": 861, "annotation": null}, {"text": "for", "start": 862, "end": 865, "annotation": null}, {"text": "overlap", "start": 866, "end": 873, "annotation": null}, {"text": "of", "start": 874, "end": 876, "annotation": null}, {"text": "superconductivity", "start": 877, "end": 894, "annotation": null}, {"text": "and", "start": 895, "end": 898, "annotation": null}, {"text": "antiferromagnetism", "start": 899, "end": 917, "annotation": null}, {"text": ".", "start": 917, "end": 918, "annotation": null}], [{"text": "For", "start": 919, "end": 922, "annotation": null}, {"text": "substitution", "start": 923, "end": 935, "annotation": null}, {"text": "of", "start": 936, "end": 938, "annotation": null}, {"text": "Zn", "start": 939, "end": 941, "annotation": null}, {"text": "in", "start": 942, "end": 944, "annotation": null}, {"text": "the", "start": 945, "end": 948, "annotation": null}, {"text": "CuO2", "start": 949, "end": 953, "annotation": null}, {"text": "plane", "start": 954, "end": 959, "annotation": null}, {"text": "(", "start": 960, "end": 961, "annotation": null}, {"text": "Zn", "start": 961, "end": 963, "annotation": null}, {"text": ")", "start": 963, "end": 964, "annotation": null}, {"text": "a", "start": 965, "end": 966, "annotation": null}, {"text": "different", "start": 967, "end": 976, "annotation": null}, {"text": "behavior", "start": 977, "end": 985, "annotation": null}, {"text": "is", "start": 986, "end": 988, "annotation": null}, {"text": "observed", "start": 989, "end": 997, "annotation": null}, {"text": ".", "start": 997, "end": 998, "annotation": null}], [{"text": "Here", "start": 999, "end": 1003, "annotation": null}, {"text": "the", "start": 1004, "end": 1007, "annotation": null}, {"text": "magnetic", "start": 1008, "end": 1016, "annotation": null}, {"text": "order", "start": 1017, "end": 1022, "annotation": null}, {"text": "is", "start": 1023, "end": 1025, "annotation": null}, {"text": "never", "start": 1026, "end": 1031, "annotation": null}, {"text": "found", "start": 1032, "end": 1037, "annotation": null}, {"text": "in", "start": 1038, "end": 1040, "annotation": null}, {"text": "oxygen", "start": 1041, "end": 1047, "annotation": null}, {"text": "rich", "start": 1048, "end": 1052, "annotation": null}, {"text": "samples", "start": 1053, "end": 1060, "annotation": null}, {"text": ",", "start": 1060, "end": 1061, "annotation": null}, {"text": "and", "start": 1062, "end": 1065, "annotation": null}, {"text": "appears", "start": 1066, "end": 1073, "annotation": null}, {"text": "in", "start": 1074, "end": 1076, "annotation": null}, {"text": "oxygen", "start": 1077, "end": 1083, "annotation": null}, {"text": "poor", "start": 1084, "end": 1088, "annotation": null}, {"text": "samples", "start": 1089, "end": 1096, "annotation": null}, {"text": "only", "start": 1097, "end": 1101, "annotation": null}, {"text": "for", "start": 1102, "end": 1105, "annotation": null}, {"text": "y", "start": 1106, "end": 1107, "annotation": null}, {"text": "<", "start": 1107, "end": 1108, "annotation": null}, {"text": "0.08", "start": 1108, "end": 1112, "annotation": null}, {"text": ".", "start": 1112, "end": 1113, "annotation": null}]]} -{"remark": "doping_annt2", "text": "The laser performance at 491 and 635 nm of praseodymium-doped fluorozirconate fiber pumped at 1.01 \u03bcm and 835 nm is described and is interpreted with analytical solutions to the rate equations. Spectroscopic measurements of the absorption and the emission cross sections are presented, and the values are shown to be consistent with the observed lasing performance. The analytical model is shown to be a reliable indication of the optimum length of fiber for operation on the three-level 491-nm transition. \u00a9 1994 Optical Society of America.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "laser", "start": 4, "end": 9, "annotation": null}, {"text": "performance", "start": 10, "end": 21, "annotation": null}, {"text": "at", "start": 22, "end": 24, "annotation": null}, {"text": "491", "start": 25, "end": 28, "annotation": null}, {"text": "and", "start": 29, "end": 32, "annotation": null}, {"text": "635", "start": 33, "end": 36, "annotation": null}, {"text": "nm", "start": 37, "end": 39, "annotation": null}, {"text": "of", "start": 40, "end": 42, "annotation": null}, {"text": "praseodymium", "start": 43, "end": 55, "annotation": "DOPANT"}, {"text": "-", "start": 55, "end": 56, "annotation": null}, {"text": "doped", "start": 56, "end": 61, "annotation": null}, {"text": "fluorozirconate", "start": 62, "end": 77, "annotation": "BASEMAT"}, {"text": "fiber", "start": 78, "end": 83, "annotation": null}, {"text": "pumped", "start": 84, "end": 90, "annotation": null}, {"text": "at", "start": 91, "end": 93, "annotation": null}, {"text": "1.01", "start": 94, "end": 98, "annotation": null}, {"text": "\u03bcm", "start": 99, "end": 101, "annotation": null}, {"text": "and", "start": 102, "end": 105, "annotation": null}, {"text": "835", "start": 106, "end": 109, "annotation": null}, {"text": "nm", "start": 110, "end": 112, "annotation": null}, {"text": "is", "start": 113, "end": 115, "annotation": null}, {"text": "described", "start": 116, "end": 125, "annotation": null}, {"text": "and", "start": 126, "end": 129, "annotation": null}, {"text": "is", "start": 130, "end": 132, "annotation": null}, {"text": "interpreted", "start": 133, "end": 144, "annotation": null}, {"text": "with", "start": 145, "end": 149, "annotation": null}, {"text": "analytical", "start": 150, "end": 160, "annotation": null}, {"text": "solutions", "start": 161, "end": 170, "annotation": null}, {"text": "to", "start": 171, "end": 173, "annotation": null}, {"text": "the", "start": 174, "end": 177, "annotation": null}, {"text": "rate", "start": 178, "end": 182, "annotation": null}, {"text": "equations", "start": 183, "end": 192, "annotation": null}, {"text": ".", "start": 192, "end": 193, "annotation": null}], [{"text": "Spectroscopic", "start": 194, "end": 207, "annotation": null}, {"text": "measurements", "start": 208, "end": 220, "annotation": null}, {"text": "of", "start": 221, "end": 223, "annotation": null}, {"text": "the", "start": 224, "end": 227, "annotation": null}, {"text": "absorption", "start": 228, "end": 238, "annotation": null}, {"text": "and", "start": 239, "end": 242, "annotation": null}, {"text": "the", "start": 243, "end": 246, "annotation": null}, {"text": "emission", "start": 247, "end": 255, "annotation": null}, {"text": "cross", "start": 256, "end": 261, "annotation": null}, {"text": "sections", "start": 262, "end": 270, "annotation": null}, {"text": "are", "start": 271, "end": 274, "annotation": null}, {"text": "presented", "start": 275, "end": 284, "annotation": null}, {"text": ",", "start": 284, "end": 285, "annotation": null}, {"text": "and", "start": 286, "end": 289, "annotation": null}, {"text": "the", "start": 290, "end": 293, "annotation": null}, {"text": "values", "start": 294, "end": 300, "annotation": null}, {"text": "are", "start": 301, "end": 304, "annotation": null}, {"text": "shown", "start": 305, "end": 310, "annotation": null}, {"text": "to", "start": 311, "end": 313, "annotation": null}, {"text": "be", "start": 314, "end": 316, "annotation": null}, {"text": "consistent", "start": 317, "end": 327, "annotation": null}, {"text": "with", "start": 328, "end": 332, "annotation": null}, {"text": "the", "start": 333, "end": 336, "annotation": null}, {"text": "observed", "start": 337, "end": 345, "annotation": null}, {"text": "lasing", "start": 346, "end": 352, "annotation": null}, {"text": "performance", "start": 353, "end": 364, "annotation": null}, {"text": ".", "start": 364, "end": 365, "annotation": null}], [{"text": "The", "start": 366, "end": 369, "annotation": null}, {"text": "analytical", "start": 370, "end": 380, "annotation": null}, {"text": "model", "start": 381, "end": 386, "annotation": null}, {"text": "is", "start": 387, "end": 389, "annotation": null}, {"text": "shown", "start": 390, "end": 395, "annotation": null}, {"text": "to", "start": 396, "end": 398, "annotation": null}, {"text": "be", "start": 399, "end": 401, "annotation": null}, {"text": "a", "start": 402, "end": 403, "annotation": null}, {"text": "reliable", "start": 404, "end": 412, "annotation": null}, {"text": "indication", "start": 413, "end": 423, "annotation": null}, {"text": "of", "start": 424, "end": 426, "annotation": null}, {"text": "the", "start": 427, "end": 430, "annotation": null}, {"text": "optimum", "start": 431, "end": 438, "annotation": null}, {"text": "length", "start": 439, "end": 445, "annotation": null}, {"text": "of", "start": 446, "end": 448, "annotation": null}, {"text": "fiber", "start": 449, "end": 454, "annotation": null}, {"text": "for", "start": 455, "end": 458, "annotation": null}, {"text": "operation", "start": 459, "end": 468, "annotation": null}, {"text": "on", "start": 469, "end": 471, "annotation": null}, {"text": "the", "start": 472, "end": 475, "annotation": null}, {"text": "three", "start": 476, "end": 481, "annotation": null}, {"text": "-", "start": 481, "end": 482, "annotation": null}, {"text": "level", "start": 482, "end": 487, "annotation": null}, {"text": "491-nm", "start": 488, "end": 494, "annotation": null}, {"text": "transition", "start": 495, "end": 505, "annotation": null}, {"text": ".", "start": 505, "end": 506, "annotation": null}]]} -{"remark": "doping_annt1", "text": "In this paper, effect of lanthanum doping on the dielectric and piezoelectric properties of the morphotropic phase boundary (MPB) composition in the Pb(Zn1/3Nb2/3)O3-BaTiO3-PbTiO3 system is presented. Samples were prepared according to the formula Pb0.85\u2212xBa0.15Lax[(Zn1/3Nb2/3)0.7Ti0.3]1\u2212x/4O3 (0 < x < 0.3), where the compensation for La ions was achieved via the appearance of B-site vacancies. All the compositions were synthesized using columbite precursor method and sintered using inverted crucible approach. Results of x-ray diffraction demonstrate that the solid solubility limit of La2O3 in the PZN-based MPB composition is more than 30 mole%. Incorporation of La2O3 into A-site sublattice of perovskite structure stabilizes rhombohedral phase against tetragonal phase, as a consequence, the location of the MPB composition range is displaced toward PT-rich end. In addition, the lattice distortion degree, represented by either tetragonality for tetragonal phase or rhombohedrality for rhombohedral phase, is reduced. Increasing La2O3 content remarkably decreases both the dielectric permittivity maximum and the temperature of the dielectric permittivity maximum. However, addition of La2O3 obviously strengthens the degree of the frequency-dispersion, which is correlated with the weakened degree of ferroelectric couplings among oxygen octahedra. The degree of diffuse phase transition (DPT) is prominently enhanced with increasing La2O3, for which the underlying mechanism is explored. Moreover, the ever-increasing extent of departure from Curie-Weiss behaviour induced by the lanthanum doping is indicative of some changes with the respect to the scale of polar microregions inherent to relaxors. The longitudinal piezoelectric coefficient (d33) is maximized at 1 mole% La2O3, which is attributed to the combined effect of phase coexistence and enhanced contribution from non-180\u00b0 domain wall process associated with rhombohedral phase.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "this", "start": 3, "end": 7, "annotation": null}, {"text": "paper", "start": 8, "end": 13, "annotation": null}, {"text": ",", "start": 13, "end": 14, "annotation": null}, {"text": "effect", "start": 15, "end": 21, "annotation": null}, {"text": "of", "start": 22, "end": 24, "annotation": null}, {"text": "lanthanum", "start": 25, "end": 34, "annotation": "DOPANT"}, {"text": "doping", "start": 35, "end": 41, "annotation": null}, {"text": "on", "start": 42, "end": 44, "annotation": null}, {"text": "the", "start": 45, "end": 48, "annotation": null}, {"text": "dielectric", "start": 49, "end": 59, "annotation": null}, {"text": "and", "start": 60, "end": 63, "annotation": null}, {"text": "piezoelectric", "start": 64, "end": 77, "annotation": null}, {"text": "properties", "start": 78, "end": 88, "annotation": null}, {"text": "of", "start": 89, "end": 91, "annotation": null}, {"text": "the", "start": 92, "end": 95, "annotation": null}, {"text": "morphotropic", "start": 96, "end": 108, "annotation": null}, {"text": "phase", "start": 109, "end": 114, "annotation": null}, {"text": "boundary", "start": 115, "end": 123, "annotation": null}, {"text": "(", "start": 124, "end": 125, "annotation": null}, {"text": "MPB", "start": 125, "end": 128, "annotation": null}, {"text": ")", "start": 128, "end": 129, "annotation": null}, {"text": "composition", "start": 130, "end": 141, "annotation": null}, {"text": "in", "start": 142, "end": 144, "annotation": null}, {"text": "the", "start": 145, "end": 148, "annotation": null}, {"text": "Pb(Zn1", "start": 149, "end": 155, "annotation": "BASEMAT"}, {"text": "/", "start": 155, "end": 156, "annotation": "BASEMAT"}, {"text": "3Nb2", "start": 156, "end": 160, "annotation": "BASEMAT"}, {"text": "/", "start": 160, "end": 161, "annotation": "BASEMAT"}, {"text": "3)O3-BaTiO3-PbTiO3", "start": 161, "end": 179, "annotation": "BASEMAT"}, {"text": "system", "start": 180, "end": 186, "annotation": null}, {"text": "is", "start": 187, "end": 189, "annotation": null}, {"text": "presented", "start": 190, "end": 199, "annotation": null}, {"text": ".", "start": 199, "end": 200, "annotation": null}], [{"text": "Samples", "start": 201, "end": 208, "annotation": null}, {"text": "were", "start": 209, "end": 213, "annotation": null}, {"text": "prepared", "start": 214, "end": 222, "annotation": null}, {"text": "according", "start": 223, "end": 232, "annotation": null}, {"text": "to", "start": 233, "end": 235, "annotation": null}, {"text": "the", "start": 236, "end": 239, "annotation": null}, {"text": "formula", "start": 240, "end": 247, "annotation": null}, {"text": "Pb0.85\u2212xBa0.15Lax[(Zn1", "start": 248, "end": 270, "annotation": null}, {"text": "/", "start": 270, "end": 271, "annotation": null}, {"text": "3Nb2", "start": 271, "end": 275, "annotation": null}, {"text": "/", "start": 275, "end": 276, "annotation": null}, {"text": "3)0.7Ti0.3]1\u2212x", "start": 276, "end": 290, "annotation": null}, {"text": "/", "start": 290, "end": 291, "annotation": null}, {"text": "4O3", "start": 291, "end": 294, "annotation": null}, {"text": "(", "start": 295, "end": 296, "annotation": null}, {"text": "0", "start": 296, "end": 297, "annotation": "DOPMODQ"}, {"text": "<", "start": 298, "end": 299, "annotation": "DOPMODQ"}, {"text": "x", "start": 300, "end": 301, "annotation": "DOPMODQ"}, {"text": "<", "start": 302, "end": 303, "annotation": "DOPMODQ"}, {"text": "0.3", "start": 304, "end": 307, "annotation": "DOPMODQ"}, {"text": ")", "start": 307, "end": 308, "annotation": null}, {"text": ",", "start": 308, "end": 309, "annotation": null}, {"text": "where", "start": 310, "end": 315, "annotation": null}, {"text": "the", "start": 316, "end": 319, "annotation": null}, {"text": "compensation", "start": 320, "end": 332, "annotation": null}, {"text": "for", "start": 333, "end": 336, "annotation": null}, {"text": "La", "start": 337, "end": 339, "annotation": "DOPANT"}, {"text": "ions", "start": 340, "end": 344, "annotation": null}, {"text": "was", "start": 345, "end": 348, "annotation": null}, {"text": "achieved", "start": 349, "end": 357, "annotation": null}, {"text": "via", "start": 358, "end": 361, "annotation": null}, {"text": "the", "start": 362, "end": 365, "annotation": null}, {"text": "appearance", "start": 366, "end": 376, "annotation": null}, {"text": "of", "start": 377, "end": 379, "annotation": null}, {"text": "B-site", "start": 380, "end": 386, "annotation": null}, {"text": "vacancies", "start": 387, "end": 396, "annotation": null}, {"text": ".", "start": 396, "end": 397, "annotation": null}], [{"text": "All", "start": 398, "end": 401, "annotation": null}, {"text": "the", "start": 402, "end": 405, "annotation": null}, {"text": "compositions", "start": 406, "end": 418, "annotation": null}, {"text": "were", "start": 419, "end": 423, "annotation": null}, {"text": "synthesized", "start": 424, "end": 435, "annotation": null}, {"text": "using", "start": 436, "end": 441, "annotation": null}, {"text": "columbite", "start": 442, "end": 451, "annotation": null}, {"text": "precursor", "start": 452, "end": 461, "annotation": null}, {"text": "method", "start": 462, "end": 468, "annotation": null}, {"text": "and", "start": 469, "end": 472, "annotation": null}, {"text": "sintered", "start": 473, "end": 481, "annotation": null}, {"text": "using", "start": 482, "end": 487, "annotation": null}, {"text": "inverted", "start": 488, "end": 496, "annotation": null}, {"text": "crucible", "start": 497, "end": 505, "annotation": null}, {"text": "approach", "start": 506, "end": 514, "annotation": null}, {"text": ".", "start": 514, "end": 515, "annotation": null}], [{"text": "Results", "start": 516, "end": 523, "annotation": null}, {"text": "of", "start": 524, "end": 526, "annotation": null}, {"text": "x-ray", "start": 527, "end": 532, "annotation": null}, {"text": "diffraction", "start": 533, "end": 544, "annotation": null}, {"text": "demonstrate", "start": 545, "end": 556, "annotation": null}, {"text": "that", "start": 557, "end": 561, "annotation": null}, {"text": "the", "start": 562, "end": 565, "annotation": null}, {"text": "solid", "start": 566, "end": 571, "annotation": null}, {"text": "solubility", "start": 572, "end": 582, "annotation": null}, {"text": "limit", "start": 583, "end": 588, "annotation": null}, {"text": "of", "start": 589, "end": 591, "annotation": null}, {"text": "La2O3", "start": 592, "end": 597, "annotation": null}, {"text": "in", "start": 598, "end": 600, "annotation": null}, {"text": "the", "start": 601, "end": 604, "annotation": null}, {"text": "PZN", "start": 605, "end": 608, "annotation": null}, {"text": "-", "start": 608, "end": 609, "annotation": null}, {"text": "based", "start": 609, "end": 614, "annotation": null}, {"text": "MPB", "start": 615, "end": 618, "annotation": null}, {"text": "composition", "start": 619, "end": 630, "annotation": null}, {"text": "is", "start": 631, "end": 633, "annotation": null}, {"text": "more", "start": 634, "end": 638, "annotation": null}, {"text": "than", "start": 639, "end": 643, "annotation": null}, {"text": "30", "start": 644, "end": 646, "annotation": null}, {"text": "mole", "start": 647, "end": 651, "annotation": null}, {"text": "%", "start": 651, "end": 652, "annotation": null}, {"text": ".", "start": 652, "end": 653, "annotation": null}], [{"text": "Incorporation", "start": 654, "end": 667, "annotation": null}, {"text": "of", "start": 668, "end": 670, "annotation": null}, {"text": "La2O3", "start": 671, "end": 676, "annotation": null}, {"text": "into", "start": 677, "end": 681, "annotation": null}, {"text": "A-site", "start": 682, "end": 688, "annotation": null}, {"text": "sublattice", "start": 689, "end": 699, "annotation": null}, {"text": "of", "start": 700, "end": 702, "annotation": null}, {"text": "perovskite", "start": 703, "end": 713, "annotation": null}, {"text": "structure", "start": 714, "end": 723, "annotation": null}, {"text": "stabilizes", "start": 724, "end": 734, "annotation": null}, {"text": "rhombohedral", "start": 735, "end": 747, "annotation": null}, {"text": "phase", "start": 748, "end": 753, "annotation": null}, {"text": "against", "start": 754, "end": 761, "annotation": null}, {"text": "tetragonal", "start": 762, "end": 772, "annotation": null}, {"text": "phase", "start": 773, "end": 778, "annotation": null}, {"text": ",", "start": 778, "end": 779, "annotation": null}, {"text": "as", "start": 780, "end": 782, "annotation": null}, {"text": "a", "start": 783, "end": 784, "annotation": null}, {"text": "consequence", "start": 785, "end": 796, "annotation": null}, {"text": ",", "start": 796, "end": 797, "annotation": null}, {"text": "the", "start": 798, "end": 801, "annotation": null}, {"text": "location", "start": 802, "end": 810, "annotation": null}, {"text": "of", "start": 811, "end": 813, "annotation": null}, {"text": "the", "start": 814, "end": 817, "annotation": null}, {"text": "MPB", "start": 818, "end": 821, "annotation": null}, {"text": "composition", "start": 822, "end": 833, "annotation": null}, {"text": "range", "start": 834, "end": 839, "annotation": null}, {"text": "is", "start": 840, "end": 842, "annotation": null}, {"text": "displaced", "start": 843, "end": 852, "annotation": null}, {"text": "toward", "start": 853, "end": 859, "annotation": null}, {"text": "PT", "start": 860, "end": 862, "annotation": null}, {"text": "-", "start": 862, "end": 863, "annotation": null}, {"text": "rich", "start": 863, "end": 867, "annotation": null}, {"text": "end", "start": 868, "end": 871, "annotation": null}, {"text": ".", "start": 871, "end": 872, "annotation": null}], [{"text": "In", "start": 873, "end": 875, "annotation": null}, {"text": "addition", "start": 876, "end": 884, "annotation": null}, {"text": ",", "start": 884, "end": 885, "annotation": null}, {"text": "the", "start": 886, "end": 889, "annotation": null}, {"text": "lattice", "start": 890, "end": 897, "annotation": null}, {"text": "distortion", "start": 898, "end": 908, "annotation": null}, {"text": "degree", "start": 909, "end": 915, "annotation": null}, {"text": ",", "start": 915, "end": 916, "annotation": null}, {"text": "represented", "start": 917, "end": 928, "annotation": null}, {"text": "by", "start": 929, "end": 931, "annotation": null}, {"text": "either", "start": 932, "end": 938, "annotation": null}, {"text": "tetragonality", "start": 939, "end": 952, "annotation": null}, {"text": "for", "start": 953, "end": 956, "annotation": null}, {"text": "tetragonal", "start": 957, "end": 967, "annotation": null}, {"text": "phase", "start": 968, "end": 973, "annotation": null}, {"text": "or", "start": 974, "end": 976, "annotation": null}, {"text": "rhombohedrality", "start": 977, "end": 992, "annotation": null}, {"text": "for", "start": 993, "end": 996, "annotation": null}, {"text": "rhombohedral", "start": 997, "end": 1009, "annotation": null}, {"text": "phase", "start": 1010, "end": 1015, "annotation": null}, {"text": ",", "start": 1015, "end": 1016, "annotation": null}, {"text": "is", "start": 1017, "end": 1019, "annotation": null}, {"text": "reduced", "start": 1020, "end": 1027, "annotation": null}, {"text": ".", "start": 1027, "end": 1028, "annotation": null}], [{"text": "Increasing", "start": 1029, "end": 1039, "annotation": null}, {"text": "La2O3", "start": 1040, "end": 1045, "annotation": null}, {"text": "content", "start": 1046, "end": 1053, "annotation": null}, {"text": "remarkably", "start": 1054, "end": 1064, "annotation": null}, {"text": "decreases", "start": 1065, "end": 1074, "annotation": null}, {"text": "both", "start": 1075, "end": 1079, "annotation": null}, {"text": "the", "start": 1080, "end": 1083, "annotation": null}, {"text": "dielectric", "start": 1084, "end": 1094, "annotation": null}, {"text": "permittivity", "start": 1095, "end": 1107, "annotation": null}, {"text": "maximum", "start": 1108, "end": 1115, "annotation": null}, {"text": "and", "start": 1116, "end": 1119, "annotation": null}, {"text": "the", "start": 1120, "end": 1123, "annotation": null}, {"text": "temperature", "start": 1124, "end": 1135, "annotation": null}, {"text": "of", "start": 1136, "end": 1138, "annotation": null}, {"text": "the", "start": 1139, "end": 1142, "annotation": null}, {"text": "dielectric", "start": 1143, "end": 1153, "annotation": null}, {"text": "permittivity", "start": 1154, "end": 1166, "annotation": null}, {"text": "maximum", "start": 1167, "end": 1174, "annotation": null}, {"text": ".", "start": 1174, "end": 1175, "annotation": null}], [{"text": "However", "start": 1176, "end": 1183, "annotation": null}, {"text": ",", "start": 1183, "end": 1184, "annotation": null}, {"text": "addition", "start": 1185, "end": 1193, "annotation": null}, {"text": "of", "start": 1194, "end": 1196, "annotation": null}, {"text": "La2O3", "start": 1197, "end": 1202, "annotation": null}, {"text": "obviously", "start": 1203, "end": 1212, "annotation": null}, {"text": "strengthens", "start": 1213, "end": 1224, "annotation": null}, {"text": "the", "start": 1225, "end": 1228, "annotation": null}, {"text": "degree", "start": 1229, "end": 1235, "annotation": null}, {"text": "of", "start": 1236, "end": 1238, "annotation": null}, {"text": "the", "start": 1239, "end": 1242, "annotation": null}, {"text": "frequency", "start": 1243, "end": 1252, "annotation": null}, {"text": "-", "start": 1252, "end": 1253, "annotation": null}, {"text": "dispersion", "start": 1253, "end": 1263, "annotation": null}, {"text": ",", "start": 1263, "end": 1264, "annotation": null}, {"text": "which", "start": 1265, "end": 1270, "annotation": null}, {"text": "is", "start": 1271, "end": 1273, "annotation": null}, {"text": "correlated", "start": 1274, "end": 1284, "annotation": null}, {"text": "with", "start": 1285, "end": 1289, "annotation": null}, {"text": "the", "start": 1290, "end": 1293, "annotation": null}, {"text": "weakened", "start": 1294, "end": 1302, "annotation": null}, {"text": "degree", "start": 1303, "end": 1309, "annotation": null}, {"text": "of", "start": 1310, "end": 1312, "annotation": null}, {"text": "ferroelectric", "start": 1313, "end": 1326, "annotation": null}, {"text": "couplings", "start": 1327, "end": 1336, "annotation": null}, {"text": "among", "start": 1337, "end": 1342, "annotation": null}, {"text": "oxygen", "start": 1343, "end": 1349, "annotation": null}, {"text": "octahedra", "start": 1350, "end": 1359, "annotation": null}, {"text": ".", "start": 1359, "end": 1360, "annotation": null}], [{"text": "The", "start": 1361, "end": 1364, "annotation": null}, {"text": "degree", "start": 1365, "end": 1371, "annotation": null}, {"text": "of", "start": 1372, "end": 1374, "annotation": null}, {"text": "diffuse", "start": 1375, "end": 1382, "annotation": null}, {"text": "phase", "start": 1383, "end": 1388, "annotation": null}, {"text": "transition", "start": 1389, "end": 1399, "annotation": null}, {"text": "(", "start": 1400, "end": 1401, "annotation": null}, {"text": "DPT", "start": 1401, "end": 1404, "annotation": null}, {"text": ")", "start": 1404, "end": 1405, "annotation": null}, {"text": "is", "start": 1406, "end": 1408, "annotation": null}, {"text": "prominently", "start": 1409, "end": 1420, "annotation": null}, {"text": "enhanced", "start": 1421, "end": 1429, "annotation": null}, {"text": "with", "start": 1430, "end": 1434, "annotation": null}, {"text": "increasing", "start": 1435, "end": 1445, "annotation": null}, {"text": "La2O3", "start": 1446, "end": 1451, "annotation": null}, {"text": ",", "start": 1451, "end": 1452, "annotation": null}, {"text": "for", "start": 1453, "end": 1456, "annotation": null}, {"text": "which", "start": 1457, "end": 1462, "annotation": null}, {"text": "the", "start": 1463, "end": 1466, "annotation": null}, {"text": "underlying", "start": 1467, "end": 1477, "annotation": null}, {"text": "mechanism", "start": 1478, "end": 1487, "annotation": null}, {"text": "is", "start": 1488, "end": 1490, "annotation": null}, {"text": "explored", "start": 1491, "end": 1499, "annotation": null}, {"text": ".", "start": 1499, "end": 1500, "annotation": null}], [{"text": "Moreover", "start": 1501, "end": 1509, "annotation": null}, {"text": ",", "start": 1509, "end": 1510, "annotation": null}, {"text": "the", "start": 1511, "end": 1514, "annotation": null}, {"text": "ever", "start": 1515, "end": 1519, "annotation": null}, {"text": "-", "start": 1519, "end": 1520, "annotation": null}, {"text": "increasing", "start": 1520, "end": 1530, "annotation": null}, {"text": "extent", "start": 1531, "end": 1537, "annotation": null}, {"text": "of", "start": 1538, "end": 1540, "annotation": null}, {"text": "departure", "start": 1541, "end": 1550, "annotation": null}, {"text": "from", "start": 1551, "end": 1555, "annotation": null}, {"text": "Curie", "start": 1556, "end": 1561, "annotation": null}, {"text": "-", "start": 1561, "end": 1562, "annotation": null}, {"text": "Weiss", "start": 1562, "end": 1567, "annotation": null}, {"text": "behaviour", "start": 1568, "end": 1577, "annotation": null}, {"text": "induced", "start": 1578, "end": 1585, "annotation": null}, {"text": "by", "start": 1586, "end": 1588, "annotation": null}, {"text": "the", "start": 1589, "end": 1592, "annotation": null}, {"text": "lanthanum", "start": 1593, "end": 1602, "annotation": "DOPANT"}, {"text": "doping", "start": 1603, "end": 1609, "annotation": null}, {"text": "is", "start": 1610, "end": 1612, "annotation": null}, {"text": "indicative", "start": 1613, "end": 1623, "annotation": null}, {"text": "of", "start": 1624, "end": 1626, "annotation": null}, {"text": "some", "start": 1627, "end": 1631, "annotation": null}, {"text": "changes", "start": 1632, "end": 1639, "annotation": null}, {"text": "with", "start": 1640, "end": 1644, "annotation": null}, {"text": "the", "start": 1645, "end": 1648, "annotation": null}, {"text": "respect", "start": 1649, "end": 1656, "annotation": null}, {"text": "to", "start": 1657, "end": 1659, "annotation": null}, {"text": "the", "start": 1660, "end": 1663, "annotation": null}, {"text": "scale", "start": 1664, "end": 1669, "annotation": null}, {"text": "of", "start": 1670, "end": 1672, "annotation": null}, {"text": "polar", "start": 1673, "end": 1678, "annotation": null}, {"text": "microregions", "start": 1679, "end": 1691, "annotation": null}, {"text": "inherent", "start": 1692, "end": 1700, "annotation": null}, {"text": "to", "start": 1701, "end": 1703, "annotation": null}, {"text": "relaxors", "start": 1704, "end": 1712, "annotation": null}, {"text": ".", "start": 1712, "end": 1713, "annotation": null}], [{"text": "The", "start": 1714, "end": 1717, "annotation": null}, {"text": "longitudinal", "start": 1718, "end": 1730, "annotation": null}, {"text": "piezoelectric", "start": 1731, "end": 1744, "annotation": null}, {"text": "coefficient", "start": 1745, "end": 1756, "annotation": null}, {"text": "(", "start": 1757, "end": 1758, "annotation": null}, {"text": "d33", "start": 1758, "end": 1761, "annotation": null}, {"text": ")", "start": 1761, "end": 1762, "annotation": null}, {"text": "is", "start": 1763, "end": 1765, "annotation": null}, {"text": "maximized", "start": 1766, "end": 1775, "annotation": null}, {"text": "at", "start": 1776, "end": 1778, "annotation": null}, {"text": "1", "start": 1779, "end": 1780, "annotation": null}, {"text": "mole", "start": 1781, "end": 1785, "annotation": null}, {"text": "%", "start": 1785, "end": 1786, "annotation": null}, {"text": "La2O3", "start": 1787, "end": 1792, "annotation": null}, {"text": ",", "start": 1792, "end": 1793, "annotation": null}, {"text": "which", "start": 1794, "end": 1799, "annotation": null}, {"text": "is", "start": 1800, "end": 1802, "annotation": null}, {"text": "attributed", "start": 1803, "end": 1813, "annotation": null}, {"text": "to", "start": 1814, "end": 1816, "annotation": null}, {"text": "the", "start": 1817, "end": 1820, "annotation": null}, {"text": "combined", "start": 1821, "end": 1829, "annotation": null}, {"text": "effect", "start": 1830, "end": 1836, "annotation": null}, {"text": "of", "start": 1837, "end": 1839, "annotation": null}, {"text": "phase", "start": 1840, "end": 1845, "annotation": null}, {"text": "coexistence", "start": 1846, "end": 1857, "annotation": null}, {"text": "and", "start": 1858, "end": 1861, "annotation": null}, {"text": "enhanced", "start": 1862, "end": 1870, "annotation": null}, {"text": "contribution", "start": 1871, "end": 1883, "annotation": null}, {"text": "from", "start": 1884, "end": 1888, "annotation": null}, {"text": "non-180", "start": 1889, "end": 1896, "annotation": null}, {"text": "\u00b0", "start": 1896, "end": 1897, "annotation": null}, {"text": "domain", "start": 1898, "end": 1904, "annotation": null}, {"text": "wall", "start": 1905, "end": 1909, "annotation": null}, {"text": "process", "start": 1910, "end": 1917, "annotation": null}, {"text": "associated", "start": 1918, "end": 1928, "annotation": null}, {"text": "with", "start": 1929, "end": 1933, "annotation": null}, {"text": "rhombohedral", "start": 1934, "end": 1946, "annotation": null}, {"text": "phase", "start": 1947, "end": 1952, "annotation": null}, {"text": ".", "start": 1952, "end": 1953, "annotation": null}]]} -{"text": "Chemomechanical polishing of p-type silicon wafers produces the fast-diffusing X defect. This defect forms neutral complexes with the acceptors boron, aluminium, gallium and indium. Annealing under reverse bias in the temperature range from 160 to 270 K allows us to determine accurately the thermally activated dissociation energies for all the complexes. The X defect is also produced by copper diffusion into p-type silicon. The identification of X as a copper-related defect is discussed.", "meta": {"doi": "10.1016/0921-5107(89)90220-1"}, "_input_hash": 213283371, "_task_hash": -135078811, "tokens": [[{"text": "Chemomechanical", "start": 0, "end": 15, "id": 0, "annotation": null}, {"text": "polishing", "start": 16, "end": 25, "id": 1, "annotation": null}, {"text": "of", "start": 26, "end": 28, "id": 2, "annotation": null}, {"text": "p", "start": 29, "end": 30, "id": 3, "annotation": "DOPANT"}, {"text": "-", "start": 31, "end": 32, "id": 4, "annotation": null}, {"text": "type", "start": 33, "end": 37, "id": 5, "annotation": "DOPANT"}, {"text": "silicon", "start": 38, "end": 45, "id": 6, "annotation": "BASEMAT"}, {"text": "wafers", "start": 46, "end": 52, "id": 7, "annotation": null}, {"text": "produces", "start": 53, "end": 61, "id": 8, "annotation": null}, {"text": "the", "start": 62, "end": 65, "id": 9, "annotation": null}, {"text": "fast", "start": 66, "end": 70, "id": 10, "annotation": null}, {"text": "-", "start": 71, "end": 72, "id": 11, "annotation": null}, {"text": "diffusing", "start": 73, "end": 82, "id": 12, "annotation": null}, {"text": "X", "start": 83, "end": 84, "id": 13, "annotation": null}, {"text": "defect", "start": 85, "end": 91, "id": 14, "annotation": null}, {"text": ".", "start": 92, "end": 93, "id": 15, "annotation": null}], [{"text": "This", "start": 94, "end": 98, "id": 16, "annotation": null}, {"text": "defect", "start": 99, "end": 105, "id": 17, "annotation": null}, {"text": "forms", "start": 106, "end": 111, "id": 18, "annotation": null}, {"text": "neutral", "start": 112, "end": 119, "id": 19, "annotation": null}, {"text": "complexes", "start": 120, "end": 129, "id": 20, "annotation": null}, {"text": "with", "start": 130, "end": 134, "id": 21, "annotation": null}, {"text": "the", "start": 135, "end": 138, "id": 22, "annotation": null}, {"text": "acceptors", "start": 139, "end": 148, "id": 23, "annotation": null}, {"text": "boron", "start": 149, "end": 154, "id": 24, "annotation": "DOPANT"}, {"text": ",", "start": 155, "end": 156, "id": 25, "annotation": null}, {"text": "aluminium", "start": 157, "end": 166, "id": 26, "annotation": "DOPANT"}, {"text": ",", "start": 167, "end": 168, "id": 27, "annotation": null}, {"text": "gallium", "start": 169, "end": 176, "id": 28, "annotation": "DOPANT"}, {"text": "and", "start": 177, "end": 180, "id": 29, "annotation": null}, {"text": "indium", "start": 181, "end": 187, "id": 30, "annotation": "DOPANT"}, {"text": ".", "start": 188, "end": 189, "id": 31, "annotation": null}], [{"text": "Annealing", "start": 190, "end": 199, "id": 32, "annotation": null}, {"text": "under", "start": 200, "end": 205, "id": 33, "annotation": null}, {"text": "reverse", "start": 206, "end": 213, "id": 34, "annotation": null}, {"text": "bias", "start": 214, "end": 218, "id": 35, "annotation": null}, {"text": "in", "start": 219, "end": 221, "id": 36, "annotation": null}, {"text": "the", "start": 222, "end": 225, "id": 37, "annotation": null}, {"text": "temperature", "start": 226, "end": 237, "id": 38, "annotation": null}, {"text": "range", "start": 238, "end": 243, "id": 39, "annotation": null}, {"text": "from", "start": 244, "end": 248, "id": 40, "annotation": null}, {"text": "160", "start": 249, "end": 252, "id": 41, "annotation": null}, {"text": "to", "start": 253, "end": 255, "id": 42, "annotation": null}, {"text": "270", "start": 256, "end": 259, "id": 43, "annotation": null}, {"text": "K", "start": 260, "end": 261, "id": 44, "annotation": null}, {"text": "allows", "start": 262, "end": 268, "id": 45, "annotation": null}, {"text": "us", "start": 269, "end": 271, "id": 46, "annotation": null}, {"text": "to", "start": 272, "end": 274, "id": 47, "annotation": null}, {"text": "determine", "start": 275, "end": 284, "id": 48, "annotation": null}, {"text": "accurately", "start": 285, "end": 295, "id": 49, "annotation": null}, {"text": "the", "start": 296, "end": 299, "id": 50, "annotation": null}, {"text": "thermally", "start": 300, "end": 309, "id": 51, "annotation": null}, {"text": "activated", "start": 310, "end": 319, "id": 52, "annotation": null}, {"text": "dissociation", "start": 320, "end": 332, "id": 53, "annotation": null}, {"text": "energies", "start": 333, "end": 341, "id": 54, "annotation": null}, {"text": "for", "start": 342, "end": 345, "id": 55, "annotation": null}, {"text": "all", "start": 346, "end": 349, "id": 56, "annotation": null}, {"text": "the", "start": 350, "end": 353, "id": 57, "annotation": null}, {"text": "complexes", "start": 354, "end": 363, "id": 58, "annotation": null}, {"text": ".", "start": 364, "end": 365, "id": 59, "annotation": null}], [{"text": "The", "start": 366, "end": 369, "id": 60, "annotation": null}, {"text": "X", "start": 370, "end": 371, "id": 61, "annotation": null}, {"text": "defect", "start": 372, "end": 378, "id": 62, "annotation": null}, {"text": "is", "start": 379, "end": 381, "id": 63, "annotation": null}, {"text": "also", "start": 382, "end": 386, "id": 64, "annotation": null}, {"text": "produced", "start": 387, "end": 395, "id": 65, "annotation": null}, {"text": "by", "start": 396, "end": 398, "id": 66, "annotation": null}, {"text": "copper", "start": 399, "end": 405, "id": 67, "annotation": null}, {"text": "diffusion", "start": 406, "end": 415, "id": 68, "annotation": null}, {"text": "into", "start": 416, "end": 420, "id": 69, "annotation": null}, {"text": "p", "start": 421, "end": 422, "id": 70, "annotation": "DOPANT"}, {"text": "-", "start": 423, "end": 424, "id": 71, "annotation": null}, {"text": "type", "start": 425, "end": 429, "id": 72, "annotation": "DOPANT"}, {"text": "silicon", "start": 430, "end": 437, "id": 73, "annotation": "BASEMAT"}, {"text": ".", "start": 438, "end": 439, "id": 74, "annotation": null}], [{"text": "The", "start": 440, "end": 443, "id": 75, "annotation": null}, {"text": "identification", "start": 444, "end": 458, "id": 76, "annotation": null}, {"text": "of", "start": 459, "end": 461, "id": 77, "annotation": null}, {"text": "X", "start": 462, "end": 463, "id": 78, "annotation": null}, {"text": "as", "start": 464, "end": 466, "id": 79, "annotation": null}, {"text": "a", "start": 467, "end": 468, "id": 80, "annotation": null}, {"text": "copper", "start": 469, "end": 475, "id": 81, "annotation": null}, {"text": "-", "start": 476, "end": 477, "id": 82, "annotation": null}, {"text": "related", "start": 478, "end": 485, "id": 83, "annotation": null}, {"text": "defect", "start": 486, "end": 492, "id": 84, "annotation": null}, {"text": "is", "start": 493, "end": 495, "id": 85, "annotation": null}, {"text": "discussed", "start": 496, "end": 505, "id": 86, "annotation": null}, {"text": ".", "start": 506, "end": 507, "id": 87, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "NiO and ZnO thin films of about 40\u201350nm thickness with embedded Au nanoparticles have been synthesized with a simple and reliable sol\u2013gel procedure. The nanocomposites films are crystalline and porous and they show optical absorptions in the visible range according to Au nanoparticles concentration. These films have been tested as optical and electrical sensors for pollutant gases detection. A fast and reversible response has been detected for hydrogen, CO and NO2. Au nanoparticles have been found to improve the optical sensing properties of both NiO and ZnO films over the Au surface plasmon resonance peak wavelength range, but also to enhance the ZnO optical response in the near UV range, where Au nanoparticles are optically inactive. Moreover, combining the observed shift in the surface plasmon resonance peak and the different semiconductive type of the two oxides, it has been proved that reducing gases inject electrons into the oxide and then afterward the charge variation is detected by Au nanoparticles. Electrical tests confirm the n-type behavior of ZnO and p-type behavior of NiO, and show good performances at lower temperatures. Moreover, an enhancing effect of Au nanoparticles in the overall sensing performances is observed also in electrical tests.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "NiO", "start": 0, "end": 3, "annotation": "BASEMAT"}, {"text": "and", "start": 4, "end": 7, "annotation": null}, {"text": "ZnO", "start": 8, "end": 11, "annotation": "BASEMAT"}, {"text": "thin", "start": 12, "end": 16, "annotation": null}, {"text": "films", "start": 17, "end": 22, "annotation": null}, {"text": "of", "start": 23, "end": 25, "annotation": null}, {"text": "about", "start": 26, "end": 31, "annotation": null}, {"text": "40", "start": 32, "end": 34, "annotation": null}, {"text": "\u2013", "start": 34, "end": 35, "annotation": null}, {"text": "50", "start": 35, "end": 37, "annotation": null}, {"text": "nm", "start": 37, "end": 39, "annotation": null}, {"text": "thickness", "start": 40, "end": 49, "annotation": null}, {"text": "with", "start": 50, "end": 54, "annotation": null}, {"text": "embedded", "start": 55, "end": 63, "annotation": null}, {"text": "Au", "start": 64, "end": 66, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 67, "end": 80, "annotation": null}, {"text": "have", "start": 81, "end": 85, "annotation": null}, {"text": "been", "start": 86, "end": 90, "annotation": null}, {"text": "synthesized", "start": 91, "end": 102, "annotation": null}, {"text": "with", "start": 103, "end": 107, "annotation": null}, {"text": "a", "start": 108, "end": 109, "annotation": null}, {"text": "simple", "start": 110, "end": 116, "annotation": null}, {"text": "and", "start": 117, "end": 120, "annotation": null}, {"text": "reliable", "start": 121, "end": 129, "annotation": null}, {"text": "sol", "start": 130, "end": 133, "annotation": null}, {"text": "\u2013", "start": 133, "end": 134, "annotation": null}, {"text": "gel", "start": 134, "end": 137, "annotation": null}, {"text": "procedure", "start": 138, "end": 147, "annotation": null}, {"text": ".", "start": 147, "end": 148, "annotation": null}], [{"text": "The", "start": 149, "end": 152, "annotation": null}, {"text": "nanocomposites", "start": 153, "end": 167, "annotation": null}, {"text": "films", "start": 168, "end": 173, "annotation": null}, {"text": "are", "start": 174, "end": 177, "annotation": null}, {"text": "crystalline", "start": 178, "end": 189, "annotation": null}, {"text": "and", "start": 190, "end": 193, "annotation": null}, {"text": "porous", "start": 194, "end": 200, "annotation": null}, {"text": "and", "start": 201, "end": 204, "annotation": null}, {"text": "they", "start": 205, "end": 209, "annotation": null}, {"text": "show", "start": 210, "end": 214, "annotation": null}, {"text": "optical", "start": 215, "end": 222, "annotation": null}, {"text": "absorptions", "start": 223, "end": 234, "annotation": null}, {"text": "in", "start": 235, "end": 237, "annotation": null}, {"text": "the", "start": 238, "end": 241, "annotation": null}, {"text": "visible", "start": 242, "end": 249, "annotation": null}, {"text": "range", "start": 250, "end": 255, "annotation": null}, {"text": "according", "start": 256, "end": 265, "annotation": null}, {"text": "to", "start": 266, "end": 268, "annotation": null}, {"text": "Au", "start": 269, "end": 271, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 272, "end": 285, "annotation": null}, {"text": "concentration", "start": 286, "end": 299, "annotation": null}, {"text": ".", "start": 299, "end": 300, "annotation": null}], [{"text": "These", "start": 301, "end": 306, "annotation": null}, {"text": "films", "start": 307, "end": 312, "annotation": null}, {"text": "have", "start": 313, "end": 317, "annotation": null}, {"text": "been", "start": 318, "end": 322, "annotation": null}, {"text": "tested", "start": 323, "end": 329, "annotation": null}, {"text": "as", "start": 330, "end": 332, "annotation": null}, {"text": "optical", "start": 333, "end": 340, "annotation": null}, {"text": "and", "start": 341, "end": 344, "annotation": null}, {"text": "electrical", "start": 345, "end": 355, "annotation": null}, {"text": "sensors", "start": 356, "end": 363, "annotation": null}, {"text": "for", "start": 364, "end": 367, "annotation": null}, {"text": "pollutant", "start": 368, "end": 377, "annotation": null}, {"text": "gases", "start": 378, "end": 383, "annotation": null}, {"text": "detection", "start": 384, "end": 393, "annotation": null}, {"text": ".", "start": 393, "end": 394, "annotation": null}], [{"text": "A", "start": 395, "end": 396, "annotation": null}, {"text": "fast", "start": 397, "end": 401, "annotation": null}, {"text": "and", "start": 402, "end": 405, "annotation": null}, {"text": "reversible", "start": 406, "end": 416, "annotation": null}, {"text": "response", "start": 417, "end": 425, "annotation": null}, {"text": "has", "start": 426, "end": 429, "annotation": null}, {"text": "been", "start": 430, "end": 434, "annotation": null}, {"text": "detected", "start": 435, "end": 443, "annotation": null}, {"text": "for", "start": 444, "end": 447, "annotation": null}, {"text": "hydrogen", "start": 448, "end": 456, "annotation": null}, {"text": ",", "start": 456, "end": 457, "annotation": null}, {"text": "CO", "start": 458, "end": 460, "annotation": null}, {"text": "and", "start": 461, "end": 464, "annotation": null}, {"text": "NO2", "start": 465, "end": 468, "annotation": null}, {"text": ".", "start": 468, "end": 469, "annotation": null}], [{"text": "Au", "start": 470, "end": 472, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 473, "end": 486, "annotation": null}, {"text": "have", "start": 487, "end": 491, "annotation": null}, {"text": "been", "start": 492, "end": 496, "annotation": null}, {"text": "found", "start": 497, "end": 502, "annotation": null}, {"text": "to", "start": 503, "end": 505, "annotation": null}, {"text": "improve", "start": 506, "end": 513, "annotation": null}, {"text": "the", "start": 514, "end": 517, "annotation": null}, {"text": "optical", "start": 518, "end": 525, "annotation": null}, {"text": "sensing", "start": 526, "end": 533, "annotation": null}, {"text": "properties", "start": 534, "end": 544, "annotation": null}, {"text": "of", "start": 545, "end": 547, "annotation": null}, {"text": "both", "start": 548, "end": 552, "annotation": null}, {"text": "NiO", "start": 553, "end": 556, "annotation": "BASEMAT"}, {"text": "and", "start": 557, "end": 560, "annotation": null}, {"text": "ZnO", "start": 561, "end": 564, "annotation": "BASEMAT"}, {"text": "films", "start": 565, "end": 570, "annotation": null}, {"text": "over", "start": 571, "end": 575, "annotation": null}, {"text": "the", "start": 576, "end": 579, "annotation": null}, {"text": "Au", "start": 580, "end": 582, "annotation": "DOPANT"}, {"text": "surface", "start": 583, "end": 590, "annotation": null}, {"text": "plasmon", "start": 591, "end": 598, "annotation": null}, {"text": "resonance", "start": 599, "end": 608, "annotation": null}, {"text": "peak", "start": 609, "end": 613, "annotation": null}, {"text": "wavelength", "start": 614, "end": 624, "annotation": null}, {"text": "range", "start": 625, "end": 630, "annotation": null}, {"text": ",", "start": 630, "end": 631, "annotation": null}, {"text": "but", "start": 632, "end": 635, "annotation": null}, {"text": "also", "start": 636, "end": 640, "annotation": null}, {"text": "to", "start": 641, "end": 643, "annotation": null}, {"text": "enhance", "start": 644, "end": 651, "annotation": null}, {"text": "the", "start": 652, "end": 655, "annotation": null}, {"text": "ZnO", "start": 656, "end": 659, "annotation": null}, {"text": "optical", "start": 660, "end": 667, "annotation": null}, {"text": "response", "start": 668, "end": 676, "annotation": null}, {"text": "in", "start": 677, "end": 679, "annotation": null}, {"text": "the", "start": 680, "end": 683, "annotation": null}, {"text": "near", "start": 684, "end": 688, "annotation": null}, {"text": "UV", "start": 689, "end": 691, "annotation": null}, {"text": "range", "start": 692, "end": 697, "annotation": null}, {"text": ",", "start": 697, "end": 698, "annotation": null}, {"text": "where", "start": 699, "end": 704, "annotation": null}, {"text": "Au", "start": 705, "end": 707, "annotation": null}, {"text": "nanoparticles", "start": 708, "end": 721, "annotation": null}, {"text": "are", "start": 722, "end": 725, "annotation": null}, {"text": "optically", "start": 726, "end": 735, "annotation": null}, {"text": "inactive", "start": 736, "end": 744, "annotation": null}, {"text": ".", "start": 744, "end": 745, "annotation": null}], [{"text": "Moreover", "start": 746, "end": 754, "annotation": null}, {"text": ",", "start": 754, "end": 755, "annotation": null}, {"text": "combining", "start": 756, "end": 765, "annotation": null}, {"text": "the", "start": 766, "end": 769, "annotation": null}, {"text": "observed", "start": 770, "end": 778, "annotation": null}, {"text": "shift", "start": 779, "end": 784, "annotation": null}, {"text": "in", "start": 785, "end": 787, "annotation": null}, {"text": "the", "start": 788, "end": 791, "annotation": null}, {"text": "surface", "start": 792, "end": 799, "annotation": null}, {"text": "plasmon", "start": 800, "end": 807, "annotation": null}, {"text": "resonance", "start": 808, "end": 817, "annotation": null}, {"text": "peak", "start": 818, "end": 822, "annotation": null}, {"text": "and", "start": 823, "end": 826, "annotation": null}, {"text": "the", "start": 827, "end": 830, "annotation": null}, {"text": "different", "start": 831, "end": 840, "annotation": null}, {"text": "semiconductive", "start": 841, "end": 855, "annotation": null}, {"text": "type", "start": 856, "end": 860, "annotation": null}, {"text": "of", "start": 861, "end": 863, "annotation": null}, {"text": "the", "start": 864, "end": 867, "annotation": null}, {"text": "two", "start": 868, "end": 871, "annotation": null}, {"text": "oxides", "start": 872, "end": 878, "annotation": "BASEMAT"}, {"text": ",", "start": 878, "end": 879, "annotation": null}, {"text": "it", "start": 880, "end": 882, "annotation": null}, {"text": "has", "start": 883, "end": 886, "annotation": null}, {"text": "been", "start": 887, "end": 891, "annotation": null}, {"text": "proved", "start": 892, "end": 898, "annotation": null}, {"text": "that", "start": 899, "end": 903, "annotation": null}, {"text": "reducing", "start": 904, "end": 912, "annotation": null}, {"text": "gases", "start": 913, "end": 918, "annotation": null}, {"text": "inject", "start": 919, "end": 925, "annotation": null}, {"text": "electrons", "start": 926, "end": 935, "annotation": null}, {"text": "into", "start": 936, "end": 940, "annotation": null}, {"text": "the", "start": 941, "end": 944, "annotation": null}, {"text": "oxide", "start": 945, "end": 950, "annotation": null}, {"text": "and", "start": 951, "end": 954, "annotation": null}, {"text": "then", "start": 955, "end": 959, "annotation": null}, {"text": "afterward", "start": 960, "end": 969, "annotation": null}, {"text": "the", "start": 970, "end": 973, "annotation": null}, {"text": "charge", "start": 974, "end": 980, "annotation": null}, {"text": "variation", "start": 981, "end": 990, "annotation": null}, {"text": "is", "start": 991, "end": 993, "annotation": null}, {"text": "detected", "start": 994, "end": 1002, "annotation": null}, {"text": "by", "start": 1003, "end": 1005, "annotation": null}, {"text": "Au", "start": 1006, "end": 1008, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 1009, "end": 1022, "annotation": null}, {"text": ".", "start": 1022, "end": 1023, "annotation": null}], [{"text": "Electrical", "start": 1024, "end": 1034, "annotation": null}, {"text": "tests", "start": 1035, "end": 1040, "annotation": null}, {"text": "confirm", "start": 1041, "end": 1048, "annotation": null}, {"text": "the", "start": 1049, "end": 1052, "annotation": null}, {"text": "n", "start": 1053, "end": 1054, "annotation": "DOPANT"}, {"text": "-", "start": 1054, "end": 1055, "annotation": "DOPANT"}, {"text": "type", "start": 1055, "end": 1059, "annotation": "DOPANT"}, {"text": "behavior", "start": 1060, "end": 1068, "annotation": null}, {"text": "of", "start": 1069, "end": 1071, "annotation": null}, {"text": "ZnO", "start": 1072, "end": 1075, "annotation": "BASEMAT"}, {"text": "and", "start": 1076, "end": 1079, "annotation": null}, {"text": "p", "start": 1080, "end": 1081, "annotation": "DOPANT"}, {"text": "-", "start": 1081, "end": 1082, "annotation": "DOPANT"}, {"text": "type", "start": 1082, "end": 1086, "annotation": "DOPANT"}, {"text": "behavior", "start": 1087, "end": 1095, "annotation": null}, {"text": "of", "start": 1096, "end": 1098, "annotation": null}, {"text": "NiO", "start": 1099, "end": 1102, "annotation": "BASEMAT"}, {"text": ",", "start": 1102, "end": 1103, "annotation": null}, {"text": "and", "start": 1104, "end": 1107, "annotation": null}, {"text": "show", "start": 1108, "end": 1112, "annotation": null}, {"text": "good", "start": 1113, "end": 1117, "annotation": null}, {"text": "performances", "start": 1118, "end": 1130, "annotation": null}, {"text": "at", "start": 1131, "end": 1133, "annotation": null}, {"text": "lower", "start": 1134, "end": 1139, "annotation": null}, {"text": "temperatures", "start": 1140, "end": 1152, "annotation": null}, {"text": ".", "start": 1152, "end": 1153, "annotation": null}], [{"text": "Moreover", "start": 1154, "end": 1162, "annotation": null}, {"text": ",", "start": 1162, "end": 1163, "annotation": null}, {"text": "an", "start": 1164, "end": 1166, "annotation": null}, {"text": "enhancing", "start": 1167, "end": 1176, "annotation": null}, {"text": "effect", "start": 1177, "end": 1183, "annotation": null}, {"text": "of", "start": 1184, "end": 1186, "annotation": null}, {"text": "Au", "start": 1187, "end": 1189, "annotation": null}, {"text": "nanoparticles", "start": 1190, "end": 1203, "annotation": null}, {"text": "in", "start": 1204, "end": 1206, "annotation": null}, {"text": "the", "start": 1207, "end": 1210, "annotation": null}, {"text": "overall", "start": 1211, "end": 1218, "annotation": null}, {"text": "sensing", "start": 1219, "end": 1226, "annotation": null}, {"text": "performances", "start": 1227, "end": 1239, "annotation": null}, {"text": "is", "start": 1240, "end": 1242, "annotation": null}, {"text": "observed", "start": 1243, "end": 1251, "annotation": null}, {"text": "also", "start": 1252, "end": 1256, "annotation": null}, {"text": "in", "start": 1257, "end": 1259, "annotation": null}, {"text": "electrical", "start": 1260, "end": 1270, "annotation": null}, {"text": "tests", "start": 1271, "end": 1276, "annotation": null}, {"text": ".", "start": 1276, "end": 1277, "annotation": null}]]} -{"text": "We present a theoretical study on Ti-vacancy-induced ferromagnetism in anatase TiO2. A recent experimental study has revealed room temperature ferromagnetism in Ta-doped anatase TiO2thin films (Rusydi et al., 2012) [7]. Ta doping assists the formation of Ti vacancies which then induce the formation of localized magnetic moments around the Ti vacancies. As neighboring Ti vacancies are a few unit cells apart, the ferromagnetic order is suspected to be mediated by itinerant electrons. We propose that such an electron-mediated ferromagnetism is driven by Ruderman\u2013Kittel\u2013Kasuya\u2013Yosida (RKKY) exchange interaction. To examine our hypothesis, we construct a tight-binding based model Hamiltonian for the anatase TiO2 system. We calculate the RKKY exchange coupling constant of TiO2 as a function of distance between local magnetic moments at various temperatures. We model the system by taking only the layer containing a unit of TiO2, at which the Ti vacancy is believed to form, as our effective two-dimensional unit cell. Our model incorporates the Hubbard repulsive interactions between electrons occupying Ti d orbitals treated within mean-field approximation. The density of states profile resulting from the model captures the relevant electronic properties of TiO2, such as the energy gap of ~3.4eV and the n-type character, which may be a measure of the adequacy of the model. The calculated RKKY coupling constant shows that the ferromagnetic coupling extends up to 3\u20134 unit cells and enhances slightly as temperature is increased from 0 to 400K. These results support our hypothesis that the ferromagnetism of this system is driven by RKKY mechanism.", "meta": {"doi": "10.1016/j.physb.2016.08.031"}, "_input_hash": -1824226746, "_task_hash": 1593468526, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "present", "start": 3, "end": 10, "id": 1, "annotation": null}, {"text": "a", "start": 11, "end": 12, "id": 2, "annotation": null}, {"text": "theoretical", "start": 13, "end": 24, "id": 3, "annotation": null}, {"text": "study", "start": 25, "end": 30, "id": 4, "annotation": null}, {"text": "on", "start": 31, "end": 33, "id": 5, "annotation": null}, {"text": "Ti", "start": 34, "end": 36, "id": 6, "annotation": null}, {"text": "-", "start": 37, "end": 38, "id": 7, "annotation": null}, {"text": "vacancy", "start": 39, "end": 46, "id": 8, "annotation": null}, {"text": "-", "start": 47, "end": 48, "id": 9, "annotation": null}, {"text": "induced", "start": 49, "end": 56, "id": 10, "annotation": null}, {"text": "ferromagnetism", "start": 57, "end": 71, "id": 11, "annotation": null}, {"text": "in", "start": 72, "end": 74, "id": 12, "annotation": null}, {"text": "anatase", "start": 75, "end": 82, "id": 13, "annotation": null}, {"text": "TiO2", "start": 83, "end": 87, "id": 14, "annotation": null}, {"text": ".", "start": 88, "end": 89, "id": 15, "annotation": null}], [{"text": "A", "start": 90, "end": 91, "id": 16, "annotation": null}, {"text": "recent", "start": 92, "end": 98, "id": 17, "annotation": null}, {"text": "experimental", "start": 99, "end": 111, "id": 18, "annotation": null}, {"text": "study", "start": 112, "end": 117, "id": 19, "annotation": null}, {"text": "has", "start": 118, "end": 121, "id": 20, "annotation": null}, {"text": "revealed", "start": 122, "end": 130, "id": 21, "annotation": null}, {"text": "room", "start": 131, "end": 135, "id": 22, "annotation": null}, {"text": "temperature", "start": 136, "end": 147, "id": 23, "annotation": null}, {"text": "ferromagnetism", "start": 148, "end": 162, "id": 24, "annotation": null}, {"text": "in", "start": 163, "end": 165, "id": 25, "annotation": null}, {"text": "Ta", "start": 166, "end": 168, "id": 26, "annotation": "DOPANT"}, {"text": "-", "start": 169, "end": 170, "id": 27, "annotation": null}, {"text": "doped", "start": 171, "end": 176, "id": 28, "annotation": null}, {"text": "anatase", "start": 177, "end": 184, "id": 29, "annotation": null}, {"text": "TiO2thin", "start": 185, "end": 193, "id": 30, "annotation": "BASEMAT"}, {"text": "films", "start": 194, "end": 199, "id": 31, "annotation": null}, {"text": "(", "start": 200, "end": 201, "id": 32, "annotation": null}, {"text": "Rusydi", "start": 202, "end": 208, "id": 33, "annotation": null}, {"text": "et", "start": 209, "end": 211, "id": 34, "annotation": null}, {"text": "al", "start": 212, "end": 214, "id": 35, "annotation": null}, {"text": ".", "start": 215, "end": 216, "id": 36, "annotation": null}, {"text": ",", "start": 217, "end": 218, "id": 37, "annotation": null}, {"text": "2012", "start": 219, "end": 223, "id": 38, "annotation": null}, {"text": ")", "start": 224, "end": 225, "id": 39, "annotation": null}, {"text": "[", "start": 226, "end": 227, "id": 40, "annotation": null}, {"text": "7", "start": 228, "end": 229, "id": 41, "annotation": null}, {"text": "]", "start": 230, "end": 231, "id": 42, "annotation": null}, {"text": ".", "start": 232, "end": 233, "id": 43, "annotation": null}], [{"text": "Ta", "start": 234, "end": 236, "id": 44, "annotation": "DOPANT"}, {"text": "doping", "start": 237, "end": 243, "id": 45, "annotation": null}, {"text": "assists", "start": 244, "end": 251, "id": 46, "annotation": null}, {"text": "the", "start": 252, "end": 255, "id": 47, "annotation": null}, {"text": "formation", "start": 256, "end": 265, "id": 48, "annotation": null}, {"text": "of", "start": 266, "end": 268, "id": 49, "annotation": null}, {"text": "Ti", "start": 269, "end": 271, "id": 50, "annotation": null}, {"text": "vacancies", "start": 272, "end": 281, "id": 51, "annotation": null}, {"text": "which", "start": 282, "end": 287, "id": 52, "annotation": null}, {"text": "then", "start": 288, "end": 292, "id": 53, "annotation": null}, {"text": "induce", "start": 293, "end": 299, "id": 54, "annotation": null}, {"text": "the", "start": 300, "end": 303, "id": 55, "annotation": null}, {"text": "formation", "start": 304, "end": 313, "id": 56, "annotation": null}, {"text": "of", "start": 314, "end": 316, "id": 57, "annotation": null}, {"text": "localized", "start": 317, "end": 326, "id": 58, "annotation": null}, {"text": "magnetic", "start": 327, "end": 335, "id": 59, "annotation": null}, {"text": "moments", "start": 336, "end": 343, "id": 60, "annotation": null}, {"text": "around", "start": 344, "end": 350, "id": 61, "annotation": null}, {"text": "the", "start": 351, "end": 354, "id": 62, "annotation": null}, {"text": "Ti", "start": 355, "end": 357, "id": 63, "annotation": null}, {"text": "vacancies", "start": 358, "end": 367, "id": 64, "annotation": null}, {"text": ".", "start": 368, "end": 369, "id": 65, "annotation": null}], [{"text": "As", "start": 370, "end": 372, "id": 66, "annotation": null}, {"text": "neighboring", "start": 373, "end": 384, "id": 67, "annotation": null}, {"text": "Ti", "start": 385, "end": 387, "id": 68, "annotation": null}, {"text": "vacancies", "start": 388, "end": 397, "id": 69, "annotation": null}, {"text": "are", "start": 398, "end": 401, "id": 70, "annotation": null}, {"text": "a", "start": 402, "end": 403, "id": 71, "annotation": null}, {"text": "few", "start": 404, "end": 407, "id": 72, "annotation": null}, {"text": "unit", "start": 408, "end": 412, "id": 73, "annotation": null}, {"text": "cells", "start": 413, "end": 418, "id": 74, "annotation": null}, {"text": "apart", "start": 419, "end": 424, "id": 75, "annotation": null}, {"text": ",", "start": 425, "end": 426, "id": 76, "annotation": null}, {"text": "the", "start": 427, "end": 430, "id": 77, "annotation": null}, {"text": "ferromagnetic", "start": 431, "end": 444, "id": 78, "annotation": null}, {"text": "order", "start": 445, "end": 450, "id": 79, "annotation": null}, {"text": "is", "start": 451, "end": 453, "id": 80, "annotation": null}, {"text": "suspected", "start": 454, "end": 463, "id": 81, "annotation": null}, {"text": "to", "start": 464, "end": 466, "id": 82, "annotation": null}, {"text": "be", "start": 467, "end": 469, "id": 83, "annotation": null}, {"text": "mediated", "start": 470, "end": 478, "id": 84, "annotation": null}, {"text": "by", "start": 479, "end": 481, "id": 85, "annotation": null}, {"text": "itinerant", "start": 482, "end": 491, "id": 86, "annotation": null}, {"text": "electrons", "start": 492, "end": 501, "id": 87, "annotation": null}, {"text": ".", "start": 502, "end": 503, "id": 88, "annotation": null}], [{"text": "We", "start": 504, "end": 506, "id": 89, "annotation": null}, {"text": "propose", "start": 507, "end": 514, "id": 90, "annotation": null}, {"text": "that", "start": 515, "end": 519, "id": 91, "annotation": null}, {"text": "such", "start": 520, "end": 524, "id": 92, "annotation": null}, {"text": "an", "start": 525, "end": 527, "id": 93, "annotation": null}, {"text": "electron", "start": 528, "end": 536, "id": 94, "annotation": null}, {"text": "-", "start": 537, "end": 538, "id": 95, "annotation": null}, {"text": "mediated", "start": 539, "end": 547, "id": 96, "annotation": null}, {"text": "ferromagnetism", "start": 548, "end": 562, "id": 97, "annotation": null}, {"text": "is", "start": 563, "end": 565, "id": 98, "annotation": null}, {"text": "driven", "start": 566, "end": 572, "id": 99, "annotation": null}, {"text": "by", "start": 573, "end": 575, "id": 100, "annotation": null}, {"text": "Ruderman", "start": 576, "end": 584, "id": 101, "annotation": null}, {"text": "\u2013", "start": 585, "end": 586, "id": 102, "annotation": null}, {"text": "Kittel", "start": 587, "end": 593, "id": 103, "annotation": null}, {"text": "\u2013", "start": 594, "end": 595, "id": 104, "annotation": null}, {"text": "Kasuya", "start": 596, "end": 602, "id": 105, "annotation": null}, {"text": "\u2013", "start": 603, "end": 604, "id": 106, "annotation": null}, {"text": "Yosida", "start": 605, "end": 611, "id": 107, "annotation": null}, {"text": "(", "start": 612, "end": 613, "id": 108, "annotation": null}, {"text": "RKKY", "start": 614, "end": 618, "id": 109, "annotation": null}, {"text": ")", "start": 619, "end": 620, "id": 110, "annotation": null}, {"text": "exchange", "start": 621, "end": 629, "id": 111, "annotation": null}, {"text": "interaction", "start": 630, "end": 641, "id": 112, "annotation": null}, {"text": ".", "start": 642, "end": 643, "id": 113, "annotation": null}], [{"text": "To", "start": 644, "end": 646, "id": 114, "annotation": null}, {"text": "examine", "start": 647, "end": 654, "id": 115, "annotation": null}, {"text": "our", "start": 655, "end": 658, "id": 116, "annotation": null}, {"text": "hypothesis", "start": 659, "end": 669, "id": 117, "annotation": null}, {"text": ",", "start": 670, "end": 671, "id": 118, "annotation": null}, {"text": "we", "start": 672, "end": 674, "id": 119, "annotation": null}, {"text": "construct", "start": 675, "end": 684, "id": 120, "annotation": null}, {"text": "a", "start": 685, "end": 686, "id": 121, "annotation": null}, {"text": "tight", "start": 687, "end": 692, "id": 122, "annotation": null}, {"text": "-", "start": 693, "end": 694, "id": 123, "annotation": null}, {"text": "binding", "start": 695, "end": 702, "id": 124, "annotation": null}, {"text": "based", "start": 703, "end": 708, "id": 125, "annotation": null}, {"text": "model", "start": 709, "end": 714, "id": 126, "annotation": null}, {"text": "Hamiltonian", "start": 715, "end": 726, "id": 127, "annotation": null}, {"text": "for", "start": 727, "end": 730, "id": 128, "annotation": null}, {"text": "the", "start": 731, "end": 734, "id": 129, "annotation": null}, {"text": "anatase", "start": 735, "end": 742, "id": 130, "annotation": null}, {"text": "TiO2", "start": 743, "end": 747, "id": 131, "annotation": null}, {"text": "system", "start": 748, "end": 754, "id": 132, "annotation": null}, {"text": ".", "start": 755, "end": 756, "id": 133, "annotation": null}], [{"text": "We", "start": 757, "end": 759, "id": 134, "annotation": null}, {"text": "calculate", "start": 760, "end": 769, "id": 135, "annotation": null}, {"text": "the", "start": 770, "end": 773, "id": 136, "annotation": null}, {"text": "RKKY", "start": 774, "end": 778, "id": 137, "annotation": null}, {"text": "exchange", "start": 779, "end": 787, "id": 138, "annotation": null}, {"text": "coupling", "start": 788, "end": 796, "id": 139, "annotation": null}, {"text": "constant", "start": 797, "end": 805, "id": 140, "annotation": null}, {"text": "of", "start": 806, "end": 808, "id": 141, "annotation": null}, {"text": "TiO2", "start": 809, "end": 813, "id": 142, "annotation": null}, {"text": "as", "start": 814, "end": 816, "id": 143, "annotation": null}, {"text": "a", "start": 817, "end": 818, "id": 144, "annotation": null}, {"text": "function", "start": 819, "end": 827, "id": 145, "annotation": null}, {"text": "of", "start": 828, "end": 830, "id": 146, "annotation": null}, {"text": "distance", "start": 831, "end": 839, "id": 147, "annotation": null}, {"text": "between", "start": 840, "end": 847, "id": 148, "annotation": null}, {"text": "local", "start": 848, "end": 853, "id": 149, "annotation": null}, {"text": "magnetic", "start": 854, "end": 862, "id": 150, "annotation": null}, {"text": "moments", "start": 863, "end": 870, "id": 151, "annotation": null}, {"text": "at", "start": 871, "end": 873, "id": 152, "annotation": null}, {"text": "various", "start": 874, "end": 881, "id": 153, "annotation": null}, {"text": "temperatures", "start": 882, "end": 894, "id": 154, "annotation": null}, {"text": ".", "start": 895, "end": 896, "id": 155, "annotation": null}], [{"text": "We", "start": 897, "end": 899, "id": 156, "annotation": null}, {"text": "model", "start": 900, "end": 905, "id": 157, "annotation": null}, {"text": "the", "start": 906, "end": 909, "id": 158, "annotation": null}, {"text": "system", "start": 910, "end": 916, "id": 159, "annotation": null}, {"text": "by", "start": 917, "end": 919, "id": 160, "annotation": null}, {"text": "taking", "start": 920, "end": 926, "id": 161, "annotation": null}, {"text": "only", "start": 927, "end": 931, "id": 162, "annotation": null}, {"text": "the", "start": 932, "end": 935, "id": 163, "annotation": null}, {"text": "layer", "start": 936, "end": 941, "id": 164, "annotation": null}, {"text": "containing", "start": 942, "end": 952, "id": 165, "annotation": null}, {"text": "a", "start": 953, "end": 954, "id": 166, "annotation": null}, {"text": "unit", "start": 955, "end": 959, "id": 167, "annotation": null}, {"text": "of", "start": 960, "end": 962, "id": 168, "annotation": null}, {"text": "TiO2", "start": 963, "end": 967, "id": 169, "annotation": null}, {"text": ",", "start": 968, "end": 969, "id": 170, "annotation": null}, {"text": "at", "start": 970, "end": 972, "id": 171, "annotation": null}, {"text": "which", "start": 973, "end": 978, "id": 172, "annotation": null}, {"text": "the", "start": 979, "end": 982, "id": 173, "annotation": null}, {"text": "Ti", "start": 983, "end": 985, "id": 174, "annotation": null}, {"text": "vacancy", "start": 986, "end": 993, "id": 175, "annotation": null}, {"text": "is", "start": 994, "end": 996, "id": 176, "annotation": null}, {"text": "believed", "start": 997, "end": 1005, "id": 177, "annotation": null}, {"text": "to", "start": 1006, "end": 1008, "id": 178, "annotation": null}, {"text": "form", "start": 1009, "end": 1013, "id": 179, "annotation": null}, {"text": ",", "start": 1014, "end": 1015, "id": 180, "annotation": null}, {"text": "as", "start": 1016, "end": 1018, "id": 181, "annotation": null}, {"text": "our", "start": 1019, "end": 1022, "id": 182, "annotation": null}, {"text": "effective", "start": 1023, "end": 1032, "id": 183, "annotation": null}, {"text": "two", "start": 1033, "end": 1036, "id": 184, "annotation": null}, {"text": "-", "start": 1037, "end": 1038, "id": 185, "annotation": null}, {"text": "dimensional", "start": 1039, "end": 1050, "id": 186, "annotation": null}, {"text": "unit", "start": 1051, "end": 1055, "id": 187, "annotation": null}, {"text": "cell", "start": 1056, "end": 1060, "id": 188, "annotation": null}, {"text": ".", "start": 1061, "end": 1062, "id": 189, "annotation": null}], [{"text": "Our", "start": 1063, "end": 1066, "id": 190, "annotation": null}, {"text": "model", "start": 1067, "end": 1072, "id": 191, "annotation": null}, {"text": "incorporates", "start": 1073, "end": 1085, "id": 192, "annotation": null}, {"text": "the", "start": 1086, "end": 1089, "id": 193, "annotation": null}, {"text": "Hubbard", "start": 1090, "end": 1097, "id": 194, "annotation": null}, {"text": "repulsive", "start": 1098, "end": 1107, "id": 195, "annotation": null}, {"text": "interactions", "start": 1108, "end": 1120, "id": 196, "annotation": null}, {"text": "between", "start": 1121, "end": 1128, "id": 197, "annotation": null}, {"text": "electrons", "start": 1129, "end": 1138, "id": 198, "annotation": null}, {"text": "occupying", "start": 1139, "end": 1148, "id": 199, "annotation": null}, {"text": "Ti", "start": 1149, "end": 1151, "id": 200, "annotation": null}, {"text": "d", "start": 1152, "end": 1153, "id": 201, "annotation": null}, {"text": "orbitals", "start": 1154, "end": 1162, "id": 202, "annotation": null}, {"text": "treated", "start": 1163, "end": 1170, "id": 203, "annotation": null}, {"text": "within", "start": 1171, "end": 1177, "id": 204, "annotation": null}, {"text": "mean", "start": 1178, "end": 1182, "id": 205, "annotation": null}, {"text": "-", "start": 1183, "end": 1184, "id": 206, "annotation": null}, {"text": "field", "start": 1185, "end": 1190, "id": 207, "annotation": null}, {"text": "approximation", "start": 1191, "end": 1204, "id": 208, "annotation": null}, {"text": ".", "start": 1205, "end": 1206, "id": 209, "annotation": null}], [{"text": "The", "start": 1207, "end": 1210, "id": 210, "annotation": null}, {"text": "density", "start": 1211, "end": 1218, "id": 211, "annotation": null}, {"text": "of", "start": 1219, "end": 1221, "id": 212, "annotation": null}, {"text": "states", "start": 1222, "end": 1228, "id": 213, "annotation": null}, {"text": "profile", "start": 1229, "end": 1236, "id": 214, "annotation": null}, {"text": "resulting", "start": 1237, "end": 1246, "id": 215, "annotation": null}, {"text": "from", "start": 1247, "end": 1251, "id": 216, "annotation": null}, {"text": "the", "start": 1252, "end": 1255, "id": 217, "annotation": null}, {"text": "model", "start": 1256, "end": 1261, "id": 218, "annotation": null}, {"text": "captures", "start": 1262, "end": 1270, "id": 219, "annotation": null}, {"text": "the", "start": 1271, "end": 1274, "id": 220, "annotation": null}, {"text": "relevant", "start": 1275, "end": 1283, "id": 221, "annotation": null}, {"text": "electronic", "start": 1284, "end": 1294, "id": 222, "annotation": null}, {"text": "properties", "start": 1295, "end": 1305, "id": 223, "annotation": null}, {"text": "of", "start": 1306, "end": 1308, "id": 224, "annotation": null}, {"text": "TiO2", "start": 1309, "end": 1313, "id": 225, "annotation": "BASEMAT"}, {"text": ",", "start": 1314, "end": 1315, "id": 226, "annotation": null}, {"text": "such", "start": 1316, "end": 1320, "id": 227, "annotation": null}, {"text": "as", "start": 1321, "end": 1323, "id": 228, "annotation": null}, {"text": "the", "start": 1324, "end": 1327, "id": 229, "annotation": null}, {"text": "energy", "start": 1328, "end": 1334, "id": 230, "annotation": null}, {"text": "gap", "start": 1335, "end": 1338, "id": 231, "annotation": null}, {"text": "of", "start": 1339, "end": 1341, "id": 232, "annotation": null}, {"text": "~3.4eV", "start": 1342, "end": 1348, "id": 233, "annotation": null}, {"text": "and", "start": 1349, "end": 1352, "id": 234, "annotation": null}, {"text": "the", "start": 1353, "end": 1356, "id": 235, "annotation": null}, {"text": "n", "start": 1357, "end": 1358, "id": 236, "annotation": "DOPANT"}, {"text": "-", "start": 1359, "end": 1360, "id": 237, "annotation": null}, {"text": "type", "start": 1361, "end": 1365, "id": 238, "annotation": "DOPANT"}, {"text": "character", "start": 1366, "end": 1375, "id": 239, "annotation": null}, {"text": ",", "start": 1376, "end": 1377, "id": 240, "annotation": null}, {"text": "which", "start": 1378, "end": 1383, "id": 241, "annotation": null}, {"text": "may", "start": 1384, "end": 1387, "id": 242, "annotation": null}, {"text": "be", "start": 1388, "end": 1390, "id": 243, "annotation": null}, {"text": "a", "start": 1391, "end": 1392, "id": 244, "annotation": null}, {"text": "measure", "start": 1393, "end": 1400, "id": 245, "annotation": null}, {"text": "of", "start": 1401, "end": 1403, "id": 246, "annotation": null}, {"text": "the", "start": 1404, "end": 1407, "id": 247, "annotation": null}, {"text": "adequacy", "start": 1408, "end": 1416, "id": 248, "annotation": null}, {"text": "of", "start": 1417, "end": 1419, "id": 249, "annotation": null}, {"text": "the", "start": 1420, "end": 1423, "id": 250, "annotation": null}, {"text": "model", "start": 1424, "end": 1429, "id": 251, "annotation": null}, {"text": ".", "start": 1430, "end": 1431, "id": 252, "annotation": null}], [{"text": "The", "start": 1432, "end": 1435, "id": 253, "annotation": null}, {"text": "calculated", "start": 1436, "end": 1446, "id": 254, "annotation": null}, {"text": "RKKY", "start": 1447, "end": 1451, "id": 255, "annotation": null}, {"text": "coupling", "start": 1452, "end": 1460, "id": 256, "annotation": null}, {"text": "constant", "start": 1461, "end": 1469, "id": 257, "annotation": null}, {"text": "shows", "start": 1470, "end": 1475, "id": 258, "annotation": null}, {"text": "that", "start": 1476, "end": 1480, "id": 259, "annotation": null}, {"text": "the", "start": 1481, "end": 1484, "id": 260, "annotation": null}, {"text": "ferromagnetic", "start": 1485, "end": 1498, "id": 261, "annotation": null}, {"text": "coupling", "start": 1499, "end": 1507, "id": 262, "annotation": null}, {"text": "extends", "start": 1508, "end": 1515, "id": 263, "annotation": null}, {"text": "up", "start": 1516, "end": 1518, "id": 264, "annotation": null}, {"text": "to", "start": 1519, "end": 1521, "id": 265, "annotation": null}, {"text": "3\u20134", "start": 1522, "end": 1525, "id": 266, "annotation": null}, {"text": "unit", "start": 1526, "end": 1530, "id": 267, "annotation": null}, {"text": "cells", "start": 1531, "end": 1536, "id": 268, "annotation": null}, {"text": "and", "start": 1537, "end": 1540, "id": 269, "annotation": null}, {"text": "enhances", "start": 1541, "end": 1549, "id": 270, "annotation": null}, {"text": "slightly", "start": 1550, "end": 1558, "id": 271, "annotation": null}, {"text": "as", "start": 1559, "end": 1561, "id": 272, "annotation": null}, {"text": "temperature", "start": 1562, "end": 1573, "id": 273, "annotation": null}, {"text": "is", "start": 1574, "end": 1576, "id": 274, "annotation": null}, {"text": "increased", "start": 1577, "end": 1586, "id": 275, "annotation": null}, {"text": "from", "start": 1587, "end": 1591, "id": 276, "annotation": null}, {"text": "0", "start": 1592, "end": 1593, "id": 277, "annotation": null}, {"text": "to", "start": 1594, "end": 1596, "id": 278, "annotation": null}, {"text": "400K.", "start": 1597, "end": 1602, "id": 279, "annotation": null}], [{"text": "These", "start": 1603, "end": 1608, "id": 280, "annotation": null}, {"text": "results", "start": 1609, "end": 1616, "id": 281, "annotation": null}, {"text": "support", "start": 1617, "end": 1624, "id": 282, "annotation": null}, {"text": "our", "start": 1625, "end": 1628, "id": 283, "annotation": null}, {"text": "hypothesis", "start": 1629, "end": 1639, "id": 284, "annotation": null}, {"text": "that", "start": 1640, "end": 1644, "id": 285, "annotation": null}, {"text": "the", "start": 1645, "end": 1648, "id": 286, "annotation": null}, {"text": "ferromagnetism", "start": 1649, "end": 1663, "id": 287, "annotation": null}, {"text": "of", "start": 1664, "end": 1666, "id": 288, "annotation": null}, {"text": "this", "start": 1667, "end": 1671, "id": 289, "annotation": null}, {"text": "system", "start": 1672, "end": 1678, "id": 290, "annotation": null}, {"text": "is", "start": 1679, "end": 1681, "id": 291, "annotation": null}, {"text": "driven", "start": 1682, "end": 1688, "id": 292, "annotation": null}, {"text": "by", "start": 1689, "end": 1691, "id": 293, "annotation": null}, {"text": "RKKY", "start": 1692, "end": 1696, "id": 294, "annotation": null}, {"text": "mechanism", "start": 1697, "end": 1706, "id": 295, "annotation": null}, {"text": ".", "start": 1707, "end": 1708, "id": 296, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "Chromium nitride (CrN)-based materials display broad applications as protective coatings for automotive, power generation and aerospace industries, in which surfaces are often subjected to wear and corrosion. By using an appropriate choice of dopant, one can further increase the mechanical hardness, corrosion and oxidation resistance of these coatings. In order to identify the effect of dopants on the structural evolution and surface electronic properties of CrN coatings, Cr1-z(Al/Si)zN coatings were prepared by magnetron sputtering and then characterized via X-ray diffraction (XRD) and soft X-ray synchrotron radiation Near-edge X-ray Absorption Fine Structure (NEXAFS) studies around N K-edge. Higher degree of crystallinity of the coatings were identified through XRD studies. The bonding structure, of the doped CrN coating, was analyzed by Near-edge X-ray Absorption Fine Structure (NEXAFS) measurements performed around the N K-edge (390\u2013450 eV) in the Auger electron yield (AEY) and total fluorescence yield (TFY) modes. NEXAFS analysis revealed Cr3d(Al3p/Si3p)N2p hybridizations in Cr1-z(Al/Si)zN compositions and complex structure splitting via spin\u2013orbit interaction of the Cr3d levels.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Chromium", "start": 0, "end": 8, "annotation": null}, {"text": "nitride", "start": 9, "end": 16, "annotation": null}, {"text": "(CrN)-based", "start": 17, "end": 28, "annotation": null}, {"text": "materials", "start": 29, "end": 38, "annotation": null}, {"text": "display", "start": 39, "end": 46, "annotation": null}, {"text": "broad", "start": 47, "end": 52, "annotation": null}, {"text": "applications", "start": 53, "end": 65, "annotation": null}, {"text": "as", "start": 66, "end": 68, "annotation": null}, {"text": "protective", "start": 69, "end": 79, "annotation": null}, {"text": "coatings", "start": 80, "end": 88, "annotation": null}, {"text": "for", "start": 89, "end": 92, "annotation": null}, {"text": "automotive", "start": 93, "end": 103, "annotation": null}, {"text": ",", "start": 103, "end": 104, "annotation": null}, {"text": "power", "start": 105, "end": 110, "annotation": null}, {"text": "generation", "start": 111, "end": 121, "annotation": null}, {"text": "and", "start": 122, "end": 125, "annotation": null}, {"text": "aerospace", "start": 126, "end": 135, "annotation": null}, {"text": "industries", "start": 136, "end": 146, "annotation": null}, {"text": ",", "start": 146, "end": 147, "annotation": null}, {"text": "in", "start": 148, "end": 150, "annotation": null}, {"text": "which", "start": 151, "end": 156, "annotation": null}, {"text": "surfaces", "start": 157, "end": 165, "annotation": null}, {"text": "are", "start": 166, "end": 169, "annotation": null}, {"text": "often", "start": 170, "end": 175, "annotation": null}, {"text": "subjected", "start": 176, "end": 185, "annotation": null}, {"text": "to", "start": 186, "end": 188, "annotation": null}, {"text": "wear", "start": 189, "end": 193, "annotation": null}, {"text": "and", "start": 194, "end": 197, "annotation": null}, {"text": "corrosion", "start": 198, "end": 207, "annotation": null}, {"text": ".", "start": 207, "end": 208, "annotation": null}], [{"text": "By", "start": 209, "end": 211, "annotation": null}, {"text": "using", "start": 212, "end": 217, "annotation": null}, {"text": "an", "start": 218, "end": 220, "annotation": null}, {"text": "appropriate", "start": 221, "end": 232, "annotation": null}, {"text": "choice", "start": 233, "end": 239, "annotation": null}, {"text": "of", "start": 240, "end": 242, "annotation": null}, {"text": "dopant", "start": 243, "end": 249, "annotation": null}, {"text": ",", "start": 249, "end": 250, "annotation": null}, {"text": "one", "start": 251, "end": 254, "annotation": null}, {"text": "can", "start": 255, "end": 258, "annotation": null}, {"text": "further", "start": 259, "end": 266, "annotation": null}, {"text": "increase", "start": 267, "end": 275, "annotation": null}, {"text": "the", "start": 276, "end": 279, "annotation": null}, {"text": "mechanical", "start": 280, "end": 290, "annotation": null}, {"text": "hardness", "start": 291, "end": 299, "annotation": null}, {"text": ",", "start": 299, "end": 300, "annotation": null}, {"text": "corrosion", "start": 301, "end": 310, "annotation": null}, {"text": "and", "start": 311, "end": 314, "annotation": null}, {"text": "oxidation", "start": 315, "end": 324, "annotation": null}, {"text": "resistance", "start": 325, "end": 335, "annotation": null}, {"text": "of", "start": 336, "end": 338, "annotation": null}, {"text": "these", "start": 339, "end": 344, "annotation": null}, {"text": "coatings", "start": 345, "end": 353, "annotation": null}, {"text": ".", "start": 353, "end": 354, "annotation": null}], [{"text": "In", "start": 355, "end": 357, "annotation": null}, {"text": "order", "start": 358, "end": 363, "annotation": null}, {"text": "to", "start": 364, "end": 366, "annotation": null}, {"text": "identify", "start": 367, "end": 375, "annotation": null}, {"text": "the", "start": 376, "end": 379, "annotation": null}, {"text": "effect", "start": 380, "end": 386, "annotation": null}, {"text": "of", "start": 387, "end": 389, "annotation": null}, {"text": "dopants", "start": 390, "end": 397, "annotation": "DOPANT"}, {"text": "on", "start": 398, "end": 400, "annotation": null}, {"text": "the", "start": 401, "end": 404, "annotation": null}, {"text": "structural", "start": 405, "end": 415, "annotation": null}, {"text": "evolution", "start": 416, "end": 425, "annotation": null}, {"text": "and", "start": 426, "end": 429, "annotation": null}, {"text": "surface", "start": 430, "end": 437, "annotation": null}, {"text": "electronic", "start": 438, "end": 448, "annotation": null}, {"text": "properties", "start": 449, "end": 459, "annotation": null}, {"text": "of", "start": 460, "end": 462, "annotation": null}, {"text": "CrN", "start": 463, "end": 466, "annotation": "BASEMAT"}, {"text": "coatings", "start": 467, "end": 475, "annotation": null}, {"text": ",", "start": 475, "end": 476, "annotation": null}, {"text": "Cr1", "start": 477, "end": 480, "annotation": null}, {"text": "-", "start": 480, "end": 481, "annotation": null}, {"text": "z(Al", "start": 481, "end": 485, "annotation": null}, {"text": "/", "start": 485, "end": 486, "annotation": null}, {"text": "Si)zN", "start": 486, "end": 491, "annotation": null}, {"text": "coatings", "start": 492, "end": 500, "annotation": null}, {"text": "were", "start": 501, "end": 505, "annotation": null}, {"text": "prepared", "start": 506, "end": 514, "annotation": null}, {"text": "by", "start": 515, "end": 517, "annotation": null}, {"text": "magnetron", "start": 518, "end": 527, "annotation": null}, {"text": "sputtering", "start": 528, "end": 538, "annotation": null}, {"text": "and", "start": 539, "end": 542, "annotation": null}, {"text": "then", "start": 543, "end": 547, "annotation": null}, {"text": "characterized", "start": 548, "end": 561, "annotation": null}, {"text": "via", "start": 562, "end": 565, "annotation": null}, {"text": "X-ray", "start": 566, "end": 571, "annotation": null}, {"text": "diffraction", "start": 572, "end": 583, "annotation": null}, {"text": "(", "start": 584, "end": 585, "annotation": null}, {"text": "XRD", "start": 585, "end": 588, "annotation": null}, {"text": ")", "start": 588, "end": 589, "annotation": null}, {"text": "and", "start": 590, "end": 593, "annotation": null}, {"text": "soft", "start": 594, "end": 598, "annotation": null}, {"text": "X-ray", "start": 599, "end": 604, "annotation": null}, {"text": "synchrotron", "start": 605, "end": 616, "annotation": null}, {"text": "radiation", "start": 617, "end": 626, "annotation": null}, {"text": "Near", "start": 627, "end": 631, "annotation": null}, {"text": "-", "start": 631, "end": 632, "annotation": null}, {"text": "edge", "start": 632, "end": 636, "annotation": null}, {"text": "X-ray", "start": 637, "end": 642, "annotation": null}, {"text": "Absorption", "start": 643, "end": 653, "annotation": null}, {"text": "Fine", "start": 654, "end": 658, "annotation": null}, {"text": "Structure", "start": 659, "end": 668, "annotation": null}, {"text": "(", "start": 669, "end": 670, "annotation": null}, {"text": "NEXAFS", "start": 670, "end": 676, "annotation": null}, {"text": ")", "start": 676, "end": 677, "annotation": null}, {"text": "studies", "start": 678, "end": 685, "annotation": null}, {"text": "around", "start": 686, "end": 692, "annotation": null}, {"text": "N", "start": 693, "end": 694, "annotation": null}, {"text": "K", "start": 695, "end": 696, "annotation": null}, {"text": "-", "start": 696, "end": 697, "annotation": null}, {"text": "edge", "start": 697, "end": 701, "annotation": null}, {"text": ".", "start": 701, "end": 702, "annotation": null}], [{"text": "Higher", "start": 703, "end": 709, "annotation": null}, {"text": "degree", "start": 710, "end": 716, "annotation": null}, {"text": "of", "start": 717, "end": 719, "annotation": null}, {"text": "crystallinity", "start": 720, "end": 733, "annotation": null}, {"text": "of", "start": 734, "end": 736, "annotation": null}, {"text": "the", "start": 737, "end": 740, "annotation": null}, {"text": "coatings", "start": 741, "end": 749, "annotation": null}, {"text": "were", "start": 750, "end": 754, "annotation": null}, {"text": "identified", "start": 755, "end": 765, "annotation": null}, {"text": "through", "start": 766, "end": 773, "annotation": null}, {"text": "XRD", "start": 774, "end": 777, "annotation": null}, {"text": "studies", "start": 778, "end": 785, "annotation": null}, {"text": ".", "start": 785, "end": 786, "annotation": null}], [{"text": "The", "start": 787, "end": 790, "annotation": null}, {"text": "bonding", "start": 791, "end": 798, "annotation": null}, {"text": "structure", "start": 799, "end": 808, "annotation": null}, {"text": ",", "start": 808, "end": 809, "annotation": null}, {"text": "of", "start": 810, "end": 812, "annotation": null}, {"text": "the", "start": 813, "end": 816, "annotation": null}, {"text": "doped", "start": 817, "end": 822, "annotation": "DOPANT"}, {"text": "CrN", "start": 823, "end": 826, "annotation": "BASEMAT"}, {"text": "coating", "start": 827, "end": 834, "annotation": null}, {"text": ",", "start": 834, "end": 835, "annotation": null}, {"text": "was", "start": 836, "end": 839, "annotation": null}, {"text": "analyzed", "start": 840, "end": 848, "annotation": null}, {"text": "by", "start": 849, "end": 851, "annotation": null}, {"text": "Near", "start": 852, "end": 856, "annotation": null}, {"text": "-", "start": 856, "end": 857, "annotation": null}, {"text": "edge", "start": 857, "end": 861, "annotation": null}, {"text": "X-ray", "start": 862, "end": 867, "annotation": null}, {"text": "Absorption", "start": 868, "end": 878, "annotation": null}, {"text": "Fine", "start": 879, "end": 883, "annotation": null}, {"text": "Structure", "start": 884, "end": 893, "annotation": null}, {"text": "(", "start": 894, "end": 895, "annotation": null}, {"text": "NEXAFS", "start": 895, "end": 901, "annotation": null}, {"text": ")", "start": 901, "end": 902, "annotation": null}, {"text": "measurements", "start": 903, "end": 915, "annotation": null}, {"text": "performed", "start": 916, "end": 925, "annotation": null}, {"text": "around", "start": 926, "end": 932, "annotation": null}, {"text": "the", "start": 933, "end": 936, "annotation": null}, {"text": "N", "start": 937, "end": 938, "annotation": null}, {"text": "K", "start": 939, "end": 940, "annotation": null}, {"text": "-", "start": 940, "end": 941, "annotation": null}, {"text": "edge", "start": 941, "end": 945, "annotation": null}, {"text": "(", "start": 946, "end": 947, "annotation": null}, {"text": "390", "start": 947, "end": 950, "annotation": null}, {"text": "\u2013", "start": 950, "end": 951, "annotation": null}, {"text": "450", "start": 951, "end": 954, "annotation": null}, {"text": "eV", "start": 955, "end": 957, "annotation": null}, {"text": ")", "start": 957, "end": 958, "annotation": null}, {"text": "in", "start": 959, "end": 961, "annotation": null}, {"text": "the", "start": 962, "end": 965, "annotation": null}, {"text": "Auger", "start": 966, "end": 971, "annotation": null}, {"text": "electron", "start": 972, "end": 980, "annotation": null}, {"text": "yield", "start": 981, "end": 986, "annotation": null}, {"text": "(", "start": 987, "end": 988, "annotation": null}, {"text": "AEY", "start": 988, "end": 991, "annotation": null}, {"text": ")", "start": 991, "end": 992, "annotation": null}, {"text": "and", "start": 993, "end": 996, "annotation": null}, {"text": "total", "start": 997, "end": 1002, "annotation": null}, {"text": "fluorescence", "start": 1003, "end": 1015, "annotation": null}, {"text": "yield", "start": 1016, "end": 1021, "annotation": null}, {"text": "(", "start": 1022, "end": 1023, "annotation": null}, {"text": "TFY", "start": 1023, "end": 1026, "annotation": null}, {"text": ")", "start": 1026, "end": 1027, "annotation": null}, {"text": "modes", "start": 1028, "end": 1033, "annotation": null}, {"text": ".", "start": 1033, "end": 1034, "annotation": null}], [{"text": "NEXAFS", "start": 1035, "end": 1041, "annotation": null}, {"text": "analysis", "start": 1042, "end": 1050, "annotation": null}, {"text": "revealed", "start": 1051, "end": 1059, "annotation": null}, {"text": "Cr3d(Al3p", "start": 1060, "end": 1069, "annotation": null}, {"text": "/", "start": 1069, "end": 1070, "annotation": null}, {"text": "Si3p)N2p", "start": 1070, "end": 1078, "annotation": null}, {"text": "hybridizations", "start": 1079, "end": 1093, "annotation": null}, {"text": "in", "start": 1094, "end": 1096, "annotation": null}, {"text": "Cr1", "start": 1097, "end": 1100, "annotation": null}, {"text": "-", "start": 1100, "end": 1101, "annotation": null}, {"text": "z(Al", "start": 1101, "end": 1105, "annotation": null}, {"text": "/", "start": 1105, "end": 1106, "annotation": null}, {"text": "Si)zN", "start": 1106, "end": 1111, "annotation": null}, {"text": "compositions", "start": 1112, "end": 1124, "annotation": null}, {"text": "and", "start": 1125, "end": 1128, "annotation": null}, {"text": "complex", "start": 1129, "end": 1136, "annotation": null}, {"text": "structure", "start": 1137, "end": 1146, "annotation": null}, {"text": "splitting", "start": 1147, "end": 1156, "annotation": null}, {"text": "via", "start": 1157, "end": 1160, "annotation": null}, {"text": "spin", "start": 1161, "end": 1165, "annotation": null}, {"text": "\u2013", "start": 1165, "end": 1166, "annotation": null}, {"text": "orbit", "start": 1166, "end": 1171, "annotation": null}, {"text": "interaction", "start": 1172, "end": 1183, "annotation": null}, {"text": "of", "start": 1184, "end": 1186, "annotation": null}, {"text": "the", "start": 1187, "end": 1190, "annotation": null}, {"text": "Cr3d", "start": 1191, "end": 1195, "annotation": null}, {"text": "levels", "start": 1196, "end": 1202, "annotation": null}, {"text": ".", "start": 1202, "end": 1203, "annotation": null}]], "meta": {"doi": "10.1016/j.jallcom.2015.11.128"}} +{"remark": "doping_annt1", "text": "The systems Y1-xPrxBa2Cu3Oz with x=0 to 1 and YBa2(Cu1-yMy)3Oz, MFe and Co, with y=0 to 0.26, and z=6 and 7, doped with 57Fe, have been studied by dc magnetometry to determine the superconducting phase transition temperature and by 57Fe M\u00f6ssbauer spectroscopy to determine the antiferromagnetic phase transition temperature TN of the Cu(2) site. In those cases where substitution is made out of the CuO2 planes, for z=7, Tc is reduced with increasing the dopant concentration. Antiferromagnetism is found at concentrations where the superconductivity disappears, which means that the materials exhibit either superconductivity or antiferromagnetic order, depending on composition. The phase diagrams obtained are very similar to the well-known oxygen content dependence phase diagram. For z=6, TN changes very little with x or y. There is no conclusive evidence for overlap of superconductivity and antiferromagnetism. For substitution of Zn in the CuO2 plane (Zn) a different behavior is observed. Here the magnetic order is never found in oxygen rich samples, and appears in oxygen poor samples only for y<0.08. \u00a9 1990.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "systems", "start": 4, "end": 11, "annotation": null}, {"text": "Y1-xPrxBa2Cu3Oz", "start": 12, "end": 27, "annotation": "BASEMAT"}, {"text": "with", "start": 28, "end": 32, "annotation": "BASEMAT"}, {"text": "x", "start": 33, "end": 34, "annotation": "BASEMAT"}, {"text": "=", "start": 34, "end": 35, "annotation": "BASEMAT"}, {"text": "0", "start": 35, "end": 36, "annotation": "BASEMAT"}, {"text": "to", "start": 37, "end": 39, "annotation": "BASEMAT"}, {"text": "1", "start": 40, "end": 41, "annotation": "BASEMAT"}, {"text": "and", "start": 42, "end": 45, "annotation": null}, {"text": "YBa2(Cu1-yMy)3Oz", "start": 46, "end": 62, "annotation": "BASEMAT"}, {"text": ",", "start": 62, "end": 63, "annotation": "BASEMAT"}, {"text": "MFe", "start": 64, "end": 67, "annotation": "BASEMAT"}, {"text": "and", "start": 68, "end": 71, "annotation": "BASEMAT"}, {"text": "Co", "start": 72, "end": 74, "annotation": "BASEMAT"}, {"text": ",", "start": 74, "end": 75, "annotation": "BASEMAT"}, {"text": "with", "start": 76, "end": 80, "annotation": "BASEMAT"}, {"text": "y", "start": 81, "end": 82, "annotation": "BASEMAT"}, {"text": "=", "start": 82, "end": 83, "annotation": "BASEMAT"}, {"text": "0", "start": 83, "end": 84, "annotation": "BASEMAT"}, {"text": "to", "start": 85, "end": 87, "annotation": "BASEMAT"}, {"text": "0.26", "start": 88, "end": 92, "annotation": "BASEMAT"}, {"text": ",", "start": 92, "end": 93, "annotation": "BASEMAT"}, {"text": "and", "start": 94, "end": 97, "annotation": "BASEMAT"}, {"text": "z", "start": 98, "end": 99, "annotation": "BASEMAT"}, {"text": "=", "start": 99, "end": 100, "annotation": "BASEMAT"}, {"text": "6", "start": 100, "end": 101, "annotation": "BASEMAT"}, {"text": "and", "start": 102, "end": 105, "annotation": "BASEMAT"}, {"text": "7", "start": 106, "end": 107, "annotation": "BASEMAT"}, {"text": ",", "start": 107, "end": 108, "annotation": null}, {"text": "doped", "start": 109, "end": 114, "annotation": null}, {"text": "with", "start": 115, "end": 119, "annotation": null}, {"text": "57Fe", "start": 120, "end": 124, "annotation": "DOPANT"}, {"text": ",", "start": 124, "end": 125, "annotation": null}, {"text": "have", "start": 126, "end": 130, "annotation": null}, {"text": "been", "start": 131, "end": 135, "annotation": null}, {"text": "studied", "start": 136, "end": 143, "annotation": null}, {"text": "by", "start": 144, "end": 146, "annotation": null}, {"text": "dc", "start": 147, "end": 149, "annotation": null}, {"text": "magnetometry", "start": 150, "end": 162, "annotation": null}, {"text": "to", "start": 163, "end": 165, "annotation": null}, {"text": "determine", "start": 166, "end": 175, "annotation": null}, {"text": "the", "start": 176, "end": 179, "annotation": null}, {"text": "superconducting", "start": 180, "end": 195, "annotation": null}, {"text": "phase", "start": 196, "end": 201, "annotation": null}, {"text": "transition", "start": 202, "end": 212, "annotation": null}, {"text": "temperature", "start": 213, "end": 224, "annotation": null}, {"text": "and", "start": 225, "end": 228, "annotation": null}, {"text": "by", "start": 229, "end": 231, "annotation": null}, {"text": "57Fe", "start": 232, "end": 236, "annotation": null}, {"text": "M\u00f6ssbauer", "start": 237, "end": 246, "annotation": null}, {"text": "spectroscopy", "start": 247, "end": 259, "annotation": null}, {"text": "to", "start": 260, "end": 262, "annotation": null}, {"text": "determine", "start": 263, "end": 272, "annotation": null}, {"text": "the", "start": 273, "end": 276, "annotation": null}, {"text": "antiferromagnetic", "start": 277, "end": 294, "annotation": null}, {"text": "phase", "start": 295, "end": 300, "annotation": null}, {"text": "transition", "start": 301, "end": 311, "annotation": null}, {"text": "temperature", "start": 312, "end": 323, "annotation": null}, {"text": "TN", "start": 324, "end": 326, "annotation": null}, {"text": "of", "start": 327, "end": 329, "annotation": null}, {"text": "the", "start": 330, "end": 333, "annotation": null}, {"text": "Cu(2)", "start": 334, "end": 339, "annotation": null}, {"text": "site", "start": 340, "end": 344, "annotation": null}, {"text": ".", "start": 344, "end": 345, "annotation": null}], [{"text": "In", "start": 346, "end": 348, "annotation": null}, {"text": "those", "start": 349, "end": 354, "annotation": null}, {"text": "cases", "start": 355, "end": 360, "annotation": null}, {"text": "where", "start": 361, "end": 366, "annotation": null}, {"text": "substitution", "start": 367, "end": 379, "annotation": null}, {"text": "is", "start": 380, "end": 382, "annotation": null}, {"text": "made", "start": 383, "end": 387, "annotation": null}, {"text": "out", "start": 388, "end": 391, "annotation": null}, {"text": "of", "start": 392, "end": 394, "annotation": null}, {"text": "the", "start": 395, "end": 398, "annotation": null}, {"text": "CuO2", "start": 399, "end": 403, "annotation": null}, {"text": "planes", "start": 404, "end": 410, "annotation": null}, {"text": ",", "start": 410, "end": 411, "annotation": null}, {"text": "for", "start": 412, "end": 415, "annotation": null}, {"text": "z", "start": 416, "end": 417, "annotation": null}, {"text": "=", "start": 417, "end": 418, "annotation": null}, {"text": "7", "start": 418, "end": 419, "annotation": null}, {"text": ",", "start": 419, "end": 420, "annotation": null}, {"text": "Tc", "start": 421, "end": 423, "annotation": null}, {"text": "is", "start": 424, "end": 426, "annotation": null}, {"text": "reduced", "start": 427, "end": 434, "annotation": null}, {"text": "with", "start": 435, "end": 439, "annotation": null}, {"text": "increasing", "start": 440, "end": 450, "annotation": null}, {"text": "the", "start": 451, "end": 454, "annotation": null}, {"text": "dopant", "start": 455, "end": 461, "annotation": null}, {"text": "concentration", "start": 462, "end": 475, "annotation": null}, {"text": ".", "start": 475, "end": 476, "annotation": null}], [{"text": "Antiferromagnetism", "start": 477, "end": 495, "annotation": null}, {"text": "is", "start": 496, "end": 498, "annotation": null}, {"text": "found", "start": 499, "end": 504, "annotation": null}, {"text": "at", "start": 505, "end": 507, "annotation": null}, {"text": "concentrations", "start": 508, "end": 522, "annotation": null}, {"text": "where", "start": 523, "end": 528, "annotation": null}, {"text": "the", "start": 529, "end": 532, "annotation": null}, {"text": "superconductivity", "start": 533, "end": 550, "annotation": null}, {"text": "disappears", "start": 551, "end": 561, "annotation": null}, {"text": ",", "start": 561, "end": 562, "annotation": null}, {"text": "which", "start": 563, "end": 568, "annotation": null}, {"text": "means", "start": 569, "end": 574, "annotation": null}, {"text": "that", "start": 575, "end": 579, "annotation": null}, {"text": "the", "start": 580, "end": 583, "annotation": null}, {"text": "materials", "start": 584, "end": 593, "annotation": null}, {"text": "exhibit", "start": 594, "end": 601, "annotation": null}, {"text": "either", "start": 602, "end": 608, "annotation": null}, {"text": "superconductivity", "start": 609, "end": 626, "annotation": null}, {"text": "or", "start": 627, "end": 629, "annotation": null}, {"text": "antiferromagnetic", "start": 630, "end": 647, "annotation": null}, {"text": "order", "start": 648, "end": 653, "annotation": null}, {"text": ",", "start": 653, "end": 654, "annotation": null}, {"text": "depending", "start": 655, "end": 664, "annotation": null}, {"text": "on", "start": 665, "end": 667, "annotation": null}, {"text": "composition", "start": 668, "end": 679, "annotation": null}, {"text": ".", "start": 679, "end": 680, "annotation": null}], [{"text": "The", "start": 681, "end": 684, "annotation": null}, {"text": "phase", "start": 685, "end": 690, "annotation": null}, {"text": "diagrams", "start": 691, "end": 699, "annotation": null}, {"text": "obtained", "start": 700, "end": 708, "annotation": null}, {"text": "are", "start": 709, "end": 712, "annotation": null}, {"text": "very", "start": 713, "end": 717, "annotation": null}, {"text": "similar", "start": 718, "end": 725, "annotation": null}, {"text": "to", "start": 726, "end": 728, "annotation": null}, {"text": "the", "start": 729, "end": 732, "annotation": null}, {"text": "well", "start": 733, "end": 737, "annotation": null}, {"text": "-", "start": 737, "end": 738, "annotation": null}, {"text": "known", "start": 738, "end": 743, "annotation": null}, {"text": "oxygen", "start": 744, "end": 750, "annotation": null}, {"text": "content", "start": 751, "end": 758, "annotation": null}, {"text": "dependence", "start": 759, "end": 769, "annotation": null}, {"text": "phase", "start": 770, "end": 775, "annotation": null}, {"text": "diagram", "start": 776, "end": 783, "annotation": null}, {"text": ".", "start": 783, "end": 784, "annotation": null}], [{"text": "For", "start": 785, "end": 788, "annotation": null}, {"text": "z", "start": 789, "end": 790, "annotation": null}, {"text": "=", "start": 790, "end": 791, "annotation": null}, {"text": "6", "start": 791, "end": 792, "annotation": null}, {"text": ",", "start": 792, "end": 793, "annotation": null}, {"text": "TN", "start": 794, "end": 796, "annotation": null}, {"text": "changes", "start": 797, "end": 804, "annotation": null}, {"text": "very", "start": 805, "end": 809, "annotation": null}, {"text": "little", "start": 810, "end": 816, "annotation": null}, {"text": "with", "start": 817, "end": 821, "annotation": null}, {"text": "x", "start": 822, "end": 823, "annotation": null}, {"text": "or", "start": 824, "end": 826, "annotation": null}, {"text": "y", "start": 827, "end": 828, "annotation": null}, {"text": ".", "start": 828, "end": 829, "annotation": null}], [{"text": "There", "start": 830, "end": 835, "annotation": null}, {"text": "is", "start": 836, "end": 838, "annotation": null}, {"text": "no", "start": 839, "end": 841, "annotation": null}, {"text": "conclusive", "start": 842, "end": 852, "annotation": null}, {"text": "evidence", "start": 853, "end": 861, "annotation": null}, {"text": "for", "start": 862, "end": 865, "annotation": null}, {"text": "overlap", "start": 866, "end": 873, "annotation": null}, {"text": "of", "start": 874, "end": 876, "annotation": null}, {"text": "superconductivity", "start": 877, "end": 894, "annotation": null}, {"text": "and", "start": 895, "end": 898, "annotation": null}, {"text": "antiferromagnetism", "start": 899, "end": 917, "annotation": null}, {"text": ".", "start": 917, "end": 918, "annotation": null}], [{"text": "For", "start": 919, "end": 922, "annotation": null}, {"text": "substitution", "start": 923, "end": 935, "annotation": null}, {"text": "of", "start": 936, "end": 938, "annotation": null}, {"text": "Zn", "start": 939, "end": 941, "annotation": null}, {"text": "in", "start": 942, "end": 944, "annotation": null}, {"text": "the", "start": 945, "end": 948, "annotation": null}, {"text": "CuO2", "start": 949, "end": 953, "annotation": null}, {"text": "plane", "start": 954, "end": 959, "annotation": null}, {"text": "(", "start": 960, "end": 961, "annotation": null}, {"text": "Zn", "start": 961, "end": 963, "annotation": null}, {"text": ")", "start": 963, "end": 964, "annotation": null}, {"text": "a", "start": 965, "end": 966, "annotation": null}, {"text": "different", "start": 967, "end": 976, "annotation": null}, {"text": "behavior", "start": 977, "end": 985, "annotation": null}, {"text": "is", "start": 986, "end": 988, "annotation": null}, {"text": "observed", "start": 989, "end": 997, "annotation": null}, {"text": ".", "start": 997, "end": 998, "annotation": null}], [{"text": "Here", "start": 999, "end": 1003, "annotation": null}, {"text": "the", "start": 1004, "end": 1007, "annotation": null}, {"text": "magnetic", "start": 1008, "end": 1016, "annotation": null}, {"text": "order", "start": 1017, "end": 1022, "annotation": null}, {"text": "is", "start": 1023, "end": 1025, "annotation": null}, {"text": "never", "start": 1026, "end": 1031, "annotation": null}, {"text": "found", "start": 1032, "end": 1037, "annotation": null}, {"text": "in", "start": 1038, "end": 1040, "annotation": null}, {"text": "oxygen", "start": 1041, "end": 1047, "annotation": null}, {"text": "rich", "start": 1048, "end": 1052, "annotation": null}, {"text": "samples", "start": 1053, "end": 1060, "annotation": null}, {"text": ",", "start": 1060, "end": 1061, "annotation": null}, {"text": "and", "start": 1062, "end": 1065, "annotation": null}, {"text": "appears", "start": 1066, "end": 1073, "annotation": null}, {"text": "in", "start": 1074, "end": 1076, "annotation": null}, {"text": "oxygen", "start": 1077, "end": 1083, "annotation": null}, {"text": "poor", "start": 1084, "end": 1088, "annotation": null}, {"text": "samples", "start": 1089, "end": 1096, "annotation": null}, {"text": "only", "start": 1097, "end": 1101, "annotation": null}, {"text": "for", "start": 1102, "end": 1105, "annotation": null}, {"text": "y", "start": 1106, "end": 1107, "annotation": null}, {"text": "<", "start": 1107, "end": 1108, "annotation": null}, {"text": "0.08", "start": 1108, "end": 1112, "annotation": null}, {"text": ".", "start": 1112, "end": 1113, "annotation": null}]], "meta": {"doi": "10.1016/0378-4371(90)90373-Z"}} +{"remark": "doping_annt2", "text": "The laser performance at 491 and 635 nm of praseodymium-doped fluorozirconate fiber pumped at 1.01 \u03bcm and 835 nm is described and is interpreted with analytical solutions to the rate equations. Spectroscopic measurements of the absorption and the emission cross sections are presented, and the values are shown to be consistent with the observed lasing performance. The analytical model is shown to be a reliable indication of the optimum length of fiber for operation on the three-level 491-nm transition. \u00a9 1994 Optical Society of America.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "laser", "start": 4, "end": 9, "annotation": null}, {"text": "performance", "start": 10, "end": 21, "annotation": null}, {"text": "at", "start": 22, "end": 24, "annotation": null}, {"text": "491", "start": 25, "end": 28, "annotation": null}, {"text": "and", "start": 29, "end": 32, "annotation": null}, {"text": "635", "start": 33, "end": 36, "annotation": null}, {"text": "nm", "start": 37, "end": 39, "annotation": null}, {"text": "of", "start": 40, "end": 42, "annotation": null}, {"text": "praseodymium", "start": 43, "end": 55, "annotation": "DOPANT"}, {"text": "-", "start": 55, "end": 56, "annotation": null}, {"text": "doped", "start": 56, "end": 61, "annotation": null}, {"text": "fluorozirconate", "start": 62, "end": 77, "annotation": "BASEMAT"}, {"text": "fiber", "start": 78, "end": 83, "annotation": null}, {"text": "pumped", "start": 84, "end": 90, "annotation": null}, {"text": "at", "start": 91, "end": 93, "annotation": null}, {"text": "1.01", "start": 94, "end": 98, "annotation": null}, {"text": "\u03bcm", "start": 99, "end": 101, "annotation": null}, {"text": "and", "start": 102, "end": 105, "annotation": null}, {"text": "835", "start": 106, "end": 109, "annotation": null}, {"text": "nm", "start": 110, "end": 112, "annotation": null}, {"text": "is", "start": 113, "end": 115, "annotation": null}, {"text": "described", "start": 116, "end": 125, "annotation": null}, {"text": "and", "start": 126, "end": 129, "annotation": null}, {"text": "is", "start": 130, "end": 132, "annotation": null}, {"text": "interpreted", "start": 133, "end": 144, "annotation": null}, {"text": "with", "start": 145, "end": 149, "annotation": null}, {"text": "analytical", "start": 150, "end": 160, "annotation": null}, {"text": "solutions", "start": 161, "end": 170, "annotation": null}, {"text": "to", "start": 171, "end": 173, "annotation": null}, {"text": "the", "start": 174, "end": 177, "annotation": null}, {"text": "rate", "start": 178, "end": 182, "annotation": null}, {"text": "equations", "start": 183, "end": 192, "annotation": null}, {"text": ".", "start": 192, "end": 193, "annotation": null}], [{"text": "Spectroscopic", "start": 194, "end": 207, "annotation": null}, {"text": "measurements", "start": 208, "end": 220, "annotation": null}, {"text": "of", "start": 221, "end": 223, "annotation": null}, {"text": "the", "start": 224, "end": 227, "annotation": null}, {"text": "absorption", "start": 228, "end": 238, "annotation": null}, {"text": "and", "start": 239, "end": 242, "annotation": null}, {"text": "the", "start": 243, "end": 246, "annotation": null}, {"text": "emission", "start": 247, "end": 255, "annotation": null}, {"text": "cross", "start": 256, "end": 261, "annotation": null}, {"text": "sections", "start": 262, "end": 270, "annotation": null}, {"text": "are", "start": 271, "end": 274, "annotation": null}, {"text": "presented", "start": 275, "end": 284, "annotation": null}, {"text": ",", "start": 284, "end": 285, "annotation": null}, {"text": "and", "start": 286, "end": 289, "annotation": null}, {"text": "the", "start": 290, "end": 293, "annotation": null}, {"text": "values", "start": 294, "end": 300, "annotation": null}, {"text": "are", "start": 301, "end": 304, "annotation": null}, {"text": "shown", "start": 305, "end": 310, "annotation": null}, {"text": "to", "start": 311, "end": 313, "annotation": null}, {"text": "be", "start": 314, "end": 316, "annotation": null}, {"text": "consistent", "start": 317, "end": 327, "annotation": null}, {"text": "with", "start": 328, "end": 332, "annotation": null}, {"text": "the", "start": 333, "end": 336, "annotation": null}, {"text": "observed", "start": 337, "end": 345, "annotation": null}, {"text": "lasing", "start": 346, "end": 352, "annotation": null}, {"text": "performance", "start": 353, "end": 364, "annotation": null}, {"text": ".", "start": 364, "end": 365, "annotation": null}], [{"text": "The", "start": 366, "end": 369, "annotation": null}, {"text": "analytical", "start": 370, "end": 380, "annotation": null}, {"text": "model", "start": 381, "end": 386, "annotation": null}, {"text": "is", "start": 387, "end": 389, "annotation": null}, {"text": "shown", "start": 390, "end": 395, "annotation": null}, {"text": "to", "start": 396, "end": 398, "annotation": null}, {"text": "be", "start": 399, "end": 401, "annotation": null}, {"text": "a", "start": 402, "end": 403, "annotation": null}, {"text": "reliable", "start": 404, "end": 412, "annotation": null}, {"text": "indication", "start": 413, "end": 423, "annotation": null}, {"text": "of", "start": 424, "end": 426, "annotation": null}, {"text": "the", "start": 427, "end": 430, "annotation": null}, {"text": "optimum", "start": 431, "end": 438, "annotation": null}, {"text": "length", "start": 439, "end": 445, "annotation": null}, {"text": "of", "start": 446, "end": 448, "annotation": null}, {"text": "fiber", "start": 449, "end": 454, "annotation": null}, {"text": "for", "start": 455, "end": 458, "annotation": null}, {"text": "operation", "start": 459, "end": 468, "annotation": null}, {"text": "on", "start": 469, "end": 471, "annotation": null}, {"text": "the", "start": 472, "end": 475, "annotation": null}, {"text": "three", "start": 476, "end": 481, "annotation": null}, {"text": "-", "start": 481, "end": 482, "annotation": null}, {"text": "level", "start": 482, "end": 487, "annotation": null}, {"text": "491-nm", "start": 488, "end": 494, "annotation": null}, {"text": "transition", "start": 495, "end": 505, "annotation": null}, {"text": ".", "start": 505, "end": 506, "annotation": null}]], "meta": {"doi": "10.1364/JOSAB.11.000886"}} +{"remark": "doping_annt1", "text": "In this paper, effect of lanthanum doping on the dielectric and piezoelectric properties of the morphotropic phase boundary (MPB) composition in the Pb(Zn1/3Nb2/3)O3-BaTiO3-PbTiO3 system is presented. Samples were prepared according to the formula Pb0.85\u2212xBa0.15Lax[(Zn1/3Nb2/3)0.7Ti0.3]1\u2212x/4O3 (0 < x < 0.3), where the compensation for La ions was achieved via the appearance of B-site vacancies. All the compositions were synthesized using columbite precursor method and sintered using inverted crucible approach. Results of x-ray diffraction demonstrate that the solid solubility limit of La2O3 in the PZN-based MPB composition is more than 30 mole%. Incorporation of La2O3 into A-site sublattice of perovskite structure stabilizes rhombohedral phase against tetragonal phase, as a consequence, the location of the MPB composition range is displaced toward PT-rich end. In addition, the lattice distortion degree, represented by either tetragonality for tetragonal phase or rhombohedrality for rhombohedral phase, is reduced. Increasing La2O3 content remarkably decreases both the dielectric permittivity maximum and the temperature of the dielectric permittivity maximum. However, addition of La2O3 obviously strengthens the degree of the frequency-dispersion, which is correlated with the weakened degree of ferroelectric couplings among oxygen octahedra. The degree of diffuse phase transition (DPT) is prominently enhanced with increasing La2O3, for which the underlying mechanism is explored. Moreover, the ever-increasing extent of departure from Curie-Weiss behaviour induced by the lanthanum doping is indicative of some changes with the respect to the scale of polar microregions inherent to relaxors. The longitudinal piezoelectric coefficient (d33) is maximized at 1 mole% La2O3, which is attributed to the combined effect of phase coexistence and enhanced contribution from non-180\u00b0 domain wall process associated with rhombohedral phase.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "this", "start": 3, "end": 7, "annotation": null}, {"text": "paper", "start": 8, "end": 13, "annotation": null}, {"text": ",", "start": 13, "end": 14, "annotation": null}, {"text": "effect", "start": 15, "end": 21, "annotation": null}, {"text": "of", "start": 22, "end": 24, "annotation": null}, {"text": "lanthanum", "start": 25, "end": 34, "annotation": "DOPANT"}, {"text": "doping", "start": 35, "end": 41, "annotation": null}, {"text": "on", "start": 42, "end": 44, "annotation": null}, {"text": "the", "start": 45, "end": 48, "annotation": null}, {"text": "dielectric", "start": 49, "end": 59, "annotation": null}, {"text": "and", "start": 60, "end": 63, "annotation": null}, {"text": "piezoelectric", "start": 64, "end": 77, "annotation": null}, {"text": "properties", "start": 78, "end": 88, "annotation": null}, {"text": "of", "start": 89, "end": 91, "annotation": null}, {"text": "the", "start": 92, "end": 95, "annotation": null}, {"text": "morphotropic", "start": 96, "end": 108, "annotation": null}, {"text": "phase", "start": 109, "end": 114, "annotation": null}, {"text": "boundary", "start": 115, "end": 123, "annotation": null}, {"text": "(", "start": 124, "end": 125, "annotation": null}, {"text": "MPB", "start": 125, "end": 128, "annotation": null}, {"text": ")", "start": 128, "end": 129, "annotation": null}, {"text": "composition", "start": 130, "end": 141, "annotation": null}, {"text": "in", "start": 142, "end": 144, "annotation": null}, {"text": "the", "start": 145, "end": 148, "annotation": null}, {"text": "Pb(Zn1", "start": 149, "end": 155, "annotation": "BASEMAT"}, {"text": "/", "start": 155, "end": 156, "annotation": "BASEMAT"}, {"text": "3Nb2", "start": 156, "end": 160, "annotation": "BASEMAT"}, {"text": "/", "start": 160, "end": 161, "annotation": "BASEMAT"}, {"text": "3)O3-BaTiO3-PbTiO3", "start": 161, "end": 179, "annotation": "BASEMAT"}, {"text": "system", "start": 180, "end": 186, "annotation": null}, {"text": "is", "start": 187, "end": 189, "annotation": null}, {"text": "presented", "start": 190, "end": 199, "annotation": null}, {"text": ".", "start": 199, "end": 200, "annotation": null}], [{"text": "Samples", "start": 201, "end": 208, "annotation": null}, {"text": "were", "start": 209, "end": 213, "annotation": null}, {"text": "prepared", "start": 214, "end": 222, "annotation": null}, {"text": "according", "start": 223, "end": 232, "annotation": null}, {"text": "to", "start": 233, "end": 235, "annotation": null}, {"text": "the", "start": 236, "end": 239, "annotation": null}, {"text": "formula", "start": 240, "end": 247, "annotation": null}, {"text": "Pb0.85\u2212xBa0.15Lax[(Zn1", "start": 248, "end": 270, "annotation": null}, {"text": "/", "start": 270, "end": 271, "annotation": null}, {"text": "3Nb2", "start": 271, "end": 275, "annotation": null}, {"text": "/", "start": 275, "end": 276, "annotation": null}, {"text": "3)0.7Ti0.3]1\u2212x", "start": 276, "end": 290, "annotation": null}, {"text": "/", "start": 290, "end": 291, "annotation": null}, {"text": "4O3", "start": 291, "end": 294, "annotation": null}, {"text": "(", "start": 295, "end": 296, "annotation": null}, {"text": "0", "start": 296, "end": 297, "annotation": "DOPMODQ"}, {"text": "<", "start": 298, "end": 299, "annotation": "DOPMODQ"}, {"text": "x", "start": 300, "end": 301, "annotation": "DOPMODQ"}, {"text": "<", "start": 302, "end": 303, "annotation": "DOPMODQ"}, {"text": "0.3", "start": 304, "end": 307, "annotation": "DOPMODQ"}, {"text": ")", "start": 307, "end": 308, "annotation": null}, {"text": ",", "start": 308, "end": 309, "annotation": null}, {"text": "where", "start": 310, "end": 315, "annotation": null}, {"text": "the", "start": 316, "end": 319, "annotation": null}, {"text": "compensation", "start": 320, "end": 332, "annotation": null}, {"text": "for", "start": 333, "end": 336, "annotation": null}, {"text": "La", "start": 337, "end": 339, "annotation": "DOPANT"}, {"text": "ions", "start": 340, "end": 344, "annotation": null}, {"text": "was", "start": 345, "end": 348, "annotation": null}, {"text": "achieved", "start": 349, "end": 357, "annotation": null}, {"text": "via", "start": 358, "end": 361, "annotation": null}, {"text": "the", "start": 362, "end": 365, "annotation": null}, {"text": "appearance", "start": 366, "end": 376, "annotation": null}, {"text": "of", "start": 377, "end": 379, "annotation": null}, {"text": "B-site", "start": 380, "end": 386, "annotation": null}, {"text": "vacancies", "start": 387, "end": 396, "annotation": null}, {"text": ".", "start": 396, "end": 397, "annotation": null}], [{"text": "All", "start": 398, "end": 401, "annotation": null}, {"text": "the", "start": 402, "end": 405, "annotation": null}, {"text": "compositions", "start": 406, "end": 418, "annotation": null}, {"text": "were", "start": 419, "end": 423, "annotation": null}, {"text": "synthesized", "start": 424, "end": 435, "annotation": null}, {"text": "using", "start": 436, "end": 441, "annotation": null}, {"text": "columbite", "start": 442, "end": 451, "annotation": null}, {"text": "precursor", "start": 452, "end": 461, "annotation": null}, {"text": "method", "start": 462, "end": 468, "annotation": null}, {"text": "and", "start": 469, "end": 472, "annotation": null}, {"text": "sintered", "start": 473, "end": 481, "annotation": null}, {"text": "using", "start": 482, "end": 487, "annotation": null}, {"text": "inverted", "start": 488, "end": 496, "annotation": null}, {"text": "crucible", "start": 497, "end": 505, "annotation": null}, {"text": "approach", "start": 506, "end": 514, "annotation": null}, {"text": ".", "start": 514, "end": 515, "annotation": null}], [{"text": "Results", "start": 516, "end": 523, "annotation": null}, {"text": "of", "start": 524, "end": 526, "annotation": null}, {"text": "x-ray", "start": 527, "end": 532, "annotation": null}, {"text": "diffraction", "start": 533, "end": 544, "annotation": null}, {"text": "demonstrate", "start": 545, "end": 556, "annotation": null}, {"text": "that", "start": 557, "end": 561, "annotation": null}, {"text": "the", "start": 562, "end": 565, "annotation": null}, {"text": "solid", "start": 566, "end": 571, "annotation": null}, {"text": "solubility", "start": 572, "end": 582, "annotation": null}, {"text": "limit", "start": 583, "end": 588, "annotation": null}, {"text": "of", "start": 589, "end": 591, "annotation": null}, {"text": "La2O3", "start": 592, "end": 597, "annotation": null}, {"text": "in", "start": 598, "end": 600, "annotation": null}, {"text": "the", "start": 601, "end": 604, "annotation": null}, {"text": "PZN", "start": 605, "end": 608, "annotation": null}, {"text": "-", "start": 608, "end": 609, "annotation": null}, {"text": "based", "start": 609, "end": 614, "annotation": null}, {"text": "MPB", "start": 615, "end": 618, "annotation": null}, {"text": "composition", "start": 619, "end": 630, "annotation": null}, {"text": "is", "start": 631, "end": 633, "annotation": null}, {"text": "more", "start": 634, "end": 638, "annotation": null}, {"text": "than", "start": 639, "end": 643, "annotation": null}, {"text": "30", "start": 644, "end": 646, "annotation": null}, {"text": "mole", "start": 647, "end": 651, "annotation": null}, {"text": "%", "start": 651, "end": 652, "annotation": null}, {"text": ".", "start": 652, "end": 653, "annotation": null}], [{"text": "Incorporation", "start": 654, "end": 667, "annotation": null}, {"text": "of", "start": 668, "end": 670, "annotation": null}, {"text": "La2O3", "start": 671, "end": 676, "annotation": null}, {"text": "into", "start": 677, "end": 681, "annotation": null}, {"text": "A-site", "start": 682, "end": 688, "annotation": null}, {"text": "sublattice", "start": 689, "end": 699, "annotation": null}, {"text": "of", "start": 700, "end": 702, "annotation": null}, {"text": "perovskite", "start": 703, "end": 713, "annotation": null}, {"text": "structure", "start": 714, "end": 723, "annotation": null}, {"text": "stabilizes", "start": 724, "end": 734, "annotation": null}, {"text": "rhombohedral", "start": 735, "end": 747, "annotation": null}, {"text": "phase", "start": 748, "end": 753, "annotation": null}, {"text": "against", "start": 754, "end": 761, "annotation": null}, {"text": "tetragonal", "start": 762, "end": 772, "annotation": null}, {"text": "phase", "start": 773, "end": 778, "annotation": null}, {"text": ",", "start": 778, "end": 779, "annotation": null}, {"text": "as", "start": 780, "end": 782, "annotation": null}, {"text": "a", "start": 783, "end": 784, "annotation": null}, {"text": "consequence", "start": 785, "end": 796, "annotation": null}, {"text": ",", "start": 796, "end": 797, "annotation": null}, {"text": "the", "start": 798, "end": 801, "annotation": null}, {"text": "location", "start": 802, "end": 810, "annotation": null}, {"text": "of", "start": 811, "end": 813, "annotation": null}, {"text": "the", "start": 814, "end": 817, "annotation": null}, {"text": "MPB", "start": 818, "end": 821, "annotation": null}, {"text": "composition", "start": 822, "end": 833, "annotation": null}, {"text": "range", "start": 834, "end": 839, "annotation": null}, {"text": "is", "start": 840, "end": 842, "annotation": null}, {"text": "displaced", "start": 843, "end": 852, "annotation": null}, {"text": "toward", "start": 853, "end": 859, "annotation": null}, {"text": "PT", "start": 860, "end": 862, "annotation": null}, {"text": "-", "start": 862, "end": 863, "annotation": null}, {"text": "rich", "start": 863, "end": 867, "annotation": null}, {"text": "end", "start": 868, "end": 871, "annotation": null}, {"text": ".", "start": 871, "end": 872, "annotation": null}], [{"text": "In", "start": 873, "end": 875, "annotation": null}, {"text": "addition", "start": 876, "end": 884, "annotation": null}, {"text": ",", "start": 884, "end": 885, "annotation": null}, {"text": "the", "start": 886, "end": 889, "annotation": null}, {"text": "lattice", "start": 890, "end": 897, "annotation": null}, {"text": "distortion", "start": 898, "end": 908, "annotation": null}, {"text": "degree", "start": 909, "end": 915, "annotation": null}, {"text": ",", "start": 915, "end": 916, "annotation": null}, {"text": "represented", "start": 917, "end": 928, "annotation": null}, {"text": "by", "start": 929, "end": 931, "annotation": null}, {"text": "either", "start": 932, "end": 938, "annotation": null}, {"text": "tetragonality", "start": 939, "end": 952, "annotation": null}, {"text": "for", "start": 953, "end": 956, "annotation": null}, {"text": "tetragonal", "start": 957, "end": 967, "annotation": null}, {"text": "phase", "start": 968, "end": 973, "annotation": null}, {"text": "or", "start": 974, "end": 976, "annotation": null}, {"text": "rhombohedrality", "start": 977, "end": 992, "annotation": null}, {"text": "for", "start": 993, "end": 996, "annotation": null}, {"text": "rhombohedral", "start": 997, "end": 1009, "annotation": null}, {"text": "phase", "start": 1010, "end": 1015, "annotation": null}, {"text": ",", "start": 1015, "end": 1016, "annotation": null}, {"text": "is", "start": 1017, "end": 1019, "annotation": null}, {"text": "reduced", "start": 1020, "end": 1027, "annotation": null}, {"text": ".", "start": 1027, "end": 1028, "annotation": null}], [{"text": "Increasing", "start": 1029, "end": 1039, "annotation": null}, {"text": "La2O3", "start": 1040, "end": 1045, "annotation": null}, {"text": "content", "start": 1046, "end": 1053, "annotation": null}, {"text": "remarkably", "start": 1054, "end": 1064, "annotation": null}, {"text": "decreases", "start": 1065, "end": 1074, "annotation": null}, {"text": "both", "start": 1075, "end": 1079, "annotation": null}, {"text": "the", "start": 1080, "end": 1083, "annotation": null}, {"text": "dielectric", "start": 1084, "end": 1094, "annotation": null}, {"text": "permittivity", "start": 1095, "end": 1107, "annotation": null}, {"text": "maximum", "start": 1108, "end": 1115, "annotation": null}, {"text": "and", "start": 1116, "end": 1119, "annotation": null}, {"text": "the", "start": 1120, "end": 1123, "annotation": null}, {"text": "temperature", "start": 1124, "end": 1135, "annotation": null}, {"text": "of", "start": 1136, "end": 1138, "annotation": null}, {"text": "the", "start": 1139, "end": 1142, "annotation": null}, {"text": "dielectric", "start": 1143, "end": 1153, "annotation": null}, {"text": "permittivity", "start": 1154, "end": 1166, "annotation": null}, {"text": "maximum", "start": 1167, "end": 1174, "annotation": null}, {"text": ".", "start": 1174, "end": 1175, "annotation": null}], [{"text": "However", "start": 1176, "end": 1183, "annotation": null}, {"text": ",", "start": 1183, "end": 1184, "annotation": null}, {"text": "addition", "start": 1185, "end": 1193, "annotation": null}, {"text": "of", "start": 1194, "end": 1196, "annotation": null}, {"text": "La2O3", "start": 1197, "end": 1202, "annotation": null}, {"text": "obviously", "start": 1203, "end": 1212, "annotation": null}, {"text": "strengthens", "start": 1213, "end": 1224, "annotation": null}, {"text": "the", "start": 1225, "end": 1228, "annotation": null}, {"text": "degree", "start": 1229, "end": 1235, "annotation": null}, {"text": "of", "start": 1236, "end": 1238, "annotation": null}, {"text": "the", "start": 1239, "end": 1242, "annotation": null}, {"text": "frequency", "start": 1243, "end": 1252, "annotation": null}, {"text": "-", "start": 1252, "end": 1253, "annotation": null}, {"text": "dispersion", "start": 1253, "end": 1263, "annotation": null}, {"text": ",", "start": 1263, "end": 1264, "annotation": null}, {"text": "which", "start": 1265, "end": 1270, "annotation": null}, {"text": "is", "start": 1271, "end": 1273, "annotation": null}, {"text": "correlated", "start": 1274, "end": 1284, "annotation": null}, {"text": "with", "start": 1285, "end": 1289, "annotation": null}, {"text": "the", "start": 1290, "end": 1293, "annotation": null}, {"text": "weakened", "start": 1294, "end": 1302, "annotation": null}, {"text": "degree", "start": 1303, "end": 1309, "annotation": null}, {"text": "of", "start": 1310, "end": 1312, "annotation": null}, {"text": "ferroelectric", "start": 1313, "end": 1326, "annotation": null}, {"text": "couplings", "start": 1327, "end": 1336, "annotation": null}, {"text": "among", "start": 1337, "end": 1342, "annotation": null}, {"text": "oxygen", "start": 1343, "end": 1349, "annotation": null}, {"text": "octahedra", "start": 1350, "end": 1359, "annotation": null}, {"text": ".", "start": 1359, "end": 1360, "annotation": null}], [{"text": "The", "start": 1361, "end": 1364, "annotation": null}, {"text": "degree", "start": 1365, "end": 1371, "annotation": null}, {"text": "of", "start": 1372, "end": 1374, "annotation": null}, {"text": "diffuse", "start": 1375, "end": 1382, "annotation": null}, {"text": "phase", "start": 1383, "end": 1388, "annotation": null}, {"text": "transition", "start": 1389, "end": 1399, "annotation": null}, {"text": "(", "start": 1400, "end": 1401, "annotation": null}, {"text": "DPT", "start": 1401, "end": 1404, "annotation": null}, {"text": ")", "start": 1404, "end": 1405, "annotation": null}, {"text": "is", "start": 1406, "end": 1408, "annotation": null}, {"text": "prominently", "start": 1409, "end": 1420, "annotation": null}, {"text": "enhanced", "start": 1421, "end": 1429, "annotation": null}, {"text": "with", "start": 1430, "end": 1434, "annotation": null}, {"text": "increasing", "start": 1435, "end": 1445, "annotation": null}, {"text": "La2O3", "start": 1446, "end": 1451, "annotation": null}, {"text": ",", "start": 1451, "end": 1452, "annotation": null}, {"text": "for", "start": 1453, "end": 1456, "annotation": null}, {"text": "which", "start": 1457, "end": 1462, "annotation": null}, {"text": "the", "start": 1463, "end": 1466, "annotation": null}, {"text": "underlying", "start": 1467, "end": 1477, "annotation": null}, {"text": "mechanism", "start": 1478, "end": 1487, "annotation": null}, {"text": "is", "start": 1488, "end": 1490, "annotation": null}, {"text": "explored", "start": 1491, "end": 1499, "annotation": null}, {"text": ".", "start": 1499, "end": 1500, "annotation": null}], [{"text": "Moreover", "start": 1501, "end": 1509, "annotation": null}, {"text": ",", "start": 1509, "end": 1510, "annotation": null}, {"text": "the", "start": 1511, "end": 1514, "annotation": null}, {"text": "ever", "start": 1515, "end": 1519, "annotation": null}, {"text": "-", "start": 1519, "end": 1520, "annotation": null}, {"text": "increasing", "start": 1520, "end": 1530, "annotation": null}, {"text": "extent", "start": 1531, "end": 1537, "annotation": null}, {"text": "of", "start": 1538, "end": 1540, "annotation": null}, {"text": "departure", "start": 1541, "end": 1550, "annotation": null}, {"text": "from", "start": 1551, "end": 1555, "annotation": null}, {"text": "Curie", "start": 1556, "end": 1561, "annotation": null}, {"text": "-", "start": 1561, "end": 1562, "annotation": null}, {"text": "Weiss", "start": 1562, "end": 1567, "annotation": null}, {"text": "behaviour", "start": 1568, "end": 1577, "annotation": null}, {"text": "induced", "start": 1578, "end": 1585, "annotation": null}, {"text": "by", "start": 1586, "end": 1588, "annotation": null}, {"text": "the", "start": 1589, "end": 1592, "annotation": null}, {"text": "lanthanum", "start": 1593, "end": 1602, "annotation": "DOPANT"}, {"text": "doping", "start": 1603, "end": 1609, "annotation": null}, {"text": "is", "start": 1610, "end": 1612, "annotation": null}, {"text": "indicative", "start": 1613, "end": 1623, "annotation": null}, {"text": "of", "start": 1624, "end": 1626, "annotation": null}, {"text": "some", "start": 1627, "end": 1631, "annotation": null}, {"text": "changes", "start": 1632, "end": 1639, "annotation": null}, {"text": "with", "start": 1640, "end": 1644, "annotation": null}, {"text": "the", "start": 1645, "end": 1648, "annotation": null}, {"text": "respect", "start": 1649, "end": 1656, "annotation": null}, {"text": "to", "start": 1657, "end": 1659, "annotation": null}, {"text": "the", "start": 1660, "end": 1663, "annotation": null}, {"text": "scale", "start": 1664, "end": 1669, "annotation": null}, {"text": "of", "start": 1670, "end": 1672, "annotation": null}, {"text": "polar", "start": 1673, "end": 1678, "annotation": null}, {"text": "microregions", "start": 1679, "end": 1691, "annotation": null}, {"text": "inherent", "start": 1692, "end": 1700, "annotation": null}, {"text": "to", "start": 1701, "end": 1703, "annotation": null}, {"text": "relaxors", "start": 1704, "end": 1712, "annotation": null}, {"text": ".", "start": 1712, "end": 1713, "annotation": null}], [{"text": "The", "start": 1714, "end": 1717, "annotation": null}, {"text": "longitudinal", "start": 1718, "end": 1730, "annotation": null}, {"text": "piezoelectric", "start": 1731, "end": 1744, "annotation": null}, {"text": "coefficient", "start": 1745, "end": 1756, "annotation": null}, {"text": "(", "start": 1757, "end": 1758, "annotation": null}, {"text": "d33", "start": 1758, "end": 1761, "annotation": null}, {"text": ")", "start": 1761, "end": 1762, "annotation": null}, {"text": "is", "start": 1763, "end": 1765, "annotation": null}, {"text": "maximized", "start": 1766, "end": 1775, "annotation": null}, {"text": "at", "start": 1776, "end": 1778, "annotation": null}, {"text": "1", "start": 1779, "end": 1780, "annotation": null}, {"text": "mole", "start": 1781, "end": 1785, "annotation": null}, {"text": "%", "start": 1785, "end": 1786, "annotation": null}, {"text": "La2O3", "start": 1787, "end": 1792, "annotation": null}, {"text": ",", "start": 1792, "end": 1793, "annotation": null}, {"text": "which", "start": 1794, "end": 1799, "annotation": null}, {"text": "is", "start": 1800, "end": 1802, "annotation": null}, {"text": "attributed", "start": 1803, "end": 1813, "annotation": null}, {"text": "to", "start": 1814, "end": 1816, "annotation": null}, {"text": "the", "start": 1817, "end": 1820, "annotation": null}, {"text": "combined", "start": 1821, "end": 1829, "annotation": null}, {"text": "effect", "start": 1830, "end": 1836, "annotation": null}, {"text": "of", "start": 1837, "end": 1839, "annotation": null}, {"text": "phase", "start": 1840, "end": 1845, "annotation": null}, {"text": "coexistence", "start": 1846, "end": 1857, "annotation": null}, {"text": "and", "start": 1858, "end": 1861, "annotation": null}, {"text": "enhanced", "start": 1862, "end": 1870, "annotation": null}, {"text": "contribution", "start": 1871, "end": 1883, "annotation": null}, {"text": "from", "start": 1884, "end": 1888, "annotation": null}, {"text": "non-180", "start": 1889, "end": 1896, "annotation": null}, {"text": "\u00b0", "start": 1896, "end": 1897, "annotation": null}, {"text": "domain", "start": 1898, "end": 1904, "annotation": null}, {"text": "wall", "start": 1905, "end": 1909, "annotation": null}, {"text": "process", "start": 1910, "end": 1917, "annotation": null}, {"text": "associated", "start": 1918, "end": 1928, "annotation": null}, {"text": "with", "start": 1929, "end": 1933, "annotation": null}, {"text": "rhombohedral", "start": 1934, "end": 1946, "annotation": null}, {"text": "phase", "start": 1947, "end": 1952, "annotation": null}, {"text": ".", "start": 1952, "end": 1953, "annotation": null}]], "meta": {"doi": "10.1023/A:1017927829747"}} +{"text": "Chemomechanical polishing of p-type silicon wafers produces the fast-diffusing X defect. This defect forms neutral complexes with the acceptors boron, aluminium, gallium and indium. Annealing under reverse bias in the temperature range from 160 to 270 K allows us to determine accurately the thermally activated dissociation energies for all the complexes. The X defect is also produced by copper diffusion into p-type silicon. The identification of X as a copper-related defect is discussed.", "meta": {"doi": "10.1016/0921-5107(89)90220-1"}, "_input_hash": 213283371, "_task_hash": -135078811, "tokens": [[{"text": "Chemomechanical", "start": 0, "end": 15, "id": 0, "annotation": null}, {"text": "polishing", "start": 16, "end": 25, "id": 1, "annotation": null}, {"text": "of", "start": 26, "end": 28, "id": 2, "annotation": null}, {"text": "p", "start": 29, "end": 30, "id": 3, "annotation": "DOPANT"}, {"text": "-", "start": 31, "end": 32, "id": 4, "annotation": null}, {"text": "type", "start": 33, "end": 37, "id": 5, "annotation": "DOPANT"}, {"text": "silicon", "start": 38, "end": 45, "id": 6, "annotation": "BASEMAT"}, {"text": "wafers", "start": 46, "end": 52, "id": 7, "annotation": null}, {"text": "produces", "start": 53, "end": 61, "id": 8, "annotation": null}, {"text": "the", "start": 62, "end": 65, "id": 9, "annotation": null}, {"text": "fast", "start": 66, "end": 70, "id": 10, "annotation": null}, {"text": "-", "start": 71, "end": 72, "id": 11, "annotation": null}, {"text": "diffusing", "start": 73, "end": 82, "id": 12, "annotation": null}, {"text": "X", "start": 83, "end": 84, "id": 13, "annotation": null}, {"text": "defect", "start": 85, "end": 91, "id": 14, "annotation": null}, {"text": ".", "start": 92, "end": 93, "id": 15, "annotation": null}], [{"text": "This", "start": 94, "end": 98, "id": 16, "annotation": null}, {"text": "defect", "start": 99, "end": 105, "id": 17, "annotation": null}, {"text": "forms", "start": 106, "end": 111, "id": 18, "annotation": null}, {"text": "neutral", "start": 112, "end": 119, "id": 19, "annotation": null}, {"text": "complexes", "start": 120, "end": 129, "id": 20, "annotation": null}, {"text": "with", "start": 130, "end": 134, "id": 21, "annotation": null}, {"text": "the", "start": 135, "end": 138, "id": 22, "annotation": null}, {"text": "acceptors", "start": 139, "end": 148, "id": 23, "annotation": null}, {"text": "boron", "start": 149, "end": 154, "id": 24, "annotation": "DOPANT"}, {"text": ",", "start": 155, "end": 156, "id": 25, "annotation": null}, {"text": "aluminium", "start": 157, "end": 166, "id": 26, "annotation": "DOPANT"}, {"text": ",", "start": 167, "end": 168, "id": 27, "annotation": null}, {"text": "gallium", "start": 169, "end": 176, "id": 28, "annotation": "DOPANT"}, {"text": "and", "start": 177, "end": 180, "id": 29, "annotation": null}, {"text": "indium", "start": 181, "end": 187, "id": 30, "annotation": "DOPANT"}, {"text": ".", "start": 188, "end": 189, "id": 31, "annotation": null}], [{"text": "Annealing", "start": 190, "end": 199, "id": 32, "annotation": null}, {"text": "under", "start": 200, "end": 205, "id": 33, "annotation": null}, {"text": "reverse", "start": 206, "end": 213, "id": 34, "annotation": null}, {"text": "bias", "start": 214, "end": 218, "id": 35, "annotation": null}, {"text": "in", "start": 219, "end": 221, "id": 36, "annotation": null}, {"text": "the", "start": 222, "end": 225, "id": 37, "annotation": null}, {"text": "temperature", "start": 226, "end": 237, "id": 38, "annotation": null}, {"text": "range", "start": 238, "end": 243, "id": 39, "annotation": null}, {"text": "from", "start": 244, "end": 248, "id": 40, "annotation": null}, {"text": "160", "start": 249, "end": 252, "id": 41, "annotation": null}, {"text": "to", "start": 253, "end": 255, "id": 42, "annotation": null}, {"text": "270", "start": 256, "end": 259, "id": 43, "annotation": null}, {"text": "K", "start": 260, "end": 261, "id": 44, "annotation": null}, {"text": "allows", "start": 262, "end": 268, "id": 45, "annotation": null}, {"text": "us", "start": 269, "end": 271, "id": 46, "annotation": null}, {"text": "to", "start": 272, "end": 274, "id": 47, "annotation": null}, {"text": "determine", "start": 275, "end": 284, "id": 48, "annotation": null}, {"text": "accurately", "start": 285, "end": 295, "id": 49, "annotation": null}, {"text": "the", "start": 296, "end": 299, "id": 50, "annotation": null}, {"text": "thermally", "start": 300, "end": 309, "id": 51, "annotation": null}, {"text": "activated", "start": 310, "end": 319, "id": 52, "annotation": null}, {"text": "dissociation", "start": 320, "end": 332, "id": 53, "annotation": null}, {"text": "energies", "start": 333, "end": 341, "id": 54, "annotation": null}, {"text": "for", "start": 342, "end": 345, "id": 55, "annotation": null}, {"text": "all", "start": 346, "end": 349, "id": 56, "annotation": null}, {"text": "the", "start": 350, "end": 353, "id": 57, "annotation": null}, {"text": "complexes", "start": 354, "end": 363, "id": 58, "annotation": null}, {"text": ".", "start": 364, "end": 365, "id": 59, "annotation": null}], [{"text": "The", "start": 366, "end": 369, "id": 60, "annotation": null}, {"text": "X", "start": 370, "end": 371, "id": 61, "annotation": null}, {"text": "defect", "start": 372, "end": 378, "id": 62, "annotation": null}, {"text": "is", "start": 379, "end": 381, "id": 63, "annotation": null}, {"text": "also", "start": 382, "end": 386, "id": 64, "annotation": null}, {"text": "produced", "start": 387, "end": 395, "id": 65, "annotation": null}, {"text": "by", "start": 396, "end": 398, "id": 66, "annotation": null}, {"text": "copper", "start": 399, "end": 405, "id": 67, "annotation": null}, {"text": "diffusion", "start": 406, "end": 415, "id": 68, "annotation": null}, {"text": "into", "start": 416, "end": 420, "id": 69, "annotation": null}, {"text": "p", "start": 421, "end": 422, "id": 70, "annotation": "DOPANT"}, {"text": "-", "start": 423, "end": 424, "id": 71, "annotation": "DOPANT"}, {"text": "type", "start": 425, "end": 429, "id": 72, "annotation": "DOPANT"}, {"text": "silicon", "start": 430, "end": 437, "id": 73, "annotation": "BASEMAT"}, {"text": ".", "start": 438, "end": 439, "id": 74, "annotation": null}], [{"text": "The", "start": 440, "end": 443, "id": 75, "annotation": null}, {"text": "identification", "start": 444, "end": 458, "id": 76, "annotation": null}, {"text": "of", "start": 459, "end": 461, "id": 77, "annotation": null}, {"text": "X", "start": 462, "end": 463, "id": 78, "annotation": null}, {"text": "as", "start": 464, "end": 466, "id": 79, "annotation": null}, {"text": "a", "start": 467, "end": 468, "id": 80, "annotation": null}, {"text": "copper", "start": 469, "end": 475, "id": 81, "annotation": null}, {"text": "-", "start": 476, "end": 477, "id": 82, "annotation": null}, {"text": "related", "start": 478, "end": 485, "id": 83, "annotation": null}, {"text": "defect", "start": 486, "end": 492, "id": 84, "annotation": null}, {"text": "is", "start": 493, "end": 495, "id": 85, "annotation": null}, {"text": "discussed", "start": 496, "end": 505, "id": 86, "annotation": null}, {"text": ".", "start": 506, "end": 507, "id": 87, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt2", "text": "NiO and ZnO thin films of about 40\u201350nm thickness with embedded Au nanoparticles have been synthesized with a simple and reliable sol\u2013gel procedure. The nanocomposites films are crystalline and porous and they show optical absorptions in the visible range according to Au nanoparticles concentration. These films have been tested as optical and electrical sensors for pollutant gases detection. A fast and reversible response has been detected for hydrogen, CO and NO2. Au nanoparticles have been found to improve the optical sensing properties of both NiO and ZnO films over the Au surface plasmon resonance peak wavelength range, but also to enhance the ZnO optical response in the near UV range, where Au nanoparticles are optically inactive. Moreover, combining the observed shift in the surface plasmon resonance peak and the different semiconductive type of the two oxides, it has been proved that reducing gases inject electrons into the oxide and then afterward the charge variation is detected by Au nanoparticles. Electrical tests confirm the n-type behavior of ZnO and p-type behavior of NiO, and show good performances at lower temperatures. Moreover, an enhancing effect of Au nanoparticles in the overall sensing performances is observed also in electrical tests.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "NiO", "start": 0, "end": 3, "annotation": "BASEMAT"}, {"text": "and", "start": 4, "end": 7, "annotation": null}, {"text": "ZnO", "start": 8, "end": 11, "annotation": "BASEMAT"}, {"text": "thin", "start": 12, "end": 16, "annotation": null}, {"text": "films", "start": 17, "end": 22, "annotation": null}, {"text": "of", "start": 23, "end": 25, "annotation": null}, {"text": "about", "start": 26, "end": 31, "annotation": null}, {"text": "40", "start": 32, "end": 34, "annotation": null}, {"text": "\u2013", "start": 34, "end": 35, "annotation": null}, {"text": "50", "start": 35, "end": 37, "annotation": null}, {"text": "nm", "start": 37, "end": 39, "annotation": null}, {"text": "thickness", "start": 40, "end": 49, "annotation": null}, {"text": "with", "start": 50, "end": 54, "annotation": null}, {"text": "embedded", "start": 55, "end": 63, "annotation": null}, {"text": "Au", "start": 64, "end": 66, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 67, "end": 80, "annotation": null}, {"text": "have", "start": 81, "end": 85, "annotation": null}, {"text": "been", "start": 86, "end": 90, "annotation": null}, {"text": "synthesized", "start": 91, "end": 102, "annotation": null}, {"text": "with", "start": 103, "end": 107, "annotation": null}, {"text": "a", "start": 108, "end": 109, "annotation": null}, {"text": "simple", "start": 110, "end": 116, "annotation": null}, {"text": "and", "start": 117, "end": 120, "annotation": null}, {"text": "reliable", "start": 121, "end": 129, "annotation": null}, {"text": "sol", "start": 130, "end": 133, "annotation": null}, {"text": "\u2013", "start": 133, "end": 134, "annotation": null}, {"text": "gel", "start": 134, "end": 137, "annotation": null}, {"text": "procedure", "start": 138, "end": 147, "annotation": null}, {"text": ".", "start": 147, "end": 148, "annotation": null}], [{"text": "The", "start": 149, "end": 152, "annotation": null}, {"text": "nanocomposites", "start": 153, "end": 167, "annotation": null}, {"text": "films", "start": 168, "end": 173, "annotation": null}, {"text": "are", "start": 174, "end": 177, "annotation": null}, {"text": "crystalline", "start": 178, "end": 189, "annotation": null}, {"text": "and", "start": 190, "end": 193, "annotation": null}, {"text": "porous", "start": 194, "end": 200, "annotation": null}, {"text": "and", "start": 201, "end": 204, "annotation": null}, {"text": "they", "start": 205, "end": 209, "annotation": null}, {"text": "show", "start": 210, "end": 214, "annotation": null}, {"text": "optical", "start": 215, "end": 222, "annotation": null}, {"text": "absorptions", "start": 223, "end": 234, "annotation": null}, {"text": "in", "start": 235, "end": 237, "annotation": null}, {"text": "the", "start": 238, "end": 241, "annotation": null}, {"text": "visible", "start": 242, "end": 249, "annotation": null}, {"text": "range", "start": 250, "end": 255, "annotation": null}, {"text": "according", "start": 256, "end": 265, "annotation": null}, {"text": "to", "start": 266, "end": 268, "annotation": null}, {"text": "Au", "start": 269, "end": 271, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 272, "end": 285, "annotation": null}, {"text": "concentration", "start": 286, "end": 299, "annotation": null}, {"text": ".", "start": 299, "end": 300, "annotation": null}], [{"text": "These", "start": 301, "end": 306, "annotation": null}, {"text": "films", "start": 307, "end": 312, "annotation": null}, {"text": "have", "start": 313, "end": 317, "annotation": null}, {"text": "been", "start": 318, "end": 322, "annotation": null}, {"text": "tested", "start": 323, "end": 329, "annotation": null}, {"text": "as", "start": 330, "end": 332, "annotation": null}, {"text": "optical", "start": 333, "end": 340, "annotation": null}, {"text": "and", "start": 341, "end": 344, "annotation": null}, {"text": "electrical", "start": 345, "end": 355, "annotation": null}, {"text": "sensors", "start": 356, "end": 363, "annotation": null}, {"text": "for", "start": 364, "end": 367, "annotation": null}, {"text": "pollutant", "start": 368, "end": 377, "annotation": null}, {"text": "gases", "start": 378, "end": 383, "annotation": null}, {"text": "detection", "start": 384, "end": 393, "annotation": null}, {"text": ".", "start": 393, "end": 394, "annotation": null}], [{"text": "A", "start": 395, "end": 396, "annotation": null}, {"text": "fast", "start": 397, "end": 401, "annotation": null}, {"text": "and", "start": 402, "end": 405, "annotation": null}, {"text": "reversible", "start": 406, "end": 416, "annotation": null}, {"text": "response", "start": 417, "end": 425, "annotation": null}, {"text": "has", "start": 426, "end": 429, "annotation": null}, {"text": "been", "start": 430, "end": 434, "annotation": null}, {"text": "detected", "start": 435, "end": 443, "annotation": null}, {"text": "for", "start": 444, "end": 447, "annotation": null}, {"text": "hydrogen", "start": 448, "end": 456, "annotation": null}, {"text": ",", "start": 456, "end": 457, "annotation": null}, {"text": "CO", "start": 458, "end": 460, "annotation": null}, {"text": "and", "start": 461, "end": 464, "annotation": null}, {"text": "NO2", "start": 465, "end": 468, "annotation": null}, {"text": ".", "start": 468, "end": 469, "annotation": null}], [{"text": "Au", "start": 470, "end": 472, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 473, "end": 486, "annotation": null}, {"text": "have", "start": 487, "end": 491, "annotation": null}, {"text": "been", "start": 492, "end": 496, "annotation": null}, {"text": "found", "start": 497, "end": 502, "annotation": null}, {"text": "to", "start": 503, "end": 505, "annotation": null}, {"text": "improve", "start": 506, "end": 513, "annotation": null}, {"text": "the", "start": 514, "end": 517, "annotation": null}, {"text": "optical", "start": 518, "end": 525, "annotation": null}, {"text": "sensing", "start": 526, "end": 533, "annotation": null}, {"text": "properties", "start": 534, "end": 544, "annotation": null}, {"text": "of", "start": 545, "end": 547, "annotation": null}, {"text": "both", "start": 548, "end": 552, "annotation": null}, {"text": "NiO", "start": 553, "end": 556, "annotation": "BASEMAT"}, {"text": "and", "start": 557, "end": 560, "annotation": null}, {"text": "ZnO", "start": 561, "end": 564, "annotation": "BASEMAT"}, {"text": "films", "start": 565, "end": 570, "annotation": null}, {"text": "over", "start": 571, "end": 575, "annotation": null}, {"text": "the", "start": 576, "end": 579, "annotation": null}, {"text": "Au", "start": 580, "end": 582, "annotation": "DOPANT"}, {"text": "surface", "start": 583, "end": 590, "annotation": null}, {"text": "plasmon", "start": 591, "end": 598, "annotation": null}, {"text": "resonance", "start": 599, "end": 608, "annotation": null}, {"text": "peak", "start": 609, "end": 613, "annotation": null}, {"text": "wavelength", "start": 614, "end": 624, "annotation": null}, {"text": "range", "start": 625, "end": 630, "annotation": null}, {"text": ",", "start": 630, "end": 631, "annotation": null}, {"text": "but", "start": 632, "end": 635, "annotation": null}, {"text": "also", "start": 636, "end": 640, "annotation": null}, {"text": "to", "start": 641, "end": 643, "annotation": null}, {"text": "enhance", "start": 644, "end": 651, "annotation": null}, {"text": "the", "start": 652, "end": 655, "annotation": null}, {"text": "ZnO", "start": 656, "end": 659, "annotation": null}, {"text": "optical", "start": 660, "end": 667, "annotation": null}, {"text": "response", "start": 668, "end": 676, "annotation": null}, {"text": "in", "start": 677, "end": 679, "annotation": null}, {"text": "the", "start": 680, "end": 683, "annotation": null}, {"text": "near", "start": 684, "end": 688, "annotation": null}, {"text": "UV", "start": 689, "end": 691, "annotation": null}, {"text": "range", "start": 692, "end": 697, "annotation": null}, {"text": ",", "start": 697, "end": 698, "annotation": null}, {"text": "where", "start": 699, "end": 704, "annotation": null}, {"text": "Au", "start": 705, "end": 707, "annotation": null}, {"text": "nanoparticles", "start": 708, "end": 721, "annotation": null}, {"text": "are", "start": 722, "end": 725, "annotation": null}, {"text": "optically", "start": 726, "end": 735, "annotation": null}, {"text": "inactive", "start": 736, "end": 744, "annotation": null}, {"text": ".", "start": 744, "end": 745, "annotation": null}], [{"text": "Moreover", "start": 746, "end": 754, "annotation": null}, {"text": ",", "start": 754, "end": 755, "annotation": null}, {"text": "combining", "start": 756, "end": 765, "annotation": null}, {"text": "the", "start": 766, "end": 769, "annotation": null}, {"text": "observed", "start": 770, "end": 778, "annotation": null}, {"text": "shift", "start": 779, "end": 784, "annotation": null}, {"text": "in", "start": 785, "end": 787, "annotation": null}, {"text": "the", "start": 788, "end": 791, "annotation": null}, {"text": "surface", "start": 792, "end": 799, "annotation": null}, {"text": "plasmon", "start": 800, "end": 807, "annotation": null}, {"text": "resonance", "start": 808, "end": 817, "annotation": null}, {"text": "peak", "start": 818, "end": 822, "annotation": null}, {"text": "and", "start": 823, "end": 826, "annotation": null}, {"text": "the", "start": 827, "end": 830, "annotation": null}, {"text": "different", "start": 831, "end": 840, "annotation": null}, {"text": "semiconductive", "start": 841, "end": 855, "annotation": null}, {"text": "type", "start": 856, "end": 860, "annotation": null}, {"text": "of", "start": 861, "end": 863, "annotation": null}, {"text": "the", "start": 864, "end": 867, "annotation": null}, {"text": "two", "start": 868, "end": 871, "annotation": null}, {"text": "oxides", "start": 872, "end": 878, "annotation": "BASEMAT"}, {"text": ",", "start": 878, "end": 879, "annotation": null}, {"text": "it", "start": 880, "end": 882, "annotation": null}, {"text": "has", "start": 883, "end": 886, "annotation": null}, {"text": "been", "start": 887, "end": 891, "annotation": null}, {"text": "proved", "start": 892, "end": 898, "annotation": null}, {"text": "that", "start": 899, "end": 903, "annotation": null}, {"text": "reducing", "start": 904, "end": 912, "annotation": null}, {"text": "gases", "start": 913, "end": 918, "annotation": null}, {"text": "inject", "start": 919, "end": 925, "annotation": null}, {"text": "electrons", "start": 926, "end": 935, "annotation": null}, {"text": "into", "start": 936, "end": 940, "annotation": null}, {"text": "the", "start": 941, "end": 944, "annotation": null}, {"text": "oxide", "start": 945, "end": 950, "annotation": null}, {"text": "and", "start": 951, "end": 954, "annotation": null}, {"text": "then", "start": 955, "end": 959, "annotation": null}, {"text": "afterward", "start": 960, "end": 969, "annotation": null}, {"text": "the", "start": 970, "end": 973, "annotation": null}, {"text": "charge", "start": 974, "end": 980, "annotation": null}, {"text": "variation", "start": 981, "end": 990, "annotation": null}, {"text": "is", "start": 991, "end": 993, "annotation": null}, {"text": "detected", "start": 994, "end": 1002, "annotation": null}, {"text": "by", "start": 1003, "end": 1005, "annotation": null}, {"text": "Au", "start": 1006, "end": 1008, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 1009, "end": 1022, "annotation": null}, {"text": ".", "start": 1022, "end": 1023, "annotation": null}], [{"text": "Electrical", "start": 1024, "end": 1034, "annotation": null}, {"text": "tests", "start": 1035, "end": 1040, "annotation": null}, {"text": "confirm", "start": 1041, "end": 1048, "annotation": null}, {"text": "the", "start": 1049, "end": 1052, "annotation": null}, {"text": "n", "start": 1053, "end": 1054, "annotation": "DOPANT"}, {"text": "-", "start": 1054, "end": 1055, "annotation": "DOPANT"}, {"text": "type", "start": 1055, "end": 1059, "annotation": "DOPANT"}, {"text": "behavior", "start": 1060, "end": 1068, "annotation": null}, {"text": "of", "start": 1069, "end": 1071, "annotation": null}, {"text": "ZnO", "start": 1072, "end": 1075, "annotation": "BASEMAT"}, {"text": "and", "start": 1076, "end": 1079, "annotation": null}, {"text": "p", "start": 1080, "end": 1081, "annotation": "DOPANT"}, {"text": "-", "start": 1081, "end": 1082, "annotation": "DOPANT"}, {"text": "type", "start": 1082, "end": 1086, "annotation": "DOPANT"}, {"text": "behavior", "start": 1087, "end": 1095, "annotation": null}, {"text": "of", "start": 1096, "end": 1098, "annotation": null}, {"text": "NiO", "start": 1099, "end": 1102, "annotation": "BASEMAT"}, {"text": ",", "start": 1102, "end": 1103, "annotation": null}, {"text": "and", "start": 1104, "end": 1107, "annotation": null}, {"text": "show", "start": 1108, "end": 1112, "annotation": null}, {"text": "good", "start": 1113, "end": 1117, "annotation": null}, {"text": "performances", "start": 1118, "end": 1130, "annotation": null}, {"text": "at", "start": 1131, "end": 1133, "annotation": null}, {"text": "lower", "start": 1134, "end": 1139, "annotation": null}, {"text": "temperatures", "start": 1140, "end": 1152, "annotation": null}, {"text": ".", "start": 1152, "end": 1153, "annotation": null}], [{"text": "Moreover", "start": 1154, "end": 1162, "annotation": null}, {"text": ",", "start": 1162, "end": 1163, "annotation": null}, {"text": "an", "start": 1164, "end": 1166, "annotation": null}, {"text": "enhancing", "start": 1167, "end": 1176, "annotation": null}, {"text": "effect", "start": 1177, "end": 1183, "annotation": null}, {"text": "of", "start": 1184, "end": 1186, "annotation": null}, {"text": "Au", "start": 1187, "end": 1189, "annotation": null}, {"text": "nanoparticles", "start": 1190, "end": 1203, "annotation": null}, {"text": "in", "start": 1204, "end": 1206, "annotation": null}, {"text": "the", "start": 1207, "end": 1210, "annotation": null}, {"text": "overall", "start": 1211, "end": 1218, "annotation": null}, {"text": "sensing", "start": 1219, "end": 1226, "annotation": null}, {"text": "performances", "start": 1227, "end": 1239, "annotation": null}, {"text": "is", "start": 1240, "end": 1242, "annotation": null}, {"text": "observed", "start": 1243, "end": 1251, "annotation": null}, {"text": "also", "start": 1252, "end": 1256, "annotation": null}, {"text": "in", "start": 1257, "end": 1259, "annotation": null}, {"text": "electrical", "start": 1260, "end": 1270, "annotation": null}, {"text": "tests", "start": 1271, "end": 1276, "annotation": null}, {"text": ".", "start": 1276, "end": 1277, "annotation": null}]], "meta": {"doi": "10.1016/j.snb.2012.01.062"}} +{"text": "We present a theoretical study on Ti-vacancy-induced ferromagnetism in anatase TiO2. A recent experimental study has revealed room temperature ferromagnetism in Ta-doped anatase TiO2thin films (Rusydi et al., 2012) [7]. Ta doping assists the formation of Ti vacancies which then induce the formation of localized magnetic moments around the Ti vacancies. As neighboring Ti vacancies are a few unit cells apart, the ferromagnetic order is suspected to be mediated by itinerant electrons. We propose that such an electron-mediated ferromagnetism is driven by Ruderman\u2013Kittel\u2013Kasuya\u2013Yosida (RKKY) exchange interaction. To examine our hypothesis, we construct a tight-binding based model Hamiltonian for the anatase TiO2 system. We calculate the RKKY exchange coupling constant of TiO2 as a function of distance between local magnetic moments at various temperatures. We model the system by taking only the layer containing a unit of TiO2, at which the Ti vacancy is believed to form, as our effective two-dimensional unit cell. Our model incorporates the Hubbard repulsive interactions between electrons occupying Ti d orbitals treated within mean-field approximation. The density of states profile resulting from the model captures the relevant electronic properties of TiO2, such as the energy gap of ~3.4eV and the n-type character, which may be a measure of the adequacy of the model. The calculated RKKY coupling constant shows that the ferromagnetic coupling extends up to 3\u20134 unit cells and enhances slightly as temperature is increased from 0 to 400K. These results support our hypothesis that the ferromagnetism of this system is driven by RKKY mechanism.", "meta": {"doi": "10.1016/j.physb.2016.08.031"}, "_input_hash": -1824226746, "_task_hash": 1593468526, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "present", "start": 3, "end": 10, "id": 1, "annotation": null}, {"text": "a", "start": 11, "end": 12, "id": 2, "annotation": null}, {"text": "theoretical", "start": 13, "end": 24, "id": 3, "annotation": null}, {"text": "study", "start": 25, "end": 30, "id": 4, "annotation": null}, {"text": "on", "start": 31, "end": 33, "id": 5, "annotation": null}, {"text": "Ti", "start": 34, "end": 36, "id": 6, "annotation": null}, {"text": "-", "start": 37, "end": 38, "id": 7, "annotation": null}, {"text": "vacancy", "start": 39, "end": 46, "id": 8, "annotation": null}, {"text": "-", "start": 47, "end": 48, "id": 9, "annotation": null}, {"text": "induced", "start": 49, "end": 56, "id": 10, "annotation": null}, {"text": "ferromagnetism", "start": 57, "end": 71, "id": 11, "annotation": null}, {"text": "in", "start": 72, "end": 74, "id": 12, "annotation": null}, {"text": "anatase", "start": 75, "end": 82, "id": 13, "annotation": null}, {"text": "TiO2", "start": 83, "end": 87, "id": 14, "annotation": null}, {"text": ".", "start": 88, "end": 89, "id": 15, "annotation": null}], [{"text": "A", "start": 90, "end": 91, "id": 16, "annotation": null}, {"text": "recent", "start": 92, "end": 98, "id": 17, "annotation": null}, {"text": "experimental", "start": 99, "end": 111, "id": 18, "annotation": null}, {"text": "study", "start": 112, "end": 117, "id": 19, "annotation": null}, {"text": "has", "start": 118, "end": 121, "id": 20, "annotation": null}, {"text": "revealed", "start": 122, "end": 130, "id": 21, "annotation": null}, {"text": "room", "start": 131, "end": 135, "id": 22, "annotation": null}, {"text": "temperature", "start": 136, "end": 147, "id": 23, "annotation": null}, {"text": "ferromagnetism", "start": 148, "end": 162, "id": 24, "annotation": null}, {"text": "in", "start": 163, "end": 165, "id": 25, "annotation": null}, {"text": "Ta", "start": 166, "end": 168, "id": 26, "annotation": "DOPANT"}, {"text": "-", "start": 169, "end": 170, "id": 27, "annotation": null}, {"text": "doped", "start": 171, "end": 176, "id": 28, "annotation": null}, {"text": "anatase", "start": 177, "end": 184, "id": 29, "annotation": null}, {"text": "TiO2thin", "start": 185, "end": 193, "id": 30, "annotation": "BASEMAT"}, {"text": "films", "start": 194, "end": 199, "id": 31, "annotation": null}, {"text": "(", "start": 200, "end": 201, "id": 32, "annotation": null}, {"text": "Rusydi", "start": 202, "end": 208, "id": 33, "annotation": null}, {"text": "et", "start": 209, "end": 211, "id": 34, "annotation": null}, {"text": "al", "start": 212, "end": 214, "id": 35, "annotation": null}, {"text": ".", "start": 215, "end": 216, "id": 36, "annotation": null}, {"text": ",", "start": 217, "end": 218, "id": 37, "annotation": null}, {"text": "2012", "start": 219, "end": 223, "id": 38, "annotation": null}, {"text": ")", "start": 224, "end": 225, "id": 39, "annotation": null}, {"text": "[", "start": 226, "end": 227, "id": 40, "annotation": null}, {"text": "7", "start": 228, "end": 229, "id": 41, "annotation": null}, {"text": "]", "start": 230, "end": 231, "id": 42, "annotation": null}, {"text": ".", "start": 232, "end": 233, "id": 43, "annotation": null}], [{"text": "Ta", "start": 234, "end": 236, "id": 44, "annotation": "DOPANT"}, {"text": "doping", "start": 237, "end": 243, "id": 45, "annotation": null}, {"text": "assists", "start": 244, "end": 251, "id": 46, "annotation": null}, {"text": "the", "start": 252, "end": 255, "id": 47, "annotation": null}, {"text": "formation", "start": 256, "end": 265, "id": 48, "annotation": null}, {"text": "of", "start": 266, "end": 268, "id": 49, "annotation": null}, {"text": "Ti", "start": 269, "end": 271, "id": 50, "annotation": null}, {"text": "vacancies", "start": 272, "end": 281, "id": 51, "annotation": null}, {"text": "which", "start": 282, "end": 287, "id": 52, "annotation": null}, {"text": "then", "start": 288, "end": 292, "id": 53, "annotation": null}, {"text": "induce", "start": 293, "end": 299, "id": 54, "annotation": null}, {"text": "the", "start": 300, "end": 303, "id": 55, "annotation": null}, {"text": "formation", "start": 304, "end": 313, "id": 56, "annotation": null}, {"text": "of", "start": 314, "end": 316, "id": 57, "annotation": null}, {"text": "localized", "start": 317, "end": 326, "id": 58, "annotation": null}, {"text": "magnetic", "start": 327, "end": 335, "id": 59, "annotation": null}, {"text": "moments", "start": 336, "end": 343, "id": 60, "annotation": null}, {"text": "around", "start": 344, "end": 350, "id": 61, "annotation": null}, {"text": "the", "start": 351, "end": 354, "id": 62, "annotation": null}, {"text": "Ti", "start": 355, "end": 357, "id": 63, "annotation": null}, {"text": "vacancies", "start": 358, "end": 367, "id": 64, "annotation": null}, {"text": ".", "start": 368, "end": 369, "id": 65, "annotation": null}], [{"text": "As", "start": 370, "end": 372, "id": 66, "annotation": null}, {"text": "neighboring", "start": 373, "end": 384, "id": 67, "annotation": null}, {"text": "Ti", "start": 385, "end": 387, "id": 68, "annotation": null}, {"text": "vacancies", "start": 388, "end": 397, "id": 69, "annotation": null}, {"text": "are", "start": 398, "end": 401, "id": 70, "annotation": null}, {"text": "a", "start": 402, "end": 403, "id": 71, "annotation": null}, {"text": "few", "start": 404, "end": 407, "id": 72, "annotation": null}, {"text": "unit", "start": 408, "end": 412, "id": 73, "annotation": null}, {"text": "cells", "start": 413, "end": 418, "id": 74, "annotation": null}, {"text": "apart", "start": 419, "end": 424, "id": 75, "annotation": null}, {"text": ",", "start": 425, "end": 426, "id": 76, "annotation": null}, {"text": "the", "start": 427, "end": 430, "id": 77, "annotation": null}, {"text": "ferromagnetic", "start": 431, "end": 444, "id": 78, "annotation": null}, {"text": "order", "start": 445, "end": 450, "id": 79, "annotation": null}, {"text": "is", "start": 451, "end": 453, "id": 80, "annotation": null}, {"text": "suspected", "start": 454, "end": 463, "id": 81, "annotation": null}, {"text": "to", "start": 464, "end": 466, "id": 82, "annotation": null}, {"text": "be", "start": 467, "end": 469, "id": 83, "annotation": null}, {"text": "mediated", "start": 470, "end": 478, "id": 84, "annotation": null}, {"text": "by", "start": 479, "end": 481, "id": 85, "annotation": null}, {"text": "itinerant", "start": 482, "end": 491, "id": 86, "annotation": null}, {"text": "electrons", "start": 492, "end": 501, "id": 87, "annotation": null}, {"text": ".", "start": 502, "end": 503, "id": 88, "annotation": null}], [{"text": "We", "start": 504, "end": 506, "id": 89, "annotation": null}, {"text": "propose", "start": 507, "end": 514, "id": 90, "annotation": null}, {"text": "that", "start": 515, "end": 519, "id": 91, "annotation": null}, {"text": "such", "start": 520, "end": 524, "id": 92, "annotation": null}, {"text": "an", "start": 525, "end": 527, "id": 93, "annotation": null}, {"text": "electron", "start": 528, "end": 536, "id": 94, "annotation": null}, {"text": "-", "start": 537, "end": 538, "id": 95, "annotation": null}, {"text": "mediated", "start": 539, "end": 547, "id": 96, "annotation": null}, {"text": "ferromagnetism", "start": 548, "end": 562, "id": 97, "annotation": null}, {"text": "is", "start": 563, "end": 565, "id": 98, "annotation": null}, {"text": "driven", "start": 566, "end": 572, "id": 99, "annotation": null}, {"text": "by", "start": 573, "end": 575, "id": 100, "annotation": null}, {"text": "Ruderman", "start": 576, "end": 584, "id": 101, "annotation": null}, {"text": "\u2013", "start": 585, "end": 586, "id": 102, "annotation": null}, {"text": "Kittel", "start": 587, "end": 593, "id": 103, "annotation": null}, {"text": "\u2013", "start": 594, "end": 595, "id": 104, "annotation": null}, {"text": "Kasuya", "start": 596, "end": 602, "id": 105, "annotation": null}, {"text": "\u2013", "start": 603, "end": 604, "id": 106, "annotation": null}, {"text": "Yosida", "start": 605, "end": 611, "id": 107, "annotation": null}, {"text": "(", "start": 612, "end": 613, "id": 108, "annotation": null}, {"text": "RKKY", "start": 614, "end": 618, "id": 109, "annotation": null}, {"text": ")", "start": 619, "end": 620, "id": 110, "annotation": null}, {"text": "exchange", "start": 621, "end": 629, "id": 111, "annotation": null}, {"text": "interaction", "start": 630, "end": 641, "id": 112, "annotation": null}, {"text": ".", "start": 642, "end": 643, "id": 113, "annotation": null}], [{"text": "To", "start": 644, "end": 646, "id": 114, "annotation": null}, {"text": "examine", "start": 647, "end": 654, "id": 115, "annotation": null}, {"text": "our", "start": 655, "end": 658, "id": 116, "annotation": null}, {"text": "hypothesis", "start": 659, "end": 669, "id": 117, "annotation": null}, {"text": ",", "start": 670, "end": 671, "id": 118, "annotation": null}, {"text": "we", "start": 672, "end": 674, "id": 119, "annotation": null}, {"text": "construct", "start": 675, "end": 684, "id": 120, "annotation": null}, {"text": "a", "start": 685, "end": 686, "id": 121, "annotation": null}, {"text": "tight", "start": 687, "end": 692, "id": 122, "annotation": null}, {"text": "-", "start": 693, "end": 694, "id": 123, "annotation": null}, {"text": "binding", "start": 695, "end": 702, "id": 124, "annotation": null}, {"text": "based", "start": 703, "end": 708, "id": 125, "annotation": null}, {"text": "model", "start": 709, "end": 714, "id": 126, "annotation": null}, {"text": "Hamiltonian", "start": 715, "end": 726, "id": 127, "annotation": null}, {"text": "for", "start": 727, "end": 730, "id": 128, "annotation": null}, {"text": "the", "start": 731, "end": 734, "id": 129, "annotation": null}, {"text": "anatase", "start": 735, "end": 742, "id": 130, "annotation": null}, {"text": "TiO2", "start": 743, "end": 747, "id": 131, "annotation": null}, {"text": "system", "start": 748, "end": 754, "id": 132, "annotation": null}, {"text": ".", "start": 755, "end": 756, "id": 133, "annotation": null}], [{"text": "We", "start": 757, "end": 759, "id": 134, "annotation": null}, {"text": "calculate", "start": 760, "end": 769, "id": 135, "annotation": null}, {"text": "the", "start": 770, "end": 773, "id": 136, "annotation": null}, {"text": "RKKY", "start": 774, "end": 778, "id": 137, "annotation": null}, {"text": "exchange", "start": 779, "end": 787, "id": 138, "annotation": null}, {"text": "coupling", "start": 788, "end": 796, "id": 139, "annotation": null}, {"text": "constant", "start": 797, "end": 805, "id": 140, "annotation": null}, {"text": "of", "start": 806, "end": 808, "id": 141, "annotation": null}, {"text": "TiO2", "start": 809, "end": 813, "id": 142, "annotation": null}, {"text": "as", "start": 814, "end": 816, "id": 143, "annotation": null}, {"text": "a", "start": 817, "end": 818, "id": 144, "annotation": null}, {"text": "function", "start": 819, "end": 827, "id": 145, "annotation": null}, {"text": "of", "start": 828, "end": 830, "id": 146, "annotation": null}, {"text": "distance", "start": 831, "end": 839, "id": 147, "annotation": null}, {"text": "between", "start": 840, "end": 847, "id": 148, "annotation": null}, {"text": "local", "start": 848, "end": 853, "id": 149, "annotation": null}, {"text": "magnetic", "start": 854, "end": 862, "id": 150, "annotation": null}, {"text": "moments", "start": 863, "end": 870, "id": 151, "annotation": null}, {"text": "at", "start": 871, "end": 873, "id": 152, "annotation": null}, {"text": "various", "start": 874, "end": 881, "id": 153, "annotation": null}, {"text": "temperatures", "start": 882, "end": 894, "id": 154, "annotation": null}, {"text": ".", "start": 895, "end": 896, "id": 155, "annotation": null}], [{"text": "We", "start": 897, "end": 899, "id": 156, "annotation": null}, {"text": "model", "start": 900, "end": 905, "id": 157, "annotation": null}, {"text": "the", "start": 906, "end": 909, "id": 158, "annotation": null}, {"text": "system", "start": 910, "end": 916, "id": 159, "annotation": null}, {"text": "by", "start": 917, "end": 919, "id": 160, "annotation": null}, {"text": "taking", "start": 920, "end": 926, "id": 161, "annotation": null}, {"text": "only", "start": 927, "end": 931, "id": 162, "annotation": null}, {"text": "the", "start": 932, "end": 935, "id": 163, "annotation": null}, {"text": "layer", "start": 936, "end": 941, "id": 164, "annotation": null}, {"text": "containing", "start": 942, "end": 952, "id": 165, "annotation": null}, {"text": "a", "start": 953, "end": 954, "id": 166, "annotation": null}, {"text": "unit", "start": 955, "end": 959, "id": 167, "annotation": null}, {"text": "of", "start": 960, "end": 962, "id": 168, "annotation": null}, {"text": "TiO2", "start": 963, "end": 967, "id": 169, "annotation": null}, {"text": ",", "start": 968, "end": 969, "id": 170, "annotation": null}, {"text": "at", "start": 970, "end": 972, "id": 171, "annotation": null}, {"text": "which", "start": 973, "end": 978, "id": 172, "annotation": null}, {"text": "the", "start": 979, "end": 982, "id": 173, "annotation": null}, {"text": "Ti", "start": 983, "end": 985, "id": 174, "annotation": null}, {"text": "vacancy", "start": 986, "end": 993, "id": 175, "annotation": null}, {"text": "is", "start": 994, "end": 996, "id": 176, "annotation": null}, {"text": "believed", "start": 997, "end": 1005, "id": 177, "annotation": null}, {"text": "to", "start": 1006, "end": 1008, "id": 178, "annotation": null}, {"text": "form", "start": 1009, "end": 1013, "id": 179, "annotation": null}, {"text": ",", "start": 1014, "end": 1015, "id": 180, "annotation": null}, {"text": "as", "start": 1016, "end": 1018, "id": 181, "annotation": null}, {"text": "our", "start": 1019, "end": 1022, "id": 182, "annotation": null}, {"text": "effective", "start": 1023, "end": 1032, "id": 183, "annotation": null}, {"text": "two", "start": 1033, "end": 1036, "id": 184, "annotation": null}, {"text": "-", "start": 1037, "end": 1038, "id": 185, "annotation": null}, {"text": "dimensional", "start": 1039, "end": 1050, "id": 186, "annotation": null}, {"text": "unit", "start": 1051, "end": 1055, "id": 187, "annotation": null}, {"text": "cell", "start": 1056, "end": 1060, "id": 188, "annotation": null}, {"text": ".", "start": 1061, "end": 1062, "id": 189, "annotation": null}], [{"text": "Our", "start": 1063, "end": 1066, "id": 190, "annotation": null}, {"text": "model", "start": 1067, "end": 1072, "id": 191, "annotation": null}, {"text": "incorporates", "start": 1073, "end": 1085, "id": 192, "annotation": null}, {"text": "the", "start": 1086, "end": 1089, "id": 193, "annotation": null}, {"text": "Hubbard", "start": 1090, "end": 1097, "id": 194, "annotation": null}, {"text": "repulsive", "start": 1098, "end": 1107, "id": 195, "annotation": null}, {"text": "interactions", "start": 1108, "end": 1120, "id": 196, "annotation": null}, {"text": "between", "start": 1121, "end": 1128, "id": 197, "annotation": null}, {"text": "electrons", "start": 1129, "end": 1138, "id": 198, "annotation": null}, {"text": "occupying", "start": 1139, "end": 1148, "id": 199, "annotation": null}, {"text": "Ti", "start": 1149, "end": 1151, "id": 200, "annotation": null}, {"text": "d", "start": 1152, "end": 1153, "id": 201, "annotation": null}, {"text": "orbitals", "start": 1154, "end": 1162, "id": 202, "annotation": null}, {"text": "treated", "start": 1163, "end": 1170, "id": 203, "annotation": null}, {"text": "within", "start": 1171, "end": 1177, "id": 204, "annotation": null}, {"text": "mean", "start": 1178, "end": 1182, "id": 205, "annotation": null}, {"text": "-", "start": 1183, "end": 1184, "id": 206, "annotation": null}, {"text": "field", "start": 1185, "end": 1190, "id": 207, "annotation": null}, {"text": "approximation", "start": 1191, "end": 1204, "id": 208, "annotation": null}, {"text": ".", "start": 1205, "end": 1206, "id": 209, "annotation": null}], [{"text": "The", "start": 1207, "end": 1210, "id": 210, "annotation": null}, {"text": "density", "start": 1211, "end": 1218, "id": 211, "annotation": null}, {"text": "of", "start": 1219, "end": 1221, "id": 212, "annotation": null}, {"text": "states", "start": 1222, "end": 1228, "id": 213, "annotation": null}, {"text": "profile", "start": 1229, "end": 1236, "id": 214, "annotation": null}, {"text": "resulting", "start": 1237, "end": 1246, "id": 215, "annotation": null}, {"text": "from", "start": 1247, "end": 1251, "id": 216, "annotation": null}, {"text": "the", "start": 1252, "end": 1255, "id": 217, "annotation": null}, {"text": "model", "start": 1256, "end": 1261, "id": 218, "annotation": null}, {"text": "captures", "start": 1262, "end": 1270, "id": 219, "annotation": null}, {"text": "the", "start": 1271, "end": 1274, "id": 220, "annotation": null}, {"text": "relevant", "start": 1275, "end": 1283, "id": 221, "annotation": null}, {"text": "electronic", "start": 1284, "end": 1294, "id": 222, "annotation": null}, {"text": "properties", "start": 1295, "end": 1305, "id": 223, "annotation": null}, {"text": "of", "start": 1306, "end": 1308, "id": 224, "annotation": null}, {"text": "TiO2", "start": 1309, "end": 1313, "id": 225, "annotation": "BASEMAT"}, {"text": ",", "start": 1314, "end": 1315, "id": 226, "annotation": null}, {"text": "such", "start": 1316, "end": 1320, "id": 227, "annotation": null}, {"text": "as", "start": 1321, "end": 1323, "id": 228, "annotation": null}, {"text": "the", "start": 1324, "end": 1327, "id": 229, "annotation": null}, {"text": "energy", "start": 1328, "end": 1334, "id": 230, "annotation": null}, {"text": "gap", "start": 1335, "end": 1338, "id": 231, "annotation": null}, {"text": "of", "start": 1339, "end": 1341, "id": 232, "annotation": null}, {"text": "~3.4eV", "start": 1342, "end": 1348, "id": 233, "annotation": null}, {"text": "and", "start": 1349, "end": 1352, "id": 234, "annotation": null}, {"text": "the", "start": 1353, "end": 1356, "id": 235, "annotation": null}, {"text": "n", "start": 1357, "end": 1358, "id": 236, "annotation": "DOPANT"}, {"text": "-", "start": 1359, "end": 1360, "id": 237, "annotation": "DOPANT"}, {"text": "type", "start": 1361, "end": 1365, "id": 238, "annotation": "DOPANT"}, {"text": "character", "start": 1366, "end": 1375, "id": 239, "annotation": null}, {"text": ",", "start": 1376, "end": 1377, "id": 240, "annotation": null}, {"text": "which", "start": 1378, "end": 1383, "id": 241, "annotation": null}, {"text": "may", "start": 1384, "end": 1387, "id": 242, "annotation": null}, {"text": "be", "start": 1388, "end": 1390, "id": 243, "annotation": null}, {"text": "a", "start": 1391, "end": 1392, "id": 244, "annotation": null}, {"text": "measure", "start": 1393, "end": 1400, "id": 245, "annotation": null}, {"text": "of", "start": 1401, "end": 1403, "id": 246, "annotation": null}, {"text": "the", "start": 1404, "end": 1407, "id": 247, "annotation": null}, {"text": "adequacy", "start": 1408, "end": 1416, "id": 248, "annotation": null}, {"text": "of", "start": 1417, "end": 1419, "id": 249, "annotation": null}, {"text": "the", "start": 1420, "end": 1423, "id": 250, "annotation": null}, {"text": "model", "start": 1424, "end": 1429, "id": 251, "annotation": null}, {"text": ".", "start": 1430, "end": 1431, "id": 252, "annotation": null}], [{"text": "The", "start": 1432, "end": 1435, "id": 253, "annotation": null}, {"text": "calculated", "start": 1436, "end": 1446, "id": 254, "annotation": null}, {"text": "RKKY", "start": 1447, "end": 1451, "id": 255, "annotation": null}, {"text": "coupling", "start": 1452, "end": 1460, "id": 256, "annotation": null}, {"text": "constant", "start": 1461, "end": 1469, "id": 257, "annotation": null}, {"text": "shows", "start": 1470, "end": 1475, "id": 258, "annotation": null}, {"text": "that", "start": 1476, "end": 1480, "id": 259, "annotation": null}, {"text": "the", "start": 1481, "end": 1484, "id": 260, "annotation": null}, {"text": "ferromagnetic", "start": 1485, "end": 1498, "id": 261, "annotation": null}, {"text": "coupling", "start": 1499, "end": 1507, "id": 262, "annotation": null}, {"text": "extends", "start": 1508, "end": 1515, "id": 263, "annotation": null}, {"text": "up", "start": 1516, "end": 1518, "id": 264, "annotation": null}, {"text": "to", "start": 1519, "end": 1521, "id": 265, "annotation": null}, {"text": "3\u20134", "start": 1522, "end": 1525, "id": 266, "annotation": null}, {"text": "unit", "start": 1526, "end": 1530, "id": 267, "annotation": null}, {"text": "cells", "start": 1531, "end": 1536, "id": 268, "annotation": null}, {"text": "and", "start": 1537, "end": 1540, "id": 269, "annotation": null}, {"text": "enhances", "start": 1541, "end": 1549, "id": 270, "annotation": null}, {"text": "slightly", "start": 1550, "end": 1558, "id": 271, "annotation": null}, {"text": "as", "start": 1559, "end": 1561, "id": 272, "annotation": null}, {"text": "temperature", "start": 1562, "end": 1573, "id": 273, "annotation": null}, {"text": "is", "start": 1574, "end": 1576, "id": 274, "annotation": null}, {"text": "increased", "start": 1577, "end": 1586, "id": 275, "annotation": null}, {"text": "from", "start": 1587, "end": 1591, "id": 276, "annotation": null}, {"text": "0", "start": 1592, "end": 1593, "id": 277, "annotation": null}, {"text": "to", "start": 1594, "end": 1596, "id": 278, "annotation": null}, {"text": "400K.", "start": 1597, "end": 1602, "id": 279, "annotation": null}], [{"text": "These", "start": 1603, "end": 1608, "id": 280, "annotation": null}, {"text": "results", "start": 1609, "end": 1616, "id": 281, "annotation": null}, {"text": "support", "start": 1617, "end": 1624, "id": 282, "annotation": null}, {"text": "our", "start": 1625, "end": 1628, "id": 283, "annotation": null}, {"text": "hypothesis", "start": 1629, "end": 1639, "id": 284, "annotation": null}, {"text": "that", "start": 1640, "end": 1644, "id": 285, "annotation": null}, {"text": "the", "start": 1645, "end": 1648, "id": 286, "annotation": null}, {"text": "ferromagnetism", "start": 1649, "end": 1663, "id": 287, "annotation": null}, {"text": "of", "start": 1664, "end": 1666, "id": 288, "annotation": null}, {"text": "this", "start": 1667, "end": 1671, "id": 289, "annotation": null}, {"text": "system", "start": 1672, "end": 1678, "id": 290, "annotation": null}, {"text": "is", "start": 1679, "end": 1681, "id": 291, "annotation": null}, {"text": "driven", "start": 1682, "end": 1688, "id": 292, "annotation": null}, {"text": "by", "start": 1689, "end": 1691, "id": 293, "annotation": null}, {"text": "RKKY", "start": 1692, "end": 1696, "id": 294, "annotation": null}, {"text": "mechanism", "start": 1697, "end": 1706, "id": 295, "annotation": null}, {"text": ".", "start": 1707, "end": 1708, "id": 296, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Both experiment and theory have shown that the stress has a notable impact on the polarization of Nd-doped Bi4Ti3O12 films. In this paper, thermodynamic theory is used to study the effect of stress on the dielectric constants of Bi4Ti3O12 films at room temperature with a two-dimensional model. Results indicate that the change of the dielectric constant for a-phase induced by the lattice distortion is far greater than that for c-phase. Considering the domain reorientation, the external tensile stress may lead to an obvious decrease in the effective dielectric constant of Bi4Ti3O12 films.", "meta": {"doi": "10.1016/j.tsf.2009.10.035"}, "_input_hash": 2061101867, "_task_hash": -79609361, "tokens": [[{"text": "Both", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "experiment", "start": 5, "end": 15, "id": 1, "annotation": null}, {"text": "and", "start": 16, "end": 19, "id": 2, "annotation": null}, {"text": "theory", "start": 20, "end": 26, "id": 3, "annotation": null}, {"text": "have", "start": 27, "end": 31, "id": 4, "annotation": null}, {"text": "shown", "start": 32, "end": 37, "id": 5, "annotation": null}, {"text": "that", "start": 38, "end": 42, "id": 6, "annotation": null}, {"text": "the", "start": 43, "end": 46, "id": 7, "annotation": null}, {"text": "stress", "start": 47, "end": 53, "id": 8, "annotation": null}, {"text": "has", "start": 54, "end": 57, "id": 9, "annotation": null}, {"text": "a", "start": 58, "end": 59, "id": 10, "annotation": null}, {"text": "notable", "start": 60, "end": 67, "id": 11, "annotation": null}, {"text": "impact", "start": 68, "end": 74, "id": 12, "annotation": null}, {"text": "on", "start": 75, "end": 77, "id": 13, "annotation": null}, {"text": "the", "start": 78, "end": 81, "id": 14, "annotation": null}, {"text": "polarization", "start": 82, "end": 94, "id": 15, "annotation": null}, {"text": "of", "start": 95, "end": 97, "id": 16, "annotation": null}, {"text": "Nd", "start": 98, "end": 100, "id": 17, "annotation": "DOPANT"}, {"text": "-", "start": 101, "end": 102, "id": 18, "annotation": null}, {"text": "doped", "start": 103, "end": 108, "id": 19, "annotation": null}, {"text": "Bi4Ti3O12", "start": 109, "end": 118, "id": 20, "annotation": "BASEMAT"}, {"text": "films", "start": 119, "end": 124, "id": 21, "annotation": null}, {"text": ".", "start": 125, "end": 126, "id": 22, "annotation": null}], [{"text": "In", "start": 127, "end": 129, "id": 23, "annotation": null}, {"text": "this", "start": 130, "end": 134, "id": 24, "annotation": null}, {"text": "paper", "start": 135, "end": 140, "id": 25, "annotation": null}, {"text": ",", "start": 141, "end": 142, "id": 26, "annotation": null}, {"text": "thermodynamic", "start": 143, "end": 156, "id": 27, "annotation": null}, {"text": "theory", "start": 157, "end": 163, "id": 28, "annotation": null}, {"text": "is", "start": 164, "end": 166, "id": 29, "annotation": null}, {"text": "used", "start": 167, "end": 171, "id": 30, "annotation": null}, {"text": "to", "start": 172, "end": 174, "id": 31, "annotation": null}, {"text": "study", "start": 175, "end": 180, "id": 32, "annotation": null}, {"text": "the", "start": 181, "end": 184, "id": 33, "annotation": null}, {"text": "effect", "start": 185, "end": 191, "id": 34, "annotation": null}, {"text": "of", "start": 192, "end": 194, "id": 35, "annotation": null}, {"text": "stress", "start": 195, "end": 201, "id": 36, "annotation": null}, {"text": "on", "start": 202, "end": 204, "id": 37, "annotation": null}, {"text": "the", "start": 205, "end": 208, "id": 38, "annotation": null}, {"text": "dielectric", "start": 209, "end": 219, "id": 39, "annotation": null}, {"text": "constants", "start": 220, "end": 229, "id": 40, "annotation": null}, {"text": "of", "start": 230, "end": 232, "id": 41, "annotation": null}, {"text": "Bi4Ti3O12", "start": 233, "end": 242, "id": 42, "annotation": null}, {"text": "films", "start": 243, "end": 248, "id": 43, "annotation": null}, {"text": "at", "start": 249, "end": 251, "id": 44, "annotation": null}, {"text": "room", "start": 252, "end": 256, "id": 45, "annotation": null}, {"text": "temperature", "start": 257, "end": 268, "id": 46, "annotation": null}, {"text": "with", "start": 269, "end": 273, "id": 47, "annotation": null}, {"text": "a", "start": 274, "end": 275, "id": 48, "annotation": null}, {"text": "two", "start": 276, "end": 279, "id": 49, "annotation": null}, {"text": "-", "start": 280, "end": 281, "id": 50, "annotation": null}, {"text": "dimensional", "start": 282, "end": 293, "id": 51, "annotation": null}, {"text": "model", "start": 294, "end": 299, "id": 52, "annotation": null}, {"text": ".", "start": 300, "end": 301, "id": 53, "annotation": null}], [{"text": "Results", "start": 302, "end": 309, "id": 54, "annotation": null}, {"text": "indicate", "start": 310, "end": 318, "id": 55, "annotation": null}, {"text": "that", "start": 319, "end": 323, "id": 56, "annotation": null}, {"text": "the", "start": 324, "end": 327, "id": 57, "annotation": null}, {"text": "change", "start": 328, "end": 334, "id": 58, "annotation": null}, {"text": "of", "start": 335, "end": 337, "id": 59, "annotation": null}, {"text": "the", "start": 338, "end": 341, "id": 60, "annotation": null}, {"text": "dielectric", "start": 342, "end": 352, "id": 61, "annotation": null}, {"text": "constant", "start": 353, "end": 361, "id": 62, "annotation": null}, {"text": "for", "start": 362, "end": 365, "id": 63, "annotation": null}, {"text": "a", "start": 366, "end": 367, "id": 64, "annotation": null}, {"text": "-", "start": 368, "end": 369, "id": 65, "annotation": null}, {"text": "phase", "start": 370, "end": 375, "id": 66, "annotation": null}, {"text": "induced", "start": 376, "end": 383, "id": 67, "annotation": null}, {"text": "by", "start": 384, "end": 386, "id": 68, "annotation": null}, {"text": "the", "start": 387, "end": 390, "id": 69, "annotation": null}, {"text": "lattice", "start": 391, "end": 398, "id": 70, "annotation": null}, {"text": "distortion", "start": 399, "end": 409, "id": 71, "annotation": null}, {"text": "is", "start": 410, "end": 412, "id": 72, "annotation": null}, {"text": "far", "start": 413, "end": 416, "id": 73, "annotation": null}, {"text": "greater", "start": 417, "end": 424, "id": 74, "annotation": null}, {"text": "than", "start": 425, "end": 429, "id": 75, "annotation": null}, {"text": "that", "start": 430, "end": 434, "id": 76, "annotation": null}, {"text": "for", "start": 435, "end": 438, "id": 77, "annotation": null}, {"text": "c", "start": 439, "end": 440, "id": 78, "annotation": null}, {"text": "-", "start": 441, "end": 442, "id": 79, "annotation": null}, {"text": "phase", "start": 443, "end": 448, "id": 80, "annotation": null}, {"text": ".", "start": 449, "end": 450, "id": 81, "annotation": null}], [{"text": "Considering", "start": 451, "end": 462, "id": 82, "annotation": null}, {"text": "the", "start": 463, "end": 466, "id": 83, "annotation": null}, {"text": "domain", "start": 467, "end": 473, "id": 84, "annotation": null}, {"text": "reorientation", "start": 474, "end": 487, "id": 85, "annotation": null}, {"text": ",", "start": 488, "end": 489, "id": 86, "annotation": null}, {"text": "the", "start": 490, "end": 493, "id": 87, "annotation": null}, {"text": "external", "start": 494, "end": 502, "id": 88, "annotation": null}, {"text": "tensile", "start": 503, "end": 510, "id": 89, "annotation": null}, {"text": "stress", "start": 511, "end": 517, "id": 90, "annotation": null}, {"text": "may", "start": 518, "end": 521, "id": 91, "annotation": null}, {"text": "lead", "start": 522, "end": 526, "id": 92, "annotation": null}, {"text": "to", "start": 527, "end": 529, "id": 93, "annotation": null}, {"text": "an", "start": 530, "end": 532, "id": 94, "annotation": null}, {"text": "obvious", "start": 533, "end": 540, "id": 95, "annotation": null}, {"text": "decrease", "start": 541, "end": 549, "id": 96, "annotation": null}, {"text": "in", "start": 550, "end": 552, "id": 97, "annotation": null}, {"text": "the", "start": 553, "end": 556, "id": 98, "annotation": null}, {"text": "effective", "start": 557, "end": 566, "id": 99, "annotation": null}, {"text": "dielectric", "start": 567, "end": 577, "id": 100, "annotation": null}, {"text": "constant", "start": 578, "end": 586, "id": 101, "annotation": null}, {"text": "of", "start": 587, "end": 589, "id": 102, "annotation": null}, {"text": "Bi4Ti3O12", "start": 590, "end": 599, "id": 103, "annotation": null}, {"text": "films", "start": 600, "end": 605, "id": 104, "annotation": null}, {"text": ".", "start": 606, "end": 607, "id": 105, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "We performed angle-resolved photoemission experiments on overdoped single crystal Bi2Sr2CaCu2O8+x samples with Tc values as low as 55K and very narrow transitions as measured by AC susceptibility. The photoemission data indicate the presence of a \u201cshadow\u201d peak in the quasiparticle spectral function A(\u03c9) shifted by (\u03c0, \u03c0) from the conventional quasiparticle peak. The ratio of the shadow/quasiparticle peak amplitudes strongly increases with the binding energy. This is consistent with the idea that the shadow peak is not a structural replica of the quasiparticle peak, but rather a maximum in a spectral function which can exist due to interaction with spin fluctuations peaked at (\u03c0, \u03c0).", "meta": {"doi": "10.1016/S0038-1098(97)00378-5"}, "_input_hash": 1698122648, "_task_hash": 774323637, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "performed", "start": 3, "end": 12, "id": 1, "annotation": null}, {"text": "angle", "start": 13, "end": 18, "id": 2, "annotation": null}, {"text": "-", "start": 19, "end": 20, "id": 3, "annotation": null}, {"text": "resolved", "start": 21, "end": 29, "id": 4, "annotation": null}, {"text": "photoemission", "start": 30, "end": 43, "id": 5, "annotation": null}, {"text": "experiments", "start": 44, "end": 55, "id": 6, "annotation": null}, {"text": "on", "start": 56, "end": 58, "id": 7, "annotation": null}, {"text": "overdoped", "start": 59, "end": 68, "id": 8, "annotation": null}, {"text": "single", "start": 69, "end": 75, "id": 9, "annotation": null}, {"text": "crystal", "start": 76, "end": 83, "id": 10, "annotation": null}, {"text": "Bi2Sr2CaCu2O8+x", "start": 84, "end": 99, "id": 11, "annotation": "BASEMAT"}, {"text": "samples", "start": 100, "end": 107, "id": 12, "annotation": null}, {"text": "with", "start": 108, "end": 112, "id": 13, "annotation": null}, {"text": "Tc", "start": 113, "end": 115, "id": 14, "annotation": null}, {"text": "values", "start": 116, "end": 122, "id": 15, "annotation": null}, {"text": "as", "start": 123, "end": 125, "id": 16, "annotation": null}, {"text": "low", "start": 126, "end": 129, "id": 17, "annotation": null}, {"text": "as", "start": 130, "end": 132, "id": 18, "annotation": null}, {"text": "55", "start": 133, "end": 135, "id": 19, "annotation": null}, {"text": "K", "start": 136, "end": 137, "id": 20, "annotation": null}, {"text": "and", "start": 138, "end": 141, "id": 21, "annotation": null}, {"text": "very", "start": 142, "end": 146, "id": 22, "annotation": null}, {"text": "narrow", "start": 147, "end": 153, "id": 23, "annotation": null}, {"text": "transitions", "start": 154, "end": 165, "id": 24, "annotation": null}, {"text": "as", "start": 166, "end": 168, "id": 25, "annotation": null}, {"text": "measured", "start": 169, "end": 177, "id": 26, "annotation": null}, {"text": "by", "start": 178, "end": 180, "id": 27, "annotation": null}, {"text": "AC", "start": 181, "end": 183, "id": 28, "annotation": null}, {"text": "susceptibility", "start": 184, "end": 198, "id": 29, "annotation": null}, {"text": ".", "start": 199, "end": 200, "id": 30, "annotation": null}], [{"text": "The", "start": 201, "end": 204, "id": 31, "annotation": null}, {"text": "photoemission", "start": 205, "end": 218, "id": 32, "annotation": null}, {"text": "data", "start": 219, "end": 223, "id": 33, "annotation": null}, {"text": "indicate", "start": 224, "end": 232, "id": 34, "annotation": null}, {"text": "the", "start": 233, "end": 236, "id": 35, "annotation": null}, {"text": "presence", "start": 237, "end": 245, "id": 36, "annotation": null}, {"text": "of", "start": 246, "end": 248, "id": 37, "annotation": null}, {"text": "a", "start": 249, "end": 250, "id": 38, "annotation": null}, {"text": "\u201c", "start": 251, "end": 252, "id": 39, "annotation": null}, {"text": "shadow", "start": 253, "end": 259, "id": 40, "annotation": null}, {"text": "\u201d", "start": 260, "end": 261, "id": 41, "annotation": null}, {"text": "peak", "start": 262, "end": 266, "id": 42, "annotation": null}, {"text": "in", "start": 267, "end": 269, "id": 43, "annotation": null}, {"text": "the", "start": 270, "end": 273, "id": 44, "annotation": null}, {"text": "quasiparticle", "start": 274, "end": 287, "id": 45, "annotation": null}, {"text": "spectral", "start": 288, "end": 296, "id": 46, "annotation": null}, {"text": "function", "start": 297, "end": 305, "id": 47, "annotation": null}, {"text": "A(\u03c9", "start": 306, "end": 309, "id": 48, "annotation": null}, {"text": ")", "start": 310, "end": 311, "id": 49, "annotation": null}, {"text": "shifted", "start": 312, "end": 319, "id": 50, "annotation": null}, {"text": "by", "start": 320, "end": 322, "id": 51, "annotation": null}, {"text": "(", "start": 323, "end": 324, "id": 52, "annotation": null}, {"text": "\u03c0", "start": 325, "end": 326, "id": 53, "annotation": null}, {"text": ",", "start": 327, "end": 328, "id": 54, "annotation": null}, {"text": "\u03c0", "start": 329, "end": 330, "id": 55, "annotation": null}, {"text": ")", "start": 331, "end": 332, "id": 56, "annotation": null}, {"text": "from", "start": 333, "end": 337, "id": 57, "annotation": null}, {"text": "the", "start": 338, "end": 341, "id": 58, "annotation": null}, {"text": "conventional", "start": 342, "end": 354, "id": 59, "annotation": null}, {"text": "quasiparticle", "start": 355, "end": 368, "id": 60, "annotation": null}, {"text": "peak", "start": 369, "end": 373, "id": 61, "annotation": null}, {"text": ".", "start": 374, "end": 375, "id": 62, "annotation": null}], [{"text": "The", "start": 376, "end": 379, "id": 63, "annotation": null}, {"text": "ratio", "start": 380, "end": 385, "id": 64, "annotation": null}, {"text": "of", "start": 386, "end": 388, "id": 65, "annotation": null}, {"text": "the", "start": 389, "end": 392, "id": 66, "annotation": null}, {"text": "shadow", "start": 393, "end": 399, "id": 67, "annotation": null}, {"text": "/", "start": 400, "end": 401, "id": 68, "annotation": null}, {"text": "quasiparticle", "start": 402, "end": 415, "id": 69, "annotation": null}, {"text": "peak", "start": 416, "end": 420, "id": 70, "annotation": null}, {"text": "amplitudes", "start": 421, "end": 431, "id": 71, "annotation": null}, {"text": "strongly", "start": 432, "end": 440, "id": 72, "annotation": null}, {"text": "increases", "start": 441, "end": 450, "id": 73, "annotation": null}, {"text": "with", "start": 451, "end": 455, "id": 74, "annotation": null}, {"text": "the", "start": 456, "end": 459, "id": 75, "annotation": null}, {"text": "binding", "start": 460, "end": 467, "id": 76, "annotation": null}, {"text": "energy", "start": 468, "end": 474, "id": 77, "annotation": null}, {"text": ".", "start": 475, "end": 476, "id": 78, "annotation": null}], [{"text": "This", "start": 477, "end": 481, "id": 79, "annotation": null}, {"text": "is", "start": 482, "end": 484, "id": 80, "annotation": null}, {"text": "consistent", "start": 485, "end": 495, "id": 81, "annotation": null}, {"text": "with", "start": 496, "end": 500, "id": 82, "annotation": null}, {"text": "the", "start": 501, "end": 504, "id": 83, "annotation": null}, {"text": "idea", "start": 505, "end": 509, "id": 84, "annotation": null}, {"text": "that", "start": 510, "end": 514, "id": 85, "annotation": null}, {"text": "the", "start": 515, "end": 518, "id": 86, "annotation": null}, {"text": "shadow", "start": 519, "end": 525, "id": 87, "annotation": null}, {"text": "peak", "start": 526, "end": 530, "id": 88, "annotation": null}, {"text": "is", "start": 531, "end": 533, "id": 89, "annotation": null}, {"text": "not", "start": 534, "end": 537, "id": 90, "annotation": null}, {"text": "a", "start": 538, "end": 539, "id": 91, "annotation": null}, {"text": "structural", "start": 540, "end": 550, "id": 92, "annotation": null}, {"text": "replica", "start": 551, "end": 558, "id": 93, "annotation": null}, {"text": "of", "start": 559, "end": 561, "id": 94, "annotation": null}, {"text": "the", "start": 562, "end": 565, "id": 95, "annotation": null}, {"text": "quasiparticle", "start": 566, "end": 579, "id": 96, "annotation": null}, {"text": "peak", "start": 580, "end": 584, "id": 97, "annotation": null}, {"text": ",", "start": 585, "end": 586, "id": 98, "annotation": null}, {"text": "but", "start": 587, "end": 590, "id": 99, "annotation": null}, {"text": "rather", "start": 591, "end": 597, "id": 100, "annotation": null}, {"text": "a", "start": 598, "end": 599, "id": 101, "annotation": null}, {"text": "maximum", "start": 600, "end": 607, "id": 102, "annotation": null}, {"text": "in", "start": 608, "end": 610, "id": 103, "annotation": null}, {"text": "a", "start": 611, "end": 612, "id": 104, "annotation": null}, {"text": "spectral", "start": 613, "end": 621, "id": 105, "annotation": null}, {"text": "function", "start": 622, "end": 630, "id": 106, "annotation": null}, {"text": "which", "start": 631, "end": 636, "id": 107, "annotation": null}, {"text": "can", "start": 637, "end": 640, "id": 108, "annotation": null}, {"text": "exist", "start": 641, "end": 646, "id": 109, "annotation": null}, {"text": "due", "start": 647, "end": 650, "id": 110, "annotation": null}, {"text": "to", "start": 651, "end": 653, "id": 111, "annotation": null}, {"text": "interaction", "start": 654, "end": 665, "id": 112, "annotation": null}, {"text": "with", "start": 666, "end": 670, "id": 113, "annotation": null}, {"text": "spin", "start": 671, "end": 675, "id": 114, "annotation": null}, {"text": "fluctuations", "start": 676, "end": 688, "id": 115, "annotation": null}, {"text": "peaked", "start": 689, "end": 695, "id": 116, "annotation": null}, {"text": "at", "start": 696, "end": 698, "id": 117, "annotation": null}, {"text": "(", "start": 699, "end": 700, "id": 118, "annotation": null}, {"text": "\u03c0", "start": 701, "end": 702, "id": 119, "annotation": null}, {"text": ",", "start": 703, "end": 704, "id": 120, "annotation": null}, {"text": "\u03c0", "start": 705, "end": 706, "id": 121, "annotation": null}, {"text": ")", "start": 707, "end": 708, "id": 122, "annotation": null}, {"text": ".", "start": 709, "end": 710, "id": 123, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Natural mineral rutile (TiO2) was studied as anode for photoelectrolysis of water. Both its photoelectrochemical behavior and semiconducting properties are examined in comparison with those of Fe-doped synthetic single crystal TiO2, the latter independently studied to simulate the high impurity content existent in the mineral. The natural and synthetic Fe-doped TiO2 electrodes showed a performance comparable to that of arc-plasma sprayed raw rutile, including a low breakdown potential. Flatband potentials and donor densities were determined from Mott-Schottky plots and evidence for deep and shallow donors is discussed. Photoresponse measurements allowed us to verify the influence of the iron impurities on the performance of such electrodes. All rights reserved.", "meta": {"doi": "10.1149/1.2129389"}, "_input_hash": -1710080585, "_task_hash": -494567718, "tokens": [[{"text": "Natural", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "mineral", "start": 8, "end": 15, "id": 1, "annotation": null}, {"text": "rutile", "start": 16, "end": 22, "id": 2, "annotation": null}, {"text": "(", "start": 23, "end": 24, "id": 3, "annotation": null}, {"text": "TiO2", "start": 25, "end": 29, "id": 4, "annotation": null}, {"text": ")", "start": 30, "end": 31, "id": 5, "annotation": null}, {"text": "was", "start": 32, "end": 35, "id": 6, "annotation": null}, {"text": "studied", "start": 36, "end": 43, "id": 7, "annotation": null}, {"text": "as", "start": 44, "end": 46, "id": 8, "annotation": null}, {"text": "anode", "start": 47, "end": 52, "id": 9, "annotation": null}, {"text": "for", "start": 53, "end": 56, "id": 10, "annotation": null}, {"text": "photoelectrolysis", "start": 57, "end": 74, "id": 11, "annotation": null}, {"text": "of", "start": 75, "end": 77, "id": 12, "annotation": null}, {"text": "water", "start": 78, "end": 83, "id": 13, "annotation": null}, {"text": ".", "start": 84, "end": 85, "id": 14, "annotation": null}], [{"text": "Both", "start": 86, "end": 90, "id": 15, "annotation": null}, {"text": "its", "start": 91, "end": 94, "id": 16, "annotation": null}, {"text": "photoelectrochemical", "start": 95, "end": 115, "id": 17, "annotation": null}, {"text": "behavior", "start": 116, "end": 124, "id": 18, "annotation": null}, {"text": "and", "start": 125, "end": 128, "id": 19, "annotation": null}, {"text": "semiconducting", "start": 129, "end": 143, "id": 20, "annotation": null}, {"text": "properties", "start": 144, "end": 154, "id": 21, "annotation": null}, {"text": "are", "start": 155, "end": 158, "id": 22, "annotation": null}, {"text": "examined", "start": 159, "end": 167, "id": 23, "annotation": null}, {"text": "in", "start": 168, "end": 170, "id": 24, "annotation": null}, {"text": "comparison", "start": 171, "end": 181, "id": 25, "annotation": null}, {"text": "with", "start": 182, "end": 186, "id": 26, "annotation": null}, {"text": "those", "start": 187, "end": 192, "id": 27, "annotation": null}, {"text": "of", "start": 193, "end": 195, "id": 28, "annotation": null}, {"text": "Fe", "start": 196, "end": 198, "id": 29, "annotation": "DOPANT"}, {"text": "-", "start": 199, "end": 200, "id": 30, "annotation": null}, {"text": "doped", "start": 201, "end": 206, "id": 31, "annotation": null}, {"text": "synthetic", "start": 207, "end": 216, "id": 32, "annotation": null}, {"text": "single", "start": 217, "end": 223, "id": 33, "annotation": null}, {"text": "crystal", "start": 224, "end": 231, "id": 34, "annotation": null}, {"text": "TiO2", "start": 232, "end": 236, "id": 35, "annotation": "BASEMAT"}, {"text": ",", "start": 237, "end": 238, "id": 36, "annotation": null}, {"text": "the", "start": 239, "end": 242, "id": 37, "annotation": null}, {"text": "latter", "start": 243, "end": 249, "id": 38, "annotation": null}, {"text": "independently", "start": 250, "end": 263, "id": 39, "annotation": null}, {"text": "studied", "start": 264, "end": 271, "id": 40, "annotation": null}, {"text": "to", "start": 272, "end": 274, "id": 41, "annotation": null}, {"text": "simulate", "start": 275, "end": 283, "id": 42, "annotation": null}, {"text": "the", "start": 284, "end": 287, "id": 43, "annotation": null}, {"text": "high", "start": 288, "end": 292, "id": 44, "annotation": null}, {"text": "impurity", "start": 293, "end": 301, "id": 45, "annotation": null}, {"text": "content", "start": 302, "end": 309, "id": 46, "annotation": null}, {"text": "existent", "start": 310, "end": 318, "id": 47, "annotation": null}, {"text": "in", "start": 319, "end": 321, "id": 48, "annotation": null}, {"text": "the", "start": 322, "end": 325, "id": 49, "annotation": null}, {"text": "mineral", "start": 326, "end": 333, "id": 50, "annotation": null}, {"text": ".", "start": 334, "end": 335, "id": 51, "annotation": null}], [{"text": "The", "start": 336, "end": 339, "id": 52, "annotation": null}, {"text": "natural", "start": 340, "end": 347, "id": 53, "annotation": null}, {"text": "and", "start": 348, "end": 351, "id": 54, "annotation": null}, {"text": "synthetic", "start": 352, "end": 361, "id": 55, "annotation": null}, {"text": "Fe", "start": 362, "end": 364, "id": 56, "annotation": "DOPANT"}, {"text": "-", "start": 365, "end": 366, "id": 57, "annotation": null}, {"text": "doped", "start": 367, "end": 372, "id": 58, "annotation": null}, {"text": "TiO2", "start": 373, "end": 377, "id": 59, "annotation": "BASEMAT"}, {"text": "electrodes", "start": 378, "end": 388, "id": 60, "annotation": null}, {"text": "showed", "start": 389, "end": 395, "id": 61, "annotation": null}, {"text": "a", "start": 396, "end": 397, "id": 62, "annotation": null}, {"text": "performance", "start": 398, "end": 409, "id": 63, "annotation": null}, {"text": "comparable", "start": 410, "end": 420, "id": 64, "annotation": null}, {"text": "to", "start": 421, "end": 423, "id": 65, "annotation": null}, {"text": "that", "start": 424, "end": 428, "id": 66, "annotation": null}, {"text": "of", "start": 429, "end": 431, "id": 67, "annotation": null}, {"text": "arc", "start": 432, "end": 435, "id": 68, "annotation": null}, {"text": "-", "start": 436, "end": 437, "id": 69, "annotation": null}, {"text": "plasma", "start": 438, "end": 444, "id": 70, "annotation": null}, {"text": "sprayed", "start": 445, "end": 452, "id": 71, "annotation": null}, {"text": "raw", "start": 453, "end": 456, "id": 72, "annotation": null}, {"text": "rutile", "start": 457, "end": 463, "id": 73, "annotation": null}, {"text": ",", "start": 464, "end": 465, "id": 74, "annotation": null}, {"text": "including", "start": 466, "end": 475, "id": 75, "annotation": null}, {"text": "a", "start": 476, "end": 477, "id": 76, "annotation": null}, {"text": "low", "start": 478, "end": 481, "id": 77, "annotation": null}, {"text": "breakdown", "start": 482, "end": 491, "id": 78, "annotation": null}, {"text": "potential", "start": 492, "end": 501, "id": 79, "annotation": null}, {"text": ".", "start": 502, "end": 503, "id": 80, "annotation": null}], [{"text": "Flatband", "start": 504, "end": 512, "id": 81, "annotation": null}, {"text": "potentials", "start": 513, "end": 523, "id": 82, "annotation": null}, {"text": "and", "start": 524, "end": 527, "id": 83, "annotation": null}, {"text": "donor", "start": 528, "end": 533, "id": 84, "annotation": null}, {"text": "densities", "start": 534, "end": 543, "id": 85, "annotation": null}, {"text": "were", "start": 544, "end": 548, "id": 86, "annotation": null}, {"text": "determined", "start": 549, "end": 559, "id": 87, "annotation": null}, {"text": "from", "start": 560, "end": 564, "id": 88, "annotation": null}, {"text": "Mott", "start": 565, "end": 569, "id": 89, "annotation": null}, {"text": "-", "start": 570, "end": 571, "id": 90, "annotation": null}, {"text": "Schottky", "start": 572, "end": 580, "id": 91, "annotation": null}, {"text": "plots", "start": 581, "end": 586, "id": 92, "annotation": null}, {"text": "and", "start": 587, "end": 590, "id": 93, "annotation": null}, {"text": "evidence", "start": 591, "end": 599, "id": 94, "annotation": null}, {"text": "for", "start": 600, "end": 603, "id": 95, "annotation": null}, {"text": "deep", "start": 604, "end": 608, "id": 96, "annotation": null}, {"text": "and", "start": 609, "end": 612, "id": 97, "annotation": null}, {"text": "shallow", "start": 613, "end": 620, "id": 98, "annotation": null}, {"text": "donors", "start": 621, "end": 627, "id": 99, "annotation": null}, {"text": "is", "start": 628, "end": 630, "id": 100, "annotation": null}, {"text": "discussed", "start": 631, "end": 640, "id": 101, "annotation": null}, {"text": ".", "start": 641, "end": 642, "id": 102, "annotation": null}], [{"text": "Photoresponse", "start": 643, "end": 656, "id": 103, "annotation": null}, {"text": "measurements", "start": 657, "end": 669, "id": 104, "annotation": null}, {"text": "allowed", "start": 670, "end": 677, "id": 105, "annotation": null}, {"text": "us", "start": 678, "end": 680, "id": 106, "annotation": null}, {"text": "to", "start": 681, "end": 683, "id": 107, "annotation": null}, {"text": "verify", "start": 684, "end": 690, "id": 108, "annotation": null}, {"text": "the", "start": 691, "end": 694, "id": 109, "annotation": null}, {"text": "influence", "start": 695, "end": 704, "id": 110, "annotation": null}, {"text": "of", "start": 705, "end": 707, "id": 111, "annotation": null}, {"text": "the", "start": 708, "end": 711, "id": 112, "annotation": null}, {"text": "iron", "start": 712, "end": 716, "id": 113, "annotation": null}, {"text": "impurities", "start": 717, "end": 727, "id": 114, "annotation": null}, {"text": "on", "start": 728, "end": 730, "id": 115, "annotation": null}, {"text": "the", "start": 731, "end": 734, "id": 116, "annotation": null}, {"text": "performance", "start": 735, "end": 746, "id": 117, "annotation": null}, {"text": "of", "start": 747, "end": 749, "id": 118, "annotation": null}, {"text": "such", "start": 750, "end": 754, "id": 119, "annotation": null}, {"text": "electrodes", "start": 755, "end": 765, "id": 120, "annotation": null}, {"text": ".", "start": 766, "end": 767, "id": 121, "annotation": null}], [{"text": "All", "start": 812, "end": 815, "id": 130, "annotation": null}, {"text": "rights", "start": 816, "end": 822, "id": 131, "annotation": null}, {"text": "reserved", "start": 823, "end": 831, "id": 132, "annotation": null}, {"text": ".", "start": 832, "end": 833, "id": 133, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "We have studied temperature dependence of the resistivity of Sb doped Si at low temperature down to 10mK. In the vicinity of metal-nonmetal transition in Sb doped Si, the low-temperature resistivity in a just metallic side shows a logarithmic increase with lowering temperature. After thermal annealing the log-T dependence disappears and T 1 2 dependence is observed in the same temperature region. We find that the log-T dependence in the low-temperature resistivity comes from a surface-related conduction.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "have", "start": 3, "end": 7, "annotation": null}, {"text": "studied", "start": 8, "end": 15, "annotation": null}, {"text": "temperature", "start": 16, "end": 27, "annotation": null}, {"text": "dependence", "start": 28, "end": 38, "annotation": null}, {"text": "of", "start": 39, "end": 41, "annotation": null}, {"text": "the", "start": 42, "end": 45, "annotation": null}, {"text": "resistivity", "start": 46, "end": 57, "annotation": null}, {"text": "of", "start": 58, "end": 60, "annotation": null}, {"text": "Sb", "start": 61, "end": 63, "annotation": "DOPANT"}, {"text": "doped", "start": 64, "end": 69, "annotation": null}, {"text": "Si", "start": 70, "end": 72, "annotation": "BASEMAT"}, {"text": "at", "start": 73, "end": 75, "annotation": null}, {"text": "low", "start": 76, "end": 79, "annotation": null}, {"text": "temperature", "start": 80, "end": 91, "annotation": null}, {"text": "down", "start": 92, "end": 96, "annotation": null}, {"text": "to", "start": 97, "end": 99, "annotation": null}, {"text": "10mK", "start": 100, "end": 104, "annotation": null}, {"text": ".", "start": 104, "end": 105, "annotation": null}], [{"text": "In", "start": 106, "end": 108, "annotation": null}, {"text": "the", "start": 109, "end": 112, "annotation": null}, {"text": "vicinity", "start": 113, "end": 121, "annotation": null}, {"text": "of", "start": 122, "end": 124, "annotation": null}, {"text": "metal", "start": 125, "end": 130, "annotation": null}, {"text": "-", "start": 130, "end": 131, "annotation": null}, {"text": "nonmetal", "start": 131, "end": 139, "annotation": null}, {"text": "transition", "start": 140, "end": 150, "annotation": null}, {"text": "in", "start": 151, "end": 153, "annotation": null}, {"text": "Sb", "start": 154, "end": 156, "annotation": "DOPANT"}, {"text": "doped", "start": 157, "end": 162, "annotation": null}, {"text": "Si", "start": 163, "end": 165, "annotation": "BASEMAT"}, {"text": ",", "start": 165, "end": 166, "annotation": null}, {"text": "the", "start": 167, "end": 170, "annotation": null}, {"text": "low", "start": 171, "end": 174, "annotation": null}, {"text": "-", "start": 174, "end": 175, "annotation": null}, {"text": "temperature", "start": 175, "end": 186, "annotation": null}, {"text": "resistivity", "start": 187, "end": 198, "annotation": null}, {"text": "in", "start": 199, "end": 201, "annotation": null}, {"text": "a", "start": 202, "end": 203, "annotation": null}, {"text": "just", "start": 204, "end": 208, "annotation": null}, {"text": "metallic", "start": 209, "end": 217, "annotation": null}, {"text": "side", "start": 218, "end": 222, "annotation": null}, {"text": "shows", "start": 223, "end": 228, "annotation": null}, {"text": "a", "start": 229, "end": 230, "annotation": null}, {"text": "logarithmic", "start": 231, "end": 242, "annotation": null}, {"text": "increase", "start": 243, "end": 251, "annotation": null}, {"text": "with", "start": 252, "end": 256, "annotation": null}, {"text": "lowering", "start": 257, "end": 265, "annotation": null}, {"text": "temperature", "start": 266, "end": 277, "annotation": null}, {"text": ".", "start": 277, "end": 278, "annotation": null}], [{"text": "After", "start": 279, "end": 284, "annotation": null}, {"text": "thermal", "start": 285, "end": 292, "annotation": null}, {"text": "annealing", "start": 293, "end": 302, "annotation": null}, {"text": "the", "start": 303, "end": 306, "annotation": null}, {"text": "log-T", "start": 307, "end": 312, "annotation": null}, {"text": "dependence", "start": 313, "end": 323, "annotation": null}, {"text": "disappears", "start": 324, "end": 334, "annotation": null}, {"text": "and", "start": 335, "end": 338, "annotation": null}, {"text": "T", "start": 339, "end": 340, "annotation": null}, {"text": "1", "start": 341, "end": 342, "annotation": null}, {"text": "2", "start": 343, "end": 344, "annotation": null}, {"text": "dependence", "start": 345, "end": 355, "annotation": null}, {"text": "is", "start": 356, "end": 358, "annotation": null}, {"text": "observed", "start": 359, "end": 367, "annotation": null}, {"text": "in", "start": 368, "end": 370, "annotation": null}, {"text": "the", "start": 371, "end": 374, "annotation": null}, {"text": "same", "start": 375, "end": 379, "annotation": null}, {"text": "temperature", "start": 380, "end": 391, "annotation": null}, {"text": "region", "start": 392, "end": 398, "annotation": null}, {"text": ".", "start": 398, "end": 399, "annotation": null}], [{"text": "We", "start": 400, "end": 402, "annotation": null}, {"text": "find", "start": 403, "end": 407, "annotation": null}, {"text": "that", "start": 408, "end": 412, "annotation": null}, {"text": "the", "start": 413, "end": 416, "annotation": null}, {"text": "log-T", "start": 417, "end": 422, "annotation": null}, {"text": "dependence", "start": 423, "end": 433, "annotation": null}, {"text": "in", "start": 434, "end": 436, "annotation": null}, {"text": "the", "start": 437, "end": 440, "annotation": null}, {"text": "low", "start": 441, "end": 444, "annotation": null}, {"text": "-", "start": 444, "end": 445, "annotation": null}, {"text": "temperature", "start": 445, "end": 456, "annotation": null}, {"text": "resistivity", "start": 457, "end": 468, "annotation": null}, {"text": "comes", "start": 469, "end": 474, "annotation": null}, {"text": "from", "start": 475, "end": 479, "annotation": null}, {"text": "a", "start": 480, "end": 481, "annotation": null}, {"text": "surface", "start": 482, "end": 489, "annotation": null}, {"text": "-", "start": 489, "end": 490, "annotation": null}, {"text": "related", "start": 490, "end": 497, "annotation": null}, {"text": "conduction", "start": 498, "end": 508, "annotation": null}, {"text": ".", "start": 508, "end": 509, "annotation": null}]]} +{"remark": "doping_annt1", "text": "We have studied temperature dependence of the resistivity of Sb doped Si at low temperature down to 10mK. In the vicinity of metal-nonmetal transition in Sb doped Si, the low-temperature resistivity in a just metallic side shows a logarithmic increase with lowering temperature. After thermal annealing the log-T dependence disappears and T 1 2 dependence is observed in the same temperature region. We find that the log-T dependence in the low-temperature resistivity comes from a surface-related conduction.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "have", "start": 3, "end": 7, "annotation": null}, {"text": "studied", "start": 8, "end": 15, "annotation": null}, {"text": "temperature", "start": 16, "end": 27, "annotation": null}, {"text": "dependence", "start": 28, "end": 38, "annotation": null}, {"text": "of", "start": 39, "end": 41, "annotation": null}, {"text": "the", "start": 42, "end": 45, "annotation": null}, {"text": "resistivity", "start": 46, "end": 57, "annotation": null}, {"text": "of", "start": 58, "end": 60, "annotation": null}, {"text": "Sb", "start": 61, "end": 63, "annotation": "DOPANT"}, {"text": "doped", "start": 64, "end": 69, "annotation": null}, {"text": "Si", "start": 70, "end": 72, "annotation": "BASEMAT"}, {"text": "at", "start": 73, "end": 75, "annotation": null}, {"text": "low", "start": 76, "end": 79, "annotation": null}, {"text": "temperature", "start": 80, "end": 91, "annotation": null}, {"text": "down", "start": 92, "end": 96, "annotation": null}, {"text": "to", "start": 97, "end": 99, "annotation": null}, {"text": "10mK", "start": 100, "end": 104, "annotation": null}, {"text": ".", "start": 104, "end": 105, "annotation": null}], [{"text": "In", "start": 106, "end": 108, "annotation": null}, {"text": "the", "start": 109, "end": 112, "annotation": null}, {"text": "vicinity", "start": 113, "end": 121, "annotation": null}, {"text": "of", "start": 122, "end": 124, "annotation": null}, {"text": "metal", "start": 125, "end": 130, "annotation": null}, {"text": "-", "start": 130, "end": 131, "annotation": null}, {"text": "nonmetal", "start": 131, "end": 139, "annotation": null}, {"text": "transition", "start": 140, "end": 150, "annotation": null}, {"text": "in", "start": 151, "end": 153, "annotation": null}, {"text": "Sb", "start": 154, "end": 156, "annotation": "DOPANT"}, {"text": "doped", "start": 157, "end": 162, "annotation": null}, {"text": "Si", "start": 163, "end": 165, "annotation": "BASEMAT"}, {"text": ",", "start": 165, "end": 166, "annotation": null}, {"text": "the", "start": 167, "end": 170, "annotation": null}, {"text": "low", "start": 171, "end": 174, "annotation": null}, {"text": "-", "start": 174, "end": 175, "annotation": null}, {"text": "temperature", "start": 175, "end": 186, "annotation": null}, {"text": "resistivity", "start": 187, "end": 198, "annotation": null}, {"text": "in", "start": 199, "end": 201, "annotation": null}, {"text": "a", "start": 202, "end": 203, "annotation": null}, {"text": "just", "start": 204, "end": 208, "annotation": null}, {"text": "metallic", "start": 209, "end": 217, "annotation": null}, {"text": "side", "start": 218, "end": 222, "annotation": null}, {"text": "shows", "start": 223, "end": 228, "annotation": null}, {"text": "a", "start": 229, "end": 230, "annotation": null}, {"text": "logarithmic", "start": 231, "end": 242, "annotation": null}, {"text": "increase", "start": 243, "end": 251, "annotation": null}, {"text": "with", "start": 252, "end": 256, "annotation": null}, {"text": "lowering", "start": 257, "end": 265, "annotation": null}, {"text": "temperature", "start": 266, "end": 277, "annotation": null}, {"text": ".", "start": 277, "end": 278, "annotation": null}], [{"text": "After", "start": 279, "end": 284, "annotation": null}, {"text": "thermal", "start": 285, "end": 292, "annotation": null}, {"text": "annealing", "start": 293, "end": 302, "annotation": null}, {"text": "the", "start": 303, "end": 306, "annotation": null}, {"text": "log-T", "start": 307, "end": 312, "annotation": null}, {"text": "dependence", "start": 313, "end": 323, "annotation": null}, {"text": "disappears", "start": 324, "end": 334, "annotation": null}, {"text": "and", "start": 335, "end": 338, "annotation": null}, {"text": "T", "start": 339, "end": 340, "annotation": null}, {"text": "1", "start": 341, "end": 342, "annotation": null}, {"text": "2", "start": 343, "end": 344, "annotation": null}, {"text": "dependence", "start": 345, "end": 355, "annotation": null}, {"text": "is", "start": 356, "end": 358, "annotation": null}, {"text": "observed", "start": 359, "end": 367, "annotation": null}, {"text": "in", "start": 368, "end": 370, "annotation": null}, {"text": "the", "start": 371, "end": 374, "annotation": null}, {"text": "same", "start": 375, "end": 379, "annotation": null}, {"text": "temperature", "start": 380, "end": 391, "annotation": null}, {"text": "region", "start": 392, "end": 398, "annotation": null}, {"text": ".", "start": 398, "end": 399, "annotation": null}], [{"text": "We", "start": 400, "end": 402, "annotation": null}, {"text": "find", "start": 403, "end": 407, "annotation": null}, {"text": "that", "start": 408, "end": 412, "annotation": null}, {"text": "the", "start": 413, "end": 416, "annotation": null}, {"text": "log-T", "start": 417, "end": 422, "annotation": null}, {"text": "dependence", "start": 423, "end": 433, "annotation": null}, {"text": "in", "start": 434, "end": 436, "annotation": null}, {"text": "the", "start": 437, "end": 440, "annotation": null}, {"text": "low", "start": 441, "end": 444, "annotation": null}, {"text": "-", "start": 444, "end": 445, "annotation": null}, {"text": "temperature", "start": 445, "end": 456, "annotation": null}, {"text": "resistivity", "start": 457, "end": 468, "annotation": null}, {"text": "comes", "start": 469, "end": 474, "annotation": null}, {"text": "from", "start": 475, "end": 479, "annotation": null}, {"text": "a", "start": 480, "end": 481, "annotation": null}, {"text": "surface", "start": 482, "end": 489, "annotation": null}, {"text": "-", "start": 489, "end": 490, "annotation": null}, {"text": "related", "start": 490, "end": 497, "annotation": null}, {"text": "conduction", "start": 498, "end": 508, "annotation": null}, {"text": ".", "start": 508, "end": 509, "annotation": null}]], "meta": {"doi": "10.1016/0038-1098(84)90659-8"}} {"text": "Nitrogen, oxygen and sulfur tridoped porous carbons have been successfully synthesized from natural biomass algae-Carrageen by using a simultaneous carbonization and activation procedure. The doped carbons with sponge-like interconnected architecture, partially ordered graphitic structure, and abundant heteroatom doping perform outstanding features for electrochemical energy storage. When tested as lithium-ion battery anodes, a high reversible capacity of 839mAhg\u22121 can be obtained at the current density of 0.1Ag\u22121 after 100 cycles, while a high capacity of 228mAhg\u22121 can be maintained at 10Ag\u22121. Tested against sodium, a high specific capacity of 227 can be delivered at 0.1Ag\u22121 after 100 cycles, while a high capacity of 109mAhg\u22121 can be achieved at 10Ag\u22121. These results turn out that the doped carbons would be potential anode materials for lithium- and sodium-ion batteries, which can be achieved by a one-step and large-scale synthesis route. Our observation indicates that heteroatom doping (especially sulfur) can significantly promote ion storage and reduce irreversible ion trapping to some extent. This work gives a general route for designing carbon nanostructures with heteroatom doping for efficient energy storage.", "meta": {"doi": "10.1016/j.electacta.2017.08.131"}, "_input_hash": 1740118761, "_task_hash": 351462185, "tokens": [[{"text": "Nitrogen", "start": 0, "end": 8, "id": 0, "annotation": "DOPANT"}, {"text": ",", "start": 9, "end": 10, "id": 1, "annotation": null}, {"text": "oxygen", "start": 11, "end": 17, "id": 2, "annotation": "DOPANT"}, {"text": "and", "start": 18, "end": 21, "id": 3, "annotation": null}, {"text": "sulfur", "start": 22, "end": 28, "id": 4, "annotation": "DOPANT"}, {"text": "tridoped", "start": 29, "end": 37, "id": 5, "annotation": null}, {"text": "porous", "start": 38, "end": 44, "id": 6, "annotation": null}, {"text": "carbons", "start": 45, "end": 52, "id": 7, "annotation": "BASEMAT"}, {"text": "have", "start": 53, "end": 57, "id": 8, "annotation": null}, {"text": "been", "start": 58, "end": 62, "id": 9, "annotation": null}, {"text": "successfully", "start": 63, "end": 75, "id": 10, "annotation": null}, {"text": "synthesized", "start": 76, "end": 87, "id": 11, "annotation": null}, {"text": "from", "start": 88, "end": 92, "id": 12, "annotation": null}, {"text": "natural", "start": 93, "end": 100, "id": 13, "annotation": null}, {"text": "biomass", "start": 101, "end": 108, "id": 14, "annotation": null}, {"text": "algae", "start": 109, "end": 114, "id": 15, "annotation": null}, {"text": "-", "start": 115, "end": 116, "id": 16, "annotation": null}, {"text": "Carrageen", "start": 117, "end": 126, "id": 17, "annotation": null}, {"text": "by", "start": 127, "end": 129, "id": 18, "annotation": null}, {"text": "using", "start": 130, "end": 135, "id": 19, "annotation": null}, {"text": "a", "start": 136, "end": 137, "id": 20, "annotation": null}, {"text": "simultaneous", "start": 138, "end": 150, "id": 21, "annotation": null}, {"text": "carbonization", "start": 151, "end": 164, "id": 22, "annotation": null}, {"text": "and", "start": 165, "end": 168, "id": 23, "annotation": null}, {"text": "activation", "start": 169, "end": 179, "id": 24, "annotation": null}, {"text": "procedure", "start": 180, "end": 189, "id": 25, "annotation": null}, {"text": ".", "start": 190, "end": 191, "id": 26, "annotation": null}], [{"text": "The", "start": 192, "end": 195, "id": 27, "annotation": null}, {"text": "doped", "start": 196, "end": 201, "id": 28, "annotation": null}, {"text": "carbons", "start": 202, "end": 209, "id": 29, "annotation": "BASEMAT"}, {"text": "with", "start": 210, "end": 214, "id": 30, "annotation": null}, {"text": "sponge", "start": 215, "end": 221, "id": 31, "annotation": null}, {"text": "-", "start": 222, "end": 223, "id": 32, "annotation": null}, {"text": "like", "start": 224, "end": 228, "id": 33, "annotation": null}, {"text": "interconnected", "start": 229, "end": 243, "id": 34, "annotation": null}, {"text": "architecture", "start": 244, "end": 256, "id": 35, "annotation": null}, {"text": ",", "start": 257, "end": 258, "id": 36, "annotation": null}, {"text": "partially", "start": 259, "end": 268, "id": 37, "annotation": null}, {"text": "ordered", "start": 269, "end": 276, "id": 38, "annotation": null}, {"text": "graphitic", "start": 277, "end": 286, "id": 39, "annotation": null}, {"text": "structure", "start": 287, "end": 296, "id": 40, "annotation": null}, {"text": ",", "start": 297, "end": 298, "id": 41, "annotation": null}, {"text": "and", "start": 299, "end": 302, "id": 42, "annotation": null}, {"text": "abundant", "start": 303, "end": 311, "id": 43, "annotation": null}, {"text": "heteroatom", "start": 312, "end": 322, "id": 44, "annotation": "DOPANT"}, {"text": "doping", "start": 323, "end": 329, "id": 45, "annotation": null}, {"text": "perform", "start": 330, "end": 337, "id": 46, "annotation": null}, {"text": "outstanding", "start": 338, "end": 349, "id": 47, "annotation": null}, {"text": "features", "start": 350, "end": 358, "id": 48, "annotation": null}, {"text": "for", "start": 359, "end": 362, "id": 49, "annotation": null}, {"text": "electrochemical", "start": 363, "end": 378, "id": 50, "annotation": null}, {"text": "energy", "start": 379, "end": 385, "id": 51, "annotation": null}, {"text": "storage", "start": 386, "end": 393, "id": 52, "annotation": null}, {"text": ".", "start": 394, "end": 395, "id": 53, "annotation": null}], [{"text": "When", "start": 396, "end": 400, "id": 54, "annotation": null}, {"text": "tested", "start": 401, "end": 407, "id": 55, "annotation": null}, {"text": "as", "start": 408, "end": 410, "id": 56, "annotation": null}, {"text": "lithium", "start": 411, "end": 418, "id": 57, "annotation": null}, {"text": "-", "start": 419, "end": 420, "id": 58, "annotation": null}, {"text": "ion", "start": 421, "end": 424, "id": 59, "annotation": null}, {"text": "battery", "start": 425, "end": 432, "id": 60, "annotation": null}, {"text": "anodes", "start": 433, "end": 439, "id": 61, "annotation": null}, {"text": ",", "start": 440, "end": 441, "id": 62, "annotation": null}, {"text": "a", "start": 442, "end": 443, "id": 63, "annotation": null}, {"text": "high", "start": 444, "end": 448, "id": 64, "annotation": null}, {"text": "reversible", "start": 449, "end": 459, "id": 65, "annotation": null}, {"text": "capacity", "start": 460, "end": 468, "id": 66, "annotation": null}, {"text": "of", "start": 469, "end": 471, "id": 67, "annotation": null}, {"text": "839mAhg\u22121", "start": 472, "end": 481, "id": 68, "annotation": null}, {"text": "can", "start": 482, "end": 485, "id": 69, "annotation": null}, {"text": "be", "start": 486, "end": 488, "id": 70, "annotation": null}, {"text": "obtained", "start": 489, "end": 497, "id": 71, "annotation": null}, {"text": "at", "start": 498, "end": 500, "id": 72, "annotation": null}, {"text": "the", "start": 501, "end": 504, "id": 73, "annotation": null}, {"text": "current", "start": 505, "end": 512, "id": 74, "annotation": null}, {"text": "density", "start": 513, "end": 520, "id": 75, "annotation": null}, {"text": "of", "start": 521, "end": 523, "id": 76, "annotation": null}, {"text": "0.1Ag\u22121", "start": 524, "end": 531, "id": 77, "annotation": null}, {"text": "after", "start": 532, "end": 537, "id": 78, "annotation": null}, {"text": "100", "start": 538, "end": 541, "id": 79, "annotation": null}, {"text": "cycles", "start": 542, "end": 548, "id": 80, "annotation": null}, {"text": ",", "start": 549, "end": 550, "id": 81, "annotation": null}, {"text": "while", "start": 551, "end": 556, "id": 82, "annotation": null}, {"text": "a", "start": 557, "end": 558, "id": 83, "annotation": null}, {"text": "high", "start": 559, "end": 563, "id": 84, "annotation": null}, {"text": "capacity", "start": 564, "end": 572, "id": 85, "annotation": null}, {"text": "of", "start": 573, "end": 575, "id": 86, "annotation": null}, {"text": "228mAhg\u22121", "start": 576, "end": 585, "id": 87, "annotation": null}, {"text": "can", "start": 586, "end": 589, "id": 88, "annotation": null}, {"text": "be", "start": 590, "end": 592, "id": 89, "annotation": null}, {"text": "maintained", "start": 593, "end": 603, "id": 90, "annotation": null}, {"text": "at", "start": 604, "end": 606, "id": 91, "annotation": null}, {"text": "10Ag\u22121", "start": 607, "end": 613, "id": 92, "annotation": null}, {"text": ".", "start": 614, "end": 615, "id": 93, "annotation": null}], [{"text": "Tested", "start": 616, "end": 622, "id": 94, "annotation": null}, {"text": "against", "start": 623, "end": 630, "id": 95, "annotation": null}, {"text": "sodium", "start": 631, "end": 637, "id": 96, "annotation": null}, {"text": ",", "start": 638, "end": 639, "id": 97, "annotation": null}, {"text": "a", "start": 640, "end": 641, "id": 98, "annotation": null}, {"text": "high", "start": 642, "end": 646, "id": 99, "annotation": null}, {"text": "specific", "start": 647, "end": 655, "id": 100, "annotation": null}, {"text": "capacity", "start": 656, "end": 664, "id": 101, "annotation": null}, {"text": "of", "start": 665, "end": 667, "id": 102, "annotation": null}, {"text": "227", "start": 668, "end": 671, "id": 103, "annotation": null}, {"text": "can", "start": 672, "end": 675, "id": 104, "annotation": null}, {"text": "be", "start": 676, "end": 678, "id": 105, "annotation": null}, {"text": "delivered", "start": 679, "end": 688, "id": 106, "annotation": null}, {"text": "at", "start": 689, "end": 691, "id": 107, "annotation": null}, {"text": "0.1Ag\u22121", "start": 692, "end": 699, "id": 108, "annotation": null}, {"text": "after", "start": 700, "end": 705, "id": 109, "annotation": null}, {"text": "100", "start": 706, "end": 709, "id": 110, "annotation": null}, {"text": "cycles", "start": 710, "end": 716, "id": 111, "annotation": null}, {"text": ",", "start": 717, "end": 718, "id": 112, "annotation": null}, {"text": "while", "start": 719, "end": 724, "id": 113, "annotation": null}, {"text": "a", "start": 725, "end": 726, "id": 114, "annotation": null}, {"text": "high", "start": 727, "end": 731, "id": 115, "annotation": null}, {"text": "capacity", "start": 732, "end": 740, "id": 116, "annotation": null}, {"text": "of", "start": 741, "end": 743, "id": 117, "annotation": null}, {"text": "109mAhg\u22121", "start": 744, "end": 753, "id": 118, "annotation": null}, {"text": "can", "start": 754, "end": 757, "id": 119, "annotation": null}, {"text": "be", "start": 758, "end": 760, "id": 120, "annotation": null}, {"text": "achieved", "start": 761, "end": 769, "id": 121, "annotation": null}, {"text": "at", "start": 770, "end": 772, "id": 122, "annotation": null}, {"text": "10Ag\u22121", "start": 773, "end": 779, "id": 123, "annotation": null}, {"text": ".", "start": 780, "end": 781, "id": 124, "annotation": null}], [{"text": "These", "start": 782, "end": 787, "id": 125, "annotation": null}, {"text": "results", "start": 788, "end": 795, "id": 126, "annotation": null}, {"text": "turn", "start": 796, "end": 800, "id": 127, "annotation": null}, {"text": "out", "start": 801, "end": 804, "id": 128, "annotation": null}, {"text": "that", "start": 805, "end": 809, "id": 129, "annotation": null}, {"text": "the", "start": 810, "end": 813, "id": 130, "annotation": null}, {"text": "doped", "start": 814, "end": 819, "id": 131, "annotation": null}, {"text": "carbons", "start": 820, "end": 827, "id": 132, "annotation": "BASEMAT"}, {"text": "would", "start": 828, "end": 833, "id": 133, "annotation": null}, {"text": "be", "start": 834, "end": 836, "id": 134, "annotation": null}, {"text": "potential", "start": 837, "end": 846, "id": 135, "annotation": null}, {"text": "anode", "start": 847, "end": 852, "id": 136, "annotation": null}, {"text": "materials", "start": 853, "end": 862, "id": 137, "annotation": null}, {"text": "for", "start": 863, "end": 866, "id": 138, "annotation": null}, {"text": "lithium-", "start": 867, "end": 875, "id": 139, "annotation": null}, {"text": "and", "start": 876, "end": 879, "id": 140, "annotation": null}, {"text": "sodium", "start": 880, "end": 886, "id": 141, "annotation": null}, {"text": "-", "start": 887, "end": 888, "id": 142, "annotation": null}, {"text": "ion", "start": 889, "end": 892, "id": 143, "annotation": null}, {"text": "batteries", "start": 893, "end": 902, "id": 144, "annotation": null}, {"text": ",", "start": 903, "end": 904, "id": 145, "annotation": null}, {"text": "which", "start": 905, "end": 910, "id": 146, "annotation": null}, {"text": "can", "start": 911, "end": 914, "id": 147, "annotation": null}, {"text": "be", "start": 915, "end": 917, "id": 148, "annotation": null}, {"text": "achieved", "start": 918, "end": 926, "id": 149, "annotation": null}, {"text": "by", "start": 927, "end": 929, "id": 150, "annotation": null}, {"text": "a", "start": 930, "end": 931, "id": 151, "annotation": null}, {"text": "one", "start": 932, "end": 935, "id": 152, "annotation": null}, {"text": "-", "start": 936, "end": 937, "id": 153, "annotation": null}, {"text": "step", "start": 938, "end": 942, "id": 154, "annotation": null}, {"text": "and", "start": 943, "end": 946, "id": 155, "annotation": null}, {"text": "large", "start": 947, "end": 952, "id": 156, "annotation": null}, {"text": "-", "start": 953, "end": 954, "id": 157, "annotation": null}, {"text": "scale", "start": 955, "end": 960, "id": 158, "annotation": null}, {"text": "synthesis", "start": 961, "end": 970, "id": 159, "annotation": null}, {"text": "route", "start": 971, "end": 976, "id": 160, "annotation": null}, {"text": ".", "start": 977, "end": 978, "id": 161, "annotation": null}], [{"text": "Our", "start": 979, "end": 982, "id": 162, "annotation": null}, {"text": "observation", "start": 983, "end": 994, "id": 163, "annotation": null}, {"text": "indicates", "start": 995, "end": 1004, "id": 164, "annotation": null}, {"text": "that", "start": 1005, "end": 1009, "id": 165, "annotation": null}, {"text": "heteroatom", "start": 1010, "end": 1020, "id": 166, "annotation": "DOPANT"}, {"text": "doping", "start": 1021, "end": 1027, "id": 167, "annotation": null}, {"text": "(", "start": 1028, "end": 1029, "id": 168, "annotation": null}, {"text": "especially", "start": 1030, "end": 1040, "id": 169, "annotation": null}, {"text": "sulfur", "start": 1041, "end": 1047, "id": 170, "annotation": "DOPANT"}, {"text": ")", "start": 1048, "end": 1049, "id": 171, "annotation": null}, {"text": "can", "start": 1050, "end": 1053, "id": 172, "annotation": null}, {"text": "significantly", "start": 1054, "end": 1067, "id": 173, "annotation": null}, {"text": "promote", "start": 1068, "end": 1075, "id": 174, "annotation": null}, {"text": "ion", "start": 1076, "end": 1079, "id": 175, "annotation": null}, {"text": "storage", "start": 1080, "end": 1087, "id": 176, "annotation": null}, {"text": "and", "start": 1088, "end": 1091, "id": 177, "annotation": null}, {"text": "reduce", "start": 1092, "end": 1098, "id": 178, "annotation": null}, {"text": "irreversible", "start": 1099, "end": 1111, "id": 179, "annotation": null}, {"text": "ion", "start": 1112, "end": 1115, "id": 180, "annotation": null}, {"text": "trapping", "start": 1116, "end": 1124, "id": 181, "annotation": null}, {"text": "to", "start": 1125, "end": 1127, "id": 182, "annotation": null}, {"text": "some", "start": 1128, "end": 1132, "id": 183, "annotation": null}, {"text": "extent", "start": 1133, "end": 1139, "id": 184, "annotation": null}, {"text": ".", "start": 1140, "end": 1141, "id": 185, "annotation": null}], [{"text": "This", "start": 1142, "end": 1146, "id": 186, "annotation": null}, {"text": "work", "start": 1147, "end": 1151, "id": 187, "annotation": null}, {"text": "gives", "start": 1152, "end": 1157, "id": 188, "annotation": null}, {"text": "a", "start": 1158, "end": 1159, "id": 189, "annotation": null}, {"text": "general", "start": 1160, "end": 1167, "id": 190, "annotation": null}, {"text": "route", "start": 1168, "end": 1173, "id": 191, "annotation": null}, {"text": "for", "start": 1174, "end": 1177, "id": 192, "annotation": null}, {"text": "designing", "start": 1178, "end": 1187, "id": 193, "annotation": null}, {"text": "carbon", "start": 1188, "end": 1194, "id": 194, "annotation": "BASEMAT"}, {"text": "nanostructures", "start": 1195, "end": 1209, "id": 195, "annotation": null}, {"text": "with", "start": 1210, "end": 1214, "id": 196, "annotation": null}, {"text": "heteroatom", "start": 1215, "end": 1225, "id": 197, "annotation": "DOPANT"}, {"text": "doping", "start": 1226, "end": 1232, "id": 198, "annotation": null}, {"text": "for", "start": 1233, "end": 1236, "id": 199, "annotation": null}, {"text": "efficient", "start": 1237, "end": 1246, "id": 200, "annotation": null}, {"text": "energy", "start": 1247, "end": 1253, "id": 201, "annotation": null}, {"text": "storage", "start": 1254, "end": 1261, "id": 202, "annotation": null}, {"text": ".", "start": 1262, "end": 1263, "id": 203, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Graphitic carbon nitride nanosheets (g-C3N4 NSs) hybridized nitrogen doped titanium dioxide (N-TiO2) nanofibers (GCN/NT NFs) have been synthesized in situ via a simple electrospinning process combined with a modified heat-etching method. The prepared GCN/NT NFs were characterized by a variety of methods and their photocatalytic activities were evaluated by hydrogen (H2) production from water splitting and degradation of rhodamine B in aqueous solution. It was found that the GCN/NT NFs have a mesoporous structure, composed of g-C3N4 NSs and N-doped TiO2 crystallites. The g-C3N4 NSs synthesized after heat-etching were found to be embedded in, and covered, the hybrid NFs to form stable interfaces. The partial decomposition of g-C3N4 releases its nitrogen content which eventually gets doped into the nearby TiO2 skeleton. The GCN/NT NFs give a high photocatalytic H2 production rate of 8,931.3 \u03bcmol\u00b7h\u22121\u00b7g\u22121 in aqueous methanol solution under simulated solar light. Such a highly efficient photocatalytic performance can be ascribed to the combined effects of g-C3N4 NSs and N-doped TiO2 with enhanced light absorption intensity and improved electron transport ability. Also, the large surface area of the mesoporous NFs minimizes light reflection on the surface and provides more surface-active sites. This work highlights the potential of quasi-one dimensional hybrid materials in the field of solar energy conversion.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Graphitic", "start": 0, "end": 9, "annotation": null}, {"text": "carbon", "start": 10, "end": 16, "annotation": null}, {"text": "nitride", "start": 17, "end": 24, "annotation": null}, {"text": "nanosheets", "start": 25, "end": 35, "annotation": null}, {"text": "(", "start": 36, "end": 37, "annotation": null}, {"text": "g-C3N4", "start": 37, "end": 43, "annotation": null}, {"text": "NSs", "start": 44, "end": 47, "annotation": null}, {"text": ")", "start": 47, "end": 48, "annotation": null}, {"text": "hybridized", "start": 49, "end": 59, "annotation": null}, {"text": "nitrogen", "start": 60, "end": 68, "annotation": "DOPANT"}, {"text": "doped", "start": 69, "end": 74, "annotation": null}, {"text": "titanium", "start": 75, "end": 83, "annotation": "BASEMAT"}, {"text": "dioxide", "start": 84, "end": 91, "annotation": "BASEMAT"}, {"text": "(", "start": 92, "end": 93, "annotation": null}, {"text": "N-TiO2", "start": 93, "end": 99, "annotation": null}, {"text": ")", "start": 99, "end": 100, "annotation": null}, {"text": "nanofibers", "start": 101, "end": 111, "annotation": null}, {"text": "(", "start": 112, "end": 113, "annotation": null}, {"text": "GCN", "start": 113, "end": 116, "annotation": null}, {"text": "/", "start": 116, "end": 117, "annotation": null}, {"text": "NT", "start": 117, "end": 119, "annotation": null}, {"text": "NFs", "start": 120, "end": 123, "annotation": null}, {"text": ")", "start": 123, "end": 124, "annotation": null}, {"text": "have", "start": 125, "end": 129, "annotation": null}, {"text": "been", "start": 130, "end": 134, "annotation": null}, {"text": "synthesized", "start": 135, "end": 146, "annotation": null}, {"text": "in", "start": 147, "end": 149, "annotation": null}, {"text": "situ", "start": 150, "end": 154, "annotation": null}, {"text": "via", "start": 155, "end": 158, "annotation": null}, {"text": "a", "start": 159, "end": 160, "annotation": null}, {"text": "simple", "start": 161, "end": 167, "annotation": null}, {"text": "electrospinning", "start": 168, "end": 183, "annotation": null}, {"text": "process", "start": 184, "end": 191, "annotation": null}, {"text": "combined", "start": 192, "end": 200, "annotation": null}, {"text": "with", "start": 201, "end": 205, "annotation": null}, {"text": "a", "start": 206, "end": 207, "annotation": null}, {"text": "modified", "start": 208, "end": 216, "annotation": null}, {"text": "heat", "start": 217, "end": 221, "annotation": null}, {"text": "-", "start": 221, "end": 222, "annotation": null}, {"text": "etching", "start": 222, "end": 229, "annotation": null}, {"text": "method", "start": 230, "end": 236, "annotation": null}, {"text": ".", "start": 236, "end": 237, "annotation": null}], [{"text": "The", "start": 238, "end": 241, "annotation": null}, {"text": "prepared", "start": 242, "end": 250, "annotation": null}, {"text": "GCN", "start": 251, "end": 254, "annotation": null}, {"text": "/", "start": 254, "end": 255, "annotation": null}, {"text": "NT", "start": 255, "end": 257, "annotation": null}, {"text": "NFs", "start": 258, "end": 261, "annotation": null}, {"text": "were", "start": 262, "end": 266, "annotation": null}, {"text": "characterized", "start": 267, "end": 280, "annotation": null}, {"text": "by", "start": 281, "end": 283, "annotation": null}, {"text": "a", "start": 284, "end": 285, "annotation": null}, {"text": "variety", "start": 286, "end": 293, "annotation": null}, {"text": "of", "start": 294, "end": 296, "annotation": null}, {"text": "methods", "start": 297, "end": 304, "annotation": null}, {"text": "and", "start": 305, "end": 308, "annotation": null}, {"text": "their", "start": 309, "end": 314, "annotation": null}, {"text": "photocatalytic", "start": 315, "end": 329, "annotation": null}, {"text": "activities", "start": 330, "end": 340, "annotation": null}, {"text": "were", "start": 341, "end": 345, "annotation": null}, {"text": "evaluated", "start": 346, "end": 355, "annotation": null}, {"text": "by", "start": 356, "end": 358, "annotation": null}, {"text": "hydrogen", "start": 359, "end": 367, "annotation": null}, {"text": "(", "start": 368, "end": 369, "annotation": null}, {"text": "H2", "start": 369, "end": 371, "annotation": null}, {"text": ")", "start": 371, "end": 372, "annotation": null}, {"text": "production", "start": 373, "end": 383, "annotation": null}, {"text": "from", "start": 384, "end": 388, "annotation": null}, {"text": "water", "start": 389, "end": 394, "annotation": null}, {"text": "splitting", "start": 395, "end": 404, "annotation": null}, {"text": "and", "start": 405, "end": 408, "annotation": null}, {"text": "degradation", "start": 409, "end": 420, "annotation": null}, {"text": "of", "start": 421, "end": 423, "annotation": null}, {"text": "rhodamine", "start": 424, "end": 433, "annotation": null}, {"text": "B", "start": 434, "end": 435, "annotation": null}, {"text": "in", "start": 436, "end": 438, "annotation": null}, {"text": "aqueous", "start": 439, "end": 446, "annotation": null}, {"text": "solution", "start": 447, "end": 455, "annotation": null}, {"text": ".", "start": 455, "end": 456, "annotation": null}], [{"text": "It", "start": 457, "end": 459, "annotation": null}, {"text": "was", "start": 460, "end": 463, "annotation": null}, {"text": "found", "start": 464, "end": 469, "annotation": null}, {"text": "that", "start": 470, "end": 474, "annotation": null}, {"text": "the", "start": 475, "end": 478, "annotation": null}, {"text": "GCN", "start": 479, "end": 482, "annotation": null}, {"text": "/", "start": 482, "end": 483, "annotation": null}, {"text": "NT", "start": 483, "end": 485, "annotation": null}, {"text": "NFs", "start": 486, "end": 489, "annotation": null}, {"text": "have", "start": 490, "end": 494, "annotation": null}, {"text": "a", "start": 495, "end": 496, "annotation": null}, {"text": "mesoporous", "start": 497, "end": 507, "annotation": null}, {"text": "structure", "start": 508, "end": 517, "annotation": null}, {"text": ",", "start": 517, "end": 518, "annotation": null}, {"text": "composed", "start": 519, "end": 527, "annotation": null}, {"text": "of", "start": 528, "end": 530, "annotation": null}, {"text": "g-C3N4", "start": 531, "end": 537, "annotation": null}, {"text": "NSs", "start": 538, "end": 541, "annotation": null}, {"text": "and", "start": 542, "end": 545, "annotation": null}, {"text": "N", "start": 546, "end": 547, "annotation": "DOPANT"}, {"text": "-", "start": 547, "end": 548, "annotation": null}, {"text": "doped", "start": 548, "end": 553, "annotation": null}, {"text": "TiO2", "start": 554, "end": 558, "annotation": "BASEMAT"}, {"text": "crystallites", "start": 559, "end": 571, "annotation": null}, {"text": ".", "start": 571, "end": 572, "annotation": null}], [{"text": "The", "start": 573, "end": 576, "annotation": null}, {"text": "g-C3N4", "start": 577, "end": 583, "annotation": null}, {"text": "NSs", "start": 584, "end": 587, "annotation": null}, {"text": "synthesized", "start": 588, "end": 599, "annotation": null}, {"text": "after", "start": 600, "end": 605, "annotation": null}, {"text": "heat", "start": 606, "end": 610, "annotation": null}, {"text": "-", "start": 610, "end": 611, "annotation": null}, {"text": "etching", "start": 611, "end": 618, "annotation": null}, {"text": "were", "start": 619, "end": 623, "annotation": null}, {"text": "found", "start": 624, "end": 629, "annotation": null}, {"text": "to", "start": 630, "end": 632, "annotation": null}, {"text": "be", "start": 633, "end": 635, "annotation": null}, {"text": "embedded", "start": 636, "end": 644, "annotation": null}, {"text": "in", "start": 645, "end": 647, "annotation": null}, {"text": ",", "start": 647, "end": 648, "annotation": null}, {"text": "and", "start": 649, "end": 652, "annotation": null}, {"text": "covered", "start": 653, "end": 660, "annotation": null}, {"text": ",", "start": 660, "end": 661, "annotation": null}, {"text": "the", "start": 662, "end": 665, "annotation": null}, {"text": "hybrid", "start": 666, "end": 672, "annotation": null}, {"text": "NFs", "start": 673, "end": 676, "annotation": null}, {"text": "to", "start": 677, "end": 679, "annotation": null}, {"text": "form", "start": 680, "end": 684, "annotation": null}, {"text": "stable", "start": 685, "end": 691, "annotation": null}, {"text": "interfaces", "start": 692, "end": 702, "annotation": null}, {"text": ".", "start": 702, "end": 703, "annotation": null}], [{"text": "The", "start": 704, "end": 707, "annotation": null}, {"text": "partial", "start": 708, "end": 715, "annotation": null}, {"text": "decomposition", "start": 716, "end": 729, "annotation": null}, {"text": "of", "start": 730, "end": 732, "annotation": null}, {"text": "g-C3N4", "start": 733, "end": 739, "annotation": null}, {"text": "releases", "start": 740, "end": 748, "annotation": null}, {"text": "its", "start": 749, "end": 752, "annotation": null}, {"text": "nitrogen", "start": 753, "end": 761, "annotation": "DOPANT"}, {"text": "content", "start": 762, "end": 769, "annotation": null}, {"text": "which", "start": 770, "end": 775, "annotation": null}, {"text": "eventually", "start": 776, "end": 786, "annotation": null}, {"text": "gets", "start": 787, "end": 791, "annotation": null}, {"text": "doped", "start": 792, "end": 797, "annotation": null}, {"text": "into", "start": 798, "end": 802, "annotation": null}, {"text": "the", "start": 803, "end": 806, "annotation": null}, {"text": "nearby", "start": 807, "end": 813, "annotation": null}, {"text": "TiO2", "start": 814, "end": 818, "annotation": "BASEMAT"}, {"text": "skeleton", "start": 819, "end": 827, "annotation": null}, {"text": ".", "start": 827, "end": 828, "annotation": null}], [{"text": "The", "start": 829, "end": 832, "annotation": null}, {"text": "GCN", "start": 833, "end": 836, "annotation": null}, {"text": "/", "start": 836, "end": 837, "annotation": null}, {"text": "NT", "start": 837, "end": 839, "annotation": null}, {"text": "NFs", "start": 840, "end": 843, "annotation": null}, {"text": "give", "start": 844, "end": 848, "annotation": null}, {"text": "a", "start": 849, "end": 850, "annotation": null}, {"text": "high", "start": 851, "end": 855, "annotation": null}, {"text": "photocatalytic", "start": 856, "end": 870, "annotation": null}, {"text": "H2", "start": 871, "end": 873, "annotation": null}, {"text": "production", "start": 874, "end": 884, "annotation": null}, {"text": "rate", "start": 885, "end": 889, "annotation": null}, {"text": "of", "start": 890, "end": 892, "annotation": null}, {"text": "8,931.3", "start": 893, "end": 900, "annotation": null}, {"text": "\u03bcmol\u00b7h\u22121\u00b7g\u22121", "start": 901, "end": 913, "annotation": null}, {"text": "in", "start": 914, "end": 916, "annotation": null}, {"text": "aqueous", "start": 917, "end": 924, "annotation": null}, {"text": "methanol", "start": 925, "end": 933, "annotation": null}, {"text": "solution", "start": 934, "end": 942, "annotation": null}, {"text": "under", "start": 943, "end": 948, "annotation": null}, {"text": "simulated", "start": 949, "end": 958, "annotation": null}, {"text": "solar", "start": 959, "end": 964, "annotation": null}, {"text": "light", "start": 965, "end": 970, "annotation": null}, {"text": ".", "start": 970, "end": 971, "annotation": null}], [{"text": "Such", "start": 972, "end": 976, "annotation": null}, {"text": "a", "start": 977, "end": 978, "annotation": null}, {"text": "highly", "start": 979, "end": 985, "annotation": null}, {"text": "efficient", "start": 986, "end": 995, "annotation": null}, {"text": "photocatalytic", "start": 996, "end": 1010, "annotation": null}, {"text": "performance", "start": 1011, "end": 1022, "annotation": null}, {"text": "can", "start": 1023, "end": 1026, "annotation": null}, {"text": "be", "start": 1027, "end": 1029, "annotation": null}, {"text": "ascribed", "start": 1030, "end": 1038, "annotation": null}, {"text": "to", "start": 1039, "end": 1041, "annotation": null}, {"text": "the", "start": 1042, "end": 1045, "annotation": null}, {"text": "combined", "start": 1046, "end": 1054, "annotation": null}, {"text": "effects", "start": 1055, "end": 1062, "annotation": null}, {"text": "of", "start": 1063, "end": 1065, "annotation": null}, {"text": "g-C3N4", "start": 1066, "end": 1072, "annotation": null}, {"text": "NSs", "start": 1073, "end": 1076, "annotation": null}, {"text": "and", "start": 1077, "end": 1080, "annotation": null}, {"text": "N", "start": 1081, "end": 1082, "annotation": "DOPANT"}, {"text": "-", "start": 1082, "end": 1083, "annotation": null}, {"text": "doped", "start": 1083, "end": 1088, "annotation": null}, {"text": "TiO2", "start": 1089, "end": 1093, "annotation": "BASEMAT"}, {"text": "with", "start": 1094, "end": 1098, "annotation": null}, {"text": "enhanced", "start": 1099, "end": 1107, "annotation": null}, {"text": "light", "start": 1108, "end": 1113, "annotation": null}, {"text": "absorption", "start": 1114, "end": 1124, "annotation": null}, {"text": "intensity", "start": 1125, "end": 1134, "annotation": null}, {"text": "and", "start": 1135, "end": 1138, "annotation": null}, {"text": "improved", "start": 1139, "end": 1147, "annotation": null}, {"text": "electron", "start": 1148, "end": 1156, "annotation": null}, {"text": "transport", "start": 1157, "end": 1166, "annotation": null}, {"text": "ability", "start": 1167, "end": 1174, "annotation": null}, {"text": ".", "start": 1174, "end": 1175, "annotation": null}], [{"text": "Also", "start": 1176, "end": 1180, "annotation": null}, {"text": ",", "start": 1180, "end": 1181, "annotation": null}, {"text": "the", "start": 1182, "end": 1185, "annotation": null}, {"text": "large", "start": 1186, "end": 1191, "annotation": null}, {"text": "surface", "start": 1192, "end": 1199, "annotation": null}, {"text": "area", "start": 1200, "end": 1204, "annotation": null}, {"text": "of", "start": 1205, "end": 1207, "annotation": null}, {"text": "the", "start": 1208, "end": 1211, "annotation": null}, {"text": "mesoporous", "start": 1212, "end": 1222, "annotation": null}, {"text": "NFs", "start": 1223, "end": 1226, "annotation": null}, {"text": "minimizes", "start": 1227, "end": 1236, "annotation": null}, {"text": "light", "start": 1237, "end": 1242, "annotation": null}, {"text": "reflection", "start": 1243, "end": 1253, "annotation": null}, {"text": "on", "start": 1254, "end": 1256, "annotation": null}, {"text": "the", "start": 1257, "end": 1260, "annotation": null}, {"text": "surface", "start": 1261, "end": 1268, "annotation": null}, {"text": "and", "start": 1269, "end": 1272, "annotation": null}, {"text": "provides", "start": 1273, "end": 1281, "annotation": null}, {"text": "more", "start": 1282, "end": 1286, "annotation": null}, {"text": "surface", "start": 1287, "end": 1294, "annotation": null}, {"text": "-", "start": 1294, "end": 1295, "annotation": null}, {"text": "active", "start": 1295, "end": 1301, "annotation": null}, {"text": "sites", "start": 1302, "end": 1307, "annotation": null}, {"text": ".", "start": 1307, "end": 1308, "annotation": null}], [{"text": "This", "start": 1309, "end": 1313, "annotation": null}, {"text": "work", "start": 1314, "end": 1318, "annotation": null}, {"text": "highlights", "start": 1319, "end": 1329, "annotation": null}, {"text": "the", "start": 1330, "end": 1333, "annotation": null}, {"text": "potential", "start": 1334, "end": 1343, "annotation": null}, {"text": "of", "start": 1344, "end": 1346, "annotation": null}, {"text": "quasi-one", "start": 1347, "end": 1356, "annotation": null}, {"text": "dimensional", "start": 1357, "end": 1368, "annotation": null}, {"text": "hybrid", "start": 1369, "end": 1375, "annotation": null}, {"text": "materials", "start": 1376, "end": 1385, "annotation": null}, {"text": "in", "start": 1386, "end": 1388, "annotation": null}, {"text": "the", "start": 1389, "end": 1392, "annotation": null}, {"text": "field", "start": 1393, "end": 1398, "annotation": null}, {"text": "of", "start": 1399, "end": 1401, "annotation": null}, {"text": "solar", "start": 1402, "end": 1407, "annotation": null}, {"text": "energy", "start": 1408, "end": 1414, "annotation": null}, {"text": "conversion", "start": 1415, "end": 1425, "annotation": null}, {"text": ".", "start": 1425, "end": 1426, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Lead tungstate tellurite (LTT) glasses doped with different concentrations of Eu3+ ions have been prepared by the conventional melt quenching method. From the absorption spectrum, it has been observed that the bands originated both from the ground (7F0) and the first excited (7F1) states. Judd-Ofelt intensity parameters \u03a92 and \u03a94 have been evaluated from the 5D0 \u2192 7F2 and 5D0 \u2192 7F4 emission transitions respectively. The evaluated J-O intensity parameters have been used to calculate different radiative and laser characteristic parameters of the 5D0 excited level. The large magnitudes of stimulated emission cross-section (\u03c3e) and branching ratio (\u03b2R) obtained for 5D0 \u2192 7F2 (0.62 \u03bcm) transition suggests that the LTTEu20 glass could be more suitable for lasing action in the visible region. The measured lifetime of 5D0 excited state increases with increase of Eu3+ concentration due to increasing asymmetry around the Eu3+ ions.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Lead", "start": 0, "end": 4, "annotation": "BASEMAT"}, {"text": "tungstate", "start": 5, "end": 14, "annotation": "BASEMAT"}, {"text": "tellurite", "start": 15, "end": 24, "annotation": "BASEMAT"}, {"text": "(", "start": 25, "end": 26, "annotation": null}, {"text": "LTT", "start": 26, "end": 29, "annotation": "BASEMAT"}, {"text": ")", "start": 29, "end": 30, "annotation": null}, {"text": "glasses", "start": 31, "end": 38, "annotation": null}, {"text": "doped", "start": 39, "end": 44, "annotation": null}, {"text": "with", "start": 45, "end": 49, "annotation": null}, {"text": "different", "start": 50, "end": 59, "annotation": null}, {"text": "concentrations", "start": 60, "end": 74, "annotation": null}, {"text": "of", "start": 75, "end": 77, "annotation": null}, {"text": "Eu3+", "start": 78, "end": 82, "annotation": "DOPANT"}, {"text": "ions", "start": 83, "end": 87, "annotation": null}, {"text": "have", "start": 88, "end": 92, "annotation": null}, {"text": "been", "start": 93, "end": 97, "annotation": null}, {"text": "prepared", "start": 98, "end": 106, "annotation": null}, {"text": "by", "start": 107, "end": 109, "annotation": null}, {"text": "the", "start": 110, "end": 113, "annotation": null}, {"text": "conventional", "start": 114, "end": 126, "annotation": null}, {"text": "melt", "start": 127, "end": 131, "annotation": null}, {"text": "quenching", "start": 132, "end": 141, "annotation": null}, {"text": "method", "start": 142, "end": 148, "annotation": null}, {"text": ".", "start": 148, "end": 149, "annotation": null}], [{"text": "From", "start": 150, "end": 154, "annotation": null}, {"text": "the", "start": 155, "end": 158, "annotation": null}, {"text": "absorption", "start": 159, "end": 169, "annotation": null}, {"text": "spectrum", "start": 170, "end": 178, "annotation": null}, {"text": ",", "start": 178, "end": 179, "annotation": null}, {"text": "it", "start": 180, "end": 182, "annotation": null}, {"text": "has", "start": 183, "end": 186, "annotation": null}, {"text": "been", "start": 187, "end": 191, "annotation": null}, {"text": "observed", "start": 192, "end": 200, "annotation": null}, {"text": "that", "start": 201, "end": 205, "annotation": null}, {"text": "the", "start": 206, "end": 209, "annotation": null}, {"text": "bands", "start": 210, "end": 215, "annotation": null}, {"text": "originated", "start": 216, "end": 226, "annotation": null}, {"text": "both", "start": 227, "end": 231, "annotation": null}, {"text": "from", "start": 232, "end": 236, "annotation": null}, {"text": "the", "start": 237, "end": 240, "annotation": null}, {"text": "ground", "start": 241, "end": 247, "annotation": null}, {"text": "(", "start": 248, "end": 249, "annotation": null}, {"text": "7F0", "start": 249, "end": 252, "annotation": null}, {"text": ")", "start": 252, "end": 253, "annotation": null}, {"text": "and", "start": 254, "end": 257, "annotation": null}, {"text": "the", "start": 258, "end": 261, "annotation": null}, {"text": "first", "start": 262, "end": 267, "annotation": null}, {"text": "excited", "start": 268, "end": 275, "annotation": null}, {"text": "(", "start": 276, "end": 277, "annotation": null}, {"text": "7F1", "start": 277, "end": 280, "annotation": null}, {"text": ")", "start": 280, "end": 281, "annotation": null}, {"text": "states", "start": 282, "end": 288, "annotation": null}, {"text": ".", "start": 288, "end": 289, "annotation": null}], [{"text": "Judd", "start": 290, "end": 294, "annotation": null}, {"text": "-", "start": 294, "end": 295, "annotation": null}, {"text": "Ofelt", "start": 295, "end": 300, "annotation": null}, {"text": "intensity", "start": 301, "end": 310, "annotation": null}, {"text": "parameters", "start": 311, "end": 321, "annotation": null}, {"text": "\u03a92", "start": 322, "end": 324, "annotation": null}, {"text": "and", "start": 325, "end": 328, "annotation": null}, {"text": "\u03a94", "start": 329, "end": 331, "annotation": null}, {"text": "have", "start": 332, "end": 336, "annotation": null}, {"text": "been", "start": 337, "end": 341, "annotation": null}, {"text": "evaluated", "start": 342, "end": 351, "annotation": null}, {"text": "from", "start": 352, "end": 356, "annotation": null}, {"text": "the", "start": 357, "end": 360, "annotation": null}, {"text": "5D0", "start": 361, "end": 364, "annotation": null}, {"text": "\u2192", "start": 365, "end": 366, "annotation": null}, {"text": "7F2", "start": 367, "end": 370, "annotation": null}, {"text": "and", "start": 371, "end": 374, "annotation": null}, {"text": "5D0", "start": 375, "end": 378, "annotation": null}, {"text": "\u2192", "start": 379, "end": 380, "annotation": null}, {"text": "7F4", "start": 381, "end": 384, "annotation": null}, {"text": "emission", "start": 385, "end": 393, "annotation": null}, {"text": "transitions", "start": 394, "end": 405, "annotation": null}, {"text": "respectively", "start": 406, "end": 418, "annotation": null}, {"text": ".", "start": 418, "end": 419, "annotation": null}], [{"text": "The", "start": 420, "end": 423, "annotation": null}, {"text": "evaluated", "start": 424, "end": 433, "annotation": null}, {"text": "J-O", "start": 434, "end": 437, "annotation": null}, {"text": "intensity", "start": 438, "end": 447, "annotation": null}, {"text": "parameters", "start": 448, "end": 458, "annotation": null}, {"text": "have", "start": 459, "end": 463, "annotation": null}, {"text": "been", "start": 464, "end": 468, "annotation": null}, {"text": "used", "start": 469, "end": 473, "annotation": null}, {"text": "to", "start": 474, "end": 476, "annotation": null}, {"text": "calculate", "start": 477, "end": 486, "annotation": null}, {"text": "different", "start": 487, "end": 496, "annotation": null}, {"text": "radiative", "start": 497, "end": 506, "annotation": null}, {"text": "and", "start": 507, "end": 510, "annotation": null}, {"text": "laser", "start": 511, "end": 516, "annotation": null}, {"text": "characteristic", "start": 517, "end": 531, "annotation": null}, {"text": "parameters", "start": 532, "end": 542, "annotation": null}, {"text": "of", "start": 543, "end": 545, "annotation": null}, {"text": "the", "start": 546, "end": 549, "annotation": null}, {"text": "5D0", "start": 550, "end": 553, "annotation": null}, {"text": "excited", "start": 554, "end": 561, "annotation": null}, {"text": "level", "start": 562, "end": 567, "annotation": null}, {"text": ".", "start": 567, "end": 568, "annotation": null}], [{"text": "The", "start": 569, "end": 572, "annotation": null}, {"text": "large", "start": 573, "end": 578, "annotation": null}, {"text": "magnitudes", "start": 579, "end": 589, "annotation": null}, {"text": "of", "start": 590, "end": 592, "annotation": null}, {"text": "stimulated", "start": 593, "end": 603, "annotation": null}, {"text": "emission", "start": 604, "end": 612, "annotation": null}, {"text": "cross-section", "start": 613, "end": 626, "annotation": null}, {"text": "(", "start": 627, "end": 628, "annotation": null}, {"text": "\u03c3e", "start": 628, "end": 630, "annotation": null}, {"text": ")", "start": 630, "end": 631, "annotation": null}, {"text": "and", "start": 632, "end": 635, "annotation": null}, {"text": "branching", "start": 636, "end": 645, "annotation": null}, {"text": "ratio", "start": 646, "end": 651, "annotation": null}, {"text": "(", "start": 652, "end": 653, "annotation": null}, {"text": "\u03b2R", "start": 653, "end": 655, "annotation": null}, {"text": ")", "start": 655, "end": 656, "annotation": null}, {"text": "obtained", "start": 657, "end": 665, "annotation": null}, {"text": "for", "start": 666, "end": 669, "annotation": null}, {"text": "5D0", "start": 670, "end": 673, "annotation": null}, {"text": "\u2192", "start": 674, "end": 675, "annotation": null}, {"text": "7F2", "start": 676, "end": 679, "annotation": null}, {"text": "(", "start": 680, "end": 681, "annotation": null}, {"text": "0.62", "start": 681, "end": 685, "annotation": null}, {"text": "\u03bcm", "start": 686, "end": 688, "annotation": null}, {"text": ")", "start": 688, "end": 689, "annotation": null}, {"text": "transition", "start": 690, "end": 700, "annotation": null}, {"text": "suggests", "start": 701, "end": 709, "annotation": null}, {"text": "that", "start": 710, "end": 714, "annotation": null}, {"text": "the", "start": 715, "end": 718, "annotation": null}, {"text": "LTTEu20", "start": 719, "end": 726, "annotation": null}, {"text": "glass", "start": 727, "end": 732, "annotation": null}, {"text": "could", "start": 733, "end": 738, "annotation": null}, {"text": "be", "start": 739, "end": 741, "annotation": null}, {"text": "more", "start": 742, "end": 746, "annotation": null}, {"text": "suitable", "start": 747, "end": 755, "annotation": null}, {"text": "for", "start": 756, "end": 759, "annotation": null}, {"text": "lasing", "start": 760, "end": 766, "annotation": null}, {"text": "action", "start": 767, "end": 773, "annotation": null}, {"text": "in", "start": 774, "end": 776, "annotation": null}, {"text": "the", "start": 777, "end": 780, "annotation": null}, {"text": "visible", "start": 781, "end": 788, "annotation": null}, {"text": "region", "start": 789, "end": 795, "annotation": null}, {"text": ".", "start": 795, "end": 796, "annotation": null}], [{"text": "The", "start": 797, "end": 800, "annotation": null}, {"text": "measured", "start": 801, "end": 809, "annotation": null}, {"text": "lifetime", "start": 810, "end": 818, "annotation": null}, {"text": "of", "start": 819, "end": 821, "annotation": null}, {"text": "5D0", "start": 822, "end": 825, "annotation": null}, {"text": "excited", "start": 826, "end": 833, "annotation": null}, {"text": "state", "start": 834, "end": 839, "annotation": null}, {"text": "increases", "start": 840, "end": 849, "annotation": null}, {"text": "with", "start": 850, "end": 854, "annotation": null}, {"text": "increase", "start": 855, "end": 863, "annotation": null}, {"text": "of", "start": 864, "end": 866, "annotation": null}, {"text": "Eu3+", "start": 867, "end": 871, "annotation": "DOPANT"}, {"text": "concentration", "start": 872, "end": 885, "annotation": null}, {"text": "due", "start": 886, "end": 889, "annotation": null}, {"text": "to", "start": 890, "end": 892, "annotation": null}, {"text": "increasing", "start": 893, "end": 903, "annotation": null}, {"text": "asymmetry", "start": 904, "end": 913, "annotation": null}, {"text": "around", "start": 914, "end": 920, "annotation": null}, {"text": "the", "start": 921, "end": 924, "annotation": null}, {"text": "Eu3+", "start": 925, "end": 929, "annotation": "DOPANT"}, {"text": "ions", "start": 930, "end": 934, "annotation": null}, {"text": ".", "start": 934, "end": 935, "annotation": null}]]} -{"text": "By using transient-capacitance techniques we probe the mechanism of hole transport in amorphous/crystalline silicon heterojunction solar cells. The devices are formed by depositing undoped amorphous silicon followed by p-type amorphous silicon on n-type crystalline silicon wafers. The capacitance transients indicate that hole transport from p-type amorphous silicon to n-type crystalline silicon is hindered by hole accumulation in the depletion region of the crystalline silicon. The results are explained with a model based on electrostatic repulsion owing to hole build-up at the crystalline/amorphous interface. We apply these results to other heterojunction solar cells.", "meta": {"doi": "10.1016/j.solmat.2013.11.012"}, "_input_hash": -1615593435, "_task_hash": -446710130, "tokens": [[{"text": "By", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "using", "start": 3, "end": 8, "id": 1, "annotation": null}, {"text": "transient", "start": 9, "end": 18, "id": 2, "annotation": null}, {"text": "-", "start": 19, "end": 20, "id": 3, "annotation": null}, {"text": "capacitance", "start": 21, "end": 32, "id": 4, "annotation": null}, {"text": "techniques", "start": 33, "end": 43, "id": 5, "annotation": null}, {"text": "we", "start": 44, "end": 46, "id": 6, "annotation": null}, {"text": "probe", "start": 47, "end": 52, "id": 7, "annotation": null}, {"text": "the", "start": 53, "end": 56, "id": 8, "annotation": null}, {"text": "mechanism", "start": 57, "end": 66, "id": 9, "annotation": null}, {"text": "of", "start": 67, "end": 69, "id": 10, "annotation": null}, {"text": "hole", "start": 70, "end": 74, "id": 11, "annotation": null}, {"text": "transport", "start": 75, "end": 84, "id": 12, "annotation": null}, {"text": "in", "start": 85, "end": 87, "id": 13, "annotation": null}, {"text": "amorphous", "start": 88, "end": 97, "id": 14, "annotation": null}, {"text": "/", "start": 98, "end": 99, "id": 15, "annotation": null}, {"text": "crystalline", "start": 100, "end": 111, "id": 16, "annotation": null}, {"text": "silicon", "start": 112, "end": 119, "id": 17, "annotation": null}, {"text": "heterojunction", "start": 120, "end": 134, "id": 18, "annotation": null}, {"text": "solar", "start": 135, "end": 140, "id": 19, "annotation": null}, {"text": "cells", "start": 141, "end": 146, "id": 20, "annotation": null}, {"text": ".", "start": 147, "end": 148, "id": 21, "annotation": null}], [{"text": "The", "start": 149, "end": 152, "id": 22, "annotation": null}, {"text": "devices", "start": 153, "end": 160, "id": 23, "annotation": null}, {"text": "are", "start": 161, "end": 164, "id": 24, "annotation": null}, {"text": "formed", "start": 165, "end": 171, "id": 25, "annotation": null}, {"text": "by", "start": 172, "end": 174, "id": 26, "annotation": null}, {"text": "depositing", "start": 175, "end": 185, "id": 27, "annotation": null}, {"text": "undoped", "start": 186, "end": 193, "id": 28, "annotation": null}, {"text": "amorphous", "start": 194, "end": 203, "id": 29, "annotation": null}, {"text": "silicon", "start": 204, "end": 211, "id": 30, "annotation": null}, {"text": "followed", "start": 212, "end": 220, "id": 31, "annotation": null}, {"text": "by", "start": 221, "end": 223, "id": 32, "annotation": null}, {"text": "p", "start": 224, "end": 225, "id": 33, "annotation": "DOPANT"}, {"text": "-", "start": 226, "end": 227, "id": 34, "annotation": null}, {"text": "type", "start": 228, "end": 232, "id": 35, "annotation": "DOPANT"}, {"text": "amorphous", "start": 233, "end": 242, "id": 36, "annotation": null}, {"text": "silicon", "start": 243, "end": 250, "id": 37, "annotation": "BASEMAT"}, {"text": "on", "start": 251, "end": 253, "id": 38, "annotation": null}, {"text": "n", "start": 254, "end": 255, "id": 39, "annotation": "DOPANT"}, {"text": "-", "start": 256, "end": 257, "id": 40, "annotation": null}, {"text": "type", "start": 258, "end": 262, "id": 41, "annotation": "DOPANT"}, {"text": "crystalline", "start": 263, "end": 274, "id": 42, "annotation": null}, {"text": "silicon", "start": 275, "end": 282, "id": 43, "annotation": "BASEMAT"}, {"text": "wafers", "start": 283, "end": 289, "id": 44, "annotation": null}, {"text": ".", "start": 290, "end": 291, "id": 45, "annotation": null}], [{"text": "The", "start": 292, "end": 295, "id": 46, "annotation": null}, {"text": "capacitance", "start": 296, "end": 307, "id": 47, "annotation": null}, {"text": "transients", "start": 308, "end": 318, "id": 48, "annotation": null}, {"text": "indicate", "start": 319, "end": 327, "id": 49, "annotation": null}, {"text": "that", "start": 328, "end": 332, "id": 50, "annotation": null}, {"text": "hole", "start": 333, "end": 337, "id": 51, "annotation": null}, {"text": "transport", "start": 338, "end": 347, "id": 52, "annotation": null}, {"text": "from", "start": 348, "end": 352, "id": 53, "annotation": null}, {"text": "p", "start": 353, "end": 354, "id": 54, "annotation": "DOPANT"}, {"text": "-", "start": 355, "end": 356, "id": 55, "annotation": null}, {"text": "type", "start": 357, "end": 361, "id": 56, "annotation": "DOPANT"}, {"text": "amorphous", "start": 362, "end": 371, "id": 57, "annotation": null}, {"text": "silicon", "start": 372, "end": 379, "id": 58, "annotation": "BASEMAT"}, {"text": "to", "start": 380, "end": 382, "id": 59, "annotation": null}, {"text": "n", "start": 383, "end": 384, "id": 60, "annotation": "DOPANT"}, {"text": "-", "start": 385, "end": 386, "id": 61, "annotation": null}, {"text": "type", "start": 387, "end": 391, "id": 62, "annotation": "DOPANT"}, {"text": "crystalline", "start": 392, "end": 403, "id": 63, "annotation": null}, {"text": "silicon", "start": 404, "end": 411, "id": 64, "annotation": "BASEMAT"}, {"text": "is", "start": 412, "end": 414, "id": 65, "annotation": null}, {"text": "hindered", "start": 415, "end": 423, "id": 66, "annotation": null}, {"text": "by", "start": 424, "end": 426, "id": 67, "annotation": null}, {"text": "hole", "start": 427, "end": 431, "id": 68, "annotation": null}, {"text": "accumulation", "start": 432, "end": 444, "id": 69, "annotation": null}, {"text": "in", "start": 445, "end": 447, "id": 70, "annotation": null}, {"text": "the", "start": 448, "end": 451, "id": 71, "annotation": null}, {"text": "depletion", "start": 452, "end": 461, "id": 72, "annotation": null}, {"text": "region", "start": 462, "end": 468, "id": 73, "annotation": null}, {"text": "of", "start": 469, "end": 471, "id": 74, "annotation": null}, {"text": "the", "start": 472, "end": 475, "id": 75, "annotation": null}, {"text": "crystalline", "start": 476, "end": 487, "id": 76, "annotation": null}, {"text": "silicon", "start": 488, "end": 495, "id": 77, "annotation": null}, {"text": ".", "start": 496, "end": 497, "id": 78, "annotation": null}], [{"text": "The", "start": 498, "end": 501, "id": 79, "annotation": null}, {"text": "results", "start": 502, "end": 509, "id": 80, "annotation": null}, {"text": "are", "start": 510, "end": 513, "id": 81, "annotation": null}, {"text": "explained", "start": 514, "end": 523, "id": 82, "annotation": null}, {"text": "with", "start": 524, "end": 528, "id": 83, "annotation": null}, {"text": "a", "start": 529, "end": 530, "id": 84, "annotation": null}, {"text": "model", "start": 531, "end": 536, "id": 85, "annotation": null}, {"text": "based", "start": 537, "end": 542, "id": 86, "annotation": null}, {"text": "on", "start": 543, "end": 545, "id": 87, "annotation": null}, {"text": "electrostatic", "start": 546, "end": 559, "id": 88, "annotation": null}, {"text": "repulsion", "start": 560, "end": 569, "id": 89, "annotation": null}, {"text": "owing", "start": 570, "end": 575, "id": 90, "annotation": null}, {"text": "to", "start": 576, "end": 578, "id": 91, "annotation": null}, {"text": "hole", "start": 579, "end": 583, "id": 92, "annotation": null}, {"text": "build", "start": 584, "end": 589, "id": 93, "annotation": null}, {"text": "-", "start": 590, "end": 591, "id": 94, "annotation": null}, {"text": "up", "start": 592, "end": 594, "id": 95, "annotation": null}, {"text": "at", "start": 595, "end": 597, "id": 96, "annotation": null}, {"text": "the", "start": 598, "end": 601, "id": 97, "annotation": null}, {"text": "crystalline", "start": 602, "end": 613, "id": 98, "annotation": null}, {"text": "/", "start": 614, "end": 615, "id": 99, "annotation": null}, {"text": "amorphous", "start": 616, "end": 625, "id": 100, "annotation": null}, {"text": "interface", "start": 626, "end": 635, "id": 101, "annotation": null}, {"text": ".", "start": 636, "end": 637, "id": 102, "annotation": null}], [{"text": "We", "start": 638, "end": 640, "id": 103, "annotation": null}, {"text": "apply", "start": 641, "end": 646, "id": 104, "annotation": null}, {"text": "these", "start": 647, "end": 652, "id": 105, "annotation": null}, {"text": "results", "start": 653, "end": 660, "id": 106, "annotation": null}, {"text": "to", "start": 661, "end": 663, "id": 107, "annotation": null}, {"text": "other", "start": 664, "end": 669, "id": 108, "annotation": null}, {"text": "heterojunction", "start": 670, "end": 684, "id": 109, "annotation": null}, {"text": "solar", "start": 685, "end": 690, "id": 110, "annotation": null}, {"text": "cells", "start": 691, "end": 696, "id": 111, "annotation": null}, {"text": ".", "start": 697, "end": 698, "id": 112, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "Graphitic carbon nitride nanosheets (g-C3N4 NSs) hybridized nitrogen doped titanium dioxide (N-TiO2) nanofibers (GCN/NT NFs) have been synthesized in situ via a simple electrospinning process combined with a modified heat-etching method. The prepared GCN/NT NFs were characterized by a variety of methods and their photocatalytic activities were evaluated by hydrogen (H2) production from water splitting and degradation of rhodamine B in aqueous solution. It was found that the GCN/NT NFs have a mesoporous structure, composed of g-C3N4 NSs and N-doped TiO2 crystallites. The g-C3N4 NSs synthesized after heat-etching were found to be embedded in, and covered, the hybrid NFs to form stable interfaces. The partial decomposition of g-C3N4 releases its nitrogen content which eventually gets doped into the nearby TiO2 skeleton. The GCN/NT NFs give a high photocatalytic H2 production rate of 8,931.3 \u03bcmol\u00b7h\u22121\u00b7g\u22121 in aqueous methanol solution under simulated solar light. Such a highly efficient photocatalytic performance can be ascribed to the combined effects of g-C3N4 NSs and N-doped TiO2 with enhanced light absorption intensity and improved electron transport ability. Also, the large surface area of the mesoporous NFs minimizes light reflection on the surface and provides more surface-active sites. This work highlights the potential of quasi-one dimensional hybrid materials in the field of solar energy conversion.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Graphitic", "start": 0, "end": 9, "annotation": null}, {"text": "carbon", "start": 10, "end": 16, "annotation": null}, {"text": "nitride", "start": 17, "end": 24, "annotation": null}, {"text": "nanosheets", "start": 25, "end": 35, "annotation": null}, {"text": "(", "start": 36, "end": 37, "annotation": null}, {"text": "g-C3N4", "start": 37, "end": 43, "annotation": null}, {"text": "NSs", "start": 44, "end": 47, "annotation": null}, {"text": ")", "start": 47, "end": 48, "annotation": null}, {"text": "hybridized", "start": 49, "end": 59, "annotation": null}, {"text": "nitrogen", "start": 60, "end": 68, "annotation": "DOPANT"}, {"text": "doped", "start": 69, "end": 74, "annotation": null}, {"text": "titanium", "start": 75, "end": 83, "annotation": "BASEMAT"}, {"text": "dioxide", "start": 84, "end": 91, "annotation": "BASEMAT"}, {"text": "(", "start": 92, "end": 93, "annotation": null}, {"text": "N-TiO2", "start": 93, "end": 99, "annotation": null}, {"text": ")", "start": 99, "end": 100, "annotation": null}, {"text": "nanofibers", "start": 101, "end": 111, "annotation": null}, {"text": "(", "start": 112, "end": 113, "annotation": null}, {"text": "GCN", "start": 113, "end": 116, "annotation": null}, {"text": "/", "start": 116, "end": 117, "annotation": null}, {"text": "NT", "start": 117, "end": 119, "annotation": null}, {"text": "NFs", "start": 120, "end": 123, "annotation": null}, {"text": ")", "start": 123, "end": 124, "annotation": null}, {"text": "have", "start": 125, "end": 129, "annotation": null}, {"text": "been", "start": 130, "end": 134, "annotation": null}, {"text": "synthesized", "start": 135, "end": 146, "annotation": null}, {"text": "in", "start": 147, "end": 149, "annotation": null}, {"text": "situ", "start": 150, "end": 154, "annotation": null}, {"text": "via", "start": 155, "end": 158, "annotation": null}, {"text": "a", "start": 159, "end": 160, "annotation": null}, {"text": "simple", "start": 161, "end": 167, "annotation": null}, {"text": "electrospinning", "start": 168, "end": 183, "annotation": null}, {"text": "process", "start": 184, "end": 191, "annotation": null}, {"text": "combined", "start": 192, "end": 200, "annotation": null}, {"text": "with", "start": 201, "end": 205, "annotation": null}, {"text": "a", "start": 206, "end": 207, "annotation": null}, {"text": "modified", "start": 208, "end": 216, "annotation": null}, {"text": "heat", "start": 217, "end": 221, "annotation": null}, {"text": "-", "start": 221, "end": 222, "annotation": null}, {"text": "etching", "start": 222, "end": 229, "annotation": null}, {"text": "method", "start": 230, "end": 236, "annotation": null}, {"text": ".", "start": 236, "end": 237, "annotation": null}], [{"text": "The", "start": 238, "end": 241, "annotation": null}, {"text": "prepared", "start": 242, "end": 250, "annotation": null}, {"text": "GCN", "start": 251, "end": 254, "annotation": null}, {"text": "/", "start": 254, "end": 255, "annotation": null}, {"text": "NT", "start": 255, "end": 257, "annotation": null}, {"text": "NFs", "start": 258, "end": 261, "annotation": null}, {"text": "were", "start": 262, "end": 266, "annotation": null}, {"text": "characterized", "start": 267, "end": 280, "annotation": null}, {"text": "by", "start": 281, "end": 283, "annotation": null}, {"text": "a", "start": 284, "end": 285, "annotation": null}, {"text": "variety", "start": 286, "end": 293, "annotation": null}, {"text": "of", "start": 294, "end": 296, "annotation": null}, {"text": "methods", "start": 297, "end": 304, "annotation": null}, {"text": "and", "start": 305, "end": 308, "annotation": null}, {"text": "their", "start": 309, "end": 314, "annotation": null}, {"text": "photocatalytic", "start": 315, "end": 329, "annotation": null}, {"text": "activities", "start": 330, "end": 340, "annotation": null}, {"text": "were", "start": 341, "end": 345, "annotation": null}, {"text": "evaluated", "start": 346, "end": 355, "annotation": null}, {"text": "by", "start": 356, "end": 358, "annotation": null}, {"text": "hydrogen", "start": 359, "end": 367, "annotation": null}, {"text": "(", "start": 368, "end": 369, "annotation": null}, {"text": "H2", "start": 369, "end": 371, "annotation": null}, {"text": ")", "start": 371, "end": 372, "annotation": null}, {"text": "production", "start": 373, "end": 383, "annotation": null}, {"text": "from", "start": 384, "end": 388, "annotation": null}, {"text": "water", "start": 389, "end": 394, "annotation": null}, {"text": "splitting", "start": 395, "end": 404, "annotation": null}, {"text": "and", "start": 405, "end": 408, "annotation": null}, {"text": "degradation", "start": 409, "end": 420, "annotation": null}, {"text": "of", "start": 421, "end": 423, "annotation": null}, {"text": "rhodamine", "start": 424, "end": 433, "annotation": null}, {"text": "B", "start": 434, "end": 435, "annotation": null}, {"text": "in", "start": 436, "end": 438, "annotation": null}, {"text": "aqueous", "start": 439, "end": 446, "annotation": null}, {"text": "solution", "start": 447, "end": 455, "annotation": null}, {"text": ".", "start": 455, "end": 456, "annotation": null}], [{"text": "It", "start": 457, "end": 459, "annotation": null}, {"text": "was", "start": 460, "end": 463, "annotation": null}, {"text": "found", "start": 464, "end": 469, "annotation": null}, {"text": "that", "start": 470, "end": 474, "annotation": null}, {"text": "the", "start": 475, "end": 478, "annotation": null}, {"text": "GCN", "start": 479, "end": 482, "annotation": null}, {"text": "/", "start": 482, "end": 483, "annotation": null}, {"text": "NT", "start": 483, "end": 485, "annotation": null}, {"text": "NFs", "start": 486, "end": 489, "annotation": null}, {"text": "have", "start": 490, "end": 494, "annotation": null}, {"text": "a", "start": 495, "end": 496, "annotation": null}, {"text": "mesoporous", "start": 497, "end": 507, "annotation": null}, {"text": "structure", "start": 508, "end": 517, "annotation": null}, {"text": ",", "start": 517, "end": 518, "annotation": null}, {"text": "composed", "start": 519, "end": 527, "annotation": null}, {"text": "of", "start": 528, "end": 530, "annotation": null}, {"text": "g-C3N4", "start": 531, "end": 537, "annotation": null}, {"text": "NSs", "start": 538, "end": 541, "annotation": null}, {"text": "and", "start": 542, "end": 545, "annotation": null}, {"text": "N", "start": 546, "end": 547, "annotation": "DOPANT"}, {"text": "-", "start": 547, "end": 548, "annotation": null}, {"text": "doped", "start": 548, "end": 553, "annotation": null}, {"text": "TiO2", "start": 554, "end": 558, "annotation": "BASEMAT"}, {"text": "crystallites", "start": 559, "end": 571, "annotation": null}, {"text": ".", "start": 571, "end": 572, "annotation": null}], [{"text": "The", "start": 573, "end": 576, "annotation": null}, {"text": "g-C3N4", "start": 577, "end": 583, "annotation": null}, {"text": "NSs", "start": 584, "end": 587, "annotation": null}, {"text": "synthesized", "start": 588, "end": 599, "annotation": null}, {"text": "after", "start": 600, "end": 605, "annotation": null}, {"text": "heat", "start": 606, "end": 610, "annotation": null}, {"text": "-", "start": 610, "end": 611, "annotation": null}, {"text": "etching", "start": 611, "end": 618, "annotation": null}, {"text": "were", "start": 619, "end": 623, "annotation": null}, {"text": "found", "start": 624, "end": 629, "annotation": null}, {"text": "to", "start": 630, "end": 632, "annotation": null}, {"text": "be", "start": 633, "end": 635, "annotation": null}, {"text": "embedded", "start": 636, "end": 644, "annotation": null}, {"text": "in", "start": 645, "end": 647, "annotation": null}, {"text": ",", "start": 647, "end": 648, "annotation": null}, {"text": "and", "start": 649, "end": 652, "annotation": null}, {"text": "covered", "start": 653, "end": 660, "annotation": null}, {"text": ",", "start": 660, "end": 661, "annotation": null}, {"text": "the", "start": 662, "end": 665, "annotation": null}, {"text": "hybrid", "start": 666, "end": 672, "annotation": null}, {"text": "NFs", "start": 673, "end": 676, "annotation": null}, {"text": "to", "start": 677, "end": 679, "annotation": null}, {"text": "form", "start": 680, "end": 684, "annotation": null}, {"text": "stable", "start": 685, "end": 691, "annotation": null}, {"text": "interfaces", "start": 692, "end": 702, "annotation": null}, {"text": ".", "start": 702, "end": 703, "annotation": null}], [{"text": "The", "start": 704, "end": 707, "annotation": null}, {"text": "partial", "start": 708, "end": 715, "annotation": null}, {"text": "decomposition", "start": 716, "end": 729, "annotation": null}, {"text": "of", "start": 730, "end": 732, "annotation": null}, {"text": "g-C3N4", "start": 733, "end": 739, "annotation": null}, {"text": "releases", "start": 740, "end": 748, "annotation": null}, {"text": "its", "start": 749, "end": 752, "annotation": null}, {"text": "nitrogen", "start": 753, "end": 761, "annotation": "DOPANT"}, {"text": "content", "start": 762, "end": 769, "annotation": null}, {"text": "which", "start": 770, "end": 775, "annotation": null}, {"text": "eventually", "start": 776, "end": 786, "annotation": null}, {"text": "gets", "start": 787, "end": 791, "annotation": null}, {"text": "doped", "start": 792, "end": 797, "annotation": null}, {"text": "into", "start": 798, "end": 802, "annotation": null}, {"text": "the", "start": 803, "end": 806, "annotation": null}, {"text": "nearby", "start": 807, "end": 813, "annotation": null}, {"text": "TiO2", "start": 814, "end": 818, "annotation": "BASEMAT"}, {"text": "skeleton", "start": 819, "end": 827, "annotation": null}, {"text": ".", "start": 827, "end": 828, "annotation": null}], [{"text": "The", "start": 829, "end": 832, "annotation": null}, {"text": "GCN", "start": 833, "end": 836, "annotation": null}, {"text": "/", "start": 836, "end": 837, "annotation": null}, {"text": "NT", "start": 837, "end": 839, "annotation": null}, {"text": "NFs", "start": 840, "end": 843, "annotation": null}, {"text": "give", "start": 844, "end": 848, "annotation": null}, {"text": "a", "start": 849, "end": 850, "annotation": null}, {"text": "high", "start": 851, "end": 855, "annotation": null}, {"text": "photocatalytic", "start": 856, "end": 870, "annotation": null}, {"text": "H2", "start": 871, "end": 873, "annotation": null}, {"text": "production", "start": 874, "end": 884, "annotation": null}, {"text": "rate", "start": 885, "end": 889, "annotation": null}, {"text": "of", "start": 890, "end": 892, "annotation": null}, {"text": "8,931.3", "start": 893, "end": 900, "annotation": null}, {"text": "\u03bcmol\u00b7h\u22121\u00b7g\u22121", "start": 901, "end": 913, "annotation": null}, {"text": "in", "start": 914, "end": 916, "annotation": null}, {"text": "aqueous", "start": 917, "end": 924, "annotation": null}, {"text": "methanol", "start": 925, "end": 933, "annotation": null}, {"text": "solution", "start": 934, "end": 942, "annotation": null}, {"text": "under", "start": 943, "end": 948, "annotation": null}, {"text": "simulated", "start": 949, "end": 958, "annotation": null}, {"text": "solar", "start": 959, "end": 964, "annotation": null}, {"text": "light", "start": 965, "end": 970, "annotation": null}, {"text": ".", "start": 970, "end": 971, "annotation": null}], [{"text": "Such", "start": 972, "end": 976, "annotation": null}, {"text": "a", "start": 977, "end": 978, "annotation": null}, {"text": "highly", "start": 979, "end": 985, "annotation": null}, {"text": "efficient", "start": 986, "end": 995, "annotation": null}, {"text": "photocatalytic", "start": 996, "end": 1010, "annotation": null}, {"text": "performance", "start": 1011, "end": 1022, "annotation": null}, {"text": "can", "start": 1023, "end": 1026, "annotation": null}, {"text": "be", "start": 1027, "end": 1029, "annotation": null}, {"text": "ascribed", "start": 1030, "end": 1038, "annotation": null}, {"text": "to", "start": 1039, "end": 1041, "annotation": null}, {"text": "the", "start": 1042, "end": 1045, "annotation": null}, {"text": "combined", "start": 1046, "end": 1054, "annotation": null}, {"text": "effects", "start": 1055, "end": 1062, "annotation": null}, {"text": "of", "start": 1063, "end": 1065, "annotation": null}, {"text": "g-C3N4", "start": 1066, "end": 1072, "annotation": null}, {"text": "NSs", "start": 1073, "end": 1076, "annotation": null}, {"text": "and", "start": 1077, "end": 1080, "annotation": null}, {"text": "N", "start": 1081, "end": 1082, "annotation": "DOPANT"}, {"text": "-", "start": 1082, "end": 1083, "annotation": null}, {"text": "doped", "start": 1083, "end": 1088, "annotation": null}, {"text": "TiO2", "start": 1089, "end": 1093, "annotation": "BASEMAT"}, {"text": "with", "start": 1094, "end": 1098, "annotation": null}, {"text": "enhanced", "start": 1099, "end": 1107, "annotation": null}, {"text": "light", "start": 1108, "end": 1113, "annotation": null}, {"text": "absorption", "start": 1114, "end": 1124, "annotation": null}, {"text": "intensity", "start": 1125, "end": 1134, "annotation": null}, {"text": "and", "start": 1135, "end": 1138, "annotation": null}, {"text": "improved", "start": 1139, "end": 1147, "annotation": null}, {"text": "electron", "start": 1148, "end": 1156, "annotation": null}, {"text": "transport", "start": 1157, "end": 1166, "annotation": null}, {"text": "ability", "start": 1167, "end": 1174, "annotation": null}, {"text": ".", "start": 1174, "end": 1175, "annotation": null}], [{"text": "Also", "start": 1176, "end": 1180, "annotation": null}, {"text": ",", "start": 1180, "end": 1181, "annotation": null}, {"text": "the", "start": 1182, "end": 1185, "annotation": null}, {"text": "large", "start": 1186, "end": 1191, "annotation": null}, {"text": "surface", "start": 1192, "end": 1199, "annotation": null}, {"text": "area", "start": 1200, "end": 1204, "annotation": null}, {"text": "of", "start": 1205, "end": 1207, "annotation": null}, {"text": "the", "start": 1208, "end": 1211, "annotation": null}, {"text": "mesoporous", "start": 1212, "end": 1222, "annotation": null}, {"text": "NFs", "start": 1223, "end": 1226, "annotation": null}, {"text": "minimizes", "start": 1227, "end": 1236, "annotation": null}, {"text": "light", "start": 1237, "end": 1242, "annotation": null}, {"text": "reflection", "start": 1243, "end": 1253, "annotation": null}, {"text": "on", "start": 1254, "end": 1256, "annotation": null}, {"text": "the", "start": 1257, "end": 1260, "annotation": null}, {"text": "surface", "start": 1261, "end": 1268, "annotation": null}, {"text": "and", "start": 1269, "end": 1272, "annotation": null}, {"text": "provides", "start": 1273, "end": 1281, "annotation": null}, {"text": "more", "start": 1282, "end": 1286, "annotation": null}, {"text": "surface", "start": 1287, "end": 1294, "annotation": null}, {"text": "-", "start": 1294, "end": 1295, "annotation": null}, {"text": "active", "start": 1295, "end": 1301, "annotation": null}, {"text": "sites", "start": 1302, "end": 1307, "annotation": null}, {"text": ".", "start": 1307, "end": 1308, "annotation": null}], [{"text": "This", "start": 1309, "end": 1313, "annotation": null}, {"text": "work", "start": 1314, "end": 1318, "annotation": null}, {"text": "highlights", "start": 1319, "end": 1329, "annotation": null}, {"text": "the", "start": 1330, "end": 1333, "annotation": null}, {"text": "potential", "start": 1334, "end": 1343, "annotation": null}, {"text": "of", "start": 1344, "end": 1346, "annotation": null}, {"text": "quasi-one", "start": 1347, "end": 1356, "annotation": null}, {"text": "dimensional", "start": 1357, "end": 1368, "annotation": null}, {"text": "hybrid", "start": 1369, "end": 1375, "annotation": null}, {"text": "materials", "start": 1376, "end": 1385, "annotation": null}, {"text": "in", "start": 1386, "end": 1388, "annotation": null}, {"text": "the", "start": 1389, "end": 1392, "annotation": null}, {"text": "field", "start": 1393, "end": 1398, "annotation": null}, {"text": "of", "start": 1399, "end": 1401, "annotation": null}, {"text": "solar", "start": 1402, "end": 1407, "annotation": null}, {"text": "energy", "start": 1408, "end": 1414, "annotation": null}, {"text": "conversion", "start": 1415, "end": 1425, "annotation": null}, {"text": ".", "start": 1425, "end": 1426, "annotation": null}]], "meta": {"doi": "10.1007/s12274-014-0600-2"}} +{"remark": "doping_annt1", "text": "Lead tungstate tellurite (LTT) glasses doped with different concentrations of Eu3+ ions have been prepared by the conventional melt quenching method. From the absorption spectrum, it has been observed that the bands originated both from the ground (7F0) and the first excited (7F1) states. Judd-Ofelt intensity parameters \u03a92 and \u03a94 have been evaluated from the 5D0 \u2192 7F2 and 5D0 \u2192 7F4 emission transitions respectively. The evaluated J-O intensity parameters have been used to calculate different radiative and laser characteristic parameters of the 5D0 excited level. The large magnitudes of stimulated emission cross-section (\u03c3e) and branching ratio (\u03b2R) obtained for 5D0 \u2192 7F2 (0.62 \u03bcm) transition suggests that the LTTEu20 glass could be more suitable for lasing action in the visible region. The measured lifetime of 5D0 excited state increases with increase of Eu3+ concentration due to increasing asymmetry around the Eu3+ ions.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Lead", "start": 0, "end": 4, "annotation": "BASEMAT"}, {"text": "tungstate", "start": 5, "end": 14, "annotation": "BASEMAT"}, {"text": "tellurite", "start": 15, "end": 24, "annotation": "BASEMAT"}, {"text": "(", "start": 25, "end": 26, "annotation": null}, {"text": "LTT", "start": 26, "end": 29, "annotation": "BASEMAT"}, {"text": ")", "start": 29, "end": 30, "annotation": null}, {"text": "glasses", "start": 31, "end": 38, "annotation": null}, {"text": "doped", "start": 39, "end": 44, "annotation": null}, {"text": "with", "start": 45, "end": 49, "annotation": null}, {"text": "different", "start": 50, "end": 59, "annotation": null}, {"text": "concentrations", "start": 60, "end": 74, "annotation": null}, {"text": "of", "start": 75, "end": 77, "annotation": null}, {"text": "Eu3+", "start": 78, "end": 82, "annotation": "DOPANT"}, {"text": "ions", "start": 83, "end": 87, "annotation": null}, {"text": "have", "start": 88, "end": 92, "annotation": null}, {"text": "been", "start": 93, "end": 97, "annotation": null}, {"text": "prepared", "start": 98, "end": 106, "annotation": null}, {"text": "by", "start": 107, "end": 109, "annotation": null}, {"text": "the", "start": 110, "end": 113, "annotation": null}, {"text": "conventional", "start": 114, "end": 126, "annotation": null}, {"text": "melt", "start": 127, "end": 131, "annotation": null}, {"text": "quenching", "start": 132, "end": 141, "annotation": null}, {"text": "method", "start": 142, "end": 148, "annotation": null}, {"text": ".", "start": 148, "end": 149, "annotation": null}], [{"text": "From", "start": 150, "end": 154, "annotation": null}, {"text": "the", "start": 155, "end": 158, "annotation": null}, {"text": "absorption", "start": 159, "end": 169, "annotation": null}, {"text": "spectrum", "start": 170, "end": 178, "annotation": null}, {"text": ",", "start": 178, "end": 179, "annotation": null}, {"text": "it", "start": 180, "end": 182, "annotation": null}, {"text": "has", "start": 183, "end": 186, "annotation": null}, {"text": "been", "start": 187, "end": 191, "annotation": null}, {"text": "observed", "start": 192, "end": 200, "annotation": null}, {"text": "that", "start": 201, "end": 205, "annotation": null}, {"text": "the", "start": 206, "end": 209, "annotation": null}, {"text": "bands", "start": 210, "end": 215, "annotation": null}, {"text": "originated", "start": 216, "end": 226, "annotation": null}, {"text": "both", "start": 227, "end": 231, "annotation": null}, {"text": "from", "start": 232, "end": 236, "annotation": null}, {"text": "the", "start": 237, "end": 240, "annotation": null}, {"text": "ground", "start": 241, "end": 247, "annotation": null}, {"text": "(", "start": 248, "end": 249, "annotation": null}, {"text": "7F0", "start": 249, "end": 252, "annotation": null}, {"text": ")", "start": 252, "end": 253, "annotation": null}, {"text": "and", "start": 254, "end": 257, "annotation": null}, {"text": "the", "start": 258, "end": 261, "annotation": null}, {"text": "first", "start": 262, "end": 267, "annotation": null}, {"text": "excited", "start": 268, "end": 275, "annotation": null}, {"text": "(", "start": 276, "end": 277, "annotation": null}, {"text": "7F1", "start": 277, "end": 280, "annotation": null}, {"text": ")", "start": 280, "end": 281, "annotation": null}, {"text": "states", "start": 282, "end": 288, "annotation": null}, {"text": ".", "start": 288, "end": 289, "annotation": null}], [{"text": "Judd", "start": 290, "end": 294, "annotation": null}, {"text": "-", "start": 294, "end": 295, "annotation": null}, {"text": "Ofelt", "start": 295, "end": 300, "annotation": null}, {"text": "intensity", "start": 301, "end": 310, "annotation": null}, {"text": "parameters", "start": 311, "end": 321, "annotation": null}, {"text": "\u03a92", "start": 322, "end": 324, "annotation": null}, {"text": "and", "start": 325, "end": 328, "annotation": null}, {"text": "\u03a94", "start": 329, "end": 331, "annotation": null}, {"text": "have", "start": 332, "end": 336, "annotation": null}, {"text": "been", "start": 337, "end": 341, "annotation": null}, {"text": "evaluated", "start": 342, "end": 351, "annotation": null}, {"text": "from", "start": 352, "end": 356, "annotation": null}, {"text": "the", "start": 357, "end": 360, "annotation": null}, {"text": "5D0", "start": 361, "end": 364, "annotation": null}, {"text": "\u2192", "start": 365, "end": 366, "annotation": null}, {"text": "7F2", "start": 367, "end": 370, "annotation": null}, {"text": "and", "start": 371, "end": 374, "annotation": null}, {"text": "5D0", "start": 375, "end": 378, "annotation": null}, {"text": "\u2192", "start": 379, "end": 380, "annotation": null}, {"text": "7F4", "start": 381, "end": 384, "annotation": null}, {"text": "emission", "start": 385, "end": 393, "annotation": null}, {"text": "transitions", "start": 394, "end": 405, "annotation": null}, {"text": "respectively", "start": 406, "end": 418, "annotation": null}, {"text": ".", "start": 418, "end": 419, "annotation": null}], [{"text": "The", "start": 420, "end": 423, "annotation": null}, {"text": "evaluated", "start": 424, "end": 433, "annotation": null}, {"text": "J-O", "start": 434, "end": 437, "annotation": null}, {"text": "intensity", "start": 438, "end": 447, "annotation": null}, {"text": "parameters", "start": 448, "end": 458, "annotation": null}, {"text": "have", "start": 459, "end": 463, "annotation": null}, {"text": "been", "start": 464, "end": 468, "annotation": null}, {"text": "used", "start": 469, "end": 473, "annotation": null}, {"text": "to", "start": 474, "end": 476, "annotation": null}, {"text": "calculate", "start": 477, "end": 486, "annotation": null}, {"text": "different", "start": 487, "end": 496, "annotation": null}, {"text": "radiative", "start": 497, "end": 506, "annotation": null}, {"text": "and", "start": 507, "end": 510, "annotation": null}, {"text": "laser", "start": 511, "end": 516, "annotation": null}, {"text": "characteristic", "start": 517, "end": 531, "annotation": null}, {"text": "parameters", "start": 532, "end": 542, "annotation": null}, {"text": "of", "start": 543, "end": 545, "annotation": null}, {"text": "the", "start": 546, "end": 549, "annotation": null}, {"text": "5D0", "start": 550, "end": 553, "annotation": null}, {"text": "excited", "start": 554, "end": 561, "annotation": null}, {"text": "level", "start": 562, "end": 567, "annotation": null}, {"text": ".", "start": 567, "end": 568, "annotation": null}], [{"text": "The", "start": 569, "end": 572, "annotation": null}, {"text": "large", "start": 573, "end": 578, "annotation": null}, {"text": "magnitudes", "start": 579, "end": 589, "annotation": null}, {"text": "of", "start": 590, "end": 592, "annotation": null}, {"text": "stimulated", "start": 593, "end": 603, "annotation": null}, {"text": "emission", "start": 604, "end": 612, "annotation": null}, {"text": "cross-section", "start": 613, "end": 626, "annotation": null}, {"text": "(", "start": 627, "end": 628, "annotation": null}, {"text": "\u03c3e", "start": 628, "end": 630, "annotation": null}, {"text": ")", "start": 630, "end": 631, "annotation": null}, {"text": "and", "start": 632, "end": 635, "annotation": null}, {"text": "branching", "start": 636, "end": 645, "annotation": null}, {"text": "ratio", "start": 646, "end": 651, "annotation": null}, {"text": "(", "start": 652, "end": 653, "annotation": null}, {"text": "\u03b2R", "start": 653, "end": 655, "annotation": null}, {"text": ")", "start": 655, "end": 656, "annotation": null}, {"text": "obtained", "start": 657, "end": 665, "annotation": null}, {"text": "for", "start": 666, "end": 669, "annotation": null}, {"text": "5D0", "start": 670, "end": 673, "annotation": null}, {"text": "\u2192", "start": 674, "end": 675, "annotation": null}, {"text": "7F2", "start": 676, "end": 679, "annotation": null}, {"text": "(", "start": 680, "end": 681, "annotation": null}, {"text": "0.62", "start": 681, "end": 685, "annotation": null}, {"text": "\u03bcm", "start": 686, "end": 688, "annotation": null}, {"text": ")", "start": 688, "end": 689, "annotation": null}, {"text": "transition", "start": 690, "end": 700, "annotation": null}, {"text": "suggests", "start": 701, "end": 709, "annotation": null}, {"text": "that", "start": 710, "end": 714, "annotation": null}, {"text": "the", "start": 715, "end": 718, "annotation": null}, {"text": "LTTEu20", "start": 719, "end": 726, "annotation": null}, {"text": "glass", "start": 727, "end": 732, "annotation": null}, {"text": "could", "start": 733, "end": 738, "annotation": null}, {"text": "be", "start": 739, "end": 741, "annotation": null}, {"text": "more", "start": 742, "end": 746, "annotation": null}, {"text": "suitable", "start": 747, "end": 755, "annotation": null}, {"text": "for", "start": 756, "end": 759, "annotation": null}, {"text": "lasing", "start": 760, "end": 766, "annotation": null}, {"text": "action", "start": 767, "end": 773, "annotation": null}, {"text": "in", "start": 774, "end": 776, "annotation": null}, {"text": "the", "start": 777, "end": 780, "annotation": null}, {"text": "visible", "start": 781, "end": 788, "annotation": null}, {"text": "region", "start": 789, "end": 795, "annotation": null}, {"text": ".", "start": 795, "end": 796, "annotation": null}], [{"text": "The", "start": 797, "end": 800, "annotation": null}, {"text": "measured", "start": 801, "end": 809, "annotation": null}, {"text": "lifetime", "start": 810, "end": 818, "annotation": null}, {"text": "of", "start": 819, "end": 821, "annotation": null}, {"text": "5D0", "start": 822, "end": 825, "annotation": null}, {"text": "excited", "start": 826, "end": 833, "annotation": null}, {"text": "state", "start": 834, "end": 839, "annotation": null}, {"text": "increases", "start": 840, "end": 849, "annotation": null}, {"text": "with", "start": 850, "end": 854, "annotation": null}, {"text": "increase", "start": 855, "end": 863, "annotation": null}, {"text": "of", "start": 864, "end": 866, "annotation": null}, {"text": "Eu3+", "start": 867, "end": 871, "annotation": "DOPANT"}, {"text": "concentration", "start": 872, "end": 885, "annotation": null}, {"text": "due", "start": 886, "end": 889, "annotation": null}, {"text": "to", "start": 890, "end": 892, "annotation": null}, {"text": "increasing", "start": 893, "end": 903, "annotation": null}, {"text": "asymmetry", "start": 904, "end": 913, "annotation": null}, {"text": "around", "start": 914, "end": 920, "annotation": null}, {"text": "the", "start": 921, "end": 924, "annotation": null}, {"text": "Eu3+", "start": 925, "end": 929, "annotation": "DOPANT"}, {"text": "ions", "start": 930, "end": 934, "annotation": null}, {"text": ".", "start": 934, "end": 935, "annotation": null}]], "meta": {"doi": "10.1016/j.solidstatesciences.2010.12.028"}} +{"text": "By using transient-capacitance techniques we probe the mechanism of hole transport in amorphous/crystalline silicon heterojunction solar cells. The devices are formed by depositing undoped amorphous silicon followed by p-type amorphous silicon on n-type crystalline silicon wafers. The capacitance transients indicate that hole transport from p-type amorphous silicon to n-type crystalline silicon is hindered by hole accumulation in the depletion region of the crystalline silicon. The results are explained with a model based on electrostatic repulsion owing to hole build-up at the crystalline/amorphous interface. We apply these results to other heterojunction solar cells.", "meta": {"doi": "10.1016/j.solmat.2013.11.012"}, "_input_hash": -1615593435, "_task_hash": -446710130, "tokens": [[{"text": "By", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "using", "start": 3, "end": 8, "id": 1, "annotation": null}, {"text": "transient", "start": 9, "end": 18, "id": 2, "annotation": null}, {"text": "-", "start": 19, "end": 20, "id": 3, "annotation": null}, {"text": "capacitance", "start": 21, "end": 32, "id": 4, "annotation": null}, {"text": "techniques", "start": 33, "end": 43, "id": 5, "annotation": null}, {"text": "we", "start": 44, "end": 46, "id": 6, "annotation": null}, {"text": "probe", "start": 47, "end": 52, "id": 7, "annotation": null}, {"text": "the", "start": 53, "end": 56, "id": 8, "annotation": null}, {"text": "mechanism", "start": 57, "end": 66, "id": 9, "annotation": null}, {"text": "of", "start": 67, "end": 69, "id": 10, "annotation": null}, {"text": "hole", "start": 70, "end": 74, "id": 11, "annotation": null}, {"text": "transport", "start": 75, "end": 84, "id": 12, "annotation": null}, {"text": "in", "start": 85, "end": 87, "id": 13, "annotation": null}, {"text": "amorphous", "start": 88, "end": 97, "id": 14, "annotation": null}, {"text": "/", "start": 98, "end": 99, "id": 15, "annotation": null}, {"text": "crystalline", "start": 100, "end": 111, "id": 16, "annotation": null}, {"text": "silicon", "start": 112, "end": 119, "id": 17, "annotation": null}, {"text": "heterojunction", "start": 120, "end": 134, "id": 18, "annotation": null}, {"text": "solar", "start": 135, "end": 140, "id": 19, "annotation": null}, {"text": "cells", "start": 141, "end": 146, "id": 20, "annotation": null}, {"text": ".", "start": 147, "end": 148, "id": 21, "annotation": null}], [{"text": "The", "start": 149, "end": 152, "id": 22, "annotation": null}, {"text": "devices", "start": 153, "end": 160, "id": 23, "annotation": null}, {"text": "are", "start": 161, "end": 164, "id": 24, "annotation": null}, {"text": "formed", "start": 165, "end": 171, "id": 25, "annotation": null}, {"text": "by", "start": 172, "end": 174, "id": 26, "annotation": null}, {"text": "depositing", "start": 175, "end": 185, "id": 27, "annotation": null}, {"text": "undoped", "start": 186, "end": 193, "id": 28, "annotation": null}, {"text": "amorphous", "start": 194, "end": 203, "id": 29, "annotation": null}, {"text": "silicon", "start": 204, "end": 211, "id": 30, "annotation": null}, {"text": "followed", "start": 212, "end": 220, "id": 31, "annotation": null}, {"text": "by", "start": 221, "end": 223, "id": 32, "annotation": null}, {"text": "p", "start": 224, "end": 225, "id": 33, "annotation": "DOPANT"}, {"text": "-", "start": 226, "end": 227, "id": 34, "annotation": "DOPANT"}, {"text": "type", "start": 228, "end": 232, "id": 35, "annotation": "DOPANT"}, {"text": "amorphous", "start": 233, "end": 242, "id": 36, "annotation": null}, {"text": "silicon", "start": 243, "end": 250, "id": 37, "annotation": "BASEMAT"}, {"text": "on", "start": 251, "end": 253, "id": 38, "annotation": null}, {"text": "n", "start": 254, "end": 255, "id": 39, "annotation": "DOPANT"}, {"text": "-", "start": 256, "end": 257, "id": 40, "annotation": "DOPANT"}, {"text": "type", "start": 258, "end": 262, "id": 41, "annotation": "DOPANT"}, {"text": "crystalline", "start": 263, "end": 274, "id": 42, "annotation": null}, {"text": "silicon", "start": 275, "end": 282, "id": 43, "annotation": "BASEMAT"}, {"text": "wafers", "start": 283, "end": 289, "id": 44, "annotation": null}, {"text": ".", "start": 290, "end": 291, "id": 45, "annotation": null}], [{"text": "The", "start": 292, "end": 295, "id": 46, "annotation": null}, {"text": "capacitance", "start": 296, "end": 307, "id": 47, "annotation": null}, {"text": "transients", "start": 308, "end": 318, "id": 48, "annotation": null}, {"text": "indicate", "start": 319, "end": 327, "id": 49, "annotation": null}, {"text": "that", "start": 328, "end": 332, "id": 50, "annotation": null}, {"text": "hole", "start": 333, "end": 337, "id": 51, "annotation": null}, {"text": "transport", "start": 338, "end": 347, "id": 52, "annotation": null}, {"text": "from", "start": 348, "end": 352, "id": 53, "annotation": null}, {"text": "p", "start": 353, "end": 354, "id": 54, "annotation": "DOPANT"}, {"text": "-", "start": 355, "end": 356, "id": 55, "annotation": "DOPANT"}, {"text": "type", "start": 357, "end": 361, "id": 56, "annotation": "DOPANT"}, {"text": "amorphous", "start": 362, "end": 371, "id": 57, "annotation": null}, {"text": "silicon", "start": 372, "end": 379, "id": 58, "annotation": "BASEMAT"}, {"text": "to", "start": 380, "end": 382, "id": 59, "annotation": null}, {"text": "n", "start": 383, "end": 384, "id": 60, "annotation": "DOPANT"}, {"text": "-", "start": 385, "end": 386, "id": 61, "annotation": "DOPANT"}, {"text": "type", "start": 387, "end": 391, "id": 62, "annotation": "DOPANT"}, {"text": "crystalline", "start": 392, "end": 403, "id": 63, "annotation": null}, {"text": "silicon", "start": 404, "end": 411, "id": 64, "annotation": "BASEMAT"}, {"text": "is", "start": 412, "end": 414, "id": 65, "annotation": null}, {"text": "hindered", "start": 415, "end": 423, "id": 66, "annotation": null}, {"text": "by", "start": 424, "end": 426, "id": 67, "annotation": null}, {"text": "hole", "start": 427, "end": 431, "id": 68, "annotation": null}, {"text": "accumulation", "start": 432, "end": 444, "id": 69, "annotation": null}, {"text": "in", "start": 445, "end": 447, "id": 70, "annotation": null}, {"text": "the", "start": 448, "end": 451, "id": 71, "annotation": null}, {"text": "depletion", "start": 452, "end": 461, "id": 72, "annotation": null}, {"text": "region", "start": 462, "end": 468, "id": 73, "annotation": null}, {"text": "of", "start": 469, "end": 471, "id": 74, "annotation": null}, {"text": "the", "start": 472, "end": 475, "id": 75, "annotation": null}, {"text": "crystalline", "start": 476, "end": 487, "id": 76, "annotation": null}, {"text": "silicon", "start": 488, "end": 495, "id": 77, "annotation": null}, {"text": ".", "start": 496, "end": 497, "id": 78, "annotation": null}], [{"text": "The", "start": 498, "end": 501, "id": 79, "annotation": null}, {"text": "results", "start": 502, "end": 509, "id": 80, "annotation": null}, {"text": "are", "start": 510, "end": 513, "id": 81, "annotation": null}, {"text": "explained", "start": 514, "end": 523, "id": 82, "annotation": null}, {"text": "with", "start": 524, "end": 528, "id": 83, "annotation": null}, {"text": "a", "start": 529, "end": 530, "id": 84, "annotation": null}, {"text": "model", "start": 531, "end": 536, "id": 85, "annotation": null}, {"text": "based", "start": 537, "end": 542, "id": 86, "annotation": null}, {"text": "on", "start": 543, "end": 545, "id": 87, "annotation": null}, {"text": "electrostatic", "start": 546, "end": 559, "id": 88, "annotation": null}, {"text": "repulsion", "start": 560, "end": 569, "id": 89, "annotation": null}, {"text": "owing", "start": 570, "end": 575, "id": 90, "annotation": null}, {"text": "to", "start": 576, "end": 578, "id": 91, "annotation": null}, {"text": "hole", "start": 579, "end": 583, "id": 92, "annotation": null}, {"text": "build", "start": 584, "end": 589, "id": 93, "annotation": null}, {"text": "-", "start": 590, "end": 591, "id": 94, "annotation": null}, {"text": "up", "start": 592, "end": 594, "id": 95, "annotation": null}, {"text": "at", "start": 595, "end": 597, "id": 96, "annotation": null}, {"text": "the", "start": 598, "end": 601, "id": 97, "annotation": null}, {"text": "crystalline", "start": 602, "end": 613, "id": 98, "annotation": null}, {"text": "/", "start": 614, "end": 615, "id": 99, "annotation": null}, {"text": "amorphous", "start": 616, "end": 625, "id": 100, "annotation": null}, {"text": "interface", "start": 626, "end": 635, "id": 101, "annotation": null}, {"text": ".", "start": 636, "end": 637, "id": 102, "annotation": null}], [{"text": "We", "start": 638, "end": 640, "id": 103, "annotation": null}, {"text": "apply", "start": 641, "end": 646, "id": 104, "annotation": null}, {"text": "these", "start": 647, "end": 652, "id": 105, "annotation": null}, {"text": "results", "start": 653, "end": 660, "id": 106, "annotation": null}, {"text": "to", "start": 661, "end": 663, "id": 107, "annotation": null}, {"text": "other", "start": 664, "end": 669, "id": 108, "annotation": null}, {"text": "heterojunction", "start": 670, "end": 684, "id": 109, "annotation": null}, {"text": "solar", "start": 685, "end": 690, "id": 110, "annotation": null}, {"text": "cells", "start": 691, "end": 696, "id": 111, "annotation": null}, {"text": ".", "start": 697, "end": 698, "id": 112, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "In this study, we presented a comparative investigation on the electrical, optical, and structural properties of three types of transparent conductive oxides (TCOs), including tin-doped indium oxide (ITO), zinc-doped indium oxide (IZO) and hydrogen-doped indium oxide (In2O3:H or IO:H) films. Post-annealing treatment (195 \u00b0C, 30 min, and air ambient) was performed to optimize the material characteristics of the TCOs. Further, we evaluated the applications of ITO, IZO and IO:H films in silicon heterojunction (SHJ) solar cells. The effects of material characteristics of TCOs on the device performance were studied. It was found that the ITO films with a low resistivity contributed to the fill factor of the SHJ solar cells, while the IZO films showed obvious advantage in open-circuit voltage of the cells, with the best value of 0.736 V. Comparing with ITO and IZO films, the resulting IO:H films feature both highest carrier mobility (with the best value of 100 cm2/V\u00b7s) and band gap values after annealing, which contribute to the short-circuit current density of 39.18 mA/cm2. The SHJ solar cell with IO:H films as front TCO layer, showed a large scale (153.4 cm2) power conversion efficiency of 21.13%, showing an obvious enhancement compared to the ITO and IZO counterparts.", "meta": {"doi": "10.1016/j.vacuum.2017.09.011"}, "_input_hash": 167914894, "_task_hash": -1735324810, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "study", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": ",", "start": 14, "end": 15, "id": 3, "annotation": null}, {"text": "we", "start": 16, "end": 18, "id": 4, "annotation": null}, {"text": "presented", "start": 19, "end": 28, "id": 5, "annotation": null}, {"text": "a", "start": 29, "end": 30, "id": 6, "annotation": null}, {"text": "comparative", "start": 31, "end": 42, "id": 7, "annotation": null}, {"text": "investigation", "start": 43, "end": 56, "id": 8, "annotation": null}, {"text": "on", "start": 57, "end": 59, "id": 9, "annotation": null}, {"text": "the", "start": 60, "end": 63, "id": 10, "annotation": null}, {"text": "electrical", "start": 64, "end": 74, "id": 11, "annotation": null}, {"text": ",", "start": 75, "end": 76, "id": 12, "annotation": null}, {"text": "optical", "start": 77, "end": 84, "id": 13, "annotation": null}, {"text": ",", "start": 85, "end": 86, "id": 14, "annotation": null}, {"text": "and", "start": 87, "end": 90, "id": 15, "annotation": null}, {"text": "structural", "start": 91, "end": 101, "id": 16, "annotation": null}, {"text": "properties", "start": 102, "end": 112, "id": 17, "annotation": null}, {"text": "of", "start": 113, "end": 115, "id": 18, "annotation": null}, {"text": "three", "start": 116, "end": 121, "id": 19, "annotation": null}, {"text": "types", "start": 122, "end": 127, "id": 20, "annotation": null}, {"text": "of", "start": 128, "end": 130, "id": 21, "annotation": null}, {"text": "transparent", "start": 131, "end": 142, "id": 22, "annotation": null}, {"text": "conductive", "start": 143, "end": 153, "id": 23, "annotation": null}, {"text": "oxides", "start": 154, "end": 160, "id": 24, "annotation": null}, {"text": "(", "start": 161, "end": 162, "id": 25, "annotation": null}, {"text": "TCOs", "start": 163, "end": 167, "id": 26, "annotation": null}, {"text": ")", "start": 168, "end": 169, "id": 27, "annotation": null}, {"text": ",", "start": 170, "end": 171, "id": 28, "annotation": null}, {"text": "including", "start": 172, "end": 181, "id": 29, "annotation": null}, {"text": "tin", "start": 182, "end": 185, "id": 30, "annotation": "DOPANT"}, {"text": "-", "start": 186, "end": 187, "id": 31, "annotation": null}, {"text": "doped", "start": 188, "end": 193, "id": 32, "annotation": null}, {"text": "indium", "start": 194, "end": 200, "id": 33, "annotation": "BASEMAT"}, {"text": "oxide", "start": 201, "end": 206, "id": 34, "annotation": "BASEMAT"}, {"text": "(", "start": 207, "end": 208, "id": 35, "annotation": null}, {"text": "ITO", "start": 209, "end": 212, "id": 36, "annotation": null}, {"text": ")", "start": 213, "end": 214, "id": 37, "annotation": null}, {"text": ",", "start": 215, "end": 216, "id": 38, "annotation": null}, {"text": "zinc", "start": 217, "end": 221, "id": 39, "annotation": "DOPANT"}, {"text": "-", "start": 222, "end": 223, "id": 40, "annotation": null}, {"text": "doped", "start": 224, "end": 229, "id": 41, "annotation": null}, {"text": "indium", "start": 230, "end": 236, "id": 42, "annotation": "BASEMAT"}, {"text": "oxide", "start": 237, "end": 242, "id": 43, "annotation": "BASEMAT"}, {"text": "(", "start": 243, "end": 244, "id": 44, "annotation": null}, {"text": "IZO", "start": 245, "end": 248, "id": 45, "annotation": null}, {"text": ")", "start": 249, "end": 250, "id": 46, "annotation": null}, {"text": "and", "start": 251, "end": 254, "id": 47, "annotation": null}, {"text": "hydrogen", "start": 255, "end": 263, "id": 48, "annotation": "DOPANT"}, {"text": "-", "start": 264, "end": 265, "id": 49, "annotation": null}, {"text": "doped", "start": 266, "end": 271, "id": 50, "annotation": null}, {"text": "indium", "start": 272, "end": 278, "id": 51, "annotation": "BASEMAT"}, {"text": "oxide", "start": 279, "end": 284, "id": 52, "annotation": "BASEMAT"}, {"text": "(", "start": 285, "end": 286, "id": 53, "annotation": null}, {"text": "In2O3", "start": 287, "end": 292, "id": 54, "annotation": "BASEMAT"}, {"text": ":", "start": 293, "end": 294, "id": 55, "annotation": null}, {"text": "H", "start": 295, "end": 296, "id": 56, "annotation": "DOPANT"}, {"text": "or", "start": 297, "end": 299, "id": 57, "annotation": null}, {"text": "IO", "start": 300, "end": 302, "id": 58, "annotation": "BASEMAT"}, {"text": ":", "start": 303, "end": 304, "id": 59, "annotation": null}, {"text": "H", "start": 305, "end": 306, "id": 60, "annotation": "DOPANT"}, {"text": ")", "start": 307, "end": 308, "id": 61, "annotation": null}, {"text": "films", "start": 309, "end": 314, "id": 62, "annotation": null}, {"text": ".", "start": 315, "end": 316, "id": 63, "annotation": null}], [{"text": "Post", "start": 317, "end": 321, "id": 64, "annotation": null}, {"text": "-", "start": 322, "end": 323, "id": 65, "annotation": null}, {"text": "annealing", "start": 324, "end": 333, "id": 66, "annotation": null}, {"text": "treatment", "start": 334, "end": 343, "id": 67, "annotation": null}, {"text": "(", "start": 344, "end": 345, "id": 68, "annotation": null}, {"text": "195", "start": 346, "end": 349, "id": 69, "annotation": null}, {"text": "\u00b0", "start": 350, "end": 351, "id": 70, "annotation": null}, {"text": "C", "start": 352, "end": 353, "id": 71, "annotation": null}, {"text": ",", "start": 354, "end": 355, "id": 72, "annotation": null}, {"text": "30", "start": 356, "end": 358, "id": 73, "annotation": null}, {"text": "min", "start": 359, "end": 362, "id": 74, "annotation": null}, {"text": ",", "start": 363, "end": 364, "id": 75, "annotation": null}, {"text": "and", "start": 365, "end": 368, "id": 76, "annotation": null}, {"text": "air", "start": 369, "end": 372, "id": 77, "annotation": null}, {"text": "ambient", "start": 373, "end": 380, "id": 78, "annotation": null}, {"text": ")", "start": 381, "end": 382, "id": 79, "annotation": null}, {"text": "was", "start": 383, "end": 386, "id": 80, "annotation": null}, {"text": "performed", "start": 387, "end": 396, "id": 81, "annotation": null}, {"text": "to", "start": 397, "end": 399, "id": 82, "annotation": null}, {"text": "optimize", "start": 400, "end": 408, "id": 83, "annotation": null}, {"text": "the", "start": 409, "end": 412, "id": 84, "annotation": null}, {"text": "material", "start": 413, "end": 421, "id": 85, "annotation": null}, {"text": "characteristics", "start": 422, "end": 437, "id": 86, "annotation": null}, {"text": "of", "start": 438, "end": 440, "id": 87, "annotation": null}, {"text": "the", "start": 441, "end": 444, "id": 88, "annotation": null}, {"text": "TCOs", "start": 445, "end": 449, "id": 89, "annotation": null}, {"text": ".", "start": 450, "end": 451, "id": 90, "annotation": null}], [{"text": "Further", "start": 452, "end": 459, "id": 91, "annotation": null}, {"text": ",", "start": 460, "end": 461, "id": 92, "annotation": null}, {"text": "we", "start": 462, "end": 464, "id": 93, "annotation": null}, {"text": "evaluated", "start": 465, "end": 474, "id": 94, "annotation": null}, {"text": "the", "start": 475, "end": 478, "id": 95, "annotation": null}, {"text": "applications", "start": 479, "end": 491, "id": 96, "annotation": null}, {"text": "of", "start": 492, "end": 494, "id": 97, "annotation": null}, {"text": "ITO", "start": 495, "end": 498, "id": 98, "annotation": null}, {"text": ",", "start": 499, "end": 500, "id": 99, "annotation": null}, {"text": "IZO", "start": 501, "end": 504, "id": 100, "annotation": null}, {"text": "and", "start": 505, "end": 508, "id": 101, "annotation": null}, {"text": "IO", "start": 509, "end": 511, "id": 102, "annotation": "BASEMAT"}, {"text": ":", "start": 512, "end": 513, "id": 103, "annotation": null}, {"text": "H", "start": 514, "end": 515, "id": 104, "annotation": "DOPANT"}, {"text": "films", "start": 516, "end": 521, "id": 105, "annotation": null}, {"text": "in", "start": 522, "end": 524, "id": 106, "annotation": null}, {"text": "silicon", "start": 525, "end": 532, "id": 107, "annotation": null}, {"text": "heterojunction", "start": 533, "end": 547, "id": 108, "annotation": null}, {"text": "(", "start": 548, "end": 549, "id": 109, "annotation": null}, {"text": "SHJ", "start": 550, "end": 553, "id": 110, "annotation": null}, {"text": ")", "start": 554, "end": 555, "id": 111, "annotation": null}, {"text": "solar", "start": 556, "end": 561, "id": 112, "annotation": null}, {"text": "cells", "start": 562, "end": 567, "id": 113, "annotation": null}, {"text": ".", "start": 568, "end": 569, "id": 114, "annotation": null}], [{"text": "The", "start": 570, "end": 573, "id": 115, "annotation": null}, {"text": "effects", "start": 574, "end": 581, "id": 116, "annotation": null}, {"text": "of", "start": 582, "end": 584, "id": 117, "annotation": null}, {"text": "material", "start": 585, "end": 593, "id": 118, "annotation": null}, {"text": "characteristics", "start": 594, "end": 609, "id": 119, "annotation": null}, {"text": "of", "start": 610, "end": 612, "id": 120, "annotation": null}, {"text": "TCOs", "start": 613, "end": 617, "id": 121, "annotation": null}, {"text": "on", "start": 618, "end": 620, "id": 122, "annotation": null}, {"text": "the", "start": 621, "end": 624, "id": 123, "annotation": null}, {"text": "device", "start": 625, "end": 631, "id": 124, "annotation": null}, {"text": "performance", "start": 632, "end": 643, "id": 125, "annotation": null}, {"text": "were", "start": 644, "end": 648, "id": 126, "annotation": null}, {"text": "studied", "start": 649, "end": 656, "id": 127, "annotation": null}, {"text": ".", "start": 657, "end": 658, "id": 128, "annotation": null}], [{"text": "It", "start": 659, "end": 661, "id": 129, "annotation": null}, {"text": "was", "start": 662, "end": 665, "id": 130, "annotation": null}, {"text": "found", "start": 666, "end": 671, "id": 131, "annotation": null}, {"text": "that", "start": 672, "end": 676, "id": 132, "annotation": null}, {"text": "the", "start": 677, "end": 680, "id": 133, "annotation": null}, {"text": "ITO", "start": 681, "end": 684, "id": 134, "annotation": null}, {"text": "films", "start": 685, "end": 690, "id": 135, "annotation": null}, {"text": "with", "start": 691, "end": 695, "id": 136, "annotation": null}, {"text": "a", "start": 696, "end": 697, "id": 137, "annotation": null}, {"text": "low", "start": 698, "end": 701, "id": 138, "annotation": null}, {"text": "resistivity", "start": 702, "end": 713, "id": 139, "annotation": null}, {"text": "contributed", "start": 714, "end": 725, "id": 140, "annotation": null}, {"text": "to", "start": 726, "end": 728, "id": 141, "annotation": null}, {"text": "the", "start": 729, "end": 732, "id": 142, "annotation": null}, {"text": "fill", "start": 733, "end": 737, "id": 143, "annotation": null}, {"text": "factor", "start": 738, "end": 744, "id": 144, "annotation": null}, {"text": "of", "start": 745, "end": 747, "id": 145, "annotation": null}, {"text": "the", "start": 748, "end": 751, "id": 146, "annotation": null}, {"text": "SHJ", "start": 752, "end": 755, "id": 147, "annotation": null}, {"text": "solar", "start": 756, "end": 761, "id": 148, "annotation": null}, {"text": "cells", "start": 762, "end": 767, "id": 149, "annotation": null}, {"text": ",", "start": 768, "end": 769, "id": 150, "annotation": null}, {"text": "while", "start": 770, "end": 775, "id": 151, "annotation": null}, {"text": "the", "start": 776, "end": 779, "id": 152, "annotation": null}, {"text": "IZO", "start": 780, "end": 783, "id": 153, "annotation": null}, {"text": "films", "start": 784, "end": 789, "id": 154, "annotation": null}, {"text": "showed", "start": 790, "end": 796, "id": 155, "annotation": null}, {"text": "obvious", "start": 797, "end": 804, "id": 156, "annotation": null}, {"text": "advantage", "start": 805, "end": 814, "id": 157, "annotation": null}, {"text": "in", "start": 815, "end": 817, "id": 158, "annotation": null}, {"text": "open", "start": 818, "end": 822, "id": 159, "annotation": null}, {"text": "-", "start": 823, "end": 824, "id": 160, "annotation": null}, {"text": "circuit", "start": 825, "end": 832, "id": 161, "annotation": null}, {"text": "voltage", "start": 833, "end": 840, "id": 162, "annotation": null}, {"text": "of", "start": 841, "end": 843, "id": 163, "annotation": null}, {"text": "the", "start": 844, "end": 847, "id": 164, "annotation": null}, {"text": "cells", "start": 848, "end": 853, "id": 165, "annotation": null}, {"text": ",", "start": 854, "end": 855, "id": 166, "annotation": null}, {"text": "with", "start": 856, "end": 860, "id": 167, "annotation": null}, {"text": "the", "start": 861, "end": 864, "id": 168, "annotation": null}, {"text": "best", "start": 865, "end": 869, "id": 169, "annotation": null}, {"text": "value", "start": 870, "end": 875, "id": 170, "annotation": null}, {"text": "of", "start": 876, "end": 878, "id": 171, "annotation": null}, {"text": "0.736", "start": 879, "end": 884, "id": 172, "annotation": null}, {"text": "V.", "start": 885, "end": 887, "id": 173, "annotation": null}], [{"text": "Comparing", "start": 888, "end": 897, "id": 174, "annotation": null}, {"text": "with", "start": 898, "end": 902, "id": 175, "annotation": null}, {"text": "ITO", "start": 903, "end": 906, "id": 176, "annotation": null}, {"text": "and", "start": 907, "end": 910, "id": 177, "annotation": null}, {"text": "IZO", "start": 911, "end": 914, "id": 178, "annotation": null}, {"text": "films", "start": 915, "end": 920, "id": 179, "annotation": null}, {"text": ",", "start": 921, "end": 922, "id": 180, "annotation": null}, {"text": "the", "start": 923, "end": 926, "id": 181, "annotation": null}, {"text": "resulting", "start": 927, "end": 936, "id": 182, "annotation": null}, {"text": "IO", "start": 937, "end": 939, "id": 183, "annotation": "BASEMAT"}, {"text": ":", "start": 940, "end": 941, "id": 184, "annotation": null}, {"text": "H", "start": 942, "end": 943, "id": 185, "annotation": "DOPANT"}, {"text": "films", "start": 944, "end": 949, "id": 186, "annotation": null}, {"text": "feature", "start": 950, "end": 957, "id": 187, "annotation": null}, {"text": "both", "start": 958, "end": 962, "id": 188, "annotation": null}, {"text": "highest", "start": 963, "end": 970, "id": 189, "annotation": null}, {"text": "carrier", "start": 971, "end": 978, "id": 190, "annotation": null}, {"text": "mobility", "start": 979, "end": 987, "id": 191, "annotation": null}, {"text": "(", "start": 988, "end": 989, "id": 192, "annotation": null}, {"text": "with", "start": 990, "end": 994, "id": 193, "annotation": null}, {"text": "the", "start": 995, "end": 998, "id": 194, "annotation": null}, {"text": "best", "start": 999, "end": 1003, "id": 195, "annotation": null}, {"text": "value", "start": 1004, "end": 1009, "id": 196, "annotation": null}, {"text": "of", "start": 1010, "end": 1012, "id": 197, "annotation": null}, {"text": "100", "start": 1013, "end": 1016, "id": 198, "annotation": null}, {"text": "cm2", "start": 1017, "end": 1020, "id": 199, "annotation": null}, {"text": "/", "start": 1021, "end": 1022, "id": 200, "annotation": null}, {"text": "V\u00b7s", "start": 1023, "end": 1026, "id": 201, "annotation": null}, {"text": ")", "start": 1027, "end": 1028, "id": 202, "annotation": null}, {"text": "and", "start": 1029, "end": 1032, "id": 203, "annotation": null}, {"text": "band", "start": 1033, "end": 1037, "id": 204, "annotation": null}, {"text": "gap", "start": 1038, "end": 1041, "id": 205, "annotation": null}, {"text": "values", "start": 1042, "end": 1048, "id": 206, "annotation": null}, {"text": "after", "start": 1049, "end": 1054, "id": 207, "annotation": null}, {"text": "annealing", "start": 1055, "end": 1064, "id": 208, "annotation": null}, {"text": ",", "start": 1065, "end": 1066, "id": 209, "annotation": null}, {"text": "which", "start": 1067, "end": 1072, "id": 210, "annotation": null}, {"text": "contribute", "start": 1073, "end": 1083, "id": 211, "annotation": null}, {"text": "to", "start": 1084, "end": 1086, "id": 212, "annotation": null}, {"text": "the", "start": 1087, "end": 1090, "id": 213, "annotation": null}, {"text": "short", "start": 1091, "end": 1096, "id": 214, "annotation": null}, {"text": "-", "start": 1097, "end": 1098, "id": 215, "annotation": null}, {"text": "circuit", "start": 1099, "end": 1106, "id": 216, "annotation": null}, {"text": "current", "start": 1107, "end": 1114, "id": 217, "annotation": null}, {"text": "density", "start": 1115, "end": 1122, "id": 218, "annotation": null}, {"text": "of", "start": 1123, "end": 1125, "id": 219, "annotation": null}, {"text": "39.18", "start": 1126, "end": 1131, "id": 220, "annotation": null}, {"text": "mA", "start": 1132, "end": 1134, "id": 221, "annotation": null}, {"text": "/", "start": 1135, "end": 1136, "id": 222, "annotation": null}, {"text": "cm2", "start": 1137, "end": 1140, "id": 223, "annotation": null}, {"text": ".", "start": 1141, "end": 1142, "id": 224, "annotation": null}], [{"text": "The", "start": 1143, "end": 1146, "id": 225, "annotation": null}, {"text": "SHJ", "start": 1147, "end": 1150, "id": 226, "annotation": null}, {"text": "solar", "start": 1151, "end": 1156, "id": 227, "annotation": null}, {"text": "cell", "start": 1157, "end": 1161, "id": 228, "annotation": null}, {"text": "with", "start": 1162, "end": 1166, "id": 229, "annotation": null}, {"text": "IO", "start": 1167, "end": 1169, "id": 230, "annotation": "BASEMAT"}, {"text": ":", "start": 1170, "end": 1171, "id": 231, "annotation": null}, {"text": "H", "start": 1172, "end": 1173, "id": 232, "annotation": "DOPANT"}, {"text": "films", "start": 1174, "end": 1179, "id": 233, "annotation": null}, {"text": "as", "start": 1180, "end": 1182, "id": 234, "annotation": null}, {"text": "front", "start": 1183, "end": 1188, "id": 235, "annotation": null}, {"text": "TCO", "start": 1189, "end": 1192, "id": 236, "annotation": null}, {"text": "layer", "start": 1193, "end": 1198, "id": 237, "annotation": null}, {"text": ",", "start": 1199, "end": 1200, "id": 238, "annotation": null}, {"text": "showed", "start": 1201, "end": 1207, "id": 239, "annotation": null}, {"text": "a", "start": 1208, "end": 1209, "id": 240, "annotation": null}, {"text": "large", "start": 1210, "end": 1215, "id": 241, "annotation": null}, {"text": "scale", "start": 1216, "end": 1221, "id": 242, "annotation": null}, {"text": "(", "start": 1222, "end": 1223, "id": 243, "annotation": null}, {"text": "153.4", "start": 1224, "end": 1229, "id": 244, "annotation": null}, {"text": "cm2", "start": 1230, "end": 1233, "id": 245, "annotation": null}, {"text": ")", "start": 1234, "end": 1235, "id": 246, "annotation": null}, {"text": "power", "start": 1236, "end": 1241, "id": 247, "annotation": null}, {"text": "conversion", "start": 1242, "end": 1252, "id": 248, "annotation": null}, {"text": "efficiency", "start": 1253, "end": 1263, "id": 249, "annotation": null}, {"text": "of", "start": 1264, "end": 1266, "id": 250, "annotation": null}, {"text": "21.13", "start": 1267, "end": 1272, "id": 251, "annotation": null}, {"text": "%", "start": 1273, "end": 1274, "id": 252, "annotation": null}, {"text": ",", "start": 1275, "end": 1276, "id": 253, "annotation": null}, {"text": "showing", "start": 1277, "end": 1284, "id": 254, "annotation": null}, {"text": "an", "start": 1285, "end": 1287, "id": 255, "annotation": null}, {"text": "obvious", "start": 1288, "end": 1295, "id": 256, "annotation": null}, {"text": "enhancement", "start": 1296, "end": 1307, "id": 257, "annotation": null}, {"text": "compared", "start": 1308, "end": 1316, "id": 258, "annotation": null}, {"text": "to", "start": 1317, "end": 1319, "id": 259, "annotation": null}, {"text": "the", "start": 1320, "end": 1323, "id": 260, "annotation": null}, {"text": "ITO", "start": 1324, "end": 1327, "id": 261, "annotation": null}, {"text": "and", "start": 1328, "end": 1331, "id": 262, "annotation": null}, {"text": "IZO", "start": 1332, "end": 1335, "id": 263, "annotation": null}, {"text": "counterparts", "start": 1336, "end": 1348, "id": 264, "annotation": null}, {"text": ".", "start": 1349, "end": 1350, "id": 265, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "\u00a9 2016 The Authors. Progress in Photovoltaics: Research and Applications published by John Wiley & Sons, Ltd. Cu2ZnSnS4 (CZTS) nanoparticle inks synthesized by the injection of metal precursors into a hot surfactant offer an attractive route to the fabrication of Earth-abundant Cu2ZnSn(S,Se)4 (CZTSSe) thin film photovoltaic absorber layers. In this work it is shown that the chemical reaction conditions used to produce CZTS nanoparticle inks have a fundamental influence on the performance of thin film solar cells made by converting the nanoparticles to large CZTSSe grains in a selenium rich atmosphere and subsequent cell completion. The reaction time, temperature and cooling rate of the nanoparticle fabrication process are found to affect doping level, secondary phases and crystal structure respectively. Specifically, prolonging the reaction offers a new route to increase the concentration of acceptor levels in CZTSSe photovoltaic absorbers and results in higher device efficiency through an increase in the open circuit voltage and a reduction in parasitic resistance. Quenching the reaction by rapid cooling introduces a wurtzite crystal structure in the nanoparticles which significantly degrades the device performance, while elevating the reaction temperature of the nanoparticle synthesis introduces a secondary phase Cu2SnS3 in the nanoparticles and results in the highest cell efficiency of 6.26%. This is correlated with increased doping in the CZTSSe absorber and the results demonstrate a route to controlling this parameter. The chemical reaction conditions used to fabricate Cu2ZnSnS4 nanoparticle inks have a profound influence on the performance of completed Cu2ZnSn(S,Se)4 thin film solar cells. Prolonging the reaction provides a means to increase the doping in the devices while the existence of wurtzite crystal structure significantly degrades the device performance. The highest efficiency is accompanied by secondary phase Cu2SnS3 which results in the smallest voltage deficit relative to the energy band gap.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Progress", "start": 20, "end": 28, "annotation": null}, {"text": "in", "start": 29, "end": 31, "annotation": null}, {"text": "Photovoltaics", "start": 32, "end": 45, "annotation": null}, {"text": ":", "start": 45, "end": 46, "annotation": null}, {"text": "Research", "start": 47, "end": 55, "annotation": null}, {"text": "and", "start": 56, "end": 59, "annotation": null}, {"text": "Applications", "start": 60, "end": 72, "annotation": null}, {"text": "published", "start": 73, "end": 82, "annotation": null}, {"text": "by", "start": 83, "end": 85, "annotation": null}, {"text": "John", "start": 86, "end": 90, "annotation": null}, {"text": "Wiley", "start": 91, "end": 96, "annotation": null}, {"text": "&", "start": 97, "end": 98, "annotation": null}, {"text": "Sons", "start": 99, "end": 103, "annotation": null}, {"text": ",", "start": 103, "end": 104, "annotation": null}, {"text": "Ltd.", "start": 105, "end": 109, "annotation": null}, {"text": "Cu2ZnSnS4", "start": 110, "end": 119, "annotation": null}, {"text": "(", "start": 120, "end": 121, "annotation": null}, {"text": "CZTS", "start": 121, "end": 125, "annotation": null}, {"text": ")", "start": 125, "end": 126, "annotation": null}, {"text": "nanoparticle", "start": 127, "end": 139, "annotation": null}, {"text": "inks", "start": 140, "end": 144, "annotation": null}, {"text": "synthesized", "start": 145, "end": 156, "annotation": null}, {"text": "by", "start": 157, "end": 159, "annotation": null}, {"text": "the", "start": 160, "end": 163, "annotation": null}, {"text": "injection", "start": 164, "end": 173, "annotation": null}, {"text": "of", "start": 174, "end": 176, "annotation": null}, {"text": "metal", "start": 177, "end": 182, "annotation": null}, {"text": "precursors", "start": 183, "end": 193, "annotation": null}, {"text": "into", "start": 194, "end": 198, "annotation": null}, {"text": "a", "start": 199, "end": 200, "annotation": null}, {"text": "hot", "start": 201, "end": 204, "annotation": null}, {"text": "surfactant", "start": 205, "end": 215, "annotation": null}, {"text": "offer", "start": 216, "end": 221, "annotation": null}, {"text": "an", "start": 222, "end": 224, "annotation": null}, {"text": "attractive", "start": 225, "end": 235, "annotation": null}, {"text": "route", "start": 236, "end": 241, "annotation": null}, {"text": "to", "start": 242, "end": 244, "annotation": null}, {"text": "the", "start": 245, "end": 248, "annotation": null}, {"text": "fabrication", "start": 249, "end": 260, "annotation": null}, {"text": "of", "start": 261, "end": 263, "annotation": null}, {"text": "Earth", "start": 264, "end": 269, "annotation": null}, {"text": "-", "start": 269, "end": 270, "annotation": null}, {"text": "abundant", "start": 270, "end": 278, "annotation": null}, {"text": "Cu2ZnSn(S,Se)4", "start": 279, "end": 293, "annotation": null}, {"text": "(", "start": 294, "end": 295, "annotation": null}, {"text": "CZTSSe", "start": 295, "end": 301, "annotation": null}, {"text": ")", "start": 301, "end": 302, "annotation": null}, {"text": "thin", "start": 303, "end": 307, "annotation": null}, {"text": "film", "start": 308, "end": 312, "annotation": null}, {"text": "photovoltaic", "start": 313, "end": 325, "annotation": null}, {"text": "absorber", "start": 326, "end": 334, "annotation": null}, {"text": "layers", "start": 335, "end": 341, "annotation": null}, {"text": ".", "start": 341, "end": 342, "annotation": null}], [{"text": "In", "start": 343, "end": 345, "annotation": null}, {"text": "this", "start": 346, "end": 350, "annotation": null}, {"text": "work", "start": 351, "end": 355, "annotation": null}, {"text": "it", "start": 356, "end": 358, "annotation": null}, {"text": "is", "start": 359, "end": 361, "annotation": null}, {"text": "shown", "start": 362, "end": 367, "annotation": null}, {"text": "that", "start": 368, "end": 372, "annotation": null}, {"text": "the", "start": 373, "end": 376, "annotation": null}, {"text": "chemical", "start": 377, "end": 385, "annotation": null}, {"text": "reaction", "start": 386, "end": 394, "annotation": null}, {"text": "conditions", "start": 395, "end": 405, "annotation": null}, {"text": "used", "start": 406, "end": 410, "annotation": null}, {"text": "to", "start": 411, "end": 413, "annotation": null}, {"text": "produce", "start": 414, "end": 421, "annotation": null}, {"text": "CZTS", "start": 422, "end": 426, "annotation": null}, {"text": "nanoparticle", "start": 427, "end": 439, "annotation": null}, {"text": "inks", "start": 440, "end": 444, "annotation": null}, {"text": "have", "start": 445, "end": 449, "annotation": null}, {"text": "a", "start": 450, "end": 451, "annotation": null}, {"text": "fundamental", "start": 452, "end": 463, "annotation": null}, {"text": "influence", "start": 464, "end": 473, "annotation": null}, {"text": "on", "start": 474, "end": 476, "annotation": null}, {"text": "the", "start": 477, "end": 480, "annotation": null}, {"text": "performance", "start": 481, "end": 492, "annotation": null}, {"text": "of", "start": 493, "end": 495, "annotation": null}, {"text": "thin", "start": 496, "end": 500, "annotation": null}, {"text": "film", "start": 501, "end": 505, "annotation": null}, {"text": "solar", "start": 506, "end": 511, "annotation": null}, {"text": "cells", "start": 512, "end": 517, "annotation": null}, {"text": "made", "start": 518, "end": 522, "annotation": null}, {"text": "by", "start": 523, "end": 525, "annotation": null}, {"text": "converting", "start": 526, "end": 536, "annotation": null}, {"text": "the", "start": 537, "end": 540, "annotation": null}, {"text": "nanoparticles", "start": 541, "end": 554, "annotation": null}, {"text": "to", "start": 555, "end": 557, "annotation": null}, {"text": "large", "start": 558, "end": 563, "annotation": null}, {"text": "CZTSSe", "start": 564, "end": 570, "annotation": null}, {"text": "grains", "start": 571, "end": 577, "annotation": null}, {"text": "in", "start": 578, "end": 580, "annotation": null}, {"text": "a", "start": 581, "end": 582, "annotation": null}, {"text": "selenium", "start": 583, "end": 591, "annotation": null}, {"text": "rich", "start": 592, "end": 596, "annotation": null}, {"text": "atmosphere", "start": 597, "end": 607, "annotation": null}, {"text": "and", "start": 608, "end": 611, "annotation": null}, {"text": "subsequent", "start": 612, "end": 622, "annotation": null}, {"text": "cell", "start": 623, "end": 627, "annotation": null}, {"text": "completion", "start": 628, "end": 638, "annotation": null}, {"text": ".", "start": 638, "end": 639, "annotation": null}], [{"text": "The", "start": 640, "end": 643, "annotation": null}, {"text": "reaction", "start": 644, "end": 652, "annotation": null}, {"text": "time", "start": 653, "end": 657, "annotation": null}, {"text": ",", "start": 657, "end": 658, "annotation": null}, {"text": "temperature", "start": 659, "end": 670, "annotation": null}, {"text": "and", "start": 671, "end": 674, "annotation": null}, {"text": "cooling", "start": 675, "end": 682, "annotation": null}, {"text": "rate", "start": 683, "end": 687, "annotation": null}, {"text": "of", "start": 688, "end": 690, "annotation": null}, {"text": "the", "start": 691, "end": 694, "annotation": null}, {"text": "nanoparticle", "start": 695, "end": 707, "annotation": null}, {"text": "fabrication", "start": 708, "end": 719, "annotation": null}, {"text": "process", "start": 720, "end": 727, "annotation": null}, {"text": "are", "start": 728, "end": 731, "annotation": null}, {"text": "found", "start": 732, "end": 737, "annotation": null}, {"text": "to", "start": 738, "end": 740, "annotation": null}, {"text": "affect", "start": 741, "end": 747, "annotation": null}, {"text": "doping", "start": 748, "end": 754, "annotation": null}, {"text": "level", "start": 755, "end": 760, "annotation": null}, {"text": ",", "start": 760, "end": 761, "annotation": null}, {"text": "secondary", "start": 762, "end": 771, "annotation": null}, {"text": "phases", "start": 772, "end": 778, "annotation": null}, {"text": "and", "start": 779, "end": 782, "annotation": null}, {"text": "crystal", "start": 783, "end": 790, "annotation": null}, {"text": "structure", "start": 791, "end": 800, "annotation": null}, {"text": "respectively", "start": 801, "end": 813, "annotation": null}, {"text": ".", "start": 813, "end": 814, "annotation": null}], [{"text": "Specifically", "start": 815, "end": 827, "annotation": null}, {"text": ",", "start": 827, "end": 828, "annotation": null}, {"text": "prolonging", "start": 829, "end": 839, "annotation": null}, {"text": "the", "start": 840, "end": 843, "annotation": null}, {"text": "reaction", "start": 844, "end": 852, "annotation": null}, {"text": "offers", "start": 853, "end": 859, "annotation": null}, {"text": "a", "start": 860, "end": 861, "annotation": null}, {"text": "new", "start": 862, "end": 865, "annotation": null}, {"text": "route", "start": 866, "end": 871, "annotation": null}, {"text": "to", "start": 872, "end": 874, "annotation": null}, {"text": "increase", "start": 875, "end": 883, "annotation": null}, {"text": "the", "start": 884, "end": 887, "annotation": null}, {"text": "concentration", "start": 888, "end": 901, "annotation": null}, {"text": "of", "start": 902, "end": 904, "annotation": null}, {"text": "acceptor", "start": 905, "end": 913, "annotation": null}, {"text": "levels", "start": 914, "end": 920, "annotation": null}, {"text": "in", "start": 921, "end": 923, "annotation": null}, {"text": "CZTSSe", "start": 924, "end": 930, "annotation": null}, {"text": "photovoltaic", "start": 931, "end": 943, "annotation": null}, {"text": "absorbers", "start": 944, "end": 953, "annotation": null}, {"text": "and", "start": 954, "end": 957, "annotation": null}, {"text": "results", "start": 958, "end": 965, "annotation": null}, {"text": "in", "start": 966, "end": 968, "annotation": null}, {"text": "higher", "start": 969, "end": 975, "annotation": null}, {"text": "device", "start": 976, "end": 982, "annotation": null}, {"text": "efficiency", "start": 983, "end": 993, "annotation": null}, {"text": "through", "start": 994, "end": 1001, "annotation": null}, {"text": "an", "start": 1002, "end": 1004, "annotation": null}, {"text": "increase", "start": 1005, "end": 1013, "annotation": null}, {"text": "in", "start": 1014, "end": 1016, "annotation": null}, {"text": "the", "start": 1017, "end": 1020, "annotation": null}, {"text": "open", "start": 1021, "end": 1025, "annotation": null}, {"text": "circuit", "start": 1026, "end": 1033, "annotation": null}, {"text": "voltage", "start": 1034, "end": 1041, "annotation": null}, {"text": "and", "start": 1042, "end": 1045, "annotation": null}, {"text": "a", "start": 1046, "end": 1047, "annotation": null}, {"text": "reduction", "start": 1048, "end": 1057, "annotation": null}, {"text": "in", "start": 1058, "end": 1060, "annotation": null}, {"text": "parasitic", "start": 1061, "end": 1070, "annotation": null}, {"text": "resistance", "start": 1071, "end": 1081, "annotation": null}, {"text": ".", "start": 1081, "end": 1082, "annotation": null}], [{"text": "Quenching", "start": 1083, "end": 1092, "annotation": null}, {"text": "the", "start": 1093, "end": 1096, "annotation": null}, {"text": "reaction", "start": 1097, "end": 1105, "annotation": null}, {"text": "by", "start": 1106, "end": 1108, "annotation": null}, {"text": "rapid", "start": 1109, "end": 1114, "annotation": null}, {"text": "cooling", "start": 1115, "end": 1122, "annotation": null}, {"text": "introduces", "start": 1123, "end": 1133, "annotation": null}, {"text": "a", "start": 1134, "end": 1135, "annotation": null}, {"text": "wurtzite", "start": 1136, "end": 1144, "annotation": null}, {"text": "crystal", "start": 1145, "end": 1152, "annotation": null}, {"text": "structure", "start": 1153, "end": 1162, "annotation": null}, {"text": "in", "start": 1163, "end": 1165, "annotation": null}, {"text": "the", "start": 1166, "end": 1169, "annotation": null}, {"text": "nanoparticles", "start": 1170, "end": 1183, "annotation": null}, {"text": "which", "start": 1184, "end": 1189, "annotation": null}, {"text": "significantly", "start": 1190, "end": 1203, "annotation": null}, {"text": "degrades", "start": 1204, "end": 1212, "annotation": null}, {"text": "the", "start": 1213, "end": 1216, "annotation": null}, {"text": "device", "start": 1217, "end": 1223, "annotation": null}, {"text": "performance", "start": 1224, "end": 1235, "annotation": null}, {"text": ",", "start": 1235, "end": 1236, "annotation": null}, {"text": "while", "start": 1237, "end": 1242, "annotation": null}, {"text": "elevating", "start": 1243, "end": 1252, "annotation": null}, {"text": "the", "start": 1253, "end": 1256, "annotation": null}, {"text": "reaction", "start": 1257, "end": 1265, "annotation": null}, {"text": "temperature", "start": 1266, "end": 1277, "annotation": null}, {"text": "of", "start": 1278, "end": 1280, "annotation": null}, {"text": "the", "start": 1281, "end": 1284, "annotation": null}, {"text": "nanoparticle", "start": 1285, "end": 1297, "annotation": null}, {"text": "synthesis", "start": 1298, "end": 1307, "annotation": null}, {"text": "introduces", "start": 1308, "end": 1318, "annotation": null}, {"text": "a", "start": 1319, "end": 1320, "annotation": null}, {"text": "secondary", "start": 1321, "end": 1330, "annotation": null}, {"text": "phase", "start": 1331, "end": 1336, "annotation": null}, {"text": "Cu2SnS3", "start": 1337, "end": 1344, "annotation": null}, {"text": "in", "start": 1345, "end": 1347, "annotation": null}, {"text": "the", "start": 1348, "end": 1351, "annotation": null}, {"text": "nanoparticles", "start": 1352, "end": 1365, "annotation": null}, {"text": "and", "start": 1366, "end": 1369, "annotation": null}, {"text": "results", "start": 1370, "end": 1377, "annotation": null}, {"text": "in", "start": 1378, "end": 1380, "annotation": null}, {"text": "the", "start": 1381, "end": 1384, "annotation": null}, {"text": "highest", "start": 1385, "end": 1392, "annotation": null}, {"text": "cell", "start": 1393, "end": 1397, "annotation": null}, {"text": "efficiency", "start": 1398, "end": 1408, "annotation": null}, {"text": "of", "start": 1409, "end": 1411, "annotation": null}, {"text": "6.26", "start": 1412, "end": 1416, "annotation": null}, {"text": "%", "start": 1416, "end": 1417, "annotation": null}, {"text": ".", "start": 1417, "end": 1418, "annotation": null}], [{"text": "This", "start": 1419, "end": 1423, "annotation": null}, {"text": "is", "start": 1424, "end": 1426, "annotation": null}, {"text": "correlated", "start": 1427, "end": 1437, "annotation": null}, {"text": "with", "start": 1438, "end": 1442, "annotation": null}, {"text": "increased", "start": 1443, "end": 1452, "annotation": null}, {"text": "doping", "start": 1453, "end": 1459, "annotation": null}, {"text": "in", "start": 1460, "end": 1462, "annotation": null}, {"text": "the", "start": 1463, "end": 1466, "annotation": null}, {"text": "CZTSSe", "start": 1467, "end": 1473, "annotation": "BASEMAT"}, {"text": "absorber", "start": 1474, "end": 1482, "annotation": "BASEMAT"}, {"text": "and", "start": 1483, "end": 1486, "annotation": null}, {"text": "the", "start": 1487, "end": 1490, "annotation": null}, {"text": "results", "start": 1491, "end": 1498, "annotation": null}, {"text": "demonstrate", "start": 1499, "end": 1510, "annotation": null}, {"text": "a", "start": 1511, "end": 1512, "annotation": null}, {"text": "route", "start": 1513, "end": 1518, "annotation": null}, {"text": "to", "start": 1519, "end": 1521, "annotation": null}, {"text": "controlling", "start": 1522, "end": 1533, "annotation": null}, {"text": "this", "start": 1534, "end": 1538, "annotation": null}, {"text": "parameter", "start": 1539, "end": 1548, "annotation": null}, {"text": ".", "start": 1548, "end": 1549, "annotation": null}], [{"text": "The", "start": 1550, "end": 1553, "annotation": null}, {"text": "chemical", "start": 1554, "end": 1562, "annotation": null}, {"text": "reaction", "start": 1563, "end": 1571, "annotation": null}, {"text": "conditions", "start": 1572, "end": 1582, "annotation": null}, {"text": "used", "start": 1583, "end": 1587, "annotation": null}, {"text": "to", "start": 1588, "end": 1590, "annotation": null}, {"text": "fabricate", "start": 1591, "end": 1600, "annotation": null}, {"text": "Cu2ZnSnS4", "start": 1601, "end": 1610, "annotation": null}, {"text": "nanoparticle", "start": 1611, "end": 1623, "annotation": null}, {"text": "inks", "start": 1624, "end": 1628, "annotation": null}, {"text": "have", "start": 1629, "end": 1633, "annotation": null}, {"text": "a", "start": 1634, "end": 1635, "annotation": null}, {"text": "profound", "start": 1636, "end": 1644, "annotation": null}, {"text": "influence", "start": 1645, "end": 1654, "annotation": null}, {"text": "on", "start": 1655, "end": 1657, "annotation": null}, {"text": "the", "start": 1658, "end": 1661, "annotation": null}, {"text": "performance", "start": 1662, "end": 1673, "annotation": null}, {"text": "of", "start": 1674, "end": 1676, "annotation": null}, {"text": "completed", "start": 1677, "end": 1686, "annotation": null}, {"text": "Cu2ZnSn(S,Se)4", "start": 1687, "end": 1701, "annotation": null}, {"text": "thin", "start": 1702, "end": 1706, "annotation": null}, {"text": "film", "start": 1707, "end": 1711, "annotation": null}, {"text": "solar", "start": 1712, "end": 1717, "annotation": null}, {"text": "cells", "start": 1718, "end": 1723, "annotation": null}, {"text": ".", "start": 1723, "end": 1724, "annotation": null}], [{"text": "Prolonging", "start": 1725, "end": 1735, "annotation": null}, {"text": "the", "start": 1736, "end": 1739, "annotation": null}, {"text": "reaction", "start": 1740, "end": 1748, "annotation": null}, {"text": "provides", "start": 1749, "end": 1757, "annotation": null}, {"text": "a", "start": 1758, "end": 1759, "annotation": null}, {"text": "means", "start": 1760, "end": 1765, "annotation": null}, {"text": "to", "start": 1766, "end": 1768, "annotation": null}, {"text": "increase", "start": 1769, "end": 1777, "annotation": null}, {"text": "the", "start": 1778, "end": 1781, "annotation": null}, {"text": "doping", "start": 1782, "end": 1788, "annotation": null}, {"text": "in", "start": 1789, "end": 1791, "annotation": null}, {"text": "the", "start": 1792, "end": 1795, "annotation": null}, {"text": "devices", "start": 1796, "end": 1803, "annotation": "BASEMAT"}, {"text": "while", "start": 1804, "end": 1809, "annotation": null}, {"text": "the", "start": 1810, "end": 1813, "annotation": null}, {"text": "existence", "start": 1814, "end": 1823, "annotation": null}, {"text": "of", "start": 1824, "end": 1826, "annotation": null}, {"text": "wurtzite", "start": 1827, "end": 1835, "annotation": null}, {"text": "crystal", "start": 1836, "end": 1843, "annotation": null}, {"text": "structure", "start": 1844, "end": 1853, "annotation": null}, {"text": "significantly", "start": 1854, "end": 1867, "annotation": null}, {"text": "degrades", "start": 1868, "end": 1876, "annotation": null}, {"text": "the", "start": 1877, "end": 1880, "annotation": null}, {"text": "device", "start": 1881, "end": 1887, "annotation": null}, {"text": "performance", "start": 1888, "end": 1899, "annotation": null}, {"text": ".", "start": 1899, "end": 1900, "annotation": null}], [{"text": "The", "start": 1901, "end": 1904, "annotation": null}, {"text": "highest", "start": 1905, "end": 1912, "annotation": null}, {"text": "efficiency", "start": 1913, "end": 1923, "annotation": null}, {"text": "is", "start": 1924, "end": 1926, "annotation": null}, {"text": "accompanied", "start": 1927, "end": 1938, "annotation": null}, {"text": "by", "start": 1939, "end": 1941, "annotation": null}, {"text": "secondary", "start": 1942, "end": 1951, "annotation": null}, {"text": "phase", "start": 1952, "end": 1957, "annotation": null}, {"text": "Cu2SnS3", "start": 1958, "end": 1965, "annotation": null}, {"text": "which", "start": 1966, "end": 1971, "annotation": null}, {"text": "results", "start": 1972, "end": 1979, "annotation": null}, {"text": "in", "start": 1980, "end": 1982, "annotation": null}, {"text": "the", "start": 1983, "end": 1986, "annotation": null}, {"text": "smallest", "start": 1987, "end": 1995, "annotation": null}, {"text": "voltage", "start": 1996, "end": 2003, "annotation": null}, {"text": "deficit", "start": 2004, "end": 2011, "annotation": null}, {"text": "relative", "start": 2012, "end": 2020, "annotation": null}, {"text": "to", "start": 2021, "end": 2023, "annotation": null}, {"text": "the", "start": 2024, "end": 2027, "annotation": null}, {"text": "energy", "start": 2028, "end": 2034, "annotation": null}, {"text": "band", "start": 2035, "end": 2039, "annotation": null}, {"text": "gap", "start": 2040, "end": 2043, "annotation": null}, {"text": ".", "start": 2043, "end": 2044, "annotation": null}]]} +{"remark": "doping_annt3", "text": "\u00a9 2016 The Authors. Progress in Photovoltaics: Research and Applications published by John Wiley & Sons, Ltd. Cu2ZnSnS4 (CZTS) nanoparticle inks synthesized by the injection of metal precursors into a hot surfactant offer an attractive route to the fabrication of Earth-abundant Cu2ZnSn(S,Se)4 (CZTSSe) thin film photovoltaic absorber layers. In this work it is shown that the chemical reaction conditions used to produce CZTS nanoparticle inks have a fundamental influence on the performance of thin film solar cells made by converting the nanoparticles to large CZTSSe grains in a selenium rich atmosphere and subsequent cell completion. The reaction time, temperature and cooling rate of the nanoparticle fabrication process are found to affect doping level, secondary phases and crystal structure respectively. Specifically, prolonging the reaction offers a new route to increase the concentration of acceptor levels in CZTSSe photovoltaic absorbers and results in higher device efficiency through an increase in the open circuit voltage and a reduction in parasitic resistance. Quenching the reaction by rapid cooling introduces a wurtzite crystal structure in the nanoparticles which significantly degrades the device performance, while elevating the reaction temperature of the nanoparticle synthesis introduces a secondary phase Cu2SnS3 in the nanoparticles and results in the highest cell efficiency of 6.26%. This is correlated with increased doping in the CZTSSe absorber and the results demonstrate a route to controlling this parameter. The chemical reaction conditions used to fabricate Cu2ZnSnS4 nanoparticle inks have a profound influence on the performance of completed Cu2ZnSn(S,Se)4 thin film solar cells. Prolonging the reaction provides a means to increase the doping in the devices while the existence of wurtzite crystal structure significantly degrades the device performance. The highest efficiency is accompanied by secondary phase Cu2SnS3 which results in the smallest voltage deficit relative to the energy band gap.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Progress", "start": 20, "end": 28, "annotation": null}, {"text": "in", "start": 29, "end": 31, "annotation": null}, {"text": "Photovoltaics", "start": 32, "end": 45, "annotation": null}, {"text": ":", "start": 45, "end": 46, "annotation": null}, {"text": "Research", "start": 47, "end": 55, "annotation": null}, {"text": "and", "start": 56, "end": 59, "annotation": null}, {"text": "Applications", "start": 60, "end": 72, "annotation": null}, {"text": "published", "start": 73, "end": 82, "annotation": null}, {"text": "by", "start": 83, "end": 85, "annotation": null}, {"text": "John", "start": 86, "end": 90, "annotation": null}, {"text": "Wiley", "start": 91, "end": 96, "annotation": null}, {"text": "&", "start": 97, "end": 98, "annotation": null}, {"text": "Sons", "start": 99, "end": 103, "annotation": null}, {"text": ",", "start": 103, "end": 104, "annotation": null}, {"text": "Ltd.", "start": 105, "end": 109, "annotation": null}, {"text": "Cu2ZnSnS4", "start": 110, "end": 119, "annotation": null}, {"text": "(", "start": 120, "end": 121, "annotation": null}, {"text": "CZTS", "start": 121, "end": 125, "annotation": null}, {"text": ")", "start": 125, "end": 126, "annotation": null}, {"text": "nanoparticle", "start": 127, "end": 139, "annotation": null}, {"text": "inks", "start": 140, "end": 144, "annotation": null}, {"text": "synthesized", "start": 145, "end": 156, "annotation": null}, {"text": "by", "start": 157, "end": 159, "annotation": null}, {"text": "the", "start": 160, "end": 163, "annotation": null}, {"text": "injection", "start": 164, "end": 173, "annotation": null}, {"text": "of", "start": 174, "end": 176, "annotation": null}, {"text": "metal", "start": 177, "end": 182, "annotation": null}, {"text": "precursors", "start": 183, "end": 193, "annotation": null}, {"text": "into", "start": 194, "end": 198, "annotation": null}, {"text": "a", "start": 199, "end": 200, "annotation": null}, {"text": "hot", "start": 201, "end": 204, "annotation": null}, {"text": "surfactant", "start": 205, "end": 215, "annotation": null}, {"text": "offer", "start": 216, "end": 221, "annotation": null}, {"text": "an", "start": 222, "end": 224, "annotation": null}, {"text": "attractive", "start": 225, "end": 235, "annotation": null}, {"text": "route", "start": 236, "end": 241, "annotation": null}, {"text": "to", "start": 242, "end": 244, "annotation": null}, {"text": "the", "start": 245, "end": 248, "annotation": null}, {"text": "fabrication", "start": 249, "end": 260, "annotation": null}, {"text": "of", "start": 261, "end": 263, "annotation": null}, {"text": "Earth", "start": 264, "end": 269, "annotation": null}, {"text": "-", "start": 269, "end": 270, "annotation": null}, {"text": "abundant", "start": 270, "end": 278, "annotation": null}, {"text": "Cu2ZnSn(S,Se)4", "start": 279, "end": 293, "annotation": null}, {"text": "(", "start": 294, "end": 295, "annotation": null}, {"text": "CZTSSe", "start": 295, "end": 301, "annotation": null}, {"text": ")", "start": 301, "end": 302, "annotation": null}, {"text": "thin", "start": 303, "end": 307, "annotation": null}, {"text": "film", "start": 308, "end": 312, "annotation": null}, {"text": "photovoltaic", "start": 313, "end": 325, "annotation": null}, {"text": "absorber", "start": 326, "end": 334, "annotation": null}, {"text": "layers", "start": 335, "end": 341, "annotation": null}, {"text": ".", "start": 341, "end": 342, "annotation": null}], [{"text": "In", "start": 343, "end": 345, "annotation": null}, {"text": "this", "start": 346, "end": 350, "annotation": null}, {"text": "work", "start": 351, "end": 355, "annotation": null}, {"text": "it", "start": 356, "end": 358, "annotation": null}, {"text": "is", "start": 359, "end": 361, "annotation": null}, {"text": "shown", "start": 362, "end": 367, "annotation": null}, {"text": "that", "start": 368, "end": 372, "annotation": null}, {"text": "the", "start": 373, "end": 376, "annotation": null}, {"text": "chemical", "start": 377, "end": 385, "annotation": null}, {"text": "reaction", "start": 386, "end": 394, "annotation": null}, {"text": "conditions", "start": 395, "end": 405, "annotation": null}, {"text": "used", "start": 406, "end": 410, "annotation": null}, {"text": "to", "start": 411, "end": 413, "annotation": null}, {"text": "produce", "start": 414, "end": 421, "annotation": null}, {"text": "CZTS", "start": 422, "end": 426, "annotation": null}, {"text": "nanoparticle", "start": 427, "end": 439, "annotation": null}, {"text": "inks", "start": 440, "end": 444, "annotation": null}, {"text": "have", "start": 445, "end": 449, "annotation": null}, {"text": "a", "start": 450, "end": 451, "annotation": null}, {"text": "fundamental", "start": 452, "end": 463, "annotation": null}, {"text": "influence", "start": 464, "end": 473, "annotation": null}, {"text": "on", "start": 474, "end": 476, "annotation": null}, {"text": "the", "start": 477, "end": 480, "annotation": null}, {"text": "performance", "start": 481, "end": 492, "annotation": null}, {"text": "of", "start": 493, "end": 495, "annotation": null}, {"text": "thin", "start": 496, "end": 500, "annotation": null}, {"text": "film", "start": 501, "end": 505, "annotation": null}, {"text": "solar", "start": 506, "end": 511, "annotation": null}, {"text": "cells", "start": 512, "end": 517, "annotation": null}, {"text": "made", "start": 518, "end": 522, "annotation": null}, {"text": "by", "start": 523, "end": 525, "annotation": null}, {"text": "converting", "start": 526, "end": 536, "annotation": null}, {"text": "the", "start": 537, "end": 540, "annotation": null}, {"text": "nanoparticles", "start": 541, "end": 554, "annotation": null}, {"text": "to", "start": 555, "end": 557, "annotation": null}, {"text": "large", "start": 558, "end": 563, "annotation": null}, {"text": "CZTSSe", "start": 564, "end": 570, "annotation": null}, {"text": "grains", "start": 571, "end": 577, "annotation": null}, {"text": "in", "start": 578, "end": 580, "annotation": null}, {"text": "a", "start": 581, "end": 582, "annotation": null}, {"text": "selenium", "start": 583, "end": 591, "annotation": null}, {"text": "rich", "start": 592, "end": 596, "annotation": null}, {"text": "atmosphere", "start": 597, "end": 607, "annotation": null}, {"text": "and", "start": 608, "end": 611, "annotation": null}, {"text": "subsequent", "start": 612, "end": 622, "annotation": null}, {"text": "cell", "start": 623, "end": 627, "annotation": null}, {"text": "completion", "start": 628, "end": 638, "annotation": null}, {"text": ".", "start": 638, "end": 639, "annotation": null}], [{"text": "The", "start": 640, "end": 643, "annotation": null}, {"text": "reaction", "start": 644, "end": 652, "annotation": null}, {"text": "time", "start": 653, "end": 657, "annotation": null}, {"text": ",", "start": 657, "end": 658, "annotation": null}, {"text": "temperature", "start": 659, "end": 670, "annotation": null}, {"text": "and", "start": 671, "end": 674, "annotation": null}, {"text": "cooling", "start": 675, "end": 682, "annotation": null}, {"text": "rate", "start": 683, "end": 687, "annotation": null}, {"text": "of", "start": 688, "end": 690, "annotation": null}, {"text": "the", "start": 691, "end": 694, "annotation": null}, {"text": "nanoparticle", "start": 695, "end": 707, "annotation": null}, {"text": "fabrication", "start": 708, "end": 719, "annotation": null}, {"text": "process", "start": 720, "end": 727, "annotation": null}, {"text": "are", "start": 728, "end": 731, "annotation": null}, {"text": "found", "start": 732, "end": 737, "annotation": null}, {"text": "to", "start": 738, "end": 740, "annotation": null}, {"text": "affect", "start": 741, "end": 747, "annotation": null}, {"text": "doping", "start": 748, "end": 754, "annotation": null}, {"text": "level", "start": 755, "end": 760, "annotation": null}, {"text": ",", "start": 760, "end": 761, "annotation": null}, {"text": "secondary", "start": 762, "end": 771, "annotation": null}, {"text": "phases", "start": 772, "end": 778, "annotation": null}, {"text": "and", "start": 779, "end": 782, "annotation": null}, {"text": "crystal", "start": 783, "end": 790, "annotation": null}, {"text": "structure", "start": 791, "end": 800, "annotation": null}, {"text": "respectively", "start": 801, "end": 813, "annotation": null}, {"text": ".", "start": 813, "end": 814, "annotation": null}], [{"text": "Specifically", "start": 815, "end": 827, "annotation": null}, {"text": ",", "start": 827, "end": 828, "annotation": null}, {"text": "prolonging", "start": 829, "end": 839, "annotation": null}, {"text": "the", "start": 840, "end": 843, "annotation": null}, {"text": "reaction", "start": 844, "end": 852, "annotation": null}, {"text": "offers", "start": 853, "end": 859, "annotation": null}, {"text": "a", "start": 860, "end": 861, "annotation": null}, {"text": "new", "start": 862, "end": 865, "annotation": null}, {"text": "route", "start": 866, "end": 871, "annotation": null}, {"text": "to", "start": 872, "end": 874, "annotation": null}, {"text": "increase", "start": 875, "end": 883, "annotation": null}, {"text": "the", "start": 884, "end": 887, "annotation": null}, {"text": "concentration", "start": 888, "end": 901, "annotation": null}, {"text": "of", "start": 902, "end": 904, "annotation": null}, {"text": "acceptor", "start": 905, "end": 913, "annotation": null}, {"text": "levels", "start": 914, "end": 920, "annotation": null}, {"text": "in", "start": 921, "end": 923, "annotation": null}, {"text": "CZTSSe", "start": 924, "end": 930, "annotation": null}, {"text": "photovoltaic", "start": 931, "end": 943, "annotation": null}, {"text": "absorbers", "start": 944, "end": 953, "annotation": null}, {"text": "and", "start": 954, "end": 957, "annotation": null}, {"text": "results", "start": 958, "end": 965, "annotation": null}, {"text": "in", "start": 966, "end": 968, "annotation": null}, {"text": "higher", "start": 969, "end": 975, "annotation": null}, {"text": "device", "start": 976, "end": 982, "annotation": null}, {"text": "efficiency", "start": 983, "end": 993, "annotation": null}, {"text": "through", "start": 994, "end": 1001, "annotation": null}, {"text": "an", "start": 1002, "end": 1004, "annotation": null}, {"text": "increase", "start": 1005, "end": 1013, "annotation": null}, {"text": "in", "start": 1014, "end": 1016, "annotation": null}, {"text": "the", "start": 1017, "end": 1020, "annotation": null}, {"text": "open", "start": 1021, "end": 1025, "annotation": null}, {"text": "circuit", "start": 1026, "end": 1033, "annotation": null}, {"text": "voltage", "start": 1034, "end": 1041, "annotation": null}, {"text": "and", "start": 1042, "end": 1045, "annotation": null}, {"text": "a", "start": 1046, "end": 1047, "annotation": null}, {"text": "reduction", "start": 1048, "end": 1057, "annotation": null}, {"text": "in", "start": 1058, "end": 1060, "annotation": null}, {"text": "parasitic", "start": 1061, "end": 1070, "annotation": null}, {"text": "resistance", "start": 1071, "end": 1081, "annotation": null}, {"text": ".", "start": 1081, "end": 1082, "annotation": null}], [{"text": "Quenching", "start": 1083, "end": 1092, "annotation": null}, {"text": "the", "start": 1093, "end": 1096, "annotation": null}, {"text": "reaction", "start": 1097, "end": 1105, "annotation": null}, {"text": "by", "start": 1106, "end": 1108, "annotation": null}, {"text": "rapid", "start": 1109, "end": 1114, "annotation": null}, {"text": "cooling", "start": 1115, "end": 1122, "annotation": null}, {"text": "introduces", "start": 1123, "end": 1133, "annotation": null}, {"text": "a", "start": 1134, "end": 1135, "annotation": null}, {"text": "wurtzite", "start": 1136, "end": 1144, "annotation": null}, {"text": "crystal", "start": 1145, "end": 1152, "annotation": null}, {"text": "structure", "start": 1153, "end": 1162, "annotation": null}, {"text": "in", "start": 1163, "end": 1165, "annotation": null}, {"text": "the", "start": 1166, "end": 1169, "annotation": null}, {"text": "nanoparticles", "start": 1170, "end": 1183, "annotation": null}, {"text": "which", "start": 1184, "end": 1189, "annotation": null}, {"text": "significantly", "start": 1190, "end": 1203, "annotation": null}, {"text": "degrades", "start": 1204, "end": 1212, "annotation": null}, {"text": "the", "start": 1213, "end": 1216, "annotation": null}, {"text": "device", "start": 1217, "end": 1223, "annotation": null}, {"text": "performance", "start": 1224, "end": 1235, "annotation": null}, {"text": ",", "start": 1235, "end": 1236, "annotation": null}, {"text": "while", "start": 1237, "end": 1242, "annotation": null}, {"text": "elevating", "start": 1243, "end": 1252, "annotation": null}, {"text": "the", "start": 1253, "end": 1256, "annotation": null}, {"text": "reaction", "start": 1257, "end": 1265, "annotation": null}, {"text": "temperature", "start": 1266, "end": 1277, "annotation": null}, {"text": "of", "start": 1278, "end": 1280, "annotation": null}, {"text": "the", "start": 1281, "end": 1284, "annotation": null}, {"text": "nanoparticle", "start": 1285, "end": 1297, "annotation": null}, {"text": "synthesis", "start": 1298, "end": 1307, "annotation": null}, {"text": "introduces", "start": 1308, "end": 1318, "annotation": null}, {"text": "a", "start": 1319, "end": 1320, "annotation": null}, {"text": "secondary", "start": 1321, "end": 1330, "annotation": null}, {"text": "phase", "start": 1331, "end": 1336, "annotation": null}, {"text": "Cu2SnS3", "start": 1337, "end": 1344, "annotation": null}, {"text": "in", "start": 1345, "end": 1347, "annotation": null}, {"text": "the", "start": 1348, "end": 1351, "annotation": null}, {"text": "nanoparticles", "start": 1352, "end": 1365, "annotation": null}, {"text": "and", "start": 1366, "end": 1369, "annotation": null}, {"text": "results", "start": 1370, "end": 1377, "annotation": null}, {"text": "in", "start": 1378, "end": 1380, "annotation": null}, {"text": "the", "start": 1381, "end": 1384, "annotation": null}, {"text": "highest", "start": 1385, "end": 1392, "annotation": null}, {"text": "cell", "start": 1393, "end": 1397, "annotation": null}, {"text": "efficiency", "start": 1398, "end": 1408, "annotation": null}, {"text": "of", "start": 1409, "end": 1411, "annotation": null}, {"text": "6.26", "start": 1412, "end": 1416, "annotation": null}, {"text": "%", "start": 1416, "end": 1417, "annotation": null}, {"text": ".", "start": 1417, "end": 1418, "annotation": null}], [{"text": "This", "start": 1419, "end": 1423, "annotation": null}, {"text": "is", "start": 1424, "end": 1426, "annotation": null}, {"text": "correlated", "start": 1427, "end": 1437, "annotation": null}, {"text": "with", "start": 1438, "end": 1442, "annotation": null}, {"text": "increased", "start": 1443, "end": 1452, "annotation": null}, {"text": "doping", "start": 1453, "end": 1459, "annotation": null}, {"text": "in", "start": 1460, "end": 1462, "annotation": null}, {"text": "the", "start": 1463, "end": 1466, "annotation": null}, {"text": "CZTSSe", "start": 1467, "end": 1473, "annotation": "BASEMAT"}, {"text": "absorber", "start": 1474, "end": 1482, "annotation": "BASEMAT"}, {"text": "and", "start": 1483, "end": 1486, "annotation": null}, {"text": "the", "start": 1487, "end": 1490, "annotation": null}, {"text": "results", "start": 1491, "end": 1498, "annotation": null}, {"text": "demonstrate", "start": 1499, "end": 1510, "annotation": null}, {"text": "a", "start": 1511, "end": 1512, "annotation": null}, {"text": "route", "start": 1513, "end": 1518, "annotation": null}, {"text": "to", "start": 1519, "end": 1521, "annotation": null}, {"text": "controlling", "start": 1522, "end": 1533, "annotation": null}, {"text": "this", "start": 1534, "end": 1538, "annotation": null}, {"text": "parameter", "start": 1539, "end": 1548, "annotation": null}, {"text": ".", "start": 1548, "end": 1549, "annotation": null}], [{"text": "The", "start": 1550, "end": 1553, "annotation": null}, {"text": "chemical", "start": 1554, "end": 1562, "annotation": null}, {"text": "reaction", "start": 1563, "end": 1571, "annotation": null}, {"text": "conditions", "start": 1572, "end": 1582, "annotation": null}, {"text": "used", "start": 1583, "end": 1587, "annotation": null}, {"text": "to", "start": 1588, "end": 1590, "annotation": null}, {"text": "fabricate", "start": 1591, "end": 1600, "annotation": null}, {"text": "Cu2ZnSnS4", "start": 1601, "end": 1610, "annotation": null}, {"text": "nanoparticle", "start": 1611, "end": 1623, "annotation": null}, {"text": "inks", "start": 1624, "end": 1628, "annotation": null}, {"text": "have", "start": 1629, "end": 1633, "annotation": null}, {"text": "a", "start": 1634, "end": 1635, "annotation": null}, {"text": "profound", "start": 1636, "end": 1644, "annotation": null}, {"text": "influence", "start": 1645, "end": 1654, "annotation": null}, {"text": "on", "start": 1655, "end": 1657, "annotation": null}, {"text": "the", "start": 1658, "end": 1661, "annotation": null}, {"text": "performance", "start": 1662, "end": 1673, "annotation": null}, {"text": "of", "start": 1674, "end": 1676, "annotation": null}, {"text": "completed", "start": 1677, "end": 1686, "annotation": null}, {"text": "Cu2ZnSn(S,Se)4", "start": 1687, "end": 1701, "annotation": null}, {"text": "thin", "start": 1702, "end": 1706, "annotation": null}, {"text": "film", "start": 1707, "end": 1711, "annotation": null}, {"text": "solar", "start": 1712, "end": 1717, "annotation": null}, {"text": "cells", "start": 1718, "end": 1723, "annotation": null}, {"text": ".", "start": 1723, "end": 1724, "annotation": null}], [{"text": "Prolonging", "start": 1725, "end": 1735, "annotation": null}, {"text": "the", "start": 1736, "end": 1739, "annotation": null}, {"text": "reaction", "start": 1740, "end": 1748, "annotation": null}, {"text": "provides", "start": 1749, "end": 1757, "annotation": null}, {"text": "a", "start": 1758, "end": 1759, "annotation": null}, {"text": "means", "start": 1760, "end": 1765, "annotation": null}, {"text": "to", "start": 1766, "end": 1768, "annotation": null}, {"text": "increase", "start": 1769, "end": 1777, "annotation": null}, {"text": "the", "start": 1778, "end": 1781, "annotation": null}, {"text": "doping", "start": 1782, "end": 1788, "annotation": null}, {"text": "in", "start": 1789, "end": 1791, "annotation": null}, {"text": "the", "start": 1792, "end": 1795, "annotation": null}, {"text": "devices", "start": 1796, "end": 1803, "annotation": "BASEMAT"}, {"text": "while", "start": 1804, "end": 1809, "annotation": null}, {"text": "the", "start": 1810, "end": 1813, "annotation": null}, {"text": "existence", "start": 1814, "end": 1823, "annotation": null}, {"text": "of", "start": 1824, "end": 1826, "annotation": null}, {"text": "wurtzite", "start": 1827, "end": 1835, "annotation": null}, {"text": "crystal", "start": 1836, "end": 1843, "annotation": null}, {"text": "structure", "start": 1844, "end": 1853, "annotation": null}, {"text": "significantly", "start": 1854, "end": 1867, "annotation": null}, {"text": "degrades", "start": 1868, "end": 1876, "annotation": null}, {"text": "the", "start": 1877, "end": 1880, "annotation": null}, {"text": "device", "start": 1881, "end": 1887, "annotation": null}, {"text": "performance", "start": 1888, "end": 1899, "annotation": null}, {"text": ".", "start": 1899, "end": 1900, "annotation": null}], [{"text": "The", "start": 1901, "end": 1904, "annotation": null}, {"text": "highest", "start": 1905, "end": 1912, "annotation": null}, {"text": "efficiency", "start": 1913, "end": 1923, "annotation": null}, {"text": "is", "start": 1924, "end": 1926, "annotation": null}, {"text": "accompanied", "start": 1927, "end": 1938, "annotation": null}, {"text": "by", "start": 1939, "end": 1941, "annotation": null}, {"text": "secondary", "start": 1942, "end": 1951, "annotation": null}, {"text": "phase", "start": 1952, "end": 1957, "annotation": null}, {"text": "Cu2SnS3", "start": 1958, "end": 1965, "annotation": null}, {"text": "which", "start": 1966, "end": 1971, "annotation": null}, {"text": "results", "start": 1972, "end": 1979, "annotation": null}, {"text": "in", "start": 1980, "end": 1982, "annotation": null}, {"text": "the", "start": 1983, "end": 1986, "annotation": null}, {"text": "smallest", "start": 1987, "end": 1995, "annotation": null}, {"text": "voltage", "start": 1996, "end": 2003, "annotation": null}, {"text": "deficit", "start": 2004, "end": 2011, "annotation": null}, {"text": "relative", "start": 2012, "end": 2020, "annotation": null}, {"text": "to", "start": 2021, "end": 2023, "annotation": null}, {"text": "the", "start": 2024, "end": 2027, "annotation": null}, {"text": "energy", "start": 2028, "end": 2034, "annotation": null}, {"text": "band", "start": 2035, "end": 2039, "annotation": null}, {"text": "gap", "start": 2040, "end": 2043, "annotation": null}, {"text": ".", "start": 2043, "end": 2044, "annotation": null}]], "meta": {"doi": "10.1002/pip.2756"}} {"text": "Graphitic carbon nitride (g-C3N4) can be used as a photocatalyst to reduce CO2. Doping is an efficient strategy for improving the photocatalytic activity and tuning the electronic structure of g-C3N4. The sulfur-doped g-C3N4 (S-doped g-C3N4) as a promising photocatalyst for CO2 reduction was investigated by density functional theory methods. The electronic and optical properties indicate that doping S enhances the catalytic performance of g-C3N4. From the reduction Gibbs free energies, the optimal path for CO2 reduction reaction to CH3OH production catalyzed by S-doped g-C3N4 is CO2 \u2192 COOH\u2217 \u2192 CO \u2192 HCO\u2217 \u2192 HCHO \u2192 CH3O\u2217 \u2192 CH3OH. In comparison with g-C3N4, doping S can alter the rate-determining step and reduce the Gibbs free energy from 1.43 to 1.15 eV. CO2 reduction activity of S-doped g-C3N4 is better than that of g-C3N4, which is in well agreement with the experimental results. Our work provides useful insights into designing nonmetal-doped g-C3N4 for photocatalytic CO2 reduction reactions.", "meta": {"doi": "10.1021/acs.jpcc.8b00098"}, "_input_hash": 1215403723, "_task_hash": -2049612502, "tokens": [[{"text": "Graphitic", "start": 35, "end": 44, "id": 6, "annotation": null}, {"text": "carbon", "start": 45, "end": 51, "id": 7, "annotation": null}, {"text": "nitride", "start": 52, "end": 59, "id": 8, "annotation": null}, {"text": "(", "start": 60, "end": 61, "id": 9, "annotation": null}, {"text": "g", "start": 62, "end": 63, "id": 10, "annotation": null}, {"text": "-", "start": 64, "end": 65, "id": 11, "annotation": null}, {"text": "C3N4", "start": 66, "end": 70, "id": 12, "annotation": null}, {"text": ")", "start": 71, "end": 72, "id": 13, "annotation": null}, {"text": "can", "start": 73, "end": 76, "id": 14, "annotation": null}, {"text": "be", "start": 77, "end": 79, "id": 15, "annotation": null}, {"text": "used", "start": 80, "end": 84, "id": 16, "annotation": null}, {"text": "as", "start": 85, "end": 87, "id": 17, "annotation": null}, {"text": "a", "start": 88, "end": 89, "id": 18, "annotation": null}, {"text": "photocatalyst", "start": 90, "end": 103, "id": 19, "annotation": null}, {"text": "to", "start": 104, "end": 106, "id": 20, "annotation": null}, {"text": "reduce", "start": 107, "end": 113, "id": 21, "annotation": null}, {"text": "CO2", "start": 114, "end": 117, "id": 22, "annotation": null}, {"text": ".", "start": 118, "end": 119, "id": 23, "annotation": null}], [{"text": "Doping", "start": 120, "end": 126, "id": 24, "annotation": null}, {"text": "is", "start": 127, "end": 129, "id": 25, "annotation": null}, {"text": "an", "start": 130, "end": 132, "id": 26, "annotation": null}, {"text": "efficient", "start": 133, "end": 142, "id": 27, "annotation": null}, {"text": "strategy", "start": 143, "end": 151, "id": 28, "annotation": null}, {"text": "for", "start": 152, "end": 155, "id": 29, "annotation": null}, {"text": "improving", "start": 156, "end": 165, "id": 30, "annotation": null}, {"text": "the", "start": 166, "end": 169, "id": 31, "annotation": null}, {"text": "photocatalytic", "start": 170, "end": 184, "id": 32, "annotation": null}, {"text": "activity", "start": 185, "end": 193, "id": 33, "annotation": null}, {"text": "and", "start": 194, "end": 197, "id": 34, "annotation": null}, {"text": "tuning", "start": 198, "end": 204, "id": 35, "annotation": null}, {"text": "the", "start": 205, "end": 208, "id": 36, "annotation": null}, {"text": "electronic", "start": 209, "end": 219, "id": 37, "annotation": null}, {"text": "structure", "start": 220, "end": 229, "id": 38, "annotation": null}, {"text": "of", "start": 230, "end": 232, "id": 39, "annotation": null}, {"text": "g", "start": 233, "end": 234, "id": 40, "annotation": null}, {"text": "-", "start": 235, "end": 236, "id": 41, "annotation": null}, {"text": "C3N4", "start": 237, "end": 241, "id": 42, "annotation": "BASEMAT"}, {"text": ".", "start": 242, "end": 243, "id": 43, "annotation": null}], [{"text": "The", "start": 244, "end": 247, "id": 44, "annotation": null}, {"text": "sulfur", "start": 248, "end": 254, "id": 45, "annotation": "DOPANT"}, {"text": "-", "start": 255, "end": 256, "id": 46, "annotation": null}, {"text": "doped", "start": 257, "end": 262, "id": 47, "annotation": null}, {"text": "g", "start": 263, "end": 264, "id": 48, "annotation": null}, {"text": "-", "start": 265, "end": 266, "id": 49, "annotation": null}, {"text": "C3N4", "start": 267, "end": 271, "id": 50, "annotation": "BASEMAT"}, {"text": "(", "start": 272, "end": 273, "id": 51, "annotation": null}, {"text": "S", "start": 274, "end": 275, "id": 52, "annotation": "DOPANT"}, {"text": "-", "start": 276, "end": 277, "id": 53, "annotation": null}, {"text": "doped", "start": 278, "end": 283, "id": 54, "annotation": null}, {"text": "g", "start": 284, "end": 285, "id": 55, "annotation": null}, {"text": "-", "start": 286, "end": 287, "id": 56, "annotation": null}, {"text": "C3N4", "start": 288, "end": 292, "id": 57, "annotation": "BASEMAT"}, {"text": ")", "start": 293, "end": 294, "id": 58, "annotation": null}, {"text": "as", "start": 295, "end": 297, "id": 59, "annotation": null}, {"text": "a", "start": 298, "end": 299, "id": 60, "annotation": null}, {"text": "promising", "start": 300, "end": 309, "id": 61, "annotation": null}, {"text": "photocatalyst", "start": 310, "end": 323, "id": 62, "annotation": null}, {"text": "for", "start": 324, "end": 327, "id": 63, "annotation": null}, {"text": "CO2", "start": 328, "end": 331, "id": 64, "annotation": null}, {"text": "reduction", "start": 332, "end": 341, "id": 65, "annotation": null}, {"text": "was", "start": 342, "end": 345, "id": 66, "annotation": null}, {"text": "investigated", "start": 346, "end": 358, "id": 67, "annotation": null}, {"text": "by", "start": 359, "end": 361, "id": 68, "annotation": null}, {"text": "density", "start": 362, "end": 369, "id": 69, "annotation": null}, {"text": "functional", "start": 370, "end": 380, "id": 70, "annotation": null}, {"text": "theory", "start": 381, "end": 387, "id": 71, "annotation": null}, {"text": "methods", "start": 388, "end": 395, "id": 72, "annotation": null}, {"text": ".", "start": 396, "end": 397, "id": 73, "annotation": null}], [{"text": "The", "start": 398, "end": 401, "id": 74, "annotation": null}, {"text": "electronic", "start": 402, "end": 412, "id": 75, "annotation": null}, {"text": "and", "start": 413, "end": 416, "id": 76, "annotation": null}, {"text": "optical", "start": 417, "end": 424, "id": 77, "annotation": null}, {"text": "properties", "start": 425, "end": 435, "id": 78, "annotation": null}, {"text": "indicate", "start": 436, "end": 444, "id": 79, "annotation": null}, {"text": "that", "start": 445, "end": 449, "id": 80, "annotation": null}, {"text": "doping", "start": 450, "end": 456, "id": 81, "annotation": null}, {"text": "S", "start": 457, "end": 458, "id": 82, "annotation": "DOPANT"}, {"text": "enhances", "start": 459, "end": 467, "id": 83, "annotation": null}, {"text": "the", "start": 468, "end": 471, "id": 84, "annotation": null}, {"text": "catalytic", "start": 472, "end": 481, "id": 85, "annotation": null}, {"text": "performance", "start": 482, "end": 493, "id": 86, "annotation": null}, {"text": "of", "start": 494, "end": 496, "id": 87, "annotation": null}, {"text": "g", "start": 497, "end": 498, "id": 88, "annotation": null}, {"text": "-", "start": 499, "end": 500, "id": 89, "annotation": null}, {"text": "C3N4", "start": 501, "end": 505, "id": 90, "annotation": "BASEMAT"}, {"text": ".", "start": 506, "end": 507, "id": 91, "annotation": null}], [{"text": "From", "start": 508, "end": 512, "id": 92, "annotation": null}, {"text": "the", "start": 513, "end": 516, "id": 93, "annotation": null}, {"text": "reduction", "start": 517, "end": 526, "id": 94, "annotation": null}, {"text": "Gibbs", "start": 527, "end": 532, "id": 95, "annotation": null}, {"text": "free", "start": 533, "end": 537, "id": 96, "annotation": null}, {"text": "energies", "start": 538, "end": 546, "id": 97, "annotation": null}, {"text": ",", "start": 547, "end": 548, "id": 98, "annotation": null}, {"text": "the", "start": 549, "end": 552, "id": 99, "annotation": null}, {"text": "optimal", "start": 553, "end": 560, "id": 100, "annotation": null}, {"text": "path", "start": 561, "end": 565, "id": 101, "annotation": null}, {"text": "for", "start": 566, "end": 569, "id": 102, "annotation": null}, {"text": "CO2", "start": 570, "end": 573, "id": 103, "annotation": null}, {"text": "reduction", "start": 574, "end": 583, "id": 104, "annotation": null}, {"text": "reaction", "start": 584, "end": 592, "id": 105, "annotation": null}, {"text": "to", "start": 593, "end": 595, "id": 106, "annotation": null}, {"text": "CH3OH", "start": 596, "end": 601, "id": 107, "annotation": null}, {"text": "production", "start": 602, "end": 612, "id": 108, "annotation": null}, {"text": "catalyzed", "start": 613, "end": 622, "id": 109, "annotation": null}, {"text": "by", "start": 623, "end": 625, "id": 110, "annotation": null}, {"text": "S", "start": 626, "end": 627, "id": 111, "annotation": "DOPANT"}, {"text": "-", "start": 628, "end": 629, "id": 112, "annotation": null}, {"text": "doped", "start": 630, "end": 635, "id": 113, "annotation": null}, {"text": "g", "start": 636, "end": 637, "id": 114, "annotation": null}, {"text": "-", "start": 638, "end": 639, "id": 115, "annotation": null}, {"text": "C3N4", "start": 640, "end": 644, "id": 116, "annotation": "BASEMAT"}, {"text": "is", "start": 645, "end": 647, "id": 117, "annotation": null}, {"text": "CO2", "start": 648, "end": 651, "id": 118, "annotation": null}, {"text": "\u2192", "start": 652, "end": 653, "id": 119, "annotation": null}, {"text": "COOH\u2217", "start": 654, "end": 659, "id": 120, "annotation": null}, {"text": "\u2192", "start": 660, "end": 661, "id": 121, "annotation": null}, {"text": "CO", "start": 662, "end": 664, "id": 122, "annotation": null}, {"text": "\u2192", "start": 665, "end": 666, "id": 123, "annotation": null}, {"text": "HCO\u2217", "start": 667, "end": 671, "id": 124, "annotation": null}, {"text": "\u2192", "start": 672, "end": 673, "id": 125, "annotation": null}, {"text": "HCHO", "start": 674, "end": 678, "id": 126, "annotation": null}, {"text": "\u2192", "start": 679, "end": 680, "id": 127, "annotation": null}, {"text": "CH3O\u2217", "start": 681, "end": 686, "id": 128, "annotation": null}, {"text": "\u2192", "start": 687, "end": 688, "id": 129, "annotation": null}, {"text": "CH3OH", "start": 689, "end": 694, "id": 130, "annotation": null}, {"text": ".", "start": 695, "end": 696, "id": 131, "annotation": null}], [{"text": "In", "start": 697, "end": 699, "id": 132, "annotation": null}, {"text": "comparison", "start": 700, "end": 710, "id": 133, "annotation": null}, {"text": "with", "start": 711, "end": 715, "id": 134, "annotation": null}, {"text": "g", "start": 716, "end": 717, "id": 135, "annotation": null}, {"text": "-", "start": 718, "end": 719, "id": 136, "annotation": null}, {"text": "C3N4", "start": 720, "end": 724, "id": 137, "annotation": null}, {"text": ",", "start": 725, "end": 726, "id": 138, "annotation": null}, {"text": "doping", "start": 727, "end": 733, "id": 139, "annotation": null}, {"text": "S", "start": 734, "end": 735, "id": 140, "annotation": "DOPANT"}, {"text": "can", "start": 736, "end": 739, "id": 141, "annotation": null}, {"text": "alter", "start": 740, "end": 745, "id": 142, "annotation": null}, {"text": "the", "start": 746, "end": 749, "id": 143, "annotation": null}, {"text": "rate", "start": 750, "end": 754, "id": 144, "annotation": null}, {"text": "-", "start": 755, "end": 756, "id": 145, "annotation": null}, {"text": "determining", "start": 757, "end": 768, "id": 146, "annotation": null}, {"text": "step", "start": 769, "end": 773, "id": 147, "annotation": null}, {"text": "and", "start": 774, "end": 777, "id": 148, "annotation": null}, {"text": "reduce", "start": 778, "end": 784, "id": 149, "annotation": null}, {"text": "the", "start": 785, "end": 788, "id": 150, "annotation": null}, {"text": "Gibbs", "start": 789, "end": 794, "id": 151, "annotation": null}, {"text": "free", "start": 795, "end": 799, "id": 152, "annotation": null}, {"text": "energy", "start": 800, "end": 806, "id": 153, "annotation": null}, {"text": "from", "start": 807, "end": 811, "id": 154, "annotation": null}, {"text": "1.43", "start": 812, "end": 816, "id": 155, "annotation": null}, {"text": "to", "start": 817, "end": 819, "id": 156, "annotation": null}, {"text": "1.15", "start": 820, "end": 824, "id": 157, "annotation": null}, {"text": "eV.", "start": 825, "end": 828, "id": 158, "annotation": null}], [{"text": "CO2", "start": 829, "end": 832, "id": 159, "annotation": null}, {"text": "reduction", "start": 833, "end": 842, "id": 160, "annotation": null}, {"text": "activity", "start": 843, "end": 851, "id": 161, "annotation": null}, {"text": "of", "start": 852, "end": 854, "id": 162, "annotation": null}, {"text": "S", "start": 855, "end": 856, "id": 163, "annotation": "DOPANT"}, {"text": "-", "start": 857, "end": 858, "id": 164, "annotation": null}, {"text": "doped", "start": 859, "end": 864, "id": 165, "annotation": null}, {"text": "g", "start": 865, "end": 866, "id": 166, "annotation": null}, {"text": "-", "start": 867, "end": 868, "id": 167, "annotation": null}, {"text": "C3N4", "start": 869, "end": 873, "id": 168, "annotation": "BASEMAT"}, {"text": "is", "start": 874, "end": 876, "id": 169, "annotation": null}, {"text": "better", "start": 877, "end": 883, "id": 170, "annotation": null}, {"text": "than", "start": 884, "end": 888, "id": 171, "annotation": null}, {"text": "that", "start": 889, "end": 893, "id": 172, "annotation": null}, {"text": "of", "start": 894, "end": 896, "id": 173, "annotation": null}, {"text": "g", "start": 897, "end": 898, "id": 174, "annotation": null}, {"text": "-", "start": 899, "end": 900, "id": 175, "annotation": null}, {"text": "C3N4", "start": 901, "end": 905, "id": 176, "annotation": null}, {"text": ",", "start": 906, "end": 907, "id": 177, "annotation": null}, {"text": "which", "start": 908, "end": 913, "id": 178, "annotation": null}, {"text": "is", "start": 914, "end": 916, "id": 179, "annotation": null}, {"text": "in", "start": 917, "end": 919, "id": 180, "annotation": null}, {"text": "well", "start": 920, "end": 924, "id": 181, "annotation": null}, {"text": "agreement", "start": 925, "end": 934, "id": 182, "annotation": null}, {"text": "with", "start": 935, "end": 939, "id": 183, "annotation": null}, {"text": "the", "start": 940, "end": 943, "id": 184, "annotation": null}, {"text": "experimental", "start": 944, "end": 956, "id": 185, "annotation": null}, {"text": "results", "start": 957, "end": 964, "id": 186, "annotation": null}, {"text": ".", "start": 965, "end": 966, "id": 187, "annotation": null}], [{"text": "Our", "start": 967, "end": 970, "id": 188, "annotation": null}, {"text": "work", "start": 971, "end": 975, "id": 189, "annotation": null}, {"text": "provides", "start": 976, "end": 984, "id": 190, "annotation": null}, {"text": "useful", "start": 985, "end": 991, "id": 191, "annotation": null}, {"text": "insights", "start": 992, "end": 1000, "id": 192, "annotation": null}, {"text": "into", "start": 1001, "end": 1005, "id": 193, "annotation": null}, {"text": "designing", "start": 1006, "end": 1015, "id": 194, "annotation": null}, {"text": "nonmetal", "start": 1016, "end": 1024, "id": 195, "annotation": "DOPANT"}, {"text": "-", "start": 1025, "end": 1026, "id": 196, "annotation": null}, {"text": "doped", "start": 1027, "end": 1032, "id": 197, "annotation": null}, {"text": "g", "start": 1033, "end": 1034, "id": 198, "annotation": null}, {"text": "-", "start": 1035, "end": 1036, "id": 199, "annotation": null}, {"text": "C3N4", "start": 1037, "end": 1041, "id": 200, "annotation": "BASEMAT"}, {"text": "for", "start": 1042, "end": 1045, "id": 201, "annotation": null}, {"text": "photocatalytic", "start": 1046, "end": 1060, "id": 202, "annotation": null}, {"text": "CO2", "start": 1061, "end": 1064, "id": 203, "annotation": null}, {"text": "reduction", "start": 1065, "end": 1074, "id": 204, "annotation": null}, {"text": "reactions", "start": 1075, "end": 1084, "id": 205, "annotation": null}, {"text": ".", "start": 1085, "end": 1086, "id": 206, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "The dependence of the solubilities and diffusion coefficients of Mn, Fe, and Co on doping with B, P, and As in Si have been studied by the tracer method. An enhancement of the solubility by up to 4 orders of magnitude has been observed for P concentrations greater than 5\u00d71018 cm-3 and temperatures between 700\u00b0C and 850\u00b0C. The enhancement is due to immobile substitutional 3d impurity atoms forming multiple-acceptor centers and pairs with P at those temperatures. By contrast, in intrinsic and highly-B-doped Si, impurities on interstitial sites dominate the solubility, with the exception of Mn for T<850\u00b0C. The interstitials act as donor centers resulting in a solubility enhancement for high B dopings (T<900\u00b0C, [B]>5\u00d71018 cm-3) due to the singly positive charge state and impurity-boron pairs. No evidence for a dependence of the diffusion coefficient on the charge state has been found. The analysis of the solubility on the Fermi level shows that the donor levels of interstitial Mn, Fe, and Co above 700\u00b0C abruptly shift towards the valence band with temperature. This is the first experimental evidence that a point-defect configuration becomes unstable at high temperatures in analogy to an instability of the Si self-interstitial conjectured by Seeger and Chick [Phys. Status Solidi 29, 455 (1968)] 20 years ago. It is further proposed that the multiple-acceptor behavior of substitutional Mn, Fe, and Co is due to a strong increase in the vacancy concentration in highly-P-doped Si as compared with intrinsic Si for T<850\u00b0C. \u00a9 1990 The American Physical Society.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "dependence", "start": 4, "end": 14, "annotation": null}, {"text": "of", "start": 15, "end": 17, "annotation": null}, {"text": "the", "start": 18, "end": 21, "annotation": null}, {"text": "solubilities", "start": 22, "end": 34, "annotation": null}, {"text": "and", "start": 35, "end": 38, "annotation": null}, {"text": "diffusion", "start": 39, "end": 48, "annotation": null}, {"text": "coefficients", "start": 49, "end": 61, "annotation": null}, {"text": "of", "start": 62, "end": 64, "annotation": null}, {"text": "Mn", "start": 65, "end": 67, "annotation": null}, {"text": ",", "start": 67, "end": 68, "annotation": null}, {"text": "Fe", "start": 69, "end": 71, "annotation": null}, {"text": ",", "start": 71, "end": 72, "annotation": null}, {"text": "and", "start": 73, "end": 76, "annotation": null}, {"text": "Co", "start": 77, "end": 79, "annotation": null}, {"text": "on", "start": 80, "end": 82, "annotation": null}, {"text": "doping", "start": 83, "end": 89, "annotation": null}, {"text": "with", "start": 90, "end": 94, "annotation": null}, {"text": "B", "start": 95, "end": 96, "annotation": "DOPANT"}, {"text": ",", "start": 96, "end": 97, "annotation": null}, {"text": "P", "start": 98, "end": 99, "annotation": "DOPANT"}, {"text": ",", "start": 99, "end": 100, "annotation": null}, {"text": "and", "start": 101, "end": 104, "annotation": null}, {"text": "As", "start": 105, "end": 107, "annotation": "DOPANT"}, {"text": "in", "start": 108, "end": 110, "annotation": null}, {"text": "Si", "start": 111, "end": 113, "annotation": "BASEMAT"}, {"text": "have", "start": 114, "end": 118, "annotation": null}, {"text": "been", "start": 119, "end": 123, "annotation": null}, {"text": "studied", "start": 124, "end": 131, "annotation": null}, {"text": "by", "start": 132, "end": 134, "annotation": null}, {"text": "the", "start": 135, "end": 138, "annotation": null}, {"text": "tracer", "start": 139, "end": 145, "annotation": null}, {"text": "method", "start": 146, "end": 152, "annotation": null}, {"text": ".", "start": 152, "end": 153, "annotation": null}], [{"text": "An", "start": 154, "end": 156, "annotation": null}, {"text": "enhancement", "start": 157, "end": 168, "annotation": null}, {"text": "of", "start": 169, "end": 171, "annotation": null}, {"text": "the", "start": 172, "end": 175, "annotation": null}, {"text": "solubility", "start": 176, "end": 186, "annotation": null}, {"text": "by", "start": 187, "end": 189, "annotation": null}, {"text": "up", "start": 190, "end": 192, "annotation": null}, {"text": "to", "start": 193, "end": 195, "annotation": null}, {"text": "4", "start": 196, "end": 197, "annotation": null}, {"text": "orders", "start": 198, "end": 204, "annotation": null}, {"text": "of", "start": 205, "end": 207, "annotation": null}, {"text": "magnitude", "start": 208, "end": 217, "annotation": null}, {"text": "has", "start": 218, "end": 221, "annotation": null}, {"text": "been", "start": 222, "end": 226, "annotation": null}, {"text": "observed", "start": 227, "end": 235, "annotation": null}, {"text": "for", "start": 236, "end": 239, "annotation": null}, {"text": "P", "start": 240, "end": 241, "annotation": null}, {"text": "concentrations", "start": 242, "end": 256, "annotation": null}, {"text": "greater", "start": 257, "end": 264, "annotation": null}, {"text": "than", "start": 265, "end": 269, "annotation": null}, {"text": "5", "start": 270, "end": 271, "annotation": null}, {"text": "\u00d7", "start": 271, "end": 272, "annotation": null}, {"text": "1018", "start": 272, "end": 276, "annotation": null}, {"text": "cm-3", "start": 277, "end": 281, "annotation": null}, {"text": "and", "start": 282, "end": 285, "annotation": null}, {"text": "temperatures", "start": 286, "end": 298, "annotation": null}, {"text": "between", "start": 299, "end": 306, "annotation": null}, {"text": "700", "start": 307, "end": 310, "annotation": null}, {"text": "\u00b0", "start": 310, "end": 311, "annotation": null}, {"text": "C", "start": 311, "end": 312, "annotation": null}, {"text": "and", "start": 313, "end": 316, "annotation": null}, {"text": "850", "start": 317, "end": 320, "annotation": null}, {"text": "\u00b0", "start": 320, "end": 321, "annotation": null}, {"text": "C", "start": 321, "end": 322, "annotation": null}, {"text": ".", "start": 322, "end": 323, "annotation": null}], [{"text": "The", "start": 324, "end": 327, "annotation": null}, {"text": "enhancement", "start": 328, "end": 339, "annotation": null}, {"text": "is", "start": 340, "end": 342, "annotation": null}, {"text": "due", "start": 343, "end": 346, "annotation": null}, {"text": "to", "start": 347, "end": 349, "annotation": null}, {"text": "immobile", "start": 350, "end": 358, "annotation": null}, {"text": "substitutional", "start": 359, "end": 373, "annotation": null}, {"text": "3d", "start": 374, "end": 376, "annotation": null}, {"text": "impurity", "start": 377, "end": 385, "annotation": null}, {"text": "atoms", "start": 386, "end": 391, "annotation": null}, {"text": "forming", "start": 392, "end": 399, "annotation": null}, {"text": "multiple", "start": 400, "end": 408, "annotation": null}, {"text": "-", "start": 408, "end": 409, "annotation": null}, {"text": "acceptor", "start": 409, "end": 417, "annotation": null}, {"text": "centers", "start": 418, "end": 425, "annotation": null}, {"text": "and", "start": 426, "end": 429, "annotation": null}, {"text": "pairs", "start": 430, "end": 435, "annotation": null}, {"text": "with", "start": 436, "end": 440, "annotation": null}, {"text": "P", "start": 441, "end": 442, "annotation": null}, {"text": "at", "start": 443, "end": 445, "annotation": null}, {"text": "those", "start": 446, "end": 451, "annotation": null}, {"text": "temperatures", "start": 452, "end": 464, "annotation": null}, {"text": ".", "start": 464, "end": 465, "annotation": null}], [{"text": "By", "start": 466, "end": 468, "annotation": null}, {"text": "contrast", "start": 469, "end": 477, "annotation": null}, {"text": ",", "start": 477, "end": 478, "annotation": null}, {"text": "in", "start": 479, "end": 481, "annotation": null}, {"text": "intrinsic", "start": 482, "end": 491, "annotation": null}, {"text": "and", "start": 492, "end": 495, "annotation": null}, {"text": "highly-B", "start": 496, "end": 504, "annotation": "DOPANT"}, {"text": "-", "start": 504, "end": 505, "annotation": null}, {"text": "doped", "start": 505, "end": 510, "annotation": null}, {"text": "Si", "start": 511, "end": 513, "annotation": "BASEMAT"}, {"text": ",", "start": 513, "end": 514, "annotation": null}, {"text": "impurities", "start": 515, "end": 525, "annotation": null}, {"text": "on", "start": 526, "end": 528, "annotation": null}, {"text": "interstitial", "start": 529, "end": 541, "annotation": null}, {"text": "sites", "start": 542, "end": 547, "annotation": null}, {"text": "dominate", "start": 548, "end": 556, "annotation": null}, {"text": "the", "start": 557, "end": 560, "annotation": null}, {"text": "solubility", "start": 561, "end": 571, "annotation": null}, {"text": ",", "start": 571, "end": 572, "annotation": null}, {"text": "with", "start": 573, "end": 577, "annotation": null}, {"text": "the", "start": 578, "end": 581, "annotation": null}, {"text": "exception", "start": 582, "end": 591, "annotation": null}, {"text": "of", "start": 592, "end": 594, "annotation": null}, {"text": "Mn", "start": 595, "end": 597, "annotation": null}, {"text": "for", "start": 598, "end": 601, "annotation": null}, {"text": "T", "start": 602, "end": 603, "annotation": null}, {"text": "<", "start": 603, "end": 604, "annotation": null}, {"text": "850", "start": 604, "end": 607, "annotation": null}, {"text": "\u00b0", "start": 607, "end": 608, "annotation": null}, {"text": "C", "start": 608, "end": 609, "annotation": null}, {"text": ".", "start": 609, "end": 610, "annotation": null}], [{"text": "The", "start": 611, "end": 614, "annotation": null}, {"text": "interstitials", "start": 615, "end": 628, "annotation": null}, {"text": "act", "start": 629, "end": 632, "annotation": null}, {"text": "as", "start": 633, "end": 635, "annotation": null}, {"text": "donor", "start": 636, "end": 641, "annotation": null}, {"text": "centers", "start": 642, "end": 649, "annotation": null}, {"text": "resulting", "start": 650, "end": 659, "annotation": null}, {"text": "in", "start": 660, "end": 662, "annotation": null}, {"text": "a", "start": 663, "end": 664, "annotation": null}, {"text": "solubility", "start": 665, "end": 675, "annotation": null}, {"text": "enhancement", "start": 676, "end": 687, "annotation": null}, {"text": "for", "start": 688, "end": 691, "annotation": null}, {"text": "high", "start": 692, "end": 696, "annotation": null}, {"text": "B", "start": 697, "end": 698, "annotation": "DOPANT"}, {"text": "dopings", "start": 699, "end": 706, "annotation": null}, {"text": "(", "start": 707, "end": 708, "annotation": null}, {"text": "T", "start": 708, "end": 709, "annotation": null}, {"text": "<", "start": 709, "end": 710, "annotation": null}, {"text": "900", "start": 710, "end": 713, "annotation": null}, {"text": "\u00b0", "start": 713, "end": 714, "annotation": null}, {"text": "C", "start": 714, "end": 715, "annotation": null}, {"text": ",", "start": 715, "end": 716, "annotation": null}, {"text": "[B]", "start": 717, "end": 720, "annotation": null}, {"text": ">", "start": 720, "end": 721, "annotation": null}, {"text": "5", "start": 721, "end": 722, "annotation": null}, {"text": "\u00d7", "start": 722, "end": 723, "annotation": null}, {"text": "1018", "start": 723, "end": 727, "annotation": null}, {"text": "cm-3", "start": 728, "end": 732, "annotation": null}, {"text": ")", "start": 732, "end": 733, "annotation": null}, {"text": "due", "start": 734, "end": 737, "annotation": null}, {"text": "to", "start": 738, "end": 740, "annotation": null}, {"text": "the", "start": 741, "end": 744, "annotation": null}, {"text": "singly", "start": 745, "end": 751, "annotation": null}, {"text": "positive", "start": 752, "end": 760, "annotation": null}, {"text": "charge", "start": 761, "end": 767, "annotation": null}, {"text": "state", "start": 768, "end": 773, "annotation": null}, {"text": "and", "start": 774, "end": 777, "annotation": null}, {"text": "impurity", "start": 778, "end": 786, "annotation": null}, {"text": "-", "start": 786, "end": 787, "annotation": null}, {"text": "boron", "start": 787, "end": 792, "annotation": null}, {"text": "pairs", "start": 793, "end": 798, "annotation": null}, {"text": ".", "start": 798, "end": 799, "annotation": null}], [{"text": "No", "start": 800, "end": 802, "annotation": null}, {"text": "evidence", "start": 803, "end": 811, "annotation": null}, {"text": "for", "start": 812, "end": 815, "annotation": null}, {"text": "a", "start": 816, "end": 817, "annotation": null}, {"text": "dependence", "start": 818, "end": 828, "annotation": null}, {"text": "of", "start": 829, "end": 831, "annotation": null}, {"text": "the", "start": 832, "end": 835, "annotation": null}, {"text": "diffusion", "start": 836, "end": 845, "annotation": null}, {"text": "coefficient", "start": 846, "end": 857, "annotation": null}, {"text": "on", "start": 858, "end": 860, "annotation": null}, {"text": "the", "start": 861, "end": 864, "annotation": null}, {"text": "charge", "start": 865, "end": 871, "annotation": null}, {"text": "state", "start": 872, "end": 877, "annotation": null}, {"text": "has", "start": 878, "end": 881, "annotation": null}, {"text": "been", "start": 882, "end": 886, "annotation": null}, {"text": "found", "start": 887, "end": 892, "annotation": null}, {"text": ".", "start": 892, "end": 893, "annotation": null}], [{"text": "The", "start": 894, "end": 897, "annotation": null}, {"text": "analysis", "start": 898, "end": 906, "annotation": null}, {"text": "of", "start": 907, "end": 909, "annotation": null}, {"text": "the", "start": 910, "end": 913, "annotation": null}, {"text": "solubility", "start": 914, "end": 924, "annotation": null}, {"text": "on", "start": 925, "end": 927, "annotation": null}, {"text": "the", "start": 928, "end": 931, "annotation": null}, {"text": "Fermi", "start": 932, "end": 937, "annotation": null}, {"text": "level", "start": 938, "end": 943, "annotation": null}, {"text": "shows", "start": 944, "end": 949, "annotation": null}, {"text": "that", "start": 950, "end": 954, "annotation": null}, {"text": "the", "start": 955, "end": 958, "annotation": null}, {"text": "donor", "start": 959, "end": 964, "annotation": null}, {"text": "levels", "start": 965, "end": 971, "annotation": null}, {"text": "of", "start": 972, "end": 974, "annotation": null}, {"text": "interstitial", "start": 975, "end": 987, "annotation": null}, {"text": "Mn", "start": 988, "end": 990, "annotation": null}, {"text": ",", "start": 990, "end": 991, "annotation": null}, {"text": "Fe", "start": 992, "end": 994, "annotation": null}, {"text": ",", "start": 994, "end": 995, "annotation": null}, {"text": "and", "start": 996, "end": 999, "annotation": null}, {"text": "Co", "start": 1000, "end": 1002, "annotation": null}, {"text": "above", "start": 1003, "end": 1008, "annotation": null}, {"text": "700", "start": 1009, "end": 1012, "annotation": null}, {"text": "\u00b0", "start": 1012, "end": 1013, "annotation": null}, {"text": "C", "start": 1013, "end": 1014, "annotation": null}, {"text": "abruptly", "start": 1015, "end": 1023, "annotation": null}, {"text": "shift", "start": 1024, "end": 1029, "annotation": null}, {"text": "towards", "start": 1030, "end": 1037, "annotation": null}, {"text": "the", "start": 1038, "end": 1041, "annotation": null}, {"text": "valence", "start": 1042, "end": 1049, "annotation": null}, {"text": "band", "start": 1050, "end": 1054, "annotation": null}, {"text": "with", "start": 1055, "end": 1059, "annotation": null}, {"text": "temperature", "start": 1060, "end": 1071, "annotation": null}, {"text": ".", "start": 1071, "end": 1072, "annotation": null}], [{"text": "This", "start": 1073, "end": 1077, "annotation": null}, {"text": "is", "start": 1078, "end": 1080, "annotation": null}, {"text": "the", "start": 1081, "end": 1084, "annotation": null}, {"text": "first", "start": 1085, "end": 1090, "annotation": null}, {"text": "experimental", "start": 1091, "end": 1103, "annotation": null}, {"text": "evidence", "start": 1104, "end": 1112, "annotation": null}, {"text": "that", "start": 1113, "end": 1117, "annotation": null}, {"text": "a", "start": 1118, "end": 1119, "annotation": null}, {"text": "point", "start": 1120, "end": 1125, "annotation": null}, {"text": "-", "start": 1125, "end": 1126, "annotation": null}, {"text": "defect", "start": 1126, "end": 1132, "annotation": null}, {"text": "configuration", "start": 1133, "end": 1146, "annotation": null}, {"text": "becomes", "start": 1147, "end": 1154, "annotation": null}, {"text": "unstable", "start": 1155, "end": 1163, "annotation": null}, {"text": "at", "start": 1164, "end": 1166, "annotation": null}, {"text": "high", "start": 1167, "end": 1171, "annotation": null}, {"text": "temperatures", "start": 1172, "end": 1184, "annotation": null}, {"text": "in", "start": 1185, "end": 1187, "annotation": null}, {"text": "analogy", "start": 1188, "end": 1195, "annotation": null}, {"text": "to", "start": 1196, "end": 1198, "annotation": null}, {"text": "an", "start": 1199, "end": 1201, "annotation": null}, {"text": "instability", "start": 1202, "end": 1213, "annotation": null}, {"text": "of", "start": 1214, "end": 1216, "annotation": null}, {"text": "the", "start": 1217, "end": 1220, "annotation": null}, {"text": "Si", "start": 1221, "end": 1223, "annotation": null}, {"text": "self", "start": 1224, "end": 1228, "annotation": null}, {"text": "-", "start": 1228, "end": 1229, "annotation": null}, {"text": "interstitial", "start": 1229, "end": 1241, "annotation": null}, {"text": "conjectured", "start": 1242, "end": 1253, "annotation": null}, {"text": "by", "start": 1254, "end": 1256, "annotation": null}, {"text": "Seeger", "start": 1257, "end": 1263, "annotation": null}, {"text": "and", "start": 1264, "end": 1267, "annotation": null}, {"text": "Chick", "start": 1268, "end": 1273, "annotation": null}, {"text": "[", "start": 1274, "end": 1275, "annotation": null}, {"text": "Phys", "start": 1275, "end": 1279, "annotation": null}, {"text": ".", "start": 1279, "end": 1280, "annotation": null}], [{"text": "Status", "start": 1281, "end": 1287, "annotation": null}, {"text": "Solidi", "start": 1288, "end": 1294, "annotation": null}, {"text": "29", "start": 1295, "end": 1297, "annotation": null}, {"text": ",", "start": 1297, "end": 1298, "annotation": null}, {"text": "455", "start": 1299, "end": 1302, "annotation": null}, {"text": "(", "start": 1303, "end": 1304, "annotation": null}, {"text": "1968", "start": 1304, "end": 1308, "annotation": null}, {"text": ")", "start": 1308, "end": 1309, "annotation": null}, {"text": "]", "start": 1309, "end": 1310, "annotation": null}, {"text": "20", "start": 1311, "end": 1313, "annotation": null}, {"text": "years", "start": 1314, "end": 1319, "annotation": null}, {"text": "ago", "start": 1320, "end": 1323, "annotation": null}, {"text": ".", "start": 1323, "end": 1324, "annotation": null}], [{"text": "It", "start": 1325, "end": 1327, "annotation": null}, {"text": "is", "start": 1328, "end": 1330, "annotation": null}, {"text": "further", "start": 1331, "end": 1338, "annotation": null}, {"text": "proposed", "start": 1339, "end": 1347, "annotation": null}, {"text": "that", "start": 1348, "end": 1352, "annotation": null}, {"text": "the", "start": 1353, "end": 1356, "annotation": null}, {"text": "multiple", "start": 1357, "end": 1365, "annotation": null}, {"text": "-", "start": 1365, "end": 1366, "annotation": null}, {"text": "acceptor", "start": 1366, "end": 1374, "annotation": null}, {"text": "behavior", "start": 1375, "end": 1383, "annotation": null}, {"text": "of", "start": 1384, "end": 1386, "annotation": null}, {"text": "substitutional", "start": 1387, "end": 1401, "annotation": null}, {"text": "Mn", "start": 1402, "end": 1404, "annotation": null}, {"text": ",", "start": 1404, "end": 1405, "annotation": null}, {"text": "Fe", "start": 1406, "end": 1408, "annotation": null}, {"text": ",", "start": 1408, "end": 1409, "annotation": null}, {"text": "and", "start": 1410, "end": 1413, "annotation": null}, {"text": "Co", "start": 1414, "end": 1416, "annotation": null}, {"text": "is", "start": 1417, "end": 1419, "annotation": null}, {"text": "due", "start": 1420, "end": 1423, "annotation": null}, {"text": "to", "start": 1424, "end": 1426, "annotation": null}, {"text": "a", "start": 1427, "end": 1428, "annotation": null}, {"text": "strong", "start": 1429, "end": 1435, "annotation": null}, {"text": "increase", "start": 1436, "end": 1444, "annotation": null}, {"text": "in", "start": 1445, "end": 1447, "annotation": null}, {"text": "the", "start": 1448, "end": 1451, "annotation": null}, {"text": "vacancy", "start": 1452, "end": 1459, "annotation": null}, {"text": "concentration", "start": 1460, "end": 1473, "annotation": null}, {"text": "in", "start": 1474, "end": 1476, "annotation": null}, {"text": "highly-P", "start": 1477, "end": 1485, "annotation": "DOPANT"}, {"text": "-", "start": 1485, "end": 1486, "annotation": null}, {"text": "doped", "start": 1486, "end": 1491, "annotation": null}, {"text": "Si", "start": 1492, "end": 1494, "annotation": "BASEMAT"}, {"text": "as", "start": 1495, "end": 1497, "annotation": null}, {"text": "compared", "start": 1498, "end": 1506, "annotation": null}, {"text": "with", "start": 1507, "end": 1511, "annotation": null}, {"text": "intrinsic", "start": 1512, "end": 1521, "annotation": null}, {"text": "Si", "start": 1522, "end": 1524, "annotation": null}, {"text": "for", "start": 1525, "end": 1528, "annotation": null}, {"text": "T", "start": 1529, "end": 1530, "annotation": null}, {"text": "<", "start": 1530, "end": 1531, "annotation": null}, {"text": "850", "start": 1531, "end": 1534, "annotation": null}, {"text": "\u00b0", "start": 1534, "end": 1535, "annotation": null}, {"text": "C", "start": 1535, "end": 1536, "annotation": null}, {"text": ".", "start": 1536, "end": 1537, "annotation": null}]]} -{"remark": "doping_annt2", "text": "Graphite carbon nitride (g-C3N4) is a new class of N-doped material that exists in 2D and 3D structures. They are nanoporous materials with multiple technological applications. That is why we present here a complete Density Functional Theory study about the properties of (2D) sheets: triazine and tri-s-triazine and the (3D) crystals. The layers can be stacked in different forms on the crystals. Thus, we consider different stacking types and calculate the adhesion energy between the layers. We also simulate the X-ray diffraction pattern (XRD) and Transmission Electron Microscopy (TEM) pattern using the optimized geometries, because all these data are useful for experimentalists. As g-C3N4 is an organic semiconductor, we inform the electrical properties for sheets and crystals. We perform band diagrams using symmetry paths in the Brillouin zone (BZ) and Density of States (DOS) calculations. We compare graphene and graphite materials with 2D and 3D g-C3N4 structures, because they are a good reference as they are well known.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Graphite", "start": 0, "end": 8, "annotation": "BASEMAT"}, {"text": "carbon", "start": 9, "end": 15, "annotation": "BASEMAT"}, {"text": "nitride", "start": 16, "end": 23, "annotation": "BASEMAT"}, {"text": "(", "start": 24, "end": 25, "annotation": null}, {"text": "g-C3N4", "start": 25, "end": 31, "annotation": null}, {"text": ")", "start": 31, "end": 32, "annotation": null}, {"text": "is", "start": 33, "end": 35, "annotation": null}, {"text": "a", "start": 36, "end": 37, "annotation": null}, {"text": "new", "start": 38, "end": 41, "annotation": null}, {"text": "class", "start": 42, "end": 47, "annotation": null}, {"text": "of", "start": 48, "end": 50, "annotation": null}, {"text": "N", "start": 51, "end": 52, "annotation": "DOPANT"}, {"text": "-", "start": 52, "end": 53, "annotation": "DOPANT"}, {"text": "doped", "start": 53, "end": 58, "annotation": null}, {"text": "material", "start": 59, "end": 67, "annotation": null}, {"text": "that", "start": 68, "end": 72, "annotation": null}, {"text": "exists", "start": 73, "end": 79, "annotation": null}, {"text": "in", "start": 80, "end": 82, "annotation": null}, {"text": "2D", "start": 83, "end": 85, "annotation": null}, {"text": "and", "start": 86, "end": 89, "annotation": null}, {"text": "3D", "start": 90, "end": 92, "annotation": null}, {"text": "structures", "start": 93, "end": 103, "annotation": null}, {"text": ".", "start": 103, "end": 104, "annotation": null}], [{"text": "They", "start": 105, "end": 109, "annotation": null}, {"text": "are", "start": 110, "end": 113, "annotation": null}, {"text": "nanoporous", "start": 114, "end": 124, "annotation": null}, {"text": "materials", "start": 125, "end": 134, "annotation": null}, {"text": "with", "start": 135, "end": 139, "annotation": null}, {"text": "multiple", "start": 140, "end": 148, "annotation": null}, {"text": "technological", "start": 149, "end": 162, "annotation": null}, {"text": "applications", "start": 163, "end": 175, "annotation": null}, {"text": ".", "start": 175, "end": 176, "annotation": null}], [{"text": "That", "start": 177, "end": 181, "annotation": null}, {"text": "is", "start": 182, "end": 184, "annotation": null}, {"text": "why", "start": 185, "end": 188, "annotation": null}, {"text": "we", "start": 189, "end": 191, "annotation": null}, {"text": "present", "start": 192, "end": 199, "annotation": null}, {"text": "here", "start": 200, "end": 204, "annotation": null}, {"text": "a", "start": 205, "end": 206, "annotation": null}, {"text": "complete", "start": 207, "end": 215, "annotation": null}, {"text": "Density", "start": 216, "end": 223, "annotation": null}, {"text": "Functional", "start": 224, "end": 234, "annotation": null}, {"text": "Theory", "start": 235, "end": 241, "annotation": null}, {"text": "study", "start": 242, "end": 247, "annotation": null}, {"text": "about", "start": 248, "end": 253, "annotation": null}, {"text": "the", "start": 254, "end": 257, "annotation": null}, {"text": "properties", "start": 258, "end": 268, "annotation": null}, {"text": "of", "start": 269, "end": 271, "annotation": null}, {"text": "(", "start": 272, "end": 273, "annotation": null}, {"text": "2D", "start": 273, "end": 275, "annotation": null}, {"text": ")", "start": 275, "end": 276, "annotation": null}, {"text": "sheets", "start": 277, "end": 283, "annotation": null}, {"text": ":", "start": 283, "end": 284, "annotation": null}, {"text": "triazine", "start": 285, "end": 293, "annotation": null}, {"text": "and", "start": 294, "end": 297, "annotation": null}, {"text": "tri-s-triazine", "start": 298, "end": 312, "annotation": null}, {"text": "and", "start": 313, "end": 316, "annotation": null}, {"text": "the", "start": 317, "end": 320, "annotation": null}, {"text": "(", "start": 321, "end": 322, "annotation": null}, {"text": "3D", "start": 322, "end": 324, "annotation": null}, {"text": ")", "start": 324, "end": 325, "annotation": null}, {"text": "crystals", "start": 326, "end": 334, "annotation": null}, {"text": ".", "start": 334, "end": 335, "annotation": null}], [{"text": "The", "start": 336, "end": 339, "annotation": null}, {"text": "layers", "start": 340, "end": 346, "annotation": null}, {"text": "can", "start": 347, "end": 350, "annotation": null}, {"text": "be", "start": 351, "end": 353, "annotation": null}, {"text": "stacked", "start": 354, "end": 361, "annotation": null}, {"text": "in", "start": 362, "end": 364, "annotation": null}, {"text": "different", "start": 365, "end": 374, "annotation": null}, {"text": "forms", "start": 375, "end": 380, "annotation": null}, {"text": "on", "start": 381, "end": 383, "annotation": null}, {"text": "the", "start": 384, "end": 387, "annotation": null}, {"text": "crystals", "start": 388, "end": 396, "annotation": null}, {"text": ".", "start": 396, "end": 397, "annotation": null}], [{"text": "Thus", "start": 398, "end": 402, "annotation": null}, {"text": ",", "start": 402, "end": 403, "annotation": null}, {"text": "we", "start": 404, "end": 406, "annotation": null}, {"text": "consider", "start": 407, "end": 415, "annotation": null}, {"text": "different", "start": 416, "end": 425, "annotation": null}, {"text": "stacking", "start": 426, "end": 434, "annotation": null}, {"text": "types", "start": 435, "end": 440, "annotation": null}, {"text": "and", "start": 441, "end": 444, "annotation": null}, {"text": "calculate", "start": 445, "end": 454, "annotation": null}, {"text": "the", "start": 455, "end": 458, "annotation": null}, {"text": "adhesion", "start": 459, "end": 467, "annotation": null}, {"text": "energy", "start": 468, "end": 474, "annotation": null}, {"text": "between", "start": 475, "end": 482, "annotation": null}, {"text": "the", "start": 483, "end": 486, "annotation": null}, {"text": "layers", "start": 487, "end": 493, "annotation": null}, {"text": ".", "start": 493, "end": 494, "annotation": null}], [{"text": "We", "start": 495, "end": 497, "annotation": null}, {"text": "also", "start": 498, "end": 502, "annotation": null}, {"text": "simulate", "start": 503, "end": 511, "annotation": null}, {"text": "the", "start": 512, "end": 515, "annotation": null}, {"text": "X-ray", "start": 516, "end": 521, "annotation": null}, {"text": "diffraction", "start": 522, "end": 533, "annotation": null}, {"text": "pattern", "start": 534, "end": 541, "annotation": null}, {"text": "(", "start": 542, "end": 543, "annotation": null}, {"text": "XRD", "start": 543, "end": 546, "annotation": null}, {"text": ")", "start": 546, "end": 547, "annotation": null}, {"text": "and", "start": 548, "end": 551, "annotation": null}, {"text": "Transmission", "start": 552, "end": 564, "annotation": null}, {"text": "Electron", "start": 565, "end": 573, "annotation": null}, {"text": "Microscopy", "start": 574, "end": 584, "annotation": null}, {"text": "(", "start": 585, "end": 586, "annotation": null}, {"text": "TEM", "start": 586, "end": 589, "annotation": null}, {"text": ")", "start": 589, "end": 590, "annotation": null}, {"text": "pattern", "start": 591, "end": 598, "annotation": null}, {"text": "using", "start": 599, "end": 604, "annotation": null}, {"text": "the", "start": 605, "end": 608, "annotation": null}, {"text": "optimized", "start": 609, "end": 618, "annotation": null}, {"text": "geometries", "start": 619, "end": 629, "annotation": null}, {"text": ",", "start": 629, "end": 630, "annotation": null}, {"text": "because", "start": 631, "end": 638, "annotation": null}, {"text": "all", "start": 639, "end": 642, "annotation": null}, {"text": "these", "start": 643, "end": 648, "annotation": null}, {"text": "data", "start": 649, "end": 653, "annotation": null}, {"text": "are", "start": 654, "end": 657, "annotation": null}, {"text": "useful", "start": 658, "end": 664, "annotation": null}, {"text": "for", "start": 665, "end": 668, "annotation": null}, {"text": "experimentalists", "start": 669, "end": 685, "annotation": null}, {"text": ".", "start": 685, "end": 686, "annotation": null}], [{"text": "As", "start": 687, "end": 689, "annotation": null}, {"text": "g-C3N4", "start": 690, "end": 696, "annotation": "BASEMAT"}, {"text": "is", "start": 697, "end": 699, "annotation": null}, {"text": "an", "start": 700, "end": 702, "annotation": null}, {"text": "organic", "start": 703, "end": 710, "annotation": null}, {"text": "semiconductor", "start": 711, "end": 724, "annotation": null}, {"text": ",", "start": 724, "end": 725, "annotation": null}, {"text": "we", "start": 726, "end": 728, "annotation": null}, {"text": "inform", "start": 729, "end": 735, "annotation": null}, {"text": "the", "start": 736, "end": 739, "annotation": null}, {"text": "electrical", "start": 740, "end": 750, "annotation": null}, {"text": "properties", "start": 751, "end": 761, "annotation": null}, {"text": "for", "start": 762, "end": 765, "annotation": null}, {"text": "sheets", "start": 766, "end": 772, "annotation": null}, {"text": "and", "start": 773, "end": 776, "annotation": null}, {"text": "crystals", "start": 777, "end": 785, "annotation": null}, {"text": ".", "start": 785, "end": 786, "annotation": null}], [{"text": "We", "start": 787, "end": 789, "annotation": null}, {"text": "perform", "start": 790, "end": 797, "annotation": null}, {"text": "band", "start": 798, "end": 802, "annotation": null}, {"text": "diagrams", "start": 803, "end": 811, "annotation": null}, {"text": "using", "start": 812, "end": 817, "annotation": null}, {"text": "symmetry", "start": 818, "end": 826, "annotation": null}, {"text": "paths", "start": 827, "end": 832, "annotation": null}, {"text": "in", "start": 833, "end": 835, "annotation": null}, {"text": "the", "start": 836, "end": 839, "annotation": null}, {"text": "Brillouin", "start": 840, "end": 849, "annotation": null}, {"text": "zone", "start": 850, "end": 854, "annotation": null}, {"text": "(", "start": 855, "end": 856, "annotation": null}, {"text": "BZ", "start": 856, "end": 858, "annotation": null}, {"text": ")", "start": 858, "end": 859, "annotation": null}, {"text": "and", "start": 860, "end": 863, "annotation": null}, {"text": "Density", "start": 864, "end": 871, "annotation": null}, {"text": "of", "start": 872, "end": 874, "annotation": null}, {"text": "States", "start": 875, "end": 881, "annotation": null}, {"text": "(", "start": 882, "end": 883, "annotation": null}, {"text": "DOS", "start": 883, "end": 886, "annotation": null}, {"text": ")", "start": 886, "end": 887, "annotation": null}, {"text": "calculations", "start": 888, "end": 900, "annotation": null}, {"text": ".", "start": 900, "end": 901, "annotation": null}], [{"text": "We", "start": 902, "end": 904, "annotation": null}, {"text": "compare", "start": 905, "end": 912, "annotation": null}, {"text": "graphene", "start": 913, "end": 921, "annotation": null}, {"text": "and", "start": 922, "end": 925, "annotation": null}, {"text": "graphite", "start": 926, "end": 934, "annotation": null}, {"text": "materials", "start": 935, "end": 944, "annotation": null}, {"text": "with", "start": 945, "end": 949, "annotation": null}, {"text": "2D", "start": 950, "end": 952, "annotation": null}, {"text": "and", "start": 953, "end": 956, "annotation": null}, {"text": "3D", "start": 957, "end": 959, "annotation": null}, {"text": "g-C3N4", "start": 960, "end": 966, "annotation": "BASEMAT"}, {"text": "structures", "start": 967, "end": 977, "annotation": null}, {"text": ",", "start": 977, "end": 978, "annotation": null}, {"text": "because", "start": 979, "end": 986, "annotation": null}, {"text": "they", "start": 987, "end": 991, "annotation": null}, {"text": "are", "start": 992, "end": 995, "annotation": null}, {"text": "a", "start": 996, "end": 997, "annotation": null}, {"text": "good", "start": 998, "end": 1002, "annotation": null}, {"text": "reference", "start": 1003, "end": 1012, "annotation": null}, {"text": "as", "start": 1013, "end": 1015, "annotation": null}, {"text": "they", "start": 1016, "end": 1020, "annotation": null}, {"text": "are", "start": 1021, "end": 1024, "annotation": null}, {"text": "well", "start": 1025, "end": 1029, "annotation": null}, {"text": "known", "start": 1030, "end": 1035, "annotation": null}, {"text": ".", "start": 1035, "end": 1036, "annotation": null}]]} +{"remark": "doping_annt1", "text": "The dependence of the solubilities and diffusion coefficients of Mn, Fe, and Co on doping with B, P, and As in Si have been studied by the tracer method. An enhancement of the solubility by up to 4 orders of magnitude has been observed for P concentrations greater than 5\u00d71018 cm-3 and temperatures between 700\u00b0C and 850\u00b0C. The enhancement is due to immobile substitutional 3d impurity atoms forming multiple-acceptor centers and pairs with P at those temperatures. By contrast, in intrinsic and highly-B-doped Si, impurities on interstitial sites dominate the solubility, with the exception of Mn for T<850\u00b0C. The interstitials act as donor centers resulting in a solubility enhancement for high B dopings (T<900\u00b0C, [B]>5\u00d71018 cm-3) due to the singly positive charge state and impurity-boron pairs. No evidence for a dependence of the diffusion coefficient on the charge state has been found. The analysis of the solubility on the Fermi level shows that the donor levels of interstitial Mn, Fe, and Co above 700\u00b0C abruptly shift towards the valence band with temperature. This is the first experimental evidence that a point-defect configuration becomes unstable at high temperatures in analogy to an instability of the Si self-interstitial conjectured by Seeger and Chick [Phys. Status Solidi 29, 455 (1968)] 20 years ago. It is further proposed that the multiple-acceptor behavior of substitutional Mn, Fe, and Co is due to a strong increase in the vacancy concentration in highly-P-doped Si as compared with intrinsic Si for T<850\u00b0C. \u00a9 1990 The American Physical Society.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "dependence", "start": 4, "end": 14, "annotation": null}, {"text": "of", "start": 15, "end": 17, "annotation": null}, {"text": "the", "start": 18, "end": 21, "annotation": null}, {"text": "solubilities", "start": 22, "end": 34, "annotation": null}, {"text": "and", "start": 35, "end": 38, "annotation": null}, {"text": "diffusion", "start": 39, "end": 48, "annotation": null}, {"text": "coefficients", "start": 49, "end": 61, "annotation": null}, {"text": "of", "start": 62, "end": 64, "annotation": null}, {"text": "Mn", "start": 65, "end": 67, "annotation": null}, {"text": ",", "start": 67, "end": 68, "annotation": null}, {"text": "Fe", "start": 69, "end": 71, "annotation": null}, {"text": ",", "start": 71, "end": 72, "annotation": null}, {"text": "and", "start": 73, "end": 76, "annotation": null}, {"text": "Co", "start": 77, "end": 79, "annotation": null}, {"text": "on", "start": 80, "end": 82, "annotation": null}, {"text": "doping", "start": 83, "end": 89, "annotation": null}, {"text": "with", "start": 90, "end": 94, "annotation": null}, {"text": "B", "start": 95, "end": 96, "annotation": "DOPANT"}, {"text": ",", "start": 96, "end": 97, "annotation": null}, {"text": "P", "start": 98, "end": 99, "annotation": "DOPANT"}, {"text": ",", "start": 99, "end": 100, "annotation": null}, {"text": "and", "start": 101, "end": 104, "annotation": null}, {"text": "As", "start": 105, "end": 107, "annotation": "DOPANT"}, {"text": "in", "start": 108, "end": 110, "annotation": null}, {"text": "Si", "start": 111, "end": 113, "annotation": "BASEMAT"}, {"text": "have", "start": 114, "end": 118, "annotation": null}, {"text": "been", "start": 119, "end": 123, "annotation": null}, {"text": "studied", "start": 124, "end": 131, "annotation": null}, {"text": "by", "start": 132, "end": 134, "annotation": null}, {"text": "the", "start": 135, "end": 138, "annotation": null}, {"text": "tracer", "start": 139, "end": 145, "annotation": null}, {"text": "method", "start": 146, "end": 152, "annotation": null}, {"text": ".", "start": 152, "end": 153, "annotation": null}], [{"text": "An", "start": 154, "end": 156, "annotation": null}, {"text": "enhancement", "start": 157, "end": 168, "annotation": null}, {"text": "of", "start": 169, "end": 171, "annotation": null}, {"text": "the", "start": 172, "end": 175, "annotation": null}, {"text": "solubility", "start": 176, "end": 186, "annotation": null}, {"text": "by", "start": 187, "end": 189, "annotation": null}, {"text": "up", "start": 190, "end": 192, "annotation": null}, {"text": "to", "start": 193, "end": 195, "annotation": null}, {"text": "4", "start": 196, "end": 197, "annotation": null}, {"text": "orders", "start": 198, "end": 204, "annotation": null}, {"text": "of", "start": 205, "end": 207, "annotation": null}, {"text": "magnitude", "start": 208, "end": 217, "annotation": null}, {"text": "has", "start": 218, "end": 221, "annotation": null}, {"text": "been", "start": 222, "end": 226, "annotation": null}, {"text": "observed", "start": 227, "end": 235, "annotation": null}, {"text": "for", "start": 236, "end": 239, "annotation": null}, {"text": "P", "start": 240, "end": 241, "annotation": null}, {"text": "concentrations", "start": 242, "end": 256, "annotation": null}, {"text": "greater", "start": 257, "end": 264, "annotation": null}, {"text": "than", "start": 265, "end": 269, "annotation": null}, {"text": "5", "start": 270, "end": 271, "annotation": null}, {"text": "\u00d7", "start": 271, "end": 272, "annotation": null}, {"text": "1018", "start": 272, "end": 276, "annotation": null}, {"text": "cm-3", "start": 277, "end": 281, "annotation": null}, {"text": "and", "start": 282, "end": 285, "annotation": null}, {"text": "temperatures", "start": 286, "end": 298, "annotation": null}, {"text": "between", "start": 299, "end": 306, "annotation": null}, {"text": "700", "start": 307, "end": 310, "annotation": null}, {"text": "\u00b0", "start": 310, "end": 311, "annotation": null}, {"text": "C", "start": 311, "end": 312, "annotation": null}, {"text": "and", "start": 313, "end": 316, "annotation": null}, {"text": "850", "start": 317, "end": 320, "annotation": null}, {"text": "\u00b0", "start": 320, "end": 321, "annotation": null}, {"text": "C", "start": 321, "end": 322, "annotation": null}, {"text": ".", "start": 322, "end": 323, "annotation": null}], [{"text": "The", "start": 324, "end": 327, "annotation": null}, {"text": "enhancement", "start": 328, "end": 339, "annotation": null}, {"text": "is", "start": 340, "end": 342, "annotation": null}, {"text": "due", "start": 343, "end": 346, "annotation": null}, {"text": "to", "start": 347, "end": 349, "annotation": null}, {"text": "immobile", "start": 350, "end": 358, "annotation": null}, {"text": "substitutional", "start": 359, "end": 373, "annotation": null}, {"text": "3d", "start": 374, "end": 376, "annotation": null}, {"text": "impurity", "start": 377, "end": 385, "annotation": null}, {"text": "atoms", "start": 386, "end": 391, "annotation": null}, {"text": "forming", "start": 392, "end": 399, "annotation": null}, {"text": "multiple", "start": 400, "end": 408, "annotation": null}, {"text": "-", "start": 408, "end": 409, "annotation": null}, {"text": "acceptor", "start": 409, "end": 417, "annotation": null}, {"text": "centers", "start": 418, "end": 425, "annotation": null}, {"text": "and", "start": 426, "end": 429, "annotation": null}, {"text": "pairs", "start": 430, "end": 435, "annotation": null}, {"text": "with", "start": 436, "end": 440, "annotation": null}, {"text": "P", "start": 441, "end": 442, "annotation": null}, {"text": "at", "start": 443, "end": 445, "annotation": null}, {"text": "those", "start": 446, "end": 451, "annotation": null}, {"text": "temperatures", "start": 452, "end": 464, "annotation": null}, {"text": ".", "start": 464, "end": 465, "annotation": null}], [{"text": "By", "start": 466, "end": 468, "annotation": null}, {"text": "contrast", "start": 469, "end": 477, "annotation": null}, {"text": ",", "start": 477, "end": 478, "annotation": null}, {"text": "in", "start": 479, "end": 481, "annotation": null}, {"text": "intrinsic", "start": 482, "end": 491, "annotation": null}, {"text": "and", "start": 492, "end": 495, "annotation": null}, {"text": "highly-B", "start": 496, "end": 504, "annotation": "DOPANT"}, {"text": "-", "start": 504, "end": 505, "annotation": null}, {"text": "doped", "start": 505, "end": 510, "annotation": null}, {"text": "Si", "start": 511, "end": 513, "annotation": "BASEMAT"}, {"text": ",", "start": 513, "end": 514, "annotation": null}, {"text": "impurities", "start": 515, "end": 525, "annotation": null}, {"text": "on", "start": 526, "end": 528, "annotation": null}, {"text": "interstitial", "start": 529, "end": 541, "annotation": null}, {"text": "sites", "start": 542, "end": 547, "annotation": null}, {"text": "dominate", "start": 548, "end": 556, "annotation": null}, {"text": "the", "start": 557, "end": 560, "annotation": null}, {"text": "solubility", "start": 561, "end": 571, "annotation": null}, {"text": ",", "start": 571, "end": 572, "annotation": null}, {"text": "with", "start": 573, "end": 577, "annotation": null}, {"text": "the", "start": 578, "end": 581, "annotation": null}, {"text": "exception", "start": 582, "end": 591, "annotation": null}, {"text": "of", "start": 592, "end": 594, "annotation": null}, {"text": "Mn", "start": 595, "end": 597, "annotation": null}, {"text": "for", "start": 598, "end": 601, "annotation": null}, {"text": "T", "start": 602, "end": 603, "annotation": null}, {"text": "<", "start": 603, "end": 604, "annotation": null}, {"text": "850", "start": 604, "end": 607, "annotation": null}, {"text": "\u00b0", "start": 607, "end": 608, "annotation": null}, {"text": "C", "start": 608, "end": 609, "annotation": null}, {"text": ".", "start": 609, "end": 610, "annotation": null}], [{"text": "The", "start": 611, "end": 614, "annotation": null}, {"text": "interstitials", "start": 615, "end": 628, "annotation": null}, {"text": "act", "start": 629, "end": 632, "annotation": null}, {"text": "as", "start": 633, "end": 635, "annotation": null}, {"text": "donor", "start": 636, "end": 641, "annotation": null}, {"text": "centers", "start": 642, "end": 649, "annotation": null}, {"text": "resulting", "start": 650, "end": 659, "annotation": null}, {"text": "in", "start": 660, "end": 662, "annotation": null}, {"text": "a", "start": 663, "end": 664, "annotation": null}, {"text": "solubility", "start": 665, "end": 675, "annotation": null}, {"text": "enhancement", "start": 676, "end": 687, "annotation": null}, {"text": "for", "start": 688, "end": 691, "annotation": null}, {"text": "high", "start": 692, "end": 696, "annotation": null}, {"text": "B", "start": 697, "end": 698, "annotation": "DOPANT"}, {"text": "dopings", "start": 699, "end": 706, "annotation": null}, {"text": "(", "start": 707, "end": 708, "annotation": null}, {"text": "T", "start": 708, "end": 709, "annotation": null}, {"text": "<", "start": 709, "end": 710, "annotation": null}, {"text": "900", "start": 710, "end": 713, "annotation": null}, {"text": "\u00b0", "start": 713, "end": 714, "annotation": null}, {"text": "C", "start": 714, "end": 715, "annotation": null}, {"text": ",", "start": 715, "end": 716, "annotation": null}, {"text": "[B]", "start": 717, "end": 720, "annotation": null}, {"text": ">", "start": 720, "end": 721, "annotation": null}, {"text": "5", "start": 721, "end": 722, "annotation": null}, {"text": "\u00d7", "start": 722, "end": 723, "annotation": null}, {"text": "1018", "start": 723, "end": 727, "annotation": null}, {"text": "cm-3", "start": 728, "end": 732, "annotation": null}, {"text": ")", "start": 732, "end": 733, "annotation": null}, {"text": "due", "start": 734, "end": 737, "annotation": null}, {"text": "to", "start": 738, "end": 740, "annotation": null}, {"text": "the", "start": 741, "end": 744, "annotation": null}, {"text": "singly", "start": 745, "end": 751, "annotation": null}, {"text": "positive", "start": 752, "end": 760, "annotation": null}, {"text": "charge", "start": 761, "end": 767, "annotation": null}, {"text": "state", "start": 768, "end": 773, "annotation": null}, {"text": "and", "start": 774, "end": 777, "annotation": null}, {"text": "impurity", "start": 778, "end": 786, "annotation": null}, {"text": "-", "start": 786, "end": 787, "annotation": null}, {"text": "boron", "start": 787, "end": 792, "annotation": null}, {"text": "pairs", "start": 793, "end": 798, "annotation": null}, {"text": ".", "start": 798, "end": 799, "annotation": null}], [{"text": "No", "start": 800, "end": 802, "annotation": null}, {"text": "evidence", "start": 803, "end": 811, "annotation": null}, {"text": "for", "start": 812, "end": 815, "annotation": null}, {"text": "a", "start": 816, "end": 817, "annotation": null}, {"text": "dependence", "start": 818, "end": 828, "annotation": null}, {"text": "of", "start": 829, "end": 831, "annotation": null}, {"text": "the", "start": 832, "end": 835, "annotation": null}, {"text": "diffusion", "start": 836, "end": 845, "annotation": null}, {"text": "coefficient", "start": 846, "end": 857, "annotation": null}, {"text": "on", "start": 858, "end": 860, "annotation": null}, {"text": "the", "start": 861, "end": 864, "annotation": null}, {"text": "charge", "start": 865, "end": 871, "annotation": null}, {"text": "state", "start": 872, "end": 877, "annotation": null}, {"text": "has", "start": 878, "end": 881, "annotation": null}, {"text": "been", "start": 882, "end": 886, "annotation": null}, {"text": "found", "start": 887, "end": 892, "annotation": null}, {"text": ".", "start": 892, "end": 893, "annotation": null}], [{"text": "The", "start": 894, "end": 897, "annotation": null}, {"text": "analysis", "start": 898, "end": 906, "annotation": null}, {"text": "of", "start": 907, "end": 909, "annotation": null}, {"text": "the", "start": 910, "end": 913, "annotation": null}, {"text": "solubility", "start": 914, "end": 924, "annotation": null}, {"text": "on", "start": 925, "end": 927, "annotation": null}, {"text": "the", "start": 928, "end": 931, "annotation": null}, {"text": "Fermi", "start": 932, "end": 937, "annotation": null}, {"text": "level", "start": 938, "end": 943, "annotation": null}, {"text": "shows", "start": 944, "end": 949, "annotation": null}, {"text": "that", "start": 950, "end": 954, "annotation": null}, {"text": "the", "start": 955, "end": 958, "annotation": null}, {"text": "donor", "start": 959, "end": 964, "annotation": null}, {"text": "levels", "start": 965, "end": 971, "annotation": null}, {"text": "of", "start": 972, "end": 974, "annotation": null}, {"text": "interstitial", "start": 975, "end": 987, "annotation": null}, {"text": "Mn", "start": 988, "end": 990, "annotation": null}, {"text": ",", "start": 990, "end": 991, "annotation": null}, {"text": "Fe", "start": 992, "end": 994, "annotation": null}, {"text": ",", "start": 994, "end": 995, "annotation": null}, {"text": "and", "start": 996, "end": 999, "annotation": null}, {"text": "Co", "start": 1000, "end": 1002, "annotation": null}, {"text": "above", "start": 1003, "end": 1008, "annotation": null}, {"text": "700", "start": 1009, "end": 1012, "annotation": null}, {"text": "\u00b0", "start": 1012, "end": 1013, "annotation": null}, {"text": "C", "start": 1013, "end": 1014, "annotation": null}, {"text": "abruptly", "start": 1015, "end": 1023, "annotation": null}, {"text": "shift", "start": 1024, "end": 1029, "annotation": null}, {"text": "towards", "start": 1030, "end": 1037, "annotation": null}, {"text": "the", "start": 1038, "end": 1041, "annotation": null}, {"text": "valence", "start": 1042, "end": 1049, "annotation": null}, {"text": "band", "start": 1050, "end": 1054, "annotation": null}, {"text": "with", "start": 1055, "end": 1059, "annotation": null}, {"text": "temperature", "start": 1060, "end": 1071, "annotation": null}, {"text": ".", "start": 1071, "end": 1072, "annotation": null}], [{"text": "This", "start": 1073, "end": 1077, "annotation": null}, {"text": "is", "start": 1078, "end": 1080, "annotation": null}, {"text": "the", "start": 1081, "end": 1084, "annotation": null}, {"text": "first", "start": 1085, "end": 1090, "annotation": null}, {"text": "experimental", "start": 1091, "end": 1103, "annotation": null}, {"text": "evidence", "start": 1104, "end": 1112, "annotation": null}, {"text": "that", "start": 1113, "end": 1117, "annotation": null}, {"text": "a", "start": 1118, "end": 1119, "annotation": null}, {"text": "point", "start": 1120, "end": 1125, "annotation": null}, {"text": "-", "start": 1125, "end": 1126, "annotation": null}, {"text": "defect", "start": 1126, "end": 1132, "annotation": null}, {"text": "configuration", "start": 1133, "end": 1146, "annotation": null}, {"text": "becomes", "start": 1147, "end": 1154, "annotation": null}, {"text": "unstable", "start": 1155, "end": 1163, "annotation": null}, {"text": "at", "start": 1164, "end": 1166, "annotation": null}, {"text": "high", "start": 1167, "end": 1171, "annotation": null}, {"text": "temperatures", "start": 1172, "end": 1184, "annotation": null}, {"text": "in", "start": 1185, "end": 1187, "annotation": null}, {"text": "analogy", "start": 1188, "end": 1195, "annotation": null}, {"text": "to", "start": 1196, "end": 1198, "annotation": null}, {"text": "an", "start": 1199, "end": 1201, "annotation": null}, {"text": "instability", "start": 1202, "end": 1213, "annotation": null}, {"text": "of", "start": 1214, "end": 1216, "annotation": null}, {"text": "the", "start": 1217, "end": 1220, "annotation": null}, {"text": "Si", "start": 1221, "end": 1223, "annotation": null}, {"text": "self", "start": 1224, "end": 1228, "annotation": null}, {"text": "-", "start": 1228, "end": 1229, "annotation": null}, {"text": "interstitial", "start": 1229, "end": 1241, "annotation": null}, {"text": "conjectured", "start": 1242, "end": 1253, "annotation": null}, {"text": "by", "start": 1254, "end": 1256, "annotation": null}, {"text": "Seeger", "start": 1257, "end": 1263, "annotation": null}, {"text": "and", "start": 1264, "end": 1267, "annotation": null}, {"text": "Chick", "start": 1268, "end": 1273, "annotation": null}, {"text": "[", "start": 1274, "end": 1275, "annotation": null}, {"text": "Phys", "start": 1275, "end": 1279, "annotation": null}, {"text": ".", "start": 1279, "end": 1280, "annotation": null}], [{"text": "Status", "start": 1281, "end": 1287, "annotation": null}, {"text": "Solidi", "start": 1288, "end": 1294, "annotation": null}, {"text": "29", "start": 1295, "end": 1297, "annotation": null}, {"text": ",", "start": 1297, "end": 1298, "annotation": null}, {"text": "455", "start": 1299, "end": 1302, "annotation": null}, {"text": "(", "start": 1303, "end": 1304, "annotation": null}, {"text": "1968", "start": 1304, "end": 1308, "annotation": null}, {"text": ")", "start": 1308, "end": 1309, "annotation": null}, {"text": "]", "start": 1309, "end": 1310, "annotation": null}, {"text": "20", "start": 1311, "end": 1313, "annotation": null}, {"text": "years", "start": 1314, "end": 1319, "annotation": null}, {"text": "ago", "start": 1320, "end": 1323, "annotation": null}, {"text": ".", "start": 1323, "end": 1324, "annotation": null}], [{"text": "It", "start": 1325, "end": 1327, "annotation": null}, {"text": "is", "start": 1328, "end": 1330, "annotation": null}, {"text": "further", "start": 1331, "end": 1338, "annotation": null}, {"text": "proposed", "start": 1339, "end": 1347, "annotation": null}, {"text": "that", "start": 1348, "end": 1352, "annotation": null}, {"text": "the", "start": 1353, "end": 1356, "annotation": null}, {"text": "multiple", "start": 1357, "end": 1365, "annotation": null}, {"text": "-", "start": 1365, "end": 1366, "annotation": null}, {"text": "acceptor", "start": 1366, "end": 1374, "annotation": null}, {"text": "behavior", "start": 1375, "end": 1383, "annotation": null}, {"text": "of", "start": 1384, "end": 1386, "annotation": null}, {"text": "substitutional", "start": 1387, "end": 1401, "annotation": null}, {"text": "Mn", "start": 1402, "end": 1404, "annotation": null}, {"text": ",", "start": 1404, "end": 1405, "annotation": null}, {"text": "Fe", "start": 1406, "end": 1408, "annotation": null}, {"text": ",", "start": 1408, "end": 1409, "annotation": null}, {"text": "and", "start": 1410, "end": 1413, "annotation": null}, {"text": "Co", "start": 1414, "end": 1416, "annotation": null}, {"text": "is", "start": 1417, "end": 1419, "annotation": null}, {"text": "due", "start": 1420, "end": 1423, "annotation": null}, {"text": "to", "start": 1424, "end": 1426, "annotation": null}, {"text": "a", "start": 1427, "end": 1428, "annotation": null}, {"text": "strong", "start": 1429, "end": 1435, "annotation": null}, {"text": "increase", "start": 1436, "end": 1444, "annotation": null}, {"text": "in", "start": 1445, "end": 1447, "annotation": null}, {"text": "the", "start": 1448, "end": 1451, "annotation": null}, {"text": "vacancy", "start": 1452, "end": 1459, "annotation": null}, {"text": "concentration", "start": 1460, "end": 1473, "annotation": null}, {"text": "in", "start": 1474, "end": 1476, "annotation": null}, {"text": "highly-P", "start": 1477, "end": 1485, "annotation": "DOPANT"}, {"text": "-", "start": 1485, "end": 1486, "annotation": null}, {"text": "doped", "start": 1486, "end": 1491, "annotation": null}, {"text": "Si", "start": 1492, "end": 1494, "annotation": "BASEMAT"}, {"text": "as", "start": 1495, "end": 1497, "annotation": null}, {"text": "compared", "start": 1498, "end": 1506, "annotation": null}, {"text": "with", "start": 1507, "end": 1511, "annotation": null}, {"text": "intrinsic", "start": 1512, "end": 1521, "annotation": null}, {"text": "Si", "start": 1522, "end": 1524, "annotation": null}, {"text": "for", "start": 1525, "end": 1528, "annotation": null}, {"text": "T", "start": 1529, "end": 1530, "annotation": null}, {"text": "<", "start": 1530, "end": 1531, "annotation": null}, {"text": "850", "start": 1531, "end": 1534, "annotation": null}, {"text": "\u00b0", "start": 1534, "end": 1535, "annotation": null}, {"text": "C", "start": 1535, "end": 1536, "annotation": null}, {"text": ".", "start": 1536, "end": 1537, "annotation": null}]], "meta": {"doi": "10.1103/PhysRevB.41.5770"}} +{"remark": "doping_annt2", "text": "Graphite carbon nitride (g-C3N4) is a new class of N-doped material that exists in 2D and 3D structures. They are nanoporous materials with multiple technological applications. That is why we present here a complete Density Functional Theory study about the properties of (2D) sheets: triazine and tri-s-triazine and the (3D) crystals. The layers can be stacked in different forms on the crystals. Thus, we consider different stacking types and calculate the adhesion energy between the layers. We also simulate the X-ray diffraction pattern (XRD) and Transmission Electron Microscopy (TEM) pattern using the optimized geometries, because all these data are useful for experimentalists. As g-C3N4 is an organic semiconductor, we inform the electrical properties for sheets and crystals. We perform band diagrams using symmetry paths in the Brillouin zone (BZ) and Density of States (DOS) calculations. We compare graphene and graphite materials with 2D and 3D g-C3N4 structures, because they are a good reference as they are well known.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Graphite", "start": 0, "end": 8, "annotation": "BASEMAT"}, {"text": "carbon", "start": 9, "end": 15, "annotation": "BASEMAT"}, {"text": "nitride", "start": 16, "end": 23, "annotation": "BASEMAT"}, {"text": "(", "start": 24, "end": 25, "annotation": null}, {"text": "g-C3N4", "start": 25, "end": 31, "annotation": null}, {"text": ")", "start": 31, "end": 32, "annotation": null}, {"text": "is", "start": 33, "end": 35, "annotation": null}, {"text": "a", "start": 36, "end": 37, "annotation": null}, {"text": "new", "start": 38, "end": 41, "annotation": null}, {"text": "class", "start": 42, "end": 47, "annotation": null}, {"text": "of", "start": 48, "end": 50, "annotation": null}, {"text": "N", "start": 51, "end": 52, "annotation": "DOPANT"}, {"text": "-", "start": 52, "end": 53, "annotation": "DOPANT"}, {"text": "doped", "start": 53, "end": 58, "annotation": null}, {"text": "material", "start": 59, "end": 67, "annotation": null}, {"text": "that", "start": 68, "end": 72, "annotation": null}, {"text": "exists", "start": 73, "end": 79, "annotation": null}, {"text": "in", "start": 80, "end": 82, "annotation": null}, {"text": "2D", "start": 83, "end": 85, "annotation": null}, {"text": "and", "start": 86, "end": 89, "annotation": null}, {"text": "3D", "start": 90, "end": 92, "annotation": null}, {"text": "structures", "start": 93, "end": 103, "annotation": null}, {"text": ".", "start": 103, "end": 104, "annotation": null}], [{"text": "They", "start": 105, "end": 109, "annotation": null}, {"text": "are", "start": 110, "end": 113, "annotation": null}, {"text": "nanoporous", "start": 114, "end": 124, "annotation": null}, {"text": "materials", "start": 125, "end": 134, "annotation": null}, {"text": "with", "start": 135, "end": 139, "annotation": null}, {"text": "multiple", "start": 140, "end": 148, "annotation": null}, {"text": "technological", "start": 149, "end": 162, "annotation": null}, {"text": "applications", "start": 163, "end": 175, "annotation": null}, {"text": ".", "start": 175, "end": 176, "annotation": null}], [{"text": "That", "start": 177, "end": 181, "annotation": null}, {"text": "is", "start": 182, "end": 184, "annotation": null}, {"text": "why", "start": 185, "end": 188, "annotation": null}, {"text": "we", "start": 189, "end": 191, "annotation": null}, {"text": "present", "start": 192, "end": 199, "annotation": null}, {"text": "here", "start": 200, "end": 204, "annotation": null}, {"text": "a", "start": 205, "end": 206, "annotation": null}, {"text": "complete", "start": 207, "end": 215, "annotation": null}, {"text": "Density", "start": 216, "end": 223, "annotation": null}, {"text": "Functional", "start": 224, "end": 234, "annotation": null}, {"text": "Theory", "start": 235, "end": 241, "annotation": null}, {"text": "study", "start": 242, "end": 247, "annotation": null}, {"text": "about", "start": 248, "end": 253, "annotation": null}, {"text": "the", "start": 254, "end": 257, "annotation": null}, {"text": "properties", "start": 258, "end": 268, "annotation": null}, {"text": "of", "start": 269, "end": 271, "annotation": null}, {"text": "(", "start": 272, "end": 273, "annotation": null}, {"text": "2D", "start": 273, "end": 275, "annotation": null}, {"text": ")", "start": 275, "end": 276, "annotation": null}, {"text": "sheets", "start": 277, "end": 283, "annotation": null}, {"text": ":", "start": 283, "end": 284, "annotation": null}, {"text": "triazine", "start": 285, "end": 293, "annotation": null}, {"text": "and", "start": 294, "end": 297, "annotation": null}, {"text": "tri-s-triazine", "start": 298, "end": 312, "annotation": null}, {"text": "and", "start": 313, "end": 316, "annotation": null}, {"text": "the", "start": 317, "end": 320, "annotation": null}, {"text": "(", "start": 321, "end": 322, "annotation": null}, {"text": "3D", "start": 322, "end": 324, "annotation": null}, {"text": ")", "start": 324, "end": 325, "annotation": null}, {"text": "crystals", "start": 326, "end": 334, "annotation": null}, {"text": ".", "start": 334, "end": 335, "annotation": null}], [{"text": "The", "start": 336, "end": 339, "annotation": null}, {"text": "layers", "start": 340, "end": 346, "annotation": null}, {"text": "can", "start": 347, "end": 350, "annotation": null}, {"text": "be", "start": 351, "end": 353, "annotation": null}, {"text": "stacked", "start": 354, "end": 361, "annotation": null}, {"text": "in", "start": 362, "end": 364, "annotation": null}, {"text": "different", "start": 365, "end": 374, "annotation": null}, {"text": "forms", "start": 375, "end": 380, "annotation": null}, {"text": "on", "start": 381, "end": 383, "annotation": null}, {"text": "the", "start": 384, "end": 387, "annotation": null}, {"text": "crystals", "start": 388, "end": 396, "annotation": null}, {"text": ".", "start": 396, "end": 397, "annotation": null}], [{"text": "Thus", "start": 398, "end": 402, "annotation": null}, {"text": ",", "start": 402, "end": 403, "annotation": null}, {"text": "we", "start": 404, "end": 406, "annotation": null}, {"text": "consider", "start": 407, "end": 415, "annotation": null}, {"text": "different", "start": 416, "end": 425, "annotation": null}, {"text": "stacking", "start": 426, "end": 434, "annotation": null}, {"text": "types", "start": 435, "end": 440, "annotation": null}, {"text": "and", "start": 441, "end": 444, "annotation": null}, {"text": "calculate", "start": 445, "end": 454, "annotation": null}, {"text": "the", "start": 455, "end": 458, "annotation": null}, {"text": "adhesion", "start": 459, "end": 467, "annotation": null}, {"text": "energy", "start": 468, "end": 474, "annotation": null}, {"text": "between", "start": 475, "end": 482, "annotation": null}, {"text": "the", "start": 483, "end": 486, "annotation": null}, {"text": "layers", "start": 487, "end": 493, "annotation": null}, {"text": ".", "start": 493, "end": 494, "annotation": null}], [{"text": "We", "start": 495, "end": 497, "annotation": null}, {"text": "also", "start": 498, "end": 502, "annotation": null}, {"text": "simulate", "start": 503, "end": 511, "annotation": null}, {"text": "the", "start": 512, "end": 515, "annotation": null}, {"text": "X-ray", "start": 516, "end": 521, "annotation": null}, {"text": "diffraction", "start": 522, "end": 533, "annotation": null}, {"text": "pattern", "start": 534, "end": 541, "annotation": null}, {"text": "(", "start": 542, "end": 543, "annotation": null}, {"text": "XRD", "start": 543, "end": 546, "annotation": null}, {"text": ")", "start": 546, "end": 547, "annotation": null}, {"text": "and", "start": 548, "end": 551, "annotation": null}, {"text": "Transmission", "start": 552, "end": 564, "annotation": null}, {"text": "Electron", "start": 565, "end": 573, "annotation": null}, {"text": "Microscopy", "start": 574, "end": 584, "annotation": null}, {"text": "(", "start": 585, "end": 586, "annotation": null}, {"text": "TEM", "start": 586, "end": 589, "annotation": null}, {"text": ")", "start": 589, "end": 590, "annotation": null}, {"text": "pattern", "start": 591, "end": 598, "annotation": null}, {"text": "using", "start": 599, "end": 604, "annotation": null}, {"text": "the", "start": 605, "end": 608, "annotation": null}, {"text": "optimized", "start": 609, "end": 618, "annotation": null}, {"text": "geometries", "start": 619, "end": 629, "annotation": null}, {"text": ",", "start": 629, "end": 630, "annotation": null}, {"text": "because", "start": 631, "end": 638, "annotation": null}, {"text": "all", "start": 639, "end": 642, "annotation": null}, {"text": "these", "start": 643, "end": 648, "annotation": null}, {"text": "data", "start": 649, "end": 653, "annotation": null}, {"text": "are", "start": 654, "end": 657, "annotation": null}, {"text": "useful", "start": 658, "end": 664, "annotation": null}, {"text": "for", "start": 665, "end": 668, "annotation": null}, {"text": "experimentalists", "start": 669, "end": 685, "annotation": null}, {"text": ".", "start": 685, "end": 686, "annotation": null}], [{"text": "As", "start": 687, "end": 689, "annotation": null}, {"text": "g-C3N4", "start": 690, "end": 696, "annotation": "BASEMAT"}, {"text": "is", "start": 697, "end": 699, "annotation": null}, {"text": "an", "start": 700, "end": 702, "annotation": null}, {"text": "organic", "start": 703, "end": 710, "annotation": null}, {"text": "semiconductor", "start": 711, "end": 724, "annotation": null}, {"text": ",", "start": 724, "end": 725, "annotation": null}, {"text": "we", "start": 726, "end": 728, "annotation": null}, {"text": "inform", "start": 729, "end": 735, "annotation": null}, {"text": "the", "start": 736, "end": 739, "annotation": null}, {"text": "electrical", "start": 740, "end": 750, "annotation": null}, {"text": "properties", "start": 751, "end": 761, "annotation": null}, {"text": "for", "start": 762, "end": 765, "annotation": null}, {"text": "sheets", "start": 766, "end": 772, "annotation": null}, {"text": "and", "start": 773, "end": 776, "annotation": null}, {"text": "crystals", "start": 777, "end": 785, "annotation": null}, {"text": ".", "start": 785, "end": 786, "annotation": null}], [{"text": "We", "start": 787, "end": 789, "annotation": null}, {"text": "perform", "start": 790, "end": 797, "annotation": null}, {"text": "band", "start": 798, "end": 802, "annotation": null}, {"text": "diagrams", "start": 803, "end": 811, "annotation": null}, {"text": "using", "start": 812, "end": 817, "annotation": null}, {"text": "symmetry", "start": 818, "end": 826, "annotation": null}, {"text": "paths", "start": 827, "end": 832, "annotation": null}, {"text": "in", "start": 833, "end": 835, "annotation": null}, {"text": "the", "start": 836, "end": 839, "annotation": null}, {"text": "Brillouin", "start": 840, "end": 849, "annotation": null}, {"text": "zone", "start": 850, "end": 854, "annotation": null}, {"text": "(", "start": 855, "end": 856, "annotation": null}, {"text": "BZ", "start": 856, "end": 858, "annotation": null}, {"text": ")", "start": 858, "end": 859, "annotation": null}, {"text": "and", "start": 860, "end": 863, "annotation": null}, {"text": "Density", "start": 864, "end": 871, "annotation": null}, {"text": "of", "start": 872, "end": 874, "annotation": null}, {"text": "States", "start": 875, "end": 881, "annotation": null}, {"text": "(", "start": 882, "end": 883, "annotation": null}, {"text": "DOS", "start": 883, "end": 886, "annotation": null}, {"text": ")", "start": 886, "end": 887, "annotation": null}, {"text": "calculations", "start": 888, "end": 900, "annotation": null}, {"text": ".", "start": 900, "end": 901, "annotation": null}], [{"text": "We", "start": 902, "end": 904, "annotation": null}, {"text": "compare", "start": 905, "end": 912, "annotation": null}, {"text": "graphene", "start": 913, "end": 921, "annotation": null}, {"text": "and", "start": 922, "end": 925, "annotation": null}, {"text": "graphite", "start": 926, "end": 934, "annotation": null}, {"text": "materials", "start": 935, "end": 944, "annotation": null}, {"text": "with", "start": 945, "end": 949, "annotation": null}, {"text": "2D", "start": 950, "end": 952, "annotation": null}, {"text": "and", "start": 953, "end": 956, "annotation": null}, {"text": "3D", "start": 957, "end": 959, "annotation": null}, {"text": "g-C3N4", "start": 960, "end": 966, "annotation": "BASEMAT"}, {"text": "structures", "start": 967, "end": 977, "annotation": null}, {"text": ",", "start": 977, "end": 978, "annotation": null}, {"text": "because", "start": 979, "end": 986, "annotation": null}, {"text": "they", "start": 987, "end": 991, "annotation": null}, {"text": "are", "start": 992, "end": 995, "annotation": null}, {"text": "a", "start": 996, "end": 997, "annotation": null}, {"text": "good", "start": 998, "end": 1002, "annotation": null}, {"text": "reference", "start": 1003, "end": 1012, "annotation": null}, {"text": "as", "start": 1013, "end": 1015, "annotation": null}, {"text": "they", "start": 1016, "end": 1020, "annotation": null}, {"text": "are", "start": 1021, "end": 1024, "annotation": null}, {"text": "well", "start": 1025, "end": 1029, "annotation": null}, {"text": "known", "start": 1030, "end": 1035, "annotation": null}, {"text": ".", "start": 1035, "end": 1036, "annotation": null}]], "meta": {"doi": "10.1016/j.comptc.2016.11.004"}} {"text": "Donor-doped BaTiO3 ceramics show very high endurance under DC field stress and are there-fore suitable candidates for the manufacture of multilayer capacitors with thin dielectric layers. CeO2 additives were found to be excellent donor dopants. The donor effect results from Ce3+ ions incorporated on Ba sites of the perovskite lattice. Defect chemistry, solubility of CeO2 in BaTiO3 and the ferroelectric phase transition of Ce-modified BaTiO3 have been studied by several methods.", "meta": {"doi": "10.1016/0955-2219(94)90062-0"}, "_input_hash": 219447319, "_task_hash": 1237719699, "tokens": [[{"text": "Donor", "start": 0, "end": 5, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 6, "end": 7, "id": 1, "annotation": null}, {"text": "doped", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": "BaTiO3", "start": 14, "end": 20, "id": 3, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 21, "end": 29, "id": 4, "annotation": null}, {"text": "show", "start": 30, "end": 34, "id": 5, "annotation": null}, {"text": "very", "start": 35, "end": 39, "id": 6, "annotation": null}, {"text": "high", "start": 40, "end": 44, "id": 7, "annotation": null}, {"text": "endurance", "start": 45, "end": 54, "id": 8, "annotation": null}, {"text": "under", "start": 55, "end": 60, "id": 9, "annotation": null}, {"text": "DC", "start": 61, "end": 63, "id": 10, "annotation": null}, {"text": "field", "start": 64, "end": 69, "id": 11, "annotation": null}, {"text": "stress", "start": 70, "end": 76, "id": 12, "annotation": null}, {"text": "and", "start": 77, "end": 80, "id": 13, "annotation": null}, {"text": "are", "start": 81, "end": 84, "id": 14, "annotation": null}, {"text": "there", "start": 85, "end": 90, "id": 15, "annotation": null}, {"text": "-", "start": 91, "end": 92, "id": 16, "annotation": null}, {"text": "fore", "start": 93, "end": 97, "id": 17, "annotation": null}, {"text": "suitable", "start": 98, "end": 106, "id": 18, "annotation": null}, {"text": "candidates", "start": 107, "end": 117, "id": 19, "annotation": null}, {"text": "for", "start": 118, "end": 121, "id": 20, "annotation": null}, {"text": "the", "start": 122, "end": 125, "id": 21, "annotation": null}, {"text": "manufacture", "start": 126, "end": 137, "id": 22, "annotation": null}, {"text": "of", "start": 138, "end": 140, "id": 23, "annotation": null}, {"text": "multilayer", "start": 141, "end": 151, "id": 24, "annotation": null}, {"text": "capacitors", "start": 152, "end": 162, "id": 25, "annotation": null}, {"text": "with", "start": 163, "end": 167, "id": 26, "annotation": null}, {"text": "thin", "start": 168, "end": 172, "id": 27, "annotation": null}, {"text": "dielectric", "start": 173, "end": 183, "id": 28, "annotation": null}, {"text": "layers", "start": 184, "end": 190, "id": 29, "annotation": null}, {"text": ".", "start": 191, "end": 192, "id": 30, "annotation": null}], [{"text": "CeO2", "start": 193, "end": 197, "id": 31, "annotation": "DOPANT"}, {"text": "additives", "start": 198, "end": 207, "id": 32, "annotation": null}, {"text": "were", "start": 208, "end": 212, "id": 33, "annotation": null}, {"text": "found", "start": 213, "end": 218, "id": 34, "annotation": null}, {"text": "to", "start": 219, "end": 221, "id": 35, "annotation": null}, {"text": "be", "start": 222, "end": 224, "id": 36, "annotation": null}, {"text": "excellent", "start": 225, "end": 234, "id": 37, "annotation": null}, {"text": "donor", "start": 235, "end": 240, "id": 38, "annotation": null}, {"text": "dopants", "start": 241, "end": 248, "id": 39, "annotation": null}, {"text": ".", "start": 249, "end": 250, "id": 40, "annotation": null}], [{"text": "The", "start": 251, "end": 254, "id": 41, "annotation": null}, {"text": "donor", "start": 255, "end": 260, "id": 42, "annotation": null}, {"text": "effect", "start": 261, "end": 267, "id": 43, "annotation": null}, {"text": "results", "start": 268, "end": 275, "id": 44, "annotation": null}, {"text": "from", "start": 276, "end": 280, "id": 45, "annotation": null}, {"text": "Ce3", "start": 281, "end": 284, "id": 46, "annotation": "DOPANT"}, {"text": "+", "start": 285, "end": 286, "id": 47, "annotation": "DOPANT"}, {"text": "ions", "start": 287, "end": 291, "id": 48, "annotation": null}, {"text": "incorporated", "start": 292, "end": 304, "id": 49, "annotation": null}, {"text": "on", "start": 305, "end": 307, "id": 50, "annotation": null}, {"text": "Ba", "start": 308, "end": 310, "id": 51, "annotation": null}, {"text": "sites", "start": 311, "end": 316, "id": 52, "annotation": null}, {"text": "of", "start": 317, "end": 319, "id": 53, "annotation": null}, {"text": "the", "start": 320, "end": 323, "id": 54, "annotation": null}, {"text": "perovskite", "start": 324, "end": 334, "id": 55, "annotation": null}, {"text": "lattice", "start": 335, "end": 342, "id": 56, "annotation": null}, {"text": ".", "start": 343, "end": 344, "id": 57, "annotation": null}], [{"text": "Defect", "start": 345, "end": 351, "id": 58, "annotation": null}, {"text": "chemistry", "start": 352, "end": 361, "id": 59, "annotation": null}, {"text": ",", "start": 362, "end": 363, "id": 60, "annotation": null}, {"text": "solubility", "start": 364, "end": 374, "id": 61, "annotation": null}, {"text": "of", "start": 375, "end": 377, "id": 62, "annotation": null}, {"text": "CeO2", "start": 378, "end": 382, "id": 63, "annotation": "DOPANT"}, {"text": "in", "start": 383, "end": 385, "id": 64, "annotation": null}, {"text": "BaTiO3", "start": 386, "end": 392, "id": 65, "annotation": "BASEMAT"}, {"text": "and", "start": 393, "end": 396, "id": 66, "annotation": null}, {"text": "the", "start": 397, "end": 400, "id": 67, "annotation": null}, {"text": "ferroelectric", "start": 401, "end": 414, "id": 68, "annotation": null}, {"text": "phase", "start": 415, "end": 420, "id": 69, "annotation": null}, {"text": "transition", "start": 421, "end": 431, "id": 70, "annotation": null}, {"text": "of", "start": 432, "end": 434, "id": 71, "annotation": null}, {"text": "Ce", "start": 435, "end": 437, "id": 72, "annotation": "DOPANT"}, {"text": "-", "start": 438, "end": 439, "id": 73, "annotation": null}, {"text": "modified", "start": 440, "end": 448, "id": 74, "annotation": null}, {"text": "BaTiO3", "start": 449, "end": 455, "id": 75, "annotation": "BASEMAT"}, {"text": "have", "start": 456, "end": 460, "id": 76, "annotation": null}, {"text": "been", "start": 461, "end": 465, "id": 77, "annotation": null}, {"text": "studied", "start": 466, "end": 473, "id": 78, "annotation": null}, {"text": "by", "start": 474, "end": 476, "id": 79, "annotation": null}, {"text": "several", "start": 477, "end": 484, "id": 80, "annotation": null}, {"text": "methods", "start": 485, "end": 492, "id": 81, "annotation": null}, {"text": ".", "start": 493, "end": 494, "id": 82, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "The present study was motivated by the reports that promote the use of boron doped diamond (BDD) anode for electrochemical oxidation (EO) of different organic compounds. EO approach on BDD proceeds via electrochemical generation (by water discharge) of hydroxyl radicals and their subsequent reactions. Although the discussion about the degradation of different organic compounds on Si-supported BDD anodes has been already reported; no attempts have been published about the electrochemical degradation of carboxylic acids (acetic, formic and oxalic acids) on Nb/BDD electrode. The interest to elucidate the mechanisms for removing carboxylic acids from water, as a model reaction, contributes to the understanding of more complex reactions involving organic pollutants. In this work, the results clearly demonstrate that organic molecules can be degraded in different way and level by using 0.25M HClO4 as supporting electrolyte due to the oxidants electrochemically generated as well as the interaction of carboxylic acid with BDD surface by adsorbed/non-adsorbed intermediates. The direct evidence for these processes was found during potentiodynamic measurements and bulk electrolysis of carboxylic acids resulting in different evolution of organic matter removals. The strong oxidants as well as the oxidation potentials were analyzed by spin trapping and voltammetry kinetic studies, respectively.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "present", "start": 4, "end": 11, "annotation": null}, {"text": "study", "start": 12, "end": 17, "annotation": null}, {"text": "was", "start": 18, "end": 21, "annotation": null}, {"text": "motivated", "start": 22, "end": 31, "annotation": null}, {"text": "by", "start": 32, "end": 34, "annotation": null}, {"text": "the", "start": 35, "end": 38, "annotation": null}, {"text": "reports", "start": 39, "end": 46, "annotation": null}, {"text": "that", "start": 47, "end": 51, "annotation": null}, {"text": "promote", "start": 52, "end": 59, "annotation": null}, {"text": "the", "start": 60, "end": 63, "annotation": null}, {"text": "use", "start": 64, "end": 67, "annotation": null}, {"text": "of", "start": 68, "end": 70, "annotation": null}, {"text": "boron", "start": 71, "end": 76, "annotation": "DOPANT"}, {"text": "doped", "start": 77, "end": 82, "annotation": null}, {"text": "diamond", "start": 83, "end": 90, "annotation": "BASEMAT"}, {"text": "(", "start": 91, "end": 92, "annotation": null}, {"text": "BDD", "start": 92, "end": 95, "annotation": null}, {"text": ")", "start": 95, "end": 96, "annotation": null}, {"text": "anode", "start": 97, "end": 102, "annotation": null}, {"text": "for", "start": 103, "end": 106, "annotation": null}, {"text": "electrochemical", "start": 107, "end": 122, "annotation": null}, {"text": "oxidation", "start": 123, "end": 132, "annotation": null}, {"text": "(", "start": 133, "end": 134, "annotation": null}, {"text": "EO", "start": 134, "end": 136, "annotation": null}, {"text": ")", "start": 136, "end": 137, "annotation": null}, {"text": "of", "start": 138, "end": 140, "annotation": null}, {"text": "different", "start": 141, "end": 150, "annotation": null}, {"text": "organic", "start": 151, "end": 158, "annotation": null}, {"text": "compounds", "start": 159, "end": 168, "annotation": null}, {"text": ".", "start": 168, "end": 169, "annotation": null}], [{"text": "EO", "start": 170, "end": 172, "annotation": null}, {"text": "approach", "start": 173, "end": 181, "annotation": null}, {"text": "on", "start": 182, "end": 184, "annotation": null}, {"text": "BDD", "start": 185, "end": 188, "annotation": null}, {"text": "proceeds", "start": 189, "end": 197, "annotation": null}, {"text": "via", "start": 198, "end": 201, "annotation": null}, {"text": "electrochemical", "start": 202, "end": 217, "annotation": null}, {"text": "generation", "start": 218, "end": 228, "annotation": null}, {"text": "(", "start": 229, "end": 230, "annotation": null}, {"text": "by", "start": 230, "end": 232, "annotation": null}, {"text": "water", "start": 233, "end": 238, "annotation": null}, {"text": "discharge", "start": 239, "end": 248, "annotation": null}, {"text": ")", "start": 248, "end": 249, "annotation": null}, {"text": "of", "start": 250, "end": 252, "annotation": null}, {"text": "hydroxyl", "start": 253, "end": 261, "annotation": null}, {"text": "radicals", "start": 262, "end": 270, "annotation": null}, {"text": "and", "start": 271, "end": 274, "annotation": null}, {"text": "their", "start": 275, "end": 280, "annotation": null}, {"text": "subsequent", "start": 281, "end": 291, "annotation": null}, {"text": "reactions", "start": 292, "end": 301, "annotation": null}, {"text": ".", "start": 301, "end": 302, "annotation": null}], [{"text": "Although", "start": 303, "end": 311, "annotation": null}, {"text": "the", "start": 312, "end": 315, "annotation": null}, {"text": "discussion", "start": 316, "end": 326, "annotation": null}, {"text": "about", "start": 327, "end": 332, "annotation": null}, {"text": "the", "start": 333, "end": 336, "annotation": null}, {"text": "degradation", "start": 337, "end": 348, "annotation": null}, {"text": "of", "start": 349, "end": 351, "annotation": null}, {"text": "different", "start": 352, "end": 361, "annotation": null}, {"text": "organic", "start": 362, "end": 369, "annotation": null}, {"text": "compounds", "start": 370, "end": 379, "annotation": null}, {"text": "on", "start": 380, "end": 382, "annotation": null}, {"text": "Si", "start": 383, "end": 385, "annotation": null}, {"text": "-", "start": 385, "end": 386, "annotation": null}, {"text": "supported", "start": 386, "end": 395, "annotation": null}, {"text": "BDD", "start": 396, "end": 399, "annotation": null}, {"text": "anodes", "start": 400, "end": 406, "annotation": null}, {"text": "has", "start": 407, "end": 410, "annotation": null}, {"text": "been", "start": 411, "end": 415, "annotation": null}, {"text": "already", "start": 416, "end": 423, "annotation": null}, {"text": "reported", "start": 424, "end": 432, "annotation": null}, {"text": ";", "start": 432, "end": 433, "annotation": null}, {"text": "no", "start": 434, "end": 436, "annotation": null}, {"text": "attempts", "start": 437, "end": 445, "annotation": null}, {"text": "have", "start": 446, "end": 450, "annotation": null}, {"text": "been", "start": 451, "end": 455, "annotation": null}, {"text": "published", "start": 456, "end": 465, "annotation": null}, {"text": "about", "start": 466, "end": 471, "annotation": null}, {"text": "the", "start": 472, "end": 475, "annotation": null}, {"text": "electrochemical", "start": 476, "end": 491, "annotation": null}, {"text": "degradation", "start": 492, "end": 503, "annotation": null}, {"text": "of", "start": 504, "end": 506, "annotation": null}, {"text": "carboxylic", "start": 507, "end": 517, "annotation": null}, {"text": "acids", "start": 518, "end": 523, "annotation": null}, {"text": "(", "start": 524, "end": 525, "annotation": null}, {"text": "acetic", "start": 525, "end": 531, "annotation": null}, {"text": ",", "start": 531, "end": 532, "annotation": null}, {"text": "formic", "start": 533, "end": 539, "annotation": null}, {"text": "and", "start": 540, "end": 543, "annotation": null}, {"text": "oxalic", "start": 544, "end": 550, "annotation": null}, {"text": "acids", "start": 551, "end": 556, "annotation": null}, {"text": ")", "start": 556, "end": 557, "annotation": null}, {"text": "on", "start": 558, "end": 560, "annotation": null}, {"text": "Nb", "start": 561, "end": 563, "annotation": null}, {"text": "/", "start": 563, "end": 564, "annotation": null}, {"text": "BDD", "start": 564, "end": 567, "annotation": null}, {"text": "electrode", "start": 568, "end": 577, "annotation": null}, {"text": ".", "start": 577, "end": 578, "annotation": null}], [{"text": "The", "start": 579, "end": 582, "annotation": null}, {"text": "interest", "start": 583, "end": 591, "annotation": null}, {"text": "to", "start": 592, "end": 594, "annotation": null}, {"text": "elucidate", "start": 595, "end": 604, "annotation": null}, {"text": "the", "start": 605, "end": 608, "annotation": null}, {"text": "mechanisms", "start": 609, "end": 619, "annotation": null}, {"text": "for", "start": 620, "end": 623, "annotation": null}, {"text": "removing", "start": 624, "end": 632, "annotation": null}, {"text": "carboxylic", "start": 633, "end": 643, "annotation": null}, {"text": "acids", "start": 644, "end": 649, "annotation": null}, {"text": "from", "start": 650, "end": 654, "annotation": null}, {"text": "water", "start": 655, "end": 660, "annotation": null}, {"text": ",", "start": 660, "end": 661, "annotation": null}, {"text": "as", "start": 662, "end": 664, "annotation": null}, {"text": "a", "start": 665, "end": 666, "annotation": null}, {"text": "model", "start": 667, "end": 672, "annotation": null}, {"text": "reaction", "start": 673, "end": 681, "annotation": null}, {"text": ",", "start": 681, "end": 682, "annotation": null}, {"text": "contributes", "start": 683, "end": 694, "annotation": null}, {"text": "to", "start": 695, "end": 697, "annotation": null}, {"text": "the", "start": 698, "end": 701, "annotation": null}, {"text": "understanding", "start": 702, "end": 715, "annotation": null}, {"text": "of", "start": 716, "end": 718, "annotation": null}, {"text": "more", "start": 719, "end": 723, "annotation": null}, {"text": "complex", "start": 724, "end": 731, "annotation": null}, {"text": "reactions", "start": 732, "end": 741, "annotation": null}, {"text": "involving", "start": 742, "end": 751, "annotation": null}, {"text": "organic", "start": 752, "end": 759, "annotation": null}, {"text": "pollutants", "start": 760, "end": 770, "annotation": null}, {"text": ".", "start": 770, "end": 771, "annotation": null}], [{"text": "In", "start": 772, "end": 774, "annotation": null}, {"text": "this", "start": 775, "end": 779, "annotation": null}, {"text": "work", "start": 780, "end": 784, "annotation": null}, {"text": ",", "start": 784, "end": 785, "annotation": null}, {"text": "the", "start": 786, "end": 789, "annotation": null}, {"text": "results", "start": 790, "end": 797, "annotation": null}, {"text": "clearly", "start": 798, "end": 805, "annotation": null}, {"text": "demonstrate", "start": 806, "end": 817, "annotation": null}, {"text": "that", "start": 818, "end": 822, "annotation": null}, {"text": "organic", "start": 823, "end": 830, "annotation": null}, {"text": "molecules", "start": 831, "end": 840, "annotation": null}, {"text": "can", "start": 841, "end": 844, "annotation": null}, {"text": "be", "start": 845, "end": 847, "annotation": null}, {"text": "degraded", "start": 848, "end": 856, "annotation": null}, {"text": "in", "start": 857, "end": 859, "annotation": null}, {"text": "different", "start": 860, "end": 869, "annotation": null}, {"text": "way", "start": 870, "end": 873, "annotation": null}, {"text": "and", "start": 874, "end": 877, "annotation": null}, {"text": "level", "start": 878, "end": 883, "annotation": null}, {"text": "by", "start": 884, "end": 886, "annotation": null}, {"text": "using", "start": 887, "end": 892, "annotation": null}, {"text": "0.25", "start": 893, "end": 897, "annotation": null}, {"text": "M", "start": 897, "end": 898, "annotation": null}, {"text": "HClO4", "start": 899, "end": 904, "annotation": null}, {"text": "as", "start": 905, "end": 907, "annotation": null}, {"text": "supporting", "start": 908, "end": 918, "annotation": null}, {"text": "electrolyte", "start": 919, "end": 930, "annotation": null}, {"text": "due", "start": 931, "end": 934, "annotation": null}, {"text": "to", "start": 935, "end": 937, "annotation": null}, {"text": "the", "start": 938, "end": 941, "annotation": null}, {"text": "oxidants", "start": 942, "end": 950, "annotation": null}, {"text": "electrochemically", "start": 951, "end": 968, "annotation": null}, {"text": "generated", "start": 969, "end": 978, "annotation": null}, {"text": "as", "start": 979, "end": 981, "annotation": null}, {"text": "well", "start": 982, "end": 986, "annotation": null}, {"text": "as", "start": 987, "end": 989, "annotation": null}, {"text": "the", "start": 990, "end": 993, "annotation": null}, {"text": "interaction", "start": 994, "end": 1005, "annotation": null}, {"text": "of", "start": 1006, "end": 1008, "annotation": null}, {"text": "carboxylic", "start": 1009, "end": 1019, "annotation": null}, {"text": "acid", "start": 1020, "end": 1024, "annotation": null}, {"text": "with", "start": 1025, "end": 1029, "annotation": null}, {"text": "BDD", "start": 1030, "end": 1033, "annotation": null}, {"text": "surface", "start": 1034, "end": 1041, "annotation": null}, {"text": "by", "start": 1042, "end": 1044, "annotation": null}, {"text": "adsorbed", "start": 1045, "end": 1053, "annotation": null}, {"text": "/", "start": 1053, "end": 1054, "annotation": null}, {"text": "non-adsorbed", "start": 1054, "end": 1066, "annotation": null}, {"text": "intermediates", "start": 1067, "end": 1080, "annotation": null}, {"text": ".", "start": 1080, "end": 1081, "annotation": null}], [{"text": "The", "start": 1082, "end": 1085, "annotation": null}, {"text": "direct", "start": 1086, "end": 1092, "annotation": null}, {"text": "evidence", "start": 1093, "end": 1101, "annotation": null}, {"text": "for", "start": 1102, "end": 1105, "annotation": null}, {"text": "these", "start": 1106, "end": 1111, "annotation": null}, {"text": "processes", "start": 1112, "end": 1121, "annotation": null}, {"text": "was", "start": 1122, "end": 1125, "annotation": null}, {"text": "found", "start": 1126, "end": 1131, "annotation": null}, {"text": "during", "start": 1132, "end": 1138, "annotation": null}, {"text": "potentiodynamic", "start": 1139, "end": 1154, "annotation": null}, {"text": "measurements", "start": 1155, "end": 1167, "annotation": null}, {"text": "and", "start": 1168, "end": 1171, "annotation": null}, {"text": "bulk", "start": 1172, "end": 1176, "annotation": null}, {"text": "electrolysis", "start": 1177, "end": 1189, "annotation": null}, {"text": "of", "start": 1190, "end": 1192, "annotation": null}, {"text": "carboxylic", "start": 1193, "end": 1203, "annotation": null}, {"text": "acids", "start": 1204, "end": 1209, "annotation": null}, {"text": "resulting", "start": 1210, "end": 1219, "annotation": null}, {"text": "in", "start": 1220, "end": 1222, "annotation": null}, {"text": "different", "start": 1223, "end": 1232, "annotation": null}, {"text": "evolution", "start": 1233, "end": 1242, "annotation": null}, {"text": "of", "start": 1243, "end": 1245, "annotation": null}, {"text": "organic", "start": 1246, "end": 1253, "annotation": null}, {"text": "matter", "start": 1254, "end": 1260, "annotation": null}, {"text": "removals", "start": 1261, "end": 1269, "annotation": null}, {"text": ".", "start": 1269, "end": 1270, "annotation": null}], [{"text": "The", "start": 1271, "end": 1274, "annotation": null}, {"text": "strong", "start": 1275, "end": 1281, "annotation": null}, {"text": "oxidants", "start": 1282, "end": 1290, "annotation": null}, {"text": "as", "start": 1291, "end": 1293, "annotation": null}, {"text": "well", "start": 1294, "end": 1298, "annotation": null}, {"text": "as", "start": 1299, "end": 1301, "annotation": null}, {"text": "the", "start": 1302, "end": 1305, "annotation": null}, {"text": "oxidation", "start": 1306, "end": 1315, "annotation": null}, {"text": "potentials", "start": 1316, "end": 1326, "annotation": null}, {"text": "were", "start": 1327, "end": 1331, "annotation": null}, {"text": "analyzed", "start": 1332, "end": 1340, "annotation": null}, {"text": "by", "start": 1341, "end": 1343, "annotation": null}, {"text": "spin", "start": 1344, "end": 1348, "annotation": null}, {"text": "trapping", "start": 1349, "end": 1357, "annotation": null}, {"text": "and", "start": 1358, "end": 1361, "annotation": null}, {"text": "voltammetry", "start": 1362, "end": 1373, "annotation": null}, {"text": "kinetic", "start": 1374, "end": 1381, "annotation": null}, {"text": "studies", "start": 1382, "end": 1389, "annotation": null}, {"text": ",", "start": 1389, "end": 1390, "annotation": null}, {"text": "respectively", "start": 1391, "end": 1403, "annotation": null}, {"text": ".", "start": 1403, "end": 1404, "annotation": null}]]} +{"remark": "doping_annt1", "text": "The present study was motivated by the reports that promote the use of boron doped diamond (BDD) anode for electrochemical oxidation (EO) of different organic compounds. EO approach on BDD proceeds via electrochemical generation (by water discharge) of hydroxyl radicals and their subsequent reactions. Although the discussion about the degradation of different organic compounds on Si-supported BDD anodes has been already reported; no attempts have been published about the electrochemical degradation of carboxylic acids (acetic, formic and oxalic acids) on Nb/BDD electrode. The interest to elucidate the mechanisms for removing carboxylic acids from water, as a model reaction, contributes to the understanding of more complex reactions involving organic pollutants. In this work, the results clearly demonstrate that organic molecules can be degraded in different way and level by using 0.25M HClO4 as supporting electrolyte due to the oxidants electrochemically generated as well as the interaction of carboxylic acid with BDD surface by adsorbed/non-adsorbed intermediates. The direct evidence for these processes was found during potentiodynamic measurements and bulk electrolysis of carboxylic acids resulting in different evolution of organic matter removals. The strong oxidants as well as the oxidation potentials were analyzed by spin trapping and voltammetry kinetic studies, respectively.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "present", "start": 4, "end": 11, "annotation": null}, {"text": "study", "start": 12, "end": 17, "annotation": null}, {"text": "was", "start": 18, "end": 21, "annotation": null}, {"text": "motivated", "start": 22, "end": 31, "annotation": null}, {"text": "by", "start": 32, "end": 34, "annotation": null}, {"text": "the", "start": 35, "end": 38, "annotation": null}, {"text": "reports", "start": 39, "end": 46, "annotation": null}, {"text": "that", "start": 47, "end": 51, "annotation": null}, {"text": "promote", "start": 52, "end": 59, "annotation": null}, {"text": "the", "start": 60, "end": 63, "annotation": null}, {"text": "use", "start": 64, "end": 67, "annotation": null}, {"text": "of", "start": 68, "end": 70, "annotation": null}, {"text": "boron", "start": 71, "end": 76, "annotation": "DOPANT"}, {"text": "doped", "start": 77, "end": 82, "annotation": null}, {"text": "diamond", "start": 83, "end": 90, "annotation": "BASEMAT"}, {"text": "(", "start": 91, "end": 92, "annotation": null}, {"text": "BDD", "start": 92, "end": 95, "annotation": null}, {"text": ")", "start": 95, "end": 96, "annotation": null}, {"text": "anode", "start": 97, "end": 102, "annotation": null}, {"text": "for", "start": 103, "end": 106, "annotation": null}, {"text": "electrochemical", "start": 107, "end": 122, "annotation": null}, {"text": "oxidation", "start": 123, "end": 132, "annotation": null}, {"text": "(", "start": 133, "end": 134, "annotation": null}, {"text": "EO", "start": 134, "end": 136, "annotation": null}, {"text": ")", "start": 136, "end": 137, "annotation": null}, {"text": "of", "start": 138, "end": 140, "annotation": null}, {"text": "different", "start": 141, "end": 150, "annotation": null}, {"text": "organic", "start": 151, "end": 158, "annotation": null}, {"text": "compounds", "start": 159, "end": 168, "annotation": null}, {"text": ".", "start": 168, "end": 169, "annotation": null}], [{"text": "EO", "start": 170, "end": 172, "annotation": null}, {"text": "approach", "start": 173, "end": 181, "annotation": null}, {"text": "on", "start": 182, "end": 184, "annotation": null}, {"text": "BDD", "start": 185, "end": 188, "annotation": null}, {"text": "proceeds", "start": 189, "end": 197, "annotation": null}, {"text": "via", "start": 198, "end": 201, "annotation": null}, {"text": "electrochemical", "start": 202, "end": 217, "annotation": null}, {"text": "generation", "start": 218, "end": 228, "annotation": null}, {"text": "(", "start": 229, "end": 230, "annotation": null}, {"text": "by", "start": 230, "end": 232, "annotation": null}, {"text": "water", "start": 233, "end": 238, "annotation": null}, {"text": "discharge", "start": 239, "end": 248, "annotation": null}, {"text": ")", "start": 248, "end": 249, "annotation": null}, {"text": "of", "start": 250, "end": 252, "annotation": null}, {"text": "hydroxyl", "start": 253, "end": 261, "annotation": null}, {"text": "radicals", "start": 262, "end": 270, "annotation": null}, {"text": "and", "start": 271, "end": 274, "annotation": null}, {"text": "their", "start": 275, "end": 280, "annotation": null}, {"text": "subsequent", "start": 281, "end": 291, "annotation": null}, {"text": "reactions", "start": 292, "end": 301, "annotation": null}, {"text": ".", "start": 301, "end": 302, "annotation": null}], [{"text": "Although", "start": 303, "end": 311, "annotation": null}, {"text": "the", "start": 312, "end": 315, "annotation": null}, {"text": "discussion", "start": 316, "end": 326, "annotation": null}, {"text": "about", "start": 327, "end": 332, "annotation": null}, {"text": "the", "start": 333, "end": 336, "annotation": null}, {"text": "degradation", "start": 337, "end": 348, "annotation": null}, {"text": "of", "start": 349, "end": 351, "annotation": null}, {"text": "different", "start": 352, "end": 361, "annotation": null}, {"text": "organic", "start": 362, "end": 369, "annotation": null}, {"text": "compounds", "start": 370, "end": 379, "annotation": null}, {"text": "on", "start": 380, "end": 382, "annotation": null}, {"text": "Si", "start": 383, "end": 385, "annotation": null}, {"text": "-", "start": 385, "end": 386, "annotation": null}, {"text": "supported", "start": 386, "end": 395, "annotation": null}, {"text": "BDD", "start": 396, "end": 399, "annotation": null}, {"text": "anodes", "start": 400, "end": 406, "annotation": null}, {"text": "has", "start": 407, "end": 410, "annotation": null}, {"text": "been", "start": 411, "end": 415, "annotation": null}, {"text": "already", "start": 416, "end": 423, "annotation": null}, {"text": "reported", "start": 424, "end": 432, "annotation": null}, {"text": ";", "start": 432, "end": 433, "annotation": null}, {"text": "no", "start": 434, "end": 436, "annotation": null}, {"text": "attempts", "start": 437, "end": 445, "annotation": null}, {"text": "have", "start": 446, "end": 450, "annotation": null}, {"text": "been", "start": 451, "end": 455, "annotation": null}, {"text": "published", "start": 456, "end": 465, "annotation": null}, {"text": "about", "start": 466, "end": 471, "annotation": null}, {"text": "the", "start": 472, "end": 475, "annotation": null}, {"text": "electrochemical", "start": 476, "end": 491, "annotation": null}, {"text": "degradation", "start": 492, "end": 503, "annotation": null}, {"text": "of", "start": 504, "end": 506, "annotation": null}, {"text": "carboxylic", "start": 507, "end": 517, "annotation": null}, {"text": "acids", "start": 518, "end": 523, "annotation": null}, {"text": "(", "start": 524, "end": 525, "annotation": null}, {"text": "acetic", "start": 525, "end": 531, "annotation": null}, {"text": ",", "start": 531, "end": 532, "annotation": null}, {"text": "formic", "start": 533, "end": 539, "annotation": null}, {"text": "and", "start": 540, "end": 543, "annotation": null}, {"text": "oxalic", "start": 544, "end": 550, "annotation": null}, {"text": "acids", "start": 551, "end": 556, "annotation": null}, {"text": ")", "start": 556, "end": 557, "annotation": null}, {"text": "on", "start": 558, "end": 560, "annotation": null}, {"text": "Nb", "start": 561, "end": 563, "annotation": null}, {"text": "/", "start": 563, "end": 564, "annotation": null}, {"text": "BDD", "start": 564, "end": 567, "annotation": null}, {"text": "electrode", "start": 568, "end": 577, "annotation": null}, {"text": ".", "start": 577, "end": 578, "annotation": null}], [{"text": "The", "start": 579, "end": 582, "annotation": null}, {"text": "interest", "start": 583, "end": 591, "annotation": null}, {"text": "to", "start": 592, "end": 594, "annotation": null}, {"text": "elucidate", "start": 595, "end": 604, "annotation": null}, {"text": "the", "start": 605, "end": 608, "annotation": null}, {"text": "mechanisms", "start": 609, "end": 619, "annotation": null}, {"text": "for", "start": 620, "end": 623, "annotation": null}, {"text": "removing", "start": 624, "end": 632, "annotation": null}, {"text": "carboxylic", "start": 633, "end": 643, "annotation": null}, {"text": "acids", "start": 644, "end": 649, "annotation": null}, {"text": "from", "start": 650, "end": 654, "annotation": null}, {"text": "water", "start": 655, "end": 660, "annotation": null}, {"text": ",", "start": 660, "end": 661, "annotation": null}, {"text": "as", "start": 662, "end": 664, "annotation": null}, {"text": "a", "start": 665, "end": 666, "annotation": null}, {"text": "model", "start": 667, "end": 672, "annotation": null}, {"text": "reaction", "start": 673, "end": 681, "annotation": null}, {"text": ",", "start": 681, "end": 682, "annotation": null}, {"text": "contributes", "start": 683, "end": 694, "annotation": null}, {"text": "to", "start": 695, "end": 697, "annotation": null}, {"text": "the", "start": 698, "end": 701, "annotation": null}, {"text": "understanding", "start": 702, "end": 715, "annotation": null}, {"text": "of", "start": 716, "end": 718, "annotation": null}, {"text": "more", "start": 719, "end": 723, "annotation": null}, {"text": "complex", "start": 724, "end": 731, "annotation": null}, {"text": "reactions", "start": 732, "end": 741, "annotation": null}, {"text": "involving", "start": 742, "end": 751, "annotation": null}, {"text": "organic", "start": 752, "end": 759, "annotation": null}, {"text": "pollutants", "start": 760, "end": 770, "annotation": null}, {"text": ".", "start": 770, "end": 771, "annotation": null}], [{"text": "In", "start": 772, "end": 774, "annotation": null}, {"text": "this", "start": 775, "end": 779, "annotation": null}, {"text": "work", "start": 780, "end": 784, "annotation": null}, {"text": ",", "start": 784, "end": 785, "annotation": null}, {"text": "the", "start": 786, "end": 789, "annotation": null}, {"text": "results", "start": 790, "end": 797, "annotation": null}, {"text": "clearly", "start": 798, "end": 805, "annotation": null}, {"text": "demonstrate", "start": 806, "end": 817, "annotation": null}, {"text": "that", "start": 818, "end": 822, "annotation": null}, {"text": "organic", "start": 823, "end": 830, "annotation": null}, {"text": "molecules", "start": 831, "end": 840, "annotation": null}, {"text": "can", "start": 841, "end": 844, "annotation": null}, {"text": "be", "start": 845, "end": 847, "annotation": null}, {"text": "degraded", "start": 848, "end": 856, "annotation": null}, {"text": "in", "start": 857, "end": 859, "annotation": null}, {"text": "different", "start": 860, "end": 869, "annotation": null}, {"text": "way", "start": 870, "end": 873, "annotation": null}, {"text": "and", "start": 874, "end": 877, "annotation": null}, {"text": "level", "start": 878, "end": 883, "annotation": null}, {"text": "by", "start": 884, "end": 886, "annotation": null}, {"text": "using", "start": 887, "end": 892, "annotation": null}, {"text": "0.25", "start": 893, "end": 897, "annotation": null}, {"text": "M", "start": 897, "end": 898, "annotation": null}, {"text": "HClO4", "start": 899, "end": 904, "annotation": null}, {"text": "as", "start": 905, "end": 907, "annotation": null}, {"text": "supporting", "start": 908, "end": 918, "annotation": null}, {"text": "electrolyte", "start": 919, "end": 930, "annotation": null}, {"text": "due", "start": 931, "end": 934, "annotation": null}, {"text": "to", "start": 935, "end": 937, "annotation": null}, {"text": "the", "start": 938, "end": 941, "annotation": null}, {"text": "oxidants", "start": 942, "end": 950, "annotation": null}, {"text": "electrochemically", "start": 951, "end": 968, "annotation": null}, {"text": "generated", "start": 969, "end": 978, "annotation": null}, {"text": "as", "start": 979, "end": 981, "annotation": null}, {"text": "well", "start": 982, "end": 986, "annotation": null}, {"text": "as", "start": 987, "end": 989, "annotation": null}, {"text": "the", "start": 990, "end": 993, "annotation": null}, {"text": "interaction", "start": 994, "end": 1005, "annotation": null}, {"text": "of", "start": 1006, "end": 1008, "annotation": null}, {"text": "carboxylic", "start": 1009, "end": 1019, "annotation": null}, {"text": "acid", "start": 1020, "end": 1024, "annotation": null}, {"text": "with", "start": 1025, "end": 1029, "annotation": null}, {"text": "BDD", "start": 1030, "end": 1033, "annotation": null}, {"text": "surface", "start": 1034, "end": 1041, "annotation": null}, {"text": "by", "start": 1042, "end": 1044, "annotation": null}, {"text": "adsorbed", "start": 1045, "end": 1053, "annotation": null}, {"text": "/", "start": 1053, "end": 1054, "annotation": null}, {"text": "non-adsorbed", "start": 1054, "end": 1066, "annotation": null}, {"text": "intermediates", "start": 1067, "end": 1080, "annotation": null}, {"text": ".", "start": 1080, "end": 1081, "annotation": null}], [{"text": "The", "start": 1082, "end": 1085, "annotation": null}, {"text": "direct", "start": 1086, "end": 1092, "annotation": null}, {"text": "evidence", "start": 1093, "end": 1101, "annotation": null}, {"text": "for", "start": 1102, "end": 1105, "annotation": null}, {"text": "these", "start": 1106, "end": 1111, "annotation": null}, {"text": "processes", "start": 1112, "end": 1121, "annotation": null}, {"text": "was", "start": 1122, "end": 1125, "annotation": null}, {"text": "found", "start": 1126, "end": 1131, "annotation": null}, {"text": "during", "start": 1132, "end": 1138, "annotation": null}, {"text": "potentiodynamic", "start": 1139, "end": 1154, "annotation": null}, {"text": "measurements", "start": 1155, "end": 1167, "annotation": null}, {"text": "and", "start": 1168, "end": 1171, "annotation": null}, {"text": "bulk", "start": 1172, "end": 1176, "annotation": null}, {"text": "electrolysis", "start": 1177, "end": 1189, "annotation": null}, {"text": "of", "start": 1190, "end": 1192, "annotation": null}, {"text": "carboxylic", "start": 1193, "end": 1203, "annotation": null}, {"text": "acids", "start": 1204, "end": 1209, "annotation": null}, {"text": "resulting", "start": 1210, "end": 1219, "annotation": null}, {"text": "in", "start": 1220, "end": 1222, "annotation": null}, {"text": "different", "start": 1223, "end": 1232, "annotation": null}, {"text": "evolution", "start": 1233, "end": 1242, "annotation": null}, {"text": "of", "start": 1243, "end": 1245, "annotation": null}, {"text": "organic", "start": 1246, "end": 1253, "annotation": null}, {"text": "matter", "start": 1254, "end": 1260, "annotation": null}, {"text": "removals", "start": 1261, "end": 1269, "annotation": null}, {"text": ".", "start": 1269, "end": 1270, "annotation": null}], [{"text": "The", "start": 1271, "end": 1274, "annotation": null}, {"text": "strong", "start": 1275, "end": 1281, "annotation": null}, {"text": "oxidants", "start": 1282, "end": 1290, "annotation": null}, {"text": "as", "start": 1291, "end": 1293, "annotation": null}, {"text": "well", "start": 1294, "end": 1298, "annotation": null}, {"text": "as", "start": 1299, "end": 1301, "annotation": null}, {"text": "the", "start": 1302, "end": 1305, "annotation": null}, {"text": "oxidation", "start": 1306, "end": 1315, "annotation": null}, {"text": "potentials", "start": 1316, "end": 1326, "annotation": null}, {"text": "were", "start": 1327, "end": 1331, "annotation": null}, {"text": "analyzed", "start": 1332, "end": 1340, "annotation": null}, {"text": "by", "start": 1341, "end": 1343, "annotation": null}, {"text": "spin", "start": 1344, "end": 1348, "annotation": null}, {"text": "trapping", "start": 1349, "end": 1357, "annotation": null}, {"text": "and", "start": 1358, "end": 1361, "annotation": null}, {"text": "voltammetry", "start": 1362, "end": 1373, "annotation": null}, {"text": "kinetic", "start": 1374, "end": 1381, "annotation": null}, {"text": "studies", "start": 1382, "end": 1389, "annotation": null}, {"text": ",", "start": 1389, "end": 1390, "annotation": null}, {"text": "respectively", "start": 1391, "end": 1403, "annotation": null}, {"text": ".", "start": 1403, "end": 1404, "annotation": null}]], "meta": {"doi": "10.1016/j.jelechem.2017.04.006"}} {"text": "Er3+ doped and Er3+\u2013Yb3+ co-doped ZnO\u2013WO3\u2013B2O3\u2013SiO2 glass-ceramics have been prepared by melt-crystallization method and their properties are examined by differential scanning calorimetry (DSC), scanning electron microscopy (SEM), X-ray diffractometry (XRD) and fluorescence spectroscopy. The results reveal that Er3+ ions or Er3+\u2013Yb3+ ions have already entered into the crystalline field. The up-conversion mechanism of Er3+\u2013Yb3+ co-doped ZnO\u2013WO3\u2013B2O3\u2013SiO2 glass ceramics is analyzed, and the effect of Yb3+ concentration on the intensity of up-conversion is investigated. With the increase of pump power, the intensity of green emission at 530 nm increases faster than that at 552 nm. The fluorescence spectrum reaches a maximum when the molar ratio of Er2O3 to Yb2O3 is 1:7.", "meta": {"doi": "10.1016/j.jallcom.2015.08.164"}, "_input_hash": -1664783625, "_task_hash": -1427483818, "tokens": [[{"text": "Er3", "start": 0, "end": 3, "id": 0, "annotation": "DOPANT"}, {"text": "+", "start": 4, "end": 5, "id": 1, "annotation": "DOPANT"}, {"text": "doped", "start": 6, "end": 11, "id": 2, "annotation": null}, {"text": "and", "start": 12, "end": 15, "id": 3, "annotation": null}, {"text": "Er3+\u2013Yb3", "start": 16, "end": 24, "id": 4, "annotation": "DOPANT"}, {"text": "+", "start": 25, "end": 26, "id": 5, "annotation": "DOPANT"}, {"text": "co", "start": 27, "end": 29, "id": 6, "annotation": null}, {"text": "-", "start": 30, "end": 31, "id": 7, "annotation": null}, {"text": "doped", "start": 32, "end": 37, "id": 8, "annotation": null}, {"text": "ZnO", "start": 38, "end": 41, "id": 9, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 42, "end": 43, "id": 10, "annotation": null}, {"text": "WO3\u2013B2O3\u2013SiO2", "start": 44, "end": 57, "id": 11, "annotation": "BASEMAT"}, {"text": "glass", "start": 58, "end": 63, "id": 12, "annotation": null}, {"text": "-", "start": 64, "end": 65, "id": 13, "annotation": null}, {"text": "ceramics", "start": 66, "end": 74, "id": 14, "annotation": null}, {"text": "have", "start": 75, "end": 79, "id": 15, "annotation": null}, {"text": "been", "start": 80, "end": 84, "id": 16, "annotation": null}, {"text": "prepared", "start": 85, "end": 93, "id": 17, "annotation": null}, {"text": "by", "start": 94, "end": 96, "id": 18, "annotation": null}, {"text": "melt", "start": 97, "end": 101, "id": 19, "annotation": null}, {"text": "-", "start": 102, "end": 103, "id": 20, "annotation": null}, {"text": "crystallization", "start": 104, "end": 119, "id": 21, "annotation": null}, {"text": "method", "start": 120, "end": 126, "id": 22, "annotation": null}, {"text": "and", "start": 127, "end": 130, "id": 23, "annotation": null}, {"text": "their", "start": 131, "end": 136, "id": 24, "annotation": null}, {"text": "properties", "start": 137, "end": 147, "id": 25, "annotation": null}, {"text": "are", "start": 148, "end": 151, "id": 26, "annotation": null}, {"text": "examined", "start": 152, "end": 160, "id": 27, "annotation": null}, {"text": "by", "start": 161, "end": 163, "id": 28, "annotation": null}, {"text": "differential", "start": 164, "end": 176, "id": 29, "annotation": null}, {"text": "scanning", "start": 177, "end": 185, "id": 30, "annotation": null}, {"text": "calorimetry", "start": 186, "end": 197, "id": 31, "annotation": null}, {"text": "(", "start": 198, "end": 199, "id": 32, "annotation": null}, {"text": "DSC", "start": 200, "end": 203, "id": 33, "annotation": null}, {"text": ")", "start": 204, "end": 205, "id": 34, "annotation": null}, {"text": ",", "start": 206, "end": 207, "id": 35, "annotation": null}, {"text": "scanning", "start": 208, "end": 216, "id": 36, "annotation": null}, {"text": "electron", "start": 217, "end": 225, "id": 37, "annotation": null}, {"text": "microscopy", "start": 226, "end": 236, "id": 38, "annotation": null}, {"text": "(", "start": 237, "end": 238, "id": 39, "annotation": null}, {"text": "SEM", "start": 239, "end": 242, "id": 40, "annotation": null}, {"text": ")", "start": 243, "end": 244, "id": 41, "annotation": null}, {"text": ",", "start": 245, "end": 246, "id": 42, "annotation": null}, {"text": "X", "start": 247, "end": 248, "id": 43, "annotation": null}, {"text": "-", "start": 249, "end": 250, "id": 44, "annotation": null}, {"text": "ray", "start": 251, "end": 254, "id": 45, "annotation": null}, {"text": "diffractometry", "start": 255, "end": 269, "id": 46, "annotation": null}, {"text": "(", "start": 270, "end": 271, "id": 47, "annotation": null}, {"text": "XRD", "start": 272, "end": 275, "id": 48, "annotation": null}, {"text": ")", "start": 276, "end": 277, "id": 49, "annotation": null}, {"text": "and", "start": 278, "end": 281, "id": 50, "annotation": null}, {"text": "fluorescence", "start": 282, "end": 294, "id": 51, "annotation": null}, {"text": "spectroscopy", "start": 295, "end": 307, "id": 52, "annotation": null}, {"text": ".", "start": 308, "end": 309, "id": 53, "annotation": null}], [{"text": "The", "start": 310, "end": 313, "id": 54, "annotation": null}, {"text": "results", "start": 314, "end": 321, "id": 55, "annotation": null}, {"text": "reveal", "start": 322, "end": 328, "id": 56, "annotation": null}, {"text": "that", "start": 329, "end": 333, "id": 57, "annotation": null}, {"text": "Er3", "start": 334, "end": 337, "id": 58, "annotation": null}, {"text": "+", "start": 338, "end": 339, "id": 59, "annotation": null}, {"text": "ions", "start": 340, "end": 344, "id": 60, "annotation": null}, {"text": "or", "start": 345, "end": 347, "id": 61, "annotation": null}, {"text": "Er3+\u2013Yb3", "start": 348, "end": 356, "id": 62, "annotation": null}, {"text": "+", "start": 357, "end": 358, "id": 63, "annotation": null}, {"text": "ions", "start": 359, "end": 363, "id": 64, "annotation": null}, {"text": "have", "start": 364, "end": 368, "id": 65, "annotation": null}, {"text": "already", "start": 369, "end": 376, "id": 66, "annotation": null}, {"text": "entered", "start": 377, "end": 384, "id": 67, "annotation": null}, {"text": "into", "start": 385, "end": 389, "id": 68, "annotation": null}, {"text": "the", "start": 390, "end": 393, "id": 69, "annotation": null}, {"text": "crystalline", "start": 394, "end": 405, "id": 70, "annotation": null}, {"text": "field", "start": 406, "end": 411, "id": 71, "annotation": null}, {"text": ".", "start": 412, "end": 413, "id": 72, "annotation": null}], [{"text": "The", "start": 414, "end": 417, "id": 73, "annotation": null}, {"text": "up", "start": 418, "end": 420, "id": 74, "annotation": null}, {"text": "-", "start": 421, "end": 422, "id": 75, "annotation": null}, {"text": "conversion", "start": 423, "end": 433, "id": 76, "annotation": null}, {"text": "mechanism", "start": 434, "end": 443, "id": 77, "annotation": null}, {"text": "of", "start": 444, "end": 446, "id": 78, "annotation": null}, {"text": "Er3+\u2013Yb3", "start": 447, "end": 455, "id": 79, "annotation": "DOPANT"}, {"text": "+", "start": 456, "end": 457, "id": 80, "annotation": "DOPANT"}, {"text": "co", "start": 458, "end": 460, "id": 81, "annotation": null}, {"text": "-", "start": 461, "end": 462, "id": 82, "annotation": null}, {"text": "doped", "start": 463, "end": 468, "id": 83, "annotation": null}, {"text": "ZnO", "start": 469, "end": 472, "id": 84, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 473, "end": 474, "id": 85, "annotation": null}, {"text": "WO3\u2013B2O3\u2013SiO2", "start": 475, "end": 488, "id": 86, "annotation": "BASEMAT"}, {"text": "glass", "start": 489, "end": 494, "id": 87, "annotation": null}, {"text": "ceramics", "start": 495, "end": 503, "id": 88, "annotation": null}, {"text": "is", "start": 504, "end": 506, "id": 89, "annotation": null}, {"text": "analyzed", "start": 507, "end": 515, "id": 90, "annotation": null}, {"text": ",", "start": 516, "end": 517, "id": 91, "annotation": null}, {"text": "and", "start": 518, "end": 521, "id": 92, "annotation": null}, {"text": "the", "start": 522, "end": 525, "id": 93, "annotation": null}, {"text": "effect", "start": 526, "end": 532, "id": 94, "annotation": null}, {"text": "of", "start": 533, "end": 535, "id": 95, "annotation": null}, {"text": "Yb3", "start": 536, "end": 539, "id": 96, "annotation": "DOPANT"}, {"text": "+", "start": 540, "end": 541, "id": 97, "annotation": "DOPANT"}, {"text": "concentration", "start": 542, "end": 555, "id": 98, "annotation": null}, {"text": "on", "start": 556, "end": 558, "id": 99, "annotation": null}, {"text": "the", "start": 559, "end": 562, "id": 100, "annotation": null}, {"text": "intensity", "start": 563, "end": 572, "id": 101, "annotation": null}, {"text": "of", "start": 573, "end": 575, "id": 102, "annotation": null}, {"text": "up", "start": 576, "end": 578, "id": 103, "annotation": null}, {"text": "-", "start": 579, "end": 580, "id": 104, "annotation": null}, {"text": "conversion", "start": 581, "end": 591, "id": 105, "annotation": null}, {"text": "is", "start": 592, "end": 594, "id": 106, "annotation": null}, {"text": "investigated", "start": 595, "end": 607, "id": 107, "annotation": null}, {"text": ".", "start": 608, "end": 609, "id": 108, "annotation": null}], [{"text": "With", "start": 610, "end": 614, "id": 109, "annotation": null}, {"text": "the", "start": 615, "end": 618, "id": 110, "annotation": null}, {"text": "increase", "start": 619, "end": 627, "id": 111, "annotation": null}, {"text": "of", "start": 628, "end": 630, "id": 112, "annotation": null}, {"text": "pump", "start": 631, "end": 635, "id": 113, "annotation": null}, {"text": "power", "start": 636, "end": 641, "id": 114, "annotation": null}, {"text": ",", "start": 642, "end": 643, "id": 115, "annotation": null}, {"text": "the", "start": 644, "end": 647, "id": 116, "annotation": null}, {"text": "intensity", "start": 648, "end": 657, "id": 117, "annotation": null}, {"text": "of", "start": 658, "end": 660, "id": 118, "annotation": null}, {"text": "green", "start": 661, "end": 666, "id": 119, "annotation": null}, {"text": "emission", "start": 667, "end": 675, "id": 120, "annotation": null}, {"text": "at", "start": 676, "end": 678, "id": 121, "annotation": null}, {"text": "530", "start": 679, "end": 682, "id": 122, "annotation": null}, {"text": "nm", "start": 683, "end": 685, "id": 123, "annotation": null}, {"text": "increases", "start": 686, "end": 695, "id": 124, "annotation": null}, {"text": "faster", "start": 696, "end": 702, "id": 125, "annotation": null}, {"text": "than", "start": 703, "end": 707, "id": 126, "annotation": null}, {"text": "that", "start": 708, "end": 712, "id": 127, "annotation": null}, {"text": "at", "start": 713, "end": 715, "id": 128, "annotation": null}, {"text": "552", "start": 716, "end": 719, "id": 129, "annotation": null}, {"text": "nm", "start": 720, "end": 722, "id": 130, "annotation": null}, {"text": ".", "start": 723, "end": 724, "id": 131, "annotation": null}], [{"text": "The", "start": 725, "end": 728, "id": 132, "annotation": null}, {"text": "fluorescence", "start": 729, "end": 741, "id": 133, "annotation": null}, {"text": "spectrum", "start": 742, "end": 750, "id": 134, "annotation": null}, {"text": "reaches", "start": 751, "end": 758, "id": 135, "annotation": null}, {"text": "a", "start": 759, "end": 760, "id": 136, "annotation": null}, {"text": "maximum", "start": 761, "end": 768, "id": 137, "annotation": null}, {"text": "when", "start": 769, "end": 773, "id": 138, "annotation": null}, {"text": "the", "start": 774, "end": 777, "id": 139, "annotation": null}, {"text": "molar", "start": 778, "end": 783, "id": 140, "annotation": null}, {"text": "ratio", "start": 784, "end": 789, "id": 141, "annotation": null}, {"text": "of", "start": 790, "end": 792, "id": 142, "annotation": null}, {"text": "Er2O3", "start": 793, "end": 798, "id": 143, "annotation": "DOPANT"}, {"text": "to", "start": 799, "end": 801, "id": 144, "annotation": null}, {"text": "Yb2O3", "start": 802, "end": 807, "id": 145, "annotation": "DOPANT"}, {"text": "is", "start": 808, "end": 810, "id": 146, "annotation": null}, {"text": "1:7", "start": 811, "end": 814, "id": 147, "annotation": "DOPMODQ"}, {"text": ".", "start": 815, "end": 816, "id": 148, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "The effects of non-magnetic Zn and magnetic Ni substitution for Cu site on magnetism are studied by measurements of uniform magnetic susceptibility for lightly doped La2\u2212x Sr x Cu1\u2212z M z O4 (M=Zn or Ni) polycrystalline samples. For the parent x=0, Zn doping suppresses the N\u00e9el temperature T N whereas Ni doping hardly changes T N up to z=0.3. For the lightly doped samples with T N\u223c0, the Ni doping recovers T N. For the superconducting samples, the Ni doping induces the superconductivity-to-antiferromagnetic transition (or crossover). All the heavily Ni doped samples indicate a spin glass behavior at \u223c15 K.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "effects", "start": 4, "end": 11, "annotation": null}, {"text": "of", "start": 12, "end": 14, "annotation": null}, {"text": "non-magnetic", "start": 15, "end": 27, "annotation": null}, {"text": "Zn", "start": 28, "end": 30, "annotation": "DOPANT"}, {"text": "and", "start": 31, "end": 34, "annotation": null}, {"text": "magnetic", "start": 35, "end": 43, "annotation": null}, {"text": "Ni", "start": 44, "end": 46, "annotation": "DOPANT"}, {"text": "substitution", "start": 47, "end": 59, "annotation": null}, {"text": "for", "start": 60, "end": 63, "annotation": null}, {"text": "Cu", "start": 64, "end": 66, "annotation": null}, {"text": "site", "start": 67, "end": 71, "annotation": null}, {"text": "on", "start": 72, "end": 74, "annotation": null}, {"text": "magnetism", "start": 75, "end": 84, "annotation": null}, {"text": "are", "start": 85, "end": 88, "annotation": null}, {"text": "studied", "start": 89, "end": 96, "annotation": null}, {"text": "by", "start": 97, "end": 99, "annotation": null}, {"text": "measurements", "start": 100, "end": 112, "annotation": null}, {"text": "of", "start": 113, "end": 115, "annotation": null}, {"text": "uniform", "start": 116, "end": 123, "annotation": null}, {"text": "magnetic", "start": 124, "end": 132, "annotation": null}, {"text": "susceptibility", "start": 133, "end": 147, "annotation": null}, {"text": "for", "start": 148, "end": 151, "annotation": null}, {"text": "lightly", "start": 152, "end": 159, "annotation": null}, {"text": "doped", "start": 160, "end": 165, "annotation": null}, {"text": "La2\u2212x", "start": 166, "end": 171, "annotation": "BASEMAT"}, {"text": "Sr", "start": 172, "end": 174, "annotation": "BASEMAT"}, {"text": "x", "start": 175, "end": 176, "annotation": "BASEMAT"}, {"text": "Cu1\u2212z", "start": 177, "end": 182, "annotation": "BASEMAT"}, {"text": "M", "start": 183, "end": 184, "annotation": "BASEMAT"}, {"text": "z", "start": 185, "end": 186, "annotation": "BASEMAT"}, {"text": "O4", "start": 187, "end": 189, "annotation": "BASEMAT"}, {"text": "(", "start": 190, "end": 191, "annotation": "BASEMAT"}, {"text": "M", "start": 191, "end": 192, "annotation": "BASEMAT"}, {"text": "=", "start": 192, "end": 193, "annotation": "BASEMAT"}, {"text": "Zn", "start": 193, "end": 195, "annotation": "BASEMAT"}, {"text": "or", "start": 196, "end": 198, "annotation": "BASEMAT"}, {"text": "Ni", "start": 199, "end": 201, "annotation": "BASEMAT"}, {"text": ")", "start": 201, "end": 202, "annotation": "BASEMAT"}, {"text": "polycrystalline", "start": 203, "end": 218, "annotation": null}, {"text": "samples", "start": 219, "end": 226, "annotation": null}, {"text": ".", "start": 226, "end": 227, "annotation": null}], [{"text": "For", "start": 228, "end": 231, "annotation": null}, {"text": "the", "start": 232, "end": 235, "annotation": null}, {"text": "parent", "start": 236, "end": 242, "annotation": null}, {"text": "x", "start": 243, "end": 244, "annotation": "DOPMODQ"}, {"text": "=", "start": 244, "end": 245, "annotation": "DOPMODQ"}, {"text": "0", "start": 245, "end": 246, "annotation": "DOPMODQ"}, {"text": ",", "start": 246, "end": 247, "annotation": null}, {"text": "Zn", "start": 248, "end": 250, "annotation": "DOPANT"}, {"text": "doping", "start": 251, "end": 257, "annotation": null}, {"text": "suppresses", "start": 258, "end": 268, "annotation": null}, {"text": "the", "start": 269, "end": 272, "annotation": null}, {"text": "N\u00e9el", "start": 273, "end": 277, "annotation": null}, {"text": "temperature", "start": 278, "end": 289, "annotation": null}, {"text": "T", "start": 290, "end": 291, "annotation": null}, {"text": "N", "start": 292, "end": 293, "annotation": null}, {"text": "whereas", "start": 294, "end": 301, "annotation": null}, {"text": "Ni", "start": 302, "end": 304, "annotation": "DOPANT"}, {"text": "doping", "start": 305, "end": 311, "annotation": null}, {"text": "hardly", "start": 312, "end": 318, "annotation": null}, {"text": "changes", "start": 319, "end": 326, "annotation": null}, {"text": "T", "start": 327, "end": 328, "annotation": null}, {"text": "N", "start": 329, "end": 330, "annotation": null}, {"text": "up", "start": 331, "end": 333, "annotation": null}, {"text": "to", "start": 334, "end": 336, "annotation": null}, {"text": "z", "start": 337, "end": 338, "annotation": "DOPMODQ"}, {"text": "=", "start": 338, "end": 339, "annotation": "DOPMODQ"}, {"text": "0.3", "start": 339, "end": 342, "annotation": "DOPMODQ"}, {"text": ".", "start": 342, "end": 343, "annotation": null}], [{"text": "For", "start": 344, "end": 347, "annotation": null}, {"text": "the", "start": 348, "end": 351, "annotation": null}, {"text": "lightly", "start": 352, "end": 359, "annotation": null}, {"text": "doped", "start": 360, "end": 365, "annotation": null}, {"text": "samples", "start": 366, "end": 373, "annotation": "DOPANT"}, {"text": "with", "start": 374, "end": 378, "annotation": null}, {"text": "T", "start": 379, "end": 380, "annotation": null}, {"text": "N", "start": 381, "end": 382, "annotation": null}, {"text": "\u223c", "start": 382, "end": 383, "annotation": null}, {"text": "0", "start": 383, "end": 384, "annotation": null}, {"text": ",", "start": 384, "end": 385, "annotation": null}, {"text": "the", "start": 386, "end": 389, "annotation": null}, {"text": "Ni", "start": 390, "end": 392, "annotation": "DOPANT"}, {"text": "doping", "start": 393, "end": 399, "annotation": null}, {"text": "recovers", "start": 400, "end": 408, "annotation": null}, {"text": "T", "start": 409, "end": 410, "annotation": null}, {"text": "N", "start": 411, "end": 412, "annotation": null}, {"text": ".", "start": 412, "end": 413, "annotation": null}], [{"text": "For", "start": 414, "end": 417, "annotation": null}, {"text": "the", "start": 418, "end": 421, "annotation": null}, {"text": "superconducting", "start": 422, "end": 437, "annotation": null}, {"text": "samples", "start": 438, "end": 445, "annotation": "BASEMAT"}, {"text": ",", "start": 445, "end": 446, "annotation": null}, {"text": "the", "start": 447, "end": 450, "annotation": null}, {"text": "Ni", "start": 451, "end": 453, "annotation": "DOPANT"}, {"text": "doping", "start": 454, "end": 460, "annotation": null}, {"text": "induces", "start": 461, "end": 468, "annotation": null}, {"text": "the", "start": 469, "end": 472, "annotation": null}, {"text": "superconductivity", "start": 473, "end": 490, "annotation": null}, {"text": "-", "start": 490, "end": 491, "annotation": null}, {"text": "to", "start": 491, "end": 493, "annotation": null}, {"text": "-", "start": 493, "end": 494, "annotation": null}, {"text": "antiferromagnetic", "start": 494, "end": 511, "annotation": null}, {"text": "transition", "start": 512, "end": 522, "annotation": null}, {"text": "(", "start": 523, "end": 524, "annotation": null}, {"text": "or", "start": 524, "end": 526, "annotation": null}, {"text": "crossover", "start": 527, "end": 536, "annotation": null}, {"text": ")", "start": 536, "end": 537, "annotation": null}, {"text": ".", "start": 537, "end": 538, "annotation": null}], [{"text": "All", "start": 539, "end": 542, "annotation": null}, {"text": "the", "start": 543, "end": 546, "annotation": null}, {"text": "heavily", "start": 547, "end": 554, "annotation": null}, {"text": "Ni", "start": 555, "end": 557, "annotation": "DOPANT"}, {"text": "doped", "start": 558, "end": 563, "annotation": null}, {"text": "samples", "start": 564, "end": 571, "annotation": "BASEMAT"}, {"text": "indicate", "start": 572, "end": 580, "annotation": null}, {"text": "a", "start": 581, "end": 582, "annotation": null}, {"text": "spin", "start": 583, "end": 587, "annotation": null}, {"text": "glass", "start": 588, "end": 593, "annotation": null}, {"text": "behavior", "start": 594, "end": 602, "annotation": null}, {"text": "at", "start": 603, "end": 605, "annotation": null}, {"text": "\u223c", "start": 606, "end": 607, "annotation": null}, {"text": "15", "start": 607, "end": 609, "annotation": null}, {"text": "K", "start": 610, "end": 611, "annotation": null}, {"text": ".", "start": 611, "end": 612, "annotation": null}]]} +{"remark": "doping_annt2", "text": "The effects of non-magnetic Zn and magnetic Ni substitution for Cu site on magnetism are studied by measurements of uniform magnetic susceptibility for lightly doped La2\u2212x Sr x Cu1\u2212z M z O4 (M=Zn or Ni) polycrystalline samples. For the parent x=0, Zn doping suppresses the N\u00e9el temperature T N whereas Ni doping hardly changes T N up to z=0.3. For the lightly doped samples with T N\u223c0, the Ni doping recovers T N. For the superconducting samples, the Ni doping induces the superconductivity-to-antiferromagnetic transition (or crossover). All the heavily Ni doped samples indicate a spin glass behavior at \u223c15 K.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "effects", "start": 4, "end": 11, "annotation": null}, {"text": "of", "start": 12, "end": 14, "annotation": null}, {"text": "non-magnetic", "start": 15, "end": 27, "annotation": null}, {"text": "Zn", "start": 28, "end": 30, "annotation": "DOPANT"}, {"text": "and", "start": 31, "end": 34, "annotation": null}, {"text": "magnetic", "start": 35, "end": 43, "annotation": null}, {"text": "Ni", "start": 44, "end": 46, "annotation": "DOPANT"}, {"text": "substitution", "start": 47, "end": 59, "annotation": null}, {"text": "for", "start": 60, "end": 63, "annotation": null}, {"text": "Cu", "start": 64, "end": 66, "annotation": null}, {"text": "site", "start": 67, "end": 71, "annotation": null}, {"text": "on", "start": 72, "end": 74, "annotation": null}, {"text": "magnetism", "start": 75, "end": 84, "annotation": null}, {"text": "are", "start": 85, "end": 88, "annotation": null}, {"text": "studied", "start": 89, "end": 96, "annotation": null}, {"text": "by", "start": 97, "end": 99, "annotation": null}, {"text": "measurements", "start": 100, "end": 112, "annotation": null}, {"text": "of", "start": 113, "end": 115, "annotation": null}, {"text": "uniform", "start": 116, "end": 123, "annotation": null}, {"text": "magnetic", "start": 124, "end": 132, "annotation": null}, {"text": "susceptibility", "start": 133, "end": 147, "annotation": null}, {"text": "for", "start": 148, "end": 151, "annotation": null}, {"text": "lightly", "start": 152, "end": 159, "annotation": null}, {"text": "doped", "start": 160, "end": 165, "annotation": null}, {"text": "La2\u2212x", "start": 166, "end": 171, "annotation": "BASEMAT"}, {"text": "Sr", "start": 172, "end": 174, "annotation": "BASEMAT"}, {"text": "x", "start": 175, "end": 176, "annotation": "BASEMAT"}, {"text": "Cu1\u2212z", "start": 177, "end": 182, "annotation": "BASEMAT"}, {"text": "M", "start": 183, "end": 184, "annotation": "BASEMAT"}, {"text": "z", "start": 185, "end": 186, "annotation": "BASEMAT"}, {"text": "O4", "start": 187, "end": 189, "annotation": "BASEMAT"}, {"text": "(", "start": 190, "end": 191, "annotation": "BASEMAT"}, {"text": "M", "start": 191, "end": 192, "annotation": "BASEMAT"}, {"text": "=", "start": 192, "end": 193, "annotation": "BASEMAT"}, {"text": "Zn", "start": 193, "end": 195, "annotation": "BASEMAT"}, {"text": "or", "start": 196, "end": 198, "annotation": "BASEMAT"}, {"text": "Ni", "start": 199, "end": 201, "annotation": "BASEMAT"}, {"text": ")", "start": 201, "end": 202, "annotation": "BASEMAT"}, {"text": "polycrystalline", "start": 203, "end": 218, "annotation": null}, {"text": "samples", "start": 219, "end": 226, "annotation": null}, {"text": ".", "start": 226, "end": 227, "annotation": null}], [{"text": "For", "start": 228, "end": 231, "annotation": null}, {"text": "the", "start": 232, "end": 235, "annotation": null}, {"text": "parent", "start": 236, "end": 242, "annotation": null}, {"text": "x", "start": 243, "end": 244, "annotation": "DOPMODQ"}, {"text": "=", "start": 244, "end": 245, "annotation": "DOPMODQ"}, {"text": "0", "start": 245, "end": 246, "annotation": "DOPMODQ"}, {"text": ",", "start": 246, "end": 247, "annotation": null}, {"text": "Zn", "start": 248, "end": 250, "annotation": "DOPANT"}, {"text": "doping", "start": 251, "end": 257, "annotation": null}, {"text": "suppresses", "start": 258, "end": 268, "annotation": null}, {"text": "the", "start": 269, "end": 272, "annotation": null}, {"text": "N\u00e9el", "start": 273, "end": 277, "annotation": null}, {"text": "temperature", "start": 278, "end": 289, "annotation": null}, {"text": "T", "start": 290, "end": 291, "annotation": null}, {"text": "N", "start": 292, "end": 293, "annotation": null}, {"text": "whereas", "start": 294, "end": 301, "annotation": null}, {"text": "Ni", "start": 302, "end": 304, "annotation": "DOPANT"}, {"text": "doping", "start": 305, "end": 311, "annotation": null}, {"text": "hardly", "start": 312, "end": 318, "annotation": null}, {"text": "changes", "start": 319, "end": 326, "annotation": null}, {"text": "T", "start": 327, "end": 328, "annotation": null}, {"text": "N", "start": 329, "end": 330, "annotation": null}, {"text": "up", "start": 331, "end": 333, "annotation": null}, {"text": "to", "start": 334, "end": 336, "annotation": null}, {"text": "z", "start": 337, "end": 338, "annotation": "DOPMODQ"}, {"text": "=", "start": 338, "end": 339, "annotation": "DOPMODQ"}, {"text": "0.3", "start": 339, "end": 342, "annotation": "DOPMODQ"}, {"text": ".", "start": 342, "end": 343, "annotation": null}], [{"text": "For", "start": 344, "end": 347, "annotation": null}, {"text": "the", "start": 348, "end": 351, "annotation": null}, {"text": "lightly", "start": 352, "end": 359, "annotation": null}, {"text": "doped", "start": 360, "end": 365, "annotation": null}, {"text": "samples", "start": 366, "end": 373, "annotation": "DOPANT"}, {"text": "with", "start": 374, "end": 378, "annotation": null}, {"text": "T", "start": 379, "end": 380, "annotation": null}, {"text": "N", "start": 381, "end": 382, "annotation": null}, {"text": "\u223c", "start": 382, "end": 383, "annotation": null}, {"text": "0", "start": 383, "end": 384, "annotation": null}, {"text": ",", "start": 384, "end": 385, "annotation": null}, {"text": "the", "start": 386, "end": 389, "annotation": null}, {"text": "Ni", "start": 390, "end": 392, "annotation": "DOPANT"}, {"text": "doping", "start": 393, "end": 399, "annotation": null}, {"text": "recovers", "start": 400, "end": 408, "annotation": null}, {"text": "T", "start": 409, "end": 410, "annotation": null}, {"text": "N", "start": 411, "end": 412, "annotation": null}, {"text": ".", "start": 412, "end": 413, "annotation": null}], [{"text": "For", "start": 414, "end": 417, "annotation": null}, {"text": "the", "start": 418, "end": 421, "annotation": null}, {"text": "superconducting", "start": 422, "end": 437, "annotation": null}, {"text": "samples", "start": 438, "end": 445, "annotation": "BASEMAT"}, {"text": ",", "start": 445, "end": 446, "annotation": null}, {"text": "the", "start": 447, "end": 450, "annotation": null}, {"text": "Ni", "start": 451, "end": 453, "annotation": "DOPANT"}, {"text": "doping", "start": 454, "end": 460, "annotation": null}, {"text": "induces", "start": 461, "end": 468, "annotation": null}, {"text": "the", "start": 469, "end": 472, "annotation": null}, {"text": "superconductivity", "start": 473, "end": 490, "annotation": null}, {"text": "-", "start": 490, "end": 491, "annotation": null}, {"text": "to", "start": 491, "end": 493, "annotation": null}, {"text": "-", "start": 493, "end": 494, "annotation": null}, {"text": "antiferromagnetic", "start": 494, "end": 511, "annotation": null}, {"text": "transition", "start": 512, "end": 522, "annotation": null}, {"text": "(", "start": 523, "end": 524, "annotation": null}, {"text": "or", "start": 524, "end": 526, "annotation": null}, {"text": "crossover", "start": 527, "end": 536, "annotation": null}, {"text": ")", "start": 536, "end": 537, "annotation": null}, {"text": ".", "start": 537, "end": 538, "annotation": null}], [{"text": "All", "start": 539, "end": 542, "annotation": null}, {"text": "the", "start": 543, "end": 546, "annotation": null}, {"text": "heavily", "start": 547, "end": 554, "annotation": null}, {"text": "Ni", "start": 555, "end": 557, "annotation": "DOPANT"}, {"text": "doped", "start": 558, "end": 563, "annotation": null}, {"text": "samples", "start": 564, "end": 571, "annotation": "BASEMAT"}, {"text": "indicate", "start": 572, "end": 580, "annotation": null}, {"text": "a", "start": 581, "end": 582, "annotation": null}, {"text": "spin", "start": 583, "end": 587, "annotation": null}, {"text": "glass", "start": 588, "end": 593, "annotation": null}, {"text": "behavior", "start": 594, "end": 602, "annotation": null}, {"text": "at", "start": 603, "end": 605, "annotation": null}, {"text": "\u223c", "start": 606, "end": 607, "annotation": null}, {"text": "15", "start": 607, "end": 609, "annotation": null}, {"text": "K", "start": 610, "end": 611, "annotation": null}, {"text": ".", "start": 611, "end": 612, "annotation": null}]], "meta": {"doi": "10.1016/S0921-4534(02)02394-8"}} {"text": "The extended X-ray absorption fine structure (EXAFS) at L3 edges of rare-earth atoms in glass of 3CaO\u2013Ga2O3\u20133GeO2 (or Ca3Ga2Ge3O12) composition doped with Eu, Ho (0.7wt.%) and Er (1.46wt.%) has been investigated. The obtained structural parameters of the Eu, Ho and Er first (oxygen) coordination shell have shown that the local neighbourhood is independent on the kind of rare-earth ions\u2019 impurity and, taking into account structural disorder, is similar to that present in pure oxide systems. Short-range structures around the considered luminescence centres are discussed and compared with relevant literature data.", "meta": {"doi": "10.1016/j.optmat.2007.02.013"}, "_input_hash": 1100976588, "_task_hash": 226855384, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "extended", "start": 4, "end": 12, "id": 1, "annotation": null}, {"text": "X", "start": 13, "end": 14, "id": 2, "annotation": null}, {"text": "-", "start": 15, "end": 16, "id": 3, "annotation": null}, {"text": "ray", "start": 17, "end": 20, "id": 4, "annotation": null}, {"text": "absorption", "start": 21, "end": 31, "id": 5, "annotation": null}, {"text": "fine", "start": 32, "end": 36, "id": 6, "annotation": null}, {"text": "structure", "start": 37, "end": 46, "id": 7, "annotation": null}, {"text": "(", "start": 47, "end": 48, "id": 8, "annotation": null}, {"text": "EXAFS", "start": 49, "end": 54, "id": 9, "annotation": null}, {"text": ")", "start": 55, "end": 56, "id": 10, "annotation": null}, {"text": "at", "start": 57, "end": 59, "id": 11, "annotation": null}, {"text": "L3", "start": 60, "end": 62, "id": 12, "annotation": null}, {"text": "edges", "start": 63, "end": 68, "id": 13, "annotation": null}, {"text": "of", "start": 69, "end": 71, "id": 14, "annotation": null}, {"text": "rare", "start": 72, "end": 76, "id": 15, "annotation": null}, {"text": "-", "start": 77, "end": 78, "id": 16, "annotation": null}, {"text": "earth", "start": 79, "end": 84, "id": 17, "annotation": null}, {"text": "atoms", "start": 85, "end": 90, "id": 18, "annotation": null}, {"text": "in", "start": 91, "end": 93, "id": 19, "annotation": null}, {"text": "glass", "start": 94, "end": 99, "id": 20, "annotation": null}, {"text": "of", "start": 100, "end": 102, "id": 21, "annotation": null}, {"text": "3CaO", "start": 103, "end": 107, "id": 22, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 108, "end": 109, "id": 23, "annotation": null}, {"text": "Ga2O3\u20133GeO2", "start": 110, "end": 121, "id": 24, "annotation": "BASEMAT"}, {"text": "(", "start": 122, "end": 123, "id": 25, "annotation": null}, {"text": "or", "start": 124, "end": 126, "id": 26, "annotation": null}, {"text": "Ca3Ga2Ge3O12", "start": 127, "end": 139, "id": 27, "annotation": "BASEMAT"}, {"text": ")", "start": 140, "end": 141, "id": 28, "annotation": null}, {"text": "composition", "start": 142, "end": 153, "id": 29, "annotation": null}, {"text": "doped", "start": 154, "end": 159, "id": 30, "annotation": null}, {"text": "with", "start": 160, "end": 164, "id": 31, "annotation": null}, {"text": "Eu", "start": 165, "end": 167, "id": 32, "annotation": "DOPANT"}, {"text": ",", "start": 168, "end": 169, "id": 33, "annotation": null}, {"text": "Ho", "start": 170, "end": 172, "id": 34, "annotation": "DOPANT"}, {"text": "(", "start": 173, "end": 174, "id": 35, "annotation": null}, {"text": "0.7wt.%", "start": 175, "end": 182, "id": 36, "annotation": "DOPMODQ"}, {"text": ")", "start": 183, "end": 184, "id": 37, "annotation": null}, {"text": "and", "start": 185, "end": 188, "id": 38, "annotation": null}, {"text": "Er", "start": 189, "end": 191, "id": 39, "annotation": "DOPANT"}, {"text": "(", "start": 192, "end": 193, "id": 40, "annotation": null}, {"text": "1.46wt.%", "start": 194, "end": 202, "id": 41, "annotation": "DOPMODQ"}, {"text": ")", "start": 203, "end": 204, "id": 42, "annotation": null}, {"text": "has", "start": 205, "end": 208, "id": 43, "annotation": null}, {"text": "been", "start": 209, "end": 213, "id": 44, "annotation": null}, {"text": "investigated", "start": 214, "end": 226, "id": 45, "annotation": null}, {"text": ".", "start": 227, "end": 228, "id": 46, "annotation": null}], [{"text": "The", "start": 229, "end": 232, "id": 47, "annotation": null}, {"text": "obtained", "start": 233, "end": 241, "id": 48, "annotation": null}, {"text": "structural", "start": 242, "end": 252, "id": 49, "annotation": null}, {"text": "parameters", "start": 253, "end": 263, "id": 50, "annotation": null}, {"text": "of", "start": 264, "end": 266, "id": 51, "annotation": null}, {"text": "the", "start": 267, "end": 270, "id": 52, "annotation": null}, {"text": "Eu", "start": 271, "end": 273, "id": 53, "annotation": null}, {"text": ",", "start": 274, "end": 275, "id": 54, "annotation": null}, {"text": "Ho", "start": 276, "end": 278, "id": 55, "annotation": null}, {"text": "and", "start": 279, "end": 282, "id": 56, "annotation": null}, {"text": "Er", "start": 283, "end": 285, "id": 57, "annotation": null}, {"text": "first", "start": 286, "end": 291, "id": 58, "annotation": null}, {"text": "(", "start": 292, "end": 293, "id": 59, "annotation": null}, {"text": "oxygen", "start": 294, "end": 300, "id": 60, "annotation": null}, {"text": ")", "start": 301, "end": 302, "id": 61, "annotation": null}, {"text": "coordination", "start": 303, "end": 315, "id": 62, "annotation": null}, {"text": "shell", "start": 316, "end": 321, "id": 63, "annotation": null}, {"text": "have", "start": 322, "end": 326, "id": 64, "annotation": null}, {"text": "shown", "start": 327, "end": 332, "id": 65, "annotation": null}, {"text": "that", "start": 333, "end": 337, "id": 66, "annotation": null}, {"text": "the", "start": 338, "end": 341, "id": 67, "annotation": null}, {"text": "local", "start": 342, "end": 347, "id": 68, "annotation": null}, {"text": "neighbourhood", "start": 348, "end": 361, "id": 69, "annotation": null}, {"text": "is", "start": 362, "end": 364, "id": 70, "annotation": null}, {"text": "independent", "start": 365, "end": 376, "id": 71, "annotation": null}, {"text": "on", "start": 377, "end": 379, "id": 72, "annotation": null}, {"text": "the", "start": 380, "end": 383, "id": 73, "annotation": null}, {"text": "kind", "start": 384, "end": 388, "id": 74, "annotation": null}, {"text": "of", "start": 389, "end": 391, "id": 75, "annotation": null}, {"text": "rare", "start": 392, "end": 396, "id": 76, "annotation": null}, {"text": "-", "start": 397, "end": 398, "id": 77, "annotation": null}, {"text": "earth", "start": 399, "end": 404, "id": 78, "annotation": null}, {"text": "ions", "start": 405, "end": 409, "id": 79, "annotation": null}, {"text": "\u2019", "start": 410, "end": 411, "id": 80, "annotation": null}, {"text": "impurity", "start": 412, "end": 420, "id": 81, "annotation": null}, {"text": "and", "start": 421, "end": 424, "id": 82, "annotation": null}, {"text": ",", "start": 425, "end": 426, "id": 83, "annotation": null}, {"text": "taking", "start": 427, "end": 433, "id": 84, "annotation": null}, {"text": "into", "start": 434, "end": 438, "id": 85, "annotation": null}, {"text": "account", "start": 439, "end": 446, "id": 86, "annotation": null}, {"text": "structural", "start": 447, "end": 457, "id": 87, "annotation": null}, {"text": "disorder", "start": 458, "end": 466, "id": 88, "annotation": null}, {"text": ",", "start": 467, "end": 468, "id": 89, "annotation": null}, {"text": "is", "start": 469, "end": 471, "id": 90, "annotation": null}, {"text": "similar", "start": 472, "end": 479, "id": 91, "annotation": null}, {"text": "to", "start": 480, "end": 482, "id": 92, "annotation": null}, {"text": "that", "start": 483, "end": 487, "id": 93, "annotation": null}, {"text": "present", "start": 488, "end": 495, "id": 94, "annotation": null}, {"text": "in", "start": 496, "end": 498, "id": 95, "annotation": null}, {"text": "pure", "start": 499, "end": 503, "id": 96, "annotation": null}, {"text": "oxide", "start": 504, "end": 509, "id": 97, "annotation": null}, {"text": "systems", "start": 510, "end": 517, "id": 98, "annotation": null}, {"text": ".", "start": 518, "end": 519, "id": 99, "annotation": null}], [{"text": "Short", "start": 520, "end": 525, "id": 100, "annotation": null}, {"text": "-", "start": 526, "end": 527, "id": 101, "annotation": null}, {"text": "range", "start": 528, "end": 533, "id": 102, "annotation": null}, {"text": "structures", "start": 534, "end": 544, "id": 103, "annotation": null}, {"text": "around", "start": 545, "end": 551, "id": 104, "annotation": null}, {"text": "the", "start": 552, "end": 555, "id": 105, "annotation": null}, {"text": "considered", "start": 556, "end": 566, "id": 106, "annotation": null}, {"text": "luminescence", "start": 567, "end": 579, "id": 107, "annotation": null}, {"text": "centres", "start": 580, "end": 587, "id": 108, "annotation": null}, {"text": "are", "start": 588, "end": 591, "id": 109, "annotation": null}, {"text": "discussed", "start": 592, "end": 601, "id": 110, "annotation": null}, {"text": "and", "start": 602, "end": 605, "id": 111, "annotation": null}, {"text": "compared", "start": 606, "end": 614, "id": 112, "annotation": null}, {"text": "with", "start": 615, "end": 619, "id": 113, "annotation": null}, {"text": "relevant", "start": 620, "end": 628, "id": 114, "annotation": null}, {"text": "literature", "start": 629, "end": 639, "id": 115, "annotation": null}, {"text": "data", "start": 640, "end": 644, "id": 116, "annotation": null}, {"text": ".", "start": 645, "end": 646, "id": 117, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Polarised extended X-ray absorption fine structure (EXAFS) and X-ray absorption near edge structure (XANES) spectroscopies have been used to probe the local bonding of the infinite layer compounds CaCuO2 and SrCuO2 and of artificially layered superconducting (BaCuO2)2/(CaCuO2)n and nonsuperconducting (BaCuO2)2/(SrCuO2)2 superlattices. Fluorescence-yield measurements have been performed at T=77 K above the Cu and Ba K-edges. The XANES spectrum of CaCuO2 is described in terms of mixing of electronic configurations in the final state. EXAFS results show that the charge reservoir (CR) block of the Ba/Ca superlattice contains 0.6 oxygen vacancies per unit cell randomly distributed in the CuO2 plane sandwiched between the BaO planes and that the two apical oxygens are not in the Ba plane but are shifted toward Cu by 0.21 \u00c5. These oxygens have a pyramidal and distorted octahedral coordination with Cu at the Ba/Ca interface and in the (BaCuO2)2 block, respectively. The results clarify the origin of the oxygen doping mechanism in these artificially layered compounds.", "meta": {"doi": "10.1016/S0921-4534(99)00630-9"}, "_input_hash": 1072511407, "_task_hash": -815896000, "tokens": [[{"text": "Polarised", "start": 0, "end": 9, "id": 0, "annotation": null}, {"text": "extended", "start": 10, "end": 18, "id": 1, "annotation": null}, {"text": "X", "start": 19, "end": 20, "id": 2, "annotation": null}, {"text": "-", "start": 21, "end": 22, "id": 3, "annotation": null}, {"text": "ray", "start": 23, "end": 26, "id": 4, "annotation": null}, {"text": "absorption", "start": 27, "end": 37, "id": 5, "annotation": null}, {"text": "fine", "start": 38, "end": 42, "id": 6, "annotation": null}, {"text": "structure", "start": 43, "end": 52, "id": 7, "annotation": null}, {"text": "(", "start": 53, "end": 54, "id": 8, "annotation": null}, {"text": "EXAFS", "start": 55, "end": 60, "id": 9, "annotation": null}, {"text": ")", "start": 61, "end": 62, "id": 10, "annotation": null}, {"text": "and", "start": 63, "end": 66, "id": 11, "annotation": null}, {"text": "X", "start": 67, "end": 68, "id": 12, "annotation": null}, {"text": "-", "start": 69, "end": 70, "id": 13, "annotation": null}, {"text": "ray", "start": 71, "end": 74, "id": 14, "annotation": null}, {"text": "absorption", "start": 75, "end": 85, "id": 15, "annotation": null}, {"text": "near", "start": 86, "end": 90, "id": 16, "annotation": null}, {"text": "edge", "start": 91, "end": 95, "id": 17, "annotation": null}, {"text": "structure", "start": 96, "end": 105, "id": 18, "annotation": null}, {"text": "(", "start": 106, "end": 107, "id": 19, "annotation": null}, {"text": "XANES", "start": 108, "end": 113, "id": 20, "annotation": null}, {"text": ")", "start": 114, "end": 115, "id": 21, "annotation": null}, {"text": "spectroscopies", "start": 116, "end": 130, "id": 22, "annotation": null}, {"text": "have", "start": 131, "end": 135, "id": 23, "annotation": null}, {"text": "been", "start": 136, "end": 140, "id": 24, "annotation": null}, {"text": "used", "start": 141, "end": 145, "id": 25, "annotation": null}, {"text": "to", "start": 146, "end": 148, "id": 26, "annotation": null}, {"text": "probe", "start": 149, "end": 154, "id": 27, "annotation": null}, {"text": "the", "start": 155, "end": 158, "id": 28, "annotation": null}, {"text": "local", "start": 159, "end": 164, "id": 29, "annotation": null}, {"text": "bonding", "start": 165, "end": 172, "id": 30, "annotation": null}, {"text": "of", "start": 173, "end": 175, "id": 31, "annotation": null}, {"text": "the", "start": 176, "end": 179, "id": 32, "annotation": null}, {"text": "infinite", "start": 180, "end": 188, "id": 33, "annotation": null}, {"text": "layer", "start": 189, "end": 194, "id": 34, "annotation": null}, {"text": "compounds", "start": 195, "end": 204, "id": 35, "annotation": null}, {"text": "CaCuO2", "start": 205, "end": 211, "id": 36, "annotation": null}, {"text": "and", "start": 212, "end": 215, "id": 37, "annotation": null}, {"text": "SrCuO2", "start": 216, "end": 222, "id": 38, "annotation": null}, {"text": "and", "start": 223, "end": 226, "id": 39, "annotation": null}, {"text": "of", "start": 227, "end": 229, "id": 40, "annotation": null}, {"text": "artificially", "start": 230, "end": 242, "id": 41, "annotation": null}, {"text": "layered", "start": 243, "end": 250, "id": 42, "annotation": null}, {"text": "superconducting", "start": 251, "end": 266, "id": 43, "annotation": null}, {"text": "(", "start": 267, "end": 268, "id": 44, "annotation": null}, {"text": "BaCuO2)2/(CaCuO2)n", "start": 269, "end": 287, "id": 45, "annotation": null}, {"text": "and", "start": 288, "end": 291, "id": 46, "annotation": null}, {"text": "nonsuperconducting", "start": 292, "end": 310, "id": 47, "annotation": null}, {"text": "(", "start": 311, "end": 312, "id": 48, "annotation": null}, {"text": "BaCuO2)2/(SrCuO2)2", "start": 313, "end": 331, "id": 49, "annotation": null}, {"text": "superlattices", "start": 332, "end": 345, "id": 50, "annotation": null}, {"text": ".", "start": 346, "end": 347, "id": 51, "annotation": null}], [{"text": "Fluorescence", "start": 348, "end": 360, "id": 52, "annotation": null}, {"text": "-", "start": 361, "end": 362, "id": 53, "annotation": null}, {"text": "yield", "start": 363, "end": 368, "id": 54, "annotation": null}, {"text": "measurements", "start": 369, "end": 381, "id": 55, "annotation": null}, {"text": "have", "start": 382, "end": 386, "id": 56, "annotation": null}, {"text": "been", "start": 387, "end": 391, "id": 57, "annotation": null}, {"text": "performed", "start": 392, "end": 401, "id": 58, "annotation": null}, {"text": "at", "start": 402, "end": 404, "id": 59, "annotation": null}, {"text": "T=77", "start": 405, "end": 409, "id": 60, "annotation": null}, {"text": "K", "start": 410, "end": 411, "id": 61, "annotation": null}, {"text": "above", "start": 412, "end": 417, "id": 62, "annotation": null}, {"text": "the", "start": 418, "end": 421, "id": 63, "annotation": null}, {"text": "Cu", "start": 422, "end": 424, "id": 64, "annotation": null}, {"text": "and", "start": 425, "end": 428, "id": 65, "annotation": null}, {"text": "Ba", "start": 429, "end": 431, "id": 66, "annotation": null}, {"text": "K", "start": 432, "end": 433, "id": 67, "annotation": null}, {"text": "-", "start": 434, "end": 435, "id": 68, "annotation": null}, {"text": "edges", "start": 436, "end": 441, "id": 69, "annotation": null}, {"text": ".", "start": 442, "end": 443, "id": 70, "annotation": null}], [{"text": "The", "start": 444, "end": 447, "id": 71, "annotation": null}, {"text": "XANES", "start": 448, "end": 453, "id": 72, "annotation": null}, {"text": "spectrum", "start": 454, "end": 462, "id": 73, "annotation": null}, {"text": "of", "start": 463, "end": 465, "id": 74, "annotation": null}, {"text": "CaCuO2", "start": 466, "end": 472, "id": 75, "annotation": null}, {"text": "is", "start": 473, "end": 475, "id": 76, "annotation": null}, {"text": "described", "start": 476, "end": 485, "id": 77, "annotation": null}, {"text": "in", "start": 486, "end": 488, "id": 78, "annotation": null}, {"text": "terms", "start": 489, "end": 494, "id": 79, "annotation": null}, {"text": "of", "start": 495, "end": 497, "id": 80, "annotation": null}, {"text": "mixing", "start": 498, "end": 504, "id": 81, "annotation": null}, {"text": "of", "start": 505, "end": 507, "id": 82, "annotation": null}, {"text": "electronic", "start": 508, "end": 518, "id": 83, "annotation": null}, {"text": "configurations", "start": 519, "end": 533, "id": 84, "annotation": null}, {"text": "in", "start": 534, "end": 536, "id": 85, "annotation": null}, {"text": "the", "start": 537, "end": 540, "id": 86, "annotation": null}, {"text": "final", "start": 541, "end": 546, "id": 87, "annotation": null}, {"text": "state", "start": 547, "end": 552, "id": 88, "annotation": null}, {"text": ".", "start": 553, "end": 554, "id": 89, "annotation": null}], [{"text": "EXAFS", "start": 555, "end": 560, "id": 90, "annotation": null}, {"text": "results", "start": 561, "end": 568, "id": 91, "annotation": null}, {"text": "show", "start": 569, "end": 573, "id": 92, "annotation": null}, {"text": "that", "start": 574, "end": 578, "id": 93, "annotation": null}, {"text": "the", "start": 579, "end": 582, "id": 94, "annotation": null}, {"text": "charge", "start": 583, "end": 589, "id": 95, "annotation": null}, {"text": "reservoir", "start": 590, "end": 599, "id": 96, "annotation": null}, {"text": "(", "start": 600, "end": 601, "id": 97, "annotation": null}, {"text": "CR", "start": 602, "end": 604, "id": 98, "annotation": null}, {"text": ")", "start": 605, "end": 606, "id": 99, "annotation": null}, {"text": "block", "start": 607, "end": 612, "id": 100, "annotation": null}, {"text": "of", "start": 613, "end": 615, "id": 101, "annotation": null}, {"text": "the", "start": 616, "end": 619, "id": 102, "annotation": null}, {"text": "Ba", "start": 620, "end": 622, "id": 103, "annotation": null}, {"text": "/", "start": 623, "end": 624, "id": 104, "annotation": null}, {"text": "Ca", "start": 625, "end": 627, "id": 105, "annotation": null}, {"text": "superlattice", "start": 628, "end": 640, "id": 106, "annotation": null}, {"text": "contains", "start": 641, "end": 649, "id": 107, "annotation": null}, {"text": "0.6", "start": 650, "end": 653, "id": 108, "annotation": null}, {"text": "oxygen", "start": 654, "end": 660, "id": 109, "annotation": null}, {"text": "vacancies", "start": 661, "end": 670, "id": 110, "annotation": null}, {"text": "per", "start": 671, "end": 674, "id": 111, "annotation": null}, {"text": "unit", "start": 675, "end": 679, "id": 112, "annotation": null}, {"text": "cell", "start": 680, "end": 684, "id": 113, "annotation": null}, {"text": "randomly", "start": 685, "end": 693, "id": 114, "annotation": null}, {"text": "distributed", "start": 694, "end": 705, "id": 115, "annotation": null}, {"text": "in", "start": 706, "end": 708, "id": 116, "annotation": null}, {"text": "the", "start": 709, "end": 712, "id": 117, "annotation": null}, {"text": "CuO2", "start": 713, "end": 717, "id": 118, "annotation": null}, {"text": "plane", "start": 718, "end": 723, "id": 119, "annotation": null}, {"text": "sandwiched", "start": 724, "end": 734, "id": 120, "annotation": null}, {"text": "between", "start": 735, "end": 742, "id": 121, "annotation": null}, {"text": "the", "start": 743, "end": 746, "id": 122, "annotation": null}, {"text": "BaO", "start": 747, "end": 750, "id": 123, "annotation": null}, {"text": "planes", "start": 751, "end": 757, "id": 124, "annotation": null}, {"text": "and", "start": 758, "end": 761, "id": 125, "annotation": null}, {"text": "that", "start": 762, "end": 766, "id": 126, "annotation": null}, {"text": "the", "start": 767, "end": 770, "id": 127, "annotation": null}, {"text": "two", "start": 771, "end": 774, "id": 128, "annotation": null}, {"text": "apical", "start": 775, "end": 781, "id": 129, "annotation": null}, {"text": "oxygens", "start": 782, "end": 789, "id": 130, "annotation": null}, {"text": "are", "start": 790, "end": 793, "id": 131, "annotation": null}, {"text": "not", "start": 794, "end": 797, "id": 132, "annotation": null}, {"text": "in", "start": 798, "end": 800, "id": 133, "annotation": null}, {"text": "the", "start": 801, "end": 804, "id": 134, "annotation": null}, {"text": "Ba", "start": 805, "end": 807, "id": 135, "annotation": null}, {"text": "plane", "start": 808, "end": 813, "id": 136, "annotation": null}, {"text": "but", "start": 814, "end": 817, "id": 137, "annotation": null}, {"text": "are", "start": 818, "end": 821, "id": 138, "annotation": null}, {"text": "shifted", "start": 822, "end": 829, "id": 139, "annotation": null}, {"text": "toward", "start": 830, "end": 836, "id": 140, "annotation": null}, {"text": "Cu", "start": 837, "end": 839, "id": 141, "annotation": null}, {"text": "by", "start": 840, "end": 842, "id": 142, "annotation": null}, {"text": "0.21", "start": 843, "end": 847, "id": 143, "annotation": null}, {"text": "\u00c5.", "start": 848, "end": 850, "id": 144, "annotation": null}], [{"text": "These", "start": 851, "end": 856, "id": 145, "annotation": null}, {"text": "oxygens", "start": 857, "end": 864, "id": 146, "annotation": null}, {"text": "have", "start": 865, "end": 869, "id": 147, "annotation": null}, {"text": "a", "start": 870, "end": 871, "id": 148, "annotation": null}, {"text": "pyramidal", "start": 872, "end": 881, "id": 149, "annotation": null}, {"text": "and", "start": 882, "end": 885, "id": 150, "annotation": null}, {"text": "distorted", "start": 886, "end": 895, "id": 151, "annotation": null}, {"text": "octahedral", "start": 896, "end": 906, "id": 152, "annotation": null}, {"text": "coordination", "start": 907, "end": 919, "id": 153, "annotation": null}, {"text": "with", "start": 920, "end": 924, "id": 154, "annotation": null}, {"text": "Cu", "start": 925, "end": 927, "id": 155, "annotation": null}, {"text": "at", "start": 928, "end": 930, "id": 156, "annotation": null}, {"text": "the", "start": 931, "end": 934, "id": 157, "annotation": null}, {"text": "Ba", "start": 935, "end": 937, "id": 158, "annotation": null}, {"text": "/", "start": 938, "end": 939, "id": 159, "annotation": null}, {"text": "Ca", "start": 940, "end": 942, "id": 160, "annotation": null}, {"text": "interface", "start": 943, "end": 952, "id": 161, "annotation": null}, {"text": "and", "start": 953, "end": 956, "id": 162, "annotation": null}, {"text": "in", "start": 957, "end": 959, "id": 163, "annotation": null}, {"text": "the", "start": 960, "end": 963, "id": 164, "annotation": null}, {"text": "(", "start": 964, "end": 965, "id": 165, "annotation": null}, {"text": "BaCuO2)2", "start": 966, "end": 974, "id": 166, "annotation": null}, {"text": "block", "start": 975, "end": 980, "id": 167, "annotation": null}, {"text": ",", "start": 981, "end": 982, "id": 168, "annotation": null}, {"text": "respectively", "start": 983, "end": 995, "id": 169, "annotation": null}, {"text": ".", "start": 996, "end": 997, "id": 170, "annotation": null}], [{"text": "The", "start": 998, "end": 1001, "id": 171, "annotation": null}, {"text": "results", "start": 1002, "end": 1009, "id": 172, "annotation": null}, {"text": "clarify", "start": 1010, "end": 1017, "id": 173, "annotation": null}, {"text": "the", "start": 1018, "end": 1021, "id": 174, "annotation": null}, {"text": "origin", "start": 1022, "end": 1028, "id": 175, "annotation": null}, {"text": "of", "start": 1029, "end": 1031, "id": 176, "annotation": null}, {"text": "the", "start": 1032, "end": 1035, "id": 177, "annotation": null}, {"text": "oxygen", "start": 1036, "end": 1042, "id": 178, "annotation": "DOPANT"}, {"text": "doping", "start": 1043, "end": 1049, "id": 179, "annotation": null}, {"text": "mechanism", "start": 1050, "end": 1059, "id": 180, "annotation": null}, {"text": "in", "start": 1060, "end": 1062, "id": 181, "annotation": null}, {"text": "these", "start": 1063, "end": 1068, "id": 182, "annotation": null}, {"text": "artificially", "start": 1069, "end": 1081, "id": 183, "annotation": null}, {"text": "layered", "start": 1082, "end": 1089, "id": 184, "annotation": null}, {"text": "compounds", "start": 1090, "end": 1099, "id": 185, "annotation": "BASEMAT"}, {"text": ".", "start": 1100, "end": 1101, "id": 186, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The practical application of organic fluorophores in bioimaging is severely limited due to their generally poor stability. In this Highlight, we emphasize several representative strategies including nanoparticle-encapsulating dyes, dye-doped nanoparticles and molecular engineering for stabilizing fluorophores, especially with a breakthrough in photostability for visualizing disease therapy, tumor and biological processes.", "meta": {"doi": "10.1039/C4CS00152D"}, "_input_hash": -992982152, "_task_hash": -684917091, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "practical", "start": 4, "end": 13, "id": 1, "annotation": null}, {"text": "application", "start": 14, "end": 25, "id": 2, "annotation": null}, {"text": "of", "start": 26, "end": 28, "id": 3, "annotation": null}, {"text": "organic", "start": 29, "end": 36, "id": 4, "annotation": null}, {"text": "fluorophores", "start": 37, "end": 49, "id": 5, "annotation": null}, {"text": "in", "start": 50, "end": 52, "id": 6, "annotation": null}, {"text": "bioimaging", "start": 53, "end": 63, "id": 7, "annotation": null}, {"text": "is", "start": 64, "end": 66, "id": 8, "annotation": null}, {"text": "severely", "start": 67, "end": 75, "id": 9, "annotation": null}, {"text": "limited", "start": 76, "end": 83, "id": 10, "annotation": null}, {"text": "due", "start": 84, "end": 87, "id": 11, "annotation": null}, {"text": "to", "start": 88, "end": 90, "id": 12, "annotation": null}, {"text": "their", "start": 91, "end": 96, "id": 13, "annotation": null}, {"text": "generally", "start": 97, "end": 106, "id": 14, "annotation": null}, {"text": "poor", "start": 107, "end": 111, "id": 15, "annotation": null}, {"text": "stability", "start": 112, "end": 121, "id": 16, "annotation": null}, {"text": ".", "start": 122, "end": 123, "id": 17, "annotation": null}], [{"text": "In", "start": 124, "end": 126, "id": 18, "annotation": null}, {"text": "this", "start": 127, "end": 131, "id": 19, "annotation": null}, {"text": "Highlight", "start": 132, "end": 141, "id": 20, "annotation": null}, {"text": ",", "start": 142, "end": 143, "id": 21, "annotation": null}, {"text": "we", "start": 144, "end": 146, "id": 22, "annotation": null}, {"text": "emphasize", "start": 147, "end": 156, "id": 23, "annotation": null}, {"text": "several", "start": 157, "end": 164, "id": 24, "annotation": null}, {"text": "representative", "start": 165, "end": 179, "id": 25, "annotation": null}, {"text": "strategies", "start": 180, "end": 190, "id": 26, "annotation": null}, {"text": "including", "start": 191, "end": 200, "id": 27, "annotation": null}, {"text": "nanoparticle", "start": 201, "end": 213, "id": 28, "annotation": null}, {"text": "-", "start": 214, "end": 215, "id": 29, "annotation": null}, {"text": "encapsulating", "start": 216, "end": 229, "id": 30, "annotation": null}, {"text": "dyes", "start": 230, "end": 234, "id": 31, "annotation": null}, {"text": ",", "start": 235, "end": 236, "id": 32, "annotation": null}, {"text": "dye", "start": 237, "end": 240, "id": 33, "annotation": "DOPANT"}, {"text": "-", "start": 241, "end": 242, "id": 34, "annotation": null}, {"text": "doped", "start": 243, "end": 248, "id": 35, "annotation": null}, {"text": "nanoparticles", "start": 249, "end": 262, "id": 36, "annotation": "BASEMAT"}, {"text": "and", "start": 263, "end": 266, "id": 37, "annotation": null}, {"text": "molecular", "start": 267, "end": 276, "id": 38, "annotation": null}, {"text": "engineering", "start": 277, "end": 288, "id": 39, "annotation": null}, {"text": "for", "start": 289, "end": 292, "id": 40, "annotation": null}, {"text": "stabilizing", "start": 293, "end": 304, "id": 41, "annotation": null}, {"text": "fluorophores", "start": 305, "end": 317, "id": 42, "annotation": null}, {"text": ",", "start": 318, "end": 319, "id": 43, "annotation": null}, {"text": "especially", "start": 320, "end": 330, "id": 44, "annotation": null}, {"text": "with", "start": 331, "end": 335, "id": 45, "annotation": null}, {"text": "a", "start": 336, "end": 337, "id": 46, "annotation": null}, {"text": "breakthrough", "start": 338, "end": 350, "id": 47, "annotation": null}, {"text": "in", "start": 351, "end": 353, "id": 48, "annotation": null}, {"text": "photostability", "start": 354, "end": 368, "id": 49, "annotation": null}, {"text": "for", "start": 369, "end": 372, "id": 50, "annotation": null}, {"text": "visualizing", "start": 373, "end": 384, "id": 51, "annotation": null}, {"text": "disease", "start": 385, "end": 392, "id": 52, "annotation": null}, {"text": "therapy", "start": 393, "end": 400, "id": 53, "annotation": null}, {"text": ",", "start": 401, "end": 402, "id": 54, "annotation": null}, {"text": "tumor", "start": 403, "end": 408, "id": 55, "annotation": null}, {"text": "and", "start": 409, "end": 412, "id": 56, "annotation": null}, {"text": "biological", "start": 413, "end": 423, "id": 57, "annotation": null}, {"text": "processes", "start": 424, "end": 433, "id": 58, "annotation": null}, {"text": ".", "start": 434, "end": 435, "id": 59, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "By using our low-energy Ar plasma enhanced chemical vapor deposition (CVD) at a substrate temperature below 100\u00b0C during plasma exposure without substrate heating, modulation of valence band structures and infrared photoluminescence can be observed by change of strain in a Si/strained Si0.4Ge0.6/Si(100) heterostructure. For the strained Si0.5Ge0.5 film, Hall mobility at room temperature was confirmed to be as high as 660cm2V\u22121s\u22121 with a carrier concentration of 1.3\u00d71018cm\u22123 for n-type carrier, although the carrier origin was unclear. Moreover, good rectifying characteristics were obtained for a p+Si/nSi0.5Ge0.5 heterojunction diode. This indicates that the strained Si-Ge alloy and Si films and their heterostructures epitaxially grown by our low-energy Ar plasma enhanced CVD without substrate heating can be applicable effectively for various semiconductor devices utilizing high carrier mobility, built-in potential by doping and band engineering.", "meta": {"doi": "10.1016/j.mssp.2016.09.035"}, "_input_hash": 2096593842, "_task_hash": -1155630933, "tokens": [[{"text": "By", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "using", "start": 3, "end": 8, "id": 1, "annotation": null}, {"text": "our", "start": 9, "end": 12, "id": 2, "annotation": null}, {"text": "low", "start": 13, "end": 16, "id": 3, "annotation": null}, {"text": "-", "start": 17, "end": 18, "id": 4, "annotation": null}, {"text": "energy", "start": 19, "end": 25, "id": 5, "annotation": null}, {"text": "Ar", "start": 26, "end": 28, "id": 6, "annotation": null}, {"text": "plasma", "start": 29, "end": 35, "id": 7, "annotation": null}, {"text": "enhanced", "start": 36, "end": 44, "id": 8, "annotation": null}, {"text": "chemical", "start": 45, "end": 53, "id": 9, "annotation": null}, {"text": "vapor", "start": 54, "end": 59, "id": 10, "annotation": null}, {"text": "deposition", "start": 60, "end": 70, "id": 11, "annotation": null}, {"text": "(", "start": 71, "end": 72, "id": 12, "annotation": null}, {"text": "CVD", "start": 73, "end": 76, "id": 13, "annotation": null}, {"text": ")", "start": 77, "end": 78, "id": 14, "annotation": null}, {"text": "at", "start": 79, "end": 81, "id": 15, "annotation": null}, {"text": "a", "start": 82, "end": 83, "id": 16, "annotation": null}, {"text": "substrate", "start": 84, "end": 93, "id": 17, "annotation": null}, {"text": "temperature", "start": 94, "end": 105, "id": 18, "annotation": null}, {"text": "below", "start": 106, "end": 111, "id": 19, "annotation": null}, {"text": "100", "start": 112, "end": 115, "id": 20, "annotation": null}, {"text": "\u00b0", "start": 116, "end": 117, "id": 21, "annotation": null}, {"text": "C", "start": 118, "end": 119, "id": 22, "annotation": null}, {"text": "during", "start": 120, "end": 126, "id": 23, "annotation": null}, {"text": "plasma", "start": 127, "end": 133, "id": 24, "annotation": null}, {"text": "exposure", "start": 134, "end": 142, "id": 25, "annotation": null}, {"text": "without", "start": 143, "end": 150, "id": 26, "annotation": null}, {"text": "substrate", "start": 151, "end": 160, "id": 27, "annotation": null}, {"text": "heating", "start": 161, "end": 168, "id": 28, "annotation": null}, {"text": ",", "start": 169, "end": 170, "id": 29, "annotation": null}, {"text": "modulation", "start": 171, "end": 181, "id": 30, "annotation": null}, {"text": "of", "start": 182, "end": 184, "id": 31, "annotation": null}, {"text": "valence", "start": 185, "end": 192, "id": 32, "annotation": null}, {"text": "band", "start": 193, "end": 197, "id": 33, "annotation": null}, {"text": "structures", "start": 198, "end": 208, "id": 34, "annotation": null}, {"text": "and", "start": 209, "end": 212, "id": 35, "annotation": null}, {"text": "infrared", "start": 213, "end": 221, "id": 36, "annotation": null}, {"text": "photoluminescence", "start": 222, "end": 239, "id": 37, "annotation": null}, {"text": "can", "start": 240, "end": 243, "id": 38, "annotation": null}, {"text": "be", "start": 244, "end": 246, "id": 39, "annotation": null}, {"text": "observed", "start": 247, "end": 255, "id": 40, "annotation": null}, {"text": "by", "start": 256, "end": 258, "id": 41, "annotation": null}, {"text": "change", "start": 259, "end": 265, "id": 42, "annotation": null}, {"text": "of", "start": 266, "end": 268, "id": 43, "annotation": null}, {"text": "strain", "start": 269, "end": 275, "id": 44, "annotation": null}, {"text": "in", "start": 276, "end": 278, "id": 45, "annotation": null}, {"text": "a", "start": 279, "end": 280, "id": 46, "annotation": null}, {"text": "Si", "start": 281, "end": 283, "id": 47, "annotation": null}, {"text": "/", "start": 284, "end": 285, "id": 48, "annotation": null}, {"text": "strained", "start": 286, "end": 294, "id": 49, "annotation": null}, {"text": "Si0.4Ge0.6", "start": 295, "end": 305, "id": 50, "annotation": null}, {"text": "/", "start": 306, "end": 307, "id": 51, "annotation": null}, {"text": "Si(100", "start": 308, "end": 314, "id": 52, "annotation": null}, {"text": ")", "start": 315, "end": 316, "id": 53, "annotation": null}, {"text": "heterostructure", "start": 317, "end": 332, "id": 54, "annotation": null}, {"text": ".", "start": 333, "end": 334, "id": 55, "annotation": null}], [{"text": "For", "start": 335, "end": 338, "id": 56, "annotation": null}, {"text": "the", "start": 339, "end": 342, "id": 57, "annotation": null}, {"text": "strained", "start": 343, "end": 351, "id": 58, "annotation": null}, {"text": "Si0.5Ge0.5", "start": 352, "end": 362, "id": 59, "annotation": "BASEMAT"}, {"text": "film", "start": 363, "end": 367, "id": 60, "annotation": null}, {"text": ",", "start": 368, "end": 369, "id": 61, "annotation": null}, {"text": "Hall", "start": 370, "end": 374, "id": 62, "annotation": null}, {"text": "mobility", "start": 375, "end": 383, "id": 63, "annotation": null}, {"text": "at", "start": 384, "end": 386, "id": 64, "annotation": null}, {"text": "room", "start": 387, "end": 391, "id": 65, "annotation": null}, {"text": "temperature", "start": 392, "end": 403, "id": 66, "annotation": null}, {"text": "was", "start": 404, "end": 407, "id": 67, "annotation": null}, {"text": "confirmed", "start": 408, "end": 417, "id": 68, "annotation": null}, {"text": "to", "start": 418, "end": 420, "id": 69, "annotation": null}, {"text": "be", "start": 421, "end": 423, "id": 70, "annotation": null}, {"text": "as", "start": 424, "end": 426, "id": 71, "annotation": null}, {"text": "high", "start": 427, "end": 431, "id": 72, "annotation": null}, {"text": "as", "start": 432, "end": 434, "id": 73, "annotation": null}, {"text": "660cm2V\u22121s\u22121", "start": 435, "end": 447, "id": 74, "annotation": null}, {"text": "with", "start": 448, "end": 452, "id": 75, "annotation": null}, {"text": "a", "start": 453, "end": 454, "id": 76, "annotation": null}, {"text": "carrier", "start": 455, "end": 462, "id": 77, "annotation": null}, {"text": "concentration", "start": 463, "end": 476, "id": 78, "annotation": null}, {"text": "of", "start": 477, "end": 479, "id": 79, "annotation": null}, {"text": "1.3\u00d71018cm\u22123", "start": 480, "end": 492, "id": 80, "annotation": "DOPMODQ"}, {"text": "for", "start": 493, "end": 496, "id": 81, "annotation": null}, {"text": "n", "start": 497, "end": 498, "id": 82, "annotation": "DOPANT"}, {"text": "-", "start": 499, "end": 500, "id": 83, "annotation": null}, {"text": "type", "start": 501, "end": 505, "id": 84, "annotation": "DOPANT"}, {"text": "carrier", "start": 506, "end": 513, "id": 85, "annotation": null}, {"text": ",", "start": 514, "end": 515, "id": 86, "annotation": null}, {"text": "although", "start": 516, "end": 524, "id": 87, "annotation": null}, {"text": "the", "start": 525, "end": 528, "id": 88, "annotation": null}, {"text": "carrier", "start": 529, "end": 536, "id": 89, "annotation": null}, {"text": "origin", "start": 537, "end": 543, "id": 90, "annotation": null}, {"text": "was", "start": 544, "end": 547, "id": 91, "annotation": null}, {"text": "unclear", "start": 548, "end": 555, "id": 92, "annotation": null}, {"text": ".", "start": 556, "end": 557, "id": 93, "annotation": null}], [{"text": "Moreover", "start": 558, "end": 566, "id": 94, "annotation": null}, {"text": ",", "start": 567, "end": 568, "id": 95, "annotation": null}, {"text": "good", "start": 569, "end": 573, "id": 96, "annotation": null}, {"text": "rectifying", "start": 574, "end": 584, "id": 97, "annotation": null}, {"text": "characteristics", "start": 585, "end": 600, "id": 98, "annotation": null}, {"text": "were", "start": 601, "end": 605, "id": 99, "annotation": null}, {"text": "obtained", "start": 606, "end": 614, "id": 100, "annotation": null}, {"text": "for", "start": 615, "end": 618, "id": 101, "annotation": null}, {"text": "a", "start": 619, "end": 620, "id": 102, "annotation": null}, {"text": "p+Si", "start": 621, "end": 625, "id": 103, "annotation": null}, {"text": "/", "start": 626, "end": 627, "id": 104, "annotation": null}, {"text": "nSi0.5Ge0.5", "start": 628, "end": 639, "id": 105, "annotation": null}, {"text": "heterojunction", "start": 640, "end": 654, "id": 106, "annotation": null}, {"text": "diode", "start": 655, "end": 660, "id": 107, "annotation": null}, {"text": ".", "start": 661, "end": 662, "id": 108, "annotation": null}], [{"text": "This", "start": 663, "end": 667, "id": 109, "annotation": null}, {"text": "indicates", "start": 668, "end": 677, "id": 110, "annotation": null}, {"text": "that", "start": 678, "end": 682, "id": 111, "annotation": null}, {"text": "the", "start": 683, "end": 686, "id": 112, "annotation": null}, {"text": "strained", "start": 687, "end": 695, "id": 113, "annotation": null}, {"text": "Si", "start": 696, "end": 698, "id": 114, "annotation": null}, {"text": "-", "start": 699, "end": 700, "id": 115, "annotation": null}, {"text": "Ge", "start": 701, "end": 703, "id": 116, "annotation": null}, {"text": "alloy", "start": 704, "end": 709, "id": 117, "annotation": null}, {"text": "and", "start": 710, "end": 713, "id": 118, "annotation": null}, {"text": "Si", "start": 714, "end": 716, "id": 119, "annotation": "BASEMAT"}, {"text": "films", "start": 717, "end": 722, "id": 120, "annotation": null}, {"text": "and", "start": 723, "end": 726, "id": 121, "annotation": null}, {"text": "their", "start": 727, "end": 732, "id": 122, "annotation": null}, {"text": "heterostructures", "start": 733, "end": 749, "id": 123, "annotation": null}, {"text": "epitaxially", "start": 750, "end": 761, "id": 124, "annotation": null}, {"text": "grown", "start": 762, "end": 767, "id": 125, "annotation": null}, {"text": "by", "start": 768, "end": 770, "id": 126, "annotation": null}, {"text": "our", "start": 771, "end": 774, "id": 127, "annotation": null}, {"text": "low", "start": 775, "end": 778, "id": 128, "annotation": null}, {"text": "-", "start": 779, "end": 780, "id": 129, "annotation": null}, {"text": "energy", "start": 781, "end": 787, "id": 130, "annotation": null}, {"text": "Ar", "start": 788, "end": 790, "id": 131, "annotation": null}, {"text": "plasma", "start": 791, "end": 797, "id": 132, "annotation": null}, {"text": "enhanced", "start": 798, "end": 806, "id": 133, "annotation": null}, {"text": "CVD", "start": 807, "end": 810, "id": 134, "annotation": null}, {"text": "without", "start": 811, "end": 818, "id": 135, "annotation": null}, {"text": "substrate", "start": 819, "end": 828, "id": 136, "annotation": null}, {"text": "heating", "start": 829, "end": 836, "id": 137, "annotation": null}, {"text": "can", "start": 837, "end": 840, "id": 138, "annotation": null}, {"text": "be", "start": 841, "end": 843, "id": 139, "annotation": null}, {"text": "applicable", "start": 844, "end": 854, "id": 140, "annotation": null}, {"text": "effectively", "start": 855, "end": 866, "id": 141, "annotation": null}, {"text": "for", "start": 867, "end": 870, "id": 142, "annotation": null}, {"text": "various", "start": 871, "end": 878, "id": 143, "annotation": null}, {"text": "semiconductor", "start": 879, "end": 892, "id": 144, "annotation": null}, {"text": "devices", "start": 893, "end": 900, "id": 145, "annotation": null}, {"text": "utilizing", "start": 901, "end": 910, "id": 146, "annotation": null}, {"text": "high", "start": 911, "end": 915, "id": 147, "annotation": null}, {"text": "carrier", "start": 916, "end": 923, "id": 148, "annotation": null}, {"text": "mobility", "start": 924, "end": 932, "id": 149, "annotation": null}, {"text": ",", "start": 933, "end": 934, "id": 150, "annotation": null}, {"text": "built", "start": 935, "end": 940, "id": 151, "annotation": null}, {"text": "-", "start": 941, "end": 942, "id": 152, "annotation": null}, {"text": "in", "start": 943, "end": 945, "id": 153, "annotation": null}, {"text": "potential", "start": 946, "end": 955, "id": 154, "annotation": null}, {"text": "by", "start": 956, "end": 958, "id": 155, "annotation": null}, {"text": "doping", "start": 959, "end": 965, "id": 156, "annotation": null}, {"text": "and", "start": 966, "end": 969, "id": 157, "annotation": null}, {"text": "band", "start": 970, "end": 974, "id": 158, "annotation": null}, {"text": "engineering", "start": 975, "end": 986, "id": 159, "annotation": null}, {"text": ".", "start": 987, "end": 988, "id": 160, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "Electronic structures of hole-doped and electron hole-doped manganites, La0.7Ca0.3MnO3 and La0.7Ce0.3MnO3, have been elucidated by x-ray absorption near-edge structure (XANES) spectra of O K- and Mn L3,2-edges. In the electron-doped system, La0.7Ce0.3MnO3, the spectral features of O K-edge spectra are shifted by \u223c 1 eV towards the higher energy side and reduction of Mn valency from 4+ and 3+ to 3+ and 2+ is expected when compared to hole-doped manganite. The XANES of Ce M5,4-edges indicates a tetravalent state for Ce, similar to that in CEO2. Ce4+ is incorporated into the lattice of LaMnO3, resulting in the modification of MnO6 octahedra and also indicating strong hybridization of Ce 5d and/or Ce 4f states with O 2p states.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Electronic", "start": 0, "end": 10, "annotation": null}, {"text": "structures", "start": 11, "end": 21, "annotation": null}, {"text": "of", "start": 22, "end": 24, "annotation": null}, {"text": "hole", "start": 25, "end": 29, "annotation": "DOPANT"}, {"text": "-", "start": 29, "end": 30, "annotation": null}, {"text": "doped", "start": 30, "end": 35, "annotation": null}, {"text": "and", "start": 36, "end": 39, "annotation": null}, {"text": "electron", "start": 40, "end": 48, "annotation": "DOPANT"}, {"text": "hole", "start": 49, "end": 53, "annotation": "DOPANT"}, {"text": "-", "start": 53, "end": 54, "annotation": null}, {"text": "doped", "start": 54, "end": 59, "annotation": null}, {"text": "manganites", "start": 60, "end": 70, "annotation": "BASEMAT"}, {"text": ",", "start": 70, "end": 71, "annotation": null}, {"text": "La0.7Ca0.3MnO3", "start": 72, "end": 86, "annotation": "BASEMAT"}, {"text": "and", "start": 87, "end": 90, "annotation": null}, {"text": "La0.7Ce0.3MnO3", "start": 91, "end": 105, "annotation": "BASEMAT"}, {"text": ",", "start": 105, "end": 106, "annotation": null}, {"text": "have", "start": 107, "end": 111, "annotation": null}, {"text": "been", "start": 112, "end": 116, "annotation": null}, {"text": "elucidated", "start": 117, "end": 127, "annotation": null}, {"text": "by", "start": 128, "end": 130, "annotation": null}, {"text": "x-ray", "start": 131, "end": 136, "annotation": null}, {"text": "absorption", "start": 137, "end": 147, "annotation": null}, {"text": "near", "start": 148, "end": 152, "annotation": null}, {"text": "-", "start": 152, "end": 153, "annotation": null}, {"text": "edge", "start": 153, "end": 157, "annotation": null}, {"text": "structure", "start": 158, "end": 167, "annotation": null}, {"text": "(", "start": 168, "end": 169, "annotation": null}, {"text": "XANES", "start": 169, "end": 174, "annotation": null}, {"text": ")", "start": 174, "end": 175, "annotation": null}, {"text": "spectra", "start": 176, "end": 183, "annotation": null}, {"text": "of", "start": 184, "end": 186, "annotation": null}, {"text": "O", "start": 187, "end": 188, "annotation": null}, {"text": "K-", "start": 189, "end": 191, "annotation": null}, {"text": "and", "start": 192, "end": 195, "annotation": null}, {"text": "Mn", "start": 196, "end": 198, "annotation": null}, {"text": "L3,2-edges", "start": 199, "end": 209, "annotation": null}, {"text": ".", "start": 209, "end": 210, "annotation": null}], [{"text": "In", "start": 211, "end": 213, "annotation": null}, {"text": "the", "start": 214, "end": 217, "annotation": null}, {"text": "electron", "start": 218, "end": 226, "annotation": "DOPANT"}, {"text": "-", "start": 226, "end": 227, "annotation": null}, {"text": "doped", "start": 227, "end": 232, "annotation": null}, {"text": "system", "start": 233, "end": 239, "annotation": null}, {"text": ",", "start": 239, "end": 240, "annotation": null}, {"text": "La0.7Ce0.3MnO3", "start": 241, "end": 255, "annotation": "BASEMAT"}, {"text": ",", "start": 255, "end": 256, "annotation": null}, {"text": "the", "start": 257, "end": 260, "annotation": null}, {"text": "spectral", "start": 261, "end": 269, "annotation": null}, {"text": "features", "start": 270, "end": 278, "annotation": null}, {"text": "of", "start": 279, "end": 281, "annotation": null}, {"text": "O", "start": 282, "end": 283, "annotation": null}, {"text": "K", "start": 284, "end": 285, "annotation": null}, {"text": "-", "start": 285, "end": 286, "annotation": null}, {"text": "edge", "start": 286, "end": 290, "annotation": null}, {"text": "spectra", "start": 291, "end": 298, "annotation": null}, {"text": "are", "start": 299, "end": 302, "annotation": null}, {"text": "shifted", "start": 303, "end": 310, "annotation": null}, {"text": "by", "start": 311, "end": 313, "annotation": null}, {"text": "\u223c", "start": 314, "end": 315, "annotation": null}, {"text": "1", "start": 316, "end": 317, "annotation": null}, {"text": "eV", "start": 318, "end": 320, "annotation": null}, {"text": "towards", "start": 321, "end": 328, "annotation": null}, {"text": "the", "start": 329, "end": 332, "annotation": null}, {"text": "higher", "start": 333, "end": 339, "annotation": null}, {"text": "energy", "start": 340, "end": 346, "annotation": null}, {"text": "side", "start": 347, "end": 351, "annotation": null}, {"text": "and", "start": 352, "end": 355, "annotation": null}, {"text": "reduction", "start": 356, "end": 365, "annotation": null}, {"text": "of", "start": 366, "end": 368, "annotation": null}, {"text": "Mn", "start": 369, "end": 371, "annotation": null}, {"text": "valency", "start": 372, "end": 379, "annotation": null}, {"text": "from", "start": 380, "end": 384, "annotation": null}, {"text": "4+", "start": 385, "end": 387, "annotation": null}, {"text": "and", "start": 388, "end": 391, "annotation": null}, {"text": "3+", "start": 392, "end": 394, "annotation": null}, {"text": "to", "start": 395, "end": 397, "annotation": null}, {"text": "3+", "start": 398, "end": 400, "annotation": null}, {"text": "and", "start": 401, "end": 404, "annotation": null}, {"text": "2+", "start": 405, "end": 407, "annotation": null}, {"text": "is", "start": 408, "end": 410, "annotation": null}, {"text": "expected", "start": 411, "end": 419, "annotation": null}, {"text": "when", "start": 420, "end": 424, "annotation": null}, {"text": "compared", "start": 425, "end": 433, "annotation": null}, {"text": "to", "start": 434, "end": 436, "annotation": null}, {"text": "hole", "start": 437, "end": 441, "annotation": "DOPANT"}, {"text": "-", "start": 441, "end": 442, "annotation": null}, {"text": "doped", "start": 442, "end": 447, "annotation": null}, {"text": "manganite", "start": 448, "end": 457, "annotation": "BASEMAT"}, {"text": ".", "start": 457, "end": 458, "annotation": null}], [{"text": "The", "start": 459, "end": 462, "annotation": null}, {"text": "XANES", "start": 463, "end": 468, "annotation": null}, {"text": "of", "start": 469, "end": 471, "annotation": null}, {"text": "Ce", "start": 472, "end": 474, "annotation": null}, {"text": "M5,4-edges", "start": 475, "end": 485, "annotation": null}, {"text": "indicates", "start": 486, "end": 495, "annotation": null}, {"text": "a", "start": 496, "end": 497, "annotation": null}, {"text": "tetravalent", "start": 498, "end": 509, "annotation": null}, {"text": "state", "start": 510, "end": 515, "annotation": null}, {"text": "for", "start": 516, "end": 519, "annotation": null}, {"text": "Ce", "start": 520, "end": 522, "annotation": null}, {"text": ",", "start": 522, "end": 523, "annotation": null}, {"text": "similar", "start": 524, "end": 531, "annotation": null}, {"text": "to", "start": 532, "end": 534, "annotation": null}, {"text": "that", "start": 535, "end": 539, "annotation": null}, {"text": "in", "start": 540, "end": 542, "annotation": null}, {"text": "CEO2", "start": 543, "end": 547, "annotation": null}, {"text": ".", "start": 547, "end": 548, "annotation": null}], [{"text": "Ce4+", "start": 549, "end": 553, "annotation": "DOPANT"}, {"text": "is", "start": 554, "end": 556, "annotation": null}, {"text": "incorporated", "start": 557, "end": 569, "annotation": null}, {"text": "into", "start": 570, "end": 574, "annotation": null}, {"text": "the", "start": 575, "end": 578, "annotation": null}, {"text": "lattice", "start": 579, "end": 586, "annotation": null}, {"text": "of", "start": 587, "end": 589, "annotation": null}, {"text": "LaMnO3", "start": 590, "end": 596, "annotation": null}, {"text": ",", "start": 596, "end": 597, "annotation": null}, {"text": "resulting", "start": 598, "end": 607, "annotation": null}, {"text": "in", "start": 608, "end": 610, "annotation": null}, {"text": "the", "start": 611, "end": 614, "annotation": null}, {"text": "modification", "start": 615, "end": 627, "annotation": null}, {"text": "of", "start": 628, "end": 630, "annotation": null}, {"text": "MnO6", "start": 631, "end": 635, "annotation": null}, {"text": "octahedra", "start": 636, "end": 645, "annotation": null}, {"text": "and", "start": 646, "end": 649, "annotation": null}, {"text": "also", "start": 650, "end": 654, "annotation": null}, {"text": "indicating", "start": 655, "end": 665, "annotation": null}, {"text": "strong", "start": 666, "end": 672, "annotation": null}, {"text": "hybridization", "start": 673, "end": 686, "annotation": null}, {"text": "of", "start": 687, "end": 689, "annotation": null}, {"text": "Ce", "start": 690, "end": 692, "annotation": null}, {"text": "5d", "start": 693, "end": 695, "annotation": null}, {"text": "and", "start": 696, "end": 699, "annotation": null}, {"text": "/", "start": 699, "end": 700, "annotation": null}, {"text": "or", "start": 700, "end": 702, "annotation": null}, {"text": "Ce", "start": 703, "end": 705, "annotation": null}, {"text": "4f", "start": 706, "end": 708, "annotation": null}, {"text": "states", "start": 709, "end": 715, "annotation": null}, {"text": "with", "start": 716, "end": 720, "annotation": null}, {"text": "O", "start": 721, "end": 722, "annotation": null}, {"text": "2p", "start": 723, "end": 725, "annotation": null}, {"text": "states", "start": 726, "end": 732, "annotation": null}, {"text": ".", "start": 732, "end": 733, "annotation": null}]]} +{"remark": "doping_annt2", "text": "Electronic structures of hole-doped and electron hole-doped manganites, La0.7Ca0.3MnO3 and La0.7Ce0.3MnO3, have been elucidated by x-ray absorption near-edge structure (XANES) spectra of O K- and Mn L3,2-edges. In the electron-doped system, La0.7Ce0.3MnO3, the spectral features of O K-edge spectra are shifted by \u223c 1 eV towards the higher energy side and reduction of Mn valency from 4+ and 3+ to 3+ and 2+ is expected when compared to hole-doped manganite. The XANES of Ce M5,4-edges indicates a tetravalent state for Ce, similar to that in CEO2. Ce4+ is incorporated into the lattice of LaMnO3, resulting in the modification of MnO6 octahedra and also indicating strong hybridization of Ce 5d and/or Ce 4f states with O 2p states.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Electronic", "start": 0, "end": 10, "annotation": null}, {"text": "structures", "start": 11, "end": 21, "annotation": null}, {"text": "of", "start": 22, "end": 24, "annotation": null}, {"text": "hole", "start": 25, "end": 29, "annotation": "DOPANT"}, {"text": "-", "start": 29, "end": 30, "annotation": null}, {"text": "doped", "start": 30, "end": 35, "annotation": null}, {"text": "and", "start": 36, "end": 39, "annotation": null}, {"text": "electron", "start": 40, "end": 48, "annotation": "DOPANT"}, {"text": "hole", "start": 49, "end": 53, "annotation": "DOPANT"}, {"text": "-", "start": 53, "end": 54, "annotation": null}, {"text": "doped", "start": 54, "end": 59, "annotation": null}, {"text": "manganites", "start": 60, "end": 70, "annotation": "BASEMAT"}, {"text": ",", "start": 70, "end": 71, "annotation": null}, {"text": "La0.7Ca0.3MnO3", "start": 72, "end": 86, "annotation": "BASEMAT"}, {"text": "and", "start": 87, "end": 90, "annotation": null}, {"text": "La0.7Ce0.3MnO3", "start": 91, "end": 105, "annotation": "BASEMAT"}, {"text": ",", "start": 105, "end": 106, "annotation": null}, {"text": "have", "start": 107, "end": 111, "annotation": null}, {"text": "been", "start": 112, "end": 116, "annotation": null}, {"text": "elucidated", "start": 117, "end": 127, "annotation": null}, {"text": "by", "start": 128, "end": 130, "annotation": null}, {"text": "x-ray", "start": 131, "end": 136, "annotation": null}, {"text": "absorption", "start": 137, "end": 147, "annotation": null}, {"text": "near", "start": 148, "end": 152, "annotation": null}, {"text": "-", "start": 152, "end": 153, "annotation": null}, {"text": "edge", "start": 153, "end": 157, "annotation": null}, {"text": "structure", "start": 158, "end": 167, "annotation": null}, {"text": "(", "start": 168, "end": 169, "annotation": null}, {"text": "XANES", "start": 169, "end": 174, "annotation": null}, {"text": ")", "start": 174, "end": 175, "annotation": null}, {"text": "spectra", "start": 176, "end": 183, "annotation": null}, {"text": "of", "start": 184, "end": 186, "annotation": null}, {"text": "O", "start": 187, "end": 188, "annotation": null}, {"text": "K-", "start": 189, "end": 191, "annotation": null}, {"text": "and", "start": 192, "end": 195, "annotation": null}, {"text": "Mn", "start": 196, "end": 198, "annotation": null}, {"text": "L3,2-edges", "start": 199, "end": 209, "annotation": null}, {"text": ".", "start": 209, "end": 210, "annotation": null}], [{"text": "In", "start": 211, "end": 213, "annotation": null}, {"text": "the", "start": 214, "end": 217, "annotation": null}, {"text": "electron", "start": 218, "end": 226, "annotation": "DOPANT"}, {"text": "-", "start": 226, "end": 227, "annotation": null}, {"text": "doped", "start": 227, "end": 232, "annotation": null}, {"text": "system", "start": 233, "end": 239, "annotation": null}, {"text": ",", "start": 239, "end": 240, "annotation": null}, {"text": "La0.7Ce0.3MnO3", "start": 241, "end": 255, "annotation": "BASEMAT"}, {"text": ",", "start": 255, "end": 256, "annotation": null}, {"text": "the", "start": 257, "end": 260, "annotation": null}, {"text": "spectral", "start": 261, "end": 269, "annotation": null}, {"text": "features", "start": 270, "end": 278, "annotation": null}, {"text": "of", "start": 279, "end": 281, "annotation": null}, {"text": "O", "start": 282, "end": 283, "annotation": null}, {"text": "K", "start": 284, "end": 285, "annotation": null}, {"text": "-", "start": 285, "end": 286, "annotation": null}, {"text": "edge", "start": 286, "end": 290, "annotation": null}, {"text": "spectra", "start": 291, "end": 298, "annotation": null}, {"text": "are", "start": 299, "end": 302, "annotation": null}, {"text": "shifted", "start": 303, "end": 310, "annotation": null}, {"text": "by", "start": 311, "end": 313, "annotation": null}, {"text": "\u223c", "start": 314, "end": 315, "annotation": null}, {"text": "1", "start": 316, "end": 317, "annotation": null}, {"text": "eV", "start": 318, "end": 320, "annotation": null}, {"text": "towards", "start": 321, "end": 328, "annotation": null}, {"text": "the", "start": 329, "end": 332, "annotation": null}, {"text": "higher", "start": 333, "end": 339, "annotation": null}, {"text": "energy", "start": 340, "end": 346, "annotation": null}, {"text": "side", "start": 347, "end": 351, "annotation": null}, {"text": "and", "start": 352, "end": 355, "annotation": null}, {"text": "reduction", "start": 356, "end": 365, "annotation": null}, {"text": "of", "start": 366, "end": 368, "annotation": null}, {"text": "Mn", "start": 369, "end": 371, "annotation": null}, {"text": "valency", "start": 372, "end": 379, "annotation": null}, {"text": "from", "start": 380, "end": 384, "annotation": null}, {"text": "4+", "start": 385, "end": 387, "annotation": null}, {"text": "and", "start": 388, "end": 391, "annotation": null}, {"text": "3+", "start": 392, "end": 394, "annotation": null}, {"text": "to", "start": 395, "end": 397, "annotation": null}, {"text": "3+", "start": 398, "end": 400, "annotation": null}, {"text": "and", "start": 401, "end": 404, "annotation": null}, {"text": "2+", "start": 405, "end": 407, "annotation": null}, {"text": "is", "start": 408, "end": 410, "annotation": null}, {"text": "expected", "start": 411, "end": 419, "annotation": null}, {"text": "when", "start": 420, "end": 424, "annotation": null}, {"text": "compared", "start": 425, "end": 433, "annotation": null}, {"text": "to", "start": 434, "end": 436, "annotation": null}, {"text": "hole", "start": 437, "end": 441, "annotation": "DOPANT"}, {"text": "-", "start": 441, "end": 442, "annotation": null}, {"text": "doped", "start": 442, "end": 447, "annotation": null}, {"text": "manganite", "start": 448, "end": 457, "annotation": "BASEMAT"}, {"text": ".", "start": 457, "end": 458, "annotation": null}], [{"text": "The", "start": 459, "end": 462, "annotation": null}, {"text": "XANES", "start": 463, "end": 468, "annotation": null}, {"text": "of", "start": 469, "end": 471, "annotation": null}, {"text": "Ce", "start": 472, "end": 474, "annotation": null}, {"text": "M5,4-edges", "start": 475, "end": 485, "annotation": null}, {"text": "indicates", "start": 486, "end": 495, "annotation": null}, {"text": "a", "start": 496, "end": 497, "annotation": null}, {"text": "tetravalent", "start": 498, "end": 509, "annotation": null}, {"text": "state", "start": 510, "end": 515, "annotation": null}, {"text": "for", "start": 516, "end": 519, "annotation": null}, {"text": "Ce", "start": 520, "end": 522, "annotation": null}, {"text": ",", "start": 522, "end": 523, "annotation": null}, {"text": "similar", "start": 524, "end": 531, "annotation": null}, {"text": "to", "start": 532, "end": 534, "annotation": null}, {"text": "that", "start": 535, "end": 539, "annotation": null}, {"text": "in", "start": 540, "end": 542, "annotation": null}, {"text": "CEO2", "start": 543, "end": 547, "annotation": null}, {"text": ".", "start": 547, "end": 548, "annotation": null}], [{"text": "Ce4+", "start": 549, "end": 553, "annotation": "DOPANT"}, {"text": "is", "start": 554, "end": 556, "annotation": null}, {"text": "incorporated", "start": 557, "end": 569, "annotation": null}, {"text": "into", "start": 570, "end": 574, "annotation": null}, {"text": "the", "start": 575, "end": 578, "annotation": null}, {"text": "lattice", "start": 579, "end": 586, "annotation": null}, {"text": "of", "start": 587, "end": 589, "annotation": null}, {"text": "LaMnO3", "start": 590, "end": 596, "annotation": null}, {"text": ",", "start": 596, "end": 597, "annotation": null}, {"text": "resulting", "start": 598, "end": 607, "annotation": null}, {"text": "in", "start": 608, "end": 610, "annotation": null}, {"text": "the", "start": 611, "end": 614, "annotation": null}, {"text": "modification", "start": 615, "end": 627, "annotation": null}, {"text": "of", "start": 628, "end": 630, "annotation": null}, {"text": "MnO6", "start": 631, "end": 635, "annotation": null}, {"text": "octahedra", "start": 636, "end": 645, "annotation": null}, {"text": "and", "start": 646, "end": 649, "annotation": null}, {"text": "also", "start": 650, "end": 654, "annotation": null}, {"text": "indicating", "start": 655, "end": 665, "annotation": null}, {"text": "strong", "start": 666, "end": 672, "annotation": null}, {"text": "hybridization", "start": 673, "end": 686, "annotation": null}, {"text": "of", "start": 687, "end": 689, "annotation": null}, {"text": "Ce", "start": 690, "end": 692, "annotation": null}, {"text": "5d", "start": 693, "end": 695, "annotation": null}, {"text": "and", "start": 696, "end": 699, "annotation": null}, {"text": "/", "start": 699, "end": 700, "annotation": null}, {"text": "or", "start": 700, "end": 702, "annotation": null}, {"text": "Ce", "start": 703, "end": 705, "annotation": null}, {"text": "4f", "start": 706, "end": 708, "annotation": null}, {"text": "states", "start": 709, "end": 715, "annotation": null}, {"text": "with", "start": 716, "end": 720, "annotation": null}, {"text": "O", "start": 721, "end": 722, "annotation": null}, {"text": "2p", "start": 723, "end": 725, "annotation": null}, {"text": "states", "start": 726, "end": 732, "annotation": null}, {"text": ".", "start": 732, "end": 733, "annotation": null}]], "meta": {"doi": "10.1142/S0218625X02003330"}} {"text": "The electrical conductivity (\u03c3) and oxide ion transference number (t0) of praseodymia doped ceria systems were measured. The former increased rapidly with the praseodymia content, while the latter decreased. At 600\u00b0 C, for instance,\u03c3 CeO2 and Ce0.6Pr0.4O2 under 0.21 atm of oxygen were 2.0\u00d710\u22125 and 3.6\u00d710\u22122 S cm\u22121; andt0 in them were 0.59 and 0.11, respectively. This mixed conductor having high electrical conductivity might be useful as a fuel cell electrode if it could be combined with a suitable solid electrolyte.", "meta": {"doi": "10.1007/BF00611261"}, "_input_hash": -1671473388, "_task_hash": -576224939, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "electrical", "start": 4, "end": 14, "id": 1, "annotation": null}, {"text": "conductivity", "start": 15, "end": 27, "id": 2, "annotation": null}, {"text": "(", "start": 28, "end": 29, "id": 3, "annotation": null}, {"text": "\u03c3", "start": 30, "end": 31, "id": 4, "annotation": null}, {"text": ")", "start": 32, "end": 33, "id": 5, "annotation": null}, {"text": "and", "start": 34, "end": 37, "id": 6, "annotation": null}, {"text": "oxide", "start": 38, "end": 43, "id": 7, "annotation": null}, {"text": "ion", "start": 44, "end": 47, "id": 8, "annotation": null}, {"text": "transference", "start": 48, "end": 60, "id": 9, "annotation": null}, {"text": "number", "start": 61, "end": 67, "id": 10, "annotation": null}, {"text": "(", "start": 68, "end": 69, "id": 11, "annotation": null}, {"text": "t0", "start": 70, "end": 72, "id": 12, "annotation": null}, {"text": ")", "start": 73, "end": 74, "id": 13, "annotation": null}, {"text": "of", "start": 75, "end": 77, "id": 14, "annotation": null}, {"text": "praseodymia", "start": 78, "end": 89, "id": 15, "annotation": "DOPANT"}, {"text": "doped", "start": 90, "end": 95, "id": 16, "annotation": null}, {"text": "ceria", "start": 96, "end": 101, "id": 17, "annotation": "BASEMAT"}, {"text": "systems", "start": 102, "end": 109, "id": 18, "annotation": null}, {"text": "were", "start": 110, "end": 114, "id": 19, "annotation": null}, {"text": "measured", "start": 115, "end": 123, "id": 20, "annotation": null}, {"text": ".", "start": 124, "end": 125, "id": 21, "annotation": null}], [{"text": "The", "start": 126, "end": 129, "id": 22, "annotation": null}, {"text": "former", "start": 130, "end": 136, "id": 23, "annotation": null}, {"text": "increased", "start": 137, "end": 146, "id": 24, "annotation": null}, {"text": "rapidly", "start": 147, "end": 154, "id": 25, "annotation": null}, {"text": "with", "start": 155, "end": 159, "id": 26, "annotation": null}, {"text": "the", "start": 160, "end": 163, "id": 27, "annotation": null}, {"text": "praseodymia", "start": 164, "end": 175, "id": 28, "annotation": null}, {"text": "content", "start": 176, "end": 183, "id": 29, "annotation": null}, {"text": ",", "start": 184, "end": 185, "id": 30, "annotation": null}, {"text": "while", "start": 186, "end": 191, "id": 31, "annotation": null}, {"text": "the", "start": 192, "end": 195, "id": 32, "annotation": null}, {"text": "latter", "start": 196, "end": 202, "id": 33, "annotation": null}, {"text": "decreased", "start": 203, "end": 212, "id": 34, "annotation": null}, {"text": ".", "start": 213, "end": 214, "id": 35, "annotation": null}], [{"text": "At", "start": 215, "end": 217, "id": 36, "annotation": null}, {"text": "600", "start": 218, "end": 221, "id": 37, "annotation": null}, {"text": "\u00b0", "start": 222, "end": 223, "id": 38, "annotation": null}, {"text": "C", "start": 224, "end": 225, "id": 39, "annotation": null}, {"text": ",", "start": 226, "end": 227, "id": 40, "annotation": null}, {"text": "for", "start": 228, "end": 231, "id": 41, "annotation": null}, {"text": "instance", "start": 232, "end": 240, "id": 42, "annotation": null}, {"text": ",", "start": 241, "end": 242, "id": 43, "annotation": null}, {"text": "\u03c3", "start": 243, "end": 244, "id": 44, "annotation": null}, {"text": "CeO2", "start": 245, "end": 249, "id": 45, "annotation": null}, {"text": "and", "start": 250, "end": 253, "id": 46, "annotation": null}, {"text": "Ce0.6Pr0.4O2", "start": 254, "end": 266, "id": 47, "annotation": null}, {"text": "under", "start": 267, "end": 272, "id": 48, "annotation": null}, {"text": "0.21", "start": 273, "end": 277, "id": 49, "annotation": null}, {"text": "atm", "start": 278, "end": 281, "id": 50, "annotation": null}, {"text": "of", "start": 282, "end": 284, "id": 51, "annotation": null}, {"text": "oxygen", "start": 285, "end": 291, "id": 52, "annotation": null}, {"text": "were", "start": 292, "end": 296, "id": 53, "annotation": null}, {"text": "2.0\u00d710\u22125", "start": 297, "end": 305, "id": 54, "annotation": null}, {"text": "and", "start": 306, "end": 309, "id": 55, "annotation": null}, {"text": "3.6\u00d710\u22122", "start": 310, "end": 318, "id": 56, "annotation": null}, {"text": "S", "start": 319, "end": 320, "id": 57, "annotation": null}, {"text": "cm\u22121", "start": 321, "end": 325, "id": 58, "annotation": null}, {"text": ";", "start": 326, "end": 327, "id": 59, "annotation": null}, {"text": "andt0", "start": 328, "end": 333, "id": 60, "annotation": null}, {"text": "in", "start": 334, "end": 336, "id": 61, "annotation": null}, {"text": "them", "start": 337, "end": 341, "id": 62, "annotation": null}, {"text": "were", "start": 342, "end": 346, "id": 63, "annotation": null}, {"text": "0.59", "start": 347, "end": 351, "id": 64, "annotation": null}, {"text": "and", "start": 352, "end": 355, "id": 65, "annotation": null}, {"text": "0.11", "start": 356, "end": 360, "id": 66, "annotation": null}, {"text": ",", "start": 361, "end": 362, "id": 67, "annotation": null}, {"text": "respectively", "start": 363, "end": 375, "id": 68, "annotation": null}, {"text": ".", "start": 376, "end": 377, "id": 69, "annotation": null}], [{"text": "This", "start": 378, "end": 382, "id": 70, "annotation": null}, {"text": "mixed", "start": 383, "end": 388, "id": 71, "annotation": null}, {"text": "conductor", "start": 389, "end": 398, "id": 72, "annotation": null}, {"text": "having", "start": 399, "end": 405, "id": 73, "annotation": null}, {"text": "high", "start": 406, "end": 410, "id": 74, "annotation": null}, {"text": "electrical", "start": 411, "end": 421, "id": 75, "annotation": null}, {"text": "conductivity", "start": 422, "end": 434, "id": 76, "annotation": null}, {"text": "might", "start": 435, "end": 440, "id": 77, "annotation": null}, {"text": "be", "start": 441, "end": 443, "id": 78, "annotation": null}, {"text": "useful", "start": 444, "end": 450, "id": 79, "annotation": null}, {"text": "as", "start": 451, "end": 453, "id": 80, "annotation": null}, {"text": "a", "start": 454, "end": 455, "id": 81, "annotation": null}, {"text": "fuel", "start": 456, "end": 460, "id": 82, "annotation": null}, {"text": "cell", "start": 461, "end": 465, "id": 83, "annotation": null}, {"text": "electrode", "start": 466, "end": 475, "id": 84, "annotation": null}, {"text": "if", "start": 476, "end": 478, "id": 85, "annotation": null}, {"text": "it", "start": 479, "end": 481, "id": 86, "annotation": null}, {"text": "could", "start": 482, "end": 487, "id": 87, "annotation": null}, {"text": "be", "start": 488, "end": 490, "id": 88, "annotation": null}, {"text": "combined", "start": 491, "end": 499, "id": 89, "annotation": null}, {"text": "with", "start": 500, "end": 504, "id": 90, "annotation": null}, {"text": "a", "start": 505, "end": 506, "id": 91, "annotation": null}, {"text": "suitable", "start": 507, "end": 515, "id": 92, "annotation": null}, {"text": "solid", "start": 516, "end": 521, "id": 93, "annotation": null}, {"text": "electrolyte", "start": 522, "end": 533, "id": 94, "annotation": null}, {"text": ".", "start": 534, "end": 535, "id": 95, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The nanosheet-structured CuxS thin films used as counter electrodes (CEs) for CdS/CdSe quantum dot sensitized solar cells (QDSSCs) have been in situ prepared via the sulfidation of Cu nanoparticles deposited on F-doped SnO2 glass (FTO glass) substrate by magnetron sputtering method. The thickness of the deposited Cu film affects the morphology and thickness of the obtained CuxS films. The CuxS nanosheet films have good adhesion with FTO glass and the surface exhibits uniform morphology. The characteristics of QDSSCs are studied in more detail by photocurrent-voltage performance measurements, incident photon-to-current conversion efficiency (IPCE) and electrochemical impedance spectroscopy (EIS). The CuxS on FTO glass (CuxS/FTO) CEs show much higher power conversion efficiency (PCE) and IPCE than those of the Pt on FTO (Pt/FTO) CE because of their superior carrier mobility and electro-catalytic ability for the polysulfide redox reactions. Based on an optimal CuxS film thickness of 2.7\u00a0\u03bcm obtained by the sulfidation of the Cu film thickness of 300\u00a0nm on FTO, the best photovoltaic performance with PCE of 3.67% (J sc \u00a0=\u00a016.47\u00a0mA\u00a0cm\u22122, V oc \u00a0=\u00a00.481\u00a0V, FF\u00a0=\u00a00.46) under full one-sun illumination is achieved.", "meta": {"doi": "10.1016/j.jpowsour.2016.04.012"}, "_input_hash": 1116217960, "_task_hash": -1183753275, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "nanosheet", "start": 4, "end": 13, "id": 1, "annotation": null}, {"text": "-", "start": 14, "end": 15, "id": 2, "annotation": null}, {"text": "structured", "start": 16, "end": 26, "id": 3, "annotation": null}, {"text": "CuxS", "start": 27, "end": 31, "id": 4, "annotation": null}, {"text": "thin", "start": 32, "end": 36, "id": 5, "annotation": null}, {"text": "films", "start": 37, "end": 42, "id": 6, "annotation": null}, {"text": "used", "start": 43, "end": 47, "id": 7, "annotation": null}, {"text": "as", "start": 48, "end": 50, "id": 8, "annotation": null}, {"text": "counter", "start": 51, "end": 58, "id": 9, "annotation": null}, {"text": "electrodes", "start": 59, "end": 69, "id": 10, "annotation": null}, {"text": "(", "start": 70, "end": 71, "id": 11, "annotation": null}, {"text": "CEs", "start": 72, "end": 75, "id": 12, "annotation": null}, {"text": ")", "start": 76, "end": 77, "id": 13, "annotation": null}, {"text": "for", "start": 78, "end": 81, "id": 14, "annotation": null}, {"text": "CdS", "start": 82, "end": 85, "id": 15, "annotation": null}, {"text": "/", "start": 86, "end": 87, "id": 16, "annotation": null}, {"text": "CdSe", "start": 88, "end": 92, "id": 17, "annotation": null}, {"text": "quantum", "start": 93, "end": 100, "id": 18, "annotation": null}, {"text": "dot", "start": 101, "end": 104, "id": 19, "annotation": null}, {"text": "sensitized", "start": 105, "end": 115, "id": 20, "annotation": null}, {"text": "solar", "start": 116, "end": 121, "id": 21, "annotation": null}, {"text": "cells", "start": 122, "end": 127, "id": 22, "annotation": null}, {"text": "(", "start": 128, "end": 129, "id": 23, "annotation": null}, {"text": "QDSSCs", "start": 130, "end": 136, "id": 24, "annotation": null}, {"text": ")", "start": 137, "end": 138, "id": 25, "annotation": null}, {"text": "have", "start": 139, "end": 143, "id": 26, "annotation": null}, {"text": "been", "start": 144, "end": 148, "id": 27, "annotation": null}, {"text": "in", "start": 149, "end": 151, "id": 28, "annotation": null}, {"text": "situ", "start": 152, "end": 156, "id": 29, "annotation": null}, {"text": "prepared", "start": 157, "end": 165, "id": 30, "annotation": null}, {"text": "via", "start": 166, "end": 169, "id": 31, "annotation": null}, {"text": "the", "start": 170, "end": 173, "id": 32, "annotation": null}, {"text": "sulfidation", "start": 174, "end": 185, "id": 33, "annotation": null}, {"text": "of", "start": 186, "end": 188, "id": 34, "annotation": null}, {"text": "Cu", "start": 189, "end": 191, "id": 35, "annotation": null}, {"text": "nanoparticles", "start": 192, "end": 205, "id": 36, "annotation": null}, {"text": "deposited", "start": 206, "end": 215, "id": 37, "annotation": null}, {"text": "on", "start": 216, "end": 218, "id": 38, "annotation": null}, {"text": "F", "start": 219, "end": 220, "id": 39, "annotation": "DOPANT"}, {"text": "-", "start": 221, "end": 222, "id": 40, "annotation": null}, {"text": "doped", "start": 223, "end": 228, "id": 41, "annotation": null}, {"text": "SnO2", "start": 229, "end": 233, "id": 42, "annotation": "BASEMAT"}, {"text": "glass", "start": 234, "end": 239, "id": 43, "annotation": null}, {"text": "(", "start": 240, "end": 241, "id": 44, "annotation": null}, {"text": "FTO", "start": 242, "end": 245, "id": 45, "annotation": null}, {"text": "glass", "start": 246, "end": 251, "id": 46, "annotation": null}, {"text": ")", "start": 252, "end": 253, "id": 47, "annotation": null}, {"text": "substrate", "start": 254, "end": 263, "id": 48, "annotation": null}, {"text": "by", "start": 264, "end": 266, "id": 49, "annotation": null}, {"text": "magnetron", "start": 267, "end": 276, "id": 50, "annotation": null}, {"text": "sputtering", "start": 277, "end": 287, "id": 51, "annotation": null}, {"text": "method", "start": 288, "end": 294, "id": 52, "annotation": null}, {"text": ".", "start": 295, "end": 296, "id": 53, "annotation": null}], [{"text": "The", "start": 297, "end": 300, "id": 54, "annotation": null}, {"text": "thickness", "start": 301, "end": 310, "id": 55, "annotation": null}, {"text": "of", "start": 311, "end": 313, "id": 56, "annotation": null}, {"text": "the", "start": 314, "end": 317, "id": 57, "annotation": null}, {"text": "deposited", "start": 318, "end": 327, "id": 58, "annotation": null}, {"text": "Cu", "start": 328, "end": 330, "id": 59, "annotation": null}, {"text": "film", "start": 331, "end": 335, "id": 60, "annotation": null}, {"text": "affects", "start": 336, "end": 343, "id": 61, "annotation": null}, {"text": "the", "start": 344, "end": 347, "id": 62, "annotation": null}, {"text": "morphology", "start": 348, "end": 358, "id": 63, "annotation": null}, {"text": "and", "start": 359, "end": 362, "id": 64, "annotation": null}, {"text": "thickness", "start": 363, "end": 372, "id": 65, "annotation": null}, {"text": "of", "start": 373, "end": 375, "id": 66, "annotation": null}, {"text": "the", "start": 376, "end": 379, "id": 67, "annotation": null}, {"text": "obtained", "start": 380, "end": 388, "id": 68, "annotation": null}, {"text": "CuxS", "start": 389, "end": 393, "id": 69, "annotation": null}, {"text": "films", "start": 394, "end": 399, "id": 70, "annotation": null}, {"text": ".", "start": 400, "end": 401, "id": 71, "annotation": null}], [{"text": "The", "start": 402, "end": 405, "id": 72, "annotation": null}, {"text": "CuxS", "start": 406, "end": 410, "id": 73, "annotation": null}, {"text": "nanosheet", "start": 411, "end": 420, "id": 74, "annotation": null}, {"text": "films", "start": 421, "end": 426, "id": 75, "annotation": null}, {"text": "have", "start": 427, "end": 431, "id": 76, "annotation": null}, {"text": "good", "start": 432, "end": 436, "id": 77, "annotation": null}, {"text": "adhesion", "start": 437, "end": 445, "id": 78, "annotation": null}, {"text": "with", "start": 446, "end": 450, "id": 79, "annotation": null}, {"text": "FTO", "start": 451, "end": 454, "id": 80, "annotation": null}, {"text": "glass", "start": 455, "end": 460, "id": 81, "annotation": null}, {"text": "and", "start": 461, "end": 464, "id": 82, "annotation": null}, {"text": "the", "start": 465, "end": 468, "id": 83, "annotation": null}, {"text": "surface", "start": 469, "end": 476, "id": 84, "annotation": null}, {"text": "exhibits", "start": 477, "end": 485, "id": 85, "annotation": null}, {"text": "uniform", "start": 486, "end": 493, "id": 86, "annotation": null}, {"text": "morphology", "start": 494, "end": 504, "id": 87, "annotation": null}, {"text": ".", "start": 505, "end": 506, "id": 88, "annotation": null}], [{"text": "The", "start": 507, "end": 510, "id": 89, "annotation": null}, {"text": "characteristics", "start": 511, "end": 526, "id": 90, "annotation": null}, {"text": "of", "start": 527, "end": 529, "id": 91, "annotation": null}, {"text": "QDSSCs", "start": 530, "end": 536, "id": 92, "annotation": null}, {"text": "are", "start": 537, "end": 540, "id": 93, "annotation": null}, {"text": "studied", "start": 541, "end": 548, "id": 94, "annotation": null}, {"text": "in", "start": 549, "end": 551, "id": 95, "annotation": null}, {"text": "more", "start": 552, "end": 556, "id": 96, "annotation": null}, {"text": "detail", "start": 557, "end": 563, "id": 97, "annotation": null}, {"text": "by", "start": 564, "end": 566, "id": 98, "annotation": null}, {"text": "photocurrent", "start": 567, "end": 579, "id": 99, "annotation": null}, {"text": "-", "start": 580, "end": 581, "id": 100, "annotation": null}, {"text": "voltage", "start": 582, "end": 589, "id": 101, "annotation": null}, {"text": "performance", "start": 590, "end": 601, "id": 102, "annotation": null}, {"text": "measurements", "start": 602, "end": 614, "id": 103, "annotation": null}, {"text": ",", "start": 615, "end": 616, "id": 104, "annotation": null}, {"text": "incident", "start": 617, "end": 625, "id": 105, "annotation": null}, {"text": "photon", "start": 626, "end": 632, "id": 106, "annotation": null}, {"text": "-", "start": 633, "end": 634, "id": 107, "annotation": null}, {"text": "to", "start": 635, "end": 637, "id": 108, "annotation": null}, {"text": "-", "start": 638, "end": 639, "id": 109, "annotation": null}, {"text": "current", "start": 640, "end": 647, "id": 110, "annotation": null}, {"text": "conversion", "start": 648, "end": 658, "id": 111, "annotation": null}, {"text": "efficiency", "start": 659, "end": 669, "id": 112, "annotation": null}, {"text": "(", "start": 670, "end": 671, "id": 113, "annotation": null}, {"text": "IPCE", "start": 672, "end": 676, "id": 114, "annotation": null}, {"text": ")", "start": 677, "end": 678, "id": 115, "annotation": null}, {"text": "and", "start": 679, "end": 682, "id": 116, "annotation": null}, {"text": "electrochemical", "start": 683, "end": 698, "id": 117, "annotation": null}, {"text": "impedance", "start": 699, "end": 708, "id": 118, "annotation": null}, {"text": "spectroscopy", "start": 709, "end": 721, "id": 119, "annotation": null}, {"text": "(", "start": 722, "end": 723, "id": 120, "annotation": null}, {"text": "EIS", "start": 724, "end": 727, "id": 121, "annotation": null}, {"text": ")", "start": 728, "end": 729, "id": 122, "annotation": null}, {"text": ".", "start": 730, "end": 731, "id": 123, "annotation": null}], [{"text": "The", "start": 732, "end": 735, "id": 124, "annotation": null}, {"text": "CuxS", "start": 736, "end": 740, "id": 125, "annotation": null}, {"text": "on", "start": 741, "end": 743, "id": 126, "annotation": null}, {"text": "FTO", "start": 744, "end": 747, "id": 127, "annotation": null}, {"text": "glass", "start": 748, "end": 753, "id": 128, "annotation": null}, {"text": "(", "start": 754, "end": 755, "id": 129, "annotation": null}, {"text": "CuxS", "start": 756, "end": 760, "id": 130, "annotation": null}, {"text": "/", "start": 761, "end": 762, "id": 131, "annotation": null}, {"text": "FTO", "start": 763, "end": 766, "id": 132, "annotation": null}, {"text": ")", "start": 767, "end": 768, "id": 133, "annotation": null}, {"text": "CEs", "start": 769, "end": 772, "id": 134, "annotation": null}, {"text": "show", "start": 773, "end": 777, "id": 135, "annotation": null}, {"text": "much", "start": 778, "end": 782, "id": 136, "annotation": null}, {"text": "higher", "start": 783, "end": 789, "id": 137, "annotation": null}, {"text": "power", "start": 790, "end": 795, "id": 138, "annotation": null}, {"text": "conversion", "start": 796, "end": 806, "id": 139, "annotation": null}, {"text": "efficiency", "start": 807, "end": 817, "id": 140, "annotation": null}, {"text": "(", "start": 818, "end": 819, "id": 141, "annotation": null}, {"text": "PCE", "start": 820, "end": 823, "id": 142, "annotation": null}, {"text": ")", "start": 824, "end": 825, "id": 143, "annotation": null}, {"text": "and", "start": 826, "end": 829, "id": 144, "annotation": null}, {"text": "IPCE", "start": 830, "end": 834, "id": 145, "annotation": null}, {"text": "than", "start": 835, "end": 839, "id": 146, "annotation": null}, {"text": "those", "start": 840, "end": 845, "id": 147, "annotation": null}, {"text": "of", "start": 846, "end": 848, "id": 148, "annotation": null}, {"text": "the", "start": 849, "end": 852, "id": 149, "annotation": null}, {"text": "Pt", "start": 853, "end": 855, "id": 150, "annotation": null}, {"text": "on", "start": 856, "end": 858, "id": 151, "annotation": null}, {"text": "FTO", "start": 859, "end": 862, "id": 152, "annotation": null}, {"text": "(", "start": 863, "end": 864, "id": 153, "annotation": null}, {"text": "Pt", "start": 865, "end": 867, "id": 154, "annotation": null}, {"text": "/", "start": 868, "end": 869, "id": 155, "annotation": null}, {"text": "FTO", "start": 870, "end": 873, "id": 156, "annotation": null}, {"text": ")", "start": 874, "end": 875, "id": 157, "annotation": null}, {"text": "CE", "start": 876, "end": 878, "id": 158, "annotation": null}, {"text": "because", "start": 879, "end": 886, "id": 159, "annotation": null}, {"text": "of", "start": 887, "end": 889, "id": 160, "annotation": null}, {"text": "their", "start": 890, "end": 895, "id": 161, "annotation": null}, {"text": "superior", "start": 896, "end": 904, "id": 162, "annotation": null}, {"text": "carrier", "start": 905, "end": 912, "id": 163, "annotation": null}, {"text": "mobility", "start": 913, "end": 921, "id": 164, "annotation": null}, {"text": "and", "start": 922, "end": 925, "id": 165, "annotation": null}, {"text": "electro", "start": 926, "end": 933, "id": 166, "annotation": null}, {"text": "-", "start": 934, "end": 935, "id": 167, "annotation": null}, {"text": "catalytic", "start": 936, "end": 945, "id": 168, "annotation": null}, {"text": "ability", "start": 946, "end": 953, "id": 169, "annotation": null}, {"text": "for", "start": 954, "end": 957, "id": 170, "annotation": null}, {"text": "the", "start": 958, "end": 961, "id": 171, "annotation": null}, {"text": "polysulfide", "start": 962, "end": 973, "id": 172, "annotation": null}, {"text": "redox", "start": 974, "end": 979, "id": 173, "annotation": null}, {"text": "reactions", "start": 980, "end": 989, "id": 174, "annotation": null}, {"text": ".", "start": 990, "end": 991, "id": 175, "annotation": null}], [{"text": "Based", "start": 992, "end": 997, "id": 176, "annotation": null}, {"text": "on", "start": 998, "end": 1000, "id": 177, "annotation": null}, {"text": "an", "start": 1001, "end": 1003, "id": 178, "annotation": null}, {"text": "optimal", "start": 1004, "end": 1011, "id": 179, "annotation": null}, {"text": "CuxS", "start": 1012, "end": 1016, "id": 180, "annotation": null}, {"text": "film", "start": 1017, "end": 1021, "id": 181, "annotation": null}, {"text": "thickness", "start": 1022, "end": 1031, "id": 182, "annotation": null}, {"text": "of", "start": 1032, "end": 1034, "id": 183, "annotation": null}, {"text": "2.7", "start": 1035, "end": 1038, "id": 184, "annotation": null}, {"text": "\u03bcm", "start": 1039, "end": 1041, "id": 186, "annotation": null}, {"text": "obtained", "start": 1042, "end": 1050, "id": 187, "annotation": null}, {"text": "by", "start": 1051, "end": 1053, "id": 188, "annotation": null}, {"text": "the", "start": 1054, "end": 1057, "id": 189, "annotation": null}, {"text": "sulfidation", "start": 1058, "end": 1069, "id": 190, "annotation": null}, {"text": "of", "start": 1070, "end": 1072, "id": 191, "annotation": null}, {"text": "the", "start": 1073, "end": 1076, "id": 192, "annotation": null}, {"text": "Cu", "start": 1077, "end": 1079, "id": 193, "annotation": null}, {"text": "film", "start": 1080, "end": 1084, "id": 194, "annotation": null}, {"text": "thickness", "start": 1085, "end": 1094, "id": 195, "annotation": null}, {"text": "of", "start": 1095, "end": 1097, "id": 196, "annotation": null}, {"text": "300", "start": 1098, "end": 1101, "id": 197, "annotation": null}, {"text": "nm", "start": 1102, "end": 1104, "id": 199, "annotation": null}, {"text": "on", "start": 1105, "end": 1107, "id": 200, "annotation": null}, {"text": "FTO", "start": 1108, "end": 1111, "id": 201, "annotation": null}, {"text": ",", "start": 1112, "end": 1113, "id": 202, "annotation": null}, {"text": "the", "start": 1114, "end": 1117, "id": 203, "annotation": null}, {"text": "best", "start": 1118, "end": 1122, "id": 204, "annotation": null}, {"text": "photovoltaic", "start": 1123, "end": 1135, "id": 205, "annotation": null}, {"text": "performance", "start": 1136, "end": 1147, "id": 206, "annotation": null}, {"text": "with", "start": 1148, "end": 1152, "id": 207, "annotation": null}, {"text": "PCE", "start": 1153, "end": 1156, "id": 208, "annotation": null}, {"text": "of", "start": 1157, "end": 1159, "id": 209, "annotation": null}, {"text": "3.67", "start": 1160, "end": 1164, "id": 210, "annotation": null}, {"text": "%", "start": 1165, "end": 1166, "id": 211, "annotation": null}, {"text": "(", "start": 1167, "end": 1168, "id": 212, "annotation": null}, {"text": "J", "start": 1169, "end": 1170, "id": 213, "annotation": null}, {"text": "sc", "start": 1171, "end": 1173, "id": 214, "annotation": null}, {"text": "=", "start": 1174, "end": 1175, "id": 216, "annotation": null}, {"text": "16.47", "start": 1176, "end": 1181, "id": 218, "annotation": null}, {"text": "mA", "start": 1182, "end": 1184, "id": 220, "annotation": null}, {"text": "cm\u22122", "start": 1185, "end": 1189, "id": 222, "annotation": null}, {"text": ",", "start": 1190, "end": 1191, "id": 223, "annotation": null}, {"text": "V", "start": 1192, "end": 1193, "id": 224, "annotation": null}, {"text": "oc", "start": 1194, "end": 1196, "id": 225, "annotation": null}, {"text": "=", "start": 1197, "end": 1198, "id": 227, "annotation": null}, {"text": "0.481", "start": 1199, "end": 1204, "id": 229, "annotation": null}, {"text": "V", "start": 1205, "end": 1206, "id": 231, "annotation": null}, {"text": ",", "start": 1207, "end": 1208, "id": 232, "annotation": null}, {"text": "FF", "start": 1209, "end": 1211, "id": 233, "annotation": null}, {"text": "=", "start": 1212, "end": 1213, "id": 235, "annotation": null}, {"text": "0.46", "start": 1214, "end": 1218, "id": 237, "annotation": null}, {"text": ")", "start": 1219, "end": 1220, "id": 238, "annotation": null}, {"text": "under", "start": 1221, "end": 1226, "id": 239, "annotation": null}, {"text": "full", "start": 1227, "end": 1231, "id": 240, "annotation": null}, {"text": "one", "start": 1232, "end": 1235, "id": 241, "annotation": null}, {"text": "-", "start": 1236, "end": 1237, "id": 242, "annotation": null}, {"text": "sun", "start": 1238, "end": 1241, "id": 243, "annotation": null}, {"text": "illumination", "start": 1242, "end": 1254, "id": 244, "annotation": null}, {"text": "is", "start": 1255, "end": 1257, "id": 245, "annotation": null}, {"text": "achieved", "start": 1258, "end": 1266, "id": 246, "annotation": null}, {"text": ".", "start": 1267, "end": 1268, "id": 247, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "High qualityp-type InP is critical for devices ranging from high power injection lasers to space-based solar cells. The growth of 50 mm diameter, low defect density,p-type, Zn:InP substrates has been achieved for the first time at doping levels below 1018 cm\u22123. The 600 gram \u3008111\u3009 B-seeded crystals were grown by the vertical dynamic gradient freeze technique. Dislocation densities are more than an order of magnitude below those achieved in comparable LEC-growth material. These range from 300 cm\u22122 at the seed end to 1200 cm\u22122 in the 50 mm diameter portion of the crystal. Single crystals were grown with carrier concentrations ranging from 1\u20135 \u00d7 1017 cm\u22123 as determined by Hall measurements. Hole mobilities as high as 100 cm2 volt\u22121 sec\u22121 were achieved. The in-corporation of the zinc dopant follows normal freezing and a distribution coefficient of 0.67 \u00b1 .09 was determined. Infrared transmission imaging shows a lower level of stria-tion contrast relative to that observed for sulfur doped InP.", "meta": {"doi": "10.1007/BF02657787"}, "_input_hash": -698210219, "_task_hash": -1151177655, "tokens": [[{"text": "High", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "qualityp", "start": 5, "end": 13, "id": 1, "annotation": null}, {"text": "-", "start": 14, "end": 15, "id": 2, "annotation": null}, {"text": "type", "start": 16, "end": 20, "id": 3, "annotation": null}, {"text": "InP", "start": 21, "end": 24, "id": 4, "annotation": "BASEMAT"}, {"text": "is", "start": 25, "end": 27, "id": 5, "annotation": null}, {"text": "critical", "start": 28, "end": 36, "id": 6, "annotation": null}, {"text": "for", "start": 37, "end": 40, "id": 7, "annotation": null}, {"text": "devices", "start": 41, "end": 48, "id": 8, "annotation": null}, {"text": "ranging", "start": 49, "end": 56, "id": 9, "annotation": null}, {"text": "from", "start": 57, "end": 61, "id": 10, "annotation": null}, {"text": "high", "start": 62, "end": 66, "id": 11, "annotation": null}, {"text": "power", "start": 67, "end": 72, "id": 12, "annotation": null}, {"text": "injection", "start": 73, "end": 82, "id": 13, "annotation": null}, {"text": "lasers", "start": 83, "end": 89, "id": 14, "annotation": null}, {"text": "to", "start": 90, "end": 92, "id": 15, "annotation": null}, {"text": "space", "start": 93, "end": 98, "id": 16, "annotation": null}, {"text": "-", "start": 99, "end": 100, "id": 17, "annotation": null}, {"text": "based", "start": 101, "end": 106, "id": 18, "annotation": null}, {"text": "solar", "start": 107, "end": 112, "id": 19, "annotation": null}, {"text": "cells", "start": 113, "end": 118, "id": 20, "annotation": null}, {"text": ".", "start": 119, "end": 120, "id": 21, "annotation": null}], [{"text": "The", "start": 121, "end": 124, "id": 22, "annotation": null}, {"text": "growth", "start": 125, "end": 131, "id": 23, "annotation": null}, {"text": "of", "start": 132, "end": 134, "id": 24, "annotation": null}, {"text": "50", "start": 135, "end": 137, "id": 25, "annotation": null}, {"text": "mm", "start": 138, "end": 140, "id": 26, "annotation": null}, {"text": "diameter", "start": 141, "end": 149, "id": 27, "annotation": null}, {"text": ",", "start": 150, "end": 151, "id": 28, "annotation": null}, {"text": "low", "start": 152, "end": 155, "id": 29, "annotation": null}, {"text": "defect", "start": 156, "end": 162, "id": 30, "annotation": null}, {"text": "density", "start": 163, "end": 170, "id": 31, "annotation": null}, {"text": ",", "start": 171, "end": 172, "id": 32, "annotation": null}, {"text": "p", "start": 173, "end": 174, "id": 33, "annotation": "DOPANT"}, {"text": "-", "start": 175, "end": 176, "id": 34, "annotation": null}, {"text": "type", "start": 177, "end": 181, "id": 35, "annotation": "DOPANT"}, {"text": ",", "start": 182, "end": 183, "id": 36, "annotation": null}, {"text": "Zn", "start": 184, "end": 186, "id": 37, "annotation": "DOPANT"}, {"text": ":", "start": 187, "end": 188, "id": 38, "annotation": null}, {"text": "InP", "start": 189, "end": 192, "id": 39, "annotation": "BASEMAT"}, {"text": "substrates", "start": 193, "end": 203, "id": 40, "annotation": null}, {"text": "has", "start": 204, "end": 207, "id": 41, "annotation": null}, {"text": "been", "start": 208, "end": 212, "id": 42, "annotation": null}, {"text": "achieved", "start": 213, "end": 221, "id": 43, "annotation": null}, {"text": "for", "start": 222, "end": 225, "id": 44, "annotation": null}, {"text": "the", "start": 226, "end": 229, "id": 45, "annotation": null}, {"text": "first", "start": 230, "end": 235, "id": 46, "annotation": null}, {"text": "time", "start": 236, "end": 240, "id": 47, "annotation": null}, {"text": "at", "start": 241, "end": 243, "id": 48, "annotation": null}, {"text": "doping", "start": 244, "end": 250, "id": 49, "annotation": null}, {"text": "levels", "start": 251, "end": 257, "id": 50, "annotation": null}, {"text": "below", "start": 258, "end": 263, "id": 51, "annotation": null}, {"text": "1018", "start": 264, "end": 268, "id": 52, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 269, "end": 273, "id": 53, "annotation": "DOPMODQ"}, {"text": ".", "start": 274, "end": 275, "id": 54, "annotation": null}], [{"text": "The", "start": 276, "end": 279, "id": 55, "annotation": null}, {"text": "600", "start": 280, "end": 283, "id": 56, "annotation": null}, {"text": "gram", "start": 284, "end": 288, "id": 57, "annotation": null}, {"text": "\u3008", "start": 289, "end": 290, "id": 58, "annotation": null}, {"text": "111", "start": 291, "end": 294, "id": 59, "annotation": null}, {"text": "\u3009", "start": 295, "end": 296, "id": 60, "annotation": null}, {"text": "B", "start": 297, "end": 298, "id": 61, "annotation": null}, {"text": "-", "start": 299, "end": 300, "id": 62, "annotation": null}, {"text": "seeded", "start": 301, "end": 307, "id": 63, "annotation": null}, {"text": "crystals", "start": 308, "end": 316, "id": 64, "annotation": null}, {"text": "were", "start": 317, "end": 321, "id": 65, "annotation": null}, {"text": "grown", "start": 322, "end": 327, "id": 66, "annotation": null}, {"text": "by", "start": 328, "end": 330, "id": 67, "annotation": null}, {"text": "the", "start": 331, "end": 334, "id": 68, "annotation": null}, {"text": "vertical", "start": 335, "end": 343, "id": 69, "annotation": null}, {"text": "dynamic", "start": 344, "end": 351, "id": 70, "annotation": null}, {"text": "gradient", "start": 352, "end": 360, "id": 71, "annotation": null}, {"text": "freeze", "start": 361, "end": 367, "id": 72, "annotation": null}, {"text": "technique", "start": 368, "end": 377, "id": 73, "annotation": null}, {"text": ".", "start": 378, "end": 379, "id": 74, "annotation": null}], [{"text": "Dislocation", "start": 380, "end": 391, "id": 75, "annotation": null}, {"text": "densities", "start": 392, "end": 401, "id": 76, "annotation": null}, {"text": "are", "start": 402, "end": 405, "id": 77, "annotation": null}, {"text": "more", "start": 406, "end": 410, "id": 78, "annotation": null}, {"text": "than", "start": 411, "end": 415, "id": 79, "annotation": null}, {"text": "an", "start": 416, "end": 418, "id": 80, "annotation": null}, {"text": "order", "start": 419, "end": 424, "id": 81, "annotation": null}, {"text": "of", "start": 425, "end": 427, "id": 82, "annotation": null}, {"text": "magnitude", "start": 428, "end": 437, "id": 83, "annotation": null}, {"text": "below", "start": 438, "end": 443, "id": 84, "annotation": null}, {"text": "those", "start": 444, "end": 449, "id": 85, "annotation": null}, {"text": "achieved", "start": 450, "end": 458, "id": 86, "annotation": null}, {"text": "in", "start": 459, "end": 461, "id": 87, "annotation": null}, {"text": "comparable", "start": 462, "end": 472, "id": 88, "annotation": null}, {"text": "LEC", "start": 473, "end": 476, "id": 89, "annotation": null}, {"text": "-", "start": 477, "end": 478, "id": 90, "annotation": null}, {"text": "growth", "start": 479, "end": 485, "id": 91, "annotation": null}, {"text": "material", "start": 486, "end": 494, "id": 92, "annotation": null}, {"text": ".", "start": 495, "end": 496, "id": 93, "annotation": null}], [{"text": "These", "start": 497, "end": 502, "id": 94, "annotation": null}, {"text": "range", "start": 503, "end": 508, "id": 95, "annotation": null}, {"text": "from", "start": 509, "end": 513, "id": 96, "annotation": null}, {"text": "300", "start": 514, "end": 517, "id": 97, "annotation": null}, {"text": "cm\u22122", "start": 518, "end": 522, "id": 98, "annotation": null}, {"text": "at", "start": 523, "end": 525, "id": 99, "annotation": null}, {"text": "the", "start": 526, "end": 529, "id": 100, "annotation": null}, {"text": "seed", "start": 530, "end": 534, "id": 101, "annotation": null}, {"text": "end", "start": 535, "end": 538, "id": 102, "annotation": null}, {"text": "to", "start": 539, "end": 541, "id": 103, "annotation": null}, {"text": "1200", "start": 542, "end": 546, "id": 104, "annotation": null}, {"text": "cm\u22122", "start": 547, "end": 551, "id": 105, "annotation": null}, {"text": "in", "start": 552, "end": 554, "id": 106, "annotation": null}, {"text": "the", "start": 555, "end": 558, "id": 107, "annotation": null}, {"text": "50", "start": 559, "end": 561, "id": 108, "annotation": null}, {"text": "mm", "start": 562, "end": 564, "id": 109, "annotation": null}, {"text": "diameter", "start": 565, "end": 573, "id": 110, "annotation": null}, {"text": "portion", "start": 574, "end": 581, "id": 111, "annotation": null}, {"text": "of", "start": 582, "end": 584, "id": 112, "annotation": null}, {"text": "the", "start": 585, "end": 588, "id": 113, "annotation": null}, {"text": "crystal", "start": 589, "end": 596, "id": 114, "annotation": null}, {"text": ".", "start": 597, "end": 598, "id": 115, "annotation": null}], [{"text": "Single", "start": 599, "end": 605, "id": 116, "annotation": null}, {"text": "crystals", "start": 606, "end": 614, "id": 117, "annotation": null}, {"text": "were", "start": 615, "end": 619, "id": 118, "annotation": null}, {"text": "grown", "start": 620, "end": 625, "id": 119, "annotation": null}, {"text": "with", "start": 626, "end": 630, "id": 120, "annotation": null}, {"text": "carrier", "start": 631, "end": 638, "id": 121, "annotation": null}, {"text": "concentrations", "start": 639, "end": 653, "id": 122, "annotation": null}, {"text": "ranging", "start": 654, "end": 661, "id": 123, "annotation": null}, {"text": "from", "start": 662, "end": 666, "id": 124, "annotation": null}, {"text": "1\u20135", "start": 667, "end": 670, "id": 125, "annotation": "DOPMODQ"}, {"text": "\u00d7", "start": 671, "end": 672, "id": 126, "annotation": null}, {"text": "1017", "start": 673, "end": 677, "id": 127, "annotation": null}, {"text": "cm\u22123", "start": 678, "end": 682, "id": 128, "annotation": "DOPMODQ"}, {"text": "as", "start": 683, "end": 685, "id": 129, "annotation": null}, {"text": "determined", "start": 686, "end": 696, "id": 130, "annotation": null}, {"text": "by", "start": 697, "end": 699, "id": 131, "annotation": null}, {"text": "Hall", "start": 700, "end": 704, "id": 132, "annotation": null}, {"text": "measurements", "start": 705, "end": 717, "id": 133, "annotation": null}, {"text": ".", "start": 718, "end": 719, "id": 134, "annotation": null}], [{"text": "Hole", "start": 720, "end": 724, "id": 135, "annotation": null}, {"text": "mobilities", "start": 725, "end": 735, "id": 136, "annotation": null}, {"text": "as", "start": 736, "end": 738, "id": 137, "annotation": null}, {"text": "high", "start": 739, "end": 743, "id": 138, "annotation": null}, {"text": "as", "start": 744, "end": 746, "id": 139, "annotation": null}, {"text": "100", "start": 747, "end": 750, "id": 140, "annotation": null}, {"text": "cm2", "start": 751, "end": 754, "id": 141, "annotation": null}, {"text": "volt\u22121", "start": 755, "end": 761, "id": 142, "annotation": null}, {"text": "sec\u22121", "start": 762, "end": 767, "id": 143, "annotation": null}, {"text": "were", "start": 768, "end": 772, "id": 144, "annotation": null}, {"text": "achieved", "start": 773, "end": 781, "id": 145, "annotation": null}, {"text": ".", "start": 782, "end": 783, "id": 146, "annotation": null}], [{"text": "The", "start": 784, "end": 787, "id": 147, "annotation": null}, {"text": "in", "start": 788, "end": 790, "id": 148, "annotation": null}, {"text": "-", "start": 791, "end": 792, "id": 149, "annotation": null}, {"text": "corporation", "start": 793, "end": 804, "id": 150, "annotation": null}, {"text": "of", "start": 805, "end": 807, "id": 151, "annotation": null}, {"text": "the", "start": 808, "end": 811, "id": 152, "annotation": null}, {"text": "zinc", "start": 812, "end": 816, "id": 153, "annotation": "DOPANT"}, {"text": "dopant", "start": 817, "end": 823, "id": 154, "annotation": null}, {"text": "follows", "start": 824, "end": 831, "id": 155, "annotation": null}, {"text": "normal", "start": 832, "end": 838, "id": 156, "annotation": null}, {"text": "freezing", "start": 839, "end": 847, "id": 157, "annotation": null}, {"text": "and", "start": 848, "end": 851, "id": 158, "annotation": null}, {"text": "a", "start": 852, "end": 853, "id": 159, "annotation": null}, {"text": "distribution", "start": 854, "end": 866, "id": 160, "annotation": null}, {"text": "coefficient", "start": 867, "end": 878, "id": 161, "annotation": null}, {"text": "of", "start": 879, "end": 881, "id": 162, "annotation": null}, {"text": "0.67", "start": 882, "end": 886, "id": 163, "annotation": null}, {"text": "\u00b1", "start": 887, "end": 888, "id": 164, "annotation": null}, {"text": ".09", "start": 889, "end": 892, "id": 165, "annotation": null}, {"text": "was", "start": 893, "end": 896, "id": 166, "annotation": null}, {"text": "determined", "start": 897, "end": 907, "id": 167, "annotation": null}, {"text": ".", "start": 908, "end": 909, "id": 168, "annotation": null}], [{"text": "Infrared", "start": 910, "end": 918, "id": 169, "annotation": null}, {"text": "transmission", "start": 919, "end": 931, "id": 170, "annotation": null}, {"text": "imaging", "start": 932, "end": 939, "id": 171, "annotation": null}, {"text": "shows", "start": 940, "end": 945, "id": 172, "annotation": null}, {"text": "a", "start": 946, "end": 947, "id": 173, "annotation": null}, {"text": "lower", "start": 948, "end": 953, "id": 174, "annotation": null}, {"text": "level", "start": 954, "end": 959, "id": 175, "annotation": null}, {"text": "of", "start": 960, "end": 962, "id": 176, "annotation": null}, {"text": "stria", "start": 963, "end": 968, "id": 177, "annotation": null}, {"text": "-", "start": 969, "end": 970, "id": 178, "annotation": null}, {"text": "tion", "start": 971, "end": 975, "id": 179, "annotation": null}, {"text": "contrast", "start": 976, "end": 984, "id": 180, "annotation": null}, {"text": "relative", "start": 985, "end": 993, "id": 181, "annotation": null}, {"text": "to", "start": 994, "end": 996, "id": 182, "annotation": null}, {"text": "that", "start": 997, "end": 1001, "id": 183, "annotation": null}, {"text": "observed", "start": 1002, "end": 1010, "id": 184, "annotation": null}, {"text": "for", "start": 1011, "end": 1014, "id": 185, "annotation": null}, {"text": "sulfur", "start": 1015, "end": 1021, "id": 186, "annotation": "DOPANT"}, {"text": "doped", "start": 1022, "end": 1027, "id": 187, "annotation": null}, {"text": "InP.", "start": 1028, "end": 1032, "id": 188, "annotation": "BASEMAT"}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "High qualityp-type InP is critical for devices ranging from high power injection lasers to space-based solar cells. The growth of 50 mm diameter, low defect density,p-type, Zn:InP substrates has been achieved for the first time at doping levels below 1018 cm\u22123. The 600 gram \u3008111\u3009 B-seeded crystals were grown by the vertical dynamic gradient freeze technique. Dislocation densities are more than an order of magnitude below those achieved in comparable LEC-growth material. These range from 300 cm\u22122 at the seed end to 1200 cm\u22122 in the 50 mm diameter portion of the crystal. Single crystals were grown with carrier concentrations ranging from 1\u20135 \u00d7 1017 cm\u22123 as determined by Hall measurements. Hole mobilities as high as 100 cm2 volt\u22121 sec\u22121 were achieved. The in-corporation of the zinc dopant follows normal freezing and a distribution coefficient of 0.67 \u00b1 .09 was determined. Infrared transmission imaging shows a lower level of stria-tion contrast relative to that observed for sulfur doped InP.", "meta": {"doi": "10.1007/BF02657787"}, "_input_hash": -698210219, "_task_hash": -1151177655, "tokens": [[{"text": "High", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "qualityp", "start": 5, "end": 13, "id": 1, "annotation": null}, {"text": "-", "start": 14, "end": 15, "id": 2, "annotation": null}, {"text": "type", "start": 16, "end": 20, "id": 3, "annotation": null}, {"text": "InP", "start": 21, "end": 24, "id": 4, "annotation": "BASEMAT"}, {"text": "is", "start": 25, "end": 27, "id": 5, "annotation": null}, {"text": "critical", "start": 28, "end": 36, "id": 6, "annotation": null}, {"text": "for", "start": 37, "end": 40, "id": 7, "annotation": null}, {"text": "devices", "start": 41, "end": 48, "id": 8, "annotation": null}, {"text": "ranging", "start": 49, "end": 56, "id": 9, "annotation": null}, {"text": "from", "start": 57, "end": 61, "id": 10, "annotation": null}, {"text": "high", "start": 62, "end": 66, "id": 11, "annotation": null}, {"text": "power", "start": 67, "end": 72, "id": 12, "annotation": null}, {"text": "injection", "start": 73, "end": 82, "id": 13, "annotation": null}, {"text": "lasers", "start": 83, "end": 89, "id": 14, "annotation": null}, {"text": "to", "start": 90, "end": 92, "id": 15, "annotation": null}, {"text": "space", "start": 93, "end": 98, "id": 16, "annotation": null}, {"text": "-", "start": 99, "end": 100, "id": 17, "annotation": null}, {"text": "based", "start": 101, "end": 106, "id": 18, "annotation": null}, {"text": "solar", "start": 107, "end": 112, "id": 19, "annotation": null}, {"text": "cells", "start": 113, "end": 118, "id": 20, "annotation": null}, {"text": ".", "start": 119, "end": 120, "id": 21, "annotation": null}], [{"text": "The", "start": 121, "end": 124, "id": 22, "annotation": null}, {"text": "growth", "start": 125, "end": 131, "id": 23, "annotation": null}, {"text": "of", "start": 132, "end": 134, "id": 24, "annotation": null}, {"text": "50", "start": 135, "end": 137, "id": 25, "annotation": null}, {"text": "mm", "start": 138, "end": 140, "id": 26, "annotation": null}, {"text": "diameter", "start": 141, "end": 149, "id": 27, "annotation": null}, {"text": ",", "start": 150, "end": 151, "id": 28, "annotation": null}, {"text": "low", "start": 152, "end": 155, "id": 29, "annotation": null}, {"text": "defect", "start": 156, "end": 162, "id": 30, "annotation": null}, {"text": "density", "start": 163, "end": 170, "id": 31, "annotation": null}, {"text": ",", "start": 171, "end": 172, "id": 32, "annotation": null}, {"text": "p", "start": 173, "end": 174, "id": 33, "annotation": "DOPANT"}, {"text": "-", "start": 175, "end": 176, "id": 34, "annotation": "DOPANT"}, {"text": "type", "start": 177, "end": 181, "id": 35, "annotation": "DOPANT"}, {"text": ",", "start": 182, "end": 183, "id": 36, "annotation": null}, {"text": "Zn", "start": 184, "end": 186, "id": 37, "annotation": "DOPANT"}, {"text": ":", "start": 187, "end": 188, "id": 38, "annotation": null}, {"text": "InP", "start": 189, "end": 192, "id": 39, "annotation": "BASEMAT"}, {"text": "substrates", "start": 193, "end": 203, "id": 40, "annotation": null}, {"text": "has", "start": 204, "end": 207, "id": 41, "annotation": null}, {"text": "been", "start": 208, "end": 212, "id": 42, "annotation": null}, {"text": "achieved", "start": 213, "end": 221, "id": 43, "annotation": null}, {"text": "for", "start": 222, "end": 225, "id": 44, "annotation": null}, {"text": "the", "start": 226, "end": 229, "id": 45, "annotation": null}, {"text": "first", "start": 230, "end": 235, "id": 46, "annotation": null}, {"text": "time", "start": 236, "end": 240, "id": 47, "annotation": null}, {"text": "at", "start": 241, "end": 243, "id": 48, "annotation": null}, {"text": "doping", "start": 244, "end": 250, "id": 49, "annotation": null}, {"text": "levels", "start": 251, "end": 257, "id": 50, "annotation": null}, {"text": "below", "start": 258, "end": 263, "id": 51, "annotation": null}, {"text": "1018", "start": 264, "end": 268, "id": 52, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 269, "end": 273, "id": 53, "annotation": "DOPMODQ"}, {"text": ".", "start": 274, "end": 275, "id": 54, "annotation": null}], [{"text": "The", "start": 276, "end": 279, "id": 55, "annotation": null}, {"text": "600", "start": 280, "end": 283, "id": 56, "annotation": null}, {"text": "gram", "start": 284, "end": 288, "id": 57, "annotation": null}, {"text": "\u3008", "start": 289, "end": 290, "id": 58, "annotation": null}, {"text": "111", "start": 291, "end": 294, "id": 59, "annotation": null}, {"text": "\u3009", "start": 295, "end": 296, "id": 60, "annotation": null}, {"text": "B", "start": 297, "end": 298, "id": 61, "annotation": null}, {"text": "-", "start": 299, "end": 300, "id": 62, "annotation": null}, {"text": "seeded", "start": 301, "end": 307, "id": 63, "annotation": null}, {"text": "crystals", "start": 308, "end": 316, "id": 64, "annotation": null}, {"text": "were", "start": 317, "end": 321, "id": 65, "annotation": null}, {"text": "grown", "start": 322, "end": 327, "id": 66, "annotation": null}, {"text": "by", "start": 328, "end": 330, "id": 67, "annotation": null}, {"text": "the", "start": 331, "end": 334, "id": 68, "annotation": null}, {"text": "vertical", "start": 335, "end": 343, "id": 69, "annotation": null}, {"text": "dynamic", "start": 344, "end": 351, "id": 70, "annotation": null}, {"text": "gradient", "start": 352, "end": 360, "id": 71, "annotation": null}, {"text": "freeze", "start": 361, "end": 367, "id": 72, "annotation": null}, {"text": "technique", "start": 368, "end": 377, "id": 73, "annotation": null}, {"text": ".", "start": 378, "end": 379, "id": 74, "annotation": null}], [{"text": "Dislocation", "start": 380, "end": 391, "id": 75, "annotation": null}, {"text": "densities", "start": 392, "end": 401, "id": 76, "annotation": null}, {"text": "are", "start": 402, "end": 405, "id": 77, "annotation": null}, {"text": "more", "start": 406, "end": 410, "id": 78, "annotation": null}, {"text": "than", "start": 411, "end": 415, "id": 79, "annotation": null}, {"text": "an", "start": 416, "end": 418, "id": 80, "annotation": null}, {"text": "order", "start": 419, "end": 424, "id": 81, "annotation": null}, {"text": "of", "start": 425, "end": 427, "id": 82, "annotation": null}, {"text": "magnitude", "start": 428, "end": 437, "id": 83, "annotation": null}, {"text": "below", "start": 438, "end": 443, "id": 84, "annotation": null}, {"text": "those", "start": 444, "end": 449, "id": 85, "annotation": null}, {"text": "achieved", "start": 450, "end": 458, "id": 86, "annotation": null}, {"text": "in", "start": 459, "end": 461, "id": 87, "annotation": null}, {"text": "comparable", "start": 462, "end": 472, "id": 88, "annotation": null}, {"text": "LEC", "start": 473, "end": 476, "id": 89, "annotation": null}, {"text": "-", "start": 477, "end": 478, "id": 90, "annotation": null}, {"text": "growth", "start": 479, "end": 485, "id": 91, "annotation": null}, {"text": "material", "start": 486, "end": 494, "id": 92, "annotation": null}, {"text": ".", "start": 495, "end": 496, "id": 93, "annotation": null}], [{"text": "These", "start": 497, "end": 502, "id": 94, "annotation": null}, {"text": "range", "start": 503, "end": 508, "id": 95, "annotation": null}, {"text": "from", "start": 509, "end": 513, "id": 96, "annotation": null}, {"text": "300", "start": 514, "end": 517, "id": 97, "annotation": null}, {"text": "cm\u22122", "start": 518, "end": 522, "id": 98, "annotation": null}, {"text": "at", "start": 523, "end": 525, "id": 99, "annotation": null}, {"text": "the", "start": 526, "end": 529, "id": 100, "annotation": null}, {"text": "seed", "start": 530, "end": 534, "id": 101, "annotation": null}, {"text": "end", "start": 535, "end": 538, "id": 102, "annotation": null}, {"text": "to", "start": 539, "end": 541, "id": 103, "annotation": null}, {"text": "1200", "start": 542, "end": 546, "id": 104, "annotation": null}, {"text": "cm\u22122", "start": 547, "end": 551, "id": 105, "annotation": null}, {"text": "in", "start": 552, "end": 554, "id": 106, "annotation": null}, {"text": "the", "start": 555, "end": 558, "id": 107, "annotation": null}, {"text": "50", "start": 559, "end": 561, "id": 108, "annotation": null}, {"text": "mm", "start": 562, "end": 564, "id": 109, "annotation": null}, {"text": "diameter", "start": 565, "end": 573, "id": 110, "annotation": null}, {"text": "portion", "start": 574, "end": 581, "id": 111, "annotation": null}, {"text": "of", "start": 582, "end": 584, "id": 112, "annotation": null}, {"text": "the", "start": 585, "end": 588, "id": 113, "annotation": null}, {"text": "crystal", "start": 589, "end": 596, "id": 114, "annotation": null}, {"text": ".", "start": 597, "end": 598, "id": 115, "annotation": null}], [{"text": "Single", "start": 599, "end": 605, "id": 116, "annotation": null}, {"text": "crystals", "start": 606, "end": 614, "id": 117, "annotation": null}, {"text": "were", "start": 615, "end": 619, "id": 118, "annotation": null}, {"text": "grown", "start": 620, "end": 625, "id": 119, "annotation": null}, {"text": "with", "start": 626, "end": 630, "id": 120, "annotation": null}, {"text": "carrier", "start": 631, "end": 638, "id": 121, "annotation": null}, {"text": "concentrations", "start": 639, "end": 653, "id": 122, "annotation": null}, {"text": "ranging", "start": 654, "end": 661, "id": 123, "annotation": null}, {"text": "from", "start": 662, "end": 666, "id": 124, "annotation": null}, {"text": "1\u20135", "start": 667, "end": 670, "id": 125, "annotation": "DOPMODQ"}, {"text": "\u00d7", "start": 671, "end": 672, "id": 126, "annotation": null}, {"text": "1017", "start": 673, "end": 677, "id": 127, "annotation": null}, {"text": "cm\u22123", "start": 678, "end": 682, "id": 128, "annotation": "DOPMODQ"}, {"text": "as", "start": 683, "end": 685, "id": 129, "annotation": null}, {"text": "determined", "start": 686, "end": 696, "id": 130, "annotation": null}, {"text": "by", "start": 697, "end": 699, "id": 131, "annotation": null}, {"text": "Hall", "start": 700, "end": 704, "id": 132, "annotation": null}, {"text": "measurements", "start": 705, "end": 717, "id": 133, "annotation": null}, {"text": ".", "start": 718, "end": 719, "id": 134, "annotation": null}], [{"text": "Hole", "start": 720, "end": 724, "id": 135, "annotation": null}, {"text": "mobilities", "start": 725, "end": 735, "id": 136, "annotation": null}, {"text": "as", "start": 736, "end": 738, "id": 137, "annotation": null}, {"text": "high", "start": 739, "end": 743, "id": 138, "annotation": null}, {"text": "as", "start": 744, "end": 746, "id": 139, "annotation": null}, {"text": "100", "start": 747, "end": 750, "id": 140, "annotation": null}, {"text": "cm2", "start": 751, "end": 754, "id": 141, "annotation": null}, {"text": "volt\u22121", "start": 755, "end": 761, "id": 142, "annotation": null}, {"text": "sec\u22121", "start": 762, "end": 767, "id": 143, "annotation": null}, {"text": "were", "start": 768, "end": 772, "id": 144, "annotation": null}, {"text": "achieved", "start": 773, "end": 781, "id": 145, "annotation": null}, {"text": ".", "start": 782, "end": 783, "id": 146, "annotation": null}], [{"text": "The", "start": 784, "end": 787, "id": 147, "annotation": null}, {"text": "in", "start": 788, "end": 790, "id": 148, "annotation": null}, {"text": "-", "start": 791, "end": 792, "id": 149, "annotation": null}, {"text": "corporation", "start": 793, "end": 804, "id": 150, "annotation": null}, {"text": "of", "start": 805, "end": 807, "id": 151, "annotation": null}, {"text": "the", "start": 808, "end": 811, "id": 152, "annotation": null}, {"text": "zinc", "start": 812, "end": 816, "id": 153, "annotation": "DOPANT"}, {"text": "dopant", "start": 817, "end": 823, "id": 154, "annotation": null}, {"text": "follows", "start": 824, "end": 831, "id": 155, "annotation": null}, {"text": "normal", "start": 832, "end": 838, "id": 156, "annotation": null}, {"text": "freezing", "start": 839, "end": 847, "id": 157, "annotation": null}, {"text": "and", "start": 848, "end": 851, "id": 158, "annotation": null}, {"text": "a", "start": 852, "end": 853, "id": 159, "annotation": null}, {"text": "distribution", "start": 854, "end": 866, "id": 160, "annotation": null}, {"text": "coefficient", "start": 867, "end": 878, "id": 161, "annotation": null}, {"text": "of", "start": 879, "end": 881, "id": 162, "annotation": null}, {"text": "0.67", "start": 882, "end": 886, "id": 163, "annotation": null}, {"text": "\u00b1", "start": 887, "end": 888, "id": 164, "annotation": null}, {"text": ".09", "start": 889, "end": 892, "id": 165, "annotation": null}, {"text": "was", "start": 893, "end": 896, "id": 166, "annotation": null}, {"text": "determined", "start": 897, "end": 907, "id": 167, "annotation": null}, {"text": ".", "start": 908, "end": 909, "id": 168, "annotation": null}], [{"text": "Infrared", "start": 910, "end": 918, "id": 169, "annotation": null}, {"text": "transmission", "start": 919, "end": 931, "id": 170, "annotation": null}, {"text": "imaging", "start": 932, "end": 939, "id": 171, "annotation": null}, {"text": "shows", "start": 940, "end": 945, "id": 172, "annotation": null}, {"text": "a", "start": 946, "end": 947, "id": 173, "annotation": null}, {"text": "lower", "start": 948, "end": 953, "id": 174, "annotation": null}, {"text": "level", "start": 954, "end": 959, "id": 175, "annotation": null}, {"text": "of", "start": 960, "end": 962, "id": 176, "annotation": null}, {"text": "stria", "start": 963, "end": 968, "id": 177, "annotation": null}, {"text": "-", "start": 969, "end": 970, "id": 178, "annotation": null}, {"text": "tion", "start": 971, "end": 975, "id": 179, "annotation": null}, {"text": "contrast", "start": 976, "end": 984, "id": 180, "annotation": null}, {"text": "relative", "start": 985, "end": 993, "id": 181, "annotation": null}, {"text": "to", "start": 994, "end": 996, "id": 182, "annotation": null}, {"text": "that", "start": 997, "end": 1001, "id": 183, "annotation": null}, {"text": "observed", "start": 1002, "end": 1010, "id": 184, "annotation": null}, {"text": "for", "start": 1011, "end": 1014, "id": 185, "annotation": null}, {"text": "sulfur", "start": 1015, "end": 1021, "id": 186, "annotation": "DOPANT"}, {"text": "doped", "start": 1022, "end": 1027, "id": 187, "annotation": null}, {"text": "InP.", "start": 1028, "end": 1032, "id": 188, "annotation": "BASEMAT"}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "In this study, in order to develop the low-temperature sintering ceramics for multilayer piezoelectric devices, Pb(Co1/2W1/2)O3\u2013Pb(Mn1/2Nb2/3)O3\u2013Pb(Zr,Ti)O3 (PCW\u2013PMN\u2013PZT) ceramics doped with Li2CO3, Bi2O3 and CuO as sintering aids were manufactured, and their microstructural, dielectric and piezoelectric properties were investigated. When the only CuO was added, specimens could not be sintered below 980\u00b0C. However, when Li2CO3 and Bi2O3 with CuO were simultaneously added to the basic composition ceramics, specimens could be sintered below 980\u00b0C. The addition of Li2CO3 and Bi2O3 were proved to lower sintering temperature of piezoelectric ceramics due to the effect of Li2CO3\u2013Bi2O3 liquid phase. Piezoelectric properties of Li2CO3 and Bi2O3 added specimens showed higher values than those of the only CuO added specimens. At 0.2wt% Li2CO3 and 0.3wt% Bi2O3 added specimen sintered at 920\u00b0C, the dielectric constant (\u025br) of 1457, electromechanical coupling factor (kp) of 0.56 and mechanical quality factor (Qm) of 1000 were shown, respectively. It is considered that these values are suitable for piezoelectric device application such as multilayer piezoelectric transformer and ultrasonic vibrator with pure Ag internal electrode.", "meta": {"doi": "10.1016/j.sna.2005.06.018"}, "_input_hash": -1877609654, "_task_hash": 788364172, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "study", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": ",", "start": 14, "end": 15, "id": 3, "annotation": null}, {"text": "in", "start": 16, "end": 18, "id": 4, "annotation": null}, {"text": "order", "start": 19, "end": 24, "id": 5, "annotation": null}, {"text": "to", "start": 25, "end": 27, "id": 6, "annotation": null}, {"text": "develop", "start": 28, "end": 35, "id": 7, "annotation": null}, {"text": "the", "start": 36, "end": 39, "id": 8, "annotation": null}, {"text": "low", "start": 40, "end": 43, "id": 9, "annotation": null}, {"text": "-", "start": 44, "end": 45, "id": 10, "annotation": null}, {"text": "temperature", "start": 46, "end": 57, "id": 11, "annotation": null}, {"text": "sintering", "start": 58, "end": 67, "id": 12, "annotation": null}, {"text": "ceramics", "start": 68, "end": 76, "id": 13, "annotation": null}, {"text": "for", "start": 77, "end": 80, "id": 14, "annotation": null}, {"text": "multilayer", "start": 81, "end": 91, "id": 15, "annotation": null}, {"text": "piezoelectric", "start": 92, "end": 105, "id": 16, "annotation": null}, {"text": "devices", "start": 106, "end": 113, "id": 17, "annotation": null}, {"text": ",", "start": 114, "end": 115, "id": 18, "annotation": null}, {"text": "Pb(Co1/2W1/2)O3\u2013Pb(Mn1/2Nb2/3)O3\u2013Pb(Zr", "start": 116, "end": 154, "id": 19, "annotation": "BASEMAT"}, {"text": ",", "start": 155, "end": 156, "id": 20, "annotation": null}, {"text": "Ti)O3", "start": 157, "end": 162, "id": 21, "annotation": "BASEMAT"}, {"text": "(", "start": 163, "end": 164, "id": 22, "annotation": null}, {"text": "PCW", "start": 165, "end": 168, "id": 23, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 169, "end": 170, "id": 24, "annotation": null}, {"text": "PMN", "start": 171, "end": 174, "id": 25, "annotation": null}, {"text": "\u2013", "start": 175, "end": 176, "id": 26, "annotation": null}, {"text": "PZT", "start": 177, "end": 180, "id": 27, "annotation": "BASEMAT"}, {"text": ")", "start": 181, "end": 182, "id": 28, "annotation": null}, {"text": "ceramics", "start": 183, "end": 191, "id": 29, "annotation": null}, {"text": "doped", "start": 192, "end": 197, "id": 30, "annotation": null}, {"text": "with", "start": 198, "end": 202, "id": 31, "annotation": null}, {"text": "Li2CO3", "start": 203, "end": 209, "id": 32, "annotation": "DOPANT"}, {"text": ",", "start": 210, "end": 211, "id": 33, "annotation": null}, {"text": "Bi2O3", "start": 212, "end": 217, "id": 34, "annotation": "DOPANT"}, {"text": "and", "start": 218, "end": 221, "id": 35, "annotation": null}, {"text": "CuO", "start": 222, "end": 225, "id": 36, "annotation": "DOPANT"}, {"text": "as", "start": 226, "end": 228, "id": 37, "annotation": null}, {"text": "sintering", "start": 229, "end": 238, "id": 38, "annotation": null}, {"text": "aids", "start": 239, "end": 243, "id": 39, "annotation": null}, {"text": "were", "start": 244, "end": 248, "id": 40, "annotation": null}, {"text": "manufactured", "start": 249, "end": 261, "id": 41, "annotation": null}, {"text": ",", "start": 262, "end": 263, "id": 42, "annotation": null}, {"text": "and", "start": 264, "end": 267, "id": 43, "annotation": null}, {"text": "their", "start": 268, "end": 273, "id": 44, "annotation": null}, {"text": "microstructural", "start": 274, "end": 289, "id": 45, "annotation": null}, {"text": ",", "start": 290, "end": 291, "id": 46, "annotation": null}, {"text": "dielectric", "start": 292, "end": 302, "id": 47, "annotation": null}, {"text": "and", "start": 303, "end": 306, "id": 48, "annotation": null}, {"text": "piezoelectric", "start": 307, "end": 320, "id": 49, "annotation": null}, {"text": "properties", "start": 321, "end": 331, "id": 50, "annotation": null}, {"text": "were", "start": 332, "end": 336, "id": 51, "annotation": null}, {"text": "investigated", "start": 337, "end": 349, "id": 52, "annotation": null}, {"text": ".", "start": 350, "end": 351, "id": 53, "annotation": null}], [{"text": "When", "start": 352, "end": 356, "id": 54, "annotation": null}, {"text": "the", "start": 357, "end": 360, "id": 55, "annotation": null}, {"text": "only", "start": 361, "end": 365, "id": 56, "annotation": null}, {"text": "CuO", "start": 366, "end": 369, "id": 57, "annotation": null}, {"text": "was", "start": 370, "end": 373, "id": 58, "annotation": null}, {"text": "added", "start": 374, "end": 379, "id": 59, "annotation": null}, {"text": ",", "start": 380, "end": 381, "id": 60, "annotation": null}, {"text": "specimens", "start": 382, "end": 391, "id": 61, "annotation": null}, {"text": "could", "start": 392, "end": 397, "id": 62, "annotation": null}, {"text": "not", "start": 398, "end": 401, "id": 63, "annotation": null}, {"text": "be", "start": 402, "end": 404, "id": 64, "annotation": null}, {"text": "sintered", "start": 405, "end": 413, "id": 65, "annotation": null}, {"text": "below", "start": 414, "end": 419, "id": 66, "annotation": null}, {"text": "980", "start": 420, "end": 423, "id": 67, "annotation": null}, {"text": "\u00b0", "start": 424, "end": 425, "id": 68, "annotation": null}, {"text": "C", "start": 426, "end": 427, "id": 69, "annotation": null}, {"text": ".", "start": 428, "end": 429, "id": 70, "annotation": null}], [{"text": "However", "start": 430, "end": 437, "id": 71, "annotation": null}, {"text": ",", "start": 438, "end": 439, "id": 72, "annotation": null}, {"text": "when", "start": 440, "end": 444, "id": 73, "annotation": null}, {"text": "Li2CO3", "start": 445, "end": 451, "id": 74, "annotation": null}, {"text": "and", "start": 452, "end": 455, "id": 75, "annotation": null}, {"text": "Bi2O3", "start": 456, "end": 461, "id": 76, "annotation": null}, {"text": "with", "start": 462, "end": 466, "id": 77, "annotation": null}, {"text": "CuO", "start": 467, "end": 470, "id": 78, "annotation": null}, {"text": "were", "start": 471, "end": 475, "id": 79, "annotation": null}, {"text": "simultaneously", "start": 476, "end": 490, "id": 80, "annotation": null}, {"text": "added", "start": 491, "end": 496, "id": 81, "annotation": null}, {"text": "to", "start": 497, "end": 499, "id": 82, "annotation": null}, {"text": "the", "start": 500, "end": 503, "id": 83, "annotation": null}, {"text": "basic", "start": 504, "end": 509, "id": 84, "annotation": null}, {"text": "composition", "start": 510, "end": 521, "id": 85, "annotation": null}, {"text": "ceramics", "start": 522, "end": 530, "id": 86, "annotation": null}, {"text": ",", "start": 531, "end": 532, "id": 87, "annotation": null}, {"text": "specimens", "start": 533, "end": 542, "id": 88, "annotation": null}, {"text": "could", "start": 543, "end": 548, "id": 89, "annotation": null}, {"text": "be", "start": 549, "end": 551, "id": 90, "annotation": null}, {"text": "sintered", "start": 552, "end": 560, "id": 91, "annotation": null}, {"text": "below", "start": 561, "end": 566, "id": 92, "annotation": null}, {"text": "980", "start": 567, "end": 570, "id": 93, "annotation": null}, {"text": "\u00b0", "start": 571, "end": 572, "id": 94, "annotation": null}, {"text": "C", "start": 573, "end": 574, "id": 95, "annotation": null}, {"text": ".", "start": 575, "end": 576, "id": 96, "annotation": null}], [{"text": "The", "start": 577, "end": 580, "id": 97, "annotation": null}, {"text": "addition", "start": 581, "end": 589, "id": 98, "annotation": null}, {"text": "of", "start": 590, "end": 592, "id": 99, "annotation": null}, {"text": "Li2CO3", "start": 593, "end": 599, "id": 100, "annotation": null}, {"text": "and", "start": 600, "end": 603, "id": 101, "annotation": null}, {"text": "Bi2O3", "start": 604, "end": 609, "id": 102, "annotation": null}, {"text": "were", "start": 610, "end": 614, "id": 103, "annotation": null}, {"text": "proved", "start": 615, "end": 621, "id": 104, "annotation": null}, {"text": "to", "start": 622, "end": 624, "id": 105, "annotation": null}, {"text": "lower", "start": 625, "end": 630, "id": 106, "annotation": null}, {"text": "sintering", "start": 631, "end": 640, "id": 107, "annotation": null}, {"text": "temperature", "start": 641, "end": 652, "id": 108, "annotation": null}, {"text": "of", "start": 653, "end": 655, "id": 109, "annotation": null}, {"text": "piezoelectric", "start": 656, "end": 669, "id": 110, "annotation": null}, {"text": "ceramics", "start": 670, "end": 678, "id": 111, "annotation": null}, {"text": "due", "start": 679, "end": 682, "id": 112, "annotation": null}, {"text": "to", "start": 683, "end": 685, "id": 113, "annotation": null}, {"text": "the", "start": 686, "end": 689, "id": 114, "annotation": null}, {"text": "effect", "start": 690, "end": 696, "id": 115, "annotation": null}, {"text": "of", "start": 697, "end": 699, "id": 116, "annotation": null}, {"text": "Li2CO3\u2013Bi2O3", "start": 700, "end": 712, "id": 117, "annotation": null}, {"text": "liquid", "start": 713, "end": 719, "id": 118, "annotation": null}, {"text": "phase", "start": 720, "end": 725, "id": 119, "annotation": null}, {"text": ".", "start": 726, "end": 727, "id": 120, "annotation": null}], [{"text": "Piezoelectric", "start": 728, "end": 741, "id": 121, "annotation": null}, {"text": "properties", "start": 742, "end": 752, "id": 122, "annotation": null}, {"text": "of", "start": 753, "end": 755, "id": 123, "annotation": null}, {"text": "Li2CO3", "start": 756, "end": 762, "id": 124, "annotation": null}, {"text": "and", "start": 763, "end": 766, "id": 125, "annotation": null}, {"text": "Bi2O3", "start": 767, "end": 772, "id": 126, "annotation": null}, {"text": "added", "start": 773, "end": 778, "id": 127, "annotation": null}, {"text": "specimens", "start": 779, "end": 788, "id": 128, "annotation": null}, {"text": "showed", "start": 789, "end": 795, "id": 129, "annotation": null}, {"text": "higher", "start": 796, "end": 802, "id": 130, "annotation": null}, {"text": "values", "start": 803, "end": 809, "id": 131, "annotation": null}, {"text": "than", "start": 810, "end": 814, "id": 132, "annotation": null}, {"text": "those", "start": 815, "end": 820, "id": 133, "annotation": null}, {"text": "of", "start": 821, "end": 823, "id": 134, "annotation": null}, {"text": "the", "start": 824, "end": 827, "id": 135, "annotation": null}, {"text": "only", "start": 828, "end": 832, "id": 136, "annotation": null}, {"text": "CuO", "start": 833, "end": 836, "id": 137, "annotation": null}, {"text": "added", "start": 837, "end": 842, "id": 138, "annotation": null}, {"text": "specimens", "start": 843, "end": 852, "id": 139, "annotation": null}, {"text": ".", "start": 853, "end": 854, "id": 140, "annotation": null}], [{"text": "At", "start": 855, "end": 857, "id": 141, "annotation": null}, {"text": "0.2wt%", "start": 858, "end": 864, "id": 142, "annotation": "DOPMODQ"}, {"text": "Li2CO3", "start": 865, "end": 871, "id": 143, "annotation": "DOPANT"}, {"text": "and", "start": 872, "end": 875, "id": 144, "annotation": null}, {"text": "0.3wt%", "start": 876, "end": 882, "id": 145, "annotation": "DOPMODQ"}, {"text": "Bi2O3", "start": 883, "end": 888, "id": 146, "annotation": "DOPANT"}, {"text": "added", "start": 889, "end": 894, "id": 147, "annotation": null}, {"text": "specimen", "start": 895, "end": 903, "id": 148, "annotation": "BASEMAT"}, {"text": "sintered", "start": 904, "end": 912, "id": 149, "annotation": null}, {"text": "at", "start": 913, "end": 915, "id": 150, "annotation": null}, {"text": "920", "start": 916, "end": 919, "id": 151, "annotation": null}, {"text": "\u00b0", "start": 920, "end": 921, "id": 152, "annotation": null}, {"text": "C", "start": 922, "end": 923, "id": 153, "annotation": null}, {"text": ",", "start": 924, "end": 925, "id": 154, "annotation": null}, {"text": "the", "start": 926, "end": 929, "id": 155, "annotation": null}, {"text": "dielectric", "start": 930, "end": 940, "id": 156, "annotation": null}, {"text": "constant", "start": 941, "end": 949, "id": 157, "annotation": null}, {"text": "(", "start": 950, "end": 951, "id": 158, "annotation": null}, {"text": "\u025br", "start": 952, "end": 954, "id": 159, "annotation": null}, {"text": ")", "start": 955, "end": 956, "id": 160, "annotation": null}, {"text": "of", "start": 957, "end": 959, "id": 161, "annotation": null}, {"text": "1457", "start": 960, "end": 964, "id": 162, "annotation": null}, {"text": ",", "start": 965, "end": 966, "id": 163, "annotation": null}, {"text": "electromechanical", "start": 967, "end": 984, "id": 164, "annotation": null}, {"text": "coupling", "start": 985, "end": 993, "id": 165, "annotation": null}, {"text": "factor", "start": 994, "end": 1000, "id": 166, "annotation": null}, {"text": "(", "start": 1001, "end": 1002, "id": 167, "annotation": null}, {"text": "kp", "start": 1003, "end": 1005, "id": 168, "annotation": null}, {"text": ")", "start": 1006, "end": 1007, "id": 169, "annotation": null}, {"text": "of", "start": 1008, "end": 1010, "id": 170, "annotation": null}, {"text": "0.56", "start": 1011, "end": 1015, "id": 171, "annotation": null}, {"text": "and", "start": 1016, "end": 1019, "id": 172, "annotation": null}, {"text": "mechanical", "start": 1020, "end": 1030, "id": 173, "annotation": null}, {"text": "quality", "start": 1031, "end": 1038, "id": 174, "annotation": null}, {"text": "factor", "start": 1039, "end": 1045, "id": 175, "annotation": null}, {"text": "(", "start": 1046, "end": 1047, "id": 176, "annotation": null}, {"text": "Qm", "start": 1048, "end": 1050, "id": 177, "annotation": null}, {"text": ")", "start": 1051, "end": 1052, "id": 178, "annotation": null}, {"text": "of", "start": 1053, "end": 1055, "id": 179, "annotation": null}, {"text": "1000", "start": 1056, "end": 1060, "id": 180, "annotation": null}, {"text": "were", "start": 1061, "end": 1065, "id": 181, "annotation": null}, {"text": "shown", "start": 1066, "end": 1071, "id": 182, "annotation": null}, {"text": ",", "start": 1072, "end": 1073, "id": 183, "annotation": null}, {"text": "respectively", "start": 1074, "end": 1086, "id": 184, "annotation": null}, {"text": ".", "start": 1087, "end": 1088, "id": 185, "annotation": null}], [{"text": "It", "start": 1089, "end": 1091, "id": 186, "annotation": null}, {"text": "is", "start": 1092, "end": 1094, "id": 187, "annotation": null}, {"text": "considered", "start": 1095, "end": 1105, "id": 188, "annotation": null}, {"text": "that", "start": 1106, "end": 1110, "id": 189, "annotation": null}, {"text": "these", "start": 1111, "end": 1116, "id": 190, "annotation": null}, {"text": "values", "start": 1117, "end": 1123, "id": 191, "annotation": null}, {"text": "are", "start": 1124, "end": 1127, "id": 192, "annotation": null}, {"text": "suitable", "start": 1128, "end": 1136, "id": 193, "annotation": null}, {"text": "for", "start": 1137, "end": 1140, "id": 194, "annotation": null}, {"text": "piezoelectric", "start": 1141, "end": 1154, "id": 195, "annotation": null}, {"text": "device", "start": 1155, "end": 1161, "id": 196, "annotation": null}, {"text": "application", "start": 1162, "end": 1173, "id": 197, "annotation": null}, {"text": "such", "start": 1174, "end": 1178, "id": 198, "annotation": null}, {"text": "as", "start": 1179, "end": 1181, "id": 199, "annotation": null}, {"text": "multilayer", "start": 1182, "end": 1192, "id": 200, "annotation": null}, {"text": "piezoelectric", "start": 1193, "end": 1206, "id": 201, "annotation": null}, {"text": "transformer", "start": 1207, "end": 1218, "id": 202, "annotation": null}, {"text": "and", "start": 1219, "end": 1222, "id": 203, "annotation": null}, {"text": "ultrasonic", "start": 1223, "end": 1233, "id": 204, "annotation": null}, {"text": "vibrator", "start": 1234, "end": 1242, "id": 205, "annotation": null}, {"text": "with", "start": 1243, "end": 1247, "id": 206, "annotation": null}, {"text": "pure", "start": 1248, "end": 1252, "id": 207, "annotation": null}, {"text": "Ag", "start": 1253, "end": 1255, "id": 208, "annotation": null}, {"text": "internal", "start": 1256, "end": 1264, "id": 209, "annotation": null}, {"text": "electrode", "start": 1265, "end": 1274, "id": 210, "annotation": null}, {"text": ".", "start": 1275, "end": 1276, "id": 211, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Lutetium oxide (Lu2O3) films were prepared by a simple Pechini sol\u2013gel method with LuCl3\u00b76H2O as precursor for the first time. Thermogravimetric analysis and differential thermal analysis were used to study the thermal chemistry properties of dried gel. Structural properties of Lu2O3 films heat-treated at different temperature were investigated through X-ray diffraction and Fourier transform infrared spectroscopy. The results show that Lu2O3 starts to crystallize at about 400\u00b0C and the crystallite size increases with the increasing annealing temperature. The dopant Eu3+ presents its typical emission in Lu2O3:Eu films. The effect of heat-treatment temperature on the luminescent properties (broadening of emission peak and change of lifetimes of energy level) of the films was also discussed.", "meta": {"doi": "10.1016/j.apsusc.2004.09.069"}, "_input_hash": -1955479124, "_task_hash": 1332039426, "tokens": [[{"text": "Lutetium", "start": 0, "end": 8, "id": 0, "annotation": null}, {"text": "oxide", "start": 9, "end": 14, "id": 1, "annotation": null}, {"text": "(", "start": 15, "end": 16, "id": 2, "annotation": null}, {"text": "Lu2O3", "start": 17, "end": 22, "id": 3, "annotation": null}, {"text": ")", "start": 23, "end": 24, "id": 4, "annotation": null}, {"text": "films", "start": 25, "end": 30, "id": 5, "annotation": null}, {"text": "were", "start": 31, "end": 35, "id": 6, "annotation": null}, {"text": "prepared", "start": 36, "end": 44, "id": 7, "annotation": null}, {"text": "by", "start": 45, "end": 47, "id": 8, "annotation": null}, {"text": "a", "start": 48, "end": 49, "id": 9, "annotation": null}, {"text": "simple", "start": 50, "end": 56, "id": 10, "annotation": null}, {"text": "Pechini", "start": 57, "end": 64, "id": 11, "annotation": null}, {"text": "sol", "start": 65, "end": 68, "id": 12, "annotation": null}, {"text": "\u2013", "start": 69, "end": 70, "id": 13, "annotation": null}, {"text": "gel", "start": 71, "end": 74, "id": 14, "annotation": null}, {"text": "method", "start": 75, "end": 81, "id": 15, "annotation": null}, {"text": "with", "start": 82, "end": 86, "id": 16, "annotation": null}, {"text": "LuCl3\u00b76H2O", "start": 87, "end": 97, "id": 17, "annotation": null}, {"text": "as", "start": 98, "end": 100, "id": 18, "annotation": null}, {"text": "precursor", "start": 101, "end": 110, "id": 19, "annotation": null}, {"text": "for", "start": 111, "end": 114, "id": 20, "annotation": null}, {"text": "the", "start": 115, "end": 118, "id": 21, "annotation": null}, {"text": "first", "start": 119, "end": 124, "id": 22, "annotation": null}, {"text": "time", "start": 125, "end": 129, "id": 23, "annotation": null}, {"text": ".", "start": 130, "end": 131, "id": 24, "annotation": null}], [{"text": "Thermogravimetric", "start": 132, "end": 149, "id": 25, "annotation": null}, {"text": "analysis", "start": 150, "end": 158, "id": 26, "annotation": null}, {"text": "and", "start": 159, "end": 162, "id": 27, "annotation": null}, {"text": "differential", "start": 163, "end": 175, "id": 28, "annotation": null}, {"text": "thermal", "start": 176, "end": 183, "id": 29, "annotation": null}, {"text": "analysis", "start": 184, "end": 192, "id": 30, "annotation": null}, {"text": "were", "start": 193, "end": 197, "id": 31, "annotation": null}, {"text": "used", "start": 198, "end": 202, "id": 32, "annotation": null}, {"text": "to", "start": 203, "end": 205, "id": 33, "annotation": null}, {"text": "study", "start": 206, "end": 211, "id": 34, "annotation": null}, {"text": "the", "start": 212, "end": 215, "id": 35, "annotation": null}, {"text": "thermal", "start": 216, "end": 223, "id": 36, "annotation": null}, {"text": "chemistry", "start": 224, "end": 233, "id": 37, "annotation": null}, {"text": "properties", "start": 234, "end": 244, "id": 38, "annotation": null}, {"text": "of", "start": 245, "end": 247, "id": 39, "annotation": null}, {"text": "dried", "start": 248, "end": 253, "id": 40, "annotation": null}, {"text": "gel", "start": 254, "end": 257, "id": 41, "annotation": null}, {"text": ".", "start": 258, "end": 259, "id": 42, "annotation": null}], [{"text": "Structural", "start": 260, "end": 270, "id": 43, "annotation": null}, {"text": "properties", "start": 271, "end": 281, "id": 44, "annotation": null}, {"text": "of", "start": 282, "end": 284, "id": 45, "annotation": null}, {"text": "Lu2O3", "start": 285, "end": 290, "id": 46, "annotation": null}, {"text": "films", "start": 291, "end": 296, "id": 47, "annotation": null}, {"text": "heat", "start": 297, "end": 301, "id": 48, "annotation": null}, {"text": "-", "start": 302, "end": 303, "id": 49, "annotation": null}, {"text": "treated", "start": 304, "end": 311, "id": 50, "annotation": null}, {"text": "at", "start": 312, "end": 314, "id": 51, "annotation": null}, {"text": "different", "start": 315, "end": 324, "id": 52, "annotation": null}, {"text": "temperature", "start": 325, "end": 336, "id": 53, "annotation": null}, {"text": "were", "start": 337, "end": 341, "id": 54, "annotation": null}, {"text": "investigated", "start": 342, "end": 354, "id": 55, "annotation": null}, {"text": "through", "start": 355, "end": 362, "id": 56, "annotation": null}, {"text": "X", "start": 363, "end": 364, "id": 57, "annotation": null}, {"text": "-", "start": 365, "end": 366, "id": 58, "annotation": null}, {"text": "ray", "start": 367, "end": 370, "id": 59, "annotation": null}, {"text": "diffraction", "start": 371, "end": 382, "id": 60, "annotation": null}, {"text": "and", "start": 383, "end": 386, "id": 61, "annotation": null}, {"text": "Fourier", "start": 387, "end": 394, "id": 62, "annotation": null}, {"text": "transform", "start": 395, "end": 404, "id": 63, "annotation": null}, {"text": "infrared", "start": 405, "end": 413, "id": 64, "annotation": null}, {"text": "spectroscopy", "start": 414, "end": 426, "id": 65, "annotation": null}, {"text": ".", "start": 427, "end": 428, "id": 66, "annotation": null}], [{"text": "The", "start": 429, "end": 432, "id": 67, "annotation": null}, {"text": "results", "start": 433, "end": 440, "id": 68, "annotation": null}, {"text": "show", "start": 441, "end": 445, "id": 69, "annotation": null}, {"text": "that", "start": 446, "end": 450, "id": 70, "annotation": null}, {"text": "Lu2O3", "start": 451, "end": 456, "id": 71, "annotation": null}, {"text": "starts", "start": 457, "end": 463, "id": 72, "annotation": null}, {"text": "to", "start": 464, "end": 466, "id": 73, "annotation": null}, {"text": "crystallize", "start": 467, "end": 478, "id": 74, "annotation": null}, {"text": "at", "start": 479, "end": 481, "id": 75, "annotation": null}, {"text": "about", "start": 482, "end": 487, "id": 76, "annotation": null}, {"text": "400", "start": 488, "end": 491, "id": 77, "annotation": null}, {"text": "\u00b0", "start": 492, "end": 493, "id": 78, "annotation": null}, {"text": "C", "start": 494, "end": 495, "id": 79, "annotation": null}, {"text": "and", "start": 496, "end": 499, "id": 80, "annotation": null}, {"text": "the", "start": 500, "end": 503, "id": 81, "annotation": null}, {"text": "crystallite", "start": 504, "end": 515, "id": 82, "annotation": null}, {"text": "size", "start": 516, "end": 520, "id": 83, "annotation": null}, {"text": "increases", "start": 521, "end": 530, "id": 84, "annotation": null}, {"text": "with", "start": 531, "end": 535, "id": 85, "annotation": null}, {"text": "the", "start": 536, "end": 539, "id": 86, "annotation": null}, {"text": "increasing", "start": 540, "end": 550, "id": 87, "annotation": null}, {"text": "annealing", "start": 551, "end": 560, "id": 88, "annotation": null}, {"text": "temperature", "start": 561, "end": 572, "id": 89, "annotation": null}, {"text": ".", "start": 573, "end": 574, "id": 90, "annotation": null}], [{"text": "The", "start": 575, "end": 578, "id": 91, "annotation": null}, {"text": "dopant", "start": 579, "end": 585, "id": 92, "annotation": null}, {"text": "Eu3", "start": 586, "end": 589, "id": 93, "annotation": "DOPANT"}, {"text": "+", "start": 590, "end": 591, "id": 94, "annotation": "DOPANT"}, {"text": "presents", "start": 592, "end": 600, "id": 95, "annotation": null}, {"text": "its", "start": 601, "end": 604, "id": 96, "annotation": null}, {"text": "typical", "start": 605, "end": 612, "id": 97, "annotation": null}, {"text": "emission", "start": 613, "end": 621, "id": 98, "annotation": null}, {"text": "in", "start": 622, "end": 624, "id": 99, "annotation": null}, {"text": "Lu2O3", "start": 625, "end": 630, "id": 100, "annotation": "BASEMAT"}, {"text": ":", "start": 631, "end": 632, "id": 101, "annotation": null}, {"text": "Eu", "start": 633, "end": 635, "id": 102, "annotation": "DOPANT"}, {"text": "films", "start": 636, "end": 641, "id": 103, "annotation": null}, {"text": ".", "start": 642, "end": 643, "id": 104, "annotation": null}], [{"text": "The", "start": 644, "end": 647, "id": 105, "annotation": null}, {"text": "effect", "start": 648, "end": 654, "id": 106, "annotation": null}, {"text": "of", "start": 655, "end": 657, "id": 107, "annotation": null}, {"text": "heat", "start": 658, "end": 662, "id": 108, "annotation": null}, {"text": "-", "start": 663, "end": 664, "id": 109, "annotation": null}, {"text": "treatment", "start": 665, "end": 674, "id": 110, "annotation": null}, {"text": "temperature", "start": 675, "end": 686, "id": 111, "annotation": null}, {"text": "on", "start": 687, "end": 689, "id": 112, "annotation": null}, {"text": "the", "start": 690, "end": 693, "id": 113, "annotation": null}, {"text": "luminescent", "start": 694, "end": 705, "id": 114, "annotation": null}, {"text": "properties", "start": 706, "end": 716, "id": 115, "annotation": null}, {"text": "(", "start": 717, "end": 718, "id": 116, "annotation": null}, {"text": "broadening", "start": 719, "end": 729, "id": 117, "annotation": null}, {"text": "of", "start": 730, "end": 732, "id": 118, "annotation": null}, {"text": "emission", "start": 733, "end": 741, "id": 119, "annotation": null}, {"text": "peak", "start": 742, "end": 746, "id": 120, "annotation": null}, {"text": "and", "start": 747, "end": 750, "id": 121, "annotation": null}, {"text": "change", "start": 751, "end": 757, "id": 122, "annotation": null}, {"text": "of", "start": 758, "end": 760, "id": 123, "annotation": null}, {"text": "lifetimes", "start": 761, "end": 770, "id": 124, "annotation": null}, {"text": "of", "start": 771, "end": 773, "id": 125, "annotation": null}, {"text": "energy", "start": 774, "end": 780, "id": 126, "annotation": null}, {"text": "level", "start": 781, "end": 786, "id": 127, "annotation": null}, {"text": ")", "start": 787, "end": 788, "id": 128, "annotation": null}, {"text": "of", "start": 789, "end": 791, "id": 129, "annotation": null}, {"text": "the", "start": 792, "end": 795, "id": 130, "annotation": null}, {"text": "films", "start": 796, "end": 801, "id": 131, "annotation": null}, {"text": "was", "start": 802, "end": 805, "id": 132, "annotation": null}, {"text": "also", "start": 806, "end": 810, "id": 133, "annotation": null}, {"text": "discussed", "start": 811, "end": 820, "id": 134, "annotation": null}, {"text": ".", "start": 821, "end": 822, "id": 135, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "A series of Sn-Cr composite oxide catalysts with various Sn/Cr mole ratios were prepared and used for CH4 deep oxidation. Compared with pure SnO2 and Cr2O3, the activity and thermal stability of Sn-Cr binary catalysts were significantly enhanced. The optimal activity was achieved on those samples with Sn/Cr mole ratios around 50:50. XRD results demonstrated that Cr3+ was doped into the crystal lattice of rutile structure SnO2 to form solid solution. As a result, the crystallization of the Sn-Cr samples was retarded, thus higher surface areas and lower crystallinity of them were maintained. TPR and XPS substantiated that more active oxygen species was formed in the Sn-Cr binary catalysts. Indeed, the high surface areas of the Sn-Cr composite oxides and the presence of more active oxygen species in them are considered as the two main reasons leading to their enhanced CH4 oxidation activity.", "meta": {"doi": "10.1016/S0926-3373(01)00235-1"}, "_input_hash": -175784185, "_task_hash": -1428091301, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "series", "start": 2, "end": 8, "id": 1, "annotation": null}, {"text": "of", "start": 9, "end": 11, "id": 2, "annotation": null}, {"text": "Sn", "start": 12, "end": 14, "id": 3, "annotation": null}, {"text": "-", "start": 15, "end": 16, "id": 4, "annotation": null}, {"text": "Cr", "start": 17, "end": 19, "id": 5, "annotation": null}, {"text": "composite", "start": 20, "end": 29, "id": 6, "annotation": null}, {"text": "oxide", "start": 30, "end": 35, "id": 7, "annotation": null}, {"text": "catalysts", "start": 36, "end": 45, "id": 8, "annotation": null}, {"text": "with", "start": 46, "end": 50, "id": 9, "annotation": null}, {"text": "various", "start": 51, "end": 58, "id": 10, "annotation": null}, {"text": "Sn", "start": 59, "end": 61, "id": 11, "annotation": null}, {"text": "/", "start": 62, "end": 63, "id": 12, "annotation": null}, {"text": "Cr", "start": 64, "end": 66, "id": 13, "annotation": null}, {"text": "mole", "start": 67, "end": 71, "id": 14, "annotation": null}, {"text": "ratios", "start": 72, "end": 78, "id": 15, "annotation": null}, {"text": "were", "start": 79, "end": 83, "id": 16, "annotation": null}, {"text": "prepared", "start": 84, "end": 92, "id": 17, "annotation": null}, {"text": "and", "start": 93, "end": 96, "id": 18, "annotation": null}, {"text": "used", "start": 97, "end": 101, "id": 19, "annotation": null}, {"text": "for", "start": 102, "end": 105, "id": 20, "annotation": null}, {"text": "CH4", "start": 106, "end": 109, "id": 21, "annotation": null}, {"text": "deep", "start": 110, "end": 114, "id": 22, "annotation": null}, {"text": "oxidation", "start": 115, "end": 124, "id": 23, "annotation": null}, {"text": ".", "start": 125, "end": 126, "id": 24, "annotation": null}], [{"text": "Compared", "start": 127, "end": 135, "id": 25, "annotation": null}, {"text": "with", "start": 136, "end": 140, "id": 26, "annotation": null}, {"text": "pure", "start": 141, "end": 145, "id": 27, "annotation": null}, {"text": "SnO2", "start": 146, "end": 150, "id": 28, "annotation": null}, {"text": "and", "start": 151, "end": 154, "id": 29, "annotation": null}, {"text": "Cr2O3", "start": 155, "end": 160, "id": 30, "annotation": null}, {"text": ",", "start": 161, "end": 162, "id": 31, "annotation": null}, {"text": "the", "start": 163, "end": 166, "id": 32, "annotation": null}, {"text": "activity", "start": 167, "end": 175, "id": 33, "annotation": null}, {"text": "and", "start": 176, "end": 179, "id": 34, "annotation": null}, {"text": "thermal", "start": 180, "end": 187, "id": 35, "annotation": null}, {"text": "stability", "start": 188, "end": 197, "id": 36, "annotation": null}, {"text": "of", "start": 198, "end": 200, "id": 37, "annotation": null}, {"text": "Sn", "start": 201, "end": 203, "id": 38, "annotation": null}, {"text": "-", "start": 204, "end": 205, "id": 39, "annotation": null}, {"text": "Cr", "start": 206, "end": 208, "id": 40, "annotation": null}, {"text": "binary", "start": 209, "end": 215, "id": 41, "annotation": null}, {"text": "catalysts", "start": 216, "end": 225, "id": 42, "annotation": null}, {"text": "were", "start": 226, "end": 230, "id": 43, "annotation": null}, {"text": "significantly", "start": 231, "end": 244, "id": 44, "annotation": null}, {"text": "enhanced", "start": 245, "end": 253, "id": 45, "annotation": null}, {"text": ".", "start": 254, "end": 255, "id": 46, "annotation": null}], [{"text": "The", "start": 256, "end": 259, "id": 47, "annotation": null}, {"text": "optimal", "start": 260, "end": 267, "id": 48, "annotation": null}, {"text": "activity", "start": 268, "end": 276, "id": 49, "annotation": null}, {"text": "was", "start": 277, "end": 280, "id": 50, "annotation": null}, {"text": "achieved", "start": 281, "end": 289, "id": 51, "annotation": null}, {"text": "on", "start": 290, "end": 292, "id": 52, "annotation": null}, {"text": "those", "start": 293, "end": 298, "id": 53, "annotation": null}, {"text": "samples", "start": 299, "end": 306, "id": 54, "annotation": null}, {"text": "with", "start": 307, "end": 311, "id": 55, "annotation": null}, {"text": "Sn", "start": 312, "end": 314, "id": 56, "annotation": null}, {"text": "/", "start": 315, "end": 316, "id": 57, "annotation": null}, {"text": "Cr", "start": 317, "end": 319, "id": 58, "annotation": null}, {"text": "mole", "start": 320, "end": 324, "id": 59, "annotation": null}, {"text": "ratios", "start": 325, "end": 331, "id": 60, "annotation": null}, {"text": "around", "start": 332, "end": 338, "id": 61, "annotation": null}, {"text": "50:50", "start": 339, "end": 344, "id": 62, "annotation": null}, {"text": ".", "start": 345, "end": 346, "id": 63, "annotation": null}], [{"text": "XRD", "start": 347, "end": 350, "id": 64, "annotation": null}, {"text": "results", "start": 351, "end": 358, "id": 65, "annotation": null}, {"text": "demonstrated", "start": 359, "end": 371, "id": 66, "annotation": null}, {"text": "that", "start": 372, "end": 376, "id": 67, "annotation": null}, {"text": "Cr3", "start": 377, "end": 380, "id": 68, "annotation": "DOPANT"}, {"text": "+", "start": 381, "end": 382, "id": 69, "annotation": "DOPANT"}, {"text": "was", "start": 383, "end": 386, "id": 70, "annotation": null}, {"text": "doped", "start": 387, "end": 392, "id": 71, "annotation": null}, {"text": "into", "start": 393, "end": 397, "id": 72, "annotation": null}, {"text": "the", "start": 398, "end": 401, "id": 73, "annotation": null}, {"text": "crystal", "start": 402, "end": 409, "id": 74, "annotation": null}, {"text": "lattice", "start": 410, "end": 417, "id": 75, "annotation": null}, {"text": "of", "start": 418, "end": 420, "id": 76, "annotation": null}, {"text": "rutile", "start": 421, "end": 427, "id": 77, "annotation": null}, {"text": "structure", "start": 428, "end": 437, "id": 78, "annotation": null}, {"text": "SnO2", "start": 438, "end": 442, "id": 79, "annotation": "BASEMAT"}, {"text": "to", "start": 443, "end": 445, "id": 80, "annotation": null}, {"text": "form", "start": 446, "end": 450, "id": 81, "annotation": null}, {"text": "solid", "start": 451, "end": 456, "id": 82, "annotation": null}, {"text": "solution", "start": 457, "end": 465, "id": 83, "annotation": null}, {"text": ".", "start": 466, "end": 467, "id": 84, "annotation": null}], [{"text": "As", "start": 468, "end": 470, "id": 85, "annotation": null}, {"text": "a", "start": 471, "end": 472, "id": 86, "annotation": null}, {"text": "result", "start": 473, "end": 479, "id": 87, "annotation": null}, {"text": ",", "start": 480, "end": 481, "id": 88, "annotation": null}, {"text": "the", "start": 482, "end": 485, "id": 89, "annotation": null}, {"text": "crystallization", "start": 486, "end": 501, "id": 90, "annotation": null}, {"text": "of", "start": 502, "end": 504, "id": 91, "annotation": null}, {"text": "the", "start": 505, "end": 508, "id": 92, "annotation": null}, {"text": "Sn", "start": 509, "end": 511, "id": 93, "annotation": null}, {"text": "-", "start": 512, "end": 513, "id": 94, "annotation": null}, {"text": "Cr", "start": 514, "end": 516, "id": 95, "annotation": null}, {"text": "samples", "start": 517, "end": 524, "id": 96, "annotation": null}, {"text": "was", "start": 525, "end": 528, "id": 97, "annotation": null}, {"text": "retarded", "start": 529, "end": 537, "id": 98, "annotation": null}, {"text": ",", "start": 538, "end": 539, "id": 99, "annotation": null}, {"text": "thus", "start": 540, "end": 544, "id": 100, "annotation": null}, {"text": "higher", "start": 545, "end": 551, "id": 101, "annotation": null}, {"text": "surface", "start": 552, "end": 559, "id": 102, "annotation": null}, {"text": "areas", "start": 560, "end": 565, "id": 103, "annotation": null}, {"text": "and", "start": 566, "end": 569, "id": 104, "annotation": null}, {"text": "lower", "start": 570, "end": 575, "id": 105, "annotation": null}, {"text": "crystallinity", "start": 576, "end": 589, "id": 106, "annotation": null}, {"text": "of", "start": 590, "end": 592, "id": 107, "annotation": null}, {"text": "them", "start": 593, "end": 597, "id": 108, "annotation": null}, {"text": "were", "start": 598, "end": 602, "id": 109, "annotation": null}, {"text": "maintained", "start": 603, "end": 613, "id": 110, "annotation": null}, {"text": ".", "start": 614, "end": 615, "id": 111, "annotation": null}], [{"text": "TPR", "start": 616, "end": 619, "id": 112, "annotation": null}, {"text": "and", "start": 620, "end": 623, "id": 113, "annotation": null}, {"text": "XPS", "start": 624, "end": 627, "id": 114, "annotation": null}, {"text": "substantiated", "start": 628, "end": 641, "id": 115, "annotation": null}, {"text": "that", "start": 642, "end": 646, "id": 116, "annotation": null}, {"text": "more", "start": 647, "end": 651, "id": 117, "annotation": null}, {"text": "active", "start": 652, "end": 658, "id": 118, "annotation": null}, {"text": "oxygen", "start": 659, "end": 665, "id": 119, "annotation": null}, {"text": "species", "start": 666, "end": 673, "id": 120, "annotation": null}, {"text": "was", "start": 674, "end": 677, "id": 121, "annotation": null}, {"text": "formed", "start": 678, "end": 684, "id": 122, "annotation": null}, {"text": "in", "start": 685, "end": 687, "id": 123, "annotation": null}, {"text": "the", "start": 688, "end": 691, "id": 124, "annotation": null}, {"text": "Sn", "start": 692, "end": 694, "id": 125, "annotation": null}, {"text": "-", "start": 695, "end": 696, "id": 126, "annotation": null}, {"text": "Cr", "start": 697, "end": 699, "id": 127, "annotation": null}, {"text": "binary", "start": 700, "end": 706, "id": 128, "annotation": null}, {"text": "catalysts", "start": 707, "end": 716, "id": 129, "annotation": null}, {"text": ".", "start": 717, "end": 718, "id": 130, "annotation": null}], [{"text": "Indeed", "start": 719, "end": 725, "id": 131, "annotation": null}, {"text": ",", "start": 726, "end": 727, "id": 132, "annotation": null}, {"text": "the", "start": 728, "end": 731, "id": 133, "annotation": null}, {"text": "high", "start": 732, "end": 736, "id": 134, "annotation": null}, {"text": "surface", "start": 737, "end": 744, "id": 135, "annotation": null}, {"text": "areas", "start": 745, "end": 750, "id": 136, "annotation": null}, {"text": "of", "start": 751, "end": 753, "id": 137, "annotation": null}, {"text": "the", "start": 754, "end": 757, "id": 138, "annotation": null}, {"text": "Sn", "start": 758, "end": 760, "id": 139, "annotation": null}, {"text": "-", "start": 761, "end": 762, "id": 140, "annotation": null}, {"text": "Cr", "start": 763, "end": 765, "id": 141, "annotation": null}, {"text": "composite", "start": 766, "end": 775, "id": 142, "annotation": null}, {"text": "oxides", "start": 776, "end": 782, "id": 143, "annotation": null}, {"text": "and", "start": 783, "end": 786, "id": 144, "annotation": null}, {"text": "the", "start": 787, "end": 790, "id": 145, "annotation": null}, {"text": "presence", "start": 791, "end": 799, "id": 146, "annotation": null}, {"text": "of", "start": 800, "end": 802, "id": 147, "annotation": null}, {"text": "more", "start": 803, "end": 807, "id": 148, "annotation": null}, {"text": "active", "start": 808, "end": 814, "id": 149, "annotation": null}, {"text": "oxygen", "start": 815, "end": 821, "id": 150, "annotation": null}, {"text": "species", "start": 822, "end": 829, "id": 151, "annotation": null}, {"text": "in", "start": 830, "end": 832, "id": 152, "annotation": null}, {"text": "them", "start": 833, "end": 837, "id": 153, "annotation": null}, {"text": "are", "start": 838, "end": 841, "id": 154, "annotation": null}, {"text": "considered", "start": 842, "end": 852, "id": 155, "annotation": null}, {"text": "as", "start": 853, "end": 855, "id": 156, "annotation": null}, {"text": "the", "start": 856, "end": 859, "id": 157, "annotation": null}, {"text": "two", "start": 860, "end": 863, "id": 158, "annotation": null}, {"text": "main", "start": 864, "end": 868, "id": 159, "annotation": null}, {"text": "reasons", "start": 869, "end": 876, "id": 160, "annotation": null}, {"text": "leading", "start": 877, "end": 884, "id": 161, "annotation": null}, {"text": "to", "start": 885, "end": 887, "id": 162, "annotation": null}, {"text": "their", "start": 888, "end": 893, "id": 163, "annotation": null}, {"text": "enhanced", "start": 894, "end": 902, "id": 164, "annotation": null}, {"text": "CH4", "start": 903, "end": 906, "id": 165, "annotation": null}, {"text": "oxidation", "start": 907, "end": 916, "id": 166, "annotation": null}, {"text": "activity", "start": 917, "end": 925, "id": 167, "annotation": null}, {"text": ".", "start": 926, "end": 927, "id": 168, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "ZnO nanorods (NRs) were grown on fluorine doped tin oxide (FTO) substrates at low temperatures (90 \u00b0C) from Zn2+ precursors in alkaline media previously seeded with ZnO nanoparticles. These were deposited onto the FTO substrate heated at 350 \u00b0C by spray pyrolysis of a Zn acetate solution in a water ethanol mixture. The structure of seeds was tuned by the ethanol to water ratio, \u0393, which controls the solvent evaporation rate of drops impinging the substrate. From a detailed characterization using a combination of scanning electron microscopy, X-ray diffraction, UV\u2013visible absorption and cathodoluminescence spectroscopies, the dependence of the morphology and optical properties of the ZnO NRs on the seeding conditions was demonstrated. NRs grown on seeds deposited from solutions with \u0393 in the 0.03\u20130.06 range \u2013 i.e. when the surface excess of ethanol in the water\u2013ethanol mixture has a maximum \u2013 show thinner average diameters and stacking faults due to the presence of zinc blende domains embedded into an overall wurtzite NR. They furthermore exhibit blue-shifted near band edge emission peak and a high deep level emission in cathodoluminescence. All these findings support the use of spray pyrolysis as a simple and reproducible way to control the seeds deposition, influencing the growth, the structure and the optical properties of the final ZnO NRs.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "ZnO", "start": 0, "end": 3, "annotation": null}, {"text": "nanorods", "start": 4, "end": 12, "annotation": null}, {"text": "(", "start": 13, "end": 14, "annotation": null}, {"text": "NRs", "start": 14, "end": 17, "annotation": null}, {"text": ")", "start": 17, "end": 18, "annotation": null}, {"text": "were", "start": 19, "end": 23, "annotation": null}, {"text": "grown", "start": 24, "end": 29, "annotation": null}, {"text": "on", "start": 30, "end": 32, "annotation": null}, {"text": "fluorine", "start": 33, "end": 41, "annotation": "DOPANT"}, {"text": "doped", "start": 42, "end": 47, "annotation": null}, {"text": "tin", "start": 48, "end": 51, "annotation": "BASEMAT"}, {"text": "oxide", "start": 52, "end": 57, "annotation": "BASEMAT"}, {"text": "(", "start": 58, "end": 59, "annotation": null}, {"text": "FTO", "start": 59, "end": 62, "annotation": null}, {"text": ")", "start": 62, "end": 63, "annotation": null}, {"text": "substrates", "start": 64, "end": 74, "annotation": null}, {"text": "at", "start": 75, "end": 77, "annotation": null}, {"text": "low", "start": 78, "end": 81, "annotation": null}, {"text": "temperatures", "start": 82, "end": 94, "annotation": null}, {"text": "(", "start": 95, "end": 96, "annotation": null}, {"text": "90", "start": 96, "end": 98, "annotation": null}, {"text": "\u00b0", "start": 99, "end": 100, "annotation": null}, {"text": "C", "start": 100, "end": 101, "annotation": null}, {"text": ")", "start": 101, "end": 102, "annotation": null}, {"text": "from", "start": 103, "end": 107, "annotation": null}, {"text": "Zn2+", "start": 108, "end": 112, "annotation": null}, {"text": "precursors", "start": 113, "end": 123, "annotation": null}, {"text": "in", "start": 124, "end": 126, "annotation": null}, {"text": "alkaline", "start": 127, "end": 135, "annotation": null}, {"text": "media", "start": 136, "end": 141, "annotation": null}, {"text": "previously", "start": 142, "end": 152, "annotation": null}, {"text": "seeded", "start": 153, "end": 159, "annotation": null}, {"text": "with", "start": 160, "end": 164, "annotation": null}, {"text": "ZnO", "start": 165, "end": 168, "annotation": null}, {"text": "nanoparticles", "start": 169, "end": 182, "annotation": null}, {"text": ".", "start": 182, "end": 183, "annotation": null}], [{"text": "These", "start": 184, "end": 189, "annotation": null}, {"text": "were", "start": 190, "end": 194, "annotation": null}, {"text": "deposited", "start": 195, "end": 204, "annotation": null}, {"text": "onto", "start": 205, "end": 209, "annotation": null}, {"text": "the", "start": 210, "end": 213, "annotation": null}, {"text": "FTO", "start": 214, "end": 217, "annotation": null}, {"text": "substrate", "start": 218, "end": 227, "annotation": null}, {"text": "heated", "start": 228, "end": 234, "annotation": null}, {"text": "at", "start": 235, "end": 237, "annotation": null}, {"text": "350", "start": 238, "end": 241, "annotation": null}, {"text": "\u00b0", "start": 242, "end": 243, "annotation": null}, {"text": "C", "start": 243, "end": 244, "annotation": null}, {"text": "by", "start": 245, "end": 247, "annotation": null}, {"text": "spray", "start": 248, "end": 253, "annotation": null}, {"text": "pyrolysis", "start": 254, "end": 263, "annotation": null}, {"text": "of", "start": 264, "end": 266, "annotation": null}, {"text": "a", "start": 267, "end": 268, "annotation": null}, {"text": "Zn", "start": 269, "end": 271, "annotation": null}, {"text": "acetate", "start": 272, "end": 279, "annotation": null}, {"text": "solution", "start": 280, "end": 288, "annotation": null}, {"text": "in", "start": 289, "end": 291, "annotation": null}, {"text": "a", "start": 292, "end": 293, "annotation": null}, {"text": "water", "start": 294, "end": 299, "annotation": null}, {"text": "ethanol", "start": 300, "end": 307, "annotation": null}, {"text": "mixture", "start": 308, "end": 315, "annotation": null}, {"text": ".", "start": 315, "end": 316, "annotation": null}], [{"text": "The", "start": 317, "end": 320, "annotation": null}, {"text": "structure", "start": 321, "end": 330, "annotation": null}, {"text": "of", "start": 331, "end": 333, "annotation": null}, {"text": "seeds", "start": 334, "end": 339, "annotation": null}, {"text": "was", "start": 340, "end": 343, "annotation": null}, {"text": "tuned", "start": 344, "end": 349, "annotation": null}, {"text": "by", "start": 350, "end": 352, "annotation": null}, {"text": "the", "start": 353, "end": 356, "annotation": null}, {"text": "ethanol", "start": 357, "end": 364, "annotation": null}, {"text": "to", "start": 365, "end": 367, "annotation": null}, {"text": "water", "start": 368, "end": 373, "annotation": null}, {"text": "ratio", "start": 374, "end": 379, "annotation": null}, {"text": ",", "start": 379, "end": 380, "annotation": null}, {"text": "\u0393", "start": 381, "end": 382, "annotation": null}, {"text": ",", "start": 382, "end": 383, "annotation": null}, {"text": "which", "start": 384, "end": 389, "annotation": null}, {"text": "controls", "start": 390, "end": 398, "annotation": null}, {"text": "the", "start": 399, "end": 402, "annotation": null}, {"text": "solvent", "start": 403, "end": 410, "annotation": null}, {"text": "evaporation", "start": 411, "end": 422, "annotation": null}, {"text": "rate", "start": 423, "end": 427, "annotation": null}, {"text": "of", "start": 428, "end": 430, "annotation": null}, {"text": "drops", "start": 431, "end": 436, "annotation": null}, {"text": "impinging", "start": 437, "end": 446, "annotation": null}, {"text": "the", "start": 447, "end": 450, "annotation": null}, {"text": "substrate", "start": 451, "end": 460, "annotation": null}, {"text": ".", "start": 460, "end": 461, "annotation": null}], [{"text": "From", "start": 462, "end": 466, "annotation": null}, {"text": "a", "start": 467, "end": 468, "annotation": null}, {"text": "detailed", "start": 469, "end": 477, "annotation": null}, {"text": "characterization", "start": 478, "end": 494, "annotation": null}, {"text": "using", "start": 495, "end": 500, "annotation": null}, {"text": "a", "start": 501, "end": 502, "annotation": null}, {"text": "combination", "start": 503, "end": 514, "annotation": null}, {"text": "of", "start": 515, "end": 517, "annotation": null}, {"text": "scanning", "start": 518, "end": 526, "annotation": null}, {"text": "electron", "start": 527, "end": 535, "annotation": null}, {"text": "microscopy", "start": 536, "end": 546, "annotation": null}, {"text": ",", "start": 546, "end": 547, "annotation": null}, {"text": "X-ray", "start": 548, "end": 553, "annotation": null}, {"text": "diffraction", "start": 554, "end": 565, "annotation": null}, {"text": ",", "start": 565, "end": 566, "annotation": null}, {"text": "UV", "start": 567, "end": 569, "annotation": null}, {"text": "\u2013", "start": 569, "end": 570, "annotation": null}, {"text": "visible", "start": 570, "end": 577, "annotation": null}, {"text": "absorption", "start": 578, "end": 588, "annotation": null}, {"text": "and", "start": 589, "end": 592, "annotation": null}, {"text": "cathodoluminescence", "start": 593, "end": 612, "annotation": null}, {"text": "spectroscopies", "start": 613, "end": 627, "annotation": null}, {"text": ",", "start": 627, "end": 628, "annotation": null}, {"text": "the", "start": 629, "end": 632, "annotation": null}, {"text": "dependence", "start": 633, "end": 643, "annotation": null}, {"text": "of", "start": 644, "end": 646, "annotation": null}, {"text": "the", "start": 647, "end": 650, "annotation": null}, {"text": "morphology", "start": 651, "end": 661, "annotation": null}, {"text": "and", "start": 662, "end": 665, "annotation": null}, {"text": "optical", "start": 666, "end": 673, "annotation": null}, {"text": "properties", "start": 674, "end": 684, "annotation": null}, {"text": "of", "start": 685, "end": 687, "annotation": null}, {"text": "the", "start": 688, "end": 691, "annotation": null}, {"text": "ZnO", "start": 692, "end": 695, "annotation": null}, {"text": "NRs", "start": 696, "end": 699, "annotation": null}, {"text": "on", "start": 700, "end": 702, "annotation": null}, {"text": "the", "start": 703, "end": 706, "annotation": null}, {"text": "seeding", "start": 707, "end": 714, "annotation": null}, {"text": "conditions", "start": 715, "end": 725, "annotation": null}, {"text": "was", "start": 726, "end": 729, "annotation": null}, {"text": "demonstrated", "start": 730, "end": 742, "annotation": null}, {"text": ".", "start": 742, "end": 743, "annotation": null}], [{"text": "NRs", "start": 744, "end": 747, "annotation": null}, {"text": "grown", "start": 748, "end": 753, "annotation": null}, {"text": "on", "start": 754, "end": 756, "annotation": null}, {"text": "seeds", "start": 757, "end": 762, "annotation": null}, {"text": "deposited", "start": 763, "end": 772, "annotation": null}, {"text": "from", "start": 773, "end": 777, "annotation": null}, {"text": "solutions", "start": 778, "end": 787, "annotation": null}, {"text": "with", "start": 788, "end": 792, "annotation": null}, {"text": "\u0393", "start": 793, "end": 794, "annotation": null}, {"text": "in", "start": 795, "end": 797, "annotation": null}, {"text": "the", "start": 798, "end": 801, "annotation": null}, {"text": "0.03", "start": 802, "end": 806, "annotation": null}, {"text": "\u2013", "start": 806, "end": 807, "annotation": null}, {"text": "0.06", "start": 807, "end": 811, "annotation": null}, {"text": "range", "start": 812, "end": 817, "annotation": null}, {"text": "\u2013", "start": 818, "end": 819, "annotation": null}, {"text": "i.e.", "start": 820, "end": 824, "annotation": null}, {"text": "when", "start": 825, "end": 829, "annotation": null}, {"text": "the", "start": 830, "end": 833, "annotation": null}, {"text": "surface", "start": 834, "end": 841, "annotation": null}, {"text": "excess", "start": 842, "end": 848, "annotation": null}, {"text": "of", "start": 849, "end": 851, "annotation": null}, {"text": "ethanol", "start": 852, "end": 859, "annotation": null}, {"text": "in", "start": 860, "end": 862, "annotation": null}, {"text": "the", "start": 863, "end": 866, "annotation": null}, {"text": "water", "start": 867, "end": 872, "annotation": null}, {"text": "\u2013", "start": 872, "end": 873, "annotation": null}, {"text": "ethanol", "start": 873, "end": 880, "annotation": null}, {"text": "mixture", "start": 881, "end": 888, "annotation": null}, {"text": "has", "start": 889, "end": 892, "annotation": null}, {"text": "a", "start": 893, "end": 894, "annotation": null}, {"text": "maximum", "start": 895, "end": 902, "annotation": null}, {"text": "\u2013", "start": 903, "end": 904, "annotation": null}, {"text": "show", "start": 905, "end": 909, "annotation": null}, {"text": "thinner", "start": 910, "end": 917, "annotation": null}, {"text": "average", "start": 918, "end": 925, "annotation": null}, {"text": "diameters", "start": 926, "end": 935, "annotation": null}, {"text": "and", "start": 936, "end": 939, "annotation": null}, {"text": "stacking", "start": 940, "end": 948, "annotation": null}, {"text": "faults", "start": 949, "end": 955, "annotation": null}, {"text": "due", "start": 956, "end": 959, "annotation": null}, {"text": "to", "start": 960, "end": 962, "annotation": null}, {"text": "the", "start": 963, "end": 966, "annotation": null}, {"text": "presence", "start": 967, "end": 975, "annotation": null}, {"text": "of", "start": 976, "end": 978, "annotation": null}, {"text": "zinc", "start": 979, "end": 983, "annotation": null}, {"text": "blende", "start": 984, "end": 990, "annotation": null}, {"text": "domains", "start": 991, "end": 998, "annotation": null}, {"text": "embedded", "start": 999, "end": 1007, "annotation": null}, {"text": "into", "start": 1008, "end": 1012, "annotation": null}, {"text": "an", "start": 1013, "end": 1015, "annotation": null}, {"text": "overall", "start": 1016, "end": 1023, "annotation": null}, {"text": "wurtzite", "start": 1024, "end": 1032, "annotation": null}, {"text": "NR", "start": 1033, "end": 1035, "annotation": null}, {"text": ".", "start": 1035, "end": 1036, "annotation": null}], [{"text": "They", "start": 1037, "end": 1041, "annotation": null}, {"text": "furthermore", "start": 1042, "end": 1053, "annotation": null}, {"text": "exhibit", "start": 1054, "end": 1061, "annotation": null}, {"text": "blue", "start": 1062, "end": 1066, "annotation": null}, {"text": "-", "start": 1066, "end": 1067, "annotation": null}, {"text": "shifted", "start": 1067, "end": 1074, "annotation": null}, {"text": "near", "start": 1075, "end": 1079, "annotation": null}, {"text": "band", "start": 1080, "end": 1084, "annotation": null}, {"text": "edge", "start": 1085, "end": 1089, "annotation": null}, {"text": "emission", "start": 1090, "end": 1098, "annotation": null}, {"text": "peak", "start": 1099, "end": 1103, "annotation": null}, {"text": "and", "start": 1104, "end": 1107, "annotation": null}, {"text": "a", "start": 1108, "end": 1109, "annotation": null}, {"text": "high", "start": 1110, "end": 1114, "annotation": null}, {"text": "deep", "start": 1115, "end": 1119, "annotation": null}, {"text": "level", "start": 1120, "end": 1125, "annotation": null}, {"text": "emission", "start": 1126, "end": 1134, "annotation": null}, {"text": "in", "start": 1135, "end": 1137, "annotation": null}, {"text": "cathodoluminescence", "start": 1138, "end": 1157, "annotation": null}, {"text": ".", "start": 1157, "end": 1158, "annotation": null}], [{"text": "All", "start": 1159, "end": 1162, "annotation": null}, {"text": "these", "start": 1163, "end": 1168, "annotation": null}, {"text": "findings", "start": 1169, "end": 1177, "annotation": null}, {"text": "support", "start": 1178, "end": 1185, "annotation": null}, {"text": "the", "start": 1186, "end": 1189, "annotation": null}, {"text": "use", "start": 1190, "end": 1193, "annotation": null}, {"text": "of", "start": 1194, "end": 1196, "annotation": null}, {"text": "spray", "start": 1197, "end": 1202, "annotation": null}, {"text": "pyrolysis", "start": 1203, "end": 1212, "annotation": null}, {"text": "as", "start": 1213, "end": 1215, "annotation": null}, {"text": "a", "start": 1216, "end": 1217, "annotation": null}, {"text": "simple", "start": 1218, "end": 1224, "annotation": null}, {"text": "and", "start": 1225, "end": 1228, "annotation": null}, {"text": "reproducible", "start": 1229, "end": 1241, "annotation": null}, {"text": "way", "start": 1242, "end": 1245, "annotation": null}, {"text": "to", "start": 1246, "end": 1248, "annotation": null}, {"text": "control", "start": 1249, "end": 1256, "annotation": null}, {"text": "the", "start": 1257, "end": 1260, "annotation": null}, {"text": "seeds", "start": 1261, "end": 1266, "annotation": null}, {"text": "deposition", "start": 1267, "end": 1277, "annotation": null}, {"text": ",", "start": 1277, "end": 1278, "annotation": null}, {"text": "influencing", "start": 1279, "end": 1290, "annotation": null}, {"text": "the", "start": 1291, "end": 1294, "annotation": null}, {"text": "growth", "start": 1295, "end": 1301, "annotation": null}, {"text": ",", "start": 1301, "end": 1302, "annotation": null}, {"text": "the", "start": 1303, "end": 1306, "annotation": null}, {"text": "structure", "start": 1307, "end": 1316, "annotation": null}, {"text": "and", "start": 1317, "end": 1320, "annotation": null}, {"text": "the", "start": 1321, "end": 1324, "annotation": null}, {"text": "optical", "start": 1325, "end": 1332, "annotation": null}, {"text": "properties", "start": 1333, "end": 1343, "annotation": null}, {"text": "of", "start": 1344, "end": 1346, "annotation": null}, {"text": "the", "start": 1347, "end": 1350, "annotation": null}, {"text": "final", "start": 1351, "end": 1356, "annotation": null}, {"text": "ZnO", "start": 1357, "end": 1360, "annotation": null}, {"text": "NRs", "start": 1361, "end": 1364, "annotation": null}, {"text": ".", "start": 1364, "end": 1365, "annotation": null}]]} -{"remark": "doping_annt1", "text": "\u00a9 2018 IOP Publishing Ltd. In a model of a gate-patterned quantum device, it is important to choose the correct electrostatic boundary conditions (BCs) in order to match experiment. In this study, we model gated-patterned devices in doped and undoped GaAs heterostructures for a variety of BCs. The best match is obtained for an unconstrained surface between the gates, with a dielectric region above it and a frozen layer of surface charge, together with a very deep back boundary. Experimentally, we find a \u223c0.2 V offset in pinch-off characteristics of 1D channels in a doped heterostructure before and after etching off a ZnO overlayer, as predicted by the model. Also, we observe a clear quantised current driven by a surface acoustic wave through a lateral induced n-i-n junction in an undoped heterostructure. In the model, the ability to pump electrons in this type of device is highly sensitive to the back BC. Using the improved boundary conditions, it is straightforward to model quantum devices quite accurately using standard software.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 27, "end": 29, "annotation": null}, {"text": "a", "start": 30, "end": 31, "annotation": null}, {"text": "model", "start": 32, "end": 37, "annotation": null}, {"text": "of", "start": 38, "end": 40, "annotation": null}, {"text": "a", "start": 41, "end": 42, "annotation": null}, {"text": "gate", "start": 43, "end": 47, "annotation": null}, {"text": "-", "start": 47, "end": 48, "annotation": null}, {"text": "patterned", "start": 48, "end": 57, "annotation": null}, {"text": "quantum", "start": 58, "end": 65, "annotation": null}, {"text": "device", "start": 66, "end": 72, "annotation": null}, {"text": ",", "start": 72, "end": 73, "annotation": null}, {"text": "it", "start": 74, "end": 76, "annotation": null}, {"text": "is", "start": 77, "end": 79, "annotation": null}, {"text": "important", "start": 80, "end": 89, "annotation": null}, {"text": "to", "start": 90, "end": 92, "annotation": null}, {"text": "choose", "start": 93, "end": 99, "annotation": null}, {"text": "the", "start": 100, "end": 103, "annotation": null}, {"text": "correct", "start": 104, "end": 111, "annotation": null}, {"text": "electrostatic", "start": 112, "end": 125, "annotation": null}, {"text": "boundary", "start": 126, "end": 134, "annotation": null}, {"text": "conditions", "start": 135, "end": 145, "annotation": null}, {"text": "(", "start": 146, "end": 147, "annotation": null}, {"text": "BCs", "start": 147, "end": 150, "annotation": null}, {"text": ")", "start": 150, "end": 151, "annotation": null}, {"text": "in", "start": 152, "end": 154, "annotation": null}, {"text": "order", "start": 155, "end": 160, "annotation": null}, {"text": "to", "start": 161, "end": 163, "annotation": null}, {"text": "match", "start": 164, "end": 169, "annotation": null}, {"text": "experiment", "start": 170, "end": 180, "annotation": null}, {"text": ".", "start": 180, "end": 181, "annotation": null}], [{"text": "In", "start": 182, "end": 184, "annotation": null}, {"text": "this", "start": 185, "end": 189, "annotation": null}, {"text": "study", "start": 190, "end": 195, "annotation": null}, {"text": ",", "start": 195, "end": 196, "annotation": null}, {"text": "we", "start": 197, "end": 199, "annotation": null}, {"text": "model", "start": 200, "end": 205, "annotation": null}, {"text": "gated", "start": 206, "end": 211, "annotation": null}, {"text": "-", "start": 211, "end": 212, "annotation": null}, {"text": "patterned", "start": 212, "end": 221, "annotation": null}, {"text": "devices", "start": 222, "end": 229, "annotation": null}, {"text": "in", "start": 230, "end": 232, "annotation": null}, {"text": "doped", "start": 233, "end": 238, "annotation": "DOPANT"}, {"text": "and", "start": 239, "end": 242, "annotation": null}, {"text": "undoped", "start": 243, "end": 250, "annotation": "DOPANT"}, {"text": "GaAs", "start": 251, "end": 255, "annotation": "BASEMAT"}, {"text": "heterostructures", "start": 256, "end": 272, "annotation": null}, {"text": "for", "start": 273, "end": 276, "annotation": null}, {"text": "a", "start": 277, "end": 278, "annotation": null}, {"text": "variety", "start": 279, "end": 286, "annotation": null}, {"text": "of", "start": 287, "end": 289, "annotation": null}, {"text": "BCs", "start": 290, "end": 293, "annotation": null}, {"text": ".", "start": 293, "end": 294, "annotation": null}], [{"text": "The", "start": 295, "end": 298, "annotation": null}, {"text": "best", "start": 299, "end": 303, "annotation": null}, {"text": "match", "start": 304, "end": 309, "annotation": null}, {"text": "is", "start": 310, "end": 312, "annotation": null}, {"text": "obtained", "start": 313, "end": 321, "annotation": null}, {"text": "for", "start": 322, "end": 325, "annotation": null}, {"text": "an", "start": 326, "end": 328, "annotation": null}, {"text": "unconstrained", "start": 329, "end": 342, "annotation": null}, {"text": "surface", "start": 343, "end": 350, "annotation": null}, {"text": "between", "start": 351, "end": 358, "annotation": null}, {"text": "the", "start": 359, "end": 362, "annotation": null}, {"text": "gates", "start": 363, "end": 368, "annotation": null}, {"text": ",", "start": 368, "end": 369, "annotation": null}, {"text": "with", "start": 370, "end": 374, "annotation": null}, {"text": "a", "start": 375, "end": 376, "annotation": null}, {"text": "dielectric", "start": 377, "end": 387, "annotation": null}, {"text": "region", "start": 388, "end": 394, "annotation": null}, {"text": "above", "start": 395, "end": 400, "annotation": null}, {"text": "it", "start": 401, "end": 403, "annotation": null}, {"text": "and", "start": 404, "end": 407, "annotation": null}, {"text": "a", "start": 408, "end": 409, "annotation": null}, {"text": "frozen", "start": 410, "end": 416, "annotation": null}, {"text": "layer", "start": 417, "end": 422, "annotation": null}, {"text": "of", "start": 423, "end": 425, "annotation": null}, {"text": "surface", "start": 426, "end": 433, "annotation": null}, {"text": "charge", "start": 434, "end": 440, "annotation": null}, {"text": ",", "start": 440, "end": 441, "annotation": null}, {"text": "together", "start": 442, "end": 450, "annotation": null}, {"text": "with", "start": 451, "end": 455, "annotation": null}, {"text": "a", "start": 456, "end": 457, "annotation": null}, {"text": "very", "start": 458, "end": 462, "annotation": null}, {"text": "deep", "start": 463, "end": 467, "annotation": null}, {"text": "back", "start": 468, "end": 472, "annotation": null}, {"text": "boundary", "start": 473, "end": 481, "annotation": null}, {"text": ".", "start": 481, "end": 482, "annotation": null}], [{"text": "Experimentally", "start": 483, "end": 497, "annotation": null}, {"text": ",", "start": 497, "end": 498, "annotation": null}, {"text": "we", "start": 499, "end": 501, "annotation": null}, {"text": "find", "start": 502, "end": 506, "annotation": null}, {"text": "a", "start": 507, "end": 508, "annotation": null}, {"text": "\u223c", "start": 509, "end": 510, "annotation": null}, {"text": "0.2", "start": 510, "end": 513, "annotation": null}, {"text": "V", "start": 514, "end": 515, "annotation": null}, {"text": "offset", "start": 516, "end": 522, "annotation": null}, {"text": "in", "start": 523, "end": 525, "annotation": null}, {"text": "pinch", "start": 526, "end": 531, "annotation": null}, {"text": "-", "start": 531, "end": 532, "annotation": null}, {"text": "off", "start": 532, "end": 535, "annotation": null}, {"text": "characteristics", "start": 536, "end": 551, "annotation": null}, {"text": "of", "start": 552, "end": 554, "annotation": null}, {"text": "1D", "start": 555, "end": 557, "annotation": null}, {"text": "channels", "start": 558, "end": 566, "annotation": null}, {"text": "in", "start": 567, "end": 569, "annotation": null}, {"text": "a", "start": 570, "end": 571, "annotation": null}, {"text": "doped", "start": 572, "end": 577, "annotation": "DOPANT"}, {"text": "heterostructure", "start": 578, "end": 593, "annotation": "BASEMAT"}, {"text": "before", "start": 594, "end": 600, "annotation": null}, {"text": "and", "start": 601, "end": 604, "annotation": null}, {"text": "after", "start": 605, "end": 610, "annotation": null}, {"text": "etching", "start": 611, "end": 618, "annotation": null}, {"text": "off", "start": 619, "end": 622, "annotation": null}, {"text": "a", "start": 623, "end": 624, "annotation": null}, {"text": "ZnO", "start": 625, "end": 628, "annotation": null}, {"text": "overlayer", "start": 629, "end": 638, "annotation": null}, {"text": ",", "start": 638, "end": 639, "annotation": null}, {"text": "as", "start": 640, "end": 642, "annotation": null}, {"text": "predicted", "start": 643, "end": 652, "annotation": null}, {"text": "by", "start": 653, "end": 655, "annotation": null}, {"text": "the", "start": 656, "end": 659, "annotation": null}, {"text": "model", "start": 660, "end": 665, "annotation": null}, {"text": ".", "start": 665, "end": 666, "annotation": null}], [{"text": "Also", "start": 667, "end": 671, "annotation": null}, {"text": ",", "start": 671, "end": 672, "annotation": null}, {"text": "we", "start": 673, "end": 675, "annotation": null}, {"text": "observe", "start": 676, "end": 683, "annotation": null}, {"text": "a", "start": 684, "end": 685, "annotation": null}, {"text": "clear", "start": 686, "end": 691, "annotation": null}, {"text": "quantised", "start": 692, "end": 701, "annotation": null}, {"text": "current", "start": 702, "end": 709, "annotation": null}, {"text": "driven", "start": 710, "end": 716, "annotation": null}, {"text": "by", "start": 717, "end": 719, "annotation": null}, {"text": "a", "start": 720, "end": 721, "annotation": null}, {"text": "surface", "start": 722, "end": 729, "annotation": null}, {"text": "acoustic", "start": 730, "end": 738, "annotation": null}, {"text": "wave", "start": 739, "end": 743, "annotation": null}, {"text": "through", "start": 744, "end": 751, "annotation": null}, {"text": "a", "start": 752, "end": 753, "annotation": null}, {"text": "lateral", "start": 754, "end": 761, "annotation": null}, {"text": "induced", "start": 762, "end": 769, "annotation": null}, {"text": "n-i-n", "start": 770, "end": 775, "annotation": null}, {"text": "junction", "start": 776, "end": 784, "annotation": null}, {"text": "in", "start": 785, "end": 787, "annotation": null}, {"text": "an", "start": 788, "end": 790, "annotation": null}, {"text": "undoped", "start": 791, "end": 798, "annotation": "DOPANT"}, {"text": "heterostructure", "start": 799, "end": 814, "annotation": "BASEMAT"}, {"text": ".", "start": 814, "end": 815, "annotation": null}], [{"text": "In", "start": 816, "end": 818, "annotation": null}, {"text": "the", "start": 819, "end": 822, "annotation": null}, {"text": "model", "start": 823, "end": 828, "annotation": null}, {"text": ",", "start": 828, "end": 829, "annotation": null}, {"text": "the", "start": 830, "end": 833, "annotation": null}, {"text": "ability", "start": 834, "end": 841, "annotation": null}, {"text": "to", "start": 842, "end": 844, "annotation": null}, {"text": "pump", "start": 845, "end": 849, "annotation": null}, {"text": "electrons", "start": 850, "end": 859, "annotation": null}, {"text": "in", "start": 860, "end": 862, "annotation": null}, {"text": "this", "start": 863, "end": 867, "annotation": null}, {"text": "type", "start": 868, "end": 872, "annotation": null}, {"text": "of", "start": 873, "end": 875, "annotation": null}, {"text": "device", "start": 876, "end": 882, "annotation": null}, {"text": "is", "start": 883, "end": 885, "annotation": null}, {"text": "highly", "start": 886, "end": 892, "annotation": null}, {"text": "sensitive", "start": 893, "end": 902, "annotation": null}, {"text": "to", "start": 903, "end": 905, "annotation": null}, {"text": "the", "start": 906, "end": 909, "annotation": null}, {"text": "back", "start": 910, "end": 914, "annotation": null}, {"text": "BC", "start": 915, "end": 917, "annotation": null}, {"text": ".", "start": 917, "end": 918, "annotation": null}], [{"text": "Using", "start": 919, "end": 924, "annotation": null}, {"text": "the", "start": 925, "end": 928, "annotation": null}, {"text": "improved", "start": 929, "end": 937, "annotation": null}, {"text": "boundary", "start": 938, "end": 946, "annotation": null}, {"text": "conditions", "start": 947, "end": 957, "annotation": null}, {"text": ",", "start": 957, "end": 958, "annotation": null}, {"text": "it", "start": 959, "end": 961, "annotation": null}, {"text": "is", "start": 962, "end": 964, "annotation": null}, {"text": "straightforward", "start": 965, "end": 980, "annotation": null}, {"text": "to", "start": 981, "end": 983, "annotation": null}, {"text": "model", "start": 984, "end": 989, "annotation": null}, {"text": "quantum", "start": 990, "end": 997, "annotation": null}, {"text": "devices", "start": 998, "end": 1005, "annotation": null}, {"text": "quite", "start": 1006, "end": 1011, "annotation": null}, {"text": "accurately", "start": 1012, "end": 1022, "annotation": null}, {"text": "using", "start": 1023, "end": 1028, "annotation": null}, {"text": "standard", "start": 1029, "end": 1037, "annotation": null}, {"text": "software", "start": 1038, "end": 1046, "annotation": null}, {"text": ".", "start": 1046, "end": 1047, "annotation": null}]]} -{"remark": "doping_annt1", "text": "The spectroscopic and structural properties of surface crystallized Eu3+ ions and Yb3+ ions co-doped oxyfluoroborate glass ceramics have been studied. Luminescence measurements reveal higher cross-sections in the ceramic, on excitation with 464nm and 976nm laser radiations. Studies with polarized light as well as SEM images confirm crystallization in the ceramic and the XRD studies show that \u03b1-BaB4O7 crystals are formed on the surface after annealing. These structural changes significantly alter the luminescence characteristics of Eu3+ and Yb3+ ions. A bright red emission from Eu3+ ions is observed under 976nm excitation. The photophysics involved in this emission has been explained.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "spectroscopic", "start": 4, "end": 17, "annotation": null}, {"text": "and", "start": 18, "end": 21, "annotation": null}, {"text": "structural", "start": 22, "end": 32, "annotation": null}, {"text": "properties", "start": 33, "end": 43, "annotation": null}, {"text": "of", "start": 44, "end": 46, "annotation": null}, {"text": "surface", "start": 47, "end": 54, "annotation": null}, {"text": "crystallized", "start": 55, "end": 67, "annotation": null}, {"text": "Eu3+", "start": 68, "end": 72, "annotation": "DOPANT"}, {"text": "ions", "start": 73, "end": 77, "annotation": null}, {"text": "and", "start": 78, "end": 81, "annotation": null}, {"text": "Yb3+", "start": 82, "end": 86, "annotation": "DOPANT"}, {"text": "ions", "start": 87, "end": 91, "annotation": null}, {"text": "co-doped", "start": 92, "end": 100, "annotation": null}, {"text": "oxyfluoroborate", "start": 101, "end": 116, "annotation": "BASEMAT"}, {"text": "glass", "start": 117, "end": 122, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 123, "end": 131, "annotation": "BASEMAT"}, {"text": "have", "start": 132, "end": 136, "annotation": null}, {"text": "been", "start": 137, "end": 141, "annotation": null}, {"text": "studied", "start": 142, "end": 149, "annotation": null}, {"text": ".", "start": 149, "end": 150, "annotation": null}], [{"text": "Luminescence", "start": 151, "end": 163, "annotation": null}, {"text": "measurements", "start": 164, "end": 176, "annotation": null}, {"text": "reveal", "start": 177, "end": 183, "annotation": null}, {"text": "higher", "start": 184, "end": 190, "annotation": null}, {"text": "cross-sections", "start": 191, "end": 205, "annotation": null}, {"text": "in", "start": 206, "end": 208, "annotation": null}, {"text": "the", "start": 209, "end": 212, "annotation": null}, {"text": "ceramic", "start": 213, "end": 220, "annotation": null}, {"text": ",", "start": 220, "end": 221, "annotation": null}, {"text": "on", "start": 222, "end": 224, "annotation": null}, {"text": "excitation", "start": 225, "end": 235, "annotation": null}, {"text": "with", "start": 236, "end": 240, "annotation": null}, {"text": "464", "start": 241, "end": 244, "annotation": null}, {"text": "nm", "start": 244, "end": 246, "annotation": null}, {"text": "and", "start": 247, "end": 250, "annotation": null}, {"text": "976", "start": 251, "end": 254, "annotation": null}, {"text": "nm", "start": 254, "end": 256, "annotation": null}, {"text": "laser", "start": 257, "end": 262, "annotation": null}, {"text": "radiations", "start": 263, "end": 273, "annotation": null}, {"text": ".", "start": 273, "end": 274, "annotation": null}], [{"text": "Studies", "start": 275, "end": 282, "annotation": null}, {"text": "with", "start": 283, "end": 287, "annotation": null}, {"text": "polarized", "start": 288, "end": 297, "annotation": null}, {"text": "light", "start": 298, "end": 303, "annotation": null}, {"text": "as", "start": 304, "end": 306, "annotation": null}, {"text": "well", "start": 307, "end": 311, "annotation": null}, {"text": "as", "start": 312, "end": 314, "annotation": null}, {"text": "SEM", "start": 315, "end": 318, "annotation": null}, {"text": "images", "start": 319, "end": 325, "annotation": null}, {"text": "confirm", "start": 326, "end": 333, "annotation": null}, {"text": "crystallization", "start": 334, "end": 349, "annotation": null}, {"text": "in", "start": 350, "end": 352, "annotation": null}, {"text": "the", "start": 353, "end": 356, "annotation": null}, {"text": "ceramic", "start": 357, "end": 364, "annotation": null}, {"text": "and", "start": 365, "end": 368, "annotation": null}, {"text": "the", "start": 369, "end": 372, "annotation": null}, {"text": "XRD", "start": 373, "end": 376, "annotation": null}, {"text": "studies", "start": 377, "end": 384, "annotation": null}, {"text": "show", "start": 385, "end": 389, "annotation": null}, {"text": "that", "start": 390, "end": 394, "annotation": null}, {"text": "\u03b1-BaB4O7", "start": 395, "end": 403, "annotation": null}, {"text": "crystals", "start": 404, "end": 412, "annotation": null}, {"text": "are", "start": 413, "end": 416, "annotation": null}, {"text": "formed", "start": 417, "end": 423, "annotation": null}, {"text": "on", "start": 424, "end": 426, "annotation": null}, {"text": "the", "start": 427, "end": 430, "annotation": null}, {"text": "surface", "start": 431, "end": 438, "annotation": null}, {"text": "after", "start": 439, "end": 444, "annotation": null}, {"text": "annealing", "start": 445, "end": 454, "annotation": null}, {"text": ".", "start": 454, "end": 455, "annotation": null}], [{"text": "These", "start": 456, "end": 461, "annotation": null}, {"text": "structural", "start": 462, "end": 472, "annotation": null}, {"text": "changes", "start": 473, "end": 480, "annotation": null}, {"text": "significantly", "start": 481, "end": 494, "annotation": null}, {"text": "alter", "start": 495, "end": 500, "annotation": null}, {"text": "the", "start": 501, "end": 504, "annotation": null}, {"text": "luminescence", "start": 505, "end": 517, "annotation": null}, {"text": "characteristics", "start": 518, "end": 533, "annotation": null}, {"text": "of", "start": 534, "end": 536, "annotation": null}, {"text": "Eu3+", "start": 537, "end": 541, "annotation": null}, {"text": "and", "start": 542, "end": 545, "annotation": null}, {"text": "Yb3+", "start": 546, "end": 550, "annotation": null}, {"text": "ions", "start": 551, "end": 555, "annotation": null}, {"text": ".", "start": 555, "end": 556, "annotation": null}], [{"text": "A", "start": 557, "end": 558, "annotation": null}, {"text": "bright", "start": 559, "end": 565, "annotation": null}, {"text": "red", "start": 566, "end": 569, "annotation": null}, {"text": "emission", "start": 570, "end": 578, "annotation": null}, {"text": "from", "start": 579, "end": 583, "annotation": null}, {"text": "Eu3+", "start": 584, "end": 588, "annotation": null}, {"text": "ions", "start": 589, "end": 593, "annotation": null}, {"text": "is", "start": 594, "end": 596, "annotation": null}, {"text": "observed", "start": 597, "end": 605, "annotation": null}, {"text": "under", "start": 606, "end": 611, "annotation": null}, {"text": "976", "start": 612, "end": 615, "annotation": null}, {"text": "nm", "start": 615, "end": 617, "annotation": null}, {"text": "excitation", "start": 618, "end": 628, "annotation": null}, {"text": ".", "start": 628, "end": 629, "annotation": null}], [{"text": "The", "start": 630, "end": 633, "annotation": null}, {"text": "photophysics", "start": 634, "end": 646, "annotation": null}, {"text": "involved", "start": 647, "end": 655, "annotation": null}, {"text": "in", "start": 656, "end": 658, "annotation": null}, {"text": "this", "start": 659, "end": 663, "annotation": null}, {"text": "emission", "start": 664, "end": 672, "annotation": null}, {"text": "has", "start": 673, "end": 676, "annotation": null}, {"text": "been", "start": 677, "end": 681, "annotation": null}, {"text": "explained", "start": 682, "end": 691, "annotation": null}, {"text": ".", "start": 691, "end": 692, "annotation": null}]]} -{"remark": "doping_annt2", "text": "The porous Pd/C microspheres were fabricated in carbon aerogels by \u03b3-irradiation of PdCl2 solution with carbon aerogels (CAs) monoliths impregnated. The obtained samples were characterized by field emission scanning electron microscope (SEM) and transmission electron microscope (TEM). The results show that the well distributed Pd/C microspheres with different size presented in the network of carbon aerogels. The Pd/C microspheres are spherical with porous structure. The structure of Pd/C microspheres is different from the Pd particles doped in carbon aerogels by wet impregnation method. Such porous Pd/C microspheres/carbon aerogels composite exhibits higher hydrogen uptake capacity than Pd-doped carbon aerogels.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "porous", "start": 4, "end": 10, "annotation": null}, {"text": "Pd", "start": 11, "end": 13, "annotation": null}, {"text": "/", "start": 13, "end": 14, "annotation": null}, {"text": "C", "start": 14, "end": 15, "annotation": null}, {"text": "microspheres", "start": 16, "end": 28, "annotation": null}, {"text": "were", "start": 29, "end": 33, "annotation": null}, {"text": "fabricated", "start": 34, "end": 44, "annotation": null}, {"text": "in", "start": 45, "end": 47, "annotation": null}, {"text": "carbon", "start": 48, "end": 54, "annotation": null}, {"text": "aerogels", "start": 55, "end": 63, "annotation": null}, {"text": "by", "start": 64, "end": 66, "annotation": null}, {"text": "\u03b3-irradiation", "start": 67, "end": 80, "annotation": null}, {"text": "of", "start": 81, "end": 83, "annotation": null}, {"text": "PdCl2", "start": 84, "end": 89, "annotation": null}, {"text": "solution", "start": 90, "end": 98, "annotation": null}, {"text": "with", "start": 99, "end": 103, "annotation": null}, {"text": "carbon", "start": 104, "end": 110, "annotation": null}, {"text": "aerogels", "start": 111, "end": 119, "annotation": null}, {"text": "(", "start": 120, "end": 121, "annotation": null}, {"text": "CAs", "start": 121, "end": 124, "annotation": null}, {"text": ")", "start": 124, "end": 125, "annotation": null}, {"text": "monoliths", "start": 126, "end": 135, "annotation": null}, {"text": "impregnated", "start": 136, "end": 147, "annotation": null}, {"text": ".", "start": 147, "end": 148, "annotation": null}], [{"text": "The", "start": 149, "end": 152, "annotation": null}, {"text": "obtained", "start": 153, "end": 161, "annotation": null}, {"text": "samples", "start": 162, "end": 169, "annotation": null}, {"text": "were", "start": 170, "end": 174, "annotation": null}, {"text": "characterized", "start": 175, "end": 188, "annotation": null}, {"text": "by", "start": 189, "end": 191, "annotation": null}, {"text": "field", "start": 192, "end": 197, "annotation": null}, {"text": "emission", "start": 198, "end": 206, "annotation": null}, {"text": "scanning", "start": 207, "end": 215, "annotation": null}, {"text": "electron", "start": 216, "end": 224, "annotation": null}, {"text": "microscope", "start": 225, "end": 235, "annotation": null}, {"text": "(", "start": 236, "end": 237, "annotation": null}, {"text": "SEM", "start": 237, "end": 240, "annotation": null}, {"text": ")", "start": 240, "end": 241, "annotation": null}, {"text": "and", "start": 242, "end": 245, "annotation": null}, {"text": "transmission", "start": 246, "end": 258, "annotation": null}, {"text": "electron", "start": 259, "end": 267, "annotation": null}, {"text": "microscope", "start": 268, "end": 278, "annotation": null}, {"text": "(", "start": 279, "end": 280, "annotation": null}, {"text": "TEM", "start": 280, "end": 283, "annotation": null}, {"text": ")", "start": 283, "end": 284, "annotation": null}, {"text": ".", "start": 284, "end": 285, "annotation": null}], [{"text": "The", "start": 286, "end": 289, "annotation": null}, {"text": "results", "start": 290, "end": 297, "annotation": null}, {"text": "show", "start": 298, "end": 302, "annotation": null}, {"text": "that", "start": 303, "end": 307, "annotation": null}, {"text": "the", "start": 308, "end": 311, "annotation": null}, {"text": "well", "start": 312, "end": 316, "annotation": null}, {"text": "distributed", "start": 317, "end": 328, "annotation": null}, {"text": "Pd", "start": 329, "end": 331, "annotation": null}, {"text": "/", "start": 331, "end": 332, "annotation": null}, {"text": "C", "start": 332, "end": 333, "annotation": null}, {"text": "microspheres", "start": 334, "end": 346, "annotation": null}, {"text": "with", "start": 347, "end": 351, "annotation": null}, {"text": "different", "start": 352, "end": 361, "annotation": null}, {"text": "size", "start": 362, "end": 366, "annotation": null}, {"text": "presented", "start": 367, "end": 376, "annotation": null}, {"text": "in", "start": 377, "end": 379, "annotation": null}, {"text": "the", "start": 380, "end": 383, "annotation": null}, {"text": "network", "start": 384, "end": 391, "annotation": null}, {"text": "of", "start": 392, "end": 394, "annotation": null}, {"text": "carbon", "start": 395, "end": 401, "annotation": null}, {"text": "aerogels", "start": 402, "end": 410, "annotation": null}, {"text": ".", "start": 410, "end": 411, "annotation": null}], [{"text": "The", "start": 412, "end": 415, "annotation": null}, {"text": "Pd", "start": 416, "end": 418, "annotation": null}, {"text": "/", "start": 418, "end": 419, "annotation": null}, {"text": "C", "start": 419, "end": 420, "annotation": null}, {"text": "microspheres", "start": 421, "end": 433, "annotation": null}, {"text": "are", "start": 434, "end": 437, "annotation": null}, {"text": "spherical", "start": 438, "end": 447, "annotation": null}, {"text": "with", "start": 448, "end": 452, "annotation": null}, {"text": "porous", "start": 453, "end": 459, "annotation": null}, {"text": "structure", "start": 460, "end": 469, "annotation": null}, {"text": ".", "start": 469, "end": 470, "annotation": null}], [{"text": "The", "start": 471, "end": 474, "annotation": null}, {"text": "structure", "start": 475, "end": 484, "annotation": null}, {"text": "of", "start": 485, "end": 487, "annotation": null}, {"text": "Pd", "start": 488, "end": 490, "annotation": null}, {"text": "/", "start": 490, "end": 491, "annotation": null}, {"text": "C", "start": 491, "end": 492, "annotation": null}, {"text": "microspheres", "start": 493, "end": 505, "annotation": null}, {"text": "is", "start": 506, "end": 508, "annotation": null}, {"text": "different", "start": 509, "end": 518, "annotation": null}, {"text": "from", "start": 519, "end": 523, "annotation": null}, {"text": "the", "start": 524, "end": 527, "annotation": null}, {"text": "Pd", "start": 528, "end": 530, "annotation": null}, {"text": "particles", "start": 531, "end": 540, "annotation": null}, {"text": "doped", "start": 541, "end": 546, "annotation": null}, {"text": "in", "start": 547, "end": 549, "annotation": null}, {"text": "carbon", "start": 550, "end": 556, "annotation": null}, {"text": "aerogels", "start": 557, "end": 565, "annotation": null}, {"text": "by", "start": 566, "end": 568, "annotation": null}, {"text": "wet", "start": 569, "end": 572, "annotation": null}, {"text": "impregnation", "start": 573, "end": 585, "annotation": null}, {"text": "method", "start": 586, "end": 592, "annotation": null}, {"text": ".", "start": 592, "end": 593, "annotation": null}], [{"text": "Such", "start": 594, "end": 598, "annotation": null}, {"text": "porous", "start": 599, "end": 605, "annotation": null}, {"text": "Pd", "start": 606, "end": 608, "annotation": null}, {"text": "/", "start": 608, "end": 609, "annotation": null}, {"text": "C", "start": 609, "end": 610, "annotation": null}, {"text": "microspheres", "start": 611, "end": 623, "annotation": null}, {"text": "/", "start": 623, "end": 624, "annotation": null}, {"text": "carbon", "start": 624, "end": 630, "annotation": null}, {"text": "aerogels", "start": 631, "end": 639, "annotation": null}, {"text": "composite", "start": 640, "end": 649, "annotation": null}, {"text": "exhibits", "start": 650, "end": 658, "annotation": null}, {"text": "higher", "start": 659, "end": 665, "annotation": null}, {"text": "hydrogen", "start": 666, "end": 674, "annotation": null}, {"text": "uptake", "start": 675, "end": 681, "annotation": null}, {"text": "capacity", "start": 682, "end": 690, "annotation": null}, {"text": "than", "start": 691, "end": 695, "annotation": null}, {"text": "Pd", "start": 696, "end": 698, "annotation": "DOPANT"}, {"text": "-", "start": 698, "end": 699, "annotation": null}, {"text": "doped", "start": 699, "end": 704, "annotation": null}, {"text": "carbon", "start": 705, "end": 711, "annotation": "BASEMAT"}, {"text": "aerogels", "start": 712, "end": 720, "annotation": "BASEMAT"}, {"text": ".", "start": 720, "end": 721, "annotation": null}]]} +{"remark": "doping_annt1", "text": "ZnO nanorods (NRs) were grown on fluorine doped tin oxide (FTO) substrates at low temperatures (90 \u00b0C) from Zn2+ precursors in alkaline media previously seeded with ZnO nanoparticles. These were deposited onto the FTO substrate heated at 350 \u00b0C by spray pyrolysis of a Zn acetate solution in a water ethanol mixture. The structure of seeds was tuned by the ethanol to water ratio, \u0393, which controls the solvent evaporation rate of drops impinging the substrate. From a detailed characterization using a combination of scanning electron microscopy, X-ray diffraction, UV\u2013visible absorption and cathodoluminescence spectroscopies, the dependence of the morphology and optical properties of the ZnO NRs on the seeding conditions was demonstrated. NRs grown on seeds deposited from solutions with \u0393 in the 0.03\u20130.06 range \u2013 i.e. when the surface excess of ethanol in the water\u2013ethanol mixture has a maximum \u2013 show thinner average diameters and stacking faults due to the presence of zinc blende domains embedded into an overall wurtzite NR. They furthermore exhibit blue-shifted near band edge emission peak and a high deep level emission in cathodoluminescence. All these findings support the use of spray pyrolysis as a simple and reproducible way to control the seeds deposition, influencing the growth, the structure and the optical properties of the final ZnO NRs.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "ZnO", "start": 0, "end": 3, "annotation": null}, {"text": "nanorods", "start": 4, "end": 12, "annotation": null}, {"text": "(", "start": 13, "end": 14, "annotation": null}, {"text": "NRs", "start": 14, "end": 17, "annotation": null}, {"text": ")", "start": 17, "end": 18, "annotation": null}, {"text": "were", "start": 19, "end": 23, "annotation": null}, {"text": "grown", "start": 24, "end": 29, "annotation": null}, {"text": "on", "start": 30, "end": 32, "annotation": null}, {"text": "fluorine", "start": 33, "end": 41, "annotation": "DOPANT"}, {"text": "doped", "start": 42, "end": 47, "annotation": null}, {"text": "tin", "start": 48, "end": 51, "annotation": "BASEMAT"}, {"text": "oxide", "start": 52, "end": 57, "annotation": "BASEMAT"}, {"text": "(", "start": 58, "end": 59, "annotation": null}, {"text": "FTO", "start": 59, "end": 62, "annotation": null}, {"text": ")", "start": 62, "end": 63, "annotation": null}, {"text": "substrates", "start": 64, "end": 74, "annotation": null}, {"text": "at", "start": 75, "end": 77, "annotation": null}, {"text": "low", "start": 78, "end": 81, "annotation": null}, {"text": "temperatures", "start": 82, "end": 94, "annotation": null}, {"text": "(", "start": 95, "end": 96, "annotation": null}, {"text": "90", "start": 96, "end": 98, "annotation": null}, {"text": "\u00b0", "start": 99, "end": 100, "annotation": null}, {"text": "C", "start": 100, "end": 101, "annotation": null}, {"text": ")", "start": 101, "end": 102, "annotation": null}, {"text": "from", "start": 103, "end": 107, "annotation": null}, {"text": "Zn2+", "start": 108, "end": 112, "annotation": null}, {"text": "precursors", "start": 113, "end": 123, "annotation": null}, {"text": "in", "start": 124, "end": 126, "annotation": null}, {"text": "alkaline", "start": 127, "end": 135, "annotation": null}, {"text": "media", "start": 136, "end": 141, "annotation": null}, {"text": "previously", "start": 142, "end": 152, "annotation": null}, {"text": "seeded", "start": 153, "end": 159, "annotation": null}, {"text": "with", "start": 160, "end": 164, "annotation": null}, {"text": "ZnO", "start": 165, "end": 168, "annotation": null}, {"text": "nanoparticles", "start": 169, "end": 182, "annotation": null}, {"text": ".", "start": 182, "end": 183, "annotation": null}], [{"text": "These", "start": 184, "end": 189, "annotation": null}, {"text": "were", "start": 190, "end": 194, "annotation": null}, {"text": "deposited", "start": 195, "end": 204, "annotation": null}, {"text": "onto", "start": 205, "end": 209, "annotation": null}, {"text": "the", "start": 210, "end": 213, "annotation": null}, {"text": "FTO", "start": 214, "end": 217, "annotation": null}, {"text": "substrate", "start": 218, "end": 227, "annotation": null}, {"text": "heated", "start": 228, "end": 234, "annotation": null}, {"text": "at", "start": 235, "end": 237, "annotation": null}, {"text": "350", "start": 238, "end": 241, "annotation": null}, {"text": "\u00b0", "start": 242, "end": 243, "annotation": null}, {"text": "C", "start": 243, "end": 244, "annotation": null}, {"text": "by", "start": 245, "end": 247, "annotation": null}, {"text": "spray", "start": 248, "end": 253, "annotation": null}, {"text": "pyrolysis", "start": 254, "end": 263, "annotation": null}, {"text": "of", "start": 264, "end": 266, "annotation": null}, {"text": "a", "start": 267, "end": 268, "annotation": null}, {"text": "Zn", "start": 269, "end": 271, "annotation": null}, {"text": "acetate", "start": 272, "end": 279, "annotation": null}, {"text": "solution", "start": 280, "end": 288, "annotation": null}, {"text": "in", "start": 289, "end": 291, "annotation": null}, {"text": "a", "start": 292, "end": 293, "annotation": null}, {"text": "water", "start": 294, "end": 299, "annotation": null}, {"text": "ethanol", "start": 300, "end": 307, "annotation": null}, {"text": "mixture", "start": 308, "end": 315, "annotation": null}, {"text": ".", "start": 315, "end": 316, "annotation": null}], [{"text": "The", "start": 317, "end": 320, "annotation": null}, {"text": "structure", "start": 321, "end": 330, "annotation": null}, {"text": "of", "start": 331, "end": 333, "annotation": null}, {"text": "seeds", "start": 334, "end": 339, "annotation": null}, {"text": "was", "start": 340, "end": 343, "annotation": null}, {"text": "tuned", "start": 344, "end": 349, "annotation": null}, {"text": "by", "start": 350, "end": 352, "annotation": null}, {"text": "the", "start": 353, "end": 356, "annotation": null}, {"text": "ethanol", "start": 357, "end": 364, "annotation": null}, {"text": "to", "start": 365, "end": 367, "annotation": null}, {"text": "water", "start": 368, "end": 373, "annotation": null}, {"text": "ratio", "start": 374, "end": 379, "annotation": null}, {"text": ",", "start": 379, "end": 380, "annotation": null}, {"text": "\u0393", "start": 381, "end": 382, "annotation": null}, {"text": ",", "start": 382, "end": 383, "annotation": null}, {"text": "which", "start": 384, "end": 389, "annotation": null}, {"text": "controls", "start": 390, "end": 398, "annotation": null}, {"text": "the", "start": 399, "end": 402, "annotation": null}, {"text": "solvent", "start": 403, "end": 410, "annotation": null}, {"text": "evaporation", "start": 411, "end": 422, "annotation": null}, {"text": "rate", "start": 423, "end": 427, "annotation": null}, {"text": "of", "start": 428, "end": 430, "annotation": null}, {"text": "drops", "start": 431, "end": 436, "annotation": null}, {"text": "impinging", "start": 437, "end": 446, "annotation": null}, {"text": "the", "start": 447, "end": 450, "annotation": null}, {"text": "substrate", "start": 451, "end": 460, "annotation": null}, {"text": ".", "start": 460, "end": 461, "annotation": null}], [{"text": "From", "start": 462, "end": 466, "annotation": null}, {"text": "a", "start": 467, "end": 468, "annotation": null}, {"text": "detailed", "start": 469, "end": 477, "annotation": null}, {"text": "characterization", "start": 478, "end": 494, "annotation": null}, {"text": "using", "start": 495, "end": 500, "annotation": null}, {"text": "a", "start": 501, "end": 502, "annotation": null}, {"text": "combination", "start": 503, "end": 514, "annotation": null}, {"text": "of", "start": 515, "end": 517, "annotation": null}, {"text": "scanning", "start": 518, "end": 526, "annotation": null}, {"text": "electron", "start": 527, "end": 535, "annotation": null}, {"text": "microscopy", "start": 536, "end": 546, "annotation": null}, {"text": ",", "start": 546, "end": 547, "annotation": null}, {"text": "X-ray", "start": 548, "end": 553, "annotation": null}, {"text": "diffraction", "start": 554, "end": 565, "annotation": null}, {"text": ",", "start": 565, "end": 566, "annotation": null}, {"text": "UV", "start": 567, "end": 569, "annotation": null}, {"text": "\u2013", "start": 569, "end": 570, "annotation": null}, {"text": "visible", "start": 570, "end": 577, "annotation": null}, {"text": "absorption", "start": 578, "end": 588, "annotation": null}, {"text": "and", "start": 589, "end": 592, "annotation": null}, {"text": "cathodoluminescence", "start": 593, "end": 612, "annotation": null}, {"text": "spectroscopies", "start": 613, "end": 627, "annotation": null}, {"text": ",", "start": 627, "end": 628, "annotation": null}, {"text": "the", "start": 629, "end": 632, "annotation": null}, {"text": "dependence", "start": 633, "end": 643, "annotation": null}, {"text": "of", "start": 644, "end": 646, "annotation": null}, {"text": "the", "start": 647, "end": 650, "annotation": null}, {"text": "morphology", "start": 651, "end": 661, "annotation": null}, {"text": "and", "start": 662, "end": 665, "annotation": null}, {"text": "optical", "start": 666, "end": 673, "annotation": null}, {"text": "properties", "start": 674, "end": 684, "annotation": null}, {"text": "of", "start": 685, "end": 687, "annotation": null}, {"text": "the", "start": 688, "end": 691, "annotation": null}, {"text": "ZnO", "start": 692, "end": 695, "annotation": null}, {"text": "NRs", "start": 696, "end": 699, "annotation": null}, {"text": "on", "start": 700, "end": 702, "annotation": null}, {"text": "the", "start": 703, "end": 706, "annotation": null}, {"text": "seeding", "start": 707, "end": 714, "annotation": null}, {"text": "conditions", "start": 715, "end": 725, "annotation": null}, {"text": "was", "start": 726, "end": 729, "annotation": null}, {"text": "demonstrated", "start": 730, "end": 742, "annotation": null}, {"text": ".", "start": 742, "end": 743, "annotation": null}], [{"text": "NRs", "start": 744, "end": 747, "annotation": null}, {"text": "grown", "start": 748, "end": 753, "annotation": null}, {"text": "on", "start": 754, "end": 756, "annotation": null}, {"text": "seeds", "start": 757, "end": 762, "annotation": null}, {"text": "deposited", "start": 763, "end": 772, "annotation": null}, {"text": "from", "start": 773, "end": 777, "annotation": null}, {"text": "solutions", "start": 778, "end": 787, "annotation": null}, {"text": "with", "start": 788, "end": 792, "annotation": null}, {"text": "\u0393", "start": 793, "end": 794, "annotation": null}, {"text": "in", "start": 795, "end": 797, "annotation": null}, {"text": "the", "start": 798, "end": 801, "annotation": null}, {"text": "0.03", "start": 802, "end": 806, "annotation": null}, {"text": "\u2013", "start": 806, "end": 807, "annotation": null}, {"text": "0.06", "start": 807, "end": 811, "annotation": null}, {"text": "range", "start": 812, "end": 817, "annotation": null}, {"text": "\u2013", "start": 818, "end": 819, "annotation": null}, {"text": "i.e.", "start": 820, "end": 824, "annotation": null}, {"text": "when", "start": 825, "end": 829, "annotation": null}, {"text": "the", "start": 830, "end": 833, "annotation": null}, {"text": "surface", "start": 834, "end": 841, "annotation": null}, {"text": "excess", "start": 842, "end": 848, "annotation": null}, {"text": "of", "start": 849, "end": 851, "annotation": null}, {"text": "ethanol", "start": 852, "end": 859, "annotation": null}, {"text": "in", "start": 860, "end": 862, "annotation": null}, {"text": "the", "start": 863, "end": 866, "annotation": null}, {"text": "water", "start": 867, "end": 872, "annotation": null}, {"text": "\u2013", "start": 872, "end": 873, "annotation": null}, {"text": "ethanol", "start": 873, "end": 880, "annotation": null}, {"text": "mixture", "start": 881, "end": 888, "annotation": null}, {"text": "has", "start": 889, "end": 892, "annotation": null}, {"text": "a", "start": 893, "end": 894, "annotation": null}, {"text": "maximum", "start": 895, "end": 902, "annotation": null}, {"text": "\u2013", "start": 903, "end": 904, "annotation": null}, {"text": "show", "start": 905, "end": 909, "annotation": null}, {"text": "thinner", "start": 910, "end": 917, "annotation": null}, {"text": "average", "start": 918, "end": 925, "annotation": null}, {"text": "diameters", "start": 926, "end": 935, "annotation": null}, {"text": "and", "start": 936, "end": 939, "annotation": null}, {"text": "stacking", "start": 940, "end": 948, "annotation": null}, {"text": "faults", "start": 949, "end": 955, "annotation": null}, {"text": "due", "start": 956, "end": 959, "annotation": null}, {"text": "to", "start": 960, "end": 962, "annotation": null}, {"text": "the", "start": 963, "end": 966, "annotation": null}, {"text": "presence", "start": 967, "end": 975, "annotation": null}, {"text": "of", "start": 976, "end": 978, "annotation": null}, {"text": "zinc", "start": 979, "end": 983, "annotation": null}, {"text": "blende", "start": 984, "end": 990, "annotation": null}, {"text": "domains", "start": 991, "end": 998, "annotation": null}, {"text": "embedded", "start": 999, "end": 1007, "annotation": null}, {"text": "into", "start": 1008, "end": 1012, "annotation": null}, {"text": "an", "start": 1013, "end": 1015, "annotation": null}, {"text": "overall", "start": 1016, "end": 1023, "annotation": null}, {"text": "wurtzite", "start": 1024, "end": 1032, "annotation": null}, {"text": "NR", "start": 1033, "end": 1035, "annotation": null}, {"text": ".", "start": 1035, "end": 1036, "annotation": null}], [{"text": "They", "start": 1037, "end": 1041, "annotation": null}, {"text": "furthermore", "start": 1042, "end": 1053, "annotation": null}, {"text": "exhibit", "start": 1054, "end": 1061, "annotation": null}, {"text": "blue", "start": 1062, "end": 1066, "annotation": null}, {"text": "-", "start": 1066, "end": 1067, "annotation": null}, {"text": "shifted", "start": 1067, "end": 1074, "annotation": null}, {"text": "near", "start": 1075, "end": 1079, "annotation": null}, {"text": "band", "start": 1080, "end": 1084, "annotation": null}, {"text": "edge", "start": 1085, "end": 1089, "annotation": null}, {"text": "emission", "start": 1090, "end": 1098, "annotation": null}, {"text": "peak", "start": 1099, "end": 1103, "annotation": null}, {"text": "and", "start": 1104, "end": 1107, "annotation": null}, {"text": "a", "start": 1108, "end": 1109, "annotation": null}, {"text": "high", "start": 1110, "end": 1114, "annotation": null}, {"text": "deep", "start": 1115, "end": 1119, "annotation": null}, {"text": "level", "start": 1120, "end": 1125, "annotation": null}, {"text": "emission", "start": 1126, "end": 1134, "annotation": null}, {"text": "in", "start": 1135, "end": 1137, "annotation": null}, {"text": "cathodoluminescence", "start": 1138, "end": 1157, "annotation": null}, {"text": ".", "start": 1157, "end": 1158, "annotation": null}], [{"text": "All", "start": 1159, "end": 1162, "annotation": null}, {"text": "these", "start": 1163, "end": 1168, "annotation": null}, {"text": "findings", "start": 1169, "end": 1177, "annotation": null}, {"text": "support", "start": 1178, "end": 1185, "annotation": null}, {"text": "the", "start": 1186, "end": 1189, "annotation": null}, {"text": "use", "start": 1190, "end": 1193, "annotation": null}, {"text": "of", "start": 1194, "end": 1196, "annotation": null}, {"text": "spray", "start": 1197, "end": 1202, "annotation": null}, {"text": "pyrolysis", "start": 1203, "end": 1212, "annotation": null}, {"text": "as", "start": 1213, "end": 1215, "annotation": null}, {"text": "a", "start": 1216, "end": 1217, "annotation": null}, {"text": "simple", "start": 1218, "end": 1224, "annotation": null}, {"text": "and", "start": 1225, "end": 1228, "annotation": null}, {"text": "reproducible", "start": 1229, "end": 1241, "annotation": null}, {"text": "way", "start": 1242, "end": 1245, "annotation": null}, {"text": "to", "start": 1246, "end": 1248, "annotation": null}, {"text": "control", "start": 1249, "end": 1256, "annotation": null}, {"text": "the", "start": 1257, "end": 1260, "annotation": null}, {"text": "seeds", "start": 1261, "end": 1266, "annotation": null}, {"text": "deposition", "start": 1267, "end": 1277, "annotation": null}, {"text": ",", "start": 1277, "end": 1278, "annotation": null}, {"text": "influencing", "start": 1279, "end": 1290, "annotation": null}, {"text": "the", "start": 1291, "end": 1294, "annotation": null}, {"text": "growth", "start": 1295, "end": 1301, "annotation": null}, {"text": ",", "start": 1301, "end": 1302, "annotation": null}, {"text": "the", "start": 1303, "end": 1306, "annotation": null}, {"text": "structure", "start": 1307, "end": 1316, "annotation": null}, {"text": "and", "start": 1317, "end": 1320, "annotation": null}, {"text": "the", "start": 1321, "end": 1324, "annotation": null}, {"text": "optical", "start": 1325, "end": 1332, "annotation": null}, {"text": "properties", "start": 1333, "end": 1343, "annotation": null}, {"text": "of", "start": 1344, "end": 1346, "annotation": null}, {"text": "the", "start": 1347, "end": 1350, "annotation": null}, {"text": "final", "start": 1351, "end": 1356, "annotation": null}, {"text": "ZnO", "start": 1357, "end": 1360, "annotation": null}, {"text": "NRs", "start": 1361, "end": 1364, "annotation": null}, {"text": ".", "start": 1364, "end": 1365, "annotation": null}]], "meta": {"doi": "10.1016/j.matchemphys.2014.12.013"}} +{"remark": "doping_annt1", "text": "\u00a9 2018 IOP Publishing Ltd. In a model of a gate-patterned quantum device, it is important to choose the correct electrostatic boundary conditions (BCs) in order to match experiment. In this study, we model gated-patterned devices in doped and undoped GaAs heterostructures for a variety of BCs. The best match is obtained for an unconstrained surface between the gates, with a dielectric region above it and a frozen layer of surface charge, together with a very deep back boundary. Experimentally, we find a \u223c0.2 V offset in pinch-off characteristics of 1D channels in a doped heterostructure before and after etching off a ZnO overlayer, as predicted by the model. Also, we observe a clear quantised current driven by a surface acoustic wave through a lateral induced n-i-n junction in an undoped heterostructure. In the model, the ability to pump electrons in this type of device is highly sensitive to the back BC. Using the improved boundary conditions, it is straightforward to model quantum devices quite accurately using standard software.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 27, "end": 29, "annotation": null}, {"text": "a", "start": 30, "end": 31, "annotation": null}, {"text": "model", "start": 32, "end": 37, "annotation": null}, {"text": "of", "start": 38, "end": 40, "annotation": null}, {"text": "a", "start": 41, "end": 42, "annotation": null}, {"text": "gate", "start": 43, "end": 47, "annotation": null}, {"text": "-", "start": 47, "end": 48, "annotation": null}, {"text": "patterned", "start": 48, "end": 57, "annotation": null}, {"text": "quantum", "start": 58, "end": 65, "annotation": null}, {"text": "device", "start": 66, "end": 72, "annotation": null}, {"text": ",", "start": 72, "end": 73, "annotation": null}, {"text": "it", "start": 74, "end": 76, "annotation": null}, {"text": "is", "start": 77, "end": 79, "annotation": null}, {"text": "important", "start": 80, "end": 89, "annotation": null}, {"text": "to", "start": 90, "end": 92, "annotation": null}, {"text": "choose", "start": 93, "end": 99, "annotation": null}, {"text": "the", "start": 100, "end": 103, "annotation": null}, {"text": "correct", "start": 104, "end": 111, "annotation": null}, {"text": "electrostatic", "start": 112, "end": 125, "annotation": null}, {"text": "boundary", "start": 126, "end": 134, "annotation": null}, {"text": "conditions", "start": 135, "end": 145, "annotation": null}, {"text": "(", "start": 146, "end": 147, "annotation": null}, {"text": "BCs", "start": 147, "end": 150, "annotation": null}, {"text": ")", "start": 150, "end": 151, "annotation": null}, {"text": "in", "start": 152, "end": 154, "annotation": null}, {"text": "order", "start": 155, "end": 160, "annotation": null}, {"text": "to", "start": 161, "end": 163, "annotation": null}, {"text": "match", "start": 164, "end": 169, "annotation": null}, {"text": "experiment", "start": 170, "end": 180, "annotation": null}, {"text": ".", "start": 180, "end": 181, "annotation": null}], [{"text": "In", "start": 182, "end": 184, "annotation": null}, {"text": "this", "start": 185, "end": 189, "annotation": null}, {"text": "study", "start": 190, "end": 195, "annotation": null}, {"text": ",", "start": 195, "end": 196, "annotation": null}, {"text": "we", "start": 197, "end": 199, "annotation": null}, {"text": "model", "start": 200, "end": 205, "annotation": null}, {"text": "gated", "start": 206, "end": 211, "annotation": null}, {"text": "-", "start": 211, "end": 212, "annotation": null}, {"text": "patterned", "start": 212, "end": 221, "annotation": null}, {"text": "devices", "start": 222, "end": 229, "annotation": null}, {"text": "in", "start": 230, "end": 232, "annotation": null}, {"text": "doped", "start": 233, "end": 238, "annotation": "DOPANT"}, {"text": "and", "start": 239, "end": 242, "annotation": null}, {"text": "undoped", "start": 243, "end": 250, "annotation": "DOPANT"}, {"text": "GaAs", "start": 251, "end": 255, "annotation": "BASEMAT"}, {"text": "heterostructures", "start": 256, "end": 272, "annotation": null}, {"text": "for", "start": 273, "end": 276, "annotation": null}, {"text": "a", "start": 277, "end": 278, "annotation": null}, {"text": "variety", "start": 279, "end": 286, "annotation": null}, {"text": "of", "start": 287, "end": 289, "annotation": null}, {"text": "BCs", "start": 290, "end": 293, "annotation": null}, {"text": ".", "start": 293, "end": 294, "annotation": null}], [{"text": "The", "start": 295, "end": 298, "annotation": null}, {"text": "best", "start": 299, "end": 303, "annotation": null}, {"text": "match", "start": 304, "end": 309, "annotation": null}, {"text": "is", "start": 310, "end": 312, "annotation": null}, {"text": "obtained", "start": 313, "end": 321, "annotation": null}, {"text": "for", "start": 322, "end": 325, "annotation": null}, {"text": "an", "start": 326, "end": 328, "annotation": null}, {"text": "unconstrained", "start": 329, "end": 342, "annotation": null}, {"text": "surface", "start": 343, "end": 350, "annotation": null}, {"text": "between", "start": 351, "end": 358, "annotation": null}, {"text": "the", "start": 359, "end": 362, "annotation": null}, {"text": "gates", "start": 363, "end": 368, "annotation": null}, {"text": ",", "start": 368, "end": 369, "annotation": null}, {"text": "with", "start": 370, "end": 374, "annotation": null}, {"text": "a", "start": 375, "end": 376, "annotation": null}, {"text": "dielectric", "start": 377, "end": 387, "annotation": null}, {"text": "region", "start": 388, "end": 394, "annotation": null}, {"text": "above", "start": 395, "end": 400, "annotation": null}, {"text": "it", "start": 401, "end": 403, "annotation": null}, {"text": "and", "start": 404, "end": 407, "annotation": null}, {"text": "a", "start": 408, "end": 409, "annotation": null}, {"text": "frozen", "start": 410, "end": 416, "annotation": null}, {"text": "layer", "start": 417, "end": 422, "annotation": null}, {"text": "of", "start": 423, "end": 425, "annotation": null}, {"text": "surface", "start": 426, "end": 433, "annotation": null}, {"text": "charge", "start": 434, "end": 440, "annotation": null}, {"text": ",", "start": 440, "end": 441, "annotation": null}, {"text": "together", "start": 442, "end": 450, "annotation": null}, {"text": "with", "start": 451, "end": 455, "annotation": null}, {"text": "a", "start": 456, "end": 457, "annotation": null}, {"text": "very", "start": 458, "end": 462, "annotation": null}, {"text": "deep", "start": 463, "end": 467, "annotation": null}, {"text": "back", "start": 468, "end": 472, "annotation": null}, {"text": "boundary", "start": 473, "end": 481, "annotation": null}, {"text": ".", "start": 481, "end": 482, "annotation": null}], [{"text": "Experimentally", "start": 483, "end": 497, "annotation": null}, {"text": ",", "start": 497, "end": 498, "annotation": null}, {"text": "we", "start": 499, "end": 501, "annotation": null}, {"text": "find", "start": 502, "end": 506, "annotation": null}, {"text": "a", "start": 507, "end": 508, "annotation": null}, {"text": "\u223c", "start": 509, "end": 510, "annotation": null}, {"text": "0.2", "start": 510, "end": 513, "annotation": null}, {"text": "V", "start": 514, "end": 515, "annotation": null}, {"text": "offset", "start": 516, "end": 522, "annotation": null}, {"text": "in", "start": 523, "end": 525, "annotation": null}, {"text": "pinch", "start": 526, "end": 531, "annotation": null}, {"text": "-", "start": 531, "end": 532, "annotation": null}, {"text": "off", "start": 532, "end": 535, "annotation": null}, {"text": "characteristics", "start": 536, "end": 551, "annotation": null}, {"text": "of", "start": 552, "end": 554, "annotation": null}, {"text": "1D", "start": 555, "end": 557, "annotation": null}, {"text": "channels", "start": 558, "end": 566, "annotation": null}, {"text": "in", "start": 567, "end": 569, "annotation": null}, {"text": "a", "start": 570, "end": 571, "annotation": null}, {"text": "doped", "start": 572, "end": 577, "annotation": "DOPANT"}, {"text": "heterostructure", "start": 578, "end": 593, "annotation": "BASEMAT"}, {"text": "before", "start": 594, "end": 600, "annotation": null}, {"text": "and", "start": 601, "end": 604, "annotation": null}, {"text": "after", "start": 605, "end": 610, "annotation": null}, {"text": "etching", "start": 611, "end": 618, "annotation": null}, {"text": "off", "start": 619, "end": 622, "annotation": null}, {"text": "a", "start": 623, "end": 624, "annotation": null}, {"text": "ZnO", "start": 625, "end": 628, "annotation": null}, {"text": "overlayer", "start": 629, "end": 638, "annotation": null}, {"text": ",", "start": 638, "end": 639, "annotation": null}, {"text": "as", "start": 640, "end": 642, "annotation": null}, {"text": "predicted", "start": 643, "end": 652, "annotation": null}, {"text": "by", "start": 653, "end": 655, "annotation": null}, {"text": "the", "start": 656, "end": 659, "annotation": null}, {"text": "model", "start": 660, "end": 665, "annotation": null}, {"text": ".", "start": 665, "end": 666, "annotation": null}], [{"text": "Also", "start": 667, "end": 671, "annotation": null}, {"text": ",", "start": 671, "end": 672, "annotation": null}, {"text": "we", "start": 673, "end": 675, "annotation": null}, {"text": "observe", "start": 676, "end": 683, "annotation": null}, {"text": "a", "start": 684, "end": 685, "annotation": null}, {"text": "clear", "start": 686, "end": 691, "annotation": null}, {"text": "quantised", "start": 692, "end": 701, "annotation": null}, {"text": "current", "start": 702, "end": 709, "annotation": null}, {"text": "driven", "start": 710, "end": 716, "annotation": null}, {"text": "by", "start": 717, "end": 719, "annotation": null}, {"text": "a", "start": 720, "end": 721, "annotation": null}, {"text": "surface", "start": 722, "end": 729, "annotation": null}, {"text": "acoustic", "start": 730, "end": 738, "annotation": null}, {"text": "wave", "start": 739, "end": 743, "annotation": null}, {"text": "through", "start": 744, "end": 751, "annotation": null}, {"text": "a", "start": 752, "end": 753, "annotation": null}, {"text": "lateral", "start": 754, "end": 761, "annotation": null}, {"text": "induced", "start": 762, "end": 769, "annotation": null}, {"text": "n-i-n", "start": 770, "end": 775, "annotation": null}, {"text": "junction", "start": 776, "end": 784, "annotation": null}, {"text": "in", "start": 785, "end": 787, "annotation": null}, {"text": "an", "start": 788, "end": 790, "annotation": null}, {"text": "undoped", "start": 791, "end": 798, "annotation": "DOPANT"}, {"text": "heterostructure", "start": 799, "end": 814, "annotation": "BASEMAT"}, {"text": ".", "start": 814, "end": 815, "annotation": null}], [{"text": "In", "start": 816, "end": 818, "annotation": null}, {"text": "the", "start": 819, "end": 822, "annotation": null}, {"text": "model", "start": 823, "end": 828, "annotation": null}, {"text": ",", "start": 828, "end": 829, "annotation": null}, {"text": "the", "start": 830, "end": 833, "annotation": null}, {"text": "ability", "start": 834, "end": 841, "annotation": null}, {"text": "to", "start": 842, "end": 844, "annotation": null}, {"text": "pump", "start": 845, "end": 849, "annotation": null}, {"text": "electrons", "start": 850, "end": 859, "annotation": null}, {"text": "in", "start": 860, "end": 862, "annotation": null}, {"text": "this", "start": 863, "end": 867, "annotation": null}, {"text": "type", "start": 868, "end": 872, "annotation": null}, {"text": "of", "start": 873, "end": 875, "annotation": null}, {"text": "device", "start": 876, "end": 882, "annotation": null}, {"text": "is", "start": 883, "end": 885, "annotation": null}, {"text": "highly", "start": 886, "end": 892, "annotation": null}, {"text": "sensitive", "start": 893, "end": 902, "annotation": null}, {"text": "to", "start": 903, "end": 905, "annotation": null}, {"text": "the", "start": 906, "end": 909, "annotation": null}, {"text": "back", "start": 910, "end": 914, "annotation": null}, {"text": "BC", "start": 915, "end": 917, "annotation": null}, {"text": ".", "start": 917, "end": 918, "annotation": null}], [{"text": "Using", "start": 919, "end": 924, "annotation": null}, {"text": "the", "start": 925, "end": 928, "annotation": null}, {"text": "improved", "start": 929, "end": 937, "annotation": null}, {"text": "boundary", "start": 938, "end": 946, "annotation": null}, {"text": "conditions", "start": 947, "end": 957, "annotation": null}, {"text": ",", "start": 957, "end": 958, "annotation": null}, {"text": "it", "start": 959, "end": 961, "annotation": null}, {"text": "is", "start": 962, "end": 964, "annotation": null}, {"text": "straightforward", "start": 965, "end": 980, "annotation": null}, {"text": "to", "start": 981, "end": 983, "annotation": null}, {"text": "model", "start": 984, "end": 989, "annotation": null}, {"text": "quantum", "start": 990, "end": 997, "annotation": null}, {"text": "devices", "start": 998, "end": 1005, "annotation": null}, {"text": "quite", "start": 1006, "end": 1011, "annotation": null}, {"text": "accurately", "start": 1012, "end": 1022, "annotation": null}, {"text": "using", "start": 1023, "end": 1028, "annotation": null}, {"text": "standard", "start": 1029, "end": 1037, "annotation": null}, {"text": "software", "start": 1038, "end": 1046, "annotation": null}, {"text": ".", "start": 1046, "end": 1047, "annotation": null}]], "meta": {"doi": "10.1088/1361-6463/aac376"}} +{"remark": "doping_annt1", "text": "The spectroscopic and structural properties of surface crystallized Eu3+ ions and Yb3+ ions co-doped oxyfluoroborate glass ceramics have been studied. Luminescence measurements reveal higher cross-sections in the ceramic, on excitation with 464nm and 976nm laser radiations. Studies with polarized light as well as SEM images confirm crystallization in the ceramic and the XRD studies show that \u03b1-BaB4O7 crystals are formed on the surface after annealing. These structural changes significantly alter the luminescence characteristics of Eu3+ and Yb3+ ions. A bright red emission from Eu3+ ions is observed under 976nm excitation. The photophysics involved in this emission has been explained.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "spectroscopic", "start": 4, "end": 17, "annotation": null}, {"text": "and", "start": 18, "end": 21, "annotation": null}, {"text": "structural", "start": 22, "end": 32, "annotation": null}, {"text": "properties", "start": 33, "end": 43, "annotation": null}, {"text": "of", "start": 44, "end": 46, "annotation": null}, {"text": "surface", "start": 47, "end": 54, "annotation": null}, {"text": "crystallized", "start": 55, "end": 67, "annotation": null}, {"text": "Eu3+", "start": 68, "end": 72, "annotation": "DOPANT"}, {"text": "ions", "start": 73, "end": 77, "annotation": null}, {"text": "and", "start": 78, "end": 81, "annotation": null}, {"text": "Yb3+", "start": 82, "end": 86, "annotation": "DOPANT"}, {"text": "ions", "start": 87, "end": 91, "annotation": null}, {"text": "co-doped", "start": 92, "end": 100, "annotation": null}, {"text": "oxyfluoroborate", "start": 101, "end": 116, "annotation": "BASEMAT"}, {"text": "glass", "start": 117, "end": 122, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 123, "end": 131, "annotation": "BASEMAT"}, {"text": "have", "start": 132, "end": 136, "annotation": null}, {"text": "been", "start": 137, "end": 141, "annotation": null}, {"text": "studied", "start": 142, "end": 149, "annotation": null}, {"text": ".", "start": 149, "end": 150, "annotation": null}], [{"text": "Luminescence", "start": 151, "end": 163, "annotation": null}, {"text": "measurements", "start": 164, "end": 176, "annotation": null}, {"text": "reveal", "start": 177, "end": 183, "annotation": null}, {"text": "higher", "start": 184, "end": 190, "annotation": null}, {"text": "cross-sections", "start": 191, "end": 205, "annotation": null}, {"text": "in", "start": 206, "end": 208, "annotation": null}, {"text": "the", "start": 209, "end": 212, "annotation": null}, {"text": "ceramic", "start": 213, "end": 220, "annotation": null}, {"text": ",", "start": 220, "end": 221, "annotation": null}, {"text": "on", "start": 222, "end": 224, "annotation": null}, {"text": "excitation", "start": 225, "end": 235, "annotation": null}, {"text": "with", "start": 236, "end": 240, "annotation": null}, {"text": "464", "start": 241, "end": 244, "annotation": null}, {"text": "nm", "start": 244, "end": 246, "annotation": null}, {"text": "and", "start": 247, "end": 250, "annotation": null}, {"text": "976", "start": 251, "end": 254, "annotation": null}, {"text": "nm", "start": 254, "end": 256, "annotation": null}, {"text": "laser", "start": 257, "end": 262, "annotation": null}, {"text": "radiations", "start": 263, "end": 273, "annotation": null}, {"text": ".", "start": 273, "end": 274, "annotation": null}], [{"text": "Studies", "start": 275, "end": 282, "annotation": null}, {"text": "with", "start": 283, "end": 287, "annotation": null}, {"text": "polarized", "start": 288, "end": 297, "annotation": null}, {"text": "light", "start": 298, "end": 303, "annotation": null}, {"text": "as", "start": 304, "end": 306, "annotation": null}, {"text": "well", "start": 307, "end": 311, "annotation": null}, {"text": "as", "start": 312, "end": 314, "annotation": null}, {"text": "SEM", "start": 315, "end": 318, "annotation": null}, {"text": "images", "start": 319, "end": 325, "annotation": null}, {"text": "confirm", "start": 326, "end": 333, "annotation": null}, {"text": "crystallization", "start": 334, "end": 349, "annotation": null}, {"text": "in", "start": 350, "end": 352, "annotation": null}, {"text": "the", "start": 353, "end": 356, "annotation": null}, {"text": "ceramic", "start": 357, "end": 364, "annotation": null}, {"text": "and", "start": 365, "end": 368, "annotation": null}, {"text": "the", "start": 369, "end": 372, "annotation": null}, {"text": "XRD", "start": 373, "end": 376, "annotation": null}, {"text": "studies", "start": 377, "end": 384, "annotation": null}, {"text": "show", "start": 385, "end": 389, "annotation": null}, {"text": "that", "start": 390, "end": 394, "annotation": null}, {"text": "\u03b1-BaB4O7", "start": 395, "end": 403, "annotation": null}, {"text": "crystals", "start": 404, "end": 412, "annotation": null}, {"text": "are", "start": 413, "end": 416, "annotation": null}, {"text": "formed", "start": 417, "end": 423, "annotation": null}, {"text": "on", "start": 424, "end": 426, "annotation": null}, {"text": "the", "start": 427, "end": 430, "annotation": null}, {"text": "surface", "start": 431, "end": 438, "annotation": null}, {"text": "after", "start": 439, "end": 444, "annotation": null}, {"text": "annealing", "start": 445, "end": 454, "annotation": null}, {"text": ".", "start": 454, "end": 455, "annotation": null}], [{"text": "These", "start": 456, "end": 461, "annotation": null}, {"text": "structural", "start": 462, "end": 472, "annotation": null}, {"text": "changes", "start": 473, "end": 480, "annotation": null}, {"text": "significantly", "start": 481, "end": 494, "annotation": null}, {"text": "alter", "start": 495, "end": 500, "annotation": null}, {"text": "the", "start": 501, "end": 504, "annotation": null}, {"text": "luminescence", "start": 505, "end": 517, "annotation": null}, {"text": "characteristics", "start": 518, "end": 533, "annotation": null}, {"text": "of", "start": 534, "end": 536, "annotation": null}, {"text": "Eu3+", "start": 537, "end": 541, "annotation": null}, {"text": "and", "start": 542, "end": 545, "annotation": null}, {"text": "Yb3+", "start": 546, "end": 550, "annotation": null}, {"text": "ions", "start": 551, "end": 555, "annotation": null}, {"text": ".", "start": 555, "end": 556, "annotation": null}], [{"text": "A", "start": 557, "end": 558, "annotation": null}, {"text": "bright", "start": 559, "end": 565, "annotation": null}, {"text": "red", "start": 566, "end": 569, "annotation": null}, {"text": "emission", "start": 570, "end": 578, "annotation": null}, {"text": "from", "start": 579, "end": 583, "annotation": null}, {"text": "Eu3+", "start": 584, "end": 588, "annotation": null}, {"text": "ions", "start": 589, "end": 593, "annotation": null}, {"text": "is", "start": 594, "end": 596, "annotation": null}, {"text": "observed", "start": 597, "end": 605, "annotation": null}, {"text": "under", "start": 606, "end": 611, "annotation": null}, {"text": "976", "start": 612, "end": 615, "annotation": null}, {"text": "nm", "start": 615, "end": 617, "annotation": null}, {"text": "excitation", "start": 618, "end": 628, "annotation": null}, {"text": ".", "start": 628, "end": 629, "annotation": null}], [{"text": "The", "start": 630, "end": 633, "annotation": null}, {"text": "photophysics", "start": 634, "end": 646, "annotation": null}, {"text": "involved", "start": 647, "end": 655, "annotation": null}, {"text": "in", "start": 656, "end": 658, "annotation": null}, {"text": "this", "start": 659, "end": 663, "annotation": null}, {"text": "emission", "start": 664, "end": 672, "annotation": null}, {"text": "has", "start": 673, "end": 676, "annotation": null}, {"text": "been", "start": 677, "end": 681, "annotation": null}, {"text": "explained", "start": 682, "end": 691, "annotation": null}, {"text": ".", "start": 691, "end": 692, "annotation": null}]], "meta": {"doi": "10.1016/j.optmat.2010.01.023"}} +{"remark": "doping_annt2", "text": "The porous Pd/C microspheres were fabricated in carbon aerogels by \u03b3-irradiation of PdCl2 solution with carbon aerogels (CAs) monoliths impregnated. The obtained samples were characterized by field emission scanning electron microscope (SEM) and transmission electron microscope (TEM). The results show that the well distributed Pd/C microspheres with different size presented in the network of carbon aerogels. The Pd/C microspheres are spherical with porous structure. The structure of Pd/C microspheres is different from the Pd particles doped in carbon aerogels by wet impregnation method. Such porous Pd/C microspheres/carbon aerogels composite exhibits higher hydrogen uptake capacity than Pd-doped carbon aerogels.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "porous", "start": 4, "end": 10, "annotation": null}, {"text": "Pd", "start": 11, "end": 13, "annotation": null}, {"text": "/", "start": 13, "end": 14, "annotation": null}, {"text": "C", "start": 14, "end": 15, "annotation": null}, {"text": "microspheres", "start": 16, "end": 28, "annotation": null}, {"text": "were", "start": 29, "end": 33, "annotation": null}, {"text": "fabricated", "start": 34, "end": 44, "annotation": null}, {"text": "in", "start": 45, "end": 47, "annotation": null}, {"text": "carbon", "start": 48, "end": 54, "annotation": null}, {"text": "aerogels", "start": 55, "end": 63, "annotation": null}, {"text": "by", "start": 64, "end": 66, "annotation": null}, {"text": "\u03b3-irradiation", "start": 67, "end": 80, "annotation": null}, {"text": "of", "start": 81, "end": 83, "annotation": null}, {"text": "PdCl2", "start": 84, "end": 89, "annotation": null}, {"text": "solution", "start": 90, "end": 98, "annotation": null}, {"text": "with", "start": 99, "end": 103, "annotation": null}, {"text": "carbon", "start": 104, "end": 110, "annotation": null}, {"text": "aerogels", "start": 111, "end": 119, "annotation": null}, {"text": "(", "start": 120, "end": 121, "annotation": null}, {"text": "CAs", "start": 121, "end": 124, "annotation": null}, {"text": ")", "start": 124, "end": 125, "annotation": null}, {"text": "monoliths", "start": 126, "end": 135, "annotation": null}, {"text": "impregnated", "start": 136, "end": 147, "annotation": null}, {"text": ".", "start": 147, "end": 148, "annotation": null}], [{"text": "The", "start": 149, "end": 152, "annotation": null}, {"text": "obtained", "start": 153, "end": 161, "annotation": null}, {"text": "samples", "start": 162, "end": 169, "annotation": null}, {"text": "were", "start": 170, "end": 174, "annotation": null}, {"text": "characterized", "start": 175, "end": 188, "annotation": null}, {"text": "by", "start": 189, "end": 191, "annotation": null}, {"text": "field", "start": 192, "end": 197, "annotation": null}, {"text": "emission", "start": 198, "end": 206, "annotation": null}, {"text": "scanning", "start": 207, "end": 215, "annotation": null}, {"text": "electron", "start": 216, "end": 224, "annotation": null}, {"text": "microscope", "start": 225, "end": 235, "annotation": null}, {"text": "(", "start": 236, "end": 237, "annotation": null}, {"text": "SEM", "start": 237, "end": 240, "annotation": null}, {"text": ")", "start": 240, "end": 241, "annotation": null}, {"text": "and", "start": 242, "end": 245, "annotation": null}, {"text": "transmission", "start": 246, "end": 258, "annotation": null}, {"text": "electron", "start": 259, "end": 267, "annotation": null}, {"text": "microscope", "start": 268, "end": 278, "annotation": null}, {"text": "(", "start": 279, "end": 280, "annotation": null}, {"text": "TEM", "start": 280, "end": 283, "annotation": null}, {"text": ")", "start": 283, "end": 284, "annotation": null}, {"text": ".", "start": 284, "end": 285, "annotation": null}], [{"text": "The", "start": 286, "end": 289, "annotation": null}, {"text": "results", "start": 290, "end": 297, "annotation": null}, {"text": "show", "start": 298, "end": 302, "annotation": null}, {"text": "that", "start": 303, "end": 307, "annotation": null}, {"text": "the", "start": 308, "end": 311, "annotation": null}, {"text": "well", "start": 312, "end": 316, "annotation": null}, {"text": "distributed", "start": 317, "end": 328, "annotation": null}, {"text": "Pd", "start": 329, "end": 331, "annotation": null}, {"text": "/", "start": 331, "end": 332, "annotation": null}, {"text": "C", "start": 332, "end": 333, "annotation": null}, {"text": "microspheres", "start": 334, "end": 346, "annotation": null}, {"text": "with", "start": 347, "end": 351, "annotation": null}, {"text": "different", "start": 352, "end": 361, "annotation": null}, {"text": "size", "start": 362, "end": 366, "annotation": null}, {"text": "presented", "start": 367, "end": 376, "annotation": null}, {"text": "in", "start": 377, "end": 379, "annotation": null}, {"text": "the", "start": 380, "end": 383, "annotation": null}, {"text": "network", "start": 384, "end": 391, "annotation": null}, {"text": "of", "start": 392, "end": 394, "annotation": null}, {"text": "carbon", "start": 395, "end": 401, "annotation": null}, {"text": "aerogels", "start": 402, "end": 410, "annotation": null}, {"text": ".", "start": 410, "end": 411, "annotation": null}], [{"text": "The", "start": 412, "end": 415, "annotation": null}, {"text": "Pd", "start": 416, "end": 418, "annotation": null}, {"text": "/", "start": 418, "end": 419, "annotation": null}, {"text": "C", "start": 419, "end": 420, "annotation": null}, {"text": "microspheres", "start": 421, "end": 433, "annotation": null}, {"text": "are", "start": 434, "end": 437, "annotation": null}, {"text": "spherical", "start": 438, "end": 447, "annotation": null}, {"text": "with", "start": 448, "end": 452, "annotation": null}, {"text": "porous", "start": 453, "end": 459, "annotation": null}, {"text": "structure", "start": 460, "end": 469, "annotation": null}, {"text": ".", "start": 469, "end": 470, "annotation": null}], [{"text": "The", "start": 471, "end": 474, "annotation": null}, {"text": "structure", "start": 475, "end": 484, "annotation": null}, {"text": "of", "start": 485, "end": 487, "annotation": null}, {"text": "Pd", "start": 488, "end": 490, "annotation": null}, {"text": "/", "start": 490, "end": 491, "annotation": null}, {"text": "C", "start": 491, "end": 492, "annotation": null}, {"text": "microspheres", "start": 493, "end": 505, "annotation": null}, {"text": "is", "start": 506, "end": 508, "annotation": null}, {"text": "different", "start": 509, "end": 518, "annotation": null}, {"text": "from", "start": 519, "end": 523, "annotation": null}, {"text": "the", "start": 524, "end": 527, "annotation": null}, {"text": "Pd", "start": 528, "end": 530, "annotation": null}, {"text": "particles", "start": 531, "end": 540, "annotation": null}, {"text": "doped", "start": 541, "end": 546, "annotation": null}, {"text": "in", "start": 547, "end": 549, "annotation": null}, {"text": "carbon", "start": 550, "end": 556, "annotation": null}, {"text": "aerogels", "start": 557, "end": 565, "annotation": null}, {"text": "by", "start": 566, "end": 568, "annotation": null}, {"text": "wet", "start": 569, "end": 572, "annotation": null}, {"text": "impregnation", "start": 573, "end": 585, "annotation": null}, {"text": "method", "start": 586, "end": 592, "annotation": null}, {"text": ".", "start": 592, "end": 593, "annotation": null}], [{"text": "Such", "start": 594, "end": 598, "annotation": null}, {"text": "porous", "start": 599, "end": 605, "annotation": null}, {"text": "Pd", "start": 606, "end": 608, "annotation": null}, {"text": "/", "start": 608, "end": 609, "annotation": null}, {"text": "C", "start": 609, "end": 610, "annotation": null}, {"text": "microspheres", "start": 611, "end": 623, "annotation": null}, {"text": "/", "start": 623, "end": 624, "annotation": null}, {"text": "carbon", "start": 624, "end": 630, "annotation": null}, {"text": "aerogels", "start": 631, "end": 639, "annotation": null}, {"text": "composite", "start": 640, "end": 649, "annotation": null}, {"text": "exhibits", "start": 650, "end": 658, "annotation": null}, {"text": "higher", "start": 659, "end": 665, "annotation": null}, {"text": "hydrogen", "start": 666, "end": 674, "annotation": null}, {"text": "uptake", "start": 675, "end": 681, "annotation": null}, {"text": "capacity", "start": 682, "end": 690, "annotation": null}, {"text": "than", "start": 691, "end": 695, "annotation": null}, {"text": "Pd", "start": 696, "end": 698, "annotation": "DOPANT"}, {"text": "-", "start": 698, "end": 699, "annotation": null}, {"text": "doped", "start": 699, "end": 704, "annotation": null}, {"text": "carbon", "start": 705, "end": 711, "annotation": "BASEMAT"}, {"text": "aerogels", "start": 712, "end": 720, "annotation": "BASEMAT"}, {"text": ".", "start": 720, "end": 721, "annotation": null}]], "meta": {"doi": "10.1016/j.matlet.2014.10.098"}} {"text": "Aluminum-doped zinc oxide (AZO) thin films have been deposited by MF magnetron sputtering from a ceramic oxide target without heating the substrates. This study has investigated effects of sputtering power on the structural, electrical and optical properties of the AZO films. The films delivered a hexagonal wurtzite structure with (002) preferential orientation and uniform surface morphology with 27\u201333nm grain size. The results indicate that residual stress and grain size of the AZO films are dependent on sputtering power. The minimum resistivity of 7.56\u00d710\u22124\u03a9cm combined with high transmittance of 83% were obtained at deposited power of 1600W. The films delivered the advantages of a high deposition rate at low substrate temperature and should be suitable for the fabrication of low-cost transparent conductive oxide layer.", "meta": {"doi": "10.1016/j.ceramint.2012.07.037"}, "_input_hash": -1117083140, "_task_hash": 309954799, "tokens": [[{"text": "Aluminum", "start": 0, "end": 8, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 9, "end": 10, "id": 1, "annotation": null}, {"text": "doped", "start": 11, "end": 16, "id": 2, "annotation": null}, {"text": "zinc", "start": 17, "end": 21, "id": 3, "annotation": "BASEMAT"}, {"text": "oxide", "start": 22, "end": 27, "id": 4, "annotation": "BASEMAT"}, {"text": "(", "start": 28, "end": 29, "id": 5, "annotation": null}, {"text": "AZO", "start": 30, "end": 33, "id": 6, "annotation": null}, {"text": ")", "start": 34, "end": 35, "id": 7, "annotation": null}, {"text": "thin", "start": 36, "end": 40, "id": 8, "annotation": null}, {"text": "films", "start": 41, "end": 46, "id": 9, "annotation": null}, {"text": "have", "start": 47, "end": 51, "id": 10, "annotation": null}, {"text": "been", "start": 52, "end": 56, "id": 11, "annotation": null}, {"text": "deposited", "start": 57, "end": 66, "id": 12, "annotation": null}, {"text": "by", "start": 67, "end": 69, "id": 13, "annotation": null}, {"text": "MF", "start": 70, "end": 72, "id": 14, "annotation": null}, {"text": "magnetron", "start": 73, "end": 82, "id": 15, "annotation": null}, {"text": "sputtering", "start": 83, "end": 93, "id": 16, "annotation": null}, {"text": "from", "start": 94, "end": 98, "id": 17, "annotation": null}, {"text": "a", "start": 99, "end": 100, "id": 18, "annotation": null}, {"text": "ceramic", "start": 101, "end": 108, "id": 19, "annotation": null}, {"text": "oxide", "start": 109, "end": 114, "id": 20, "annotation": null}, {"text": "target", "start": 115, "end": 121, "id": 21, "annotation": null}, {"text": "without", "start": 122, "end": 129, "id": 22, "annotation": null}, {"text": "heating", "start": 130, "end": 137, "id": 23, "annotation": null}, {"text": "the", "start": 138, "end": 141, "id": 24, "annotation": null}, {"text": "substrates", "start": 142, "end": 152, "id": 25, "annotation": null}, {"text": ".", "start": 153, "end": 154, "id": 26, "annotation": null}], [{"text": "This", "start": 155, "end": 159, "id": 27, "annotation": null}, {"text": "study", "start": 160, "end": 165, "id": 28, "annotation": null}, {"text": "has", "start": 166, "end": 169, "id": 29, "annotation": null}, {"text": "investigated", "start": 170, "end": 182, "id": 30, "annotation": null}, {"text": "effects", "start": 183, "end": 190, "id": 31, "annotation": null}, {"text": "of", "start": 191, "end": 193, "id": 32, "annotation": null}, {"text": "sputtering", "start": 194, "end": 204, "id": 33, "annotation": null}, {"text": "power", "start": 205, "end": 210, "id": 34, "annotation": null}, {"text": "on", "start": 211, "end": 213, "id": 35, "annotation": null}, {"text": "the", "start": 214, "end": 217, "id": 36, "annotation": null}, {"text": "structural", "start": 218, "end": 228, "id": 37, "annotation": null}, {"text": ",", "start": 229, "end": 230, "id": 38, "annotation": null}, {"text": "electrical", "start": 231, "end": 241, "id": 39, "annotation": null}, {"text": "and", "start": 242, "end": 245, "id": 40, "annotation": null}, {"text": "optical", "start": 246, "end": 253, "id": 41, "annotation": null}, {"text": "properties", "start": 254, "end": 264, "id": 42, "annotation": null}, {"text": "of", "start": 265, "end": 267, "id": 43, "annotation": null}, {"text": "the", "start": 268, "end": 271, "id": 44, "annotation": null}, {"text": "AZO", "start": 272, "end": 275, "id": 45, "annotation": null}, {"text": "films", "start": 276, "end": 281, "id": 46, "annotation": null}, {"text": ".", "start": 282, "end": 283, "id": 47, "annotation": null}], [{"text": "The", "start": 284, "end": 287, "id": 48, "annotation": null}, {"text": "films", "start": 288, "end": 293, "id": 49, "annotation": null}, {"text": "delivered", "start": 294, "end": 303, "id": 50, "annotation": null}, {"text": "a", "start": 304, "end": 305, "id": 51, "annotation": null}, {"text": "hexagonal", "start": 306, "end": 315, "id": 52, "annotation": null}, {"text": "wurtzite", "start": 316, "end": 324, "id": 53, "annotation": null}, {"text": "structure", "start": 325, "end": 334, "id": 54, "annotation": null}, {"text": "with", "start": 335, "end": 339, "id": 55, "annotation": null}, {"text": "(", "start": 340, "end": 341, "id": 56, "annotation": null}, {"text": "002", "start": 342, "end": 345, "id": 57, "annotation": null}, {"text": ")", "start": 346, "end": 347, "id": 58, "annotation": null}, {"text": "preferential", "start": 348, "end": 360, "id": 59, "annotation": null}, {"text": "orientation", "start": 361, "end": 372, "id": 60, "annotation": null}, {"text": "and", "start": 373, "end": 376, "id": 61, "annotation": null}, {"text": "uniform", "start": 377, "end": 384, "id": 62, "annotation": null}, {"text": "surface", "start": 385, "end": 392, "id": 63, "annotation": null}, {"text": "morphology", "start": 393, "end": 403, "id": 64, "annotation": null}, {"text": "with", "start": 404, "end": 408, "id": 65, "annotation": null}, {"text": "27\u201333", "start": 409, "end": 414, "id": 66, "annotation": null}, {"text": "nm", "start": 415, "end": 417, "id": 67, "annotation": null}, {"text": "grain", "start": 418, "end": 423, "id": 68, "annotation": null}, {"text": "size", "start": 424, "end": 428, "id": 69, "annotation": null}, {"text": ".", "start": 429, "end": 430, "id": 70, "annotation": null}], [{"text": "The", "start": 431, "end": 434, "id": 71, "annotation": null}, {"text": "results", "start": 435, "end": 442, "id": 72, "annotation": null}, {"text": "indicate", "start": 443, "end": 451, "id": 73, "annotation": null}, {"text": "that", "start": 452, "end": 456, "id": 74, "annotation": null}, {"text": "residual", "start": 457, "end": 465, "id": 75, "annotation": null}, {"text": "stress", "start": 466, "end": 472, "id": 76, "annotation": null}, {"text": "and", "start": 473, "end": 476, "id": 77, "annotation": null}, {"text": "grain", "start": 477, "end": 482, "id": 78, "annotation": null}, {"text": "size", "start": 483, "end": 487, "id": 79, "annotation": null}, {"text": "of", "start": 488, "end": 490, "id": 80, "annotation": null}, {"text": "the", "start": 491, "end": 494, "id": 81, "annotation": null}, {"text": "AZO", "start": 495, "end": 498, "id": 82, "annotation": null}, {"text": "films", "start": 499, "end": 504, "id": 83, "annotation": null}, {"text": "are", "start": 505, "end": 508, "id": 84, "annotation": null}, {"text": "dependent", "start": 509, "end": 518, "id": 85, "annotation": null}, {"text": "on", "start": 519, "end": 521, "id": 86, "annotation": null}, {"text": "sputtering", "start": 522, "end": 532, "id": 87, "annotation": null}, {"text": "power", "start": 533, "end": 538, "id": 88, "annotation": null}, {"text": ".", "start": 539, "end": 540, "id": 89, "annotation": null}], [{"text": "The", "start": 541, "end": 544, "id": 90, "annotation": null}, {"text": "minimum", "start": 545, "end": 552, "id": 91, "annotation": null}, {"text": "resistivity", "start": 553, "end": 564, "id": 92, "annotation": null}, {"text": "of", "start": 565, "end": 567, "id": 93, "annotation": null}, {"text": "7.56\u00d710\u22124\u03a9cm", "start": 568, "end": 580, "id": 94, "annotation": null}, {"text": "combined", "start": 581, "end": 589, "id": 95, "annotation": null}, {"text": "with", "start": 590, "end": 594, "id": 96, "annotation": null}, {"text": "high", "start": 595, "end": 599, "id": 97, "annotation": null}, {"text": "transmittance", "start": 600, "end": 613, "id": 98, "annotation": null}, {"text": "of", "start": 614, "end": 616, "id": 99, "annotation": null}, {"text": "83", "start": 617, "end": 619, "id": 100, "annotation": null}, {"text": "%", "start": 620, "end": 621, "id": 101, "annotation": null}, {"text": "were", "start": 622, "end": 626, "id": 102, "annotation": null}, {"text": "obtained", "start": 627, "end": 635, "id": 103, "annotation": null}, {"text": "at", "start": 636, "end": 638, "id": 104, "annotation": null}, {"text": "deposited", "start": 639, "end": 648, "id": 105, "annotation": null}, {"text": "power", "start": 649, "end": 654, "id": 106, "annotation": null}, {"text": "of", "start": 655, "end": 657, "id": 107, "annotation": null}, {"text": "1600W.", "start": 658, "end": 664, "id": 108, "annotation": null}], [{"text": "The", "start": 665, "end": 668, "id": 109, "annotation": null}, {"text": "films", "start": 669, "end": 674, "id": 110, "annotation": null}, {"text": "delivered", "start": 675, "end": 684, "id": 111, "annotation": null}, {"text": "the", "start": 685, "end": 688, "id": 112, "annotation": null}, {"text": "advantages", "start": 689, "end": 699, "id": 113, "annotation": null}, {"text": "of", "start": 700, "end": 702, "id": 114, "annotation": null}, {"text": "a", "start": 703, "end": 704, "id": 115, "annotation": null}, {"text": "high", "start": 705, "end": 709, "id": 116, "annotation": null}, {"text": "deposition", "start": 710, "end": 720, "id": 117, "annotation": null}, {"text": "rate", "start": 721, "end": 725, "id": 118, "annotation": null}, {"text": "at", "start": 726, "end": 728, "id": 119, "annotation": null}, {"text": "low", "start": 729, "end": 732, "id": 120, "annotation": null}, {"text": "substrate", "start": 733, "end": 742, "id": 121, "annotation": null}, {"text": "temperature", "start": 743, "end": 754, "id": 122, "annotation": null}, {"text": "and", "start": 755, "end": 758, "id": 123, "annotation": null}, {"text": "should", "start": 759, "end": 765, "id": 124, "annotation": null}, {"text": "be", "start": 766, "end": 768, "id": 125, "annotation": null}, {"text": "suitable", "start": 769, "end": 777, "id": 126, "annotation": null}, {"text": "for", "start": 778, "end": 781, "id": 127, "annotation": null}, {"text": "the", "start": 782, "end": 785, "id": 128, "annotation": null}, {"text": "fabrication", "start": 786, "end": 797, "id": 129, "annotation": null}, {"text": "of", "start": 798, "end": 800, "id": 130, "annotation": null}, {"text": "low", "start": 801, "end": 804, "id": 131, "annotation": null}, {"text": "-", "start": 805, "end": 806, "id": 132, "annotation": null}, {"text": "cost", "start": 807, "end": 811, "id": 133, "annotation": null}, {"text": "transparent", "start": 812, "end": 823, "id": 134, "annotation": null}, {"text": "conductive", "start": 824, "end": 834, "id": 135, "annotation": null}, {"text": "oxide", "start": 835, "end": 840, "id": 136, "annotation": null}, {"text": "layer", "start": 841, "end": 846, "id": 137, "annotation": null}, {"text": ".", "start": 847, "end": 848, "id": 138, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "In the present study, a pure TiO2 photocatalyst, Fe and Co doped photocatalyst was prepared via sol-gel method. The prepared photocatalysts were tested for its photocatalytic activity by decolorizing a basic dye namely malachite green dye under sunlight. The prepared photocatalysts were characterized with X-ray diffraction, scanning electron microscope and UV-Visible spectroscopy. From the decolourizing study, it was observed that Fe-doped TiO2 shown highest photocatalytic activity among the other two with 98% in 3h. The Kinetics of dye decolourization was rationalized by a modified Langmuir\u2013Hinshelwood model. The overall rate constants (k \u2019 ) for dye decolourization was observed in the order of 0.8h-1 for Fe-doped 0.67h-1 for Co-doped and 0.31h-1 for pure TiO2.", "meta": {"doi": "10.1016/j.desal.2010.11.007"}, "_input_hash": -1832903277, "_task_hash": 63880135, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "the", "start": 3, "end": 6, "id": 1, "annotation": null}, {"text": "present", "start": 7, "end": 14, "id": 2, "annotation": null}, {"text": "study", "start": 15, "end": 20, "id": 3, "annotation": null}, {"text": ",", "start": 21, "end": 22, "id": 4, "annotation": null}, {"text": "a", "start": 23, "end": 24, "id": 5, "annotation": null}, {"text": "pure", "start": 25, "end": 29, "id": 6, "annotation": null}, {"text": "TiO2", "start": 30, "end": 34, "id": 7, "annotation": null}, {"text": "photocatalyst", "start": 35, "end": 48, "id": 8, "annotation": null}, {"text": ",", "start": 49, "end": 50, "id": 9, "annotation": null}, {"text": "Fe", "start": 51, "end": 53, "id": 10, "annotation": "DOPANT"}, {"text": "and", "start": 54, "end": 57, "id": 11, "annotation": null}, {"text": "Co", "start": 58, "end": 60, "id": 12, "annotation": "DOPANT"}, {"text": "doped", "start": 61, "end": 66, "id": 13, "annotation": null}, {"text": "photocatalyst", "start": 67, "end": 80, "id": 14, "annotation": "BASEMAT"}, {"text": "was", "start": 81, "end": 84, "id": 15, "annotation": null}, {"text": "prepared", "start": 85, "end": 93, "id": 16, "annotation": null}, {"text": "via", "start": 94, "end": 97, "id": 17, "annotation": null}, {"text": "sol", "start": 98, "end": 101, "id": 18, "annotation": null}, {"text": "-", "start": 102, "end": 103, "id": 19, "annotation": null}, {"text": "gel", "start": 104, "end": 107, "id": 20, "annotation": null}, {"text": "method", "start": 108, "end": 114, "id": 21, "annotation": null}, {"text": ".", "start": 115, "end": 116, "id": 22, "annotation": null}], [{"text": "The", "start": 117, "end": 120, "id": 23, "annotation": null}, {"text": "prepared", "start": 121, "end": 129, "id": 24, "annotation": null}, {"text": "photocatalysts", "start": 130, "end": 144, "id": 25, "annotation": null}, {"text": "were", "start": 145, "end": 149, "id": 26, "annotation": null}, {"text": "tested", "start": 150, "end": 156, "id": 27, "annotation": null}, {"text": "for", "start": 157, "end": 160, "id": 28, "annotation": null}, {"text": "its", "start": 161, "end": 164, "id": 29, "annotation": null}, {"text": "photocatalytic", "start": 165, "end": 179, "id": 30, "annotation": null}, {"text": "activity", "start": 180, "end": 188, "id": 31, "annotation": null}, {"text": "by", "start": 189, "end": 191, "id": 32, "annotation": null}, {"text": "decolorizing", "start": 192, "end": 204, "id": 33, "annotation": null}, {"text": "a", "start": 205, "end": 206, "id": 34, "annotation": null}, {"text": "basic", "start": 207, "end": 212, "id": 35, "annotation": null}, {"text": "dye", "start": 213, "end": 216, "id": 36, "annotation": null}, {"text": "namely", "start": 217, "end": 223, "id": 37, "annotation": null}, {"text": "malachite", "start": 224, "end": 233, "id": 38, "annotation": null}, {"text": "green", "start": 234, "end": 239, "id": 39, "annotation": null}, {"text": "dye", "start": 240, "end": 243, "id": 40, "annotation": null}, {"text": "under", "start": 244, "end": 249, "id": 41, "annotation": null}, {"text": "sunlight", "start": 250, "end": 258, "id": 42, "annotation": null}, {"text": ".", "start": 259, "end": 260, "id": 43, "annotation": null}], [{"text": "The", "start": 261, "end": 264, "id": 44, "annotation": null}, {"text": "prepared", "start": 265, "end": 273, "id": 45, "annotation": null}, {"text": "photocatalysts", "start": 274, "end": 288, "id": 46, "annotation": null}, {"text": "were", "start": 289, "end": 293, "id": 47, "annotation": null}, {"text": "characterized", "start": 294, "end": 307, "id": 48, "annotation": null}, {"text": "with", "start": 308, "end": 312, "id": 49, "annotation": null}, {"text": "X", "start": 313, "end": 314, "id": 50, "annotation": null}, {"text": "-", "start": 315, "end": 316, "id": 51, "annotation": null}, {"text": "ray", "start": 317, "end": 320, "id": 52, "annotation": null}, {"text": "diffraction", "start": 321, "end": 332, "id": 53, "annotation": null}, {"text": ",", "start": 333, "end": 334, "id": 54, "annotation": null}, {"text": "scanning", "start": 335, "end": 343, "id": 55, "annotation": null}, {"text": "electron", "start": 344, "end": 352, "id": 56, "annotation": null}, {"text": "microscope", "start": 353, "end": 363, "id": 57, "annotation": null}, {"text": "and", "start": 364, "end": 367, "id": 58, "annotation": null}, {"text": "UV", "start": 368, "end": 370, "id": 59, "annotation": null}, {"text": "-", "start": 371, "end": 372, "id": 60, "annotation": null}, {"text": "Visible", "start": 373, "end": 380, "id": 61, "annotation": null}, {"text": "spectroscopy", "start": 381, "end": 393, "id": 62, "annotation": null}, {"text": ".", "start": 394, "end": 395, "id": 63, "annotation": null}], [{"text": "From", "start": 396, "end": 400, "id": 64, "annotation": null}, {"text": "the", "start": 401, "end": 404, "id": 65, "annotation": null}, {"text": "decolourizing", "start": 405, "end": 418, "id": 66, "annotation": null}, {"text": "study", "start": 419, "end": 424, "id": 67, "annotation": null}, {"text": ",", "start": 425, "end": 426, "id": 68, "annotation": null}, {"text": "it", "start": 427, "end": 429, "id": 69, "annotation": null}, {"text": "was", "start": 430, "end": 433, "id": 70, "annotation": null}, {"text": "observed", "start": 434, "end": 442, "id": 71, "annotation": null}, {"text": "that", "start": 443, "end": 447, "id": 72, "annotation": null}, {"text": "Fe", "start": 448, "end": 450, "id": 73, "annotation": "DOPANT"}, {"text": "-", "start": 451, "end": 452, "id": 74, "annotation": null}, {"text": "doped", "start": 453, "end": 458, "id": 75, "annotation": null}, {"text": "TiO2", "start": 459, "end": 463, "id": 76, "annotation": "BASEMAT"}, {"text": "shown", "start": 464, "end": 469, "id": 77, "annotation": null}, {"text": "highest", "start": 470, "end": 477, "id": 78, "annotation": null}, {"text": "photocatalytic", "start": 478, "end": 492, "id": 79, "annotation": null}, {"text": "activity", "start": 493, "end": 501, "id": 80, "annotation": null}, {"text": "among", "start": 502, "end": 507, "id": 81, "annotation": null}, {"text": "the", "start": 508, "end": 511, "id": 82, "annotation": null}, {"text": "other", "start": 512, "end": 517, "id": 83, "annotation": null}, {"text": "two", "start": 518, "end": 521, "id": 84, "annotation": null}, {"text": "with", "start": 522, "end": 526, "id": 85, "annotation": null}, {"text": "98", "start": 527, "end": 529, "id": 86, "annotation": null}, {"text": "%", "start": 530, "end": 531, "id": 87, "annotation": null}, {"text": "in", "start": 532, "end": 534, "id": 88, "annotation": null}, {"text": "3h", "start": 535, "end": 537, "id": 89, "annotation": null}, {"text": ".", "start": 538, "end": 539, "id": 90, "annotation": null}], [{"text": "The", "start": 540, "end": 543, "id": 91, "annotation": null}, {"text": "Kinetics", "start": 544, "end": 552, "id": 92, "annotation": null}, {"text": "of", "start": 553, "end": 555, "id": 93, "annotation": null}, {"text": "dye", "start": 556, "end": 559, "id": 94, "annotation": null}, {"text": "decolourization", "start": 560, "end": 575, "id": 95, "annotation": null}, {"text": "was", "start": 576, "end": 579, "id": 96, "annotation": null}, {"text": "rationalized", "start": 580, "end": 592, "id": 97, "annotation": null}, {"text": "by", "start": 593, "end": 595, "id": 98, "annotation": null}, {"text": "a", "start": 596, "end": 597, "id": 99, "annotation": null}, {"text": "modified", "start": 598, "end": 606, "id": 100, "annotation": null}, {"text": "Langmuir", "start": 607, "end": 615, "id": 101, "annotation": null}, {"text": "\u2013", "start": 616, "end": 617, "id": 102, "annotation": null}, {"text": "Hinshelwood", "start": 618, "end": 629, "id": 103, "annotation": null}, {"text": "model", "start": 630, "end": 635, "id": 104, "annotation": null}, {"text": ".", "start": 636, "end": 637, "id": 105, "annotation": null}], [{"text": "The", "start": 638, "end": 641, "id": 106, "annotation": null}, {"text": "overall", "start": 642, "end": 649, "id": 107, "annotation": null}, {"text": "rate", "start": 650, "end": 654, "id": 108, "annotation": null}, {"text": "constants", "start": 655, "end": 664, "id": 109, "annotation": null}, {"text": "(", "start": 665, "end": 666, "id": 110, "annotation": null}, {"text": "k", "start": 667, "end": 668, "id": 111, "annotation": null}, {"text": "\u2019", "start": 669, "end": 670, "id": 112, "annotation": null}, {"text": ")", "start": 671, "end": 672, "id": 113, "annotation": null}, {"text": "for", "start": 673, "end": 676, "id": 114, "annotation": null}, {"text": "dye", "start": 677, "end": 680, "id": 115, "annotation": null}, {"text": "decolourization", "start": 681, "end": 696, "id": 116, "annotation": null}, {"text": "was", "start": 697, "end": 700, "id": 117, "annotation": null}, {"text": "observed", "start": 701, "end": 709, "id": 118, "annotation": null}, {"text": "in", "start": 710, "end": 712, "id": 119, "annotation": null}, {"text": "the", "start": 713, "end": 716, "id": 120, "annotation": null}, {"text": "order", "start": 717, "end": 722, "id": 121, "annotation": null}, {"text": "of", "start": 723, "end": 725, "id": 122, "annotation": null}, {"text": "0.8h-1", "start": 726, "end": 732, "id": 123, "annotation": null}, {"text": "for", "start": 733, "end": 736, "id": 124, "annotation": null}, {"text": "Fe", "start": 737, "end": 739, "id": 125, "annotation": "DOPANT"}, {"text": "-", "start": 740, "end": 741, "id": 126, "annotation": null}, {"text": "doped", "start": 742, "end": 747, "id": 127, "annotation": null}, {"text": "0.67h-1", "start": 748, "end": 755, "id": 128, "annotation": null}, {"text": "for", "start": 756, "end": 759, "id": 129, "annotation": null}, {"text": "Co", "start": 760, "end": 762, "id": 130, "annotation": "DOPANT"}, {"text": "-", "start": 763, "end": 764, "id": 131, "annotation": null}, {"text": "doped", "start": 765, "end": 770, "id": 132, "annotation": null}, {"text": "and", "start": 771, "end": 774, "id": 133, "annotation": null}, {"text": "0.31h-1", "start": 775, "end": 782, "id": 134, "annotation": null}, {"text": "for", "start": 783, "end": 786, "id": 135, "annotation": null}, {"text": "pure", "start": 787, "end": 791, "id": 136, "annotation": null}, {"text": "TiO2", "start": 792, "end": 796, "id": 137, "annotation": null}, {"text": ".", "start": 797, "end": 798, "id": 138, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "We have investigated the nitrogen doping effect on phase transition characteristics and electrical property of nitrogen-doped GeSb (N-doped GS) thin films. The nitrogen gas flow rate changed from 0sccm (GS(0)) to 6sccm (GS(6)) during the deposition. The sheet resistance of crystalline state was increased from 2.6 to 5.1k\u03a9/\u25a1 and thermal stability of amorphous was increased as nitrogen gas flow rate increased due to nitrogen doping effect. Moreover, the average grain size was decreased from 9.7 to 6.6nm at 400\u00b0C as nitrogen gas flow rate increased. However, the crystallization threshold time and laser power of GS(6) were shorter and lower than GS(0) caused by lower optical reflectivity. Nitrogen-doped GeSb showed the possibility of low RESET power and high speed PRAM operation.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "have", "start": 3, "end": 7, "annotation": null}, {"text": "investigated", "start": 8, "end": 20, "annotation": null}, {"text": "the", "start": 21, "end": 24, "annotation": null}, {"text": "nitrogen", "start": 25, "end": 33, "annotation": null}, {"text": "doping", "start": 34, "end": 40, "annotation": null}, {"text": "effect", "start": 41, "end": 47, "annotation": null}, {"text": "on", "start": 48, "end": 50, "annotation": null}, {"text": "phase", "start": 51, "end": 56, "annotation": null}, {"text": "transition", "start": 57, "end": 67, "annotation": null}, {"text": "characteristics", "start": 68, "end": 83, "annotation": null}, {"text": "and", "start": 84, "end": 87, "annotation": null}, {"text": "electrical", "start": 88, "end": 98, "annotation": null}, {"text": "property", "start": 99, "end": 107, "annotation": null}, {"text": "of", "start": 108, "end": 110, "annotation": null}, {"text": "nitrogen", "start": 111, "end": 119, "annotation": "DOPANT"}, {"text": "-", "start": 119, "end": 120, "annotation": null}, {"text": "doped", "start": 120, "end": 125, "annotation": null}, {"text": "GeSb", "start": 126, "end": 130, "annotation": "BASEMAT"}, {"text": "(", "start": 131, "end": 132, "annotation": null}, {"text": "N", "start": 132, "end": 133, "annotation": "DOPANT"}, {"text": "-", "start": 133, "end": 134, "annotation": null}, {"text": "doped", "start": 134, "end": 139, "annotation": null}, {"text": "GS", "start": 140, "end": 142, "annotation": "BASEMAT"}, {"text": ")", "start": 142, "end": 143, "annotation": null}, {"text": "thin", "start": 144, "end": 148, "annotation": null}, {"text": "films", "start": 149, "end": 154, "annotation": null}, {"text": ".", "start": 154, "end": 155, "annotation": null}], [{"text": "The", "start": 156, "end": 159, "annotation": null}, {"text": "nitrogen", "start": 160, "end": 168, "annotation": null}, {"text": "gas", "start": 169, "end": 172, "annotation": null}, {"text": "flow", "start": 173, "end": 177, "annotation": null}, {"text": "rate", "start": 178, "end": 182, "annotation": null}, {"text": "changed", "start": 183, "end": 190, "annotation": null}, {"text": "from", "start": 191, "end": 195, "annotation": null}, {"text": "0", "start": 196, "end": 197, "annotation": null}, {"text": "sccm", "start": 197, "end": 201, "annotation": null}, {"text": "(", "start": 202, "end": 203, "annotation": null}, {"text": "GS(0)", "start": 203, "end": 208, "annotation": null}, {"text": ")", "start": 208, "end": 209, "annotation": null}, {"text": "to", "start": 210, "end": 212, "annotation": null}, {"text": "6", "start": 213, "end": 214, "annotation": null}, {"text": "sccm", "start": 214, "end": 218, "annotation": null}, {"text": "(", "start": 219, "end": 220, "annotation": null}, {"text": "GS(6)", "start": 220, "end": 225, "annotation": null}, {"text": ")", "start": 225, "end": 226, "annotation": null}, {"text": "during", "start": 227, "end": 233, "annotation": null}, {"text": "the", "start": 234, "end": 237, "annotation": null}, {"text": "deposition", "start": 238, "end": 248, "annotation": null}, {"text": ".", "start": 248, "end": 249, "annotation": null}], [{"text": "The", "start": 250, "end": 253, "annotation": null}, {"text": "sheet", "start": 254, "end": 259, "annotation": null}, {"text": "resistance", "start": 260, "end": 270, "annotation": null}, {"text": "of", "start": 271, "end": 273, "annotation": null}, {"text": "crystalline", "start": 274, "end": 285, "annotation": null}, {"text": "state", "start": 286, "end": 291, "annotation": null}, {"text": "was", "start": 292, "end": 295, "annotation": null}, {"text": "increased", "start": 296, "end": 305, "annotation": null}, {"text": "from", "start": 306, "end": 310, "annotation": null}, {"text": "2.6", "start": 311, "end": 314, "annotation": null}, {"text": "to", "start": 315, "end": 317, "annotation": null}, {"text": "5.1", "start": 318, "end": 321, "annotation": null}, {"text": "k\u03a9", "start": 321, "end": 323, "annotation": null}, {"text": "/", "start": 323, "end": 324, "annotation": null}, {"text": "\u25a1", "start": 324, "end": 325, "annotation": null}, {"text": "and", "start": 326, "end": 329, "annotation": null}, {"text": "thermal", "start": 330, "end": 337, "annotation": null}, {"text": "stability", "start": 338, "end": 347, "annotation": null}, {"text": "of", "start": 348, "end": 350, "annotation": null}, {"text": "amorphous", "start": 351, "end": 360, "annotation": null}, {"text": "was", "start": 361, "end": 364, "annotation": null}, {"text": "increased", "start": 365, "end": 374, "annotation": null}, {"text": "as", "start": 375, "end": 377, "annotation": null}, {"text": "nitrogen", "start": 378, "end": 386, "annotation": null}, {"text": "gas", "start": 387, "end": 390, "annotation": null}, {"text": "flow", "start": 391, "end": 395, "annotation": null}, {"text": "rate", "start": 396, "end": 400, "annotation": null}, {"text": "increased", "start": 401, "end": 410, "annotation": null}, {"text": "due", "start": 411, "end": 414, "annotation": null}, {"text": "to", "start": 415, "end": 417, "annotation": null}, {"text": "nitrogen", "start": 418, "end": 426, "annotation": null}, {"text": "doping", "start": 427, "end": 433, "annotation": null}, {"text": "effect", "start": 434, "end": 440, "annotation": null}, {"text": ".", "start": 440, "end": 441, "annotation": null}], [{"text": "Moreover", "start": 442, "end": 450, "annotation": null}, {"text": ",", "start": 450, "end": 451, "annotation": null}, {"text": "the", "start": 452, "end": 455, "annotation": null}, {"text": "average", "start": 456, "end": 463, "annotation": null}, {"text": "grain", "start": 464, "end": 469, "annotation": null}, {"text": "size", "start": 470, "end": 474, "annotation": null}, {"text": "was", "start": 475, "end": 478, "annotation": null}, {"text": "decreased", "start": 479, "end": 488, "annotation": null}, {"text": "from", "start": 489, "end": 493, "annotation": null}, {"text": "9.7", "start": 494, "end": 497, "annotation": null}, {"text": "to", "start": 498, "end": 500, "annotation": null}, {"text": "6.6", "start": 501, "end": 504, "annotation": null}, {"text": "nm", "start": 504, "end": 506, "annotation": null}, {"text": "at", "start": 507, "end": 509, "annotation": null}, {"text": "400", "start": 510, "end": 513, "annotation": null}, {"text": "\u00b0", "start": 513, "end": 514, "annotation": null}, {"text": "C", "start": 514, "end": 515, "annotation": null}, {"text": "as", "start": 516, "end": 518, "annotation": null}, {"text": "nitrogen", "start": 519, "end": 527, "annotation": null}, {"text": "gas", "start": 528, "end": 531, "annotation": null}, {"text": "flow", "start": 532, "end": 536, "annotation": null}, {"text": "rate", "start": 537, "end": 541, "annotation": null}, {"text": "increased", "start": 542, "end": 551, "annotation": null}, {"text": ".", "start": 551, "end": 552, "annotation": null}], [{"text": "However", "start": 553, "end": 560, "annotation": null}, {"text": ",", "start": 560, "end": 561, "annotation": null}, {"text": "the", "start": 562, "end": 565, "annotation": null}, {"text": "crystallization", "start": 566, "end": 581, "annotation": null}, {"text": "threshold", "start": 582, "end": 591, "annotation": null}, {"text": "time", "start": 592, "end": 596, "annotation": null}, {"text": "and", "start": 597, "end": 600, "annotation": null}, {"text": "laser", "start": 601, "end": 606, "annotation": null}, {"text": "power", "start": 607, "end": 612, "annotation": null}, {"text": "of", "start": 613, "end": 615, "annotation": null}, {"text": "GS(6)", "start": 616, "end": 621, "annotation": null}, {"text": "were", "start": 622, "end": 626, "annotation": null}, {"text": "shorter", "start": 627, "end": 634, "annotation": null}, {"text": "and", "start": 635, "end": 638, "annotation": null}, {"text": "lower", "start": 639, "end": 644, "annotation": null}, {"text": "than", "start": 645, "end": 649, "annotation": null}, {"text": "GS(0)", "start": 650, "end": 655, "annotation": null}, {"text": "caused", "start": 656, "end": 662, "annotation": null}, {"text": "by", "start": 663, "end": 665, "annotation": null}, {"text": "lower", "start": 666, "end": 671, "annotation": null}, {"text": "optical", "start": 672, "end": 679, "annotation": null}, {"text": "reflectivity", "start": 680, "end": 692, "annotation": null}, {"text": ".", "start": 692, "end": 693, "annotation": null}], [{"text": "Nitrogen", "start": 694, "end": 702, "annotation": "DOPANT"}, {"text": "-", "start": 702, "end": 703, "annotation": null}, {"text": "doped", "start": 703, "end": 708, "annotation": null}, {"text": "GeSb", "start": 709, "end": 713, "annotation": "BASEMAT"}, {"text": "showed", "start": 714, "end": 720, "annotation": null}, {"text": "the", "start": 721, "end": 724, "annotation": null}, {"text": "possibility", "start": 725, "end": 736, "annotation": null}, {"text": "of", "start": 737, "end": 739, "annotation": null}, {"text": "low", "start": 740, "end": 743, "annotation": null}, {"text": "RESET", "start": 744, "end": 749, "annotation": null}, {"text": "power", "start": 750, "end": 755, "annotation": null}, {"text": "and", "start": 756, "end": 759, "annotation": null}, {"text": "high", "start": 760, "end": 764, "annotation": null}, {"text": "speed", "start": 765, "end": 770, "annotation": null}, {"text": "PRAM", "start": 771, "end": 775, "annotation": null}, {"text": "operation", "start": 776, "end": 785, "annotation": null}, {"text": ".", "start": 785, "end": 786, "annotation": null}]]} +{"remark": "doping_annt1", "text": "We have investigated the nitrogen doping effect on phase transition characteristics and electrical property of nitrogen-doped GeSb (N-doped GS) thin films. The nitrogen gas flow rate changed from 0sccm (GS(0)) to 6sccm (GS(6)) during the deposition. The sheet resistance of crystalline state was increased from 2.6 to 5.1k\u03a9/\u25a1 and thermal stability of amorphous was increased as nitrogen gas flow rate increased due to nitrogen doping effect. Moreover, the average grain size was decreased from 9.7 to 6.6nm at 400\u00b0C as nitrogen gas flow rate increased. However, the crystallization threshold time and laser power of GS(6) were shorter and lower than GS(0) caused by lower optical reflectivity. Nitrogen-doped GeSb showed the possibility of low RESET power and high speed PRAM operation.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "have", "start": 3, "end": 7, "annotation": null}, {"text": "investigated", "start": 8, "end": 20, "annotation": null}, {"text": "the", "start": 21, "end": 24, "annotation": null}, {"text": "nitrogen", "start": 25, "end": 33, "annotation": null}, {"text": "doping", "start": 34, "end": 40, "annotation": null}, {"text": "effect", "start": 41, "end": 47, "annotation": null}, {"text": "on", "start": 48, "end": 50, "annotation": null}, {"text": "phase", "start": 51, "end": 56, "annotation": null}, {"text": "transition", "start": 57, "end": 67, "annotation": null}, {"text": "characteristics", "start": 68, "end": 83, "annotation": null}, {"text": "and", "start": 84, "end": 87, "annotation": null}, {"text": "electrical", "start": 88, "end": 98, "annotation": null}, {"text": "property", "start": 99, "end": 107, "annotation": null}, {"text": "of", "start": 108, "end": 110, "annotation": null}, {"text": "nitrogen", "start": 111, "end": 119, "annotation": "DOPANT"}, {"text": "-", "start": 119, "end": 120, "annotation": null}, {"text": "doped", "start": 120, "end": 125, "annotation": null}, {"text": "GeSb", "start": 126, "end": 130, "annotation": "BASEMAT"}, {"text": "(", "start": 131, "end": 132, "annotation": null}, {"text": "N", "start": 132, "end": 133, "annotation": "DOPANT"}, {"text": "-", "start": 133, "end": 134, "annotation": null}, {"text": "doped", "start": 134, "end": 139, "annotation": null}, {"text": "GS", "start": 140, "end": 142, "annotation": "BASEMAT"}, {"text": ")", "start": 142, "end": 143, "annotation": null}, {"text": "thin", "start": 144, "end": 148, "annotation": null}, {"text": "films", "start": 149, "end": 154, "annotation": null}, {"text": ".", "start": 154, "end": 155, "annotation": null}], [{"text": "The", "start": 156, "end": 159, "annotation": null}, {"text": "nitrogen", "start": 160, "end": 168, "annotation": null}, {"text": "gas", "start": 169, "end": 172, "annotation": null}, {"text": "flow", "start": 173, "end": 177, "annotation": null}, {"text": "rate", "start": 178, "end": 182, "annotation": null}, {"text": "changed", "start": 183, "end": 190, "annotation": null}, {"text": "from", "start": 191, "end": 195, "annotation": null}, {"text": "0", "start": 196, "end": 197, "annotation": null}, {"text": "sccm", "start": 197, "end": 201, "annotation": null}, {"text": "(", "start": 202, "end": 203, "annotation": null}, {"text": "GS(0)", "start": 203, "end": 208, "annotation": null}, {"text": ")", "start": 208, "end": 209, "annotation": null}, {"text": "to", "start": 210, "end": 212, "annotation": null}, {"text": "6", "start": 213, "end": 214, "annotation": null}, {"text": "sccm", "start": 214, "end": 218, "annotation": null}, {"text": "(", "start": 219, "end": 220, "annotation": null}, {"text": "GS(6)", "start": 220, "end": 225, "annotation": null}, {"text": ")", "start": 225, "end": 226, "annotation": null}, {"text": "during", "start": 227, "end": 233, "annotation": null}, {"text": "the", "start": 234, "end": 237, "annotation": null}, {"text": "deposition", "start": 238, "end": 248, "annotation": null}, {"text": ".", "start": 248, "end": 249, "annotation": null}], [{"text": "The", "start": 250, "end": 253, "annotation": null}, {"text": "sheet", "start": 254, "end": 259, "annotation": null}, {"text": "resistance", "start": 260, "end": 270, "annotation": null}, {"text": "of", "start": 271, "end": 273, "annotation": null}, {"text": "crystalline", "start": 274, "end": 285, "annotation": null}, {"text": "state", "start": 286, "end": 291, "annotation": null}, {"text": "was", "start": 292, "end": 295, "annotation": null}, {"text": "increased", "start": 296, "end": 305, "annotation": null}, {"text": "from", "start": 306, "end": 310, "annotation": null}, {"text": "2.6", "start": 311, "end": 314, "annotation": null}, {"text": "to", "start": 315, "end": 317, "annotation": null}, {"text": "5.1", "start": 318, "end": 321, "annotation": null}, {"text": "k\u03a9", "start": 321, "end": 323, "annotation": null}, {"text": "/", "start": 323, "end": 324, "annotation": null}, {"text": "\u25a1", "start": 324, "end": 325, "annotation": null}, {"text": "and", "start": 326, "end": 329, "annotation": null}, {"text": "thermal", "start": 330, "end": 337, "annotation": null}, {"text": "stability", "start": 338, "end": 347, "annotation": null}, {"text": "of", "start": 348, "end": 350, "annotation": null}, {"text": "amorphous", "start": 351, "end": 360, "annotation": null}, {"text": "was", "start": 361, "end": 364, "annotation": null}, {"text": "increased", "start": 365, "end": 374, "annotation": null}, {"text": "as", "start": 375, "end": 377, "annotation": null}, {"text": "nitrogen", "start": 378, "end": 386, "annotation": null}, {"text": "gas", "start": 387, "end": 390, "annotation": null}, {"text": "flow", "start": 391, "end": 395, "annotation": null}, {"text": "rate", "start": 396, "end": 400, "annotation": null}, {"text": "increased", "start": 401, "end": 410, "annotation": null}, {"text": "due", "start": 411, "end": 414, "annotation": null}, {"text": "to", "start": 415, "end": 417, "annotation": null}, {"text": "nitrogen", "start": 418, "end": 426, "annotation": null}, {"text": "doping", "start": 427, "end": 433, "annotation": null}, {"text": "effect", "start": 434, "end": 440, "annotation": null}, {"text": ".", "start": 440, "end": 441, "annotation": null}], [{"text": "Moreover", "start": 442, "end": 450, "annotation": null}, {"text": ",", "start": 450, "end": 451, "annotation": null}, {"text": "the", "start": 452, "end": 455, "annotation": null}, {"text": "average", "start": 456, "end": 463, "annotation": null}, {"text": "grain", "start": 464, "end": 469, "annotation": null}, {"text": "size", "start": 470, "end": 474, "annotation": null}, {"text": "was", "start": 475, "end": 478, "annotation": null}, {"text": "decreased", "start": 479, "end": 488, "annotation": null}, {"text": "from", "start": 489, "end": 493, "annotation": null}, {"text": "9.7", "start": 494, "end": 497, "annotation": null}, {"text": "to", "start": 498, "end": 500, "annotation": null}, {"text": "6.6", "start": 501, "end": 504, "annotation": null}, {"text": "nm", "start": 504, "end": 506, "annotation": null}, {"text": "at", "start": 507, "end": 509, "annotation": null}, {"text": "400", "start": 510, "end": 513, "annotation": null}, {"text": "\u00b0", "start": 513, "end": 514, "annotation": null}, {"text": "C", "start": 514, "end": 515, "annotation": null}, {"text": "as", "start": 516, "end": 518, "annotation": null}, {"text": "nitrogen", "start": 519, "end": 527, "annotation": null}, {"text": "gas", "start": 528, "end": 531, "annotation": null}, {"text": "flow", "start": 532, "end": 536, "annotation": null}, {"text": "rate", "start": 537, "end": 541, "annotation": null}, {"text": "increased", "start": 542, "end": 551, "annotation": null}, {"text": ".", "start": 551, "end": 552, "annotation": null}], [{"text": "However", "start": 553, "end": 560, "annotation": null}, {"text": ",", "start": 560, "end": 561, "annotation": null}, {"text": "the", "start": 562, "end": 565, "annotation": null}, {"text": "crystallization", "start": 566, "end": 581, "annotation": null}, {"text": "threshold", "start": 582, "end": 591, "annotation": null}, {"text": "time", "start": 592, "end": 596, "annotation": null}, {"text": "and", "start": 597, "end": 600, "annotation": null}, {"text": "laser", "start": 601, "end": 606, "annotation": null}, {"text": "power", "start": 607, "end": 612, "annotation": null}, {"text": "of", "start": 613, "end": 615, "annotation": null}, {"text": "GS(6)", "start": 616, "end": 621, "annotation": null}, {"text": "were", "start": 622, "end": 626, "annotation": null}, {"text": "shorter", "start": 627, "end": 634, "annotation": null}, {"text": "and", "start": 635, "end": 638, "annotation": null}, {"text": "lower", "start": 639, "end": 644, "annotation": null}, {"text": "than", "start": 645, "end": 649, "annotation": null}, {"text": "GS(0)", "start": 650, "end": 655, "annotation": null}, {"text": "caused", "start": 656, "end": 662, "annotation": null}, {"text": "by", "start": 663, "end": 665, "annotation": null}, {"text": "lower", "start": 666, "end": 671, "annotation": null}, {"text": "optical", "start": 672, "end": 679, "annotation": null}, {"text": "reflectivity", "start": 680, "end": 692, "annotation": null}, {"text": ".", "start": 692, "end": 693, "annotation": null}], [{"text": "Nitrogen", "start": 694, "end": 702, "annotation": "DOPANT"}, {"text": "-", "start": 702, "end": 703, "annotation": null}, {"text": "doped", "start": 703, "end": 708, "annotation": null}, {"text": "GeSb", "start": 709, "end": 713, "annotation": "BASEMAT"}, {"text": "showed", "start": 714, "end": 720, "annotation": null}, {"text": "the", "start": 721, "end": 724, "annotation": null}, {"text": "possibility", "start": 725, "end": 736, "annotation": null}, {"text": "of", "start": 737, "end": 739, "annotation": null}, {"text": "low", "start": 740, "end": 743, "annotation": null}, {"text": "RESET", "start": 744, "end": 749, "annotation": null}, {"text": "power", "start": 750, "end": 755, "annotation": null}, {"text": "and", "start": 756, "end": 759, "annotation": null}, {"text": "high", "start": 760, "end": 764, "annotation": null}, {"text": "speed", "start": 765, "end": 770, "annotation": null}, {"text": "PRAM", "start": 771, "end": 775, "annotation": null}, {"text": "operation", "start": 776, "end": 785, "annotation": null}, {"text": ".", "start": 785, "end": 786, "annotation": null}]], "meta": {"doi": "10.1007/s10853-009-3650-1"}} {"text": "The temperature dependences of the density, mobility, and lifetime of electrons, and the photoconductivity and cathodoluminescence spectra of gallium arsenide with different electron densities doped with germanium when single crystals are grown by the Czochralski method are investigated. An analysis of the scattering mechanism is given, and the acceptor and donor densities are determined. The acceptor-type capture levels are found from the temperature dependence of the electron lifetime. The results of a study of the cathodoluminescence spectra indicate the presence in the specimens of complex radiational recombination centers similar to germanium-atom complexes with inherent lattice defects.", "meta": {"doi": "10.1007/BF00896672"}, "_input_hash": 1884513411, "_task_hash": 1139453519, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "temperature", "start": 4, "end": 15, "id": 1, "annotation": null}, {"text": "dependences", "start": 16, "end": 27, "id": 2, "annotation": null}, {"text": "of", "start": 28, "end": 30, "id": 3, "annotation": null}, {"text": "the", "start": 31, "end": 34, "id": 4, "annotation": null}, {"text": "density", "start": 35, "end": 42, "id": 5, "annotation": null}, {"text": ",", "start": 43, "end": 44, "id": 6, "annotation": null}, {"text": "mobility", "start": 45, "end": 53, "id": 7, "annotation": null}, {"text": ",", "start": 54, "end": 55, "id": 8, "annotation": null}, {"text": "and", "start": 56, "end": 59, "id": 9, "annotation": null}, {"text": "lifetime", "start": 60, "end": 68, "id": 10, "annotation": null}, {"text": "of", "start": 69, "end": 71, "id": 11, "annotation": null}, {"text": "electrons", "start": 72, "end": 81, "id": 12, "annotation": null}, {"text": ",", "start": 82, "end": 83, "id": 13, "annotation": null}, {"text": "and", "start": 84, "end": 87, "id": 14, "annotation": null}, {"text": "the", "start": 88, "end": 91, "id": 15, "annotation": null}, {"text": "photoconductivity", "start": 92, "end": 109, "id": 16, "annotation": null}, {"text": "and", "start": 110, "end": 113, "id": 17, "annotation": null}, {"text": "cathodoluminescence", "start": 114, "end": 133, "id": 18, "annotation": null}, {"text": "spectra", "start": 134, "end": 141, "id": 19, "annotation": null}, {"text": "of", "start": 142, "end": 144, "id": 20, "annotation": null}, {"text": "gallium", "start": 145, "end": 152, "id": 21, "annotation": "BASEMAT"}, {"text": "arsenide", "start": 153, "end": 161, "id": 22, "annotation": "BASEMAT"}, {"text": "with", "start": 162, "end": 166, "id": 23, "annotation": null}, {"text": "different", "start": 167, "end": 176, "id": 24, "annotation": null}, {"text": "electron", "start": 177, "end": 185, "id": 25, "annotation": null}, {"text": "densities", "start": 186, "end": 195, "id": 26, "annotation": null}, {"text": "doped", "start": 196, "end": 201, "id": 27, "annotation": null}, {"text": "with", "start": 202, "end": 206, "id": 28, "annotation": null}, {"text": "germanium", "start": 207, "end": 216, "id": 29, "annotation": "DOPANT"}, {"text": "when", "start": 217, "end": 221, "id": 30, "annotation": null}, {"text": "single", "start": 222, "end": 228, "id": 31, "annotation": null}, {"text": "crystals", "start": 229, "end": 237, "id": 32, "annotation": null}, {"text": "are", "start": 238, "end": 241, "id": 33, "annotation": null}, {"text": "grown", "start": 242, "end": 247, "id": 34, "annotation": null}, {"text": "by", "start": 248, "end": 250, "id": 35, "annotation": null}, {"text": "the", "start": 251, "end": 254, "id": 36, "annotation": null}, {"text": "Czochralski", "start": 255, "end": 266, "id": 37, "annotation": null}, {"text": "method", "start": 267, "end": 273, "id": 38, "annotation": null}, {"text": "are", "start": 274, "end": 277, "id": 39, "annotation": null}, {"text": "investigated", "start": 278, "end": 290, "id": 40, "annotation": null}, {"text": ".", "start": 291, "end": 292, "id": 41, "annotation": null}], [{"text": "An", "start": 293, "end": 295, "id": 42, "annotation": null}, {"text": "analysis", "start": 296, "end": 304, "id": 43, "annotation": null}, {"text": "of", "start": 305, "end": 307, "id": 44, "annotation": null}, {"text": "the", "start": 308, "end": 311, "id": 45, "annotation": null}, {"text": "scattering", "start": 312, "end": 322, "id": 46, "annotation": null}, {"text": "mechanism", "start": 323, "end": 332, "id": 47, "annotation": null}, {"text": "is", "start": 333, "end": 335, "id": 48, "annotation": null}, {"text": "given", "start": 336, "end": 341, "id": 49, "annotation": null}, {"text": ",", "start": 342, "end": 343, "id": 50, "annotation": null}, {"text": "and", "start": 344, "end": 347, "id": 51, "annotation": null}, {"text": "the", "start": 348, "end": 351, "id": 52, "annotation": null}, {"text": "acceptor", "start": 352, "end": 360, "id": 53, "annotation": null}, {"text": "and", "start": 361, "end": 364, "id": 54, "annotation": null}, {"text": "donor", "start": 365, "end": 370, "id": 55, "annotation": null}, {"text": "densities", "start": 371, "end": 380, "id": 56, "annotation": null}, {"text": "are", "start": 381, "end": 384, "id": 57, "annotation": null}, {"text": "determined", "start": 385, "end": 395, "id": 58, "annotation": null}, {"text": ".", "start": 396, "end": 397, "id": 59, "annotation": null}], [{"text": "The", "start": 398, "end": 401, "id": 60, "annotation": null}, {"text": "acceptor", "start": 402, "end": 410, "id": 61, "annotation": null}, {"text": "-", "start": 411, "end": 412, "id": 62, "annotation": null}, {"text": "type", "start": 413, "end": 417, "id": 63, "annotation": null}, {"text": "capture", "start": 418, "end": 425, "id": 64, "annotation": null}, {"text": "levels", "start": 426, "end": 432, "id": 65, "annotation": null}, {"text": "are", "start": 433, "end": 436, "id": 66, "annotation": null}, {"text": "found", "start": 437, "end": 442, "id": 67, "annotation": null}, {"text": "from", "start": 443, "end": 447, "id": 68, "annotation": null}, {"text": "the", "start": 448, "end": 451, "id": 69, "annotation": null}, {"text": "temperature", "start": 452, "end": 463, "id": 70, "annotation": null}, {"text": "dependence", "start": 464, "end": 474, "id": 71, "annotation": null}, {"text": "of", "start": 475, "end": 477, "id": 72, "annotation": null}, {"text": "the", "start": 478, "end": 481, "id": 73, "annotation": null}, {"text": "electron", "start": 482, "end": 490, "id": 74, "annotation": null}, {"text": "lifetime", "start": 491, "end": 499, "id": 75, "annotation": null}, {"text": ".", "start": 500, "end": 501, "id": 76, "annotation": null}], [{"text": "The", "start": 502, "end": 505, "id": 77, "annotation": null}, {"text": "results", "start": 506, "end": 513, "id": 78, "annotation": null}, {"text": "of", "start": 514, "end": 516, "id": 79, "annotation": null}, {"text": "a", "start": 517, "end": 518, "id": 80, "annotation": null}, {"text": "study", "start": 519, "end": 524, "id": 81, "annotation": null}, {"text": "of", "start": 525, "end": 527, "id": 82, "annotation": null}, {"text": "the", "start": 528, "end": 531, "id": 83, "annotation": null}, {"text": "cathodoluminescence", "start": 532, "end": 551, "id": 84, "annotation": null}, {"text": "spectra", "start": 552, "end": 559, "id": 85, "annotation": null}, {"text": "indicate", "start": 560, "end": 568, "id": 86, "annotation": null}, {"text": "the", "start": 569, "end": 572, "id": 87, "annotation": null}, {"text": "presence", "start": 573, "end": 581, "id": 88, "annotation": null}, {"text": "in", "start": 582, "end": 584, "id": 89, "annotation": null}, {"text": "the", "start": 585, "end": 588, "id": 90, "annotation": null}, {"text": "specimens", "start": 589, "end": 598, "id": 91, "annotation": null}, {"text": "of", "start": 599, "end": 601, "id": 92, "annotation": null}, {"text": "complex", "start": 602, "end": 609, "id": 93, "annotation": null}, {"text": "radiational", "start": 610, "end": 621, "id": 94, "annotation": null}, {"text": "recombination", "start": 622, "end": 635, "id": 95, "annotation": null}, {"text": "centers", "start": 636, "end": 643, "id": 96, "annotation": null}, {"text": "similar", "start": 644, "end": 651, "id": 97, "annotation": null}, {"text": "to", "start": 652, "end": 654, "id": 98, "annotation": null}, {"text": "germanium", "start": 655, "end": 664, "id": 99, "annotation": null}, {"text": "-", "start": 665, "end": 666, "id": 100, "annotation": null}, {"text": "atom", "start": 667, "end": 671, "id": 101, "annotation": null}, {"text": "complexes", "start": 672, "end": 681, "id": 102, "annotation": null}, {"text": "with", "start": 682, "end": 686, "id": 103, "annotation": null}, {"text": "inherent", "start": 687, "end": 695, "id": 104, "annotation": null}, {"text": "lattice", "start": 696, "end": 703, "id": 105, "annotation": null}, {"text": "defects", "start": 704, "end": 711, "id": 106, "annotation": null}, {"text": ".", "start": 712, "end": 713, "id": 107, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The addition of 1wt% Pd, Au, Ni and Cu dopants has been demonstrated to strongly alter the morphology of beta-phase molybdenum nitride prepared by treatment of MoO3 with a 3/1 H2/N2 mixture at 750\u00b0C. Furthermore, the addition of Pd significantly enhances the surface area and the formation of the nitride phase. It is proposed that the facile formation of molybdenum bronzes in this system is important in this respect. The dopants have also been observed to modify the denitridation characteristics of the beta-phase, with an overall reduction of the proportion of NH3 formed upon using a 3/1 H2/Ar mixture with respect to the undoped sample.", "meta": {"doi": "10.1016/j.jssc.2009.12.018"}, "_input_hash": -2145177688, "_task_hash": -208477622, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "addition", "start": 4, "end": 12, "id": 1, "annotation": null}, {"text": "of", "start": 13, "end": 15, "id": 2, "annotation": null}, {"text": "1wt%", "start": 16, "end": 20, "id": 3, "annotation": "DOPMODQ"}, {"text": "Pd", "start": 21, "end": 23, "id": 4, "annotation": "DOPANT"}, {"text": ",", "start": 24, "end": 25, "id": 5, "annotation": null}, {"text": "Au", "start": 26, "end": 28, "id": 6, "annotation": "DOPANT"}, {"text": ",", "start": 29, "end": 30, "id": 7, "annotation": null}, {"text": "Ni", "start": 31, "end": 33, "id": 8, "annotation": "DOPANT"}, {"text": "and", "start": 34, "end": 37, "id": 9, "annotation": null}, {"text": "Cu", "start": 38, "end": 40, "id": 10, "annotation": "DOPANT"}, {"text": "dopants", "start": 41, "end": 48, "id": 11, "annotation": null}, {"text": "has", "start": 49, "end": 52, "id": 12, "annotation": null}, {"text": "been", "start": 53, "end": 57, "id": 13, "annotation": null}, {"text": "demonstrated", "start": 58, "end": 70, "id": 14, "annotation": null}, {"text": "to", "start": 71, "end": 73, "id": 15, "annotation": null}, {"text": "strongly", "start": 74, "end": 82, "id": 16, "annotation": null}, {"text": "alter", "start": 83, "end": 88, "id": 17, "annotation": null}, {"text": "the", "start": 89, "end": 92, "id": 18, "annotation": null}, {"text": "morphology", "start": 93, "end": 103, "id": 19, "annotation": null}, {"text": "of", "start": 104, "end": 106, "id": 20, "annotation": null}, {"text": "beta", "start": 107, "end": 111, "id": 21, "annotation": null}, {"text": "-", "start": 112, "end": 113, "id": 22, "annotation": null}, {"text": "phase", "start": 114, "end": 119, "id": 23, "annotation": null}, {"text": "molybdenum", "start": 120, "end": 130, "id": 24, "annotation": "BASEMAT"}, {"text": "nitride", "start": 131, "end": 138, "id": 25, "annotation": "BASEMAT"}, {"text": "prepared", "start": 139, "end": 147, "id": 26, "annotation": null}, {"text": "by", "start": 148, "end": 150, "id": 27, "annotation": null}, {"text": "treatment", "start": 151, "end": 160, "id": 28, "annotation": null}, {"text": "of", "start": 161, "end": 163, "id": 29, "annotation": null}, {"text": "MoO3", "start": 164, "end": 168, "id": 30, "annotation": null}, {"text": "with", "start": 169, "end": 173, "id": 31, "annotation": null}, {"text": "a", "start": 174, "end": 175, "id": 32, "annotation": null}, {"text": "3/1", "start": 176, "end": 179, "id": 33, "annotation": null}, {"text": "H2", "start": 180, "end": 182, "id": 34, "annotation": null}, {"text": "/", "start": 183, "end": 184, "id": 35, "annotation": null}, {"text": "N2", "start": 185, "end": 187, "id": 36, "annotation": null}, {"text": "mixture", "start": 188, "end": 195, "id": 37, "annotation": null}, {"text": "at", "start": 196, "end": 198, "id": 38, "annotation": null}, {"text": "750", "start": 199, "end": 202, "id": 39, "annotation": null}, {"text": "\u00b0", "start": 203, "end": 204, "id": 40, "annotation": null}, {"text": "C", "start": 205, "end": 206, "id": 41, "annotation": null}, {"text": ".", "start": 207, "end": 208, "id": 42, "annotation": null}], [{"text": "Furthermore", "start": 209, "end": 220, "id": 43, "annotation": null}, {"text": ",", "start": 221, "end": 222, "id": 44, "annotation": null}, {"text": "the", "start": 223, "end": 226, "id": 45, "annotation": null}, {"text": "addition", "start": 227, "end": 235, "id": 46, "annotation": null}, {"text": "of", "start": 236, "end": 238, "id": 47, "annotation": null}, {"text": "Pd", "start": 239, "end": 241, "id": 48, "annotation": null}, {"text": "significantly", "start": 242, "end": 255, "id": 49, "annotation": null}, {"text": "enhances", "start": 256, "end": 264, "id": 50, "annotation": null}, {"text": "the", "start": 265, "end": 268, "id": 51, "annotation": null}, {"text": "surface", "start": 269, "end": 276, "id": 52, "annotation": null}, {"text": "area", "start": 277, "end": 281, "id": 53, "annotation": null}, {"text": "and", "start": 282, "end": 285, "id": 54, "annotation": null}, {"text": "the", "start": 286, "end": 289, "id": 55, "annotation": null}, {"text": "formation", "start": 290, "end": 299, "id": 56, "annotation": null}, {"text": "of", "start": 300, "end": 302, "id": 57, "annotation": null}, {"text": "the", "start": 303, "end": 306, "id": 58, "annotation": null}, {"text": "nitride", "start": 307, "end": 314, "id": 59, "annotation": null}, {"text": "phase", "start": 315, "end": 320, "id": 60, "annotation": null}, {"text": ".", "start": 321, "end": 322, "id": 61, "annotation": null}], [{"text": "It", "start": 323, "end": 325, "id": 62, "annotation": null}, {"text": "is", "start": 326, "end": 328, "id": 63, "annotation": null}, {"text": "proposed", "start": 329, "end": 337, "id": 64, "annotation": null}, {"text": "that", "start": 338, "end": 342, "id": 65, "annotation": null}, {"text": "the", "start": 343, "end": 346, "id": 66, "annotation": null}, {"text": "facile", "start": 347, "end": 353, "id": 67, "annotation": null}, {"text": "formation", "start": 354, "end": 363, "id": 68, "annotation": null}, {"text": "of", "start": 364, "end": 366, "id": 69, "annotation": null}, {"text": "molybdenum", "start": 367, "end": 377, "id": 70, "annotation": null}, {"text": "bronzes", "start": 378, "end": 385, "id": 71, "annotation": null}, {"text": "in", "start": 386, "end": 388, "id": 72, "annotation": null}, {"text": "this", "start": 389, "end": 393, "id": 73, "annotation": null}, {"text": "system", "start": 394, "end": 400, "id": 74, "annotation": null}, {"text": "is", "start": 401, "end": 403, "id": 75, "annotation": null}, {"text": "important", "start": 404, "end": 413, "id": 76, "annotation": null}, {"text": "in", "start": 414, "end": 416, "id": 77, "annotation": null}, {"text": "this", "start": 417, "end": 421, "id": 78, "annotation": null}, {"text": "respect", "start": 422, "end": 429, "id": 79, "annotation": null}, {"text": ".", "start": 430, "end": 431, "id": 80, "annotation": null}], [{"text": "The", "start": 432, "end": 435, "id": 81, "annotation": null}, {"text": "dopants", "start": 436, "end": 443, "id": 82, "annotation": null}, {"text": "have", "start": 444, "end": 448, "id": 83, "annotation": null}, {"text": "also", "start": 449, "end": 453, "id": 84, "annotation": null}, {"text": "been", "start": 454, "end": 458, "id": 85, "annotation": null}, {"text": "observed", "start": 459, "end": 467, "id": 86, "annotation": null}, {"text": "to", "start": 468, "end": 470, "id": 87, "annotation": null}, {"text": "modify", "start": 471, "end": 477, "id": 88, "annotation": null}, {"text": "the", "start": 478, "end": 481, "id": 89, "annotation": null}, {"text": "denitridation", "start": 482, "end": 495, "id": 90, "annotation": null}, {"text": "characteristics", "start": 496, "end": 511, "id": 91, "annotation": null}, {"text": "of", "start": 512, "end": 514, "id": 92, "annotation": null}, {"text": "the", "start": 515, "end": 518, "id": 93, "annotation": null}, {"text": "beta", "start": 519, "end": 523, "id": 94, "annotation": "BASEMAT"}, {"text": "-", "start": 524, "end": 525, "id": 95, "annotation": null}, {"text": "phase", "start": 526, "end": 531, "id": 96, "annotation": "BASEMAT"}, {"text": ",", "start": 532, "end": 533, "id": 97, "annotation": null}, {"text": "with", "start": 534, "end": 538, "id": 98, "annotation": null}, {"text": "an", "start": 539, "end": 541, "id": 99, "annotation": null}, {"text": "overall", "start": 542, "end": 549, "id": 100, "annotation": null}, {"text": "reduction", "start": 550, "end": 559, "id": 101, "annotation": null}, {"text": "of", "start": 560, "end": 562, "id": 102, "annotation": null}, {"text": "the", "start": 563, "end": 566, "id": 103, "annotation": null}, {"text": "proportion", "start": 567, "end": 577, "id": 104, "annotation": null}, {"text": "of", "start": 578, "end": 580, "id": 105, "annotation": null}, {"text": "NH3", "start": 581, "end": 584, "id": 106, "annotation": null}, {"text": "formed", "start": 585, "end": 591, "id": 107, "annotation": null}, {"text": "upon", "start": 592, "end": 596, "id": 108, "annotation": null}, {"text": "using", "start": 597, "end": 602, "id": 109, "annotation": null}, {"text": "a", "start": 603, "end": 604, "id": 110, "annotation": null}, {"text": "3/1", "start": 605, "end": 608, "id": 111, "annotation": null}, {"text": "H2", "start": 609, "end": 611, "id": 112, "annotation": null}, {"text": "/", "start": 612, "end": 613, "id": 113, "annotation": null}, {"text": "Ar", "start": 614, "end": 616, "id": 114, "annotation": null}, {"text": "mixture", "start": 617, "end": 624, "id": 115, "annotation": null}, {"text": "with", "start": 625, "end": 629, "id": 116, "annotation": null}, {"text": "respect", "start": 630, "end": 637, "id": 117, "annotation": null}, {"text": "to", "start": 638, "end": 640, "id": 118, "annotation": null}, {"text": "the", "start": 641, "end": 644, "id": 119, "annotation": null}, {"text": "undoped", "start": 645, "end": 652, "id": 120, "annotation": null}, {"text": "sample", "start": 653, "end": 659, "id": 121, "annotation": null}, {"text": ".", "start": 660, "end": 661, "id": 122, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Promise of Si nanocrystals highly depends on tailoring their behaviour through doping. Phosphorus-doped silicon nanocrystals embedded in a silicon dioxide matrix have been realized by a co-sputtering process. The effects of phosphorus-doping on the properties of Si nanocrystals are investigated. Phosphorus diffuses from P\u2013P and/or P\u2013Si to P\u2013O upon high temperature annealing. The dominant X-ray photoelectron spectroscopy P 2p signal attributable to Si\u2013P and/or P\u2013P (130 eV) at 1100 \u00b0C indicates that the phosphorus may exist inside Si nanocrystals. It is found that existence of phosphorus enhances phase separation of silicon rich oxide and thereby Si crystallization. In addition, phosphorus has a considerable effect on the optical absorption and photoluminescence properties as a function of annealing temperature.", "meta": {"doi": "10.1016/j.tsf.2009.02.076"}, "_input_hash": 1352864383, "_task_hash": -1556654125, "tokens": [[{"text": "Promise", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "of", "start": 8, "end": 10, "id": 1, "annotation": null}, {"text": "Si", "start": 11, "end": 13, "id": 2, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 14, "end": 26, "id": 3, "annotation": null}, {"text": "highly", "start": 27, "end": 33, "id": 4, "annotation": null}, {"text": "depends", "start": 34, "end": 41, "id": 5, "annotation": null}, {"text": "on", "start": 42, "end": 44, "id": 6, "annotation": null}, {"text": "tailoring", "start": 45, "end": 54, "id": 7, "annotation": null}, {"text": "their", "start": 55, "end": 60, "id": 8, "annotation": null}, {"text": "behaviour", "start": 61, "end": 70, "id": 9, "annotation": null}, {"text": "through", "start": 71, "end": 78, "id": 10, "annotation": null}, {"text": "doping", "start": 79, "end": 85, "id": 11, "annotation": null}, {"text": ".", "start": 86, "end": 87, "id": 12, "annotation": null}], [{"text": "Phosphorus", "start": 88, "end": 98, "id": 13, "annotation": "DOPANT"}, {"text": "-", "start": 99, "end": 100, "id": 14, "annotation": null}, {"text": "doped", "start": 101, "end": 106, "id": 15, "annotation": null}, {"text": "silicon", "start": 107, "end": 114, "id": 16, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 115, "end": 127, "id": 17, "annotation": null}, {"text": "embedded", "start": 128, "end": 136, "id": 18, "annotation": null}, {"text": "in", "start": 137, "end": 139, "id": 19, "annotation": null}, {"text": "a", "start": 140, "end": 141, "id": 20, "annotation": null}, {"text": "silicon", "start": 142, "end": 149, "id": 21, "annotation": null}, {"text": "dioxide", "start": 150, "end": 157, "id": 22, "annotation": null}, {"text": "matrix", "start": 158, "end": 164, "id": 23, "annotation": null}, {"text": "have", "start": 165, "end": 169, "id": 24, "annotation": null}, {"text": "been", "start": 170, "end": 174, "id": 25, "annotation": null}, {"text": "realized", "start": 175, "end": 183, "id": 26, "annotation": null}, {"text": "by", "start": 184, "end": 186, "id": 27, "annotation": null}, {"text": "a", "start": 187, "end": 188, "id": 28, "annotation": null}, {"text": "co", "start": 189, "end": 191, "id": 29, "annotation": null}, {"text": "-", "start": 192, "end": 193, "id": 30, "annotation": null}, {"text": "sputtering", "start": 194, "end": 204, "id": 31, "annotation": null}, {"text": "process", "start": 205, "end": 212, "id": 32, "annotation": null}, {"text": ".", "start": 213, "end": 214, "id": 33, "annotation": null}], [{"text": "The", "start": 215, "end": 218, "id": 34, "annotation": null}, {"text": "effects", "start": 219, "end": 226, "id": 35, "annotation": null}, {"text": "of", "start": 227, "end": 229, "id": 36, "annotation": null}, {"text": "phosphorus", "start": 230, "end": 240, "id": 37, "annotation": "DOPANT"}, {"text": "-", "start": 241, "end": 242, "id": 38, "annotation": null}, {"text": "doping", "start": 243, "end": 249, "id": 39, "annotation": null}, {"text": "on", "start": 250, "end": 252, "id": 40, "annotation": null}, {"text": "the", "start": 253, "end": 256, "id": 41, "annotation": null}, {"text": "properties", "start": 257, "end": 267, "id": 42, "annotation": null}, {"text": "of", "start": 268, "end": 270, "id": 43, "annotation": null}, {"text": "Si", "start": 271, "end": 273, "id": 44, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 274, "end": 286, "id": 45, "annotation": null}, {"text": "are", "start": 287, "end": 290, "id": 46, "annotation": null}, {"text": "investigated", "start": 291, "end": 303, "id": 47, "annotation": null}, {"text": ".", "start": 304, "end": 305, "id": 48, "annotation": null}], [{"text": "Phosphorus", "start": 306, "end": 316, "id": 49, "annotation": null}, {"text": "diffuses", "start": 317, "end": 325, "id": 50, "annotation": null}, {"text": "from", "start": 326, "end": 330, "id": 51, "annotation": null}, {"text": "P", "start": 331, "end": 332, "id": 52, "annotation": null}, {"text": "\u2013", "start": 333, "end": 334, "id": 53, "annotation": null}, {"text": "P", "start": 335, "end": 336, "id": 54, "annotation": null}, {"text": "and/or", "start": 337, "end": 343, "id": 55, "annotation": null}, {"text": "P", "start": 344, "end": 345, "id": 56, "annotation": null}, {"text": "\u2013", "start": 346, "end": 347, "id": 57, "annotation": null}, {"text": "Si", "start": 348, "end": 350, "id": 58, "annotation": null}, {"text": "to", "start": 351, "end": 353, "id": 59, "annotation": null}, {"text": "P", "start": 354, "end": 355, "id": 60, "annotation": null}, {"text": "\u2013", "start": 356, "end": 357, "id": 61, "annotation": null}, {"text": "O", "start": 358, "end": 359, "id": 62, "annotation": null}, {"text": "upon", "start": 360, "end": 364, "id": 63, "annotation": null}, {"text": "high", "start": 365, "end": 369, "id": 64, "annotation": null}, {"text": "temperature", "start": 370, "end": 381, "id": 65, "annotation": null}, {"text": "annealing", "start": 382, "end": 391, "id": 66, "annotation": null}, {"text": ".", "start": 392, "end": 393, "id": 67, "annotation": null}], [{"text": "The", "start": 394, "end": 397, "id": 68, "annotation": null}, {"text": "dominant", "start": 398, "end": 406, "id": 69, "annotation": null}, {"text": "X", "start": 407, "end": 408, "id": 70, "annotation": null}, {"text": "-", "start": 409, "end": 410, "id": 71, "annotation": null}, {"text": "ray", "start": 411, "end": 414, "id": 72, "annotation": null}, {"text": "photoelectron", "start": 415, "end": 428, "id": 73, "annotation": null}, {"text": "spectroscopy", "start": 429, "end": 441, "id": 74, "annotation": null}, {"text": "P", "start": 442, "end": 443, "id": 75, "annotation": null}, {"text": "2p", "start": 444, "end": 446, "id": 76, "annotation": null}, {"text": "signal", "start": 447, "end": 453, "id": 77, "annotation": null}, {"text": "attributable", "start": 454, "end": 466, "id": 78, "annotation": null}, {"text": "to", "start": 467, "end": 469, "id": 79, "annotation": null}, {"text": "Si", "start": 470, "end": 472, "id": 80, "annotation": null}, {"text": "\u2013", "start": 473, "end": 474, "id": 81, "annotation": null}, {"text": "P", "start": 475, "end": 476, "id": 82, "annotation": null}, {"text": "and/or", "start": 477, "end": 483, "id": 83, "annotation": null}, {"text": "P", "start": 484, "end": 485, "id": 84, "annotation": null}, {"text": "\u2013", "start": 486, "end": 487, "id": 85, "annotation": null}, {"text": "P", "start": 488, "end": 489, "id": 86, "annotation": null}, {"text": "(", "start": 490, "end": 491, "id": 87, "annotation": null}, {"text": "130", "start": 492, "end": 495, "id": 88, "annotation": null}, {"text": "eV", "start": 496, "end": 498, "id": 89, "annotation": null}, {"text": ")", "start": 499, "end": 500, "id": 90, "annotation": null}, {"text": "at", "start": 501, "end": 503, "id": 91, "annotation": null}, {"text": "1100", "start": 504, "end": 508, "id": 92, "annotation": null}, {"text": "\u00b0", "start": 509, "end": 510, "id": 93, "annotation": null}, {"text": "C", "start": 511, "end": 512, "id": 94, "annotation": null}, {"text": "indicates", "start": 513, "end": 522, "id": 95, "annotation": null}, {"text": "that", "start": 523, "end": 527, "id": 96, "annotation": null}, {"text": "the", "start": 528, "end": 531, "id": 97, "annotation": null}, {"text": "phosphorus", "start": 532, "end": 542, "id": 98, "annotation": null}, {"text": "may", "start": 543, "end": 546, "id": 99, "annotation": null}, {"text": "exist", "start": 547, "end": 552, "id": 100, "annotation": null}, {"text": "inside", "start": 553, "end": 559, "id": 101, "annotation": null}, {"text": "Si", "start": 560, "end": 562, "id": 102, "annotation": null}, {"text": "nanocrystals", "start": 563, "end": 575, "id": 103, "annotation": null}, {"text": ".", "start": 576, "end": 577, "id": 104, "annotation": null}], [{"text": "It", "start": 578, "end": 580, "id": 105, "annotation": null}, {"text": "is", "start": 581, "end": 583, "id": 106, "annotation": null}, {"text": "found", "start": 584, "end": 589, "id": 107, "annotation": null}, {"text": "that", "start": 590, "end": 594, "id": 108, "annotation": null}, {"text": "existence", "start": 595, "end": 604, "id": 109, "annotation": null}, {"text": "of", "start": 605, "end": 607, "id": 110, "annotation": null}, {"text": "phosphorus", "start": 608, "end": 618, "id": 111, "annotation": null}, {"text": "enhances", "start": 619, "end": 627, "id": 112, "annotation": null}, {"text": "phase", "start": 628, "end": 633, "id": 113, "annotation": null}, {"text": "separation", "start": 634, "end": 644, "id": 114, "annotation": null}, {"text": "of", "start": 645, "end": 647, "id": 115, "annotation": null}, {"text": "silicon", "start": 648, "end": 655, "id": 116, "annotation": null}, {"text": "rich", "start": 656, "end": 660, "id": 117, "annotation": null}, {"text": "oxide", "start": 661, "end": 666, "id": 118, "annotation": null}, {"text": "and", "start": 667, "end": 670, "id": 119, "annotation": null}, {"text": "thereby", "start": 671, "end": 678, "id": 120, "annotation": null}, {"text": "Si", "start": 679, "end": 681, "id": 121, "annotation": null}, {"text": "crystallization", "start": 682, "end": 697, "id": 122, "annotation": null}, {"text": ".", "start": 698, "end": 699, "id": 123, "annotation": null}], [{"text": "In", "start": 700, "end": 702, "id": 124, "annotation": null}, {"text": "addition", "start": 703, "end": 711, "id": 125, "annotation": null}, {"text": ",", "start": 712, "end": 713, "id": 126, "annotation": null}, {"text": "phosphorus", "start": 714, "end": 724, "id": 127, "annotation": null}, {"text": "has", "start": 725, "end": 728, "id": 128, "annotation": null}, {"text": "a", "start": 729, "end": 730, "id": 129, "annotation": null}, {"text": "considerable", "start": 731, "end": 743, "id": 130, "annotation": null}, {"text": "effect", "start": 744, "end": 750, "id": 131, "annotation": null}, {"text": "on", "start": 751, "end": 753, "id": 132, "annotation": null}, {"text": "the", "start": 754, "end": 757, "id": 133, "annotation": null}, {"text": "optical", "start": 758, "end": 765, "id": 134, "annotation": null}, {"text": "absorption", "start": 766, "end": 776, "id": 135, "annotation": null}, {"text": "and", "start": 777, "end": 780, "id": 136, "annotation": null}, {"text": "photoluminescence", "start": 781, "end": 798, "id": 137, "annotation": null}, {"text": "properties", "start": 799, "end": 809, "id": 138, "annotation": null}, {"text": "as", "start": 810, "end": 812, "id": 139, "annotation": null}, {"text": "a", "start": 813, "end": 814, "id": 140, "annotation": null}, {"text": "function", "start": 815, "end": 823, "id": 141, "annotation": null}, {"text": "of", "start": 824, "end": 826, "id": 142, "annotation": null}, {"text": "annealing", "start": 827, "end": 836, "id": 143, "annotation": null}, {"text": "temperature", "start": 837, "end": 848, "id": 144, "annotation": null}, {"text": ".", "start": 849, "end": 850, "id": 145, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "Bi2S3 single crystals were grown by a modified of Bridgman method. Measurements of the electrical conductivity, Hall effect and thermoelectric power (TEP) were preformed in two crystallographic directions (parallel and perpendicular to the c-axis). The measurements showed that the electrical conductivity, Hall mobility, and Seebeck coefficient have anisotropic nature. From these measurements many physical parameters were estimated and the crystals showed n-type of conduction mechanism. Also, values of the energy gap were found to be different in the two directions", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Bi2S3", "start": 0, "end": 5, "annotation": null}, {"text": "single", "start": 6, "end": 12, "annotation": null}, {"text": "crystals", "start": 13, "end": 21, "annotation": null}, {"text": "were", "start": 22, "end": 26, "annotation": null}, {"text": "grown", "start": 27, "end": 32, "annotation": null}, {"text": "by", "start": 33, "end": 35, "annotation": null}, {"text": "a", "start": 36, "end": 37, "annotation": null}, {"text": "modified", "start": 38, "end": 46, "annotation": null}, {"text": "of", "start": 47, "end": 49, "annotation": null}, {"text": "Bridgman", "start": 50, "end": 58, "annotation": null}, {"text": "method", "start": 59, "end": 65, "annotation": null}, {"text": ".", "start": 65, "end": 66, "annotation": null}], [{"text": "Measurements", "start": 67, "end": 79, "annotation": null}, {"text": "of", "start": 80, "end": 82, "annotation": null}, {"text": "the", "start": 83, "end": 86, "annotation": null}, {"text": "electrical", "start": 87, "end": 97, "annotation": null}, {"text": "conductivity", "start": 98, "end": 110, "annotation": null}, {"text": ",", "start": 110, "end": 111, "annotation": null}, {"text": "Hall", "start": 112, "end": 116, "annotation": null}, {"text": "effect", "start": 117, "end": 123, "annotation": null}, {"text": "and", "start": 124, "end": 127, "annotation": null}, {"text": "thermoelectric", "start": 128, "end": 142, "annotation": null}, {"text": "power", "start": 143, "end": 148, "annotation": null}, {"text": "(", "start": 149, "end": 150, "annotation": null}, {"text": "TEP", "start": 150, "end": 153, "annotation": null}, {"text": ")", "start": 153, "end": 154, "annotation": null}, {"text": "were", "start": 155, "end": 159, "annotation": null}, {"text": "preformed", "start": 160, "end": 169, "annotation": null}, {"text": "in", "start": 170, "end": 172, "annotation": null}, {"text": "two", "start": 173, "end": 176, "annotation": null}, {"text": "crystallographic", "start": 177, "end": 193, "annotation": null}, {"text": "directions", "start": 194, "end": 204, "annotation": null}, {"text": "(", "start": 205, "end": 206, "annotation": null}, {"text": "parallel", "start": 206, "end": 214, "annotation": null}, {"text": "and", "start": 215, "end": 218, "annotation": null}, {"text": "perpendicular", "start": 219, "end": 232, "annotation": null}, {"text": "to", "start": 233, "end": 235, "annotation": null}, {"text": "the", "start": 236, "end": 239, "annotation": null}, {"text": "c-axis", "start": 240, "end": 246, "annotation": null}, {"text": ")", "start": 246, "end": 247, "annotation": null}, {"text": ".", "start": 247, "end": 248, "annotation": null}], [{"text": "The", "start": 249, "end": 252, "annotation": null}, {"text": "measurements", "start": 253, "end": 265, "annotation": null}, {"text": "showed", "start": 266, "end": 272, "annotation": null}, {"text": "that", "start": 273, "end": 277, "annotation": null}, {"text": "the", "start": 278, "end": 281, "annotation": null}, {"text": "electrical", "start": 282, "end": 292, "annotation": null}, {"text": "conductivity", "start": 293, "end": 305, "annotation": null}, {"text": ",", "start": 305, "end": 306, "annotation": null}, {"text": "Hall", "start": 307, "end": 311, "annotation": null}, {"text": "mobility", "start": 312, "end": 320, "annotation": null}, {"text": ",", "start": 320, "end": 321, "annotation": null}, {"text": "and", "start": 322, "end": 325, "annotation": null}, {"text": "Seebeck", "start": 326, "end": 333, "annotation": null}, {"text": "coefficient", "start": 334, "end": 345, "annotation": null}, {"text": "have", "start": 346, "end": 350, "annotation": null}, {"text": "anisotropic", "start": 351, "end": 362, "annotation": null}, {"text": "nature", "start": 363, "end": 369, "annotation": null}, {"text": ".", "start": 369, "end": 370, "annotation": null}], [{"text": "From", "start": 371, "end": 375, "annotation": null}, {"text": "these", "start": 376, "end": 381, "annotation": null}, {"text": "measurements", "start": 382, "end": 394, "annotation": null}, {"text": "many", "start": 395, "end": 399, "annotation": null}, {"text": "physical", "start": 400, "end": 408, "annotation": null}, {"text": "parameters", "start": 409, "end": 419, "annotation": null}, {"text": "were", "start": 420, "end": 424, "annotation": null}, {"text": "estimated", "start": 425, "end": 434, "annotation": null}, {"text": "and", "start": 435, "end": 438, "annotation": null}, {"text": "the", "start": 439, "end": 442, "annotation": null}, {"text": "crystals", "start": 443, "end": 451, "annotation": null}, {"text": "showed", "start": 452, "end": 458, "annotation": null}, {"text": "n", "start": 459, "end": 460, "annotation": "DOPANT"}, {"text": "-", "start": 460, "end": 461, "annotation": "DOPANT"}, {"text": "type", "start": 461, "end": 465, "annotation": "DOPANT"}, {"text": "of", "start": 466, "end": 468, "annotation": null}, {"text": "conduction", "start": 469, "end": 479, "annotation": null}, {"text": "mechanism", "start": 480, "end": 489, "annotation": null}, {"text": ".", "start": 489, "end": 490, "annotation": null}], [{"text": "Also", "start": 491, "end": 495, "annotation": null}, {"text": ",", "start": 495, "end": 496, "annotation": null}, {"text": "values", "start": 497, "end": 503, "annotation": null}, {"text": "of", "start": 504, "end": 506, "annotation": null}, {"text": "the", "start": 507, "end": 510, "annotation": null}, {"text": "energy", "start": 511, "end": 517, "annotation": null}, {"text": "gap", "start": 518, "end": 521, "annotation": null}, {"text": "were", "start": 522, "end": 526, "annotation": null}, {"text": "found", "start": 527, "end": 532, "annotation": null}, {"text": "to", "start": 533, "end": 535, "annotation": null}, {"text": "be", "start": 536, "end": 538, "annotation": null}, {"text": "different", "start": 539, "end": 548, "annotation": null}, {"text": "in", "start": 549, "end": 551, "annotation": null}, {"text": "the", "start": 552, "end": 555, "annotation": null}, {"text": "two", "start": 556, "end": 559, "annotation": null}, {"text": "directions", "start": 560, "end": 570, "annotation": null}]]} +{"remark": "doping_annt2", "text": "Bi2S3 single crystals were grown by a modified of Bridgman method. Measurements of the electrical conductivity, Hall effect and thermoelectric power (TEP) were preformed in two crystallographic directions (parallel and perpendicular to the c-axis). The measurements showed that the electrical conductivity, Hall mobility, and Seebeck coefficient have anisotropic nature. From these measurements many physical parameters were estimated and the crystals showed n-type of conduction mechanism. Also, values of the energy gap were found to be different in the two directions", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Bi2S3", "start": 0, "end": 5, "annotation": null}, {"text": "single", "start": 6, "end": 12, "annotation": null}, {"text": "crystals", "start": 13, "end": 21, "annotation": null}, {"text": "were", "start": 22, "end": 26, "annotation": null}, {"text": "grown", "start": 27, "end": 32, "annotation": null}, {"text": "by", "start": 33, "end": 35, "annotation": null}, {"text": "a", "start": 36, "end": 37, "annotation": null}, {"text": "modified", "start": 38, "end": 46, "annotation": null}, {"text": "of", "start": 47, "end": 49, "annotation": null}, {"text": "Bridgman", "start": 50, "end": 58, "annotation": null}, {"text": "method", "start": 59, "end": 65, "annotation": null}, {"text": ".", "start": 65, "end": 66, "annotation": null}], [{"text": "Measurements", "start": 67, "end": 79, "annotation": null}, {"text": "of", "start": 80, "end": 82, "annotation": null}, {"text": "the", "start": 83, "end": 86, "annotation": null}, {"text": "electrical", "start": 87, "end": 97, "annotation": null}, {"text": "conductivity", "start": 98, "end": 110, "annotation": null}, {"text": ",", "start": 110, "end": 111, "annotation": null}, {"text": "Hall", "start": 112, "end": 116, "annotation": null}, {"text": "effect", "start": 117, "end": 123, "annotation": null}, {"text": "and", "start": 124, "end": 127, "annotation": null}, {"text": "thermoelectric", "start": 128, "end": 142, "annotation": null}, {"text": "power", "start": 143, "end": 148, "annotation": null}, {"text": "(", "start": 149, "end": 150, "annotation": null}, {"text": "TEP", "start": 150, "end": 153, "annotation": null}, {"text": ")", "start": 153, "end": 154, "annotation": null}, {"text": "were", "start": 155, "end": 159, "annotation": null}, {"text": "preformed", "start": 160, "end": 169, "annotation": null}, {"text": "in", "start": 170, "end": 172, "annotation": null}, {"text": "two", "start": 173, "end": 176, "annotation": null}, {"text": "crystallographic", "start": 177, "end": 193, "annotation": null}, {"text": "directions", "start": 194, "end": 204, "annotation": null}, {"text": "(", "start": 205, "end": 206, "annotation": null}, {"text": "parallel", "start": 206, "end": 214, "annotation": null}, {"text": "and", "start": 215, "end": 218, "annotation": null}, {"text": "perpendicular", "start": 219, "end": 232, "annotation": null}, {"text": "to", "start": 233, "end": 235, "annotation": null}, {"text": "the", "start": 236, "end": 239, "annotation": null}, {"text": "c-axis", "start": 240, "end": 246, "annotation": null}, {"text": ")", "start": 246, "end": 247, "annotation": null}, {"text": ".", "start": 247, "end": 248, "annotation": null}], [{"text": "The", "start": 249, "end": 252, "annotation": null}, {"text": "measurements", "start": 253, "end": 265, "annotation": null}, {"text": "showed", "start": 266, "end": 272, "annotation": null}, {"text": "that", "start": 273, "end": 277, "annotation": null}, {"text": "the", "start": 278, "end": 281, "annotation": null}, {"text": "electrical", "start": 282, "end": 292, "annotation": null}, {"text": "conductivity", "start": 293, "end": 305, "annotation": null}, {"text": ",", "start": 305, "end": 306, "annotation": null}, {"text": "Hall", "start": 307, "end": 311, "annotation": null}, {"text": "mobility", "start": 312, "end": 320, "annotation": null}, {"text": ",", "start": 320, "end": 321, "annotation": null}, {"text": "and", "start": 322, "end": 325, "annotation": null}, {"text": "Seebeck", "start": 326, "end": 333, "annotation": null}, {"text": "coefficient", "start": 334, "end": 345, "annotation": null}, {"text": "have", "start": 346, "end": 350, "annotation": null}, {"text": "anisotropic", "start": 351, "end": 362, "annotation": null}, {"text": "nature", "start": 363, "end": 369, "annotation": null}, {"text": ".", "start": 369, "end": 370, "annotation": null}], [{"text": "From", "start": 371, "end": 375, "annotation": null}, {"text": "these", "start": 376, "end": 381, "annotation": null}, {"text": "measurements", "start": 382, "end": 394, "annotation": null}, {"text": "many", "start": 395, "end": 399, "annotation": null}, {"text": "physical", "start": 400, "end": 408, "annotation": null}, {"text": "parameters", "start": 409, "end": 419, "annotation": null}, {"text": "were", "start": 420, "end": 424, "annotation": null}, {"text": "estimated", "start": 425, "end": 434, "annotation": null}, {"text": "and", "start": 435, "end": 438, "annotation": null}, {"text": "the", "start": 439, "end": 442, "annotation": null}, {"text": "crystals", "start": 443, "end": 451, "annotation": null}, {"text": "showed", "start": 452, "end": 458, "annotation": null}, {"text": "n", "start": 459, "end": 460, "annotation": "DOPANT"}, {"text": "-", "start": 460, "end": 461, "annotation": "DOPANT"}, {"text": "type", "start": 461, "end": 465, "annotation": "DOPANT"}, {"text": "of", "start": 466, "end": 468, "annotation": null}, {"text": "conduction", "start": 469, "end": 479, "annotation": null}, {"text": "mechanism", "start": 480, "end": 489, "annotation": null}, {"text": ".", "start": 489, "end": 490, "annotation": null}], [{"text": "Also", "start": 491, "end": 495, "annotation": null}, {"text": ",", "start": 495, "end": 496, "annotation": null}, {"text": "values", "start": 497, "end": 503, "annotation": null}, {"text": "of", "start": 504, "end": 506, "annotation": null}, {"text": "the", "start": 507, "end": 510, "annotation": null}, {"text": "energy", "start": 511, "end": 517, "annotation": null}, {"text": "gap", "start": 518, "end": 521, "annotation": null}, {"text": "were", "start": 522, "end": 526, "annotation": null}, {"text": "found", "start": 527, "end": 532, "annotation": null}, {"text": "to", "start": 533, "end": 535, "annotation": null}, {"text": "be", "start": 536, "end": 538, "annotation": null}, {"text": "different", "start": 539, "end": 548, "annotation": null}, {"text": "in", "start": 549, "end": 551, "annotation": null}, {"text": "the", "start": 552, "end": 555, "annotation": null}, {"text": "two", "start": 556, "end": 559, "annotation": null}, {"text": "directions", "start": 560, "end": 570, "annotation": null}]], "meta": {"doi": "10.1016/j.physb.2007.09.081"}} {"text": "In this work, novel triple metal-nonmetal doped TiO2 (K-B-N-TiO2) was synthesized by the sol\u2013gel method. The structure and properties of the synthesized nanoparticles were characterized by X-ray diffraction (XRD), scanning electron microscopy (SEM), and Fourier transform infrared (FT-IR) spectroscopy. Photocatalytic activity of the nanoparticles was assessed by degradation of linear alkyl benzene (LAB) industrial wastewater at different operating conditions. The effects of initial pH, photocatalyst loading, initial COD concentration and reaction time on the photocatalytic performance of the nanoparticles degrading LAB wastewater were determined by response surface methodology (RSM). The region of examination for the process was taken as the area enclosed by initial COD concentration (200\u2013500mg/l), catalysis loading (1\u20132g/l), initial pH (3\u201311) and reaction time (1\u20138h). The doping modes reduced recombination of photogenerated electrons and holes, and extended the absorption of TiO2 into the visible light. The photocatalyst properties of K-B-N-TiO2 were more effective than those of pure TiO2 and other modified single and double doped TiO2 (B-N, K-N, N, B and K-TiO2). The COD removal efficiencies by the photocatalysis were increased from pure TiO2 to multi-doped TiO2 in the following order; multi-doped TiO2 > single-doped TiO2 > pure TiO2. More than 55% and 81% of COD content of the LAB industrial wastewater was mineralized under visible light and UV irradiation, respectively at optimum condition (COD of 200mg/l, catalyst loading of 1.5g/l and pH of 3). The BOD5/COD ratio for the remaining COD was obtained to be about 0.4 which indicates higher biodegradability of the treated effluent in comparison with the raw wastewater.", "meta": {"doi": "10.1016/j.mssp.2017.11.040"}, "_input_hash": 934509649, "_task_hash": 2098756524, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "work", "start": 8, "end": 12, "id": 2, "annotation": null}, {"text": ",", "start": 13, "end": 14, "id": 3, "annotation": null}, {"text": "novel", "start": 15, "end": 20, "id": 4, "annotation": null}, {"text": "triple", "start": 21, "end": 27, "id": 5, "annotation": "DOPANT"}, {"text": "metal", "start": 28, "end": 33, "id": 6, "annotation": null}, {"text": "-", "start": 34, "end": 35, "id": 7, "annotation": null}, {"text": "nonmetal", "start": 36, "end": 44, "id": 8, "annotation": "DOPANT"}, {"text": "doped", "start": 45, "end": 50, "id": 9, "annotation": null}, {"text": "TiO2", "start": 51, "end": 55, "id": 10, "annotation": "BASEMAT"}, {"text": "(", "start": 56, "end": 57, "id": 11, "annotation": null}, {"text": "K", "start": 58, "end": 59, "id": 12, "annotation": "DOPANT"}, {"text": "-", "start": 60, "end": 61, "id": 13, "annotation": null}, {"text": "B", "start": 62, "end": 63, "id": 14, "annotation": "DOPANT"}, {"text": "-", "start": 64, "end": 65, "id": 15, "annotation": null}, {"text": "N", "start": 66, "end": 67, "id": 16, "annotation": "DOPANT"}, {"text": "-", "start": 68, "end": 69, "id": 17, "annotation": null}, {"text": "TiO2", "start": 70, "end": 74, "id": 18, "annotation": "BASEMAT"}, {"text": ")", "start": 75, "end": 76, "id": 19, "annotation": null}, {"text": "was", "start": 77, "end": 80, "id": 20, "annotation": null}, {"text": "synthesized", "start": 81, "end": 92, "id": 21, "annotation": null}, {"text": "by", "start": 93, "end": 95, "id": 22, "annotation": null}, {"text": "the", "start": 96, "end": 99, "id": 23, "annotation": null}, {"text": "sol", "start": 100, "end": 103, "id": 24, "annotation": null}, {"text": "\u2013", "start": 104, "end": 105, "id": 25, "annotation": null}, {"text": "gel", "start": 106, "end": 109, "id": 26, "annotation": null}, {"text": "method", "start": 110, "end": 116, "id": 27, "annotation": null}, {"text": ".", "start": 117, "end": 118, "id": 28, "annotation": null}], [{"text": "The", "start": 119, "end": 122, "id": 29, "annotation": null}, {"text": "structure", "start": 123, "end": 132, "id": 30, "annotation": null}, {"text": "and", "start": 133, "end": 136, "id": 31, "annotation": null}, {"text": "properties", "start": 137, "end": 147, "id": 32, "annotation": null}, {"text": "of", "start": 148, "end": 150, "id": 33, "annotation": null}, {"text": "the", "start": 151, "end": 154, "id": 34, "annotation": null}, {"text": "synthesized", "start": 155, "end": 166, "id": 35, "annotation": null}, {"text": "nanoparticles", "start": 167, "end": 180, "id": 36, "annotation": null}, {"text": "were", "start": 181, "end": 185, "id": 37, "annotation": null}, {"text": "characterized", "start": 186, "end": 199, "id": 38, "annotation": null}, {"text": "by", "start": 200, "end": 202, "id": 39, "annotation": null}, {"text": "X", "start": 203, "end": 204, "id": 40, "annotation": null}, {"text": "-", "start": 205, "end": 206, "id": 41, "annotation": null}, {"text": "ray", "start": 207, "end": 210, "id": 42, "annotation": null}, {"text": "diffraction", "start": 211, "end": 222, "id": 43, "annotation": null}, {"text": "(", "start": 223, "end": 224, "id": 44, "annotation": null}, {"text": "XRD", "start": 225, "end": 228, "id": 45, "annotation": null}, {"text": ")", "start": 229, "end": 230, "id": 46, "annotation": null}, {"text": ",", "start": 231, "end": 232, "id": 47, "annotation": null}, {"text": "scanning", "start": 233, "end": 241, "id": 48, "annotation": null}, {"text": "electron", "start": 242, "end": 250, "id": 49, "annotation": null}, {"text": "microscopy", "start": 251, "end": 261, "id": 50, "annotation": null}, {"text": "(", "start": 262, "end": 263, "id": 51, "annotation": null}, {"text": "SEM", "start": 264, "end": 267, "id": 52, "annotation": null}, {"text": ")", "start": 268, "end": 269, "id": 53, "annotation": null}, {"text": ",", "start": 270, "end": 271, "id": 54, "annotation": null}, {"text": "and", "start": 272, "end": 275, "id": 55, "annotation": null}, {"text": "Fourier", "start": 276, "end": 283, "id": 56, "annotation": null}, {"text": "transform", "start": 284, "end": 293, "id": 57, "annotation": null}, {"text": "infrared", "start": 294, "end": 302, "id": 58, "annotation": null}, {"text": "(", "start": 303, "end": 304, "id": 59, "annotation": null}, {"text": "FT", "start": 305, "end": 307, "id": 60, "annotation": null}, {"text": "-", "start": 308, "end": 309, "id": 61, "annotation": null}, {"text": "IR", "start": 310, "end": 312, "id": 62, "annotation": null}, {"text": ")", "start": 313, "end": 314, "id": 63, "annotation": null}, {"text": "spectroscopy", "start": 315, "end": 327, "id": 64, "annotation": null}, {"text": ".", "start": 328, "end": 329, "id": 65, "annotation": null}], [{"text": "Photocatalytic", "start": 330, "end": 344, "id": 66, "annotation": null}, {"text": "activity", "start": 345, "end": 353, "id": 67, "annotation": null}, {"text": "of", "start": 354, "end": 356, "id": 68, "annotation": null}, {"text": "the", "start": 357, "end": 360, "id": 69, "annotation": null}, {"text": "nanoparticles", "start": 361, "end": 374, "id": 70, "annotation": null}, {"text": "was", "start": 375, "end": 378, "id": 71, "annotation": null}, {"text": "assessed", "start": 379, "end": 387, "id": 72, "annotation": null}, {"text": "by", "start": 388, "end": 390, "id": 73, "annotation": null}, {"text": "degradation", "start": 391, "end": 402, "id": 74, "annotation": null}, {"text": "of", "start": 403, "end": 405, "id": 75, "annotation": null}, {"text": "linear", "start": 406, "end": 412, "id": 76, "annotation": null}, {"text": "alkyl", "start": 413, "end": 418, "id": 77, "annotation": null}, {"text": "benzene", "start": 419, "end": 426, "id": 78, "annotation": null}, {"text": "(", "start": 427, "end": 428, "id": 79, "annotation": null}, {"text": "LAB", "start": 429, "end": 432, "id": 80, "annotation": null}, {"text": ")", "start": 433, "end": 434, "id": 81, "annotation": null}, {"text": "industrial", "start": 435, "end": 445, "id": 82, "annotation": null}, {"text": "wastewater", "start": 446, "end": 456, "id": 83, "annotation": null}, {"text": "at", "start": 457, "end": 459, "id": 84, "annotation": null}, {"text": "different", "start": 460, "end": 469, "id": 85, "annotation": null}, {"text": "operating", "start": 470, "end": 479, "id": 86, "annotation": null}, {"text": "conditions", "start": 480, "end": 490, "id": 87, "annotation": null}, {"text": ".", "start": 491, "end": 492, "id": 88, "annotation": null}], [{"text": "The", "start": 493, "end": 496, "id": 89, "annotation": null}, {"text": "effects", "start": 497, "end": 504, "id": 90, "annotation": null}, {"text": "of", "start": 505, "end": 507, "id": 91, "annotation": null}, {"text": "initial", "start": 508, "end": 515, "id": 92, "annotation": null}, {"text": "pH", "start": 516, "end": 518, "id": 93, "annotation": null}, {"text": ",", "start": 519, "end": 520, "id": 94, "annotation": null}, {"text": "photocatalyst", "start": 521, "end": 534, "id": 95, "annotation": null}, {"text": "loading", "start": 535, "end": 542, "id": 96, "annotation": null}, {"text": ",", "start": 543, "end": 544, "id": 97, "annotation": null}, {"text": "initial", "start": 545, "end": 552, "id": 98, "annotation": null}, {"text": "COD", "start": 553, "end": 556, "id": 99, "annotation": null}, {"text": "concentration", "start": 557, "end": 570, "id": 100, "annotation": null}, {"text": "and", "start": 571, "end": 574, "id": 101, "annotation": null}, {"text": "reaction", "start": 575, "end": 583, "id": 102, "annotation": null}, {"text": "time", "start": 584, "end": 588, "id": 103, "annotation": null}, {"text": "on", "start": 589, "end": 591, "id": 104, "annotation": null}, {"text": "the", "start": 592, "end": 595, "id": 105, "annotation": null}, {"text": "photocatalytic", "start": 596, "end": 610, "id": 106, "annotation": null}, {"text": "performance", "start": 611, "end": 622, "id": 107, "annotation": null}, {"text": "of", "start": 623, "end": 625, "id": 108, "annotation": null}, {"text": "the", "start": 626, "end": 629, "id": 109, "annotation": null}, {"text": "nanoparticles", "start": 630, "end": 643, "id": 110, "annotation": null}, {"text": "degrading", "start": 644, "end": 653, "id": 111, "annotation": null}, {"text": "LAB", "start": 654, "end": 657, "id": 112, "annotation": null}, {"text": "wastewater", "start": 658, "end": 668, "id": 113, "annotation": null}, {"text": "were", "start": 669, "end": 673, "id": 114, "annotation": null}, {"text": "determined", "start": 674, "end": 684, "id": 115, "annotation": null}, {"text": "by", "start": 685, "end": 687, "id": 116, "annotation": null}, {"text": "response", "start": 688, "end": 696, "id": 117, "annotation": null}, {"text": "surface", "start": 697, "end": 704, "id": 118, "annotation": null}, {"text": "methodology", "start": 705, "end": 716, "id": 119, "annotation": null}, {"text": "(", "start": 717, "end": 718, "id": 120, "annotation": null}, {"text": "RSM", "start": 719, "end": 722, "id": 121, "annotation": null}, {"text": ")", "start": 723, "end": 724, "id": 122, "annotation": null}, {"text": ".", "start": 725, "end": 726, "id": 123, "annotation": null}], [{"text": "The", "start": 727, "end": 730, "id": 124, "annotation": null}, {"text": "region", "start": 731, "end": 737, "id": 125, "annotation": null}, {"text": "of", "start": 738, "end": 740, "id": 126, "annotation": null}, {"text": "examination", "start": 741, "end": 752, "id": 127, "annotation": null}, {"text": "for", "start": 753, "end": 756, "id": 128, "annotation": null}, {"text": "the", "start": 757, "end": 760, "id": 129, "annotation": null}, {"text": "process", "start": 761, "end": 768, "id": 130, "annotation": null}, {"text": "was", "start": 769, "end": 772, "id": 131, "annotation": null}, {"text": "taken", "start": 773, "end": 778, "id": 132, "annotation": null}, {"text": "as", "start": 779, "end": 781, "id": 133, "annotation": null}, {"text": "the", "start": 782, "end": 785, "id": 134, "annotation": null}, {"text": "area", "start": 786, "end": 790, "id": 135, "annotation": null}, {"text": "enclosed", "start": 791, "end": 799, "id": 136, "annotation": null}, {"text": "by", "start": 800, "end": 802, "id": 137, "annotation": null}, {"text": "initial", "start": 803, "end": 810, "id": 138, "annotation": null}, {"text": "COD", "start": 811, "end": 814, "id": 139, "annotation": null}, {"text": "concentration", "start": 815, "end": 828, "id": 140, "annotation": null}, {"text": "(", "start": 829, "end": 830, "id": 141, "annotation": null}, {"text": "200\u2013500mg", "start": 831, "end": 840, "id": 142, "annotation": null}, {"text": "/", "start": 841, "end": 842, "id": 143, "annotation": null}, {"text": "l", "start": 843, "end": 844, "id": 144, "annotation": null}, {"text": ")", "start": 845, "end": 846, "id": 145, "annotation": null}, {"text": ",", "start": 847, "end": 848, "id": 146, "annotation": null}, {"text": "catalysis", "start": 849, "end": 858, "id": 147, "annotation": null}, {"text": "loading", "start": 859, "end": 866, "id": 148, "annotation": null}, {"text": "(", "start": 867, "end": 868, "id": 149, "annotation": null}, {"text": "1\u20132g", "start": 869, "end": 873, "id": 150, "annotation": null}, {"text": "/", "start": 874, "end": 875, "id": 151, "annotation": null}, {"text": "l", "start": 876, "end": 877, "id": 152, "annotation": null}, {"text": ")", "start": 878, "end": 879, "id": 153, "annotation": null}, {"text": ",", "start": 880, "end": 881, "id": 154, "annotation": null}, {"text": "initial", "start": 882, "end": 889, "id": 155, "annotation": null}, {"text": "pH", "start": 890, "end": 892, "id": 156, "annotation": null}, {"text": "(", "start": 893, "end": 894, "id": 157, "annotation": null}, {"text": "3\u201311", "start": 895, "end": 899, "id": 158, "annotation": null}, {"text": ")", "start": 900, "end": 901, "id": 159, "annotation": null}, {"text": "and", "start": 902, "end": 905, "id": 160, "annotation": null}, {"text": "reaction", "start": 906, "end": 914, "id": 161, "annotation": null}, {"text": "time", "start": 915, "end": 919, "id": 162, "annotation": null}, {"text": "(", "start": 920, "end": 921, "id": 163, "annotation": null}, {"text": "1\u20138h", "start": 922, "end": 926, "id": 164, "annotation": null}, {"text": ")", "start": 927, "end": 928, "id": 165, "annotation": null}, {"text": ".", "start": 929, "end": 930, "id": 166, "annotation": null}], [{"text": "The", "start": 931, "end": 934, "id": 167, "annotation": null}, {"text": "doping", "start": 935, "end": 941, "id": 168, "annotation": null}, {"text": "modes", "start": 942, "end": 947, "id": 169, "annotation": null}, {"text": "reduced", "start": 948, "end": 955, "id": 170, "annotation": null}, {"text": "recombination", "start": 956, "end": 969, "id": 171, "annotation": null}, {"text": "of", "start": 970, "end": 972, "id": 172, "annotation": null}, {"text": "photogenerated", "start": 973, "end": 987, "id": 173, "annotation": null}, {"text": "electrons", "start": 988, "end": 997, "id": 174, "annotation": null}, {"text": "and", "start": 998, "end": 1001, "id": 175, "annotation": null}, {"text": "holes", "start": 1002, "end": 1007, "id": 176, "annotation": null}, {"text": ",", "start": 1008, "end": 1009, "id": 177, "annotation": null}, {"text": "and", "start": 1010, "end": 1013, "id": 178, "annotation": null}, {"text": "extended", "start": 1014, "end": 1022, "id": 179, "annotation": null}, {"text": "the", "start": 1023, "end": 1026, "id": 180, "annotation": null}, {"text": "absorption", "start": 1027, "end": 1037, "id": 181, "annotation": null}, {"text": "of", "start": 1038, "end": 1040, "id": 182, "annotation": null}, {"text": "TiO2", "start": 1041, "end": 1045, "id": 183, "annotation": "BASEMAT"}, {"text": "into", "start": 1046, "end": 1050, "id": 184, "annotation": null}, {"text": "the", "start": 1051, "end": 1054, "id": 185, "annotation": null}, {"text": "visible", "start": 1055, "end": 1062, "id": 186, "annotation": null}, {"text": "light", "start": 1063, "end": 1068, "id": 187, "annotation": null}, {"text": ".", "start": 1069, "end": 1070, "id": 188, "annotation": null}], [{"text": "The", "start": 1071, "end": 1074, "id": 189, "annotation": null}, {"text": "photocatalyst", "start": 1075, "end": 1088, "id": 190, "annotation": null}, {"text": "properties", "start": 1089, "end": 1099, "id": 191, "annotation": null}, {"text": "of", "start": 1100, "end": 1102, "id": 192, "annotation": null}, {"text": "K", "start": 1103, "end": 1104, "id": 193, "annotation": "DOPANT"}, {"text": "-", "start": 1105, "end": 1106, "id": 194, "annotation": null}, {"text": "B", "start": 1107, "end": 1108, "id": 195, "annotation": "DOPANT"}, {"text": "-", "start": 1109, "end": 1110, "id": 196, "annotation": null}, {"text": "N", "start": 1111, "end": 1112, "id": 197, "annotation": "DOPANT"}, {"text": "-", "start": 1113, "end": 1114, "id": 198, "annotation": null}, {"text": "TiO2", "start": 1115, "end": 1119, "id": 199, "annotation": "BASEMAT"}, {"text": "were", "start": 1120, "end": 1124, "id": 200, "annotation": null}, {"text": "more", "start": 1125, "end": 1129, "id": 201, "annotation": null}, {"text": "effective", "start": 1130, "end": 1139, "id": 202, "annotation": null}, {"text": "than", "start": 1140, "end": 1144, "id": 203, "annotation": null}, {"text": "those", "start": 1145, "end": 1150, "id": 204, "annotation": null}, {"text": "of", "start": 1151, "end": 1153, "id": 205, "annotation": null}, {"text": "pure", "start": 1154, "end": 1158, "id": 206, "annotation": null}, {"text": "TiO2", "start": 1159, "end": 1163, "id": 207, "annotation": null}, {"text": "and", "start": 1164, "end": 1167, "id": 208, "annotation": null}, {"text": "other", "start": 1168, "end": 1173, "id": 209, "annotation": null}, {"text": "modified", "start": 1174, "end": 1182, "id": 210, "annotation": null}, {"text": "single", "start": 1183, "end": 1189, "id": 211, "annotation": "DOPANT"}, {"text": "and", "start": 1190, "end": 1193, "id": 212, "annotation": null}, {"text": "double", "start": 1194, "end": 1200, "id": 213, "annotation": "DOPANT"}, {"text": "doped", "start": 1201, "end": 1206, "id": 214, "annotation": null}, {"text": "TiO2", "start": 1207, "end": 1211, "id": 215, "annotation": "BASEMAT"}, {"text": "(", "start": 1212, "end": 1213, "id": 216, "annotation": null}, {"text": "B", "start": 1214, "end": 1215, "id": 217, "annotation": "DOPANT"}, {"text": "-", "start": 1216, "end": 1217, "id": 218, "annotation": null}, {"text": "N", "start": 1218, "end": 1219, "id": 219, "annotation": "DOPANT"}, {"text": ",", "start": 1220, "end": 1221, "id": 220, "annotation": null}, {"text": "K", "start": 1222, "end": 1223, "id": 221, "annotation": "DOPANT"}, {"text": "-", "start": 1224, "end": 1225, "id": 222, "annotation": null}, {"text": "N", "start": 1226, "end": 1227, "id": 223, "annotation": "DOPANT"}, {"text": ",", "start": 1228, "end": 1229, "id": 224, "annotation": null}, {"text": "N", "start": 1230, "end": 1231, "id": 225, "annotation": "DOPANT"}, {"text": ",", "start": 1232, "end": 1233, "id": 226, "annotation": null}, {"text": "B", "start": 1234, "end": 1235, "id": 227, "annotation": "DOPANT"}, {"text": "and", "start": 1236, "end": 1239, "id": 228, "annotation": null}, {"text": "K", "start": 1240, "end": 1241, "id": 229, "annotation": "DOPANT"}, {"text": "-", "start": 1242, "end": 1243, "id": 230, "annotation": null}, {"text": "TiO2", "start": 1244, "end": 1248, "id": 231, "annotation": "BASEMAT"}, {"text": ")", "start": 1249, "end": 1250, "id": 232, "annotation": null}, {"text": ".", "start": 1251, "end": 1252, "id": 233, "annotation": null}], [{"text": "The", "start": 1253, "end": 1256, "id": 234, "annotation": null}, {"text": "COD", "start": 1257, "end": 1260, "id": 235, "annotation": null}, {"text": "removal", "start": 1261, "end": 1268, "id": 236, "annotation": null}, {"text": "efficiencies", "start": 1269, "end": 1281, "id": 237, "annotation": null}, {"text": "by", "start": 1282, "end": 1284, "id": 238, "annotation": null}, {"text": "the", "start": 1285, "end": 1288, "id": 239, "annotation": null}, {"text": "photocatalysis", "start": 1289, "end": 1303, "id": 240, "annotation": null}, {"text": "were", "start": 1304, "end": 1308, "id": 241, "annotation": null}, {"text": "increased", "start": 1309, "end": 1318, "id": 242, "annotation": null}, {"text": "from", "start": 1319, "end": 1323, "id": 243, "annotation": null}, {"text": "pure", "start": 1324, "end": 1328, "id": 244, "annotation": null}, {"text": "TiO2", "start": 1329, "end": 1333, "id": 245, "annotation": null}, {"text": "to", "start": 1334, "end": 1336, "id": 246, "annotation": null}, {"text": "multi", "start": 1337, "end": 1342, "id": 247, "annotation": "DOPANT"}, {"text": "-", "start": 1343, "end": 1344, "id": 248, "annotation": null}, {"text": "doped", "start": 1345, "end": 1350, "id": 249, "annotation": null}, {"text": "TiO2", "start": 1351, "end": 1355, "id": 250, "annotation": "BASEMAT"}, {"text": "in", "start": 1356, "end": 1358, "id": 251, "annotation": null}, {"text": "the", "start": 1359, "end": 1362, "id": 252, "annotation": null}, {"text": "following", "start": 1363, "end": 1372, "id": 253, "annotation": null}, {"text": "order", "start": 1373, "end": 1378, "id": 254, "annotation": null}, {"text": ";", "start": 1379, "end": 1380, "id": 255, "annotation": null}, {"text": "multi", "start": 1381, "end": 1386, "id": 256, "annotation": "DOPANT"}, {"text": "-", "start": 1387, "end": 1388, "id": 257, "annotation": null}, {"text": "doped", "start": 1389, "end": 1394, "id": 258, "annotation": null}, {"text": "TiO2", "start": 1395, "end": 1399, "id": 259, "annotation": "BASEMAT"}, {"text": ">", "start": 1400, "end": 1401, "id": 260, "annotation": null}, {"text": "single", "start": 1402, "end": 1408, "id": 261, "annotation": "DOPANT"}, {"text": "-", "start": 1409, "end": 1410, "id": 262, "annotation": null}, {"text": "doped", "start": 1411, "end": 1416, "id": 263, "annotation": null}, {"text": "TiO2", "start": 1417, "end": 1421, "id": 264, "annotation": "BASEMAT"}, {"text": ">", "start": 1422, "end": 1423, "id": 265, "annotation": null}, {"text": "pure", "start": 1424, "end": 1428, "id": 266, "annotation": null}, {"text": "TiO2", "start": 1429, "end": 1433, "id": 267, "annotation": null}, {"text": ".", "start": 1434, "end": 1435, "id": 268, "annotation": null}], [{"text": "More", "start": 1436, "end": 1440, "id": 269, "annotation": null}, {"text": "than", "start": 1441, "end": 1445, "id": 270, "annotation": null}, {"text": "55", "start": 1446, "end": 1448, "id": 271, "annotation": null}, {"text": "%", "start": 1449, "end": 1450, "id": 272, "annotation": null}, {"text": "and", "start": 1451, "end": 1454, "id": 273, "annotation": null}, {"text": "81", "start": 1455, "end": 1457, "id": 274, "annotation": null}, {"text": "%", "start": 1458, "end": 1459, "id": 275, "annotation": null}, {"text": "of", "start": 1460, "end": 1462, "id": 276, "annotation": null}, {"text": "COD", "start": 1463, "end": 1466, "id": 277, "annotation": null}, {"text": "content", "start": 1467, "end": 1474, "id": 278, "annotation": null}, {"text": "of", "start": 1475, "end": 1477, "id": 279, "annotation": null}, {"text": "the", "start": 1478, "end": 1481, "id": 280, "annotation": null}, {"text": "LAB", "start": 1482, "end": 1485, "id": 281, "annotation": null}, {"text": "industrial", "start": 1486, "end": 1496, "id": 282, "annotation": null}, {"text": "wastewater", "start": 1497, "end": 1507, "id": 283, "annotation": null}, {"text": "was", "start": 1508, "end": 1511, "id": 284, "annotation": null}, {"text": "mineralized", "start": 1512, "end": 1523, "id": 285, "annotation": null}, {"text": "under", "start": 1524, "end": 1529, "id": 286, "annotation": null}, {"text": "visible", "start": 1530, "end": 1537, "id": 287, "annotation": null}, {"text": "light", "start": 1538, "end": 1543, "id": 288, "annotation": null}, {"text": "and", "start": 1544, "end": 1547, "id": 289, "annotation": null}, {"text": "UV", "start": 1548, "end": 1550, "id": 290, "annotation": null}, {"text": "irradiation", "start": 1551, "end": 1562, "id": 291, "annotation": null}, {"text": ",", "start": 1563, "end": 1564, "id": 292, "annotation": null}, {"text": "respectively", "start": 1565, "end": 1577, "id": 293, "annotation": null}, {"text": "at", "start": 1578, "end": 1580, "id": 294, "annotation": null}, {"text": "optimum", "start": 1581, "end": 1588, "id": 295, "annotation": null}, {"text": "condition", "start": 1589, "end": 1598, "id": 296, "annotation": null}, {"text": "(", "start": 1599, "end": 1600, "id": 297, "annotation": null}, {"text": "COD", "start": 1601, "end": 1604, "id": 298, "annotation": null}, {"text": "of", "start": 1605, "end": 1607, "id": 299, "annotation": null}, {"text": "200mg", "start": 1608, "end": 1613, "id": 300, "annotation": null}, {"text": "/", "start": 1614, "end": 1615, "id": 301, "annotation": null}, {"text": "l", "start": 1616, "end": 1617, "id": 302, "annotation": null}, {"text": ",", "start": 1618, "end": 1619, "id": 303, "annotation": null}, {"text": "catalyst", "start": 1620, "end": 1628, "id": 304, "annotation": null}, {"text": "loading", "start": 1629, "end": 1636, "id": 305, "annotation": null}, {"text": "of", "start": 1637, "end": 1639, "id": 306, "annotation": null}, {"text": "1.5g", "start": 1640, "end": 1644, "id": 307, "annotation": null}, {"text": "/", "start": 1645, "end": 1646, "id": 308, "annotation": null}, {"text": "l", "start": 1647, "end": 1648, "id": 309, "annotation": null}, {"text": "and", "start": 1649, "end": 1652, "id": 310, "annotation": null}, {"text": "pH", "start": 1653, "end": 1655, "id": 311, "annotation": null}, {"text": "of", "start": 1656, "end": 1658, "id": 312, "annotation": null}, {"text": "3", "start": 1659, "end": 1660, "id": 313, "annotation": null}, {"text": ")", "start": 1661, "end": 1662, "id": 314, "annotation": null}, {"text": ".", "start": 1663, "end": 1664, "id": 315, "annotation": null}], [{"text": "The", "start": 1665, "end": 1668, "id": 316, "annotation": null}, {"text": "BOD5", "start": 1669, "end": 1673, "id": 317, "annotation": null}, {"text": "/", "start": 1674, "end": 1675, "id": 318, "annotation": null}, {"text": "COD", "start": 1676, "end": 1679, "id": 319, "annotation": null}, {"text": "ratio", "start": 1680, "end": 1685, "id": 320, "annotation": null}, {"text": "for", "start": 1686, "end": 1689, "id": 321, "annotation": null}, {"text": "the", "start": 1690, "end": 1693, "id": 322, "annotation": null}, {"text": "remaining", "start": 1694, "end": 1703, "id": 323, "annotation": null}, {"text": "COD", "start": 1704, "end": 1707, "id": 324, "annotation": null}, {"text": "was", "start": 1708, "end": 1711, "id": 325, "annotation": null}, {"text": "obtained", "start": 1712, "end": 1720, "id": 326, "annotation": null}, {"text": "to", "start": 1721, "end": 1723, "id": 327, "annotation": null}, {"text": "be", "start": 1724, "end": 1726, "id": 328, "annotation": null}, {"text": "about", "start": 1727, "end": 1732, "id": 329, "annotation": null}, {"text": "0.4", "start": 1733, "end": 1736, "id": 330, "annotation": null}, {"text": "which", "start": 1737, "end": 1742, "id": 331, "annotation": null}, {"text": "indicates", "start": 1743, "end": 1752, "id": 332, "annotation": null}, {"text": "higher", "start": 1753, "end": 1759, "id": 333, "annotation": null}, {"text": "biodegradability", "start": 1760, "end": 1776, "id": 334, "annotation": null}, {"text": "of", "start": 1777, "end": 1779, "id": 335, "annotation": null}, {"text": "the", "start": 1780, "end": 1783, "id": 336, "annotation": null}, {"text": "treated", "start": 1784, "end": 1791, "id": 337, "annotation": null}, {"text": "effluent", "start": 1792, "end": 1800, "id": 338, "annotation": null}, {"text": "in", "start": 1801, "end": 1803, "id": 339, "annotation": null}, {"text": "comparison", "start": 1804, "end": 1814, "id": 340, "annotation": null}, {"text": "with", "start": 1815, "end": 1819, "id": 341, "annotation": null}, {"text": "the", "start": 1820, "end": 1823, "id": 342, "annotation": null}, {"text": "raw", "start": 1824, "end": 1827, "id": 343, "annotation": null}, {"text": "wastewater", "start": 1828, "end": 1838, "id": 344, "annotation": null}, {"text": ".", "start": 1839, "end": 1840, "id": 345, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Electrochemical inactivation of cyanobacteria using boron-doped diamond (BDD) electrode were comprehensively investigated in this study. The pulse amplitude modulated (PAM) fluorometry, flow cytometry, and confocal laser scanning microscopy (CLSM) were used to characterize the photosynthetic capacity and cell integrity of Microcystis aeruginosa. Persulfate is in-situ generated and activated during the process and responsible for the inactivation of M. aeruginosa. The inactivation efficiency increases along with the increase of applied currents. Additionally, a kinetic model based on a sequence of two consecutive irreversible first-order processes was developed to simulate the release and degradation of microcystins (MCLR). The model was able to successfully predict the concentration of extracellular, intracellular and total MCLR under different applied currents and extended exposure time.", "meta": {"doi": "10.1016/j.jhazmat.2017.12.023"}, "_input_hash": 358866528, "_task_hash": 257332975, "tokens": [[{"text": "Electrochemical", "start": 0, "end": 15, "id": 0, "annotation": null}, {"text": "inactivation", "start": 16, "end": 28, "id": 1, "annotation": null}, {"text": "of", "start": 29, "end": 31, "id": 2, "annotation": null}, {"text": "cyanobacteria", "start": 32, "end": 45, "id": 3, "annotation": null}, {"text": "using", "start": 46, "end": 51, "id": 4, "annotation": null}, {"text": "boron", "start": 52, "end": 57, "id": 5, "annotation": "DOPANT"}, {"text": "-", "start": 58, "end": 59, "id": 6, "annotation": null}, {"text": "doped", "start": 60, "end": 65, "id": 7, "annotation": null}, {"text": "diamond", "start": 66, "end": 73, "id": 8, "annotation": "BASEMAT"}, {"text": "(", "start": 74, "end": 75, "id": 9, "annotation": null}, {"text": "BDD", "start": 76, "end": 79, "id": 10, "annotation": null}, {"text": ")", "start": 80, "end": 81, "id": 11, "annotation": null}, {"text": "electrode", "start": 82, "end": 91, "id": 12, "annotation": null}, {"text": "were", "start": 92, "end": 96, "id": 13, "annotation": null}, {"text": "comprehensively", "start": 97, "end": 112, "id": 14, "annotation": null}, {"text": "investigated", "start": 113, "end": 125, "id": 15, "annotation": null}, {"text": "in", "start": 126, "end": 128, "id": 16, "annotation": null}, {"text": "this", "start": 129, "end": 133, "id": 17, "annotation": null}, {"text": "study", "start": 134, "end": 139, "id": 18, "annotation": null}, {"text": ".", "start": 140, "end": 141, "id": 19, "annotation": null}], [{"text": "The", "start": 142, "end": 145, "id": 20, "annotation": null}, {"text": "pulse", "start": 146, "end": 151, "id": 21, "annotation": null}, {"text": "amplitude", "start": 152, "end": 161, "id": 22, "annotation": null}, {"text": "modulated", "start": 162, "end": 171, "id": 23, "annotation": null}, {"text": "(", "start": 172, "end": 173, "id": 24, "annotation": null}, {"text": "PAM", "start": 174, "end": 177, "id": 25, "annotation": null}, {"text": ")", "start": 178, "end": 179, "id": 26, "annotation": null}, {"text": "fluorometry", "start": 180, "end": 191, "id": 27, "annotation": null}, {"text": ",", "start": 192, "end": 193, "id": 28, "annotation": null}, {"text": "flow", "start": 194, "end": 198, "id": 29, "annotation": null}, {"text": "cytometry", "start": 199, "end": 208, "id": 30, "annotation": null}, {"text": ",", "start": 209, "end": 210, "id": 31, "annotation": null}, {"text": "and", "start": 211, "end": 214, "id": 32, "annotation": null}, {"text": "confocal", "start": 215, "end": 223, "id": 33, "annotation": null}, {"text": "laser", "start": 224, "end": 229, "id": 34, "annotation": null}, {"text": "scanning", "start": 230, "end": 238, "id": 35, "annotation": null}, {"text": "microscopy", "start": 239, "end": 249, "id": 36, "annotation": null}, {"text": "(", "start": 250, "end": 251, "id": 37, "annotation": null}, {"text": "CLSM", "start": 252, "end": 256, "id": 38, "annotation": null}, {"text": ")", "start": 257, "end": 258, "id": 39, "annotation": null}, {"text": "were", "start": 259, "end": 263, "id": 40, "annotation": null}, {"text": "used", "start": 264, "end": 268, "id": 41, "annotation": null}, {"text": "to", "start": 269, "end": 271, "id": 42, "annotation": null}, {"text": "characterize", "start": 272, "end": 284, "id": 43, "annotation": null}, {"text": "the", "start": 285, "end": 288, "id": 44, "annotation": null}, {"text": "photosynthetic", "start": 289, "end": 303, "id": 45, "annotation": null}, {"text": "capacity", "start": 304, "end": 312, "id": 46, "annotation": null}, {"text": "and", "start": 313, "end": 316, "id": 47, "annotation": null}, {"text": "cell", "start": 317, "end": 321, "id": 48, "annotation": null}, {"text": "integrity", "start": 322, "end": 331, "id": 49, "annotation": null}, {"text": "of", "start": 332, "end": 334, "id": 50, "annotation": null}, {"text": "Microcystis", "start": 335, "end": 346, "id": 51, "annotation": null}, {"text": "aeruginosa", "start": 347, "end": 357, "id": 52, "annotation": null}, {"text": ".", "start": 358, "end": 359, "id": 53, "annotation": null}], [{"text": "Persulfate", "start": 360, "end": 370, "id": 54, "annotation": null}, {"text": "is", "start": 371, "end": 373, "id": 55, "annotation": null}, {"text": "in", "start": 374, "end": 376, "id": 56, "annotation": null}, {"text": "-", "start": 377, "end": 378, "id": 57, "annotation": null}, {"text": "situ", "start": 379, "end": 383, "id": 58, "annotation": null}, {"text": "generated", "start": 384, "end": 393, "id": 59, "annotation": null}, {"text": "and", "start": 394, "end": 397, "id": 60, "annotation": null}, {"text": "activated", "start": 398, "end": 407, "id": 61, "annotation": null}, {"text": "during", "start": 408, "end": 414, "id": 62, "annotation": null}, {"text": "the", "start": 415, "end": 418, "id": 63, "annotation": null}, {"text": "process", "start": 419, "end": 426, "id": 64, "annotation": null}, {"text": "and", "start": 427, "end": 430, "id": 65, "annotation": null}, {"text": "responsible", "start": 431, "end": 442, "id": 66, "annotation": null}, {"text": "for", "start": 443, "end": 446, "id": 67, "annotation": null}, {"text": "the", "start": 447, "end": 450, "id": 68, "annotation": null}, {"text": "inactivation", "start": 451, "end": 463, "id": 69, "annotation": null}, {"text": "of", "start": 464, "end": 466, "id": 70, "annotation": null}, {"text": "M.", "start": 467, "end": 469, "id": 71, "annotation": null}, {"text": "aeruginosa", "start": 470, "end": 480, "id": 72, "annotation": null}, {"text": ".", "start": 481, "end": 482, "id": 73, "annotation": null}], [{"text": "The", "start": 483, "end": 486, "id": 74, "annotation": null}, {"text": "inactivation", "start": 487, "end": 499, "id": 75, "annotation": null}, {"text": "efficiency", "start": 500, "end": 510, "id": 76, "annotation": null}, {"text": "increases", "start": 511, "end": 520, "id": 77, "annotation": null}, {"text": "along", "start": 521, "end": 526, "id": 78, "annotation": null}, {"text": "with", "start": 527, "end": 531, "id": 79, "annotation": null}, {"text": "the", "start": 532, "end": 535, "id": 80, "annotation": null}, {"text": "increase", "start": 536, "end": 544, "id": 81, "annotation": null}, {"text": "of", "start": 545, "end": 547, "id": 82, "annotation": null}, {"text": "applied", "start": 548, "end": 555, "id": 83, "annotation": null}, {"text": "currents", "start": 556, "end": 564, "id": 84, "annotation": null}, {"text": ".", "start": 565, "end": 566, "id": 85, "annotation": null}], [{"text": "Additionally", "start": 567, "end": 579, "id": 86, "annotation": null}, {"text": ",", "start": 580, "end": 581, "id": 87, "annotation": null}, {"text": "a", "start": 582, "end": 583, "id": 88, "annotation": null}, {"text": "kinetic", "start": 584, "end": 591, "id": 89, "annotation": null}, {"text": "model", "start": 592, "end": 597, "id": 90, "annotation": null}, {"text": "based", "start": 598, "end": 603, "id": 91, "annotation": null}, {"text": "on", "start": 604, "end": 606, "id": 92, "annotation": null}, {"text": "a", "start": 607, "end": 608, "id": 93, "annotation": null}, {"text": "sequence", "start": 609, "end": 617, "id": 94, "annotation": null}, {"text": "of", "start": 618, "end": 620, "id": 95, "annotation": null}, {"text": "two", "start": 621, "end": 624, "id": 96, "annotation": null}, {"text": "consecutive", "start": 625, "end": 636, "id": 97, "annotation": null}, {"text": "irreversible", "start": 637, "end": 649, "id": 98, "annotation": null}, {"text": "first", "start": 650, "end": 655, "id": 99, "annotation": null}, {"text": "-", "start": 656, "end": 657, "id": 100, "annotation": null}, {"text": "order", "start": 658, "end": 663, "id": 101, "annotation": null}, {"text": "processes", "start": 664, "end": 673, "id": 102, "annotation": null}, {"text": "was", "start": 674, "end": 677, "id": 103, "annotation": null}, {"text": "developed", "start": 678, "end": 687, "id": 104, "annotation": null}, {"text": "to", "start": 688, "end": 690, "id": 105, "annotation": null}, {"text": "simulate", "start": 691, "end": 699, "id": 106, "annotation": null}, {"text": "the", "start": 700, "end": 703, "id": 107, "annotation": null}, {"text": "release", "start": 704, "end": 711, "id": 108, "annotation": null}, {"text": "and", "start": 712, "end": 715, "id": 109, "annotation": null}, {"text": "degradation", "start": 716, "end": 727, "id": 110, "annotation": null}, {"text": "of", "start": 728, "end": 730, "id": 111, "annotation": null}, {"text": "microcystins", "start": 731, "end": 743, "id": 112, "annotation": null}, {"text": "(", "start": 744, "end": 745, "id": 113, "annotation": null}, {"text": "MCLR", "start": 746, "end": 750, "id": 114, "annotation": null}, {"text": ")", "start": 751, "end": 752, "id": 115, "annotation": null}, {"text": ".", "start": 753, "end": 754, "id": 116, "annotation": null}], [{"text": "The", "start": 755, "end": 758, "id": 117, "annotation": null}, {"text": "model", "start": 759, "end": 764, "id": 118, "annotation": null}, {"text": "was", "start": 765, "end": 768, "id": 119, "annotation": null}, {"text": "able", "start": 769, "end": 773, "id": 120, "annotation": null}, {"text": "to", "start": 774, "end": 776, "id": 121, "annotation": null}, {"text": "successfully", "start": 777, "end": 789, "id": 122, "annotation": null}, {"text": "predict", "start": 790, "end": 797, "id": 123, "annotation": null}, {"text": "the", "start": 798, "end": 801, "id": 124, "annotation": null}, {"text": "concentration", "start": 802, "end": 815, "id": 125, "annotation": null}, {"text": "of", "start": 816, "end": 818, "id": 126, "annotation": null}, {"text": "extracellular", "start": 819, "end": 832, "id": 127, "annotation": null}, {"text": ",", "start": 833, "end": 834, "id": 128, "annotation": null}, {"text": "intracellular", "start": 835, "end": 848, "id": 129, "annotation": null}, {"text": "and", "start": 849, "end": 852, "id": 130, "annotation": null}, {"text": "total", "start": 853, "end": 858, "id": 131, "annotation": null}, {"text": "MCLR", "start": 859, "end": 863, "id": 132, "annotation": null}, {"text": "under", "start": 864, "end": 869, "id": 133, "annotation": null}, {"text": "different", "start": 870, "end": 879, "id": 134, "annotation": null}, {"text": "applied", "start": 880, "end": 887, "id": 135, "annotation": null}, {"text": "currents", "start": 888, "end": 896, "id": 136, "annotation": null}, {"text": "and", "start": 897, "end": 900, "id": 137, "annotation": null}, {"text": "extended", "start": 901, "end": 909, "id": 138, "annotation": null}, {"text": "exposure", "start": 910, "end": 918, "id": 139, "annotation": null}, {"text": "time", "start": 919, "end": 923, "id": 140, "annotation": null}, {"text": ".", "start": 924, "end": 925, "id": 141, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Magnetite nanoparticles, which are coated with oleic acid in a hexane solution and exhibit an average diameter of 7.7nm, were embedded in a porous silicon (PS) matrix by immersion under defined parameters (e.g. concentration, temperature, time). The porous silicon matrix is prepared by anodization of a highly n-doped silicon wafer in an aqueous HF-solution. Magnetic characterization of the samples has been performed by SQUID-magnetometry. The superparamagnetic behaviour of the magnetite nanoparticles is represented by temperature-dependent magnetization measurements. Zero field (ZFC)/field cooled (FC) experiments indicate magnetic interactions between the particles. For the infiltration into the PS-templates different concentrations of the magnetite nanoparticles are used and magnetization measurements are performed in respect with magnetic interactions between the particles. The achieved porous silicon/magnetite specimens are not only interesting due to their transition between superparamagnetic and ferromagnetic behaviour, and thus for magnetic applications but also because of the non-toxicity of both materials giving the opportunity to employ the system in medical applications as drug delivery or in medical diagnostics.", "meta": {"doi": "10.1016/j.jmmm.2009.03.022"}, "_input_hash": -377500117, "_task_hash": -1212469168, "tokens": [[{"text": "Magnetite", "start": 0, "end": 9, "id": 0, "annotation": null}, {"text": "nanoparticles", "start": 10, "end": 23, "id": 1, "annotation": null}, {"text": ",", "start": 24, "end": 25, "id": 2, "annotation": null}, {"text": "which", "start": 26, "end": 31, "id": 3, "annotation": null}, {"text": "are", "start": 32, "end": 35, "id": 4, "annotation": null}, {"text": "coated", "start": 36, "end": 42, "id": 5, "annotation": null}, {"text": "with", "start": 43, "end": 47, "id": 6, "annotation": null}, {"text": "oleic", "start": 48, "end": 53, "id": 7, "annotation": null}, {"text": "acid", "start": 54, "end": 58, "id": 8, "annotation": null}, {"text": "in", "start": 59, "end": 61, "id": 9, "annotation": null}, {"text": "a", "start": 62, "end": 63, "id": 10, "annotation": null}, {"text": "hexane", "start": 64, "end": 70, "id": 11, "annotation": null}, {"text": "solution", "start": 71, "end": 79, "id": 12, "annotation": null}, {"text": "and", "start": 80, "end": 83, "id": 13, "annotation": null}, {"text": "exhibit", "start": 84, "end": 91, "id": 14, "annotation": null}, {"text": "an", "start": 92, "end": 94, "id": 15, "annotation": null}, {"text": "average", "start": 95, "end": 102, "id": 16, "annotation": null}, {"text": "diameter", "start": 103, "end": 111, "id": 17, "annotation": null}, {"text": "of", "start": 112, "end": 114, "id": 18, "annotation": null}, {"text": "7.7", "start": 115, "end": 118, "id": 19, "annotation": null}, {"text": "nm", "start": 119, "end": 121, "id": 20, "annotation": null}, {"text": ",", "start": 122, "end": 123, "id": 21, "annotation": null}, {"text": "were", "start": 124, "end": 128, "id": 22, "annotation": null}, {"text": "embedded", "start": 129, "end": 137, "id": 23, "annotation": null}, {"text": "in", "start": 138, "end": 140, "id": 24, "annotation": null}, {"text": "a", "start": 141, "end": 142, "id": 25, "annotation": null}, {"text": "porous", "start": 143, "end": 149, "id": 26, "annotation": null}, {"text": "silicon", "start": 150, "end": 157, "id": 27, "annotation": null}, {"text": "(", "start": 158, "end": 159, "id": 28, "annotation": null}, {"text": "PS", "start": 160, "end": 162, "id": 29, "annotation": null}, {"text": ")", "start": 163, "end": 164, "id": 30, "annotation": null}, {"text": "matrix", "start": 165, "end": 171, "id": 31, "annotation": null}, {"text": "by", "start": 172, "end": 174, "id": 32, "annotation": null}, {"text": "immersion", "start": 175, "end": 184, "id": 33, "annotation": null}, {"text": "under", "start": 185, "end": 190, "id": 34, "annotation": null}, {"text": "defined", "start": 191, "end": 198, "id": 35, "annotation": null}, {"text": "parameters", "start": 199, "end": 209, "id": 36, "annotation": null}, {"text": "(", "start": 210, "end": 211, "id": 37, "annotation": null}, {"text": "e.g.", "start": 212, "end": 216, "id": 38, "annotation": null}, {"text": "concentration", "start": 217, "end": 230, "id": 39, "annotation": null}, {"text": ",", "start": 231, "end": 232, "id": 40, "annotation": null}, {"text": "temperature", "start": 233, "end": 244, "id": 41, "annotation": null}, {"text": ",", "start": 245, "end": 246, "id": 42, "annotation": null}, {"text": "time", "start": 247, "end": 251, "id": 43, "annotation": null}, {"text": ")", "start": 252, "end": 253, "id": 44, "annotation": null}, {"text": ".", "start": 254, "end": 255, "id": 45, "annotation": null}], [{"text": "The", "start": 256, "end": 259, "id": 46, "annotation": null}, {"text": "porous", "start": 260, "end": 266, "id": 47, "annotation": null}, {"text": "silicon", "start": 267, "end": 274, "id": 48, "annotation": null}, {"text": "matrix", "start": 275, "end": 281, "id": 49, "annotation": null}, {"text": "is", "start": 282, "end": 284, "id": 50, "annotation": null}, {"text": "prepared", "start": 285, "end": 293, "id": 51, "annotation": null}, {"text": "by", "start": 294, "end": 296, "id": 52, "annotation": null}, {"text": "anodization", "start": 297, "end": 308, "id": 53, "annotation": null}, {"text": "of", "start": 309, "end": 311, "id": 54, "annotation": null}, {"text": "a", "start": 312, "end": 313, "id": 55, "annotation": null}, {"text": "highly", "start": 314, "end": 320, "id": 56, "annotation": null}, {"text": "n", "start": 321, "end": 322, "id": 57, "annotation": "DOPANT"}, {"text": "-", "start": 323, "end": 324, "id": 58, "annotation": null}, {"text": "doped", "start": 325, "end": 330, "id": 59, "annotation": null}, {"text": "silicon", "start": 331, "end": 338, "id": 60, "annotation": "BASEMAT"}, {"text": "wafer", "start": 339, "end": 344, "id": 61, "annotation": null}, {"text": "in", "start": 345, "end": 347, "id": 62, "annotation": null}, {"text": "an", "start": 348, "end": 350, "id": 63, "annotation": null}, {"text": "aqueous", "start": 351, "end": 358, "id": 64, "annotation": null}, {"text": "HF", "start": 359, "end": 361, "id": 65, "annotation": null}, {"text": "-", "start": 362, "end": 363, "id": 66, "annotation": null}, {"text": "solution", "start": 364, "end": 372, "id": 67, "annotation": null}, {"text": ".", "start": 373, "end": 374, "id": 68, "annotation": null}], [{"text": "Magnetic", "start": 375, "end": 383, "id": 69, "annotation": null}, {"text": "characterization", "start": 384, "end": 400, "id": 70, "annotation": null}, {"text": "of", "start": 401, "end": 403, "id": 71, "annotation": null}, {"text": "the", "start": 404, "end": 407, "id": 72, "annotation": null}, {"text": "samples", "start": 408, "end": 415, "id": 73, "annotation": null}, {"text": "has", "start": 416, "end": 419, "id": 74, "annotation": null}, {"text": "been", "start": 420, "end": 424, "id": 75, "annotation": null}, {"text": "performed", "start": 425, "end": 434, "id": 76, "annotation": null}, {"text": "by", "start": 435, "end": 437, "id": 77, "annotation": null}, {"text": "SQUID", "start": 438, "end": 443, "id": 78, "annotation": null}, {"text": "-", "start": 444, "end": 445, "id": 79, "annotation": null}, {"text": "magnetometry", "start": 446, "end": 458, "id": 80, "annotation": null}, {"text": ".", "start": 459, "end": 460, "id": 81, "annotation": null}], [{"text": "The", "start": 461, "end": 464, "id": 82, "annotation": null}, {"text": "superparamagnetic", "start": 465, "end": 482, "id": 83, "annotation": null}, {"text": "behaviour", "start": 483, "end": 492, "id": 84, "annotation": null}, {"text": "of", "start": 493, "end": 495, "id": 85, "annotation": null}, {"text": "the", "start": 496, "end": 499, "id": 86, "annotation": null}, {"text": "magnetite", "start": 500, "end": 509, "id": 87, "annotation": null}, {"text": "nanoparticles", "start": 510, "end": 523, "id": 88, "annotation": null}, {"text": "is", "start": 524, "end": 526, "id": 89, "annotation": null}, {"text": "represented", "start": 527, "end": 538, "id": 90, "annotation": null}, {"text": "by", "start": 539, "end": 541, "id": 91, "annotation": null}, {"text": "temperature", "start": 542, "end": 553, "id": 92, "annotation": null}, {"text": "-", "start": 554, "end": 555, "id": 93, "annotation": null}, {"text": "dependent", "start": 556, "end": 565, "id": 94, "annotation": null}, {"text": "magnetization", "start": 566, "end": 579, "id": 95, "annotation": null}, {"text": "measurements", "start": 580, "end": 592, "id": 96, "annotation": null}, {"text": ".", "start": 593, "end": 594, "id": 97, "annotation": null}], [{"text": "Zero", "start": 595, "end": 599, "id": 98, "annotation": null}, {"text": "field", "start": 600, "end": 605, "id": 99, "annotation": null}, {"text": "(", "start": 606, "end": 607, "id": 100, "annotation": null}, {"text": "ZFC)/field", "start": 608, "end": 618, "id": 101, "annotation": null}, {"text": "cooled", "start": 619, "end": 625, "id": 102, "annotation": null}, {"text": "(", "start": 626, "end": 627, "id": 103, "annotation": null}, {"text": "FC", "start": 628, "end": 630, "id": 104, "annotation": null}, {"text": ")", "start": 631, "end": 632, "id": 105, "annotation": null}, {"text": "experiments", "start": 633, "end": 644, "id": 106, "annotation": null}, {"text": "indicate", "start": 645, "end": 653, "id": 107, "annotation": null}, {"text": "magnetic", "start": 654, "end": 662, "id": 108, "annotation": null}, {"text": "interactions", "start": 663, "end": 675, "id": 109, "annotation": null}, {"text": "between", "start": 676, "end": 683, "id": 110, "annotation": null}, {"text": "the", "start": 684, "end": 687, "id": 111, "annotation": null}, {"text": "particles", "start": 688, "end": 697, "id": 112, "annotation": null}, {"text": ".", "start": 698, "end": 699, "id": 113, "annotation": null}], [{"text": "For", "start": 700, "end": 703, "id": 114, "annotation": null}, {"text": "the", "start": 704, "end": 707, "id": 115, "annotation": null}, {"text": "infiltration", "start": 708, "end": 720, "id": 116, "annotation": null}, {"text": "into", "start": 721, "end": 725, "id": 117, "annotation": null}, {"text": "the", "start": 726, "end": 729, "id": 118, "annotation": null}, {"text": "PS", "start": 730, "end": 732, "id": 119, "annotation": null}, {"text": "-", "start": 733, "end": 734, "id": 120, "annotation": null}, {"text": "templates", "start": 735, "end": 744, "id": 121, "annotation": null}, {"text": "different", "start": 745, "end": 754, "id": 122, "annotation": null}, {"text": "concentrations", "start": 755, "end": 769, "id": 123, "annotation": null}, {"text": "of", "start": 770, "end": 772, "id": 124, "annotation": null}, {"text": "the", "start": 773, "end": 776, "id": 125, "annotation": null}, {"text": "magnetite", "start": 777, "end": 786, "id": 126, "annotation": null}, {"text": "nanoparticles", "start": 787, "end": 800, "id": 127, "annotation": null}, {"text": "are", "start": 801, "end": 804, "id": 128, "annotation": null}, {"text": "used", "start": 805, "end": 809, "id": 129, "annotation": null}, {"text": "and", "start": 810, "end": 813, "id": 130, "annotation": null}, {"text": "magnetization", "start": 814, "end": 827, "id": 131, "annotation": null}, {"text": "measurements", "start": 828, "end": 840, "id": 132, "annotation": null}, {"text": "are", "start": 841, "end": 844, "id": 133, "annotation": null}, {"text": "performed", "start": 845, "end": 854, "id": 134, "annotation": null}, {"text": "in", "start": 855, "end": 857, "id": 135, "annotation": null}, {"text": "respect", "start": 858, "end": 865, "id": 136, "annotation": null}, {"text": "with", "start": 866, "end": 870, "id": 137, "annotation": null}, {"text": "magnetic", "start": 871, "end": 879, "id": 138, "annotation": null}, {"text": "interactions", "start": 880, "end": 892, "id": 139, "annotation": null}, {"text": "between", "start": 893, "end": 900, "id": 140, "annotation": null}, {"text": "the", "start": 901, "end": 904, "id": 141, "annotation": null}, {"text": "particles", "start": 905, "end": 914, "id": 142, "annotation": null}, {"text": ".", "start": 915, "end": 916, "id": 143, "annotation": null}], [{"text": "The", "start": 917, "end": 920, "id": 144, "annotation": null}, {"text": "achieved", "start": 921, "end": 929, "id": 145, "annotation": null}, {"text": "porous", "start": 930, "end": 936, "id": 146, "annotation": null}, {"text": "silicon", "start": 937, "end": 944, "id": 147, "annotation": null}, {"text": "/", "start": 945, "end": 946, "id": 148, "annotation": null}, {"text": "magnetite", "start": 947, "end": 956, "id": 149, "annotation": null}, {"text": "specimens", "start": 957, "end": 966, "id": 150, "annotation": null}, {"text": "are", "start": 967, "end": 970, "id": 151, "annotation": null}, {"text": "not", "start": 971, "end": 974, "id": 152, "annotation": null}, {"text": "only", "start": 975, "end": 979, "id": 153, "annotation": null}, {"text": "interesting", "start": 980, "end": 991, "id": 154, "annotation": null}, {"text": "due", "start": 992, "end": 995, "id": 155, "annotation": null}, {"text": "to", "start": 996, "end": 998, "id": 156, "annotation": null}, {"text": "their", "start": 999, "end": 1004, "id": 157, "annotation": null}, {"text": "transition", "start": 1005, "end": 1015, "id": 158, "annotation": null}, {"text": "between", "start": 1016, "end": 1023, "id": 159, "annotation": null}, {"text": "superparamagnetic", "start": 1024, "end": 1041, "id": 160, "annotation": null}, {"text": "and", "start": 1042, "end": 1045, "id": 161, "annotation": null}, {"text": "ferromagnetic", "start": 1046, "end": 1059, "id": 162, "annotation": null}, {"text": "behaviour", "start": 1060, "end": 1069, "id": 163, "annotation": null}, {"text": ",", "start": 1070, "end": 1071, "id": 164, "annotation": null}, {"text": "and", "start": 1072, "end": 1075, "id": 165, "annotation": null}, {"text": "thus", "start": 1076, "end": 1080, "id": 166, "annotation": null}, {"text": "for", "start": 1081, "end": 1084, "id": 167, "annotation": null}, {"text": "magnetic", "start": 1085, "end": 1093, "id": 168, "annotation": null}, {"text": "applications", "start": 1094, "end": 1106, "id": 169, "annotation": null}, {"text": "but", "start": 1107, "end": 1110, "id": 170, "annotation": null}, {"text": "also", "start": 1111, "end": 1115, "id": 171, "annotation": null}, {"text": "because", "start": 1116, "end": 1123, "id": 172, "annotation": null}, {"text": "of", "start": 1124, "end": 1126, "id": 173, "annotation": null}, {"text": "the", "start": 1127, "end": 1130, "id": 174, "annotation": null}, {"text": "non", "start": 1131, "end": 1134, "id": 175, "annotation": null}, {"text": "-", "start": 1135, "end": 1136, "id": 176, "annotation": null}, {"text": "toxicity", "start": 1137, "end": 1145, "id": 177, "annotation": null}, {"text": "of", "start": 1146, "end": 1148, "id": 178, "annotation": null}, {"text": "both", "start": 1149, "end": 1153, "id": 179, "annotation": null}, {"text": "materials", "start": 1154, "end": 1163, "id": 180, "annotation": null}, {"text": "giving", "start": 1164, "end": 1170, "id": 181, "annotation": null}, {"text": "the", "start": 1171, "end": 1174, "id": 182, "annotation": null}, {"text": "opportunity", "start": 1175, "end": 1186, "id": 183, "annotation": null}, {"text": "to", "start": 1187, "end": 1189, "id": 184, "annotation": null}, {"text": "employ", "start": 1190, "end": 1196, "id": 185, "annotation": null}, {"text": "the", "start": 1197, "end": 1200, "id": 186, "annotation": null}, {"text": "system", "start": 1201, "end": 1207, "id": 187, "annotation": null}, {"text": "in", "start": 1208, "end": 1210, "id": 188, "annotation": null}, {"text": "medical", "start": 1211, "end": 1218, "id": 189, "annotation": null}, {"text": "applications", "start": 1219, "end": 1231, "id": 190, "annotation": null}, {"text": "as", "start": 1232, "end": 1234, "id": 191, "annotation": null}, {"text": "drug", "start": 1235, "end": 1239, "id": 192, "annotation": null}, {"text": "delivery", "start": 1240, "end": 1248, "id": 193, "annotation": null}, {"text": "or", "start": 1249, "end": 1251, "id": 194, "annotation": null}, {"text": "in", "start": 1252, "end": 1254, "id": 195, "annotation": null}, {"text": "medical", "start": 1255, "end": 1262, "id": 196, "annotation": null}, {"text": "diagnostics", "start": 1263, "end": 1274, "id": 197, "annotation": null}, {"text": ".", "start": 1275, "end": 1276, "id": 198, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "A novel electrode of nickel-doped mesoporous carbon (NMC) is prepared from furfuryl alcohol and firstly developed for use in electrochemical capacitors. The electrochemical performance of NMC/AC capacitor is systematically investigated and characterized by BET and BJH methods for determining surface area and pore size distribution, respectively. This new NMC/AC shows a high specific capacitance, high energy and power density due to its large surface area and bulk conductivity. Its electrochemical characteristics are investigated through cyclic voltammetry (CV), electrochemical impedance spectroscopy and charge\u2013discharge (C/D) tests. The NMC/AC has a specific capacitance of 144.3Fg\u22121, higher than that of a pure activated carbon (AC)-based EDLC (ca. 105Fg\u22121). It can be a promising candidate for a new energy storage material for supercapacitor.", "meta": {"doi": "10.1016/j.jallcom.2011.07.043"}, "_input_hash": 657979906, "_task_hash": -2139923375, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "novel", "start": 2, "end": 7, "id": 1, "annotation": null}, {"text": "electrode", "start": 8, "end": 17, "id": 2, "annotation": null}, {"text": "of", "start": 18, "end": 20, "id": 3, "annotation": null}, {"text": "nickel", "start": 21, "end": 27, "id": 4, "annotation": "DOPANT"}, {"text": "-", "start": 28, "end": 29, "id": 5, "annotation": null}, {"text": "doped", "start": 30, "end": 35, "id": 6, "annotation": null}, {"text": "mesoporous", "start": 36, "end": 46, "id": 7, "annotation": null}, {"text": "carbon", "start": 47, "end": 53, "id": 8, "annotation": "BASEMAT"}, {"text": "(", "start": 54, "end": 55, "id": 9, "annotation": null}, {"text": "NMC", "start": 56, "end": 59, "id": 10, "annotation": null}, {"text": ")", "start": 60, "end": 61, "id": 11, "annotation": null}, {"text": "is", "start": 62, "end": 64, "id": 12, "annotation": null}, {"text": "prepared", "start": 65, "end": 73, "id": 13, "annotation": null}, {"text": "from", "start": 74, "end": 78, "id": 14, "annotation": null}, {"text": "furfuryl", "start": 79, "end": 87, "id": 15, "annotation": null}, {"text": "alcohol", "start": 88, "end": 95, "id": 16, "annotation": null}, {"text": "and", "start": 96, "end": 99, "id": 17, "annotation": null}, {"text": "firstly", "start": 100, "end": 107, "id": 18, "annotation": null}, {"text": "developed", "start": 108, "end": 117, "id": 19, "annotation": null}, {"text": "for", "start": 118, "end": 121, "id": 20, "annotation": null}, {"text": "use", "start": 122, "end": 125, "id": 21, "annotation": null}, {"text": "in", "start": 126, "end": 128, "id": 22, "annotation": null}, {"text": "electrochemical", "start": 129, "end": 144, "id": 23, "annotation": null}, {"text": "capacitors", "start": 145, "end": 155, "id": 24, "annotation": null}, {"text": ".", "start": 156, "end": 157, "id": 25, "annotation": null}], [{"text": "The", "start": 158, "end": 161, "id": 26, "annotation": null}, {"text": "electrochemical", "start": 162, "end": 177, "id": 27, "annotation": null}, {"text": "performance", "start": 178, "end": 189, "id": 28, "annotation": null}, {"text": "of", "start": 190, "end": 192, "id": 29, "annotation": null}, {"text": "NMC", "start": 193, "end": 196, "id": 30, "annotation": null}, {"text": "/", "start": 197, "end": 198, "id": 31, "annotation": null}, {"text": "AC", "start": 199, "end": 201, "id": 32, "annotation": null}, {"text": "capacitor", "start": 202, "end": 211, "id": 33, "annotation": null}, {"text": "is", "start": 212, "end": 214, "id": 34, "annotation": null}, {"text": "systematically", "start": 215, "end": 229, "id": 35, "annotation": null}, {"text": "investigated", "start": 230, "end": 242, "id": 36, "annotation": null}, {"text": "and", "start": 243, "end": 246, "id": 37, "annotation": null}, {"text": "characterized", "start": 247, "end": 260, "id": 38, "annotation": null}, {"text": "by", "start": 261, "end": 263, "id": 39, "annotation": null}, {"text": "BET", "start": 264, "end": 267, "id": 40, "annotation": null}, {"text": "and", "start": 268, "end": 271, "id": 41, "annotation": null}, {"text": "BJH", "start": 272, "end": 275, "id": 42, "annotation": null}, {"text": "methods", "start": 276, "end": 283, "id": 43, "annotation": null}, {"text": "for", "start": 284, "end": 287, "id": 44, "annotation": null}, {"text": "determining", "start": 288, "end": 299, "id": 45, "annotation": null}, {"text": "surface", "start": 300, "end": 307, "id": 46, "annotation": null}, {"text": "area", "start": 308, "end": 312, "id": 47, "annotation": null}, {"text": "and", "start": 313, "end": 316, "id": 48, "annotation": null}, {"text": "pore", "start": 317, "end": 321, "id": 49, "annotation": null}, {"text": "size", "start": 322, "end": 326, "id": 50, "annotation": null}, {"text": "distribution", "start": 327, "end": 339, "id": 51, "annotation": null}, {"text": ",", "start": 340, "end": 341, "id": 52, "annotation": null}, {"text": "respectively", "start": 342, "end": 354, "id": 53, "annotation": null}, {"text": ".", "start": 355, "end": 356, "id": 54, "annotation": null}], [{"text": "This", "start": 357, "end": 361, "id": 55, "annotation": null}, {"text": "new", "start": 362, "end": 365, "id": 56, "annotation": null}, {"text": "NMC", "start": 366, "end": 369, "id": 57, "annotation": null}, {"text": "/", "start": 370, "end": 371, "id": 58, "annotation": null}, {"text": "AC", "start": 372, "end": 374, "id": 59, "annotation": null}, {"text": "shows", "start": 375, "end": 380, "id": 60, "annotation": null}, {"text": "a", "start": 381, "end": 382, "id": 61, "annotation": null}, {"text": "high", "start": 383, "end": 387, "id": 62, "annotation": null}, {"text": "specific", "start": 388, "end": 396, "id": 63, "annotation": null}, {"text": "capacitance", "start": 397, "end": 408, "id": 64, "annotation": null}, {"text": ",", "start": 409, "end": 410, "id": 65, "annotation": null}, {"text": "high", "start": 411, "end": 415, "id": 66, "annotation": null}, {"text": "energy", "start": 416, "end": 422, "id": 67, "annotation": null}, {"text": "and", "start": 423, "end": 426, "id": 68, "annotation": null}, {"text": "power", "start": 427, "end": 432, "id": 69, "annotation": null}, {"text": "density", "start": 433, "end": 440, "id": 70, "annotation": null}, {"text": "due", "start": 441, "end": 444, "id": 71, "annotation": null}, {"text": "to", "start": 445, "end": 447, "id": 72, "annotation": null}, {"text": "its", "start": 448, "end": 451, "id": 73, "annotation": null}, {"text": "large", "start": 452, "end": 457, "id": 74, "annotation": null}, {"text": "surface", "start": 458, "end": 465, "id": 75, "annotation": null}, {"text": "area", "start": 466, "end": 470, "id": 76, "annotation": null}, {"text": "and", "start": 471, "end": 474, "id": 77, "annotation": null}, {"text": "bulk", "start": 475, "end": 479, "id": 78, "annotation": null}, {"text": "conductivity", "start": 480, "end": 492, "id": 79, "annotation": null}, {"text": ".", "start": 493, "end": 494, "id": 80, "annotation": null}], [{"text": "Its", "start": 495, "end": 498, "id": 81, "annotation": null}, {"text": "electrochemical", "start": 499, "end": 514, "id": 82, "annotation": null}, {"text": "characteristics", "start": 515, "end": 530, "id": 83, "annotation": null}, {"text": "are", "start": 531, "end": 534, "id": 84, "annotation": null}, {"text": "investigated", "start": 535, "end": 547, "id": 85, "annotation": null}, {"text": "through", "start": 548, "end": 555, "id": 86, "annotation": null}, {"text": "cyclic", "start": 556, "end": 562, "id": 87, "annotation": null}, {"text": "voltammetry", "start": 563, "end": 574, "id": 88, "annotation": null}, {"text": "(", "start": 575, "end": 576, "id": 89, "annotation": null}, {"text": "CV", "start": 577, "end": 579, "id": 90, "annotation": null}, {"text": ")", "start": 580, "end": 581, "id": 91, "annotation": null}, {"text": ",", "start": 582, "end": 583, "id": 92, "annotation": null}, {"text": "electrochemical", "start": 584, "end": 599, "id": 93, "annotation": null}, {"text": "impedance", "start": 600, "end": 609, "id": 94, "annotation": null}, {"text": "spectroscopy", "start": 610, "end": 622, "id": 95, "annotation": null}, {"text": "and", "start": 623, "end": 626, "id": 96, "annotation": null}, {"text": "charge", "start": 627, "end": 633, "id": 97, "annotation": null}, {"text": "\u2013", "start": 634, "end": 635, "id": 98, "annotation": null}, {"text": "discharge", "start": 636, "end": 645, "id": 99, "annotation": null}, {"text": "(", "start": 646, "end": 647, "id": 100, "annotation": null}, {"text": "C", "start": 648, "end": 649, "id": 101, "annotation": null}, {"text": "/", "start": 650, "end": 651, "id": 102, "annotation": null}, {"text": "D", "start": 652, "end": 653, "id": 103, "annotation": null}, {"text": ")", "start": 654, "end": 655, "id": 104, "annotation": null}, {"text": "tests", "start": 656, "end": 661, "id": 105, "annotation": null}, {"text": ".", "start": 662, "end": 663, "id": 106, "annotation": null}], [{"text": "The", "start": 664, "end": 667, "id": 107, "annotation": null}, {"text": "NMC", "start": 668, "end": 671, "id": 108, "annotation": null}, {"text": "/", "start": 672, "end": 673, "id": 109, "annotation": null}, {"text": "AC", "start": 674, "end": 676, "id": 110, "annotation": null}, {"text": "has", "start": 677, "end": 680, "id": 111, "annotation": null}, {"text": "a", "start": 681, "end": 682, "id": 112, "annotation": null}, {"text": "specific", "start": 683, "end": 691, "id": 113, "annotation": null}, {"text": "capacitance", "start": 692, "end": 703, "id": 114, "annotation": null}, {"text": "of", "start": 704, "end": 706, "id": 115, "annotation": null}, {"text": "144.3Fg\u22121", "start": 707, "end": 716, "id": 116, "annotation": null}, {"text": ",", "start": 717, "end": 718, "id": 117, "annotation": null}, {"text": "higher", "start": 719, "end": 725, "id": 118, "annotation": null}, {"text": "than", "start": 726, "end": 730, "id": 119, "annotation": null}, {"text": "that", "start": 731, "end": 735, "id": 120, "annotation": null}, {"text": "of", "start": 736, "end": 738, "id": 121, "annotation": null}, {"text": "a", "start": 739, "end": 740, "id": 122, "annotation": null}, {"text": "pure", "start": 741, "end": 745, "id": 123, "annotation": null}, {"text": "activated", "start": 746, "end": 755, "id": 124, "annotation": null}, {"text": "carbon", "start": 756, "end": 762, "id": 125, "annotation": null}, {"text": "(", "start": 763, "end": 764, "id": 126, "annotation": null}, {"text": "AC)-based", "start": 765, "end": 774, "id": 127, "annotation": null}, {"text": "EDLC", "start": 775, "end": 779, "id": 128, "annotation": null}, {"text": "(", "start": 780, "end": 781, "id": 129, "annotation": null}, {"text": "ca", "start": 782, "end": 784, "id": 130, "annotation": null}, {"text": ".", "start": 785, "end": 786, "id": 131, "annotation": null}], [{"text": "105Fg\u22121", "start": 787, "end": 794, "id": 132, "annotation": null}, {"text": ")", "start": 795, "end": 796, "id": 133, "annotation": null}, {"text": ".", "start": 797, "end": 798, "id": 134, "annotation": null}], [{"text": "It", "start": 799, "end": 801, "id": 135, "annotation": null}, {"text": "can", "start": 802, "end": 805, "id": 136, "annotation": null}, {"text": "be", "start": 806, "end": 808, "id": 137, "annotation": null}, {"text": "a", "start": 809, "end": 810, "id": 138, "annotation": null}, {"text": "promising", "start": 811, "end": 820, "id": 139, "annotation": null}, {"text": "candidate", "start": 821, "end": 830, "id": 140, "annotation": null}, {"text": "for", "start": 831, "end": 834, "id": 141, "annotation": null}, {"text": "a", "start": 835, "end": 836, "id": 142, "annotation": null}, {"text": "new", "start": 837, "end": 840, "id": 143, "annotation": null}, {"text": "energy", "start": 841, "end": 847, "id": 144, "annotation": null}, {"text": "storage", "start": 848, "end": 855, "id": 145, "annotation": null}, {"text": "material", "start": 856, "end": 864, "id": 146, "annotation": null}, {"text": "for", "start": 865, "end": 868, "id": 147, "annotation": null}, {"text": "supercapacitor", "start": 869, "end": 883, "id": 148, "annotation": null}, {"text": ".", "start": 884, "end": 885, "id": 149, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Electrochemical impedance measurements were carried out on symmetrical nickel/gadolinia-doped ceria test cells. For H2 , N2 , and H2O mixtures, the diffusion length obtained based on the impedance measurements is on the order of centimeters. This high value of the diffusion length is attributed to the flow field in the reactor. It is suggested that a detailed analysis of the gas flow field inside the test reactor is essential before interpreting the impedance measurements with various solid oxide fuel cell test configurations.", "meta": {"doi": "10.1149/1.3231490"}, "_input_hash": 1000006030, "_task_hash": 1953527890, "tokens": [[{"text": "Electrochemical", "start": 0, "end": 15, "id": 0, "annotation": null}, {"text": "impedance", "start": 16, "end": 25, "id": 1, "annotation": null}, {"text": "measurements", "start": 26, "end": 38, "id": 2, "annotation": null}, {"text": "were", "start": 39, "end": 43, "id": 3, "annotation": null}, {"text": "carried", "start": 44, "end": 51, "id": 4, "annotation": null}, {"text": "out", "start": 52, "end": 55, "id": 5, "annotation": null}, {"text": "on", "start": 56, "end": 58, "id": 6, "annotation": null}, {"text": "symmetrical", "start": 59, "end": 70, "id": 7, "annotation": null}, {"text": "nickel", "start": 71, "end": 77, "id": 8, "annotation": "DOPANT"}, {"text": "/", "start": 78, "end": 79, "id": 9, "annotation": null}, {"text": "gadolinia", "start": 80, "end": 89, "id": 10, "annotation": "DOPANT"}, {"text": "-", "start": 90, "end": 91, "id": 11, "annotation": null}, {"text": "doped", "start": 92, "end": 97, "id": 12, "annotation": null}, {"text": "ceria", "start": 98, "end": 103, "id": 13, "annotation": "BASEMAT"}, {"text": "test", "start": 104, "end": 108, "id": 14, "annotation": null}, {"text": "cells", "start": 109, "end": 114, "id": 15, "annotation": null}, {"text": ".", "start": 115, "end": 116, "id": 16, "annotation": null}], [{"text": "For", "start": 117, "end": 120, "id": 17, "annotation": null}, {"text": "H2", "start": 121, "end": 123, "id": 18, "annotation": null}, {"text": ",", "start": 124, "end": 125, "id": 19, "annotation": null}, {"text": "N2", "start": 126, "end": 128, "id": 20, "annotation": null}, {"text": ",", "start": 129, "end": 130, "id": 21, "annotation": null}, {"text": "and", "start": 131, "end": 134, "id": 22, "annotation": null}, {"text": "H2O", "start": 135, "end": 138, "id": 23, "annotation": null}, {"text": "mixtures", "start": 139, "end": 147, "id": 24, "annotation": null}, {"text": ",", "start": 148, "end": 149, "id": 25, "annotation": null}, {"text": "the", "start": 150, "end": 153, "id": 26, "annotation": null}, {"text": "diffusion", "start": 154, "end": 163, "id": 27, "annotation": null}, {"text": "length", "start": 164, "end": 170, "id": 28, "annotation": null}, {"text": "obtained", "start": 171, "end": 179, "id": 29, "annotation": null}, {"text": "based", "start": 180, "end": 185, "id": 30, "annotation": null}, {"text": "on", "start": 186, "end": 188, "id": 31, "annotation": null}, {"text": "the", "start": 189, "end": 192, "id": 32, "annotation": null}, {"text": "impedance", "start": 193, "end": 202, "id": 33, "annotation": null}, {"text": "measurements", "start": 203, "end": 215, "id": 34, "annotation": null}, {"text": "is", "start": 216, "end": 218, "id": 35, "annotation": null}, {"text": "on", "start": 219, "end": 221, "id": 36, "annotation": null}, {"text": "the", "start": 222, "end": 225, "id": 37, "annotation": null}, {"text": "order", "start": 226, "end": 231, "id": 38, "annotation": null}, {"text": "of", "start": 232, "end": 234, "id": 39, "annotation": null}, {"text": "centimeters", "start": 235, "end": 246, "id": 40, "annotation": null}, {"text": ".", "start": 247, "end": 248, "id": 41, "annotation": null}], [{"text": "This", "start": 249, "end": 253, "id": 42, "annotation": null}, {"text": "high", "start": 254, "end": 258, "id": 43, "annotation": null}, {"text": "value", "start": 259, "end": 264, "id": 44, "annotation": null}, {"text": "of", "start": 265, "end": 267, "id": 45, "annotation": null}, {"text": "the", "start": 268, "end": 271, "id": 46, "annotation": null}, {"text": "diffusion", "start": 272, "end": 281, "id": 47, "annotation": null}, {"text": "length", "start": 282, "end": 288, "id": 48, "annotation": null}, {"text": "is", "start": 289, "end": 291, "id": 49, "annotation": null}, {"text": "attributed", "start": 292, "end": 302, "id": 50, "annotation": null}, {"text": "to", "start": 303, "end": 305, "id": 51, "annotation": null}, {"text": "the", "start": 306, "end": 309, "id": 52, "annotation": null}, {"text": "flow", "start": 310, "end": 314, "id": 53, "annotation": null}, {"text": "field", "start": 315, "end": 320, "id": 54, "annotation": null}, {"text": "in", "start": 321, "end": 323, "id": 55, "annotation": null}, {"text": "the", "start": 324, "end": 327, "id": 56, "annotation": null}, {"text": "reactor", "start": 328, "end": 335, "id": 57, "annotation": null}, {"text": ".", "start": 336, "end": 337, "id": 58, "annotation": null}], [{"text": "It", "start": 338, "end": 340, "id": 59, "annotation": null}, {"text": "is", "start": 341, "end": 343, "id": 60, "annotation": null}, {"text": "suggested", "start": 344, "end": 353, "id": 61, "annotation": null}, {"text": "that", "start": 354, "end": 358, "id": 62, "annotation": null}, {"text": "a", "start": 359, "end": 360, "id": 63, "annotation": null}, {"text": "detailed", "start": 361, "end": 369, "id": 64, "annotation": null}, {"text": "analysis", "start": 370, "end": 378, "id": 65, "annotation": null}, {"text": "of", "start": 379, "end": 381, "id": 66, "annotation": null}, {"text": "the", "start": 382, "end": 385, "id": 67, "annotation": null}, {"text": "gas", "start": 386, "end": 389, "id": 68, "annotation": null}, {"text": "flow", "start": 390, "end": 394, "id": 69, "annotation": null}, {"text": "field", "start": 395, "end": 400, "id": 70, "annotation": null}, {"text": "inside", "start": 401, "end": 407, "id": 71, "annotation": null}, {"text": "the", "start": 408, "end": 411, "id": 72, "annotation": null}, {"text": "test", "start": 412, "end": 416, "id": 73, "annotation": null}, {"text": "reactor", "start": 417, "end": 424, "id": 74, "annotation": null}, {"text": "is", "start": 425, "end": 427, "id": 75, "annotation": null}, {"text": "essential", "start": 428, "end": 437, "id": 76, "annotation": null}, {"text": "before", "start": 438, "end": 444, "id": 77, "annotation": null}, {"text": "interpreting", "start": 445, "end": 457, "id": 78, "annotation": null}, {"text": "the", "start": 458, "end": 461, "id": 79, "annotation": null}, {"text": "impedance", "start": 462, "end": 471, "id": 80, "annotation": null}, {"text": "measurements", "start": 472, "end": 484, "id": 81, "annotation": null}, {"text": "with", "start": 485, "end": 489, "id": 82, "annotation": null}, {"text": "various", "start": 490, "end": 497, "id": 83, "annotation": null}, {"text": "solid", "start": 498, "end": 503, "id": 84, "annotation": null}, {"text": "oxide", "start": 504, "end": 509, "id": 85, "annotation": null}, {"text": "fuel", "start": 510, "end": 514, "id": 86, "annotation": null}, {"text": "cell", "start": 515, "end": 519, "id": 87, "annotation": null}, {"text": "test", "start": 520, "end": 524, "id": 88, "annotation": null}, {"text": "configurations", "start": 525, "end": 539, "id": 89, "annotation": null}, {"text": ".", "start": 540, "end": 541, "id": 90, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Magnetic ions such as Fe3+ are usually doped into ferroelectric oxides in order to obtain multiferroic properties. Fe3+ as an acceptor dopant (substituted for Ti4+) in BaTiO3 ceramics usually promotes the formation of the hexagonal phase of BaTiO3. Based on the consideration of charge compensation for the acceptor dopant Fe3+ in Fe-doped BaTiO3 ceramics, we introduced donor dopants into the ceramics, and investigated the effects of donor doping on the phase structures and magnetic properties of the ceramics. We demonstrated that the phase structures of the Fe-doped BaTiO3 can be readily controlled by donor doping. In this work, we prepared Fe-doped BaTiO3 ceramics at a doping concentration of 10at% (or Ba(Ti0.9Fe0.1)O3) as a model system, and employed Nb5+ as the donor dopant for a charge compensation for the acceptor dopant Fe3+. It was found that the formation of the hexagonal phase in Ba(Ti0.9Fe0.1)O3 was consistently suppressed by Nb5+ donor doping. The magnetic properties of the Ba(Ti0.9Fe0.1)O3 ceramics were strongly influenced by Nb5+ doping.", "meta": {"doi": "10.1016/j.jallcom.2009.12.031"}, "_input_hash": 1492139290, "_task_hash": -1998945179, "tokens": [[{"text": "Magnetic", "start": 0, "end": 8, "id": 0, "annotation": "DOPANT"}, {"text": "ions", "start": 9, "end": 13, "id": 1, "annotation": "DOPANT"}, {"text": "such", "start": 14, "end": 18, "id": 2, "annotation": null}, {"text": "as", "start": 19, "end": 21, "id": 3, "annotation": null}, {"text": "Fe3", "start": 22, "end": 25, "id": 4, "annotation": "DOPANT"}, {"text": "+", "start": 26, "end": 27, "id": 5, "annotation": "DOPANT"}, {"text": "are", "start": 28, "end": 31, "id": 6, "annotation": null}, {"text": "usually", "start": 32, "end": 39, "id": 7, "annotation": null}, {"text": "doped", "start": 40, "end": 45, "id": 8, "annotation": null}, {"text": "into", "start": 46, "end": 50, "id": 9, "annotation": null}, {"text": "ferroelectric", "start": 51, "end": 64, "id": 10, "annotation": "BASEMAT"}, {"text": "oxides", "start": 65, "end": 71, "id": 11, "annotation": "BASEMAT"}, {"text": "in", "start": 72, "end": 74, "id": 12, "annotation": null}, {"text": "order", "start": 75, "end": 80, "id": 13, "annotation": null}, {"text": "to", "start": 81, "end": 83, "id": 14, "annotation": null}, {"text": "obtain", "start": 84, "end": 90, "id": 15, "annotation": null}, {"text": "multiferroic", "start": 91, "end": 103, "id": 16, "annotation": null}, {"text": "properties", "start": 104, "end": 114, "id": 17, "annotation": null}, {"text": ".", "start": 115, "end": 116, "id": 18, "annotation": null}], [{"text": "Fe3", "start": 117, "end": 120, "id": 19, "annotation": "DOPANT"}, {"text": "+", "start": 121, "end": 122, "id": 20, "annotation": "DOPANT"}, {"text": "as", "start": 123, "end": 125, "id": 21, "annotation": null}, {"text": "an", "start": 126, "end": 128, "id": 22, "annotation": null}, {"text": "acceptor", "start": 129, "end": 137, "id": 23, "annotation": null}, {"text": "dopant", "start": 138, "end": 144, "id": 24, "annotation": null}, {"text": "(", "start": 145, "end": 146, "id": 25, "annotation": null}, {"text": "substituted", "start": 147, "end": 158, "id": 26, "annotation": null}, {"text": "for", "start": 159, "end": 162, "id": 27, "annotation": null}, {"text": "Ti4", "start": 163, "end": 166, "id": 28, "annotation": null}, {"text": "+", "start": 167, "end": 168, "id": 29, "annotation": null}, {"text": ")", "start": 169, "end": 170, "id": 30, "annotation": null}, {"text": "in", "start": 171, "end": 173, "id": 31, "annotation": null}, {"text": "BaTiO3", "start": 174, "end": 180, "id": 32, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 181, "end": 189, "id": 33, "annotation": null}, {"text": "usually", "start": 190, "end": 197, "id": 34, "annotation": null}, {"text": "promotes", "start": 198, "end": 206, "id": 35, "annotation": null}, {"text": "the", "start": 207, "end": 210, "id": 36, "annotation": null}, {"text": "formation", "start": 211, "end": 220, "id": 37, "annotation": null}, {"text": "of", "start": 221, "end": 223, "id": 38, "annotation": null}, {"text": "the", "start": 224, "end": 227, "id": 39, "annotation": null}, {"text": "hexagonal", "start": 228, "end": 237, "id": 40, "annotation": null}, {"text": "phase", "start": 238, "end": 243, "id": 41, "annotation": null}, {"text": "of", "start": 244, "end": 246, "id": 42, "annotation": null}, {"text": "BaTiO3", "start": 247, "end": 253, "id": 43, "annotation": null}, {"text": ".", "start": 254, "end": 255, "id": 44, "annotation": null}], [{"text": "Based", "start": 256, "end": 261, "id": 45, "annotation": null}, {"text": "on", "start": 262, "end": 264, "id": 46, "annotation": null}, {"text": "the", "start": 265, "end": 268, "id": 47, "annotation": null}, {"text": "consideration", "start": 269, "end": 282, "id": 48, "annotation": null}, {"text": "of", "start": 283, "end": 285, "id": 49, "annotation": null}, {"text": "charge", "start": 286, "end": 292, "id": 50, "annotation": null}, {"text": "compensation", "start": 293, "end": 305, "id": 51, "annotation": null}, {"text": "for", "start": 306, "end": 309, "id": 52, "annotation": null}, {"text": "the", "start": 310, "end": 313, "id": 53, "annotation": null}, {"text": "acceptor", "start": 314, "end": 322, "id": 54, "annotation": null}, {"text": "dopant", "start": 323, "end": 329, "id": 55, "annotation": null}, {"text": "Fe3", "start": 330, "end": 333, "id": 56, "annotation": "DOPANT"}, {"text": "+", "start": 334, "end": 335, "id": 57, "annotation": "DOPANT"}, {"text": "in", "start": 336, "end": 338, "id": 58, "annotation": null}, {"text": "Fe", "start": 339, "end": 341, "id": 59, "annotation": "DOPANT"}, {"text": "-", "start": 342, "end": 343, "id": 60, "annotation": null}, {"text": "doped", "start": 344, "end": 349, "id": 61, "annotation": null}, {"text": "BaTiO3", "start": 350, "end": 356, "id": 62, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 357, "end": 365, "id": 63, "annotation": null}, {"text": ",", "start": 366, "end": 367, "id": 64, "annotation": null}, {"text": "we", "start": 368, "end": 370, "id": 65, "annotation": null}, {"text": "introduced", "start": 371, "end": 381, "id": 66, "annotation": null}, {"text": "donor", "start": 382, "end": 387, "id": 67, "annotation": "DOPANT"}, {"text": "dopants", "start": 388, "end": 395, "id": 68, "annotation": null}, {"text": "into", "start": 396, "end": 400, "id": 69, "annotation": null}, {"text": "the", "start": 401, "end": 404, "id": 70, "annotation": null}, {"text": "ceramics", "start": 405, "end": 413, "id": 71, "annotation": "BASEMAT"}, {"text": ",", "start": 414, "end": 415, "id": 72, "annotation": null}, {"text": "and", "start": 416, "end": 419, "id": 73, "annotation": null}, {"text": "investigated", "start": 420, "end": 432, "id": 74, "annotation": null}, {"text": "the", "start": 433, "end": 436, "id": 75, "annotation": null}, {"text": "effects", "start": 437, "end": 444, "id": 76, "annotation": null}, {"text": "of", "start": 445, "end": 447, "id": 77, "annotation": null}, {"text": "donor", "start": 448, "end": 453, "id": 78, "annotation": "DOPANT"}, {"text": "doping", "start": 454, "end": 460, "id": 79, "annotation": null}, {"text": "on", "start": 461, "end": 463, "id": 80, "annotation": null}, {"text": "the", "start": 464, "end": 467, "id": 81, "annotation": null}, {"text": "phase", "start": 468, "end": 473, "id": 82, "annotation": null}, {"text": "structures", "start": 474, "end": 484, "id": 83, "annotation": null}, {"text": "and", "start": 485, "end": 488, "id": 84, "annotation": null}, {"text": "magnetic", "start": 489, "end": 497, "id": 85, "annotation": null}, {"text": "properties", "start": 498, "end": 508, "id": 86, "annotation": null}, {"text": "of", "start": 509, "end": 511, "id": 87, "annotation": null}, {"text": "the", "start": 512, "end": 515, "id": 88, "annotation": null}, {"text": "ceramics", "start": 516, "end": 524, "id": 89, "annotation": "BASEMAT"}, {"text": ".", "start": 525, "end": 526, "id": 90, "annotation": null}], [{"text": "We", "start": 527, "end": 529, "id": 91, "annotation": null}, {"text": "demonstrated", "start": 530, "end": 542, "id": 92, "annotation": null}, {"text": "that", "start": 543, "end": 547, "id": 93, "annotation": null}, {"text": "the", "start": 548, "end": 551, "id": 94, "annotation": null}, {"text": "phase", "start": 552, "end": 557, "id": 95, "annotation": null}, {"text": "structures", "start": 558, "end": 568, "id": 96, "annotation": null}, {"text": "of", "start": 569, "end": 571, "id": 97, "annotation": null}, {"text": "the", "start": 572, "end": 575, "id": 98, "annotation": null}, {"text": "Fe", "start": 576, "end": 578, "id": 99, "annotation": "DOPANT"}, {"text": "-", "start": 579, "end": 580, "id": 100, "annotation": null}, {"text": "doped", "start": 581, "end": 586, "id": 101, "annotation": null}, {"text": "BaTiO3", "start": 587, "end": 593, "id": 102, "annotation": "BASEMAT"}, {"text": "can", "start": 594, "end": 597, "id": 103, "annotation": null}, {"text": "be", "start": 598, "end": 600, "id": 104, "annotation": null}, {"text": "readily", "start": 601, "end": 608, "id": 105, "annotation": null}, {"text": "controlled", "start": 609, "end": 619, "id": 106, "annotation": null}, {"text": "by", "start": 620, "end": 622, "id": 107, "annotation": null}, {"text": "donor", "start": 623, "end": 628, "id": 108, "annotation": "DOPANT"}, {"text": "doping", "start": 629, "end": 635, "id": 109, "annotation": null}, {"text": ".", "start": 636, "end": 637, "id": 110, "annotation": null}], [{"text": "In", "start": 638, "end": 640, "id": 111, "annotation": null}, {"text": "this", "start": 641, "end": 645, "id": 112, "annotation": null}, {"text": "work", "start": 646, "end": 650, "id": 113, "annotation": null}, {"text": ",", "start": 651, "end": 652, "id": 114, "annotation": null}, {"text": "we", "start": 653, "end": 655, "id": 115, "annotation": null}, {"text": "prepared", "start": 656, "end": 664, "id": 116, "annotation": null}, {"text": "Fe", "start": 665, "end": 667, "id": 117, "annotation": "DOPANT"}, {"text": "-", "start": 668, "end": 669, "id": 118, "annotation": null}, {"text": "doped", "start": 670, "end": 675, "id": 119, "annotation": null}, {"text": "BaTiO3", "start": 676, "end": 682, "id": 120, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 683, "end": 691, "id": 121, "annotation": null}, {"text": "at", "start": 692, "end": 694, "id": 122, "annotation": null}, {"text": "a", "start": 695, "end": 696, "id": 123, "annotation": null}, {"text": "doping", "start": 697, "end": 703, "id": 124, "annotation": null}, {"text": "concentration", "start": 704, "end": 717, "id": 125, "annotation": null}, {"text": "of", "start": 718, "end": 720, "id": 126, "annotation": null}, {"text": "10at%", "start": 721, "end": 726, "id": 127, "annotation": "DOPMODQ"}, {"text": "(", "start": 727, "end": 728, "id": 128, "annotation": null}, {"text": "or", "start": 729, "end": 731, "id": 129, "annotation": null}, {"text": "Ba(Ti0.9Fe0.1)O3", "start": 732, "end": 748, "id": 130, "annotation": "BASEMAT"}, {"text": ")", "start": 749, "end": 750, "id": 131, "annotation": null}, {"text": "as", "start": 751, "end": 753, "id": 132, "annotation": null}, {"text": "a", "start": 754, "end": 755, "id": 133, "annotation": null}, {"text": "model", "start": 756, "end": 761, "id": 134, "annotation": null}, {"text": "system", "start": 762, "end": 768, "id": 135, "annotation": null}, {"text": ",", "start": 769, "end": 770, "id": 136, "annotation": null}, {"text": "and", "start": 771, "end": 774, "id": 137, "annotation": null}, {"text": "employed", "start": 775, "end": 783, "id": 138, "annotation": null}, {"text": "Nb5", "start": 784, "end": 787, "id": 139, "annotation": "DOPANT"}, {"text": "+", "start": 788, "end": 789, "id": 140, "annotation": "DOPANT"}, {"text": "as", "start": 790, "end": 792, "id": 141, "annotation": null}, {"text": "the", "start": 793, "end": 796, "id": 142, "annotation": null}, {"text": "donor", "start": 797, "end": 802, "id": 143, "annotation": null}, {"text": "dopant", "start": 803, "end": 809, "id": 144, "annotation": null}, {"text": "for", "start": 810, "end": 813, "id": 145, "annotation": null}, {"text": "a", "start": 814, "end": 815, "id": 146, "annotation": null}, {"text": "charge", "start": 816, "end": 822, "id": 147, "annotation": null}, {"text": "compensation", "start": 823, "end": 835, "id": 148, "annotation": null}, {"text": "for", "start": 836, "end": 839, "id": 149, "annotation": null}, {"text": "the", "start": 840, "end": 843, "id": 150, "annotation": null}, {"text": "acceptor", "start": 844, "end": 852, "id": 151, "annotation": null}, {"text": "dopant", "start": 853, "end": 859, "id": 152, "annotation": null}, {"text": "Fe3", "start": 860, "end": 863, "id": 153, "annotation": "DOPANT"}, {"text": "+", "start": 864, "end": 865, "id": 154, "annotation": "DOPANT"}, {"text": ".", "start": 866, "end": 867, "id": 155, "annotation": null}], [{"text": "It", "start": 868, "end": 870, "id": 156, "annotation": null}, {"text": "was", "start": 871, "end": 874, "id": 157, "annotation": null}, {"text": "found", "start": 875, "end": 880, "id": 158, "annotation": null}, {"text": "that", "start": 881, "end": 885, "id": 159, "annotation": null}, {"text": "the", "start": 886, "end": 889, "id": 160, "annotation": null}, {"text": "formation", "start": 890, "end": 899, "id": 161, "annotation": null}, {"text": "of", "start": 900, "end": 902, "id": 162, "annotation": null}, {"text": "the", "start": 903, "end": 906, "id": 163, "annotation": null}, {"text": "hexagonal", "start": 907, "end": 916, "id": 164, "annotation": null}, {"text": "phase", "start": 917, "end": 922, "id": 165, "annotation": null}, {"text": "in", "start": 923, "end": 925, "id": 166, "annotation": null}, {"text": "Ba(Ti0.9Fe0.1)O3", "start": 926, "end": 942, "id": 167, "annotation": "BASEMAT"}, {"text": "was", "start": 943, "end": 946, "id": 168, "annotation": null}, {"text": "consistently", "start": 947, "end": 959, "id": 169, "annotation": null}, {"text": "suppressed", "start": 960, "end": 970, "id": 170, "annotation": null}, {"text": "by", "start": 971, "end": 973, "id": 171, "annotation": null}, {"text": "Nb5", "start": 974, "end": 977, "id": 172, "annotation": "DOPANT"}, {"text": "+", "start": 978, "end": 979, "id": 173, "annotation": "DOPANT"}, {"text": "donor", "start": 980, "end": 985, "id": 174, "annotation": null}, {"text": "doping", "start": 986, "end": 992, "id": 175, "annotation": null}, {"text": ".", "start": 993, "end": 994, "id": 176, "annotation": null}], [{"text": "The", "start": 995, "end": 998, "id": 177, "annotation": null}, {"text": "magnetic", "start": 999, "end": 1007, "id": 178, "annotation": null}, {"text": "properties", "start": 1008, "end": 1018, "id": 179, "annotation": null}, {"text": "of", "start": 1019, "end": 1021, "id": 180, "annotation": null}, {"text": "the", "start": 1022, "end": 1025, "id": 181, "annotation": null}, {"text": "Ba(Ti0.9Fe0.1)O3", "start": 1026, "end": 1042, "id": 182, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 1043, "end": 1051, "id": 183, "annotation": null}, {"text": "were", "start": 1052, "end": 1056, "id": 184, "annotation": null}, {"text": "strongly", "start": 1057, "end": 1065, "id": 185, "annotation": null}, {"text": "influenced", "start": 1066, "end": 1076, "id": 186, "annotation": null}, {"text": "by", "start": 1077, "end": 1079, "id": 187, "annotation": null}, {"text": "Nb5", "start": 1080, "end": 1083, "id": 188, "annotation": "DOPANT"}, {"text": "+", "start": 1084, "end": 1085, "id": 189, "annotation": "DOPANT"}, {"text": "doping", "start": 1086, "end": 1092, "id": 190, "annotation": null}, {"text": ".", "start": 1093, "end": 1094, "id": 191, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "\u00a9 2018, Springer-Verlag GmbH Germany, part of Springer Nature. Abstract: We report the synthesis and luminescence properties of the pure and Al-doped photosensitive ZnO films by microwave successive ionic layer adsorption reaction. The grain textured growth along c-axis in pure ZnO thin films and those doped with Al was studied by Energy-dispersive X-ray spectroscopy. The Al-doped films show high textured grain growth and high green emission intensity. The structural analysis of the thin films by X-ray diffraction along with scanning electron microscopy and its optical properties (photoluminescence) suggest creation of oxygen vacancy during doping which is responsible for the higher grain growth. The resistance measurements on the ZnO thin films reveal its significance in sensing and such films acts as good components of intelligent solar panels in which the electrical properties can be tuned by electron beam irradiation.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Abstract", "start": 63, "end": 71, "annotation": null}, {"text": ":", "start": 71, "end": 72, "annotation": null}, {"text": "We", "start": 73, "end": 75, "annotation": null}, {"text": "report", "start": 76, "end": 82, "annotation": null}, {"text": "the", "start": 83, "end": 86, "annotation": null}, {"text": "synthesis", "start": 87, "end": 96, "annotation": null}, {"text": "and", "start": 97, "end": 100, "annotation": null}, {"text": "luminescence", "start": 101, "end": 113, "annotation": null}, {"text": "properties", "start": 114, "end": 124, "annotation": null}, {"text": "of", "start": 125, "end": 127, "annotation": null}, {"text": "the", "start": 128, "end": 131, "annotation": null}, {"text": "pure", "start": 132, "end": 136, "annotation": null}, {"text": "and", "start": 137, "end": 140, "annotation": null}, {"text": "Al", "start": 141, "end": 143, "annotation": "DOPANT"}, {"text": "-", "start": 143, "end": 144, "annotation": null}, {"text": "doped", "start": 144, "end": 149, "annotation": null}, {"text": "photosensitive", "start": 150, "end": 164, "annotation": null}, {"text": "ZnO", "start": 165, "end": 168, "annotation": "BASEMAT"}, {"text": "films", "start": 169, "end": 174, "annotation": "BASEMAT"}, {"text": "by", "start": 175, "end": 177, "annotation": null}, {"text": "microwave", "start": 178, "end": 187, "annotation": null}, {"text": "successive", "start": 188, "end": 198, "annotation": null}, {"text": "ionic", "start": 199, "end": 204, "annotation": null}, {"text": "layer", "start": 205, "end": 210, "annotation": null}, {"text": "adsorption", "start": 211, "end": 221, "annotation": null}, {"text": "reaction", "start": 222, "end": 230, "annotation": null}, {"text": ".", "start": 230, "end": 231, "annotation": null}], [{"text": "The", "start": 232, "end": 235, "annotation": null}, {"text": "grain", "start": 236, "end": 241, "annotation": null}, {"text": "textured", "start": 242, "end": 250, "annotation": null}, {"text": "growth", "start": 251, "end": 257, "annotation": null}, {"text": "along", "start": 258, "end": 263, "annotation": null}, {"text": "c-axis", "start": 264, "end": 270, "annotation": null}, {"text": "in", "start": 271, "end": 273, "annotation": null}, {"text": "pure", "start": 274, "end": 278, "annotation": null}, {"text": "ZnO", "start": 279, "end": 282, "annotation": "BASEMAT"}, {"text": "thin", "start": 283, "end": 287, "annotation": "BASEMAT"}, {"text": "films", "start": 288, "end": 293, "annotation": "BASEMAT"}, {"text": "and", "start": 294, "end": 297, "annotation": null}, {"text": "those", "start": 298, "end": 303, "annotation": null}, {"text": "doped", "start": 304, "end": 309, "annotation": null}, {"text": "with", "start": 310, "end": 314, "annotation": null}, {"text": "Al", "start": 315, "end": 317, "annotation": "DOPANT"}, {"text": "was", "start": 318, "end": 321, "annotation": null}, {"text": "studied", "start": 322, "end": 329, "annotation": null}, {"text": "by", "start": 330, "end": 332, "annotation": null}, {"text": "Energy", "start": 333, "end": 339, "annotation": null}, {"text": "-", "start": 339, "end": 340, "annotation": null}, {"text": "dispersive", "start": 340, "end": 350, "annotation": null}, {"text": "X-ray", "start": 351, "end": 356, "annotation": null}, {"text": "spectroscopy", "start": 357, "end": 369, "annotation": null}, {"text": ".", "start": 369, "end": 370, "annotation": null}], [{"text": "The", "start": 371, "end": 374, "annotation": null}, {"text": "Al", "start": 375, "end": 377, "annotation": "DOPANT"}, {"text": "-", "start": 377, "end": 378, "annotation": null}, {"text": "doped", "start": 378, "end": 383, "annotation": null}, {"text": "films", "start": 384, "end": 389, "annotation": "BASEMAT"}, {"text": "show", "start": 390, "end": 394, "annotation": null}, {"text": "high", "start": 395, "end": 399, "annotation": null}, {"text": "textured", "start": 400, "end": 408, "annotation": null}, {"text": "grain", "start": 409, "end": 414, "annotation": null}, {"text": "growth", "start": 415, "end": 421, "annotation": null}, {"text": "and", "start": 422, "end": 425, "annotation": null}, {"text": "high", "start": 426, "end": 430, "annotation": null}, {"text": "green", "start": 431, "end": 436, "annotation": null}, {"text": "emission", "start": 437, "end": 445, "annotation": null}, {"text": "intensity", "start": 446, "end": 455, "annotation": null}, {"text": ".", "start": 455, "end": 456, "annotation": null}], [{"text": "The", "start": 457, "end": 460, "annotation": null}, {"text": "structural", "start": 461, "end": 471, "annotation": null}, {"text": "analysis", "start": 472, "end": 480, "annotation": null}, {"text": "of", "start": 481, "end": 483, "annotation": null}, {"text": "the", "start": 484, "end": 487, "annotation": null}, {"text": "thin", "start": 488, "end": 492, "annotation": null}, {"text": "films", "start": 493, "end": 498, "annotation": null}, {"text": "by", "start": 499, "end": 501, "annotation": null}, {"text": "X-ray", "start": 502, "end": 507, "annotation": null}, {"text": "diffraction", "start": 508, "end": 519, "annotation": null}, {"text": "along", "start": 520, "end": 525, "annotation": null}, {"text": "with", "start": 526, "end": 530, "annotation": null}, {"text": "scanning", "start": 531, "end": 539, "annotation": null}, {"text": "electron", "start": 540, "end": 548, "annotation": null}, {"text": "microscopy", "start": 549, "end": 559, "annotation": null}, {"text": "and", "start": 560, "end": 563, "annotation": null}, {"text": "its", "start": 564, "end": 567, "annotation": null}, {"text": "optical", "start": 568, "end": 575, "annotation": null}, {"text": "properties", "start": 576, "end": 586, "annotation": null}, {"text": "(", "start": 587, "end": 588, "annotation": null}, {"text": "photoluminescence", "start": 588, "end": 605, "annotation": null}, {"text": ")", "start": 605, "end": 606, "annotation": null}, {"text": "suggest", "start": 607, "end": 614, "annotation": null}, {"text": "creation", "start": 615, "end": 623, "annotation": null}, {"text": "of", "start": 624, "end": 626, "annotation": null}, {"text": "oxygen", "start": 627, "end": 633, "annotation": null}, {"text": "vacancy", "start": 634, "end": 641, "annotation": null}, {"text": "during", "start": 642, "end": 648, "annotation": null}, {"text": "doping", "start": 649, "end": 655, "annotation": null}, {"text": "which", "start": 656, "end": 661, "annotation": null}, {"text": "is", "start": 662, "end": 664, "annotation": null}, {"text": "responsible", "start": 665, "end": 676, "annotation": null}, {"text": "for", "start": 677, "end": 680, "annotation": null}, {"text": "the", "start": 681, "end": 684, "annotation": null}, {"text": "higher", "start": 685, "end": 691, "annotation": null}, {"text": "grain", "start": 692, "end": 697, "annotation": null}, {"text": "growth", "start": 698, "end": 704, "annotation": null}, {"text": ".", "start": 704, "end": 705, "annotation": null}], [{"text": "The", "start": 706, "end": 709, "annotation": null}, {"text": "resistance", "start": 710, "end": 720, "annotation": null}, {"text": "measurements", "start": 721, "end": 733, "annotation": null}, {"text": "on", "start": 734, "end": 736, "annotation": null}, {"text": "the", "start": 737, "end": 740, "annotation": null}, {"text": "ZnO", "start": 741, "end": 744, "annotation": null}, {"text": "thin", "start": 745, "end": 749, "annotation": null}, {"text": "films", "start": 750, "end": 755, "annotation": null}, {"text": "reveal", "start": 756, "end": 762, "annotation": null}, {"text": "its", "start": 763, "end": 766, "annotation": null}, {"text": "significance", "start": 767, "end": 779, "annotation": null}, {"text": "in", "start": 780, "end": 782, "annotation": null}, {"text": "sensing", "start": 783, "end": 790, "annotation": null}, {"text": "and", "start": 791, "end": 794, "annotation": null}, {"text": "such", "start": 795, "end": 799, "annotation": null}, {"text": "films", "start": 800, "end": 805, "annotation": null}, {"text": "acts", "start": 806, "end": 810, "annotation": null}, {"text": "as", "start": 811, "end": 813, "annotation": null}, {"text": "good", "start": 814, "end": 818, "annotation": null}, {"text": "components", "start": 819, "end": 829, "annotation": null}, {"text": "of", "start": 830, "end": 832, "annotation": null}, {"text": "intelligent", "start": 833, "end": 844, "annotation": null}, {"text": "solar", "start": 845, "end": 850, "annotation": null}, {"text": "panels", "start": 851, "end": 857, "annotation": null}, {"text": "in", "start": 858, "end": 860, "annotation": null}, {"text": "which", "start": 861, "end": 866, "annotation": null}, {"text": "the", "start": 867, "end": 870, "annotation": null}, {"text": "electrical", "start": 871, "end": 881, "annotation": null}, {"text": "properties", "start": 882, "end": 892, "annotation": null}, {"text": "can", "start": 893, "end": 896, "annotation": null}, {"text": "be", "start": 897, "end": 899, "annotation": null}, {"text": "tuned", "start": 900, "end": 905, "annotation": null}, {"text": "by", "start": 906, "end": 908, "annotation": null}, {"text": "electron", "start": 909, "end": 917, "annotation": null}, {"text": "beam", "start": 918, "end": 922, "annotation": null}, {"text": "irradiation", "start": 923, "end": 934, "annotation": null}, {"text": ".", "start": 934, "end": 935, "annotation": null}]]} +{"remark": "doping_annt3", "text": "\u00a9 2018, Springer-Verlag GmbH Germany, part of Springer Nature. Abstract: We report the synthesis and luminescence properties of the pure and Al-doped photosensitive ZnO films by microwave successive ionic layer adsorption reaction. The grain textured growth along c-axis in pure ZnO thin films and those doped with Al was studied by Energy-dispersive X-ray spectroscopy. The Al-doped films show high textured grain growth and high green emission intensity. The structural analysis of the thin films by X-ray diffraction along with scanning electron microscopy and its optical properties (photoluminescence) suggest creation of oxygen vacancy during doping which is responsible for the higher grain growth. The resistance measurements on the ZnO thin films reveal its significance in sensing and such films acts as good components of intelligent solar panels in which the electrical properties can be tuned by electron beam irradiation.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Abstract", "start": 63, "end": 71, "annotation": null}, {"text": ":", "start": 71, "end": 72, "annotation": null}, {"text": "We", "start": 73, "end": 75, "annotation": null}, {"text": "report", "start": 76, "end": 82, "annotation": null}, {"text": "the", "start": 83, "end": 86, "annotation": null}, {"text": "synthesis", "start": 87, "end": 96, "annotation": null}, {"text": "and", "start": 97, "end": 100, "annotation": null}, {"text": "luminescence", "start": 101, "end": 113, "annotation": null}, {"text": "properties", "start": 114, "end": 124, "annotation": null}, {"text": "of", "start": 125, "end": 127, "annotation": null}, {"text": "the", "start": 128, "end": 131, "annotation": null}, {"text": "pure", "start": 132, "end": 136, "annotation": null}, {"text": "and", "start": 137, "end": 140, "annotation": null}, {"text": "Al", "start": 141, "end": 143, "annotation": "DOPANT"}, {"text": "-", "start": 143, "end": 144, "annotation": null}, {"text": "doped", "start": 144, "end": 149, "annotation": null}, {"text": "photosensitive", "start": 150, "end": 164, "annotation": null}, {"text": "ZnO", "start": 165, "end": 168, "annotation": "BASEMAT"}, {"text": "films", "start": 169, "end": 174, "annotation": "BASEMAT"}, {"text": "by", "start": 175, "end": 177, "annotation": null}, {"text": "microwave", "start": 178, "end": 187, "annotation": null}, {"text": "successive", "start": 188, "end": 198, "annotation": null}, {"text": "ionic", "start": 199, "end": 204, "annotation": null}, {"text": "layer", "start": 205, "end": 210, "annotation": null}, {"text": "adsorption", "start": 211, "end": 221, "annotation": null}, {"text": "reaction", "start": 222, "end": 230, "annotation": null}, {"text": ".", "start": 230, "end": 231, "annotation": null}], [{"text": "The", "start": 232, "end": 235, "annotation": null}, {"text": "grain", "start": 236, "end": 241, "annotation": null}, {"text": "textured", "start": 242, "end": 250, "annotation": null}, {"text": "growth", "start": 251, "end": 257, "annotation": null}, {"text": "along", "start": 258, "end": 263, "annotation": null}, {"text": "c-axis", "start": 264, "end": 270, "annotation": null}, {"text": "in", "start": 271, "end": 273, "annotation": null}, {"text": "pure", "start": 274, "end": 278, "annotation": null}, {"text": "ZnO", "start": 279, "end": 282, "annotation": "BASEMAT"}, {"text": "thin", "start": 283, "end": 287, "annotation": "BASEMAT"}, {"text": "films", "start": 288, "end": 293, "annotation": "BASEMAT"}, {"text": "and", "start": 294, "end": 297, "annotation": null}, {"text": "those", "start": 298, "end": 303, "annotation": null}, {"text": "doped", "start": 304, "end": 309, "annotation": null}, {"text": "with", "start": 310, "end": 314, "annotation": null}, {"text": "Al", "start": 315, "end": 317, "annotation": "DOPANT"}, {"text": "was", "start": 318, "end": 321, "annotation": null}, {"text": "studied", "start": 322, "end": 329, "annotation": null}, {"text": "by", "start": 330, "end": 332, "annotation": null}, {"text": "Energy", "start": 333, "end": 339, "annotation": null}, {"text": "-", "start": 339, "end": 340, "annotation": null}, {"text": "dispersive", "start": 340, "end": 350, "annotation": null}, {"text": "X-ray", "start": 351, "end": 356, "annotation": null}, {"text": "spectroscopy", "start": 357, "end": 369, "annotation": null}, {"text": ".", "start": 369, "end": 370, "annotation": null}], [{"text": "The", "start": 371, "end": 374, "annotation": null}, {"text": "Al", "start": 375, "end": 377, "annotation": "DOPANT"}, {"text": "-", "start": 377, "end": 378, "annotation": null}, {"text": "doped", "start": 378, "end": 383, "annotation": null}, {"text": "films", "start": 384, "end": 389, "annotation": "BASEMAT"}, {"text": "show", "start": 390, "end": 394, "annotation": null}, {"text": "high", "start": 395, "end": 399, "annotation": null}, {"text": "textured", "start": 400, "end": 408, "annotation": null}, {"text": "grain", "start": 409, "end": 414, "annotation": null}, {"text": "growth", "start": 415, "end": 421, "annotation": null}, {"text": "and", "start": 422, "end": 425, "annotation": null}, {"text": "high", "start": 426, "end": 430, "annotation": null}, {"text": "green", "start": 431, "end": 436, "annotation": null}, {"text": "emission", "start": 437, "end": 445, "annotation": null}, {"text": "intensity", "start": 446, "end": 455, "annotation": null}, {"text": ".", "start": 455, "end": 456, "annotation": null}], [{"text": "The", "start": 457, "end": 460, "annotation": null}, {"text": "structural", "start": 461, "end": 471, "annotation": null}, {"text": "analysis", "start": 472, "end": 480, "annotation": null}, {"text": "of", "start": 481, "end": 483, "annotation": null}, {"text": "the", "start": 484, "end": 487, "annotation": null}, {"text": "thin", "start": 488, "end": 492, "annotation": null}, {"text": "films", "start": 493, "end": 498, "annotation": null}, {"text": "by", "start": 499, "end": 501, "annotation": null}, {"text": "X-ray", "start": 502, "end": 507, "annotation": null}, {"text": "diffraction", "start": 508, "end": 519, "annotation": null}, {"text": "along", "start": 520, "end": 525, "annotation": null}, {"text": "with", "start": 526, "end": 530, "annotation": null}, {"text": "scanning", "start": 531, "end": 539, "annotation": null}, {"text": "electron", "start": 540, "end": 548, "annotation": null}, {"text": "microscopy", "start": 549, "end": 559, "annotation": null}, {"text": "and", "start": 560, "end": 563, "annotation": null}, {"text": "its", "start": 564, "end": 567, "annotation": null}, {"text": "optical", "start": 568, "end": 575, "annotation": null}, {"text": "properties", "start": 576, "end": 586, "annotation": null}, {"text": "(", "start": 587, "end": 588, "annotation": null}, {"text": "photoluminescence", "start": 588, "end": 605, "annotation": null}, {"text": ")", "start": 605, "end": 606, "annotation": null}, {"text": "suggest", "start": 607, "end": 614, "annotation": null}, {"text": "creation", "start": 615, "end": 623, "annotation": null}, {"text": "of", "start": 624, "end": 626, "annotation": null}, {"text": "oxygen", "start": 627, "end": 633, "annotation": null}, {"text": "vacancy", "start": 634, "end": 641, "annotation": null}, {"text": "during", "start": 642, "end": 648, "annotation": null}, {"text": "doping", "start": 649, "end": 655, "annotation": null}, {"text": "which", "start": 656, "end": 661, "annotation": null}, {"text": "is", "start": 662, "end": 664, "annotation": null}, {"text": "responsible", "start": 665, "end": 676, "annotation": null}, {"text": "for", "start": 677, "end": 680, "annotation": null}, {"text": "the", "start": 681, "end": 684, "annotation": null}, {"text": "higher", "start": 685, "end": 691, "annotation": null}, {"text": "grain", "start": 692, "end": 697, "annotation": null}, {"text": "growth", "start": 698, "end": 704, "annotation": null}, {"text": ".", "start": 704, "end": 705, "annotation": null}], [{"text": "The", "start": 706, "end": 709, "annotation": null}, {"text": "resistance", "start": 710, "end": 720, "annotation": null}, {"text": "measurements", "start": 721, "end": 733, "annotation": null}, {"text": "on", "start": 734, "end": 736, "annotation": null}, {"text": "the", "start": 737, "end": 740, "annotation": null}, {"text": "ZnO", "start": 741, "end": 744, "annotation": null}, {"text": "thin", "start": 745, "end": 749, "annotation": null}, {"text": "films", "start": 750, "end": 755, "annotation": null}, {"text": "reveal", "start": 756, "end": 762, "annotation": null}, {"text": "its", "start": 763, "end": 766, "annotation": null}, {"text": "significance", "start": 767, "end": 779, "annotation": null}, {"text": "in", "start": 780, "end": 782, "annotation": null}, {"text": "sensing", "start": 783, "end": 790, "annotation": null}, {"text": "and", "start": 791, "end": 794, "annotation": null}, {"text": "such", "start": 795, "end": 799, "annotation": null}, {"text": "films", "start": 800, "end": 805, "annotation": null}, {"text": "acts", "start": 806, "end": 810, "annotation": null}, {"text": "as", "start": 811, "end": 813, "annotation": null}, {"text": "good", "start": 814, "end": 818, "annotation": null}, {"text": "components", "start": 819, "end": 829, "annotation": null}, {"text": "of", "start": 830, "end": 832, "annotation": null}, {"text": "intelligent", "start": 833, "end": 844, "annotation": null}, {"text": "solar", "start": 845, "end": 850, "annotation": null}, {"text": "panels", "start": 851, "end": 857, "annotation": null}, {"text": "in", "start": 858, "end": 860, "annotation": null}, {"text": "which", "start": 861, "end": 866, "annotation": null}, {"text": "the", "start": 867, "end": 870, "annotation": null}, {"text": "electrical", "start": 871, "end": 881, "annotation": null}, {"text": "properties", "start": 882, "end": 892, "annotation": null}, {"text": "can", "start": 893, "end": 896, "annotation": null}, {"text": "be", "start": 897, "end": 899, "annotation": null}, {"text": "tuned", "start": 900, "end": 905, "annotation": null}, {"text": "by", "start": 906, "end": 908, "annotation": null}, {"text": "electron", "start": 909, "end": 917, "annotation": null}, {"text": "beam", "start": 918, "end": 922, "annotation": null}, {"text": "irradiation", "start": 923, "end": 934, "annotation": null}, {"text": ".", "start": 934, "end": 935, "annotation": null}]], "meta": {"doi": "10.1007/s00542-018-3732-6"}} {"text": "280 nm thick Al0.2Ga0.8N/Al0.7Ga0.3N superlattice structures with various well and barrier layer thickness and different silicon doping were grown on 1.2 \u03bcm thick Al0.63Ga0.37N-on-sapphire films by metal-organic chemical vapor deposition. Whereas unintentionally doped samples were highly resistive, silicon doped structures exhibited sheet carrier densities up to 5.5\u00d71013 cm\u22122 at 300 K. The highest electron mobility values of \u223c140 cm2/Vs were measured for samples with thick wells or thin barriers. When examined by high resolution X-ray diffraction (HRXRD), all samples showed higher order superlattice fringes indicating good layer periodicity. The HRXRD measurements also revealed, that the silicon doping promoted the relaxation of the superlattice stacks with respect to the Al0.63Ga0.37N base layer. Furthermore the silicon doping led to an increased surface/interface roughness caused by pit formation.", "meta": {"doi": "10.1016/S0925-3467(03)00082-X"}, "_input_hash": -671431478, "_task_hash": -1221715217, "tokens": [[{"text": "280", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "nm", "start": 4, "end": 6, "id": 1, "annotation": null}, {"text": "thick", "start": 7, "end": 12, "id": 2, "annotation": null}, {"text": "Al0.2Ga0.8N", "start": 13, "end": 24, "id": 3, "annotation": "BASEMAT"}, {"text": "/", "start": 25, "end": 26, "id": 4, "annotation": null}, {"text": "Al0.7Ga0.3N", "start": 27, "end": 38, "id": 5, "annotation": "BASEMAT"}, {"text": "superlattice", "start": 39, "end": 51, "id": 6, "annotation": null}, {"text": "structures", "start": 52, "end": 62, "id": 7, "annotation": null}, {"text": "with", "start": 63, "end": 67, "id": 8, "annotation": null}, {"text": "various", "start": 68, "end": 75, "id": 9, "annotation": null}, {"text": "well", "start": 76, "end": 80, "id": 10, "annotation": null}, {"text": "and", "start": 81, "end": 84, "id": 11, "annotation": null}, {"text": "barrier", "start": 85, "end": 92, "id": 12, "annotation": null}, {"text": "layer", "start": 93, "end": 98, "id": 13, "annotation": null}, {"text": "thickness", "start": 99, "end": 108, "id": 14, "annotation": null}, {"text": "and", "start": 109, "end": 112, "id": 15, "annotation": null}, {"text": "different", "start": 113, "end": 122, "id": 16, "annotation": null}, {"text": "silicon", "start": 123, "end": 130, "id": 17, "annotation": "DOPANT"}, {"text": "doping", "start": 131, "end": 137, "id": 18, "annotation": null}, {"text": "were", "start": 138, "end": 142, "id": 19, "annotation": null}, {"text": "grown", "start": 143, "end": 148, "id": 20, "annotation": null}, {"text": "on", "start": 149, "end": 151, "id": 21, "annotation": null}, {"text": "1.2", "start": 152, "end": 155, "id": 22, "annotation": null}, {"text": "\u03bcm", "start": 156, "end": 158, "id": 23, "annotation": null}, {"text": "thick", "start": 159, "end": 164, "id": 24, "annotation": null}, {"text": "Al0.63Ga0.37N", "start": 165, "end": 178, "id": 25, "annotation": null}, {"text": "-", "start": 179, "end": 180, "id": 26, "annotation": null}, {"text": "on", "start": 181, "end": 183, "id": 27, "annotation": null}, {"text": "-", "start": 184, "end": 185, "id": 28, "annotation": null}, {"text": "sapphire", "start": 186, "end": 194, "id": 29, "annotation": null}, {"text": "films", "start": 195, "end": 200, "id": 30, "annotation": null}, {"text": "by", "start": 201, "end": 203, "id": 31, "annotation": null}, {"text": "metal", "start": 204, "end": 209, "id": 32, "annotation": null}, {"text": "-", "start": 210, "end": 211, "id": 33, "annotation": null}, {"text": "organic", "start": 212, "end": 219, "id": 34, "annotation": null}, {"text": "chemical", "start": 220, "end": 228, "id": 35, "annotation": null}, {"text": "vapor", "start": 229, "end": 234, "id": 36, "annotation": null}, {"text": "deposition", "start": 235, "end": 245, "id": 37, "annotation": null}, {"text": ".", "start": 246, "end": 247, "id": 38, "annotation": null}], [{"text": "Whereas", "start": 248, "end": 255, "id": 39, "annotation": null}, {"text": "unintentionally", "start": 256, "end": 271, "id": 40, "annotation": null}, {"text": "doped", "start": 272, "end": 277, "id": 41, "annotation": null}, {"text": "samples", "start": 278, "end": 285, "id": 42, "annotation": "BASEMAT"}, {"text": "were", "start": 286, "end": 290, "id": 43, "annotation": null}, {"text": "highly", "start": 291, "end": 297, "id": 44, "annotation": null}, {"text": "resistive", "start": 298, "end": 307, "id": 45, "annotation": null}, {"text": ",", "start": 308, "end": 309, "id": 46, "annotation": null}, {"text": "silicon", "start": 310, "end": 317, "id": 47, "annotation": "DOPANT"}, {"text": "doped", "start": 318, "end": 323, "id": 48, "annotation": null}, {"text": "structures", "start": 324, "end": 334, "id": 49, "annotation": "BASEMAT"}, {"text": "exhibited", "start": 335, "end": 344, "id": 50, "annotation": null}, {"text": "sheet", "start": 345, "end": 350, "id": 51, "annotation": null}, {"text": "carrier", "start": 351, "end": 358, "id": 52, "annotation": null}, {"text": "densities", "start": 359, "end": 368, "id": 53, "annotation": null}, {"text": "up", "start": 369, "end": 371, "id": 54, "annotation": null}, {"text": "to", "start": 372, "end": 374, "id": 55, "annotation": null}, {"text": "5.5\u00d71013", "start": 375, "end": 383, "id": 56, "annotation": "DOPMODQ"}, {"text": "cm\u22122", "start": 384, "end": 388, "id": 57, "annotation": "DOPMODQ"}, {"text": "at", "start": 389, "end": 391, "id": 58, "annotation": null}, {"text": "300", "start": 392, "end": 395, "id": 59, "annotation": null}, {"text": "K.", "start": 396, "end": 398, "id": 60, "annotation": null}], [{"text": "The", "start": 399, "end": 402, "id": 61, "annotation": null}, {"text": "highest", "start": 403, "end": 410, "id": 62, "annotation": null}, {"text": "electron", "start": 411, "end": 419, "id": 63, "annotation": null}, {"text": "mobility", "start": 420, "end": 428, "id": 64, "annotation": null}, {"text": "values", "start": 429, "end": 435, "id": 65, "annotation": null}, {"text": "of", "start": 436, "end": 438, "id": 66, "annotation": null}, {"text": "\u223c140", "start": 439, "end": 443, "id": 67, "annotation": null}, {"text": "cm2", "start": 444, "end": 447, "id": 68, "annotation": null}, {"text": "/", "start": 448, "end": 449, "id": 69, "annotation": null}, {"text": "Vs", "start": 450, "end": 452, "id": 70, "annotation": null}, {"text": "were", "start": 453, "end": 457, "id": 71, "annotation": null}, {"text": "measured", "start": 458, "end": 466, "id": 72, "annotation": null}, {"text": "for", "start": 467, "end": 470, "id": 73, "annotation": null}, {"text": "samples", "start": 471, "end": 478, "id": 74, "annotation": null}, {"text": "with", "start": 479, "end": 483, "id": 75, "annotation": null}, {"text": "thick", "start": 484, "end": 489, "id": 76, "annotation": null}, {"text": "wells", "start": 490, "end": 495, "id": 77, "annotation": null}, {"text": "or", "start": 496, "end": 498, "id": 78, "annotation": null}, {"text": "thin", "start": 499, "end": 503, "id": 79, "annotation": null}, {"text": "barriers", "start": 504, "end": 512, "id": 80, "annotation": null}, {"text": ".", "start": 513, "end": 514, "id": 81, "annotation": null}], [{"text": "When", "start": 515, "end": 519, "id": 82, "annotation": null}, {"text": "examined", "start": 520, "end": 528, "id": 83, "annotation": null}, {"text": "by", "start": 529, "end": 531, "id": 84, "annotation": null}, {"text": "high", "start": 532, "end": 536, "id": 85, "annotation": null}, {"text": "resolution", "start": 537, "end": 547, "id": 86, "annotation": null}, {"text": "X", "start": 548, "end": 549, "id": 87, "annotation": null}, {"text": "-", "start": 550, "end": 551, "id": 88, "annotation": null}, {"text": "ray", "start": 552, "end": 555, "id": 89, "annotation": null}, {"text": "diffraction", "start": 556, "end": 567, "id": 90, "annotation": null}, {"text": "(", "start": 568, "end": 569, "id": 91, "annotation": null}, {"text": "HRXRD", "start": 570, "end": 575, "id": 92, "annotation": null}, {"text": ")", "start": 576, "end": 577, "id": 93, "annotation": null}, {"text": ",", "start": 578, "end": 579, "id": 94, "annotation": null}, {"text": "all", "start": 580, "end": 583, "id": 95, "annotation": null}, {"text": "samples", "start": 584, "end": 591, "id": 96, "annotation": null}, {"text": "showed", "start": 592, "end": 598, "id": 97, "annotation": null}, {"text": "higher", "start": 599, "end": 605, "id": 98, "annotation": null}, {"text": "order", "start": 606, "end": 611, "id": 99, "annotation": null}, {"text": "superlattice", "start": 612, "end": 624, "id": 100, "annotation": null}, {"text": "fringes", "start": 625, "end": 632, "id": 101, "annotation": null}, {"text": "indicating", "start": 633, "end": 643, "id": 102, "annotation": null}, {"text": "good", "start": 644, "end": 648, "id": 103, "annotation": null}, {"text": "layer", "start": 649, "end": 654, "id": 104, "annotation": null}, {"text": "periodicity", "start": 655, "end": 666, "id": 105, "annotation": null}, {"text": ".", "start": 667, "end": 668, "id": 106, "annotation": null}], [{"text": "The", "start": 669, "end": 672, "id": 107, "annotation": null}, {"text": "HRXRD", "start": 673, "end": 678, "id": 108, "annotation": null}, {"text": "measurements", "start": 679, "end": 691, "id": 109, "annotation": null}, {"text": "also", "start": 692, "end": 696, "id": 110, "annotation": null}, {"text": "revealed", "start": 697, "end": 705, "id": 111, "annotation": null}, {"text": ",", "start": 706, "end": 707, "id": 112, "annotation": null}, {"text": "that", "start": 708, "end": 712, "id": 113, "annotation": null}, {"text": "the", "start": 713, "end": 716, "id": 114, "annotation": null}, {"text": "silicon", "start": 717, "end": 724, "id": 115, "annotation": "DOPANT"}, {"text": "doping", "start": 725, "end": 731, "id": 116, "annotation": null}, {"text": "promoted", "start": 732, "end": 740, "id": 117, "annotation": null}, {"text": "the", "start": 741, "end": 744, "id": 118, "annotation": null}, {"text": "relaxation", "start": 745, "end": 755, "id": 119, "annotation": null}, {"text": "of", "start": 756, "end": 758, "id": 120, "annotation": null}, {"text": "the", "start": 759, "end": 762, "id": 121, "annotation": null}, {"text": "superlattice", "start": 763, "end": 775, "id": 122, "annotation": null}, {"text": "stacks", "start": 776, "end": 782, "id": 123, "annotation": null}, {"text": "with", "start": 783, "end": 787, "id": 124, "annotation": null}, {"text": "respect", "start": 788, "end": 795, "id": 125, "annotation": null}, {"text": "to", "start": 796, "end": 798, "id": 126, "annotation": null}, {"text": "the", "start": 799, "end": 802, "id": 127, "annotation": null}, {"text": "Al0.63Ga0.37N", "start": 803, "end": 816, "id": 128, "annotation": null}, {"text": "base", "start": 817, "end": 821, "id": 129, "annotation": null}, {"text": "layer", "start": 822, "end": 827, "id": 130, "annotation": null}, {"text": ".", "start": 828, "end": 829, "id": 131, "annotation": null}], [{"text": "Furthermore", "start": 830, "end": 841, "id": 132, "annotation": null}, {"text": "the", "start": 842, "end": 845, "id": 133, "annotation": null}, {"text": "silicon", "start": 846, "end": 853, "id": 134, "annotation": "DOPANT"}, {"text": "doping", "start": 854, "end": 860, "id": 135, "annotation": null}, {"text": "led", "start": 861, "end": 864, "id": 136, "annotation": null}, {"text": "to", "start": 865, "end": 867, "id": 137, "annotation": null}, {"text": "an", "start": 868, "end": 870, "id": 138, "annotation": null}, {"text": "increased", "start": 871, "end": 880, "id": 139, "annotation": null}, {"text": "surface", "start": 881, "end": 888, "id": 140, "annotation": null}, {"text": "/", "start": 889, "end": 890, "id": 141, "annotation": null}, {"text": "interface", "start": 891, "end": 900, "id": 142, "annotation": null}, {"text": "roughness", "start": 901, "end": 910, "id": 143, "annotation": null}, {"text": "caused", "start": 911, "end": 917, "id": 144, "annotation": null}, {"text": "by", "start": 918, "end": 920, "id": 145, "annotation": null}, {"text": "pit", "start": 921, "end": 924, "id": 146, "annotation": null}, {"text": "formation", "start": 925, "end": 934, "id": 147, "annotation": null}, {"text": ".", "start": 935, "end": 936, "id": 148, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The behaviour of electrodes operated with ac-currents in ceramic metal halide lamps containing Hg + NaTlDy iodide has been investigated experimentally. Using transparent YAG lamp tubes with the so-called Bochum model lamp as an outer bulb phase resolved measurements were performed of the electrode temperature and Dy density in dependence on the cold-spot temperature of the salt filling. The electrode tip temperature and electrode power loss are deduced from the temperature profile measured along the electrode axis. The Dy density in front of the electrode is determined by spatially resolved spectroscopic measurements of absolute line intensities. It is found that doping of a mercury lamp only with Dy iodide generates at low operation frequencies a pronounced emitter effect at the cathode but it declines with increasing frequency. In a lamp doped with NaTlDy iodide the formation and movement of Dy ions are hampered by Na ions accumulated in front of the cathode due to cataphoresis. As a consequence the lowering of the power loss by Dy is in part diminished. It is shown that a gas-phase emitter effect of Dy is effective for standard operation conditions of lamps in spite of the counteracting effects of a long time constant of the emitter effect and Na accumulation.", "meta": {"doi": "10.1088/0022-3727/41/14/144005"}, "_input_hash": 1062440043, "_task_hash": -980340354, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "behaviour", "start": 4, "end": 13, "id": 1, "annotation": null}, {"text": "of", "start": 14, "end": 16, "id": 2, "annotation": null}, {"text": "electrodes", "start": 17, "end": 27, "id": 3, "annotation": null}, {"text": "operated", "start": 28, "end": 36, "id": 4, "annotation": null}, {"text": "with", "start": 37, "end": 41, "id": 5, "annotation": null}, {"text": "ac", "start": 42, "end": 44, "id": 6, "annotation": null}, {"text": "-", "start": 45, "end": 46, "id": 7, "annotation": null}, {"text": "currents", "start": 47, "end": 55, "id": 8, "annotation": null}, {"text": "in", "start": 56, "end": 58, "id": 9, "annotation": null}, {"text": "ceramic", "start": 59, "end": 66, "id": 10, "annotation": null}, {"text": "metal", "start": 67, "end": 72, "id": 11, "annotation": null}, {"text": "halide", "start": 73, "end": 79, "id": 12, "annotation": null}, {"text": "lamps", "start": 80, "end": 85, "id": 13, "annotation": null}, {"text": "containing", "start": 86, "end": 96, "id": 14, "annotation": null}, {"text": "Hg", "start": 97, "end": 99, "id": 15, "annotation": null}, {"text": "+", "start": 100, "end": 101, "id": 16, "annotation": null}, {"text": "NaTlDy", "start": 102, "end": 108, "id": 17, "annotation": null}, {"text": "iodide", "start": 109, "end": 115, "id": 18, "annotation": null}, {"text": "has", "start": 116, "end": 119, "id": 19, "annotation": null}, {"text": "been", "start": 120, "end": 124, "id": 20, "annotation": null}, {"text": "investigated", "start": 125, "end": 137, "id": 21, "annotation": null}, {"text": "experimentally", "start": 138, "end": 152, "id": 22, "annotation": null}, {"text": ".", "start": 153, "end": 154, "id": 23, "annotation": null}], [{"text": "Using", "start": 155, "end": 160, "id": 24, "annotation": null}, {"text": "transparent", "start": 161, "end": 172, "id": 25, "annotation": null}, {"text": "YAG", "start": 173, "end": 176, "id": 26, "annotation": null}, {"text": "lamp", "start": 177, "end": 181, "id": 27, "annotation": null}, {"text": "tubes", "start": 182, "end": 187, "id": 28, "annotation": null}, {"text": "with", "start": 188, "end": 192, "id": 29, "annotation": null}, {"text": "the", "start": 193, "end": 196, "id": 30, "annotation": null}, {"text": "so", "start": 197, "end": 199, "id": 31, "annotation": null}, {"text": "-", "start": 200, "end": 201, "id": 32, "annotation": null}, {"text": "called", "start": 202, "end": 208, "id": 33, "annotation": null}, {"text": "Bochum", "start": 209, "end": 215, "id": 34, "annotation": null}, {"text": "model", "start": 216, "end": 221, "id": 35, "annotation": null}, {"text": "lamp", "start": 222, "end": 226, "id": 36, "annotation": null}, {"text": "as", "start": 227, "end": 229, "id": 37, "annotation": null}, {"text": "an", "start": 230, "end": 232, "id": 38, "annotation": null}, {"text": "outer", "start": 233, "end": 238, "id": 39, "annotation": null}, {"text": "bulb", "start": 239, "end": 243, "id": 40, "annotation": null}, {"text": "phase", "start": 244, "end": 249, "id": 41, "annotation": null}, {"text": "resolved", "start": 250, "end": 258, "id": 42, "annotation": null}, {"text": "measurements", "start": 259, "end": 271, "id": 43, "annotation": null}, {"text": "were", "start": 272, "end": 276, "id": 44, "annotation": null}, {"text": "performed", "start": 277, "end": 286, "id": 45, "annotation": null}, {"text": "of", "start": 287, "end": 289, "id": 46, "annotation": null}, {"text": "the", "start": 290, "end": 293, "id": 47, "annotation": null}, {"text": "electrode", "start": 294, "end": 303, "id": 48, "annotation": null}, {"text": "temperature", "start": 304, "end": 315, "id": 49, "annotation": null}, {"text": "and", "start": 316, "end": 319, "id": 50, "annotation": null}, {"text": "Dy", "start": 320, "end": 322, "id": 51, "annotation": null}, {"text": "density", "start": 323, "end": 330, "id": 52, "annotation": null}, {"text": "in", "start": 331, "end": 333, "id": 53, "annotation": null}, {"text": "dependence", "start": 334, "end": 344, "id": 54, "annotation": null}, {"text": "on", "start": 345, "end": 347, "id": 55, "annotation": null}, {"text": "the", "start": 348, "end": 351, "id": 56, "annotation": null}, {"text": "cold", "start": 352, "end": 356, "id": 57, "annotation": null}, {"text": "-", "start": 357, "end": 358, "id": 58, "annotation": null}, {"text": "spot", "start": 359, "end": 363, "id": 59, "annotation": null}, {"text": "temperature", "start": 364, "end": 375, "id": 60, "annotation": null}, {"text": "of", "start": 376, "end": 378, "id": 61, "annotation": null}, {"text": "the", "start": 379, "end": 382, "id": 62, "annotation": null}, {"text": "salt", "start": 383, "end": 387, "id": 63, "annotation": null}, {"text": "filling", "start": 388, "end": 395, "id": 64, "annotation": null}, {"text": ".", "start": 396, "end": 397, "id": 65, "annotation": null}], [{"text": "The", "start": 398, "end": 401, "id": 66, "annotation": null}, {"text": "electrode", "start": 402, "end": 411, "id": 67, "annotation": null}, {"text": "tip", "start": 412, "end": 415, "id": 68, "annotation": null}, {"text": "temperature", "start": 416, "end": 427, "id": 69, "annotation": null}, {"text": "and", "start": 428, "end": 431, "id": 70, "annotation": null}, {"text": "electrode", "start": 432, "end": 441, "id": 71, "annotation": null}, {"text": "power", "start": 442, "end": 447, "id": 72, "annotation": null}, {"text": "loss", "start": 448, "end": 452, "id": 73, "annotation": null}, {"text": "are", "start": 453, "end": 456, "id": 74, "annotation": null}, {"text": "deduced", "start": 457, "end": 464, "id": 75, "annotation": null}, {"text": "from", "start": 465, "end": 469, "id": 76, "annotation": null}, {"text": "the", "start": 470, "end": 473, "id": 77, "annotation": null}, {"text": "temperature", "start": 474, "end": 485, "id": 78, "annotation": null}, {"text": "profile", "start": 486, "end": 493, "id": 79, "annotation": null}, {"text": "measured", "start": 494, "end": 502, "id": 80, "annotation": null}, {"text": "along", "start": 503, "end": 508, "id": 81, "annotation": null}, {"text": "the", "start": 509, "end": 512, "id": 82, "annotation": null}, {"text": "electrode", "start": 513, "end": 522, "id": 83, "annotation": null}, {"text": "axis", "start": 523, "end": 527, "id": 84, "annotation": null}, {"text": ".", "start": 528, "end": 529, "id": 85, "annotation": null}], [{"text": "The", "start": 530, "end": 533, "id": 86, "annotation": null}, {"text": "Dy", "start": 534, "end": 536, "id": 87, "annotation": null}, {"text": "density", "start": 537, "end": 544, "id": 88, "annotation": null}, {"text": "in", "start": 545, "end": 547, "id": 89, "annotation": null}, {"text": "front", "start": 548, "end": 553, "id": 90, "annotation": null}, {"text": "of", "start": 554, "end": 556, "id": 91, "annotation": null}, {"text": "the", "start": 557, "end": 560, "id": 92, "annotation": null}, {"text": "electrode", "start": 561, "end": 570, "id": 93, "annotation": null}, {"text": "is", "start": 571, "end": 573, "id": 94, "annotation": null}, {"text": "determined", "start": 574, "end": 584, "id": 95, "annotation": null}, {"text": "by", "start": 585, "end": 587, "id": 96, "annotation": null}, {"text": "spatially", "start": 588, "end": 597, "id": 97, "annotation": null}, {"text": "resolved", "start": 598, "end": 606, "id": 98, "annotation": null}, {"text": "spectroscopic", "start": 607, "end": 620, "id": 99, "annotation": null}, {"text": "measurements", "start": 621, "end": 633, "id": 100, "annotation": null}, {"text": "of", "start": 634, "end": 636, "id": 101, "annotation": null}, {"text": "absolute", "start": 637, "end": 645, "id": 102, "annotation": null}, {"text": "line", "start": 646, "end": 650, "id": 103, "annotation": null}, {"text": "intensities", "start": 651, "end": 662, "id": 104, "annotation": null}, {"text": ".", "start": 663, "end": 664, "id": 105, "annotation": null}], [{"text": "It", "start": 665, "end": 667, "id": 106, "annotation": null}, {"text": "is", "start": 668, "end": 670, "id": 107, "annotation": null}, {"text": "found", "start": 671, "end": 676, "id": 108, "annotation": null}, {"text": "that", "start": 677, "end": 681, "id": 109, "annotation": null}, {"text": "doping", "start": 682, "end": 688, "id": 110, "annotation": null}, {"text": "of", "start": 689, "end": 691, "id": 111, "annotation": null}, {"text": "a", "start": 692, "end": 693, "id": 112, "annotation": null}, {"text": "mercury", "start": 694, "end": 701, "id": 113, "annotation": "BASEMAT"}, {"text": "lamp", "start": 702, "end": 706, "id": 114, "annotation": null}, {"text": "only", "start": 707, "end": 711, "id": 115, "annotation": null}, {"text": "with", "start": 712, "end": 716, "id": 116, "annotation": null}, {"text": "Dy", "start": 717, "end": 719, "id": 117, "annotation": "DOPANT"}, {"text": "iodide", "start": 720, "end": 726, "id": 118, "annotation": "DOPANT"}, {"text": "generates", "start": 727, "end": 736, "id": 119, "annotation": null}, {"text": "at", "start": 737, "end": 739, "id": 120, "annotation": null}, {"text": "low", "start": 740, "end": 743, "id": 121, "annotation": null}, {"text": "operation", "start": 744, "end": 753, "id": 122, "annotation": null}, {"text": "frequencies", "start": 754, "end": 765, "id": 123, "annotation": null}, {"text": "a", "start": 766, "end": 767, "id": 124, "annotation": null}, {"text": "pronounced", "start": 768, "end": 778, "id": 125, "annotation": null}, {"text": "emitter", "start": 779, "end": 786, "id": 126, "annotation": null}, {"text": "effect", "start": 787, "end": 793, "id": 127, "annotation": null}, {"text": "at", "start": 794, "end": 796, "id": 128, "annotation": null}, {"text": "the", "start": 797, "end": 800, "id": 129, "annotation": null}, {"text": "cathode", "start": 801, "end": 808, "id": 130, "annotation": null}, {"text": "but", "start": 809, "end": 812, "id": 131, "annotation": null}, {"text": "it", "start": 813, "end": 815, "id": 132, "annotation": null}, {"text": "declines", "start": 816, "end": 824, "id": 133, "annotation": null}, {"text": "with", "start": 825, "end": 829, "id": 134, "annotation": null}, {"text": "increasing", "start": 830, "end": 840, "id": 135, "annotation": null}, {"text": "frequency", "start": 841, "end": 850, "id": 136, "annotation": null}, {"text": ".", "start": 851, "end": 852, "id": 137, "annotation": null}], [{"text": "In", "start": 853, "end": 855, "id": 138, "annotation": null}, {"text": "a", "start": 856, "end": 857, "id": 139, "annotation": null}, {"text": "lamp", "start": 858, "end": 862, "id": 140, "annotation": "BASEMAT"}, {"text": "doped", "start": 863, "end": 868, "id": 141, "annotation": null}, {"text": "with", "start": 869, "end": 873, "id": 142, "annotation": null}, {"text": "NaTlDy", "start": 874, "end": 880, "id": 143, "annotation": "DOPANT"}, {"text": "iodide", "start": 881, "end": 887, "id": 144, "annotation": "DOPANT"}, {"text": "the", "start": 888, "end": 891, "id": 145, "annotation": null}, {"text": "formation", "start": 892, "end": 901, "id": 146, "annotation": null}, {"text": "and", "start": 902, "end": 905, "id": 147, "annotation": null}, {"text": "movement", "start": 906, "end": 914, "id": 148, "annotation": null}, {"text": "of", "start": 915, "end": 917, "id": 149, "annotation": null}, {"text": "Dy", "start": 918, "end": 920, "id": 150, "annotation": null}, {"text": "ions", "start": 921, "end": 925, "id": 151, "annotation": null}, {"text": "are", "start": 926, "end": 929, "id": 152, "annotation": null}, {"text": "hampered", "start": 930, "end": 938, "id": 153, "annotation": null}, {"text": "by", "start": 939, "end": 941, "id": 154, "annotation": null}, {"text": "Na", "start": 942, "end": 944, "id": 155, "annotation": null}, {"text": "ions", "start": 945, "end": 949, "id": 156, "annotation": null}, {"text": "accumulated", "start": 950, "end": 961, "id": 157, "annotation": null}, {"text": "in", "start": 962, "end": 964, "id": 158, "annotation": null}, {"text": "front", "start": 965, "end": 970, "id": 159, "annotation": null}, {"text": "of", "start": 971, "end": 973, "id": 160, "annotation": null}, {"text": "the", "start": 974, "end": 977, "id": 161, "annotation": null}, {"text": "cathode", "start": 978, "end": 985, "id": 162, "annotation": null}, {"text": "due", "start": 986, "end": 989, "id": 163, "annotation": null}, {"text": "to", "start": 990, "end": 992, "id": 164, "annotation": null}, {"text": "cataphoresis", "start": 993, "end": 1005, "id": 165, "annotation": null}, {"text": ".", "start": 1006, "end": 1007, "id": 166, "annotation": null}], [{"text": "As", "start": 1008, "end": 1010, "id": 167, "annotation": null}, {"text": "a", "start": 1011, "end": 1012, "id": 168, "annotation": null}, {"text": "consequence", "start": 1013, "end": 1024, "id": 169, "annotation": null}, {"text": "the", "start": 1025, "end": 1028, "id": 170, "annotation": null}, {"text": "lowering", "start": 1029, "end": 1037, "id": 171, "annotation": null}, {"text": "of", "start": 1038, "end": 1040, "id": 172, "annotation": null}, {"text": "the", "start": 1041, "end": 1044, "id": 173, "annotation": null}, {"text": "power", "start": 1045, "end": 1050, "id": 174, "annotation": null}, {"text": "loss", "start": 1051, "end": 1055, "id": 175, "annotation": null}, {"text": "by", "start": 1056, "end": 1058, "id": 176, "annotation": null}, {"text": "Dy", "start": 1059, "end": 1061, "id": 177, "annotation": null}, {"text": "is", "start": 1062, "end": 1064, "id": 178, "annotation": null}, {"text": "in", "start": 1065, "end": 1067, "id": 179, "annotation": null}, {"text": "part", "start": 1068, "end": 1072, "id": 180, "annotation": null}, {"text": "diminished", "start": 1073, "end": 1083, "id": 181, "annotation": null}, {"text": ".", "start": 1084, "end": 1085, "id": 182, "annotation": null}], [{"text": "It", "start": 1086, "end": 1088, "id": 183, "annotation": null}, {"text": "is", "start": 1089, "end": 1091, "id": 184, "annotation": null}, {"text": "shown", "start": 1092, "end": 1097, "id": 185, "annotation": null}, {"text": "that", "start": 1098, "end": 1102, "id": 186, "annotation": null}, {"text": "a", "start": 1103, "end": 1104, "id": 187, "annotation": null}, {"text": "gas", "start": 1105, "end": 1108, "id": 188, "annotation": null}, {"text": "-", "start": 1109, "end": 1110, "id": 189, "annotation": null}, {"text": "phase", "start": 1111, "end": 1116, "id": 190, "annotation": null}, {"text": "emitter", "start": 1117, "end": 1124, "id": 191, "annotation": null}, {"text": "effect", "start": 1125, "end": 1131, "id": 192, "annotation": null}, {"text": "of", "start": 1132, "end": 1134, "id": 193, "annotation": null}, {"text": "Dy", "start": 1135, "end": 1137, "id": 194, "annotation": null}, {"text": "is", "start": 1138, "end": 1140, "id": 195, "annotation": null}, {"text": "effective", "start": 1141, "end": 1150, "id": 196, "annotation": null}, {"text": "for", "start": 1151, "end": 1154, "id": 197, "annotation": null}, {"text": "standard", "start": 1155, "end": 1163, "id": 198, "annotation": null}, {"text": "operation", "start": 1164, "end": 1173, "id": 199, "annotation": null}, {"text": "conditions", "start": 1174, "end": 1184, "id": 200, "annotation": null}, {"text": "of", "start": 1185, "end": 1187, "id": 201, "annotation": null}, {"text": "lamps", "start": 1188, "end": 1193, "id": 202, "annotation": null}, {"text": "in", "start": 1194, "end": 1196, "id": 203, "annotation": null}, {"text": "spite", "start": 1197, "end": 1202, "id": 204, "annotation": null}, {"text": "of", "start": 1203, "end": 1205, "id": 205, "annotation": null}, {"text": "the", "start": 1206, "end": 1209, "id": 206, "annotation": null}, {"text": "counteracting", "start": 1210, "end": 1223, "id": 207, "annotation": null}, {"text": "effects", "start": 1224, "end": 1231, "id": 208, "annotation": null}, {"text": "of", "start": 1232, "end": 1234, "id": 209, "annotation": null}, {"text": "a", "start": 1235, "end": 1236, "id": 210, "annotation": null}, {"text": "long", "start": 1237, "end": 1241, "id": 211, "annotation": null}, {"text": "time", "start": 1242, "end": 1246, "id": 212, "annotation": null}, {"text": "constant", "start": 1247, "end": 1255, "id": 213, "annotation": null}, {"text": "of", "start": 1256, "end": 1258, "id": 214, "annotation": null}, {"text": "the", "start": 1259, "end": 1262, "id": 215, "annotation": null}, {"text": "emitter", "start": 1263, "end": 1270, "id": 216, "annotation": null}, {"text": "effect", "start": 1271, "end": 1277, "id": 217, "annotation": null}, {"text": "and", "start": 1278, "end": 1281, "id": 218, "annotation": null}, {"text": "Na", "start": 1282, "end": 1284, "id": 219, "annotation": null}, {"text": "accumulation", "start": 1285, "end": 1297, "id": 220, "annotation": null}, {"text": ".", "start": 1298, "end": 1299, "id": 221, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Near-infrared (NIR) luminescent ternary and hydrated binary neodymium \u03b2-diketonates emitting at ca. 1330 nm are presented. The effects of ligand moieties on the photoluminescence properties of Nd3+ ions are discussed. Moreover, the neodymium organic complex neodymium tris(2-theonyltrifluoroacetonate)bis(triphenylphosphine oxide), Nd(TTA)3(TPPO)2, which has the best photoluminescence properties among all investigated neodymium complexes, is incorporated into vinyltriethoxysilane-derived ORMOSIL (organically modified silicate) film by a multistep sol\u2013gel process. The Nd doping concentration was up to 5 mol% related to Si. The spectroscopic results about as-doped ORMOSIL films indicate that the ligands around Nd3+ ions indeed shield effectively Nd3+ ions from luminescence-quenching impurities in the host matrix, such as OH groups.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Near", "start": 0, "end": 4, "annotation": null}, {"text": "-", "start": 4, "end": 5, "annotation": null}, {"text": "infrared", "start": 5, "end": 13, "annotation": null}, {"text": "(", "start": 14, "end": 15, "annotation": null}, {"text": "NIR", "start": 15, "end": 18, "annotation": null}, {"text": ")", "start": 18, "end": 19, "annotation": null}, {"text": "luminescent", "start": 20, "end": 31, "annotation": null}, {"text": "ternary", "start": 32, "end": 39, "annotation": null}, {"text": "and", "start": 40, "end": 43, "annotation": null}, {"text": "hydrated", "start": 44, "end": 52, "annotation": null}, {"text": "binary", "start": 53, "end": 59, "annotation": null}, {"text": "neodymium", "start": 60, "end": 69, "annotation": null}, {"text": "\u03b2-diketonates", "start": 70, "end": 83, "annotation": null}, {"text": "emitting", "start": 84, "end": 92, "annotation": null}, {"text": "at", "start": 93, "end": 95, "annotation": null}, {"text": "ca.", "start": 96, "end": 99, "annotation": null}, {"text": "1330", "start": 100, "end": 104, "annotation": null}, {"text": "nm", "start": 105, "end": 107, "annotation": null}, {"text": "are", "start": 108, "end": 111, "annotation": null}, {"text": "presented", "start": 112, "end": 121, "annotation": null}, {"text": ".", "start": 121, "end": 122, "annotation": null}], [{"text": "The", "start": 123, "end": 126, "annotation": null}, {"text": "effects", "start": 127, "end": 134, "annotation": null}, {"text": "of", "start": 135, "end": 137, "annotation": null}, {"text": "ligand", "start": 138, "end": 144, "annotation": null}, {"text": "moieties", "start": 145, "end": 153, "annotation": null}, {"text": "on", "start": 154, "end": 156, "annotation": null}, {"text": "the", "start": 157, "end": 160, "annotation": null}, {"text": "photoluminescence", "start": 161, "end": 178, "annotation": null}, {"text": "properties", "start": 179, "end": 189, "annotation": null}, {"text": "of", "start": 190, "end": 192, "annotation": null}, {"text": "Nd3+", "start": 193, "end": 197, "annotation": null}, {"text": "ions", "start": 198, "end": 202, "annotation": null}, {"text": "are", "start": 203, "end": 206, "annotation": null}, {"text": "discussed", "start": 207, "end": 216, "annotation": null}, {"text": ".", "start": 216, "end": 217, "annotation": null}], [{"text": "Moreover", "start": 218, "end": 226, "annotation": null}, {"text": ",", "start": 226, "end": 227, "annotation": null}, {"text": "the", "start": 228, "end": 231, "annotation": null}, {"text": "neodymium", "start": 232, "end": 241, "annotation": null}, {"text": "organic", "start": 242, "end": 249, "annotation": null}, {"text": "complex", "start": 250, "end": 257, "annotation": null}, {"text": "neodymium", "start": 258, "end": 267, "annotation": null}, {"text": "tris(2-theonyltrifluoroacetonate)bis(triphenylphosphine", "start": 268, "end": 323, "annotation": null}, {"text": "oxide", "start": 324, "end": 329, "annotation": null}, {"text": ")", "start": 329, "end": 330, "annotation": null}, {"text": ",", "start": 330, "end": 331, "annotation": null}, {"text": "Nd(TTA)3(TPPO)2", "start": 332, "end": 347, "annotation": null}, {"text": ",", "start": 347, "end": 348, "annotation": null}, {"text": "which", "start": 349, "end": 354, "annotation": null}, {"text": "has", "start": 355, "end": 358, "annotation": null}, {"text": "the", "start": 359, "end": 362, "annotation": null}, {"text": "best", "start": 363, "end": 367, "annotation": null}, {"text": "photoluminescence", "start": 368, "end": 385, "annotation": null}, {"text": "properties", "start": 386, "end": 396, "annotation": null}, {"text": "among", "start": 397, "end": 402, "annotation": null}, {"text": "all", "start": 403, "end": 406, "annotation": null}, {"text": "investigated", "start": 407, "end": 419, "annotation": null}, {"text": "neodymium", "start": 420, "end": 429, "annotation": null}, {"text": "complexes", "start": 430, "end": 439, "annotation": null}, {"text": ",", "start": 439, "end": 440, "annotation": null}, {"text": "is", "start": 441, "end": 443, "annotation": null}, {"text": "incorporated", "start": 444, "end": 456, "annotation": null}, {"text": "into", "start": 457, "end": 461, "annotation": null}, {"text": "vinyltriethoxysilane", "start": 462, "end": 482, "annotation": null}, {"text": "-", "start": 482, "end": 483, "annotation": null}, {"text": "derived", "start": 483, "end": 490, "annotation": null}, {"text": "ORMOSIL", "start": 491, "end": 498, "annotation": null}, {"text": "(", "start": 499, "end": 500, "annotation": null}, {"text": "organically", "start": 500, "end": 511, "annotation": null}, {"text": "modified", "start": 512, "end": 520, "annotation": null}, {"text": "silicate", "start": 521, "end": 529, "annotation": null}, {"text": ")", "start": 529, "end": 530, "annotation": null}, {"text": "film", "start": 531, "end": 535, "annotation": null}, {"text": "by", "start": 536, "end": 538, "annotation": null}, {"text": "a", "start": 539, "end": 540, "annotation": null}, {"text": "multistep", "start": 541, "end": 550, "annotation": null}, {"text": "sol", "start": 551, "end": 554, "annotation": null}, {"text": "\u2013", "start": 554, "end": 555, "annotation": null}, {"text": "gel", "start": 555, "end": 558, "annotation": null}, {"text": "process", "start": 559, "end": 566, "annotation": null}, {"text": ".", "start": 566, "end": 567, "annotation": null}], [{"text": "The", "start": 568, "end": 571, "annotation": null}, {"text": "Nd", "start": 572, "end": 574, "annotation": "DOPANT"}, {"text": "doping", "start": 575, "end": 581, "annotation": null}, {"text": "concentration", "start": 582, "end": 595, "annotation": null}, {"text": "was", "start": 596, "end": 599, "annotation": null}, {"text": "up", "start": 600, "end": 602, "annotation": null}, {"text": "to", "start": 603, "end": 605, "annotation": null}, {"text": "5", "start": 606, "end": 607, "annotation": "DOPMODQ"}, {"text": "mol", "start": 608, "end": 611, "annotation": "DOPMODQ"}, {"text": "%", "start": 611, "end": 612, "annotation": "DOPMODQ"}, {"text": "related", "start": 613, "end": 620, "annotation": null}, {"text": "to", "start": 621, "end": 623, "annotation": null}, {"text": "Si", "start": 624, "end": 626, "annotation": "BASEMAT"}, {"text": ".", "start": 626, "end": 627, "annotation": null}], [{"text": "The", "start": 628, "end": 631, "annotation": null}, {"text": "spectroscopic", "start": 632, "end": 645, "annotation": null}, {"text": "results", "start": 646, "end": 653, "annotation": null}, {"text": "about", "start": 654, "end": 659, "annotation": null}, {"text": "as-doped", "start": 660, "end": 668, "annotation": null}, {"text": "ORMOSIL", "start": 669, "end": 676, "annotation": null}, {"text": "films", "start": 677, "end": 682, "annotation": null}, {"text": "indicate", "start": 683, "end": 691, "annotation": null}, {"text": "that", "start": 692, "end": 696, "annotation": null}, {"text": "the", "start": 697, "end": 700, "annotation": null}, {"text": "ligands", "start": 701, "end": 708, "annotation": null}, {"text": "around", "start": 709, "end": 715, "annotation": null}, {"text": "Nd3+", "start": 716, "end": 720, "annotation": null}, {"text": "ions", "start": 721, "end": 725, "annotation": null}, {"text": "indeed", "start": 726, "end": 732, "annotation": null}, {"text": "shield", "start": 733, "end": 739, "annotation": null}, {"text": "effectively", "start": 740, "end": 751, "annotation": null}, {"text": "Nd3+", "start": 752, "end": 756, "annotation": null}, {"text": "ions", "start": 757, "end": 761, "annotation": null}, {"text": "from", "start": 762, "end": 766, "annotation": null}, {"text": "luminescence", "start": 767, "end": 779, "annotation": null}, {"text": "-", "start": 779, "end": 780, "annotation": null}, {"text": "quenching", "start": 780, "end": 789, "annotation": null}, {"text": "impurities", "start": 790, "end": 800, "annotation": null}, {"text": "in", "start": 801, "end": 803, "annotation": null}, {"text": "the", "start": 804, "end": 807, "annotation": null}, {"text": "host", "start": 808, "end": 812, "annotation": null}, {"text": "matrix", "start": 813, "end": 819, "annotation": null}, {"text": ",", "start": 819, "end": 820, "annotation": null}, {"text": "such", "start": 821, "end": 825, "annotation": null}, {"text": "as", "start": 826, "end": 828, "annotation": null}, {"text": "OH", "start": 829, "end": 831, "annotation": null}, {"text": "groups", "start": 832, "end": 838, "annotation": null}, {"text": ".", "start": 838, "end": 839, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Orange\u2013red phosphorescent organic light-emitting devices (PHOLEDs) with high efficiency and concentration insensitivity based on a novel iridium complex, bis[2-(biphenyl-4-yl)benzothiazole-N,C2\u2032]iridium(III) (acetylacetonate) [(4Phbt)2Ir(acac)], were fabricated. With the heavily doped emissive layer (EML) of 4,4\u2032-N,N\u2032-dicarbazolylbiphenyl (CBP): (4Phbt)2Ir(acac) in a wide and easily controlled dopant concentration range from 12wt% to 24wt%, a maximum power efficiency of 29lm/W and an external quantum efficiency of 16% of the PHOLEDs were obtained, implying the insensitivity of electroluminescence (EL) properties to doping concentration. Meanwhile, a maximum power efficiency of 5.0lm/W was achieved from a non-doped device with neat (4Phbt)2Ir(acac) as the EML, indicating a superior property of self-quenching resistance. The mechanism of direct exciton formation, in which exciton-formation regions are distributed throughout the EML, is responsible for the significant alleviation of triplet\u2013triplet annihilation and superior EL performance.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Orange", "start": 0, "end": 6, "annotation": null}, {"text": "\u2013", "start": 6, "end": 7, "annotation": null}, {"text": "red", "start": 7, "end": 10, "annotation": null}, {"text": "phosphorescent", "start": 11, "end": 25, "annotation": null}, {"text": "organic", "start": 26, "end": 33, "annotation": null}, {"text": "light", "start": 34, "end": 39, "annotation": null}, {"text": "-", "start": 39, "end": 40, "annotation": null}, {"text": "emitting", "start": 40, "end": 48, "annotation": null}, {"text": "devices", "start": 49, "end": 56, "annotation": null}, {"text": "(", "start": 57, "end": 58, "annotation": null}, {"text": "PHOLEDs", "start": 58, "end": 65, "annotation": null}, {"text": ")", "start": 65, "end": 66, "annotation": null}, {"text": "with", "start": 67, "end": 71, "annotation": null}, {"text": "high", "start": 72, "end": 76, "annotation": null}, {"text": "efficiency", "start": 77, "end": 87, "annotation": null}, {"text": "and", "start": 88, "end": 91, "annotation": null}, {"text": "concentration", "start": 92, "end": 105, "annotation": null}, {"text": "insensitivity", "start": 106, "end": 119, "annotation": null}, {"text": "based", "start": 120, "end": 125, "annotation": null}, {"text": "on", "start": 126, "end": 128, "annotation": null}, {"text": "a", "start": 129, "end": 130, "annotation": null}, {"text": "novel", "start": 131, "end": 136, "annotation": null}, {"text": "iridium", "start": 137, "end": 144, "annotation": null}, {"text": "complex", "start": 145, "end": 152, "annotation": null}, {"text": ",", "start": 152, "end": 153, "annotation": null}, {"text": "bis[2-(biphenyl-4-yl)benzothiazole-N,C2\u2032]iridium(III)", "start": 154, "end": 207, "annotation": null}, {"text": "(", "start": 208, "end": 209, "annotation": null}, {"text": "acetylacetonate", "start": 209, "end": 224, "annotation": null}, {"text": ")", "start": 224, "end": 225, "annotation": null}, {"text": "[(4Phbt)2Ir(acac)]", "start": 226, "end": 244, "annotation": null}, {"text": ",", "start": 244, "end": 245, "annotation": null}, {"text": "were", "start": 246, "end": 250, "annotation": null}, {"text": "fabricated", "start": 251, "end": 261, "annotation": null}, {"text": ".", "start": 261, "end": 262, "annotation": null}], [{"text": "With", "start": 263, "end": 267, "annotation": null}, {"text": "the", "start": 268, "end": 271, "annotation": null}, {"text": "heavily", "start": 272, "end": 279, "annotation": null}, {"text": "doped", "start": 280, "end": 285, "annotation": "DOPANT"}, {"text": "emissive", "start": 286, "end": 294, "annotation": "BASEMAT"}, {"text": "layer", "start": 295, "end": 300, "annotation": "BASEMAT"}, {"text": "(", "start": 301, "end": 302, "annotation": null}, {"text": "EML", "start": 302, "end": 305, "annotation": "BASEMAT"}, {"text": ")", "start": 305, "end": 306, "annotation": null}, {"text": "of", "start": 307, "end": 309, "annotation": null}, {"text": "4,4\u2032-N,N\u2032-dicarbazolylbiphenyl", "start": 310, "end": 340, "annotation": null}, {"text": "(", "start": 341, "end": 342, "annotation": null}, {"text": "CBP", "start": 342, "end": 345, "annotation": null}, {"text": ")", "start": 345, "end": 346, "annotation": null}, {"text": ":", "start": 346, "end": 347, "annotation": null}, {"text": "(4Phbt)2Ir(acac)", "start": 348, "end": 364, "annotation": "BASEMAT"}, {"text": "in", "start": 365, "end": 367, "annotation": null}, {"text": "a", "start": 368, "end": 369, "annotation": null}, {"text": "wide", "start": 370, "end": 374, "annotation": null}, {"text": "and", "start": 375, "end": 378, "annotation": null}, {"text": "easily", "start": 379, "end": 385, "annotation": null}, {"text": "controlled", "start": 386, "end": 396, "annotation": null}, {"text": "dopant", "start": 397, "end": 403, "annotation": null}, {"text": "concentration", "start": 404, "end": 417, "annotation": null}, {"text": "range", "start": 418, "end": 423, "annotation": null}, {"text": "from", "start": 424, "end": 428, "annotation": null}, {"text": "12wt", "start": 429, "end": 433, "annotation": "DOPMODQ"}, {"text": "%", "start": 433, "end": 434, "annotation": "DOPMODQ"}, {"text": "to", "start": 435, "end": 437, "annotation": "DOPMODQ"}, {"text": "24wt", "start": 438, "end": 442, "annotation": "DOPMODQ"}, {"text": "%", "start": 442, "end": 443, "annotation": "DOPMODQ"}, {"text": ",", "start": 443, "end": 444, "annotation": null}, {"text": "a", "start": 445, "end": 446, "annotation": null}, {"text": "maximum", "start": 447, "end": 454, "annotation": null}, {"text": "power", "start": 455, "end": 460, "annotation": null}, {"text": "efficiency", "start": 461, "end": 471, "annotation": null}, {"text": "of", "start": 472, "end": 474, "annotation": null}, {"text": "29lm", "start": 475, "end": 479, "annotation": null}, {"text": "/", "start": 479, "end": 480, "annotation": null}, {"text": "W", "start": 480, "end": 481, "annotation": null}, {"text": "and", "start": 482, "end": 485, "annotation": null}, {"text": "an", "start": 486, "end": 488, "annotation": null}, {"text": "external", "start": 489, "end": 497, "annotation": null}, {"text": "quantum", "start": 498, "end": 505, "annotation": null}, {"text": "efficiency", "start": 506, "end": 516, "annotation": null}, {"text": "of", "start": 517, "end": 519, "annotation": null}, {"text": "16", "start": 520, "end": 522, "annotation": null}, {"text": "%", "start": 522, "end": 523, "annotation": null}, {"text": "of", "start": 524, "end": 526, "annotation": null}, {"text": "the", "start": 527, "end": 530, "annotation": null}, {"text": "PHOLEDs", "start": 531, "end": 538, "annotation": null}, {"text": "were", "start": 539, "end": 543, "annotation": null}, {"text": "obtained", "start": 544, "end": 552, "annotation": null}, {"text": ",", "start": 552, "end": 553, "annotation": null}, {"text": "implying", "start": 554, "end": 562, "annotation": null}, {"text": "the", "start": 563, "end": 566, "annotation": null}, {"text": "insensitivity", "start": 567, "end": 580, "annotation": null}, {"text": "of", "start": 581, "end": 583, "annotation": null}, {"text": "electroluminescence", "start": 584, "end": 603, "annotation": null}, {"text": "(", "start": 604, "end": 605, "annotation": null}, {"text": "EL", "start": 605, "end": 607, "annotation": null}, {"text": ")", "start": 607, "end": 608, "annotation": null}, {"text": "properties", "start": 609, "end": 619, "annotation": null}, {"text": "to", "start": 620, "end": 622, "annotation": null}, {"text": "doping", "start": 623, "end": 629, "annotation": null}, {"text": "concentration", "start": 630, "end": 643, "annotation": null}, {"text": ".", "start": 643, "end": 644, "annotation": null}], [{"text": "Meanwhile", "start": 645, "end": 654, "annotation": null}, {"text": ",", "start": 654, "end": 655, "annotation": null}, {"text": "a", "start": 656, "end": 657, "annotation": null}, {"text": "maximum", "start": 658, "end": 665, "annotation": null}, {"text": "power", "start": 666, "end": 671, "annotation": null}, {"text": "efficiency", "start": 672, "end": 682, "annotation": null}, {"text": "of", "start": 683, "end": 685, "annotation": null}, {"text": "5.0lm", "start": 686, "end": 691, "annotation": null}, {"text": "/", "start": 691, "end": 692, "annotation": null}, {"text": "W", "start": 692, "end": 693, "annotation": null}, {"text": "was", "start": 694, "end": 697, "annotation": null}, {"text": "achieved", "start": 698, "end": 706, "annotation": null}, {"text": "from", "start": 707, "end": 711, "annotation": null}, {"text": "a", "start": 712, "end": 713, "annotation": null}, {"text": "non-doped", "start": 714, "end": 723, "annotation": "DOPANT"}, {"text": "device", "start": 724, "end": 730, "annotation": null}, {"text": "with", "start": 731, "end": 735, "annotation": null}, {"text": "neat", "start": 736, "end": 740, "annotation": null}, {"text": "(4Phbt)2Ir(acac)", "start": 741, "end": 757, "annotation": "BASEMAT"}, {"text": "as", "start": 758, "end": 760, "annotation": null}, {"text": "the", "start": 761, "end": 764, "annotation": null}, {"text": "EML", "start": 765, "end": 768, "annotation": null}, {"text": ",", "start": 768, "end": 769, "annotation": null}, {"text": "indicating", "start": 770, "end": 780, "annotation": null}, {"text": "a", "start": 781, "end": 782, "annotation": null}, {"text": "superior", "start": 783, "end": 791, "annotation": null}, {"text": "property", "start": 792, "end": 800, "annotation": null}, {"text": "of", "start": 801, "end": 803, "annotation": null}, {"text": "self", "start": 804, "end": 808, "annotation": null}, {"text": "-", "start": 808, "end": 809, "annotation": null}, {"text": "quenching", "start": 809, "end": 818, "annotation": null}, {"text": "resistance", "start": 819, "end": 829, "annotation": null}, {"text": ".", "start": 829, "end": 830, "annotation": null}], [{"text": "The", "start": 831, "end": 834, "annotation": null}, {"text": "mechanism", "start": 835, "end": 844, "annotation": null}, {"text": "of", "start": 845, "end": 847, "annotation": null}, {"text": "direct", "start": 848, "end": 854, "annotation": null}, {"text": "exciton", "start": 855, "end": 862, "annotation": null}, {"text": "formation", "start": 863, "end": 872, "annotation": null}, {"text": ",", "start": 872, "end": 873, "annotation": null}, {"text": "in", "start": 874, "end": 876, "annotation": null}, {"text": "which", "start": 877, "end": 882, "annotation": null}, {"text": "exciton", "start": 883, "end": 890, "annotation": null}, {"text": "-", "start": 890, "end": 891, "annotation": null}, {"text": "formation", "start": 891, "end": 900, "annotation": null}, {"text": "regions", "start": 901, "end": 908, "annotation": null}, {"text": "are", "start": 909, "end": 912, "annotation": null}, {"text": "distributed", "start": 913, "end": 924, "annotation": null}, {"text": "throughout", "start": 925, "end": 935, "annotation": null}, {"text": "the", "start": 936, "end": 939, "annotation": null}, {"text": "EML", "start": 940, "end": 943, "annotation": null}, {"text": ",", "start": 943, "end": 944, "annotation": null}, {"text": "is", "start": 945, "end": 947, "annotation": null}, {"text": "responsible", "start": 948, "end": 959, "annotation": null}, {"text": "for", "start": 960, "end": 963, "annotation": null}, {"text": "the", "start": 964, "end": 967, "annotation": null}, {"text": "significant", "start": 968, "end": 979, "annotation": null}, {"text": "alleviation", "start": 980, "end": 991, "annotation": null}, {"text": "of", "start": 992, "end": 994, "annotation": null}, {"text": "triplet", "start": 995, "end": 1002, "annotation": null}, {"text": "\u2013", "start": 1002, "end": 1003, "annotation": null}, {"text": "triplet", "start": 1003, "end": 1010, "annotation": null}, {"text": "annihilation", "start": 1011, "end": 1023, "annotation": null}, {"text": "and", "start": 1024, "end": 1027, "annotation": null}, {"text": "superior", "start": 1028, "end": 1036, "annotation": null}, {"text": "EL", "start": 1037, "end": 1039, "annotation": null}, {"text": "performance", "start": 1040, "end": 1051, "annotation": null}, {"text": ".", "start": 1051, "end": 1052, "annotation": null}]]} +{"remark": "doping_annt1", "text": "Near-infrared (NIR) luminescent ternary and hydrated binary neodymium \u03b2-diketonates emitting at ca. 1330 nm are presented. The effects of ligand moieties on the photoluminescence properties of Nd3+ ions are discussed. Moreover, the neodymium organic complex neodymium tris(2-theonyltrifluoroacetonate)bis(triphenylphosphine oxide), Nd(TTA)3(TPPO)2, which has the best photoluminescence properties among all investigated neodymium complexes, is incorporated into vinyltriethoxysilane-derived ORMOSIL (organically modified silicate) film by a multistep sol\u2013gel process. The Nd doping concentration was up to 5 mol% related to Si. The spectroscopic results about as-doped ORMOSIL films indicate that the ligands around Nd3+ ions indeed shield effectively Nd3+ ions from luminescence-quenching impurities in the host matrix, such as OH groups.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Near", "start": 0, "end": 4, "annotation": null}, {"text": "-", "start": 4, "end": 5, "annotation": null}, {"text": "infrared", "start": 5, "end": 13, "annotation": null}, {"text": "(", "start": 14, "end": 15, "annotation": null}, {"text": "NIR", "start": 15, "end": 18, "annotation": null}, {"text": ")", "start": 18, "end": 19, "annotation": null}, {"text": "luminescent", "start": 20, "end": 31, "annotation": null}, {"text": "ternary", "start": 32, "end": 39, "annotation": null}, {"text": "and", "start": 40, "end": 43, "annotation": null}, {"text": "hydrated", "start": 44, "end": 52, "annotation": null}, {"text": "binary", "start": 53, "end": 59, "annotation": null}, {"text": "neodymium", "start": 60, "end": 69, "annotation": null}, {"text": "\u03b2-diketonates", "start": 70, "end": 83, "annotation": null}, {"text": "emitting", "start": 84, "end": 92, "annotation": null}, {"text": "at", "start": 93, "end": 95, "annotation": null}, {"text": "ca.", "start": 96, "end": 99, "annotation": null}, {"text": "1330", "start": 100, "end": 104, "annotation": null}, {"text": "nm", "start": 105, "end": 107, "annotation": null}, {"text": "are", "start": 108, "end": 111, "annotation": null}, {"text": "presented", "start": 112, "end": 121, "annotation": null}, {"text": ".", "start": 121, "end": 122, "annotation": null}], [{"text": "The", "start": 123, "end": 126, "annotation": null}, {"text": "effects", "start": 127, "end": 134, "annotation": null}, {"text": "of", "start": 135, "end": 137, "annotation": null}, {"text": "ligand", "start": 138, "end": 144, "annotation": null}, {"text": "moieties", "start": 145, "end": 153, "annotation": null}, {"text": "on", "start": 154, "end": 156, "annotation": null}, {"text": "the", "start": 157, "end": 160, "annotation": null}, {"text": "photoluminescence", "start": 161, "end": 178, "annotation": null}, {"text": "properties", "start": 179, "end": 189, "annotation": null}, {"text": "of", "start": 190, "end": 192, "annotation": null}, {"text": "Nd3+", "start": 193, "end": 197, "annotation": null}, {"text": "ions", "start": 198, "end": 202, "annotation": null}, {"text": "are", "start": 203, "end": 206, "annotation": null}, {"text": "discussed", "start": 207, "end": 216, "annotation": null}, {"text": ".", "start": 216, "end": 217, "annotation": null}], [{"text": "Moreover", "start": 218, "end": 226, "annotation": null}, {"text": ",", "start": 226, "end": 227, "annotation": null}, {"text": "the", "start": 228, "end": 231, "annotation": null}, {"text": "neodymium", "start": 232, "end": 241, "annotation": null}, {"text": "organic", "start": 242, "end": 249, "annotation": null}, {"text": "complex", "start": 250, "end": 257, "annotation": null}, {"text": "neodymium", "start": 258, "end": 267, "annotation": null}, {"text": "tris(2-theonyltrifluoroacetonate)bis(triphenylphosphine", "start": 268, "end": 323, "annotation": null}, {"text": "oxide", "start": 324, "end": 329, "annotation": null}, {"text": ")", "start": 329, "end": 330, "annotation": null}, {"text": ",", "start": 330, "end": 331, "annotation": null}, {"text": "Nd(TTA)3(TPPO)2", "start": 332, "end": 347, "annotation": null}, {"text": ",", "start": 347, "end": 348, "annotation": null}, {"text": "which", "start": 349, "end": 354, "annotation": null}, {"text": "has", "start": 355, "end": 358, "annotation": null}, {"text": "the", "start": 359, "end": 362, "annotation": null}, {"text": "best", "start": 363, "end": 367, "annotation": null}, {"text": "photoluminescence", "start": 368, "end": 385, "annotation": null}, {"text": "properties", "start": 386, "end": 396, "annotation": null}, {"text": "among", "start": 397, "end": 402, "annotation": null}, {"text": "all", "start": 403, "end": 406, "annotation": null}, {"text": "investigated", "start": 407, "end": 419, "annotation": null}, {"text": "neodymium", "start": 420, "end": 429, "annotation": null}, {"text": "complexes", "start": 430, "end": 439, "annotation": null}, {"text": ",", "start": 439, "end": 440, "annotation": null}, {"text": "is", "start": 441, "end": 443, "annotation": null}, {"text": "incorporated", "start": 444, "end": 456, "annotation": null}, {"text": "into", "start": 457, "end": 461, "annotation": null}, {"text": "vinyltriethoxysilane", "start": 462, "end": 482, "annotation": null}, {"text": "-", "start": 482, "end": 483, "annotation": null}, {"text": "derived", "start": 483, "end": 490, "annotation": null}, {"text": "ORMOSIL", "start": 491, "end": 498, "annotation": null}, {"text": "(", "start": 499, "end": 500, "annotation": null}, {"text": "organically", "start": 500, "end": 511, "annotation": null}, {"text": "modified", "start": 512, "end": 520, "annotation": null}, {"text": "silicate", "start": 521, "end": 529, "annotation": null}, {"text": ")", "start": 529, "end": 530, "annotation": null}, {"text": "film", "start": 531, "end": 535, "annotation": null}, {"text": "by", "start": 536, "end": 538, "annotation": null}, {"text": "a", "start": 539, "end": 540, "annotation": null}, {"text": "multistep", "start": 541, "end": 550, "annotation": null}, {"text": "sol", "start": 551, "end": 554, "annotation": null}, {"text": "\u2013", "start": 554, "end": 555, "annotation": null}, {"text": "gel", "start": 555, "end": 558, "annotation": null}, {"text": "process", "start": 559, "end": 566, "annotation": null}, {"text": ".", "start": 566, "end": 567, "annotation": null}], [{"text": "The", "start": 568, "end": 571, "annotation": null}, {"text": "Nd", "start": 572, "end": 574, "annotation": "DOPANT"}, {"text": "doping", "start": 575, "end": 581, "annotation": null}, {"text": "concentration", "start": 582, "end": 595, "annotation": null}, {"text": "was", "start": 596, "end": 599, "annotation": null}, {"text": "up", "start": 600, "end": 602, "annotation": null}, {"text": "to", "start": 603, "end": 605, "annotation": null}, {"text": "5", "start": 606, "end": 607, "annotation": "DOPMODQ"}, {"text": "mol", "start": 608, "end": 611, "annotation": "DOPMODQ"}, {"text": "%", "start": 611, "end": 612, "annotation": "DOPMODQ"}, {"text": "related", "start": 613, "end": 620, "annotation": null}, {"text": "to", "start": 621, "end": 623, "annotation": null}, {"text": "Si", "start": 624, "end": 626, "annotation": "BASEMAT"}, {"text": ".", "start": 626, "end": 627, "annotation": null}], [{"text": "The", "start": 628, "end": 631, "annotation": null}, {"text": "spectroscopic", "start": 632, "end": 645, "annotation": null}, {"text": "results", "start": 646, "end": 653, "annotation": null}, {"text": "about", "start": 654, "end": 659, "annotation": null}, {"text": "as-doped", "start": 660, "end": 668, "annotation": null}, {"text": "ORMOSIL", "start": 669, "end": 676, "annotation": null}, {"text": "films", "start": 677, "end": 682, "annotation": null}, {"text": "indicate", "start": 683, "end": 691, "annotation": null}, {"text": "that", "start": 692, "end": 696, "annotation": null}, {"text": "the", "start": 697, "end": 700, "annotation": null}, {"text": "ligands", "start": 701, "end": 708, "annotation": null}, {"text": "around", "start": 709, "end": 715, "annotation": null}, {"text": "Nd3+", "start": 716, "end": 720, "annotation": null}, {"text": "ions", "start": 721, "end": 725, "annotation": null}, {"text": "indeed", "start": 726, "end": 732, "annotation": null}, {"text": "shield", "start": 733, "end": 739, "annotation": null}, {"text": "effectively", "start": 740, "end": 751, "annotation": null}, {"text": "Nd3+", "start": 752, "end": 756, "annotation": null}, {"text": "ions", "start": 757, "end": 761, "annotation": null}, {"text": "from", "start": 762, "end": 766, "annotation": null}, {"text": "luminescence", "start": 767, "end": 779, "annotation": null}, {"text": "-", "start": 779, "end": 780, "annotation": null}, {"text": "quenching", "start": 780, "end": 789, "annotation": null}, {"text": "impurities", "start": 790, "end": 800, "annotation": null}, {"text": "in", "start": 801, "end": 803, "annotation": null}, {"text": "the", "start": 804, "end": 807, "annotation": null}, {"text": "host", "start": 808, "end": 812, "annotation": null}, {"text": "matrix", "start": 813, "end": 819, "annotation": null}, {"text": ",", "start": 819, "end": 820, "annotation": null}, {"text": "such", "start": 821, "end": 825, "annotation": null}, {"text": "as", "start": 826, "end": 828, "annotation": null}, {"text": "OH", "start": 829, "end": 831, "annotation": null}, {"text": "groups", "start": 832, "end": 838, "annotation": null}, {"text": ".", "start": 838, "end": 839, "annotation": null}]], "meta": {"doi": "10.1016/j.tsf.2004.11.120"}} +{"remark": "doping_annt1", "text": "Orange\u2013red phosphorescent organic light-emitting devices (PHOLEDs) with high efficiency and concentration insensitivity based on a novel iridium complex, bis[2-(biphenyl-4-yl)benzothiazole-N,C2\u2032]iridium(III) (acetylacetonate) [(4Phbt)2Ir(acac)], were fabricated. With the heavily doped emissive layer (EML) of 4,4\u2032-N,N\u2032-dicarbazolylbiphenyl (CBP): (4Phbt)2Ir(acac) in a wide and easily controlled dopant concentration range from 12wt% to 24wt%, a maximum power efficiency of 29lm/W and an external quantum efficiency of 16% of the PHOLEDs were obtained, implying the insensitivity of electroluminescence (EL) properties to doping concentration. Meanwhile, a maximum power efficiency of 5.0lm/W was achieved from a non-doped device with neat (4Phbt)2Ir(acac) as the EML, indicating a superior property of self-quenching resistance. The mechanism of direct exciton formation, in which exciton-formation regions are distributed throughout the EML, is responsible for the significant alleviation of triplet\u2013triplet annihilation and superior EL performance.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Orange", "start": 0, "end": 6, "annotation": null}, {"text": "\u2013", "start": 6, "end": 7, "annotation": null}, {"text": "red", "start": 7, "end": 10, "annotation": null}, {"text": "phosphorescent", "start": 11, "end": 25, "annotation": null}, {"text": "organic", "start": 26, "end": 33, "annotation": null}, {"text": "light", "start": 34, "end": 39, "annotation": null}, {"text": "-", "start": 39, "end": 40, "annotation": null}, {"text": "emitting", "start": 40, "end": 48, "annotation": null}, {"text": "devices", "start": 49, "end": 56, "annotation": null}, {"text": "(", "start": 57, "end": 58, "annotation": null}, {"text": "PHOLEDs", "start": 58, "end": 65, "annotation": null}, {"text": ")", "start": 65, "end": 66, "annotation": null}, {"text": "with", "start": 67, "end": 71, "annotation": null}, {"text": "high", "start": 72, "end": 76, "annotation": null}, {"text": "efficiency", "start": 77, "end": 87, "annotation": null}, {"text": "and", "start": 88, "end": 91, "annotation": null}, {"text": "concentration", "start": 92, "end": 105, "annotation": null}, {"text": "insensitivity", "start": 106, "end": 119, "annotation": null}, {"text": "based", "start": 120, "end": 125, "annotation": null}, {"text": "on", "start": 126, "end": 128, "annotation": null}, {"text": "a", "start": 129, "end": 130, "annotation": null}, {"text": "novel", "start": 131, "end": 136, "annotation": null}, {"text": "iridium", "start": 137, "end": 144, "annotation": null}, {"text": "complex", "start": 145, "end": 152, "annotation": null}, {"text": ",", "start": 152, "end": 153, "annotation": null}, {"text": "bis[2-(biphenyl-4-yl)benzothiazole-N,C2\u2032]iridium(III)", "start": 154, "end": 207, "annotation": null}, {"text": "(", "start": 208, "end": 209, "annotation": null}, {"text": "acetylacetonate", "start": 209, "end": 224, "annotation": null}, {"text": ")", "start": 224, "end": 225, "annotation": null}, {"text": "[(4Phbt)2Ir(acac)]", "start": 226, "end": 244, "annotation": null}, {"text": ",", "start": 244, "end": 245, "annotation": null}, {"text": "were", "start": 246, "end": 250, "annotation": null}, {"text": "fabricated", "start": 251, "end": 261, "annotation": null}, {"text": ".", "start": 261, "end": 262, "annotation": null}], [{"text": "With", "start": 263, "end": 267, "annotation": null}, {"text": "the", "start": 268, "end": 271, "annotation": null}, {"text": "heavily", "start": 272, "end": 279, "annotation": null}, {"text": "doped", "start": 280, "end": 285, "annotation": "DOPANT"}, {"text": "emissive", "start": 286, "end": 294, "annotation": "BASEMAT"}, {"text": "layer", "start": 295, "end": 300, "annotation": "BASEMAT"}, {"text": "(", "start": 301, "end": 302, "annotation": null}, {"text": "EML", "start": 302, "end": 305, "annotation": "BASEMAT"}, {"text": ")", "start": 305, "end": 306, "annotation": null}, {"text": "of", "start": 307, "end": 309, "annotation": null}, {"text": "4,4\u2032-N,N\u2032-dicarbazolylbiphenyl", "start": 310, "end": 340, "annotation": null}, {"text": "(", "start": 341, "end": 342, "annotation": null}, {"text": "CBP", "start": 342, "end": 345, "annotation": null}, {"text": ")", "start": 345, "end": 346, "annotation": null}, {"text": ":", "start": 346, "end": 347, "annotation": null}, {"text": "(4Phbt)2Ir(acac)", "start": 348, "end": 364, "annotation": "BASEMAT"}, {"text": "in", "start": 365, "end": 367, "annotation": null}, {"text": "a", "start": 368, "end": 369, "annotation": null}, {"text": "wide", "start": 370, "end": 374, "annotation": null}, {"text": "and", "start": 375, "end": 378, "annotation": null}, {"text": "easily", "start": 379, "end": 385, "annotation": null}, {"text": "controlled", "start": 386, "end": 396, "annotation": null}, {"text": "dopant", "start": 397, "end": 403, "annotation": null}, {"text": "concentration", "start": 404, "end": 417, "annotation": null}, {"text": "range", "start": 418, "end": 423, "annotation": null}, {"text": "from", "start": 424, "end": 428, "annotation": null}, {"text": "12wt", "start": 429, "end": 433, "annotation": "DOPMODQ"}, {"text": "%", "start": 433, "end": 434, "annotation": "DOPMODQ"}, {"text": "to", "start": 435, "end": 437, "annotation": "DOPMODQ"}, {"text": "24wt", "start": 438, "end": 442, "annotation": "DOPMODQ"}, {"text": "%", "start": 442, "end": 443, "annotation": "DOPMODQ"}, {"text": ",", "start": 443, "end": 444, "annotation": null}, {"text": "a", "start": 445, "end": 446, "annotation": null}, {"text": "maximum", "start": 447, "end": 454, "annotation": null}, {"text": "power", "start": 455, "end": 460, "annotation": null}, {"text": "efficiency", "start": 461, "end": 471, "annotation": null}, {"text": "of", "start": 472, "end": 474, "annotation": null}, {"text": "29lm", "start": 475, "end": 479, "annotation": null}, {"text": "/", "start": 479, "end": 480, "annotation": null}, {"text": "W", "start": 480, "end": 481, "annotation": null}, {"text": "and", "start": 482, "end": 485, "annotation": null}, {"text": "an", "start": 486, "end": 488, "annotation": null}, {"text": "external", "start": 489, "end": 497, "annotation": null}, {"text": "quantum", "start": 498, "end": 505, "annotation": null}, {"text": "efficiency", "start": 506, "end": 516, "annotation": null}, {"text": "of", "start": 517, "end": 519, "annotation": null}, {"text": "16", "start": 520, "end": 522, "annotation": null}, {"text": "%", "start": 522, "end": 523, "annotation": null}, {"text": "of", "start": 524, "end": 526, "annotation": null}, {"text": "the", "start": 527, "end": 530, "annotation": null}, {"text": "PHOLEDs", "start": 531, "end": 538, "annotation": null}, {"text": "were", "start": 539, "end": 543, "annotation": null}, {"text": "obtained", "start": 544, "end": 552, "annotation": null}, {"text": ",", "start": 552, "end": 553, "annotation": null}, {"text": "implying", "start": 554, "end": 562, "annotation": null}, {"text": "the", "start": 563, "end": 566, "annotation": null}, {"text": "insensitivity", "start": 567, "end": 580, "annotation": null}, {"text": "of", "start": 581, "end": 583, "annotation": null}, {"text": "electroluminescence", "start": 584, "end": 603, "annotation": null}, {"text": "(", "start": 604, "end": 605, "annotation": null}, {"text": "EL", "start": 605, "end": 607, "annotation": null}, {"text": ")", "start": 607, "end": 608, "annotation": null}, {"text": "properties", "start": 609, "end": 619, "annotation": null}, {"text": "to", "start": 620, "end": 622, "annotation": null}, {"text": "doping", "start": 623, "end": 629, "annotation": null}, {"text": "concentration", "start": 630, "end": 643, "annotation": null}, {"text": ".", "start": 643, "end": 644, "annotation": null}], [{"text": "Meanwhile", "start": 645, "end": 654, "annotation": null}, {"text": ",", "start": 654, "end": 655, "annotation": null}, {"text": "a", "start": 656, "end": 657, "annotation": null}, {"text": "maximum", "start": 658, "end": 665, "annotation": null}, {"text": "power", "start": 666, "end": 671, "annotation": null}, {"text": "efficiency", "start": 672, "end": 682, "annotation": null}, {"text": "of", "start": 683, "end": 685, "annotation": null}, {"text": "5.0lm", "start": 686, "end": 691, "annotation": null}, {"text": "/", "start": 691, "end": 692, "annotation": null}, {"text": "W", "start": 692, "end": 693, "annotation": null}, {"text": "was", "start": 694, "end": 697, "annotation": null}, {"text": "achieved", "start": 698, "end": 706, "annotation": null}, {"text": "from", "start": 707, "end": 711, "annotation": null}, {"text": "a", "start": 712, "end": 713, "annotation": null}, {"text": "non-doped", "start": 714, "end": 723, "annotation": "DOPANT"}, {"text": "device", "start": 724, "end": 730, "annotation": null}, {"text": "with", "start": 731, "end": 735, "annotation": null}, {"text": "neat", "start": 736, "end": 740, "annotation": null}, {"text": "(4Phbt)2Ir(acac)", "start": 741, "end": 757, "annotation": "BASEMAT"}, {"text": "as", "start": 758, "end": 760, "annotation": null}, {"text": "the", "start": 761, "end": 764, "annotation": null}, {"text": "EML", "start": 765, "end": 768, "annotation": null}, {"text": ",", "start": 768, "end": 769, "annotation": null}, {"text": "indicating", "start": 770, "end": 780, "annotation": null}, {"text": "a", "start": 781, "end": 782, "annotation": null}, {"text": "superior", "start": 783, "end": 791, "annotation": null}, {"text": "property", "start": 792, "end": 800, "annotation": null}, {"text": "of", "start": 801, "end": 803, "annotation": null}, {"text": "self", "start": 804, "end": 808, "annotation": null}, {"text": "-", "start": 808, "end": 809, "annotation": null}, {"text": "quenching", "start": 809, "end": 818, "annotation": null}, {"text": "resistance", "start": 819, "end": 829, "annotation": null}, {"text": ".", "start": 829, "end": 830, "annotation": null}], [{"text": "The", "start": 831, "end": 834, "annotation": null}, {"text": "mechanism", "start": 835, "end": 844, "annotation": null}, {"text": "of", "start": 845, "end": 847, "annotation": null}, {"text": "direct", "start": 848, "end": 854, "annotation": null}, {"text": "exciton", "start": 855, "end": 862, "annotation": null}, {"text": "formation", "start": 863, "end": 872, "annotation": null}, {"text": ",", "start": 872, "end": 873, "annotation": null}, {"text": "in", "start": 874, "end": 876, "annotation": null}, {"text": "which", "start": 877, "end": 882, "annotation": null}, {"text": "exciton", "start": 883, "end": 890, "annotation": null}, {"text": "-", "start": 890, "end": 891, "annotation": null}, {"text": "formation", "start": 891, "end": 900, "annotation": null}, {"text": "regions", "start": 901, "end": 908, "annotation": null}, {"text": "are", "start": 909, "end": 912, "annotation": null}, {"text": "distributed", "start": 913, "end": 924, "annotation": null}, {"text": "throughout", "start": 925, "end": 935, "annotation": null}, {"text": "the", "start": 936, "end": 939, "annotation": null}, {"text": "EML", "start": 940, "end": 943, "annotation": null}, {"text": ",", "start": 943, "end": 944, "annotation": null}, {"text": "is", "start": 945, "end": 947, "annotation": null}, {"text": "responsible", "start": 948, "end": 959, "annotation": null}, {"text": "for", "start": 960, "end": 963, "annotation": null}, {"text": "the", "start": 964, "end": 967, "annotation": null}, {"text": "significant", "start": 968, "end": 979, "annotation": null}, {"text": "alleviation", "start": 980, "end": 991, "annotation": null}, {"text": "of", "start": 992, "end": 994, "annotation": null}, {"text": "triplet", "start": 995, "end": 1002, "annotation": null}, {"text": "\u2013", "start": 1002, "end": 1003, "annotation": null}, {"text": "triplet", "start": 1003, "end": 1010, "annotation": null}, {"text": "annihilation", "start": 1011, "end": 1023, "annotation": null}, {"text": "and", "start": 1024, "end": 1027, "annotation": null}, {"text": "superior", "start": 1028, "end": 1036, "annotation": null}, {"text": "EL", "start": 1037, "end": 1039, "annotation": null}, {"text": "performance", "start": 1040, "end": 1051, "annotation": null}, {"text": ".", "start": 1051, "end": 1052, "annotation": null}]], "meta": {"doi": "10.1016/j.jlumin.2014.06.025"}} {"text": "Highly conducting Ti1\u2212xNbxO2 thin films have been grown on glass substrates from TiCl4, Nb(OEt)5 and H2O with an atomic layer deposition (ALD) technique. The films become electrically conducting and crystallize with the anatase structure upon a reductive post-deposition annealing. A highly c-axis oriented Ti0.75Nb0.25O2 film exhibits room-temperature resistivity as low as 1.4\u00d710\u22123\u03a9cm. The charge carrier density and electron mobility, as estimated from Seebeck and resistivity measurements, are 0.21\u20131.1\u00d71021cm\u22123 and 4.2\u201322cm2/Vs, respectively. The electrical properties of the ALD-fabricated Nb-doped anatase films are comparable with those of sputter-deposited polycrystalline films on glass.", "meta": {"doi": "10.1016/j.tsf.2013.11.043"}, "_input_hash": -1756602016, "_task_hash": -1375999270, "tokens": [[{"text": "Highly", "start": 0, "end": 6, "id": 0, "annotation": null}, {"text": "conducting", "start": 7, "end": 17, "id": 1, "annotation": null}, {"text": "Ti1\u2212xNbxO2", "start": 18, "end": 28, "id": 2, "annotation": null}, {"text": "thin", "start": 29, "end": 33, "id": 3, "annotation": null}, {"text": "films", "start": 34, "end": 39, "id": 4, "annotation": null}, {"text": "have", "start": 40, "end": 44, "id": 5, "annotation": null}, {"text": "been", "start": 45, "end": 49, "id": 6, "annotation": null}, {"text": "grown", "start": 50, "end": 55, "id": 7, "annotation": null}, {"text": "on", "start": 56, "end": 58, "id": 8, "annotation": null}, {"text": "glass", "start": 59, "end": 64, "id": 9, "annotation": null}, {"text": "substrates", "start": 65, "end": 75, "id": 10, "annotation": null}, {"text": "from", "start": 76, "end": 80, "id": 11, "annotation": null}, {"text": "TiCl4", "start": 81, "end": 86, "id": 12, "annotation": null}, {"text": ",", "start": 87, "end": 88, "id": 13, "annotation": null}, {"text": "Nb(OEt)5", "start": 89, "end": 97, "id": 14, "annotation": null}, {"text": "and", "start": 98, "end": 101, "id": 15, "annotation": null}, {"text": "H2O", "start": 102, "end": 105, "id": 16, "annotation": null}, {"text": "with", "start": 106, "end": 110, "id": 17, "annotation": null}, {"text": "an", "start": 111, "end": 113, "id": 18, "annotation": null}, {"text": "atomic", "start": 114, "end": 120, "id": 19, "annotation": null}, {"text": "layer", "start": 121, "end": 126, "id": 20, "annotation": null}, {"text": "deposition", "start": 127, "end": 137, "id": 21, "annotation": null}, {"text": "(", "start": 138, "end": 139, "id": 22, "annotation": null}, {"text": "ALD", "start": 140, "end": 143, "id": 23, "annotation": null}, {"text": ")", "start": 144, "end": 145, "id": 24, "annotation": null}, {"text": "technique", "start": 146, "end": 155, "id": 25, "annotation": null}, {"text": ".", "start": 156, "end": 157, "id": 26, "annotation": null}], [{"text": "The", "start": 158, "end": 161, "id": 27, "annotation": null}, {"text": "films", "start": 162, "end": 167, "id": 28, "annotation": null}, {"text": "become", "start": 168, "end": 174, "id": 29, "annotation": null}, {"text": "electrically", "start": 175, "end": 187, "id": 30, "annotation": null}, {"text": "conducting", "start": 188, "end": 198, "id": 31, "annotation": null}, {"text": "and", "start": 199, "end": 202, "id": 32, "annotation": null}, {"text": "crystallize", "start": 203, "end": 214, "id": 33, "annotation": null}, {"text": "with", "start": 215, "end": 219, "id": 34, "annotation": null}, {"text": "the", "start": 220, "end": 223, "id": 35, "annotation": null}, {"text": "anatase", "start": 224, "end": 231, "id": 36, "annotation": null}, {"text": "structure", "start": 232, "end": 241, "id": 37, "annotation": null}, {"text": "upon", "start": 242, "end": 246, "id": 38, "annotation": null}, {"text": "a", "start": 247, "end": 248, "id": 39, "annotation": null}, {"text": "reductive", "start": 249, "end": 258, "id": 40, "annotation": null}, {"text": "post", "start": 259, "end": 263, "id": 41, "annotation": null}, {"text": "-", "start": 264, "end": 265, "id": 42, "annotation": null}, {"text": "deposition", "start": 266, "end": 276, "id": 43, "annotation": null}, {"text": "annealing", "start": 277, "end": 286, "id": 44, "annotation": null}, {"text": ".", "start": 287, "end": 288, "id": 45, "annotation": null}], [{"text": "A", "start": 289, "end": 290, "id": 46, "annotation": null}, {"text": "highly", "start": 291, "end": 297, "id": 47, "annotation": null}, {"text": "c", "start": 298, "end": 299, "id": 48, "annotation": null}, {"text": "-", "start": 300, "end": 301, "id": 49, "annotation": null}, {"text": "axis", "start": 302, "end": 306, "id": 50, "annotation": null}, {"text": "oriented", "start": 307, "end": 315, "id": 51, "annotation": null}, {"text": "Ti0.75Nb0.25O2", "start": 316, "end": 330, "id": 52, "annotation": null}, {"text": "film", "start": 331, "end": 335, "id": 53, "annotation": null}, {"text": "exhibits", "start": 336, "end": 344, "id": 54, "annotation": null}, {"text": "room", "start": 345, "end": 349, "id": 55, "annotation": null}, {"text": "-", "start": 350, "end": 351, "id": 56, "annotation": null}, {"text": "temperature", "start": 352, "end": 363, "id": 57, "annotation": null}, {"text": "resistivity", "start": 364, "end": 375, "id": 58, "annotation": null}, {"text": "as", "start": 376, "end": 378, "id": 59, "annotation": null}, {"text": "low", "start": 379, "end": 382, "id": 60, "annotation": null}, {"text": "as", "start": 383, "end": 385, "id": 61, "annotation": null}, {"text": "1.4\u00d710\u22123\u03a9cm", "start": 386, "end": 397, "id": 62, "annotation": null}, {"text": ".", "start": 398, "end": 399, "id": 63, "annotation": null}], [{"text": "The", "start": 400, "end": 403, "id": 64, "annotation": null}, {"text": "charge", "start": 404, "end": 410, "id": 65, "annotation": null}, {"text": "carrier", "start": 411, "end": 418, "id": 66, "annotation": null}, {"text": "density", "start": 419, "end": 426, "id": 67, "annotation": null}, {"text": "and", "start": 427, "end": 430, "id": 68, "annotation": null}, {"text": "electron", "start": 431, "end": 439, "id": 69, "annotation": null}, {"text": "mobility", "start": 440, "end": 448, "id": 70, "annotation": null}, {"text": ",", "start": 449, "end": 450, "id": 71, "annotation": null}, {"text": "as", "start": 451, "end": 453, "id": 72, "annotation": null}, {"text": "estimated", "start": 454, "end": 463, "id": 73, "annotation": null}, {"text": "from", "start": 464, "end": 468, "id": 74, "annotation": null}, {"text": "Seebeck", "start": 469, "end": 476, "id": 75, "annotation": null}, {"text": "and", "start": 477, "end": 480, "id": 76, "annotation": null}, {"text": "resistivity", "start": 481, "end": 492, "id": 77, "annotation": null}, {"text": "measurements", "start": 493, "end": 505, "id": 78, "annotation": null}, {"text": ",", "start": 506, "end": 507, "id": 79, "annotation": null}, {"text": "are", "start": 508, "end": 511, "id": 80, "annotation": null}, {"text": "0.21\u20131.1\u00d71021cm\u22123", "start": 512, "end": 529, "id": 81, "annotation": "DOPMODQ"}, {"text": "and", "start": 530, "end": 533, "id": 82, "annotation": null}, {"text": "4.2\u201322cm2", "start": 534, "end": 543, "id": 83, "annotation": null}, {"text": "/", "start": 544, "end": 545, "id": 84, "annotation": null}, {"text": "Vs", "start": 546, "end": 548, "id": 85, "annotation": null}, {"text": ",", "start": 549, "end": 550, "id": 86, "annotation": null}, {"text": "respectively", "start": 551, "end": 563, "id": 87, "annotation": null}, {"text": ".", "start": 564, "end": 565, "id": 88, "annotation": null}], [{"text": "The", "start": 566, "end": 569, "id": 89, "annotation": null}, {"text": "electrical", "start": 570, "end": 580, "id": 90, "annotation": null}, {"text": "properties", "start": 581, "end": 591, "id": 91, "annotation": null}, {"text": "of", "start": 592, "end": 594, "id": 92, "annotation": null}, {"text": "the", "start": 595, "end": 598, "id": 93, "annotation": null}, {"text": "ALD", "start": 599, "end": 602, "id": 94, "annotation": null}, {"text": "-", "start": 603, "end": 604, "id": 95, "annotation": null}, {"text": "fabricated", "start": 605, "end": 615, "id": 96, "annotation": null}, {"text": "Nb", "start": 616, "end": 618, "id": 97, "annotation": "DOPANT"}, {"text": "-", "start": 619, "end": 620, "id": 98, "annotation": null}, {"text": "doped", "start": 621, "end": 626, "id": 99, "annotation": null}, {"text": "anatase", "start": 627, "end": 634, "id": 100, "annotation": "BASEMAT"}, {"text": "films", "start": 635, "end": 640, "id": 101, "annotation": null}, {"text": "are", "start": 641, "end": 644, "id": 102, "annotation": null}, {"text": "comparable", "start": 645, "end": 655, "id": 103, "annotation": null}, {"text": "with", "start": 656, "end": 660, "id": 104, "annotation": null}, {"text": "those", "start": 661, "end": 666, "id": 105, "annotation": null}, {"text": "of", "start": 667, "end": 669, "id": 106, "annotation": null}, {"text": "sputter", "start": 670, "end": 677, "id": 107, "annotation": null}, {"text": "-", "start": 678, "end": 679, "id": 108, "annotation": null}, {"text": "deposited", "start": 680, "end": 689, "id": 109, "annotation": null}, {"text": "polycrystalline", "start": 690, "end": 705, "id": 110, "annotation": null}, {"text": "films", "start": 706, "end": 711, "id": 111, "annotation": null}, {"text": "on", "start": 712, "end": 714, "id": 112, "annotation": null}, {"text": "glass", "start": 715, "end": 720, "id": 113, "annotation": null}, {"text": ".", "start": 721, "end": 722, "id": 114, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Spatially heterogeneous electrical and electrochemical properties were observed for hydrogen-terminated, boron-doped nanocrystalline diamond thin-film electrodes by conducting-probe atomic force microscopy (CP-AFM) and scanning electrochemical microscopy (SECM). CP-AFM was used to simultaneously map the topography and electrical conductivity of the film as a function of the boron-doping level and bias voltage. The electrode was characterized by areas of high electrical conductivity separated by regions of low conductivity. The fraction of a particular film's area that exhibited high conductivity remained invariant with the polarity and magnitude of the bias voltage, while the current flow at any of the conductive regions increased proportionally with the bias voltage indicative of metal-like electronic properties. The fraction of highly conductive area increased with the doping level. One possible cause for the differential conductivity across a film is a nonuniform distribution of boron dopant, which leads to a nonuniform charge carrier concentration. SECM was also used to spatially interrogate the electrochemical activity of the diamond film using three redox systems: Ru(NH3)6+3/+2, Fe(CN)63-/4-, and IrCl62-/3-. Isolated regions of high electrochemical activity were found for all three systems, and interestingly, the active regions on a given thin-film electrode were different for each. It is concluded that current flow through this doped nanocrystalline film occurs through a fixed number of conductive sites and all of these sites appear to be electrochemically active for the redox systems tested. The results have important implications for understanding how boron-doped diamond functions as an electrochemical electrode. \u00a9 2007 American Chemical Society.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Spatially", "start": 0, "end": 9, "annotation": null}, {"text": "heterogeneous", "start": 10, "end": 23, "annotation": null}, {"text": "electrical", "start": 24, "end": 34, "annotation": null}, {"text": "and", "start": 35, "end": 38, "annotation": null}, {"text": "electrochemical", "start": 39, "end": 54, "annotation": null}, {"text": "properties", "start": 55, "end": 65, "annotation": null}, {"text": "were", "start": 66, "end": 70, "annotation": null}, {"text": "observed", "start": 71, "end": 79, "annotation": null}, {"text": "for", "start": 80, "end": 83, "annotation": null}, {"text": "hydrogen", "start": 84, "end": 92, "annotation": null}, {"text": "-", "start": 92, "end": 93, "annotation": null}, {"text": "terminated", "start": 93, "end": 103, "annotation": null}, {"text": ",", "start": 103, "end": 104, "annotation": null}, {"text": "boron", "start": 105, "end": 110, "annotation": "DOPANT"}, {"text": "-", "start": 110, "end": 111, "annotation": null}, {"text": "doped", "start": 111, "end": 116, "annotation": null}, {"text": "nanocrystalline", "start": 117, "end": 132, "annotation": null}, {"text": "diamond", "start": 133, "end": 140, "annotation": "BASEMAT"}, {"text": "thin", "start": 141, "end": 145, "annotation": null}, {"text": "-", "start": 145, "end": 146, "annotation": null}, {"text": "film", "start": 146, "end": 150, "annotation": null}, {"text": "electrodes", "start": 151, "end": 161, "annotation": null}, {"text": "by", "start": 162, "end": 164, "annotation": null}, {"text": "conducting", "start": 165, "end": 175, "annotation": null}, {"text": "-", "start": 175, "end": 176, "annotation": null}, {"text": "probe", "start": 176, "end": 181, "annotation": null}, {"text": "atomic", "start": 182, "end": 188, "annotation": null}, {"text": "force", "start": 189, "end": 194, "annotation": null}, {"text": "microscopy", "start": 195, "end": 205, "annotation": null}, {"text": "(", "start": 206, "end": 207, "annotation": null}, {"text": "CP", "start": 207, "end": 209, "annotation": null}, {"text": "-", "start": 209, "end": 210, "annotation": null}, {"text": "AFM", "start": 210, "end": 213, "annotation": null}, {"text": ")", "start": 213, "end": 214, "annotation": null}, {"text": "and", "start": 215, "end": 218, "annotation": null}, {"text": "scanning", "start": 219, "end": 227, "annotation": null}, {"text": "electrochemical", "start": 228, "end": 243, "annotation": null}, {"text": "microscopy", "start": 244, "end": 254, "annotation": null}, {"text": "(", "start": 255, "end": 256, "annotation": null}, {"text": "SECM", "start": 256, "end": 260, "annotation": null}, {"text": ")", "start": 260, "end": 261, "annotation": null}, {"text": ".", "start": 261, "end": 262, "annotation": null}], [{"text": "CP", "start": 263, "end": 265, "annotation": null}, {"text": "-", "start": 265, "end": 266, "annotation": null}, {"text": "AFM", "start": 266, "end": 269, "annotation": null}, {"text": "was", "start": 270, "end": 273, "annotation": null}, {"text": "used", "start": 274, "end": 278, "annotation": null}, {"text": "to", "start": 279, "end": 281, "annotation": null}, {"text": "simultaneously", "start": 282, "end": 296, "annotation": null}, {"text": "map", "start": 297, "end": 300, "annotation": null}, {"text": "the", "start": 301, "end": 304, "annotation": null}, {"text": "topography", "start": 305, "end": 315, "annotation": null}, {"text": "and", "start": 316, "end": 319, "annotation": null}, {"text": "electrical", "start": 320, "end": 330, "annotation": null}, {"text": "conductivity", "start": 331, "end": 343, "annotation": null}, {"text": "of", "start": 344, "end": 346, "annotation": null}, {"text": "the", "start": 347, "end": 350, "annotation": null}, {"text": "film", "start": 351, "end": 355, "annotation": null}, {"text": "as", "start": 356, "end": 358, "annotation": null}, {"text": "a", "start": 359, "end": 360, "annotation": null}, {"text": "function", "start": 361, "end": 369, "annotation": null}, {"text": "of", "start": 370, "end": 372, "annotation": null}, {"text": "the", "start": 373, "end": 376, "annotation": null}, {"text": "boron", "start": 377, "end": 382, "annotation": null}, {"text": "-", "start": 382, "end": 383, "annotation": null}, {"text": "doping", "start": 383, "end": 389, "annotation": null}, {"text": "level", "start": 390, "end": 395, "annotation": null}, {"text": "and", "start": 396, "end": 399, "annotation": null}, {"text": "bias", "start": 400, "end": 404, "annotation": null}, {"text": "voltage", "start": 405, "end": 412, "annotation": null}, {"text": ".", "start": 412, "end": 413, "annotation": null}], [{"text": "The", "start": 414, "end": 417, "annotation": null}, {"text": "electrode", "start": 418, "end": 427, "annotation": null}, {"text": "was", "start": 428, "end": 431, "annotation": null}, {"text": "characterized", "start": 432, "end": 445, "annotation": null}, {"text": "by", "start": 446, "end": 448, "annotation": null}, {"text": "areas", "start": 449, "end": 454, "annotation": null}, {"text": "of", "start": 455, "end": 457, "annotation": null}, {"text": "high", "start": 458, "end": 462, "annotation": null}, {"text": "electrical", "start": 463, "end": 473, "annotation": null}, {"text": "conductivity", "start": 474, "end": 486, "annotation": null}, {"text": "separated", "start": 487, "end": 496, "annotation": null}, {"text": "by", "start": 497, "end": 499, "annotation": null}, {"text": "regions", "start": 500, "end": 507, "annotation": null}, {"text": "of", "start": 508, "end": 510, "annotation": null}, {"text": "low", "start": 511, "end": 514, "annotation": null}, {"text": "conductivity", "start": 515, "end": 527, "annotation": null}, {"text": ".", "start": 527, "end": 528, "annotation": null}], [{"text": "The", "start": 529, "end": 532, "annotation": null}, {"text": "fraction", "start": 533, "end": 541, "annotation": null}, {"text": "of", "start": 542, "end": 544, "annotation": null}, {"text": "a", "start": 545, "end": 546, "annotation": null}, {"text": "particular", "start": 547, "end": 557, "annotation": null}, {"text": "film", "start": 558, "end": 562, "annotation": null}, {"text": "'s", "start": 562, "end": 564, "annotation": null}, {"text": "area", "start": 565, "end": 569, "annotation": null}, {"text": "that", "start": 570, "end": 574, "annotation": null}, {"text": "exhibited", "start": 575, "end": 584, "annotation": null}, {"text": "high", "start": 585, "end": 589, "annotation": null}, {"text": "conductivity", "start": 590, "end": 602, "annotation": null}, {"text": "remained", "start": 603, "end": 611, "annotation": null}, {"text": "invariant", "start": 612, "end": 621, "annotation": null}, {"text": "with", "start": 622, "end": 626, "annotation": null}, {"text": "the", "start": 627, "end": 630, "annotation": null}, {"text": "polarity", "start": 631, "end": 639, "annotation": null}, {"text": "and", "start": 640, "end": 643, "annotation": null}, {"text": "magnitude", "start": 644, "end": 653, "annotation": null}, {"text": "of", "start": 654, "end": 656, "annotation": null}, {"text": "the", "start": 657, "end": 660, "annotation": null}, {"text": "bias", "start": 661, "end": 665, "annotation": null}, {"text": "voltage", "start": 666, "end": 673, "annotation": null}, {"text": ",", "start": 673, "end": 674, "annotation": null}, {"text": "while", "start": 675, "end": 680, "annotation": null}, {"text": "the", "start": 681, "end": 684, "annotation": null}, {"text": "current", "start": 685, "end": 692, "annotation": null}, {"text": "flow", "start": 693, "end": 697, "annotation": null}, {"text": "at", "start": 698, "end": 700, "annotation": null}, {"text": "any", "start": 701, "end": 704, "annotation": null}, {"text": "of", "start": 705, "end": 707, "annotation": null}, {"text": "the", "start": 708, "end": 711, "annotation": null}, {"text": "conductive", "start": 712, "end": 722, "annotation": null}, {"text": "regions", "start": 723, "end": 730, "annotation": null}, {"text": "increased", "start": 731, "end": 740, "annotation": null}, {"text": "proportionally", "start": 741, "end": 755, "annotation": null}, {"text": "with", "start": 756, "end": 760, "annotation": null}, {"text": "the", "start": 761, "end": 764, "annotation": null}, {"text": "bias", "start": 765, "end": 769, "annotation": null}, {"text": "voltage", "start": 770, "end": 777, "annotation": null}, {"text": "indicative", "start": 778, "end": 788, "annotation": null}, {"text": "of", "start": 789, "end": 791, "annotation": null}, {"text": "metal", "start": 792, "end": 797, "annotation": null}, {"text": "-", "start": 797, "end": 798, "annotation": null}, {"text": "like", "start": 798, "end": 802, "annotation": null}, {"text": "electronic", "start": 803, "end": 813, "annotation": null}, {"text": "properties", "start": 814, "end": 824, "annotation": null}, {"text": ".", "start": 824, "end": 825, "annotation": null}], [{"text": "The", "start": 826, "end": 829, "annotation": null}, {"text": "fraction", "start": 830, "end": 838, "annotation": null}, {"text": "of", "start": 839, "end": 841, "annotation": null}, {"text": "highly", "start": 842, "end": 848, "annotation": null}, {"text": "conductive", "start": 849, "end": 859, "annotation": null}, {"text": "area", "start": 860, "end": 864, "annotation": null}, {"text": "increased", "start": 865, "end": 874, "annotation": null}, {"text": "with", "start": 875, "end": 879, "annotation": null}, {"text": "the", "start": 880, "end": 883, "annotation": null}, {"text": "doping", "start": 884, "end": 890, "annotation": null}, {"text": "level", "start": 891, "end": 896, "annotation": null}, {"text": ".", "start": 896, "end": 897, "annotation": null}], [{"text": "One", "start": 898, "end": 901, "annotation": null}, {"text": "possible", "start": 902, "end": 910, "annotation": null}, {"text": "cause", "start": 911, "end": 916, "annotation": null}, {"text": "for", "start": 917, "end": 920, "annotation": null}, {"text": "the", "start": 921, "end": 924, "annotation": null}, {"text": "differential", "start": 925, "end": 937, "annotation": null}, {"text": "conductivity", "start": 938, "end": 950, "annotation": null}, {"text": "across", "start": 951, "end": 957, "annotation": null}, {"text": "a", "start": 958, "end": 959, "annotation": null}, {"text": "film", "start": 960, "end": 964, "annotation": null}, {"text": "is", "start": 965, "end": 967, "annotation": null}, {"text": "a", "start": 968, "end": 969, "annotation": null}, {"text": "nonuniform", "start": 970, "end": 980, "annotation": null}, {"text": "distribution", "start": 981, "end": 993, "annotation": null}, {"text": "of", "start": 994, "end": 996, "annotation": null}, {"text": "boron", "start": 997, "end": 1002, "annotation": null}, {"text": "dopant", "start": 1003, "end": 1009, "annotation": null}, {"text": ",", "start": 1009, "end": 1010, "annotation": null}, {"text": "which", "start": 1011, "end": 1016, "annotation": null}, {"text": "leads", "start": 1017, "end": 1022, "annotation": null}, {"text": "to", "start": 1023, "end": 1025, "annotation": null}, {"text": "a", "start": 1026, "end": 1027, "annotation": null}, {"text": "nonuniform", "start": 1028, "end": 1038, "annotation": null}, {"text": "charge", "start": 1039, "end": 1045, "annotation": null}, {"text": "carrier", "start": 1046, "end": 1053, "annotation": null}, {"text": "concentration", "start": 1054, "end": 1067, "annotation": null}, {"text": ".", "start": 1067, "end": 1068, "annotation": null}], [{"text": "SECM", "start": 1069, "end": 1073, "annotation": null}, {"text": "was", "start": 1074, "end": 1077, "annotation": null}, {"text": "also", "start": 1078, "end": 1082, "annotation": null}, {"text": "used", "start": 1083, "end": 1087, "annotation": null}, {"text": "to", "start": 1088, "end": 1090, "annotation": null}, {"text": "spatially", "start": 1091, "end": 1100, "annotation": null}, {"text": "interrogate", "start": 1101, "end": 1112, "annotation": null}, {"text": "the", "start": 1113, "end": 1116, "annotation": null}, {"text": "electrochemical", "start": 1117, "end": 1132, "annotation": null}, {"text": "activity", "start": 1133, "end": 1141, "annotation": null}, {"text": "of", "start": 1142, "end": 1144, "annotation": null}, {"text": "the", "start": 1145, "end": 1148, "annotation": null}, {"text": "diamond", "start": 1149, "end": 1156, "annotation": null}, {"text": "film", "start": 1157, "end": 1161, "annotation": null}, {"text": "using", "start": 1162, "end": 1167, "annotation": null}, {"text": "three", "start": 1168, "end": 1173, "annotation": null}, {"text": "redox", "start": 1174, "end": 1179, "annotation": null}, {"text": "systems", "start": 1180, "end": 1187, "annotation": null}, {"text": ":", "start": 1187, "end": 1188, "annotation": null}, {"text": "Ru(NH3)6+3", "start": 1189, "end": 1199, "annotation": null}, {"text": "/", "start": 1199, "end": 1200, "annotation": null}, {"text": "+", "start": 1200, "end": 1201, "annotation": null}, {"text": "2", "start": 1201, "end": 1202, "annotation": null}, {"text": ",", "start": 1202, "end": 1203, "annotation": null}, {"text": "Fe(CN)63-", "start": 1204, "end": 1213, "annotation": null}, {"text": "/", "start": 1213, "end": 1214, "annotation": null}, {"text": "4-", "start": 1214, "end": 1216, "annotation": null}, {"text": ",", "start": 1216, "end": 1217, "annotation": null}, {"text": "and", "start": 1218, "end": 1221, "annotation": null}, {"text": "IrCl62-", "start": 1222, "end": 1229, "annotation": null}, {"text": "/", "start": 1229, "end": 1230, "annotation": null}, {"text": "3-", "start": 1230, "end": 1232, "annotation": null}, {"text": ".", "start": 1232, "end": 1233, "annotation": null}], [{"text": "Isolated", "start": 1234, "end": 1242, "annotation": null}, {"text": "regions", "start": 1243, "end": 1250, "annotation": null}, {"text": "of", "start": 1251, "end": 1253, "annotation": null}, {"text": "high", "start": 1254, "end": 1258, "annotation": null}, {"text": "electrochemical", "start": 1259, "end": 1274, "annotation": null}, {"text": "activity", "start": 1275, "end": 1283, "annotation": null}, {"text": "were", "start": 1284, "end": 1288, "annotation": null}, {"text": "found", "start": 1289, "end": 1294, "annotation": null}, {"text": "for", "start": 1295, "end": 1298, "annotation": null}, {"text": "all", "start": 1299, "end": 1302, "annotation": null}, {"text": "three", "start": 1303, "end": 1308, "annotation": null}, {"text": "systems", "start": 1309, "end": 1316, "annotation": null}, {"text": ",", "start": 1316, "end": 1317, "annotation": null}, {"text": "and", "start": 1318, "end": 1321, "annotation": null}, {"text": "interestingly", "start": 1322, "end": 1335, "annotation": null}, {"text": ",", "start": 1335, "end": 1336, "annotation": null}, {"text": "the", "start": 1337, "end": 1340, "annotation": null}, {"text": "active", "start": 1341, "end": 1347, "annotation": null}, {"text": "regions", "start": 1348, "end": 1355, "annotation": null}, {"text": "on", "start": 1356, "end": 1358, "annotation": null}, {"text": "a", "start": 1359, "end": 1360, "annotation": null}, {"text": "given", "start": 1361, "end": 1366, "annotation": null}, {"text": "thin", "start": 1367, "end": 1371, "annotation": null}, {"text": "-", "start": 1371, "end": 1372, "annotation": null}, {"text": "film", "start": 1372, "end": 1376, "annotation": null}, {"text": "electrode", "start": 1377, "end": 1386, "annotation": null}, {"text": "were", "start": 1387, "end": 1391, "annotation": null}, {"text": "different", "start": 1392, "end": 1401, "annotation": null}, {"text": "for", "start": 1402, "end": 1405, "annotation": null}, {"text": "each", "start": 1406, "end": 1410, "annotation": null}, {"text": ".", "start": 1410, "end": 1411, "annotation": null}], [{"text": "It", "start": 1412, "end": 1414, "annotation": null}, {"text": "is", "start": 1415, "end": 1417, "annotation": null}, {"text": "concluded", "start": 1418, "end": 1427, "annotation": null}, {"text": "that", "start": 1428, "end": 1432, "annotation": null}, {"text": "current", "start": 1433, "end": 1440, "annotation": null}, {"text": "flow", "start": 1441, "end": 1445, "annotation": null}, {"text": "through", "start": 1446, "end": 1453, "annotation": null}, {"text": "this", "start": 1454, "end": 1458, "annotation": null}, {"text": "doped", "start": 1459, "end": 1464, "annotation": null}, {"text": "nanocrystalline", "start": 1465, "end": 1480, "annotation": null}, {"text": "film", "start": 1481, "end": 1485, "annotation": null}, {"text": "occurs", "start": 1486, "end": 1492, "annotation": null}, {"text": "through", "start": 1493, "end": 1500, "annotation": null}, {"text": "a", "start": 1501, "end": 1502, "annotation": null}, {"text": "fixed", "start": 1503, "end": 1508, "annotation": null}, {"text": "number", "start": 1509, "end": 1515, "annotation": null}, {"text": "of", "start": 1516, "end": 1518, "annotation": null}, {"text": "conductive", "start": 1519, "end": 1529, "annotation": null}, {"text": "sites", "start": 1530, "end": 1535, "annotation": null}, {"text": "and", "start": 1536, "end": 1539, "annotation": null}, {"text": "all", "start": 1540, "end": 1543, "annotation": null}, {"text": "of", "start": 1544, "end": 1546, "annotation": null}, {"text": "these", "start": 1547, "end": 1552, "annotation": null}, {"text": "sites", "start": 1553, "end": 1558, "annotation": null}, {"text": "appear", "start": 1559, "end": 1565, "annotation": null}, {"text": "to", "start": 1566, "end": 1568, "annotation": null}, {"text": "be", "start": 1569, "end": 1571, "annotation": null}, {"text": "electrochemically", "start": 1572, "end": 1589, "annotation": null}, {"text": "active", "start": 1590, "end": 1596, "annotation": null}, {"text": "for", "start": 1597, "end": 1600, "annotation": null}, {"text": "the", "start": 1601, "end": 1604, "annotation": null}, {"text": "redox", "start": 1605, "end": 1610, "annotation": null}, {"text": "systems", "start": 1611, "end": 1618, "annotation": null}, {"text": "tested", "start": 1619, "end": 1625, "annotation": null}, {"text": ".", "start": 1625, "end": 1626, "annotation": null}], [{"text": "The", "start": 1627, "end": 1630, "annotation": null}, {"text": "results", "start": 1631, "end": 1638, "annotation": null}, {"text": "have", "start": 1639, "end": 1643, "annotation": null}, {"text": "important", "start": 1644, "end": 1653, "annotation": null}, {"text": "implications", "start": 1654, "end": 1666, "annotation": null}, {"text": "for", "start": 1667, "end": 1670, "annotation": null}, {"text": "understanding", "start": 1671, "end": 1684, "annotation": null}, {"text": "how", "start": 1685, "end": 1688, "annotation": null}, {"text": "boron", "start": 1689, "end": 1694, "annotation": null}, {"text": "-", "start": 1694, "end": 1695, "annotation": null}, {"text": "doped", "start": 1695, "end": 1700, "annotation": null}, {"text": "diamond", "start": 1701, "end": 1708, "annotation": null}, {"text": "functions", "start": 1709, "end": 1718, "annotation": null}, {"text": "as", "start": 1719, "end": 1721, "annotation": null}, {"text": "an", "start": 1722, "end": 1724, "annotation": null}, {"text": "electrochemical", "start": 1725, "end": 1740, "annotation": null}, {"text": "electrode", "start": 1741, "end": 1750, "annotation": null}, {"text": ".", "start": 1750, "end": 1751, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Carbonaceous materials containing non-precious metal atoms and doped with nitrogen have enthralled stunning attention in the field of electrochemical energy conversion systems. Herein, we demonstrated a facile method to fabricate iron and nitrogen doped carbon nanofiber (FeN-CNFs) catalyst material from ferric chloride and interfacial synthesized polyaniline (PANI) nanofibers, by carbonization process in an inert atmosphere at 800 \u00b0C. Further, synthesized material was characterized by elemental analysis and X-ray photoelectron spectroscopy (XPS) that confirms the presence of FeN bonds. The structural and morphological features are studied using various microscopy and spectroscopy techniques. The oxygen reduction reaction (ORR) activity of synthesized catalyst materials was examined by rotating disk electrode experiments in 0.1 M KOH. Among all these synthesized materials FeN-CNFs material showed enhanced ORR activity regarding current density and onset potential. Also, FeN-CNFs catalyst exhibited tolerance to methanol and durability in comparison to commercial Pt/C catalyst. The superior performance of FeN-CNFs may be attributed due to the introduction of Fe and formation of FeN bond in catalyst material.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Carbonaceous", "start": 0, "end": 12, "annotation": "BASEMAT"}, {"text": "materials", "start": 13, "end": 22, "annotation": "BASEMAT"}, {"text": "containing", "start": 23, "end": 33, "annotation": null}, {"text": "non-precious", "start": 34, "end": 46, "annotation": null}, {"text": "metal", "start": 47, "end": 52, "annotation": null}, {"text": "atoms", "start": 53, "end": 58, "annotation": null}, {"text": "and", "start": 59, "end": 62, "annotation": null}, {"text": "doped", "start": 63, "end": 68, "annotation": null}, {"text": "with", "start": 69, "end": 73, "annotation": null}, {"text": "nitrogen", "start": 74, "end": 82, "annotation": "DOPANT"}, {"text": "have", "start": 83, "end": 87, "annotation": null}, {"text": "enthralled", "start": 88, "end": 98, "annotation": null}, {"text": "stunning", "start": 99, "end": 107, "annotation": null}, {"text": "attention", "start": 108, "end": 117, "annotation": null}, {"text": "in", "start": 118, "end": 120, "annotation": null}, {"text": "the", "start": 121, "end": 124, "annotation": null}, {"text": "field", "start": 125, "end": 130, "annotation": null}, {"text": "of", "start": 131, "end": 133, "annotation": null}, {"text": "electrochemical", "start": 134, "end": 149, "annotation": null}, {"text": "energy", "start": 150, "end": 156, "annotation": null}, {"text": "conversion", "start": 157, "end": 167, "annotation": null}, {"text": "systems", "start": 168, "end": 175, "annotation": null}, {"text": ".", "start": 175, "end": 176, "annotation": null}], [{"text": "Herein", "start": 177, "end": 183, "annotation": null}, {"text": ",", "start": 183, "end": 184, "annotation": null}, {"text": "we", "start": 185, "end": 187, "annotation": null}, {"text": "demonstrated", "start": 188, "end": 200, "annotation": null}, {"text": "a", "start": 201, "end": 202, "annotation": null}, {"text": "facile", "start": 203, "end": 209, "annotation": null}, {"text": "method", "start": 210, "end": 216, "annotation": null}, {"text": "to", "start": 217, "end": 219, "annotation": null}, {"text": "fabricate", "start": 220, "end": 229, "annotation": null}, {"text": "iron", "start": 230, "end": 234, "annotation": "DOPANT"}, {"text": "and", "start": 235, "end": 238, "annotation": "DOPANT"}, {"text": "nitrogen", "start": 239, "end": 247, "annotation": "DOPANT"}, {"text": "doped", "start": 248, "end": 253, "annotation": null}, {"text": "carbon", "start": 254, "end": 260, "annotation": "BASEMAT"}, {"text": "nanofiber", "start": 261, "end": 270, "annotation": "BASEMAT"}, {"text": "(", "start": 271, "end": 272, "annotation": null}, {"text": "FeN", "start": 272, "end": 275, "annotation": "DOPANT"}, {"text": "-", "start": 275, "end": 276, "annotation": null}, {"text": "CNFs", "start": 276, "end": 280, "annotation": "BASEMAT"}, {"text": ")", "start": 280, "end": 281, "annotation": null}, {"text": "catalyst", "start": 282, "end": 290, "annotation": null}, {"text": "material", "start": 291, "end": 299, "annotation": null}, {"text": "from", "start": 300, "end": 304, "annotation": null}, {"text": "ferric", "start": 305, "end": 311, "annotation": null}, {"text": "chloride", "start": 312, "end": 320, "annotation": null}, {"text": "and", "start": 321, "end": 324, "annotation": null}, {"text": "interfacial", "start": 325, "end": 336, "annotation": null}, {"text": "synthesized", "start": 337, "end": 348, "annotation": null}, {"text": "polyaniline", "start": 349, "end": 360, "annotation": null}, {"text": "(", "start": 361, "end": 362, "annotation": null}, {"text": "PANI", "start": 362, "end": 366, "annotation": null}, {"text": ")", "start": 366, "end": 367, "annotation": null}, {"text": "nanofibers", "start": 368, "end": 378, "annotation": null}, {"text": ",", "start": 378, "end": 379, "annotation": null}, {"text": "by", "start": 380, "end": 382, "annotation": null}, {"text": "carbonization", "start": 383, "end": 396, "annotation": null}, {"text": "process", "start": 397, "end": 404, "annotation": null}, {"text": "in", "start": 405, "end": 407, "annotation": null}, {"text": "an", "start": 408, "end": 410, "annotation": null}, {"text": "inert", "start": 411, "end": 416, "annotation": null}, {"text": "atmosphere", "start": 417, "end": 427, "annotation": null}, {"text": "at", "start": 428, "end": 430, "annotation": null}, {"text": "800", "start": 431, "end": 434, "annotation": null}, {"text": "\u00b0", "start": 435, "end": 436, "annotation": null}, {"text": "C", "start": 436, "end": 437, "annotation": null}, {"text": ".", "start": 437, "end": 438, "annotation": null}], [{"text": "Further", "start": 439, "end": 446, "annotation": null}, {"text": ",", "start": 446, "end": 447, "annotation": null}, {"text": "synthesized", "start": 448, "end": 459, "annotation": null}, {"text": "material", "start": 460, "end": 468, "annotation": null}, {"text": "was", "start": 469, "end": 472, "annotation": null}, {"text": "characterized", "start": 473, "end": 486, "annotation": null}, {"text": "by", "start": 487, "end": 489, "annotation": null}, {"text": "elemental", "start": 490, "end": 499, "annotation": null}, {"text": "analysis", "start": 500, "end": 508, "annotation": null}, {"text": "and", "start": 509, "end": 512, "annotation": null}, {"text": "X-ray", "start": 513, "end": 518, "annotation": null}, {"text": "photoelectron", "start": 519, "end": 532, "annotation": null}, {"text": "spectroscopy", "start": 533, "end": 545, "annotation": null}, {"text": "(", "start": 546, "end": 547, "annotation": null}, {"text": "XPS", "start": 547, "end": 550, "annotation": null}, {"text": ")", "start": 550, "end": 551, "annotation": null}, {"text": "that", "start": 552, "end": 556, "annotation": null}, {"text": "confirms", "start": 557, "end": 565, "annotation": null}, {"text": "the", "start": 566, "end": 569, "annotation": null}, {"text": "presence", "start": 570, "end": 578, "annotation": null}, {"text": "of", "start": 579, "end": 581, "annotation": null}, {"text": "FeN", "start": 582, "end": 585, "annotation": null}, {"text": "bonds", "start": 586, "end": 591, "annotation": null}, {"text": ".", "start": 591, "end": 592, "annotation": null}], [{"text": "The", "start": 593, "end": 596, "annotation": null}, {"text": "structural", "start": 597, "end": 607, "annotation": null}, {"text": "and", "start": 608, "end": 611, "annotation": null}, {"text": "morphological", "start": 612, "end": 625, "annotation": null}, {"text": "features", "start": 626, "end": 634, "annotation": null}, {"text": "are", "start": 635, "end": 638, "annotation": null}, {"text": "studied", "start": 639, "end": 646, "annotation": null}, {"text": "using", "start": 647, "end": 652, "annotation": null}, {"text": "various", "start": 653, "end": 660, "annotation": null}, {"text": "microscopy", "start": 661, "end": 671, "annotation": null}, {"text": "and", "start": 672, "end": 675, "annotation": null}, {"text": "spectroscopy", "start": 676, "end": 688, "annotation": null}, {"text": "techniques", "start": 689, "end": 699, "annotation": null}, {"text": ".", "start": 699, "end": 700, "annotation": null}], [{"text": "The", "start": 701, "end": 704, "annotation": null}, {"text": "oxygen", "start": 705, "end": 711, "annotation": null}, {"text": "reduction", "start": 712, "end": 721, "annotation": null}, {"text": "reaction", "start": 722, "end": 730, "annotation": null}, {"text": "(", "start": 731, "end": 732, "annotation": null}, {"text": "ORR", "start": 732, "end": 735, "annotation": null}, {"text": ")", "start": 735, "end": 736, "annotation": null}, {"text": "activity", "start": 737, "end": 745, "annotation": null}, {"text": "of", "start": 746, "end": 748, "annotation": null}, {"text": "synthesized", "start": 749, "end": 760, "annotation": null}, {"text": "catalyst", "start": 761, "end": 769, "annotation": null}, {"text": "materials", "start": 770, "end": 779, "annotation": null}, {"text": "was", "start": 780, "end": 783, "annotation": null}, {"text": "examined", "start": 784, "end": 792, "annotation": null}, {"text": "by", "start": 793, "end": 795, "annotation": null}, {"text": "rotating", "start": 796, "end": 804, "annotation": null}, {"text": "disk", "start": 805, "end": 809, "annotation": null}, {"text": "electrode", "start": 810, "end": 819, "annotation": null}, {"text": "experiments", "start": 820, "end": 831, "annotation": null}, {"text": "in", "start": 832, "end": 834, "annotation": null}, {"text": "0.1", "start": 835, "end": 838, "annotation": null}, {"text": "M", "start": 839, "end": 840, "annotation": null}, {"text": "KOH", "start": 841, "end": 844, "annotation": null}, {"text": ".", "start": 844, "end": 845, "annotation": null}], [{"text": "Among", "start": 846, "end": 851, "annotation": null}, {"text": "all", "start": 852, "end": 855, "annotation": null}, {"text": "these", "start": 856, "end": 861, "annotation": null}, {"text": "synthesized", "start": 862, "end": 873, "annotation": null}, {"text": "materials", "start": 874, "end": 883, "annotation": null}, {"text": "FeN", "start": 884, "end": 887, "annotation": "DOPANT"}, {"text": "-", "start": 887, "end": 888, "annotation": null}, {"text": "CNFs", "start": 888, "end": 892, "annotation": "BASEMAT"}, {"text": "material", "start": 893, "end": 901, "annotation": null}, {"text": "showed", "start": 902, "end": 908, "annotation": null}, {"text": "enhanced", "start": 909, "end": 917, "annotation": null}, {"text": "ORR", "start": 918, "end": 921, "annotation": null}, {"text": "activity", "start": 922, "end": 930, "annotation": null}, {"text": "regarding", "start": 931, "end": 940, "annotation": null}, {"text": "current", "start": 941, "end": 948, "annotation": null}, {"text": "density", "start": 949, "end": 956, "annotation": null}, {"text": "and", "start": 957, "end": 960, "annotation": null}, {"text": "onset", "start": 961, "end": 966, "annotation": null}, {"text": "potential", "start": 967, "end": 976, "annotation": null}, {"text": ".", "start": 976, "end": 977, "annotation": null}], [{"text": "Also", "start": 978, "end": 982, "annotation": null}, {"text": ",", "start": 982, "end": 983, "annotation": null}, {"text": "FeN", "start": 984, "end": 987, "annotation": "DOPANT"}, {"text": "-", "start": 987, "end": 988, "annotation": null}, {"text": "CNFs", "start": 988, "end": 992, "annotation": "BASEMAT"}, {"text": "catalyst", "start": 993, "end": 1001, "annotation": null}, {"text": "exhibited", "start": 1002, "end": 1011, "annotation": null}, {"text": "tolerance", "start": 1012, "end": 1021, "annotation": null}, {"text": "to", "start": 1022, "end": 1024, "annotation": null}, {"text": "methanol", "start": 1025, "end": 1033, "annotation": null}, {"text": "and", "start": 1034, "end": 1037, "annotation": null}, {"text": "durability", "start": 1038, "end": 1048, "annotation": null}, {"text": "in", "start": 1049, "end": 1051, "annotation": null}, {"text": "comparison", "start": 1052, "end": 1062, "annotation": null}, {"text": "to", "start": 1063, "end": 1065, "annotation": null}, {"text": "commercial", "start": 1066, "end": 1076, "annotation": null}, {"text": "Pt", "start": 1077, "end": 1079, "annotation": null}, {"text": "/", "start": 1079, "end": 1080, "annotation": null}, {"text": "C", "start": 1080, "end": 1081, "annotation": null}, {"text": "catalyst", "start": 1082, "end": 1090, "annotation": null}, {"text": ".", "start": 1090, "end": 1091, "annotation": null}], [{"text": "The", "start": 1092, "end": 1095, "annotation": null}, {"text": "superior", "start": 1096, "end": 1104, "annotation": null}, {"text": "performance", "start": 1105, "end": 1116, "annotation": null}, {"text": "of", "start": 1117, "end": 1119, "annotation": null}, {"text": "FeN", "start": 1120, "end": 1123, "annotation": "DOPANT"}, {"text": "-", "start": 1123, "end": 1124, "annotation": null}, {"text": "CNFs", "start": 1124, "end": 1128, "annotation": "BASEMAT"}, {"text": "may", "start": 1129, "end": 1132, "annotation": null}, {"text": "be", "start": 1133, "end": 1135, "annotation": null}, {"text": "attributed", "start": 1136, "end": 1146, "annotation": null}, {"text": "due", "start": 1147, "end": 1150, "annotation": null}, {"text": "to", "start": 1151, "end": 1153, "annotation": null}, {"text": "the", "start": 1154, "end": 1157, "annotation": null}, {"text": "introduction", "start": 1158, "end": 1170, "annotation": null}, {"text": "of", "start": 1171, "end": 1173, "annotation": null}, {"text": "Fe", "start": 1174, "end": 1176, "annotation": null}, {"text": "and", "start": 1177, "end": 1180, "annotation": null}, {"text": "formation", "start": 1181, "end": 1190, "annotation": null}, {"text": "of", "start": 1191, "end": 1193, "annotation": null}, {"text": "FeN", "start": 1194, "end": 1197, "annotation": null}, {"text": "bond", "start": 1198, "end": 1202, "annotation": null}, {"text": "in", "start": 1203, "end": 1205, "annotation": null}, {"text": "catalyst", "start": 1206, "end": 1214, "annotation": null}, {"text": "material", "start": 1215, "end": 1223, "annotation": null}, {"text": ".", "start": 1223, "end": 1224, "annotation": null}]]} -{"remark": "doping_annt1", "text": "The growth and reduction of anodic Sb2S3 films on antimony electrodes in alkaline sulfide solutions has been investigated using potentiodynamic, galvanostatic, and potentiostatic techniques. The sulfidation mechanism and the efficiency of charge storage in the sulfide film are dependent on the electrode potential and current density. The initial stages of film formation follow a high field growth process involving ionic transport through the sulfide film. The growth of thicker films is controlled by coupled electrochemical and chemical reactions involving mass transport and nucleation. Metal dissolution accompanies film formation under most growth conditions. The anodic and cathodic behavior of these films is consistent with their rectification or n-type semiconductor properties. \u00a9 1984, The Electrochemical Society, Inc. All rights reserved.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "growth", "start": 4, "end": 10, "annotation": null}, {"text": "and", "start": 11, "end": 14, "annotation": null}, {"text": "reduction", "start": 15, "end": 24, "annotation": null}, {"text": "of", "start": 25, "end": 27, "annotation": null}, {"text": "anodic", "start": 28, "end": 34, "annotation": "DOPANT"}, {"text": "Sb2S3", "start": 35, "end": 40, "annotation": "BASEMAT"}, {"text": "films", "start": 41, "end": 46, "annotation": null}, {"text": "on", "start": 47, "end": 49, "annotation": null}, {"text": "antimony", "start": 50, "end": 58, "annotation": null}, {"text": "electrodes", "start": 59, "end": 69, "annotation": null}, {"text": "in", "start": 70, "end": 72, "annotation": null}, {"text": "alkaline", "start": 73, "end": 81, "annotation": null}, {"text": "sulfide", "start": 82, "end": 89, "annotation": null}, {"text": "solutions", "start": 90, "end": 99, "annotation": null}, {"text": "has", "start": 100, "end": 103, "annotation": null}, {"text": "been", "start": 104, "end": 108, "annotation": null}, {"text": "investigated", "start": 109, "end": 121, "annotation": null}, {"text": "using", "start": 122, "end": 127, "annotation": null}, {"text": "potentiodynamic", "start": 128, "end": 143, "annotation": null}, {"text": ",", "start": 143, "end": 144, "annotation": null}, {"text": "galvanostatic", "start": 145, "end": 158, "annotation": null}, {"text": ",", "start": 158, "end": 159, "annotation": null}, {"text": "and", "start": 160, "end": 163, "annotation": null}, {"text": "potentiostatic", "start": 164, "end": 178, "annotation": null}, {"text": "techniques", "start": 179, "end": 189, "annotation": null}, {"text": ".", "start": 189, "end": 190, "annotation": null}], [{"text": "The", "start": 191, "end": 194, "annotation": null}, {"text": "sulfidation", "start": 195, "end": 206, "annotation": null}, {"text": "mechanism", "start": 207, "end": 216, "annotation": null}, {"text": "and", "start": 217, "end": 220, "annotation": null}, {"text": "the", "start": 221, "end": 224, "annotation": null}, {"text": "efficiency", "start": 225, "end": 235, "annotation": null}, {"text": "of", "start": 236, "end": 238, "annotation": null}, {"text": "charge", "start": 239, "end": 245, "annotation": null}, {"text": "storage", "start": 246, "end": 253, "annotation": null}, {"text": "in", "start": 254, "end": 256, "annotation": null}, {"text": "the", "start": 257, "end": 260, "annotation": null}, {"text": "sulfide", "start": 261, "end": 268, "annotation": null}, {"text": "film", "start": 269, "end": 273, "annotation": null}, {"text": "are", "start": 274, "end": 277, "annotation": null}, {"text": "dependent", "start": 278, "end": 287, "annotation": null}, {"text": "on", "start": 288, "end": 290, "annotation": null}, {"text": "the", "start": 291, "end": 294, "annotation": null}, {"text": "electrode", "start": 295, "end": 304, "annotation": null}, {"text": "potential", "start": 305, "end": 314, "annotation": null}, {"text": "and", "start": 315, "end": 318, "annotation": null}, {"text": "current", "start": 319, "end": 326, "annotation": null}, {"text": "density", "start": 327, "end": 334, "annotation": null}, {"text": ".", "start": 334, "end": 335, "annotation": null}], [{"text": "The", "start": 336, "end": 339, "annotation": null}, {"text": "initial", "start": 340, "end": 347, "annotation": null}, {"text": "stages", "start": 348, "end": 354, "annotation": null}, {"text": "of", "start": 355, "end": 357, "annotation": null}, {"text": "film", "start": 358, "end": 362, "annotation": null}, {"text": "formation", "start": 363, "end": 372, "annotation": null}, {"text": "follow", "start": 373, "end": 379, "annotation": null}, {"text": "a", "start": 380, "end": 381, "annotation": null}, {"text": "high", "start": 382, "end": 386, "annotation": null}, {"text": "field", "start": 387, "end": 392, "annotation": null}, {"text": "growth", "start": 393, "end": 399, "annotation": null}, {"text": "process", "start": 400, "end": 407, "annotation": null}, {"text": "involving", "start": 408, "end": 417, "annotation": null}, {"text": "ionic", "start": 418, "end": 423, "annotation": null}, {"text": "transport", "start": 424, "end": 433, "annotation": null}, {"text": "through", "start": 434, "end": 441, "annotation": null}, {"text": "the", "start": 442, "end": 445, "annotation": null}, {"text": "sulfide", "start": 446, "end": 453, "annotation": null}, {"text": "film", "start": 454, "end": 458, "annotation": null}, {"text": ".", "start": 458, "end": 459, "annotation": null}], [{"text": "The", "start": 460, "end": 463, "annotation": null}, {"text": "growth", "start": 464, "end": 470, "annotation": null}, {"text": "of", "start": 471, "end": 473, "annotation": null}, {"text": "thicker", "start": 474, "end": 481, "annotation": null}, {"text": "films", "start": 482, "end": 487, "annotation": null}, {"text": "is", "start": 488, "end": 490, "annotation": null}, {"text": "controlled", "start": 491, "end": 501, "annotation": null}, {"text": "by", "start": 502, "end": 504, "annotation": null}, {"text": "coupled", "start": 505, "end": 512, "annotation": null}, {"text": "electrochemical", "start": 513, "end": 528, "annotation": null}, {"text": "and", "start": 529, "end": 532, "annotation": null}, {"text": "chemical", "start": 533, "end": 541, "annotation": null}, {"text": "reactions", "start": 542, "end": 551, "annotation": null}, {"text": "involving", "start": 552, "end": 561, "annotation": null}, {"text": "mass", "start": 562, "end": 566, "annotation": null}, {"text": "transport", "start": 567, "end": 576, "annotation": null}, {"text": "and", "start": 577, "end": 580, "annotation": null}, {"text": "nucleation", "start": 581, "end": 591, "annotation": null}, {"text": ".", "start": 591, "end": 592, "annotation": null}], [{"text": "Metal", "start": 593, "end": 598, "annotation": null}, {"text": "dissolution", "start": 599, "end": 610, "annotation": null}, {"text": "accompanies", "start": 611, "end": 622, "annotation": null}, {"text": "film", "start": 623, "end": 627, "annotation": null}, {"text": "formation", "start": 628, "end": 637, "annotation": null}, {"text": "under", "start": 638, "end": 643, "annotation": null}, {"text": "most", "start": 644, "end": 648, "annotation": null}, {"text": "growth", "start": 649, "end": 655, "annotation": null}, {"text": "conditions", "start": 656, "end": 666, "annotation": null}, {"text": ".", "start": 666, "end": 667, "annotation": null}], [{"text": "The", "start": 668, "end": 671, "annotation": null}, {"text": "anodic", "start": 672, "end": 678, "annotation": null}, {"text": "and", "start": 679, "end": 682, "annotation": null}, {"text": "cathodic", "start": 683, "end": 691, "annotation": null}, {"text": "behavior", "start": 692, "end": 700, "annotation": null}, {"text": "of", "start": 701, "end": 703, "annotation": null}, {"text": "these", "start": 704, "end": 709, "annotation": null}, {"text": "films", "start": 710, "end": 715, "annotation": null}, {"text": "is", "start": 716, "end": 718, "annotation": null}, {"text": "consistent", "start": 719, "end": 729, "annotation": null}, {"text": "with", "start": 730, "end": 734, "annotation": null}, {"text": "their", "start": 735, "end": 740, "annotation": null}, {"text": "rectification", "start": 741, "end": 754, "annotation": null}, {"text": "or", "start": 755, "end": 757, "annotation": null}, {"text": "n", "start": 758, "end": 759, "annotation": null}, {"text": "-", "start": 759, "end": 760, "annotation": null}, {"text": "type", "start": 760, "end": 764, "annotation": null}, {"text": "semiconductor", "start": 765, "end": 778, "annotation": null}, {"text": "properties", "start": 779, "end": 789, "annotation": null}, {"text": ".", "start": 789, "end": 790, "annotation": null}], [{"text": "All", "start": 833, "end": 836, "annotation": null}, {"text": "rights", "start": 837, "end": 843, "annotation": null}, {"text": "reserved", "start": 844, "end": 852, "annotation": null}, {"text": ".", "start": 852, "end": 853, "annotation": null}]]} +{"remark": "doping_annt1", "text": "Spatially heterogeneous electrical and electrochemical properties were observed for hydrogen-terminated, boron-doped nanocrystalline diamond thin-film electrodes by conducting-probe atomic force microscopy (CP-AFM) and scanning electrochemical microscopy (SECM). CP-AFM was used to simultaneously map the topography and electrical conductivity of the film as a function of the boron-doping level and bias voltage. The electrode was characterized by areas of high electrical conductivity separated by regions of low conductivity. The fraction of a particular film's area that exhibited high conductivity remained invariant with the polarity and magnitude of the bias voltage, while the current flow at any of the conductive regions increased proportionally with the bias voltage indicative of metal-like electronic properties. The fraction of highly conductive area increased with the doping level. One possible cause for the differential conductivity across a film is a nonuniform distribution of boron dopant, which leads to a nonuniform charge carrier concentration. SECM was also used to spatially interrogate the electrochemical activity of the diamond film using three redox systems: Ru(NH3)6+3/+2, Fe(CN)63-/4-, and IrCl62-/3-. Isolated regions of high electrochemical activity were found for all three systems, and interestingly, the active regions on a given thin-film electrode were different for each. It is concluded that current flow through this doped nanocrystalline film occurs through a fixed number of conductive sites and all of these sites appear to be electrochemically active for the redox systems tested. The results have important implications for understanding how boron-doped diamond functions as an electrochemical electrode. \u00a9 2007 American Chemical Society.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Spatially", "start": 0, "end": 9, "annotation": null}, {"text": "heterogeneous", "start": 10, "end": 23, "annotation": null}, {"text": "electrical", "start": 24, "end": 34, "annotation": null}, {"text": "and", "start": 35, "end": 38, "annotation": null}, {"text": "electrochemical", "start": 39, "end": 54, "annotation": null}, {"text": "properties", "start": 55, "end": 65, "annotation": null}, {"text": "were", "start": 66, "end": 70, "annotation": null}, {"text": "observed", "start": 71, "end": 79, "annotation": null}, {"text": "for", "start": 80, "end": 83, "annotation": null}, {"text": "hydrogen", "start": 84, "end": 92, "annotation": null}, {"text": "-", "start": 92, "end": 93, "annotation": null}, {"text": "terminated", "start": 93, "end": 103, "annotation": null}, {"text": ",", "start": 103, "end": 104, "annotation": null}, {"text": "boron", "start": 105, "end": 110, "annotation": "DOPANT"}, {"text": "-", "start": 110, "end": 111, "annotation": null}, {"text": "doped", "start": 111, "end": 116, "annotation": null}, {"text": "nanocrystalline", "start": 117, "end": 132, "annotation": null}, {"text": "diamond", "start": 133, "end": 140, "annotation": "BASEMAT"}, {"text": "thin", "start": 141, "end": 145, "annotation": null}, {"text": "-", "start": 145, "end": 146, "annotation": null}, {"text": "film", "start": 146, "end": 150, "annotation": null}, {"text": "electrodes", "start": 151, "end": 161, "annotation": null}, {"text": "by", "start": 162, "end": 164, "annotation": null}, {"text": "conducting", "start": 165, "end": 175, "annotation": null}, {"text": "-", "start": 175, "end": 176, "annotation": null}, {"text": "probe", "start": 176, "end": 181, "annotation": null}, {"text": "atomic", "start": 182, "end": 188, "annotation": null}, {"text": "force", "start": 189, "end": 194, "annotation": null}, {"text": "microscopy", "start": 195, "end": 205, "annotation": null}, {"text": "(", "start": 206, "end": 207, "annotation": null}, {"text": "CP", "start": 207, "end": 209, "annotation": null}, {"text": "-", "start": 209, "end": 210, "annotation": null}, {"text": "AFM", "start": 210, "end": 213, "annotation": null}, {"text": ")", "start": 213, "end": 214, "annotation": null}, {"text": "and", "start": 215, "end": 218, "annotation": null}, {"text": "scanning", "start": 219, "end": 227, "annotation": null}, {"text": "electrochemical", "start": 228, "end": 243, "annotation": null}, {"text": "microscopy", "start": 244, "end": 254, "annotation": null}, {"text": "(", "start": 255, "end": 256, "annotation": null}, {"text": "SECM", "start": 256, "end": 260, "annotation": null}, {"text": ")", "start": 260, "end": 261, "annotation": null}, {"text": ".", "start": 261, "end": 262, "annotation": null}], [{"text": "CP", "start": 263, "end": 265, "annotation": null}, {"text": "-", "start": 265, "end": 266, "annotation": null}, {"text": "AFM", "start": 266, "end": 269, "annotation": null}, {"text": "was", "start": 270, "end": 273, "annotation": null}, {"text": "used", "start": 274, "end": 278, "annotation": null}, {"text": "to", "start": 279, "end": 281, "annotation": null}, {"text": "simultaneously", "start": 282, "end": 296, "annotation": null}, {"text": "map", "start": 297, "end": 300, "annotation": null}, {"text": "the", "start": 301, "end": 304, "annotation": null}, {"text": "topography", "start": 305, "end": 315, "annotation": null}, {"text": "and", "start": 316, "end": 319, "annotation": null}, {"text": "electrical", "start": 320, "end": 330, "annotation": null}, {"text": "conductivity", "start": 331, "end": 343, "annotation": null}, {"text": "of", "start": 344, "end": 346, "annotation": null}, {"text": "the", "start": 347, "end": 350, "annotation": null}, {"text": "film", "start": 351, "end": 355, "annotation": null}, {"text": "as", "start": 356, "end": 358, "annotation": null}, {"text": "a", "start": 359, "end": 360, "annotation": null}, {"text": "function", "start": 361, "end": 369, "annotation": null}, {"text": "of", "start": 370, "end": 372, "annotation": null}, {"text": "the", "start": 373, "end": 376, "annotation": null}, {"text": "boron", "start": 377, "end": 382, "annotation": null}, {"text": "-", "start": 382, "end": 383, "annotation": null}, {"text": "doping", "start": 383, "end": 389, "annotation": null}, {"text": "level", "start": 390, "end": 395, "annotation": null}, {"text": "and", "start": 396, "end": 399, "annotation": null}, {"text": "bias", "start": 400, "end": 404, "annotation": null}, {"text": "voltage", "start": 405, "end": 412, "annotation": null}, {"text": ".", "start": 412, "end": 413, "annotation": null}], [{"text": "The", "start": 414, "end": 417, "annotation": null}, {"text": "electrode", "start": 418, "end": 427, "annotation": null}, {"text": "was", "start": 428, "end": 431, "annotation": null}, {"text": "characterized", "start": 432, "end": 445, "annotation": null}, {"text": "by", "start": 446, "end": 448, "annotation": null}, {"text": "areas", "start": 449, "end": 454, "annotation": null}, {"text": "of", "start": 455, "end": 457, "annotation": null}, {"text": "high", "start": 458, "end": 462, "annotation": null}, {"text": "electrical", "start": 463, "end": 473, "annotation": null}, {"text": "conductivity", "start": 474, "end": 486, "annotation": null}, {"text": "separated", "start": 487, "end": 496, "annotation": null}, {"text": "by", "start": 497, "end": 499, "annotation": null}, {"text": "regions", "start": 500, "end": 507, "annotation": null}, {"text": "of", "start": 508, "end": 510, "annotation": null}, {"text": "low", "start": 511, "end": 514, "annotation": null}, {"text": "conductivity", "start": 515, "end": 527, "annotation": null}, {"text": ".", "start": 527, "end": 528, "annotation": null}], [{"text": "The", "start": 529, "end": 532, "annotation": null}, {"text": "fraction", "start": 533, "end": 541, "annotation": null}, {"text": "of", "start": 542, "end": 544, "annotation": null}, {"text": "a", "start": 545, "end": 546, "annotation": null}, {"text": "particular", "start": 547, "end": 557, "annotation": null}, {"text": "film", "start": 558, "end": 562, "annotation": null}, {"text": "'s", "start": 562, "end": 564, "annotation": null}, {"text": "area", "start": 565, "end": 569, "annotation": null}, {"text": "that", "start": 570, "end": 574, "annotation": null}, {"text": "exhibited", "start": 575, "end": 584, "annotation": null}, {"text": "high", "start": 585, "end": 589, "annotation": null}, {"text": "conductivity", "start": 590, "end": 602, "annotation": null}, {"text": "remained", "start": 603, "end": 611, "annotation": null}, {"text": "invariant", "start": 612, "end": 621, "annotation": null}, {"text": "with", "start": 622, "end": 626, "annotation": null}, {"text": "the", "start": 627, "end": 630, "annotation": null}, {"text": "polarity", "start": 631, "end": 639, "annotation": null}, {"text": "and", "start": 640, "end": 643, "annotation": null}, {"text": "magnitude", "start": 644, "end": 653, "annotation": null}, {"text": "of", "start": 654, "end": 656, "annotation": null}, {"text": "the", "start": 657, "end": 660, "annotation": null}, {"text": "bias", "start": 661, "end": 665, "annotation": null}, {"text": "voltage", "start": 666, "end": 673, "annotation": null}, {"text": ",", "start": 673, "end": 674, "annotation": null}, {"text": "while", "start": 675, "end": 680, "annotation": null}, {"text": "the", "start": 681, "end": 684, "annotation": null}, {"text": "current", "start": 685, "end": 692, "annotation": null}, {"text": "flow", "start": 693, "end": 697, "annotation": null}, {"text": "at", "start": 698, "end": 700, "annotation": null}, {"text": "any", "start": 701, "end": 704, "annotation": null}, {"text": "of", "start": 705, "end": 707, "annotation": null}, {"text": "the", "start": 708, "end": 711, "annotation": null}, {"text": "conductive", "start": 712, "end": 722, "annotation": null}, {"text": "regions", "start": 723, "end": 730, "annotation": null}, {"text": "increased", "start": 731, "end": 740, "annotation": null}, {"text": "proportionally", "start": 741, "end": 755, "annotation": null}, {"text": "with", "start": 756, "end": 760, "annotation": null}, {"text": "the", "start": 761, "end": 764, "annotation": null}, {"text": "bias", "start": 765, "end": 769, "annotation": null}, {"text": "voltage", "start": 770, "end": 777, "annotation": null}, {"text": "indicative", "start": 778, "end": 788, "annotation": null}, {"text": "of", "start": 789, "end": 791, "annotation": null}, {"text": "metal", "start": 792, "end": 797, "annotation": null}, {"text": "-", "start": 797, "end": 798, "annotation": null}, {"text": "like", "start": 798, "end": 802, "annotation": null}, {"text": "electronic", "start": 803, "end": 813, "annotation": null}, {"text": "properties", "start": 814, "end": 824, "annotation": null}, {"text": ".", "start": 824, "end": 825, "annotation": null}], [{"text": "The", "start": 826, "end": 829, "annotation": null}, {"text": "fraction", "start": 830, "end": 838, "annotation": null}, {"text": "of", "start": 839, "end": 841, "annotation": null}, {"text": "highly", "start": 842, "end": 848, "annotation": null}, {"text": "conductive", "start": 849, "end": 859, "annotation": null}, {"text": "area", "start": 860, "end": 864, "annotation": null}, {"text": "increased", "start": 865, "end": 874, "annotation": null}, {"text": "with", "start": 875, "end": 879, "annotation": null}, {"text": "the", "start": 880, "end": 883, "annotation": null}, {"text": "doping", "start": 884, "end": 890, "annotation": null}, {"text": "level", "start": 891, "end": 896, "annotation": null}, {"text": ".", "start": 896, "end": 897, "annotation": null}], [{"text": "One", "start": 898, "end": 901, "annotation": null}, {"text": "possible", "start": 902, "end": 910, "annotation": null}, {"text": "cause", "start": 911, "end": 916, "annotation": null}, {"text": "for", "start": 917, "end": 920, "annotation": null}, {"text": "the", "start": 921, "end": 924, "annotation": null}, {"text": "differential", "start": 925, "end": 937, "annotation": null}, {"text": "conductivity", "start": 938, "end": 950, "annotation": null}, {"text": "across", "start": 951, "end": 957, "annotation": null}, {"text": "a", "start": 958, "end": 959, "annotation": null}, {"text": "film", "start": 960, "end": 964, "annotation": null}, {"text": "is", "start": 965, "end": 967, "annotation": null}, {"text": "a", "start": 968, "end": 969, "annotation": null}, {"text": "nonuniform", "start": 970, "end": 980, "annotation": null}, {"text": "distribution", "start": 981, "end": 993, "annotation": null}, {"text": "of", "start": 994, "end": 996, "annotation": null}, {"text": "boron", "start": 997, "end": 1002, "annotation": null}, {"text": "dopant", "start": 1003, "end": 1009, "annotation": null}, {"text": ",", "start": 1009, "end": 1010, "annotation": null}, {"text": "which", "start": 1011, "end": 1016, "annotation": null}, {"text": "leads", "start": 1017, "end": 1022, "annotation": null}, {"text": "to", "start": 1023, "end": 1025, "annotation": null}, {"text": "a", "start": 1026, "end": 1027, "annotation": null}, {"text": "nonuniform", "start": 1028, "end": 1038, "annotation": null}, {"text": "charge", "start": 1039, "end": 1045, "annotation": null}, {"text": "carrier", "start": 1046, "end": 1053, "annotation": null}, {"text": "concentration", "start": 1054, "end": 1067, "annotation": null}, {"text": ".", "start": 1067, "end": 1068, "annotation": null}], [{"text": "SECM", "start": 1069, "end": 1073, "annotation": null}, {"text": "was", "start": 1074, "end": 1077, "annotation": null}, {"text": "also", "start": 1078, "end": 1082, "annotation": null}, {"text": "used", "start": 1083, "end": 1087, "annotation": null}, {"text": "to", "start": 1088, "end": 1090, "annotation": null}, {"text": "spatially", "start": 1091, "end": 1100, "annotation": null}, {"text": "interrogate", "start": 1101, "end": 1112, "annotation": null}, {"text": "the", "start": 1113, "end": 1116, "annotation": null}, {"text": "electrochemical", "start": 1117, "end": 1132, "annotation": null}, {"text": "activity", "start": 1133, "end": 1141, "annotation": null}, {"text": "of", "start": 1142, "end": 1144, "annotation": null}, {"text": "the", "start": 1145, "end": 1148, "annotation": null}, {"text": "diamond", "start": 1149, "end": 1156, "annotation": null}, {"text": "film", "start": 1157, "end": 1161, "annotation": null}, {"text": "using", "start": 1162, "end": 1167, "annotation": null}, {"text": "three", "start": 1168, "end": 1173, "annotation": null}, {"text": "redox", "start": 1174, "end": 1179, "annotation": null}, {"text": "systems", "start": 1180, "end": 1187, "annotation": null}, {"text": ":", "start": 1187, "end": 1188, "annotation": null}, {"text": "Ru(NH3)6+3", "start": 1189, "end": 1199, "annotation": null}, {"text": "/", "start": 1199, "end": 1200, "annotation": null}, {"text": "+", "start": 1200, "end": 1201, "annotation": null}, {"text": "2", "start": 1201, "end": 1202, "annotation": null}, {"text": ",", "start": 1202, "end": 1203, "annotation": null}, {"text": "Fe(CN)63-", "start": 1204, "end": 1213, "annotation": null}, {"text": "/", "start": 1213, "end": 1214, "annotation": null}, {"text": "4-", "start": 1214, "end": 1216, "annotation": null}, {"text": ",", "start": 1216, "end": 1217, "annotation": null}, {"text": "and", "start": 1218, "end": 1221, "annotation": null}, {"text": "IrCl62-", "start": 1222, "end": 1229, "annotation": null}, {"text": "/", "start": 1229, "end": 1230, "annotation": null}, {"text": "3-", "start": 1230, "end": 1232, "annotation": null}, {"text": ".", "start": 1232, "end": 1233, "annotation": null}], [{"text": "Isolated", "start": 1234, "end": 1242, "annotation": null}, {"text": "regions", "start": 1243, "end": 1250, "annotation": null}, {"text": "of", "start": 1251, "end": 1253, "annotation": null}, {"text": "high", "start": 1254, "end": 1258, "annotation": null}, {"text": "electrochemical", "start": 1259, "end": 1274, "annotation": null}, {"text": "activity", "start": 1275, "end": 1283, "annotation": null}, {"text": "were", "start": 1284, "end": 1288, "annotation": null}, {"text": "found", "start": 1289, "end": 1294, "annotation": null}, {"text": "for", "start": 1295, "end": 1298, "annotation": null}, {"text": "all", "start": 1299, "end": 1302, "annotation": null}, {"text": "three", "start": 1303, "end": 1308, "annotation": null}, {"text": "systems", "start": 1309, "end": 1316, "annotation": null}, {"text": ",", "start": 1316, "end": 1317, "annotation": null}, {"text": "and", "start": 1318, "end": 1321, "annotation": null}, {"text": "interestingly", "start": 1322, "end": 1335, "annotation": null}, {"text": ",", "start": 1335, "end": 1336, "annotation": null}, {"text": "the", "start": 1337, "end": 1340, "annotation": null}, {"text": "active", "start": 1341, "end": 1347, "annotation": null}, {"text": "regions", "start": 1348, "end": 1355, "annotation": null}, {"text": "on", "start": 1356, "end": 1358, "annotation": null}, {"text": "a", "start": 1359, "end": 1360, "annotation": null}, {"text": "given", "start": 1361, "end": 1366, "annotation": null}, {"text": "thin", "start": 1367, "end": 1371, "annotation": null}, {"text": "-", "start": 1371, "end": 1372, "annotation": null}, {"text": "film", "start": 1372, "end": 1376, "annotation": null}, {"text": "electrode", "start": 1377, "end": 1386, "annotation": null}, {"text": "were", "start": 1387, "end": 1391, "annotation": null}, {"text": "different", "start": 1392, "end": 1401, "annotation": null}, {"text": "for", "start": 1402, "end": 1405, "annotation": null}, {"text": "each", "start": 1406, "end": 1410, "annotation": null}, {"text": ".", "start": 1410, "end": 1411, "annotation": null}], [{"text": "It", "start": 1412, "end": 1414, "annotation": null}, {"text": "is", "start": 1415, "end": 1417, "annotation": null}, {"text": "concluded", "start": 1418, "end": 1427, "annotation": null}, {"text": "that", "start": 1428, "end": 1432, "annotation": null}, {"text": "current", "start": 1433, "end": 1440, "annotation": null}, {"text": "flow", "start": 1441, "end": 1445, "annotation": null}, {"text": "through", "start": 1446, "end": 1453, "annotation": null}, {"text": "this", "start": 1454, "end": 1458, "annotation": null}, {"text": "doped", "start": 1459, "end": 1464, "annotation": null}, {"text": "nanocrystalline", "start": 1465, "end": 1480, "annotation": null}, {"text": "film", "start": 1481, "end": 1485, "annotation": null}, {"text": "occurs", "start": 1486, "end": 1492, "annotation": null}, {"text": "through", "start": 1493, "end": 1500, "annotation": null}, {"text": "a", "start": 1501, "end": 1502, "annotation": null}, {"text": "fixed", "start": 1503, "end": 1508, "annotation": null}, {"text": "number", "start": 1509, "end": 1515, "annotation": null}, {"text": "of", "start": 1516, "end": 1518, "annotation": null}, {"text": "conductive", "start": 1519, "end": 1529, "annotation": null}, {"text": "sites", "start": 1530, "end": 1535, "annotation": null}, {"text": "and", "start": 1536, "end": 1539, "annotation": null}, {"text": "all", "start": 1540, "end": 1543, "annotation": null}, {"text": "of", "start": 1544, "end": 1546, "annotation": null}, {"text": "these", "start": 1547, "end": 1552, "annotation": null}, {"text": "sites", "start": 1553, "end": 1558, "annotation": null}, {"text": "appear", "start": 1559, "end": 1565, "annotation": null}, {"text": "to", "start": 1566, "end": 1568, "annotation": null}, {"text": "be", "start": 1569, "end": 1571, "annotation": null}, {"text": "electrochemically", "start": 1572, "end": 1589, "annotation": null}, {"text": "active", "start": 1590, "end": 1596, "annotation": null}, {"text": "for", "start": 1597, "end": 1600, "annotation": null}, {"text": "the", "start": 1601, "end": 1604, "annotation": null}, {"text": "redox", "start": 1605, "end": 1610, "annotation": null}, {"text": "systems", "start": 1611, "end": 1618, "annotation": null}, {"text": "tested", "start": 1619, "end": 1625, "annotation": null}, {"text": ".", "start": 1625, "end": 1626, "annotation": null}], [{"text": "The", "start": 1627, "end": 1630, "annotation": null}, {"text": "results", "start": 1631, "end": 1638, "annotation": null}, {"text": "have", "start": 1639, "end": 1643, "annotation": null}, {"text": "important", "start": 1644, "end": 1653, "annotation": null}, {"text": "implications", "start": 1654, "end": 1666, "annotation": null}, {"text": "for", "start": 1667, "end": 1670, "annotation": null}, {"text": "understanding", "start": 1671, "end": 1684, "annotation": null}, {"text": "how", "start": 1685, "end": 1688, "annotation": null}, {"text": "boron", "start": 1689, "end": 1694, "annotation": null}, {"text": "-", "start": 1694, "end": 1695, "annotation": null}, {"text": "doped", "start": 1695, "end": 1700, "annotation": null}, {"text": "diamond", "start": 1701, "end": 1708, "annotation": null}, {"text": "functions", "start": 1709, "end": 1718, "annotation": null}, {"text": "as", "start": 1719, "end": 1721, "annotation": null}, {"text": "an", "start": 1722, "end": 1724, "annotation": null}, {"text": "electrochemical", "start": 1725, "end": 1740, "annotation": null}, {"text": "electrode", "start": 1741, "end": 1750, "annotation": null}, {"text": ".", "start": 1750, "end": 1751, "annotation": null}]], "meta": {"doi": "10.1021/jp0669557"}} +{"remark": "doping_annt1", "text": "Carbonaceous materials containing non-precious metal atoms and doped with nitrogen have enthralled stunning attention in the field of electrochemical energy conversion systems. Herein, we demonstrated a facile method to fabricate iron and nitrogen doped carbon nanofiber (FeN-CNFs) catalyst material from ferric chloride and interfacial synthesized polyaniline (PANI) nanofibers, by carbonization process in an inert atmosphere at 800 \u00b0C. Further, synthesized material was characterized by elemental analysis and X-ray photoelectron spectroscopy (XPS) that confirms the presence of FeN bonds. The structural and morphological features are studied using various microscopy and spectroscopy techniques. The oxygen reduction reaction (ORR) activity of synthesized catalyst materials was examined by rotating disk electrode experiments in 0.1 M KOH. Among all these synthesized materials FeN-CNFs material showed enhanced ORR activity regarding current density and onset potential. Also, FeN-CNFs catalyst exhibited tolerance to methanol and durability in comparison to commercial Pt/C catalyst. The superior performance of FeN-CNFs may be attributed due to the introduction of Fe and formation of FeN bond in catalyst material.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Carbonaceous", "start": 0, "end": 12, "annotation": "BASEMAT"}, {"text": "materials", "start": 13, "end": 22, "annotation": "BASEMAT"}, {"text": "containing", "start": 23, "end": 33, "annotation": null}, {"text": "non-precious", "start": 34, "end": 46, "annotation": null}, {"text": "metal", "start": 47, "end": 52, "annotation": null}, {"text": "atoms", "start": 53, "end": 58, "annotation": null}, {"text": "and", "start": 59, "end": 62, "annotation": null}, {"text": "doped", "start": 63, "end": 68, "annotation": null}, {"text": "with", "start": 69, "end": 73, "annotation": null}, {"text": "nitrogen", "start": 74, "end": 82, "annotation": "DOPANT"}, {"text": "have", "start": 83, "end": 87, "annotation": null}, {"text": "enthralled", "start": 88, "end": 98, "annotation": null}, {"text": "stunning", "start": 99, "end": 107, "annotation": null}, {"text": "attention", "start": 108, "end": 117, "annotation": null}, {"text": "in", "start": 118, "end": 120, "annotation": null}, {"text": "the", "start": 121, "end": 124, "annotation": null}, {"text": "field", "start": 125, "end": 130, "annotation": null}, {"text": "of", "start": 131, "end": 133, "annotation": null}, {"text": "electrochemical", "start": 134, "end": 149, "annotation": null}, {"text": "energy", "start": 150, "end": 156, "annotation": null}, {"text": "conversion", "start": 157, "end": 167, "annotation": null}, {"text": "systems", "start": 168, "end": 175, "annotation": null}, {"text": ".", "start": 175, "end": 176, "annotation": null}], [{"text": "Herein", "start": 177, "end": 183, "annotation": null}, {"text": ",", "start": 183, "end": 184, "annotation": null}, {"text": "we", "start": 185, "end": 187, "annotation": null}, {"text": "demonstrated", "start": 188, "end": 200, "annotation": null}, {"text": "a", "start": 201, "end": 202, "annotation": null}, {"text": "facile", "start": 203, "end": 209, "annotation": null}, {"text": "method", "start": 210, "end": 216, "annotation": null}, {"text": "to", "start": 217, "end": 219, "annotation": null}, {"text": "fabricate", "start": 220, "end": 229, "annotation": null}, {"text": "iron", "start": 230, "end": 234, "annotation": "DOPANT"}, {"text": "and", "start": 235, "end": 238, "annotation": "DOPANT"}, {"text": "nitrogen", "start": 239, "end": 247, "annotation": "DOPANT"}, {"text": "doped", "start": 248, "end": 253, "annotation": null}, {"text": "carbon", "start": 254, "end": 260, "annotation": "BASEMAT"}, {"text": "nanofiber", "start": 261, "end": 270, "annotation": "BASEMAT"}, {"text": "(", "start": 271, "end": 272, "annotation": null}, {"text": "FeN", "start": 272, "end": 275, "annotation": "DOPANT"}, {"text": "-", "start": 275, "end": 276, "annotation": null}, {"text": "CNFs", "start": 276, "end": 280, "annotation": "BASEMAT"}, {"text": ")", "start": 280, "end": 281, "annotation": null}, {"text": "catalyst", "start": 282, "end": 290, "annotation": null}, {"text": "material", "start": 291, "end": 299, "annotation": null}, {"text": "from", "start": 300, "end": 304, "annotation": null}, {"text": "ferric", "start": 305, "end": 311, "annotation": null}, {"text": "chloride", "start": 312, "end": 320, "annotation": null}, {"text": "and", "start": 321, "end": 324, "annotation": null}, {"text": "interfacial", "start": 325, "end": 336, "annotation": null}, {"text": "synthesized", "start": 337, "end": 348, "annotation": null}, {"text": "polyaniline", "start": 349, "end": 360, "annotation": null}, {"text": "(", "start": 361, "end": 362, "annotation": null}, {"text": "PANI", "start": 362, "end": 366, "annotation": null}, {"text": ")", "start": 366, "end": 367, "annotation": null}, {"text": "nanofibers", "start": 368, "end": 378, "annotation": null}, {"text": ",", "start": 378, "end": 379, "annotation": null}, {"text": "by", "start": 380, "end": 382, "annotation": null}, {"text": "carbonization", "start": 383, "end": 396, "annotation": null}, {"text": "process", "start": 397, "end": 404, "annotation": null}, {"text": "in", "start": 405, "end": 407, "annotation": null}, {"text": "an", "start": 408, "end": 410, "annotation": null}, {"text": "inert", "start": 411, "end": 416, "annotation": null}, {"text": "atmosphere", "start": 417, "end": 427, "annotation": null}, {"text": "at", "start": 428, "end": 430, "annotation": null}, {"text": "800", "start": 431, "end": 434, "annotation": null}, {"text": "\u00b0", "start": 435, "end": 436, "annotation": null}, {"text": "C", "start": 436, "end": 437, "annotation": null}, {"text": ".", "start": 437, "end": 438, "annotation": null}], [{"text": "Further", "start": 439, "end": 446, "annotation": null}, {"text": ",", "start": 446, "end": 447, "annotation": null}, {"text": "synthesized", "start": 448, "end": 459, "annotation": null}, {"text": "material", "start": 460, "end": 468, "annotation": null}, {"text": "was", "start": 469, "end": 472, "annotation": null}, {"text": "characterized", "start": 473, "end": 486, "annotation": null}, {"text": "by", "start": 487, "end": 489, "annotation": null}, {"text": "elemental", "start": 490, "end": 499, "annotation": null}, {"text": "analysis", "start": 500, "end": 508, "annotation": null}, {"text": "and", "start": 509, "end": 512, "annotation": null}, {"text": "X-ray", "start": 513, "end": 518, "annotation": null}, {"text": "photoelectron", "start": 519, "end": 532, "annotation": null}, {"text": "spectroscopy", "start": 533, "end": 545, "annotation": null}, {"text": "(", "start": 546, "end": 547, "annotation": null}, {"text": "XPS", "start": 547, "end": 550, "annotation": null}, {"text": ")", "start": 550, "end": 551, "annotation": null}, {"text": "that", "start": 552, "end": 556, "annotation": null}, {"text": "confirms", "start": 557, "end": 565, "annotation": null}, {"text": "the", "start": 566, "end": 569, "annotation": null}, {"text": "presence", "start": 570, "end": 578, "annotation": null}, {"text": "of", "start": 579, "end": 581, "annotation": null}, {"text": "FeN", "start": 582, "end": 585, "annotation": null}, {"text": "bonds", "start": 586, "end": 591, "annotation": null}, {"text": ".", "start": 591, "end": 592, "annotation": null}], [{"text": "The", "start": 593, "end": 596, "annotation": null}, {"text": "structural", "start": 597, "end": 607, "annotation": null}, {"text": "and", "start": 608, "end": 611, "annotation": null}, {"text": "morphological", "start": 612, "end": 625, "annotation": null}, {"text": "features", "start": 626, "end": 634, "annotation": null}, {"text": "are", "start": 635, "end": 638, "annotation": null}, {"text": "studied", "start": 639, "end": 646, "annotation": null}, {"text": "using", "start": 647, "end": 652, "annotation": null}, {"text": "various", "start": 653, "end": 660, "annotation": null}, {"text": "microscopy", "start": 661, "end": 671, "annotation": null}, {"text": "and", "start": 672, "end": 675, "annotation": null}, {"text": "spectroscopy", "start": 676, "end": 688, "annotation": null}, {"text": "techniques", "start": 689, "end": 699, "annotation": null}, {"text": ".", "start": 699, "end": 700, "annotation": null}], [{"text": "The", "start": 701, "end": 704, "annotation": null}, {"text": "oxygen", "start": 705, "end": 711, "annotation": null}, {"text": "reduction", "start": 712, "end": 721, "annotation": null}, {"text": "reaction", "start": 722, "end": 730, "annotation": null}, {"text": "(", "start": 731, "end": 732, "annotation": null}, {"text": "ORR", "start": 732, "end": 735, "annotation": null}, {"text": ")", "start": 735, "end": 736, "annotation": null}, {"text": "activity", "start": 737, "end": 745, "annotation": null}, {"text": "of", "start": 746, "end": 748, "annotation": null}, {"text": "synthesized", "start": 749, "end": 760, "annotation": null}, {"text": "catalyst", "start": 761, "end": 769, "annotation": null}, {"text": "materials", "start": 770, "end": 779, "annotation": null}, {"text": "was", "start": 780, "end": 783, "annotation": null}, {"text": "examined", "start": 784, "end": 792, "annotation": null}, {"text": "by", "start": 793, "end": 795, "annotation": null}, {"text": "rotating", "start": 796, "end": 804, "annotation": null}, {"text": "disk", "start": 805, "end": 809, "annotation": null}, {"text": "electrode", "start": 810, "end": 819, "annotation": null}, {"text": "experiments", "start": 820, "end": 831, "annotation": null}, {"text": "in", "start": 832, "end": 834, "annotation": null}, {"text": "0.1", "start": 835, "end": 838, "annotation": null}, {"text": "M", "start": 839, "end": 840, "annotation": null}, {"text": "KOH", "start": 841, "end": 844, "annotation": null}, {"text": ".", "start": 844, "end": 845, "annotation": null}], [{"text": "Among", "start": 846, "end": 851, "annotation": null}, {"text": "all", "start": 852, "end": 855, "annotation": null}, {"text": "these", "start": 856, "end": 861, "annotation": null}, {"text": "synthesized", "start": 862, "end": 873, "annotation": null}, {"text": "materials", "start": 874, "end": 883, "annotation": null}, {"text": "FeN", "start": 884, "end": 887, "annotation": "DOPANT"}, {"text": "-", "start": 887, "end": 888, "annotation": null}, {"text": "CNFs", "start": 888, "end": 892, "annotation": "BASEMAT"}, {"text": "material", "start": 893, "end": 901, "annotation": null}, {"text": "showed", "start": 902, "end": 908, "annotation": null}, {"text": "enhanced", "start": 909, "end": 917, "annotation": null}, {"text": "ORR", "start": 918, "end": 921, "annotation": null}, {"text": "activity", "start": 922, "end": 930, "annotation": null}, {"text": "regarding", "start": 931, "end": 940, "annotation": null}, {"text": "current", "start": 941, "end": 948, "annotation": null}, {"text": "density", "start": 949, "end": 956, "annotation": null}, {"text": "and", "start": 957, "end": 960, "annotation": null}, {"text": "onset", "start": 961, "end": 966, "annotation": null}, {"text": "potential", "start": 967, "end": 976, "annotation": null}, {"text": ".", "start": 976, "end": 977, "annotation": null}], [{"text": "Also", "start": 978, "end": 982, "annotation": null}, {"text": ",", "start": 982, "end": 983, "annotation": null}, {"text": "FeN", "start": 984, "end": 987, "annotation": "DOPANT"}, {"text": "-", "start": 987, "end": 988, "annotation": null}, {"text": "CNFs", "start": 988, "end": 992, "annotation": "BASEMAT"}, {"text": "catalyst", "start": 993, "end": 1001, "annotation": null}, {"text": "exhibited", "start": 1002, "end": 1011, "annotation": null}, {"text": "tolerance", "start": 1012, "end": 1021, "annotation": null}, {"text": "to", "start": 1022, "end": 1024, "annotation": null}, {"text": "methanol", "start": 1025, "end": 1033, "annotation": null}, {"text": "and", "start": 1034, "end": 1037, "annotation": null}, {"text": "durability", "start": 1038, "end": 1048, "annotation": null}, {"text": "in", "start": 1049, "end": 1051, "annotation": null}, {"text": "comparison", "start": 1052, "end": 1062, "annotation": null}, {"text": "to", "start": 1063, "end": 1065, "annotation": null}, {"text": "commercial", "start": 1066, "end": 1076, "annotation": null}, {"text": "Pt", "start": 1077, "end": 1079, "annotation": null}, {"text": "/", "start": 1079, "end": 1080, "annotation": null}, {"text": "C", "start": 1080, "end": 1081, "annotation": null}, {"text": "catalyst", "start": 1082, "end": 1090, "annotation": null}, {"text": ".", "start": 1090, "end": 1091, "annotation": null}], [{"text": "The", "start": 1092, "end": 1095, "annotation": null}, {"text": "superior", "start": 1096, "end": 1104, "annotation": null}, {"text": "performance", "start": 1105, "end": 1116, "annotation": null}, {"text": "of", "start": 1117, "end": 1119, "annotation": null}, {"text": "FeN", "start": 1120, "end": 1123, "annotation": "DOPANT"}, {"text": "-", "start": 1123, "end": 1124, "annotation": null}, {"text": "CNFs", "start": 1124, "end": 1128, "annotation": "BASEMAT"}, {"text": "may", "start": 1129, "end": 1132, "annotation": null}, {"text": "be", "start": 1133, "end": 1135, "annotation": null}, {"text": "attributed", "start": 1136, "end": 1146, "annotation": null}, {"text": "due", "start": 1147, "end": 1150, "annotation": null}, {"text": "to", "start": 1151, "end": 1153, "annotation": null}, {"text": "the", "start": 1154, "end": 1157, "annotation": null}, {"text": "introduction", "start": 1158, "end": 1170, "annotation": null}, {"text": "of", "start": 1171, "end": 1173, "annotation": null}, {"text": "Fe", "start": 1174, "end": 1176, "annotation": null}, {"text": "and", "start": 1177, "end": 1180, "annotation": null}, {"text": "formation", "start": 1181, "end": 1190, "annotation": null}, {"text": "of", "start": 1191, "end": 1193, "annotation": null}, {"text": "FeN", "start": 1194, "end": 1197, "annotation": null}, {"text": "bond", "start": 1198, "end": 1202, "annotation": null}, {"text": "in", "start": 1203, "end": 1205, "annotation": null}, {"text": "catalyst", "start": 1206, "end": 1214, "annotation": null}, {"text": "material", "start": 1215, "end": 1223, "annotation": null}, {"text": ".", "start": 1223, "end": 1224, "annotation": null}]], "meta": {"doi": "10.1016/j.ijhydene.2017.06.133"}} +{"remark": "doping_annt1", "text": "The growth and reduction of anodic Sb2S3 films on antimony electrodes in alkaline sulfide solutions has been investigated using potentiodynamic, galvanostatic, and potentiostatic techniques. The sulfidation mechanism and the efficiency of charge storage in the sulfide film are dependent on the electrode potential and current density. The initial stages of film formation follow a high field growth process involving ionic transport through the sulfide film. The growth of thicker films is controlled by coupled electrochemical and chemical reactions involving mass transport and nucleation. Metal dissolution accompanies film formation under most growth conditions. The anodic and cathodic behavior of these films is consistent with their rectification or n-type semiconductor properties. \u00a9 1984, The Electrochemical Society, Inc. All rights reserved.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "growth", "start": 4, "end": 10, "annotation": null}, {"text": "and", "start": 11, "end": 14, "annotation": null}, {"text": "reduction", "start": 15, "end": 24, "annotation": null}, {"text": "of", "start": 25, "end": 27, "annotation": null}, {"text": "anodic", "start": 28, "end": 34, "annotation": "DOPANT"}, {"text": "Sb2S3", "start": 35, "end": 40, "annotation": "BASEMAT"}, {"text": "films", "start": 41, "end": 46, "annotation": null}, {"text": "on", "start": 47, "end": 49, "annotation": null}, {"text": "antimony", "start": 50, "end": 58, "annotation": null}, {"text": "electrodes", "start": 59, "end": 69, "annotation": null}, {"text": "in", "start": 70, "end": 72, "annotation": null}, {"text": "alkaline", "start": 73, "end": 81, "annotation": null}, {"text": "sulfide", "start": 82, "end": 89, "annotation": null}, {"text": "solutions", "start": 90, "end": 99, "annotation": null}, {"text": "has", "start": 100, "end": 103, "annotation": null}, {"text": "been", "start": 104, "end": 108, "annotation": null}, {"text": "investigated", "start": 109, "end": 121, "annotation": null}, {"text": "using", "start": 122, "end": 127, "annotation": null}, {"text": "potentiodynamic", "start": 128, "end": 143, "annotation": null}, {"text": ",", "start": 143, "end": 144, "annotation": null}, {"text": "galvanostatic", "start": 145, "end": 158, "annotation": null}, {"text": ",", "start": 158, "end": 159, "annotation": null}, {"text": "and", "start": 160, "end": 163, "annotation": null}, {"text": "potentiostatic", "start": 164, "end": 178, "annotation": null}, {"text": "techniques", "start": 179, "end": 189, "annotation": null}, {"text": ".", "start": 189, "end": 190, "annotation": null}], [{"text": "The", "start": 191, "end": 194, "annotation": null}, {"text": "sulfidation", "start": 195, "end": 206, "annotation": null}, {"text": "mechanism", "start": 207, "end": 216, "annotation": null}, {"text": "and", "start": 217, "end": 220, "annotation": null}, {"text": "the", "start": 221, "end": 224, "annotation": null}, {"text": "efficiency", "start": 225, "end": 235, "annotation": null}, {"text": "of", "start": 236, "end": 238, "annotation": null}, {"text": "charge", "start": 239, "end": 245, "annotation": null}, {"text": "storage", "start": 246, "end": 253, "annotation": null}, {"text": "in", "start": 254, "end": 256, "annotation": null}, {"text": "the", "start": 257, "end": 260, "annotation": null}, {"text": "sulfide", "start": 261, "end": 268, "annotation": null}, {"text": "film", "start": 269, "end": 273, "annotation": null}, {"text": "are", "start": 274, "end": 277, "annotation": null}, {"text": "dependent", "start": 278, "end": 287, "annotation": null}, {"text": "on", "start": 288, "end": 290, "annotation": null}, {"text": "the", "start": 291, "end": 294, "annotation": null}, {"text": "electrode", "start": 295, "end": 304, "annotation": null}, {"text": "potential", "start": 305, "end": 314, "annotation": null}, {"text": "and", "start": 315, "end": 318, "annotation": null}, {"text": "current", "start": 319, "end": 326, "annotation": null}, {"text": "density", "start": 327, "end": 334, "annotation": null}, {"text": ".", "start": 334, "end": 335, "annotation": null}], [{"text": "The", "start": 336, "end": 339, "annotation": null}, {"text": "initial", "start": 340, "end": 347, "annotation": null}, {"text": "stages", "start": 348, "end": 354, "annotation": null}, {"text": "of", "start": 355, "end": 357, "annotation": null}, {"text": "film", "start": 358, "end": 362, "annotation": null}, {"text": "formation", "start": 363, "end": 372, "annotation": null}, {"text": "follow", "start": 373, "end": 379, "annotation": null}, {"text": "a", "start": 380, "end": 381, "annotation": null}, {"text": "high", "start": 382, "end": 386, "annotation": null}, {"text": "field", "start": 387, "end": 392, "annotation": null}, {"text": "growth", "start": 393, "end": 399, "annotation": null}, {"text": "process", "start": 400, "end": 407, "annotation": null}, {"text": "involving", "start": 408, "end": 417, "annotation": null}, {"text": "ionic", "start": 418, "end": 423, "annotation": null}, {"text": "transport", "start": 424, "end": 433, "annotation": null}, {"text": "through", "start": 434, "end": 441, "annotation": null}, {"text": "the", "start": 442, "end": 445, "annotation": null}, {"text": "sulfide", "start": 446, "end": 453, "annotation": null}, {"text": "film", "start": 454, "end": 458, "annotation": null}, {"text": ".", "start": 458, "end": 459, "annotation": null}], [{"text": "The", "start": 460, "end": 463, "annotation": null}, {"text": "growth", "start": 464, "end": 470, "annotation": null}, {"text": "of", "start": 471, "end": 473, "annotation": null}, {"text": "thicker", "start": 474, "end": 481, "annotation": null}, {"text": "films", "start": 482, "end": 487, "annotation": null}, {"text": "is", "start": 488, "end": 490, "annotation": null}, {"text": "controlled", "start": 491, "end": 501, "annotation": null}, {"text": "by", "start": 502, "end": 504, "annotation": null}, {"text": "coupled", "start": 505, "end": 512, "annotation": null}, {"text": "electrochemical", "start": 513, "end": 528, "annotation": null}, {"text": "and", "start": 529, "end": 532, "annotation": null}, {"text": "chemical", "start": 533, "end": 541, "annotation": null}, {"text": "reactions", "start": 542, "end": 551, "annotation": null}, {"text": "involving", "start": 552, "end": 561, "annotation": null}, {"text": "mass", "start": 562, "end": 566, "annotation": null}, {"text": "transport", "start": 567, "end": 576, "annotation": null}, {"text": "and", "start": 577, "end": 580, "annotation": null}, {"text": "nucleation", "start": 581, "end": 591, "annotation": null}, {"text": ".", "start": 591, "end": 592, "annotation": null}], [{"text": "Metal", "start": 593, "end": 598, "annotation": null}, {"text": "dissolution", "start": 599, "end": 610, "annotation": null}, {"text": "accompanies", "start": 611, "end": 622, "annotation": null}, {"text": "film", "start": 623, "end": 627, "annotation": null}, {"text": "formation", "start": 628, "end": 637, "annotation": null}, {"text": "under", "start": 638, "end": 643, "annotation": null}, {"text": "most", "start": 644, "end": 648, "annotation": null}, {"text": "growth", "start": 649, "end": 655, "annotation": null}, {"text": "conditions", "start": 656, "end": 666, "annotation": null}, {"text": ".", "start": 666, "end": 667, "annotation": null}], [{"text": "The", "start": 668, "end": 671, "annotation": null}, {"text": "anodic", "start": 672, "end": 678, "annotation": null}, {"text": "and", "start": 679, "end": 682, "annotation": null}, {"text": "cathodic", "start": 683, "end": 691, "annotation": null}, {"text": "behavior", "start": 692, "end": 700, "annotation": null}, {"text": "of", "start": 701, "end": 703, "annotation": null}, {"text": "these", "start": 704, "end": 709, "annotation": null}, {"text": "films", "start": 710, "end": 715, "annotation": null}, {"text": "is", "start": 716, "end": 718, "annotation": null}, {"text": "consistent", "start": 719, "end": 729, "annotation": null}, {"text": "with", "start": 730, "end": 734, "annotation": null}, {"text": "their", "start": 735, "end": 740, "annotation": null}, {"text": "rectification", "start": 741, "end": 754, "annotation": null}, {"text": "or", "start": 755, "end": 757, "annotation": null}, {"text": "n", "start": 758, "end": 759, "annotation": null}, {"text": "-", "start": 759, "end": 760, "annotation": null}, {"text": "type", "start": 760, "end": 764, "annotation": null}, {"text": "semiconductor", "start": 765, "end": 778, "annotation": null}, {"text": "properties", "start": 779, "end": 789, "annotation": null}, {"text": ".", "start": 789, "end": 790, "annotation": null}], [{"text": "All", "start": 833, "end": 836, "annotation": null}, {"text": "rights", "start": 837, "end": 843, "annotation": null}, {"text": "reserved", "start": 844, "end": 852, "annotation": null}, {"text": ".", "start": 852, "end": 853, "annotation": null}]], "meta": {"doi": "10.1149/1.2115812"}} {"text": "This paper presents the first principles, density functional theory, computations of pure zinc nitride (Zn3N2) and its doped counterparts with dopants of native elements (Zn, N) and copper family elements (Cu, Ag, Au). Atomic geometry, formation energy, and electronic structure of defects in Zn3N2 are also investigated. The formation energies of both native defects and copper family element impurities are predominantly affected by the chemical potential of different chemical species. The earlier experimental observation of electronic properties associated with nitrogen deficiency in Zn3N2 is consistent with the results of formation energy calculations. Point defects of copper family elements have an energetic preference to occupy a substitutional N site, rather than Zn or interstitial position at a special value of chemical potential of nitrogen. The calculation of defect density of states suggests that among all three copper family elements, copper is the most suitable candidate as a p-type dopant in Zn3N2.", "meta": {"doi": "10.1016/j.tsf.2014.05.032"}, "_input_hash": 989572738, "_task_hash": -413854652, "tokens": [[{"text": "This", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "paper", "start": 5, "end": 10, "id": 1, "annotation": null}, {"text": "presents", "start": 11, "end": 19, "id": 2, "annotation": null}, {"text": "the", "start": 20, "end": 23, "id": 3, "annotation": null}, {"text": "first", "start": 24, "end": 29, "id": 4, "annotation": null}, {"text": "principles", "start": 30, "end": 40, "id": 5, "annotation": null}, {"text": ",", "start": 41, "end": 42, "id": 6, "annotation": null}, {"text": "density", "start": 43, "end": 50, "id": 7, "annotation": null}, {"text": "functional", "start": 51, "end": 61, "id": 8, "annotation": null}, {"text": "theory", "start": 62, "end": 68, "id": 9, "annotation": null}, {"text": ",", "start": 69, "end": 70, "id": 10, "annotation": null}, {"text": "computations", "start": 71, "end": 83, "id": 11, "annotation": null}, {"text": "of", "start": 84, "end": 86, "id": 12, "annotation": null}, {"text": "pure", "start": 87, "end": 91, "id": 13, "annotation": null}, {"text": "zinc", "start": 92, "end": 96, "id": 14, "annotation": "BASEMAT"}, {"text": "nitride", "start": 97, "end": 104, "id": 15, "annotation": "BASEMAT"}, {"text": "(", "start": 105, "end": 106, "id": 16, "annotation": null}, {"text": "Zn3N2", "start": 107, "end": 112, "id": 17, "annotation": "BASEMAT"}, {"text": ")", "start": 113, "end": 114, "id": 18, "annotation": null}, {"text": "and", "start": 115, "end": 118, "id": 19, "annotation": null}, {"text": "its", "start": 119, "end": 122, "id": 20, "annotation": null}, {"text": "doped", "start": 123, "end": 128, "id": 21, "annotation": null}, {"text": "counterparts", "start": 129, "end": 141, "id": 22, "annotation": null}, {"text": "with", "start": 142, "end": 146, "id": 23, "annotation": null}, {"text": "dopants", "start": 147, "end": 154, "id": 24, "annotation": null}, {"text": "of", "start": 155, "end": 157, "id": 25, "annotation": null}, {"text": "native", "start": 158, "end": 164, "id": 26, "annotation": "DOPANT"}, {"text": "elements", "start": 165, "end": 173, "id": 27, "annotation": "DOPANT"}, {"text": "(", "start": 174, "end": 175, "id": 28, "annotation": null}, {"text": "Zn", "start": 176, "end": 178, "id": 29, "annotation": "DOPANT"}, {"text": ",", "start": 179, "end": 180, "id": 30, "annotation": null}, {"text": "N", "start": 181, "end": 182, "id": 31, "annotation": "DOPANT"}, {"text": ")", "start": 183, "end": 184, "id": 32, "annotation": null}, {"text": "and", "start": 185, "end": 188, "id": 33, "annotation": null}, {"text": "copper", "start": 189, "end": 195, "id": 34, "annotation": "DOPANT"}, {"text": "family", "start": 196, "end": 202, "id": 35, "annotation": null}, {"text": "elements", "start": 203, "end": 211, "id": 36, "annotation": "DOPANT"}, {"text": "(", "start": 212, "end": 213, "id": 37, "annotation": null}, {"text": "Cu", "start": 214, "end": 216, "id": 38, "annotation": "DOPANT"}, {"text": ",", "start": 217, "end": 218, "id": 39, "annotation": null}, {"text": "Ag", "start": 219, "end": 221, "id": 40, "annotation": "DOPANT"}, {"text": ",", "start": 222, "end": 223, "id": 41, "annotation": null}, {"text": "Au", "start": 224, "end": 226, "id": 42, "annotation": "DOPANT"}, {"text": ")", "start": 227, "end": 228, "id": 43, "annotation": null}, {"text": ".", "start": 229, "end": 230, "id": 44, "annotation": null}], [{"text": "Atomic", "start": 231, "end": 237, "id": 45, "annotation": null}, {"text": "geometry", "start": 238, "end": 246, "id": 46, "annotation": null}, {"text": ",", "start": 247, "end": 248, "id": 47, "annotation": null}, {"text": "formation", "start": 249, "end": 258, "id": 48, "annotation": null}, {"text": "energy", "start": 259, "end": 265, "id": 49, "annotation": null}, {"text": ",", "start": 266, "end": 267, "id": 50, "annotation": null}, {"text": "and", "start": 268, "end": 271, "id": 51, "annotation": null}, {"text": "electronic", "start": 272, "end": 282, "id": 52, "annotation": null}, {"text": "structure", "start": 283, "end": 292, "id": 53, "annotation": null}, {"text": "of", "start": 293, "end": 295, "id": 54, "annotation": null}, {"text": "defects", "start": 296, "end": 303, "id": 55, "annotation": null}, {"text": "in", "start": 304, "end": 306, "id": 56, "annotation": null}, {"text": "Zn3N2", "start": 307, "end": 312, "id": 57, "annotation": null}, {"text": "are", "start": 313, "end": 316, "id": 58, "annotation": null}, {"text": "also", "start": 317, "end": 321, "id": 59, "annotation": null}, {"text": "investigated", "start": 322, "end": 334, "id": 60, "annotation": null}, {"text": ".", "start": 335, "end": 336, "id": 61, "annotation": null}], [{"text": "The", "start": 337, "end": 340, "id": 62, "annotation": null}, {"text": "formation", "start": 341, "end": 350, "id": 63, "annotation": null}, {"text": "energies", "start": 351, "end": 359, "id": 64, "annotation": null}, {"text": "of", "start": 360, "end": 362, "id": 65, "annotation": null}, {"text": "both", "start": 363, "end": 367, "id": 66, "annotation": null}, {"text": "native", "start": 368, "end": 374, "id": 67, "annotation": null}, {"text": "defects", "start": 375, "end": 382, "id": 68, "annotation": null}, {"text": "and", "start": 383, "end": 386, "id": 69, "annotation": null}, {"text": "copper", "start": 387, "end": 393, "id": 70, "annotation": null}, {"text": "family", "start": 394, "end": 400, "id": 71, "annotation": null}, {"text": "element", "start": 401, "end": 408, "id": 72, "annotation": null}, {"text": "impurities", "start": 409, "end": 419, "id": 73, "annotation": null}, {"text": "are", "start": 420, "end": 423, "id": 74, "annotation": null}, {"text": "predominantly", "start": 424, "end": 437, "id": 75, "annotation": null}, {"text": "affected", "start": 438, "end": 446, "id": 76, "annotation": null}, {"text": "by", "start": 447, "end": 449, "id": 77, "annotation": null}, {"text": "the", "start": 450, "end": 453, "id": 78, "annotation": null}, {"text": "chemical", "start": 454, "end": 462, "id": 79, "annotation": null}, {"text": "potential", "start": 463, "end": 472, "id": 80, "annotation": null}, {"text": "of", "start": 473, "end": 475, "id": 81, "annotation": null}, {"text": "different", "start": 476, "end": 485, "id": 82, "annotation": null}, {"text": "chemical", "start": 486, "end": 494, "id": 83, "annotation": null}, {"text": "species", "start": 495, "end": 502, "id": 84, "annotation": null}, {"text": ".", "start": 503, "end": 504, "id": 85, "annotation": null}], [{"text": "The", "start": 505, "end": 508, "id": 86, "annotation": null}, {"text": "earlier", "start": 509, "end": 516, "id": 87, "annotation": null}, {"text": "experimental", "start": 517, "end": 529, "id": 88, "annotation": null}, {"text": "observation", "start": 530, "end": 541, "id": 89, "annotation": null}, {"text": "of", "start": 542, "end": 544, "id": 90, "annotation": null}, {"text": "electronic", "start": 545, "end": 555, "id": 91, "annotation": null}, {"text": "properties", "start": 556, "end": 566, "id": 92, "annotation": null}, {"text": "associated", "start": 567, "end": 577, "id": 93, "annotation": null}, {"text": "with", "start": 578, "end": 582, "id": 94, "annotation": null}, {"text": "nitrogen", "start": 583, "end": 591, "id": 95, "annotation": null}, {"text": "deficiency", "start": 592, "end": 602, "id": 96, "annotation": null}, {"text": "in", "start": 603, "end": 605, "id": 97, "annotation": null}, {"text": "Zn3N2", "start": 606, "end": 611, "id": 98, "annotation": null}, {"text": "is", "start": 612, "end": 614, "id": 99, "annotation": null}, {"text": "consistent", "start": 615, "end": 625, "id": 100, "annotation": null}, {"text": "with", "start": 626, "end": 630, "id": 101, "annotation": null}, {"text": "the", "start": 631, "end": 634, "id": 102, "annotation": null}, {"text": "results", "start": 635, "end": 642, "id": 103, "annotation": null}, {"text": "of", "start": 643, "end": 645, "id": 104, "annotation": null}, {"text": "formation", "start": 646, "end": 655, "id": 105, "annotation": null}, {"text": "energy", "start": 656, "end": 662, "id": 106, "annotation": null}, {"text": "calculations", "start": 663, "end": 675, "id": 107, "annotation": null}, {"text": ".", "start": 676, "end": 677, "id": 108, "annotation": null}], [{"text": "Point", "start": 678, "end": 683, "id": 109, "annotation": null}, {"text": "defects", "start": 684, "end": 691, "id": 110, "annotation": null}, {"text": "of", "start": 692, "end": 694, "id": 111, "annotation": null}, {"text": "copper", "start": 695, "end": 701, "id": 112, "annotation": null}, {"text": "family", "start": 702, "end": 708, "id": 113, "annotation": null}, {"text": "elements", "start": 709, "end": 717, "id": 114, "annotation": null}, {"text": "have", "start": 718, "end": 722, "id": 115, "annotation": null}, {"text": "an", "start": 723, "end": 725, "id": 116, "annotation": null}, {"text": "energetic", "start": 726, "end": 735, "id": 117, "annotation": null}, {"text": "preference", "start": 736, "end": 746, "id": 118, "annotation": null}, {"text": "to", "start": 747, "end": 749, "id": 119, "annotation": null}, {"text": "occupy", "start": 750, "end": 756, "id": 120, "annotation": null}, {"text": "a", "start": 757, "end": 758, "id": 121, "annotation": null}, {"text": "substitutional", "start": 759, "end": 773, "id": 122, "annotation": null}, {"text": "N", "start": 774, "end": 775, "id": 123, "annotation": null}, {"text": "site", "start": 776, "end": 780, "id": 124, "annotation": null}, {"text": ",", "start": 781, "end": 782, "id": 125, "annotation": null}, {"text": "rather", "start": 783, "end": 789, "id": 126, "annotation": null}, {"text": "than", "start": 790, "end": 794, "id": 127, "annotation": null}, {"text": "Zn", "start": 795, "end": 797, "id": 128, "annotation": null}, {"text": "or", "start": 798, "end": 800, "id": 129, "annotation": null}, {"text": "interstitial", "start": 801, "end": 813, "id": 130, "annotation": null}, {"text": "position", "start": 814, "end": 822, "id": 131, "annotation": null}, {"text": "at", "start": 823, "end": 825, "id": 132, "annotation": null}, {"text": "a", "start": 826, "end": 827, "id": 133, "annotation": null}, {"text": "special", "start": 828, "end": 835, "id": 134, "annotation": null}, {"text": "value", "start": 836, "end": 841, "id": 135, "annotation": null}, {"text": "of", "start": 842, "end": 844, "id": 136, "annotation": null}, {"text": "chemical", "start": 845, "end": 853, "id": 137, "annotation": null}, {"text": "potential", "start": 854, "end": 863, "id": 138, "annotation": null}, {"text": "of", "start": 864, "end": 866, "id": 139, "annotation": null}, {"text": "nitrogen", "start": 867, "end": 875, "id": 140, "annotation": null}, {"text": ".", "start": 876, "end": 877, "id": 141, "annotation": null}], [{"text": "The", "start": 878, "end": 881, "id": 142, "annotation": null}, {"text": "calculation", "start": 882, "end": 893, "id": 143, "annotation": null}, {"text": "of", "start": 894, "end": 896, "id": 144, "annotation": null}, {"text": "defect", "start": 897, "end": 903, "id": 145, "annotation": null}, {"text": "density", "start": 904, "end": 911, "id": 146, "annotation": null}, {"text": "of", "start": 912, "end": 914, "id": 147, "annotation": null}, {"text": "states", "start": 915, "end": 921, "id": 148, "annotation": null}, {"text": "suggests", "start": 922, "end": 930, "id": 149, "annotation": null}, {"text": "that", "start": 931, "end": 935, "id": 150, "annotation": null}, {"text": "among", "start": 936, "end": 941, "id": 151, "annotation": null}, {"text": "all", "start": 942, "end": 945, "id": 152, "annotation": null}, {"text": "three", "start": 946, "end": 951, "id": 153, "annotation": null}, {"text": "copper", "start": 952, "end": 958, "id": 154, "annotation": null}, {"text": "family", "start": 959, "end": 965, "id": 155, "annotation": null}, {"text": "elements", "start": 966, "end": 974, "id": 156, "annotation": null}, {"text": ",", "start": 975, "end": 976, "id": 157, "annotation": null}, {"text": "copper", "start": 977, "end": 983, "id": 158, "annotation": "DOPANT"}, {"text": "is", "start": 984, "end": 986, "id": 159, "annotation": null}, {"text": "the", "start": 987, "end": 990, "id": 160, "annotation": null}, {"text": "most", "start": 991, "end": 995, "id": 161, "annotation": null}, {"text": "suitable", "start": 996, "end": 1004, "id": 162, "annotation": null}, {"text": "candidate", "start": 1005, "end": 1014, "id": 163, "annotation": null}, {"text": "as", "start": 1015, "end": 1017, "id": 164, "annotation": null}, {"text": "a", "start": 1018, "end": 1019, "id": 165, "annotation": null}, {"text": "p", "start": 1020, "end": 1021, "id": 166, "annotation": "DOPANT"}, {"text": "-", "start": 1022, "end": 1023, "id": 167, "annotation": null}, {"text": "type", "start": 1024, "end": 1028, "id": 168, "annotation": "DOPANT"}, {"text": "dopant", "start": 1029, "end": 1035, "id": 169, "annotation": null}, {"text": "in", "start": 1036, "end": 1038, "id": 170, "annotation": null}, {"text": "Zn3N2", "start": 1039, "end": 1044, "id": 171, "annotation": "BASEMAT"}, {"text": ".", "start": 1045, "end": 1046, "id": 172, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "With a piece of Tm-Ho codoped fiber as the saturable absorber, stable passive Q-switching of an Er-doped fiber laser can be attained in a wide wavelength range. A theoretical model concerning this passively Q-switched laser system with wavelength tuning is established. Output characteristics of this laser system are discussed and compared both experimentally and numerically. Analysis shows that, for saturable absorber-based passive Q-switching, a relatively higher coupling ratio and a longer wavelength not only help to expand the pump range and the repetition rate range of the laser system, but also indicate higher output energy and Q-switching efficiency.", "meta": {"doi": "10.1088/1555-6611/aadf21"}, "_input_hash": 412514272, "_task_hash": -1755833027, "tokens": [[{"text": "With", "start": 18, "end": 22, "id": 4, "annotation": null}, {"text": "a", "start": 23, "end": 24, "id": 5, "annotation": null}, {"text": "piece", "start": 25, "end": 30, "id": 6, "annotation": null}, {"text": "of", "start": 31, "end": 33, "id": 7, "annotation": null}, {"text": "Tm", "start": 34, "end": 36, "id": 8, "annotation": "DOPANT"}, {"text": "-", "start": 37, "end": 38, "id": 9, "annotation": null}, {"text": "Ho", "start": 39, "end": 41, "id": 10, "annotation": "DOPANT"}, {"text": "codoped", "start": 42, "end": 49, "id": 11, "annotation": null}, {"text": "fiber", "start": 50, "end": 55, "id": 12, "annotation": "BASEMAT"}, {"text": "as", "start": 56, "end": 58, "id": 13, "annotation": null}, {"text": "the", "start": 59, "end": 62, "id": 14, "annotation": null}, {"text": "saturable", "start": 63, "end": 72, "id": 15, "annotation": null}, {"text": "absorber", "start": 73, "end": 81, "id": 16, "annotation": null}, {"text": ",", "start": 82, "end": 83, "id": 17, "annotation": null}, {"text": "stable", "start": 84, "end": 90, "id": 18, "annotation": null}, {"text": "passive", "start": 91, "end": 98, "id": 19, "annotation": null}, {"text": "Q", "start": 99, "end": 100, "id": 20, "annotation": null}, {"text": "-", "start": 101, "end": 102, "id": 21, "annotation": null}, {"text": "switching", "start": 103, "end": 112, "id": 22, "annotation": null}, {"text": "of", "start": 113, "end": 115, "id": 23, "annotation": null}, {"text": "an", "start": 116, "end": 118, "id": 24, "annotation": null}, {"text": "Er", "start": 119, "end": 121, "id": 25, "annotation": "DOPANT"}, {"text": "-", "start": 122, "end": 123, "id": 26, "annotation": null}, {"text": "doped", "start": 124, "end": 129, "id": 27, "annotation": null}, {"text": "fiber", "start": 130, "end": 135, "id": 28, "annotation": "BASEMAT"}, {"text": "laser", "start": 136, "end": 141, "id": 29, "annotation": null}, {"text": "can", "start": 142, "end": 145, "id": 30, "annotation": null}, {"text": "be", "start": 146, "end": 148, "id": 31, "annotation": null}, {"text": "attained", "start": 149, "end": 157, "id": 32, "annotation": null}, {"text": "in", "start": 158, "end": 160, "id": 33, "annotation": null}, {"text": "a", "start": 161, "end": 162, "id": 34, "annotation": null}, {"text": "wide", "start": 163, "end": 167, "id": 35, "annotation": null}, {"text": "wavelength", "start": 168, "end": 178, "id": 36, "annotation": null}, {"text": "range", "start": 179, "end": 184, "id": 37, "annotation": null}, {"text": ".", "start": 185, "end": 186, "id": 38, "annotation": null}], [{"text": "A", "start": 187, "end": 188, "id": 39, "annotation": null}, {"text": "theoretical", "start": 189, "end": 200, "id": 40, "annotation": null}, {"text": "model", "start": 201, "end": 206, "id": 41, "annotation": null}, {"text": "concerning", "start": 207, "end": 217, "id": 42, "annotation": null}, {"text": "this", "start": 218, "end": 222, "id": 43, "annotation": null}, {"text": "passively", "start": 223, "end": 232, "id": 44, "annotation": null}, {"text": "Q", "start": 233, "end": 234, "id": 45, "annotation": null}, {"text": "-", "start": 235, "end": 236, "id": 46, "annotation": null}, {"text": "switched", "start": 237, "end": 245, "id": 47, "annotation": null}, {"text": "laser", "start": 246, "end": 251, "id": 48, "annotation": null}, {"text": "system", "start": 252, "end": 258, "id": 49, "annotation": null}, {"text": "with", "start": 259, "end": 263, "id": 50, "annotation": null}, {"text": "wavelength", "start": 264, "end": 274, "id": 51, "annotation": null}, {"text": "tuning", "start": 275, "end": 281, "id": 52, "annotation": null}, {"text": "is", "start": 282, "end": 284, "id": 53, "annotation": null}, {"text": "established", "start": 285, "end": 296, "id": 54, "annotation": null}, {"text": ".", "start": 297, "end": 298, "id": 55, "annotation": null}], [{"text": "Output", "start": 299, "end": 305, "id": 56, "annotation": null}, {"text": "characteristics", "start": 306, "end": 321, "id": 57, "annotation": null}, {"text": "of", "start": 322, "end": 324, "id": 58, "annotation": null}, {"text": "this", "start": 325, "end": 329, "id": 59, "annotation": null}, {"text": "laser", "start": 330, "end": 335, "id": 60, "annotation": null}, {"text": "system", "start": 336, "end": 342, "id": 61, "annotation": null}, {"text": "are", "start": 343, "end": 346, "id": 62, "annotation": null}, {"text": "discussed", "start": 347, "end": 356, "id": 63, "annotation": null}, {"text": "and", "start": 357, "end": 360, "id": 64, "annotation": null}, {"text": "compared", "start": 361, "end": 369, "id": 65, "annotation": null}, {"text": "both", "start": 370, "end": 374, "id": 66, "annotation": null}, {"text": "experimentally", "start": 375, "end": 389, "id": 67, "annotation": null}, {"text": "and", "start": 390, "end": 393, "id": 68, "annotation": null}, {"text": "numerically", "start": 394, "end": 405, "id": 69, "annotation": null}, {"text": ".", "start": 406, "end": 407, "id": 70, "annotation": null}], [{"text": "Analysis", "start": 408, "end": 416, "id": 71, "annotation": null}, {"text": "shows", "start": 417, "end": 422, "id": 72, "annotation": null}, {"text": "that", "start": 423, "end": 427, "id": 73, "annotation": null}, {"text": ",", "start": 428, "end": 429, "id": 74, "annotation": null}, {"text": "for", "start": 430, "end": 433, "id": 75, "annotation": null}, {"text": "saturable", "start": 434, "end": 443, "id": 76, "annotation": null}, {"text": "absorber", "start": 444, "end": 452, "id": 77, "annotation": null}, {"text": "-", "start": 453, "end": 454, "id": 78, "annotation": null}, {"text": "based", "start": 455, "end": 460, "id": 79, "annotation": null}, {"text": "passive", "start": 461, "end": 468, "id": 80, "annotation": null}, {"text": "Q", "start": 469, "end": 470, "id": 81, "annotation": null}, {"text": "-", "start": 471, "end": 472, "id": 82, "annotation": null}, {"text": "switching", "start": 473, "end": 482, "id": 83, "annotation": null}, {"text": ",", "start": 483, "end": 484, "id": 84, "annotation": null}, {"text": "a", "start": 485, "end": 486, "id": 85, "annotation": null}, {"text": "relatively", "start": 487, "end": 497, "id": 86, "annotation": null}, {"text": "higher", "start": 498, "end": 504, "id": 87, "annotation": null}, {"text": "coupling", "start": 505, "end": 513, "id": 88, "annotation": null}, {"text": "ratio", "start": 514, "end": 519, "id": 89, "annotation": null}, {"text": "and", "start": 520, "end": 523, "id": 90, "annotation": null}, {"text": "a", "start": 524, "end": 525, "id": 91, "annotation": null}, {"text": "longer", "start": 526, "end": 532, "id": 92, "annotation": null}, {"text": "wavelength", "start": 533, "end": 543, "id": 93, "annotation": null}, {"text": "not", "start": 544, "end": 547, "id": 94, "annotation": null}, {"text": "only", "start": 548, "end": 552, "id": 95, "annotation": null}, {"text": "help", "start": 553, "end": 557, "id": 96, "annotation": null}, {"text": "to", "start": 558, "end": 560, "id": 97, "annotation": null}, {"text": "expand", "start": 561, "end": 567, "id": 98, "annotation": null}, {"text": "the", "start": 568, "end": 571, "id": 99, "annotation": null}, {"text": "pump", "start": 572, "end": 576, "id": 100, "annotation": null}, {"text": "range", "start": 577, "end": 582, "id": 101, "annotation": null}, {"text": "and", "start": 583, "end": 586, "id": 102, "annotation": null}, {"text": "the", "start": 587, "end": 590, "id": 103, "annotation": null}, {"text": "repetition", "start": 591, "end": 601, "id": 104, "annotation": null}, {"text": "rate", "start": 602, "end": 606, "id": 105, "annotation": null}, {"text": "range", "start": 607, "end": 612, "id": 106, "annotation": null}, {"text": "of", "start": 613, "end": 615, "id": 107, "annotation": null}, {"text": "the", "start": 616, "end": 619, "id": 108, "annotation": null}, {"text": "laser", "start": 620, "end": 625, "id": 109, "annotation": null}, {"text": "system", "start": 626, "end": 632, "id": 110, "annotation": null}, {"text": ",", "start": 633, "end": 634, "id": 111, "annotation": null}, {"text": "but", "start": 635, "end": 638, "id": 112, "annotation": null}, {"text": "also", "start": 639, "end": 643, "id": 113, "annotation": null}, {"text": "indicate", "start": 644, "end": 652, "id": 114, "annotation": null}, {"text": "higher", "start": 653, "end": 659, "id": 115, "annotation": null}, {"text": "output", "start": 660, "end": 666, "id": 116, "annotation": null}, {"text": "energy", "start": 667, "end": 673, "id": 117, "annotation": null}, {"text": "and", "start": 674, "end": 677, "id": 118, "annotation": null}, {"text": "Q", "start": 678, "end": 679, "id": 119, "annotation": null}, {"text": "-", "start": 680, "end": 681, "id": 120, "annotation": null}, {"text": "switching", "start": 682, "end": 691, "id": 121, "annotation": null}, {"text": "efficiency", "start": 692, "end": 702, "id": 122, "annotation": null}, {"text": ".", "start": 703, "end": 704, "id": 123, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "A two-step hydrothermal process for preparing Ni-doped WO3 nanoplate arrays (NPAs) is developed, and the obtained samples were used as a photoanode to produce a highly active and stable electrocatalyst for photoelectrochemical (PEC) water splitting under visible light. The NPAs are formed as a single-phase solid solution with high purity. X-ray photoelectron spectroscopy measurement verifies the binding energy of W element is negatively shifted due to the substitution of W6+ by Ni2+ in the monoclinic lattice and thereby the formation of Ni-O-W bonds. Notably, the two-step 3 at% Ni-doped WO3 NPAs exhibits the highest PEC performance, compared with pure and one-step Ni-doped WO3 NPAs. At 1.0V (vs Ag/AgCl), the current density of two-step 3 at% Ni-doped WO3 is 0.80mA/cm2, which is about 1.74- and 2.35-fold of that of WO3 (0.46mA/cm2) and one-step 3 at% Ni-doped WO3 (0.34mA/cm2), respectively. The PEC performance of WO3 NPAs can be modified by Ni doping in a two-step hydrothermal process; both the changes of band gap and electrochemically active surface area (ECSA) are playing important roles on improving the activity of the WO3 NPAs photoanode.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "two", "start": 2, "end": 5, "annotation": null}, {"text": "-", "start": 5, "end": 6, "annotation": null}, {"text": "step", "start": 6, "end": 10, "annotation": null}, {"text": "hydrothermal", "start": 11, "end": 23, "annotation": null}, {"text": "process", "start": 24, "end": 31, "annotation": null}, {"text": "for", "start": 32, "end": 35, "annotation": null}, {"text": "preparing", "start": 36, "end": 45, "annotation": null}, {"text": "Ni", "start": 46, "end": 48, "annotation": "DOPANT"}, {"text": "-", "start": 48, "end": 49, "annotation": null}, {"text": "doped", "start": 49, "end": 54, "annotation": null}, {"text": "WO3", "start": 55, "end": 58, "annotation": "BASEMAT"}, {"text": "nanoplate", "start": 59, "end": 68, "annotation": "BASEMAT"}, {"text": "arrays", "start": 69, "end": 75, "annotation": "BASEMAT"}, {"text": "(", "start": 76, "end": 77, "annotation": null}, {"text": "NPAs", "start": 77, "end": 81, "annotation": null}, {"text": ")", "start": 81, "end": 82, "annotation": null}, {"text": "is", "start": 83, "end": 85, "annotation": null}, {"text": "developed", "start": 86, "end": 95, "annotation": null}, {"text": ",", "start": 95, "end": 96, "annotation": null}, {"text": "and", "start": 97, "end": 100, "annotation": null}, {"text": "the", "start": 101, "end": 104, "annotation": null}, {"text": "obtained", "start": 105, "end": 113, "annotation": null}, {"text": "samples", "start": 114, "end": 121, "annotation": null}, {"text": "were", "start": 122, "end": 126, "annotation": null}, {"text": "used", "start": 127, "end": 131, "annotation": null}, {"text": "as", "start": 132, "end": 134, "annotation": null}, {"text": "a", "start": 135, "end": 136, "annotation": null}, {"text": "photoanode", "start": 137, "end": 147, "annotation": null}, {"text": "to", "start": 148, "end": 150, "annotation": null}, {"text": "produce", "start": 151, "end": 158, "annotation": null}, {"text": "a", "start": 159, "end": 160, "annotation": null}, {"text": "highly", "start": 161, "end": 167, "annotation": null}, {"text": "active", "start": 168, "end": 174, "annotation": null}, {"text": "and", "start": 175, "end": 178, "annotation": null}, {"text": "stable", "start": 179, "end": 185, "annotation": null}, {"text": "electrocatalyst", "start": 186, "end": 201, "annotation": null}, {"text": "for", "start": 202, "end": 205, "annotation": null}, {"text": "photoelectrochemical", "start": 206, "end": 226, "annotation": null}, {"text": "(", "start": 227, "end": 228, "annotation": null}, {"text": "PEC", "start": 228, "end": 231, "annotation": null}, {"text": ")", "start": 231, "end": 232, "annotation": null}, {"text": "water", "start": 233, "end": 238, "annotation": null}, {"text": "splitting", "start": 239, "end": 248, "annotation": null}, {"text": "under", "start": 249, "end": 254, "annotation": null}, {"text": "visible", "start": 255, "end": 262, "annotation": null}, {"text": "light", "start": 263, "end": 268, "annotation": null}, {"text": ".", "start": 268, "end": 269, "annotation": null}], [{"text": "The", "start": 270, "end": 273, "annotation": null}, {"text": "NPAs", "start": 274, "end": 278, "annotation": null}, {"text": "are", "start": 279, "end": 282, "annotation": null}, {"text": "formed", "start": 283, "end": 289, "annotation": null}, {"text": "as", "start": 290, "end": 292, "annotation": null}, {"text": "a", "start": 293, "end": 294, "annotation": null}, {"text": "single", "start": 295, "end": 301, "annotation": null}, {"text": "-", "start": 301, "end": 302, "annotation": null}, {"text": "phase", "start": 302, "end": 307, "annotation": null}, {"text": "solid", "start": 308, "end": 313, "annotation": null}, {"text": "solution", "start": 314, "end": 322, "annotation": null}, {"text": "with", "start": 323, "end": 327, "annotation": null}, {"text": "high", "start": 328, "end": 332, "annotation": null}, {"text": "purity", "start": 333, "end": 339, "annotation": null}, {"text": ".", "start": 339, "end": 340, "annotation": null}], [{"text": "X-ray", "start": 341, "end": 346, "annotation": null}, {"text": "photoelectron", "start": 347, "end": 360, "annotation": null}, {"text": "spectroscopy", "start": 361, "end": 373, "annotation": null}, {"text": "measurement", "start": 374, "end": 385, "annotation": null}, {"text": "verifies", "start": 386, "end": 394, "annotation": null}, {"text": "the", "start": 395, "end": 398, "annotation": null}, {"text": "binding", "start": 399, "end": 406, "annotation": null}, {"text": "energy", "start": 407, "end": 413, "annotation": null}, {"text": "of", "start": 414, "end": 416, "annotation": null}, {"text": "W", "start": 417, "end": 418, "annotation": null}, {"text": "element", "start": 419, "end": 426, "annotation": null}, {"text": "is", "start": 427, "end": 429, "annotation": null}, {"text": "negatively", "start": 430, "end": 440, "annotation": null}, {"text": "shifted", "start": 441, "end": 448, "annotation": null}, {"text": "due", "start": 449, "end": 452, "annotation": null}, {"text": "to", "start": 453, "end": 455, "annotation": null}, {"text": "the", "start": 456, "end": 459, "annotation": null}, {"text": "substitution", "start": 460, "end": 472, "annotation": null}, {"text": "of", "start": 473, "end": 475, "annotation": null}, {"text": "W6+", "start": 476, "end": 479, "annotation": null}, {"text": "by", "start": 480, "end": 482, "annotation": null}, {"text": "Ni2+", "start": 483, "end": 487, "annotation": null}, {"text": "in", "start": 488, "end": 490, "annotation": null}, {"text": "the", "start": 491, "end": 494, "annotation": null}, {"text": "monoclinic", "start": 495, "end": 505, "annotation": null}, {"text": "lattice", "start": 506, "end": 513, "annotation": null}, {"text": "and", "start": 514, "end": 517, "annotation": null}, {"text": "thereby", "start": 518, "end": 525, "annotation": null}, {"text": "the", "start": 526, "end": 529, "annotation": null}, {"text": "formation", "start": 530, "end": 539, "annotation": null}, {"text": "of", "start": 540, "end": 542, "annotation": null}, {"text": "Ni-O-W", "start": 543, "end": 549, "annotation": null}, {"text": "bonds", "start": 550, "end": 555, "annotation": null}, {"text": ".", "start": 555, "end": 556, "annotation": null}], [{"text": "Notably", "start": 557, "end": 564, "annotation": null}, {"text": ",", "start": 564, "end": 565, "annotation": null}, {"text": "the", "start": 566, "end": 569, "annotation": null}, {"text": "two", "start": 570, "end": 573, "annotation": null}, {"text": "-", "start": 573, "end": 574, "annotation": null}, {"text": "step", "start": 574, "end": 578, "annotation": null}, {"text": "3", "start": 579, "end": 580, "annotation": null}, {"text": "at", "start": 581, "end": 583, "annotation": null}, {"text": "%", "start": 583, "end": 584, "annotation": null}, {"text": "Ni", "start": 585, "end": 587, "annotation": "DOPANT"}, {"text": "-", "start": 587, "end": 588, "annotation": null}, {"text": "doped", "start": 588, "end": 593, "annotation": null}, {"text": "WO3", "start": 594, "end": 597, "annotation": "BASEMAT"}, {"text": "NPAs", "start": 598, "end": 602, "annotation": "BASEMAT"}, {"text": "exhibits", "start": 603, "end": 611, "annotation": null}, {"text": "the", "start": 612, "end": 615, "annotation": null}, {"text": "highest", "start": 616, "end": 623, "annotation": null}, {"text": "PEC", "start": 624, "end": 627, "annotation": null}, {"text": "performance", "start": 628, "end": 639, "annotation": null}, {"text": ",", "start": 639, "end": 640, "annotation": null}, {"text": "compared", "start": 641, "end": 649, "annotation": null}, {"text": "with", "start": 650, "end": 654, "annotation": null}, {"text": "pure", "start": 655, "end": 659, "annotation": null}, {"text": "and", "start": 660, "end": 663, "annotation": null}, {"text": "one", "start": 664, "end": 667, "annotation": null}, {"text": "-", "start": 667, "end": 668, "annotation": null}, {"text": "step", "start": 668, "end": 672, "annotation": null}, {"text": "Ni", "start": 673, "end": 675, "annotation": "DOPANT"}, {"text": "-", "start": 675, "end": 676, "annotation": null}, {"text": "doped", "start": 676, "end": 681, "annotation": null}, {"text": "WO3", "start": 682, "end": 685, "annotation": "BASEMAT"}, {"text": "NPAs", "start": 686, "end": 690, "annotation": "BASEMAT"}, {"text": ".", "start": 690, "end": 691, "annotation": null}], [{"text": "At", "start": 692, "end": 694, "annotation": null}, {"text": "1.0", "start": 695, "end": 698, "annotation": null}, {"text": "V", "start": 698, "end": 699, "annotation": null}, {"text": "(", "start": 700, "end": 701, "annotation": null}, {"text": "vs", "start": 701, "end": 703, "annotation": null}, {"text": "Ag", "start": 704, "end": 706, "annotation": null}, {"text": "/", "start": 706, "end": 707, "annotation": null}, {"text": "AgCl", "start": 707, "end": 711, "annotation": null}, {"text": ")", "start": 711, "end": 712, "annotation": null}, {"text": ",", "start": 712, "end": 713, "annotation": null}, {"text": "the", "start": 714, "end": 717, "annotation": null}, {"text": "current", "start": 718, "end": 725, "annotation": null}, {"text": "density", "start": 726, "end": 733, "annotation": null}, {"text": "of", "start": 734, "end": 736, "annotation": null}, {"text": "two", "start": 737, "end": 740, "annotation": null}, {"text": "-", "start": 740, "end": 741, "annotation": null}, {"text": "step", "start": 741, "end": 745, "annotation": null}, {"text": "3", "start": 746, "end": 747, "annotation": null}, {"text": "at", "start": 748, "end": 750, "annotation": null}, {"text": "%", "start": 750, "end": 751, "annotation": null}, {"text": "Ni", "start": 752, "end": 754, "annotation": "DOPANT"}, {"text": "-", "start": 754, "end": 755, "annotation": null}, {"text": "doped", "start": 755, "end": 760, "annotation": null}, {"text": "WO3", "start": 761, "end": 764, "annotation": "BASEMAT"}, {"text": "is", "start": 765, "end": 767, "annotation": null}, {"text": "0.80", "start": 768, "end": 772, "annotation": null}, {"text": "mA", "start": 772, "end": 774, "annotation": null}, {"text": "/", "start": 774, "end": 775, "annotation": null}, {"text": "cm2", "start": 775, "end": 778, "annotation": null}, {"text": ",", "start": 778, "end": 779, "annotation": null}, {"text": "which", "start": 780, "end": 785, "annotation": null}, {"text": "is", "start": 786, "end": 788, "annotation": null}, {"text": "about", "start": 789, "end": 794, "annotation": null}, {"text": "1.74-", "start": 795, "end": 800, "annotation": null}, {"text": "and", "start": 801, "end": 804, "annotation": null}, {"text": "2.35-fold", "start": 805, "end": 814, "annotation": null}, {"text": "of", "start": 815, "end": 817, "annotation": null}, {"text": "that", "start": 818, "end": 822, "annotation": null}, {"text": "of", "start": 823, "end": 825, "annotation": null}, {"text": "WO3", "start": 826, "end": 829, "annotation": null}, {"text": "(", "start": 830, "end": 831, "annotation": null}, {"text": "0.46", "start": 831, "end": 835, "annotation": null}, {"text": "mA", "start": 835, "end": 837, "annotation": null}, {"text": "/", "start": 837, "end": 838, "annotation": null}, {"text": "cm2", "start": 838, "end": 841, "annotation": null}, {"text": ")", "start": 841, "end": 842, "annotation": null}, {"text": "and", "start": 843, "end": 846, "annotation": null}, {"text": "one", "start": 847, "end": 850, "annotation": null}, {"text": "-", "start": 850, "end": 851, "annotation": null}, {"text": "step", "start": 851, "end": 855, "annotation": null}, {"text": "3", "start": 856, "end": 857, "annotation": null}, {"text": "at", "start": 858, "end": 860, "annotation": null}, {"text": "%", "start": 860, "end": 861, "annotation": null}, {"text": "Ni", "start": 862, "end": 864, "annotation": "DOPANT"}, {"text": "-", "start": 864, "end": 865, "annotation": null}, {"text": "doped", "start": 865, "end": 870, "annotation": null}, {"text": "WO3", "start": 871, "end": 874, "annotation": "BASEMAT"}, {"text": "(", "start": 875, "end": 876, "annotation": null}, {"text": "0.34", "start": 876, "end": 880, "annotation": null}, {"text": "mA", "start": 880, "end": 882, "annotation": null}, {"text": "/", "start": 882, "end": 883, "annotation": null}, {"text": "cm2", "start": 883, "end": 886, "annotation": null}, {"text": ")", "start": 886, "end": 887, "annotation": null}, {"text": ",", "start": 887, "end": 888, "annotation": null}, {"text": "respectively", "start": 889, "end": 901, "annotation": null}, {"text": ".", "start": 901, "end": 902, "annotation": null}], [{"text": "The", "start": 903, "end": 906, "annotation": null}, {"text": "PEC", "start": 907, "end": 910, "annotation": null}, {"text": "performance", "start": 911, "end": 922, "annotation": null}, {"text": "of", "start": 923, "end": 925, "annotation": null}, {"text": "WO3", "start": 926, "end": 929, "annotation": "BASEMAT"}, {"text": "NPAs", "start": 930, "end": 934, "annotation": "BASEMAT"}, {"text": "can", "start": 935, "end": 938, "annotation": null}, {"text": "be", "start": 939, "end": 941, "annotation": null}, {"text": "modified", "start": 942, "end": 950, "annotation": null}, {"text": "by", "start": 951, "end": 953, "annotation": null}, {"text": "Ni", "start": 954, "end": 956, "annotation": "DOPANT"}, {"text": "doping", "start": 957, "end": 963, "annotation": null}, {"text": "in", "start": 964, "end": 966, "annotation": null}, {"text": "a", "start": 967, "end": 968, "annotation": null}, {"text": "two", "start": 969, "end": 972, "annotation": null}, {"text": "-", "start": 972, "end": 973, "annotation": null}, {"text": "step", "start": 973, "end": 977, "annotation": null}, {"text": "hydrothermal", "start": 978, "end": 990, "annotation": null}, {"text": "process", "start": 991, "end": 998, "annotation": null}, {"text": ";", "start": 998, "end": 999, "annotation": null}, {"text": "both", "start": 1000, "end": 1004, "annotation": null}, {"text": "the", "start": 1005, "end": 1008, "annotation": null}, {"text": "changes", "start": 1009, "end": 1016, "annotation": null}, {"text": "of", "start": 1017, "end": 1019, "annotation": null}, {"text": "band", "start": 1020, "end": 1024, "annotation": null}, {"text": "gap", "start": 1025, "end": 1028, "annotation": null}, {"text": "and", "start": 1029, "end": 1032, "annotation": null}, {"text": "electrochemically", "start": 1033, "end": 1050, "annotation": null}, {"text": "active", "start": 1051, "end": 1057, "annotation": null}, {"text": "surface", "start": 1058, "end": 1065, "annotation": null}, {"text": "area", "start": 1066, "end": 1070, "annotation": null}, {"text": "(", "start": 1071, "end": 1072, "annotation": null}, {"text": "ECSA", "start": 1072, "end": 1076, "annotation": null}, {"text": ")", "start": 1076, "end": 1077, "annotation": null}, {"text": "are", "start": 1078, "end": 1081, "annotation": null}, {"text": "playing", "start": 1082, "end": 1089, "annotation": null}, {"text": "important", "start": 1090, "end": 1099, "annotation": null}, {"text": "roles", "start": 1100, "end": 1105, "annotation": null}, {"text": "on", "start": 1106, "end": 1108, "annotation": null}, {"text": "improving", "start": 1109, "end": 1118, "annotation": null}, {"text": "the", "start": 1119, "end": 1122, "annotation": null}, {"text": "activity", "start": 1123, "end": 1131, "annotation": null}, {"text": "of", "start": 1132, "end": 1134, "annotation": null}, {"text": "the", "start": 1135, "end": 1138, "annotation": null}, {"text": "WO3", "start": 1139, "end": 1142, "annotation": null}, {"text": "NPAs", "start": 1143, "end": 1147, "annotation": null}, {"text": "photoanode", "start": 1148, "end": 1158, "annotation": null}, {"text": ".", "start": 1158, "end": 1159, "annotation": null}]]} -{"remark": "doping_annt3", "text": "In this work we propose the study of the spectroscopy properties and the energy level location of Ce3+ and Pr3+ in Gd2O2S, along with the effects of Ce4+ (Ce2O2S2) incorporation in Gd2O2S and Gd2O2S:Pr3+ in order to understand the formation and position of the associated defects energy levels in relation to the band structure of Gd2O2S and Pr3+ energy levels. Ce-, Pr3+-doped and Pr3+,Ce-doped Gd2O2S were prepared by the sulfidization of a basic gadolinium carbonate with S8 using H2/N2 (3.0/97.0%) and air during the firing of the precursor. Samples were analyzed by X-ray diffraction in order to guarantee the formation of the Gd2O2S single phase. Diffuse reflectance spectroscopy and luminescent measurements (emission/excitation) were used to locate Ce3+, Pr3+ and defects energy levels in relation to the band structure of Gd2O2S. Copyright \u00a9 2009 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "this", "start": 3, "end": 7, "annotation": null}, {"text": "work", "start": 8, "end": 12, "annotation": null}, {"text": "we", "start": 13, "end": 15, "annotation": null}, {"text": "propose", "start": 16, "end": 23, "annotation": null}, {"text": "the", "start": 24, "end": 27, "annotation": null}, {"text": "study", "start": 28, "end": 33, "annotation": null}, {"text": "of", "start": 34, "end": 36, "annotation": null}, {"text": "the", "start": 37, "end": 40, "annotation": null}, {"text": "spectroscopy", "start": 41, "end": 53, "annotation": null}, {"text": "properties", "start": 54, "end": 64, "annotation": null}, {"text": "and", "start": 65, "end": 68, "annotation": null}, {"text": "the", "start": 69, "end": 72, "annotation": null}, {"text": "energy", "start": 73, "end": 79, "annotation": null}, {"text": "level", "start": 80, "end": 85, "annotation": null}, {"text": "location", "start": 86, "end": 94, "annotation": null}, {"text": "of", "start": 95, "end": 97, "annotation": null}, {"text": "Ce3+", "start": 98, "end": 102, "annotation": null}, {"text": "and", "start": 103, "end": 106, "annotation": null}, {"text": "Pr3+", "start": 107, "end": 111, "annotation": null}, {"text": "in", "start": 112, "end": 114, "annotation": null}, {"text": "Gd2O2S", "start": 115, "end": 121, "annotation": null}, {"text": ",", "start": 121, "end": 122, "annotation": null}, {"text": "along", "start": 123, "end": 128, "annotation": null}, {"text": "with", "start": 129, "end": 133, "annotation": null}, {"text": "the", "start": 134, "end": 137, "annotation": null}, {"text": "effects", "start": 138, "end": 145, "annotation": null}, {"text": "of", "start": 146, "end": 148, "annotation": null}, {"text": "Ce4+", "start": 149, "end": 153, "annotation": null}, {"text": "(", "start": 154, "end": 155, "annotation": null}, {"text": "Ce2O2S2", "start": 155, "end": 162, "annotation": null}, {"text": ")", "start": 162, "end": 163, "annotation": null}, {"text": "incorporation", "start": 164, "end": 177, "annotation": null}, {"text": "in", "start": 178, "end": 180, "annotation": null}, {"text": "Gd2O2S", "start": 181, "end": 187, "annotation": null}, {"text": "and", "start": 188, "end": 191, "annotation": null}, {"text": "Gd2O2S", "start": 192, "end": 198, "annotation": "BASEMAT"}, {"text": ":", "start": 198, "end": 199, "annotation": null}, {"text": "Pr3+", "start": 199, "end": 203, "annotation": "DOPANT"}, {"text": "in", "start": 204, "end": 206, "annotation": null}, {"text": "order", "start": 207, "end": 212, "annotation": null}, {"text": "to", "start": 213, "end": 215, "annotation": null}, {"text": "understand", "start": 216, "end": 226, "annotation": null}, {"text": "the", "start": 227, "end": 230, "annotation": null}, {"text": "formation", "start": 231, "end": 240, "annotation": null}, {"text": "and", "start": 241, "end": 244, "annotation": null}, {"text": "position", "start": 245, "end": 253, "annotation": null}, {"text": "of", "start": 254, "end": 256, "annotation": null}, {"text": "the", "start": 257, "end": 260, "annotation": null}, {"text": "associated", "start": 261, "end": 271, "annotation": null}, {"text": "defects", "start": 272, "end": 279, "annotation": null}, {"text": "energy", "start": 280, "end": 286, "annotation": null}, {"text": "levels", "start": 287, "end": 293, "annotation": null}, {"text": "in", "start": 294, "end": 296, "annotation": null}, {"text": "relation", "start": 297, "end": 305, "annotation": null}, {"text": "to", "start": 306, "end": 308, "annotation": null}, {"text": "the", "start": 309, "end": 312, "annotation": null}, {"text": "band", "start": 313, "end": 317, "annotation": null}, {"text": "structure", "start": 318, "end": 327, "annotation": null}, {"text": "of", "start": 328, "end": 330, "annotation": null}, {"text": "Gd2O2S", "start": 331, "end": 337, "annotation": null}, {"text": "and", "start": 338, "end": 341, "annotation": null}, {"text": "Pr3+", "start": 342, "end": 346, "annotation": null}, {"text": "energy", "start": 347, "end": 353, "annotation": null}, {"text": "levels", "start": 354, "end": 360, "annotation": null}, {"text": ".", "start": 360, "end": 361, "annotation": null}], [{"text": "Ce-", "start": 362, "end": 365, "annotation": "DOPANT"}, {"text": ",", "start": 365, "end": 366, "annotation": null}, {"text": "Pr3+", "start": 367, "end": 371, "annotation": "DOPANT"}, {"text": "-", "start": 371, "end": 372, "annotation": null}, {"text": "doped", "start": 372, "end": 377, "annotation": null}, {"text": "and", "start": 378, "end": 381, "annotation": null}, {"text": "Pr3+,Ce", "start": 382, "end": 389, "annotation": "DOPANT"}, {"text": "-", "start": 389, "end": 390, "annotation": null}, {"text": "doped", "start": 390, "end": 395, "annotation": null}, {"text": "Gd2O2S", "start": 396, "end": 402, "annotation": "BASEMAT"}, {"text": "were", "start": 403, "end": 407, "annotation": null}, {"text": "prepared", "start": 408, "end": 416, "annotation": null}, {"text": "by", "start": 417, "end": 419, "annotation": null}, {"text": "the", "start": 420, "end": 423, "annotation": null}, {"text": "sulfidization", "start": 424, "end": 437, "annotation": null}, {"text": "of", "start": 438, "end": 440, "annotation": null}, {"text": "a", "start": 441, "end": 442, "annotation": null}, {"text": "basic", "start": 443, "end": 448, "annotation": null}, {"text": "gadolinium", "start": 449, "end": 459, "annotation": null}, {"text": "carbonate", "start": 460, "end": 469, "annotation": null}, {"text": "with", "start": 470, "end": 474, "annotation": null}, {"text": "S8", "start": 475, "end": 477, "annotation": null}, {"text": "using", "start": 478, "end": 483, "annotation": null}, {"text": "H2", "start": 484, "end": 486, "annotation": null}, {"text": "/", "start": 486, "end": 487, "annotation": null}, {"text": "N2", "start": 487, "end": 489, "annotation": null}, {"text": "(", "start": 490, "end": 491, "annotation": null}, {"text": "3.0", "start": 491, "end": 494, "annotation": null}, {"text": "/", "start": 494, "end": 495, "annotation": null}, {"text": "97.0", "start": 495, "end": 499, "annotation": null}, {"text": "%", "start": 499, "end": 500, "annotation": null}, {"text": ")", "start": 500, "end": 501, "annotation": null}, {"text": "and", "start": 502, "end": 505, "annotation": null}, {"text": "air", "start": 506, "end": 509, "annotation": null}, {"text": "during", "start": 510, "end": 516, "annotation": null}, {"text": "the", "start": 517, "end": 520, "annotation": null}, {"text": "firing", "start": 521, "end": 527, "annotation": null}, {"text": "of", "start": 528, "end": 530, "annotation": null}, {"text": "the", "start": 531, "end": 534, "annotation": null}, {"text": "precursor", "start": 535, "end": 544, "annotation": null}, {"text": ".", "start": 544, "end": 545, "annotation": null}], [{"text": "Samples", "start": 546, "end": 553, "annotation": null}, {"text": "were", "start": 554, "end": 558, "annotation": null}, {"text": "analyzed", "start": 559, "end": 567, "annotation": null}, {"text": "by", "start": 568, "end": 570, "annotation": null}, {"text": "X-ray", "start": 571, "end": 576, "annotation": null}, {"text": "diffraction", "start": 577, "end": 588, "annotation": null}, {"text": "in", "start": 589, "end": 591, "annotation": null}, {"text": "order", "start": 592, "end": 597, "annotation": null}, {"text": "to", "start": 598, "end": 600, "annotation": null}, {"text": "guarantee", "start": 601, "end": 610, "annotation": null}, {"text": "the", "start": 611, "end": 614, "annotation": null}, {"text": "formation", "start": 615, "end": 624, "annotation": null}, {"text": "of", "start": 625, "end": 627, "annotation": null}, {"text": "the", "start": 628, "end": 631, "annotation": null}, {"text": "Gd2O2S", "start": 632, "end": 638, "annotation": null}, {"text": "single", "start": 639, "end": 645, "annotation": null}, {"text": "phase", "start": 646, "end": 651, "annotation": null}, {"text": ".", "start": 651, "end": 652, "annotation": null}], [{"text": "Diffuse", "start": 653, "end": 660, "annotation": null}, {"text": "reflectance", "start": 661, "end": 672, "annotation": null}, {"text": "spectroscopy", "start": 673, "end": 685, "annotation": null}, {"text": "and", "start": 686, "end": 689, "annotation": null}, {"text": "luminescent", "start": 690, "end": 701, "annotation": null}, {"text": "measurements", "start": 702, "end": 714, "annotation": null}, {"text": "(", "start": 715, "end": 716, "annotation": null}, {"text": "emission", "start": 716, "end": 724, "annotation": null}, {"text": "/", "start": 724, "end": 725, "annotation": null}, {"text": "excitation", "start": 725, "end": 735, "annotation": null}, {"text": ")", "start": 735, "end": 736, "annotation": null}, {"text": "were", "start": 737, "end": 741, "annotation": null}, {"text": "used", "start": 742, "end": 746, "annotation": null}, {"text": "to", "start": 747, "end": 749, "annotation": null}, {"text": "locate", "start": 750, "end": 756, "annotation": null}, {"text": "Ce3+", "start": 757, "end": 761, "annotation": null}, {"text": ",", "start": 761, "end": 762, "annotation": null}, {"text": "Pr3+", "start": 763, "end": 767, "annotation": null}, {"text": "and", "start": 768, "end": 771, "annotation": null}, {"text": "defects", "start": 772, "end": 779, "annotation": null}, {"text": "energy", "start": 780, "end": 786, "annotation": null}, {"text": "levels", "start": 787, "end": 793, "annotation": null}, {"text": "in", "start": 794, "end": 796, "annotation": null}, {"text": "relation", "start": 797, "end": 805, "annotation": null}, {"text": "to", "start": 806, "end": 808, "annotation": null}, {"text": "the", "start": 809, "end": 812, "annotation": null}, {"text": "band", "start": 813, "end": 817, "annotation": null}, {"text": "structure", "start": 818, "end": 827, "annotation": null}, {"text": "of", "start": 828, "end": 830, "annotation": null}, {"text": "Gd2O2S", "start": 831, "end": 837, "annotation": null}, {"text": ".", "start": 837, "end": 838, "annotation": null}], [{"text": "KGaA", "start": 884, "end": 888, "annotation": null}, {"text": ",", "start": 888, "end": 889, "annotation": null}, {"text": "Weinheim", "start": 890, "end": 898, "annotation": null}, {"text": ".", "start": 898, "end": 899, "annotation": null}]]} -{"text": "Transition-metal silicides are reported to be good candidates for thermoelectric applications because of their thermal and structural stability, high electrical conductivity, and generation of thermoelectric power at elevated temperatures. Chromium disilicide (CrSi2) is a narrow-gap semiconductor and a potential p-type thermoelectric material up to 973\u00a0K with a band gap of 0.30\u00a0eV. In this work, CrSi2 was formed from Si wafers by use of a two-step, pack-cementation, chemical diffusion method. Several deposition conditions were used to investigate the effect of temperature and donor concentration on the structure of the final products. Scanning electron microscopy and x-ray diffraction analysis were performed for phase identification, and thermal stability was evaluated by means of thermogravimetric measurements. The results showed that after the first step, chromizing, the structure of the products was a mixture of several Cr\u2013Si phases, depending on the donor (Cr) concentration during the deposition process. After the second step, siliconizing, the pure CrSi2 phase was formed as a result of Si enrichment of the initial Cr\u2013Si phases. It was also revealed that this compound has thermoelectric properties similar to those reported elsewhere. Moreover, it was found to have exceptional chemical stability even at temperatures up to 1273\u00a0K.", "meta": {"doi": "10.1007/s11664-014-3100-y"}, "_input_hash": -1306603977, "_task_hash": 2132953050, "tokens": [[{"text": "Transition", "start": 0, "end": 10, "id": 0, "annotation": null}, {"text": "-", "start": 11, "end": 12, "id": 1, "annotation": null}, {"text": "metal", "start": 13, "end": 18, "id": 2, "annotation": null}, {"text": "silicides", "start": 19, "end": 28, "id": 3, "annotation": null}, {"text": "are", "start": 29, "end": 32, "id": 4, "annotation": null}, {"text": "reported", "start": 33, "end": 41, "id": 5, "annotation": null}, {"text": "to", "start": 42, "end": 44, "id": 6, "annotation": null}, {"text": "be", "start": 45, "end": 47, "id": 7, "annotation": null}, {"text": "good", "start": 48, "end": 52, "id": 8, "annotation": null}, {"text": "candidates", "start": 53, "end": 63, "id": 9, "annotation": null}, {"text": "for", "start": 64, "end": 67, "id": 10, "annotation": null}, {"text": "thermoelectric", "start": 68, "end": 82, "id": 11, "annotation": null}, {"text": "applications", "start": 83, "end": 95, "id": 12, "annotation": null}, {"text": "because", "start": 96, "end": 103, "id": 13, "annotation": null}, {"text": "of", "start": 104, "end": 106, "id": 14, "annotation": null}, {"text": "their", "start": 107, "end": 112, "id": 15, "annotation": null}, {"text": "thermal", "start": 113, "end": 120, "id": 16, "annotation": null}, {"text": "and", "start": 121, "end": 124, "id": 17, "annotation": null}, {"text": "structural", "start": 125, "end": 135, "id": 18, "annotation": null}, {"text": "stability", "start": 136, "end": 145, "id": 19, "annotation": null}, {"text": ",", "start": 146, "end": 147, "id": 20, "annotation": null}, {"text": "high", "start": 148, "end": 152, "id": 21, "annotation": null}, {"text": "electrical", "start": 153, "end": 163, "id": 22, "annotation": null}, {"text": "conductivity", "start": 164, "end": 176, "id": 23, "annotation": null}, {"text": ",", "start": 177, "end": 178, "id": 24, "annotation": null}, {"text": "and", "start": 179, "end": 182, "id": 25, "annotation": null}, {"text": "generation", "start": 183, "end": 193, "id": 26, "annotation": null}, {"text": "of", "start": 194, "end": 196, "id": 27, "annotation": null}, {"text": "thermoelectric", "start": 197, "end": 211, "id": 28, "annotation": null}, {"text": "power", "start": 212, "end": 217, "id": 29, "annotation": null}, {"text": "at", "start": 218, "end": 220, "id": 30, "annotation": null}, {"text": "elevated", "start": 221, "end": 229, "id": 31, "annotation": null}, {"text": "temperatures", "start": 230, "end": 242, "id": 32, "annotation": null}, {"text": ".", "start": 243, "end": 244, "id": 33, "annotation": null}], [{"text": "Chromium", "start": 245, "end": 253, "id": 34, "annotation": "BASEMAT"}, {"text": "disilicide", "start": 254, "end": 264, "id": 35, "annotation": "BASEMAT"}, {"text": "(", "start": 265, "end": 266, "id": 36, "annotation": null}, {"text": "CrSi2", "start": 267, "end": 272, "id": 37, "annotation": "BASEMAT"}, {"text": ")", "start": 273, "end": 274, "id": 38, "annotation": null}, {"text": "is", "start": 275, "end": 277, "id": 39, "annotation": null}, {"text": "a", "start": 278, "end": 279, "id": 40, "annotation": null}, {"text": "narrow", "start": 280, "end": 286, "id": 41, "annotation": null}, {"text": "-", "start": 287, "end": 288, "id": 42, "annotation": null}, {"text": "gap", "start": 289, "end": 292, "id": 43, "annotation": null}, {"text": "semiconductor", "start": 293, "end": 306, "id": 44, "annotation": null}, {"text": "and", "start": 307, "end": 310, "id": 45, "annotation": null}, {"text": "a", "start": 311, "end": 312, "id": 46, "annotation": null}, {"text": "potential", "start": 313, "end": 322, "id": 47, "annotation": null}, {"text": "p", "start": 323, "end": 324, "id": 48, "annotation": "DOPANT"}, {"text": "-", "start": 325, "end": 326, "id": 49, "annotation": null}, {"text": "type", "start": 327, "end": 331, "id": 50, "annotation": "DOPANT"}, {"text": "thermoelectric", "start": 332, "end": 346, "id": 51, "annotation": null}, {"text": "material", "start": 347, "end": 355, "id": 52, "annotation": null}, {"text": "up", "start": 356, "end": 358, "id": 53, "annotation": null}, {"text": "to", "start": 359, "end": 361, "id": 54, "annotation": null}, {"text": "973", "start": 362, "end": 365, "id": 55, "annotation": null}, {"text": "K", "start": 366, "end": 367, "id": 57, "annotation": null}, {"text": "with", "start": 368, "end": 372, "id": 58, "annotation": null}, {"text": "a", "start": 373, "end": 374, "id": 59, "annotation": null}, {"text": "band", "start": 375, "end": 379, "id": 60, "annotation": null}, {"text": "gap", "start": 380, "end": 383, "id": 61, "annotation": null}, {"text": "of", "start": 384, "end": 386, "id": 62, "annotation": null}, {"text": "0.30", "start": 387, "end": 391, "id": 63, "annotation": null}, {"text": "eV.", "start": 392, "end": 395, "id": 65, "annotation": null}], [{"text": "In", "start": 396, "end": 398, "id": 66, "annotation": null}, {"text": "this", "start": 399, "end": 403, "id": 67, "annotation": null}, {"text": "work", "start": 404, "end": 408, "id": 68, "annotation": null}, {"text": ",", "start": 409, "end": 410, "id": 69, "annotation": null}, {"text": "CrSi2", "start": 411, "end": 416, "id": 70, "annotation": null}, {"text": "was", "start": 417, "end": 420, "id": 71, "annotation": null}, {"text": "formed", "start": 421, "end": 427, "id": 72, "annotation": null}, {"text": "from", "start": 428, "end": 432, "id": 73, "annotation": null}, {"text": "Si", "start": 433, "end": 435, "id": 74, "annotation": null}, {"text": "wafers", "start": 436, "end": 442, "id": 75, "annotation": null}, {"text": "by", "start": 443, "end": 445, "id": 76, "annotation": null}, {"text": "use", "start": 446, "end": 449, "id": 77, "annotation": null}, {"text": "of", "start": 450, "end": 452, "id": 78, "annotation": null}, {"text": "a", "start": 453, "end": 454, "id": 79, "annotation": null}, {"text": "two", "start": 455, "end": 458, "id": 80, "annotation": null}, {"text": "-", "start": 459, "end": 460, "id": 81, "annotation": null}, {"text": "step", "start": 461, "end": 465, "id": 82, "annotation": null}, {"text": ",", "start": 466, "end": 467, "id": 83, "annotation": null}, {"text": "pack", "start": 468, "end": 472, "id": 84, "annotation": null}, {"text": "-", "start": 473, "end": 474, "id": 85, "annotation": null}, {"text": "cementation", "start": 475, "end": 486, "id": 86, "annotation": null}, {"text": ",", "start": 487, "end": 488, "id": 87, "annotation": null}, {"text": "chemical", "start": 489, "end": 497, "id": 88, "annotation": null}, {"text": "diffusion", "start": 498, "end": 507, "id": 89, "annotation": null}, {"text": "method", "start": 508, "end": 514, "id": 90, "annotation": null}, {"text": ".", "start": 515, "end": 516, "id": 91, "annotation": null}], [{"text": "Several", "start": 517, "end": 524, "id": 92, "annotation": null}, {"text": "deposition", "start": 525, "end": 535, "id": 93, "annotation": null}, {"text": "conditions", "start": 536, "end": 546, "id": 94, "annotation": null}, {"text": "were", "start": 547, "end": 551, "id": 95, "annotation": null}, {"text": "used", "start": 552, "end": 556, "id": 96, "annotation": null}, {"text": "to", "start": 557, "end": 559, "id": 97, "annotation": null}, {"text": "investigate", "start": 560, "end": 571, "id": 98, "annotation": null}, {"text": "the", "start": 572, "end": 575, "id": 99, "annotation": null}, {"text": "effect", "start": 576, "end": 582, "id": 100, "annotation": null}, {"text": "of", "start": 583, "end": 585, "id": 101, "annotation": null}, {"text": "temperature", "start": 586, "end": 597, "id": 102, "annotation": null}, {"text": "and", "start": 598, "end": 601, "id": 103, "annotation": null}, {"text": "donor", "start": 602, "end": 607, "id": 104, "annotation": null}, {"text": "concentration", "start": 608, "end": 621, "id": 105, "annotation": null}, {"text": "on", "start": 622, "end": 624, "id": 106, "annotation": null}, {"text": "the", "start": 625, "end": 628, "id": 107, "annotation": null}, {"text": "structure", "start": 629, "end": 638, "id": 108, "annotation": null}, {"text": "of", "start": 639, "end": 641, "id": 109, "annotation": null}, {"text": "the", "start": 642, "end": 645, "id": 110, "annotation": null}, {"text": "final", "start": 646, "end": 651, "id": 111, "annotation": null}, {"text": "products", "start": 652, "end": 660, "id": 112, "annotation": null}, {"text": ".", "start": 661, "end": 662, "id": 113, "annotation": null}], [{"text": "Scanning", "start": 663, "end": 671, "id": 114, "annotation": null}, {"text": "electron", "start": 672, "end": 680, "id": 115, "annotation": null}, {"text": "microscopy", "start": 681, "end": 691, "id": 116, "annotation": null}, {"text": "and", "start": 692, "end": 695, "id": 117, "annotation": null}, {"text": "x", "start": 696, "end": 697, "id": 118, "annotation": null}, {"text": "-", "start": 698, "end": 699, "id": 119, "annotation": null}, {"text": "ray", "start": 700, "end": 703, "id": 120, "annotation": null}, {"text": "diffraction", "start": 704, "end": 715, "id": 121, "annotation": null}, {"text": "analysis", "start": 716, "end": 724, "id": 122, "annotation": null}, {"text": "were", "start": 725, "end": 729, "id": 123, "annotation": null}, {"text": "performed", "start": 730, "end": 739, "id": 124, "annotation": null}, {"text": "for", "start": 740, "end": 743, "id": 125, "annotation": null}, {"text": "phase", "start": 744, "end": 749, "id": 126, "annotation": null}, {"text": "identification", "start": 750, "end": 764, "id": 127, "annotation": null}, {"text": ",", "start": 765, "end": 766, "id": 128, "annotation": null}, {"text": "and", "start": 767, "end": 770, "id": 129, "annotation": null}, {"text": "thermal", "start": 771, "end": 778, "id": 130, "annotation": null}, {"text": "stability", "start": 779, "end": 788, "id": 131, "annotation": null}, {"text": "was", "start": 789, "end": 792, "id": 132, "annotation": null}, {"text": "evaluated", "start": 793, "end": 802, "id": 133, "annotation": null}, {"text": "by", "start": 803, "end": 805, "id": 134, "annotation": null}, {"text": "means", "start": 806, "end": 811, "id": 135, "annotation": null}, {"text": "of", "start": 812, "end": 814, "id": 136, "annotation": null}, {"text": "thermogravimetric", "start": 815, "end": 832, "id": 137, "annotation": null}, {"text": "measurements", "start": 833, "end": 845, "id": 138, "annotation": null}, {"text": ".", "start": 846, "end": 847, "id": 139, "annotation": null}], [{"text": "The", "start": 848, "end": 851, "id": 140, "annotation": null}, {"text": "results", "start": 852, "end": 859, "id": 141, "annotation": null}, {"text": "showed", "start": 860, "end": 866, "id": 142, "annotation": null}, {"text": "that", "start": 867, "end": 871, "id": 143, "annotation": null}, {"text": "after", "start": 872, "end": 877, "id": 144, "annotation": null}, {"text": "the", "start": 878, "end": 881, "id": 145, "annotation": null}, {"text": "first", "start": 882, "end": 887, "id": 146, "annotation": null}, {"text": "step", "start": 888, "end": 892, "id": 147, "annotation": null}, {"text": ",", "start": 893, "end": 894, "id": 148, "annotation": null}, {"text": "chromizing", "start": 895, "end": 905, "id": 149, "annotation": null}, {"text": ",", "start": 906, "end": 907, "id": 150, "annotation": null}, {"text": "the", "start": 908, "end": 911, "id": 151, "annotation": null}, {"text": "structure", "start": 912, "end": 921, "id": 152, "annotation": null}, {"text": "of", "start": 922, "end": 924, "id": 153, "annotation": null}, {"text": "the", "start": 925, "end": 928, "id": 154, "annotation": null}, {"text": "products", "start": 929, "end": 937, "id": 155, "annotation": null}, {"text": "was", "start": 938, "end": 941, "id": 156, "annotation": null}, {"text": "a", "start": 942, "end": 943, "id": 157, "annotation": null}, {"text": "mixture", "start": 944, "end": 951, "id": 158, "annotation": null}, {"text": "of", "start": 952, "end": 954, "id": 159, "annotation": null}, {"text": "several", "start": 955, "end": 962, "id": 160, "annotation": null}, {"text": "Cr", "start": 963, "end": 965, "id": 161, "annotation": null}, {"text": "\u2013", "start": 966, "end": 967, "id": 162, "annotation": null}, {"text": "Si", "start": 968, "end": 970, "id": 163, "annotation": null}, {"text": "phases", "start": 971, "end": 977, "id": 164, "annotation": null}, {"text": ",", "start": 978, "end": 979, "id": 165, "annotation": null}, {"text": "depending", "start": 980, "end": 989, "id": 166, "annotation": null}, {"text": "on", "start": 990, "end": 992, "id": 167, "annotation": null}, {"text": "the", "start": 993, "end": 996, "id": 168, "annotation": null}, {"text": "donor", "start": 997, "end": 1002, "id": 169, "annotation": null}, {"text": "(", "start": 1003, "end": 1004, "id": 170, "annotation": null}, {"text": "Cr", "start": 1005, "end": 1007, "id": 171, "annotation": "DOPANT"}, {"text": ")", "start": 1008, "end": 1009, "id": 172, "annotation": null}, {"text": "concentration", "start": 1010, "end": 1023, "id": 173, "annotation": null}, {"text": "during", "start": 1024, "end": 1030, "id": 174, "annotation": null}, {"text": "the", "start": 1031, "end": 1034, "id": 175, "annotation": null}, {"text": "deposition", "start": 1035, "end": 1045, "id": 176, "annotation": null}, {"text": "process", "start": 1046, "end": 1053, "id": 177, "annotation": null}, {"text": ".", "start": 1054, "end": 1055, "id": 178, "annotation": null}], [{"text": "After", "start": 1056, "end": 1061, "id": 179, "annotation": null}, {"text": "the", "start": 1062, "end": 1065, "id": 180, "annotation": null}, {"text": "second", "start": 1066, "end": 1072, "id": 181, "annotation": null}, {"text": "step", "start": 1073, "end": 1077, "id": 182, "annotation": null}, {"text": ",", "start": 1078, "end": 1079, "id": 183, "annotation": null}, {"text": "siliconizing", "start": 1080, "end": 1092, "id": 184, "annotation": null}, {"text": ",", "start": 1093, "end": 1094, "id": 185, "annotation": null}, {"text": "the", "start": 1095, "end": 1098, "id": 186, "annotation": null}, {"text": "pure", "start": 1099, "end": 1103, "id": 187, "annotation": null}, {"text": "CrSi2", "start": 1104, "end": 1109, "id": 188, "annotation": null}, {"text": "phase", "start": 1110, "end": 1115, "id": 189, "annotation": null}, {"text": "was", "start": 1116, "end": 1119, "id": 190, "annotation": null}, {"text": "formed", "start": 1120, "end": 1126, "id": 191, "annotation": null}, {"text": "as", "start": 1127, "end": 1129, "id": 192, "annotation": null}, {"text": "a", "start": 1130, "end": 1131, "id": 193, "annotation": null}, {"text": "result", "start": 1132, "end": 1138, "id": 194, "annotation": null}, {"text": "of", "start": 1139, "end": 1141, "id": 195, "annotation": null}, {"text": "Si", "start": 1142, "end": 1144, "id": 196, "annotation": null}, {"text": "enrichment", "start": 1145, "end": 1155, "id": 197, "annotation": null}, {"text": "of", "start": 1156, "end": 1158, "id": 198, "annotation": null}, {"text": "the", "start": 1159, "end": 1162, "id": 199, "annotation": null}, {"text": "initial", "start": 1163, "end": 1170, "id": 200, "annotation": null}, {"text": "Cr", "start": 1171, "end": 1173, "id": 201, "annotation": null}, {"text": "\u2013", "start": 1174, "end": 1175, "id": 202, "annotation": null}, {"text": "Si", "start": 1176, "end": 1178, "id": 203, "annotation": null}, {"text": "phases", "start": 1179, "end": 1185, "id": 204, "annotation": null}, {"text": ".", "start": 1186, "end": 1187, "id": 205, "annotation": null}], [{"text": "It", "start": 1188, "end": 1190, "id": 206, "annotation": null}, {"text": "was", "start": 1191, "end": 1194, "id": 207, "annotation": null}, {"text": "also", "start": 1195, "end": 1199, "id": 208, "annotation": null}, {"text": "revealed", "start": 1200, "end": 1208, "id": 209, "annotation": null}, {"text": "that", "start": 1209, "end": 1213, "id": 210, "annotation": null}, {"text": "this", "start": 1214, "end": 1218, "id": 211, "annotation": null}, {"text": "compound", "start": 1219, "end": 1227, "id": 212, "annotation": null}, {"text": "has", "start": 1228, "end": 1231, "id": 213, "annotation": null}, {"text": "thermoelectric", "start": 1232, "end": 1246, "id": 214, "annotation": null}, {"text": "properties", "start": 1247, "end": 1257, "id": 215, "annotation": null}, {"text": "similar", "start": 1258, "end": 1265, "id": 216, "annotation": null}, {"text": "to", "start": 1266, "end": 1268, "id": 217, "annotation": null}, {"text": "those", "start": 1269, "end": 1274, "id": 218, "annotation": null}, {"text": "reported", "start": 1275, "end": 1283, "id": 219, "annotation": null}, {"text": "elsewhere", "start": 1284, "end": 1293, "id": 220, "annotation": null}, {"text": ".", "start": 1294, "end": 1295, "id": 221, "annotation": null}], [{"text": "Moreover", "start": 1296, "end": 1304, "id": 222, "annotation": null}, {"text": ",", "start": 1305, "end": 1306, "id": 223, "annotation": null}, {"text": "it", "start": 1307, "end": 1309, "id": 224, "annotation": null}, {"text": "was", "start": 1310, "end": 1313, "id": 225, "annotation": null}, {"text": "found", "start": 1314, "end": 1319, "id": 226, "annotation": null}, {"text": "to", "start": 1320, "end": 1322, "id": 227, "annotation": null}, {"text": "have", "start": 1323, "end": 1327, "id": 228, "annotation": null}, {"text": "exceptional", "start": 1328, "end": 1339, "id": 229, "annotation": null}, {"text": "chemical", "start": 1340, "end": 1348, "id": 230, "annotation": null}, {"text": "stability", "start": 1349, "end": 1358, "id": 231, "annotation": null}, {"text": "even", "start": 1359, "end": 1363, "id": 232, "annotation": null}, {"text": "at", "start": 1364, "end": 1366, "id": 233, "annotation": null}, {"text": "temperatures", "start": 1367, "end": 1379, "id": 234, "annotation": null}, {"text": "up", "start": 1380, "end": 1382, "id": 235, "annotation": null}, {"text": "to", "start": 1383, "end": 1385, "id": 236, "annotation": null}, {"text": "1273", "start": 1386, "end": 1390, "id": 237, "annotation": null}, {"text": "K.", "start": 1391, "end": 1393, "id": 239, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Three-dimensional ordered opal-matrix composites filled with europium-doped silica sols have been produced using methods of colloid chemistry. According to elemental analysis data, the Eu concentration in the nanocomposites was \u223c30 ppm. A uniform europium distribution over the tetrahedral and octahedral pores of the 3D opal matrix was ensured by repeatedly filling the opal pores with silica sols doped with europium salts or europium oxide. Varying high-temperature annealing conditions, one can control the microstructure of 3D ordered nanocomposites, producing opaline and transparent photonic crystals. The microstructure of opal photonic crystals has the form of an ordered fcc lattice of amorphous silica spheres, whose tetrahedral and octahedral pores are filled with mesoporous europium-doped glass. Partial sintering of the silica spheres and mesoporous glass in transparent photonic crystals results in a periodic arrangement of quantum dots enriched in Eu-doped silica.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Three", "start": 0, "end": 5, "annotation": null}, {"text": "-", "start": 5, "end": 6, "annotation": null}, {"text": "dimensional", "start": 6, "end": 17, "annotation": null}, {"text": "ordered", "start": 18, "end": 25, "annotation": null}, {"text": "opal", "start": 26, "end": 30, "annotation": null}, {"text": "-", "start": 30, "end": 31, "annotation": null}, {"text": "matrix", "start": 31, "end": 37, "annotation": null}, {"text": "composites", "start": 38, "end": 48, "annotation": null}, {"text": "filled", "start": 49, "end": 55, "annotation": null}, {"text": "with", "start": 56, "end": 60, "annotation": null}, {"text": "europium", "start": 61, "end": 69, "annotation": "DOPANT"}, {"text": "-", "start": 69, "end": 70, "annotation": null}, {"text": "doped", "start": 70, "end": 75, "annotation": null}, {"text": "silica", "start": 76, "end": 82, "annotation": "BASEMAT"}, {"text": "sols", "start": 83, "end": 87, "annotation": "BASEMAT"}, {"text": "have", "start": 88, "end": 92, "annotation": null}, {"text": "been", "start": 93, "end": 97, "annotation": null}, {"text": "produced", "start": 98, "end": 106, "annotation": null}, {"text": "using", "start": 107, "end": 112, "annotation": null}, {"text": "methods", "start": 113, "end": 120, "annotation": null}, {"text": "of", "start": 121, "end": 123, "annotation": null}, {"text": "colloid", "start": 124, "end": 131, "annotation": null}, {"text": "chemistry", "start": 132, "end": 141, "annotation": null}, {"text": ".", "start": 141, "end": 142, "annotation": null}], [{"text": "According", "start": 143, "end": 152, "annotation": null}, {"text": "to", "start": 153, "end": 155, "annotation": null}, {"text": "elemental", "start": 156, "end": 165, "annotation": null}, {"text": "analysis", "start": 166, "end": 174, "annotation": null}, {"text": "data", "start": 175, "end": 179, "annotation": null}, {"text": ",", "start": 179, "end": 180, "annotation": null}, {"text": "the", "start": 181, "end": 184, "annotation": null}, {"text": "Eu", "start": 185, "end": 187, "annotation": "DOPANT"}, {"text": "concentration", "start": 188, "end": 201, "annotation": null}, {"text": "in", "start": 202, "end": 204, "annotation": null}, {"text": "the", "start": 205, "end": 208, "annotation": null}, {"text": "nanocomposites", "start": 209, "end": 223, "annotation": null}, {"text": "was", "start": 224, "end": 227, "annotation": null}, {"text": "\u223c", "start": 228, "end": 229, "annotation": "DOPMODQ"}, {"text": "30", "start": 229, "end": 231, "annotation": "DOPMODQ"}, {"text": "ppm", "start": 232, "end": 235, "annotation": "DOPMODQ"}, {"text": ".", "start": 235, "end": 236, "annotation": null}], [{"text": "A", "start": 237, "end": 238, "annotation": null}, {"text": "uniform", "start": 239, "end": 246, "annotation": null}, {"text": "europium", "start": 247, "end": 255, "annotation": null}, {"text": "distribution", "start": 256, "end": 268, "annotation": null}, {"text": "over", "start": 269, "end": 273, "annotation": null}, {"text": "the", "start": 274, "end": 277, "annotation": null}, {"text": "tetrahedral", "start": 278, "end": 289, "annotation": null}, {"text": "and", "start": 290, "end": 293, "annotation": null}, {"text": "octahedral", "start": 294, "end": 304, "annotation": null}, {"text": "pores", "start": 305, "end": 310, "annotation": null}, {"text": "of", "start": 311, "end": 313, "annotation": null}, {"text": "the", "start": 314, "end": 317, "annotation": null}, {"text": "3D", "start": 318, "end": 320, "annotation": null}, {"text": "opal", "start": 321, "end": 325, "annotation": null}, {"text": "matrix", "start": 326, "end": 332, "annotation": null}, {"text": "was", "start": 333, "end": 336, "annotation": null}, {"text": "ensured", "start": 337, "end": 344, "annotation": null}, {"text": "by", "start": 345, "end": 347, "annotation": null}, {"text": "repeatedly", "start": 348, "end": 358, "annotation": null}, {"text": "filling", "start": 359, "end": 366, "annotation": null}, {"text": "the", "start": 367, "end": 370, "annotation": null}, {"text": "opal", "start": 371, "end": 375, "annotation": null}, {"text": "pores", "start": 376, "end": 381, "annotation": null}, {"text": "with", "start": 382, "end": 386, "annotation": null}, {"text": "silica", "start": 387, "end": 393, "annotation": "BASEMAT"}, {"text": "sols", "start": 394, "end": 398, "annotation": "BASEMAT"}, {"text": "doped", "start": 399, "end": 404, "annotation": null}, {"text": "with", "start": 405, "end": 409, "annotation": null}, {"text": "europium", "start": 410, "end": 418, "annotation": "DOPANT"}, {"text": "salts", "start": 419, "end": 424, "annotation": null}, {"text": "or", "start": 425, "end": 427, "annotation": null}, {"text": "europium", "start": 428, "end": 436, "annotation": "DOPANT"}, {"text": "oxide", "start": 437, "end": 442, "annotation": null}, {"text": ".", "start": 442, "end": 443, "annotation": null}], [{"text": "Varying", "start": 444, "end": 451, "annotation": null}, {"text": "high", "start": 452, "end": 456, "annotation": null}, {"text": "-", "start": 456, "end": 457, "annotation": null}, {"text": "temperature", "start": 457, "end": 468, "annotation": null}, {"text": "annealing", "start": 469, "end": 478, "annotation": null}, {"text": "conditions", "start": 479, "end": 489, "annotation": null}, {"text": ",", "start": 489, "end": 490, "annotation": null}, {"text": "one", "start": 491, "end": 494, "annotation": null}, {"text": "can", "start": 495, "end": 498, "annotation": null}, {"text": "control", "start": 499, "end": 506, "annotation": null}, {"text": "the", "start": 507, "end": 510, "annotation": null}, {"text": "microstructure", "start": 511, "end": 525, "annotation": null}, {"text": "of", "start": 526, "end": 528, "annotation": null}, {"text": "3D", "start": 529, "end": 531, "annotation": null}, {"text": "ordered", "start": 532, "end": 539, "annotation": null}, {"text": "nanocomposites", "start": 540, "end": 554, "annotation": null}, {"text": ",", "start": 554, "end": 555, "annotation": null}, {"text": "producing", "start": 556, "end": 565, "annotation": null}, {"text": "opaline", "start": 566, "end": 573, "annotation": null}, {"text": "and", "start": 574, "end": 577, "annotation": null}, {"text": "transparent", "start": 578, "end": 589, "annotation": null}, {"text": "photonic", "start": 590, "end": 598, "annotation": null}, {"text": "crystals", "start": 599, "end": 607, "annotation": null}, {"text": ".", "start": 607, "end": 608, "annotation": null}], [{"text": "The", "start": 609, "end": 612, "annotation": null}, {"text": "microstructure", "start": 613, "end": 627, "annotation": null}, {"text": "of", "start": 628, "end": 630, "annotation": null}, {"text": "opal", "start": 631, "end": 635, "annotation": null}, {"text": "photonic", "start": 636, "end": 644, "annotation": null}, {"text": "crystals", "start": 645, "end": 653, "annotation": null}, {"text": "has", "start": 654, "end": 657, "annotation": null}, {"text": "the", "start": 658, "end": 661, "annotation": null}, {"text": "form", "start": 662, "end": 666, "annotation": null}, {"text": "of", "start": 667, "end": 669, "annotation": null}, {"text": "an", "start": 670, "end": 672, "annotation": null}, {"text": "ordered", "start": 673, "end": 680, "annotation": null}, {"text": "fcc", "start": 681, "end": 684, "annotation": null}, {"text": "lattice", "start": 685, "end": 692, "annotation": null}, {"text": "of", "start": 693, "end": 695, "annotation": null}, {"text": "amorphous", "start": 696, "end": 705, "annotation": null}, {"text": "silica", "start": 706, "end": 712, "annotation": null}, {"text": "spheres", "start": 713, "end": 720, "annotation": null}, {"text": ",", "start": 720, "end": 721, "annotation": null}, {"text": "whose", "start": 722, "end": 727, "annotation": null}, {"text": "tetrahedral", "start": 728, "end": 739, "annotation": null}, {"text": "and", "start": 740, "end": 743, "annotation": null}, {"text": "octahedral", "start": 744, "end": 754, "annotation": null}, {"text": "pores", "start": 755, "end": 760, "annotation": null}, {"text": "are", "start": 761, "end": 764, "annotation": null}, {"text": "filled", "start": 765, "end": 771, "annotation": null}, {"text": "with", "start": 772, "end": 776, "annotation": null}, {"text": "mesoporous", "start": 777, "end": 787, "annotation": null}, {"text": "europium", "start": 788, "end": 796, "annotation": "DOPANT"}, {"text": "-", "start": 796, "end": 797, "annotation": null}, {"text": "doped", "start": 797, "end": 802, "annotation": null}, {"text": "glass", "start": 803, "end": 808, "annotation": "BASEMAT"}, {"text": ".", "start": 808, "end": 809, "annotation": null}], [{"text": "Partial", "start": 810, "end": 817, "annotation": null}, {"text": "sintering", "start": 818, "end": 827, "annotation": null}, {"text": "of", "start": 828, "end": 830, "annotation": null}, {"text": "the", "start": 831, "end": 834, "annotation": null}, {"text": "silica", "start": 835, "end": 841, "annotation": null}, {"text": "spheres", "start": 842, "end": 849, "annotation": null}, {"text": "and", "start": 850, "end": 853, "annotation": null}, {"text": "mesoporous", "start": 854, "end": 864, "annotation": null}, {"text": "glass", "start": 865, "end": 870, "annotation": null}, {"text": "in", "start": 871, "end": 873, "annotation": null}, {"text": "transparent", "start": 874, "end": 885, "annotation": null}, {"text": "photonic", "start": 886, "end": 894, "annotation": null}, {"text": "crystals", "start": 895, "end": 903, "annotation": null}, {"text": "results", "start": 904, "end": 911, "annotation": null}, {"text": "in", "start": 912, "end": 914, "annotation": null}, {"text": "a", "start": 915, "end": 916, "annotation": null}, {"text": "periodic", "start": 917, "end": 925, "annotation": null}, {"text": "arrangement", "start": 926, "end": 937, "annotation": null}, {"text": "of", "start": 938, "end": 940, "annotation": null}, {"text": "quantum", "start": 941, "end": 948, "annotation": null}, {"text": "dots", "start": 949, "end": 953, "annotation": null}, {"text": "enriched", "start": 954, "end": 962, "annotation": null}, {"text": "in", "start": 963, "end": 965, "annotation": null}, {"text": "Eu", "start": 966, "end": 968, "annotation": "DOPANT"}, {"text": "-", "start": 968, "end": 969, "annotation": null}, {"text": "doped", "start": 969, "end": 974, "annotation": null}, {"text": "silica", "start": 975, "end": 981, "annotation": "BASEMAT"}, {"text": ".", "start": 981, "end": 982, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Undoped and manganese doped ZnO (ZnO:Mn) films were prepared by sol gel method using spin coating technique. The effect of Mn incorporation on the structural and optical properties of the ZnO film has been investigated. The crystalline structure and orientation of the films have been investigated by using their X-ray diffraction spectra. The films exhibit a polycrystalline structure. Mn incorporation led to substantial changes in the structural characteristics of the ZnO film. The scanning electron microscopy (SEM) images of the films showed that the surface morphology of the ZnO film was affected by the Mn incorporation. The transparency of the ZnO film decreased with the Mn incorporation. The optical band gap and Urbach energy values of the ZnO and ZnO:Mn films were found to be 3.22, 3.19eV and 0.10, 0.23eV, respectively. The optical constants of these films, such as refractive index, extinction coefficient and optical dielectric constants were determined using transmittance and reflectance spectra. The refractive index dispersion curve of the films obeys the single oscillator model with dispersion parameters. The oscillator energy, Eo, and dispersion energy, Ed, of the films were determined 5.30 and 16.26eV for ZnO film and 5.80 and 12.14eV for ZnO:Mn film, respectively.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Undoped", "start": 0, "end": 7, "annotation": null}, {"text": "and", "start": 8, "end": 11, "annotation": null}, {"text": "manganese", "start": 12, "end": 21, "annotation": "DOPANT"}, {"text": "doped", "start": 22, "end": 27, "annotation": null}, {"text": "ZnO", "start": 28, "end": 31, "annotation": "BASEMAT"}, {"text": "(", "start": 32, "end": 33, "annotation": null}, {"text": "ZnO", "start": 33, "end": 36, "annotation": "BASEMAT"}, {"text": ":", "start": 36, "end": 37, "annotation": null}, {"text": "Mn", "start": 37, "end": 39, "annotation": "DOPANT"}, {"text": ")", "start": 39, "end": 40, "annotation": null}, {"text": "films", "start": 41, "end": 46, "annotation": null}, {"text": "were", "start": 47, "end": 51, "annotation": null}, {"text": "prepared", "start": 52, "end": 60, "annotation": null}, {"text": "by", "start": 61, "end": 63, "annotation": null}, {"text": "sol", "start": 64, "end": 67, "annotation": null}, {"text": "gel", "start": 68, "end": 71, "annotation": null}, {"text": "method", "start": 72, "end": 78, "annotation": null}, {"text": "using", "start": 79, "end": 84, "annotation": null}, {"text": "spin", "start": 85, "end": 89, "annotation": null}, {"text": "coating", "start": 90, "end": 97, "annotation": null}, {"text": "technique", "start": 98, "end": 107, "annotation": null}, {"text": ".", "start": 107, "end": 108, "annotation": null}], [{"text": "The", "start": 109, "end": 112, "annotation": null}, {"text": "effect", "start": 113, "end": 119, "annotation": null}, {"text": "of", "start": 120, "end": 122, "annotation": null}, {"text": "Mn", "start": 123, "end": 125, "annotation": "DOPANT"}, {"text": "incorporation", "start": 126, "end": 139, "annotation": null}, {"text": "on", "start": 140, "end": 142, "annotation": null}, {"text": "the", "start": 143, "end": 146, "annotation": null}, {"text": "structural", "start": 147, "end": 157, "annotation": null}, {"text": "and", "start": 158, "end": 161, "annotation": null}, {"text": "optical", "start": 162, "end": 169, "annotation": null}, {"text": "properties", "start": 170, "end": 180, "annotation": null}, {"text": "of", "start": 181, "end": 183, "annotation": null}, {"text": "the", "start": 184, "end": 187, "annotation": null}, {"text": "ZnO", "start": 188, "end": 191, "annotation": "BASEMAT"}, {"text": "film", "start": 192, "end": 196, "annotation": null}, {"text": "has", "start": 197, "end": 200, "annotation": null}, {"text": "been", "start": 201, "end": 205, "annotation": null}, {"text": "investigated", "start": 206, "end": 218, "annotation": null}, {"text": ".", "start": 218, "end": 219, "annotation": null}], [{"text": "The", "start": 220, "end": 223, "annotation": null}, {"text": "crystalline", "start": 224, "end": 235, "annotation": null}, {"text": "structure", "start": 236, "end": 245, "annotation": null}, {"text": "and", "start": 246, "end": 249, "annotation": null}, {"text": "orientation", "start": 250, "end": 261, "annotation": null}, {"text": "of", "start": 262, "end": 264, "annotation": null}, {"text": "the", "start": 265, "end": 268, "annotation": null}, {"text": "films", "start": 269, "end": 274, "annotation": null}, {"text": "have", "start": 275, "end": 279, "annotation": null}, {"text": "been", "start": 280, "end": 284, "annotation": null}, {"text": "investigated", "start": 285, "end": 297, "annotation": null}, {"text": "by", "start": 298, "end": 300, "annotation": null}, {"text": "using", "start": 301, "end": 306, "annotation": null}, {"text": "their", "start": 307, "end": 312, "annotation": null}, {"text": "X-ray", "start": 313, "end": 318, "annotation": null}, {"text": "diffraction", "start": 319, "end": 330, "annotation": null}, {"text": "spectra", "start": 331, "end": 338, "annotation": null}, {"text": ".", "start": 338, "end": 339, "annotation": null}], [{"text": "The", "start": 340, "end": 343, "annotation": null}, {"text": "films", "start": 344, "end": 349, "annotation": null}, {"text": "exhibit", "start": 350, "end": 357, "annotation": null}, {"text": "a", "start": 358, "end": 359, "annotation": null}, {"text": "polycrystalline", "start": 360, "end": 375, "annotation": null}, {"text": "structure", "start": 376, "end": 385, "annotation": null}, {"text": ".", "start": 385, "end": 386, "annotation": null}], [{"text": "Mn", "start": 387, "end": 389, "annotation": null}, {"text": "incorporation", "start": 390, "end": 403, "annotation": null}, {"text": "led", "start": 404, "end": 407, "annotation": null}, {"text": "to", "start": 408, "end": 410, "annotation": null}, {"text": "substantial", "start": 411, "end": 422, "annotation": null}, {"text": "changes", "start": 423, "end": 430, "annotation": null}, {"text": "in", "start": 431, "end": 433, "annotation": null}, {"text": "the", "start": 434, "end": 437, "annotation": null}, {"text": "structural", "start": 438, "end": 448, "annotation": null}, {"text": "characteristics", "start": 449, "end": 464, "annotation": null}, {"text": "of", "start": 465, "end": 467, "annotation": null}, {"text": "the", "start": 468, "end": 471, "annotation": null}, {"text": "ZnO", "start": 472, "end": 475, "annotation": null}, {"text": "film", "start": 476, "end": 480, "annotation": null}, {"text": ".", "start": 480, "end": 481, "annotation": null}], [{"text": "The", "start": 482, "end": 485, "annotation": null}, {"text": "scanning", "start": 486, "end": 494, "annotation": null}, {"text": "electron", "start": 495, "end": 503, "annotation": null}, {"text": "microscopy", "start": 504, "end": 514, "annotation": null}, {"text": "(", "start": 515, "end": 516, "annotation": null}, {"text": "SEM", "start": 516, "end": 519, "annotation": null}, {"text": ")", "start": 519, "end": 520, "annotation": null}, {"text": "images", "start": 521, "end": 527, "annotation": null}, {"text": "of", "start": 528, "end": 530, "annotation": null}, {"text": "the", "start": 531, "end": 534, "annotation": null}, {"text": "films", "start": 535, "end": 540, "annotation": null}, {"text": "showed", "start": 541, "end": 547, "annotation": null}, {"text": "that", "start": 548, "end": 552, "annotation": null}, {"text": "the", "start": 553, "end": 556, "annotation": null}, {"text": "surface", "start": 557, "end": 564, "annotation": null}, {"text": "morphology", "start": 565, "end": 575, "annotation": null}, {"text": "of", "start": 576, "end": 578, "annotation": null}, {"text": "the", "start": 579, "end": 582, "annotation": null}, {"text": "ZnO", "start": 583, "end": 586, "annotation": null}, {"text": "film", "start": 587, "end": 591, "annotation": null}, {"text": "was", "start": 592, "end": 595, "annotation": null}, {"text": "affected", "start": 596, "end": 604, "annotation": null}, {"text": "by", "start": 605, "end": 607, "annotation": null}, {"text": "the", "start": 608, "end": 611, "annotation": null}, {"text": "Mn", "start": 612, "end": 614, "annotation": null}, {"text": "incorporation", "start": 615, "end": 628, "annotation": null}, {"text": ".", "start": 628, "end": 629, "annotation": null}], [{"text": "The", "start": 630, "end": 633, "annotation": null}, {"text": "transparency", "start": 634, "end": 646, "annotation": null}, {"text": "of", "start": 647, "end": 649, "annotation": null}, {"text": "the", "start": 650, "end": 653, "annotation": null}, {"text": "ZnO", "start": 654, "end": 657, "annotation": "BASEMAT"}, {"text": "film", "start": 658, "end": 662, "annotation": null}, {"text": "decreased", "start": 663, "end": 672, "annotation": null}, {"text": "with", "start": 673, "end": 677, "annotation": null}, {"text": "the", "start": 678, "end": 681, "annotation": null}, {"text": "Mn", "start": 682, "end": 684, "annotation": "DOPANT"}, {"text": "incorporation", "start": 685, "end": 698, "annotation": null}, {"text": ".", "start": 698, "end": 699, "annotation": null}], [{"text": "The", "start": 700, "end": 703, "annotation": null}, {"text": "optical", "start": 704, "end": 711, "annotation": null}, {"text": "band", "start": 712, "end": 716, "annotation": null}, {"text": "gap", "start": 717, "end": 720, "annotation": null}, {"text": "and", "start": 721, "end": 724, "annotation": null}, {"text": "Urbach", "start": 725, "end": 731, "annotation": null}, {"text": "energy", "start": 732, "end": 738, "annotation": null}, {"text": "values", "start": 739, "end": 745, "annotation": null}, {"text": "of", "start": 746, "end": 748, "annotation": null}, {"text": "the", "start": 749, "end": 752, "annotation": null}, {"text": "ZnO", "start": 753, "end": 756, "annotation": null}, {"text": "and", "start": 757, "end": 760, "annotation": null}, {"text": "ZnO", "start": 761, "end": 764, "annotation": "BASEMAT"}, {"text": ":", "start": 764, "end": 765, "annotation": null}, {"text": "Mn", "start": 765, "end": 767, "annotation": "DOPANT"}, {"text": "films", "start": 768, "end": 773, "annotation": null}, {"text": "were", "start": 774, "end": 778, "annotation": null}, {"text": "found", "start": 779, "end": 784, "annotation": null}, {"text": "to", "start": 785, "end": 787, "annotation": null}, {"text": "be", "start": 788, "end": 790, "annotation": null}, {"text": "3.22", "start": 791, "end": 795, "annotation": null}, {"text": ",", "start": 795, "end": 796, "annotation": null}, {"text": "3.19", "start": 797, "end": 801, "annotation": null}, {"text": "eV", "start": 801, "end": 803, "annotation": null}, {"text": "and", "start": 804, "end": 807, "annotation": null}, {"text": "0.10", "start": 808, "end": 812, "annotation": null}, {"text": ",", "start": 812, "end": 813, "annotation": null}, {"text": "0.23", "start": 814, "end": 818, "annotation": null}, {"text": "eV", "start": 818, "end": 820, "annotation": null}, {"text": ",", "start": 820, "end": 821, "annotation": null}, {"text": "respectively", "start": 822, "end": 834, "annotation": null}, {"text": ".", "start": 834, "end": 835, "annotation": null}], [{"text": "The", "start": 836, "end": 839, "annotation": null}, {"text": "optical", "start": 840, "end": 847, "annotation": null}, {"text": "constants", "start": 848, "end": 857, "annotation": null}, {"text": "of", "start": 858, "end": 860, "annotation": null}, {"text": "these", "start": 861, "end": 866, "annotation": null}, {"text": "films", "start": 867, "end": 872, "annotation": null}, {"text": ",", "start": 872, "end": 873, "annotation": null}, {"text": "such", "start": 874, "end": 878, "annotation": null}, {"text": "as", "start": 879, "end": 881, "annotation": null}, {"text": "refractive", "start": 882, "end": 892, "annotation": null}, {"text": "index", "start": 893, "end": 898, "annotation": null}, {"text": ",", "start": 898, "end": 899, "annotation": null}, {"text": "extinction", "start": 900, "end": 910, "annotation": null}, {"text": "coefficient", "start": 911, "end": 922, "annotation": null}, {"text": "and", "start": 923, "end": 926, "annotation": null}, {"text": "optical", "start": 927, "end": 934, "annotation": null}, {"text": "dielectric", "start": 935, "end": 945, "annotation": null}, {"text": "constants", "start": 946, "end": 955, "annotation": null}, {"text": "were", "start": 956, "end": 960, "annotation": null}, {"text": "determined", "start": 961, "end": 971, "annotation": null}, {"text": "using", "start": 972, "end": 977, "annotation": null}, {"text": "transmittance", "start": 978, "end": 991, "annotation": null}, {"text": "and", "start": 992, "end": 995, "annotation": null}, {"text": "reflectance", "start": 996, "end": 1007, "annotation": null}, {"text": "spectra", "start": 1008, "end": 1015, "annotation": null}, {"text": ".", "start": 1015, "end": 1016, "annotation": null}], [{"text": "The", "start": 1017, "end": 1020, "annotation": null}, {"text": "refractive", "start": 1021, "end": 1031, "annotation": null}, {"text": "index", "start": 1032, "end": 1037, "annotation": null}, {"text": "dispersion", "start": 1038, "end": 1048, "annotation": null}, {"text": "curve", "start": 1049, "end": 1054, "annotation": null}, {"text": "of", "start": 1055, "end": 1057, "annotation": null}, {"text": "the", "start": 1058, "end": 1061, "annotation": null}, {"text": "films", "start": 1062, "end": 1067, "annotation": null}, {"text": "obeys", "start": 1068, "end": 1073, "annotation": null}, {"text": "the", "start": 1074, "end": 1077, "annotation": null}, {"text": "single", "start": 1078, "end": 1084, "annotation": null}, {"text": "oscillator", "start": 1085, "end": 1095, "annotation": null}, {"text": "model", "start": 1096, "end": 1101, "annotation": null}, {"text": "with", "start": 1102, "end": 1106, "annotation": null}, {"text": "dispersion", "start": 1107, "end": 1117, "annotation": null}, {"text": "parameters", "start": 1118, "end": 1128, "annotation": null}, {"text": ".", "start": 1128, "end": 1129, "annotation": null}], [{"text": "The", "start": 1130, "end": 1133, "annotation": null}, {"text": "oscillator", "start": 1134, "end": 1144, "annotation": null}, {"text": "energy", "start": 1145, "end": 1151, "annotation": null}, {"text": ",", "start": 1151, "end": 1152, "annotation": null}, {"text": "Eo", "start": 1153, "end": 1155, "annotation": null}, {"text": ",", "start": 1155, "end": 1156, "annotation": null}, {"text": "and", "start": 1157, "end": 1160, "annotation": null}, {"text": "dispersion", "start": 1161, "end": 1171, "annotation": null}, {"text": "energy", "start": 1172, "end": 1178, "annotation": null}, {"text": ",", "start": 1178, "end": 1179, "annotation": null}, {"text": "Ed", "start": 1180, "end": 1182, "annotation": null}, {"text": ",", "start": 1182, "end": 1183, "annotation": null}, {"text": "of", "start": 1184, "end": 1186, "annotation": null}, {"text": "the", "start": 1187, "end": 1190, "annotation": null}, {"text": "films", "start": 1191, "end": 1196, "annotation": null}, {"text": "were", "start": 1197, "end": 1201, "annotation": null}, {"text": "determined", "start": 1202, "end": 1212, "annotation": null}, {"text": "5.30", "start": 1213, "end": 1217, "annotation": null}, {"text": "and", "start": 1218, "end": 1221, "annotation": null}, {"text": "16.26", "start": 1222, "end": 1227, "annotation": null}, {"text": "eV", "start": 1227, "end": 1229, "annotation": null}, {"text": "for", "start": 1230, "end": 1233, "annotation": null}, {"text": "ZnO", "start": 1234, "end": 1237, "annotation": null}, {"text": "film", "start": 1238, "end": 1242, "annotation": null}, {"text": "and", "start": 1243, "end": 1246, "annotation": null}, {"text": "5.80", "start": 1247, "end": 1251, "annotation": null}, {"text": "and", "start": 1252, "end": 1255, "annotation": null}, {"text": "12.14", "start": 1256, "end": 1261, "annotation": null}, {"text": "eV", "start": 1261, "end": 1263, "annotation": null}, {"text": "for", "start": 1264, "end": 1267, "annotation": null}, {"text": "ZnO", "start": 1268, "end": 1271, "annotation": "BASEMAT"}, {"text": ":", "start": 1271, "end": 1272, "annotation": null}, {"text": "Mn", "start": 1272, "end": 1274, "annotation": "DOPANT"}, {"text": "film", "start": 1275, "end": 1279, "annotation": null}, {"text": ",", "start": 1279, "end": 1280, "annotation": null}, {"text": "respectively", "start": 1281, "end": 1293, "annotation": null}, {"text": ".", "start": 1293, "end": 1294, "annotation": null}]]} -{"remark": "doping_annt3", "text": "Copyright \u00a9 2015 John Wiley & Sons, Ltd. Ca 3 SiO 4 Cl 2 co-doped with Ce 3+ ,Eu 2+ was prepared by high temperature reaction. The structure, luminescent properties and the energy transfer process of Ca 3 SiO 4 Cl 2 : Ce 3+ ,Eu 2+ were investigated. Eu 2+ ions can give enhanced green emission through Ce 3+ \u2192 Eu 2+ energy transfer in these phosphors. The green phosphor Ca 2.9775 SiO 4 Cl 2 :0.0045Ce 3+ ,0.018Eu 2+ showed intense green emission with broader excitation in the near-ultraviolet light range. A green light-emitting diode (LED) based on this phosphor was made, and bright green light from this green LED could be observed by the naked eye under 20 mA current excitation. Hence it is considered to be a good candidate for the green component of a three-band white LED.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 127, "end": 130, "annotation": null}, {"text": "structure", "start": 131, "end": 140, "annotation": null}, {"text": ",", "start": 140, "end": 141, "annotation": null}, {"text": "luminescent", "start": 142, "end": 153, "annotation": null}, {"text": "properties", "start": 154, "end": 164, "annotation": null}, {"text": "and", "start": 165, "end": 168, "annotation": null}, {"text": "the", "start": 169, "end": 172, "annotation": null}, {"text": "energy", "start": 173, "end": 179, "annotation": null}, {"text": "transfer", "start": 180, "end": 188, "annotation": null}, {"text": "process", "start": 189, "end": 196, "annotation": null}, {"text": "of", "start": 197, "end": 199, "annotation": null}, {"text": "Ca", "start": 200, "end": 202, "annotation": "BASEMAT"}, {"text": "3", "start": 203, "end": 204, "annotation": "BASEMAT"}, {"text": "SiO", "start": 205, "end": 208, "annotation": "BASEMAT"}, {"text": "4", "start": 209, "end": 210, "annotation": "BASEMAT"}, {"text": "Cl", "start": 211, "end": 213, "annotation": "BASEMAT"}, {"text": "2", "start": 214, "end": 215, "annotation": "BASEMAT"}, {"text": ":", "start": 216, "end": 217, "annotation": null}, {"text": "Ce", "start": 218, "end": 220, "annotation": "DOPANT"}, {"text": "3+", "start": 221, "end": 223, "annotation": "DOPANT"}, {"text": ",Eu", "start": 224, "end": 227, "annotation": "DOPANT"}, {"text": "2+", "start": 228, "end": 230, "annotation": "DOPANT"}, {"text": "were", "start": 231, "end": 235, "annotation": null}, {"text": "investigated", "start": 236, "end": 248, "annotation": null}, {"text": ".", "start": 248, "end": 249, "annotation": null}], [{"text": "Eu", "start": 250, "end": 252, "annotation": null}, {"text": "2+", "start": 253, "end": 255, "annotation": null}, {"text": "ions", "start": 256, "end": 260, "annotation": null}, {"text": "can", "start": 261, "end": 264, "annotation": null}, {"text": "give", "start": 265, "end": 269, "annotation": null}, {"text": "enhanced", "start": 270, "end": 278, "annotation": null}, {"text": "green", "start": 279, "end": 284, "annotation": null}, {"text": "emission", "start": 285, "end": 293, "annotation": null}, {"text": "through", "start": 294, "end": 301, "annotation": null}, {"text": "Ce", "start": 302, "end": 304, "annotation": null}, {"text": "3+", "start": 305, "end": 307, "annotation": null}, {"text": "\u2192", "start": 308, "end": 309, "annotation": null}, {"text": "Eu", "start": 310, "end": 312, "annotation": null}, {"text": "2+", "start": 313, "end": 315, "annotation": null}, {"text": "energy", "start": 316, "end": 322, "annotation": null}, {"text": "transfer", "start": 323, "end": 331, "annotation": null}, {"text": "in", "start": 332, "end": 334, "annotation": null}, {"text": "these", "start": 335, "end": 340, "annotation": null}, {"text": "phosphors", "start": 341, "end": 350, "annotation": null}, {"text": ".", "start": 350, "end": 351, "annotation": null}], [{"text": "The", "start": 352, "end": 355, "annotation": null}, {"text": "green", "start": 356, "end": 361, "annotation": null}, {"text": "phosphor", "start": 362, "end": 370, "annotation": null}, {"text": "Ca", "start": 371, "end": 373, "annotation": "BASEMAT"}, {"text": "2.9775", "start": 374, "end": 380, "annotation": "BASEMAT"}, {"text": "SiO", "start": 381, "end": 384, "annotation": "BASEMAT"}, {"text": "4", "start": 385, "end": 386, "annotation": "BASEMAT"}, {"text": "Cl", "start": 387, "end": 389, "annotation": "BASEMAT"}, {"text": "2", "start": 390, "end": 391, "annotation": "BASEMAT"}, {"text": ":", "start": 392, "end": 393, "annotation": null}, {"text": "0.0045Ce", "start": 393, "end": 401, "annotation": "DOPANT"}, {"text": "3+", "start": 402, "end": 404, "annotation": "DOPANT"}, {"text": ",0.018Eu", "start": 405, "end": 413, "annotation": "DOPANT"}, {"text": "2+", "start": 414, "end": 416, "annotation": "DOPANT"}, {"text": "showed", "start": 417, "end": 423, "annotation": null}, {"text": "intense", "start": 424, "end": 431, "annotation": null}, {"text": "green", "start": 432, "end": 437, "annotation": null}, {"text": "emission", "start": 438, "end": 446, "annotation": null}, {"text": "with", "start": 447, "end": 451, "annotation": null}, {"text": "broader", "start": 452, "end": 459, "annotation": null}, {"text": "excitation", "start": 460, "end": 470, "annotation": null}, {"text": "in", "start": 471, "end": 473, "annotation": null}, {"text": "the", "start": 474, "end": 477, "annotation": null}, {"text": "near", "start": 478, "end": 482, "annotation": null}, {"text": "-", "start": 482, "end": 483, "annotation": null}, {"text": "ultraviolet", "start": 483, "end": 494, "annotation": null}, {"text": "light", "start": 495, "end": 500, "annotation": null}, {"text": "range", "start": 501, "end": 506, "annotation": null}, {"text": ".", "start": 506, "end": 507, "annotation": null}], [{"text": "A", "start": 508, "end": 509, "annotation": null}, {"text": "green", "start": 510, "end": 515, "annotation": null}, {"text": "light", "start": 516, "end": 521, "annotation": null}, {"text": "-", "start": 521, "end": 522, "annotation": null}, {"text": "emitting", "start": 522, "end": 530, "annotation": null}, {"text": "diode", "start": 531, "end": 536, "annotation": null}, {"text": "(", "start": 537, "end": 538, "annotation": null}, {"text": "LED", "start": 538, "end": 541, "annotation": null}, {"text": ")", "start": 541, "end": 542, "annotation": null}, {"text": "based", "start": 543, "end": 548, "annotation": null}, {"text": "on", "start": 549, "end": 551, "annotation": null}, {"text": "this", "start": 552, "end": 556, "annotation": null}, {"text": "phosphor", "start": 557, "end": 565, "annotation": null}, {"text": "was", "start": 566, "end": 569, "annotation": null}, {"text": "made", "start": 570, "end": 574, "annotation": null}, {"text": ",", "start": 574, "end": 575, "annotation": null}, {"text": "and", "start": 576, "end": 579, "annotation": null}, {"text": "bright", "start": 580, "end": 586, "annotation": null}, {"text": "green", "start": 587, "end": 592, "annotation": null}, {"text": "light", "start": 593, "end": 598, "annotation": null}, {"text": "from", "start": 599, "end": 603, "annotation": null}, {"text": "this", "start": 604, "end": 608, "annotation": null}, {"text": "green", "start": 609, "end": 614, "annotation": null}, {"text": "LED", "start": 615, "end": 618, "annotation": null}, {"text": "could", "start": 619, "end": 624, "annotation": null}, {"text": "be", "start": 625, "end": 627, "annotation": null}, {"text": "observed", "start": 628, "end": 636, "annotation": null}, {"text": "by", "start": 637, "end": 639, "annotation": null}, {"text": "the", "start": 640, "end": 643, "annotation": null}, {"text": "naked", "start": 644, "end": 649, "annotation": null}, {"text": "eye", "start": 650, "end": 653, "annotation": null}, {"text": "under", "start": 654, "end": 659, "annotation": null}, {"text": "20", "start": 660, "end": 662, "annotation": null}, {"text": "mA", "start": 663, "end": 665, "annotation": null}, {"text": "current", "start": 666, "end": 673, "annotation": null}, {"text": "excitation", "start": 674, "end": 684, "annotation": null}, {"text": ".", "start": 684, "end": 685, "annotation": null}], [{"text": "Hence", "start": 686, "end": 691, "annotation": null}, {"text": "it", "start": 692, "end": 694, "annotation": null}, {"text": "is", "start": 695, "end": 697, "annotation": null}, {"text": "considered", "start": 698, "end": 708, "annotation": null}, {"text": "to", "start": 709, "end": 711, "annotation": null}, {"text": "be", "start": 712, "end": 714, "annotation": null}, {"text": "a", "start": 715, "end": 716, "annotation": null}, {"text": "good", "start": 717, "end": 721, "annotation": null}, {"text": "candidate", "start": 722, "end": 731, "annotation": null}, {"text": "for", "start": 732, "end": 735, "annotation": null}, {"text": "the", "start": 736, "end": 739, "annotation": null}, {"text": "green", "start": 740, "end": 745, "annotation": null}, {"text": "component", "start": 746, "end": 755, "annotation": null}, {"text": "of", "start": 756, "end": 758, "annotation": null}, {"text": "a", "start": 759, "end": 760, "annotation": null}, {"text": "three", "start": 761, "end": 766, "annotation": null}, {"text": "-", "start": 766, "end": 767, "annotation": null}, {"text": "band", "start": 767, "end": 771, "annotation": null}, {"text": "white", "start": 772, "end": 777, "annotation": null}, {"text": "LED", "start": 778, "end": 781, "annotation": null}, {"text": ".", "start": 781, "end": 782, "annotation": null}]]} +{"remark": "doping_annt3", "text": "A two-step hydrothermal process for preparing Ni-doped WO3 nanoplate arrays (NPAs) is developed, and the obtained samples were used as a photoanode to produce a highly active and stable electrocatalyst for photoelectrochemical (PEC) water splitting under visible light. The NPAs are formed as a single-phase solid solution with high purity. X-ray photoelectron spectroscopy measurement verifies the binding energy of W element is negatively shifted due to the substitution of W6+ by Ni2+ in the monoclinic lattice and thereby the formation of Ni-O-W bonds. Notably, the two-step 3 at% Ni-doped WO3 NPAs exhibits the highest PEC performance, compared with pure and one-step Ni-doped WO3 NPAs. At 1.0V (vs Ag/AgCl), the current density of two-step 3 at% Ni-doped WO3 is 0.80mA/cm2, which is about 1.74- and 2.35-fold of that of WO3 (0.46mA/cm2) and one-step 3 at% Ni-doped WO3 (0.34mA/cm2), respectively. The PEC performance of WO3 NPAs can be modified by Ni doping in a two-step hydrothermal process; both the changes of band gap and electrochemically active surface area (ECSA) are playing important roles on improving the activity of the WO3 NPAs photoanode.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "two", "start": 2, "end": 5, "annotation": null}, {"text": "-", "start": 5, "end": 6, "annotation": null}, {"text": "step", "start": 6, "end": 10, "annotation": null}, {"text": "hydrothermal", "start": 11, "end": 23, "annotation": null}, {"text": "process", "start": 24, "end": 31, "annotation": null}, {"text": "for", "start": 32, "end": 35, "annotation": null}, {"text": "preparing", "start": 36, "end": 45, "annotation": null}, {"text": "Ni", "start": 46, "end": 48, "annotation": "DOPANT"}, {"text": "-", "start": 48, "end": 49, "annotation": null}, {"text": "doped", "start": 49, "end": 54, "annotation": null}, {"text": "WO3", "start": 55, "end": 58, "annotation": "BASEMAT"}, {"text": "nanoplate", "start": 59, "end": 68, "annotation": "BASEMAT"}, {"text": "arrays", "start": 69, "end": 75, "annotation": "BASEMAT"}, {"text": "(", "start": 76, "end": 77, "annotation": null}, {"text": "NPAs", "start": 77, "end": 81, "annotation": null}, {"text": ")", "start": 81, "end": 82, "annotation": null}, {"text": "is", "start": 83, "end": 85, "annotation": null}, {"text": "developed", "start": 86, "end": 95, "annotation": null}, {"text": ",", "start": 95, "end": 96, "annotation": null}, {"text": "and", "start": 97, "end": 100, "annotation": null}, {"text": "the", "start": 101, "end": 104, "annotation": null}, {"text": "obtained", "start": 105, "end": 113, "annotation": null}, {"text": "samples", "start": 114, "end": 121, "annotation": null}, {"text": "were", "start": 122, "end": 126, "annotation": null}, {"text": "used", "start": 127, "end": 131, "annotation": null}, {"text": "as", "start": 132, "end": 134, "annotation": null}, {"text": "a", "start": 135, "end": 136, "annotation": null}, {"text": "photoanode", "start": 137, "end": 147, "annotation": null}, {"text": "to", "start": 148, "end": 150, "annotation": null}, {"text": "produce", "start": 151, "end": 158, "annotation": null}, {"text": "a", "start": 159, "end": 160, "annotation": null}, {"text": "highly", "start": 161, "end": 167, "annotation": null}, {"text": "active", "start": 168, "end": 174, "annotation": null}, {"text": "and", "start": 175, "end": 178, "annotation": null}, {"text": "stable", "start": 179, "end": 185, "annotation": null}, {"text": "electrocatalyst", "start": 186, "end": 201, "annotation": null}, {"text": "for", "start": 202, "end": 205, "annotation": null}, {"text": "photoelectrochemical", "start": 206, "end": 226, "annotation": null}, {"text": "(", "start": 227, "end": 228, "annotation": null}, {"text": "PEC", "start": 228, "end": 231, "annotation": null}, {"text": ")", "start": 231, "end": 232, "annotation": null}, {"text": "water", "start": 233, "end": 238, "annotation": null}, {"text": "splitting", "start": 239, "end": 248, "annotation": null}, {"text": "under", "start": 249, "end": 254, "annotation": null}, {"text": "visible", "start": 255, "end": 262, "annotation": null}, {"text": "light", "start": 263, "end": 268, "annotation": null}, {"text": ".", "start": 268, "end": 269, "annotation": null}], [{"text": "The", "start": 270, "end": 273, "annotation": null}, {"text": "NPAs", "start": 274, "end": 278, "annotation": null}, {"text": "are", "start": 279, "end": 282, "annotation": null}, {"text": "formed", "start": 283, "end": 289, "annotation": null}, {"text": "as", "start": 290, "end": 292, "annotation": null}, {"text": "a", "start": 293, "end": 294, "annotation": null}, {"text": "single", "start": 295, "end": 301, "annotation": null}, {"text": "-", "start": 301, "end": 302, "annotation": null}, {"text": "phase", "start": 302, "end": 307, "annotation": null}, {"text": "solid", "start": 308, "end": 313, "annotation": null}, {"text": "solution", "start": 314, "end": 322, "annotation": null}, {"text": "with", "start": 323, "end": 327, "annotation": null}, {"text": "high", "start": 328, "end": 332, "annotation": null}, {"text": "purity", "start": 333, "end": 339, "annotation": null}, {"text": ".", "start": 339, "end": 340, "annotation": null}], [{"text": "X-ray", "start": 341, "end": 346, "annotation": null}, {"text": "photoelectron", "start": 347, "end": 360, "annotation": null}, {"text": "spectroscopy", "start": 361, "end": 373, "annotation": null}, {"text": "measurement", "start": 374, "end": 385, "annotation": null}, {"text": "verifies", "start": 386, "end": 394, "annotation": null}, {"text": "the", "start": 395, "end": 398, "annotation": null}, {"text": "binding", "start": 399, "end": 406, "annotation": null}, {"text": "energy", "start": 407, "end": 413, "annotation": null}, {"text": "of", "start": 414, "end": 416, "annotation": null}, {"text": "W", "start": 417, "end": 418, "annotation": null}, {"text": "element", "start": 419, "end": 426, "annotation": null}, {"text": "is", "start": 427, "end": 429, "annotation": null}, {"text": "negatively", "start": 430, "end": 440, "annotation": null}, {"text": "shifted", "start": 441, "end": 448, "annotation": null}, {"text": "due", "start": 449, "end": 452, "annotation": null}, {"text": "to", "start": 453, "end": 455, "annotation": null}, {"text": "the", "start": 456, "end": 459, "annotation": null}, {"text": "substitution", "start": 460, "end": 472, "annotation": null}, {"text": "of", "start": 473, "end": 475, "annotation": null}, {"text": "W6+", "start": 476, "end": 479, "annotation": null}, {"text": "by", "start": 480, "end": 482, "annotation": null}, {"text": "Ni2+", "start": 483, "end": 487, "annotation": null}, {"text": "in", "start": 488, "end": 490, "annotation": null}, {"text": "the", "start": 491, "end": 494, "annotation": null}, {"text": "monoclinic", "start": 495, "end": 505, "annotation": null}, {"text": "lattice", "start": 506, "end": 513, "annotation": null}, {"text": "and", "start": 514, "end": 517, "annotation": null}, {"text": "thereby", "start": 518, "end": 525, "annotation": null}, {"text": "the", "start": 526, "end": 529, "annotation": null}, {"text": "formation", "start": 530, "end": 539, "annotation": null}, {"text": "of", "start": 540, "end": 542, "annotation": null}, {"text": "Ni-O-W", "start": 543, "end": 549, "annotation": null}, {"text": "bonds", "start": 550, "end": 555, "annotation": null}, {"text": ".", "start": 555, "end": 556, "annotation": null}], [{"text": "Notably", "start": 557, "end": 564, "annotation": null}, {"text": ",", "start": 564, "end": 565, "annotation": null}, {"text": "the", "start": 566, "end": 569, "annotation": null}, {"text": "two", "start": 570, "end": 573, "annotation": null}, {"text": "-", "start": 573, "end": 574, "annotation": null}, {"text": "step", "start": 574, "end": 578, "annotation": null}, {"text": "3", "start": 579, "end": 580, "annotation": null}, {"text": "at", "start": 581, "end": 583, "annotation": null}, {"text": "%", "start": 583, "end": 584, "annotation": null}, {"text": "Ni", "start": 585, "end": 587, "annotation": "DOPANT"}, {"text": "-", "start": 587, "end": 588, "annotation": null}, {"text": "doped", "start": 588, "end": 593, "annotation": null}, {"text": "WO3", "start": 594, "end": 597, "annotation": "BASEMAT"}, {"text": "NPAs", "start": 598, "end": 602, "annotation": "BASEMAT"}, {"text": "exhibits", "start": 603, "end": 611, "annotation": null}, {"text": "the", "start": 612, "end": 615, "annotation": null}, {"text": "highest", "start": 616, "end": 623, "annotation": null}, {"text": "PEC", "start": 624, "end": 627, "annotation": null}, {"text": "performance", "start": 628, "end": 639, "annotation": null}, {"text": ",", "start": 639, "end": 640, "annotation": null}, {"text": "compared", "start": 641, "end": 649, "annotation": null}, {"text": "with", "start": 650, "end": 654, "annotation": null}, {"text": "pure", "start": 655, "end": 659, "annotation": null}, {"text": "and", "start": 660, "end": 663, "annotation": null}, {"text": "one", "start": 664, "end": 667, "annotation": null}, {"text": "-", "start": 667, "end": 668, "annotation": null}, {"text": "step", "start": 668, "end": 672, "annotation": null}, {"text": "Ni", "start": 673, "end": 675, "annotation": "DOPANT"}, {"text": "-", "start": 675, "end": 676, "annotation": null}, {"text": "doped", "start": 676, "end": 681, "annotation": null}, {"text": "WO3", "start": 682, "end": 685, "annotation": "BASEMAT"}, {"text": "NPAs", "start": 686, "end": 690, "annotation": "BASEMAT"}, {"text": ".", "start": 690, "end": 691, "annotation": null}], [{"text": "At", "start": 692, "end": 694, "annotation": null}, {"text": "1.0", "start": 695, "end": 698, "annotation": null}, {"text": "V", "start": 698, "end": 699, "annotation": null}, {"text": "(", "start": 700, "end": 701, "annotation": null}, {"text": "vs", "start": 701, "end": 703, "annotation": null}, {"text": "Ag", "start": 704, "end": 706, "annotation": null}, {"text": "/", "start": 706, "end": 707, "annotation": null}, {"text": "AgCl", "start": 707, "end": 711, "annotation": null}, {"text": ")", "start": 711, "end": 712, "annotation": null}, {"text": ",", "start": 712, "end": 713, "annotation": null}, {"text": "the", "start": 714, "end": 717, "annotation": null}, {"text": "current", "start": 718, "end": 725, "annotation": null}, {"text": "density", "start": 726, "end": 733, "annotation": null}, {"text": "of", "start": 734, "end": 736, "annotation": null}, {"text": "two", "start": 737, "end": 740, "annotation": null}, {"text": "-", "start": 740, "end": 741, "annotation": null}, {"text": "step", "start": 741, "end": 745, "annotation": null}, {"text": "3", "start": 746, "end": 747, "annotation": null}, {"text": "at", "start": 748, "end": 750, "annotation": null}, {"text": "%", "start": 750, "end": 751, "annotation": null}, {"text": "Ni", "start": 752, "end": 754, "annotation": "DOPANT"}, {"text": "-", "start": 754, "end": 755, "annotation": null}, {"text": "doped", "start": 755, "end": 760, "annotation": null}, {"text": "WO3", "start": 761, "end": 764, "annotation": "BASEMAT"}, {"text": "is", "start": 765, "end": 767, "annotation": null}, {"text": "0.80", "start": 768, "end": 772, "annotation": null}, {"text": "mA", "start": 772, "end": 774, "annotation": null}, {"text": "/", "start": 774, "end": 775, "annotation": null}, {"text": "cm2", "start": 775, "end": 778, "annotation": null}, {"text": ",", "start": 778, "end": 779, "annotation": null}, {"text": "which", "start": 780, "end": 785, "annotation": null}, {"text": "is", "start": 786, "end": 788, "annotation": null}, {"text": "about", "start": 789, "end": 794, "annotation": null}, {"text": "1.74-", "start": 795, "end": 800, "annotation": null}, {"text": "and", "start": 801, "end": 804, "annotation": null}, {"text": "2.35-fold", "start": 805, "end": 814, "annotation": null}, {"text": "of", "start": 815, "end": 817, "annotation": null}, {"text": "that", "start": 818, "end": 822, "annotation": null}, {"text": "of", "start": 823, "end": 825, "annotation": null}, {"text": "WO3", "start": 826, "end": 829, "annotation": null}, {"text": "(", "start": 830, "end": 831, "annotation": null}, {"text": "0.46", "start": 831, "end": 835, "annotation": null}, {"text": "mA", "start": 835, "end": 837, "annotation": null}, {"text": "/", "start": 837, "end": 838, "annotation": null}, {"text": "cm2", "start": 838, "end": 841, "annotation": null}, {"text": ")", "start": 841, "end": 842, "annotation": null}, {"text": "and", "start": 843, "end": 846, "annotation": null}, {"text": "one", "start": 847, "end": 850, "annotation": null}, {"text": "-", "start": 850, "end": 851, "annotation": null}, {"text": "step", "start": 851, "end": 855, "annotation": null}, {"text": "3", "start": 856, "end": 857, "annotation": null}, {"text": "at", "start": 858, "end": 860, "annotation": null}, {"text": "%", "start": 860, "end": 861, "annotation": null}, {"text": "Ni", "start": 862, "end": 864, "annotation": "DOPANT"}, {"text": "-", "start": 864, "end": 865, "annotation": null}, {"text": "doped", "start": 865, "end": 870, "annotation": null}, {"text": "WO3", "start": 871, "end": 874, "annotation": "BASEMAT"}, {"text": "(", "start": 875, "end": 876, "annotation": null}, {"text": "0.34", "start": 876, "end": 880, "annotation": null}, {"text": "mA", "start": 880, "end": 882, "annotation": null}, {"text": "/", "start": 882, "end": 883, "annotation": null}, {"text": "cm2", "start": 883, "end": 886, "annotation": null}, {"text": ")", "start": 886, "end": 887, "annotation": null}, {"text": ",", "start": 887, "end": 888, "annotation": null}, {"text": "respectively", "start": 889, "end": 901, "annotation": null}, {"text": ".", "start": 901, "end": 902, "annotation": null}], [{"text": "The", "start": 903, "end": 906, "annotation": null}, {"text": "PEC", "start": 907, "end": 910, "annotation": null}, {"text": "performance", "start": 911, "end": 922, "annotation": null}, {"text": "of", "start": 923, "end": 925, "annotation": null}, {"text": "WO3", "start": 926, "end": 929, "annotation": "BASEMAT"}, {"text": "NPAs", "start": 930, "end": 934, "annotation": "BASEMAT"}, {"text": "can", "start": 935, "end": 938, "annotation": null}, {"text": "be", "start": 939, "end": 941, "annotation": null}, {"text": "modified", "start": 942, "end": 950, "annotation": null}, {"text": "by", "start": 951, "end": 953, "annotation": null}, {"text": "Ni", "start": 954, "end": 956, "annotation": "DOPANT"}, {"text": "doping", "start": 957, "end": 963, "annotation": null}, {"text": "in", "start": 964, "end": 966, "annotation": null}, {"text": "a", "start": 967, "end": 968, "annotation": null}, {"text": "two", "start": 969, "end": 972, "annotation": null}, {"text": "-", "start": 972, "end": 973, "annotation": null}, {"text": "step", "start": 973, "end": 977, "annotation": null}, {"text": "hydrothermal", "start": 978, "end": 990, "annotation": null}, {"text": "process", "start": 991, "end": 998, "annotation": null}, {"text": ";", "start": 998, "end": 999, "annotation": null}, {"text": "both", "start": 1000, "end": 1004, "annotation": null}, {"text": "the", "start": 1005, "end": 1008, "annotation": null}, {"text": "changes", "start": 1009, "end": 1016, "annotation": null}, {"text": "of", "start": 1017, "end": 1019, "annotation": null}, {"text": "band", "start": 1020, "end": 1024, "annotation": null}, {"text": "gap", "start": 1025, "end": 1028, "annotation": null}, {"text": "and", "start": 1029, "end": 1032, "annotation": null}, {"text": "electrochemically", "start": 1033, "end": 1050, "annotation": null}, {"text": "active", "start": 1051, "end": 1057, "annotation": null}, {"text": "surface", "start": 1058, "end": 1065, "annotation": null}, {"text": "area", "start": 1066, "end": 1070, "annotation": null}, {"text": "(", "start": 1071, "end": 1072, "annotation": null}, {"text": "ECSA", "start": 1072, "end": 1076, "annotation": null}, {"text": ")", "start": 1076, "end": 1077, "annotation": null}, {"text": "are", "start": 1078, "end": 1081, "annotation": null}, {"text": "playing", "start": 1082, "end": 1089, "annotation": null}, {"text": "important", "start": 1090, "end": 1099, "annotation": null}, {"text": "roles", "start": 1100, "end": 1105, "annotation": null}, {"text": "on", "start": 1106, "end": 1108, "annotation": null}, {"text": "improving", "start": 1109, "end": 1118, "annotation": null}, {"text": "the", "start": 1119, "end": 1122, "annotation": null}, {"text": "activity", "start": 1123, "end": 1131, "annotation": null}, {"text": "of", "start": 1132, "end": 1134, "annotation": null}, {"text": "the", "start": 1135, "end": 1138, "annotation": null}, {"text": "WO3", "start": 1139, "end": 1142, "annotation": null}, {"text": "NPAs", "start": 1143, "end": 1147, "annotation": null}, {"text": "photoanode", "start": 1148, "end": 1158, "annotation": null}, {"text": ".", "start": 1158, "end": 1159, "annotation": null}]], "meta": {"doi": "10.1007/s10008-017-3680-6"}} +{"remark": "doping_annt3", "text": "In this work we propose the study of the spectroscopy properties and the energy level location of Ce3+ and Pr3+ in Gd2O2S, along with the effects of Ce4+ (Ce2O2S2) incorporation in Gd2O2S and Gd2O2S:Pr3+ in order to understand the formation and position of the associated defects energy levels in relation to the band structure of Gd2O2S and Pr3+ energy levels. Ce-, Pr3+-doped and Pr3+,Ce-doped Gd2O2S were prepared by the sulfidization of a basic gadolinium carbonate with S8 using H2/N2 (3.0/97.0%) and air during the firing of the precursor. Samples were analyzed by X-ray diffraction in order to guarantee the formation of the Gd2O2S single phase. Diffuse reflectance spectroscopy and luminescent measurements (emission/excitation) were used to locate Ce3+, Pr3+ and defects energy levels in relation to the band structure of Gd2O2S. Copyright \u00a9 2009 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "this", "start": 3, "end": 7, "annotation": null}, {"text": "work", "start": 8, "end": 12, "annotation": null}, {"text": "we", "start": 13, "end": 15, "annotation": null}, {"text": "propose", "start": 16, "end": 23, "annotation": null}, {"text": "the", "start": 24, "end": 27, "annotation": null}, {"text": "study", "start": 28, "end": 33, "annotation": null}, {"text": "of", "start": 34, "end": 36, "annotation": null}, {"text": "the", "start": 37, "end": 40, "annotation": null}, {"text": "spectroscopy", "start": 41, "end": 53, "annotation": null}, {"text": "properties", "start": 54, "end": 64, "annotation": null}, {"text": "and", "start": 65, "end": 68, "annotation": null}, {"text": "the", "start": 69, "end": 72, "annotation": null}, {"text": "energy", "start": 73, "end": 79, "annotation": null}, {"text": "level", "start": 80, "end": 85, "annotation": null}, {"text": "location", "start": 86, "end": 94, "annotation": null}, {"text": "of", "start": 95, "end": 97, "annotation": null}, {"text": "Ce3+", "start": 98, "end": 102, "annotation": null}, {"text": "and", "start": 103, "end": 106, "annotation": null}, {"text": "Pr3+", "start": 107, "end": 111, "annotation": null}, {"text": "in", "start": 112, "end": 114, "annotation": null}, {"text": "Gd2O2S", "start": 115, "end": 121, "annotation": null}, {"text": ",", "start": 121, "end": 122, "annotation": null}, {"text": "along", "start": 123, "end": 128, "annotation": null}, {"text": "with", "start": 129, "end": 133, "annotation": null}, {"text": "the", "start": 134, "end": 137, "annotation": null}, {"text": "effects", "start": 138, "end": 145, "annotation": null}, {"text": "of", "start": 146, "end": 148, "annotation": null}, {"text": "Ce4+", "start": 149, "end": 153, "annotation": null}, {"text": "(", "start": 154, "end": 155, "annotation": null}, {"text": "Ce2O2S2", "start": 155, "end": 162, "annotation": null}, {"text": ")", "start": 162, "end": 163, "annotation": null}, {"text": "incorporation", "start": 164, "end": 177, "annotation": null}, {"text": "in", "start": 178, "end": 180, "annotation": null}, {"text": "Gd2O2S", "start": 181, "end": 187, "annotation": null}, {"text": "and", "start": 188, "end": 191, "annotation": null}, {"text": "Gd2O2S", "start": 192, "end": 198, "annotation": "BASEMAT"}, {"text": ":", "start": 198, "end": 199, "annotation": null}, {"text": "Pr3+", "start": 199, "end": 203, "annotation": "DOPANT"}, {"text": "in", "start": 204, "end": 206, "annotation": null}, {"text": "order", "start": 207, "end": 212, "annotation": null}, {"text": "to", "start": 213, "end": 215, "annotation": null}, {"text": "understand", "start": 216, "end": 226, "annotation": null}, {"text": "the", "start": 227, "end": 230, "annotation": null}, {"text": "formation", "start": 231, "end": 240, "annotation": null}, {"text": "and", "start": 241, "end": 244, "annotation": null}, {"text": "position", "start": 245, "end": 253, "annotation": null}, {"text": "of", "start": 254, "end": 256, "annotation": null}, {"text": "the", "start": 257, "end": 260, "annotation": null}, {"text": "associated", "start": 261, "end": 271, "annotation": null}, {"text": "defects", "start": 272, "end": 279, "annotation": null}, {"text": "energy", "start": 280, "end": 286, "annotation": null}, {"text": "levels", "start": 287, "end": 293, "annotation": null}, {"text": "in", "start": 294, "end": 296, "annotation": null}, {"text": "relation", "start": 297, "end": 305, "annotation": null}, {"text": "to", "start": 306, "end": 308, "annotation": null}, {"text": "the", "start": 309, "end": 312, "annotation": null}, {"text": "band", "start": 313, "end": 317, "annotation": null}, {"text": "structure", "start": 318, "end": 327, "annotation": null}, {"text": "of", "start": 328, "end": 330, "annotation": null}, {"text": "Gd2O2S", "start": 331, "end": 337, "annotation": null}, {"text": "and", "start": 338, "end": 341, "annotation": null}, {"text": "Pr3+", "start": 342, "end": 346, "annotation": null}, {"text": "energy", "start": 347, "end": 353, "annotation": null}, {"text": "levels", "start": 354, "end": 360, "annotation": null}, {"text": ".", "start": 360, "end": 361, "annotation": null}], [{"text": "Ce-", "start": 362, "end": 365, "annotation": "DOPANT"}, {"text": ",", "start": 365, "end": 366, "annotation": null}, {"text": "Pr3+", "start": 367, "end": 371, "annotation": "DOPANT"}, {"text": "-", "start": 371, "end": 372, "annotation": null}, {"text": "doped", "start": 372, "end": 377, "annotation": null}, {"text": "and", "start": 378, "end": 381, "annotation": null}, {"text": "Pr3+,Ce", "start": 382, "end": 389, "annotation": "DOPANT"}, {"text": "-", "start": 389, "end": 390, "annotation": null}, {"text": "doped", "start": 390, "end": 395, "annotation": null}, {"text": "Gd2O2S", "start": 396, "end": 402, "annotation": "BASEMAT"}, {"text": "were", "start": 403, "end": 407, "annotation": null}, {"text": "prepared", "start": 408, "end": 416, "annotation": null}, {"text": "by", "start": 417, "end": 419, "annotation": null}, {"text": "the", "start": 420, "end": 423, "annotation": null}, {"text": "sulfidization", "start": 424, "end": 437, "annotation": null}, {"text": "of", "start": 438, "end": 440, "annotation": null}, {"text": "a", "start": 441, "end": 442, "annotation": null}, {"text": "basic", "start": 443, "end": 448, "annotation": null}, {"text": "gadolinium", "start": 449, "end": 459, "annotation": null}, {"text": "carbonate", "start": 460, "end": 469, "annotation": null}, {"text": "with", "start": 470, "end": 474, "annotation": null}, {"text": "S8", "start": 475, "end": 477, "annotation": null}, {"text": "using", "start": 478, "end": 483, "annotation": null}, {"text": "H2", "start": 484, "end": 486, "annotation": null}, {"text": "/", "start": 486, "end": 487, "annotation": null}, {"text": "N2", "start": 487, "end": 489, "annotation": null}, {"text": "(", "start": 490, "end": 491, "annotation": null}, {"text": "3.0", "start": 491, "end": 494, "annotation": null}, {"text": "/", "start": 494, "end": 495, "annotation": null}, {"text": "97.0", "start": 495, "end": 499, "annotation": null}, {"text": "%", "start": 499, "end": 500, "annotation": null}, {"text": ")", "start": 500, "end": 501, "annotation": null}, {"text": "and", "start": 502, "end": 505, "annotation": null}, {"text": "air", "start": 506, "end": 509, "annotation": null}, {"text": "during", "start": 510, "end": 516, "annotation": null}, {"text": "the", "start": 517, "end": 520, "annotation": null}, {"text": "firing", "start": 521, "end": 527, "annotation": null}, {"text": "of", "start": 528, "end": 530, "annotation": null}, {"text": "the", "start": 531, "end": 534, "annotation": null}, {"text": "precursor", "start": 535, "end": 544, "annotation": null}, {"text": ".", "start": 544, "end": 545, "annotation": null}], [{"text": "Samples", "start": 546, "end": 553, "annotation": null}, {"text": "were", "start": 554, "end": 558, "annotation": null}, {"text": "analyzed", "start": 559, "end": 567, "annotation": null}, {"text": "by", "start": 568, "end": 570, "annotation": null}, {"text": "X-ray", "start": 571, "end": 576, "annotation": null}, {"text": "diffraction", "start": 577, "end": 588, "annotation": null}, {"text": "in", "start": 589, "end": 591, "annotation": null}, {"text": "order", "start": 592, "end": 597, "annotation": null}, {"text": "to", "start": 598, "end": 600, "annotation": null}, {"text": "guarantee", "start": 601, "end": 610, "annotation": null}, {"text": "the", "start": 611, "end": 614, "annotation": null}, {"text": "formation", "start": 615, "end": 624, "annotation": null}, {"text": "of", "start": 625, "end": 627, "annotation": null}, {"text": "the", "start": 628, "end": 631, "annotation": null}, {"text": "Gd2O2S", "start": 632, "end": 638, "annotation": null}, {"text": "single", "start": 639, "end": 645, "annotation": null}, {"text": "phase", "start": 646, "end": 651, "annotation": null}, {"text": ".", "start": 651, "end": 652, "annotation": null}], [{"text": "Diffuse", "start": 653, "end": 660, "annotation": null}, {"text": "reflectance", "start": 661, "end": 672, "annotation": null}, {"text": "spectroscopy", "start": 673, "end": 685, "annotation": null}, {"text": "and", "start": 686, "end": 689, "annotation": null}, {"text": "luminescent", "start": 690, "end": 701, "annotation": null}, {"text": "measurements", "start": 702, "end": 714, "annotation": null}, {"text": "(", "start": 715, "end": 716, "annotation": null}, {"text": "emission", "start": 716, "end": 724, "annotation": null}, {"text": "/", "start": 724, "end": 725, "annotation": null}, {"text": "excitation", "start": 725, "end": 735, "annotation": null}, {"text": ")", "start": 735, "end": 736, "annotation": null}, {"text": "were", "start": 737, "end": 741, "annotation": null}, {"text": "used", "start": 742, "end": 746, "annotation": null}, {"text": "to", "start": 747, "end": 749, "annotation": null}, {"text": "locate", "start": 750, "end": 756, "annotation": null}, {"text": "Ce3+", "start": 757, "end": 761, "annotation": null}, {"text": ",", "start": 761, "end": 762, "annotation": null}, {"text": "Pr3+", "start": 763, "end": 767, "annotation": null}, {"text": "and", "start": 768, "end": 771, "annotation": null}, {"text": "defects", "start": 772, "end": 779, "annotation": null}, {"text": "energy", "start": 780, "end": 786, "annotation": null}, {"text": "levels", "start": 787, "end": 793, "annotation": null}, {"text": "in", "start": 794, "end": 796, "annotation": null}, {"text": "relation", "start": 797, "end": 805, "annotation": null}, {"text": "to", "start": 806, "end": 808, "annotation": null}, {"text": "the", "start": 809, "end": 812, "annotation": null}, {"text": "band", "start": 813, "end": 817, "annotation": null}, {"text": "structure", "start": 818, "end": 827, "annotation": null}, {"text": "of", "start": 828, "end": 830, "annotation": null}, {"text": "Gd2O2S", "start": 831, "end": 837, "annotation": null}, {"text": ".", "start": 837, "end": 838, "annotation": null}], [{"text": "KGaA", "start": 884, "end": 888, "annotation": null}, {"text": ",", "start": 888, "end": 889, "annotation": null}, {"text": "Weinheim", "start": 890, "end": 898, "annotation": null}, {"text": ".", "start": 898, "end": 899, "annotation": null}]], "meta": {"doi": "10.1002/pssc.200881284"}} +{"text": "Transition-metal silicides are reported to be good candidates for thermoelectric applications because of their thermal and structural stability, high electrical conductivity, and generation of thermoelectric power at elevated temperatures. Chromium disilicide (CrSi2) is a narrow-gap semiconductor and a potential p-type thermoelectric material up to 973\u00a0K with a band gap of 0.30\u00a0eV. In this work, CrSi2 was formed from Si wafers by use of a two-step, pack-cementation, chemical diffusion method. Several deposition conditions were used to investigate the effect of temperature and donor concentration on the structure of the final products. Scanning electron microscopy and x-ray diffraction analysis were performed for phase identification, and thermal stability was evaluated by means of thermogravimetric measurements. The results showed that after the first step, chromizing, the structure of the products was a mixture of several Cr\u2013Si phases, depending on the donor (Cr) concentration during the deposition process. After the second step, siliconizing, the pure CrSi2 phase was formed as a result of Si enrichment of the initial Cr\u2013Si phases. It was also revealed that this compound has thermoelectric properties similar to those reported elsewhere. Moreover, it was found to have exceptional chemical stability even at temperatures up to 1273\u00a0K.", "meta": {"doi": "10.1007/s11664-014-3100-y"}, "_input_hash": -1306603977, "_task_hash": 2132953050, "tokens": [[{"text": "Transition", "start": 0, "end": 10, "id": 0, "annotation": null}, {"text": "-", "start": 11, "end": 12, "id": 1, "annotation": null}, {"text": "metal", "start": 13, "end": 18, "id": 2, "annotation": null}, {"text": "silicides", "start": 19, "end": 28, "id": 3, "annotation": null}, {"text": "are", "start": 29, "end": 32, "id": 4, "annotation": null}, {"text": "reported", "start": 33, "end": 41, "id": 5, "annotation": null}, {"text": "to", "start": 42, "end": 44, "id": 6, "annotation": null}, {"text": "be", "start": 45, "end": 47, "id": 7, "annotation": null}, {"text": "good", "start": 48, "end": 52, "id": 8, "annotation": null}, {"text": "candidates", "start": 53, "end": 63, "id": 9, "annotation": null}, {"text": "for", "start": 64, "end": 67, "id": 10, "annotation": null}, {"text": "thermoelectric", "start": 68, "end": 82, "id": 11, "annotation": null}, {"text": "applications", "start": 83, "end": 95, "id": 12, "annotation": null}, {"text": "because", "start": 96, "end": 103, "id": 13, "annotation": null}, {"text": "of", "start": 104, "end": 106, "id": 14, "annotation": null}, {"text": "their", "start": 107, "end": 112, "id": 15, "annotation": null}, {"text": "thermal", "start": 113, "end": 120, "id": 16, "annotation": null}, {"text": "and", "start": 121, "end": 124, "id": 17, "annotation": null}, {"text": "structural", "start": 125, "end": 135, "id": 18, "annotation": null}, {"text": "stability", "start": 136, "end": 145, "id": 19, "annotation": null}, {"text": ",", "start": 146, "end": 147, "id": 20, "annotation": null}, {"text": "high", "start": 148, "end": 152, "id": 21, "annotation": null}, {"text": "electrical", "start": 153, "end": 163, "id": 22, "annotation": null}, {"text": "conductivity", "start": 164, "end": 176, "id": 23, "annotation": null}, {"text": ",", "start": 177, "end": 178, "id": 24, "annotation": null}, {"text": "and", "start": 179, "end": 182, "id": 25, "annotation": null}, {"text": "generation", "start": 183, "end": 193, "id": 26, "annotation": null}, {"text": "of", "start": 194, "end": 196, "id": 27, "annotation": null}, {"text": "thermoelectric", "start": 197, "end": 211, "id": 28, "annotation": null}, {"text": "power", "start": 212, "end": 217, "id": 29, "annotation": null}, {"text": "at", "start": 218, "end": 220, "id": 30, "annotation": null}, {"text": "elevated", "start": 221, "end": 229, "id": 31, "annotation": null}, {"text": "temperatures", "start": 230, "end": 242, "id": 32, "annotation": null}, {"text": ".", "start": 243, "end": 244, "id": 33, "annotation": null}], [{"text": "Chromium", "start": 245, "end": 253, "id": 34, "annotation": "BASEMAT"}, {"text": "disilicide", "start": 254, "end": 264, "id": 35, "annotation": "BASEMAT"}, {"text": "(", "start": 265, "end": 266, "id": 36, "annotation": null}, {"text": "CrSi2", "start": 267, "end": 272, "id": 37, "annotation": "BASEMAT"}, {"text": ")", "start": 273, "end": 274, "id": 38, "annotation": null}, {"text": "is", "start": 275, "end": 277, "id": 39, "annotation": null}, {"text": "a", "start": 278, "end": 279, "id": 40, "annotation": null}, {"text": "narrow", "start": 280, "end": 286, "id": 41, "annotation": null}, {"text": "-", "start": 287, "end": 288, "id": 42, "annotation": null}, {"text": "gap", "start": 289, "end": 292, "id": 43, "annotation": null}, {"text": "semiconductor", "start": 293, "end": 306, "id": 44, "annotation": null}, {"text": "and", "start": 307, "end": 310, "id": 45, "annotation": null}, {"text": "a", "start": 311, "end": 312, "id": 46, "annotation": null}, {"text": "potential", "start": 313, "end": 322, "id": 47, "annotation": null}, {"text": "p", "start": 323, "end": 324, "id": 48, "annotation": "DOPANT"}, {"text": "-", "start": 325, "end": 326, "id": 49, "annotation": "DOPANT"}, {"text": "type", "start": 327, "end": 331, "id": 50, "annotation": "DOPANT"}, {"text": "thermoelectric", "start": 332, "end": 346, "id": 51, "annotation": null}, {"text": "material", "start": 347, "end": 355, "id": 52, "annotation": null}, {"text": "up", "start": 356, "end": 358, "id": 53, "annotation": null}, {"text": "to", "start": 359, "end": 361, "id": 54, "annotation": null}, {"text": "973", "start": 362, "end": 365, "id": 55, "annotation": null}, {"text": "K", "start": 366, "end": 367, "id": 57, "annotation": null}, {"text": "with", "start": 368, "end": 372, "id": 58, "annotation": null}, {"text": "a", "start": 373, "end": 374, "id": 59, "annotation": null}, {"text": "band", "start": 375, "end": 379, "id": 60, "annotation": null}, {"text": "gap", "start": 380, "end": 383, "id": 61, "annotation": null}, {"text": "of", "start": 384, "end": 386, "id": 62, "annotation": null}, {"text": "0.30", "start": 387, "end": 391, "id": 63, "annotation": null}, {"text": "eV.", "start": 392, "end": 395, "id": 65, "annotation": null}], [{"text": "In", "start": 396, "end": 398, "id": 66, "annotation": null}, {"text": "this", "start": 399, "end": 403, "id": 67, "annotation": null}, {"text": "work", "start": 404, "end": 408, "id": 68, "annotation": null}, {"text": ",", "start": 409, "end": 410, "id": 69, "annotation": null}, {"text": "CrSi2", "start": 411, "end": 416, "id": 70, "annotation": null}, {"text": "was", "start": 417, "end": 420, "id": 71, "annotation": null}, {"text": "formed", "start": 421, "end": 427, "id": 72, "annotation": null}, {"text": "from", "start": 428, "end": 432, "id": 73, "annotation": null}, {"text": "Si", "start": 433, "end": 435, "id": 74, "annotation": null}, {"text": "wafers", "start": 436, "end": 442, "id": 75, "annotation": null}, {"text": "by", "start": 443, "end": 445, "id": 76, "annotation": null}, {"text": "use", "start": 446, "end": 449, "id": 77, "annotation": null}, {"text": "of", "start": 450, "end": 452, "id": 78, "annotation": null}, {"text": "a", "start": 453, "end": 454, "id": 79, "annotation": null}, {"text": "two", "start": 455, "end": 458, "id": 80, "annotation": null}, {"text": "-", "start": 459, "end": 460, "id": 81, "annotation": null}, {"text": "step", "start": 461, "end": 465, "id": 82, "annotation": null}, {"text": ",", "start": 466, "end": 467, "id": 83, "annotation": null}, {"text": "pack", "start": 468, "end": 472, "id": 84, "annotation": null}, {"text": "-", "start": 473, "end": 474, "id": 85, "annotation": null}, {"text": "cementation", "start": 475, "end": 486, "id": 86, "annotation": null}, {"text": ",", "start": 487, "end": 488, "id": 87, "annotation": null}, {"text": "chemical", "start": 489, "end": 497, "id": 88, "annotation": null}, {"text": "diffusion", "start": 498, "end": 507, "id": 89, "annotation": null}, {"text": "method", "start": 508, "end": 514, "id": 90, "annotation": null}, {"text": ".", "start": 515, "end": 516, "id": 91, "annotation": null}], [{"text": "Several", "start": 517, "end": 524, "id": 92, "annotation": null}, {"text": "deposition", "start": 525, "end": 535, "id": 93, "annotation": null}, {"text": "conditions", "start": 536, "end": 546, "id": 94, "annotation": null}, {"text": "were", "start": 547, "end": 551, "id": 95, "annotation": null}, {"text": "used", "start": 552, "end": 556, "id": 96, "annotation": null}, {"text": "to", "start": 557, "end": 559, "id": 97, "annotation": null}, {"text": "investigate", "start": 560, "end": 571, "id": 98, "annotation": null}, {"text": "the", "start": 572, "end": 575, "id": 99, "annotation": null}, {"text": "effect", "start": 576, "end": 582, "id": 100, "annotation": null}, {"text": "of", "start": 583, "end": 585, "id": 101, "annotation": null}, {"text": "temperature", "start": 586, "end": 597, "id": 102, "annotation": null}, {"text": "and", "start": 598, "end": 601, "id": 103, "annotation": null}, {"text": "donor", "start": 602, "end": 607, "id": 104, "annotation": null}, {"text": "concentration", "start": 608, "end": 621, "id": 105, "annotation": null}, {"text": "on", "start": 622, "end": 624, "id": 106, "annotation": null}, {"text": "the", "start": 625, "end": 628, "id": 107, "annotation": null}, {"text": "structure", "start": 629, "end": 638, "id": 108, "annotation": null}, {"text": "of", "start": 639, "end": 641, "id": 109, "annotation": null}, {"text": "the", "start": 642, "end": 645, "id": 110, "annotation": null}, {"text": "final", "start": 646, "end": 651, "id": 111, "annotation": null}, {"text": "products", "start": 652, "end": 660, "id": 112, "annotation": null}, {"text": ".", "start": 661, "end": 662, "id": 113, "annotation": null}], [{"text": "Scanning", "start": 663, "end": 671, "id": 114, "annotation": null}, {"text": "electron", "start": 672, "end": 680, "id": 115, "annotation": null}, {"text": "microscopy", "start": 681, "end": 691, "id": 116, "annotation": null}, {"text": "and", "start": 692, "end": 695, "id": 117, "annotation": null}, {"text": "x", "start": 696, "end": 697, "id": 118, "annotation": null}, {"text": "-", "start": 698, "end": 699, "id": 119, "annotation": null}, {"text": "ray", "start": 700, "end": 703, "id": 120, "annotation": null}, {"text": "diffraction", "start": 704, "end": 715, "id": 121, "annotation": null}, {"text": "analysis", "start": 716, "end": 724, "id": 122, "annotation": null}, {"text": "were", "start": 725, "end": 729, "id": 123, "annotation": null}, {"text": "performed", "start": 730, "end": 739, "id": 124, "annotation": null}, {"text": "for", "start": 740, "end": 743, "id": 125, "annotation": null}, {"text": "phase", "start": 744, "end": 749, "id": 126, "annotation": null}, {"text": "identification", "start": 750, "end": 764, "id": 127, "annotation": null}, {"text": ",", "start": 765, "end": 766, "id": 128, "annotation": null}, {"text": "and", "start": 767, "end": 770, "id": 129, "annotation": null}, {"text": "thermal", "start": 771, "end": 778, "id": 130, "annotation": null}, {"text": "stability", "start": 779, "end": 788, "id": 131, "annotation": null}, {"text": "was", "start": 789, "end": 792, "id": 132, "annotation": null}, {"text": "evaluated", "start": 793, "end": 802, "id": 133, "annotation": null}, {"text": "by", "start": 803, "end": 805, "id": 134, "annotation": null}, {"text": "means", "start": 806, "end": 811, "id": 135, "annotation": null}, {"text": "of", "start": 812, "end": 814, "id": 136, "annotation": null}, {"text": "thermogravimetric", "start": 815, "end": 832, "id": 137, "annotation": null}, {"text": "measurements", "start": 833, "end": 845, "id": 138, "annotation": null}, {"text": ".", "start": 846, "end": 847, "id": 139, "annotation": null}], [{"text": "The", "start": 848, "end": 851, "id": 140, "annotation": null}, {"text": "results", "start": 852, "end": 859, "id": 141, "annotation": null}, {"text": "showed", "start": 860, "end": 866, "id": 142, "annotation": null}, {"text": "that", "start": 867, "end": 871, "id": 143, "annotation": null}, {"text": "after", "start": 872, "end": 877, "id": 144, "annotation": null}, {"text": "the", "start": 878, "end": 881, "id": 145, "annotation": null}, {"text": "first", "start": 882, "end": 887, "id": 146, "annotation": null}, {"text": "step", "start": 888, "end": 892, "id": 147, "annotation": null}, {"text": ",", "start": 893, "end": 894, "id": 148, "annotation": null}, {"text": "chromizing", "start": 895, "end": 905, "id": 149, "annotation": null}, {"text": ",", "start": 906, "end": 907, "id": 150, "annotation": null}, {"text": "the", "start": 908, "end": 911, "id": 151, "annotation": null}, {"text": "structure", "start": 912, "end": 921, "id": 152, "annotation": null}, {"text": "of", "start": 922, "end": 924, "id": 153, "annotation": null}, {"text": "the", "start": 925, "end": 928, "id": 154, "annotation": null}, {"text": "products", "start": 929, "end": 937, "id": 155, "annotation": null}, {"text": "was", "start": 938, "end": 941, "id": 156, "annotation": null}, {"text": "a", "start": 942, "end": 943, "id": 157, "annotation": null}, {"text": "mixture", "start": 944, "end": 951, "id": 158, "annotation": null}, {"text": "of", "start": 952, "end": 954, "id": 159, "annotation": null}, {"text": "several", "start": 955, "end": 962, "id": 160, "annotation": null}, {"text": "Cr", "start": 963, "end": 965, "id": 161, "annotation": null}, {"text": "\u2013", "start": 966, "end": 967, "id": 162, "annotation": null}, {"text": "Si", "start": 968, "end": 970, "id": 163, "annotation": null}, {"text": "phases", "start": 971, "end": 977, "id": 164, "annotation": null}, {"text": ",", "start": 978, "end": 979, "id": 165, "annotation": null}, {"text": "depending", "start": 980, "end": 989, "id": 166, "annotation": null}, {"text": "on", "start": 990, "end": 992, "id": 167, "annotation": null}, {"text": "the", "start": 993, "end": 996, "id": 168, "annotation": null}, {"text": "donor", "start": 997, "end": 1002, "id": 169, "annotation": null}, {"text": "(", "start": 1003, "end": 1004, "id": 170, "annotation": null}, {"text": "Cr", "start": 1005, "end": 1007, "id": 171, "annotation": "DOPANT"}, {"text": ")", "start": 1008, "end": 1009, "id": 172, "annotation": null}, {"text": "concentration", "start": 1010, "end": 1023, "id": 173, "annotation": null}, {"text": "during", "start": 1024, "end": 1030, "id": 174, "annotation": null}, {"text": "the", "start": 1031, "end": 1034, "id": 175, "annotation": null}, {"text": "deposition", "start": 1035, "end": 1045, "id": 176, "annotation": null}, {"text": "process", "start": 1046, "end": 1053, "id": 177, "annotation": null}, {"text": ".", "start": 1054, "end": 1055, "id": 178, "annotation": null}], [{"text": "After", "start": 1056, "end": 1061, "id": 179, "annotation": null}, {"text": "the", "start": 1062, "end": 1065, "id": 180, "annotation": null}, {"text": "second", "start": 1066, "end": 1072, "id": 181, "annotation": null}, {"text": "step", "start": 1073, "end": 1077, "id": 182, "annotation": null}, {"text": ",", "start": 1078, "end": 1079, "id": 183, "annotation": null}, {"text": "siliconizing", "start": 1080, "end": 1092, "id": 184, "annotation": null}, {"text": ",", "start": 1093, "end": 1094, "id": 185, "annotation": null}, {"text": "the", "start": 1095, "end": 1098, "id": 186, "annotation": null}, {"text": "pure", "start": 1099, "end": 1103, "id": 187, "annotation": null}, {"text": "CrSi2", "start": 1104, "end": 1109, "id": 188, "annotation": null}, {"text": "phase", "start": 1110, "end": 1115, "id": 189, "annotation": null}, {"text": "was", "start": 1116, "end": 1119, "id": 190, "annotation": null}, {"text": "formed", "start": 1120, "end": 1126, "id": 191, "annotation": null}, {"text": "as", "start": 1127, "end": 1129, "id": 192, "annotation": null}, {"text": "a", "start": 1130, "end": 1131, "id": 193, "annotation": null}, {"text": "result", "start": 1132, "end": 1138, "id": 194, "annotation": null}, {"text": "of", "start": 1139, "end": 1141, "id": 195, "annotation": null}, {"text": "Si", "start": 1142, "end": 1144, "id": 196, "annotation": null}, {"text": "enrichment", "start": 1145, "end": 1155, "id": 197, "annotation": null}, {"text": "of", "start": 1156, "end": 1158, "id": 198, "annotation": null}, {"text": "the", "start": 1159, "end": 1162, "id": 199, "annotation": null}, {"text": "initial", "start": 1163, "end": 1170, "id": 200, "annotation": null}, {"text": "Cr", "start": 1171, "end": 1173, "id": 201, "annotation": null}, {"text": "\u2013", "start": 1174, "end": 1175, "id": 202, "annotation": null}, {"text": "Si", "start": 1176, "end": 1178, "id": 203, "annotation": null}, {"text": "phases", "start": 1179, "end": 1185, "id": 204, "annotation": null}, {"text": ".", "start": 1186, "end": 1187, "id": 205, "annotation": null}], [{"text": "It", "start": 1188, "end": 1190, "id": 206, "annotation": null}, {"text": "was", "start": 1191, "end": 1194, "id": 207, "annotation": null}, {"text": "also", "start": 1195, "end": 1199, "id": 208, "annotation": null}, {"text": "revealed", "start": 1200, "end": 1208, "id": 209, "annotation": null}, {"text": "that", "start": 1209, "end": 1213, "id": 210, "annotation": null}, {"text": "this", "start": 1214, "end": 1218, "id": 211, "annotation": null}, {"text": "compound", "start": 1219, "end": 1227, "id": 212, "annotation": null}, {"text": "has", "start": 1228, "end": 1231, "id": 213, "annotation": null}, {"text": "thermoelectric", "start": 1232, "end": 1246, "id": 214, "annotation": null}, {"text": "properties", "start": 1247, "end": 1257, "id": 215, "annotation": null}, {"text": "similar", "start": 1258, "end": 1265, "id": 216, "annotation": null}, {"text": "to", "start": 1266, "end": 1268, "id": 217, "annotation": null}, {"text": "those", "start": 1269, "end": 1274, "id": 218, "annotation": null}, {"text": "reported", "start": 1275, "end": 1283, "id": 219, "annotation": null}, {"text": "elsewhere", "start": 1284, "end": 1293, "id": 220, "annotation": null}, {"text": ".", "start": 1294, "end": 1295, "id": 221, "annotation": null}], [{"text": "Moreover", "start": 1296, "end": 1304, "id": 222, "annotation": null}, {"text": ",", "start": 1305, "end": 1306, "id": 223, "annotation": null}, {"text": "it", "start": 1307, "end": 1309, "id": 224, "annotation": null}, {"text": "was", "start": 1310, "end": 1313, "id": 225, "annotation": null}, {"text": "found", "start": 1314, "end": 1319, "id": 226, "annotation": null}, {"text": "to", "start": 1320, "end": 1322, "id": 227, "annotation": null}, {"text": "have", "start": 1323, "end": 1327, "id": 228, "annotation": null}, {"text": "exceptional", "start": 1328, "end": 1339, "id": 229, "annotation": null}, {"text": "chemical", "start": 1340, "end": 1348, "id": 230, "annotation": null}, {"text": "stability", "start": 1349, "end": 1358, "id": 231, "annotation": null}, {"text": "even", "start": 1359, "end": 1363, "id": 232, "annotation": null}, {"text": "at", "start": 1364, "end": 1366, "id": 233, "annotation": null}, {"text": "temperatures", "start": 1367, "end": 1379, "id": 234, "annotation": null}, {"text": "up", "start": 1380, "end": 1382, "id": 235, "annotation": null}, {"text": "to", "start": 1383, "end": 1385, "id": 236, "annotation": null}, {"text": "1273", "start": 1386, "end": 1390, "id": 237, "annotation": null}, {"text": "K.", "start": 1391, "end": 1393, "id": 239, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "Three-dimensional ordered opal-matrix composites filled with europium-doped silica sols have been produced using methods of colloid chemistry. According to elemental analysis data, the Eu concentration in the nanocomposites was \u223c30 ppm. A uniform europium distribution over the tetrahedral and octahedral pores of the 3D opal matrix was ensured by repeatedly filling the opal pores with silica sols doped with europium salts or europium oxide. Varying high-temperature annealing conditions, one can control the microstructure of 3D ordered nanocomposites, producing opaline and transparent photonic crystals. The microstructure of opal photonic crystals has the form of an ordered fcc lattice of amorphous silica spheres, whose tetrahedral and octahedral pores are filled with mesoporous europium-doped glass. Partial sintering of the silica spheres and mesoporous glass in transparent photonic crystals results in a periodic arrangement of quantum dots enriched in Eu-doped silica.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Three", "start": 0, "end": 5, "annotation": null}, {"text": "-", "start": 5, "end": 6, "annotation": null}, {"text": "dimensional", "start": 6, "end": 17, "annotation": null}, {"text": "ordered", "start": 18, "end": 25, "annotation": null}, {"text": "opal", "start": 26, "end": 30, "annotation": null}, {"text": "-", "start": 30, "end": 31, "annotation": null}, {"text": "matrix", "start": 31, "end": 37, "annotation": null}, {"text": "composites", "start": 38, "end": 48, "annotation": null}, {"text": "filled", "start": 49, "end": 55, "annotation": null}, {"text": "with", "start": 56, "end": 60, "annotation": null}, {"text": "europium", "start": 61, "end": 69, "annotation": "DOPANT"}, {"text": "-", "start": 69, "end": 70, "annotation": null}, {"text": "doped", "start": 70, "end": 75, "annotation": null}, {"text": "silica", "start": 76, "end": 82, "annotation": "BASEMAT"}, {"text": "sols", "start": 83, "end": 87, "annotation": "BASEMAT"}, {"text": "have", "start": 88, "end": 92, "annotation": null}, {"text": "been", "start": 93, "end": 97, "annotation": null}, {"text": "produced", "start": 98, "end": 106, "annotation": null}, {"text": "using", "start": 107, "end": 112, "annotation": null}, {"text": "methods", "start": 113, "end": 120, "annotation": null}, {"text": "of", "start": 121, "end": 123, "annotation": null}, {"text": "colloid", "start": 124, "end": 131, "annotation": null}, {"text": "chemistry", "start": 132, "end": 141, "annotation": null}, {"text": ".", "start": 141, "end": 142, "annotation": null}], [{"text": "According", "start": 143, "end": 152, "annotation": null}, {"text": "to", "start": 153, "end": 155, "annotation": null}, {"text": "elemental", "start": 156, "end": 165, "annotation": null}, {"text": "analysis", "start": 166, "end": 174, "annotation": null}, {"text": "data", "start": 175, "end": 179, "annotation": null}, {"text": ",", "start": 179, "end": 180, "annotation": null}, {"text": "the", "start": 181, "end": 184, "annotation": null}, {"text": "Eu", "start": 185, "end": 187, "annotation": "DOPANT"}, {"text": "concentration", "start": 188, "end": 201, "annotation": null}, {"text": "in", "start": 202, "end": 204, "annotation": null}, {"text": "the", "start": 205, "end": 208, "annotation": null}, {"text": "nanocomposites", "start": 209, "end": 223, "annotation": null}, {"text": "was", "start": 224, "end": 227, "annotation": null}, {"text": "\u223c", "start": 228, "end": 229, "annotation": "DOPMODQ"}, {"text": "30", "start": 229, "end": 231, "annotation": "DOPMODQ"}, {"text": "ppm", "start": 232, "end": 235, "annotation": "DOPMODQ"}, {"text": ".", "start": 235, "end": 236, "annotation": null}], [{"text": "A", "start": 237, "end": 238, "annotation": null}, {"text": "uniform", "start": 239, "end": 246, "annotation": null}, {"text": "europium", "start": 247, "end": 255, "annotation": null}, {"text": "distribution", "start": 256, "end": 268, "annotation": null}, {"text": "over", "start": 269, "end": 273, "annotation": null}, {"text": "the", "start": 274, "end": 277, "annotation": null}, {"text": "tetrahedral", "start": 278, "end": 289, "annotation": null}, {"text": "and", "start": 290, "end": 293, "annotation": null}, {"text": "octahedral", "start": 294, "end": 304, "annotation": null}, {"text": "pores", "start": 305, "end": 310, "annotation": null}, {"text": "of", "start": 311, "end": 313, "annotation": null}, {"text": "the", "start": 314, "end": 317, "annotation": null}, {"text": "3D", "start": 318, "end": 320, "annotation": null}, {"text": "opal", "start": 321, "end": 325, "annotation": null}, {"text": "matrix", "start": 326, "end": 332, "annotation": null}, {"text": "was", "start": 333, "end": 336, "annotation": null}, {"text": "ensured", "start": 337, "end": 344, "annotation": null}, {"text": "by", "start": 345, "end": 347, "annotation": null}, {"text": "repeatedly", "start": 348, "end": 358, "annotation": null}, {"text": "filling", "start": 359, "end": 366, "annotation": null}, {"text": "the", "start": 367, "end": 370, "annotation": null}, {"text": "opal", "start": 371, "end": 375, "annotation": null}, {"text": "pores", "start": 376, "end": 381, "annotation": null}, {"text": "with", "start": 382, "end": 386, "annotation": null}, {"text": "silica", "start": 387, "end": 393, "annotation": "BASEMAT"}, {"text": "sols", "start": 394, "end": 398, "annotation": "BASEMAT"}, {"text": "doped", "start": 399, "end": 404, "annotation": null}, {"text": "with", "start": 405, "end": 409, "annotation": null}, {"text": "europium", "start": 410, "end": 418, "annotation": "DOPANT"}, {"text": "salts", "start": 419, "end": 424, "annotation": null}, {"text": "or", "start": 425, "end": 427, "annotation": null}, {"text": "europium", "start": 428, "end": 436, "annotation": "DOPANT"}, {"text": "oxide", "start": 437, "end": 442, "annotation": null}, {"text": ".", "start": 442, "end": 443, "annotation": null}], [{"text": "Varying", "start": 444, "end": 451, "annotation": null}, {"text": "high", "start": 452, "end": 456, "annotation": null}, {"text": "-", "start": 456, "end": 457, "annotation": null}, {"text": "temperature", "start": 457, "end": 468, "annotation": null}, {"text": "annealing", "start": 469, "end": 478, "annotation": null}, {"text": "conditions", "start": 479, "end": 489, "annotation": null}, {"text": ",", "start": 489, "end": 490, "annotation": null}, {"text": "one", "start": 491, "end": 494, "annotation": null}, {"text": "can", "start": 495, "end": 498, "annotation": null}, {"text": "control", "start": 499, "end": 506, "annotation": null}, {"text": "the", "start": 507, "end": 510, "annotation": null}, {"text": "microstructure", "start": 511, "end": 525, "annotation": null}, {"text": "of", "start": 526, "end": 528, "annotation": null}, {"text": "3D", "start": 529, "end": 531, "annotation": null}, {"text": "ordered", "start": 532, "end": 539, "annotation": null}, {"text": "nanocomposites", "start": 540, "end": 554, "annotation": null}, {"text": ",", "start": 554, "end": 555, "annotation": null}, {"text": "producing", "start": 556, "end": 565, "annotation": null}, {"text": "opaline", "start": 566, "end": 573, "annotation": null}, {"text": "and", "start": 574, "end": 577, "annotation": null}, {"text": "transparent", "start": 578, "end": 589, "annotation": null}, {"text": "photonic", "start": 590, "end": 598, "annotation": null}, {"text": "crystals", "start": 599, "end": 607, "annotation": null}, {"text": ".", "start": 607, "end": 608, "annotation": null}], [{"text": "The", "start": 609, "end": 612, "annotation": null}, {"text": "microstructure", "start": 613, "end": 627, "annotation": null}, {"text": "of", "start": 628, "end": 630, "annotation": null}, {"text": "opal", "start": 631, "end": 635, "annotation": null}, {"text": "photonic", "start": 636, "end": 644, "annotation": null}, {"text": "crystals", "start": 645, "end": 653, "annotation": null}, {"text": "has", "start": 654, "end": 657, "annotation": null}, {"text": "the", "start": 658, "end": 661, "annotation": null}, {"text": "form", "start": 662, "end": 666, "annotation": null}, {"text": "of", "start": 667, "end": 669, "annotation": null}, {"text": "an", "start": 670, "end": 672, "annotation": null}, {"text": "ordered", "start": 673, "end": 680, "annotation": null}, {"text": "fcc", "start": 681, "end": 684, "annotation": null}, {"text": "lattice", "start": 685, "end": 692, "annotation": null}, {"text": "of", "start": 693, "end": 695, "annotation": null}, {"text": "amorphous", "start": 696, "end": 705, "annotation": null}, {"text": "silica", "start": 706, "end": 712, "annotation": null}, {"text": "spheres", "start": 713, "end": 720, "annotation": null}, {"text": ",", "start": 720, "end": 721, "annotation": null}, {"text": "whose", "start": 722, "end": 727, "annotation": null}, {"text": "tetrahedral", "start": 728, "end": 739, "annotation": null}, {"text": "and", "start": 740, "end": 743, "annotation": null}, {"text": "octahedral", "start": 744, "end": 754, "annotation": null}, {"text": "pores", "start": 755, "end": 760, "annotation": null}, {"text": "are", "start": 761, "end": 764, "annotation": null}, {"text": "filled", "start": 765, "end": 771, "annotation": null}, {"text": "with", "start": 772, "end": 776, "annotation": null}, {"text": "mesoporous", "start": 777, "end": 787, "annotation": null}, {"text": "europium", "start": 788, "end": 796, "annotation": "DOPANT"}, {"text": "-", "start": 796, "end": 797, "annotation": null}, {"text": "doped", "start": 797, "end": 802, "annotation": null}, {"text": "glass", "start": 803, "end": 808, "annotation": "BASEMAT"}, {"text": ".", "start": 808, "end": 809, "annotation": null}], [{"text": "Partial", "start": 810, "end": 817, "annotation": null}, {"text": "sintering", "start": 818, "end": 827, "annotation": null}, {"text": "of", "start": 828, "end": 830, "annotation": null}, {"text": "the", "start": 831, "end": 834, "annotation": null}, {"text": "silica", "start": 835, "end": 841, "annotation": null}, {"text": "spheres", "start": 842, "end": 849, "annotation": null}, {"text": "and", "start": 850, "end": 853, "annotation": null}, {"text": "mesoporous", "start": 854, "end": 864, "annotation": null}, {"text": "glass", "start": 865, "end": 870, "annotation": null}, {"text": "in", "start": 871, "end": 873, "annotation": null}, {"text": "transparent", "start": 874, "end": 885, "annotation": null}, {"text": "photonic", "start": 886, "end": 894, "annotation": null}, {"text": "crystals", "start": 895, "end": 903, "annotation": null}, {"text": "results", "start": 904, "end": 911, "annotation": null}, {"text": "in", "start": 912, "end": 914, "annotation": null}, {"text": "a", "start": 915, "end": 916, "annotation": null}, {"text": "periodic", "start": 917, "end": 925, "annotation": null}, {"text": "arrangement", "start": 926, "end": 937, "annotation": null}, {"text": "of", "start": 938, "end": 940, "annotation": null}, {"text": "quantum", "start": 941, "end": 948, "annotation": null}, {"text": "dots", "start": 949, "end": 953, "annotation": null}, {"text": "enriched", "start": 954, "end": 962, "annotation": null}, {"text": "in", "start": 963, "end": 965, "annotation": null}, {"text": "Eu", "start": 966, "end": 968, "annotation": "DOPANT"}, {"text": "-", "start": 968, "end": 969, "annotation": null}, {"text": "doped", "start": 969, "end": 974, "annotation": null}, {"text": "silica", "start": 975, "end": 981, "annotation": "BASEMAT"}, {"text": ".", "start": 981, "end": 982, "annotation": null}]], "meta": {"doi": "10.1134/S0020168514030078"}} +{"remark": "doping_annt1", "text": "Undoped and manganese doped ZnO (ZnO:Mn) films were prepared by sol gel method using spin coating technique. The effect of Mn incorporation on the structural and optical properties of the ZnO film has been investigated. The crystalline structure and orientation of the films have been investigated by using their X-ray diffraction spectra. The films exhibit a polycrystalline structure. Mn incorporation led to substantial changes in the structural characteristics of the ZnO film. The scanning electron microscopy (SEM) images of the films showed that the surface morphology of the ZnO film was affected by the Mn incorporation. The transparency of the ZnO film decreased with the Mn incorporation. The optical band gap and Urbach energy values of the ZnO and ZnO:Mn films were found to be 3.22, 3.19eV and 0.10, 0.23eV, respectively. The optical constants of these films, such as refractive index, extinction coefficient and optical dielectric constants were determined using transmittance and reflectance spectra. The refractive index dispersion curve of the films obeys the single oscillator model with dispersion parameters. The oscillator energy, Eo, and dispersion energy, Ed, of the films were determined 5.30 and 16.26eV for ZnO film and 5.80 and 12.14eV for ZnO:Mn film, respectively.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Undoped", "start": 0, "end": 7, "annotation": null}, {"text": "and", "start": 8, "end": 11, "annotation": null}, {"text": "manganese", "start": 12, "end": 21, "annotation": "DOPANT"}, {"text": "doped", "start": 22, "end": 27, "annotation": null}, {"text": "ZnO", "start": 28, "end": 31, "annotation": "BASEMAT"}, {"text": "(", "start": 32, "end": 33, "annotation": null}, {"text": "ZnO", "start": 33, "end": 36, "annotation": "BASEMAT"}, {"text": ":", "start": 36, "end": 37, "annotation": null}, {"text": "Mn", "start": 37, "end": 39, "annotation": "DOPANT"}, {"text": ")", "start": 39, "end": 40, "annotation": null}, {"text": "films", "start": 41, "end": 46, "annotation": null}, {"text": "were", "start": 47, "end": 51, "annotation": null}, {"text": "prepared", "start": 52, "end": 60, "annotation": null}, {"text": "by", "start": 61, "end": 63, "annotation": null}, {"text": "sol", "start": 64, "end": 67, "annotation": null}, {"text": "gel", "start": 68, "end": 71, "annotation": null}, {"text": "method", "start": 72, "end": 78, "annotation": null}, {"text": "using", "start": 79, "end": 84, "annotation": null}, {"text": "spin", "start": 85, "end": 89, "annotation": null}, {"text": "coating", "start": 90, "end": 97, "annotation": null}, {"text": "technique", "start": 98, "end": 107, "annotation": null}, {"text": ".", "start": 107, "end": 108, "annotation": null}], [{"text": "The", "start": 109, "end": 112, "annotation": null}, {"text": "effect", "start": 113, "end": 119, "annotation": null}, {"text": "of", "start": 120, "end": 122, "annotation": null}, {"text": "Mn", "start": 123, "end": 125, "annotation": "DOPANT"}, {"text": "incorporation", "start": 126, "end": 139, "annotation": null}, {"text": "on", "start": 140, "end": 142, "annotation": null}, {"text": "the", "start": 143, "end": 146, "annotation": null}, {"text": "structural", "start": 147, "end": 157, "annotation": null}, {"text": "and", "start": 158, "end": 161, "annotation": null}, {"text": "optical", "start": 162, "end": 169, "annotation": null}, {"text": "properties", "start": 170, "end": 180, "annotation": null}, {"text": "of", "start": 181, "end": 183, "annotation": null}, {"text": "the", "start": 184, "end": 187, "annotation": null}, {"text": "ZnO", "start": 188, "end": 191, "annotation": "BASEMAT"}, {"text": "film", "start": 192, "end": 196, "annotation": null}, {"text": "has", "start": 197, "end": 200, "annotation": null}, {"text": "been", "start": 201, "end": 205, "annotation": null}, {"text": "investigated", "start": 206, "end": 218, "annotation": null}, {"text": ".", "start": 218, "end": 219, "annotation": null}], [{"text": "The", "start": 220, "end": 223, "annotation": null}, {"text": "crystalline", "start": 224, "end": 235, "annotation": null}, {"text": "structure", "start": 236, "end": 245, "annotation": null}, {"text": "and", "start": 246, "end": 249, "annotation": null}, {"text": "orientation", "start": 250, "end": 261, "annotation": null}, {"text": "of", "start": 262, "end": 264, "annotation": null}, {"text": "the", "start": 265, "end": 268, "annotation": null}, {"text": "films", "start": 269, "end": 274, "annotation": null}, {"text": "have", "start": 275, "end": 279, "annotation": null}, {"text": "been", "start": 280, "end": 284, "annotation": null}, {"text": "investigated", "start": 285, "end": 297, "annotation": null}, {"text": "by", "start": 298, "end": 300, "annotation": null}, {"text": "using", "start": 301, "end": 306, "annotation": null}, {"text": "their", "start": 307, "end": 312, "annotation": null}, {"text": "X-ray", "start": 313, "end": 318, "annotation": null}, {"text": "diffraction", "start": 319, "end": 330, "annotation": null}, {"text": "spectra", "start": 331, "end": 338, "annotation": null}, {"text": ".", "start": 338, "end": 339, "annotation": null}], [{"text": "The", "start": 340, "end": 343, "annotation": null}, {"text": "films", "start": 344, "end": 349, "annotation": null}, {"text": "exhibit", "start": 350, "end": 357, "annotation": null}, {"text": "a", "start": 358, "end": 359, "annotation": null}, {"text": "polycrystalline", "start": 360, "end": 375, "annotation": null}, {"text": "structure", "start": 376, "end": 385, "annotation": null}, {"text": ".", "start": 385, "end": 386, "annotation": null}], [{"text": "Mn", "start": 387, "end": 389, "annotation": null}, {"text": "incorporation", "start": 390, "end": 403, "annotation": null}, {"text": "led", "start": 404, "end": 407, "annotation": null}, {"text": "to", "start": 408, "end": 410, "annotation": null}, {"text": "substantial", "start": 411, "end": 422, "annotation": null}, {"text": "changes", "start": 423, "end": 430, "annotation": null}, {"text": "in", "start": 431, "end": 433, "annotation": null}, {"text": "the", "start": 434, "end": 437, "annotation": null}, {"text": "structural", "start": 438, "end": 448, "annotation": null}, {"text": "characteristics", "start": 449, "end": 464, "annotation": null}, {"text": "of", "start": 465, "end": 467, "annotation": null}, {"text": "the", "start": 468, "end": 471, "annotation": null}, {"text": "ZnO", "start": 472, "end": 475, "annotation": null}, {"text": "film", "start": 476, "end": 480, "annotation": null}, {"text": ".", "start": 480, "end": 481, "annotation": null}], [{"text": "The", "start": 482, "end": 485, "annotation": null}, {"text": "scanning", "start": 486, "end": 494, "annotation": null}, {"text": "electron", "start": 495, "end": 503, "annotation": null}, {"text": "microscopy", "start": 504, "end": 514, "annotation": null}, {"text": "(", "start": 515, "end": 516, "annotation": null}, {"text": "SEM", "start": 516, "end": 519, "annotation": null}, {"text": ")", "start": 519, "end": 520, "annotation": null}, {"text": "images", "start": 521, "end": 527, "annotation": null}, {"text": "of", "start": 528, "end": 530, "annotation": null}, {"text": "the", "start": 531, "end": 534, "annotation": null}, {"text": "films", "start": 535, "end": 540, "annotation": null}, {"text": "showed", "start": 541, "end": 547, "annotation": null}, {"text": "that", "start": 548, "end": 552, "annotation": null}, {"text": "the", "start": 553, "end": 556, "annotation": null}, {"text": "surface", "start": 557, "end": 564, "annotation": null}, {"text": "morphology", "start": 565, "end": 575, "annotation": null}, {"text": "of", "start": 576, "end": 578, "annotation": null}, {"text": "the", "start": 579, "end": 582, "annotation": null}, {"text": "ZnO", "start": 583, "end": 586, "annotation": null}, {"text": "film", "start": 587, "end": 591, "annotation": null}, {"text": "was", "start": 592, "end": 595, "annotation": null}, {"text": "affected", "start": 596, "end": 604, "annotation": null}, {"text": "by", "start": 605, "end": 607, "annotation": null}, {"text": "the", "start": 608, "end": 611, "annotation": null}, {"text": "Mn", "start": 612, "end": 614, "annotation": null}, {"text": "incorporation", "start": 615, "end": 628, "annotation": null}, {"text": ".", "start": 628, "end": 629, "annotation": null}], [{"text": "The", "start": 630, "end": 633, "annotation": null}, {"text": "transparency", "start": 634, "end": 646, "annotation": null}, {"text": "of", "start": 647, "end": 649, "annotation": null}, {"text": "the", "start": 650, "end": 653, "annotation": null}, {"text": "ZnO", "start": 654, "end": 657, "annotation": "BASEMAT"}, {"text": "film", "start": 658, "end": 662, "annotation": null}, {"text": "decreased", "start": 663, "end": 672, "annotation": null}, {"text": "with", "start": 673, "end": 677, "annotation": null}, {"text": "the", "start": 678, "end": 681, "annotation": null}, {"text": "Mn", "start": 682, "end": 684, "annotation": "DOPANT"}, {"text": "incorporation", "start": 685, "end": 698, "annotation": null}, {"text": ".", "start": 698, "end": 699, "annotation": null}], [{"text": "The", "start": 700, "end": 703, "annotation": null}, {"text": "optical", "start": 704, "end": 711, "annotation": null}, {"text": "band", "start": 712, "end": 716, "annotation": null}, {"text": "gap", "start": 717, "end": 720, "annotation": null}, {"text": "and", "start": 721, "end": 724, "annotation": null}, {"text": "Urbach", "start": 725, "end": 731, "annotation": null}, {"text": "energy", "start": 732, "end": 738, "annotation": null}, {"text": "values", "start": 739, "end": 745, "annotation": null}, {"text": "of", "start": 746, "end": 748, "annotation": null}, {"text": "the", "start": 749, "end": 752, "annotation": null}, {"text": "ZnO", "start": 753, "end": 756, "annotation": null}, {"text": "and", "start": 757, "end": 760, "annotation": null}, {"text": "ZnO", "start": 761, "end": 764, "annotation": "BASEMAT"}, {"text": ":", "start": 764, "end": 765, "annotation": null}, {"text": "Mn", "start": 765, "end": 767, "annotation": "DOPANT"}, {"text": "films", "start": 768, "end": 773, "annotation": null}, {"text": "were", "start": 774, "end": 778, "annotation": null}, {"text": "found", "start": 779, "end": 784, "annotation": null}, {"text": "to", "start": 785, "end": 787, "annotation": null}, {"text": "be", "start": 788, "end": 790, "annotation": null}, {"text": "3.22", "start": 791, "end": 795, "annotation": null}, {"text": ",", "start": 795, "end": 796, "annotation": null}, {"text": "3.19", "start": 797, "end": 801, "annotation": null}, {"text": "eV", "start": 801, "end": 803, "annotation": null}, {"text": "and", "start": 804, "end": 807, "annotation": null}, {"text": "0.10", "start": 808, "end": 812, "annotation": null}, {"text": ",", "start": 812, "end": 813, "annotation": null}, {"text": "0.23", "start": 814, "end": 818, "annotation": null}, {"text": "eV", "start": 818, "end": 820, "annotation": null}, {"text": ",", "start": 820, "end": 821, "annotation": null}, {"text": "respectively", "start": 822, "end": 834, "annotation": null}, {"text": ".", "start": 834, "end": 835, "annotation": null}], [{"text": "The", "start": 836, "end": 839, "annotation": null}, {"text": "optical", "start": 840, "end": 847, "annotation": null}, {"text": "constants", "start": 848, "end": 857, "annotation": null}, {"text": "of", "start": 858, "end": 860, "annotation": null}, {"text": "these", "start": 861, "end": 866, "annotation": null}, {"text": "films", "start": 867, "end": 872, "annotation": null}, {"text": ",", "start": 872, "end": 873, "annotation": null}, {"text": "such", "start": 874, "end": 878, "annotation": null}, {"text": "as", "start": 879, "end": 881, "annotation": null}, {"text": "refractive", "start": 882, "end": 892, "annotation": null}, {"text": "index", "start": 893, "end": 898, "annotation": null}, {"text": ",", "start": 898, "end": 899, "annotation": null}, {"text": "extinction", "start": 900, "end": 910, "annotation": null}, {"text": "coefficient", "start": 911, "end": 922, "annotation": null}, {"text": "and", "start": 923, "end": 926, "annotation": null}, {"text": "optical", "start": 927, "end": 934, "annotation": null}, {"text": "dielectric", "start": 935, "end": 945, "annotation": null}, {"text": "constants", "start": 946, "end": 955, "annotation": null}, {"text": "were", "start": 956, "end": 960, "annotation": null}, {"text": "determined", "start": 961, "end": 971, "annotation": null}, {"text": "using", "start": 972, "end": 977, "annotation": null}, {"text": "transmittance", "start": 978, "end": 991, "annotation": null}, {"text": "and", "start": 992, "end": 995, "annotation": null}, {"text": "reflectance", "start": 996, "end": 1007, "annotation": null}, {"text": "spectra", "start": 1008, "end": 1015, "annotation": null}, {"text": ".", "start": 1015, "end": 1016, "annotation": null}], [{"text": "The", "start": 1017, "end": 1020, "annotation": null}, {"text": "refractive", "start": 1021, "end": 1031, "annotation": null}, {"text": "index", "start": 1032, "end": 1037, "annotation": null}, {"text": "dispersion", "start": 1038, "end": 1048, "annotation": null}, {"text": "curve", "start": 1049, "end": 1054, "annotation": null}, {"text": "of", "start": 1055, "end": 1057, "annotation": null}, {"text": "the", "start": 1058, "end": 1061, "annotation": null}, {"text": "films", "start": 1062, "end": 1067, "annotation": null}, {"text": "obeys", "start": 1068, "end": 1073, "annotation": null}, {"text": "the", "start": 1074, "end": 1077, "annotation": null}, {"text": "single", "start": 1078, "end": 1084, "annotation": null}, {"text": "oscillator", "start": 1085, "end": 1095, "annotation": null}, {"text": "model", "start": 1096, "end": 1101, "annotation": null}, {"text": "with", "start": 1102, "end": 1106, "annotation": null}, {"text": "dispersion", "start": 1107, "end": 1117, "annotation": null}, {"text": "parameters", "start": 1118, "end": 1128, "annotation": null}, {"text": ".", "start": 1128, "end": 1129, "annotation": null}], [{"text": "The", "start": 1130, "end": 1133, "annotation": null}, {"text": "oscillator", "start": 1134, "end": 1144, "annotation": null}, {"text": "energy", "start": 1145, "end": 1151, "annotation": null}, {"text": ",", "start": 1151, "end": 1152, "annotation": null}, {"text": "Eo", "start": 1153, "end": 1155, "annotation": null}, {"text": ",", "start": 1155, "end": 1156, "annotation": null}, {"text": "and", "start": 1157, "end": 1160, "annotation": null}, {"text": "dispersion", "start": 1161, "end": 1171, "annotation": null}, {"text": "energy", "start": 1172, "end": 1178, "annotation": null}, {"text": ",", "start": 1178, "end": 1179, "annotation": null}, {"text": "Ed", "start": 1180, "end": 1182, "annotation": null}, {"text": ",", "start": 1182, "end": 1183, "annotation": null}, {"text": "of", "start": 1184, "end": 1186, "annotation": null}, {"text": "the", "start": 1187, "end": 1190, "annotation": null}, {"text": "films", "start": 1191, "end": 1196, "annotation": null}, {"text": "were", "start": 1197, "end": 1201, "annotation": null}, {"text": "determined", "start": 1202, "end": 1212, "annotation": null}, {"text": "5.30", "start": 1213, "end": 1217, "annotation": null}, {"text": "and", "start": 1218, "end": 1221, "annotation": null}, {"text": "16.26", "start": 1222, "end": 1227, "annotation": null}, {"text": "eV", "start": 1227, "end": 1229, "annotation": null}, {"text": "for", "start": 1230, "end": 1233, "annotation": null}, {"text": "ZnO", "start": 1234, "end": 1237, "annotation": null}, {"text": "film", "start": 1238, "end": 1242, "annotation": null}, {"text": "and", "start": 1243, "end": 1246, "annotation": null}, {"text": "5.80", "start": 1247, "end": 1251, "annotation": null}, {"text": "and", "start": 1252, "end": 1255, "annotation": null}, {"text": "12.14", "start": 1256, "end": 1261, "annotation": null}, {"text": "eV", "start": 1261, "end": 1263, "annotation": null}, {"text": "for", "start": 1264, "end": 1267, "annotation": null}, {"text": "ZnO", "start": 1268, "end": 1271, "annotation": "BASEMAT"}, {"text": ":", "start": 1271, "end": 1272, "annotation": null}, {"text": "Mn", "start": 1272, "end": 1274, "annotation": "DOPANT"}, {"text": "film", "start": 1275, "end": 1279, "annotation": null}, {"text": ",", "start": 1279, "end": 1280, "annotation": null}, {"text": "respectively", "start": 1281, "end": 1293, "annotation": null}, {"text": ".", "start": 1293, "end": 1294, "annotation": null}]], "meta": {"doi": "10.1007/s10971-009-2105-0"}} +{"remark": "doping_annt3", "text": "Copyright \u00a9 2015 John Wiley & Sons, Ltd. Ca 3 SiO 4 Cl 2 co-doped with Ce 3+ ,Eu 2+ was prepared by high temperature reaction. The structure, luminescent properties and the energy transfer process of Ca 3 SiO 4 Cl 2 : Ce 3+ ,Eu 2+ were investigated. Eu 2+ ions can give enhanced green emission through Ce 3+ \u2192 Eu 2+ energy transfer in these phosphors. The green phosphor Ca 2.9775 SiO 4 Cl 2 :0.0045Ce 3+ ,0.018Eu 2+ showed intense green emission with broader excitation in the near-ultraviolet light range. A green light-emitting diode (LED) based on this phosphor was made, and bright green light from this green LED could be observed by the naked eye under 20 mA current excitation. Hence it is considered to be a good candidate for the green component of a three-band white LED.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 127, "end": 130, "annotation": null}, {"text": "structure", "start": 131, "end": 140, "annotation": null}, {"text": ",", "start": 140, "end": 141, "annotation": null}, {"text": "luminescent", "start": 142, "end": 153, "annotation": null}, {"text": "properties", "start": 154, "end": 164, "annotation": null}, {"text": "and", "start": 165, "end": 168, "annotation": null}, {"text": "the", "start": 169, "end": 172, "annotation": null}, {"text": "energy", "start": 173, "end": 179, "annotation": null}, {"text": "transfer", "start": 180, "end": 188, "annotation": null}, {"text": "process", "start": 189, "end": 196, "annotation": null}, {"text": "of", "start": 197, "end": 199, "annotation": null}, {"text": "Ca", "start": 200, "end": 202, "annotation": "BASEMAT"}, {"text": "3", "start": 203, "end": 204, "annotation": "BASEMAT"}, {"text": "SiO", "start": 205, "end": 208, "annotation": "BASEMAT"}, {"text": "4", "start": 209, "end": 210, "annotation": "BASEMAT"}, {"text": "Cl", "start": 211, "end": 213, "annotation": "BASEMAT"}, {"text": "2", "start": 214, "end": 215, "annotation": "BASEMAT"}, {"text": ":", "start": 216, "end": 217, "annotation": null}, {"text": "Ce", "start": 218, "end": 220, "annotation": "DOPANT"}, {"text": "3+", "start": 221, "end": 223, "annotation": "DOPANT"}, {"text": ",Eu", "start": 224, "end": 227, "annotation": "DOPANT"}, {"text": "2+", "start": 228, "end": 230, "annotation": "DOPANT"}, {"text": "were", "start": 231, "end": 235, "annotation": null}, {"text": "investigated", "start": 236, "end": 248, "annotation": null}, {"text": ".", "start": 248, "end": 249, "annotation": null}], [{"text": "Eu", "start": 250, "end": 252, "annotation": null}, {"text": "2+", "start": 253, "end": 255, "annotation": null}, {"text": "ions", "start": 256, "end": 260, "annotation": null}, {"text": "can", "start": 261, "end": 264, "annotation": null}, {"text": "give", "start": 265, "end": 269, "annotation": null}, {"text": "enhanced", "start": 270, "end": 278, "annotation": null}, {"text": "green", "start": 279, "end": 284, "annotation": null}, {"text": "emission", "start": 285, "end": 293, "annotation": null}, {"text": "through", "start": 294, "end": 301, "annotation": null}, {"text": "Ce", "start": 302, "end": 304, "annotation": null}, {"text": "3+", "start": 305, "end": 307, "annotation": null}, {"text": "\u2192", "start": 308, "end": 309, "annotation": null}, {"text": "Eu", "start": 310, "end": 312, "annotation": null}, {"text": "2+", "start": 313, "end": 315, "annotation": null}, {"text": "energy", "start": 316, "end": 322, "annotation": null}, {"text": "transfer", "start": 323, "end": 331, "annotation": null}, {"text": "in", "start": 332, "end": 334, "annotation": null}, {"text": "these", "start": 335, "end": 340, "annotation": null}, {"text": "phosphors", "start": 341, "end": 350, "annotation": null}, {"text": ".", "start": 350, "end": 351, "annotation": null}], [{"text": "The", "start": 352, "end": 355, "annotation": null}, {"text": "green", "start": 356, "end": 361, "annotation": null}, {"text": "phosphor", "start": 362, "end": 370, "annotation": null}, {"text": "Ca", "start": 371, "end": 373, "annotation": "BASEMAT"}, {"text": "2.9775", "start": 374, "end": 380, "annotation": "BASEMAT"}, {"text": "SiO", "start": 381, "end": 384, "annotation": "BASEMAT"}, {"text": "4", "start": 385, "end": 386, "annotation": "BASEMAT"}, {"text": "Cl", "start": 387, "end": 389, "annotation": "BASEMAT"}, {"text": "2", "start": 390, "end": 391, "annotation": "BASEMAT"}, {"text": ":", "start": 392, "end": 393, "annotation": null}, {"text": "0.0045Ce", "start": 393, "end": 401, "annotation": "DOPANT"}, {"text": "3+", "start": 402, "end": 404, "annotation": "DOPANT"}, {"text": ",0.018Eu", "start": 405, "end": 413, "annotation": "DOPANT"}, {"text": "2+", "start": 414, "end": 416, "annotation": "DOPANT"}, {"text": "showed", "start": 417, "end": 423, "annotation": null}, {"text": "intense", "start": 424, "end": 431, "annotation": null}, {"text": "green", "start": 432, "end": 437, "annotation": null}, {"text": "emission", "start": 438, "end": 446, "annotation": null}, {"text": "with", "start": 447, "end": 451, "annotation": null}, {"text": "broader", "start": 452, "end": 459, "annotation": null}, {"text": "excitation", "start": 460, "end": 470, "annotation": null}, {"text": "in", "start": 471, "end": 473, "annotation": null}, {"text": "the", "start": 474, "end": 477, "annotation": null}, {"text": "near", "start": 478, "end": 482, "annotation": null}, {"text": "-", "start": 482, "end": 483, "annotation": null}, {"text": "ultraviolet", "start": 483, "end": 494, "annotation": null}, {"text": "light", "start": 495, "end": 500, "annotation": null}, {"text": "range", "start": 501, "end": 506, "annotation": null}, {"text": ".", "start": 506, "end": 507, "annotation": null}], [{"text": "A", "start": 508, "end": 509, "annotation": null}, {"text": "green", "start": 510, "end": 515, "annotation": null}, {"text": "light", "start": 516, "end": 521, "annotation": null}, {"text": "-", "start": 521, "end": 522, "annotation": null}, {"text": "emitting", "start": 522, "end": 530, "annotation": null}, {"text": "diode", "start": 531, "end": 536, "annotation": null}, {"text": "(", "start": 537, "end": 538, "annotation": null}, {"text": "LED", "start": 538, "end": 541, "annotation": null}, {"text": ")", "start": 541, "end": 542, "annotation": null}, {"text": "based", "start": 543, "end": 548, "annotation": null}, {"text": "on", "start": 549, "end": 551, "annotation": null}, {"text": "this", "start": 552, "end": 556, "annotation": null}, {"text": "phosphor", "start": 557, "end": 565, "annotation": null}, {"text": "was", "start": 566, "end": 569, "annotation": null}, {"text": "made", "start": 570, "end": 574, "annotation": null}, {"text": ",", "start": 574, "end": 575, "annotation": null}, {"text": "and", "start": 576, "end": 579, "annotation": null}, {"text": "bright", "start": 580, "end": 586, "annotation": null}, {"text": "green", "start": 587, "end": 592, "annotation": null}, {"text": "light", "start": 593, "end": 598, "annotation": null}, {"text": "from", "start": 599, "end": 603, "annotation": null}, {"text": "this", "start": 604, "end": 608, "annotation": null}, {"text": "green", "start": 609, "end": 614, "annotation": null}, {"text": "LED", "start": 615, "end": 618, "annotation": null}, {"text": "could", "start": 619, "end": 624, "annotation": null}, {"text": "be", "start": 625, "end": 627, "annotation": null}, {"text": "observed", "start": 628, "end": 636, "annotation": null}, {"text": "by", "start": 637, "end": 639, "annotation": null}, {"text": "the", "start": 640, "end": 643, "annotation": null}, {"text": "naked", "start": 644, "end": 649, "annotation": null}, {"text": "eye", "start": 650, "end": 653, "annotation": null}, {"text": "under", "start": 654, "end": 659, "annotation": null}, {"text": "20", "start": 660, "end": 662, "annotation": null}, {"text": "mA", "start": 663, "end": 665, "annotation": null}, {"text": "current", "start": 666, "end": 673, "annotation": null}, {"text": "excitation", "start": 674, "end": 684, "annotation": null}, {"text": ".", "start": 684, "end": 685, "annotation": null}], [{"text": "Hence", "start": 686, "end": 691, "annotation": null}, {"text": "it", "start": 692, "end": 694, "annotation": null}, {"text": "is", "start": 695, "end": 697, "annotation": null}, {"text": "considered", "start": 698, "end": 708, "annotation": null}, {"text": "to", "start": 709, "end": 711, "annotation": null}, {"text": "be", "start": 712, "end": 714, "annotation": null}, {"text": "a", "start": 715, "end": 716, "annotation": null}, {"text": "good", "start": 717, "end": 721, "annotation": null}, {"text": "candidate", "start": 722, "end": 731, "annotation": null}, {"text": "for", "start": 732, "end": 735, "annotation": null}, {"text": "the", "start": 736, "end": 739, "annotation": null}, {"text": "green", "start": 740, "end": 745, "annotation": null}, {"text": "component", "start": 746, "end": 755, "annotation": null}, {"text": "of", "start": 756, "end": 758, "annotation": null}, {"text": "a", "start": 759, "end": 760, "annotation": null}, {"text": "three", "start": 761, "end": 766, "annotation": null}, {"text": "-", "start": 766, "end": 767, "annotation": null}, {"text": "band", "start": 767, "end": 771, "annotation": null}, {"text": "white", "start": 772, "end": 777, "annotation": null}, {"text": "LED", "start": 778, "end": 781, "annotation": null}, {"text": ".", "start": 781, "end": 782, "annotation": null}]], "meta": {"doi": "10.1002/bio.2922"}} {"text": "Pd-doped Bi2MoO6 was prepared and investigated for the first time. The prepared samples were characterized by their crystal structures, chemical states, atomic compositions, optical properties and morphologies. The photocatalytic activities of prepared samples under visible light irradiation were determined by degradation of phenol, which is widely found in wastewater from many industrial processes and is difficult to destroy. The sample exhibiting the highest removal efficiency with respect to the degradation of phenol contained 2% Pd. The enhancement effect can be interpreted as the integrated effects of a reduction in the rate of electron-hole recombination, surface plasmon resonance, and production of Cl0. This work sheds light on the potential applications of noble metal nanoparticles in visible light-driven photocatalysis.", "meta": {"doi": "10.1016/j.apsusc.2016.08.113"}, "_input_hash": 94036660, "_task_hash": -565512364, "tokens": [[{"text": "Pd", "start": 0, "end": 2, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 3, "end": 4, "id": 1, "annotation": null}, {"text": "doped", "start": 5, "end": 10, "id": 2, "annotation": null}, {"text": "Bi2MoO6", "start": 11, "end": 18, "id": 3, "annotation": "BASEMAT"}, {"text": "was", "start": 19, "end": 22, "id": 4, "annotation": null}, {"text": "prepared", "start": 23, "end": 31, "id": 5, "annotation": null}, {"text": "and", "start": 32, "end": 35, "id": 6, "annotation": null}, {"text": "investigated", "start": 36, "end": 48, "id": 7, "annotation": null}, {"text": "for", "start": 49, "end": 52, "id": 8, "annotation": null}, {"text": "the", "start": 53, "end": 56, "id": 9, "annotation": null}, {"text": "first", "start": 57, "end": 62, "id": 10, "annotation": null}, {"text": "time", "start": 63, "end": 67, "id": 11, "annotation": null}, {"text": ".", "start": 68, "end": 69, "id": 12, "annotation": null}], [{"text": "The", "start": 70, "end": 73, "id": 13, "annotation": null}, {"text": "prepared", "start": 74, "end": 82, "id": 14, "annotation": null}, {"text": "samples", "start": 83, "end": 90, "id": 15, "annotation": null}, {"text": "were", "start": 91, "end": 95, "id": 16, "annotation": null}, {"text": "characterized", "start": 96, "end": 109, "id": 17, "annotation": null}, {"text": "by", "start": 110, "end": 112, "id": 18, "annotation": null}, {"text": "their", "start": 113, "end": 118, "id": 19, "annotation": null}, {"text": "crystal", "start": 119, "end": 126, "id": 20, "annotation": null}, {"text": "structures", "start": 127, "end": 137, "id": 21, "annotation": null}, {"text": ",", "start": 138, "end": 139, "id": 22, "annotation": null}, {"text": "chemical", "start": 140, "end": 148, "id": 23, "annotation": null}, {"text": "states", "start": 149, "end": 155, "id": 24, "annotation": null}, {"text": ",", "start": 156, "end": 157, "id": 25, "annotation": null}, {"text": "atomic", "start": 158, "end": 164, "id": 26, "annotation": null}, {"text": "compositions", "start": 165, "end": 177, "id": 27, "annotation": null}, {"text": ",", "start": 178, "end": 179, "id": 28, "annotation": null}, {"text": "optical", "start": 180, "end": 187, "id": 29, "annotation": null}, {"text": "properties", "start": 188, "end": 198, "id": 30, "annotation": null}, {"text": "and", "start": 199, "end": 202, "id": 31, "annotation": null}, {"text": "morphologies", "start": 203, "end": 215, "id": 32, "annotation": null}, {"text": ".", "start": 216, "end": 217, "id": 33, "annotation": null}], [{"text": "The", "start": 218, "end": 221, "id": 34, "annotation": null}, {"text": "photocatalytic", "start": 222, "end": 236, "id": 35, "annotation": null}, {"text": "activities", "start": 237, "end": 247, "id": 36, "annotation": null}, {"text": "of", "start": 248, "end": 250, "id": 37, "annotation": null}, {"text": "prepared", "start": 251, "end": 259, "id": 38, "annotation": null}, {"text": "samples", "start": 260, "end": 267, "id": 39, "annotation": null}, {"text": "under", "start": 268, "end": 273, "id": 40, "annotation": null}, {"text": "visible", "start": 274, "end": 281, "id": 41, "annotation": null}, {"text": "light", "start": 282, "end": 287, "id": 42, "annotation": null}, {"text": "irradiation", "start": 288, "end": 299, "id": 43, "annotation": null}, {"text": "were", "start": 300, "end": 304, "id": 44, "annotation": null}, {"text": "determined", "start": 305, "end": 315, "id": 45, "annotation": null}, {"text": "by", "start": 316, "end": 318, "id": 46, "annotation": null}, {"text": "degradation", "start": 319, "end": 330, "id": 47, "annotation": null}, {"text": "of", "start": 331, "end": 333, "id": 48, "annotation": null}, {"text": "phenol", "start": 334, "end": 340, "id": 49, "annotation": null}, {"text": ",", "start": 341, "end": 342, "id": 50, "annotation": null}, {"text": "which", "start": 343, "end": 348, "id": 51, "annotation": null}, {"text": "is", "start": 349, "end": 351, "id": 52, "annotation": null}, {"text": "widely", "start": 352, "end": 358, "id": 53, "annotation": null}, {"text": "found", "start": 359, "end": 364, "id": 54, "annotation": null}, {"text": "in", "start": 365, "end": 367, "id": 55, "annotation": null}, {"text": "wastewater", "start": 368, "end": 378, "id": 56, "annotation": null}, {"text": "from", "start": 379, "end": 383, "id": 57, "annotation": null}, {"text": "many", "start": 384, "end": 388, "id": 58, "annotation": null}, {"text": "industrial", "start": 389, "end": 399, "id": 59, "annotation": null}, {"text": "processes", "start": 400, "end": 409, "id": 60, "annotation": null}, {"text": "and", "start": 410, "end": 413, "id": 61, "annotation": null}, {"text": "is", "start": 414, "end": 416, "id": 62, "annotation": null}, {"text": "difficult", "start": 417, "end": 426, "id": 63, "annotation": null}, {"text": "to", "start": 427, "end": 429, "id": 64, "annotation": null}, {"text": "destroy", "start": 430, "end": 437, "id": 65, "annotation": null}, {"text": ".", "start": 438, "end": 439, "id": 66, "annotation": null}], [{"text": "The", "start": 440, "end": 443, "id": 67, "annotation": null}, {"text": "sample", "start": 444, "end": 450, "id": 68, "annotation": "BASEMAT"}, {"text": "exhibiting", "start": 451, "end": 461, "id": 69, "annotation": null}, {"text": "the", "start": 462, "end": 465, "id": 70, "annotation": null}, {"text": "highest", "start": 466, "end": 473, "id": 71, "annotation": null}, {"text": "removal", "start": 474, "end": 481, "id": 72, "annotation": null}, {"text": "efficiency", "start": 482, "end": 492, "id": 73, "annotation": null}, {"text": "with", "start": 493, "end": 497, "id": 74, "annotation": null}, {"text": "respect", "start": 498, "end": 505, "id": 75, "annotation": null}, {"text": "to", "start": 506, "end": 508, "id": 76, "annotation": null}, {"text": "the", "start": 509, "end": 512, "id": 77, "annotation": null}, {"text": "degradation", "start": 513, "end": 524, "id": 78, "annotation": null}, {"text": "of", "start": 525, "end": 527, "id": 79, "annotation": null}, {"text": "phenol", "start": 528, "end": 534, "id": 80, "annotation": null}, {"text": "contained", "start": 535, "end": 544, "id": 81, "annotation": null}, {"text": "2", "start": 545, "end": 546, "id": 82, "annotation": "DOPMODQ"}, {"text": "%", "start": 547, "end": 548, "id": 83, "annotation": "DOPMODQ"}, {"text": "Pd", "start": 549, "end": 551, "id": 84, "annotation": "DOPANT"}, {"text": ".", "start": 552, "end": 553, "id": 85, "annotation": null}], [{"text": "The", "start": 554, "end": 557, "id": 86, "annotation": null}, {"text": "enhancement", "start": 558, "end": 569, "id": 87, "annotation": null}, {"text": "effect", "start": 570, "end": 576, "id": 88, "annotation": null}, {"text": "can", "start": 577, "end": 580, "id": 89, "annotation": null}, {"text": "be", "start": 581, "end": 583, "id": 90, "annotation": null}, {"text": "interpreted", "start": 584, "end": 595, "id": 91, "annotation": null}, {"text": "as", "start": 596, "end": 598, "id": 92, "annotation": null}, {"text": "the", "start": 599, "end": 602, "id": 93, "annotation": null}, {"text": "integrated", "start": 603, "end": 613, "id": 94, "annotation": null}, {"text": "effects", "start": 614, "end": 621, "id": 95, "annotation": null}, {"text": "of", "start": 622, "end": 624, "id": 96, "annotation": null}, {"text": "a", "start": 625, "end": 626, "id": 97, "annotation": null}, {"text": "reduction", "start": 627, "end": 636, "id": 98, "annotation": null}, {"text": "in", "start": 637, "end": 639, "id": 99, "annotation": null}, {"text": "the", "start": 640, "end": 643, "id": 100, "annotation": null}, {"text": "rate", "start": 644, "end": 648, "id": 101, "annotation": null}, {"text": "of", "start": 649, "end": 651, "id": 102, "annotation": null}, {"text": "electron", "start": 652, "end": 660, "id": 103, "annotation": null}, {"text": "-", "start": 661, "end": 662, "id": 104, "annotation": null}, {"text": "hole", "start": 663, "end": 667, "id": 105, "annotation": null}, {"text": "recombination", "start": 668, "end": 681, "id": 106, "annotation": null}, {"text": ",", "start": 682, "end": 683, "id": 107, "annotation": null}, {"text": "surface", "start": 684, "end": 691, "id": 108, "annotation": null}, {"text": "plasmon", "start": 692, "end": 699, "id": 109, "annotation": null}, {"text": "resonance", "start": 700, "end": 709, "id": 110, "annotation": null}, {"text": ",", "start": 710, "end": 711, "id": 111, "annotation": null}, {"text": "and", "start": 712, "end": 715, "id": 112, "annotation": null}, {"text": "production", "start": 716, "end": 726, "id": 113, "annotation": null}, {"text": "of", "start": 727, "end": 729, "id": 114, "annotation": null}, {"text": "Cl0", "start": 730, "end": 733, "id": 115, "annotation": null}, {"text": ".", "start": 734, "end": 735, "id": 116, "annotation": null}], [{"text": "This", "start": 736, "end": 740, "id": 117, "annotation": null}, {"text": "work", "start": 741, "end": 745, "id": 118, "annotation": null}, {"text": "sheds", "start": 746, "end": 751, "id": 119, "annotation": null}, {"text": "light", "start": 752, "end": 757, "id": 120, "annotation": null}, {"text": "on", "start": 758, "end": 760, "id": 121, "annotation": null}, {"text": "the", "start": 761, "end": 764, "id": 122, "annotation": null}, {"text": "potential", "start": 765, "end": 774, "id": 123, "annotation": null}, {"text": "applications", "start": 775, "end": 787, "id": 124, "annotation": null}, {"text": "of", "start": 788, "end": 790, "id": 125, "annotation": null}, {"text": "noble", "start": 791, "end": 796, "id": 126, "annotation": null}, {"text": "metal", "start": 797, "end": 802, "id": 127, "annotation": null}, {"text": "nanoparticles", "start": 803, "end": 816, "id": 128, "annotation": null}, {"text": "in", "start": 817, "end": 819, "id": 129, "annotation": null}, {"text": "visible", "start": 820, "end": 827, "id": 130, "annotation": null}, {"text": "light", "start": 828, "end": 833, "id": 131, "annotation": null}, {"text": "-", "start": 834, "end": 835, "id": 132, "annotation": null}, {"text": "driven", "start": 836, "end": 842, "id": 133, "annotation": null}, {"text": "photocatalysis", "start": 843, "end": 857, "id": 134, "annotation": null}, {"text": ".", "start": 858, "end": 859, "id": 135, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Implantation of HBT by helium ions has been an accepted means for achieving the desired low leakage currents. In the past, two implant steps of doses 1E+14 and 4E+13ions/cm2, at energies 200 and 400KeV, respectively, were shown to adequately isolate the HBT. The present work shows a medium dose (4E+13ions/cm2) of the low-energy implant can result in an isolation resistance an order of magnitude higher than that of a high-dose implant. As a result, the leakage current is reduced. However, the breakdown voltage is also lower compared to its value at higher dose. Tunneling breakdown has been confirmed as being the major contributor to the observed breakdown, by its negative temperature coefficient. In addition, infrared (IR) emission imaging also showed that impact ionization may be playing a role for breakdown at higher electrical field. It is proposed that large As vacancies generated by helium ions makes the GaAs epitaxial layer more p-type compared to the highly doped n+-GaAs, where the collector contact is built on, thus causing it to display a weak diode-like behavior. Finally, the temperature and dose dependences of both the leakage current and the breakdown voltage will be discussed in the context of damage accumulation and junction characteristics.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Implantation", "start": 0, "end": 12, "annotation": null}, {"text": "of", "start": 13, "end": 15, "annotation": null}, {"text": "HBT", "start": 16, "end": 19, "annotation": null}, {"text": "by", "start": 20, "end": 22, "annotation": null}, {"text": "helium", "start": 23, "end": 29, "annotation": null}, {"text": "ions", "start": 30, "end": 34, "annotation": null}, {"text": "has", "start": 35, "end": 38, "annotation": null}, {"text": "been", "start": 39, "end": 43, "annotation": null}, {"text": "an", "start": 44, "end": 46, "annotation": null}, {"text": "accepted", "start": 47, "end": 55, "annotation": null}, {"text": "means", "start": 56, "end": 61, "annotation": null}, {"text": "for", "start": 62, "end": 65, "annotation": null}, {"text": "achieving", "start": 66, "end": 75, "annotation": null}, {"text": "the", "start": 76, "end": 79, "annotation": null}, {"text": "desired", "start": 80, "end": 87, "annotation": null}, {"text": "low", "start": 88, "end": 91, "annotation": null}, {"text": "leakage", "start": 92, "end": 99, "annotation": null}, {"text": "currents", "start": 100, "end": 108, "annotation": null}, {"text": ".", "start": 108, "end": 109, "annotation": null}], [{"text": "In", "start": 110, "end": 112, "annotation": null}, {"text": "the", "start": 113, "end": 116, "annotation": null}, {"text": "past", "start": 117, "end": 121, "annotation": null}, {"text": ",", "start": 121, "end": 122, "annotation": null}, {"text": "two", "start": 123, "end": 126, "annotation": null}, {"text": "implant", "start": 127, "end": 134, "annotation": null}, {"text": "steps", "start": 135, "end": 140, "annotation": null}, {"text": "of", "start": 141, "end": 143, "annotation": null}, {"text": "doses", "start": 144, "end": 149, "annotation": null}, {"text": "1E+14", "start": 150, "end": 155, "annotation": null}, {"text": "and", "start": 156, "end": 159, "annotation": null}, {"text": "4E+13ions", "start": 160, "end": 169, "annotation": null}, {"text": "/", "start": 169, "end": 170, "annotation": null}, {"text": "cm2", "start": 170, "end": 173, "annotation": null}, {"text": ",", "start": 173, "end": 174, "annotation": null}, {"text": "at", "start": 175, "end": 177, "annotation": null}, {"text": "energies", "start": 178, "end": 186, "annotation": null}, {"text": "200", "start": 187, "end": 190, "annotation": null}, {"text": "and", "start": 191, "end": 194, "annotation": null}, {"text": "400KeV", "start": 195, "end": 201, "annotation": null}, {"text": ",", "start": 201, "end": 202, "annotation": null}, {"text": "respectively", "start": 203, "end": 215, "annotation": null}, {"text": ",", "start": 215, "end": 216, "annotation": null}, {"text": "were", "start": 217, "end": 221, "annotation": null}, {"text": "shown", "start": 222, "end": 227, "annotation": null}, {"text": "to", "start": 228, "end": 230, "annotation": null}, {"text": "adequately", "start": 231, "end": 241, "annotation": null}, {"text": "isolate", "start": 242, "end": 249, "annotation": null}, {"text": "the", "start": 250, "end": 253, "annotation": null}, {"text": "HBT", "start": 254, "end": 257, "annotation": null}, {"text": ".", "start": 257, "end": 258, "annotation": null}], [{"text": "The", "start": 259, "end": 262, "annotation": null}, {"text": "present", "start": 263, "end": 270, "annotation": null}, {"text": "work", "start": 271, "end": 275, "annotation": null}, {"text": "shows", "start": 276, "end": 281, "annotation": null}, {"text": "a", "start": 282, "end": 283, "annotation": null}, {"text": "medium", "start": 284, "end": 290, "annotation": null}, {"text": "dose", "start": 291, "end": 295, "annotation": null}, {"text": "(", "start": 296, "end": 297, "annotation": null}, {"text": "4E+13ions", "start": 297, "end": 306, "annotation": null}, {"text": "/", "start": 306, "end": 307, "annotation": null}, {"text": "cm2", "start": 307, "end": 310, "annotation": null}, {"text": ")", "start": 310, "end": 311, "annotation": null}, {"text": "of", "start": 312, "end": 314, "annotation": null}, {"text": "the", "start": 315, "end": 318, "annotation": null}, {"text": "low", "start": 319, "end": 322, "annotation": null}, {"text": "-", "start": 322, "end": 323, "annotation": null}, {"text": "energy", "start": 323, "end": 329, "annotation": null}, {"text": "implant", "start": 330, "end": 337, "annotation": null}, {"text": "can", "start": 338, "end": 341, "annotation": null}, {"text": "result", "start": 342, "end": 348, "annotation": null}, {"text": "in", "start": 349, "end": 351, "annotation": null}, {"text": "an", "start": 352, "end": 354, "annotation": null}, {"text": "isolation", "start": 355, "end": 364, "annotation": null}, {"text": "resistance", "start": 365, "end": 375, "annotation": null}, {"text": "an", "start": 376, "end": 378, "annotation": null}, {"text": "order", "start": 379, "end": 384, "annotation": null}, {"text": "of", "start": 385, "end": 387, "annotation": null}, {"text": "magnitude", "start": 388, "end": 397, "annotation": null}, {"text": "higher", "start": 398, "end": 404, "annotation": null}, {"text": "than", "start": 405, "end": 409, "annotation": null}, {"text": "that", "start": 410, "end": 414, "annotation": null}, {"text": "of", "start": 415, "end": 417, "annotation": null}, {"text": "a", "start": 418, "end": 419, "annotation": null}, {"text": "high", "start": 420, "end": 424, "annotation": null}, {"text": "-", "start": 424, "end": 425, "annotation": null}, {"text": "dose", "start": 425, "end": 429, "annotation": null}, {"text": "implant", "start": 430, "end": 437, "annotation": null}, {"text": ".", "start": 437, "end": 438, "annotation": null}], [{"text": "As", "start": 439, "end": 441, "annotation": null}, {"text": "a", "start": 442, "end": 443, "annotation": null}, {"text": "result", "start": 444, "end": 450, "annotation": null}, {"text": ",", "start": 450, "end": 451, "annotation": null}, {"text": "the", "start": 452, "end": 455, "annotation": null}, {"text": "leakage", "start": 456, "end": 463, "annotation": null}, {"text": "current", "start": 464, "end": 471, "annotation": null}, {"text": "is", "start": 472, "end": 474, "annotation": null}, {"text": "reduced", "start": 475, "end": 482, "annotation": null}, {"text": ".", "start": 482, "end": 483, "annotation": null}], [{"text": "However", "start": 484, "end": 491, "annotation": null}, {"text": ",", "start": 491, "end": 492, "annotation": null}, {"text": "the", "start": 493, "end": 496, "annotation": null}, {"text": "breakdown", "start": 497, "end": 506, "annotation": null}, {"text": "voltage", "start": 507, "end": 514, "annotation": null}, {"text": "is", "start": 515, "end": 517, "annotation": null}, {"text": "also", "start": 518, "end": 522, "annotation": null}, {"text": "lower", "start": 523, "end": 528, "annotation": null}, {"text": "compared", "start": 529, "end": 537, "annotation": null}, {"text": "to", "start": 538, "end": 540, "annotation": null}, {"text": "its", "start": 541, "end": 544, "annotation": null}, {"text": "value", "start": 545, "end": 550, "annotation": null}, {"text": "at", "start": 551, "end": 553, "annotation": null}, {"text": "higher", "start": 554, "end": 560, "annotation": null}, {"text": "dose", "start": 561, "end": 565, "annotation": null}, {"text": ".", "start": 565, "end": 566, "annotation": null}], [{"text": "Tunneling", "start": 567, "end": 576, "annotation": null}, {"text": "breakdown", "start": 577, "end": 586, "annotation": null}, {"text": "has", "start": 587, "end": 590, "annotation": null}, {"text": "been", "start": 591, "end": 595, "annotation": null}, {"text": "confirmed", "start": 596, "end": 605, "annotation": null}, {"text": "as", "start": 606, "end": 608, "annotation": null}, {"text": "being", "start": 609, "end": 614, "annotation": null}, {"text": "the", "start": 615, "end": 618, "annotation": null}, {"text": "major", "start": 619, "end": 624, "annotation": null}, {"text": "contributor", "start": 625, "end": 636, "annotation": null}, {"text": "to", "start": 637, "end": 639, "annotation": null}, {"text": "the", "start": 640, "end": 643, "annotation": null}, {"text": "observed", "start": 644, "end": 652, "annotation": null}, {"text": "breakdown", "start": 653, "end": 662, "annotation": null}, {"text": ",", "start": 662, "end": 663, "annotation": null}, {"text": "by", "start": 664, "end": 666, "annotation": null}, {"text": "its", "start": 667, "end": 670, "annotation": null}, {"text": "negative", "start": 671, "end": 679, "annotation": null}, {"text": "temperature", "start": 680, "end": 691, "annotation": null}, {"text": "coefficient", "start": 692, "end": 703, "annotation": null}, {"text": ".", "start": 703, "end": 704, "annotation": null}], [{"text": "In", "start": 705, "end": 707, "annotation": null}, {"text": "addition", "start": 708, "end": 716, "annotation": null}, {"text": ",", "start": 716, "end": 717, "annotation": null}, {"text": "infrared", "start": 718, "end": 726, "annotation": null}, {"text": "(", "start": 727, "end": 728, "annotation": null}, {"text": "IR", "start": 728, "end": 730, "annotation": null}, {"text": ")", "start": 730, "end": 731, "annotation": null}, {"text": "emission", "start": 732, "end": 740, "annotation": null}, {"text": "imaging", "start": 741, "end": 748, "annotation": null}, {"text": "also", "start": 749, "end": 753, "annotation": null}, {"text": "showed", "start": 754, "end": 760, "annotation": null}, {"text": "that", "start": 761, "end": 765, "annotation": null}, {"text": "impact", "start": 766, "end": 772, "annotation": null}, {"text": "ionization", "start": 773, "end": 783, "annotation": null}, {"text": "may", "start": 784, "end": 787, "annotation": null}, {"text": "be", "start": 788, "end": 790, "annotation": null}, {"text": "playing", "start": 791, "end": 798, "annotation": null}, {"text": "a", "start": 799, "end": 800, "annotation": null}, {"text": "role", "start": 801, "end": 805, "annotation": null}, {"text": "for", "start": 806, "end": 809, "annotation": null}, {"text": "breakdown", "start": 810, "end": 819, "annotation": null}, {"text": "at", "start": 820, "end": 822, "annotation": null}, {"text": "higher", "start": 823, "end": 829, "annotation": null}, {"text": "electrical", "start": 830, "end": 840, "annotation": null}, {"text": "field", "start": 841, "end": 846, "annotation": null}, {"text": ".", "start": 846, "end": 847, "annotation": null}], [{"text": "It", "start": 848, "end": 850, "annotation": null}, {"text": "is", "start": 851, "end": 853, "annotation": null}, {"text": "proposed", "start": 854, "end": 862, "annotation": null}, {"text": "that", "start": 863, "end": 867, "annotation": null}, {"text": "large", "start": 868, "end": 873, "annotation": null}, {"text": "As", "start": 874, "end": 876, "annotation": null}, {"text": "vacancies", "start": 877, "end": 886, "annotation": null}, {"text": "generated", "start": 887, "end": 896, "annotation": null}, {"text": "by", "start": 897, "end": 899, "annotation": null}, {"text": "helium", "start": 900, "end": 906, "annotation": null}, {"text": "ions", "start": 907, "end": 911, "annotation": null}, {"text": "makes", "start": 912, "end": 917, "annotation": null}, {"text": "the", "start": 918, "end": 921, "annotation": null}, {"text": "GaAs", "start": 922, "end": 926, "annotation": null}, {"text": "epitaxial", "start": 927, "end": 936, "annotation": null}, {"text": "layer", "start": 937, "end": 942, "annotation": null}, {"text": "more", "start": 943, "end": 947, "annotation": null}, {"text": "p", "start": 948, "end": 949, "annotation": null}, {"text": "-", "start": 949, "end": 950, "annotation": null}, {"text": "type", "start": 950, "end": 954, "annotation": null}, {"text": "compared", "start": 955, "end": 963, "annotation": null}, {"text": "to", "start": 964, "end": 966, "annotation": null}, {"text": "the", "start": 967, "end": 970, "annotation": null}, {"text": "highly", "start": 971, "end": 977, "annotation": null}, {"text": "doped", "start": 978, "end": 983, "annotation": null}, {"text": "n+", "start": 984, "end": 986, "annotation": "DOPANT"}, {"text": "-", "start": 986, "end": 987, "annotation": null}, {"text": "GaAs", "start": 987, "end": 991, "annotation": "BASEMAT"}, {"text": ",", "start": 991, "end": 992, "annotation": null}, {"text": "where", "start": 993, "end": 998, "annotation": null}, {"text": "the", "start": 999, "end": 1002, "annotation": null}, {"text": "collector", "start": 1003, "end": 1012, "annotation": null}, {"text": "contact", "start": 1013, "end": 1020, "annotation": null}, {"text": "is", "start": 1021, "end": 1023, "annotation": null}, {"text": "built", "start": 1024, "end": 1029, "annotation": null}, {"text": "on", "start": 1030, "end": 1032, "annotation": null}, {"text": ",", "start": 1032, "end": 1033, "annotation": null}, {"text": "thus", "start": 1034, "end": 1038, "annotation": null}, {"text": "causing", "start": 1039, "end": 1046, "annotation": null}, {"text": "it", "start": 1047, "end": 1049, "annotation": null}, {"text": "to", "start": 1050, "end": 1052, "annotation": null}, {"text": "display", "start": 1053, "end": 1060, "annotation": null}, {"text": "a", "start": 1061, "end": 1062, "annotation": null}, {"text": "weak", "start": 1063, "end": 1067, "annotation": null}, {"text": "diode", "start": 1068, "end": 1073, "annotation": null}, {"text": "-", "start": 1073, "end": 1074, "annotation": null}, {"text": "like", "start": 1074, "end": 1078, "annotation": null}, {"text": "behavior", "start": 1079, "end": 1087, "annotation": null}, {"text": ".", "start": 1087, "end": 1088, "annotation": null}], [{"text": "Finally", "start": 1089, "end": 1096, "annotation": null}, {"text": ",", "start": 1096, "end": 1097, "annotation": null}, {"text": "the", "start": 1098, "end": 1101, "annotation": null}, {"text": "temperature", "start": 1102, "end": 1113, "annotation": null}, {"text": "and", "start": 1114, "end": 1117, "annotation": null}, {"text": "dose", "start": 1118, "end": 1122, "annotation": null}, {"text": "dependences", "start": 1123, "end": 1134, "annotation": null}, {"text": "of", "start": 1135, "end": 1137, "annotation": null}, {"text": "both", "start": 1138, "end": 1142, "annotation": null}, {"text": "the", "start": 1143, "end": 1146, "annotation": null}, {"text": "leakage", "start": 1147, "end": 1154, "annotation": null}, {"text": "current", "start": 1155, "end": 1162, "annotation": null}, {"text": "and", "start": 1163, "end": 1166, "annotation": null}, {"text": "the", "start": 1167, "end": 1170, "annotation": null}, {"text": "breakdown", "start": 1171, "end": 1180, "annotation": null}, {"text": "voltage", "start": 1181, "end": 1188, "annotation": null}, {"text": "will", "start": 1189, "end": 1193, "annotation": null}, {"text": "be", "start": 1194, "end": 1196, "annotation": null}, {"text": "discussed", "start": 1197, "end": 1206, "annotation": null}, {"text": "in", "start": 1207, "end": 1209, "annotation": null}, {"text": "the", "start": 1210, "end": 1213, "annotation": null}, {"text": "context", "start": 1214, "end": 1221, "annotation": null}, {"text": "of", "start": 1222, "end": 1224, "annotation": null}, {"text": "damage", "start": 1225, "end": 1231, "annotation": null}, {"text": "accumulation", "start": 1232, "end": 1244, "annotation": null}, {"text": "and", "start": 1245, "end": 1248, "annotation": null}, {"text": "junction", "start": 1249, "end": 1257, "annotation": null}, {"text": "characteristics", "start": 1258, "end": 1273, "annotation": null}, {"text": ".", "start": 1273, "end": 1274, "annotation": null}]]} -{"remark": "doping_annt1", "text": "The multicolor intense visible emission from Er3+and Tm3+ions codoped in TeO2-PbO glass upon excitation at \u223c1064 nm radiation from a nanosecond pulsed Nd:YAG laser has been investigated. The optical parameters of erbium ions codoped in Tm3+-TeO2 -PbO glass by using the Judd-Ofelt theory have been determined from the optical absorption spectra. No upconversion (UC) emission was seen in the singly doped Er3+-doped glass upon excitation at 1064 nm. Through the experiments, it has been found that, in the codoped glass, the UC luminescence from Er3 (2.0 mol. %) in green and red regions corresponding to the 2H11?2 \u2192 4I15?2, 4S3?2 \u2192 4I15?2, and4F9?2 \u2192 4I15?2 transitions is strengthened about \u223c40, \u223c60, and \u223c130 fold, respectively, at 2.0 mol.%Tm3+ion concentration in codoped glass. The observed UC emissions and the enhancement observed in their intensity have been explained on the basis of efficient energy transfer and cross-relaxation energy transfer processes. \u00a9 2014 Optical Society of America.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "multicolor", "start": 4, "end": 14, "annotation": null}, {"text": "intense", "start": 15, "end": 22, "annotation": null}, {"text": "visible", "start": 23, "end": 30, "annotation": null}, {"text": "emission", "start": 31, "end": 39, "annotation": null}, {"text": "from", "start": 40, "end": 44, "annotation": null}, {"text": "Er3+and", "start": 45, "end": 52, "annotation": "DOPANT"}, {"text": "Tm3+ions", "start": 53, "end": 61, "annotation": "DOPANT"}, {"text": "codoped", "start": 62, "end": 69, "annotation": null}, {"text": "in", "start": 70, "end": 72, "annotation": null}, {"text": "TeO2", "start": 73, "end": 77, "annotation": "BASEMAT"}, {"text": "-", "start": 77, "end": 78, "annotation": "BASEMAT"}, {"text": "PbO", "start": 78, "end": 81, "annotation": "BASEMAT"}, {"text": "glass", "start": 82, "end": 87, "annotation": null}, {"text": "upon", "start": 88, "end": 92, "annotation": null}, {"text": "excitation", "start": 93, "end": 103, "annotation": null}, {"text": "at", "start": 104, "end": 106, "annotation": null}, {"text": "\u223c", "start": 107, "end": 108, "annotation": null}, {"text": "1064", "start": 108, "end": 112, "annotation": null}, {"text": "nm", "start": 113, "end": 115, "annotation": null}, {"text": "radiation", "start": 116, "end": 125, "annotation": null}, {"text": "from", "start": 126, "end": 130, "annotation": null}, {"text": "a", "start": 131, "end": 132, "annotation": null}, {"text": "nanosecond", "start": 133, "end": 143, "annotation": null}, {"text": "pulsed", "start": 144, "end": 150, "annotation": null}, {"text": "Nd", "start": 151, "end": 153, "annotation": null}, {"text": ":", "start": 153, "end": 154, "annotation": null}, {"text": "YAG", "start": 154, "end": 157, "annotation": null}, {"text": "laser", "start": 158, "end": 163, "annotation": null}, {"text": "has", "start": 164, "end": 167, "annotation": null}, {"text": "been", "start": 168, "end": 172, "annotation": null}, {"text": "investigated", "start": 173, "end": 185, "annotation": null}, {"text": ".", "start": 185, "end": 186, "annotation": null}], [{"text": "The", "start": 187, "end": 190, "annotation": null}, {"text": "optical", "start": 191, "end": 198, "annotation": null}, {"text": "parameters", "start": 199, "end": 209, "annotation": null}, {"text": "of", "start": 210, "end": 212, "annotation": null}, {"text": "erbium", "start": 213, "end": 219, "annotation": "DOPANT"}, {"text": "ions", "start": 220, "end": 224, "annotation": null}, {"text": "codoped", "start": 225, "end": 232, "annotation": null}, {"text": "in", "start": 233, "end": 235, "annotation": null}, {"text": "Tm3+", "start": 236, "end": 240, "annotation": "DOPANT"}, {"text": "-", "start": 240, "end": 241, "annotation": null}, {"text": "TeO2", "start": 241, "end": 245, "annotation": "BASEMAT"}, {"text": "-PbO", "start": 246, "end": 250, "annotation": "BASEMAT"}, {"text": "glass", "start": 251, "end": 256, "annotation": null}, {"text": "by", "start": 257, "end": 259, "annotation": null}, {"text": "using", "start": 260, "end": 265, "annotation": null}, {"text": "the", "start": 266, "end": 269, "annotation": null}, {"text": "Judd", "start": 270, "end": 274, "annotation": null}, {"text": "-", "start": 274, "end": 275, "annotation": null}, {"text": "Ofelt", "start": 275, "end": 280, "annotation": null}, {"text": "theory", "start": 281, "end": 287, "annotation": null}, {"text": "have", "start": 288, "end": 292, "annotation": null}, {"text": "been", "start": 293, "end": 297, "annotation": null}, {"text": "determined", "start": 298, "end": 308, "annotation": null}, {"text": "from", "start": 309, "end": 313, "annotation": null}, {"text": "the", "start": 314, "end": 317, "annotation": null}, {"text": "optical", "start": 318, "end": 325, "annotation": null}, {"text": "absorption", "start": 326, "end": 336, "annotation": null}, {"text": "spectra", "start": 337, "end": 344, "annotation": null}, {"text": ".", "start": 344, "end": 345, "annotation": null}], [{"text": "No", "start": 346, "end": 348, "annotation": null}, {"text": "upconversion", "start": 349, "end": 361, "annotation": null}, {"text": "(", "start": 362, "end": 363, "annotation": null}, {"text": "UC", "start": 363, "end": 365, "annotation": null}, {"text": ")", "start": 365, "end": 366, "annotation": null}, {"text": "emission", "start": 367, "end": 375, "annotation": null}, {"text": "was", "start": 376, "end": 379, "annotation": null}, {"text": "seen", "start": 380, "end": 384, "annotation": null}, {"text": "in", "start": 385, "end": 387, "annotation": null}, {"text": "the", "start": 388, "end": 391, "annotation": null}, {"text": "singly", "start": 392, "end": 398, "annotation": null}, {"text": "doped", "start": 399, "end": 404, "annotation": null}, {"text": "Er3+", "start": 405, "end": 409, "annotation": null}, {"text": "-", "start": 409, "end": 410, "annotation": null}, {"text": "doped", "start": 410, "end": 415, "annotation": null}, {"text": "glass", "start": 416, "end": 421, "annotation": null}, {"text": "upon", "start": 422, "end": 426, "annotation": null}, {"text": "excitation", "start": 427, "end": 437, "annotation": null}, {"text": "at", "start": 438, "end": 440, "annotation": null}, {"text": "1064", "start": 441, "end": 445, "annotation": null}, {"text": "nm", "start": 446, "end": 448, "annotation": null}, {"text": ".", "start": 448, "end": 449, "annotation": null}], [{"text": "Through", "start": 450, "end": 457, "annotation": null}, {"text": "the", "start": 458, "end": 461, "annotation": null}, {"text": "experiments", "start": 462, "end": 473, "annotation": null}, {"text": ",", "start": 473, "end": 474, "annotation": null}, {"text": "it", "start": 475, "end": 477, "annotation": null}, {"text": "has", "start": 478, "end": 481, "annotation": null}, {"text": "been", "start": 482, "end": 486, "annotation": null}, {"text": "found", "start": 487, "end": 492, "annotation": null}, {"text": "that", "start": 493, "end": 497, "annotation": null}, {"text": ",", "start": 497, "end": 498, "annotation": null}, {"text": "in", "start": 499, "end": 501, "annotation": null}, {"text": "the", "start": 502, "end": 505, "annotation": null}, {"text": "codoped", "start": 506, "end": 513, "annotation": null}, {"text": "glass", "start": 514, "end": 519, "annotation": null}, {"text": ",", "start": 519, "end": 520, "annotation": null}, {"text": "the", "start": 521, "end": 524, "annotation": null}, {"text": "UC", "start": 525, "end": 527, "annotation": null}, {"text": "luminescence", "start": 528, "end": 540, "annotation": null}, {"text": "from", "start": 541, "end": 545, "annotation": null}, {"text": "Er3", "start": 546, "end": 549, "annotation": null}, {"text": "(", "start": 550, "end": 551, "annotation": null}, {"text": "2.0", "start": 551, "end": 554, "annotation": "DOPMODQ"}, {"text": "mol", "start": 555, "end": 558, "annotation": "DOPMODQ"}, {"text": ".", "start": 558, "end": 559, "annotation": "DOPMODQ"}], [{"text": "%", "start": 560, "end": 561, "annotation": "DOPMODQ"}, {"text": ")", "start": 561, "end": 562, "annotation": "DOPMODQ"}, {"text": "in", "start": 563, "end": 565, "annotation": null}, {"text": "green", "start": 566, "end": 571, "annotation": null}, {"text": "and", "start": 572, "end": 575, "annotation": null}, {"text": "red", "start": 576, "end": 579, "annotation": null}, {"text": "regions", "start": 580, "end": 587, "annotation": null}, {"text": "corresponding", "start": 588, "end": 601, "annotation": null}, {"text": "to", "start": 602, "end": 604, "annotation": null}, {"text": "the", "start": 605, "end": 608, "annotation": null}, {"text": "2H11", "start": 609, "end": 613, "annotation": null}, {"text": "?", "start": 613, "end": 614, "annotation": null}, {"text": "2", "start": 614, "end": 615, "annotation": null}, {"text": "\u2192", "start": 616, "end": 617, "annotation": null}, {"text": "4I15", "start": 618, "end": 622, "annotation": null}, {"text": "?", "start": 622, "end": 623, "annotation": null}, {"text": "2", "start": 623, "end": 624, "annotation": null}, {"text": ",", "start": 624, "end": 625, "annotation": null}, {"text": "4S3", "start": 626, "end": 629, "annotation": null}, {"text": "?", "start": 629, "end": 630, "annotation": null}, {"text": "2", "start": 630, "end": 631, "annotation": null}, {"text": "\u2192", "start": 632, "end": 633, "annotation": null}, {"text": "4I15", "start": 634, "end": 638, "annotation": null}, {"text": "?", "start": 638, "end": 639, "annotation": null}, {"text": "2", "start": 639, "end": 640, "annotation": null}, {"text": ",", "start": 640, "end": 641, "annotation": null}, {"text": "and4F9", "start": 642, "end": 648, "annotation": null}, {"text": "?", "start": 648, "end": 649, "annotation": null}, {"text": "2", "start": 649, "end": 650, "annotation": null}, {"text": "\u2192", "start": 651, "end": 652, "annotation": null}, {"text": "4I15", "start": 653, "end": 657, "annotation": null}, {"text": "?", "start": 657, "end": 658, "annotation": null}, {"text": "2", "start": 658, "end": 659, "annotation": null}, {"text": "transitions", "start": 660, "end": 671, "annotation": null}, {"text": "is", "start": 672, "end": 674, "annotation": null}, {"text": "strengthened", "start": 675, "end": 687, "annotation": null}, {"text": "about", "start": 688, "end": 693, "annotation": null}, {"text": "\u223c", "start": 694, "end": 695, "annotation": null}, {"text": "40", "start": 695, "end": 697, "annotation": null}, {"text": ",", "start": 697, "end": 698, "annotation": null}, {"text": "\u223c", "start": 699, "end": 700, "annotation": null}, {"text": "60", "start": 700, "end": 702, "annotation": null}, {"text": ",", "start": 702, "end": 703, "annotation": null}, {"text": "and", "start": 704, "end": 707, "annotation": null}, {"text": "\u223c", "start": 708, "end": 709, "annotation": null}, {"text": "130", "start": 709, "end": 712, "annotation": null}, {"text": "fold", "start": 713, "end": 717, "annotation": null}, {"text": ",", "start": 717, "end": 718, "annotation": null}, {"text": "respectively", "start": 719, "end": 731, "annotation": null}, {"text": ",", "start": 731, "end": 732, "annotation": null}, {"text": "at", "start": 733, "end": 735, "annotation": null}, {"text": "2.0", "start": 736, "end": 739, "annotation": "DOPMODQ"}, {"text": "mol.", "start": 740, "end": 744, "annotation": "DOPMODQ"}, {"text": "%", "start": 744, "end": 745, "annotation": "DOPMODQ"}, {"text": "Tm3+ion", "start": 745, "end": 752, "annotation": "DOPANT"}, {"text": "concentration", "start": 753, "end": 766, "annotation": null}, {"text": "in", "start": 767, "end": 769, "annotation": null}, {"text": "codoped", "start": 770, "end": 777, "annotation": null}, {"text": "glass", "start": 778, "end": 783, "annotation": null}, {"text": ".", "start": 783, "end": 784, "annotation": null}], [{"text": "The", "start": 785, "end": 788, "annotation": null}, {"text": "observed", "start": 789, "end": 797, "annotation": null}, {"text": "UC", "start": 798, "end": 800, "annotation": null}, {"text": "emissions", "start": 801, "end": 810, "annotation": null}, {"text": "and", "start": 811, "end": 814, "annotation": null}, {"text": "the", "start": 815, "end": 818, "annotation": null}, {"text": "enhancement", "start": 819, "end": 830, "annotation": null}, {"text": "observed", "start": 831, "end": 839, "annotation": null}, {"text": "in", "start": 840, "end": 842, "annotation": null}, {"text": "their", "start": 843, "end": 848, "annotation": null}, {"text": "intensity", "start": 849, "end": 858, "annotation": null}, {"text": "have", "start": 859, "end": 863, "annotation": null}, {"text": "been", "start": 864, "end": 868, "annotation": null}, {"text": "explained", "start": 869, "end": 878, "annotation": null}, {"text": "on", "start": 879, "end": 881, "annotation": null}, {"text": "the", "start": 882, "end": 885, "annotation": null}, {"text": "basis", "start": 886, "end": 891, "annotation": null}, {"text": "of", "start": 892, "end": 894, "annotation": null}, {"text": "efficient", "start": 895, "end": 904, "annotation": null}, {"text": "energy", "start": 905, "end": 911, "annotation": null}, {"text": "transfer", "start": 912, "end": 920, "annotation": null}, {"text": "and", "start": 921, "end": 924, "annotation": null}, {"text": "cross-relaxation", "start": 925, "end": 941, "annotation": null}, {"text": "energy", "start": 942, "end": 948, "annotation": null}, {"text": "transfer", "start": 949, "end": 957, "annotation": null}, {"text": "processes", "start": 958, "end": 967, "annotation": null}, {"text": ".", "start": 967, "end": 968, "annotation": null}]]} +{"remark": "doping_annt1", "text": "Implantation of HBT by helium ions has been an accepted means for achieving the desired low leakage currents. In the past, two implant steps of doses 1E+14 and 4E+13ions/cm2, at energies 200 and 400KeV, respectively, were shown to adequately isolate the HBT. The present work shows a medium dose (4E+13ions/cm2) of the low-energy implant can result in an isolation resistance an order of magnitude higher than that of a high-dose implant. As a result, the leakage current is reduced. However, the breakdown voltage is also lower compared to its value at higher dose. Tunneling breakdown has been confirmed as being the major contributor to the observed breakdown, by its negative temperature coefficient. In addition, infrared (IR) emission imaging also showed that impact ionization may be playing a role for breakdown at higher electrical field. It is proposed that large As vacancies generated by helium ions makes the GaAs epitaxial layer more p-type compared to the highly doped n+-GaAs, where the collector contact is built on, thus causing it to display a weak diode-like behavior. Finally, the temperature and dose dependences of both the leakage current and the breakdown voltage will be discussed in the context of damage accumulation and junction characteristics.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Implantation", "start": 0, "end": 12, "annotation": null}, {"text": "of", "start": 13, "end": 15, "annotation": null}, {"text": "HBT", "start": 16, "end": 19, "annotation": null}, {"text": "by", "start": 20, "end": 22, "annotation": null}, {"text": "helium", "start": 23, "end": 29, "annotation": null}, {"text": "ions", "start": 30, "end": 34, "annotation": null}, {"text": "has", "start": 35, "end": 38, "annotation": null}, {"text": "been", "start": 39, "end": 43, "annotation": null}, {"text": "an", "start": 44, "end": 46, "annotation": null}, {"text": "accepted", "start": 47, "end": 55, "annotation": null}, {"text": "means", "start": 56, "end": 61, "annotation": null}, {"text": "for", "start": 62, "end": 65, "annotation": null}, {"text": "achieving", "start": 66, "end": 75, "annotation": null}, {"text": "the", "start": 76, "end": 79, "annotation": null}, {"text": "desired", "start": 80, "end": 87, "annotation": null}, {"text": "low", "start": 88, "end": 91, "annotation": null}, {"text": "leakage", "start": 92, "end": 99, "annotation": null}, {"text": "currents", "start": 100, "end": 108, "annotation": null}, {"text": ".", "start": 108, "end": 109, "annotation": null}], [{"text": "In", "start": 110, "end": 112, "annotation": null}, {"text": "the", "start": 113, "end": 116, "annotation": null}, {"text": "past", "start": 117, "end": 121, "annotation": null}, {"text": ",", "start": 121, "end": 122, "annotation": null}, {"text": "two", "start": 123, "end": 126, "annotation": null}, {"text": "implant", "start": 127, "end": 134, "annotation": null}, {"text": "steps", "start": 135, "end": 140, "annotation": null}, {"text": "of", "start": 141, "end": 143, "annotation": null}, {"text": "doses", "start": 144, "end": 149, "annotation": null}, {"text": "1E+14", "start": 150, "end": 155, "annotation": null}, {"text": "and", "start": 156, "end": 159, "annotation": null}, {"text": "4E+13ions", "start": 160, "end": 169, "annotation": null}, {"text": "/", "start": 169, "end": 170, "annotation": null}, {"text": "cm2", "start": 170, "end": 173, "annotation": null}, {"text": ",", "start": 173, "end": 174, "annotation": null}, {"text": "at", "start": 175, "end": 177, "annotation": null}, {"text": "energies", "start": 178, "end": 186, "annotation": null}, {"text": "200", "start": 187, "end": 190, "annotation": null}, {"text": "and", "start": 191, "end": 194, "annotation": null}, {"text": "400KeV", "start": 195, "end": 201, "annotation": null}, {"text": ",", "start": 201, "end": 202, "annotation": null}, {"text": "respectively", "start": 203, "end": 215, "annotation": null}, {"text": ",", "start": 215, "end": 216, "annotation": null}, {"text": "were", "start": 217, "end": 221, "annotation": null}, {"text": "shown", "start": 222, "end": 227, "annotation": null}, {"text": "to", "start": 228, "end": 230, "annotation": null}, {"text": "adequately", "start": 231, "end": 241, "annotation": null}, {"text": "isolate", "start": 242, "end": 249, "annotation": null}, {"text": "the", "start": 250, "end": 253, "annotation": null}, {"text": "HBT", "start": 254, "end": 257, "annotation": null}, {"text": ".", "start": 257, "end": 258, "annotation": null}], [{"text": "The", "start": 259, "end": 262, "annotation": null}, {"text": "present", "start": 263, "end": 270, "annotation": null}, {"text": "work", "start": 271, "end": 275, "annotation": null}, {"text": "shows", "start": 276, "end": 281, "annotation": null}, {"text": "a", "start": 282, "end": 283, "annotation": null}, {"text": "medium", "start": 284, "end": 290, "annotation": null}, {"text": "dose", "start": 291, "end": 295, "annotation": null}, {"text": "(", "start": 296, "end": 297, "annotation": null}, {"text": "4E+13ions", "start": 297, "end": 306, "annotation": null}, {"text": "/", "start": 306, "end": 307, "annotation": null}, {"text": "cm2", "start": 307, "end": 310, "annotation": null}, {"text": ")", "start": 310, "end": 311, "annotation": null}, {"text": "of", "start": 312, "end": 314, "annotation": null}, {"text": "the", "start": 315, "end": 318, "annotation": null}, {"text": "low", "start": 319, "end": 322, "annotation": null}, {"text": "-", "start": 322, "end": 323, "annotation": null}, {"text": "energy", "start": 323, "end": 329, "annotation": null}, {"text": "implant", "start": 330, "end": 337, "annotation": null}, {"text": "can", "start": 338, "end": 341, "annotation": null}, {"text": "result", "start": 342, "end": 348, "annotation": null}, {"text": "in", "start": 349, "end": 351, "annotation": null}, {"text": "an", "start": 352, "end": 354, "annotation": null}, {"text": "isolation", "start": 355, "end": 364, "annotation": null}, {"text": "resistance", "start": 365, "end": 375, "annotation": null}, {"text": "an", "start": 376, "end": 378, "annotation": null}, {"text": "order", "start": 379, "end": 384, "annotation": null}, {"text": "of", "start": 385, "end": 387, "annotation": null}, {"text": "magnitude", "start": 388, "end": 397, "annotation": null}, {"text": "higher", "start": 398, "end": 404, "annotation": null}, {"text": "than", "start": 405, "end": 409, "annotation": null}, {"text": "that", "start": 410, "end": 414, "annotation": null}, {"text": "of", "start": 415, "end": 417, "annotation": null}, {"text": "a", "start": 418, "end": 419, "annotation": null}, {"text": "high", "start": 420, "end": 424, "annotation": null}, {"text": "-", "start": 424, "end": 425, "annotation": null}, {"text": "dose", "start": 425, "end": 429, "annotation": null}, {"text": "implant", "start": 430, "end": 437, "annotation": null}, {"text": ".", "start": 437, "end": 438, "annotation": null}], [{"text": "As", "start": 439, "end": 441, "annotation": null}, {"text": "a", "start": 442, "end": 443, "annotation": null}, {"text": "result", "start": 444, "end": 450, "annotation": null}, {"text": ",", "start": 450, "end": 451, "annotation": null}, {"text": "the", "start": 452, "end": 455, "annotation": null}, {"text": "leakage", "start": 456, "end": 463, "annotation": null}, {"text": "current", "start": 464, "end": 471, "annotation": null}, {"text": "is", "start": 472, "end": 474, "annotation": null}, {"text": "reduced", "start": 475, "end": 482, "annotation": null}, {"text": ".", "start": 482, "end": 483, "annotation": null}], [{"text": "However", "start": 484, "end": 491, "annotation": null}, {"text": ",", "start": 491, "end": 492, "annotation": null}, {"text": "the", "start": 493, "end": 496, "annotation": null}, {"text": "breakdown", "start": 497, "end": 506, "annotation": null}, {"text": "voltage", "start": 507, "end": 514, "annotation": null}, {"text": "is", "start": 515, "end": 517, "annotation": null}, {"text": "also", "start": 518, "end": 522, "annotation": null}, {"text": "lower", "start": 523, "end": 528, "annotation": null}, {"text": "compared", "start": 529, "end": 537, "annotation": null}, {"text": "to", "start": 538, "end": 540, "annotation": null}, {"text": "its", "start": 541, "end": 544, "annotation": null}, {"text": "value", "start": 545, "end": 550, "annotation": null}, {"text": "at", "start": 551, "end": 553, "annotation": null}, {"text": "higher", "start": 554, "end": 560, "annotation": null}, {"text": "dose", "start": 561, "end": 565, "annotation": null}, {"text": ".", "start": 565, "end": 566, "annotation": null}], [{"text": "Tunneling", "start": 567, "end": 576, "annotation": null}, {"text": "breakdown", "start": 577, "end": 586, "annotation": null}, {"text": "has", "start": 587, "end": 590, "annotation": null}, {"text": "been", "start": 591, "end": 595, "annotation": null}, {"text": "confirmed", "start": 596, "end": 605, "annotation": null}, {"text": "as", "start": 606, "end": 608, "annotation": null}, {"text": "being", "start": 609, "end": 614, "annotation": null}, {"text": "the", "start": 615, "end": 618, "annotation": null}, {"text": "major", "start": 619, "end": 624, "annotation": null}, {"text": "contributor", "start": 625, "end": 636, "annotation": null}, {"text": "to", "start": 637, "end": 639, "annotation": null}, {"text": "the", "start": 640, "end": 643, "annotation": null}, {"text": "observed", "start": 644, "end": 652, "annotation": null}, {"text": "breakdown", "start": 653, "end": 662, "annotation": null}, {"text": ",", "start": 662, "end": 663, "annotation": null}, {"text": "by", "start": 664, "end": 666, "annotation": null}, {"text": "its", "start": 667, "end": 670, "annotation": null}, {"text": "negative", "start": 671, "end": 679, "annotation": null}, {"text": "temperature", "start": 680, "end": 691, "annotation": null}, {"text": "coefficient", "start": 692, "end": 703, "annotation": null}, {"text": ".", "start": 703, "end": 704, "annotation": null}], [{"text": "In", "start": 705, "end": 707, "annotation": null}, {"text": "addition", "start": 708, "end": 716, "annotation": null}, {"text": ",", "start": 716, "end": 717, "annotation": null}, {"text": "infrared", "start": 718, "end": 726, "annotation": null}, {"text": "(", "start": 727, "end": 728, "annotation": null}, {"text": "IR", "start": 728, "end": 730, "annotation": null}, {"text": ")", "start": 730, "end": 731, "annotation": null}, {"text": "emission", "start": 732, "end": 740, "annotation": null}, {"text": "imaging", "start": 741, "end": 748, "annotation": null}, {"text": "also", "start": 749, "end": 753, "annotation": null}, {"text": "showed", "start": 754, "end": 760, "annotation": null}, {"text": "that", "start": 761, "end": 765, "annotation": null}, {"text": "impact", "start": 766, "end": 772, "annotation": null}, {"text": "ionization", "start": 773, "end": 783, "annotation": null}, {"text": "may", "start": 784, "end": 787, "annotation": null}, {"text": "be", "start": 788, "end": 790, "annotation": null}, {"text": "playing", "start": 791, "end": 798, "annotation": null}, {"text": "a", "start": 799, "end": 800, "annotation": null}, {"text": "role", "start": 801, "end": 805, "annotation": null}, {"text": "for", "start": 806, "end": 809, "annotation": null}, {"text": "breakdown", "start": 810, "end": 819, "annotation": null}, {"text": "at", "start": 820, "end": 822, "annotation": null}, {"text": "higher", "start": 823, "end": 829, "annotation": null}, {"text": "electrical", "start": 830, "end": 840, "annotation": null}, {"text": "field", "start": 841, "end": 846, "annotation": null}, {"text": ".", "start": 846, "end": 847, "annotation": null}], [{"text": "It", "start": 848, "end": 850, "annotation": null}, {"text": "is", "start": 851, "end": 853, "annotation": null}, {"text": "proposed", "start": 854, "end": 862, "annotation": null}, {"text": "that", "start": 863, "end": 867, "annotation": null}, {"text": "large", "start": 868, "end": 873, "annotation": null}, {"text": "As", "start": 874, "end": 876, "annotation": null}, {"text": "vacancies", "start": 877, "end": 886, "annotation": null}, {"text": "generated", "start": 887, "end": 896, "annotation": null}, {"text": "by", "start": 897, "end": 899, "annotation": null}, {"text": "helium", "start": 900, "end": 906, "annotation": null}, {"text": "ions", "start": 907, "end": 911, "annotation": null}, {"text": "makes", "start": 912, "end": 917, "annotation": null}, {"text": "the", "start": 918, "end": 921, "annotation": null}, {"text": "GaAs", "start": 922, "end": 926, "annotation": null}, {"text": "epitaxial", "start": 927, "end": 936, "annotation": null}, {"text": "layer", "start": 937, "end": 942, "annotation": null}, {"text": "more", "start": 943, "end": 947, "annotation": null}, {"text": "p", "start": 948, "end": 949, "annotation": null}, {"text": "-", "start": 949, "end": 950, "annotation": null}, {"text": "type", "start": 950, "end": 954, "annotation": null}, {"text": "compared", "start": 955, "end": 963, "annotation": null}, {"text": "to", "start": 964, "end": 966, "annotation": null}, {"text": "the", "start": 967, "end": 970, "annotation": null}, {"text": "highly", "start": 971, "end": 977, "annotation": null}, {"text": "doped", "start": 978, "end": 983, "annotation": null}, {"text": "n+", "start": 984, "end": 986, "annotation": "DOPANT"}, {"text": "-", "start": 986, "end": 987, "annotation": null}, {"text": "GaAs", "start": 987, "end": 991, "annotation": "BASEMAT"}, {"text": ",", "start": 991, "end": 992, "annotation": null}, {"text": "where", "start": 993, "end": 998, "annotation": null}, {"text": "the", "start": 999, "end": 1002, "annotation": null}, {"text": "collector", "start": 1003, "end": 1012, "annotation": null}, {"text": "contact", "start": 1013, "end": 1020, "annotation": null}, {"text": "is", "start": 1021, "end": 1023, "annotation": null}, {"text": "built", "start": 1024, "end": 1029, "annotation": null}, {"text": "on", "start": 1030, "end": 1032, "annotation": null}, {"text": ",", "start": 1032, "end": 1033, "annotation": null}, {"text": "thus", "start": 1034, "end": 1038, "annotation": null}, {"text": "causing", "start": 1039, "end": 1046, "annotation": null}, {"text": "it", "start": 1047, "end": 1049, "annotation": null}, {"text": "to", "start": 1050, "end": 1052, "annotation": null}, {"text": "display", "start": 1053, "end": 1060, "annotation": null}, {"text": "a", "start": 1061, "end": 1062, "annotation": null}, {"text": "weak", "start": 1063, "end": 1067, "annotation": null}, {"text": "diode", "start": 1068, "end": 1073, "annotation": null}, {"text": "-", "start": 1073, "end": 1074, "annotation": null}, {"text": "like", "start": 1074, "end": 1078, "annotation": null}, {"text": "behavior", "start": 1079, "end": 1087, "annotation": null}, {"text": ".", "start": 1087, "end": 1088, "annotation": null}], [{"text": "Finally", "start": 1089, "end": 1096, "annotation": null}, {"text": ",", "start": 1096, "end": 1097, "annotation": null}, {"text": "the", "start": 1098, "end": 1101, "annotation": null}, {"text": "temperature", "start": 1102, "end": 1113, "annotation": null}, {"text": "and", "start": 1114, "end": 1117, "annotation": null}, {"text": "dose", "start": 1118, "end": 1122, "annotation": null}, {"text": "dependences", "start": 1123, "end": 1134, "annotation": null}, {"text": "of", "start": 1135, "end": 1137, "annotation": null}, {"text": "both", "start": 1138, "end": 1142, "annotation": null}, {"text": "the", "start": 1143, "end": 1146, "annotation": null}, {"text": "leakage", "start": 1147, "end": 1154, "annotation": null}, {"text": "current", "start": 1155, "end": 1162, "annotation": null}, {"text": "and", "start": 1163, "end": 1166, "annotation": null}, {"text": "the", "start": 1167, "end": 1170, "annotation": null}, {"text": "breakdown", "start": 1171, "end": 1180, "annotation": null}, {"text": "voltage", "start": 1181, "end": 1188, "annotation": null}, {"text": "will", "start": 1189, "end": 1193, "annotation": null}, {"text": "be", "start": 1194, "end": 1196, "annotation": null}, {"text": "discussed", "start": 1197, "end": 1206, "annotation": null}, {"text": "in", "start": 1207, "end": 1209, "annotation": null}, {"text": "the", "start": 1210, "end": 1213, "annotation": null}, {"text": "context", "start": 1214, "end": 1221, "annotation": null}, {"text": "of", "start": 1222, "end": 1224, "annotation": null}, {"text": "damage", "start": 1225, "end": 1231, "annotation": null}, {"text": "accumulation", "start": 1232, "end": 1244, "annotation": null}, {"text": "and", "start": 1245, "end": 1248, "annotation": null}, {"text": "junction", "start": 1249, "end": 1257, "annotation": null}, {"text": "characteristics", "start": 1258, "end": 1273, "annotation": null}, {"text": ".", "start": 1273, "end": 1274, "annotation": null}]], "meta": {"doi": "10.1016/j.mssp.2004.05.003"}} +{"remark": "doping_annt1", "text": "The multicolor intense visible emission from Er3+and Tm3+ions codoped in TeO2-PbO glass upon excitation at \u223c1064 nm radiation from a nanosecond pulsed Nd:YAG laser has been investigated. The optical parameters of erbium ions codoped in Tm3+-TeO2 -PbO glass by using the Judd-Ofelt theory have been determined from the optical absorption spectra. No upconversion (UC) emission was seen in the singly doped Er3+-doped glass upon excitation at 1064 nm. Through the experiments, it has been found that, in the codoped glass, the UC luminescence from Er3 (2.0 mol. %) in green and red regions corresponding to the 2H11?2 \u2192 4I15?2, 4S3?2 \u2192 4I15?2, and4F9?2 \u2192 4I15?2 transitions is strengthened about \u223c40, \u223c60, and \u223c130 fold, respectively, at 2.0 mol.%Tm3+ion concentration in codoped glass. The observed UC emissions and the enhancement observed in their intensity have been explained on the basis of efficient energy transfer and cross-relaxation energy transfer processes. \u00a9 2014 Optical Society of America.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "multicolor", "start": 4, "end": 14, "annotation": null}, {"text": "intense", "start": 15, "end": 22, "annotation": null}, {"text": "visible", "start": 23, "end": 30, "annotation": null}, {"text": "emission", "start": 31, "end": 39, "annotation": null}, {"text": "from", "start": 40, "end": 44, "annotation": null}, {"text": "Er3+and", "start": 45, "end": 52, "annotation": "DOPANT"}, {"text": "Tm3+ions", "start": 53, "end": 61, "annotation": "DOPANT"}, {"text": "codoped", "start": 62, "end": 69, "annotation": null}, {"text": "in", "start": 70, "end": 72, "annotation": null}, {"text": "TeO2", "start": 73, "end": 77, "annotation": "BASEMAT"}, {"text": "-", "start": 77, "end": 78, "annotation": "BASEMAT"}, {"text": "PbO", "start": 78, "end": 81, "annotation": "BASEMAT"}, {"text": "glass", "start": 82, "end": 87, "annotation": null}, {"text": "upon", "start": 88, "end": 92, "annotation": null}, {"text": "excitation", "start": 93, "end": 103, "annotation": null}, {"text": "at", "start": 104, "end": 106, "annotation": null}, {"text": "\u223c", "start": 107, "end": 108, "annotation": null}, {"text": "1064", "start": 108, "end": 112, "annotation": null}, {"text": "nm", "start": 113, "end": 115, "annotation": null}, {"text": "radiation", "start": 116, "end": 125, "annotation": null}, {"text": "from", "start": 126, "end": 130, "annotation": null}, {"text": "a", "start": 131, "end": 132, "annotation": null}, {"text": "nanosecond", "start": 133, "end": 143, "annotation": null}, {"text": "pulsed", "start": 144, "end": 150, "annotation": null}, {"text": "Nd", "start": 151, "end": 153, "annotation": null}, {"text": ":", "start": 153, "end": 154, "annotation": null}, {"text": "YAG", "start": 154, "end": 157, "annotation": null}, {"text": "laser", "start": 158, "end": 163, "annotation": null}, {"text": "has", "start": 164, "end": 167, "annotation": null}, {"text": "been", "start": 168, "end": 172, "annotation": null}, {"text": "investigated", "start": 173, "end": 185, "annotation": null}, {"text": ".", "start": 185, "end": 186, "annotation": null}], [{"text": "The", "start": 187, "end": 190, "annotation": null}, {"text": "optical", "start": 191, "end": 198, "annotation": null}, {"text": "parameters", "start": 199, "end": 209, "annotation": null}, {"text": "of", "start": 210, "end": 212, "annotation": null}, {"text": "erbium", "start": 213, "end": 219, "annotation": "DOPANT"}, {"text": "ions", "start": 220, "end": 224, "annotation": null}, {"text": "codoped", "start": 225, "end": 232, "annotation": null}, {"text": "in", "start": 233, "end": 235, "annotation": null}, {"text": "Tm3+", "start": 236, "end": 240, "annotation": "DOPANT"}, {"text": "-", "start": 240, "end": 241, "annotation": null}, {"text": "TeO2", "start": 241, "end": 245, "annotation": "BASEMAT"}, {"text": "-PbO", "start": 246, "end": 250, "annotation": "BASEMAT"}, {"text": "glass", "start": 251, "end": 256, "annotation": null}, {"text": "by", "start": 257, "end": 259, "annotation": null}, {"text": "using", "start": 260, "end": 265, "annotation": null}, {"text": "the", "start": 266, "end": 269, "annotation": null}, {"text": "Judd", "start": 270, "end": 274, "annotation": null}, {"text": "-", "start": 274, "end": 275, "annotation": null}, {"text": "Ofelt", "start": 275, "end": 280, "annotation": null}, {"text": "theory", "start": 281, "end": 287, "annotation": null}, {"text": "have", "start": 288, "end": 292, "annotation": null}, {"text": "been", "start": 293, "end": 297, "annotation": null}, {"text": "determined", "start": 298, "end": 308, "annotation": null}, {"text": "from", "start": 309, "end": 313, "annotation": null}, {"text": "the", "start": 314, "end": 317, "annotation": null}, {"text": "optical", "start": 318, "end": 325, "annotation": null}, {"text": "absorption", "start": 326, "end": 336, "annotation": null}, {"text": "spectra", "start": 337, "end": 344, "annotation": null}, {"text": ".", "start": 344, "end": 345, "annotation": null}], [{"text": "No", "start": 346, "end": 348, "annotation": null}, {"text": "upconversion", "start": 349, "end": 361, "annotation": null}, {"text": "(", "start": 362, "end": 363, "annotation": null}, {"text": "UC", "start": 363, "end": 365, "annotation": null}, {"text": ")", "start": 365, "end": 366, "annotation": null}, {"text": "emission", "start": 367, "end": 375, "annotation": null}, {"text": "was", "start": 376, "end": 379, "annotation": null}, {"text": "seen", "start": 380, "end": 384, "annotation": null}, {"text": "in", "start": 385, "end": 387, "annotation": null}, {"text": "the", "start": 388, "end": 391, "annotation": null}, {"text": "singly", "start": 392, "end": 398, "annotation": null}, {"text": "doped", "start": 399, "end": 404, "annotation": null}, {"text": "Er3+", "start": 405, "end": 409, "annotation": null}, {"text": "-", "start": 409, "end": 410, "annotation": null}, {"text": "doped", "start": 410, "end": 415, "annotation": null}, {"text": "glass", "start": 416, "end": 421, "annotation": null}, {"text": "upon", "start": 422, "end": 426, "annotation": null}, {"text": "excitation", "start": 427, "end": 437, "annotation": null}, {"text": "at", "start": 438, "end": 440, "annotation": null}, {"text": "1064", "start": 441, "end": 445, "annotation": null}, {"text": "nm", "start": 446, "end": 448, "annotation": null}, {"text": ".", "start": 448, "end": 449, "annotation": null}], [{"text": "Through", "start": 450, "end": 457, "annotation": null}, {"text": "the", "start": 458, "end": 461, "annotation": null}, {"text": "experiments", "start": 462, "end": 473, "annotation": null}, {"text": ",", "start": 473, "end": 474, "annotation": null}, {"text": "it", "start": 475, "end": 477, "annotation": null}, {"text": "has", "start": 478, "end": 481, "annotation": null}, {"text": "been", "start": 482, "end": 486, "annotation": null}, {"text": "found", "start": 487, "end": 492, "annotation": null}, {"text": "that", "start": 493, "end": 497, "annotation": null}, {"text": ",", "start": 497, "end": 498, "annotation": null}, {"text": "in", "start": 499, "end": 501, "annotation": null}, {"text": "the", "start": 502, "end": 505, "annotation": null}, {"text": "codoped", "start": 506, "end": 513, "annotation": null}, {"text": "glass", "start": 514, "end": 519, "annotation": null}, {"text": ",", "start": 519, "end": 520, "annotation": null}, {"text": "the", "start": 521, "end": 524, "annotation": null}, {"text": "UC", "start": 525, "end": 527, "annotation": null}, {"text": "luminescence", "start": 528, "end": 540, "annotation": null}, {"text": "from", "start": 541, "end": 545, "annotation": null}, {"text": "Er3", "start": 546, "end": 549, "annotation": null}, {"text": "(", "start": 550, "end": 551, "annotation": null}, {"text": "2.0", "start": 551, "end": 554, "annotation": "DOPMODQ"}, {"text": "mol", "start": 555, "end": 558, "annotation": "DOPMODQ"}, {"text": ".", "start": 558, "end": 559, "annotation": "DOPMODQ"}], [{"text": "%", "start": 560, "end": 561, "annotation": "DOPMODQ"}, {"text": ")", "start": 561, "end": 562, "annotation": null}, {"text": "in", "start": 563, "end": 565, "annotation": null}, {"text": "green", "start": 566, "end": 571, "annotation": null}, {"text": "and", "start": 572, "end": 575, "annotation": null}, {"text": "red", "start": 576, "end": 579, "annotation": null}, {"text": "regions", "start": 580, "end": 587, "annotation": null}, {"text": "corresponding", "start": 588, "end": 601, "annotation": null}, {"text": "to", "start": 602, "end": 604, "annotation": null}, {"text": "the", "start": 605, "end": 608, "annotation": null}, {"text": "2H11", "start": 609, "end": 613, "annotation": null}, {"text": "?", "start": 613, "end": 614, "annotation": null}, {"text": "2", "start": 614, "end": 615, "annotation": null}, {"text": "\u2192", "start": 616, "end": 617, "annotation": null}, {"text": "4I15", "start": 618, "end": 622, "annotation": null}, {"text": "?", "start": 622, "end": 623, "annotation": null}, {"text": "2", "start": 623, "end": 624, "annotation": null}, {"text": ",", "start": 624, "end": 625, "annotation": null}, {"text": "4S3", "start": 626, "end": 629, "annotation": null}, {"text": "?", "start": 629, "end": 630, "annotation": null}, {"text": "2", "start": 630, "end": 631, "annotation": null}, {"text": "\u2192", "start": 632, "end": 633, "annotation": null}, {"text": "4I15", "start": 634, "end": 638, "annotation": null}, {"text": "?", "start": 638, "end": 639, "annotation": null}, {"text": "2", "start": 639, "end": 640, "annotation": null}, {"text": ",", "start": 640, "end": 641, "annotation": null}, {"text": "and4F9", "start": 642, "end": 648, "annotation": null}, {"text": "?", "start": 648, "end": 649, "annotation": null}, {"text": "2", "start": 649, "end": 650, "annotation": null}, {"text": "\u2192", "start": 651, "end": 652, "annotation": null}, {"text": "4I15", "start": 653, "end": 657, "annotation": null}, {"text": "?", "start": 657, "end": 658, "annotation": null}, {"text": "2", "start": 658, "end": 659, "annotation": null}, {"text": "transitions", "start": 660, "end": 671, "annotation": null}, {"text": "is", "start": 672, "end": 674, "annotation": null}, {"text": "strengthened", "start": 675, "end": 687, "annotation": null}, {"text": "about", "start": 688, "end": 693, "annotation": null}, {"text": "\u223c", "start": 694, "end": 695, "annotation": null}, {"text": "40", "start": 695, "end": 697, "annotation": null}, {"text": ",", "start": 697, "end": 698, "annotation": null}, {"text": "\u223c", "start": 699, "end": 700, "annotation": null}, {"text": "60", "start": 700, "end": 702, "annotation": null}, {"text": ",", "start": 702, "end": 703, "annotation": null}, {"text": "and", "start": 704, "end": 707, "annotation": null}, {"text": "\u223c", "start": 708, "end": 709, "annotation": null}, {"text": "130", "start": 709, "end": 712, "annotation": null}, {"text": "fold", "start": 713, "end": 717, "annotation": null}, {"text": ",", "start": 717, "end": 718, "annotation": null}, {"text": "respectively", "start": 719, "end": 731, "annotation": null}, {"text": ",", "start": 731, "end": 732, "annotation": null}, {"text": "at", "start": 733, "end": 735, "annotation": null}, {"text": "2.0", "start": 736, "end": 739, "annotation": "DOPMODQ"}, {"text": "mol.", "start": 740, "end": 744, "annotation": "DOPMODQ"}, {"text": "%", "start": 744, "end": 745, "annotation": "DOPMODQ"}, {"text": "Tm3+ion", "start": 745, "end": 752, "annotation": "DOPANT"}, {"text": "concentration", "start": 753, "end": 766, "annotation": null}, {"text": "in", "start": 767, "end": 769, "annotation": null}, {"text": "codoped", "start": 770, "end": 777, "annotation": null}, {"text": "glass", "start": 778, "end": 783, "annotation": null}, {"text": ".", "start": 783, "end": 784, "annotation": null}], [{"text": "The", "start": 785, "end": 788, "annotation": null}, {"text": "observed", "start": 789, "end": 797, "annotation": null}, {"text": "UC", "start": 798, "end": 800, "annotation": null}, {"text": "emissions", "start": 801, "end": 810, "annotation": null}, {"text": "and", "start": 811, "end": 814, "annotation": null}, {"text": "the", "start": 815, "end": 818, "annotation": null}, {"text": "enhancement", "start": 819, "end": 830, "annotation": null}, {"text": "observed", "start": 831, "end": 839, "annotation": null}, {"text": "in", "start": 840, "end": 842, "annotation": null}, {"text": "their", "start": 843, "end": 848, "annotation": null}, {"text": "intensity", "start": 849, "end": 858, "annotation": null}, {"text": "have", "start": 859, "end": 863, "annotation": null}, {"text": "been", "start": 864, "end": 868, "annotation": null}, {"text": "explained", "start": 869, "end": 878, "annotation": null}, {"text": "on", "start": 879, "end": 881, "annotation": null}, {"text": "the", "start": 882, "end": 885, "annotation": null}, {"text": "basis", "start": 886, "end": 891, "annotation": null}, {"text": "of", "start": 892, "end": 894, "annotation": null}, {"text": "efficient", "start": 895, "end": 904, "annotation": null}, {"text": "energy", "start": 905, "end": 911, "annotation": null}, {"text": "transfer", "start": 912, "end": 920, "annotation": null}, {"text": "and", "start": 921, "end": 924, "annotation": null}, {"text": "cross-relaxation", "start": 925, "end": 941, "annotation": null}, {"text": "energy", "start": 942, "end": 948, "annotation": null}, {"text": "transfer", "start": 949, "end": 957, "annotation": null}, {"text": "processes", "start": 958, "end": 967, "annotation": null}, {"text": ".", "start": 967, "end": 968, "annotation": null}]], "meta": {"doi": "10.1364/JOSAB.31.001041"}} {"text": "With the generalized gradient approximation in first principle all-electron calculations, the lowest energy structures of ZnnSen (n=6-13) nanoclusters were obtained as the pristine clusters. A number of configurations and structural isomers of ZnnSen (n=6-13) nanoclusters doped with single and two Mn atoms were used to investigate the structural and magnetic properties of manganese-doped ZnnSe n (n=6-13) nanoclusters. It arrives at a conclusion that Mn doping does not change the size-dependent oscillating behavior in second-order energy difference of ZnnSen (n=6-13) nanoclusters, but leads to the decrease of energy gap between lowest unoccupied molecular orbital and the highest occupied molecular orbital. Energy arguments indicate that Mn atoms prefer to substitute Zn atoms in Mn-doped ZnnSen (n=6-13) nanoclusters. Owing the Mn-Mn short-ranged superexchange mechanism, Mn atoms favor to locate at adjacent Zn atom sites in antiferromagnetic states of Zn nSen nanoclusters doped with two Mn atoms.", "meta": {"doi": "10.1111/j.1551-2916.2010.04125.x"}, "_input_hash": 1444325646, "_task_hash": -600968496, "tokens": [[{"text": "With", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "the", "start": 5, "end": 8, "id": 1, "annotation": null}, {"text": "generalized", "start": 9, "end": 20, "id": 2, "annotation": null}, {"text": "gradient", "start": 21, "end": 29, "id": 3, "annotation": null}, {"text": "approximation", "start": 30, "end": 43, "id": 4, "annotation": null}, {"text": "in", "start": 44, "end": 46, "id": 5, "annotation": null}, {"text": "first", "start": 47, "end": 52, "id": 6, "annotation": null}, {"text": "principle", "start": 53, "end": 62, "id": 7, "annotation": null}, {"text": "all", "start": 63, "end": 66, "id": 8, "annotation": null}, {"text": "-", "start": 67, "end": 68, "id": 9, "annotation": null}, {"text": "electron", "start": 69, "end": 77, "id": 10, "annotation": null}, {"text": "calculations", "start": 78, "end": 90, "id": 11, "annotation": null}, {"text": ",", "start": 91, "end": 92, "id": 12, "annotation": null}, {"text": "the", "start": 93, "end": 96, "id": 13, "annotation": null}, {"text": "lowest", "start": 97, "end": 103, "id": 14, "annotation": null}, {"text": "energy", "start": 104, "end": 110, "id": 15, "annotation": null}, {"text": "structures", "start": 111, "end": 121, "id": 16, "annotation": null}, {"text": "of", "start": 122, "end": 124, "id": 17, "annotation": null}, {"text": "ZnnSen", "start": 125, "end": 131, "id": 18, "annotation": null}, {"text": "(", "start": 132, "end": 133, "id": 19, "annotation": null}, {"text": "n=6", "start": 134, "end": 137, "id": 20, "annotation": null}, {"text": "-", "start": 138, "end": 139, "id": 21, "annotation": null}, {"text": "13", "start": 140, "end": 142, "id": 22, "annotation": null}, {"text": ")", "start": 143, "end": 144, "id": 23, "annotation": null}, {"text": "nanoclusters", "start": 145, "end": 157, "id": 24, "annotation": null}, {"text": "were", "start": 158, "end": 162, "id": 25, "annotation": null}, {"text": "obtained", "start": 163, "end": 171, "id": 26, "annotation": null}, {"text": "as", "start": 172, "end": 174, "id": 27, "annotation": null}, {"text": "the", "start": 175, "end": 178, "id": 28, "annotation": null}, {"text": "pristine", "start": 179, "end": 187, "id": 29, "annotation": null}, {"text": "clusters", "start": 188, "end": 196, "id": 30, "annotation": null}, {"text": ".", "start": 197, "end": 198, "id": 31, "annotation": null}], [{"text": "A", "start": 199, "end": 200, "id": 32, "annotation": null}, {"text": "number", "start": 201, "end": 207, "id": 33, "annotation": null}, {"text": "of", "start": 208, "end": 210, "id": 34, "annotation": null}, {"text": "configurations", "start": 211, "end": 225, "id": 35, "annotation": null}, {"text": "and", "start": 226, "end": 229, "id": 36, "annotation": null}, {"text": "structural", "start": 230, "end": 240, "id": 37, "annotation": null}, {"text": "isomers", "start": 241, "end": 248, "id": 38, "annotation": null}, {"text": "of", "start": 249, "end": 251, "id": 39, "annotation": null}, {"text": "ZnnSen", "start": 252, "end": 258, "id": 40, "annotation": "BASEMAT"}, {"text": "(", "start": 259, "end": 260, "id": 41, "annotation": null}, {"text": "n=6", "start": 261, "end": 264, "id": 42, "annotation": null}, {"text": "-", "start": 265, "end": 266, "id": 43, "annotation": null}, {"text": "13", "start": 267, "end": 269, "id": 44, "annotation": null}, {"text": ")", "start": 270, "end": 271, "id": 45, "annotation": "BASEMAT"}, {"text": "nanoclusters", "start": 272, "end": 284, "id": 46, "annotation": null}, {"text": "doped", "start": 285, "end": 290, "id": 47, "annotation": null}, {"text": "with", "start": 291, "end": 295, "id": 48, "annotation": null}, {"text": "single", "start": 296, "end": 302, "id": 49, "annotation": "DOPANT"}, {"text": "and", "start": 303, "end": 306, "id": 50, "annotation": null}, {"text": "two", "start": 307, "end": 310, "id": 51, "annotation": "DOPANT"}, {"text": "Mn", "start": 311, "end": 313, "id": 52, "annotation": "DOPANT"}, {"text": "atoms", "start": 314, "end": 319, "id": 53, "annotation": null}, {"text": "were", "start": 320, "end": 324, "id": 54, "annotation": null}, {"text": "used", "start": 325, "end": 329, "id": 55, "annotation": null}, {"text": "to", "start": 330, "end": 332, "id": 56, "annotation": null}, {"text": "investigate", "start": 333, "end": 344, "id": 57, "annotation": null}, {"text": "the", "start": 345, "end": 348, "id": 58, "annotation": null}, {"text": "structural", "start": 349, "end": 359, "id": 59, "annotation": null}, {"text": "and", "start": 360, "end": 363, "id": 60, "annotation": null}, {"text": "magnetic", "start": 364, "end": 372, "id": 61, "annotation": null}, {"text": "properties", "start": 373, "end": 383, "id": 62, "annotation": null}, {"text": "of", "start": 384, "end": 386, "id": 63, "annotation": null}, {"text": "manganese", "start": 387, "end": 396, "id": 64, "annotation": "DOPANT"}, {"text": "-", "start": 397, "end": 398, "id": 65, "annotation": null}, {"text": "doped", "start": 399, "end": 404, "id": 66, "annotation": null}, {"text": "ZnnSe", "start": 405, "end": 410, "id": 67, "annotation": "BASEMAT"}, {"text": "n", "start": 411, "end": 412, "id": 68, "annotation": null}, {"text": "(", "start": 413, "end": 414, "id": 69, "annotation": null}, {"text": "n=6", "start": 415, "end": 418, "id": 70, "annotation": null}, {"text": "-", "start": 419, "end": 420, "id": 71, "annotation": null}, {"text": "13", "start": 421, "end": 423, "id": 72, "annotation": null}, {"text": ")", "start": 424, "end": 425, "id": 73, "annotation": "BASEMAT"}, {"text": "nanoclusters", "start": 426, "end": 438, "id": 74, "annotation": null}, {"text": ".", "start": 439, "end": 440, "id": 75, "annotation": null}], [{"text": "It", "start": 441, "end": 443, "id": 76, "annotation": null}, {"text": "arrives", "start": 444, "end": 451, "id": 77, "annotation": null}, {"text": "at", "start": 452, "end": 454, "id": 78, "annotation": null}, {"text": "a", "start": 455, "end": 456, "id": 79, "annotation": null}, {"text": "conclusion", "start": 457, "end": 467, "id": 80, "annotation": null}, {"text": "that", "start": 468, "end": 472, "id": 81, "annotation": null}, {"text": "Mn", "start": 473, "end": 475, "id": 82, "annotation": "DOPANT"}, {"text": "doping", "start": 476, "end": 482, "id": 83, "annotation": null}, {"text": "does", "start": 483, "end": 487, "id": 84, "annotation": null}, {"text": "not", "start": 488, "end": 491, "id": 85, "annotation": null}, {"text": "change", "start": 492, "end": 498, "id": 86, "annotation": null}, {"text": "the", "start": 499, "end": 502, "id": 87, "annotation": null}, {"text": "size", "start": 503, "end": 507, "id": 88, "annotation": null}, {"text": "-", "start": 508, "end": 509, "id": 89, "annotation": null}, {"text": "dependent", "start": 510, "end": 519, "id": 90, "annotation": null}, {"text": "oscillating", "start": 520, "end": 531, "id": 91, "annotation": null}, {"text": "behavior", "start": 532, "end": 540, "id": 92, "annotation": null}, {"text": "in", "start": 541, "end": 543, "id": 93, "annotation": null}, {"text": "second", "start": 544, "end": 550, "id": 94, "annotation": null}, {"text": "-", "start": 551, "end": 552, "id": 95, "annotation": null}, {"text": "order", "start": 553, "end": 558, "id": 96, "annotation": null}, {"text": "energy", "start": 559, "end": 565, "id": 97, "annotation": null}, {"text": "difference", "start": 566, "end": 576, "id": 98, "annotation": null}, {"text": "of", "start": 577, "end": 579, "id": 99, "annotation": null}, {"text": "ZnnSen", "start": 580, "end": 586, "id": 100, "annotation": "BASEMAT"}, {"text": "(", "start": 587, "end": 588, "id": 101, "annotation": null}, {"text": "n=6", "start": 589, "end": 592, "id": 102, "annotation": null}, {"text": "-", "start": 593, "end": 594, "id": 103, "annotation": null}, {"text": "13", "start": 595, "end": 597, "id": 104, "annotation": null}, {"text": ")", "start": 598, "end": 599, "id": 105, "annotation": "BASEMAT"}, {"text": "nanoclusters", "start": 600, "end": 612, "id": 106, "annotation": null}, {"text": ",", "start": 613, "end": 614, "id": 107, "annotation": null}, {"text": "but", "start": 615, "end": 618, "id": 108, "annotation": null}, {"text": "leads", "start": 619, "end": 624, "id": 109, "annotation": null}, {"text": "to", "start": 625, "end": 627, "id": 110, "annotation": null}, {"text": "the", "start": 628, "end": 631, "id": 111, "annotation": null}, {"text": "decrease", "start": 632, "end": 640, "id": 112, "annotation": null}, {"text": "of", "start": 641, "end": 643, "id": 113, "annotation": null}, {"text": "energy", "start": 644, "end": 650, "id": 114, "annotation": null}, {"text": "gap", "start": 651, "end": 654, "id": 115, "annotation": null}, {"text": "between", "start": 655, "end": 662, "id": 116, "annotation": null}, {"text": "lowest", "start": 663, "end": 669, "id": 117, "annotation": null}, {"text": "unoccupied", "start": 670, "end": 680, "id": 118, "annotation": null}, {"text": "molecular", "start": 681, "end": 690, "id": 119, "annotation": null}, {"text": "orbital", "start": 691, "end": 698, "id": 120, "annotation": null}, {"text": "and", "start": 699, "end": 702, "id": 121, "annotation": null}, {"text": "the", "start": 703, "end": 706, "id": 122, "annotation": null}, {"text": "highest", "start": 707, "end": 714, "id": 123, "annotation": null}, {"text": "occupied", "start": 715, "end": 723, "id": 124, "annotation": null}, {"text": "molecular", "start": 724, "end": 733, "id": 125, "annotation": null}, {"text": "orbital", "start": 734, "end": 741, "id": 126, "annotation": null}, {"text": ".", "start": 742, "end": 743, "id": 127, "annotation": null}], [{"text": "Energy", "start": 744, "end": 750, "id": 128, "annotation": null}, {"text": "arguments", "start": 751, "end": 760, "id": 129, "annotation": null}, {"text": "indicate", "start": 761, "end": 769, "id": 130, "annotation": null}, {"text": "that", "start": 770, "end": 774, "id": 131, "annotation": null}, {"text": "Mn", "start": 775, "end": 777, "id": 132, "annotation": null}, {"text": "atoms", "start": 778, "end": 783, "id": 133, "annotation": null}, {"text": "prefer", "start": 784, "end": 790, "id": 134, "annotation": null}, {"text": "to", "start": 791, "end": 793, "id": 135, "annotation": null}, {"text": "substitute", "start": 794, "end": 804, "id": 136, "annotation": null}, {"text": "Zn", "start": 805, "end": 807, "id": 137, "annotation": null}, {"text": "atoms", "start": 808, "end": 813, "id": 138, "annotation": null}, {"text": "in", "start": 814, "end": 816, "id": 139, "annotation": null}, {"text": "Mn", "start": 817, "end": 819, "id": 140, "annotation": "DOPANT"}, {"text": "-", "start": 820, "end": 821, "id": 141, "annotation": null}, {"text": "doped", "start": 822, "end": 827, "id": 142, "annotation": null}, {"text": "ZnnSen", "start": 828, "end": 834, "id": 143, "annotation": "BASEMAT"}, {"text": "(", "start": 835, "end": 836, "id": 144, "annotation": null}, {"text": "n=6", "start": 837, "end": 840, "id": 145, "annotation": null}, {"text": "-", "start": 841, "end": 842, "id": 146, "annotation": null}, {"text": "13", "start": 843, "end": 845, "id": 147, "annotation": null}, {"text": ")", "start": 846, "end": 847, "id": 148, "annotation": "BASEMAT"}, {"text": "nanoclusters", "start": 848, "end": 860, "id": 149, "annotation": null}, {"text": ".", "start": 861, "end": 862, "id": 150, "annotation": null}], [{"text": "Owing", "start": 863, "end": 868, "id": 151, "annotation": null}, {"text": "the", "start": 869, "end": 872, "id": 152, "annotation": null}, {"text": "Mn", "start": 873, "end": 875, "id": 153, "annotation": null}, {"text": "-", "start": 876, "end": 877, "id": 154, "annotation": null}, {"text": "Mn", "start": 878, "end": 880, "id": 155, "annotation": null}, {"text": "short", "start": 881, "end": 886, "id": 156, "annotation": null}, {"text": "-", "start": 887, "end": 888, "id": 157, "annotation": null}, {"text": "ranged", "start": 889, "end": 895, "id": 158, "annotation": null}, {"text": "superexchange", "start": 896, "end": 909, "id": 159, "annotation": null}, {"text": "mechanism", "start": 910, "end": 919, "id": 160, "annotation": null}, {"text": ",", "start": 920, "end": 921, "id": 161, "annotation": null}, {"text": "Mn", "start": 922, "end": 924, "id": 162, "annotation": null}, {"text": "atoms", "start": 925, "end": 930, "id": 163, "annotation": null}, {"text": "favor", "start": 931, "end": 936, "id": 164, "annotation": null}, {"text": "to", "start": 937, "end": 939, "id": 165, "annotation": null}, {"text": "locate", "start": 940, "end": 946, "id": 166, "annotation": null}, {"text": "at", "start": 947, "end": 949, "id": 167, "annotation": null}, {"text": "adjacent", "start": 950, "end": 958, "id": 168, "annotation": null}, {"text": "Zn", "start": 959, "end": 961, "id": 169, "annotation": null}, {"text": "atom", "start": 962, "end": 966, "id": 170, "annotation": null}, {"text": "sites", "start": 967, "end": 972, "id": 171, "annotation": null}, {"text": "in", "start": 973, "end": 975, "id": 172, "annotation": null}, {"text": "antiferromagnetic", "start": 976, "end": 993, "id": 173, "annotation": null}, {"text": "states", "start": 994, "end": 1000, "id": 174, "annotation": null}, {"text": "of", "start": 1001, "end": 1003, "id": 175, "annotation": null}, {"text": "Zn", "start": 1004, "end": 1006, "id": 176, "annotation": "BASEMAT"}, {"text": "nSen", "start": 1007, "end": 1011, "id": 177, "annotation": "BASEMAT"}, {"text": "nanoclusters", "start": 1012, "end": 1024, "id": 178, "annotation": null}, {"text": "doped", "start": 1025, "end": 1030, "id": 179, "annotation": null}, {"text": "with", "start": 1031, "end": 1035, "id": 180, "annotation": null}, {"text": "two", "start": 1036, "end": 1039, "id": 181, "annotation": "DOPANT"}, {"text": "Mn", "start": 1040, "end": 1042, "id": 182, "annotation": "DOPANT"}, {"text": "atoms", "start": 1043, "end": 1048, "id": 183, "annotation": null}, {"text": ".", "start": 1049, "end": 1050, "id": 184, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Lead-free ferroelectric ceramics of (1\u2212x) [0.88Na0.5Bi0.5TiO3-0.12K0.5Bi0.5TiO3]-x KNbO3(x = 0, 0.02, 0.04, and 0.06) were prepared by the conventional ceramic fabrication technique. The crystal structure, dielectric properties and P-E hysteresis loops were investigated. XRD data showed that all compositions could form pure perovskite structure. Temperature dependence of dielectric constant \u03b5r and dissipation factor tan\u03b4 measurement between room temperature and 500\u2218C revealed that the compounds experience phase transitions that from ferroelectric to anti-ferroelectric and anti-ferroelectric to paraelectric in the range of x = 0\u20130.04. The frequency dependent dielectric constant showed these compounds were relaxor ferroelectric. At low frequency and high temperature, dielectric constant and dissipation factor increased sharply attributed to the superparaelectric clusters after the KNbO3 doped.", "meta": {"doi": "10.1007/s10853-005-0716-6"}, "_input_hash": 1224425908, "_task_hash": -1203156479, "tokens": [[{"text": "Lead", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "-", "start": 5, "end": 6, "id": 1, "annotation": null}, {"text": "free", "start": 7, "end": 11, "id": 2, "annotation": null}, {"text": "ferroelectric", "start": 12, "end": 25, "id": 3, "annotation": null}, {"text": "ceramics", "start": 26, "end": 34, "id": 4, "annotation": null}, {"text": "of", "start": 35, "end": 37, "id": 5, "annotation": null}, {"text": "(", "start": 38, "end": 39, "id": 6, "annotation": null}, {"text": "1\u2212x", "start": 40, "end": 43, "id": 7, "annotation": null}, {"text": ")", "start": 44, "end": 45, "id": 8, "annotation": null}, {"text": "[", "start": 46, "end": 47, "id": 9, "annotation": null}, {"text": "0.88Na0.5Bi0.5TiO3", "start": 48, "end": 66, "id": 10, "annotation": null}, {"text": "-", "start": 67, "end": 68, "id": 11, "annotation": null}, {"text": "0.12K0.5Bi0.5TiO3]-x", "start": 69, "end": 89, "id": 12, "annotation": null}, {"text": "KNbO3(x", "start": 90, "end": 97, "id": 13, "annotation": null}, {"text": "=", "start": 98, "end": 99, "id": 14, "annotation": null}, {"text": "0", "start": 100, "end": 101, "id": 15, "annotation": null}, {"text": ",", "start": 102, "end": 103, "id": 16, "annotation": null}, {"text": "0.02", "start": 104, "end": 108, "id": 17, "annotation": null}, {"text": ",", "start": 109, "end": 110, "id": 18, "annotation": null}, {"text": "0.04", "start": 111, "end": 115, "id": 19, "annotation": null}, {"text": ",", "start": 116, "end": 117, "id": 20, "annotation": null}, {"text": "and", "start": 118, "end": 121, "id": 21, "annotation": null}, {"text": "0.06", "start": 122, "end": 126, "id": 22, "annotation": null}, {"text": ")", "start": 127, "end": 128, "id": 23, "annotation": null}, {"text": "were", "start": 129, "end": 133, "id": 24, "annotation": null}, {"text": "prepared", "start": 134, "end": 142, "id": 25, "annotation": null}, {"text": "by", "start": 143, "end": 145, "id": 26, "annotation": null}, {"text": "the", "start": 146, "end": 149, "id": 27, "annotation": null}, {"text": "conventional", "start": 150, "end": 162, "id": 28, "annotation": null}, {"text": "ceramic", "start": 163, "end": 170, "id": 29, "annotation": null}, {"text": "fabrication", "start": 171, "end": 182, "id": 30, "annotation": null}, {"text": "technique", "start": 183, "end": 192, "id": 31, "annotation": null}, {"text": ".", "start": 193, "end": 194, "id": 32, "annotation": null}], [{"text": "The", "start": 195, "end": 198, "id": 33, "annotation": null}, {"text": "crystal", "start": 199, "end": 206, "id": 34, "annotation": null}, {"text": "structure", "start": 207, "end": 216, "id": 35, "annotation": null}, {"text": ",", "start": 217, "end": 218, "id": 36, "annotation": null}, {"text": "dielectric", "start": 219, "end": 229, "id": 37, "annotation": null}, {"text": "properties", "start": 230, "end": 240, "id": 38, "annotation": null}, {"text": "and", "start": 241, "end": 244, "id": 39, "annotation": null}, {"text": "P", "start": 245, "end": 246, "id": 40, "annotation": null}, {"text": "-", "start": 247, "end": 248, "id": 41, "annotation": null}, {"text": "E", "start": 249, "end": 250, "id": 42, "annotation": null}, {"text": "hysteresis", "start": 251, "end": 261, "id": 43, "annotation": null}, {"text": "loops", "start": 262, "end": 267, "id": 44, "annotation": null}, {"text": "were", "start": 268, "end": 272, "id": 45, "annotation": null}, {"text": "investigated", "start": 273, "end": 285, "id": 46, "annotation": null}, {"text": ".", "start": 286, "end": 287, "id": 47, "annotation": null}], [{"text": "XRD", "start": 288, "end": 291, "id": 48, "annotation": null}, {"text": "data", "start": 292, "end": 296, "id": 49, "annotation": null}, {"text": "showed", "start": 297, "end": 303, "id": 50, "annotation": null}, {"text": "that", "start": 304, "end": 308, "id": 51, "annotation": null}, {"text": "all", "start": 309, "end": 312, "id": 52, "annotation": null}, {"text": "compositions", "start": 313, "end": 325, "id": 53, "annotation": null}, {"text": "could", "start": 326, "end": 331, "id": 54, "annotation": null}, {"text": "form", "start": 332, "end": 336, "id": 55, "annotation": null}, {"text": "pure", "start": 337, "end": 341, "id": 56, "annotation": null}, {"text": "perovskite", "start": 342, "end": 352, "id": 57, "annotation": null}, {"text": "structure", "start": 353, "end": 362, "id": 58, "annotation": null}, {"text": ".", "start": 363, "end": 364, "id": 59, "annotation": null}], [{"text": "Temperature", "start": 365, "end": 376, "id": 60, "annotation": null}, {"text": "dependence", "start": 377, "end": 387, "id": 61, "annotation": null}, {"text": "of", "start": 388, "end": 390, "id": 62, "annotation": null}, {"text": "dielectric", "start": 391, "end": 401, "id": 63, "annotation": null}, {"text": "constant", "start": 402, "end": 410, "id": 64, "annotation": null}, {"text": "\u03b5r", "start": 411, "end": 413, "id": 65, "annotation": null}, {"text": "and", "start": 414, "end": 417, "id": 66, "annotation": null}, {"text": "dissipation", "start": 418, "end": 429, "id": 67, "annotation": null}, {"text": "factor", "start": 430, "end": 436, "id": 68, "annotation": null}, {"text": "tan\u03b4", "start": 437, "end": 441, "id": 69, "annotation": null}, {"text": "measurement", "start": 442, "end": 453, "id": 70, "annotation": null}, {"text": "between", "start": 454, "end": 461, "id": 71, "annotation": null}, {"text": "room", "start": 462, "end": 466, "id": 72, "annotation": null}, {"text": "temperature", "start": 467, "end": 478, "id": 73, "annotation": null}, {"text": "and", "start": 479, "end": 482, "id": 74, "annotation": null}, {"text": "500\u2218C", "start": 483, "end": 488, "id": 75, "annotation": null}, {"text": "revealed", "start": 489, "end": 497, "id": 76, "annotation": null}, {"text": "that", "start": 498, "end": 502, "id": 77, "annotation": null}, {"text": "the", "start": 503, "end": 506, "id": 78, "annotation": null}, {"text": "compounds", "start": 507, "end": 516, "id": 79, "annotation": null}, {"text": "experience", "start": 517, "end": 527, "id": 80, "annotation": null}, {"text": "phase", "start": 528, "end": 533, "id": 81, "annotation": null}, {"text": "transitions", "start": 534, "end": 545, "id": 82, "annotation": null}, {"text": "that", "start": 546, "end": 550, "id": 83, "annotation": null}, {"text": "from", "start": 551, "end": 555, "id": 84, "annotation": null}, {"text": "ferroelectric", "start": 556, "end": 569, "id": 85, "annotation": null}, {"text": "to", "start": 570, "end": 572, "id": 86, "annotation": null}, {"text": "anti", "start": 573, "end": 577, "id": 87, "annotation": null}, {"text": "-", "start": 578, "end": 579, "id": 88, "annotation": null}, {"text": "ferroelectric", "start": 580, "end": 593, "id": 89, "annotation": null}, {"text": "and", "start": 594, "end": 597, "id": 90, "annotation": null}, {"text": "anti", "start": 598, "end": 602, "id": 91, "annotation": null}, {"text": "-", "start": 603, "end": 604, "id": 92, "annotation": null}, {"text": "ferroelectric", "start": 605, "end": 618, "id": 93, "annotation": null}, {"text": "to", "start": 619, "end": 621, "id": 94, "annotation": null}, {"text": "paraelectric", "start": 622, "end": 634, "id": 95, "annotation": null}, {"text": "in", "start": 635, "end": 637, "id": 96, "annotation": null}, {"text": "the", "start": 638, "end": 641, "id": 97, "annotation": null}, {"text": "range", "start": 642, "end": 647, "id": 98, "annotation": null}, {"text": "of", "start": 648, "end": 650, "id": 99, "annotation": null}, {"text": "x", "start": 651, "end": 652, "id": 100, "annotation": null}, {"text": "=", "start": 653, "end": 654, "id": 101, "annotation": null}, {"text": "0\u20130.04", "start": 655, "end": 661, "id": 102, "annotation": null}, {"text": ".", "start": 662, "end": 663, "id": 103, "annotation": null}], [{"text": "The", "start": 664, "end": 667, "id": 104, "annotation": null}, {"text": "frequency", "start": 668, "end": 677, "id": 105, "annotation": null}, {"text": "dependent", "start": 678, "end": 687, "id": 106, "annotation": null}, {"text": "dielectric", "start": 688, "end": 698, "id": 107, "annotation": null}, {"text": "constant", "start": 699, "end": 707, "id": 108, "annotation": null}, {"text": "showed", "start": 708, "end": 714, "id": 109, "annotation": null}, {"text": "these", "start": 715, "end": 720, "id": 110, "annotation": null}, {"text": "compounds", "start": 721, "end": 730, "id": 111, "annotation": null}, {"text": "were", "start": 731, "end": 735, "id": 112, "annotation": null}, {"text": "relaxor", "start": 736, "end": 743, "id": 113, "annotation": null}, {"text": "ferroelectric", "start": 744, "end": 757, "id": 114, "annotation": null}, {"text": ".", "start": 758, "end": 759, "id": 115, "annotation": null}], [{"text": "At", "start": 760, "end": 762, "id": 116, "annotation": null}, {"text": "low", "start": 763, "end": 766, "id": 117, "annotation": null}, {"text": "frequency", "start": 767, "end": 776, "id": 118, "annotation": null}, {"text": "and", "start": 777, "end": 780, "id": 119, "annotation": null}, {"text": "high", "start": 781, "end": 785, "id": 120, "annotation": null}, {"text": "temperature", "start": 786, "end": 797, "id": 121, "annotation": null}, {"text": ",", "start": 798, "end": 799, "id": 122, "annotation": null}, {"text": "dielectric", "start": 800, "end": 810, "id": 123, "annotation": null}, {"text": "constant", "start": 811, "end": 819, "id": 124, "annotation": null}, {"text": "and", "start": 820, "end": 823, "id": 125, "annotation": null}, {"text": "dissipation", "start": 824, "end": 835, "id": 126, "annotation": null}, {"text": "factor", "start": 836, "end": 842, "id": 127, "annotation": null}, {"text": "increased", "start": 843, "end": 852, "id": 128, "annotation": null}, {"text": "sharply", "start": 853, "end": 860, "id": 129, "annotation": null}, {"text": "attributed", "start": 861, "end": 871, "id": 130, "annotation": null}, {"text": "to", "start": 872, "end": 874, "id": 131, "annotation": null}, {"text": "the", "start": 875, "end": 878, "id": 132, "annotation": null}, {"text": "superparaelectric", "start": 879, "end": 896, "id": 133, "annotation": null}, {"text": "clusters", "start": 897, "end": 905, "id": 134, "annotation": null}, {"text": "after", "start": 906, "end": 911, "id": 135, "annotation": null}, {"text": "the", "start": 912, "end": 915, "id": 136, "annotation": null}, {"text": "KNbO3", "start": 916, "end": 921, "id": 137, "annotation": "DOPANT"}, {"text": "doped", "start": 922, "end": 927, "id": 138, "annotation": null}, {"text": ".", "start": 928, "end": 929, "id": 139, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Several types of new materials including tunnel and layer structures of porous manganese oxides have recently been reported. New developments in the characterization and application of such materials are also of current interest. Manganese doped oxide systems are sometimes useful models for these microporous materials.", "meta": {"doi": "10.1016/S1359-0286(98)80067-3"}, "_input_hash": -1979083843, "_task_hash": -1471349489, "tokens": [[{"text": "Several", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "types", "start": 8, "end": 13, "id": 1, "annotation": null}, {"text": "of", "start": 14, "end": 16, "id": 2, "annotation": null}, {"text": "new", "start": 17, "end": 20, "id": 3, "annotation": null}, {"text": "materials", "start": 21, "end": 30, "id": 4, "annotation": null}, {"text": "including", "start": 31, "end": 40, "id": 5, "annotation": null}, {"text": "tunnel", "start": 41, "end": 47, "id": 6, "annotation": null}, {"text": "and", "start": 48, "end": 51, "id": 7, "annotation": null}, {"text": "layer", "start": 52, "end": 57, "id": 8, "annotation": null}, {"text": "structures", "start": 58, "end": 68, "id": 9, "annotation": null}, {"text": "of", "start": 69, "end": 71, "id": 10, "annotation": null}, {"text": "porous", "start": 72, "end": 78, "id": 11, "annotation": null}, {"text": "manganese", "start": 79, "end": 88, "id": 12, "annotation": null}, {"text": "oxides", "start": 89, "end": 95, "id": 13, "annotation": null}, {"text": "have", "start": 96, "end": 100, "id": 14, "annotation": null}, {"text": "recently", "start": 101, "end": 109, "id": 15, "annotation": null}, {"text": "been", "start": 110, "end": 114, "id": 16, "annotation": null}, {"text": "reported", "start": 115, "end": 123, "id": 17, "annotation": null}, {"text": ".", "start": 124, "end": 125, "id": 18, "annotation": null}], [{"text": "New", "start": 126, "end": 129, "id": 19, "annotation": null}, {"text": "developments", "start": 130, "end": 142, "id": 20, "annotation": null}, {"text": "in", "start": 143, "end": 145, "id": 21, "annotation": null}, {"text": "the", "start": 146, "end": 149, "id": 22, "annotation": null}, {"text": "characterization", "start": 150, "end": 166, "id": 23, "annotation": null}, {"text": "and", "start": 167, "end": 170, "id": 24, "annotation": null}, {"text": "application", "start": 171, "end": 182, "id": 25, "annotation": null}, {"text": "of", "start": 183, "end": 185, "id": 26, "annotation": null}, {"text": "such", "start": 186, "end": 190, "id": 27, "annotation": null}, {"text": "materials", "start": 191, "end": 200, "id": 28, "annotation": null}, {"text": "are", "start": 201, "end": 204, "id": 29, "annotation": null}, {"text": "also", "start": 205, "end": 209, "id": 30, "annotation": null}, {"text": "of", "start": 210, "end": 212, "id": 31, "annotation": null}, {"text": "current", "start": 213, "end": 220, "id": 32, "annotation": null}, {"text": "interest", "start": 221, "end": 229, "id": 33, "annotation": null}, {"text": ".", "start": 230, "end": 231, "id": 34, "annotation": null}], [{"text": "Manganese", "start": 232, "end": 241, "id": 35, "annotation": "DOPANT"}, {"text": "doped", "start": 242, "end": 247, "id": 36, "annotation": null}, {"text": "oxide", "start": 248, "end": 253, "id": 37, "annotation": "BASEMAT"}, {"text": "systems", "start": 254, "end": 261, "id": 38, "annotation": null}, {"text": "are", "start": 262, "end": 265, "id": 39, "annotation": null}, {"text": "sometimes", "start": 266, "end": 275, "id": 40, "annotation": null}, {"text": "useful", "start": 276, "end": 282, "id": 41, "annotation": null}, {"text": "models", "start": 283, "end": 289, "id": 42, "annotation": null}, {"text": "for", "start": 290, "end": 293, "id": 43, "annotation": null}, {"text": "these", "start": 294, "end": 299, "id": 44, "annotation": null}, {"text": "microporous", "start": 300, "end": 311, "id": 45, "annotation": null}, {"text": "materials", "start": 312, "end": 321, "id": 46, "annotation": null}, {"text": ".", "start": 322, "end": 323, "id": 47, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "A novel catalyst based on nitrogen-doped carbon xerogel for oxygen reduction reaction (ORR) was prepared via a sol\u2013gel process, following by the subsequent pyrolysis under ammonia atmosphere. The catalytic activity in alkaline media was optimized by tuning the metal (cobalt) ratio to the gel precursor. Sample with the optimum activity was characterized by transmission electron microscope (TEM), X-ray photoelectron spectroscopy (XPS), X-ray diffraction (XRD), Brunauer\u2013Emmett\u2013Teller (BET) analysis and electrochemical measurements. Results show that the catalyst possesses an amorphous microstructure with nitrogen doped on the surface. The nitrogen-doped carbon xerogel displays comparable ORR activity and superior methanol tolerance than Pt/C in alkaline medium, demonstrating its promising application in direct methanol alkaline fuel cells as non-precious cathode catalyst.", "meta": {"doi": "10.1016/j.ijhydene.2012.09.122"}, "_input_hash": -822802719, "_task_hash": 655763450, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "novel", "start": 2, "end": 7, "id": 1, "annotation": null}, {"text": "catalyst", "start": 8, "end": 16, "id": 2, "annotation": null}, {"text": "based", "start": 17, "end": 22, "id": 3, "annotation": null}, {"text": "on", "start": 23, "end": 25, "id": 4, "annotation": null}, {"text": "nitrogen", "start": 26, "end": 34, "id": 5, "annotation": "DOPANT"}, {"text": "-", "start": 35, "end": 36, "id": 6, "annotation": null}, {"text": "doped", "start": 37, "end": 42, "id": 7, "annotation": null}, {"text": "carbon", "start": 43, "end": 49, "id": 8, "annotation": "BASEMAT"}, {"text": "xerogel", "start": 50, "end": 57, "id": 9, "annotation": null}, {"text": "for", "start": 58, "end": 61, "id": 10, "annotation": null}, {"text": "oxygen", "start": 62, "end": 68, "id": 11, "annotation": null}, {"text": "reduction", "start": 69, "end": 78, "id": 12, "annotation": null}, {"text": "reaction", "start": 79, "end": 87, "id": 13, "annotation": null}, {"text": "(", "start": 88, "end": 89, "id": 14, "annotation": null}, {"text": "ORR", "start": 90, "end": 93, "id": 15, "annotation": null}, {"text": ")", "start": 94, "end": 95, "id": 16, "annotation": null}, {"text": "was", "start": 96, "end": 99, "id": 17, "annotation": null}, {"text": "prepared", "start": 100, "end": 108, "id": 18, "annotation": null}, {"text": "via", "start": 109, "end": 112, "id": 19, "annotation": null}, {"text": "a", "start": 113, "end": 114, "id": 20, "annotation": null}, {"text": "sol", "start": 115, "end": 118, "id": 21, "annotation": null}, {"text": "\u2013", "start": 119, "end": 120, "id": 22, "annotation": null}, {"text": "gel", "start": 121, "end": 124, "id": 23, "annotation": null}, {"text": "process", "start": 125, "end": 132, "id": 24, "annotation": null}, {"text": ",", "start": 133, "end": 134, "id": 25, "annotation": null}, {"text": "following", "start": 135, "end": 144, "id": 26, "annotation": null}, {"text": "by", "start": 145, "end": 147, "id": 27, "annotation": null}, {"text": "the", "start": 148, "end": 151, "id": 28, "annotation": null}, {"text": "subsequent", "start": 152, "end": 162, "id": 29, "annotation": null}, {"text": "pyrolysis", "start": 163, "end": 172, "id": 30, "annotation": null}, {"text": "under", "start": 173, "end": 178, "id": 31, "annotation": null}, {"text": "ammonia", "start": 179, "end": 186, "id": 32, "annotation": null}, {"text": "atmosphere", "start": 187, "end": 197, "id": 33, "annotation": null}, {"text": ".", "start": 198, "end": 199, "id": 34, "annotation": null}], [{"text": "The", "start": 200, "end": 203, "id": 35, "annotation": null}, {"text": "catalytic", "start": 204, "end": 213, "id": 36, "annotation": null}, {"text": "activity", "start": 214, "end": 222, "id": 37, "annotation": null}, {"text": "in", "start": 223, "end": 225, "id": 38, "annotation": null}, {"text": "alkaline", "start": 226, "end": 234, "id": 39, "annotation": null}, {"text": "media", "start": 235, "end": 240, "id": 40, "annotation": null}, {"text": "was", "start": 241, "end": 244, "id": 41, "annotation": null}, {"text": "optimized", "start": 245, "end": 254, "id": 42, "annotation": null}, {"text": "by", "start": 255, "end": 257, "id": 43, "annotation": null}, {"text": "tuning", "start": 258, "end": 264, "id": 44, "annotation": null}, {"text": "the", "start": 265, "end": 268, "id": 45, "annotation": null}, {"text": "metal", "start": 269, "end": 274, "id": 46, "annotation": null}, {"text": "(", "start": 275, "end": 276, "id": 47, "annotation": null}, {"text": "cobalt", "start": 277, "end": 283, "id": 48, "annotation": null}, {"text": ")", "start": 284, "end": 285, "id": 49, "annotation": null}, {"text": "ratio", "start": 286, "end": 291, "id": 50, "annotation": null}, {"text": "to", "start": 292, "end": 294, "id": 51, "annotation": null}, {"text": "the", "start": 295, "end": 298, "id": 52, "annotation": null}, {"text": "gel", "start": 299, "end": 302, "id": 53, "annotation": null}, {"text": "precursor", "start": 303, "end": 312, "id": 54, "annotation": null}, {"text": ".", "start": 313, "end": 314, "id": 55, "annotation": null}], [{"text": "Sample", "start": 315, "end": 321, "id": 56, "annotation": null}, {"text": "with", "start": 322, "end": 326, "id": 57, "annotation": null}, {"text": "the", "start": 327, "end": 330, "id": 58, "annotation": null}, {"text": "optimum", "start": 331, "end": 338, "id": 59, "annotation": null}, {"text": "activity", "start": 339, "end": 347, "id": 60, "annotation": null}, {"text": "was", "start": 348, "end": 351, "id": 61, "annotation": null}, {"text": "characterized", "start": 352, "end": 365, "id": 62, "annotation": null}, {"text": "by", "start": 366, "end": 368, "id": 63, "annotation": null}, {"text": "transmission", "start": 369, "end": 381, "id": 64, "annotation": null}, {"text": "electron", "start": 382, "end": 390, "id": 65, "annotation": null}, {"text": "microscope", "start": 391, "end": 401, "id": 66, "annotation": null}, {"text": "(", "start": 402, "end": 403, "id": 67, "annotation": null}, {"text": "TEM", "start": 404, "end": 407, "id": 68, "annotation": null}, {"text": ")", "start": 408, "end": 409, "id": 69, "annotation": null}, {"text": ",", "start": 410, "end": 411, "id": 70, "annotation": null}, {"text": "X", "start": 412, "end": 413, "id": 71, "annotation": null}, {"text": "-", "start": 414, "end": 415, "id": 72, "annotation": null}, {"text": "ray", "start": 416, "end": 419, "id": 73, "annotation": null}, {"text": "photoelectron", "start": 420, "end": 433, "id": 74, "annotation": null}, {"text": "spectroscopy", "start": 434, "end": 446, "id": 75, "annotation": null}, {"text": "(", "start": 447, "end": 448, "id": 76, "annotation": null}, {"text": "XPS", "start": 449, "end": 452, "id": 77, "annotation": null}, {"text": ")", "start": 453, "end": 454, "id": 78, "annotation": null}, {"text": ",", "start": 455, "end": 456, "id": 79, "annotation": null}, {"text": "X", "start": 457, "end": 458, "id": 80, "annotation": null}, {"text": "-", "start": 459, "end": 460, "id": 81, "annotation": null}, {"text": "ray", "start": 461, "end": 464, "id": 82, "annotation": null}, {"text": "diffraction", "start": 465, "end": 476, "id": 83, "annotation": null}, {"text": "(", "start": 477, "end": 478, "id": 84, "annotation": null}, {"text": "XRD", "start": 479, "end": 482, "id": 85, "annotation": null}, {"text": ")", "start": 483, "end": 484, "id": 86, "annotation": null}, {"text": ",", "start": 485, "end": 486, "id": 87, "annotation": null}, {"text": "Brunauer", "start": 487, "end": 495, "id": 88, "annotation": null}, {"text": "\u2013", "start": 496, "end": 497, "id": 89, "annotation": null}, {"text": "Emmett", "start": 498, "end": 504, "id": 90, "annotation": null}, {"text": "\u2013", "start": 505, "end": 506, "id": 91, "annotation": null}, {"text": "Teller", "start": 507, "end": 513, "id": 92, "annotation": null}, {"text": "(", "start": 514, "end": 515, "id": 93, "annotation": null}, {"text": "BET", "start": 516, "end": 519, "id": 94, "annotation": null}, {"text": ")", "start": 520, "end": 521, "id": 95, "annotation": null}, {"text": "analysis", "start": 522, "end": 530, "id": 96, "annotation": null}, {"text": "and", "start": 531, "end": 534, "id": 97, "annotation": null}, {"text": "electrochemical", "start": 535, "end": 550, "id": 98, "annotation": null}, {"text": "measurements", "start": 551, "end": 563, "id": 99, "annotation": null}, {"text": ".", "start": 564, "end": 565, "id": 100, "annotation": null}], [{"text": "Results", "start": 566, "end": 573, "id": 101, "annotation": null}, {"text": "show", "start": 574, "end": 578, "id": 102, "annotation": null}, {"text": "that", "start": 579, "end": 583, "id": 103, "annotation": null}, {"text": "the", "start": 584, "end": 587, "id": 104, "annotation": null}, {"text": "catalyst", "start": 588, "end": 596, "id": 105, "annotation": "BASEMAT"}, {"text": "possesses", "start": 597, "end": 606, "id": 106, "annotation": null}, {"text": "an", "start": 607, "end": 609, "id": 107, "annotation": null}, {"text": "amorphous", "start": 610, "end": 619, "id": 108, "annotation": null}, {"text": "microstructure", "start": 620, "end": 634, "id": 109, "annotation": null}, {"text": "with", "start": 635, "end": 639, "id": 110, "annotation": null}, {"text": "nitrogen", "start": 640, "end": 648, "id": 111, "annotation": "DOPANT"}, {"text": "doped", "start": 649, "end": 654, "id": 112, "annotation": null}, {"text": "on", "start": 655, "end": 657, "id": 113, "annotation": null}, {"text": "the", "start": 658, "end": 661, "id": 114, "annotation": null}, {"text": "surface", "start": 662, "end": 669, "id": 115, "annotation": null}, {"text": ".", "start": 670, "end": 671, "id": 116, "annotation": null}], [{"text": "The", "start": 672, "end": 675, "id": 117, "annotation": null}, {"text": "nitrogen", "start": 676, "end": 684, "id": 118, "annotation": "DOPANT"}, {"text": "-", "start": 685, "end": 686, "id": 119, "annotation": null}, {"text": "doped", "start": 687, "end": 692, "id": 120, "annotation": null}, {"text": "carbon", "start": 693, "end": 699, "id": 121, "annotation": "BASEMAT"}, {"text": "xerogel", "start": 700, "end": 707, "id": 122, "annotation": null}, {"text": "displays", "start": 708, "end": 716, "id": 123, "annotation": null}, {"text": "comparable", "start": 717, "end": 727, "id": 124, "annotation": null}, {"text": "ORR", "start": 728, "end": 731, "id": 125, "annotation": null}, {"text": "activity", "start": 732, "end": 740, "id": 126, "annotation": null}, {"text": "and", "start": 741, "end": 744, "id": 127, "annotation": null}, {"text": "superior", "start": 745, "end": 753, "id": 128, "annotation": null}, {"text": "methanol", "start": 754, "end": 762, "id": 129, "annotation": null}, {"text": "tolerance", "start": 763, "end": 772, "id": 130, "annotation": null}, {"text": "than", "start": 773, "end": 777, "id": 131, "annotation": null}, {"text": "Pt", "start": 778, "end": 780, "id": 132, "annotation": null}, {"text": "/", "start": 781, "end": 782, "id": 133, "annotation": null}, {"text": "C", "start": 783, "end": 784, "id": 134, "annotation": null}, {"text": "in", "start": 785, "end": 787, "id": 135, "annotation": null}, {"text": "alkaline", "start": 788, "end": 796, "id": 136, "annotation": null}, {"text": "medium", "start": 797, "end": 803, "id": 137, "annotation": null}, {"text": ",", "start": 804, "end": 805, "id": 138, "annotation": null}, {"text": "demonstrating", "start": 806, "end": 819, "id": 139, "annotation": null}, {"text": "its", "start": 820, "end": 823, "id": 140, "annotation": null}, {"text": "promising", "start": 824, "end": 833, "id": 141, "annotation": null}, {"text": "application", "start": 834, "end": 845, "id": 142, "annotation": null}, {"text": "in", "start": 846, "end": 848, "id": 143, "annotation": null}, {"text": "direct", "start": 849, "end": 855, "id": 144, "annotation": null}, {"text": "methanol", "start": 856, "end": 864, "id": 145, "annotation": null}, {"text": "alkaline", "start": 865, "end": 873, "id": 146, "annotation": null}, {"text": "fuel", "start": 874, "end": 878, "id": 147, "annotation": null}, {"text": "cells", "start": 879, "end": 884, "id": 148, "annotation": null}, {"text": "as", "start": 885, "end": 887, "id": 149, "annotation": null}, {"text": "non", "start": 888, "end": 891, "id": 150, "annotation": null}, {"text": "-", "start": 892, "end": 893, "id": 151, "annotation": null}, {"text": "precious", "start": 894, "end": 902, "id": 152, "annotation": null}, {"text": "cathode", "start": 903, "end": 910, "id": 153, "annotation": null}, {"text": "catalyst", "start": 911, "end": 919, "id": 154, "annotation": null}, {"text": ".", "start": 920, "end": 921, "id": 155, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "We examined how electronic properties of the intermediate-valent CeRhIn are influenced by gradual substitution of rhodium with germanium. Results of specific-heat, magnetic susceptibility, electrical resistivity, thermopower and X-ray photoelectron spectroscopy (XPS) measurements performed in wide range of temperature and magnetic field on polycrystalline samples of CeRh1\u2212xGexIn, for x = 0.1, 0.2 and 0.3, are presented and compared to corresponding data reported earlier for CeRhIn, its hydrides and CePdxRh1\u2212x In solutions. A systematic shift from the intermediate-valence to a localized 4f-state with increasing content of germanium is evident from all obtained results. Non-Fermi liquid state is formed at low temperatures for the solution with the lowest Ge content, but it is destroyed by magnetic field and/or further doping with Ge.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "examined", "start": 3, "end": 11, "annotation": null}, {"text": "how", "start": 12, "end": 15, "annotation": null}, {"text": "electronic", "start": 16, "end": 26, "annotation": null}, {"text": "properties", "start": 27, "end": 37, "annotation": null}, {"text": "of", "start": 38, "end": 40, "annotation": null}, {"text": "the", "start": 41, "end": 44, "annotation": null}, {"text": "intermediate", "start": 45, "end": 57, "annotation": null}, {"text": "-", "start": 57, "end": 58, "annotation": null}, {"text": "valent", "start": 58, "end": 64, "annotation": null}, {"text": "CeRhIn", "start": 65, "end": 71, "annotation": "BASEMAT"}, {"text": "are", "start": 72, "end": 75, "annotation": null}, {"text": "influenced", "start": 76, "end": 86, "annotation": null}, {"text": "by", "start": 87, "end": 89, "annotation": null}, {"text": "gradual", "start": 90, "end": 97, "annotation": null}, {"text": "substitution", "start": 98, "end": 110, "annotation": null}, {"text": "of", "start": 111, "end": 113, "annotation": null}, {"text": "rhodium", "start": 114, "end": 121, "annotation": null}, {"text": "with", "start": 122, "end": 126, "annotation": null}, {"text": "germanium", "start": 127, "end": 136, "annotation": "DOPANT"}, {"text": ".", "start": 136, "end": 137, "annotation": null}], [{"text": "Results", "start": 138, "end": 145, "annotation": null}, {"text": "of", "start": 146, "end": 148, "annotation": null}, {"text": "specific", "start": 149, "end": 157, "annotation": null}, {"text": "-", "start": 157, "end": 158, "annotation": null}, {"text": "heat", "start": 158, "end": 162, "annotation": null}, {"text": ",", "start": 162, "end": 163, "annotation": null}, {"text": "magnetic", "start": 164, "end": 172, "annotation": null}, {"text": "susceptibility", "start": 173, "end": 187, "annotation": null}, {"text": ",", "start": 187, "end": 188, "annotation": null}, {"text": "electrical", "start": 189, "end": 199, "annotation": null}, {"text": "resistivity", "start": 200, "end": 211, "annotation": null}, {"text": ",", "start": 211, "end": 212, "annotation": null}, {"text": "thermopower", "start": 213, "end": 224, "annotation": null}, {"text": "and", "start": 225, "end": 228, "annotation": null}, {"text": "X-ray", "start": 229, "end": 234, "annotation": null}, {"text": "photoelectron", "start": 235, "end": 248, "annotation": null}, {"text": "spectroscopy", "start": 249, "end": 261, "annotation": null}, {"text": "(", "start": 262, "end": 263, "annotation": null}, {"text": "XPS", "start": 263, "end": 266, "annotation": null}, {"text": ")", "start": 266, "end": 267, "annotation": null}, {"text": "measurements", "start": 268, "end": 280, "annotation": null}, {"text": "performed", "start": 281, "end": 290, "annotation": null}, {"text": "in", "start": 291, "end": 293, "annotation": null}, {"text": "wide", "start": 294, "end": 298, "annotation": null}, {"text": "range", "start": 299, "end": 304, "annotation": null}, {"text": "of", "start": 305, "end": 307, "annotation": null}, {"text": "temperature", "start": 308, "end": 319, "annotation": null}, {"text": "and", "start": 320, "end": 323, "annotation": null}, {"text": "magnetic", "start": 324, "end": 332, "annotation": null}, {"text": "field", "start": 333, "end": 338, "annotation": null}, {"text": "on", "start": 339, "end": 341, "annotation": null}, {"text": "polycrystalline", "start": 342, "end": 357, "annotation": null}, {"text": "samples", "start": 358, "end": 365, "annotation": null}, {"text": "of", "start": 366, "end": 368, "annotation": null}, {"text": "CeRh1\u2212xGexIn", "start": 369, "end": 381, "annotation": "BASEMAT"}, {"text": ",", "start": 381, "end": 382, "annotation": null}, {"text": "for", "start": 383, "end": 386, "annotation": null}, {"text": "x", "start": 387, "end": 388, "annotation": "DOPMODQ"}, {"text": "=", "start": 389, "end": 390, "annotation": "DOPMODQ"}, {"text": "0.1", "start": 391, "end": 394, "annotation": "DOPMODQ"}, {"text": ",", "start": 394, "end": 395, "annotation": null}, {"text": "0.2", "start": 396, "end": 399, "annotation": "DOPMODQ"}, {"text": "and", "start": 400, "end": 403, "annotation": null}, {"text": "0.3", "start": 404, "end": 407, "annotation": "DOPMODQ"}, {"text": ",", "start": 407, "end": 408, "annotation": null}, {"text": "are", "start": 409, "end": 412, "annotation": null}, {"text": "presented", "start": 413, "end": 422, "annotation": null}, {"text": "and", "start": 423, "end": 426, "annotation": null}, {"text": "compared", "start": 427, "end": 435, "annotation": null}, {"text": "to", "start": 436, "end": 438, "annotation": null}, {"text": "corresponding", "start": 439, "end": 452, "annotation": null}, {"text": "data", "start": 453, "end": 457, "annotation": null}, {"text": "reported", "start": 458, "end": 466, "annotation": null}, {"text": "earlier", "start": 467, "end": 474, "annotation": null}, {"text": "for", "start": 475, "end": 478, "annotation": null}, {"text": "CeRhIn", "start": 479, "end": 485, "annotation": null}, {"text": ",", "start": 485, "end": 486, "annotation": null}, {"text": "its", "start": 487, "end": 490, "annotation": null}, {"text": "hydrides", "start": 491, "end": 499, "annotation": null}, {"text": "and", "start": 500, "end": 503, "annotation": null}, {"text": "CePdxRh1\u2212x", "start": 504, "end": 514, "annotation": "BASEMAT"}, {"text": "In", "start": 515, "end": 517, "annotation": null}, {"text": "solutions", "start": 518, "end": 527, "annotation": null}, {"text": ".", "start": 527, "end": 528, "annotation": null}], [{"text": "A", "start": 529, "end": 530, "annotation": null}, {"text": "systematic", "start": 531, "end": 541, "annotation": null}, {"text": "shift", "start": 542, "end": 547, "annotation": null}, {"text": "from", "start": 548, "end": 552, "annotation": null}, {"text": "the", "start": 553, "end": 556, "annotation": null}, {"text": "intermediate", "start": 557, "end": 569, "annotation": null}, {"text": "-", "start": 569, "end": 570, "annotation": null}, {"text": "valence", "start": 570, "end": 577, "annotation": null}, {"text": "to", "start": 578, "end": 580, "annotation": null}, {"text": "a", "start": 581, "end": 582, "annotation": null}, {"text": "localized", "start": 583, "end": 592, "annotation": null}, {"text": "4f-state", "start": 593, "end": 601, "annotation": null}, {"text": "with", "start": 602, "end": 606, "annotation": null}, {"text": "increasing", "start": 607, "end": 617, "annotation": null}, {"text": "content", "start": 618, "end": 625, "annotation": null}, {"text": "of", "start": 626, "end": 628, "annotation": null}, {"text": "germanium", "start": 629, "end": 638, "annotation": null}, {"text": "is", "start": 639, "end": 641, "annotation": null}, {"text": "evident", "start": 642, "end": 649, "annotation": null}, {"text": "from", "start": 650, "end": 654, "annotation": null}, {"text": "all", "start": 655, "end": 658, "annotation": null}, {"text": "obtained", "start": 659, "end": 667, "annotation": null}, {"text": "results", "start": 668, "end": 675, "annotation": null}, {"text": ".", "start": 675, "end": 676, "annotation": null}], [{"text": "Non-Fermi", "start": 677, "end": 686, "annotation": null}, {"text": "liquid", "start": 687, "end": 693, "annotation": null}, {"text": "state", "start": 694, "end": 699, "annotation": null}, {"text": "is", "start": 700, "end": 702, "annotation": null}, {"text": "formed", "start": 703, "end": 709, "annotation": null}, {"text": "at", "start": 710, "end": 712, "annotation": null}, {"text": "low", "start": 713, "end": 716, "annotation": null}, {"text": "temperatures", "start": 717, "end": 729, "annotation": null}, {"text": "for", "start": 730, "end": 733, "annotation": null}, {"text": "the", "start": 734, "end": 737, "annotation": null}, {"text": "solution", "start": 738, "end": 746, "annotation": null}, {"text": "with", "start": 747, "end": 751, "annotation": null}, {"text": "the", "start": 752, "end": 755, "annotation": null}, {"text": "lowest", "start": 756, "end": 762, "annotation": null}, {"text": "Ge", "start": 763, "end": 765, "annotation": null}, {"text": "content", "start": 766, "end": 773, "annotation": null}, {"text": ",", "start": 773, "end": 774, "annotation": null}, {"text": "but", "start": 775, "end": 778, "annotation": null}, {"text": "it", "start": 779, "end": 781, "annotation": null}, {"text": "is", "start": 782, "end": 784, "annotation": null}, {"text": "destroyed", "start": 785, "end": 794, "annotation": null}, {"text": "by", "start": 795, "end": 797, "annotation": null}, {"text": "magnetic", "start": 798, "end": 806, "annotation": null}, {"text": "field", "start": 807, "end": 812, "annotation": null}, {"text": "and", "start": 813, "end": 816, "annotation": null}, {"text": "/", "start": 816, "end": 817, "annotation": null}, {"text": "or", "start": 817, "end": 819, "annotation": null}, {"text": "further", "start": 820, "end": 827, "annotation": null}, {"text": "doping", "start": 828, "end": 834, "annotation": null}, {"text": "with", "start": 835, "end": 839, "annotation": null}, {"text": "Ge", "start": 840, "end": 842, "annotation": null}, {"text": ".", "start": 842, "end": 843, "annotation": null}]]} -{"text": "1, 2-dicyano-methanofullerene (C60(CN)2) is a soluble fullerene derivative that has been reported to have stronger electron affinity than parent C60. Ultraviolet photoelectron spectroscopy (UPS), X-ray photoelectron spectroscopy (XPS) and atomic force microscopy (AFM) experiments were carried out on C60(CN)2 thin films spin coated on heavily doped n-type Si substrate. UPS spectra enabled the determination of the vacuum shift at the fullerene derivative/Si interface and the onset of the highest occupied molecular orbital (HOMO). From the UV\u2013vis absorption spectra of C60(CN)2 thin films spin coated on quartz substrates, the optical band gap (Eg) and the onset of absorption were determined. These measurements allowed the determination of the lowest occupied molecular orbital (LUMO) position. The morphology of the deposited film was probed by AFM and reveals non-uniformity of the thin film. Open circuit voltage (Voc) measurements on P3HT/C60(CN)2 based organic solar cell device are compared to the commonly used P3HT/PCBM device.", "meta": {"doi": "10.1016/j.solmat.2010.12.024"}, "_input_hash": -540936896, "_task_hash": 1994811586, "tokens": [[{"text": "1", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": ",", "start": 2, "end": 3, "id": 1, "annotation": null}, {"text": "2-dicyano", "start": 4, "end": 13, "id": 2, "annotation": null}, {"text": "-", "start": 14, "end": 15, "id": 3, "annotation": null}, {"text": "methanofullerene", "start": 16, "end": 32, "id": 4, "annotation": null}, {"text": "(", "start": 33, "end": 34, "id": 5, "annotation": null}, {"text": "C60(CN)2", "start": 35, "end": 43, "id": 6, "annotation": null}, {"text": ")", "start": 44, "end": 45, "id": 7, "annotation": null}, {"text": "is", "start": 46, "end": 48, "id": 8, "annotation": null}, {"text": "a", "start": 49, "end": 50, "id": 9, "annotation": null}, {"text": "soluble", "start": 51, "end": 58, "id": 10, "annotation": null}, {"text": "fullerene", "start": 59, "end": 68, "id": 11, "annotation": null}, {"text": "derivative", "start": 69, "end": 79, "id": 12, "annotation": null}, {"text": "that", "start": 80, "end": 84, "id": 13, "annotation": null}, {"text": "has", "start": 85, "end": 88, "id": 14, "annotation": null}, {"text": "been", "start": 89, "end": 93, "id": 15, "annotation": null}, {"text": "reported", "start": 94, "end": 102, "id": 16, "annotation": null}, {"text": "to", "start": 103, "end": 105, "id": 17, "annotation": null}, {"text": "have", "start": 106, "end": 110, "id": 18, "annotation": null}, {"text": "stronger", "start": 111, "end": 119, "id": 19, "annotation": null}, {"text": "electron", "start": 120, "end": 128, "id": 20, "annotation": null}, {"text": "affinity", "start": 129, "end": 137, "id": 21, "annotation": null}, {"text": "than", "start": 138, "end": 142, "id": 22, "annotation": null}, {"text": "parent", "start": 143, "end": 149, "id": 23, "annotation": null}, {"text": "C60", "start": 150, "end": 153, "id": 24, "annotation": null}, {"text": ".", "start": 154, "end": 155, "id": 25, "annotation": null}], [{"text": "Ultraviolet", "start": 156, "end": 167, "id": 26, "annotation": null}, {"text": "photoelectron", "start": 168, "end": 181, "id": 27, "annotation": null}, {"text": "spectroscopy", "start": 182, "end": 194, "id": 28, "annotation": null}, {"text": "(", "start": 195, "end": 196, "id": 29, "annotation": null}, {"text": "UPS", "start": 197, "end": 200, "id": 30, "annotation": null}, {"text": ")", "start": 201, "end": 202, "id": 31, "annotation": null}, {"text": ",", "start": 203, "end": 204, "id": 32, "annotation": null}, {"text": "X", "start": 205, "end": 206, "id": 33, "annotation": null}, {"text": "-", "start": 207, "end": 208, "id": 34, "annotation": null}, {"text": "ray", "start": 209, "end": 212, "id": 35, "annotation": null}, {"text": "photoelectron", "start": 213, "end": 226, "id": 36, "annotation": null}, {"text": "spectroscopy", "start": 227, "end": 239, "id": 37, "annotation": null}, {"text": "(", "start": 240, "end": 241, "id": 38, "annotation": null}, {"text": "XPS", "start": 242, "end": 245, "id": 39, "annotation": null}, {"text": ")", "start": 246, "end": 247, "id": 40, "annotation": null}, {"text": "and", "start": 248, "end": 251, "id": 41, "annotation": null}, {"text": "atomic", "start": 252, "end": 258, "id": 42, "annotation": null}, {"text": "force", "start": 259, "end": 264, "id": 43, "annotation": null}, {"text": "microscopy", "start": 265, "end": 275, "id": 44, "annotation": null}, {"text": "(", "start": 276, "end": 277, "id": 45, "annotation": null}, {"text": "AFM", "start": 278, "end": 281, "id": 46, "annotation": null}, {"text": ")", "start": 282, "end": 283, "id": 47, "annotation": null}, {"text": "experiments", "start": 284, "end": 295, "id": 48, "annotation": null}, {"text": "were", "start": 296, "end": 300, "id": 49, "annotation": null}, {"text": "carried", "start": 301, "end": 308, "id": 50, "annotation": null}, {"text": "out", "start": 309, "end": 312, "id": 51, "annotation": null}, {"text": "on", "start": 313, "end": 315, "id": 52, "annotation": null}, {"text": "C60(CN)2", "start": 316, "end": 324, "id": 53, "annotation": null}, {"text": "thin", "start": 325, "end": 329, "id": 54, "annotation": null}, {"text": "films", "start": 330, "end": 335, "id": 55, "annotation": null}, {"text": "spin", "start": 336, "end": 340, "id": 56, "annotation": null}, {"text": "coated", "start": 341, "end": 347, "id": 57, "annotation": null}, {"text": "on", "start": 348, "end": 350, "id": 58, "annotation": null}, {"text": "heavily", "start": 351, "end": 358, "id": 59, "annotation": null}, {"text": "doped", "start": 359, "end": 364, "id": 60, "annotation": null}, {"text": "n", "start": 365, "end": 366, "id": 61, "annotation": "DOPANT"}, {"text": "-", "start": 367, "end": 368, "id": 62, "annotation": null}, {"text": "type", "start": 369, "end": 373, "id": 63, "annotation": "DOPANT"}, {"text": "Si", "start": 374, "end": 376, "id": 64, "annotation": "BASEMAT"}, {"text": "substrate", "start": 377, "end": 386, "id": 65, "annotation": null}, {"text": ".", "start": 387, "end": 388, "id": 66, "annotation": null}], [{"text": "UPS", "start": 389, "end": 392, "id": 67, "annotation": null}, {"text": "spectra", "start": 393, "end": 400, "id": 68, "annotation": null}, {"text": "enabled", "start": 401, "end": 408, "id": 69, "annotation": null}, {"text": "the", "start": 409, "end": 412, "id": 70, "annotation": null}, {"text": "determination", "start": 413, "end": 426, "id": 71, "annotation": null}, {"text": "of", "start": 427, "end": 429, "id": 72, "annotation": null}, {"text": "the", "start": 430, "end": 433, "id": 73, "annotation": null}, {"text": "vacuum", "start": 434, "end": 440, "id": 74, "annotation": null}, {"text": "shift", "start": 441, "end": 446, "id": 75, "annotation": null}, {"text": "at", "start": 447, "end": 449, "id": 76, "annotation": null}, {"text": "the", "start": 450, "end": 453, "id": 77, "annotation": null}, {"text": "fullerene", "start": 454, "end": 463, "id": 78, "annotation": null}, {"text": "derivative", "start": 464, "end": 474, "id": 79, "annotation": null}, {"text": "/", "start": 475, "end": 476, "id": 80, "annotation": null}, {"text": "Si", "start": 477, "end": 479, "id": 81, "annotation": null}, {"text": "interface", "start": 480, "end": 489, "id": 82, "annotation": null}, {"text": "and", "start": 490, "end": 493, "id": 83, "annotation": null}, {"text": "the", "start": 494, "end": 497, "id": 84, "annotation": null}, {"text": "onset", "start": 498, "end": 503, "id": 85, "annotation": null}, {"text": "of", "start": 504, "end": 506, "id": 86, "annotation": null}, {"text": "the", "start": 507, "end": 510, "id": 87, "annotation": null}, {"text": "highest", "start": 511, "end": 518, "id": 88, "annotation": null}, {"text": "occupied", "start": 519, "end": 527, "id": 89, "annotation": null}, {"text": "molecular", "start": 528, "end": 537, "id": 90, "annotation": null}, {"text": "orbital", "start": 538, "end": 545, "id": 91, "annotation": null}, {"text": "(", "start": 546, "end": 547, "id": 92, "annotation": null}, {"text": "HOMO", "start": 548, "end": 552, "id": 93, "annotation": null}, {"text": ")", "start": 553, "end": 554, "id": 94, "annotation": null}, {"text": ".", "start": 555, "end": 556, "id": 95, "annotation": null}], [{"text": "From", "start": 557, "end": 561, "id": 96, "annotation": null}, {"text": "the", "start": 562, "end": 565, "id": 97, "annotation": null}, {"text": "UV", "start": 566, "end": 568, "id": 98, "annotation": null}, {"text": "\u2013", "start": 569, "end": 570, "id": 99, "annotation": null}, {"text": "vis", "start": 571, "end": 574, "id": 100, "annotation": null}, {"text": "absorption", "start": 575, "end": 585, "id": 101, "annotation": null}, {"text": "spectra", "start": 586, "end": 593, "id": 102, "annotation": null}, {"text": "of", "start": 594, "end": 596, "id": 103, "annotation": null}, {"text": "C60(CN)2", "start": 597, "end": 605, "id": 104, "annotation": null}, {"text": "thin", "start": 606, "end": 610, "id": 105, "annotation": null}, {"text": "films", "start": 611, "end": 616, "id": 106, "annotation": null}, {"text": "spin", "start": 617, "end": 621, "id": 107, "annotation": null}, {"text": "coated", "start": 622, "end": 628, "id": 108, "annotation": null}, {"text": "on", "start": 629, "end": 631, "id": 109, "annotation": null}, {"text": "quartz", "start": 632, "end": 638, "id": 110, "annotation": null}, {"text": "substrates", "start": 639, "end": 649, "id": 111, "annotation": null}, {"text": ",", "start": 650, "end": 651, "id": 112, "annotation": null}, {"text": "the", "start": 652, "end": 655, "id": 113, "annotation": null}, {"text": "optical", "start": 656, "end": 663, "id": 114, "annotation": null}, {"text": "band", "start": 664, "end": 668, "id": 115, "annotation": null}, {"text": "gap", "start": 669, "end": 672, "id": 116, "annotation": null}, {"text": "(", "start": 673, "end": 674, "id": 117, "annotation": null}, {"text": "Eg", "start": 675, "end": 677, "id": 118, "annotation": null}, {"text": ")", "start": 678, "end": 679, "id": 119, "annotation": null}, {"text": "and", "start": 680, "end": 683, "id": 120, "annotation": null}, {"text": "the", "start": 684, "end": 687, "id": 121, "annotation": null}, {"text": "onset", "start": 688, "end": 693, "id": 122, "annotation": null}, {"text": "of", "start": 694, "end": 696, "id": 123, "annotation": null}, {"text": "absorption", "start": 697, "end": 707, "id": 124, "annotation": null}, {"text": "were", "start": 708, "end": 712, "id": 125, "annotation": null}, {"text": "determined", "start": 713, "end": 723, "id": 126, "annotation": null}, {"text": ".", "start": 724, "end": 725, "id": 127, "annotation": null}], [{"text": "These", "start": 726, "end": 731, "id": 128, "annotation": null}, {"text": "measurements", "start": 732, "end": 744, "id": 129, "annotation": null}, {"text": "allowed", "start": 745, "end": 752, "id": 130, "annotation": null}, {"text": "the", "start": 753, "end": 756, "id": 131, "annotation": null}, {"text": "determination", "start": 757, "end": 770, "id": 132, "annotation": null}, {"text": "of", "start": 771, "end": 773, "id": 133, "annotation": null}, {"text": "the", "start": 774, "end": 777, "id": 134, "annotation": null}, {"text": "lowest", "start": 778, "end": 784, "id": 135, "annotation": null}, {"text": "occupied", "start": 785, "end": 793, "id": 136, "annotation": null}, {"text": "molecular", "start": 794, "end": 803, "id": 137, "annotation": null}, {"text": "orbital", "start": 804, "end": 811, "id": 138, "annotation": null}, {"text": "(", "start": 812, "end": 813, "id": 139, "annotation": null}, {"text": "LUMO", "start": 814, "end": 818, "id": 140, "annotation": null}, {"text": ")", "start": 819, "end": 820, "id": 141, "annotation": null}, {"text": "position", "start": 821, "end": 829, "id": 142, "annotation": null}, {"text": ".", "start": 830, "end": 831, "id": 143, "annotation": null}], [{"text": "The", "start": 832, "end": 835, "id": 144, "annotation": null}, {"text": "morphology", "start": 836, "end": 846, "id": 145, "annotation": null}, {"text": "of", "start": 847, "end": 849, "id": 146, "annotation": null}, {"text": "the", "start": 850, "end": 853, "id": 147, "annotation": null}, {"text": "deposited", "start": 854, "end": 863, "id": 148, "annotation": null}, {"text": "film", "start": 864, "end": 868, "id": 149, "annotation": null}, {"text": "was", "start": 869, "end": 872, "id": 150, "annotation": null}, {"text": "probed", "start": 873, "end": 879, "id": 151, "annotation": null}, {"text": "by", "start": 880, "end": 882, "id": 152, "annotation": null}, {"text": "AFM", "start": 883, "end": 886, "id": 153, "annotation": null}, {"text": "and", "start": 887, "end": 890, "id": 154, "annotation": null}, {"text": "reveals", "start": 891, "end": 898, "id": 155, "annotation": null}, {"text": "non", "start": 899, "end": 902, "id": 156, "annotation": null}, {"text": "-", "start": 903, "end": 904, "id": 157, "annotation": null}, {"text": "uniformity", "start": 905, "end": 915, "id": 158, "annotation": null}, {"text": "of", "start": 916, "end": 918, "id": 159, "annotation": null}, {"text": "the", "start": 919, "end": 922, "id": 160, "annotation": null}, {"text": "thin", "start": 923, "end": 927, "id": 161, "annotation": null}, {"text": "film", "start": 928, "end": 932, "id": 162, "annotation": null}, {"text": ".", "start": 933, "end": 934, "id": 163, "annotation": null}], [{"text": "Open", "start": 935, "end": 939, "id": 164, "annotation": null}, {"text": "circuit", "start": 940, "end": 947, "id": 165, "annotation": null}, {"text": "voltage", "start": 948, "end": 955, "id": 166, "annotation": null}, {"text": "(", "start": 956, "end": 957, "id": 167, "annotation": null}, {"text": "Voc", "start": 958, "end": 961, "id": 168, "annotation": null}, {"text": ")", "start": 962, "end": 963, "id": 169, "annotation": null}, {"text": "measurements", "start": 964, "end": 976, "id": 170, "annotation": null}, {"text": "on", "start": 977, "end": 979, "id": 171, "annotation": null}, {"text": "P3HT", "start": 980, "end": 984, "id": 172, "annotation": null}, {"text": "/", "start": 985, "end": 986, "id": 173, "annotation": null}, {"text": "C60(CN)2", "start": 987, "end": 995, "id": 174, "annotation": null}, {"text": "based", "start": 996, "end": 1001, "id": 175, "annotation": null}, {"text": "organic", "start": 1002, "end": 1009, "id": 176, "annotation": null}, {"text": "solar", "start": 1010, "end": 1015, "id": 177, "annotation": null}, {"text": "cell", "start": 1016, "end": 1020, "id": 178, "annotation": null}, {"text": "device", "start": 1021, "end": 1027, "id": 179, "annotation": null}, {"text": "are", "start": 1028, "end": 1031, "id": 180, "annotation": null}, {"text": "compared", "start": 1032, "end": 1040, "id": 181, "annotation": null}, {"text": "to", "start": 1041, "end": 1043, "id": 182, "annotation": null}, {"text": "the", "start": 1044, "end": 1047, "id": 183, "annotation": null}, {"text": "commonly", "start": 1048, "end": 1056, "id": 184, "annotation": null}, {"text": "used", "start": 1057, "end": 1061, "id": 185, "annotation": null}, {"text": "P3HT", "start": 1062, "end": 1066, "id": 186, "annotation": null}, {"text": "/", "start": 1067, "end": 1068, "id": 187, "annotation": null}, {"text": "PCBM", "start": 1069, "end": 1073, "id": 188, "annotation": null}, {"text": "device", "start": 1074, "end": 1080, "id": 189, "annotation": null}, {"text": ".", "start": 1081, "end": 1082, "id": 190, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "ZnO:Eu3+ (0.1 and 3 at%) with average particle size of 500 nm were prepared by the Pechini method. Photoluminescence spectroscopy evidences that there is no energy transfer between ZnO and Eu3+ ion. The emission spectrum at 77 K shows that Eu3+ ions occupy at least three different sites in ZnO:Eu 3 at% sample. The experimental intensity parameter \u03a9 2 indicates that Eu3+ ions in the sample doped with 3 at% occupy sites where 4f-configurational levels can better mix with opposite-parity states than those in the sample doped with 0.1 at%.", "meta": {"doi": "10.1016/S0925-8388(02)00369-9"}, "_input_hash": 2062923871, "_task_hash": -1473462462, "tokens": [[{"text": "ZnO", "start": 0, "end": 3, "id": 0, "annotation": "BASEMAT"}, {"text": ":", "start": 4, "end": 5, "id": 1, "annotation": null}, {"text": "Eu3", "start": 6, "end": 9, "id": 2, "annotation": "DOPANT"}, {"text": "+", "start": 10, "end": 11, "id": 3, "annotation": "DOPANT"}, {"text": "(", "start": 12, "end": 13, "id": 4, "annotation": null}, {"text": "0.1", "start": 14, "end": 17, "id": 5, "annotation": "DOPMODQ"}, {"text": "and", "start": 18, "end": 21, "id": 6, "annotation": null}, {"text": "3", "start": 22, "end": 23, "id": 7, "annotation": "DOPMODQ"}, {"text": "at%", "start": 24, "end": 27, "id": 8, "annotation": "DOPMODQ"}, {"text": ")", "start": 28, "end": 29, "id": 9, "annotation": null}, {"text": "with", "start": 30, "end": 34, "id": 10, "annotation": null}, {"text": "average", "start": 35, "end": 42, "id": 11, "annotation": null}, {"text": "particle", "start": 43, "end": 51, "id": 12, "annotation": null}, {"text": "size", "start": 52, "end": 56, "id": 13, "annotation": null}, {"text": "of", "start": 57, "end": 59, "id": 14, "annotation": null}, {"text": "500", "start": 60, "end": 63, "id": 15, "annotation": null}, {"text": "nm", "start": 64, "end": 66, "id": 16, "annotation": null}, {"text": "were", "start": 67, "end": 71, "id": 17, "annotation": null}, {"text": "prepared", "start": 72, "end": 80, "id": 18, "annotation": null}, {"text": "by", "start": 81, "end": 83, "id": 19, "annotation": null}, {"text": "the", "start": 84, "end": 87, "id": 20, "annotation": null}, {"text": "Pechini", "start": 88, "end": 95, "id": 21, "annotation": null}, {"text": "method", "start": 96, "end": 102, "id": 22, "annotation": null}, {"text": ".", "start": 103, "end": 104, "id": 23, "annotation": null}], [{"text": "Photoluminescence", "start": 105, "end": 122, "id": 24, "annotation": null}, {"text": "spectroscopy", "start": 123, "end": 135, "id": 25, "annotation": null}, {"text": "evidences", "start": 136, "end": 145, "id": 26, "annotation": null}, {"text": "that", "start": 146, "end": 150, "id": 27, "annotation": null}, {"text": "there", "start": 151, "end": 156, "id": 28, "annotation": null}, {"text": "is", "start": 157, "end": 159, "id": 29, "annotation": null}, {"text": "no", "start": 160, "end": 162, "id": 30, "annotation": null}, {"text": "energy", "start": 163, "end": 169, "id": 31, "annotation": null}, {"text": "transfer", "start": 170, "end": 178, "id": 32, "annotation": null}, {"text": "between", "start": 179, "end": 186, "id": 33, "annotation": null}, {"text": "ZnO", "start": 187, "end": 190, "id": 34, "annotation": null}, {"text": "and", "start": 191, "end": 194, "id": 35, "annotation": null}, {"text": "Eu3", "start": 195, "end": 198, "id": 36, "annotation": null}, {"text": "+", "start": 199, "end": 200, "id": 37, "annotation": null}, {"text": "ion", "start": 201, "end": 204, "id": 38, "annotation": null}, {"text": ".", "start": 205, "end": 206, "id": 39, "annotation": null}], [{"text": "The", "start": 207, "end": 210, "id": 40, "annotation": null}, {"text": "emission", "start": 211, "end": 219, "id": 41, "annotation": null}, {"text": "spectrum", "start": 220, "end": 228, "id": 42, "annotation": null}, {"text": "at", "start": 229, "end": 231, "id": 43, "annotation": null}, {"text": "77", "start": 232, "end": 234, "id": 44, "annotation": null}, {"text": "K", "start": 235, "end": 236, "id": 45, "annotation": null}, {"text": "shows", "start": 237, "end": 242, "id": 46, "annotation": null}, {"text": "that", "start": 243, "end": 247, "id": 47, "annotation": null}, {"text": "Eu3", "start": 248, "end": 251, "id": 48, "annotation": "DOPANT"}, {"text": "+", "start": 252, "end": 253, "id": 49, "annotation": "DOPANT"}, {"text": "ions", "start": 254, "end": 258, "id": 50, "annotation": null}, {"text": "occupy", "start": 259, "end": 265, "id": 51, "annotation": null}, {"text": "at", "start": 266, "end": 268, "id": 52, "annotation": null}, {"text": "least", "start": 269, "end": 274, "id": 53, "annotation": null}, {"text": "three", "start": 275, "end": 280, "id": 54, "annotation": null}, {"text": "different", "start": 281, "end": 290, "id": 55, "annotation": null}, {"text": "sites", "start": 291, "end": 296, "id": 56, "annotation": null}, {"text": "in", "start": 297, "end": 299, "id": 57, "annotation": null}, {"text": "ZnO", "start": 300, "end": 303, "id": 58, "annotation": "BASEMAT"}, {"text": ":", "start": 304, "end": 305, "id": 59, "annotation": null}, {"text": "Eu", "start": 306, "end": 308, "id": 60, "annotation": "DOPANT"}, {"text": "3", "start": 309, "end": 310, "id": 61, "annotation": "DOPMODQ"}, {"text": "at%", "start": 311, "end": 314, "id": 62, "annotation": "DOPMODQ"}, {"text": "sample", "start": 315, "end": 321, "id": 63, "annotation": null}, {"text": ".", "start": 322, "end": 323, "id": 64, "annotation": null}], [{"text": "The", "start": 324, "end": 327, "id": 65, "annotation": null}, {"text": "experimental", "start": 328, "end": 340, "id": 66, "annotation": null}, {"text": "intensity", "start": 341, "end": 350, "id": 67, "annotation": null}, {"text": "parameter", "start": 351, "end": 360, "id": 68, "annotation": null}, {"text": "\u03a9", "start": 361, "end": 362, "id": 69, "annotation": null}, {"text": "2", "start": 363, "end": 364, "id": 70, "annotation": null}, {"text": "indicates", "start": 365, "end": 374, "id": 71, "annotation": null}, {"text": "that", "start": 375, "end": 379, "id": 72, "annotation": null}, {"text": "Eu3", "start": 380, "end": 383, "id": 73, "annotation": "DOPANT"}, {"text": "+", "start": 384, "end": 385, "id": 74, "annotation": "DOPANT"}, {"text": "ions", "start": 386, "end": 390, "id": 75, "annotation": null}, {"text": "in", "start": 391, "end": 393, "id": 76, "annotation": null}, {"text": "the", "start": 394, "end": 397, "id": 77, "annotation": null}, {"text": "sample", "start": 398, "end": 404, "id": 78, "annotation": "BASEMAT"}, {"text": "doped", "start": 405, "end": 410, "id": 79, "annotation": null}, {"text": "with", "start": 411, "end": 415, "id": 80, "annotation": null}, {"text": "3", "start": 416, "end": 417, "id": 81, "annotation": "DOPMODQ"}, {"text": "at%", "start": 418, "end": 421, "id": 82, "annotation": "DOPMODQ"}, {"text": "occupy", "start": 422, "end": 428, "id": 83, "annotation": null}, {"text": "sites", "start": 429, "end": 434, "id": 84, "annotation": null}, {"text": "where", "start": 435, "end": 440, "id": 85, "annotation": null}, {"text": "4f", "start": 441, "end": 443, "id": 86, "annotation": null}, {"text": "-", "start": 444, "end": 445, "id": 87, "annotation": null}, {"text": "configurational", "start": 446, "end": 461, "id": 88, "annotation": null}, {"text": "levels", "start": 462, "end": 468, "id": 89, "annotation": null}, {"text": "can", "start": 469, "end": 472, "id": 90, "annotation": null}, {"text": "better", "start": 473, "end": 479, "id": 91, "annotation": null}, {"text": "mix", "start": 480, "end": 483, "id": 92, "annotation": null}, {"text": "with", "start": 484, "end": 488, "id": 93, "annotation": null}, {"text": "opposite", "start": 489, "end": 497, "id": 94, "annotation": null}, {"text": "-", "start": 498, "end": 499, "id": 95, "annotation": null}, {"text": "parity", "start": 500, "end": 506, "id": 96, "annotation": null}, {"text": "states", "start": 507, "end": 513, "id": 97, "annotation": null}, {"text": "than", "start": 514, "end": 518, "id": 98, "annotation": null}, {"text": "those", "start": 519, "end": 524, "id": 99, "annotation": null}, {"text": "in", "start": 525, "end": 527, "id": 100, "annotation": null}, {"text": "the", "start": 528, "end": 531, "id": 101, "annotation": null}, {"text": "sample", "start": 532, "end": 538, "id": 102, "annotation": "BASEMAT"}, {"text": "doped", "start": 539, "end": 544, "id": 103, "annotation": null}, {"text": "with", "start": 545, "end": 549, "id": 104, "annotation": null}, {"text": "0.1", "start": 550, "end": 553, "id": 105, "annotation": "DOPMODQ"}, {"text": "at%", "start": 554, "end": 557, "id": 106, "annotation": "DOPMODQ"}, {"text": ".", "start": 558, "end": 559, "id": 107, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "\u00a9 The Royal Society of Chemistry. By using hierarchically mesoporous silica spheres as hard template, 2-aminopyridine and FeCl3 as carbon, nitrogen and iron sources, respectively, iron and nitrogen co-doped hierarchically mesoporous carbon spheres (Fe-N-CS) were successfully prepared. The sample Fe-N-CS-900 obtained at a carbonization temperature of 900 \u00b0C exhibited a highly efficient electrocatalytic activity with positive half-wave potential (\u22120.11 V), high limiting current density (\u22124.79 mA cm\u22122) and high selectivity (electron transfer number around 4) for the oxygen reduction reaction (ORR) in alkaline media. Moreover, Fe-N-CS-900 shows higher stability and better methanol tolerance in comparison to commercial Pt/C catalyst in both alkaline and acidic media. Its highly efficient ORR activity could be ascribed to its high specific surface area, unique porous structure and homogeneous distribution of Fe-Nx active sites formed during pyrolysis.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "By", "start": 34, "end": 36, "annotation": null}, {"text": "using", "start": 37, "end": 42, "annotation": null}, {"text": "hierarchically", "start": 43, "end": 57, "annotation": null}, {"text": "mesoporous", "start": 58, "end": 68, "annotation": null}, {"text": "silica", "start": 69, "end": 75, "annotation": null}, {"text": "spheres", "start": 76, "end": 83, "annotation": null}, {"text": "as", "start": 84, "end": 86, "annotation": null}, {"text": "hard", "start": 87, "end": 91, "annotation": null}, {"text": "template", "start": 92, "end": 100, "annotation": null}, {"text": ",", "start": 100, "end": 101, "annotation": null}, {"text": "2-aminopyridine", "start": 102, "end": 117, "annotation": null}, {"text": "and", "start": 118, "end": 121, "annotation": null}, {"text": "FeCl3", "start": 122, "end": 127, "annotation": null}, {"text": "as", "start": 128, "end": 130, "annotation": null}, {"text": "carbon", "start": 131, "end": 137, "annotation": null}, {"text": ",", "start": 137, "end": 138, "annotation": null}, {"text": "nitrogen", "start": 139, "end": 147, "annotation": null}, {"text": "and", "start": 148, "end": 151, "annotation": null}, {"text": "iron", "start": 152, "end": 156, "annotation": null}, {"text": "sources", "start": 157, "end": 164, "annotation": null}, {"text": ",", "start": 164, "end": 165, "annotation": null}, {"text": "respectively", "start": 166, "end": 178, "annotation": null}, {"text": ",", "start": 178, "end": 179, "annotation": null}, {"text": "iron", "start": 180, "end": 184, "annotation": "DOPANT"}, {"text": "and", "start": 185, "end": 188, "annotation": null}, {"text": "nitrogen", "start": 189, "end": 197, "annotation": "DOPANT"}, {"text": "co-doped", "start": 198, "end": 206, "annotation": null}, {"text": "hierarchically", "start": 207, "end": 221, "annotation": null}, {"text": "mesoporous", "start": 222, "end": 232, "annotation": null}, {"text": "carbon", "start": 233, "end": 239, "annotation": "BASEMAT"}, {"text": "spheres", "start": 240, "end": 247, "annotation": null}, {"text": "(", "start": 248, "end": 249, "annotation": null}, {"text": "Fe-N-CS", "start": 249, "end": 256, "annotation": null}, {"text": ")", "start": 256, "end": 257, "annotation": null}, {"text": "were", "start": 258, "end": 262, "annotation": null}, {"text": "successfully", "start": 263, "end": 275, "annotation": null}, {"text": "prepared", "start": 276, "end": 284, "annotation": null}, {"text": ".", "start": 284, "end": 285, "annotation": null}], [{"text": "The", "start": 286, "end": 289, "annotation": null}, {"text": "sample", "start": 290, "end": 296, "annotation": null}, {"text": "Fe-N-CS-900", "start": 297, "end": 308, "annotation": null}, {"text": "obtained", "start": 309, "end": 317, "annotation": null}, {"text": "at", "start": 318, "end": 320, "annotation": null}, {"text": "a", "start": 321, "end": 322, "annotation": null}, {"text": "carbonization", "start": 323, "end": 336, "annotation": null}, {"text": "temperature", "start": 337, "end": 348, "annotation": null}, {"text": "of", "start": 349, "end": 351, "annotation": null}, {"text": "900", "start": 352, "end": 355, "annotation": null}, {"text": "\u00b0", "start": 356, "end": 357, "annotation": null}, {"text": "C", "start": 357, "end": 358, "annotation": null}, {"text": "exhibited", "start": 359, "end": 368, "annotation": null}, {"text": "a", "start": 369, "end": 370, "annotation": null}, {"text": "highly", "start": 371, "end": 377, "annotation": null}, {"text": "efficient", "start": 378, "end": 387, "annotation": null}, {"text": "electrocatalytic", "start": 388, "end": 404, "annotation": null}, {"text": "activity", "start": 405, "end": 413, "annotation": null}, {"text": "with", "start": 414, "end": 418, "annotation": null}, {"text": "positive", "start": 419, "end": 427, "annotation": null}, {"text": "half", "start": 428, "end": 432, "annotation": null}, {"text": "-", "start": 432, "end": 433, "annotation": null}, {"text": "wave", "start": 433, "end": 437, "annotation": null}, {"text": "potential", "start": 438, "end": 447, "annotation": null}, {"text": "(", "start": 448, "end": 449, "annotation": null}, {"text": "\u2212", "start": 449, "end": 450, "annotation": null}, {"text": "0.11", "start": 450, "end": 454, "annotation": null}, {"text": "V", "start": 455, "end": 456, "annotation": null}, {"text": ")", "start": 456, "end": 457, "annotation": null}, {"text": ",", "start": 457, "end": 458, "annotation": null}, {"text": "high", "start": 459, "end": 463, "annotation": null}, {"text": "limiting", "start": 464, "end": 472, "annotation": null}, {"text": "current", "start": 473, "end": 480, "annotation": null}, {"text": "density", "start": 481, "end": 488, "annotation": null}, {"text": "(", "start": 489, "end": 490, "annotation": null}, {"text": "\u2212", "start": 490, "end": 491, "annotation": null}, {"text": "4.79", "start": 491, "end": 495, "annotation": null}, {"text": "mA", "start": 496, "end": 498, "annotation": null}, {"text": "cm\u22122", "start": 499, "end": 503, "annotation": null}, {"text": ")", "start": 503, "end": 504, "annotation": null}, {"text": "and", "start": 505, "end": 508, "annotation": null}, {"text": "high", "start": 509, "end": 513, "annotation": null}, {"text": "selectivity", "start": 514, "end": 525, "annotation": null}, {"text": "(", "start": 526, "end": 527, "annotation": null}, {"text": "electron", "start": 527, "end": 535, "annotation": null}, {"text": "transfer", "start": 536, "end": 544, "annotation": null}, {"text": "number", "start": 545, "end": 551, "annotation": null}, {"text": "around", "start": 552, "end": 558, "annotation": null}, {"text": "4", "start": 559, "end": 560, "annotation": null}, {"text": ")", "start": 560, "end": 561, "annotation": null}, {"text": "for", "start": 562, "end": 565, "annotation": null}, {"text": "the", "start": 566, "end": 569, "annotation": null}, {"text": "oxygen", "start": 570, "end": 576, "annotation": null}, {"text": "reduction", "start": 577, "end": 586, "annotation": null}, {"text": "reaction", "start": 587, "end": 595, "annotation": null}, {"text": "(", "start": 596, "end": 597, "annotation": null}, {"text": "ORR", "start": 597, "end": 600, "annotation": null}, {"text": ")", "start": 600, "end": 601, "annotation": null}, {"text": "in", "start": 602, "end": 604, "annotation": null}, {"text": "alkaline", "start": 605, "end": 613, "annotation": null}, {"text": "media", "start": 614, "end": 619, "annotation": null}, {"text": ".", "start": 619, "end": 620, "annotation": null}], [{"text": "Moreover", "start": 621, "end": 629, "annotation": null}, {"text": ",", "start": 629, "end": 630, "annotation": null}, {"text": "Fe-N-CS-900", "start": 631, "end": 642, "annotation": null}, {"text": "shows", "start": 643, "end": 648, "annotation": null}, {"text": "higher", "start": 649, "end": 655, "annotation": null}, {"text": "stability", "start": 656, "end": 665, "annotation": null}, {"text": "and", "start": 666, "end": 669, "annotation": null}, {"text": "better", "start": 670, "end": 676, "annotation": null}, {"text": "methanol", "start": 677, "end": 685, "annotation": null}, {"text": "tolerance", "start": 686, "end": 695, "annotation": null}, {"text": "in", "start": 696, "end": 698, "annotation": null}, {"text": "comparison", "start": 699, "end": 709, "annotation": null}, {"text": "to", "start": 710, "end": 712, "annotation": null}, {"text": "commercial", "start": 713, "end": 723, "annotation": null}, {"text": "Pt", "start": 724, "end": 726, "annotation": null}, {"text": "/", "start": 726, "end": 727, "annotation": null}, {"text": "C", "start": 727, "end": 728, "annotation": null}, {"text": "catalyst", "start": 729, "end": 737, "annotation": null}, {"text": "in", "start": 738, "end": 740, "annotation": null}, {"text": "both", "start": 741, "end": 745, "annotation": null}, {"text": "alkaline", "start": 746, "end": 754, "annotation": null}, {"text": "and", "start": 755, "end": 758, "annotation": null}, {"text": "acidic", "start": 759, "end": 765, "annotation": null}, {"text": "media", "start": 766, "end": 771, "annotation": null}, {"text": ".", "start": 771, "end": 772, "annotation": null}], [{"text": "Its", "start": 773, "end": 776, "annotation": null}, {"text": "highly", "start": 777, "end": 783, "annotation": null}, {"text": "efficient", "start": 784, "end": 793, "annotation": null}, {"text": "ORR", "start": 794, "end": 797, "annotation": null}, {"text": "activity", "start": 798, "end": 806, "annotation": null}, {"text": "could", "start": 807, "end": 812, "annotation": null}, {"text": "be", "start": 813, "end": 815, "annotation": null}, {"text": "ascribed", "start": 816, "end": 824, "annotation": null}, {"text": "to", "start": 825, "end": 827, "annotation": null}, {"text": "its", "start": 828, "end": 831, "annotation": null}, {"text": "high", "start": 832, "end": 836, "annotation": null}, {"text": "specific", "start": 837, "end": 845, "annotation": null}, {"text": "surface", "start": 846, "end": 853, "annotation": null}, {"text": "area", "start": 854, "end": 858, "annotation": null}, {"text": ",", "start": 858, "end": 859, "annotation": null}, {"text": "unique", "start": 860, "end": 866, "annotation": null}, {"text": "porous", "start": 867, "end": 873, "annotation": null}, {"text": "structure", "start": 874, "end": 883, "annotation": null}, {"text": "and", "start": 884, "end": 887, "annotation": null}, {"text": "homogeneous", "start": 888, "end": 899, "annotation": null}, {"text": "distribution", "start": 900, "end": 912, "annotation": null}, {"text": "of", "start": 913, "end": 915, "annotation": null}, {"text": "Fe-Nx", "start": 916, "end": 921, "annotation": null}, {"text": "active", "start": 922, "end": 928, "annotation": null}, {"text": "sites", "start": 929, "end": 934, "annotation": null}, {"text": "formed", "start": 935, "end": 941, "annotation": null}, {"text": "during", "start": 942, "end": 948, "annotation": null}, {"text": "pyrolysis", "start": 949, "end": 958, "annotation": null}, {"text": ".", "start": 958, "end": 959, "annotation": null}]]} +{"remark": "doping_annt2", "text": "We examined how electronic properties of the intermediate-valent CeRhIn are influenced by gradual substitution of rhodium with germanium. Results of specific-heat, magnetic susceptibility, electrical resistivity, thermopower and X-ray photoelectron spectroscopy (XPS) measurements performed in wide range of temperature and magnetic field on polycrystalline samples of CeRh1\u2212xGexIn, for x = 0.1, 0.2 and 0.3, are presented and compared to corresponding data reported earlier for CeRhIn, its hydrides and CePdxRh1\u2212x In solutions. A systematic shift from the intermediate-valence to a localized 4f-state with increasing content of germanium is evident from all obtained results. Non-Fermi liquid state is formed at low temperatures for the solution with the lowest Ge content, but it is destroyed by magnetic field and/or further doping with Ge.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "examined", "start": 3, "end": 11, "annotation": null}, {"text": "how", "start": 12, "end": 15, "annotation": null}, {"text": "electronic", "start": 16, "end": 26, "annotation": null}, {"text": "properties", "start": 27, "end": 37, "annotation": null}, {"text": "of", "start": 38, "end": 40, "annotation": null}, {"text": "the", "start": 41, "end": 44, "annotation": null}, {"text": "intermediate", "start": 45, "end": 57, "annotation": null}, {"text": "-", "start": 57, "end": 58, "annotation": null}, {"text": "valent", "start": 58, "end": 64, "annotation": null}, {"text": "CeRhIn", "start": 65, "end": 71, "annotation": "BASEMAT"}, {"text": "are", "start": 72, "end": 75, "annotation": null}, {"text": "influenced", "start": 76, "end": 86, "annotation": null}, {"text": "by", "start": 87, "end": 89, "annotation": null}, {"text": "gradual", "start": 90, "end": 97, "annotation": null}, {"text": "substitution", "start": 98, "end": 110, "annotation": null}, {"text": "of", "start": 111, "end": 113, "annotation": null}, {"text": "rhodium", "start": 114, "end": 121, "annotation": null}, {"text": "with", "start": 122, "end": 126, "annotation": null}, {"text": "germanium", "start": 127, "end": 136, "annotation": "DOPANT"}, {"text": ".", "start": 136, "end": 137, "annotation": null}], [{"text": "Results", "start": 138, "end": 145, "annotation": null}, {"text": "of", "start": 146, "end": 148, "annotation": null}, {"text": "specific", "start": 149, "end": 157, "annotation": null}, {"text": "-", "start": 157, "end": 158, "annotation": null}, {"text": "heat", "start": 158, "end": 162, "annotation": null}, {"text": ",", "start": 162, "end": 163, "annotation": null}, {"text": "magnetic", "start": 164, "end": 172, "annotation": null}, {"text": "susceptibility", "start": 173, "end": 187, "annotation": null}, {"text": ",", "start": 187, "end": 188, "annotation": null}, {"text": "electrical", "start": 189, "end": 199, "annotation": null}, {"text": "resistivity", "start": 200, "end": 211, "annotation": null}, {"text": ",", "start": 211, "end": 212, "annotation": null}, {"text": "thermopower", "start": 213, "end": 224, "annotation": null}, {"text": "and", "start": 225, "end": 228, "annotation": null}, {"text": "X-ray", "start": 229, "end": 234, "annotation": null}, {"text": "photoelectron", "start": 235, "end": 248, "annotation": null}, {"text": "spectroscopy", "start": 249, "end": 261, "annotation": null}, {"text": "(", "start": 262, "end": 263, "annotation": null}, {"text": "XPS", "start": 263, "end": 266, "annotation": null}, {"text": ")", "start": 266, "end": 267, "annotation": null}, {"text": "measurements", "start": 268, "end": 280, "annotation": null}, {"text": "performed", "start": 281, "end": 290, "annotation": null}, {"text": "in", "start": 291, "end": 293, "annotation": null}, {"text": "wide", "start": 294, "end": 298, "annotation": null}, {"text": "range", "start": 299, "end": 304, "annotation": null}, {"text": "of", "start": 305, "end": 307, "annotation": null}, {"text": "temperature", "start": 308, "end": 319, "annotation": null}, {"text": "and", "start": 320, "end": 323, "annotation": null}, {"text": "magnetic", "start": 324, "end": 332, "annotation": null}, {"text": "field", "start": 333, "end": 338, "annotation": null}, {"text": "on", "start": 339, "end": 341, "annotation": null}, {"text": "polycrystalline", "start": 342, "end": 357, "annotation": null}, {"text": "samples", "start": 358, "end": 365, "annotation": null}, {"text": "of", "start": 366, "end": 368, "annotation": null}, {"text": "CeRh1\u2212xGexIn", "start": 369, "end": 381, "annotation": "BASEMAT"}, {"text": ",", "start": 381, "end": 382, "annotation": null}, {"text": "for", "start": 383, "end": 386, "annotation": null}, {"text": "x", "start": 387, "end": 388, "annotation": "DOPMODQ"}, {"text": "=", "start": 389, "end": 390, "annotation": "DOPMODQ"}, {"text": "0.1", "start": 391, "end": 394, "annotation": "DOPMODQ"}, {"text": ",", "start": 394, "end": 395, "annotation": null}, {"text": "0.2", "start": 396, "end": 399, "annotation": "DOPMODQ"}, {"text": "and", "start": 400, "end": 403, "annotation": null}, {"text": "0.3", "start": 404, "end": 407, "annotation": "DOPMODQ"}, {"text": ",", "start": 407, "end": 408, "annotation": null}, {"text": "are", "start": 409, "end": 412, "annotation": null}, {"text": "presented", "start": 413, "end": 422, "annotation": null}, {"text": "and", "start": 423, "end": 426, "annotation": null}, {"text": "compared", "start": 427, "end": 435, "annotation": null}, {"text": "to", "start": 436, "end": 438, "annotation": null}, {"text": "corresponding", "start": 439, "end": 452, "annotation": null}, {"text": "data", "start": 453, "end": 457, "annotation": null}, {"text": "reported", "start": 458, "end": 466, "annotation": null}, {"text": "earlier", "start": 467, "end": 474, "annotation": null}, {"text": "for", "start": 475, "end": 478, "annotation": null}, {"text": "CeRhIn", "start": 479, "end": 485, "annotation": null}, {"text": ",", "start": 485, "end": 486, "annotation": null}, {"text": "its", "start": 487, "end": 490, "annotation": null}, {"text": "hydrides", "start": 491, "end": 499, "annotation": null}, {"text": "and", "start": 500, "end": 503, "annotation": null}, {"text": "CePdxRh1\u2212x", "start": 504, "end": 514, "annotation": "BASEMAT"}, {"text": "In", "start": 515, "end": 517, "annotation": null}, {"text": "solutions", "start": 518, "end": 527, "annotation": null}, {"text": ".", "start": 527, "end": 528, "annotation": null}], [{"text": "A", "start": 529, "end": 530, "annotation": null}, {"text": "systematic", "start": 531, "end": 541, "annotation": null}, {"text": "shift", "start": 542, "end": 547, "annotation": null}, {"text": "from", "start": 548, "end": 552, "annotation": null}, {"text": "the", "start": 553, "end": 556, "annotation": null}, {"text": "intermediate", "start": 557, "end": 569, "annotation": null}, {"text": "-", "start": 569, "end": 570, "annotation": null}, {"text": "valence", "start": 570, "end": 577, "annotation": null}, {"text": "to", "start": 578, "end": 580, "annotation": null}, {"text": "a", "start": 581, "end": 582, "annotation": null}, {"text": "localized", "start": 583, "end": 592, "annotation": null}, {"text": "4f-state", "start": 593, "end": 601, "annotation": null}, {"text": "with", "start": 602, "end": 606, "annotation": null}, {"text": "increasing", "start": 607, "end": 617, "annotation": null}, {"text": "content", "start": 618, "end": 625, "annotation": null}, {"text": "of", "start": 626, "end": 628, "annotation": null}, {"text": "germanium", "start": 629, "end": 638, "annotation": null}, {"text": "is", "start": 639, "end": 641, "annotation": null}, {"text": "evident", "start": 642, "end": 649, "annotation": null}, {"text": "from", "start": 650, "end": 654, "annotation": null}, {"text": "all", "start": 655, "end": 658, "annotation": null}, {"text": "obtained", "start": 659, "end": 667, "annotation": null}, {"text": "results", "start": 668, "end": 675, "annotation": null}, {"text": ".", "start": 675, "end": 676, "annotation": null}], [{"text": "Non-Fermi", "start": 677, "end": 686, "annotation": null}, {"text": "liquid", "start": 687, "end": 693, "annotation": null}, {"text": "state", "start": 694, "end": 699, "annotation": null}, {"text": "is", "start": 700, "end": 702, "annotation": null}, {"text": "formed", "start": 703, "end": 709, "annotation": null}, {"text": "at", "start": 710, "end": 712, "annotation": null}, {"text": "low", "start": 713, "end": 716, "annotation": null}, {"text": "temperatures", "start": 717, "end": 729, "annotation": null}, {"text": "for", "start": 730, "end": 733, "annotation": null}, {"text": "the", "start": 734, "end": 737, "annotation": null}, {"text": "solution", "start": 738, "end": 746, "annotation": null}, {"text": "with", "start": 747, "end": 751, "annotation": null}, {"text": "the", "start": 752, "end": 755, "annotation": null}, {"text": "lowest", "start": 756, "end": 762, "annotation": null}, {"text": "Ge", "start": 763, "end": 765, "annotation": null}, {"text": "content", "start": 766, "end": 773, "annotation": null}, {"text": ",", "start": 773, "end": 774, "annotation": null}, {"text": "but", "start": 775, "end": 778, "annotation": null}, {"text": "it", "start": 779, "end": 781, "annotation": null}, {"text": "is", "start": 782, "end": 784, "annotation": null}, {"text": "destroyed", "start": 785, "end": 794, "annotation": null}, {"text": "by", "start": 795, "end": 797, "annotation": null}, {"text": "magnetic", "start": 798, "end": 806, "annotation": null}, {"text": "field", "start": 807, "end": 812, "annotation": null}, {"text": "and", "start": 813, "end": 816, "annotation": null}, {"text": "/", "start": 816, "end": 817, "annotation": null}, {"text": "or", "start": 817, "end": 819, "annotation": null}, {"text": "further", "start": 820, "end": 827, "annotation": null}, {"text": "doping", "start": 828, "end": 834, "annotation": null}, {"text": "with", "start": 835, "end": 839, "annotation": null}, {"text": "Ge", "start": 840, "end": 842, "annotation": null}, {"text": ".", "start": 842, "end": 843, "annotation": null}]], "meta": {"doi": "10.1016/j.intermet.2014.09.001"}} +{"text": "1, 2-dicyano-methanofullerene (C60(CN)2) is a soluble fullerene derivative that has been reported to have stronger electron affinity than parent C60. Ultraviolet photoelectron spectroscopy (UPS), X-ray photoelectron spectroscopy (XPS) and atomic force microscopy (AFM) experiments were carried out on C60(CN)2 thin films spin coated on heavily doped n-type Si substrate. UPS spectra enabled the determination of the vacuum shift at the fullerene derivative/Si interface and the onset of the highest occupied molecular orbital (HOMO). From the UV\u2013vis absorption spectra of C60(CN)2 thin films spin coated on quartz substrates, the optical band gap (Eg) and the onset of absorption were determined. These measurements allowed the determination of the lowest occupied molecular orbital (LUMO) position. The morphology of the deposited film was probed by AFM and reveals non-uniformity of the thin film. Open circuit voltage (Voc) measurements on P3HT/C60(CN)2 based organic solar cell device are compared to the commonly used P3HT/PCBM device.", "meta": {"doi": "10.1016/j.solmat.2010.12.024"}, "_input_hash": -540936896, "_task_hash": 1994811586, "tokens": [[{"text": "1", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": ",", "start": 2, "end": 3, "id": 1, "annotation": null}, {"text": "2-dicyano", "start": 4, "end": 13, "id": 2, "annotation": null}, {"text": "-", "start": 14, "end": 15, "id": 3, "annotation": null}, {"text": "methanofullerene", "start": 16, "end": 32, "id": 4, "annotation": null}, {"text": "(", "start": 33, "end": 34, "id": 5, "annotation": null}, {"text": "C60(CN)2", "start": 35, "end": 43, "id": 6, "annotation": null}, {"text": ")", "start": 44, "end": 45, "id": 7, "annotation": null}, {"text": "is", "start": 46, "end": 48, "id": 8, "annotation": null}, {"text": "a", "start": 49, "end": 50, "id": 9, "annotation": null}, {"text": "soluble", "start": 51, "end": 58, "id": 10, "annotation": null}, {"text": "fullerene", "start": 59, "end": 68, "id": 11, "annotation": null}, {"text": "derivative", "start": 69, "end": 79, "id": 12, "annotation": null}, {"text": "that", "start": 80, "end": 84, "id": 13, "annotation": null}, {"text": "has", "start": 85, "end": 88, "id": 14, "annotation": null}, {"text": "been", "start": 89, "end": 93, "id": 15, "annotation": null}, {"text": "reported", "start": 94, "end": 102, "id": 16, "annotation": null}, {"text": "to", "start": 103, "end": 105, "id": 17, "annotation": null}, {"text": "have", "start": 106, "end": 110, "id": 18, "annotation": null}, {"text": "stronger", "start": 111, "end": 119, "id": 19, "annotation": null}, {"text": "electron", "start": 120, "end": 128, "id": 20, "annotation": null}, {"text": "affinity", "start": 129, "end": 137, "id": 21, "annotation": null}, {"text": "than", "start": 138, "end": 142, "id": 22, "annotation": null}, {"text": "parent", "start": 143, "end": 149, "id": 23, "annotation": null}, {"text": "C60", "start": 150, "end": 153, "id": 24, "annotation": null}, {"text": ".", "start": 154, "end": 155, "id": 25, "annotation": null}], [{"text": "Ultraviolet", "start": 156, "end": 167, "id": 26, "annotation": null}, {"text": "photoelectron", "start": 168, "end": 181, "id": 27, "annotation": null}, {"text": "spectroscopy", "start": 182, "end": 194, "id": 28, "annotation": null}, {"text": "(", "start": 195, "end": 196, "id": 29, "annotation": null}, {"text": "UPS", "start": 197, "end": 200, "id": 30, "annotation": null}, {"text": ")", "start": 201, "end": 202, "id": 31, "annotation": null}, {"text": ",", "start": 203, "end": 204, "id": 32, "annotation": null}, {"text": "X", "start": 205, "end": 206, "id": 33, "annotation": null}, {"text": "-", "start": 207, "end": 208, "id": 34, "annotation": null}, {"text": "ray", "start": 209, "end": 212, "id": 35, "annotation": null}, {"text": "photoelectron", "start": 213, "end": 226, "id": 36, "annotation": null}, {"text": "spectroscopy", "start": 227, "end": 239, "id": 37, "annotation": null}, {"text": "(", "start": 240, "end": 241, "id": 38, "annotation": null}, {"text": "XPS", "start": 242, "end": 245, "id": 39, "annotation": null}, {"text": ")", "start": 246, "end": 247, "id": 40, "annotation": null}, {"text": "and", "start": 248, "end": 251, "id": 41, "annotation": null}, {"text": "atomic", "start": 252, "end": 258, "id": 42, "annotation": null}, {"text": "force", "start": 259, "end": 264, "id": 43, "annotation": null}, {"text": "microscopy", "start": 265, "end": 275, "id": 44, "annotation": null}, {"text": "(", "start": 276, "end": 277, "id": 45, "annotation": null}, {"text": "AFM", "start": 278, "end": 281, "id": 46, "annotation": null}, {"text": ")", "start": 282, "end": 283, "id": 47, "annotation": null}, {"text": "experiments", "start": 284, "end": 295, "id": 48, "annotation": null}, {"text": "were", "start": 296, "end": 300, "id": 49, "annotation": null}, {"text": "carried", "start": 301, "end": 308, "id": 50, "annotation": null}, {"text": "out", "start": 309, "end": 312, "id": 51, "annotation": null}, {"text": "on", "start": 313, "end": 315, "id": 52, "annotation": null}, {"text": "C60(CN)2", "start": 316, "end": 324, "id": 53, "annotation": null}, {"text": "thin", "start": 325, "end": 329, "id": 54, "annotation": null}, {"text": "films", "start": 330, "end": 335, "id": 55, "annotation": null}, {"text": "spin", "start": 336, "end": 340, "id": 56, "annotation": null}, {"text": "coated", "start": 341, "end": 347, "id": 57, "annotation": null}, {"text": "on", "start": 348, "end": 350, "id": 58, "annotation": null}, {"text": "heavily", "start": 351, "end": 358, "id": 59, "annotation": null}, {"text": "doped", "start": 359, "end": 364, "id": 60, "annotation": null}, {"text": "n", "start": 365, "end": 366, "id": 61, "annotation": "DOPANT"}, {"text": "-", "start": 367, "end": 368, "id": 62, "annotation": "DOPANT"}, {"text": "type", "start": 369, "end": 373, "id": 63, "annotation": "DOPANT"}, {"text": "Si", "start": 374, "end": 376, "id": 64, "annotation": "BASEMAT"}, {"text": "substrate", "start": 377, "end": 386, "id": 65, "annotation": null}, {"text": ".", "start": 387, "end": 388, "id": 66, "annotation": null}], [{"text": "UPS", "start": 389, "end": 392, "id": 67, "annotation": null}, {"text": "spectra", "start": 393, "end": 400, "id": 68, "annotation": null}, {"text": "enabled", "start": 401, "end": 408, "id": 69, "annotation": null}, {"text": "the", "start": 409, "end": 412, "id": 70, "annotation": null}, {"text": "determination", "start": 413, "end": 426, "id": 71, "annotation": null}, {"text": "of", "start": 427, "end": 429, "id": 72, "annotation": null}, {"text": "the", "start": 430, "end": 433, "id": 73, "annotation": null}, {"text": "vacuum", "start": 434, "end": 440, "id": 74, "annotation": null}, {"text": "shift", "start": 441, "end": 446, "id": 75, "annotation": null}, {"text": "at", "start": 447, "end": 449, "id": 76, "annotation": null}, {"text": "the", "start": 450, "end": 453, "id": 77, "annotation": null}, {"text": "fullerene", "start": 454, "end": 463, "id": 78, "annotation": null}, {"text": "derivative", "start": 464, "end": 474, "id": 79, "annotation": null}, {"text": "/", "start": 475, "end": 476, "id": 80, "annotation": null}, {"text": "Si", "start": 477, "end": 479, "id": 81, "annotation": null}, {"text": "interface", "start": 480, "end": 489, "id": 82, "annotation": null}, {"text": "and", "start": 490, "end": 493, "id": 83, "annotation": null}, {"text": "the", "start": 494, "end": 497, "id": 84, "annotation": null}, {"text": "onset", "start": 498, "end": 503, "id": 85, "annotation": null}, {"text": "of", "start": 504, "end": 506, "id": 86, "annotation": null}, {"text": "the", "start": 507, "end": 510, "id": 87, "annotation": null}, {"text": "highest", "start": 511, "end": 518, "id": 88, "annotation": null}, {"text": "occupied", "start": 519, "end": 527, "id": 89, "annotation": null}, {"text": "molecular", "start": 528, "end": 537, "id": 90, "annotation": null}, {"text": "orbital", "start": 538, "end": 545, "id": 91, "annotation": null}, {"text": "(", "start": 546, "end": 547, "id": 92, "annotation": null}, {"text": "HOMO", "start": 548, "end": 552, "id": 93, "annotation": null}, {"text": ")", "start": 553, "end": 554, "id": 94, "annotation": null}, {"text": ".", "start": 555, "end": 556, "id": 95, "annotation": null}], [{"text": "From", "start": 557, "end": 561, "id": 96, "annotation": null}, {"text": "the", "start": 562, "end": 565, "id": 97, "annotation": null}, {"text": "UV", "start": 566, "end": 568, "id": 98, "annotation": null}, {"text": "\u2013", "start": 569, "end": 570, "id": 99, "annotation": null}, {"text": "vis", "start": 571, "end": 574, "id": 100, "annotation": null}, {"text": "absorption", "start": 575, "end": 585, "id": 101, "annotation": null}, {"text": "spectra", "start": 586, "end": 593, "id": 102, "annotation": null}, {"text": "of", "start": 594, "end": 596, "id": 103, "annotation": null}, {"text": "C60(CN)2", "start": 597, "end": 605, "id": 104, "annotation": null}, {"text": "thin", "start": 606, "end": 610, "id": 105, "annotation": null}, {"text": "films", "start": 611, "end": 616, "id": 106, "annotation": null}, {"text": "spin", "start": 617, "end": 621, "id": 107, "annotation": null}, {"text": "coated", "start": 622, "end": 628, "id": 108, "annotation": null}, {"text": "on", "start": 629, "end": 631, "id": 109, "annotation": null}, {"text": "quartz", "start": 632, "end": 638, "id": 110, "annotation": null}, {"text": "substrates", "start": 639, "end": 649, "id": 111, "annotation": null}, {"text": ",", "start": 650, "end": 651, "id": 112, "annotation": null}, {"text": "the", "start": 652, "end": 655, "id": 113, "annotation": null}, {"text": "optical", "start": 656, "end": 663, "id": 114, "annotation": null}, {"text": "band", "start": 664, "end": 668, "id": 115, "annotation": null}, {"text": "gap", "start": 669, "end": 672, "id": 116, "annotation": null}, {"text": "(", "start": 673, "end": 674, "id": 117, "annotation": null}, {"text": "Eg", "start": 675, "end": 677, "id": 118, "annotation": null}, {"text": ")", "start": 678, "end": 679, "id": 119, "annotation": null}, {"text": "and", "start": 680, "end": 683, "id": 120, "annotation": null}, {"text": "the", "start": 684, "end": 687, "id": 121, "annotation": null}, {"text": "onset", "start": 688, "end": 693, "id": 122, "annotation": null}, {"text": "of", "start": 694, "end": 696, "id": 123, "annotation": null}, {"text": "absorption", "start": 697, "end": 707, "id": 124, "annotation": null}, {"text": "were", "start": 708, "end": 712, "id": 125, "annotation": null}, {"text": "determined", "start": 713, "end": 723, "id": 126, "annotation": null}, {"text": ".", "start": 724, "end": 725, "id": 127, "annotation": null}], [{"text": "These", "start": 726, "end": 731, "id": 128, "annotation": null}, {"text": "measurements", "start": 732, "end": 744, "id": 129, "annotation": null}, {"text": "allowed", "start": 745, "end": 752, "id": 130, "annotation": null}, {"text": "the", "start": 753, "end": 756, "id": 131, "annotation": null}, {"text": "determination", "start": 757, "end": 770, "id": 132, "annotation": null}, {"text": "of", "start": 771, "end": 773, "id": 133, "annotation": null}, {"text": "the", "start": 774, "end": 777, "id": 134, "annotation": null}, {"text": "lowest", "start": 778, "end": 784, "id": 135, "annotation": null}, {"text": "occupied", "start": 785, "end": 793, "id": 136, "annotation": null}, {"text": "molecular", "start": 794, "end": 803, "id": 137, "annotation": null}, {"text": "orbital", "start": 804, "end": 811, "id": 138, "annotation": null}, {"text": "(", "start": 812, "end": 813, "id": 139, "annotation": null}, {"text": "LUMO", "start": 814, "end": 818, "id": 140, "annotation": null}, {"text": ")", "start": 819, "end": 820, "id": 141, "annotation": null}, {"text": "position", "start": 821, "end": 829, "id": 142, "annotation": null}, {"text": ".", "start": 830, "end": 831, "id": 143, "annotation": null}], [{"text": "The", "start": 832, "end": 835, "id": 144, "annotation": null}, {"text": "morphology", "start": 836, "end": 846, "id": 145, "annotation": null}, {"text": "of", "start": 847, "end": 849, "id": 146, "annotation": null}, {"text": "the", "start": 850, "end": 853, "id": 147, "annotation": null}, {"text": "deposited", "start": 854, "end": 863, "id": 148, "annotation": null}, {"text": "film", "start": 864, "end": 868, "id": 149, "annotation": null}, {"text": "was", "start": 869, "end": 872, "id": 150, "annotation": null}, {"text": "probed", "start": 873, "end": 879, "id": 151, "annotation": null}, {"text": "by", "start": 880, "end": 882, "id": 152, "annotation": null}, {"text": "AFM", "start": 883, "end": 886, "id": 153, "annotation": null}, {"text": "and", "start": 887, "end": 890, "id": 154, "annotation": null}, {"text": "reveals", "start": 891, "end": 898, "id": 155, "annotation": null}, {"text": "non", "start": 899, "end": 902, "id": 156, "annotation": null}, {"text": "-", "start": 903, "end": 904, "id": 157, "annotation": null}, {"text": "uniformity", "start": 905, "end": 915, "id": 158, "annotation": null}, {"text": "of", "start": 916, "end": 918, "id": 159, "annotation": null}, {"text": "the", "start": 919, "end": 922, "id": 160, "annotation": null}, {"text": "thin", "start": 923, "end": 927, "id": 161, "annotation": null}, {"text": "film", "start": 928, "end": 932, "id": 162, "annotation": null}, {"text": ".", "start": 933, "end": 934, "id": 163, "annotation": null}], [{"text": "Open", "start": 935, "end": 939, "id": 164, "annotation": null}, {"text": "circuit", "start": 940, "end": 947, "id": 165, "annotation": null}, {"text": "voltage", "start": 948, "end": 955, "id": 166, "annotation": null}, {"text": "(", "start": 956, "end": 957, "id": 167, "annotation": null}, {"text": "Voc", "start": 958, "end": 961, "id": 168, "annotation": null}, {"text": ")", "start": 962, "end": 963, "id": 169, "annotation": null}, {"text": "measurements", "start": 964, "end": 976, "id": 170, "annotation": null}, {"text": "on", "start": 977, "end": 979, "id": 171, "annotation": null}, {"text": "P3HT", "start": 980, "end": 984, "id": 172, "annotation": null}, {"text": "/", "start": 985, "end": 986, "id": 173, "annotation": null}, {"text": "C60(CN)2", "start": 987, "end": 995, "id": 174, "annotation": null}, {"text": "based", "start": 996, "end": 1001, "id": 175, "annotation": null}, {"text": "organic", "start": 1002, "end": 1009, "id": 176, "annotation": null}, {"text": "solar", "start": 1010, "end": 1015, "id": 177, "annotation": null}, {"text": "cell", "start": 1016, "end": 1020, "id": 178, "annotation": null}, {"text": "device", "start": 1021, "end": 1027, "id": 179, "annotation": null}, {"text": "are", "start": 1028, "end": 1031, "id": 180, "annotation": null}, {"text": "compared", "start": 1032, "end": 1040, "id": 181, "annotation": null}, {"text": "to", "start": 1041, "end": 1043, "id": 182, "annotation": null}, {"text": "the", "start": 1044, "end": 1047, "id": 183, "annotation": null}, {"text": "commonly", "start": 1048, "end": 1056, "id": 184, "annotation": null}, {"text": "used", "start": 1057, "end": 1061, "id": 185, "annotation": null}, {"text": "P3HT", "start": 1062, "end": 1066, "id": 186, "annotation": null}, {"text": "/", "start": 1067, "end": 1068, "id": 187, "annotation": null}, {"text": "PCBM", "start": 1069, "end": 1073, "id": 188, "annotation": null}, {"text": "device", "start": 1074, "end": 1080, "id": 189, "annotation": null}, {"text": ".", "start": 1081, "end": 1082, "id": 190, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "ZnO:Eu3+ (0.1 and 3 at%) with average particle size of 500 nm were prepared by the Pechini method. Photoluminescence spectroscopy evidences that there is no energy transfer between ZnO and Eu3+ ion. The emission spectrum at 77 K shows that Eu3+ ions occupy at least three different sites in ZnO:Eu 3 at% sample. The experimental intensity parameter \u03a9 2 indicates that Eu3+ ions in the sample doped with 3 at% occupy sites where 4f-configurational levels can better mix with opposite-parity states than those in the sample doped with 0.1 at%.", "meta": {"doi": "10.1016/S0925-8388(02)00369-9"}, "_input_hash": 2062923871, "_task_hash": -1473462462, "tokens": [[{"text": "ZnO", "start": 0, "end": 3, "id": 0, "annotation": "BASEMAT"}, {"text": ":", "start": 4, "end": 5, "id": 1, "annotation": null}, {"text": "Eu3", "start": 6, "end": 9, "id": 2, "annotation": "DOPANT"}, {"text": "+", "start": 10, "end": 11, "id": 3, "annotation": "DOPANT"}, {"text": "(", "start": 12, "end": 13, "id": 4, "annotation": null}, {"text": "0.1", "start": 14, "end": 17, "id": 5, "annotation": "DOPMODQ"}, {"text": "and", "start": 18, "end": 21, "id": 6, "annotation": "DOPMODQ"}, {"text": "3", "start": 22, "end": 23, "id": 7, "annotation": "DOPMODQ"}, {"text": "at%", "start": 24, "end": 27, "id": 8, "annotation": "DOPMODQ"}, {"text": ")", "start": 28, "end": 29, "id": 9, "annotation": null}, {"text": "with", "start": 30, "end": 34, "id": 10, "annotation": null}, {"text": "average", "start": 35, "end": 42, "id": 11, "annotation": null}, {"text": "particle", "start": 43, "end": 51, "id": 12, "annotation": null}, {"text": "size", "start": 52, "end": 56, "id": 13, "annotation": null}, {"text": "of", "start": 57, "end": 59, "id": 14, "annotation": null}, {"text": "500", "start": 60, "end": 63, "id": 15, "annotation": null}, {"text": "nm", "start": 64, "end": 66, "id": 16, "annotation": null}, {"text": "were", "start": 67, "end": 71, "id": 17, "annotation": null}, {"text": "prepared", "start": 72, "end": 80, "id": 18, "annotation": null}, {"text": "by", "start": 81, "end": 83, "id": 19, "annotation": null}, {"text": "the", "start": 84, "end": 87, "id": 20, "annotation": null}, {"text": "Pechini", "start": 88, "end": 95, "id": 21, "annotation": null}, {"text": "method", "start": 96, "end": 102, "id": 22, "annotation": null}, {"text": ".", "start": 103, "end": 104, "id": 23, "annotation": null}], [{"text": "Photoluminescence", "start": 105, "end": 122, "id": 24, "annotation": null}, {"text": "spectroscopy", "start": 123, "end": 135, "id": 25, "annotation": null}, {"text": "evidences", "start": 136, "end": 145, "id": 26, "annotation": null}, {"text": "that", "start": 146, "end": 150, "id": 27, "annotation": null}, {"text": "there", "start": 151, "end": 156, "id": 28, "annotation": null}, {"text": "is", "start": 157, "end": 159, "id": 29, "annotation": null}, {"text": "no", "start": 160, "end": 162, "id": 30, "annotation": null}, {"text": "energy", "start": 163, "end": 169, "id": 31, "annotation": null}, {"text": "transfer", "start": 170, "end": 178, "id": 32, "annotation": null}, {"text": "between", "start": 179, "end": 186, "id": 33, "annotation": null}, {"text": "ZnO", "start": 187, "end": 190, "id": 34, "annotation": null}, {"text": "and", "start": 191, "end": 194, "id": 35, "annotation": null}, {"text": "Eu3", "start": 195, "end": 198, "id": 36, "annotation": null}, {"text": "+", "start": 199, "end": 200, "id": 37, "annotation": null}, {"text": "ion", "start": 201, "end": 204, "id": 38, "annotation": null}, {"text": ".", "start": 205, "end": 206, "id": 39, "annotation": null}], [{"text": "The", "start": 207, "end": 210, "id": 40, "annotation": null}, {"text": "emission", "start": 211, "end": 219, "id": 41, "annotation": null}, {"text": "spectrum", "start": 220, "end": 228, "id": 42, "annotation": null}, {"text": "at", "start": 229, "end": 231, "id": 43, "annotation": null}, {"text": "77", "start": 232, "end": 234, "id": 44, "annotation": null}, {"text": "K", "start": 235, "end": 236, "id": 45, "annotation": null}, {"text": "shows", "start": 237, "end": 242, "id": 46, "annotation": null}, {"text": "that", "start": 243, "end": 247, "id": 47, "annotation": null}, {"text": "Eu3", "start": 248, "end": 251, "id": 48, "annotation": "DOPANT"}, {"text": "+", "start": 252, "end": 253, "id": 49, "annotation": "DOPANT"}, {"text": "ions", "start": 254, "end": 258, "id": 50, "annotation": null}, {"text": "occupy", "start": 259, "end": 265, "id": 51, "annotation": null}, {"text": "at", "start": 266, "end": 268, "id": 52, "annotation": null}, {"text": "least", "start": 269, "end": 274, "id": 53, "annotation": null}, {"text": "three", "start": 275, "end": 280, "id": 54, "annotation": null}, {"text": "different", "start": 281, "end": 290, "id": 55, "annotation": null}, {"text": "sites", "start": 291, "end": 296, "id": 56, "annotation": null}, {"text": "in", "start": 297, "end": 299, "id": 57, "annotation": null}, {"text": "ZnO", "start": 300, "end": 303, "id": 58, "annotation": "BASEMAT"}, {"text": ":", "start": 304, "end": 305, "id": 59, "annotation": null}, {"text": "Eu", "start": 306, "end": 308, "id": 60, "annotation": "DOPANT"}, {"text": "3", "start": 309, "end": 310, "id": 61, "annotation": "DOPMODQ"}, {"text": "at%", "start": 311, "end": 314, "id": 62, "annotation": "DOPMODQ"}, {"text": "sample", "start": 315, "end": 321, "id": 63, "annotation": null}, {"text": ".", "start": 322, "end": 323, "id": 64, "annotation": null}], [{"text": "The", "start": 324, "end": 327, "id": 65, "annotation": null}, {"text": "experimental", "start": 328, "end": 340, "id": 66, "annotation": null}, {"text": "intensity", "start": 341, "end": 350, "id": 67, "annotation": null}, {"text": "parameter", "start": 351, "end": 360, "id": 68, "annotation": null}, {"text": "\u03a9", "start": 361, "end": 362, "id": 69, "annotation": null}, {"text": "2", "start": 363, "end": 364, "id": 70, "annotation": null}, {"text": "indicates", "start": 365, "end": 374, "id": 71, "annotation": null}, {"text": "that", "start": 375, "end": 379, "id": 72, "annotation": null}, {"text": "Eu3", "start": 380, "end": 383, "id": 73, "annotation": "DOPANT"}, {"text": "+", "start": 384, "end": 385, "id": 74, "annotation": "DOPANT"}, {"text": "ions", "start": 386, "end": 390, "id": 75, "annotation": null}, {"text": "in", "start": 391, "end": 393, "id": 76, "annotation": null}, {"text": "the", "start": 394, "end": 397, "id": 77, "annotation": null}, {"text": "sample", "start": 398, "end": 404, "id": 78, "annotation": "BASEMAT"}, {"text": "doped", "start": 405, "end": 410, "id": 79, "annotation": null}, {"text": "with", "start": 411, "end": 415, "id": 80, "annotation": null}, {"text": "3", "start": 416, "end": 417, "id": 81, "annotation": "DOPMODQ"}, {"text": "at%", "start": 418, "end": 421, "id": 82, "annotation": "DOPMODQ"}, {"text": "occupy", "start": 422, "end": 428, "id": 83, "annotation": null}, {"text": "sites", "start": 429, "end": 434, "id": 84, "annotation": null}, {"text": "where", "start": 435, "end": 440, "id": 85, "annotation": null}, {"text": "4f", "start": 441, "end": 443, "id": 86, "annotation": null}, {"text": "-", "start": 444, "end": 445, "id": 87, "annotation": null}, {"text": "configurational", "start": 446, "end": 461, "id": 88, "annotation": null}, {"text": "levels", "start": 462, "end": 468, "id": 89, "annotation": null}, {"text": "can", "start": 469, "end": 472, "id": 90, "annotation": null}, {"text": "better", "start": 473, "end": 479, "id": 91, "annotation": null}, {"text": "mix", "start": 480, "end": 483, "id": 92, "annotation": null}, {"text": "with", "start": 484, "end": 488, "id": 93, "annotation": null}, {"text": "opposite", "start": 489, "end": 497, "id": 94, "annotation": null}, {"text": "-", "start": 498, "end": 499, "id": 95, "annotation": null}, {"text": "parity", "start": 500, "end": 506, "id": 96, "annotation": null}, {"text": "states", "start": 507, "end": 513, "id": 97, "annotation": null}, {"text": "than", "start": 514, "end": 518, "id": 98, "annotation": null}, {"text": "those", "start": 519, "end": 524, "id": 99, "annotation": null}, {"text": "in", "start": 525, "end": 527, "id": 100, "annotation": null}, {"text": "the", "start": 528, "end": 531, "id": 101, "annotation": null}, {"text": "sample", "start": 532, "end": 538, "id": 102, "annotation": "BASEMAT"}, {"text": "doped", "start": 539, "end": 544, "id": 103, "annotation": null}, {"text": "with", "start": 545, "end": 549, "id": 104, "annotation": null}, {"text": "0.1", "start": 550, "end": 553, "id": 105, "annotation": "DOPMODQ"}, {"text": "at%", "start": 554, "end": 557, "id": 106, "annotation": "DOPMODQ"}, {"text": ".", "start": 558, "end": 559, "id": 107, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "\u00a9 The Royal Society of Chemistry. By using hierarchically mesoporous silica spheres as hard template, 2-aminopyridine and FeCl3 as carbon, nitrogen and iron sources, respectively, iron and nitrogen co-doped hierarchically mesoporous carbon spheres (Fe-N-CS) were successfully prepared. The sample Fe-N-CS-900 obtained at a carbonization temperature of 900 \u00b0C exhibited a highly efficient electrocatalytic activity with positive half-wave potential (\u22120.11 V), high limiting current density (\u22124.79 mA cm\u22122) and high selectivity (electron transfer number around 4) for the oxygen reduction reaction (ORR) in alkaline media. Moreover, Fe-N-CS-900 shows higher stability and better methanol tolerance in comparison to commercial Pt/C catalyst in both alkaline and acidic media. Its highly efficient ORR activity could be ascribed to its high specific surface area, unique porous structure and homogeneous distribution of Fe-Nx active sites formed during pyrolysis.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "By", "start": 34, "end": 36, "annotation": null}, {"text": "using", "start": 37, "end": 42, "annotation": null}, {"text": "hierarchically", "start": 43, "end": 57, "annotation": null}, {"text": "mesoporous", "start": 58, "end": 68, "annotation": null}, {"text": "silica", "start": 69, "end": 75, "annotation": null}, {"text": "spheres", "start": 76, "end": 83, "annotation": null}, {"text": "as", "start": 84, "end": 86, "annotation": null}, {"text": "hard", "start": 87, "end": 91, "annotation": null}, {"text": "template", "start": 92, "end": 100, "annotation": null}, {"text": ",", "start": 100, "end": 101, "annotation": null}, {"text": "2-aminopyridine", "start": 102, "end": 117, "annotation": null}, {"text": "and", "start": 118, "end": 121, "annotation": null}, {"text": "FeCl3", "start": 122, "end": 127, "annotation": null}, {"text": "as", "start": 128, "end": 130, "annotation": null}, {"text": "carbon", "start": 131, "end": 137, "annotation": null}, {"text": ",", "start": 137, "end": 138, "annotation": null}, {"text": "nitrogen", "start": 139, "end": 147, "annotation": null}, {"text": "and", "start": 148, "end": 151, "annotation": null}, {"text": "iron", "start": 152, "end": 156, "annotation": null}, {"text": "sources", "start": 157, "end": 164, "annotation": null}, {"text": ",", "start": 164, "end": 165, "annotation": null}, {"text": "respectively", "start": 166, "end": 178, "annotation": null}, {"text": ",", "start": 178, "end": 179, "annotation": null}, {"text": "iron", "start": 180, "end": 184, "annotation": "DOPANT"}, {"text": "and", "start": 185, "end": 188, "annotation": null}, {"text": "nitrogen", "start": 189, "end": 197, "annotation": "DOPANT"}, {"text": "co-doped", "start": 198, "end": 206, "annotation": null}, {"text": "hierarchically", "start": 207, "end": 221, "annotation": null}, {"text": "mesoporous", "start": 222, "end": 232, "annotation": null}, {"text": "carbon", "start": 233, "end": 239, "annotation": "BASEMAT"}, {"text": "spheres", "start": 240, "end": 247, "annotation": null}, {"text": "(", "start": 248, "end": 249, "annotation": null}, {"text": "Fe-N-CS", "start": 249, "end": 256, "annotation": null}, {"text": ")", "start": 256, "end": 257, "annotation": null}, {"text": "were", "start": 258, "end": 262, "annotation": null}, {"text": "successfully", "start": 263, "end": 275, "annotation": null}, {"text": "prepared", "start": 276, "end": 284, "annotation": null}, {"text": ".", "start": 284, "end": 285, "annotation": null}], [{"text": "The", "start": 286, "end": 289, "annotation": null}, {"text": "sample", "start": 290, "end": 296, "annotation": null}, {"text": "Fe-N-CS-900", "start": 297, "end": 308, "annotation": null}, {"text": "obtained", "start": 309, "end": 317, "annotation": null}, {"text": "at", "start": 318, "end": 320, "annotation": null}, {"text": "a", "start": 321, "end": 322, "annotation": null}, {"text": "carbonization", "start": 323, "end": 336, "annotation": null}, {"text": "temperature", "start": 337, "end": 348, "annotation": null}, {"text": "of", "start": 349, "end": 351, "annotation": null}, {"text": "900", "start": 352, "end": 355, "annotation": null}, {"text": "\u00b0", "start": 356, "end": 357, "annotation": null}, {"text": "C", "start": 357, "end": 358, "annotation": null}, {"text": "exhibited", "start": 359, "end": 368, "annotation": null}, {"text": "a", "start": 369, "end": 370, "annotation": null}, {"text": "highly", "start": 371, "end": 377, "annotation": null}, {"text": "efficient", "start": 378, "end": 387, "annotation": null}, {"text": "electrocatalytic", "start": 388, "end": 404, "annotation": null}, {"text": "activity", "start": 405, "end": 413, "annotation": null}, {"text": "with", "start": 414, "end": 418, "annotation": null}, {"text": "positive", "start": 419, "end": 427, "annotation": null}, {"text": "half", "start": 428, "end": 432, "annotation": null}, {"text": "-", "start": 432, "end": 433, "annotation": null}, {"text": "wave", "start": 433, "end": 437, "annotation": null}, {"text": "potential", "start": 438, "end": 447, "annotation": null}, {"text": "(", "start": 448, "end": 449, "annotation": null}, {"text": "\u2212", "start": 449, "end": 450, "annotation": null}, {"text": "0.11", "start": 450, "end": 454, "annotation": null}, {"text": "V", "start": 455, "end": 456, "annotation": null}, {"text": ")", "start": 456, "end": 457, "annotation": null}, {"text": ",", "start": 457, "end": 458, "annotation": null}, {"text": "high", "start": 459, "end": 463, "annotation": null}, {"text": "limiting", "start": 464, "end": 472, "annotation": null}, {"text": "current", "start": 473, "end": 480, "annotation": null}, {"text": "density", "start": 481, "end": 488, "annotation": null}, {"text": "(", "start": 489, "end": 490, "annotation": null}, {"text": "\u2212", "start": 490, "end": 491, "annotation": null}, {"text": "4.79", "start": 491, "end": 495, "annotation": null}, {"text": "mA", "start": 496, "end": 498, "annotation": null}, {"text": "cm\u22122", "start": 499, "end": 503, "annotation": null}, {"text": ")", "start": 503, "end": 504, "annotation": null}, {"text": "and", "start": 505, "end": 508, "annotation": null}, {"text": "high", "start": 509, "end": 513, "annotation": null}, {"text": "selectivity", "start": 514, "end": 525, "annotation": null}, {"text": "(", "start": 526, "end": 527, "annotation": null}, {"text": "electron", "start": 527, "end": 535, "annotation": null}, {"text": "transfer", "start": 536, "end": 544, "annotation": null}, {"text": "number", "start": 545, "end": 551, "annotation": null}, {"text": "around", "start": 552, "end": 558, "annotation": null}, {"text": "4", "start": 559, "end": 560, "annotation": null}, {"text": ")", "start": 560, "end": 561, "annotation": null}, {"text": "for", "start": 562, "end": 565, "annotation": null}, {"text": "the", "start": 566, "end": 569, "annotation": null}, {"text": "oxygen", "start": 570, "end": 576, "annotation": null}, {"text": "reduction", "start": 577, "end": 586, "annotation": null}, {"text": "reaction", "start": 587, "end": 595, "annotation": null}, {"text": "(", "start": 596, "end": 597, "annotation": null}, {"text": "ORR", "start": 597, "end": 600, "annotation": null}, {"text": ")", "start": 600, "end": 601, "annotation": null}, {"text": "in", "start": 602, "end": 604, "annotation": null}, {"text": "alkaline", "start": 605, "end": 613, "annotation": null}, {"text": "media", "start": 614, "end": 619, "annotation": null}, {"text": ".", "start": 619, "end": 620, "annotation": null}], [{"text": "Moreover", "start": 621, "end": 629, "annotation": null}, {"text": ",", "start": 629, "end": 630, "annotation": null}, {"text": "Fe-N-CS-900", "start": 631, "end": 642, "annotation": null}, {"text": "shows", "start": 643, "end": 648, "annotation": null}, {"text": "higher", "start": 649, "end": 655, "annotation": null}, {"text": "stability", "start": 656, "end": 665, "annotation": null}, {"text": "and", "start": 666, "end": 669, "annotation": null}, {"text": "better", "start": 670, "end": 676, "annotation": null}, {"text": "methanol", "start": 677, "end": 685, "annotation": null}, {"text": "tolerance", "start": 686, "end": 695, "annotation": null}, {"text": "in", "start": 696, "end": 698, "annotation": null}, {"text": "comparison", "start": 699, "end": 709, "annotation": null}, {"text": "to", "start": 710, "end": 712, "annotation": null}, {"text": "commercial", "start": 713, "end": 723, "annotation": null}, {"text": "Pt", "start": 724, "end": 726, "annotation": null}, {"text": "/", "start": 726, "end": 727, "annotation": null}, {"text": "C", "start": 727, "end": 728, "annotation": null}, {"text": "catalyst", "start": 729, "end": 737, "annotation": null}, {"text": "in", "start": 738, "end": 740, "annotation": null}, {"text": "both", "start": 741, "end": 745, "annotation": null}, {"text": "alkaline", "start": 746, "end": 754, "annotation": null}, {"text": "and", "start": 755, "end": 758, "annotation": null}, {"text": "acidic", "start": 759, "end": 765, "annotation": null}, {"text": "media", "start": 766, "end": 771, "annotation": null}, {"text": ".", "start": 771, "end": 772, "annotation": null}], [{"text": "Its", "start": 773, "end": 776, "annotation": null}, {"text": "highly", "start": 777, "end": 783, "annotation": null}, {"text": "efficient", "start": 784, "end": 793, "annotation": null}, {"text": "ORR", "start": 794, "end": 797, "annotation": null}, {"text": "activity", "start": 798, "end": 806, "annotation": null}, {"text": "could", "start": 807, "end": 812, "annotation": null}, {"text": "be", "start": 813, "end": 815, "annotation": null}, {"text": "ascribed", "start": 816, "end": 824, "annotation": null}, {"text": "to", "start": 825, "end": 827, "annotation": null}, {"text": "its", "start": 828, "end": 831, "annotation": null}, {"text": "high", "start": 832, "end": 836, "annotation": null}, {"text": "specific", "start": 837, "end": 845, "annotation": null}, {"text": "surface", "start": 846, "end": 853, "annotation": null}, {"text": "area", "start": 854, "end": 858, "annotation": null}, {"text": ",", "start": 858, "end": 859, "annotation": null}, {"text": "unique", "start": 860, "end": 866, "annotation": null}, {"text": "porous", "start": 867, "end": 873, "annotation": null}, {"text": "structure", "start": 874, "end": 883, "annotation": null}, {"text": "and", "start": 884, "end": 887, "annotation": null}, {"text": "homogeneous", "start": 888, "end": 899, "annotation": null}, {"text": "distribution", "start": 900, "end": 912, "annotation": null}, {"text": "of", "start": 913, "end": 915, "annotation": null}, {"text": "Fe-Nx", "start": 916, "end": 921, "annotation": null}, {"text": "active", "start": 922, "end": 928, "annotation": null}, {"text": "sites", "start": 929, "end": 934, "annotation": null}, {"text": "formed", "start": 935, "end": 941, "annotation": null}, {"text": "during", "start": 942, "end": 948, "annotation": null}, {"text": "pyrolysis", "start": 949, "end": 958, "annotation": null}, {"text": ".", "start": 958, "end": 959, "annotation": null}]], "meta": {"doi": "10.1039/c6ra26917f"}} {"text": "Solar-powered carbon dioxide (CO2)-to-fuel conversion presents itself as an ideal solution for both CO2 mitigation and the rapidly growing world energy demand. In this work, the heating effect of light irradiation onto a bed of supported nickel (Ni) catalyst was utilized to facilitate CO2 conversion. Ceria (CeO2)-titania (TiO2) oxide supports of different compositions were employed and their effects on photothermal CO2 conversion examined. Two factors are shown to be crucial for instigating photothermal CO2 methanation activity: \u2460 Fine nickel deposits are required for both higher active catalyst area and greater light absorption capacity for the initial heating of the catalyst bed; and \u2461 the presence of defect sites on the support are necessary to promote adsorption of CO2 for its subsequent activation. Titania inclusion within the support plays a crucial role in maintaining the oxygen vacancy defect sites on the (titanium-doped) cerium oxide. The combination of elevated light absorption and stabilized reduced states for CO2 adsorption subsequently invokes effective photothermal CO2 methanation when the ceria and titania are blended in the ideal ratio(s).", "meta": {"doi": "10.1016/J.ENG.2017.03.016"}, "_input_hash": 867551176, "_task_hash": -1651379607, "tokens": [[{"text": "Solar", "start": 0, "end": 5, "id": 0, "annotation": null}, {"text": "-", "start": 6, "end": 7, "id": 1, "annotation": null}, {"text": "powered", "start": 8, "end": 15, "id": 2, "annotation": null}, {"text": "carbon", "start": 16, "end": 22, "id": 3, "annotation": null}, {"text": "dioxide", "start": 23, "end": 30, "id": 4, "annotation": null}, {"text": "(", "start": 31, "end": 32, "id": 5, "annotation": null}, {"text": "CO2)-to", "start": 33, "end": 40, "id": 6, "annotation": null}, {"text": "-", "start": 41, "end": 42, "id": 7, "annotation": null}, {"text": "fuel", "start": 43, "end": 47, "id": 8, "annotation": null}, {"text": "conversion", "start": 48, "end": 58, "id": 9, "annotation": null}, {"text": "presents", "start": 59, "end": 67, "id": 10, "annotation": null}, {"text": "itself", "start": 68, "end": 74, "id": 11, "annotation": null}, {"text": "as", "start": 75, "end": 77, "id": 12, "annotation": null}, {"text": "an", "start": 78, "end": 80, "id": 13, "annotation": null}, {"text": "ideal", "start": 81, "end": 86, "id": 14, "annotation": null}, {"text": "solution", "start": 87, "end": 95, "id": 15, "annotation": null}, {"text": "for", "start": 96, "end": 99, "id": 16, "annotation": null}, {"text": "both", "start": 100, "end": 104, "id": 17, "annotation": null}, {"text": "CO2", "start": 105, "end": 108, "id": 18, "annotation": null}, {"text": "mitigation", "start": 109, "end": 119, "id": 19, "annotation": null}, {"text": "and", "start": 120, "end": 123, "id": 20, "annotation": null}, {"text": "the", "start": 124, "end": 127, "id": 21, "annotation": null}, {"text": "rapidly", "start": 128, "end": 135, "id": 22, "annotation": null}, {"text": "growing", "start": 136, "end": 143, "id": 23, "annotation": null}, {"text": "world", "start": 144, "end": 149, "id": 24, "annotation": null}, {"text": "energy", "start": 150, "end": 156, "id": 25, "annotation": null}, {"text": "demand", "start": 157, "end": 163, "id": 26, "annotation": null}, {"text": ".", "start": 164, "end": 165, "id": 27, "annotation": null}], [{"text": "In", "start": 166, "end": 168, "id": 28, "annotation": null}, {"text": "this", "start": 169, "end": 173, "id": 29, "annotation": null}, {"text": "work", "start": 174, "end": 178, "id": 30, "annotation": null}, {"text": ",", "start": 179, "end": 180, "id": 31, "annotation": null}, {"text": "the", "start": 181, "end": 184, "id": 32, "annotation": null}, {"text": "heating", "start": 185, "end": 192, "id": 33, "annotation": null}, {"text": "effect", "start": 193, "end": 199, "id": 34, "annotation": null}, {"text": "of", "start": 200, "end": 202, "id": 35, "annotation": null}, {"text": "light", "start": 203, "end": 208, "id": 36, "annotation": null}, {"text": "irradiation", "start": 209, "end": 220, "id": 37, "annotation": null}, {"text": "onto", "start": 221, "end": 225, "id": 38, "annotation": null}, {"text": "a", "start": 226, "end": 227, "id": 39, "annotation": null}, {"text": "bed", "start": 228, "end": 231, "id": 40, "annotation": null}, {"text": "of", "start": 232, "end": 234, "id": 41, "annotation": null}, {"text": "supported", "start": 235, "end": 244, "id": 42, "annotation": null}, {"text": "nickel", "start": 245, "end": 251, "id": 43, "annotation": null}, {"text": "(", "start": 252, "end": 253, "id": 44, "annotation": null}, {"text": "Ni", "start": 254, "end": 256, "id": 45, "annotation": null}, {"text": ")", "start": 257, "end": 258, "id": 46, "annotation": null}, {"text": "catalyst", "start": 259, "end": 267, "id": 47, "annotation": null}, {"text": "was", "start": 268, "end": 271, "id": 48, "annotation": null}, {"text": "utilized", "start": 272, "end": 280, "id": 49, "annotation": null}, {"text": "to", "start": 281, "end": 283, "id": 50, "annotation": null}, {"text": "facilitate", "start": 284, "end": 294, "id": 51, "annotation": null}, {"text": "CO2", "start": 295, "end": 298, "id": 52, "annotation": null}, {"text": "conversion", "start": 299, "end": 309, "id": 53, "annotation": null}, {"text": ".", "start": 310, "end": 311, "id": 54, "annotation": null}], [{"text": "Ceria", "start": 312, "end": 317, "id": 55, "annotation": null}, {"text": "(", "start": 318, "end": 319, "id": 56, "annotation": null}, {"text": "CeO2)-titania", "start": 320, "end": 333, "id": 57, "annotation": null}, {"text": "(", "start": 334, "end": 335, "id": 58, "annotation": null}, {"text": "TiO2", "start": 336, "end": 340, "id": 59, "annotation": null}, {"text": ")", "start": 341, "end": 342, "id": 60, "annotation": null}, {"text": "oxide", "start": 343, "end": 348, "id": 61, "annotation": null}, {"text": "supports", "start": 349, "end": 357, "id": 62, "annotation": null}, {"text": "of", "start": 358, "end": 360, "id": 63, "annotation": null}, {"text": "different", "start": 361, "end": 370, "id": 64, "annotation": null}, {"text": "compositions", "start": 371, "end": 383, "id": 65, "annotation": null}, {"text": "were", "start": 384, "end": 388, "id": 66, "annotation": null}, {"text": "employed", "start": 389, "end": 397, "id": 67, "annotation": null}, {"text": "and", "start": 398, "end": 401, "id": 68, "annotation": null}, {"text": "their", "start": 402, "end": 407, "id": 69, "annotation": null}, {"text": "effects", "start": 408, "end": 415, "id": 70, "annotation": null}, {"text": "on", "start": 416, "end": 418, "id": 71, "annotation": null}, {"text": "photothermal", "start": 419, "end": 431, "id": 72, "annotation": null}, {"text": "CO2", "start": 432, "end": 435, "id": 73, "annotation": null}, {"text": "conversion", "start": 436, "end": 446, "id": 74, "annotation": null}, {"text": "examined", "start": 447, "end": 455, "id": 75, "annotation": null}, {"text": ".", "start": 456, "end": 457, "id": 76, "annotation": null}], [{"text": "Two", "start": 458, "end": 461, "id": 77, "annotation": null}, {"text": "factors", "start": 462, "end": 469, "id": 78, "annotation": null}, {"text": "are", "start": 470, "end": 473, "id": 79, "annotation": null}, {"text": "shown", "start": 474, "end": 479, "id": 80, "annotation": null}, {"text": "to", "start": 480, "end": 482, "id": 81, "annotation": null}, {"text": "be", "start": 483, "end": 485, "id": 82, "annotation": null}, {"text": "crucial", "start": 486, "end": 493, "id": 83, "annotation": null}, {"text": "for", "start": 494, "end": 497, "id": 84, "annotation": null}, {"text": "instigating", "start": 498, "end": 509, "id": 85, "annotation": null}, {"text": "photothermal", "start": 510, "end": 522, "id": 86, "annotation": null}, {"text": "CO2", "start": 523, "end": 526, "id": 87, "annotation": null}, {"text": "methanation", "start": 527, "end": 538, "id": 88, "annotation": null}, {"text": "activity", "start": 539, "end": 547, "id": 89, "annotation": null}, {"text": ":", "start": 548, "end": 549, "id": 90, "annotation": null}, {"text": "\u2460", "start": 550, "end": 551, "id": 91, "annotation": null}, {"text": "Fine", "start": 552, "end": 556, "id": 92, "annotation": null}, {"text": "nickel", "start": 557, "end": 563, "id": 93, "annotation": null}, {"text": "deposits", "start": 564, "end": 572, "id": 94, "annotation": null}, {"text": "are", "start": 573, "end": 576, "id": 95, "annotation": null}, {"text": "required", "start": 577, "end": 585, "id": 96, "annotation": null}, {"text": "for", "start": 586, "end": 589, "id": 97, "annotation": null}, {"text": "both", "start": 590, "end": 594, "id": 98, "annotation": null}, {"text": "higher", "start": 595, "end": 601, "id": 99, "annotation": null}, {"text": "active", "start": 602, "end": 608, "id": 100, "annotation": null}, {"text": "catalyst", "start": 609, "end": 617, "id": 101, "annotation": null}, {"text": "area", "start": 618, "end": 622, "id": 102, "annotation": null}, {"text": "and", "start": 623, "end": 626, "id": 103, "annotation": null}, {"text": "greater", "start": 627, "end": 634, "id": 104, "annotation": null}, {"text": "light", "start": 635, "end": 640, "id": 105, "annotation": null}, {"text": "absorption", "start": 641, "end": 651, "id": 106, "annotation": null}, {"text": "capacity", "start": 652, "end": 660, "id": 107, "annotation": null}, {"text": "for", "start": 661, "end": 664, "id": 108, "annotation": null}, {"text": "the", "start": 665, "end": 668, "id": 109, "annotation": null}, {"text": "initial", "start": 669, "end": 676, "id": 110, "annotation": null}, {"text": "heating", "start": 677, "end": 684, "id": 111, "annotation": null}, {"text": "of", "start": 685, "end": 687, "id": 112, "annotation": null}, {"text": "the", "start": 688, "end": 691, "id": 113, "annotation": null}, {"text": "catalyst", "start": 692, "end": 700, "id": 114, "annotation": null}, {"text": "bed", "start": 701, "end": 704, "id": 115, "annotation": null}, {"text": ";", "start": 705, "end": 706, "id": 116, "annotation": null}, {"text": "and", "start": 707, "end": 710, "id": 117, "annotation": null}, {"text": "\u2461", "start": 711, "end": 712, "id": 118, "annotation": null}, {"text": "the", "start": 713, "end": 716, "id": 119, "annotation": null}, {"text": "presence", "start": 717, "end": 725, "id": 120, "annotation": null}, {"text": "of", "start": 726, "end": 728, "id": 121, "annotation": null}, {"text": "defect", "start": 729, "end": 735, "id": 122, "annotation": null}, {"text": "sites", "start": 736, "end": 741, "id": 123, "annotation": null}, {"text": "on", "start": 742, "end": 744, "id": 124, "annotation": null}, {"text": "the", "start": 745, "end": 748, "id": 125, "annotation": null}, {"text": "support", "start": 749, "end": 756, "id": 126, "annotation": null}, {"text": "are", "start": 757, "end": 760, "id": 127, "annotation": null}, {"text": "necessary", "start": 761, "end": 770, "id": 128, "annotation": null}, {"text": "to", "start": 771, "end": 773, "id": 129, "annotation": null}, {"text": "promote", "start": 774, "end": 781, "id": 130, "annotation": null}, {"text": "adsorption", "start": 782, "end": 792, "id": 131, "annotation": null}, {"text": "of", "start": 793, "end": 795, "id": 132, "annotation": null}, {"text": "CO2", "start": 796, "end": 799, "id": 133, "annotation": null}, {"text": "for", "start": 800, "end": 803, "id": 134, "annotation": null}, {"text": "its", "start": 804, "end": 807, "id": 135, "annotation": null}, {"text": "subsequent", "start": 808, "end": 818, "id": 136, "annotation": null}, {"text": "activation", "start": 819, "end": 829, "id": 137, "annotation": null}, {"text": ".", "start": 830, "end": 831, "id": 138, "annotation": null}], [{"text": "Titania", "start": 832, "end": 839, "id": 139, "annotation": null}, {"text": "inclusion", "start": 840, "end": 849, "id": 140, "annotation": null}, {"text": "within", "start": 850, "end": 856, "id": 141, "annotation": null}, {"text": "the", "start": 857, "end": 860, "id": 142, "annotation": null}, {"text": "support", "start": 861, "end": 868, "id": 143, "annotation": null}, {"text": "plays", "start": 869, "end": 874, "id": 144, "annotation": null}, {"text": "a", "start": 875, "end": 876, "id": 145, "annotation": null}, {"text": "crucial", "start": 877, "end": 884, "id": 146, "annotation": null}, {"text": "role", "start": 885, "end": 889, "id": 147, "annotation": null}, {"text": "in", "start": 890, "end": 892, "id": 148, "annotation": null}, {"text": "maintaining", "start": 893, "end": 904, "id": 149, "annotation": null}, {"text": "the", "start": 905, "end": 908, "id": 150, "annotation": null}, {"text": "oxygen", "start": 909, "end": 915, "id": 151, "annotation": null}, {"text": "vacancy", "start": 916, "end": 923, "id": 152, "annotation": null}, {"text": "defect", "start": 924, "end": 930, "id": 153, "annotation": null}, {"text": "sites", "start": 931, "end": 936, "id": 154, "annotation": null}, {"text": "on", "start": 937, "end": 939, "id": 155, "annotation": null}, {"text": "the", "start": 940, "end": 943, "id": 156, "annotation": null}, {"text": "(", "start": 944, "end": 945, "id": 157, "annotation": null}, {"text": "titanium", "start": 946, "end": 954, "id": 158, "annotation": "DOPANT"}, {"text": "-", "start": 955, "end": 956, "id": 159, "annotation": null}, {"text": "doped", "start": 957, "end": 962, "id": 160, "annotation": null}, {"text": ")", "start": 963, "end": 964, "id": 161, "annotation": null}, {"text": "cerium", "start": 965, "end": 971, "id": 162, "annotation": "BASEMAT"}, {"text": "oxide", "start": 972, "end": 977, "id": 163, "annotation": "BASEMAT"}, {"text": ".", "start": 978, "end": 979, "id": 164, "annotation": null}], [{"text": "The", "start": 980, "end": 983, "id": 165, "annotation": null}, {"text": "combination", "start": 984, "end": 995, "id": 166, "annotation": null}, {"text": "of", "start": 996, "end": 998, "id": 167, "annotation": null}, {"text": "elevated", "start": 999, "end": 1007, "id": 168, "annotation": null}, {"text": "light", "start": 1008, "end": 1013, "id": 169, "annotation": null}, {"text": "absorption", "start": 1014, "end": 1024, "id": 170, "annotation": null}, {"text": "and", "start": 1025, "end": 1028, "id": 171, "annotation": null}, {"text": "stabilized", "start": 1029, "end": 1039, "id": 172, "annotation": null}, {"text": "reduced", "start": 1040, "end": 1047, "id": 173, "annotation": null}, {"text": "states", "start": 1048, "end": 1054, "id": 174, "annotation": null}, {"text": "for", "start": 1055, "end": 1058, "id": 175, "annotation": null}, {"text": "CO2", "start": 1059, "end": 1062, "id": 176, "annotation": null}, {"text": "adsorption", "start": 1063, "end": 1073, "id": 177, "annotation": null}, {"text": "subsequently", "start": 1074, "end": 1086, "id": 178, "annotation": null}, {"text": "invokes", "start": 1087, "end": 1094, "id": 179, "annotation": null}, {"text": "effective", "start": 1095, "end": 1104, "id": 180, "annotation": null}, {"text": "photothermal", "start": 1105, "end": 1117, "id": 181, "annotation": null}, {"text": "CO2", "start": 1118, "end": 1121, "id": 182, "annotation": null}, {"text": "methanation", "start": 1122, "end": 1133, "id": 183, "annotation": null}, {"text": "when", "start": 1134, "end": 1138, "id": 184, "annotation": null}, {"text": "the", "start": 1139, "end": 1142, "id": 185, "annotation": null}, {"text": "ceria", "start": 1143, "end": 1148, "id": 186, "annotation": null}, {"text": "and", "start": 1149, "end": 1152, "id": 187, "annotation": null}, {"text": "titania", "start": 1153, "end": 1160, "id": 188, "annotation": null}, {"text": "are", "start": 1161, "end": 1164, "id": 189, "annotation": null}, {"text": "blended", "start": 1165, "end": 1172, "id": 190, "annotation": null}, {"text": "in", "start": 1173, "end": 1175, "id": 191, "annotation": null}, {"text": "the", "start": 1176, "end": 1179, "id": 192, "annotation": null}, {"text": "ideal", "start": 1180, "end": 1185, "id": 193, "annotation": null}, {"text": "ratio(s", "start": 1186, "end": 1193, "id": 194, "annotation": null}, {"text": ")", "start": 1194, "end": 1195, "id": 195, "annotation": null}, {"text": ".", "start": 1196, "end": 1197, "id": 196, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "The effect of compositional segregation on the properties of relaxor ferroelectric single crystal are attracting increasing attention for its serious limitation on the application field. In this paper, the composition, phase structure, optical properties and electric properties of Mn-doped Pb(In1/2Nb1/2)O3-Pb(Mg1/3Nb2/3)O3-PbTiO3 (PIN-PMN-PT) single crystal were investigated. The real composition of the single crystal fluctuated around the original ratio, except for MnO2. The single crystal contained less Mn element after removing inclusions compared with the starting ratio. The single crystal samples exhibited rhombohedral phase (R phase), orthorhombic phase (O phase) and tetragonal phase (T phase) structures with different composition due to the segregation. The rhombohedral to tetragonal phase transition temperature (T R-T ) shifted to a lower value along the growth direction, while the Curie Temperature (T C ) shifted to a higher value instead. The relaxation level of the single crystal went down to a lower level when the crystal structure changed from R phase to T and O phase. The coercive field (E C ) with [001] poling in R phase remained stable before a rise in O phase and T phase. However, the composition segregation didn't obviously affected the internal bias field and kept around 0.2kV/cm. The piezoelectric coefficient d 33and unipolar strain with poling direction along [001] had the same trend along growth direction. The curves of them both took a rapid fall at the top of the single crystal boule, which related to the T phase.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "effect", "start": 4, "end": 10, "annotation": null}, {"text": "of", "start": 11, "end": 13, "annotation": null}, {"text": "compositional", "start": 14, "end": 27, "annotation": null}, {"text": "segregation", "start": 28, "end": 39, "annotation": null}, {"text": "on", "start": 40, "end": 42, "annotation": null}, {"text": "the", "start": 43, "end": 46, "annotation": null}, {"text": "properties", "start": 47, "end": 57, "annotation": null}, {"text": "of", "start": 58, "end": 60, "annotation": null}, {"text": "relaxor", "start": 61, "end": 68, "annotation": null}, {"text": "ferroelectric", "start": 69, "end": 82, "annotation": null}, {"text": "single", "start": 83, "end": 89, "annotation": null}, {"text": "crystal", "start": 90, "end": 97, "annotation": null}, {"text": "are", "start": 98, "end": 101, "annotation": null}, {"text": "attracting", "start": 102, "end": 112, "annotation": null}, {"text": "increasing", "start": 113, "end": 123, "annotation": null}, {"text": "attention", "start": 124, "end": 133, "annotation": null}, {"text": "for", "start": 134, "end": 137, "annotation": null}, {"text": "its", "start": 138, "end": 141, "annotation": null}, {"text": "serious", "start": 142, "end": 149, "annotation": null}, {"text": "limitation", "start": 150, "end": 160, "annotation": null}, {"text": "on", "start": 161, "end": 163, "annotation": null}, {"text": "the", "start": 164, "end": 167, "annotation": null}, {"text": "application", "start": 168, "end": 179, "annotation": null}, {"text": "field", "start": 180, "end": 185, "annotation": null}, {"text": ".", "start": 185, "end": 186, "annotation": null}], [{"text": "In", "start": 187, "end": 189, "annotation": null}, {"text": "this", "start": 190, "end": 194, "annotation": null}, {"text": "paper", "start": 195, "end": 200, "annotation": null}, {"text": ",", "start": 200, "end": 201, "annotation": null}, {"text": "the", "start": 202, "end": 205, "annotation": null}, {"text": "composition", "start": 206, "end": 217, "annotation": null}, {"text": ",", "start": 217, "end": 218, "annotation": null}, {"text": "phase", "start": 219, "end": 224, "annotation": null}, {"text": "structure", "start": 225, "end": 234, "annotation": null}, {"text": ",", "start": 234, "end": 235, "annotation": null}, {"text": "optical", "start": 236, "end": 243, "annotation": null}, {"text": "properties", "start": 244, "end": 254, "annotation": null}, {"text": "and", "start": 255, "end": 258, "annotation": null}, {"text": "electric", "start": 259, "end": 267, "annotation": null}, {"text": "properties", "start": 268, "end": 278, "annotation": null}, {"text": "of", "start": 279, "end": 281, "annotation": null}, {"text": "Mn", "start": 282, "end": 284, "annotation": null}, {"text": "-", "start": 284, "end": 285, "annotation": null}, {"text": "doped", "start": 285, "end": 290, "annotation": null}, {"text": "Pb(In1", "start": 291, "end": 297, "annotation": "BASEMAT"}, {"text": "/", "start": 297, "end": 298, "annotation": null}, {"text": "2Nb1", "start": 298, "end": 302, "annotation": "BASEMAT"}, {"text": "/", "start": 302, "end": 303, "annotation": null}, {"text": "2)O3-Pb(Mg1", "start": 303, "end": 314, "annotation": "BASEMAT"}, {"text": "/", "start": 314, "end": 315, "annotation": null}, {"text": "3Nb2", "start": 315, "end": 319, "annotation": "BASEMAT"}, {"text": "/", "start": 319, "end": 320, "annotation": null}, {"text": "3)O3", "start": 320, "end": 324, "annotation": "BASEMAT"}, {"text": "-", "start": 324, "end": 325, "annotation": null}, {"text": "PbTiO3", "start": 325, "end": 331, "annotation": "BASEMAT"}, {"text": "(", "start": 332, "end": 333, "annotation": null}, {"text": "PIN-PMN-PT", "start": 333, "end": 343, "annotation": "BASEMAT"}, {"text": ")", "start": 343, "end": 344, "annotation": null}, {"text": "single", "start": 345, "end": 351, "annotation": null}, {"text": "crystal", "start": 352, "end": 359, "annotation": null}, {"text": "were", "start": 360, "end": 364, "annotation": null}, {"text": "investigated", "start": 365, "end": 377, "annotation": null}, {"text": ".", "start": 377, "end": 378, "annotation": null}], [{"text": "The", "start": 379, "end": 382, "annotation": null}, {"text": "real", "start": 383, "end": 387, "annotation": null}, {"text": "composition", "start": 388, "end": 399, "annotation": null}, {"text": "of", "start": 400, "end": 402, "annotation": null}, {"text": "the", "start": 403, "end": 406, "annotation": null}, {"text": "single", "start": 407, "end": 413, "annotation": null}, {"text": "crystal", "start": 414, "end": 421, "annotation": null}, {"text": "fluctuated", "start": 422, "end": 432, "annotation": null}, {"text": "around", "start": 433, "end": 439, "annotation": null}, {"text": "the", "start": 440, "end": 443, "annotation": null}, {"text": "original", "start": 444, "end": 452, "annotation": null}, {"text": "ratio", "start": 453, "end": 458, "annotation": null}, {"text": ",", "start": 458, "end": 459, "annotation": null}, {"text": "except", "start": 460, "end": 466, "annotation": null}, {"text": "for", "start": 467, "end": 470, "annotation": null}, {"text": "MnO2", "start": 471, "end": 475, "annotation": null}, {"text": ".", "start": 475, "end": 476, "annotation": null}], [{"text": "The", "start": 477, "end": 480, "annotation": null}, {"text": "single", "start": 481, "end": 487, "annotation": null}, {"text": "crystal", "start": 488, "end": 495, "annotation": null}, {"text": "contained", "start": 496, "end": 505, "annotation": null}, {"text": "less", "start": 506, "end": 510, "annotation": null}, {"text": "Mn", "start": 511, "end": 513, "annotation": null}, {"text": "element", "start": 514, "end": 521, "annotation": null}, {"text": "after", "start": 522, "end": 527, "annotation": null}, {"text": "removing", "start": 528, "end": 536, "annotation": null}, {"text": "inclusions", "start": 537, "end": 547, "annotation": null}, {"text": "compared", "start": 548, "end": 556, "annotation": null}, {"text": "with", "start": 557, "end": 561, "annotation": null}, {"text": "the", "start": 562, "end": 565, "annotation": null}, {"text": "starting", "start": 566, "end": 574, "annotation": null}, {"text": "ratio", "start": 575, "end": 580, "annotation": null}, {"text": ".", "start": 580, "end": 581, "annotation": null}], [{"text": "The", "start": 582, "end": 585, "annotation": null}, {"text": "single", "start": 586, "end": 592, "annotation": null}, {"text": "crystal", "start": 593, "end": 600, "annotation": null}, {"text": "samples", "start": 601, "end": 608, "annotation": null}, {"text": "exhibited", "start": 609, "end": 618, "annotation": null}, {"text": "rhombohedral", "start": 619, "end": 631, "annotation": null}, {"text": "phase", "start": 632, "end": 637, "annotation": null}, {"text": "(", "start": 638, "end": 639, "annotation": null}, {"text": "R", "start": 639, "end": 640, "annotation": null}, {"text": "phase", "start": 641, "end": 646, "annotation": null}, {"text": ")", "start": 646, "end": 647, "annotation": null}, {"text": ",", "start": 647, "end": 648, "annotation": null}, {"text": "orthorhombic", "start": 649, "end": 661, "annotation": null}, {"text": "phase", "start": 662, "end": 667, "annotation": null}, {"text": "(", "start": 668, "end": 669, "annotation": null}, {"text": "O", "start": 669, "end": 670, "annotation": null}, {"text": "phase", "start": 671, "end": 676, "annotation": null}, {"text": ")", "start": 676, "end": 677, "annotation": null}, {"text": "and", "start": 678, "end": 681, "annotation": null}, {"text": "tetragonal", "start": 682, "end": 692, "annotation": null}, {"text": "phase", "start": 693, "end": 698, "annotation": null}, {"text": "(", "start": 699, "end": 700, "annotation": null}, {"text": "T", "start": 700, "end": 701, "annotation": null}, {"text": "phase", "start": 702, "end": 707, "annotation": null}, {"text": ")", "start": 707, "end": 708, "annotation": null}, {"text": "structures", "start": 709, "end": 719, "annotation": null}, {"text": "with", "start": 720, "end": 724, "annotation": null}, {"text": "different", "start": 725, "end": 734, "annotation": null}, {"text": "composition", "start": 735, "end": 746, "annotation": null}, {"text": "due", "start": 747, "end": 750, "annotation": null}, {"text": "to", "start": 751, "end": 753, "annotation": null}, {"text": "the", "start": 754, "end": 757, "annotation": null}, {"text": "segregation", "start": 758, "end": 769, "annotation": null}, {"text": ".", "start": 769, "end": 770, "annotation": null}], [{"text": "The", "start": 771, "end": 774, "annotation": null}, {"text": "rhombohedral", "start": 775, "end": 787, "annotation": null}, {"text": "to", "start": 788, "end": 790, "annotation": null}, {"text": "tetragonal", "start": 791, "end": 801, "annotation": null}, {"text": "phase", "start": 802, "end": 807, "annotation": null}, {"text": "transition", "start": 808, "end": 818, "annotation": null}, {"text": "temperature", "start": 819, "end": 830, "annotation": null}, {"text": "(", "start": 831, "end": 832, "annotation": null}, {"text": "T", "start": 832, "end": 833, "annotation": null}, {"text": "R-T", "start": 834, "end": 837, "annotation": null}, {"text": ")", "start": 838, "end": 839, "annotation": null}, {"text": "shifted", "start": 840, "end": 847, "annotation": null}, {"text": "to", "start": 848, "end": 850, "annotation": null}, {"text": "a", "start": 851, "end": 852, "annotation": null}, {"text": "lower", "start": 853, "end": 858, "annotation": null}, {"text": "value", "start": 859, "end": 864, "annotation": null}, {"text": "along", "start": 865, "end": 870, "annotation": null}, {"text": "the", "start": 871, "end": 874, "annotation": null}, {"text": "growth", "start": 875, "end": 881, "annotation": null}, {"text": "direction", "start": 882, "end": 891, "annotation": null}, {"text": ",", "start": 891, "end": 892, "annotation": null}, {"text": "while", "start": 893, "end": 898, "annotation": null}, {"text": "the", "start": 899, "end": 902, "annotation": null}, {"text": "Curie", "start": 903, "end": 908, "annotation": null}, {"text": "Temperature", "start": 909, "end": 920, "annotation": null}, {"text": "(", "start": 921, "end": 922, "annotation": null}, {"text": "T", "start": 922, "end": 923, "annotation": null}, {"text": "C", "start": 924, "end": 925, "annotation": null}, {"text": ")", "start": 926, "end": 927, "annotation": null}, {"text": "shifted", "start": 928, "end": 935, "annotation": null}, {"text": "to", "start": 936, "end": 938, "annotation": null}, {"text": "a", "start": 939, "end": 940, "annotation": null}, {"text": "higher", "start": 941, "end": 947, "annotation": null}, {"text": "value", "start": 948, "end": 953, "annotation": null}, {"text": "instead", "start": 954, "end": 961, "annotation": null}, {"text": ".", "start": 961, "end": 962, "annotation": null}], [{"text": "The", "start": 963, "end": 966, "annotation": null}, {"text": "relaxation", "start": 967, "end": 977, "annotation": null}, {"text": "level", "start": 978, "end": 983, "annotation": null}, {"text": "of", "start": 984, "end": 986, "annotation": null}, {"text": "the", "start": 987, "end": 990, "annotation": null}, {"text": "single", "start": 991, "end": 997, "annotation": null}, {"text": "crystal", "start": 998, "end": 1005, "annotation": null}, {"text": "went", "start": 1006, "end": 1010, "annotation": null}, {"text": "down", "start": 1011, "end": 1015, "annotation": null}, {"text": "to", "start": 1016, "end": 1018, "annotation": null}, {"text": "a", "start": 1019, "end": 1020, "annotation": null}, {"text": "lower", "start": 1021, "end": 1026, "annotation": null}, {"text": "level", "start": 1027, "end": 1032, "annotation": null}, {"text": "when", "start": 1033, "end": 1037, "annotation": null}, {"text": "the", "start": 1038, "end": 1041, "annotation": null}, {"text": "crystal", "start": 1042, "end": 1049, "annotation": null}, {"text": "structure", "start": 1050, "end": 1059, "annotation": null}, {"text": "changed", "start": 1060, "end": 1067, "annotation": null}, {"text": "from", "start": 1068, "end": 1072, "annotation": null}, {"text": "R", "start": 1073, "end": 1074, "annotation": null}, {"text": "phase", "start": 1075, "end": 1080, "annotation": null}, {"text": "to", "start": 1081, "end": 1083, "annotation": null}, {"text": "T", "start": 1084, "end": 1085, "annotation": null}, {"text": "and", "start": 1086, "end": 1089, "annotation": null}, {"text": "O", "start": 1090, "end": 1091, "annotation": null}, {"text": "phase", "start": 1092, "end": 1097, "annotation": null}, {"text": ".", "start": 1097, "end": 1098, "annotation": null}], [{"text": "The", "start": 1099, "end": 1102, "annotation": null}, {"text": "coercive", "start": 1103, "end": 1111, "annotation": null}, {"text": "field", "start": 1112, "end": 1117, "annotation": null}, {"text": "(", "start": 1118, "end": 1119, "annotation": null}, {"text": "E", "start": 1119, "end": 1120, "annotation": null}, {"text": "C", "start": 1121, "end": 1122, "annotation": null}, {"text": ")", "start": 1123, "end": 1124, "annotation": null}, {"text": "with", "start": 1125, "end": 1129, "annotation": null}, {"text": "[001]", "start": 1130, "end": 1135, "annotation": null}, {"text": "poling", "start": 1136, "end": 1142, "annotation": null}, {"text": "in", "start": 1143, "end": 1145, "annotation": null}, {"text": "R", "start": 1146, "end": 1147, "annotation": null}, {"text": "phase", "start": 1148, "end": 1153, "annotation": null}, {"text": "remained", "start": 1154, "end": 1162, "annotation": null}, {"text": "stable", "start": 1163, "end": 1169, "annotation": null}, {"text": "before", "start": 1170, "end": 1176, "annotation": null}, {"text": "a", "start": 1177, "end": 1178, "annotation": null}, {"text": "rise", "start": 1179, "end": 1183, "annotation": null}, {"text": "in", "start": 1184, "end": 1186, "annotation": null}, {"text": "O", "start": 1187, "end": 1188, "annotation": null}, {"text": "phase", "start": 1189, "end": 1194, "annotation": null}, {"text": "and", "start": 1195, "end": 1198, "annotation": null}, {"text": "T", "start": 1199, "end": 1200, "annotation": null}, {"text": "phase", "start": 1201, "end": 1206, "annotation": null}, {"text": ".", "start": 1206, "end": 1207, "annotation": null}], [{"text": "However", "start": 1208, "end": 1215, "annotation": null}, {"text": ",", "start": 1215, "end": 1216, "annotation": null}, {"text": "the", "start": 1217, "end": 1220, "annotation": null}, {"text": "composition", "start": 1221, "end": 1232, "annotation": null}, {"text": "segregation", "start": 1233, "end": 1244, "annotation": null}, {"text": "did", "start": 1245, "end": 1248, "annotation": null}, {"text": "n't", "start": 1248, "end": 1251, "annotation": null}, {"text": "obviously", "start": 1252, "end": 1261, "annotation": null}, {"text": "affected", "start": 1262, "end": 1270, "annotation": null}, {"text": "the", "start": 1271, "end": 1274, "annotation": null}, {"text": "internal", "start": 1275, "end": 1283, "annotation": null}, {"text": "bias", "start": 1284, "end": 1288, "annotation": null}, {"text": "field", "start": 1289, "end": 1294, "annotation": null}, {"text": "and", "start": 1295, "end": 1298, "annotation": null}, {"text": "kept", "start": 1299, "end": 1303, "annotation": null}, {"text": "around", "start": 1304, "end": 1310, "annotation": null}, {"text": "0.2", "start": 1311, "end": 1314, "annotation": null}, {"text": "kV", "start": 1314, "end": 1316, "annotation": null}, {"text": "/", "start": 1316, "end": 1317, "annotation": null}, {"text": "cm", "start": 1317, "end": 1319, "annotation": null}, {"text": ".", "start": 1319, "end": 1320, "annotation": null}], [{"text": "The", "start": 1321, "end": 1324, "annotation": null}, {"text": "piezoelectric", "start": 1325, "end": 1338, "annotation": null}, {"text": "coefficient", "start": 1339, "end": 1350, "annotation": null}, {"text": "d", "start": 1351, "end": 1352, "annotation": null}, {"text": "33and", "start": 1353, "end": 1358, "annotation": null}, {"text": "unipolar", "start": 1359, "end": 1367, "annotation": null}, {"text": "strain", "start": 1368, "end": 1374, "annotation": null}, {"text": "with", "start": 1375, "end": 1379, "annotation": null}, {"text": "poling", "start": 1380, "end": 1386, "annotation": null}, {"text": "direction", "start": 1387, "end": 1396, "annotation": null}, {"text": "along", "start": 1397, "end": 1402, "annotation": null}, {"text": "[001]", "start": 1403, "end": 1408, "annotation": null}, {"text": "had", "start": 1409, "end": 1412, "annotation": null}, {"text": "the", "start": 1413, "end": 1416, "annotation": null}, {"text": "same", "start": 1417, "end": 1421, "annotation": null}, {"text": "trend", "start": 1422, "end": 1427, "annotation": null}, {"text": "along", "start": 1428, "end": 1433, "annotation": null}, {"text": "growth", "start": 1434, "end": 1440, "annotation": null}, {"text": "direction", "start": 1441, "end": 1450, "annotation": null}, {"text": ".", "start": 1450, "end": 1451, "annotation": null}], [{"text": "The", "start": 1452, "end": 1455, "annotation": null}, {"text": "curves", "start": 1456, "end": 1462, "annotation": null}, {"text": "of", "start": 1463, "end": 1465, "annotation": null}, {"text": "them", "start": 1466, "end": 1470, "annotation": null}, {"text": "both", "start": 1471, "end": 1475, "annotation": null}, {"text": "took", "start": 1476, "end": 1480, "annotation": null}, {"text": "a", "start": 1481, "end": 1482, "annotation": null}, {"text": "rapid", "start": 1483, "end": 1488, "annotation": null}, {"text": "fall", "start": 1489, "end": 1493, "annotation": null}, {"text": "at", "start": 1494, "end": 1496, "annotation": null}, {"text": "the", "start": 1497, "end": 1500, "annotation": null}, {"text": "top", "start": 1501, "end": 1504, "annotation": null}, {"text": "of", "start": 1505, "end": 1507, "annotation": null}, {"text": "the", "start": 1508, "end": 1511, "annotation": null}, {"text": "single", "start": 1512, "end": 1518, "annotation": null}, {"text": "crystal", "start": 1519, "end": 1526, "annotation": null}, {"text": "boule", "start": 1527, "end": 1532, "annotation": null}, {"text": ",", "start": 1532, "end": 1533, "annotation": null}, {"text": "which", "start": 1534, "end": 1539, "annotation": null}, {"text": "related", "start": 1540, "end": 1547, "annotation": null}, {"text": "to", "start": 1548, "end": 1550, "annotation": null}, {"text": "the", "start": 1551, "end": 1554, "annotation": null}, {"text": "T", "start": 1555, "end": 1556, "annotation": null}, {"text": "phase", "start": 1557, "end": 1562, "annotation": null}, {"text": ".", "start": 1562, "end": 1563, "annotation": null}]]} -{"text": "Nb-based \u2018312\u2019 MAX phase has not been recognized so far, raising a hypothesis that Nb doping would destabilize the isostructural Ti3AlC2. Here we report that (Ti1\u2212xNbx)3AlC2 could persist with a doping limitation up to x=0.15. As demonstrated by HAADF-STEM analysis, Nb dopants homogeneously distribute among polycrystalline grains at the microscale and randomly occupy the Ti sites at the atomic level. Beyond the limitation, Nb-doped \u2018312\u2019 phase Ti3AlC2 decomposes into (Ti,Nb)C, Nb-doped \u2018211\u2019 phase Ti2AlC, and Nb-based \u2018413\u2019 phase. Compared to pristine Ti3AlC2, the compressive strength of (Ti0.9Nb0.1)3AlC2 at 1200\u00b0C increases by 130%, whereas doping at this level impairs the oxidation resistance. Improving high-temperature strength without deteriorating oxidation resistance can be achieved by 5% Nb doping.", "meta": {"doi": "10.1016/j.jeurceramsoc.2017.04.026"}, "_input_hash": -673218421, "_task_hash": 1672910133, "tokens": [[{"text": "Nb", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "-", "start": 3, "end": 4, "id": 1, "annotation": null}, {"text": "based", "start": 5, "end": 10, "id": 2, "annotation": null}, {"text": "\u2018", "start": 11, "end": 12, "id": 3, "annotation": null}, {"text": "312", "start": 13, "end": 16, "id": 4, "annotation": null}, {"text": "\u2019", "start": 17, "end": 18, "id": 5, "annotation": null}, {"text": "MAX", "start": 19, "end": 22, "id": 6, "annotation": null}, {"text": "phase", "start": 23, "end": 28, "id": 7, "annotation": null}, {"text": "has", "start": 29, "end": 32, "id": 8, "annotation": null}, {"text": "not", "start": 33, "end": 36, "id": 9, "annotation": null}, {"text": "been", "start": 37, "end": 41, "id": 10, "annotation": null}, {"text": "recognized", "start": 42, "end": 52, "id": 11, "annotation": null}, {"text": "so", "start": 53, "end": 55, "id": 12, "annotation": null}, {"text": "far", "start": 56, "end": 59, "id": 13, "annotation": null}, {"text": ",", "start": 60, "end": 61, "id": 14, "annotation": null}, {"text": "raising", "start": 62, "end": 69, "id": 15, "annotation": null}, {"text": "a", "start": 70, "end": 71, "id": 16, "annotation": null}, {"text": "hypothesis", "start": 72, "end": 82, "id": 17, "annotation": null}, {"text": "that", "start": 83, "end": 87, "id": 18, "annotation": null}, {"text": "Nb", "start": 88, "end": 90, "id": 19, "annotation": "DOPANT"}, {"text": "doping", "start": 91, "end": 97, "id": 20, "annotation": null}, {"text": "would", "start": 98, "end": 103, "id": 21, "annotation": null}, {"text": "destabilize", "start": 104, "end": 115, "id": 22, "annotation": null}, {"text": "the", "start": 116, "end": 119, "id": 23, "annotation": null}, {"text": "isostructural", "start": 120, "end": 133, "id": 24, "annotation": null}, {"text": "Ti3AlC2", "start": 134, "end": 141, "id": 25, "annotation": "BASEMAT"}, {"text": ".", "start": 142, "end": 143, "id": 26, "annotation": null}], [{"text": "Here", "start": 144, "end": 148, "id": 27, "annotation": null}, {"text": "we", "start": 149, "end": 151, "id": 28, "annotation": null}, {"text": "report", "start": 152, "end": 158, "id": 29, "annotation": null}, {"text": "that", "start": 159, "end": 163, "id": 30, "annotation": null}, {"text": "(", "start": 164, "end": 165, "id": 31, "annotation": null}, {"text": "Ti1\u2212xNbx)3AlC2", "start": 166, "end": 180, "id": 32, "annotation": null}, {"text": "could", "start": 181, "end": 186, "id": 33, "annotation": null}, {"text": "persist", "start": 187, "end": 194, "id": 34, "annotation": null}, {"text": "with", "start": 195, "end": 199, "id": 35, "annotation": null}, {"text": "a", "start": 200, "end": 201, "id": 36, "annotation": null}, {"text": "doping", "start": 202, "end": 208, "id": 37, "annotation": null}, {"text": "limitation", "start": 209, "end": 219, "id": 38, "annotation": null}, {"text": "up", "start": 220, "end": 222, "id": 39, "annotation": "DOPMODQ"}, {"text": "to", "start": 223, "end": 225, "id": 40, "annotation": null}, {"text": "x=0.15", "start": 226, "end": 232, "id": 41, "annotation": "DOPMODQ"}, {"text": ".", "start": 233, "end": 234, "id": 42, "annotation": null}], [{"text": "As", "start": 235, "end": 237, "id": 43, "annotation": null}, {"text": "demonstrated", "start": 238, "end": 250, "id": 44, "annotation": null}, {"text": "by", "start": 251, "end": 253, "id": 45, "annotation": null}, {"text": "HAADF", "start": 254, "end": 259, "id": 46, "annotation": null}, {"text": "-", "start": 260, "end": 261, "id": 47, "annotation": null}, {"text": "STEM", "start": 262, "end": 266, "id": 48, "annotation": null}, {"text": "analysis", "start": 267, "end": 275, "id": 49, "annotation": null}, {"text": ",", "start": 276, "end": 277, "id": 50, "annotation": null}, {"text": "Nb", "start": 278, "end": 280, "id": 51, "annotation": "DOPANT"}, {"text": "dopants", "start": 281, "end": 288, "id": 52, "annotation": null}, {"text": "homogeneously", "start": 289, "end": 302, "id": 53, "annotation": null}, {"text": "distribute", "start": 303, "end": 313, "id": 54, "annotation": null}, {"text": "among", "start": 314, "end": 319, "id": 55, "annotation": null}, {"text": "polycrystalline", "start": 320, "end": 335, "id": 56, "annotation": null}, {"text": "grains", "start": 336, "end": 342, "id": 57, "annotation": null}, {"text": "at", "start": 343, "end": 345, "id": 58, "annotation": null}, {"text": "the", "start": 346, "end": 349, "id": 59, "annotation": null}, {"text": "microscale", "start": 350, "end": 360, "id": 60, "annotation": null}, {"text": "and", "start": 361, "end": 364, "id": 61, "annotation": null}, {"text": "randomly", "start": 365, "end": 373, "id": 62, "annotation": null}, {"text": "occupy", "start": 374, "end": 380, "id": 63, "annotation": null}, {"text": "the", "start": 381, "end": 384, "id": 64, "annotation": null}, {"text": "Ti", "start": 385, "end": 387, "id": 65, "annotation": null}, {"text": "sites", "start": 388, "end": 393, "id": 66, "annotation": null}, {"text": "at", "start": 394, "end": 396, "id": 67, "annotation": null}, {"text": "the", "start": 397, "end": 400, "id": 68, "annotation": null}, {"text": "atomic", "start": 401, "end": 407, "id": 69, "annotation": null}, {"text": "level", "start": 408, "end": 413, "id": 70, "annotation": null}, {"text": ".", "start": 414, "end": 415, "id": 71, "annotation": null}], [{"text": "Beyond", "start": 416, "end": 422, "id": 72, "annotation": null}, {"text": "the", "start": 423, "end": 426, "id": 73, "annotation": null}, {"text": "limitation", "start": 427, "end": 437, "id": 74, "annotation": null}, {"text": ",", "start": 438, "end": 439, "id": 75, "annotation": null}, {"text": "Nb", "start": 440, "end": 442, "id": 76, "annotation": "DOPANT"}, {"text": "-", "start": 443, "end": 444, "id": 77, "annotation": null}, {"text": "doped", "start": 445, "end": 450, "id": 78, "annotation": null}, {"text": "\u2018", "start": 451, "end": 452, "id": 79, "annotation": null}, {"text": "312", "start": 453, "end": 456, "id": 80, "annotation": null}, {"text": "\u2019", "start": 457, "end": 458, "id": 81, "annotation": null}, {"text": "phase", "start": 459, "end": 464, "id": 82, "annotation": null}, {"text": "Ti3AlC2", "start": 465, "end": 472, "id": 83, "annotation": "BASEMAT"}, {"text": "decomposes", "start": 473, "end": 483, "id": 84, "annotation": null}, {"text": "into", "start": 484, "end": 488, "id": 85, "annotation": null}, {"text": "(", "start": 489, "end": 490, "id": 86, "annotation": null}, {"text": "Ti", "start": 491, "end": 493, "id": 87, "annotation": null}, {"text": ",", "start": 494, "end": 495, "id": 88, "annotation": null}, {"text": "Nb)C", "start": 496, "end": 500, "id": 89, "annotation": null}, {"text": ",", "start": 501, "end": 502, "id": 90, "annotation": null}, {"text": "Nb", "start": 503, "end": 505, "id": 91, "annotation": "DOPANT"}, {"text": "-", "start": 506, "end": 507, "id": 92, "annotation": null}, {"text": "doped", "start": 508, "end": 513, "id": 93, "annotation": null}, {"text": "\u2018", "start": 514, "end": 515, "id": 94, "annotation": null}, {"text": "211", "start": 516, "end": 519, "id": 95, "annotation": null}, {"text": "\u2019", "start": 520, "end": 521, "id": 96, "annotation": null}, {"text": "phase", "start": 522, "end": 527, "id": 97, "annotation": null}, {"text": "Ti2AlC", "start": 528, "end": 534, "id": 98, "annotation": "BASEMAT"}, {"text": ",", "start": 535, "end": 536, "id": 99, "annotation": null}, {"text": "and", "start": 537, "end": 540, "id": 100, "annotation": null}, {"text": "Nb", "start": 541, "end": 543, "id": 101, "annotation": null}, {"text": "-", "start": 544, "end": 545, "id": 102, "annotation": null}, {"text": "based", "start": 546, "end": 551, "id": 103, "annotation": null}, {"text": "\u2018", "start": 552, "end": 553, "id": 104, "annotation": null}, {"text": "413", "start": 554, "end": 557, "id": 105, "annotation": null}, {"text": "\u2019", "start": 558, "end": 559, "id": 106, "annotation": null}, {"text": "phase", "start": 560, "end": 565, "id": 107, "annotation": null}, {"text": ".", "start": 566, "end": 567, "id": 108, "annotation": null}], [{"text": "Compared", "start": 568, "end": 576, "id": 109, "annotation": null}, {"text": "to", "start": 577, "end": 579, "id": 110, "annotation": null}, {"text": "pristine", "start": 580, "end": 588, "id": 111, "annotation": null}, {"text": "Ti3AlC2", "start": 589, "end": 596, "id": 112, "annotation": null}, {"text": ",", "start": 597, "end": 598, "id": 113, "annotation": null}, {"text": "the", "start": 599, "end": 602, "id": 114, "annotation": null}, {"text": "compressive", "start": 603, "end": 614, "id": 115, "annotation": null}, {"text": "strength", "start": 615, "end": 623, "id": 116, "annotation": null}, {"text": "of", "start": 624, "end": 626, "id": 117, "annotation": null}, {"text": "(", "start": 627, "end": 628, "id": 118, "annotation": null}, {"text": "Ti0.9Nb0.1)3AlC2", "start": 629, "end": 645, "id": 119, "annotation": null}, {"text": "at", "start": 646, "end": 648, "id": 120, "annotation": null}, {"text": "1200", "start": 649, "end": 653, "id": 121, "annotation": null}, {"text": "\u00b0", "start": 654, "end": 655, "id": 122, "annotation": null}, {"text": "C", "start": 656, "end": 657, "id": 123, "annotation": null}, {"text": "increases", "start": 658, "end": 667, "id": 124, "annotation": null}, {"text": "by", "start": 668, "end": 670, "id": 125, "annotation": null}, {"text": "130", "start": 671, "end": 674, "id": 126, "annotation": null}, {"text": "%", "start": 675, "end": 676, "id": 127, "annotation": null}, {"text": ",", "start": 677, "end": 678, "id": 128, "annotation": null}, {"text": "whereas", "start": 679, "end": 686, "id": 129, "annotation": null}, {"text": "doping", "start": 687, "end": 693, "id": 130, "annotation": null}, {"text": "at", "start": 694, "end": 696, "id": 131, "annotation": null}, {"text": "this", "start": 697, "end": 701, "id": 132, "annotation": null}, {"text": "level", "start": 702, "end": 707, "id": 133, "annotation": null}, {"text": "impairs", "start": 708, "end": 715, "id": 134, "annotation": null}, {"text": "the", "start": 716, "end": 719, "id": 135, "annotation": null}, {"text": "oxidation", "start": 720, "end": 729, "id": 136, "annotation": null}, {"text": "resistance", "start": 730, "end": 740, "id": 137, "annotation": null}, {"text": ".", "start": 741, "end": 742, "id": 138, "annotation": null}], [{"text": "Improving", "start": 743, "end": 752, "id": 139, "annotation": null}, {"text": "high", "start": 753, "end": 757, "id": 140, "annotation": null}, {"text": "-", "start": 758, "end": 759, "id": 141, "annotation": null}, {"text": "temperature", "start": 760, "end": 771, "id": 142, "annotation": null}, {"text": "strength", "start": 772, "end": 780, "id": 143, "annotation": null}, {"text": "without", "start": 781, "end": 788, "id": 144, "annotation": null}, {"text": "deteriorating", "start": 789, "end": 802, "id": 145, "annotation": null}, {"text": "oxidation", "start": 803, "end": 812, "id": 146, "annotation": null}, {"text": "resistance", "start": 813, "end": 823, "id": 147, "annotation": null}, {"text": "can", "start": 824, "end": 827, "id": 148, "annotation": null}, {"text": "be", "start": 828, "end": 830, "id": 149, "annotation": null}, {"text": "achieved", "start": 831, "end": 839, "id": 150, "annotation": null}, {"text": "by", "start": 840, "end": 842, "id": 151, "annotation": null}, {"text": "5", "start": 843, "end": 844, "id": 152, "annotation": "DOPMODQ"}, {"text": "%", "start": 845, "end": 846, "id": 153, "annotation": "DOPMODQ"}, {"text": "Nb", "start": 847, "end": 849, "id": 154, "annotation": "DOPANT"}, {"text": "doping", "start": 850, "end": 856, "id": 155, "annotation": null}, {"text": ".", "start": 857, "end": 858, "id": 156, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "Diamond films on the p-type Si(111) and p-type(100) substrates were prepared by microwave plasma chemical vapor deposition (MWCVD) and hot-filament chemical vapor deposition (HFCVD) by using a mixture of methane CH4 and hydrogen H2 as gas feed. The structure and composition of the films have been investigated by X-ray Diffraction, Raman Spectroscopy and Scanning Electron Microscopy methods. A high quality diamond crystalline structure of the obtained films by using HFCVD method was confirmed by clear XRD-pattern. SEM images show that the prepared films are polycrystalline diamond films consisting of diamond single crystallites (111)-orientation perpendicular to the substrate. Diamond films grown on silicon substrates by using HFCVD show good quality diamond and fewer non-diamond components.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Diamond", "start": 0, "end": 7, "annotation": null}, {"text": "films", "start": 8, "end": 13, "annotation": null}, {"text": "on", "start": 14, "end": 16, "annotation": null}, {"text": "the", "start": 17, "end": 20, "annotation": null}, {"text": "p", "start": 21, "end": 22, "annotation": "DOPANT"}, {"text": "-", "start": 22, "end": 23, "annotation": "DOPANT"}, {"text": "type", "start": 23, "end": 27, "annotation": "DOPANT"}, {"text": "Si(111)", "start": 28, "end": 35, "annotation": "BASEMAT"}, {"text": "and", "start": 36, "end": 39, "annotation": null}, {"text": "p-type(100)", "start": 40, "end": 51, "annotation": "DOPANT"}, {"text": "substrates", "start": 52, "end": 62, "annotation": "BASEMAT"}, {"text": "were", "start": 63, "end": 67, "annotation": null}, {"text": "prepared", "start": 68, "end": 76, "annotation": null}, {"text": "by", "start": 77, "end": 79, "annotation": null}, {"text": "microwave", "start": 80, "end": 89, "annotation": null}, {"text": "plasma", "start": 90, "end": 96, "annotation": null}, {"text": "chemical", "start": 97, "end": 105, "annotation": null}, {"text": "vapor", "start": 106, "end": 111, "annotation": null}, {"text": "deposition", "start": 112, "end": 122, "annotation": null}, {"text": "(", "start": 123, "end": 124, "annotation": null}, {"text": "MWCVD", "start": 124, "end": 129, "annotation": null}, {"text": ")", "start": 129, "end": 130, "annotation": null}, {"text": "and", "start": 131, "end": 134, "annotation": null}, {"text": "hot", "start": 135, "end": 138, "annotation": null}, {"text": "-", "start": 138, "end": 139, "annotation": null}, {"text": "filament", "start": 139, "end": 147, "annotation": null}, {"text": "chemical", "start": 148, "end": 156, "annotation": null}, {"text": "vapor", "start": 157, "end": 162, "annotation": null}, {"text": "deposition", "start": 163, "end": 173, "annotation": null}, {"text": "(", "start": 174, "end": 175, "annotation": null}, {"text": "HFCVD", "start": 175, "end": 180, "annotation": null}, {"text": ")", "start": 180, "end": 181, "annotation": null}, {"text": "by", "start": 182, "end": 184, "annotation": null}, {"text": "using", "start": 185, "end": 190, "annotation": null}, {"text": "a", "start": 191, "end": 192, "annotation": null}, {"text": "mixture", "start": 193, "end": 200, "annotation": null}, {"text": "of", "start": 201, "end": 203, "annotation": null}, {"text": "methane", "start": 204, "end": 211, "annotation": null}, {"text": "CH4", "start": 212, "end": 215, "annotation": null}, {"text": "and", "start": 216, "end": 219, "annotation": null}, {"text": "hydrogen", "start": 220, "end": 228, "annotation": null}, {"text": "H2", "start": 229, "end": 231, "annotation": null}, {"text": "as", "start": 232, "end": 234, "annotation": null}, {"text": "gas", "start": 235, "end": 238, "annotation": null}, {"text": "feed", "start": 239, "end": 243, "annotation": null}, {"text": ".", "start": 243, "end": 244, "annotation": null}], [{"text": "The", "start": 245, "end": 248, "annotation": null}, {"text": "structure", "start": 249, "end": 258, "annotation": null}, {"text": "and", "start": 259, "end": 262, "annotation": null}, {"text": "composition", "start": 263, "end": 274, "annotation": null}, {"text": "of", "start": 275, "end": 277, "annotation": null}, {"text": "the", "start": 278, "end": 281, "annotation": null}, {"text": "films", "start": 282, "end": 287, "annotation": null}, {"text": "have", "start": 288, "end": 292, "annotation": null}, {"text": "been", "start": 293, "end": 297, "annotation": null}, {"text": "investigated", "start": 298, "end": 310, "annotation": null}, {"text": "by", "start": 311, "end": 313, "annotation": null}, {"text": "X-ray", "start": 314, "end": 319, "annotation": null}, {"text": "Diffraction", "start": 320, "end": 331, "annotation": null}, {"text": ",", "start": 331, "end": 332, "annotation": null}, {"text": "Raman", "start": 333, "end": 338, "annotation": null}, {"text": "Spectroscopy", "start": 339, "end": 351, "annotation": null}, {"text": "and", "start": 352, "end": 355, "annotation": null}, {"text": "Scanning", "start": 356, "end": 364, "annotation": null}, {"text": "Electron", "start": 365, "end": 373, "annotation": null}, {"text": "Microscopy", "start": 374, "end": 384, "annotation": null}, {"text": "methods", "start": 385, "end": 392, "annotation": null}, {"text": ".", "start": 392, "end": 393, "annotation": null}], [{"text": "A", "start": 394, "end": 395, "annotation": null}, {"text": "high", "start": 396, "end": 400, "annotation": null}, {"text": "quality", "start": 401, "end": 408, "annotation": null}, {"text": "diamond", "start": 409, "end": 416, "annotation": null}, {"text": "crystalline", "start": 417, "end": 428, "annotation": null}, {"text": "structure", "start": 429, "end": 438, "annotation": null}, {"text": "of", "start": 439, "end": 441, "annotation": null}, {"text": "the", "start": 442, "end": 445, "annotation": null}, {"text": "obtained", "start": 446, "end": 454, "annotation": null}, {"text": "films", "start": 455, "end": 460, "annotation": null}, {"text": "by", "start": 461, "end": 463, "annotation": null}, {"text": "using", "start": 464, "end": 469, "annotation": null}, {"text": "HFCVD", "start": 470, "end": 475, "annotation": null}, {"text": "method", "start": 476, "end": 482, "annotation": null}, {"text": "was", "start": 483, "end": 486, "annotation": null}, {"text": "confirmed", "start": 487, "end": 496, "annotation": null}, {"text": "by", "start": 497, "end": 499, "annotation": null}, {"text": "clear", "start": 500, "end": 505, "annotation": null}, {"text": "XRD", "start": 506, "end": 509, "annotation": null}, {"text": "-", "start": 509, "end": 510, "annotation": null}, {"text": "pattern", "start": 510, "end": 517, "annotation": null}, {"text": ".", "start": 517, "end": 518, "annotation": null}], [{"text": "SEM", "start": 519, "end": 522, "annotation": null}, {"text": "images", "start": 523, "end": 529, "annotation": null}, {"text": "show", "start": 530, "end": 534, "annotation": null}, {"text": "that", "start": 535, "end": 539, "annotation": null}, {"text": "the", "start": 540, "end": 543, "annotation": null}, {"text": "prepared", "start": 544, "end": 552, "annotation": null}, {"text": "films", "start": 553, "end": 558, "annotation": null}, {"text": "are", "start": 559, "end": 562, "annotation": null}, {"text": "polycrystalline", "start": 563, "end": 578, "annotation": null}, {"text": "diamond", "start": 579, "end": 586, "annotation": null}, {"text": "films", "start": 587, "end": 592, "annotation": null}, {"text": "consisting", "start": 593, "end": 603, "annotation": null}, {"text": "of", "start": 604, "end": 606, "annotation": null}, {"text": "diamond", "start": 607, "end": 614, "annotation": null}, {"text": "single", "start": 615, "end": 621, "annotation": null}, {"text": "crystallites", "start": 622, "end": 634, "annotation": null}, {"text": "(111)-orientation", "start": 635, "end": 652, "annotation": null}, {"text": "perpendicular", "start": 653, "end": 666, "annotation": null}, {"text": "to", "start": 667, "end": 669, "annotation": null}, {"text": "the", "start": 670, "end": 673, "annotation": null}, {"text": "substrate", "start": 674, "end": 683, "annotation": null}, {"text": ".", "start": 683, "end": 684, "annotation": null}], [{"text": "Diamond", "start": 685, "end": 692, "annotation": null}, {"text": "films", "start": 693, "end": 698, "annotation": null}, {"text": "grown", "start": 699, "end": 704, "annotation": null}, {"text": "on", "start": 705, "end": 707, "annotation": null}, {"text": "silicon", "start": 708, "end": 715, "annotation": null}, {"text": "substrates", "start": 716, "end": 726, "annotation": null}, {"text": "by", "start": 727, "end": 729, "annotation": null}, {"text": "using", "start": 730, "end": 735, "annotation": null}, {"text": "HFCVD", "start": 736, "end": 741, "annotation": null}, {"text": "show", "start": 742, "end": 746, "annotation": null}, {"text": "good", "start": 747, "end": 751, "annotation": null}, {"text": "quality", "start": 752, "end": 759, "annotation": null}, {"text": "diamond", "start": 760, "end": 767, "annotation": null}, {"text": "and", "start": 768, "end": 771, "annotation": null}, {"text": "fewer", "start": 772, "end": 777, "annotation": null}, {"text": "non-diamond", "start": 778, "end": 789, "annotation": null}, {"text": "components", "start": 790, "end": 800, "annotation": null}, {"text": ".", "start": 800, "end": 801, "annotation": null}]]} -{"remark": "doping_annt2", "text": "Rare earth element (gadolinium) doped cadmium oxide (CdO:Gd) thin films were deposited using the pulsed laser deposition technique. X-ray diffraction analysis reveals that growth temperature has large impact on the preferred orientation of the films. The films grown at low temperature show (111) preferred orientation, while films grown at high temperature have (200) orientation. The effect of substrate temperature on optical and electrical properties shows widening in optical bandgap and improvement in electron mobility with increase in growth temperature. These wide bandgap transparent conducting films could be used in optoelectronic applications.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Rare", "start": 0, "end": 4, "annotation": null}, {"text": "earth", "start": 5, "end": 10, "annotation": null}, {"text": "element", "start": 11, "end": 18, "annotation": null}, {"text": "(", "start": 19, "end": 20, "annotation": null}, {"text": "gadolinium", "start": 20, "end": 30, "annotation": "DOPANT"}, {"text": ")", "start": 30, "end": 31, "annotation": null}, {"text": "doped", "start": 32, "end": 37, "annotation": null}, {"text": "cadmium", "start": 38, "end": 45, "annotation": "BASEMAT"}, {"text": "oxide", "start": 46, "end": 51, "annotation": "BASEMAT"}, {"text": "(", "start": 52, "end": 53, "annotation": null}, {"text": "CdO", "start": 53, "end": 56, "annotation": "BASEMAT"}, {"text": ":", "start": 56, "end": 57, "annotation": null}, {"text": "Gd", "start": 57, "end": 59, "annotation": "DOPANT"}, {"text": ")", "start": 59, "end": 60, "annotation": null}, {"text": "thin", "start": 61, "end": 65, "annotation": null}, {"text": "films", "start": 66, "end": 71, "annotation": null}, {"text": "were", "start": 72, "end": 76, "annotation": null}, {"text": "deposited", "start": 77, "end": 86, "annotation": null}, {"text": "using", "start": 87, "end": 92, "annotation": null}, {"text": "the", "start": 93, "end": 96, "annotation": null}, {"text": "pulsed", "start": 97, "end": 103, "annotation": null}, {"text": "laser", "start": 104, "end": 109, "annotation": null}, {"text": "deposition", "start": 110, "end": 120, "annotation": null}, {"text": "technique", "start": 121, "end": 130, "annotation": null}, {"text": ".", "start": 130, "end": 131, "annotation": null}], [{"text": "X-ray", "start": 132, "end": 137, "annotation": null}, {"text": "diffraction", "start": 138, "end": 149, "annotation": null}, {"text": "analysis", "start": 150, "end": 158, "annotation": null}, {"text": "reveals", "start": 159, "end": 166, "annotation": null}, {"text": "that", "start": 167, "end": 171, "annotation": null}, {"text": "growth", "start": 172, "end": 178, "annotation": null}, {"text": "temperature", "start": 179, "end": 190, "annotation": null}, {"text": "has", "start": 191, "end": 194, "annotation": null}, {"text": "large", "start": 195, "end": 200, "annotation": null}, {"text": "impact", "start": 201, "end": 207, "annotation": null}, {"text": "on", "start": 208, "end": 210, "annotation": null}, {"text": "the", "start": 211, "end": 214, "annotation": null}, {"text": "preferred", "start": 215, "end": 224, "annotation": null}, {"text": "orientation", "start": 225, "end": 236, "annotation": null}, {"text": "of", "start": 237, "end": 239, "annotation": null}, {"text": "the", "start": 240, "end": 243, "annotation": null}, {"text": "films", "start": 244, "end": 249, "annotation": null}, {"text": ".", "start": 249, "end": 250, "annotation": null}], [{"text": "The", "start": 251, "end": 254, "annotation": null}, {"text": "films", "start": 255, "end": 260, "annotation": null}, {"text": "grown", "start": 261, "end": 266, "annotation": null}, {"text": "at", "start": 267, "end": 269, "annotation": null}, {"text": "low", "start": 270, "end": 273, "annotation": null}, {"text": "temperature", "start": 274, "end": 285, "annotation": null}, {"text": "show", "start": 286, "end": 290, "annotation": null}, {"text": "(", "start": 291, "end": 292, "annotation": null}, {"text": "111", "start": 292, "end": 295, "annotation": null}, {"text": ")", "start": 295, "end": 296, "annotation": null}, {"text": "preferred", "start": 297, "end": 306, "annotation": null}, {"text": "orientation", "start": 307, "end": 318, "annotation": null}, {"text": ",", "start": 318, "end": 319, "annotation": null}, {"text": "while", "start": 320, "end": 325, "annotation": null}, {"text": "films", "start": 326, "end": 331, "annotation": null}, {"text": "grown", "start": 332, "end": 337, "annotation": null}, {"text": "at", "start": 338, "end": 340, "annotation": null}, {"text": "high", "start": 341, "end": 345, "annotation": null}, {"text": "temperature", "start": 346, "end": 357, "annotation": null}, {"text": "have", "start": 358, "end": 362, "annotation": null}, {"text": "(", "start": 363, "end": 364, "annotation": null}, {"text": "200", "start": 364, "end": 367, "annotation": null}, {"text": ")", "start": 367, "end": 368, "annotation": null}, {"text": "orientation", "start": 369, "end": 380, "annotation": null}, {"text": ".", "start": 380, "end": 381, "annotation": null}], [{"text": "The", "start": 382, "end": 385, "annotation": null}, {"text": "effect", "start": 386, "end": 392, "annotation": null}, {"text": "of", "start": 393, "end": 395, "annotation": null}, {"text": "substrate", "start": 396, "end": 405, "annotation": null}, {"text": "temperature", "start": 406, "end": 417, "annotation": null}, {"text": "on", "start": 418, "end": 420, "annotation": null}, {"text": "optical", "start": 421, "end": 428, "annotation": null}, {"text": "and", "start": 429, "end": 432, "annotation": null}, {"text": "electrical", "start": 433, "end": 443, "annotation": null}, {"text": "properties", "start": 444, "end": 454, "annotation": null}, {"text": "shows", "start": 455, "end": 460, "annotation": null}, {"text": "widening", "start": 461, "end": 469, "annotation": null}, {"text": "in", "start": 470, "end": 472, "annotation": null}, {"text": "optical", "start": 473, "end": 480, "annotation": null}, {"text": "bandgap", "start": 481, "end": 488, "annotation": null}, {"text": "and", "start": 489, "end": 492, "annotation": null}, {"text": "improvement", "start": 493, "end": 504, "annotation": null}, {"text": "in", "start": 505, "end": 507, "annotation": null}, {"text": "electron", "start": 508, "end": 516, "annotation": null}, {"text": "mobility", "start": 517, "end": 525, "annotation": null}, {"text": "with", "start": 526, "end": 530, "annotation": null}, {"text": "increase", "start": 531, "end": 539, "annotation": null}, {"text": "in", "start": 540, "end": 542, "annotation": null}, {"text": "growth", "start": 543, "end": 549, "annotation": null}, {"text": "temperature", "start": 550, "end": 561, "annotation": null}, {"text": ".", "start": 561, "end": 562, "annotation": null}], [{"text": "These", "start": 563, "end": 568, "annotation": null}, {"text": "wide", "start": 569, "end": 573, "annotation": null}, {"text": "bandgap", "start": 574, "end": 581, "annotation": null}, {"text": "transparent", "start": 582, "end": 593, "annotation": null}, {"text": "conducting", "start": 594, "end": 604, "annotation": null}, {"text": "films", "start": 605, "end": 610, "annotation": null}, {"text": "could", "start": 611, "end": 616, "annotation": null}, {"text": "be", "start": 617, "end": 619, "annotation": null}, {"text": "used", "start": 620, "end": 624, "annotation": null}, {"text": "in", "start": 625, "end": 627, "annotation": null}, {"text": "optoelectronic", "start": 628, "end": 642, "annotation": null}, {"text": "applications", "start": 643, "end": 655, "annotation": null}, {"text": ".", "start": 655, "end": 656, "annotation": null}]]} -{"remark": "doping_annt2", "text": "Formation of protective oxide scales is the main reason for the high oxidation resistance of TiAlN based coatings. Here the authors report on further improvement in the oxidation resistance of TiAlN by Ta alloying. An industrial-scale cathodic arc evaporation facility was used to deposit Ti-Al-Ta-N coatings from powder metallurgically produced Ti38 Al57 Ta5 targets. After oxidation in ambient air, a significantly reduced oxide layer thickness in comparison to unalloyed TiAlN reference material was observed. Energy-dispersive x-ray spectroscopy line scans and secondary ion mass spectroscopy depth profiling showed that the oxide scale consists of an Al-rich top layer without detectable amount of Ta and a Ti-Ta-rich sublayer. Transmission electron microscopy investigations revealed \u03b1- Al2 O3, rutile-type Ti O2, and anatase-type Ti O2 as the scale forming oxides. Furthermore, the Ti-Ta-rich sublayer consists of a porous layer at the oxide-nitride interface but appears dense toward the Al-rich top layer. The improved oxidation resistance is explained by doping the Ti O2 lattice by replacing Ti4+ with Ta5+ in the rutile lattice, which decreases the oxygen mass transport. This leads to reduced oxidation of Ti under formation of Ti O2 at the oxide-nitride interface and is the reason for the excellent oxidation behavior of Ti-Al-Ta-N coatings. \u00a9 2009 American Vacuum Society.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Formation", "start": 0, "end": 9, "annotation": null}, {"text": "of", "start": 10, "end": 12, "annotation": null}, {"text": "protective", "start": 13, "end": 23, "annotation": null}, {"text": "oxide", "start": 24, "end": 29, "annotation": null}, {"text": "scales", "start": 30, "end": 36, "annotation": null}, {"text": "is", "start": 37, "end": 39, "annotation": null}, {"text": "the", "start": 40, "end": 43, "annotation": null}, {"text": "main", "start": 44, "end": 48, "annotation": null}, {"text": "reason", "start": 49, "end": 55, "annotation": null}, {"text": "for", "start": 56, "end": 59, "annotation": null}, {"text": "the", "start": 60, "end": 63, "annotation": null}, {"text": "high", "start": 64, "end": 68, "annotation": null}, {"text": "oxidation", "start": 69, "end": 78, "annotation": null}, {"text": "resistance", "start": 79, "end": 89, "annotation": null}, {"text": "of", "start": 90, "end": 92, "annotation": null}, {"text": "TiAlN", "start": 93, "end": 98, "annotation": null}, {"text": "based", "start": 99, "end": 104, "annotation": null}, {"text": "coatings", "start": 105, "end": 113, "annotation": null}, {"text": ".", "start": 113, "end": 114, "annotation": null}], [{"text": "Here", "start": 115, "end": 119, "annotation": null}, {"text": "the", "start": 120, "end": 123, "annotation": null}, {"text": "authors", "start": 124, "end": 131, "annotation": null}, {"text": "report", "start": 132, "end": 138, "annotation": null}, {"text": "on", "start": 139, "end": 141, "annotation": null}, {"text": "further", "start": 142, "end": 149, "annotation": null}, {"text": "improvement", "start": 150, "end": 161, "annotation": null}, {"text": "in", "start": 162, "end": 164, "annotation": null}, {"text": "the", "start": 165, "end": 168, "annotation": null}, {"text": "oxidation", "start": 169, "end": 178, "annotation": null}, {"text": "resistance", "start": 179, "end": 189, "annotation": null}, {"text": "of", "start": 190, "end": 192, "annotation": null}, {"text": "TiAlN", "start": 193, "end": 198, "annotation": null}, {"text": "by", "start": 199, "end": 201, "annotation": null}, {"text": "Ta", "start": 202, "end": 204, "annotation": null}, {"text": "alloying", "start": 205, "end": 213, "annotation": null}, {"text": ".", "start": 213, "end": 214, "annotation": null}], [{"text": "An", "start": 215, "end": 217, "annotation": null}, {"text": "industrial", "start": 218, "end": 228, "annotation": null}, {"text": "-", "start": 228, "end": 229, "annotation": null}, {"text": "scale", "start": 229, "end": 234, "annotation": null}, {"text": "cathodic", "start": 235, "end": 243, "annotation": null}, {"text": "arc", "start": 244, "end": 247, "annotation": null}, {"text": "evaporation", "start": 248, "end": 259, "annotation": null}, {"text": "facility", "start": 260, "end": 268, "annotation": null}, {"text": "was", "start": 269, "end": 272, "annotation": null}, {"text": "used", "start": 273, "end": 277, "annotation": null}, {"text": "to", "start": 278, "end": 280, "annotation": null}, {"text": "deposit", "start": 281, "end": 288, "annotation": null}, {"text": "Ti-Al-Ta-N", "start": 289, "end": 299, "annotation": null}, {"text": "coatings", "start": 300, "end": 308, "annotation": null}, {"text": "from", "start": 309, "end": 313, "annotation": null}, {"text": "powder", "start": 314, "end": 320, "annotation": null}, {"text": "metallurgically", "start": 321, "end": 336, "annotation": null}, {"text": "produced", "start": 337, "end": 345, "annotation": null}, {"text": "Ti38", "start": 346, "end": 350, "annotation": null}, {"text": "Al57", "start": 351, "end": 355, "annotation": null}, {"text": "Ta5", "start": 356, "end": 359, "annotation": null}, {"text": "targets", "start": 360, "end": 367, "annotation": null}, {"text": ".", "start": 367, "end": 368, "annotation": null}], [{"text": "After", "start": 369, "end": 374, "annotation": null}, {"text": "oxidation", "start": 375, "end": 384, "annotation": null}, {"text": "in", "start": 385, "end": 387, "annotation": null}, {"text": "ambient", "start": 388, "end": 395, "annotation": null}, {"text": "air", "start": 396, "end": 399, "annotation": null}, {"text": ",", "start": 399, "end": 400, "annotation": null}, {"text": "a", "start": 401, "end": 402, "annotation": null}, {"text": "significantly", "start": 403, "end": 416, "annotation": null}, {"text": "reduced", "start": 417, "end": 424, "annotation": null}, {"text": "oxide", "start": 425, "end": 430, "annotation": null}, {"text": "layer", "start": 431, "end": 436, "annotation": null}, {"text": "thickness", "start": 437, "end": 446, "annotation": null}, {"text": "in", "start": 447, "end": 449, "annotation": null}, {"text": "comparison", "start": 450, "end": 460, "annotation": null}, {"text": "to", "start": 461, "end": 463, "annotation": null}, {"text": "unalloyed", "start": 464, "end": 473, "annotation": null}, {"text": "TiAlN", "start": 474, "end": 479, "annotation": null}, {"text": "reference", "start": 480, "end": 489, "annotation": null}, {"text": "material", "start": 490, "end": 498, "annotation": null}, {"text": "was", "start": 499, "end": 502, "annotation": null}, {"text": "observed", "start": 503, "end": 511, "annotation": null}, {"text": ".", "start": 511, "end": 512, "annotation": null}], [{"text": "Energy", "start": 513, "end": 519, "annotation": null}, {"text": "-", "start": 519, "end": 520, "annotation": null}, {"text": "dispersive", "start": 520, "end": 530, "annotation": null}, {"text": "x-ray", "start": 531, "end": 536, "annotation": null}, {"text": "spectroscopy", "start": 537, "end": 549, "annotation": null}, {"text": "line", "start": 550, "end": 554, "annotation": null}, {"text": "scans", "start": 555, "end": 560, "annotation": null}, {"text": "and", "start": 561, "end": 564, "annotation": null}, {"text": "secondary", "start": 565, "end": 574, "annotation": null}, {"text": "ion", "start": 575, "end": 578, "annotation": null}, {"text": "mass", "start": 579, "end": 583, "annotation": null}, {"text": "spectroscopy", "start": 584, "end": 596, "annotation": null}, {"text": "depth", "start": 597, "end": 602, "annotation": null}, {"text": "profiling", "start": 603, "end": 612, "annotation": null}, {"text": "showed", "start": 613, "end": 619, "annotation": null}, {"text": "that", "start": 620, "end": 624, "annotation": null}, {"text": "the", "start": 625, "end": 628, "annotation": null}, {"text": "oxide", "start": 629, "end": 634, "annotation": null}, {"text": "scale", "start": 635, "end": 640, "annotation": null}, {"text": "consists", "start": 641, "end": 649, "annotation": null}, {"text": "of", "start": 650, "end": 652, "annotation": null}, {"text": "an", "start": 653, "end": 655, "annotation": null}, {"text": "Al", "start": 656, "end": 658, "annotation": null}, {"text": "-", "start": 658, "end": 659, "annotation": null}, {"text": "rich", "start": 659, "end": 663, "annotation": null}, {"text": "top", "start": 664, "end": 667, "annotation": null}, {"text": "layer", "start": 668, "end": 673, "annotation": null}, {"text": "without", "start": 674, "end": 681, "annotation": null}, {"text": "detectable", "start": 682, "end": 692, "annotation": null}, {"text": "amount", "start": 693, "end": 699, "annotation": null}, {"text": "of", "start": 700, "end": 702, "annotation": null}, {"text": "Ta", "start": 703, "end": 705, "annotation": null}, {"text": "and", "start": 706, "end": 709, "annotation": null}, {"text": "a", "start": 710, "end": 711, "annotation": null}, {"text": "Ti-Ta", "start": 712, "end": 717, "annotation": null}, {"text": "-", "start": 717, "end": 718, "annotation": null}, {"text": "rich", "start": 718, "end": 722, "annotation": null}, {"text": "sublayer", "start": 723, "end": 731, "annotation": null}, {"text": ".", "start": 731, "end": 732, "annotation": null}], [{"text": "Transmission", "start": 733, "end": 745, "annotation": null}, {"text": "electron", "start": 746, "end": 754, "annotation": null}, {"text": "microscopy", "start": 755, "end": 765, "annotation": null}, {"text": "investigations", "start": 766, "end": 780, "annotation": null}, {"text": "revealed", "start": 781, "end": 789, "annotation": null}, {"text": "\u03b1-", "start": 790, "end": 792, "annotation": null}, {"text": "Al2", "start": 793, "end": 796, "annotation": null}, {"text": "O3", "start": 797, "end": 799, "annotation": null}, {"text": ",", "start": 799, "end": 800, "annotation": null}, {"text": "rutile", "start": 801, "end": 807, "annotation": null}, {"text": "-", "start": 807, "end": 808, "annotation": null}, {"text": "type", "start": 808, "end": 812, "annotation": null}, {"text": "Ti", "start": 813, "end": 815, "annotation": null}, {"text": "O2", "start": 816, "end": 818, "annotation": null}, {"text": ",", "start": 818, "end": 819, "annotation": null}, {"text": "and", "start": 820, "end": 823, "annotation": null}, {"text": "anatase", "start": 824, "end": 831, "annotation": null}, {"text": "-", "start": 831, "end": 832, "annotation": null}, {"text": "type", "start": 832, "end": 836, "annotation": null}, {"text": "Ti", "start": 837, "end": 839, "annotation": null}, {"text": "O2", "start": 840, "end": 842, "annotation": null}, {"text": "as", "start": 843, "end": 845, "annotation": null}, {"text": "the", "start": 846, "end": 849, "annotation": null}, {"text": "scale", "start": 850, "end": 855, "annotation": null}, {"text": "forming", "start": 856, "end": 863, "annotation": null}, {"text": "oxides", "start": 864, "end": 870, "annotation": null}, {"text": ".", "start": 870, "end": 871, "annotation": null}], [{"text": "Furthermore", "start": 872, "end": 883, "annotation": null}, {"text": ",", "start": 883, "end": 884, "annotation": null}, {"text": "the", "start": 885, "end": 888, "annotation": null}, {"text": "Ti-Ta", "start": 889, "end": 894, "annotation": null}, {"text": "-", "start": 894, "end": 895, "annotation": null}, {"text": "rich", "start": 895, "end": 899, "annotation": null}, {"text": "sublayer", "start": 900, "end": 908, "annotation": null}, {"text": "consists", "start": 909, "end": 917, "annotation": null}, {"text": "of", "start": 918, "end": 920, "annotation": null}, {"text": "a", "start": 921, "end": 922, "annotation": null}, {"text": "porous", "start": 923, "end": 929, "annotation": null}, {"text": "layer", "start": 930, "end": 935, "annotation": null}, {"text": "at", "start": 936, "end": 938, "annotation": null}, {"text": "the", "start": 939, "end": 942, "annotation": null}, {"text": "oxide", "start": 943, "end": 948, "annotation": null}, {"text": "-", "start": 948, "end": 949, "annotation": null}, {"text": "nitride", "start": 949, "end": 956, "annotation": null}, {"text": "interface", "start": 957, "end": 966, "annotation": null}, {"text": "but", "start": 967, "end": 970, "annotation": null}, {"text": "appears", "start": 971, "end": 978, "annotation": null}, {"text": "dense", "start": 979, "end": 984, "annotation": null}, {"text": "toward", "start": 985, "end": 991, "annotation": null}, {"text": "the", "start": 992, "end": 995, "annotation": null}, {"text": "Al", "start": 996, "end": 998, "annotation": null}, {"text": "-", "start": 998, "end": 999, "annotation": null}, {"text": "rich", "start": 999, "end": 1003, "annotation": null}, {"text": "top", "start": 1004, "end": 1007, "annotation": null}, {"text": "layer", "start": 1008, "end": 1013, "annotation": null}, {"text": ".", "start": 1013, "end": 1014, "annotation": null}], [{"text": "The", "start": 1015, "end": 1018, "annotation": null}, {"text": "improved", "start": 1019, "end": 1027, "annotation": null}, {"text": "oxidation", "start": 1028, "end": 1037, "annotation": null}, {"text": "resistance", "start": 1038, "end": 1048, "annotation": null}, {"text": "is", "start": 1049, "end": 1051, "annotation": null}, {"text": "explained", "start": 1052, "end": 1061, "annotation": null}, {"text": "by", "start": 1062, "end": 1064, "annotation": null}, {"text": "doping", "start": 1065, "end": 1071, "annotation": null}, {"text": "the", "start": 1072, "end": 1075, "annotation": null}, {"text": "Ti", "start": 1076, "end": 1078, "annotation": "BASEMAT"}, {"text": "O2", "start": 1079, "end": 1081, "annotation": "BASEMAT"}, {"text": "lattice", "start": 1082, "end": 1089, "annotation": null}, {"text": "by", "start": 1090, "end": 1092, "annotation": null}, {"text": "replacing", "start": 1093, "end": 1102, "annotation": null}, {"text": "Ti4+", "start": 1103, "end": 1107, "annotation": "DOPANT"}, {"text": "with", "start": 1108, "end": 1112, "annotation": null}, {"text": "Ta5+", "start": 1113, "end": 1117, "annotation": "DOPANT"}, {"text": "in", "start": 1118, "end": 1120, "annotation": null}, {"text": "the", "start": 1121, "end": 1124, "annotation": null}, {"text": "rutile", "start": 1125, "end": 1131, "annotation": null}, {"text": "lattice", "start": 1132, "end": 1139, "annotation": null}, {"text": ",", "start": 1139, "end": 1140, "annotation": null}, {"text": "which", "start": 1141, "end": 1146, "annotation": null}, {"text": "decreases", "start": 1147, "end": 1156, "annotation": null}, {"text": "the", "start": 1157, "end": 1160, "annotation": null}, {"text": "oxygen", "start": 1161, "end": 1167, "annotation": null}, {"text": "mass", "start": 1168, "end": 1172, "annotation": null}, {"text": "transport", "start": 1173, "end": 1182, "annotation": null}, {"text": ".", "start": 1182, "end": 1183, "annotation": null}], [{"text": "This", "start": 1184, "end": 1188, "annotation": null}, {"text": "leads", "start": 1189, "end": 1194, "annotation": null}, {"text": "to", "start": 1195, "end": 1197, "annotation": null}, {"text": "reduced", "start": 1198, "end": 1205, "annotation": null}, {"text": "oxidation", "start": 1206, "end": 1215, "annotation": null}, {"text": "of", "start": 1216, "end": 1218, "annotation": null}, {"text": "Ti", "start": 1219, "end": 1221, "annotation": null}, {"text": "under", "start": 1222, "end": 1227, "annotation": null}, {"text": "formation", "start": 1228, "end": 1237, "annotation": null}, {"text": "of", "start": 1238, "end": 1240, "annotation": null}, {"text": "Ti", "start": 1241, "end": 1243, "annotation": null}, {"text": "O2", "start": 1244, "end": 1246, "annotation": null}, {"text": "at", "start": 1247, "end": 1249, "annotation": null}, {"text": "the", "start": 1250, "end": 1253, "annotation": null}, {"text": "oxide", "start": 1254, "end": 1259, "annotation": null}, {"text": "-", "start": 1259, "end": 1260, "annotation": null}, {"text": "nitride", "start": 1260, "end": 1267, "annotation": null}, {"text": "interface", "start": 1268, "end": 1277, "annotation": null}, {"text": "and", "start": 1278, "end": 1281, "annotation": null}, {"text": "is", "start": 1282, "end": 1284, "annotation": null}, {"text": "the", "start": 1285, "end": 1288, "annotation": null}, {"text": "reason", "start": 1289, "end": 1295, "annotation": null}, {"text": "for", "start": 1296, "end": 1299, "annotation": null}, {"text": "the", "start": 1300, "end": 1303, "annotation": null}, {"text": "excellent", "start": 1304, "end": 1313, "annotation": null}, {"text": "oxidation", "start": 1314, "end": 1323, "annotation": null}, {"text": "behavior", "start": 1324, "end": 1332, "annotation": null}, {"text": "of", "start": 1333, "end": 1335, "annotation": null}, {"text": "Ti-Al-Ta-N", "start": 1336, "end": 1346, "annotation": null}, {"text": "coatings", "start": 1347, "end": 1355, "annotation": null}, {"text": ".", "start": 1355, "end": 1356, "annotation": null}]]} -{"remark": "doping_annt1", "text": "n-type 0.1 wt% SbI3-doped Bi2Te2.85Se0.15 compounds were fabricated by hot pressing and hot extrusion. The hot pressed compounds were densified up to 99.2% of theoretical density. The grains were preferentially oriented and contained many dislocations due to the hot pressing. The figure of merit of the compounds hot pressed at 420\u00b0C was 2.35 \u00d7 10-3/K. On the other hand, the grains of the extruded compounds were small, equiaxed, (\u223c1.0 \u03bcm) and contained many dislocations due to the dynamic recrystallization during the extrusion. The fine grains significantly improved the bending strength and figure of merit. The grains were also preferentially oriented through the extrusion. The bending strength and figure of merit were increased with increasing extrusion temperature. The figure of merit of the compounds hot extruded at 440\u00b0C was 2.62 \u00d7 10-3/K.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "n", "start": 0, "end": 1, "annotation": null}, {"text": "-", "start": 1, "end": 2, "annotation": null}, {"text": "type", "start": 2, "end": 6, "annotation": null}, {"text": "0.1", "start": 7, "end": 10, "annotation": "DOPMODQ"}, {"text": "wt", "start": 11, "end": 13, "annotation": "DOPMODQ"}, {"text": "%", "start": 13, "end": 14, "annotation": "DOPMODQ"}, {"text": "SbI3", "start": 15, "end": 19, "annotation": "DOPANT"}, {"text": "-", "start": 19, "end": 20, "annotation": null}, {"text": "doped", "start": 20, "end": 25, "annotation": null}, {"text": "Bi2Te2.85Se0.15", "start": 26, "end": 41, "annotation": "BASEMAT"}, {"text": "compounds", "start": 42, "end": 51, "annotation": null}, {"text": "were", "start": 52, "end": 56, "annotation": null}, {"text": "fabricated", "start": 57, "end": 67, "annotation": null}, {"text": "by", "start": 68, "end": 70, "annotation": null}, {"text": "hot", "start": 71, "end": 74, "annotation": null}, {"text": "pressing", "start": 75, "end": 83, "annotation": null}, {"text": "and", "start": 84, "end": 87, "annotation": null}, {"text": "hot", "start": 88, "end": 91, "annotation": null}, {"text": "extrusion", "start": 92, "end": 101, "annotation": null}, {"text": ".", "start": 101, "end": 102, "annotation": null}], [{"text": "The", "start": 103, "end": 106, "annotation": null}, {"text": "hot", "start": 107, "end": 110, "annotation": null}, {"text": "pressed", "start": 111, "end": 118, "annotation": null}, {"text": "compounds", "start": 119, "end": 128, "annotation": null}, {"text": "were", "start": 129, "end": 133, "annotation": null}, {"text": "densified", "start": 134, "end": 143, "annotation": null}, {"text": "up", "start": 144, "end": 146, "annotation": null}, {"text": "to", "start": 147, "end": 149, "annotation": null}, {"text": "99.2", "start": 150, "end": 154, "annotation": null}, {"text": "%", "start": 154, "end": 155, "annotation": null}, {"text": "of", "start": 156, "end": 158, "annotation": null}, {"text": "theoretical", "start": 159, "end": 170, "annotation": null}, {"text": "density", "start": 171, "end": 178, "annotation": null}, {"text": ".", "start": 178, "end": 179, "annotation": null}], [{"text": "The", "start": 180, "end": 183, "annotation": null}, {"text": "grains", "start": 184, "end": 190, "annotation": null}, {"text": "were", "start": 191, "end": 195, "annotation": null}, {"text": "preferentially", "start": 196, "end": 210, "annotation": null}, {"text": "oriented", "start": 211, "end": 219, "annotation": null}, {"text": "and", "start": 220, "end": 223, "annotation": null}, {"text": "contained", "start": 224, "end": 233, "annotation": null}, {"text": "many", "start": 234, "end": 238, "annotation": null}, {"text": "dislocations", "start": 239, "end": 251, "annotation": null}, {"text": "due", "start": 252, "end": 255, "annotation": null}, {"text": "to", "start": 256, "end": 258, "annotation": null}, {"text": "the", "start": 259, "end": 262, "annotation": null}, {"text": "hot", "start": 263, "end": 266, "annotation": null}, {"text": "pressing", "start": 267, "end": 275, "annotation": null}, {"text": ".", "start": 275, "end": 276, "annotation": null}], [{"text": "The", "start": 277, "end": 280, "annotation": null}, {"text": "figure", "start": 281, "end": 287, "annotation": null}, {"text": "of", "start": 288, "end": 290, "annotation": null}, {"text": "merit", "start": 291, "end": 296, "annotation": null}, {"text": "of", "start": 297, "end": 299, "annotation": null}, {"text": "the", "start": 300, "end": 303, "annotation": null}, {"text": "compounds", "start": 304, "end": 313, "annotation": null}, {"text": "hot", "start": 314, "end": 317, "annotation": null}, {"text": "pressed", "start": 318, "end": 325, "annotation": null}, {"text": "at", "start": 326, "end": 328, "annotation": null}, {"text": "420", "start": 329, "end": 332, "annotation": null}, {"text": "\u00b0", "start": 332, "end": 333, "annotation": null}, {"text": "C", "start": 333, "end": 334, "annotation": null}, {"text": "was", "start": 335, "end": 338, "annotation": null}, {"text": "2.35", "start": 339, "end": 343, "annotation": null}, {"text": "\u00d7", "start": 344, "end": 345, "annotation": null}, {"text": "10-3", "start": 346, "end": 350, "annotation": null}, {"text": "/", "start": 350, "end": 351, "annotation": null}, {"text": "K", "start": 351, "end": 352, "annotation": null}, {"text": ".", "start": 352, "end": 353, "annotation": null}], [{"text": "On", "start": 354, "end": 356, "annotation": null}, {"text": "the", "start": 357, "end": 360, "annotation": null}, {"text": "other", "start": 361, "end": 366, "annotation": null}, {"text": "hand", "start": 367, "end": 371, "annotation": null}, {"text": ",", "start": 371, "end": 372, "annotation": null}, {"text": "the", "start": 373, "end": 376, "annotation": null}, {"text": "grains", "start": 377, "end": 383, "annotation": null}, {"text": "of", "start": 384, "end": 386, "annotation": null}, {"text": "the", "start": 387, "end": 390, "annotation": null}, {"text": "extruded", "start": 391, "end": 399, "annotation": null}, {"text": "compounds", "start": 400, "end": 409, "annotation": null}, {"text": "were", "start": 410, "end": 414, "annotation": null}, {"text": "small", "start": 415, "end": 420, "annotation": null}, {"text": ",", "start": 420, "end": 421, "annotation": null}, {"text": "equiaxed", "start": 422, "end": 430, "annotation": null}, {"text": ",", "start": 430, "end": 431, "annotation": null}, {"text": "(", "start": 432, "end": 433, "annotation": null}, {"text": "\u223c", "start": 433, "end": 434, "annotation": null}, {"text": "1.0", "start": 434, "end": 437, "annotation": null}, {"text": "\u03bcm", "start": 438, "end": 440, "annotation": null}, {"text": ")", "start": 440, "end": 441, "annotation": null}, {"text": "and", "start": 442, "end": 445, "annotation": null}, {"text": "contained", "start": 446, "end": 455, "annotation": null}, {"text": "many", "start": 456, "end": 460, "annotation": null}, {"text": "dislocations", "start": 461, "end": 473, "annotation": null}, {"text": "due", "start": 474, "end": 477, "annotation": null}, {"text": "to", "start": 478, "end": 480, "annotation": null}, {"text": "the", "start": 481, "end": 484, "annotation": null}, {"text": "dynamic", "start": 485, "end": 492, "annotation": null}, {"text": "recrystallization", "start": 493, "end": 510, "annotation": null}, {"text": "during", "start": 511, "end": 517, "annotation": null}, {"text": "the", "start": 518, "end": 521, "annotation": null}, {"text": "extrusion", "start": 522, "end": 531, "annotation": null}, {"text": ".", "start": 531, "end": 532, "annotation": null}], [{"text": "The", "start": 533, "end": 536, "annotation": null}, {"text": "fine", "start": 537, "end": 541, "annotation": null}, {"text": "grains", "start": 542, "end": 548, "annotation": null}, {"text": "significantly", "start": 549, "end": 562, "annotation": null}, {"text": "improved", "start": 563, "end": 571, "annotation": null}, {"text": "the", "start": 572, "end": 575, "annotation": null}, {"text": "bending", "start": 576, "end": 583, "annotation": null}, {"text": "strength", "start": 584, "end": 592, "annotation": null}, {"text": "and", "start": 593, "end": 596, "annotation": null}, {"text": "figure", "start": 597, "end": 603, "annotation": null}, {"text": "of", "start": 604, "end": 606, "annotation": null}, {"text": "merit", "start": 607, "end": 612, "annotation": null}, {"text": ".", "start": 612, "end": 613, "annotation": null}], [{"text": "The", "start": 614, "end": 617, "annotation": null}, {"text": "grains", "start": 618, "end": 624, "annotation": null}, {"text": "were", "start": 625, "end": 629, "annotation": null}, {"text": "also", "start": 630, "end": 634, "annotation": null}, {"text": "preferentially", "start": 635, "end": 649, "annotation": null}, {"text": "oriented", "start": 650, "end": 658, "annotation": null}, {"text": "through", "start": 659, "end": 666, "annotation": null}, {"text": "the", "start": 667, "end": 670, "annotation": null}, {"text": "extrusion", "start": 671, "end": 680, "annotation": null}, {"text": ".", "start": 680, "end": 681, "annotation": null}], [{"text": "The", "start": 682, "end": 685, "annotation": null}, {"text": "bending", "start": 686, "end": 693, "annotation": null}, {"text": "strength", "start": 694, "end": 702, "annotation": null}, {"text": "and", "start": 703, "end": 706, "annotation": null}, {"text": "figure", "start": 707, "end": 713, "annotation": null}, {"text": "of", "start": 714, "end": 716, "annotation": null}, {"text": "merit", "start": 717, "end": 722, "annotation": null}, {"text": "were", "start": 723, "end": 727, "annotation": null}, {"text": "increased", "start": 728, "end": 737, "annotation": null}, {"text": "with", "start": 738, "end": 742, "annotation": null}, {"text": "increasing", "start": 743, "end": 753, "annotation": null}, {"text": "extrusion", "start": 754, "end": 763, "annotation": null}, {"text": "temperature", "start": 764, "end": 775, "annotation": null}, {"text": ".", "start": 775, "end": 776, "annotation": null}], [{"text": "The", "start": 777, "end": 780, "annotation": null}, {"text": "figure", "start": 781, "end": 787, "annotation": null}, {"text": "of", "start": 788, "end": 790, "annotation": null}, {"text": "merit", "start": 791, "end": 796, "annotation": null}, {"text": "of", "start": 797, "end": 799, "annotation": null}, {"text": "the", "start": 800, "end": 803, "annotation": null}, {"text": "compounds", "start": 804, "end": 813, "annotation": null}, {"text": "hot", "start": 814, "end": 817, "annotation": null}, {"text": "extruded", "start": 818, "end": 826, "annotation": null}, {"text": "at", "start": 827, "end": 829, "annotation": null}, {"text": "440", "start": 830, "end": 833, "annotation": null}, {"text": "\u00b0", "start": 833, "end": 834, "annotation": null}, {"text": "C", "start": 834, "end": 835, "annotation": null}, {"text": "was", "start": 836, "end": 839, "annotation": null}, {"text": "2.62", "start": 840, "end": 844, "annotation": null}, {"text": "\u00d7", "start": 845, "end": 846, "annotation": null}, {"text": "10-3", "start": 847, "end": 851, "annotation": null}, {"text": "/", "start": 851, "end": 852, "annotation": null}, {"text": "K", "start": 852, "end": 853, "annotation": null}, {"text": ".", "start": 853, "end": 854, "annotation": null}]]} -{"remark": "doping_annt3", "text": "We report on what is, to the best of our knowledge, the highest power reached with an Yb:Lu 2O 3 thin-disk laser in the continuous wave (CW) regime reported to date. A maximum output power of 670 W was demonstrated with a Vshaped resonator design. This result was achieved by pumping this laser active material at its zero-phonon absorption line at 976 nm. The potential of Yb:Lu 2O 3 as well as its limitations are discussed on the basis of several experimental investigations including thermal analysis and laser performance characterization for different doping concentrations. \u00a9 2012 by Astro Ltd.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "report", "start": 3, "end": 9, "annotation": null}, {"text": "on", "start": 10, "end": 12, "annotation": null}, {"text": "what", "start": 13, "end": 17, "annotation": null}, {"text": "is", "start": 18, "end": 20, "annotation": null}, {"text": ",", "start": 20, "end": 21, "annotation": null}, {"text": "to", "start": 22, "end": 24, "annotation": null}, {"text": "the", "start": 25, "end": 28, "annotation": null}, {"text": "best", "start": 29, "end": 33, "annotation": null}, {"text": "of", "start": 34, "end": 36, "annotation": null}, {"text": "our", "start": 37, "end": 40, "annotation": null}, {"text": "knowledge", "start": 41, "end": 50, "annotation": null}, {"text": ",", "start": 50, "end": 51, "annotation": null}, {"text": "the", "start": 52, "end": 55, "annotation": null}, {"text": "highest", "start": 56, "end": 63, "annotation": null}, {"text": "power", "start": 64, "end": 69, "annotation": null}, {"text": "reached", "start": 70, "end": 77, "annotation": null}, {"text": "with", "start": 78, "end": 82, "annotation": null}, {"text": "an", "start": 83, "end": 85, "annotation": null}, {"text": "Yb", "start": 86, "end": 88, "annotation": "DOPANT"}, {"text": ":", "start": 88, "end": 89, "annotation": null}, {"text": "Lu", "start": 89, "end": 91, "annotation": "BASEMAT"}, {"text": "2O", "start": 92, "end": 94, "annotation": "BASEMAT"}, {"text": "3", "start": 95, "end": 96, "annotation": "BASEMAT"}, {"text": "thin", "start": 97, "end": 101, "annotation": null}, {"text": "-", "start": 101, "end": 102, "annotation": null}, {"text": "disk", "start": 102, "end": 106, "annotation": null}, {"text": "laser", "start": 107, "end": 112, "annotation": null}, {"text": "in", "start": 113, "end": 115, "annotation": null}, {"text": "the", "start": 116, "end": 119, "annotation": null}, {"text": "continuous", "start": 120, "end": 130, "annotation": null}, {"text": "wave", "start": 131, "end": 135, "annotation": null}, {"text": "(", "start": 136, "end": 137, "annotation": null}, {"text": "CW", "start": 137, "end": 139, "annotation": null}, {"text": ")", "start": 139, "end": 140, "annotation": null}, {"text": "regime", "start": 141, "end": 147, "annotation": null}, {"text": "reported", "start": 148, "end": 156, "annotation": null}, {"text": "to", "start": 157, "end": 159, "annotation": null}, {"text": "date", "start": 160, "end": 164, "annotation": null}, {"text": ".", "start": 164, "end": 165, "annotation": null}], [{"text": "A", "start": 166, "end": 167, "annotation": null}, {"text": "maximum", "start": 168, "end": 175, "annotation": null}, {"text": "output", "start": 176, "end": 182, "annotation": null}, {"text": "power", "start": 183, "end": 188, "annotation": null}, {"text": "of", "start": 189, "end": 191, "annotation": null}, {"text": "670", "start": 192, "end": 195, "annotation": null}, {"text": "W", "start": 196, "end": 197, "annotation": null}, {"text": "was", "start": 198, "end": 201, "annotation": null}, {"text": "demonstrated", "start": 202, "end": 214, "annotation": null}, {"text": "with", "start": 215, "end": 219, "annotation": null}, {"text": "a", "start": 220, "end": 221, "annotation": null}, {"text": "Vshaped", "start": 222, "end": 229, "annotation": null}, {"text": "resonator", "start": 230, "end": 239, "annotation": null}, {"text": "design", "start": 240, "end": 246, "annotation": null}, {"text": ".", "start": 246, "end": 247, "annotation": null}], [{"text": "This", "start": 248, "end": 252, "annotation": null}, {"text": "result", "start": 253, "end": 259, "annotation": null}, {"text": "was", "start": 260, "end": 263, "annotation": null}, {"text": "achieved", "start": 264, "end": 272, "annotation": null}, {"text": "by", "start": 273, "end": 275, "annotation": null}, {"text": "pumping", "start": 276, "end": 283, "annotation": null}, {"text": "this", "start": 284, "end": 288, "annotation": null}, {"text": "laser", "start": 289, "end": 294, "annotation": null}, {"text": "active", "start": 295, "end": 301, "annotation": null}, {"text": "material", "start": 302, "end": 310, "annotation": null}, {"text": "at", "start": 311, "end": 313, "annotation": null}, {"text": "its", "start": 314, "end": 317, "annotation": null}, {"text": "zero", "start": 318, "end": 322, "annotation": null}, {"text": "-", "start": 322, "end": 323, "annotation": null}, {"text": "phonon", "start": 323, "end": 329, "annotation": null}, {"text": "absorption", "start": 330, "end": 340, "annotation": null}, {"text": "line", "start": 341, "end": 345, "annotation": null}, {"text": "at", "start": 346, "end": 348, "annotation": null}, {"text": "976", "start": 349, "end": 352, "annotation": null}, {"text": "nm", "start": 353, "end": 355, "annotation": null}, {"text": ".", "start": 355, "end": 356, "annotation": null}], [{"text": "The", "start": 357, "end": 360, "annotation": null}, {"text": "potential", "start": 361, "end": 370, "annotation": null}, {"text": "of", "start": 371, "end": 373, "annotation": null}, {"text": "Yb", "start": 374, "end": 376, "annotation": "DOPANT"}, {"text": ":", "start": 376, "end": 377, "annotation": null}, {"text": "Lu", "start": 377, "end": 379, "annotation": "BASEMAT"}, {"text": "2O", "start": 380, "end": 382, "annotation": "BASEMAT"}, {"text": "3", "start": 383, "end": 384, "annotation": "BASEMAT"}, {"text": "as", "start": 385, "end": 387, "annotation": null}, {"text": "well", "start": 388, "end": 392, "annotation": null}, {"text": "as", "start": 393, "end": 395, "annotation": null}, {"text": "its", "start": 396, "end": 399, "annotation": null}, {"text": "limitations", "start": 400, "end": 411, "annotation": null}, {"text": "are", "start": 412, "end": 415, "annotation": null}, {"text": "discussed", "start": 416, "end": 425, "annotation": null}, {"text": "on", "start": 426, "end": 428, "annotation": null}, {"text": "the", "start": 429, "end": 432, "annotation": null}, {"text": "basis", "start": 433, "end": 438, "annotation": null}, {"text": "of", "start": 439, "end": 441, "annotation": null}, {"text": "several", "start": 442, "end": 449, "annotation": null}, {"text": "experimental", "start": 450, "end": 462, "annotation": null}, {"text": "investigations", "start": 463, "end": 477, "annotation": null}, {"text": "including", "start": 478, "end": 487, "annotation": null}, {"text": "thermal", "start": 488, "end": 495, "annotation": null}, {"text": "analysis", "start": 496, "end": 504, "annotation": null}, {"text": "and", "start": 505, "end": 508, "annotation": null}, {"text": "laser", "start": 509, "end": 514, "annotation": null}, {"text": "performance", "start": 515, "end": 526, "annotation": null}, {"text": "characterization", "start": 527, "end": 543, "annotation": null}, {"text": "for", "start": 544, "end": 547, "annotation": null}, {"text": "different", "start": 548, "end": 557, "annotation": null}, {"text": "doping", "start": 558, "end": 564, "annotation": null}, {"text": "concentrations", "start": 565, "end": 579, "annotation": null}, {"text": ".", "start": 579, "end": 580, "annotation": null}]]} -{"remark": "doping_annt2", "text": "A new solid niobic acid phase, H2(H2O)Nb2O6, with fluorine (F) doping was crystallized using hydrothermal chemistry. F-doped H2(H2O)Nb2O6 octahedra could function as an efficient heterogeneous catalyst for the photodegradation of organic pollutants in water under UV light irradiation. The high photocatalytic activity of the F-doped H2(H2O)Nb2O6 materials is attributed to a synergistic effect of the specific surface area, the surface characteristics and the crystal structure. Our results suggest novel ways of controlling the crystallization of niobium oxides, further the fundamental understanding of their structure\u2013property relationships, and may lead to their application in fields such as environmental protection and energy production.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "new", "start": 2, "end": 5, "annotation": null}, {"text": "solid", "start": 6, "end": 11, "annotation": null}, {"text": "niobic", "start": 12, "end": 18, "annotation": null}, {"text": "acid", "start": 19, "end": 23, "annotation": null}, {"text": "phase", "start": 24, "end": 29, "annotation": null}, {"text": ",", "start": 29, "end": 30, "annotation": null}, {"text": "H2(H2O)Nb2O6", "start": 31, "end": 43, "annotation": "BASEMAT"}, {"text": ",", "start": 43, "end": 44, "annotation": null}, {"text": "with", "start": 45, "end": 49, "annotation": null}, {"text": "fluorine", "start": 50, "end": 58, "annotation": "DOPANT"}, {"text": "(", "start": 59, "end": 60, "annotation": null}, {"text": "F", "start": 60, "end": 61, "annotation": "DOPANT"}, {"text": ")", "start": 61, "end": 62, "annotation": null}, {"text": "doping", "start": 63, "end": 69, "annotation": null}, {"text": "was", "start": 70, "end": 73, "annotation": null}, {"text": "crystallized", "start": 74, "end": 86, "annotation": null}, {"text": "using", "start": 87, "end": 92, "annotation": null}, {"text": "hydrothermal", "start": 93, "end": 105, "annotation": null}, {"text": "chemistry", "start": 106, "end": 115, "annotation": null}, {"text": ".", "start": 115, "end": 116, "annotation": null}], [{"text": "F", "start": 117, "end": 118, "annotation": "DOPANT"}, {"text": "-", "start": 118, "end": 119, "annotation": null}, {"text": "doped", "start": 119, "end": 124, "annotation": null}, {"text": "H2(H2O)Nb2O6", "start": 125, "end": 137, "annotation": "BASEMAT"}, {"text": "octahedra", "start": 138, "end": 147, "annotation": null}, {"text": "could", "start": 148, "end": 153, "annotation": null}, {"text": "function", "start": 154, "end": 162, "annotation": null}, {"text": "as", "start": 163, "end": 165, "annotation": null}, {"text": "an", "start": 166, "end": 168, "annotation": null}, {"text": "efficient", "start": 169, "end": 178, "annotation": null}, {"text": "heterogeneous", "start": 179, "end": 192, "annotation": null}, {"text": "catalyst", "start": 193, "end": 201, "annotation": null}, {"text": "for", "start": 202, "end": 205, "annotation": null}, {"text": "the", "start": 206, "end": 209, "annotation": null}, {"text": "photodegradation", "start": 210, "end": 226, "annotation": null}, {"text": "of", "start": 227, "end": 229, "annotation": null}, {"text": "organic", "start": 230, "end": 237, "annotation": null}, {"text": "pollutants", "start": 238, "end": 248, "annotation": null}, {"text": "in", "start": 249, "end": 251, "annotation": null}, {"text": "water", "start": 252, "end": 257, "annotation": null}, {"text": "under", "start": 258, "end": 263, "annotation": null}, {"text": "UV", "start": 264, "end": 266, "annotation": null}, {"text": "light", "start": 267, "end": 272, "annotation": null}, {"text": "irradiation", "start": 273, "end": 284, "annotation": null}, {"text": ".", "start": 284, "end": 285, "annotation": null}], [{"text": "The", "start": 286, "end": 289, "annotation": null}, {"text": "high", "start": 290, "end": 294, "annotation": null}, {"text": "photocatalytic", "start": 295, "end": 309, "annotation": null}, {"text": "activity", "start": 310, "end": 318, "annotation": null}, {"text": "of", "start": 319, "end": 321, "annotation": null}, {"text": "the", "start": 322, "end": 325, "annotation": null}, {"text": "F", "start": 326, "end": 327, "annotation": "DOPANT"}, {"text": "-", "start": 327, "end": 328, "annotation": null}, {"text": "doped", "start": 328, "end": 333, "annotation": null}, {"text": "H2(H2O)Nb2O6", "start": 334, "end": 346, "annotation": "BASEMAT"}, {"text": "materials", "start": 347, "end": 356, "annotation": null}, {"text": "is", "start": 357, "end": 359, "annotation": null}, {"text": "attributed", "start": 360, "end": 370, "annotation": null}, {"text": "to", "start": 371, "end": 373, "annotation": null}, {"text": "a", "start": 374, "end": 375, "annotation": null}, {"text": "synergistic", "start": 376, "end": 387, "annotation": null}, {"text": "effect", "start": 388, "end": 394, "annotation": null}, {"text": "of", "start": 395, "end": 397, "annotation": null}, {"text": "the", "start": 398, "end": 401, "annotation": null}, {"text": "specific", "start": 402, "end": 410, "annotation": null}, {"text": "surface", "start": 411, "end": 418, "annotation": null}, {"text": "area", "start": 419, "end": 423, "annotation": null}, {"text": ",", "start": 423, "end": 424, "annotation": null}, {"text": "the", "start": 425, "end": 428, "annotation": null}, {"text": "surface", "start": 429, "end": 436, "annotation": null}, {"text": "characteristics", "start": 437, "end": 452, "annotation": null}, {"text": "and", "start": 453, "end": 456, "annotation": null}, {"text": "the", "start": 457, "end": 460, "annotation": null}, {"text": "crystal", "start": 461, "end": 468, "annotation": null}, {"text": "structure", "start": 469, "end": 478, "annotation": null}, {"text": ".", "start": 478, "end": 479, "annotation": null}], [{"text": "Our", "start": 480, "end": 483, "annotation": null}, {"text": "results", "start": 484, "end": 491, "annotation": null}, {"text": "suggest", "start": 492, "end": 499, "annotation": null}, {"text": "novel", "start": 500, "end": 505, "annotation": null}, {"text": "ways", "start": 506, "end": 510, "annotation": null}, {"text": "of", "start": 511, "end": 513, "annotation": null}, {"text": "controlling", "start": 514, "end": 525, "annotation": null}, {"text": "the", "start": 526, "end": 529, "annotation": null}, {"text": "crystallization", "start": 530, "end": 545, "annotation": null}, {"text": "of", "start": 546, "end": 548, "annotation": null}, {"text": "niobium", "start": 549, "end": 556, "annotation": null}, {"text": "oxides", "start": 557, "end": 563, "annotation": null}, {"text": ",", "start": 563, "end": 564, "annotation": null}, {"text": "further", "start": 565, "end": 572, "annotation": null}, {"text": "the", "start": 573, "end": 576, "annotation": null}, {"text": "fundamental", "start": 577, "end": 588, "annotation": null}, {"text": "understanding", "start": 589, "end": 602, "annotation": null}, {"text": "of", "start": 603, "end": 605, "annotation": null}, {"text": "their", "start": 606, "end": 611, "annotation": null}, {"text": "structure", "start": 612, "end": 621, "annotation": null}, {"text": "\u2013", "start": 621, "end": 622, "annotation": null}, {"text": "property", "start": 622, "end": 630, "annotation": null}, {"text": "relationships", "start": 631, "end": 644, "annotation": null}, {"text": ",", "start": 644, "end": 645, "annotation": null}, {"text": "and", "start": 646, "end": 649, "annotation": null}, {"text": "may", "start": 650, "end": 653, "annotation": null}, {"text": "lead", "start": 654, "end": 658, "annotation": null}, {"text": "to", "start": 659, "end": 661, "annotation": null}, {"text": "their", "start": 662, "end": 667, "annotation": null}, {"text": "application", "start": 668, "end": 679, "annotation": null}, {"text": "in", "start": 680, "end": 682, "annotation": null}, {"text": "fields", "start": 683, "end": 689, "annotation": null}, {"text": "such", "start": 690, "end": 694, "annotation": null}, {"text": "as", "start": 695, "end": 697, "annotation": null}, {"text": "environmental", "start": 698, "end": 711, "annotation": null}, {"text": "protection", "start": 712, "end": 722, "annotation": null}, {"text": "and", "start": 723, "end": 726, "annotation": null}, {"text": "energy", "start": 727, "end": 733, "annotation": null}, {"text": "production", "start": 734, "end": 744, "annotation": null}, {"text": ".", "start": 744, "end": 745, "annotation": null}]]} +{"remark": "doping_annt2", "text": "The effect of compositional segregation on the properties of relaxor ferroelectric single crystal are attracting increasing attention for its serious limitation on the application field. In this paper, the composition, phase structure, optical properties and electric properties of Mn-doped Pb(In1/2Nb1/2)O3-Pb(Mg1/3Nb2/3)O3-PbTiO3 (PIN-PMN-PT) single crystal were investigated. The real composition of the single crystal fluctuated around the original ratio, except for MnO2. The single crystal contained less Mn element after removing inclusions compared with the starting ratio. The single crystal samples exhibited rhombohedral phase (R phase), orthorhombic phase (O phase) and tetragonal phase (T phase) structures with different composition due to the segregation. The rhombohedral to tetragonal phase transition temperature (T R-T ) shifted to a lower value along the growth direction, while the Curie Temperature (T C ) shifted to a higher value instead. The relaxation level of the single crystal went down to a lower level when the crystal structure changed from R phase to T and O phase. The coercive field (E C ) with [001] poling in R phase remained stable before a rise in O phase and T phase. However, the composition segregation didn't obviously affected the internal bias field and kept around 0.2kV/cm. The piezoelectric coefficient d 33and unipolar strain with poling direction along [001] had the same trend along growth direction. The curves of them both took a rapid fall at the top of the single crystal boule, which related to the T phase.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "effect", "start": 4, "end": 10, "annotation": null}, {"text": "of", "start": 11, "end": 13, "annotation": null}, {"text": "compositional", "start": 14, "end": 27, "annotation": null}, {"text": "segregation", "start": 28, "end": 39, "annotation": null}, {"text": "on", "start": 40, "end": 42, "annotation": null}, {"text": "the", "start": 43, "end": 46, "annotation": null}, {"text": "properties", "start": 47, "end": 57, "annotation": null}, {"text": "of", "start": 58, "end": 60, "annotation": null}, {"text": "relaxor", "start": 61, "end": 68, "annotation": null}, {"text": "ferroelectric", "start": 69, "end": 82, "annotation": null}, {"text": "single", "start": 83, "end": 89, "annotation": null}, {"text": "crystal", "start": 90, "end": 97, "annotation": null}, {"text": "are", "start": 98, "end": 101, "annotation": null}, {"text": "attracting", "start": 102, "end": 112, "annotation": null}, {"text": "increasing", "start": 113, "end": 123, "annotation": null}, {"text": "attention", "start": 124, "end": 133, "annotation": null}, {"text": "for", "start": 134, "end": 137, "annotation": null}, {"text": "its", "start": 138, "end": 141, "annotation": null}, {"text": "serious", "start": 142, "end": 149, "annotation": null}, {"text": "limitation", "start": 150, "end": 160, "annotation": null}, {"text": "on", "start": 161, "end": 163, "annotation": null}, {"text": "the", "start": 164, "end": 167, "annotation": null}, {"text": "application", "start": 168, "end": 179, "annotation": null}, {"text": "field", "start": 180, "end": 185, "annotation": null}, {"text": ".", "start": 185, "end": 186, "annotation": null}], [{"text": "In", "start": 187, "end": 189, "annotation": null}, {"text": "this", "start": 190, "end": 194, "annotation": null}, {"text": "paper", "start": 195, "end": 200, "annotation": null}, {"text": ",", "start": 200, "end": 201, "annotation": null}, {"text": "the", "start": 202, "end": 205, "annotation": null}, {"text": "composition", "start": 206, "end": 217, "annotation": null}, {"text": ",", "start": 217, "end": 218, "annotation": null}, {"text": "phase", "start": 219, "end": 224, "annotation": null}, {"text": "structure", "start": 225, "end": 234, "annotation": null}, {"text": ",", "start": 234, "end": 235, "annotation": null}, {"text": "optical", "start": 236, "end": 243, "annotation": null}, {"text": "properties", "start": 244, "end": 254, "annotation": null}, {"text": "and", "start": 255, "end": 258, "annotation": null}, {"text": "electric", "start": 259, "end": 267, "annotation": null}, {"text": "properties", "start": 268, "end": 278, "annotation": null}, {"text": "of", "start": 279, "end": 281, "annotation": null}, {"text": "Mn", "start": 282, "end": 284, "annotation": null}, {"text": "-", "start": 284, "end": 285, "annotation": null}, {"text": "doped", "start": 285, "end": 290, "annotation": null}, {"text": "Pb(In1", "start": 291, "end": 297, "annotation": "BASEMAT"}, {"text": "/", "start": 297, "end": 298, "annotation": null}, {"text": "2Nb1", "start": 298, "end": 302, "annotation": "BASEMAT"}, {"text": "/", "start": 302, "end": 303, "annotation": null}, {"text": "2)O3-Pb(Mg1", "start": 303, "end": 314, "annotation": "BASEMAT"}, {"text": "/", "start": 314, "end": 315, "annotation": null}, {"text": "3Nb2", "start": 315, "end": 319, "annotation": "BASEMAT"}, {"text": "/", "start": 319, "end": 320, "annotation": null}, {"text": "3)O3", "start": 320, "end": 324, "annotation": "BASEMAT"}, {"text": "-", "start": 324, "end": 325, "annotation": null}, {"text": "PbTiO3", "start": 325, "end": 331, "annotation": "BASEMAT"}, {"text": "(", "start": 332, "end": 333, "annotation": null}, {"text": "PIN-PMN-PT", "start": 333, "end": 343, "annotation": "BASEMAT"}, {"text": ")", "start": 343, "end": 344, "annotation": null}, {"text": "single", "start": 345, "end": 351, "annotation": null}, {"text": "crystal", "start": 352, "end": 359, "annotation": null}, {"text": "were", "start": 360, "end": 364, "annotation": null}, {"text": "investigated", "start": 365, "end": 377, "annotation": null}, {"text": ".", "start": 377, "end": 378, "annotation": null}], [{"text": "The", "start": 379, "end": 382, "annotation": null}, {"text": "real", "start": 383, "end": 387, "annotation": null}, {"text": "composition", "start": 388, "end": 399, "annotation": null}, {"text": "of", "start": 400, "end": 402, "annotation": null}, {"text": "the", "start": 403, "end": 406, "annotation": null}, {"text": "single", "start": 407, "end": 413, "annotation": null}, {"text": "crystal", "start": 414, "end": 421, "annotation": null}, {"text": "fluctuated", "start": 422, "end": 432, "annotation": null}, {"text": "around", "start": 433, "end": 439, "annotation": null}, {"text": "the", "start": 440, "end": 443, "annotation": null}, {"text": "original", "start": 444, "end": 452, "annotation": null}, {"text": "ratio", "start": 453, "end": 458, "annotation": null}, {"text": ",", "start": 458, "end": 459, "annotation": null}, {"text": "except", "start": 460, "end": 466, "annotation": null}, {"text": "for", "start": 467, "end": 470, "annotation": null}, {"text": "MnO2", "start": 471, "end": 475, "annotation": null}, {"text": ".", "start": 475, "end": 476, "annotation": null}], [{"text": "The", "start": 477, "end": 480, "annotation": null}, {"text": "single", "start": 481, "end": 487, "annotation": null}, {"text": "crystal", "start": 488, "end": 495, "annotation": null}, {"text": "contained", "start": 496, "end": 505, "annotation": null}, {"text": "less", "start": 506, "end": 510, "annotation": null}, {"text": "Mn", "start": 511, "end": 513, "annotation": null}, {"text": "element", "start": 514, "end": 521, "annotation": null}, {"text": "after", "start": 522, "end": 527, "annotation": null}, {"text": "removing", "start": 528, "end": 536, "annotation": null}, {"text": "inclusions", "start": 537, "end": 547, "annotation": null}, {"text": "compared", "start": 548, "end": 556, "annotation": null}, {"text": "with", "start": 557, "end": 561, "annotation": null}, {"text": "the", "start": 562, "end": 565, "annotation": null}, {"text": "starting", "start": 566, "end": 574, "annotation": null}, {"text": "ratio", "start": 575, "end": 580, "annotation": null}, {"text": ".", "start": 580, "end": 581, "annotation": null}], [{"text": "The", "start": 582, "end": 585, "annotation": null}, {"text": "single", "start": 586, "end": 592, "annotation": null}, {"text": "crystal", "start": 593, "end": 600, "annotation": null}, {"text": "samples", "start": 601, "end": 608, "annotation": null}, {"text": "exhibited", "start": 609, "end": 618, "annotation": null}, {"text": "rhombohedral", "start": 619, "end": 631, "annotation": null}, {"text": "phase", "start": 632, "end": 637, "annotation": null}, {"text": "(", "start": 638, "end": 639, "annotation": null}, {"text": "R", "start": 639, "end": 640, "annotation": null}, {"text": "phase", "start": 641, "end": 646, "annotation": null}, {"text": ")", "start": 646, "end": 647, "annotation": null}, {"text": ",", "start": 647, "end": 648, "annotation": null}, {"text": "orthorhombic", "start": 649, "end": 661, "annotation": null}, {"text": "phase", "start": 662, "end": 667, "annotation": null}, {"text": "(", "start": 668, "end": 669, "annotation": null}, {"text": "O", "start": 669, "end": 670, "annotation": null}, {"text": "phase", "start": 671, "end": 676, "annotation": null}, {"text": ")", "start": 676, "end": 677, "annotation": null}, {"text": "and", "start": 678, "end": 681, "annotation": null}, {"text": "tetragonal", "start": 682, "end": 692, "annotation": null}, {"text": "phase", "start": 693, "end": 698, "annotation": null}, {"text": "(", "start": 699, "end": 700, "annotation": null}, {"text": "T", "start": 700, "end": 701, "annotation": null}, {"text": "phase", "start": 702, "end": 707, "annotation": null}, {"text": ")", "start": 707, "end": 708, "annotation": null}, {"text": "structures", "start": 709, "end": 719, "annotation": null}, {"text": "with", "start": 720, "end": 724, "annotation": null}, {"text": "different", "start": 725, "end": 734, "annotation": null}, {"text": "composition", "start": 735, "end": 746, "annotation": null}, {"text": "due", "start": 747, "end": 750, "annotation": null}, {"text": "to", "start": 751, "end": 753, "annotation": null}, {"text": "the", "start": 754, "end": 757, "annotation": null}, {"text": "segregation", "start": 758, "end": 769, "annotation": null}, {"text": ".", "start": 769, "end": 770, "annotation": null}], [{"text": "The", "start": 771, "end": 774, "annotation": null}, {"text": "rhombohedral", "start": 775, "end": 787, "annotation": null}, {"text": "to", "start": 788, "end": 790, "annotation": null}, {"text": "tetragonal", "start": 791, "end": 801, "annotation": null}, {"text": "phase", "start": 802, "end": 807, "annotation": null}, {"text": "transition", "start": 808, "end": 818, "annotation": null}, {"text": "temperature", "start": 819, "end": 830, "annotation": null}, {"text": "(", "start": 831, "end": 832, "annotation": null}, {"text": "T", "start": 832, "end": 833, "annotation": null}, {"text": "R-T", "start": 834, "end": 837, "annotation": null}, {"text": ")", "start": 838, "end": 839, "annotation": null}, {"text": "shifted", "start": 840, "end": 847, "annotation": null}, {"text": "to", "start": 848, "end": 850, "annotation": null}, {"text": "a", "start": 851, "end": 852, "annotation": null}, {"text": "lower", "start": 853, "end": 858, "annotation": null}, {"text": "value", "start": 859, "end": 864, "annotation": null}, {"text": "along", "start": 865, "end": 870, "annotation": null}, {"text": "the", "start": 871, "end": 874, "annotation": null}, {"text": "growth", "start": 875, "end": 881, "annotation": null}, {"text": "direction", "start": 882, "end": 891, "annotation": null}, {"text": ",", "start": 891, "end": 892, "annotation": null}, {"text": "while", "start": 893, "end": 898, "annotation": null}, {"text": "the", "start": 899, "end": 902, "annotation": null}, {"text": "Curie", "start": 903, "end": 908, "annotation": null}, {"text": "Temperature", "start": 909, "end": 920, "annotation": null}, {"text": "(", "start": 921, "end": 922, "annotation": null}, {"text": "T", "start": 922, "end": 923, "annotation": null}, {"text": "C", "start": 924, "end": 925, "annotation": null}, {"text": ")", "start": 926, "end": 927, "annotation": null}, {"text": "shifted", "start": 928, "end": 935, "annotation": null}, {"text": "to", "start": 936, "end": 938, "annotation": null}, {"text": "a", "start": 939, "end": 940, "annotation": null}, {"text": "higher", "start": 941, "end": 947, "annotation": null}, {"text": "value", "start": 948, "end": 953, "annotation": null}, {"text": "instead", "start": 954, "end": 961, "annotation": null}, {"text": ".", "start": 961, "end": 962, "annotation": null}], [{"text": "The", "start": 963, "end": 966, "annotation": null}, {"text": "relaxation", "start": 967, "end": 977, "annotation": null}, {"text": "level", "start": 978, "end": 983, "annotation": null}, {"text": "of", "start": 984, "end": 986, "annotation": null}, {"text": "the", "start": 987, "end": 990, "annotation": null}, {"text": "single", "start": 991, "end": 997, "annotation": null}, {"text": "crystal", "start": 998, "end": 1005, "annotation": null}, {"text": "went", "start": 1006, "end": 1010, "annotation": null}, {"text": "down", "start": 1011, "end": 1015, "annotation": null}, {"text": "to", "start": 1016, "end": 1018, "annotation": null}, {"text": "a", "start": 1019, "end": 1020, "annotation": null}, {"text": "lower", "start": 1021, "end": 1026, "annotation": null}, {"text": "level", "start": 1027, "end": 1032, "annotation": null}, {"text": "when", "start": 1033, "end": 1037, "annotation": null}, {"text": "the", "start": 1038, "end": 1041, "annotation": null}, {"text": "crystal", "start": 1042, "end": 1049, "annotation": null}, {"text": "structure", "start": 1050, "end": 1059, "annotation": null}, {"text": "changed", "start": 1060, "end": 1067, "annotation": null}, {"text": "from", "start": 1068, "end": 1072, "annotation": null}, {"text": "R", "start": 1073, "end": 1074, "annotation": null}, {"text": "phase", "start": 1075, "end": 1080, "annotation": null}, {"text": "to", "start": 1081, "end": 1083, "annotation": null}, {"text": "T", "start": 1084, "end": 1085, "annotation": null}, {"text": "and", "start": 1086, "end": 1089, "annotation": null}, {"text": "O", "start": 1090, "end": 1091, "annotation": null}, {"text": "phase", "start": 1092, "end": 1097, "annotation": null}, {"text": ".", "start": 1097, "end": 1098, "annotation": null}], [{"text": "The", "start": 1099, "end": 1102, "annotation": null}, {"text": "coercive", "start": 1103, "end": 1111, "annotation": null}, {"text": "field", "start": 1112, "end": 1117, "annotation": null}, {"text": "(", "start": 1118, "end": 1119, "annotation": null}, {"text": "E", "start": 1119, "end": 1120, "annotation": null}, {"text": "C", "start": 1121, "end": 1122, "annotation": null}, {"text": ")", "start": 1123, "end": 1124, "annotation": null}, {"text": "with", "start": 1125, "end": 1129, "annotation": null}, {"text": "[001]", "start": 1130, "end": 1135, "annotation": null}, {"text": "poling", "start": 1136, "end": 1142, "annotation": null}, {"text": "in", "start": 1143, "end": 1145, "annotation": null}, {"text": "R", "start": 1146, "end": 1147, "annotation": null}, {"text": "phase", "start": 1148, "end": 1153, "annotation": null}, {"text": "remained", "start": 1154, "end": 1162, "annotation": null}, {"text": "stable", "start": 1163, "end": 1169, "annotation": null}, {"text": "before", "start": 1170, "end": 1176, "annotation": null}, {"text": "a", "start": 1177, "end": 1178, "annotation": null}, {"text": "rise", "start": 1179, "end": 1183, "annotation": null}, {"text": "in", "start": 1184, "end": 1186, "annotation": null}, {"text": "O", "start": 1187, "end": 1188, "annotation": null}, {"text": "phase", "start": 1189, "end": 1194, "annotation": null}, {"text": "and", "start": 1195, "end": 1198, "annotation": null}, {"text": "T", "start": 1199, "end": 1200, "annotation": null}, {"text": "phase", "start": 1201, "end": 1206, "annotation": null}, {"text": ".", "start": 1206, "end": 1207, "annotation": null}], [{"text": "However", "start": 1208, "end": 1215, "annotation": null}, {"text": ",", "start": 1215, "end": 1216, "annotation": null}, {"text": "the", "start": 1217, "end": 1220, "annotation": null}, {"text": "composition", "start": 1221, "end": 1232, "annotation": null}, {"text": "segregation", "start": 1233, "end": 1244, "annotation": null}, {"text": "did", "start": 1245, "end": 1248, "annotation": null}, {"text": "n't", "start": 1248, "end": 1251, "annotation": null}, {"text": "obviously", "start": 1252, "end": 1261, "annotation": null}, {"text": "affected", "start": 1262, "end": 1270, "annotation": null}, {"text": "the", "start": 1271, "end": 1274, "annotation": null}, {"text": "internal", "start": 1275, "end": 1283, "annotation": null}, {"text": "bias", "start": 1284, "end": 1288, "annotation": null}, {"text": "field", "start": 1289, "end": 1294, "annotation": null}, {"text": "and", "start": 1295, "end": 1298, "annotation": null}, {"text": "kept", "start": 1299, "end": 1303, "annotation": null}, {"text": "around", "start": 1304, "end": 1310, "annotation": null}, {"text": "0.2", "start": 1311, "end": 1314, "annotation": null}, {"text": "kV", "start": 1314, "end": 1316, "annotation": null}, {"text": "/", "start": 1316, "end": 1317, "annotation": null}, {"text": "cm", "start": 1317, "end": 1319, "annotation": null}, {"text": ".", "start": 1319, "end": 1320, "annotation": null}], [{"text": "The", "start": 1321, "end": 1324, "annotation": null}, {"text": "piezoelectric", "start": 1325, "end": 1338, "annotation": null}, {"text": "coefficient", "start": 1339, "end": 1350, "annotation": null}, {"text": "d", "start": 1351, "end": 1352, "annotation": null}, {"text": "33and", "start": 1353, "end": 1358, "annotation": null}, {"text": "unipolar", "start": 1359, "end": 1367, "annotation": null}, {"text": "strain", "start": 1368, "end": 1374, "annotation": null}, {"text": "with", "start": 1375, "end": 1379, "annotation": null}, {"text": "poling", "start": 1380, "end": 1386, "annotation": null}, {"text": "direction", "start": 1387, "end": 1396, "annotation": null}, {"text": "along", "start": 1397, "end": 1402, "annotation": null}, {"text": "[001]", "start": 1403, "end": 1408, "annotation": null}, {"text": "had", "start": 1409, "end": 1412, "annotation": null}, {"text": "the", "start": 1413, "end": 1416, "annotation": null}, {"text": "same", "start": 1417, "end": 1421, "annotation": null}, {"text": "trend", "start": 1422, "end": 1427, "annotation": null}, {"text": "along", "start": 1428, "end": 1433, "annotation": null}, {"text": "growth", "start": 1434, "end": 1440, "annotation": null}, {"text": "direction", "start": 1441, "end": 1450, "annotation": null}, {"text": ".", "start": 1450, "end": 1451, "annotation": null}], [{"text": "The", "start": 1452, "end": 1455, "annotation": null}, {"text": "curves", "start": 1456, "end": 1462, "annotation": null}, {"text": "of", "start": 1463, "end": 1465, "annotation": null}, {"text": "them", "start": 1466, "end": 1470, "annotation": null}, {"text": "both", "start": 1471, "end": 1475, "annotation": null}, {"text": "took", "start": 1476, "end": 1480, "annotation": null}, {"text": "a", "start": 1481, "end": 1482, "annotation": null}, {"text": "rapid", "start": 1483, "end": 1488, "annotation": null}, {"text": "fall", "start": 1489, "end": 1493, "annotation": null}, {"text": "at", "start": 1494, "end": 1496, "annotation": null}, {"text": "the", "start": 1497, "end": 1500, "annotation": null}, {"text": "top", "start": 1501, "end": 1504, "annotation": null}, {"text": "of", "start": 1505, "end": 1507, "annotation": null}, {"text": "the", "start": 1508, "end": 1511, "annotation": null}, {"text": "single", "start": 1512, "end": 1518, "annotation": null}, {"text": "crystal", "start": 1519, "end": 1526, "annotation": null}, {"text": "boule", "start": 1527, "end": 1532, "annotation": null}, {"text": ",", "start": 1532, "end": 1533, "annotation": null}, {"text": "which", "start": 1534, "end": 1539, "annotation": null}, {"text": "related", "start": 1540, "end": 1547, "annotation": null}, {"text": "to", "start": 1548, "end": 1550, "annotation": null}, {"text": "the", "start": 1551, "end": 1554, "annotation": null}, {"text": "T", "start": 1555, "end": 1556, "annotation": null}, {"text": "phase", "start": 1557, "end": 1562, "annotation": null}, {"text": ".", "start": 1562, "end": 1563, "annotation": null}]], "meta": {"doi": "10.1016/j.jallcom.2018.01.027"}} +{"text": "Nb-based \u2018312\u2019 MAX phase has not been recognized so far, raising a hypothesis that Nb doping would destabilize the isostructural Ti3AlC2. Here we report that (Ti1\u2212xNbx)3AlC2 could persist with a doping limitation up to x=0.15. As demonstrated by HAADF-STEM analysis, Nb dopants homogeneously distribute among polycrystalline grains at the microscale and randomly occupy the Ti sites at the atomic level. Beyond the limitation, Nb-doped \u2018312\u2019 phase Ti3AlC2 decomposes into (Ti,Nb)C, Nb-doped \u2018211\u2019 phase Ti2AlC, and Nb-based \u2018413\u2019 phase. Compared to pristine Ti3AlC2, the compressive strength of (Ti0.9Nb0.1)3AlC2 at 1200\u00b0C increases by 130%, whereas doping at this level impairs the oxidation resistance. Improving high-temperature strength without deteriorating oxidation resistance can be achieved by 5% Nb doping.", "meta": {"doi": "10.1016/j.jeurceramsoc.2017.04.026"}, "_input_hash": -673218421, "_task_hash": 1672910133, "tokens": [[{"text": "Nb", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "-", "start": 3, "end": 4, "id": 1, "annotation": null}, {"text": "based", "start": 5, "end": 10, "id": 2, "annotation": null}, {"text": "\u2018", "start": 11, "end": 12, "id": 3, "annotation": null}, {"text": "312", "start": 13, "end": 16, "id": 4, "annotation": null}, {"text": "\u2019", "start": 17, "end": 18, "id": 5, "annotation": null}, {"text": "MAX", "start": 19, "end": 22, "id": 6, "annotation": null}, {"text": "phase", "start": 23, "end": 28, "id": 7, "annotation": null}, {"text": "has", "start": 29, "end": 32, "id": 8, "annotation": null}, {"text": "not", "start": 33, "end": 36, "id": 9, "annotation": null}, {"text": "been", "start": 37, "end": 41, "id": 10, "annotation": null}, {"text": "recognized", "start": 42, "end": 52, "id": 11, "annotation": null}, {"text": "so", "start": 53, "end": 55, "id": 12, "annotation": null}, {"text": "far", "start": 56, "end": 59, "id": 13, "annotation": null}, {"text": ",", "start": 60, "end": 61, "id": 14, "annotation": null}, {"text": "raising", "start": 62, "end": 69, "id": 15, "annotation": null}, {"text": "a", "start": 70, "end": 71, "id": 16, "annotation": null}, {"text": "hypothesis", "start": 72, "end": 82, "id": 17, "annotation": null}, {"text": "that", "start": 83, "end": 87, "id": 18, "annotation": null}, {"text": "Nb", "start": 88, "end": 90, "id": 19, "annotation": "DOPANT"}, {"text": "doping", "start": 91, "end": 97, "id": 20, "annotation": null}, {"text": "would", "start": 98, "end": 103, "id": 21, "annotation": null}, {"text": "destabilize", "start": 104, "end": 115, "id": 22, "annotation": null}, {"text": "the", "start": 116, "end": 119, "id": 23, "annotation": null}, {"text": "isostructural", "start": 120, "end": 133, "id": 24, "annotation": null}, {"text": "Ti3AlC2", "start": 134, "end": 141, "id": 25, "annotation": "BASEMAT"}, {"text": ".", "start": 142, "end": 143, "id": 26, "annotation": null}], [{"text": "Here", "start": 144, "end": 148, "id": 27, "annotation": null}, {"text": "we", "start": 149, "end": 151, "id": 28, "annotation": null}, {"text": "report", "start": 152, "end": 158, "id": 29, "annotation": null}, {"text": "that", "start": 159, "end": 163, "id": 30, "annotation": null}, {"text": "(", "start": 164, "end": 165, "id": 31, "annotation": null}, {"text": "Ti1\u2212xNbx)3AlC2", "start": 166, "end": 180, "id": 32, "annotation": null}, {"text": "could", "start": 181, "end": 186, "id": 33, "annotation": null}, {"text": "persist", "start": 187, "end": 194, "id": 34, "annotation": null}, {"text": "with", "start": 195, "end": 199, "id": 35, "annotation": null}, {"text": "a", "start": 200, "end": 201, "id": 36, "annotation": null}, {"text": "doping", "start": 202, "end": 208, "id": 37, "annotation": null}, {"text": "limitation", "start": 209, "end": 219, "id": 38, "annotation": null}, {"text": "up", "start": 220, "end": 222, "id": 39, "annotation": "DOPMODQ"}, {"text": "to", "start": 223, "end": 225, "id": 40, "annotation": "DOPMODQ"}, {"text": "x=0.15", "start": 226, "end": 232, "id": 41, "annotation": "DOPMODQ"}, {"text": ".", "start": 233, "end": 234, "id": 42, "annotation": null}], [{"text": "As", "start": 235, "end": 237, "id": 43, "annotation": null}, {"text": "demonstrated", "start": 238, "end": 250, "id": 44, "annotation": null}, {"text": "by", "start": 251, "end": 253, "id": 45, "annotation": null}, {"text": "HAADF", "start": 254, "end": 259, "id": 46, "annotation": null}, {"text": "-", "start": 260, "end": 261, "id": 47, "annotation": null}, {"text": "STEM", "start": 262, "end": 266, "id": 48, "annotation": null}, {"text": "analysis", "start": 267, "end": 275, "id": 49, "annotation": null}, {"text": ",", "start": 276, "end": 277, "id": 50, "annotation": null}, {"text": "Nb", "start": 278, "end": 280, "id": 51, "annotation": "DOPANT"}, {"text": "dopants", "start": 281, "end": 288, "id": 52, "annotation": null}, {"text": "homogeneously", "start": 289, "end": 302, "id": 53, "annotation": null}, {"text": "distribute", "start": 303, "end": 313, "id": 54, "annotation": null}, {"text": "among", "start": 314, "end": 319, "id": 55, "annotation": null}, {"text": "polycrystalline", "start": 320, "end": 335, "id": 56, "annotation": null}, {"text": "grains", "start": 336, "end": 342, "id": 57, "annotation": null}, {"text": "at", "start": 343, "end": 345, "id": 58, "annotation": null}, {"text": "the", "start": 346, "end": 349, "id": 59, "annotation": null}, {"text": "microscale", "start": 350, "end": 360, "id": 60, "annotation": null}, {"text": "and", "start": 361, "end": 364, "id": 61, "annotation": null}, {"text": "randomly", "start": 365, "end": 373, "id": 62, "annotation": null}, {"text": "occupy", "start": 374, "end": 380, "id": 63, "annotation": null}, {"text": "the", "start": 381, "end": 384, "id": 64, "annotation": null}, {"text": "Ti", "start": 385, "end": 387, "id": 65, "annotation": null}, {"text": "sites", "start": 388, "end": 393, "id": 66, "annotation": null}, {"text": "at", "start": 394, "end": 396, "id": 67, "annotation": null}, {"text": "the", "start": 397, "end": 400, "id": 68, "annotation": null}, {"text": "atomic", "start": 401, "end": 407, "id": 69, "annotation": null}, {"text": "level", "start": 408, "end": 413, "id": 70, "annotation": null}, {"text": ".", "start": 414, "end": 415, "id": 71, "annotation": null}], [{"text": "Beyond", "start": 416, "end": 422, "id": 72, "annotation": null}, {"text": "the", "start": 423, "end": 426, "id": 73, "annotation": null}, {"text": "limitation", "start": 427, "end": 437, "id": 74, "annotation": null}, {"text": ",", "start": 438, "end": 439, "id": 75, "annotation": null}, {"text": "Nb", "start": 440, "end": 442, "id": 76, "annotation": "DOPANT"}, {"text": "-", "start": 443, "end": 444, "id": 77, "annotation": null}, {"text": "doped", "start": 445, "end": 450, "id": 78, "annotation": null}, {"text": "\u2018", "start": 451, "end": 452, "id": 79, "annotation": null}, {"text": "312", "start": 453, "end": 456, "id": 80, "annotation": null}, {"text": "\u2019", "start": 457, "end": 458, "id": 81, "annotation": null}, {"text": "phase", "start": 459, "end": 464, "id": 82, "annotation": null}, {"text": "Ti3AlC2", "start": 465, "end": 472, "id": 83, "annotation": "BASEMAT"}, {"text": "decomposes", "start": 473, "end": 483, "id": 84, "annotation": null}, {"text": "into", "start": 484, "end": 488, "id": 85, "annotation": null}, {"text": "(", "start": 489, "end": 490, "id": 86, "annotation": null}, {"text": "Ti", "start": 491, "end": 493, "id": 87, "annotation": null}, {"text": ",", "start": 494, "end": 495, "id": 88, "annotation": null}, {"text": "Nb)C", "start": 496, "end": 500, "id": 89, "annotation": null}, {"text": ",", "start": 501, "end": 502, "id": 90, "annotation": null}, {"text": "Nb", "start": 503, "end": 505, "id": 91, "annotation": "DOPANT"}, {"text": "-", "start": 506, "end": 507, "id": 92, "annotation": null}, {"text": "doped", "start": 508, "end": 513, "id": 93, "annotation": null}, {"text": "\u2018", "start": 514, "end": 515, "id": 94, "annotation": null}, {"text": "211", "start": 516, "end": 519, "id": 95, "annotation": null}, {"text": "\u2019", "start": 520, "end": 521, "id": 96, "annotation": null}, {"text": "phase", "start": 522, "end": 527, "id": 97, "annotation": null}, {"text": "Ti2AlC", "start": 528, "end": 534, "id": 98, "annotation": "BASEMAT"}, {"text": ",", "start": 535, "end": 536, "id": 99, "annotation": null}, {"text": "and", "start": 537, "end": 540, "id": 100, "annotation": null}, {"text": "Nb", "start": 541, "end": 543, "id": 101, "annotation": null}, {"text": "-", "start": 544, "end": 545, "id": 102, "annotation": null}, {"text": "based", "start": 546, "end": 551, "id": 103, "annotation": null}, {"text": "\u2018", "start": 552, "end": 553, "id": 104, "annotation": null}, {"text": "413", "start": 554, "end": 557, "id": 105, "annotation": null}, {"text": "\u2019", "start": 558, "end": 559, "id": 106, "annotation": null}, {"text": "phase", "start": 560, "end": 565, "id": 107, "annotation": null}, {"text": ".", "start": 566, "end": 567, "id": 108, "annotation": null}], [{"text": "Compared", "start": 568, "end": 576, "id": 109, "annotation": null}, {"text": "to", "start": 577, "end": 579, "id": 110, "annotation": null}, {"text": "pristine", "start": 580, "end": 588, "id": 111, "annotation": null}, {"text": "Ti3AlC2", "start": 589, "end": 596, "id": 112, "annotation": null}, {"text": ",", "start": 597, "end": 598, "id": 113, "annotation": null}, {"text": "the", "start": 599, "end": 602, "id": 114, "annotation": null}, {"text": "compressive", "start": 603, "end": 614, "id": 115, "annotation": null}, {"text": "strength", "start": 615, "end": 623, "id": 116, "annotation": null}, {"text": "of", "start": 624, "end": 626, "id": 117, "annotation": null}, {"text": "(", "start": 627, "end": 628, "id": 118, "annotation": null}, {"text": "Ti0.9Nb0.1)3AlC2", "start": 629, "end": 645, "id": 119, "annotation": null}, {"text": "at", "start": 646, "end": 648, "id": 120, "annotation": null}, {"text": "1200", "start": 649, "end": 653, "id": 121, "annotation": null}, {"text": "\u00b0", "start": 654, "end": 655, "id": 122, "annotation": null}, {"text": "C", "start": 656, "end": 657, "id": 123, "annotation": null}, {"text": "increases", "start": 658, "end": 667, "id": 124, "annotation": null}, {"text": "by", "start": 668, "end": 670, "id": 125, "annotation": null}, {"text": "130", "start": 671, "end": 674, "id": 126, "annotation": null}, {"text": "%", "start": 675, "end": 676, "id": 127, "annotation": null}, {"text": ",", "start": 677, "end": 678, "id": 128, "annotation": null}, {"text": "whereas", "start": 679, "end": 686, "id": 129, "annotation": null}, {"text": "doping", "start": 687, "end": 693, "id": 130, "annotation": null}, {"text": "at", "start": 694, "end": 696, "id": 131, "annotation": null}, {"text": "this", "start": 697, "end": 701, "id": 132, "annotation": null}, {"text": "level", "start": 702, "end": 707, "id": 133, "annotation": null}, {"text": "impairs", "start": 708, "end": 715, "id": 134, "annotation": null}, {"text": "the", "start": 716, "end": 719, "id": 135, "annotation": null}, {"text": "oxidation", "start": 720, "end": 729, "id": 136, "annotation": null}, {"text": "resistance", "start": 730, "end": 740, "id": 137, "annotation": null}, {"text": ".", "start": 741, "end": 742, "id": 138, "annotation": null}], [{"text": "Improving", "start": 743, "end": 752, "id": 139, "annotation": null}, {"text": "high", "start": 753, "end": 757, "id": 140, "annotation": null}, {"text": "-", "start": 758, "end": 759, "id": 141, "annotation": null}, {"text": "temperature", "start": 760, "end": 771, "id": 142, "annotation": null}, {"text": "strength", "start": 772, "end": 780, "id": 143, "annotation": null}, {"text": "without", "start": 781, "end": 788, "id": 144, "annotation": null}, {"text": "deteriorating", "start": 789, "end": 802, "id": 145, "annotation": null}, {"text": "oxidation", "start": 803, "end": 812, "id": 146, "annotation": null}, {"text": "resistance", "start": 813, "end": 823, "id": 147, "annotation": null}, {"text": "can", "start": 824, "end": 827, "id": 148, "annotation": null}, {"text": "be", "start": 828, "end": 830, "id": 149, "annotation": null}, {"text": "achieved", "start": 831, "end": 839, "id": 150, "annotation": null}, {"text": "by", "start": 840, "end": 842, "id": 151, "annotation": null}, {"text": "5", "start": 843, "end": 844, "id": 152, "annotation": "DOPMODQ"}, {"text": "%", "start": 845, "end": 846, "id": 153, "annotation": "DOPMODQ"}, {"text": "Nb", "start": 847, "end": 849, "id": 154, "annotation": "DOPANT"}, {"text": "doping", "start": 850, "end": 856, "id": 155, "annotation": null}, {"text": ".", "start": 857, "end": 858, "id": 156, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt3", "text": "Diamond films on the p-type Si(111) and p-type(100) substrates were prepared by microwave plasma chemical vapor deposition (MWCVD) and hot-filament chemical vapor deposition (HFCVD) by using a mixture of methane CH4 and hydrogen H2 as gas feed. The structure and composition of the films have been investigated by X-ray Diffraction, Raman Spectroscopy and Scanning Electron Microscopy methods. A high quality diamond crystalline structure of the obtained films by using HFCVD method was confirmed by clear XRD-pattern. SEM images show that the prepared films are polycrystalline diamond films consisting of diamond single crystallites (111)-orientation perpendicular to the substrate. Diamond films grown on silicon substrates by using HFCVD show good quality diamond and fewer non-diamond components.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Diamond", "start": 0, "end": 7, "annotation": null}, {"text": "films", "start": 8, "end": 13, "annotation": null}, {"text": "on", "start": 14, "end": 16, "annotation": null}, {"text": "the", "start": 17, "end": 20, "annotation": null}, {"text": "p", "start": 21, "end": 22, "annotation": "DOPANT"}, {"text": "-", "start": 22, "end": 23, "annotation": "DOPANT"}, {"text": "type", "start": 23, "end": 27, "annotation": "DOPANT"}, {"text": "Si(111)", "start": 28, "end": 35, "annotation": "BASEMAT"}, {"text": "and", "start": 36, "end": 39, "annotation": null}, {"text": "p-type(100)", "start": 40, "end": 51, "annotation": "DOPANT"}, {"text": "substrates", "start": 52, "end": 62, "annotation": "BASEMAT"}, {"text": "were", "start": 63, "end": 67, "annotation": null}, {"text": "prepared", "start": 68, "end": 76, "annotation": null}, {"text": "by", "start": 77, "end": 79, "annotation": null}, {"text": "microwave", "start": 80, "end": 89, "annotation": null}, {"text": "plasma", "start": 90, "end": 96, "annotation": null}, {"text": "chemical", "start": 97, "end": 105, "annotation": null}, {"text": "vapor", "start": 106, "end": 111, "annotation": null}, {"text": "deposition", "start": 112, "end": 122, "annotation": null}, {"text": "(", "start": 123, "end": 124, "annotation": null}, {"text": "MWCVD", "start": 124, "end": 129, "annotation": null}, {"text": ")", "start": 129, "end": 130, "annotation": null}, {"text": "and", "start": 131, "end": 134, "annotation": null}, {"text": "hot", "start": 135, "end": 138, "annotation": null}, {"text": "-", "start": 138, "end": 139, "annotation": null}, {"text": "filament", "start": 139, "end": 147, "annotation": null}, {"text": "chemical", "start": 148, "end": 156, "annotation": null}, {"text": "vapor", "start": 157, "end": 162, "annotation": null}, {"text": "deposition", "start": 163, "end": 173, "annotation": null}, {"text": "(", "start": 174, "end": 175, "annotation": null}, {"text": "HFCVD", "start": 175, "end": 180, "annotation": null}, {"text": ")", "start": 180, "end": 181, "annotation": null}, {"text": "by", "start": 182, "end": 184, "annotation": null}, {"text": "using", "start": 185, "end": 190, "annotation": null}, {"text": "a", "start": 191, "end": 192, "annotation": null}, {"text": "mixture", "start": 193, "end": 200, "annotation": null}, {"text": "of", "start": 201, "end": 203, "annotation": null}, {"text": "methane", "start": 204, "end": 211, "annotation": null}, {"text": "CH4", "start": 212, "end": 215, "annotation": null}, {"text": "and", "start": 216, "end": 219, "annotation": null}, {"text": "hydrogen", "start": 220, "end": 228, "annotation": null}, {"text": "H2", "start": 229, "end": 231, "annotation": null}, {"text": "as", "start": 232, "end": 234, "annotation": null}, {"text": "gas", "start": 235, "end": 238, "annotation": null}, {"text": "feed", "start": 239, "end": 243, "annotation": null}, {"text": ".", "start": 243, "end": 244, "annotation": null}], [{"text": "The", "start": 245, "end": 248, "annotation": null}, {"text": "structure", "start": 249, "end": 258, "annotation": null}, {"text": "and", "start": 259, "end": 262, "annotation": null}, {"text": "composition", "start": 263, "end": 274, "annotation": null}, {"text": "of", "start": 275, "end": 277, "annotation": null}, {"text": "the", "start": 278, "end": 281, "annotation": null}, {"text": "films", "start": 282, "end": 287, "annotation": null}, {"text": "have", "start": 288, "end": 292, "annotation": null}, {"text": "been", "start": 293, "end": 297, "annotation": null}, {"text": "investigated", "start": 298, "end": 310, "annotation": null}, {"text": "by", "start": 311, "end": 313, "annotation": null}, {"text": "X-ray", "start": 314, "end": 319, "annotation": null}, {"text": "Diffraction", "start": 320, "end": 331, "annotation": null}, {"text": ",", "start": 331, "end": 332, "annotation": null}, {"text": "Raman", "start": 333, "end": 338, "annotation": null}, {"text": "Spectroscopy", "start": 339, "end": 351, "annotation": null}, {"text": "and", "start": 352, "end": 355, "annotation": null}, {"text": "Scanning", "start": 356, "end": 364, "annotation": null}, {"text": "Electron", "start": 365, "end": 373, "annotation": null}, {"text": "Microscopy", "start": 374, "end": 384, "annotation": null}, {"text": "methods", "start": 385, "end": 392, "annotation": null}, {"text": ".", "start": 392, "end": 393, "annotation": null}], [{"text": "A", "start": 394, "end": 395, "annotation": null}, {"text": "high", "start": 396, "end": 400, "annotation": null}, {"text": "quality", "start": 401, "end": 408, "annotation": null}, {"text": "diamond", "start": 409, "end": 416, "annotation": null}, {"text": "crystalline", "start": 417, "end": 428, "annotation": null}, {"text": "structure", "start": 429, "end": 438, "annotation": null}, {"text": "of", "start": 439, "end": 441, "annotation": null}, {"text": "the", "start": 442, "end": 445, "annotation": null}, {"text": "obtained", "start": 446, "end": 454, "annotation": null}, {"text": "films", "start": 455, "end": 460, "annotation": null}, {"text": "by", "start": 461, "end": 463, "annotation": null}, {"text": "using", "start": 464, "end": 469, "annotation": null}, {"text": "HFCVD", "start": 470, "end": 475, "annotation": null}, {"text": "method", "start": 476, "end": 482, "annotation": null}, {"text": "was", "start": 483, "end": 486, "annotation": null}, {"text": "confirmed", "start": 487, "end": 496, "annotation": null}, {"text": "by", "start": 497, "end": 499, "annotation": null}, {"text": "clear", "start": 500, "end": 505, "annotation": null}, {"text": "XRD", "start": 506, "end": 509, "annotation": null}, {"text": "-", "start": 509, "end": 510, "annotation": null}, {"text": "pattern", "start": 510, "end": 517, "annotation": null}, {"text": ".", "start": 517, "end": 518, "annotation": null}], [{"text": "SEM", "start": 519, "end": 522, "annotation": null}, {"text": "images", "start": 523, "end": 529, "annotation": null}, {"text": "show", "start": 530, "end": 534, "annotation": null}, {"text": "that", "start": 535, "end": 539, "annotation": null}, {"text": "the", "start": 540, "end": 543, "annotation": null}, {"text": "prepared", "start": 544, "end": 552, "annotation": null}, {"text": "films", "start": 553, "end": 558, "annotation": null}, {"text": "are", "start": 559, "end": 562, "annotation": null}, {"text": "polycrystalline", "start": 563, "end": 578, "annotation": null}, {"text": "diamond", "start": 579, "end": 586, "annotation": null}, {"text": "films", "start": 587, "end": 592, "annotation": null}, {"text": "consisting", "start": 593, "end": 603, "annotation": null}, {"text": "of", "start": 604, "end": 606, "annotation": null}, {"text": "diamond", "start": 607, "end": 614, "annotation": null}, {"text": "single", "start": 615, "end": 621, "annotation": null}, {"text": "crystallites", "start": 622, "end": 634, "annotation": null}, {"text": "(111)-orientation", "start": 635, "end": 652, "annotation": null}, {"text": "perpendicular", "start": 653, "end": 666, "annotation": null}, {"text": "to", "start": 667, "end": 669, "annotation": null}, {"text": "the", "start": 670, "end": 673, "annotation": null}, {"text": "substrate", "start": 674, "end": 683, "annotation": null}, {"text": ".", "start": 683, "end": 684, "annotation": null}], [{"text": "Diamond", "start": 685, "end": 692, "annotation": null}, {"text": "films", "start": 693, "end": 698, "annotation": null}, {"text": "grown", "start": 699, "end": 704, "annotation": null}, {"text": "on", "start": 705, "end": 707, "annotation": null}, {"text": "silicon", "start": 708, "end": 715, "annotation": null}, {"text": "substrates", "start": 716, "end": 726, "annotation": null}, {"text": "by", "start": 727, "end": 729, "annotation": null}, {"text": "using", "start": 730, "end": 735, "annotation": null}, {"text": "HFCVD", "start": 736, "end": 741, "annotation": null}, {"text": "show", "start": 742, "end": 746, "annotation": null}, {"text": "good", "start": 747, "end": 751, "annotation": null}, {"text": "quality", "start": 752, "end": 759, "annotation": null}, {"text": "diamond", "start": 760, "end": 767, "annotation": null}, {"text": "and", "start": 768, "end": 771, "annotation": null}, {"text": "fewer", "start": 772, "end": 777, "annotation": null}, {"text": "non-diamond", "start": 778, "end": 789, "annotation": null}, {"text": "components", "start": 790, "end": 800, "annotation": null}, {"text": ".", "start": 800, "end": 801, "annotation": null}]], "meta": {"doi": "10.1007/BF02705797"}} +{"remark": "doping_annt2", "text": "Rare earth element (gadolinium) doped cadmium oxide (CdO:Gd) thin films were deposited using the pulsed laser deposition technique. X-ray diffraction analysis reveals that growth temperature has large impact on the preferred orientation of the films. The films grown at low temperature show (111) preferred orientation, while films grown at high temperature have (200) orientation. The effect of substrate temperature on optical and electrical properties shows widening in optical bandgap and improvement in electron mobility with increase in growth temperature. These wide bandgap transparent conducting films could be used in optoelectronic applications.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Rare", "start": 0, "end": 4, "annotation": null}, {"text": "earth", "start": 5, "end": 10, "annotation": null}, {"text": "element", "start": 11, "end": 18, "annotation": null}, {"text": "(", "start": 19, "end": 20, "annotation": null}, {"text": "gadolinium", "start": 20, "end": 30, "annotation": "DOPANT"}, {"text": ")", "start": 30, "end": 31, "annotation": null}, {"text": "doped", "start": 32, "end": 37, "annotation": null}, {"text": "cadmium", "start": 38, "end": 45, "annotation": "BASEMAT"}, {"text": "oxide", "start": 46, "end": 51, "annotation": "BASEMAT"}, {"text": "(", "start": 52, "end": 53, "annotation": null}, {"text": "CdO", "start": 53, "end": 56, "annotation": "BASEMAT"}, {"text": ":", "start": 56, "end": 57, "annotation": null}, {"text": "Gd", "start": 57, "end": 59, "annotation": "DOPANT"}, {"text": ")", "start": 59, "end": 60, "annotation": null}, {"text": "thin", "start": 61, "end": 65, "annotation": null}, {"text": "films", "start": 66, "end": 71, "annotation": null}, {"text": "were", "start": 72, "end": 76, "annotation": null}, {"text": "deposited", "start": 77, "end": 86, "annotation": null}, {"text": "using", "start": 87, "end": 92, "annotation": null}, {"text": "the", "start": 93, "end": 96, "annotation": null}, {"text": "pulsed", "start": 97, "end": 103, "annotation": null}, {"text": "laser", "start": 104, "end": 109, "annotation": null}, {"text": "deposition", "start": 110, "end": 120, "annotation": null}, {"text": "technique", "start": 121, "end": 130, "annotation": null}, {"text": ".", "start": 130, "end": 131, "annotation": null}], [{"text": "X-ray", "start": 132, "end": 137, "annotation": null}, {"text": "diffraction", "start": 138, "end": 149, "annotation": null}, {"text": "analysis", "start": 150, "end": 158, "annotation": null}, {"text": "reveals", "start": 159, "end": 166, "annotation": null}, {"text": "that", "start": 167, "end": 171, "annotation": null}, {"text": "growth", "start": 172, "end": 178, "annotation": null}, {"text": "temperature", "start": 179, "end": 190, "annotation": null}, {"text": "has", "start": 191, "end": 194, "annotation": null}, {"text": "large", "start": 195, "end": 200, "annotation": null}, {"text": "impact", "start": 201, "end": 207, "annotation": null}, {"text": "on", "start": 208, "end": 210, "annotation": null}, {"text": "the", "start": 211, "end": 214, "annotation": null}, {"text": "preferred", "start": 215, "end": 224, "annotation": null}, {"text": "orientation", "start": 225, "end": 236, "annotation": null}, {"text": "of", "start": 237, "end": 239, "annotation": null}, {"text": "the", "start": 240, "end": 243, "annotation": null}, {"text": "films", "start": 244, "end": 249, "annotation": null}, {"text": ".", "start": 249, "end": 250, "annotation": null}], [{"text": "The", "start": 251, "end": 254, "annotation": null}, {"text": "films", "start": 255, "end": 260, "annotation": null}, {"text": "grown", "start": 261, "end": 266, "annotation": null}, {"text": "at", "start": 267, "end": 269, "annotation": null}, {"text": "low", "start": 270, "end": 273, "annotation": null}, {"text": "temperature", "start": 274, "end": 285, "annotation": null}, {"text": "show", "start": 286, "end": 290, "annotation": null}, {"text": "(", "start": 291, "end": 292, "annotation": null}, {"text": "111", "start": 292, "end": 295, "annotation": null}, {"text": ")", "start": 295, "end": 296, "annotation": null}, {"text": "preferred", "start": 297, "end": 306, "annotation": null}, {"text": "orientation", "start": 307, "end": 318, "annotation": null}, {"text": ",", "start": 318, "end": 319, "annotation": null}, {"text": "while", "start": 320, "end": 325, "annotation": null}, {"text": "films", "start": 326, "end": 331, "annotation": null}, {"text": "grown", "start": 332, "end": 337, "annotation": null}, {"text": "at", "start": 338, "end": 340, "annotation": null}, {"text": "high", "start": 341, "end": 345, "annotation": null}, {"text": "temperature", "start": 346, "end": 357, "annotation": null}, {"text": "have", "start": 358, "end": 362, "annotation": null}, {"text": "(", "start": 363, "end": 364, "annotation": null}, {"text": "200", "start": 364, "end": 367, "annotation": null}, {"text": ")", "start": 367, "end": 368, "annotation": null}, {"text": "orientation", "start": 369, "end": 380, "annotation": null}, {"text": ".", "start": 380, "end": 381, "annotation": null}], [{"text": "The", "start": 382, "end": 385, "annotation": null}, {"text": "effect", "start": 386, "end": 392, "annotation": null}, {"text": "of", "start": 393, "end": 395, "annotation": null}, {"text": "substrate", "start": 396, "end": 405, "annotation": null}, {"text": "temperature", "start": 406, "end": 417, "annotation": null}, {"text": "on", "start": 418, "end": 420, "annotation": null}, {"text": "optical", "start": 421, "end": 428, "annotation": null}, {"text": "and", "start": 429, "end": 432, "annotation": null}, {"text": "electrical", "start": 433, "end": 443, "annotation": null}, {"text": "properties", "start": 444, "end": 454, "annotation": null}, {"text": "shows", "start": 455, "end": 460, "annotation": null}, {"text": "widening", "start": 461, "end": 469, "annotation": null}, {"text": "in", "start": 470, "end": 472, "annotation": null}, {"text": "optical", "start": 473, "end": 480, "annotation": null}, {"text": "bandgap", "start": 481, "end": 488, "annotation": null}, {"text": "and", "start": 489, "end": 492, "annotation": null}, {"text": "improvement", "start": 493, "end": 504, "annotation": null}, {"text": "in", "start": 505, "end": 507, "annotation": null}, {"text": "electron", "start": 508, "end": 516, "annotation": null}, {"text": "mobility", "start": 517, "end": 525, "annotation": null}, {"text": "with", "start": 526, "end": 530, "annotation": null}, {"text": "increase", "start": 531, "end": 539, "annotation": null}, {"text": "in", "start": 540, "end": 542, "annotation": null}, {"text": "growth", "start": 543, "end": 549, "annotation": null}, {"text": "temperature", "start": 550, "end": 561, "annotation": null}, {"text": ".", "start": 561, "end": 562, "annotation": null}], [{"text": "These", "start": 563, "end": 568, "annotation": null}, {"text": "wide", "start": 569, "end": 573, "annotation": null}, {"text": "bandgap", "start": 574, "end": 581, "annotation": null}, {"text": "transparent", "start": 582, "end": 593, "annotation": null}, {"text": "conducting", "start": 594, "end": 604, "annotation": null}, {"text": "films", "start": 605, "end": 610, "annotation": null}, {"text": "could", "start": 611, "end": 616, "annotation": null}, {"text": "be", "start": 617, "end": 619, "annotation": null}, {"text": "used", "start": 620, "end": 624, "annotation": null}, {"text": "in", "start": 625, "end": 627, "annotation": null}, {"text": "optoelectronic", "start": 628, "end": 642, "annotation": null}, {"text": "applications", "start": 643, "end": 655, "annotation": null}, {"text": ".", "start": 655, "end": 656, "annotation": null}]], "meta": {"doi": "10.1016/j.physe.2011.08.009"}} +{"remark": "doping_annt2", "text": "Formation of protective oxide scales is the main reason for the high oxidation resistance of TiAlN based coatings. Here the authors report on further improvement in the oxidation resistance of TiAlN by Ta alloying. An industrial-scale cathodic arc evaporation facility was used to deposit Ti-Al-Ta-N coatings from powder metallurgically produced Ti38 Al57 Ta5 targets. After oxidation in ambient air, a significantly reduced oxide layer thickness in comparison to unalloyed TiAlN reference material was observed. Energy-dispersive x-ray spectroscopy line scans and secondary ion mass spectroscopy depth profiling showed that the oxide scale consists of an Al-rich top layer without detectable amount of Ta and a Ti-Ta-rich sublayer. Transmission electron microscopy investigations revealed \u03b1- Al2 O3, rutile-type Ti O2, and anatase-type Ti O2 as the scale forming oxides. Furthermore, the Ti-Ta-rich sublayer consists of a porous layer at the oxide-nitride interface but appears dense toward the Al-rich top layer. The improved oxidation resistance is explained by doping the Ti O2 lattice by replacing Ti4+ with Ta5+ in the rutile lattice, which decreases the oxygen mass transport. This leads to reduced oxidation of Ti under formation of Ti O2 at the oxide-nitride interface and is the reason for the excellent oxidation behavior of Ti-Al-Ta-N coatings. \u00a9 2009 American Vacuum Society.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Formation", "start": 0, "end": 9, "annotation": null}, {"text": "of", "start": 10, "end": 12, "annotation": null}, {"text": "protective", "start": 13, "end": 23, "annotation": null}, {"text": "oxide", "start": 24, "end": 29, "annotation": null}, {"text": "scales", "start": 30, "end": 36, "annotation": null}, {"text": "is", "start": 37, "end": 39, "annotation": null}, {"text": "the", "start": 40, "end": 43, "annotation": null}, {"text": "main", "start": 44, "end": 48, "annotation": null}, {"text": "reason", "start": 49, "end": 55, "annotation": null}, {"text": "for", "start": 56, "end": 59, "annotation": null}, {"text": "the", "start": 60, "end": 63, "annotation": null}, {"text": "high", "start": 64, "end": 68, "annotation": null}, {"text": "oxidation", "start": 69, "end": 78, "annotation": null}, {"text": "resistance", "start": 79, "end": 89, "annotation": null}, {"text": "of", "start": 90, "end": 92, "annotation": null}, {"text": "TiAlN", "start": 93, "end": 98, "annotation": null}, {"text": "based", "start": 99, "end": 104, "annotation": null}, {"text": "coatings", "start": 105, "end": 113, "annotation": null}, {"text": ".", "start": 113, "end": 114, "annotation": null}], [{"text": "Here", "start": 115, "end": 119, "annotation": null}, {"text": "the", "start": 120, "end": 123, "annotation": null}, {"text": "authors", "start": 124, "end": 131, "annotation": null}, {"text": "report", "start": 132, "end": 138, "annotation": null}, {"text": "on", "start": 139, "end": 141, "annotation": null}, {"text": "further", "start": 142, "end": 149, "annotation": null}, {"text": "improvement", "start": 150, "end": 161, "annotation": null}, {"text": "in", "start": 162, "end": 164, "annotation": null}, {"text": "the", "start": 165, "end": 168, "annotation": null}, {"text": "oxidation", "start": 169, "end": 178, "annotation": null}, {"text": "resistance", "start": 179, "end": 189, "annotation": null}, {"text": "of", "start": 190, "end": 192, "annotation": null}, {"text": "TiAlN", "start": 193, "end": 198, "annotation": null}, {"text": "by", "start": 199, "end": 201, "annotation": null}, {"text": "Ta", "start": 202, "end": 204, "annotation": null}, {"text": "alloying", "start": 205, "end": 213, "annotation": null}, {"text": ".", "start": 213, "end": 214, "annotation": null}], [{"text": "An", "start": 215, "end": 217, "annotation": null}, {"text": "industrial", "start": 218, "end": 228, "annotation": null}, {"text": "-", "start": 228, "end": 229, "annotation": null}, {"text": "scale", "start": 229, "end": 234, "annotation": null}, {"text": "cathodic", "start": 235, "end": 243, "annotation": null}, {"text": "arc", "start": 244, "end": 247, "annotation": null}, {"text": "evaporation", "start": 248, "end": 259, "annotation": null}, {"text": "facility", "start": 260, "end": 268, "annotation": null}, {"text": "was", "start": 269, "end": 272, "annotation": null}, {"text": "used", "start": 273, "end": 277, "annotation": null}, {"text": "to", "start": 278, "end": 280, "annotation": null}, {"text": "deposit", "start": 281, "end": 288, "annotation": null}, {"text": "Ti-Al-Ta-N", "start": 289, "end": 299, "annotation": null}, {"text": "coatings", "start": 300, "end": 308, "annotation": null}, {"text": "from", "start": 309, "end": 313, "annotation": null}, {"text": "powder", "start": 314, "end": 320, "annotation": null}, {"text": "metallurgically", "start": 321, "end": 336, "annotation": null}, {"text": "produced", "start": 337, "end": 345, "annotation": null}, {"text": "Ti38", "start": 346, "end": 350, "annotation": null}, {"text": "Al57", "start": 351, "end": 355, "annotation": null}, {"text": "Ta5", "start": 356, "end": 359, "annotation": null}, {"text": "targets", "start": 360, "end": 367, "annotation": null}, {"text": ".", "start": 367, "end": 368, "annotation": null}], [{"text": "After", "start": 369, "end": 374, "annotation": null}, {"text": "oxidation", "start": 375, "end": 384, "annotation": null}, {"text": "in", "start": 385, "end": 387, "annotation": null}, {"text": "ambient", "start": 388, "end": 395, "annotation": null}, {"text": "air", "start": 396, "end": 399, "annotation": null}, {"text": ",", "start": 399, "end": 400, "annotation": null}, {"text": "a", "start": 401, "end": 402, "annotation": null}, {"text": "significantly", "start": 403, "end": 416, "annotation": null}, {"text": "reduced", "start": 417, "end": 424, "annotation": null}, {"text": "oxide", "start": 425, "end": 430, "annotation": null}, {"text": "layer", "start": 431, "end": 436, "annotation": null}, {"text": "thickness", "start": 437, "end": 446, "annotation": null}, {"text": "in", "start": 447, "end": 449, "annotation": null}, {"text": "comparison", "start": 450, "end": 460, "annotation": null}, {"text": "to", "start": 461, "end": 463, "annotation": null}, {"text": "unalloyed", "start": 464, "end": 473, "annotation": null}, {"text": "TiAlN", "start": 474, "end": 479, "annotation": null}, {"text": "reference", "start": 480, "end": 489, "annotation": null}, {"text": "material", "start": 490, "end": 498, "annotation": null}, {"text": "was", "start": 499, "end": 502, "annotation": null}, {"text": "observed", "start": 503, "end": 511, "annotation": null}, {"text": ".", "start": 511, "end": 512, "annotation": null}], [{"text": "Energy", "start": 513, "end": 519, "annotation": null}, {"text": "-", "start": 519, "end": 520, "annotation": null}, {"text": "dispersive", "start": 520, "end": 530, "annotation": null}, {"text": "x-ray", "start": 531, "end": 536, "annotation": null}, {"text": "spectroscopy", "start": 537, "end": 549, "annotation": null}, {"text": "line", "start": 550, "end": 554, "annotation": null}, {"text": "scans", "start": 555, "end": 560, "annotation": null}, {"text": "and", "start": 561, "end": 564, "annotation": null}, {"text": "secondary", "start": 565, "end": 574, "annotation": null}, {"text": "ion", "start": 575, "end": 578, "annotation": null}, {"text": "mass", "start": 579, "end": 583, "annotation": null}, {"text": "spectroscopy", "start": 584, "end": 596, "annotation": null}, {"text": "depth", "start": 597, "end": 602, "annotation": null}, {"text": "profiling", "start": 603, "end": 612, "annotation": null}, {"text": "showed", "start": 613, "end": 619, "annotation": null}, {"text": "that", "start": 620, "end": 624, "annotation": null}, {"text": "the", "start": 625, "end": 628, "annotation": null}, {"text": "oxide", "start": 629, "end": 634, "annotation": null}, {"text": "scale", "start": 635, "end": 640, "annotation": null}, {"text": "consists", "start": 641, "end": 649, "annotation": null}, {"text": "of", "start": 650, "end": 652, "annotation": null}, {"text": "an", "start": 653, "end": 655, "annotation": null}, {"text": "Al", "start": 656, "end": 658, "annotation": null}, {"text": "-", "start": 658, "end": 659, "annotation": null}, {"text": "rich", "start": 659, "end": 663, "annotation": null}, {"text": "top", "start": 664, "end": 667, "annotation": null}, {"text": "layer", "start": 668, "end": 673, "annotation": null}, {"text": "without", "start": 674, "end": 681, "annotation": null}, {"text": "detectable", "start": 682, "end": 692, "annotation": null}, {"text": "amount", "start": 693, "end": 699, "annotation": null}, {"text": "of", "start": 700, "end": 702, "annotation": null}, {"text": "Ta", "start": 703, "end": 705, "annotation": null}, {"text": "and", "start": 706, "end": 709, "annotation": null}, {"text": "a", "start": 710, "end": 711, "annotation": null}, {"text": "Ti-Ta", "start": 712, "end": 717, "annotation": null}, {"text": "-", "start": 717, "end": 718, "annotation": null}, {"text": "rich", "start": 718, "end": 722, "annotation": null}, {"text": "sublayer", "start": 723, "end": 731, "annotation": null}, {"text": ".", "start": 731, "end": 732, "annotation": null}], [{"text": "Transmission", "start": 733, "end": 745, "annotation": null}, {"text": "electron", "start": 746, "end": 754, "annotation": null}, {"text": "microscopy", "start": 755, "end": 765, "annotation": null}, {"text": "investigations", "start": 766, "end": 780, "annotation": null}, {"text": "revealed", "start": 781, "end": 789, "annotation": null}, {"text": "\u03b1-", "start": 790, "end": 792, "annotation": null}, {"text": "Al2", "start": 793, "end": 796, "annotation": null}, {"text": "O3", "start": 797, "end": 799, "annotation": null}, {"text": ",", "start": 799, "end": 800, "annotation": null}, {"text": "rutile", "start": 801, "end": 807, "annotation": null}, {"text": "-", "start": 807, "end": 808, "annotation": null}, {"text": "type", "start": 808, "end": 812, "annotation": null}, {"text": "Ti", "start": 813, "end": 815, "annotation": null}, {"text": "O2", "start": 816, "end": 818, "annotation": null}, {"text": ",", "start": 818, "end": 819, "annotation": null}, {"text": "and", "start": 820, "end": 823, "annotation": null}, {"text": "anatase", "start": 824, "end": 831, "annotation": null}, {"text": "-", "start": 831, "end": 832, "annotation": null}, {"text": "type", "start": 832, "end": 836, "annotation": null}, {"text": "Ti", "start": 837, "end": 839, "annotation": null}, {"text": "O2", "start": 840, "end": 842, "annotation": null}, {"text": "as", "start": 843, "end": 845, "annotation": null}, {"text": "the", "start": 846, "end": 849, "annotation": null}, {"text": "scale", "start": 850, "end": 855, "annotation": null}, {"text": "forming", "start": 856, "end": 863, "annotation": null}, {"text": "oxides", "start": 864, "end": 870, "annotation": null}, {"text": ".", "start": 870, "end": 871, "annotation": null}], [{"text": "Furthermore", "start": 872, "end": 883, "annotation": null}, {"text": ",", "start": 883, "end": 884, "annotation": null}, {"text": "the", "start": 885, "end": 888, "annotation": null}, {"text": "Ti-Ta", "start": 889, "end": 894, "annotation": null}, {"text": "-", "start": 894, "end": 895, "annotation": null}, {"text": "rich", "start": 895, "end": 899, "annotation": null}, {"text": "sublayer", "start": 900, "end": 908, "annotation": null}, {"text": "consists", "start": 909, "end": 917, "annotation": null}, {"text": "of", "start": 918, "end": 920, "annotation": null}, {"text": "a", "start": 921, "end": 922, "annotation": null}, {"text": "porous", "start": 923, "end": 929, "annotation": null}, {"text": "layer", "start": 930, "end": 935, "annotation": null}, {"text": "at", "start": 936, "end": 938, "annotation": null}, {"text": "the", "start": 939, "end": 942, "annotation": null}, {"text": "oxide", "start": 943, "end": 948, "annotation": null}, {"text": "-", "start": 948, "end": 949, "annotation": null}, {"text": "nitride", "start": 949, "end": 956, "annotation": null}, {"text": "interface", "start": 957, "end": 966, "annotation": null}, {"text": "but", "start": 967, "end": 970, "annotation": null}, {"text": "appears", "start": 971, "end": 978, "annotation": null}, {"text": "dense", "start": 979, "end": 984, "annotation": null}, {"text": "toward", "start": 985, "end": 991, "annotation": null}, {"text": "the", "start": 992, "end": 995, "annotation": null}, {"text": "Al", "start": 996, "end": 998, "annotation": null}, {"text": "-", "start": 998, "end": 999, "annotation": null}, {"text": "rich", "start": 999, "end": 1003, "annotation": null}, {"text": "top", "start": 1004, "end": 1007, "annotation": null}, {"text": "layer", "start": 1008, "end": 1013, "annotation": null}, {"text": ".", "start": 1013, "end": 1014, "annotation": null}], [{"text": "The", "start": 1015, "end": 1018, "annotation": null}, {"text": "improved", "start": 1019, "end": 1027, "annotation": null}, {"text": "oxidation", "start": 1028, "end": 1037, "annotation": null}, {"text": "resistance", "start": 1038, "end": 1048, "annotation": null}, {"text": "is", "start": 1049, "end": 1051, "annotation": null}, {"text": "explained", "start": 1052, "end": 1061, "annotation": null}, {"text": "by", "start": 1062, "end": 1064, "annotation": null}, {"text": "doping", "start": 1065, "end": 1071, "annotation": null}, {"text": "the", "start": 1072, "end": 1075, "annotation": null}, {"text": "Ti", "start": 1076, "end": 1078, "annotation": "BASEMAT"}, {"text": "O2", "start": 1079, "end": 1081, "annotation": "BASEMAT"}, {"text": "lattice", "start": 1082, "end": 1089, "annotation": null}, {"text": "by", "start": 1090, "end": 1092, "annotation": null}, {"text": "replacing", "start": 1093, "end": 1102, "annotation": null}, {"text": "Ti4+", "start": 1103, "end": 1107, "annotation": "DOPANT"}, {"text": "with", "start": 1108, "end": 1112, "annotation": null}, {"text": "Ta5+", "start": 1113, "end": 1117, "annotation": "DOPANT"}, {"text": "in", "start": 1118, "end": 1120, "annotation": null}, {"text": "the", "start": 1121, "end": 1124, "annotation": null}, {"text": "rutile", "start": 1125, "end": 1131, "annotation": null}, {"text": "lattice", "start": 1132, "end": 1139, "annotation": null}, {"text": ",", "start": 1139, "end": 1140, "annotation": null}, {"text": "which", "start": 1141, "end": 1146, "annotation": null}, {"text": "decreases", "start": 1147, "end": 1156, "annotation": null}, {"text": "the", "start": 1157, "end": 1160, "annotation": null}, {"text": "oxygen", "start": 1161, "end": 1167, "annotation": null}, {"text": "mass", "start": 1168, "end": 1172, "annotation": null}, {"text": "transport", "start": 1173, "end": 1182, "annotation": null}, {"text": ".", "start": 1182, "end": 1183, "annotation": null}], [{"text": "This", "start": 1184, "end": 1188, "annotation": null}, {"text": "leads", "start": 1189, "end": 1194, "annotation": null}, {"text": "to", "start": 1195, "end": 1197, "annotation": null}, {"text": "reduced", "start": 1198, "end": 1205, "annotation": null}, {"text": "oxidation", "start": 1206, "end": 1215, "annotation": null}, {"text": "of", "start": 1216, "end": 1218, "annotation": null}, {"text": "Ti", "start": 1219, "end": 1221, "annotation": null}, {"text": "under", "start": 1222, "end": 1227, "annotation": null}, {"text": "formation", "start": 1228, "end": 1237, "annotation": null}, {"text": "of", "start": 1238, "end": 1240, "annotation": null}, {"text": "Ti", "start": 1241, "end": 1243, "annotation": null}, {"text": "O2", "start": 1244, "end": 1246, "annotation": null}, {"text": "at", "start": 1247, "end": 1249, "annotation": null}, {"text": "the", "start": 1250, "end": 1253, "annotation": null}, {"text": "oxide", "start": 1254, "end": 1259, "annotation": null}, {"text": "-", "start": 1259, "end": 1260, "annotation": null}, {"text": "nitride", "start": 1260, "end": 1267, "annotation": null}, {"text": "interface", "start": 1268, "end": 1277, "annotation": null}, {"text": "and", "start": 1278, "end": 1281, "annotation": null}, {"text": "is", "start": 1282, "end": 1284, "annotation": null}, {"text": "the", "start": 1285, "end": 1288, "annotation": null}, {"text": "reason", "start": 1289, "end": 1295, "annotation": null}, {"text": "for", "start": 1296, "end": 1299, "annotation": null}, {"text": "the", "start": 1300, "end": 1303, "annotation": null}, {"text": "excellent", "start": 1304, "end": 1313, "annotation": null}, {"text": "oxidation", "start": 1314, "end": 1323, "annotation": null}, {"text": "behavior", "start": 1324, "end": 1332, "annotation": null}, {"text": "of", "start": 1333, "end": 1335, "annotation": null}, {"text": "Ti-Al-Ta-N", "start": 1336, "end": 1346, "annotation": null}, {"text": "coatings", "start": 1347, "end": 1355, "annotation": null}, {"text": ".", "start": 1355, "end": 1356, "annotation": null}]], "meta": {"doi": "10.1116/1.3119671"}} +{"remark": "doping_annt1", "text": "n-type 0.1 wt% SbI3-doped Bi2Te2.85Se0.15 compounds were fabricated by hot pressing and hot extrusion. The hot pressed compounds were densified up to 99.2% of theoretical density. The grains were preferentially oriented and contained many dislocations due to the hot pressing. The figure of merit of the compounds hot pressed at 420\u00b0C was 2.35 \u00d7 10-3/K. On the other hand, the grains of the extruded compounds were small, equiaxed, (\u223c1.0 \u03bcm) and contained many dislocations due to the dynamic recrystallization during the extrusion. The fine grains significantly improved the bending strength and figure of merit. The grains were also preferentially oriented through the extrusion. The bending strength and figure of merit were increased with increasing extrusion temperature. The figure of merit of the compounds hot extruded at 440\u00b0C was 2.62 \u00d7 10-3/K.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "n", "start": 0, "end": 1, "annotation": null}, {"text": "-", "start": 1, "end": 2, "annotation": null}, {"text": "type", "start": 2, "end": 6, "annotation": null}, {"text": "0.1", "start": 7, "end": 10, "annotation": "DOPMODQ"}, {"text": "wt", "start": 11, "end": 13, "annotation": "DOPMODQ"}, {"text": "%", "start": 13, "end": 14, "annotation": "DOPMODQ"}, {"text": "SbI3", "start": 15, "end": 19, "annotation": "DOPANT"}, {"text": "-", "start": 19, "end": 20, "annotation": null}, {"text": "doped", "start": 20, "end": 25, "annotation": null}, {"text": "Bi2Te2.85Se0.15", "start": 26, "end": 41, "annotation": "BASEMAT"}, {"text": "compounds", "start": 42, "end": 51, "annotation": null}, {"text": "were", "start": 52, "end": 56, "annotation": null}, {"text": "fabricated", "start": 57, "end": 67, "annotation": null}, {"text": "by", "start": 68, "end": 70, "annotation": null}, {"text": "hot", "start": 71, "end": 74, "annotation": null}, {"text": "pressing", "start": 75, "end": 83, "annotation": null}, {"text": "and", "start": 84, "end": 87, "annotation": null}, {"text": "hot", "start": 88, "end": 91, "annotation": null}, {"text": "extrusion", "start": 92, "end": 101, "annotation": null}, {"text": ".", "start": 101, "end": 102, "annotation": null}], [{"text": "The", "start": 103, "end": 106, "annotation": null}, {"text": "hot", "start": 107, "end": 110, "annotation": null}, {"text": "pressed", "start": 111, "end": 118, "annotation": null}, {"text": "compounds", "start": 119, "end": 128, "annotation": null}, {"text": "were", "start": 129, "end": 133, "annotation": null}, {"text": "densified", "start": 134, "end": 143, "annotation": null}, {"text": "up", "start": 144, "end": 146, "annotation": null}, {"text": "to", "start": 147, "end": 149, "annotation": null}, {"text": "99.2", "start": 150, "end": 154, "annotation": null}, {"text": "%", "start": 154, "end": 155, "annotation": null}, {"text": "of", "start": 156, "end": 158, "annotation": null}, {"text": "theoretical", "start": 159, "end": 170, "annotation": null}, {"text": "density", "start": 171, "end": 178, "annotation": null}, {"text": ".", "start": 178, "end": 179, "annotation": null}], [{"text": "The", "start": 180, "end": 183, "annotation": null}, {"text": "grains", "start": 184, "end": 190, "annotation": null}, {"text": "were", "start": 191, "end": 195, "annotation": null}, {"text": "preferentially", "start": 196, "end": 210, "annotation": null}, {"text": "oriented", "start": 211, "end": 219, "annotation": null}, {"text": "and", "start": 220, "end": 223, "annotation": null}, {"text": "contained", "start": 224, "end": 233, "annotation": null}, {"text": "many", "start": 234, "end": 238, "annotation": null}, {"text": "dislocations", "start": 239, "end": 251, "annotation": null}, {"text": "due", "start": 252, "end": 255, "annotation": null}, {"text": "to", "start": 256, "end": 258, "annotation": null}, {"text": "the", "start": 259, "end": 262, "annotation": null}, {"text": "hot", "start": 263, "end": 266, "annotation": null}, {"text": "pressing", "start": 267, "end": 275, "annotation": null}, {"text": ".", "start": 275, "end": 276, "annotation": null}], [{"text": "The", "start": 277, "end": 280, "annotation": null}, {"text": "figure", "start": 281, "end": 287, "annotation": null}, {"text": "of", "start": 288, "end": 290, "annotation": null}, {"text": "merit", "start": 291, "end": 296, "annotation": null}, {"text": "of", "start": 297, "end": 299, "annotation": null}, {"text": "the", "start": 300, "end": 303, "annotation": null}, {"text": "compounds", "start": 304, "end": 313, "annotation": null}, {"text": "hot", "start": 314, "end": 317, "annotation": null}, {"text": "pressed", "start": 318, "end": 325, "annotation": null}, {"text": "at", "start": 326, "end": 328, "annotation": null}, {"text": "420", "start": 329, "end": 332, "annotation": null}, {"text": "\u00b0", "start": 332, "end": 333, "annotation": null}, {"text": "C", "start": 333, "end": 334, "annotation": null}, {"text": "was", "start": 335, "end": 338, "annotation": null}, {"text": "2.35", "start": 339, "end": 343, "annotation": null}, {"text": "\u00d7", "start": 344, "end": 345, "annotation": null}, {"text": "10-3", "start": 346, "end": 350, "annotation": null}, {"text": "/", "start": 350, "end": 351, "annotation": null}, {"text": "K", "start": 351, "end": 352, "annotation": null}, {"text": ".", "start": 352, "end": 353, "annotation": null}], [{"text": "On", "start": 354, "end": 356, "annotation": null}, {"text": "the", "start": 357, "end": 360, "annotation": null}, {"text": "other", "start": 361, "end": 366, "annotation": null}, {"text": "hand", "start": 367, "end": 371, "annotation": null}, {"text": ",", "start": 371, "end": 372, "annotation": null}, {"text": "the", "start": 373, "end": 376, "annotation": null}, {"text": "grains", "start": 377, "end": 383, "annotation": null}, {"text": "of", "start": 384, "end": 386, "annotation": null}, {"text": "the", "start": 387, "end": 390, "annotation": null}, {"text": "extruded", "start": 391, "end": 399, "annotation": null}, {"text": "compounds", "start": 400, "end": 409, "annotation": null}, {"text": "were", "start": 410, "end": 414, "annotation": null}, {"text": "small", "start": 415, "end": 420, "annotation": null}, {"text": ",", "start": 420, "end": 421, "annotation": null}, {"text": "equiaxed", "start": 422, "end": 430, "annotation": null}, {"text": ",", "start": 430, "end": 431, "annotation": null}, {"text": "(", "start": 432, "end": 433, "annotation": null}, {"text": "\u223c", "start": 433, "end": 434, "annotation": null}, {"text": "1.0", "start": 434, "end": 437, "annotation": null}, {"text": "\u03bcm", "start": 438, "end": 440, "annotation": null}, {"text": ")", "start": 440, "end": 441, "annotation": null}, {"text": "and", "start": 442, "end": 445, "annotation": null}, {"text": "contained", "start": 446, "end": 455, "annotation": null}, {"text": "many", "start": 456, "end": 460, "annotation": null}, {"text": "dislocations", "start": 461, "end": 473, "annotation": null}, {"text": "due", "start": 474, "end": 477, "annotation": null}, {"text": "to", "start": 478, "end": 480, "annotation": null}, {"text": "the", "start": 481, "end": 484, "annotation": null}, {"text": "dynamic", "start": 485, "end": 492, "annotation": null}, {"text": "recrystallization", "start": 493, "end": 510, "annotation": null}, {"text": "during", "start": 511, "end": 517, "annotation": null}, {"text": "the", "start": 518, "end": 521, "annotation": null}, {"text": "extrusion", "start": 522, "end": 531, "annotation": null}, {"text": ".", "start": 531, "end": 532, "annotation": null}], [{"text": "The", "start": 533, "end": 536, "annotation": null}, {"text": "fine", "start": 537, "end": 541, "annotation": null}, {"text": "grains", "start": 542, "end": 548, "annotation": null}, {"text": "significantly", "start": 549, "end": 562, "annotation": null}, {"text": "improved", "start": 563, "end": 571, "annotation": null}, {"text": "the", "start": 572, "end": 575, "annotation": null}, {"text": "bending", "start": 576, "end": 583, "annotation": null}, {"text": "strength", "start": 584, "end": 592, "annotation": null}, {"text": "and", "start": 593, "end": 596, "annotation": null}, {"text": "figure", "start": 597, "end": 603, "annotation": null}, {"text": "of", "start": 604, "end": 606, "annotation": null}, {"text": "merit", "start": 607, "end": 612, "annotation": null}, {"text": ".", "start": 612, "end": 613, "annotation": null}], [{"text": "The", "start": 614, "end": 617, "annotation": null}, {"text": "grains", "start": 618, "end": 624, "annotation": null}, {"text": "were", "start": 625, "end": 629, "annotation": null}, {"text": "also", "start": 630, "end": 634, "annotation": null}, {"text": "preferentially", "start": 635, "end": 649, "annotation": null}, {"text": "oriented", "start": 650, "end": 658, "annotation": null}, {"text": "through", "start": 659, "end": 666, "annotation": null}, {"text": "the", "start": 667, "end": 670, "annotation": null}, {"text": "extrusion", "start": 671, "end": 680, "annotation": null}, {"text": ".", "start": 680, "end": 681, "annotation": null}], [{"text": "The", "start": 682, "end": 685, "annotation": null}, {"text": "bending", "start": 686, "end": 693, "annotation": null}, {"text": "strength", "start": 694, "end": 702, "annotation": null}, {"text": "and", "start": 703, "end": 706, "annotation": null}, {"text": "figure", "start": 707, "end": 713, "annotation": null}, {"text": "of", "start": 714, "end": 716, "annotation": null}, {"text": "merit", "start": 717, "end": 722, "annotation": null}, {"text": "were", "start": 723, "end": 727, "annotation": null}, {"text": "increased", "start": 728, "end": 737, "annotation": null}, {"text": "with", "start": 738, "end": 742, "annotation": null}, {"text": "increasing", "start": 743, "end": 753, "annotation": null}, {"text": "extrusion", "start": 754, "end": 763, "annotation": null}, {"text": "temperature", "start": 764, "end": 775, "annotation": null}, {"text": ".", "start": 775, "end": 776, "annotation": null}], [{"text": "The", "start": 777, "end": 780, "annotation": null}, {"text": "figure", "start": 781, "end": 787, "annotation": null}, {"text": "of", "start": 788, "end": 790, "annotation": null}, {"text": "merit", "start": 791, "end": 796, "annotation": null}, {"text": "of", "start": 797, "end": 799, "annotation": null}, {"text": "the", "start": 800, "end": 803, "annotation": null}, {"text": "compounds", "start": 804, "end": 813, "annotation": null}, {"text": "hot", "start": 814, "end": 817, "annotation": null}, {"text": "extruded", "start": 818, "end": 826, "annotation": null}, {"text": "at", "start": 827, "end": 829, "annotation": null}, {"text": "440", "start": 830, "end": 833, "annotation": null}, {"text": "\u00b0", "start": 833, "end": 834, "annotation": null}, {"text": "C", "start": 834, "end": 835, "annotation": null}, {"text": "was", "start": 836, "end": 839, "annotation": null}, {"text": "2.62", "start": 840, "end": 844, "annotation": null}, {"text": "\u00d7", "start": 845, "end": 846, "annotation": null}, {"text": "10-3", "start": 847, "end": 851, "annotation": null}, {"text": "/", "start": 851, "end": 852, "annotation": null}, {"text": "K", "start": 852, "end": 853, "annotation": null}, {"text": ".", "start": 853, "end": 854, "annotation": null}]], "meta": {"doi": "10.1023/A:1004713920086"}} +{"remark": "doping_annt3", "text": "We report on what is, to the best of our knowledge, the highest power reached with an Yb:Lu 2O 3 thin-disk laser in the continuous wave (CW) regime reported to date. A maximum output power of 670 W was demonstrated with a Vshaped resonator design. This result was achieved by pumping this laser active material at its zero-phonon absorption line at 976 nm. The potential of Yb:Lu 2O 3 as well as its limitations are discussed on the basis of several experimental investigations including thermal analysis and laser performance characterization for different doping concentrations. \u00a9 2012 by Astro Ltd.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "report", "start": 3, "end": 9, "annotation": null}, {"text": "on", "start": 10, "end": 12, "annotation": null}, {"text": "what", "start": 13, "end": 17, "annotation": null}, {"text": "is", "start": 18, "end": 20, "annotation": null}, {"text": ",", "start": 20, "end": 21, "annotation": null}, {"text": "to", "start": 22, "end": 24, "annotation": null}, {"text": "the", "start": 25, "end": 28, "annotation": null}, {"text": "best", "start": 29, "end": 33, "annotation": null}, {"text": "of", "start": 34, "end": 36, "annotation": null}, {"text": "our", "start": 37, "end": 40, "annotation": null}, {"text": "knowledge", "start": 41, "end": 50, "annotation": null}, {"text": ",", "start": 50, "end": 51, "annotation": null}, {"text": "the", "start": 52, "end": 55, "annotation": null}, {"text": "highest", "start": 56, "end": 63, "annotation": null}, {"text": "power", "start": 64, "end": 69, "annotation": null}, {"text": "reached", "start": 70, "end": 77, "annotation": null}, {"text": "with", "start": 78, "end": 82, "annotation": null}, {"text": "an", "start": 83, "end": 85, "annotation": null}, {"text": "Yb", "start": 86, "end": 88, "annotation": "DOPANT"}, {"text": ":", "start": 88, "end": 89, "annotation": null}, {"text": "Lu", "start": 89, "end": 91, "annotation": "BASEMAT"}, {"text": "2O", "start": 92, "end": 94, "annotation": "BASEMAT"}, {"text": "3", "start": 95, "end": 96, "annotation": "BASEMAT"}, {"text": "thin", "start": 97, "end": 101, "annotation": null}, {"text": "-", "start": 101, "end": 102, "annotation": null}, {"text": "disk", "start": 102, "end": 106, "annotation": null}, {"text": "laser", "start": 107, "end": 112, "annotation": null}, {"text": "in", "start": 113, "end": 115, "annotation": null}, {"text": "the", "start": 116, "end": 119, "annotation": null}, {"text": "continuous", "start": 120, "end": 130, "annotation": null}, {"text": "wave", "start": 131, "end": 135, "annotation": null}, {"text": "(", "start": 136, "end": 137, "annotation": null}, {"text": "CW", "start": 137, "end": 139, "annotation": null}, {"text": ")", "start": 139, "end": 140, "annotation": null}, {"text": "regime", "start": 141, "end": 147, "annotation": null}, {"text": "reported", "start": 148, "end": 156, "annotation": null}, {"text": "to", "start": 157, "end": 159, "annotation": null}, {"text": "date", "start": 160, "end": 164, "annotation": null}, {"text": ".", "start": 164, "end": 165, "annotation": null}], [{"text": "A", "start": 166, "end": 167, "annotation": null}, {"text": "maximum", "start": 168, "end": 175, "annotation": null}, {"text": "output", "start": 176, "end": 182, "annotation": null}, {"text": "power", "start": 183, "end": 188, "annotation": null}, {"text": "of", "start": 189, "end": 191, "annotation": null}, {"text": "670", "start": 192, "end": 195, "annotation": null}, {"text": "W", "start": 196, "end": 197, "annotation": null}, {"text": "was", "start": 198, "end": 201, "annotation": null}, {"text": "demonstrated", "start": 202, "end": 214, "annotation": null}, {"text": "with", "start": 215, "end": 219, "annotation": null}, {"text": "a", "start": 220, "end": 221, "annotation": null}, {"text": "Vshaped", "start": 222, "end": 229, "annotation": null}, {"text": "resonator", "start": 230, "end": 239, "annotation": null}, {"text": "design", "start": 240, "end": 246, "annotation": null}, {"text": ".", "start": 246, "end": 247, "annotation": null}], [{"text": "This", "start": 248, "end": 252, "annotation": null}, {"text": "result", "start": 253, "end": 259, "annotation": null}, {"text": "was", "start": 260, "end": 263, "annotation": null}, {"text": "achieved", "start": 264, "end": 272, "annotation": null}, {"text": "by", "start": 273, "end": 275, "annotation": null}, {"text": "pumping", "start": 276, "end": 283, "annotation": null}, {"text": "this", "start": 284, "end": 288, "annotation": null}, {"text": "laser", "start": 289, "end": 294, "annotation": null}, {"text": "active", "start": 295, "end": 301, "annotation": null}, {"text": "material", "start": 302, "end": 310, "annotation": null}, {"text": "at", "start": 311, "end": 313, "annotation": null}, {"text": "its", "start": 314, "end": 317, "annotation": null}, {"text": "zero", "start": 318, "end": 322, "annotation": null}, {"text": "-", "start": 322, "end": 323, "annotation": null}, {"text": "phonon", "start": 323, "end": 329, "annotation": null}, {"text": "absorption", "start": 330, "end": 340, "annotation": null}, {"text": "line", "start": 341, "end": 345, "annotation": null}, {"text": "at", "start": 346, "end": 348, "annotation": null}, {"text": "976", "start": 349, "end": 352, "annotation": null}, {"text": "nm", "start": 353, "end": 355, "annotation": null}, {"text": ".", "start": 355, "end": 356, "annotation": null}], [{"text": "The", "start": 357, "end": 360, "annotation": null}, {"text": "potential", "start": 361, "end": 370, "annotation": null}, {"text": "of", "start": 371, "end": 373, "annotation": null}, {"text": "Yb", "start": 374, "end": 376, "annotation": "DOPANT"}, {"text": ":", "start": 376, "end": 377, "annotation": null}, {"text": "Lu", "start": 377, "end": 379, "annotation": "BASEMAT"}, {"text": "2O", "start": 380, "end": 382, "annotation": "BASEMAT"}, {"text": "3", "start": 383, "end": 384, "annotation": "BASEMAT"}, {"text": "as", "start": 385, "end": 387, "annotation": null}, {"text": "well", "start": 388, "end": 392, "annotation": null}, {"text": "as", "start": 393, "end": 395, "annotation": null}, {"text": "its", "start": 396, "end": 399, "annotation": null}, {"text": "limitations", "start": 400, "end": 411, "annotation": null}, {"text": "are", "start": 412, "end": 415, "annotation": null}, {"text": "discussed", "start": 416, "end": 425, "annotation": null}, {"text": "on", "start": 426, "end": 428, "annotation": null}, {"text": "the", "start": 429, "end": 432, "annotation": null}, {"text": "basis", "start": 433, "end": 438, "annotation": null}, {"text": "of", "start": 439, "end": 441, "annotation": null}, {"text": "several", "start": 442, "end": 449, "annotation": null}, {"text": "experimental", "start": 450, "end": 462, "annotation": null}, {"text": "investigations", "start": 463, "end": 477, "annotation": null}, {"text": "including", "start": 478, "end": 487, "annotation": null}, {"text": "thermal", "start": 488, "end": 495, "annotation": null}, {"text": "analysis", "start": 496, "end": 504, "annotation": null}, {"text": "and", "start": 505, "end": 508, "annotation": null}, {"text": "laser", "start": 509, "end": 514, "annotation": null}, {"text": "performance", "start": 515, "end": 526, "annotation": null}, {"text": "characterization", "start": 527, "end": 543, "annotation": null}, {"text": "for", "start": 544, "end": 547, "annotation": null}, {"text": "different", "start": 548, "end": 557, "annotation": null}, {"text": "doping", "start": 558, "end": 564, "annotation": null}, {"text": "concentrations", "start": 565, "end": 579, "annotation": null}, {"text": ".", "start": 579, "end": 580, "annotation": null}]], "meta": {"doi": "10.1002/lapl.201110104"}} +{"remark": "doping_annt2", "text": "A new solid niobic acid phase, H2(H2O)Nb2O6, with fluorine (F) doping was crystallized using hydrothermal chemistry. F-doped H2(H2O)Nb2O6 octahedra could function as an efficient heterogeneous catalyst for the photodegradation of organic pollutants in water under UV light irradiation. The high photocatalytic activity of the F-doped H2(H2O)Nb2O6 materials is attributed to a synergistic effect of the specific surface area, the surface characteristics and the crystal structure. Our results suggest novel ways of controlling the crystallization of niobium oxides, further the fundamental understanding of their structure\u2013property relationships, and may lead to their application in fields such as environmental protection and energy production.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "new", "start": 2, "end": 5, "annotation": null}, {"text": "solid", "start": 6, "end": 11, "annotation": null}, {"text": "niobic", "start": 12, "end": 18, "annotation": null}, {"text": "acid", "start": 19, "end": 23, "annotation": null}, {"text": "phase", "start": 24, "end": 29, "annotation": null}, {"text": ",", "start": 29, "end": 30, "annotation": null}, {"text": "H2(H2O)Nb2O6", "start": 31, "end": 43, "annotation": "BASEMAT"}, {"text": ",", "start": 43, "end": 44, "annotation": null}, {"text": "with", "start": 45, "end": 49, "annotation": null}, {"text": "fluorine", "start": 50, "end": 58, "annotation": "DOPANT"}, {"text": "(", "start": 59, "end": 60, "annotation": null}, {"text": "F", "start": 60, "end": 61, "annotation": "DOPANT"}, {"text": ")", "start": 61, "end": 62, "annotation": null}, {"text": "doping", "start": 63, "end": 69, "annotation": null}, {"text": "was", "start": 70, "end": 73, "annotation": null}, {"text": "crystallized", "start": 74, "end": 86, "annotation": null}, {"text": "using", "start": 87, "end": 92, "annotation": null}, {"text": "hydrothermal", "start": 93, "end": 105, "annotation": null}, {"text": "chemistry", "start": 106, "end": 115, "annotation": null}, {"text": ".", "start": 115, "end": 116, "annotation": null}], [{"text": "F", "start": 117, "end": 118, "annotation": "DOPANT"}, {"text": "-", "start": 118, "end": 119, "annotation": null}, {"text": "doped", "start": 119, "end": 124, "annotation": null}, {"text": "H2(H2O)Nb2O6", "start": 125, "end": 137, "annotation": "BASEMAT"}, {"text": "octahedra", "start": 138, "end": 147, "annotation": null}, {"text": "could", "start": 148, "end": 153, "annotation": null}, {"text": "function", "start": 154, "end": 162, "annotation": null}, {"text": "as", "start": 163, "end": 165, "annotation": null}, {"text": "an", "start": 166, "end": 168, "annotation": null}, {"text": "efficient", "start": 169, "end": 178, "annotation": null}, {"text": "heterogeneous", "start": 179, "end": 192, "annotation": null}, {"text": "catalyst", "start": 193, "end": 201, "annotation": null}, {"text": "for", "start": 202, "end": 205, "annotation": null}, {"text": "the", "start": 206, "end": 209, "annotation": null}, {"text": "photodegradation", "start": 210, "end": 226, "annotation": null}, {"text": "of", "start": 227, "end": 229, "annotation": null}, {"text": "organic", "start": 230, "end": 237, "annotation": null}, {"text": "pollutants", "start": 238, "end": 248, "annotation": null}, {"text": "in", "start": 249, "end": 251, "annotation": null}, {"text": "water", "start": 252, "end": 257, "annotation": null}, {"text": "under", "start": 258, "end": 263, "annotation": null}, {"text": "UV", "start": 264, "end": 266, "annotation": null}, {"text": "light", "start": 267, "end": 272, "annotation": null}, {"text": "irradiation", "start": 273, "end": 284, "annotation": null}, {"text": ".", "start": 284, "end": 285, "annotation": null}], [{"text": "The", "start": 286, "end": 289, "annotation": null}, {"text": "high", "start": 290, "end": 294, "annotation": null}, {"text": "photocatalytic", "start": 295, "end": 309, "annotation": null}, {"text": "activity", "start": 310, "end": 318, "annotation": null}, {"text": "of", "start": 319, "end": 321, "annotation": null}, {"text": "the", "start": 322, "end": 325, "annotation": null}, {"text": "F", "start": 326, "end": 327, "annotation": "DOPANT"}, {"text": "-", "start": 327, "end": 328, "annotation": null}, {"text": "doped", "start": 328, "end": 333, "annotation": null}, {"text": "H2(H2O)Nb2O6", "start": 334, "end": 346, "annotation": "BASEMAT"}, {"text": "materials", "start": 347, "end": 356, "annotation": null}, {"text": "is", "start": 357, "end": 359, "annotation": null}, {"text": "attributed", "start": 360, "end": 370, "annotation": null}, {"text": "to", "start": 371, "end": 373, "annotation": null}, {"text": "a", "start": 374, "end": 375, "annotation": null}, {"text": "synergistic", "start": 376, "end": 387, "annotation": null}, {"text": "effect", "start": 388, "end": 394, "annotation": null}, {"text": "of", "start": 395, "end": 397, "annotation": null}, {"text": "the", "start": 398, "end": 401, "annotation": null}, {"text": "specific", "start": 402, "end": 410, "annotation": null}, {"text": "surface", "start": 411, "end": 418, "annotation": null}, {"text": "area", "start": 419, "end": 423, "annotation": null}, {"text": ",", "start": 423, "end": 424, "annotation": null}, {"text": "the", "start": 425, "end": 428, "annotation": null}, {"text": "surface", "start": 429, "end": 436, "annotation": null}, {"text": "characteristics", "start": 437, "end": 452, "annotation": null}, {"text": "and", "start": 453, "end": 456, "annotation": null}, {"text": "the", "start": 457, "end": 460, "annotation": null}, {"text": "crystal", "start": 461, "end": 468, "annotation": null}, {"text": "structure", "start": 469, "end": 478, "annotation": null}, {"text": ".", "start": 478, "end": 479, "annotation": null}], [{"text": "Our", "start": 480, "end": 483, "annotation": null}, {"text": "results", "start": 484, "end": 491, "annotation": null}, {"text": "suggest", "start": 492, "end": 499, "annotation": null}, {"text": "novel", "start": 500, "end": 505, "annotation": null}, {"text": "ways", "start": 506, "end": 510, "annotation": null}, {"text": "of", "start": 511, "end": 513, "annotation": null}, {"text": "controlling", "start": 514, "end": 525, "annotation": null}, {"text": "the", "start": 526, "end": 529, "annotation": null}, {"text": "crystallization", "start": 530, "end": 545, "annotation": null}, {"text": "of", "start": 546, "end": 548, "annotation": null}, {"text": "niobium", "start": 549, "end": 556, "annotation": null}, {"text": "oxides", "start": 557, "end": 563, "annotation": null}, {"text": ",", "start": 563, "end": 564, "annotation": null}, {"text": "further", "start": 565, "end": 572, "annotation": null}, {"text": "the", "start": 573, "end": 576, "annotation": null}, {"text": "fundamental", "start": 577, "end": 588, "annotation": null}, {"text": "understanding", "start": 589, "end": 602, "annotation": null}, {"text": "of", "start": 603, "end": 605, "annotation": null}, {"text": "their", "start": 606, "end": 611, "annotation": null}, {"text": "structure", "start": 612, "end": 621, "annotation": null}, {"text": "\u2013", "start": 621, "end": 622, "annotation": null}, {"text": "property", "start": 622, "end": 630, "annotation": null}, {"text": "relationships", "start": 631, "end": 644, "annotation": null}, {"text": ",", "start": 644, "end": 645, "annotation": null}, {"text": "and", "start": 646, "end": 649, "annotation": null}, {"text": "may", "start": 650, "end": 653, "annotation": null}, {"text": "lead", "start": 654, "end": 658, "annotation": null}, {"text": "to", "start": 659, "end": 661, "annotation": null}, {"text": "their", "start": 662, "end": 667, "annotation": null}, {"text": "application", "start": 668, "end": 679, "annotation": null}, {"text": "in", "start": 680, "end": 682, "annotation": null}, {"text": "fields", "start": 683, "end": 689, "annotation": null}, {"text": "such", "start": 690, "end": 694, "annotation": null}, {"text": "as", "start": 695, "end": 697, "annotation": null}, {"text": "environmental", "start": 698, "end": 711, "annotation": null}, {"text": "protection", "start": 712, "end": 722, "annotation": null}, {"text": "and", "start": 723, "end": 726, "annotation": null}, {"text": "energy", "start": 727, "end": 733, "annotation": null}, {"text": "production", "start": 734, "end": 744, "annotation": null}, {"text": ".", "start": 744, "end": 745, "annotation": null}]], "meta": {"doi": "10.1039/C4CE01213E"}} {"text": "The Mg-doping efficiency in GaN layers grown by molecular-beam epitaxy has been studied as a function of the growth temperature, the growth rate, and the Mg beam flux. The Mg cell temperature window for efficient p-type doping is rather narrow, being limited by the GaN n-type background doping density (lower limit) and by the Mg surface coverage that, beyond a threshold, induces a layer polarity inversion (N-polarity), leading to a reduction of the Mg incorporation (upper limit). An increase of the growth temperature avoids this polarity inversion, but the Mg flux must be increased to compensate the strong desorption rate. Thus, a trade-off between both temperatures has to be reached. A reduction of the growth rate has a strong effect on the p-type doping level, yielding up to 7\u00d71017holes/cm3 for a total Mg concentration of 1\u00d71019cm\u22123. This high Mg concentration does not seem to generate Mg-related defects or deep traps.", "meta": {"doi": "10.1016/j.jcrysgro.2004.07.019"}, "_input_hash": 1541845862, "_task_hash": 238574828, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "Mg", "start": 4, "end": 6, "id": 1, "annotation": "DOPANT"}, {"text": "-", "start": 7, "end": 8, "id": 2, "annotation": null}, {"text": "doping", "start": 9, "end": 15, "id": 3, "annotation": null}, {"text": "efficiency", "start": 16, "end": 26, "id": 4, "annotation": null}, {"text": "in", "start": 27, "end": 29, "id": 5, "annotation": null}, {"text": "GaN", "start": 30, "end": 33, "id": 6, "annotation": "BASEMAT"}, {"text": "layers", "start": 34, "end": 40, "id": 7, "annotation": null}, {"text": "grown", "start": 41, "end": 46, "id": 8, "annotation": null}, {"text": "by", "start": 47, "end": 49, "id": 9, "annotation": null}, {"text": "molecular", "start": 50, "end": 59, "id": 10, "annotation": null}, {"text": "-", "start": 60, "end": 61, "id": 11, "annotation": null}, {"text": "beam", "start": 62, "end": 66, "id": 12, "annotation": null}, {"text": "epitaxy", "start": 67, "end": 74, "id": 13, "annotation": null}, {"text": "has", "start": 75, "end": 78, "id": 14, "annotation": null}, {"text": "been", "start": 79, "end": 83, "id": 15, "annotation": null}, {"text": "studied", "start": 84, "end": 91, "id": 16, "annotation": null}, {"text": "as", "start": 92, "end": 94, "id": 17, "annotation": null}, {"text": "a", "start": 95, "end": 96, "id": 18, "annotation": null}, {"text": "function", "start": 97, "end": 105, "id": 19, "annotation": null}, {"text": "of", "start": 106, "end": 108, "id": 20, "annotation": null}, {"text": "the", "start": 109, "end": 112, "id": 21, "annotation": null}, {"text": "growth", "start": 113, "end": 119, "id": 22, "annotation": null}, {"text": "temperature", "start": 120, "end": 131, "id": 23, "annotation": null}, {"text": ",", "start": 132, "end": 133, "id": 24, "annotation": null}, {"text": "the", "start": 134, "end": 137, "id": 25, "annotation": null}, {"text": "growth", "start": 138, "end": 144, "id": 26, "annotation": null}, {"text": "rate", "start": 145, "end": 149, "id": 27, "annotation": null}, {"text": ",", "start": 150, "end": 151, "id": 28, "annotation": null}, {"text": "and", "start": 152, "end": 155, "id": 29, "annotation": null}, {"text": "the", "start": 156, "end": 159, "id": 30, "annotation": null}, {"text": "Mg", "start": 160, "end": 162, "id": 31, "annotation": null}, {"text": "beam", "start": 163, "end": 167, "id": 32, "annotation": null}, {"text": "flux", "start": 168, "end": 172, "id": 33, "annotation": null}, {"text": ".", "start": 173, "end": 174, "id": 34, "annotation": null}], [{"text": "The", "start": 175, "end": 178, "id": 35, "annotation": null}, {"text": "Mg", "start": 179, "end": 181, "id": 36, "annotation": null}, {"text": "cell", "start": 182, "end": 186, "id": 37, "annotation": null}, {"text": "temperature", "start": 187, "end": 198, "id": 38, "annotation": null}, {"text": "window", "start": 199, "end": 205, "id": 39, "annotation": null}, {"text": "for", "start": 206, "end": 209, "id": 40, "annotation": null}, {"text": "efficient", "start": 210, "end": 219, "id": 41, "annotation": null}, {"text": "p", "start": 220, "end": 221, "id": 42, "annotation": "DOPANT"}, {"text": "-", "start": 222, "end": 223, "id": 43, "annotation": null}, {"text": "type", "start": 224, "end": 228, "id": 44, "annotation": "DOPANT"}, {"text": "doping", "start": 229, "end": 235, "id": 45, "annotation": null}, {"text": "is", "start": 236, "end": 238, "id": 46, "annotation": null}, {"text": "rather", "start": 239, "end": 245, "id": 47, "annotation": null}, {"text": "narrow", "start": 246, "end": 252, "id": 48, "annotation": null}, {"text": ",", "start": 253, "end": 254, "id": 49, "annotation": null}, {"text": "being", "start": 255, "end": 260, "id": 50, "annotation": null}, {"text": "limited", "start": 261, "end": 268, "id": 51, "annotation": null}, {"text": "by", "start": 269, "end": 271, "id": 52, "annotation": null}, {"text": "the", "start": 272, "end": 275, "id": 53, "annotation": null}, {"text": "GaN", "start": 276, "end": 279, "id": 54, "annotation": "BASEMAT"}, {"text": "n", "start": 280, "end": 281, "id": 55, "annotation": "DOPANT"}, {"text": "-", "start": 282, "end": 283, "id": 56, "annotation": null}, {"text": "type", "start": 284, "end": 288, "id": 57, "annotation": "DOPANT"}, {"text": "background", "start": 289, "end": 299, "id": 58, "annotation": null}, {"text": "doping", "start": 300, "end": 306, "id": 59, "annotation": null}, {"text": "density", "start": 307, "end": 314, "id": 60, "annotation": null}, {"text": "(", "start": 315, "end": 316, "id": 61, "annotation": null}, {"text": "lower", "start": 317, "end": 322, "id": 62, "annotation": null}, {"text": "limit", "start": 323, "end": 328, "id": 63, "annotation": null}, {"text": ")", "start": 329, "end": 330, "id": 64, "annotation": null}, {"text": "and", "start": 331, "end": 334, "id": 65, "annotation": null}, {"text": "by", "start": 335, "end": 337, "id": 66, "annotation": null}, {"text": "the", "start": 338, "end": 341, "id": 67, "annotation": null}, {"text": "Mg", "start": 342, "end": 344, "id": 68, "annotation": null}, {"text": "surface", "start": 345, "end": 352, "id": 69, "annotation": null}, {"text": "coverage", "start": 353, "end": 361, "id": 70, "annotation": null}, {"text": "that", "start": 362, "end": 366, "id": 71, "annotation": null}, {"text": ",", "start": 367, "end": 368, "id": 72, "annotation": null}, {"text": "beyond", "start": 369, "end": 375, "id": 73, "annotation": null}, {"text": "a", "start": 376, "end": 377, "id": 74, "annotation": null}, {"text": "threshold", "start": 378, "end": 387, "id": 75, "annotation": null}, {"text": ",", "start": 388, "end": 389, "id": 76, "annotation": null}, {"text": "induces", "start": 390, "end": 397, "id": 77, "annotation": null}, {"text": "a", "start": 398, "end": 399, "id": 78, "annotation": null}, {"text": "layer", "start": 400, "end": 405, "id": 79, "annotation": null}, {"text": "polarity", "start": 406, "end": 414, "id": 80, "annotation": null}, {"text": "inversion", "start": 415, "end": 424, "id": 81, "annotation": null}, {"text": "(", "start": 425, "end": 426, "id": 82, "annotation": null}, {"text": "N", "start": 427, "end": 428, "id": 83, "annotation": null}, {"text": "-", "start": 429, "end": 430, "id": 84, "annotation": null}, {"text": "polarity", "start": 431, "end": 439, "id": 85, "annotation": null}, {"text": ")", "start": 440, "end": 441, "id": 86, "annotation": null}, {"text": ",", "start": 442, "end": 443, "id": 87, "annotation": null}, {"text": "leading", "start": 444, "end": 451, "id": 88, "annotation": null}, {"text": "to", "start": 452, "end": 454, "id": 89, "annotation": null}, {"text": "a", "start": 455, "end": 456, "id": 90, "annotation": null}, {"text": "reduction", "start": 457, "end": 466, "id": 91, "annotation": null}, {"text": "of", "start": 467, "end": 469, "id": 92, "annotation": null}, {"text": "the", "start": 470, "end": 473, "id": 93, "annotation": null}, {"text": "Mg", "start": 474, "end": 476, "id": 94, "annotation": null}, {"text": "incorporation", "start": 477, "end": 490, "id": 95, "annotation": null}, {"text": "(", "start": 491, "end": 492, "id": 96, "annotation": null}, {"text": "upper", "start": 493, "end": 498, "id": 97, "annotation": null}, {"text": "limit", "start": 499, "end": 504, "id": 98, "annotation": null}, {"text": ")", "start": 505, "end": 506, "id": 99, "annotation": null}, {"text": ".", "start": 507, "end": 508, "id": 100, "annotation": null}], [{"text": "An", "start": 509, "end": 511, "id": 101, "annotation": null}, {"text": "increase", "start": 512, "end": 520, "id": 102, "annotation": null}, {"text": "of", "start": 521, "end": 523, "id": 103, "annotation": null}, {"text": "the", "start": 524, "end": 527, "id": 104, "annotation": null}, {"text": "growth", "start": 528, "end": 534, "id": 105, "annotation": null}, {"text": "temperature", "start": 535, "end": 546, "id": 106, "annotation": null}, {"text": "avoids", "start": 547, "end": 553, "id": 107, "annotation": null}, {"text": "this", "start": 554, "end": 558, "id": 108, "annotation": null}, {"text": "polarity", "start": 559, "end": 567, "id": 109, "annotation": null}, {"text": "inversion", "start": 568, "end": 577, "id": 110, "annotation": null}, {"text": ",", "start": 578, "end": 579, "id": 111, "annotation": null}, {"text": "but", "start": 580, "end": 583, "id": 112, "annotation": null}, {"text": "the", "start": 584, "end": 587, "id": 113, "annotation": null}, {"text": "Mg", "start": 588, "end": 590, "id": 114, "annotation": null}, {"text": "flux", "start": 591, "end": 595, "id": 115, "annotation": null}, {"text": "must", "start": 596, "end": 600, "id": 116, "annotation": null}, {"text": "be", "start": 601, "end": 603, "id": 117, "annotation": null}, {"text": "increased", "start": 604, "end": 613, "id": 118, "annotation": null}, {"text": "to", "start": 614, "end": 616, "id": 119, "annotation": null}, {"text": "compensate", "start": 617, "end": 627, "id": 120, "annotation": null}, {"text": "the", "start": 628, "end": 631, "id": 121, "annotation": null}, {"text": "strong", "start": 632, "end": 638, "id": 122, "annotation": null}, {"text": "desorption", "start": 639, "end": 649, "id": 123, "annotation": null}, {"text": "rate", "start": 650, "end": 654, "id": 124, "annotation": null}, {"text": ".", "start": 655, "end": 656, "id": 125, "annotation": null}], [{"text": "Thus", "start": 657, "end": 661, "id": 126, "annotation": null}, {"text": ",", "start": 662, "end": 663, "id": 127, "annotation": null}, {"text": "a", "start": 664, "end": 665, "id": 128, "annotation": null}, {"text": "trade", "start": 666, "end": 671, "id": 129, "annotation": null}, {"text": "-", "start": 672, "end": 673, "id": 130, "annotation": null}, {"text": "off", "start": 674, "end": 677, "id": 131, "annotation": null}, {"text": "between", "start": 678, "end": 685, "id": 132, "annotation": null}, {"text": "both", "start": 686, "end": 690, "id": 133, "annotation": null}, {"text": "temperatures", "start": 691, "end": 703, "id": 134, "annotation": null}, {"text": "has", "start": 704, "end": 707, "id": 135, "annotation": null}, {"text": "to", "start": 708, "end": 710, "id": 136, "annotation": null}, {"text": "be", "start": 711, "end": 713, "id": 137, "annotation": null}, {"text": "reached", "start": 714, "end": 721, "id": 138, "annotation": null}, {"text": ".", "start": 722, "end": 723, "id": 139, "annotation": null}], [{"text": "A", "start": 724, "end": 725, "id": 140, "annotation": null}, {"text": "reduction", "start": 726, "end": 735, "id": 141, "annotation": null}, {"text": "of", "start": 736, "end": 738, "id": 142, "annotation": null}, {"text": "the", "start": 739, "end": 742, "id": 143, "annotation": null}, {"text": "growth", "start": 743, "end": 749, "id": 144, "annotation": null}, {"text": "rate", "start": 750, "end": 754, "id": 145, "annotation": null}, {"text": "has", "start": 755, "end": 758, "id": 146, "annotation": null}, {"text": "a", "start": 759, "end": 760, "id": 147, "annotation": null}, {"text": "strong", "start": 761, "end": 767, "id": 148, "annotation": null}, {"text": "effect", "start": 768, "end": 774, "id": 149, "annotation": null}, {"text": "on", "start": 775, "end": 777, "id": 150, "annotation": null}, {"text": "the", "start": 778, "end": 781, "id": 151, "annotation": null}, {"text": "p", "start": 782, "end": 783, "id": 152, "annotation": "DOPANT"}, {"text": "-", "start": 784, "end": 785, "id": 153, "annotation": null}, {"text": "type", "start": 786, "end": 790, "id": 154, "annotation": "DOPANT"}, {"text": "doping", "start": 791, "end": 797, "id": 155, "annotation": null}, {"text": "level", "start": 798, "end": 803, "id": 156, "annotation": null}, {"text": ",", "start": 804, "end": 805, "id": 157, "annotation": null}, {"text": "yielding", "start": 806, "end": 814, "id": 158, "annotation": null}, {"text": "up", "start": 815, "end": 817, "id": 159, "annotation": null}, {"text": "to", "start": 818, "end": 820, "id": 160, "annotation": null}, {"text": "7\u00d71017holes", "start": 821, "end": 832, "id": 161, "annotation": "DOPMODQ"}, {"text": "/", "start": 833, "end": 834, "id": 162, "annotation": null}, {"text": "cm3", "start": 835, "end": 838, "id": 163, "annotation": "DOPMODQ"}, {"text": "for", "start": 839, "end": 842, "id": 164, "annotation": null}, {"text": "a", "start": 843, "end": 844, "id": 165, "annotation": null}, {"text": "total", "start": 845, "end": 850, "id": 166, "annotation": null}, {"text": "Mg", "start": 851, "end": 853, "id": 167, "annotation": "DOPANT"}, {"text": "concentration", "start": 854, "end": 867, "id": 168, "annotation": null}, {"text": "of", "start": 868, "end": 870, "id": 169, "annotation": null}, {"text": "1\u00d71019cm\u22123", "start": 871, "end": 881, "id": 170, "annotation": "DOPMODQ"}, {"text": ".", "start": 882, "end": 883, "id": 171, "annotation": null}], [{"text": "This", "start": 884, "end": 888, "id": 172, "annotation": null}, {"text": "high", "start": 889, "end": 893, "id": 173, "annotation": null}, {"text": "Mg", "start": 894, "end": 896, "id": 174, "annotation": null}, {"text": "concentration", "start": 897, "end": 910, "id": 175, "annotation": null}, {"text": "does", "start": 911, "end": 915, "id": 176, "annotation": null}, {"text": "not", "start": 916, "end": 919, "id": 177, "annotation": null}, {"text": "seem", "start": 920, "end": 924, "id": 178, "annotation": null}, {"text": "to", "start": 925, "end": 927, "id": 179, "annotation": null}, {"text": "generate", "start": 928, "end": 936, "id": 180, "annotation": null}, {"text": "Mg", "start": 937, "end": 939, "id": 181, "annotation": null}, {"text": "-", "start": 940, "end": 941, "id": 182, "annotation": null}, {"text": "related", "start": 942, "end": 949, "id": 183, "annotation": null}, {"text": "defects", "start": 950, "end": 957, "id": 184, "annotation": null}, {"text": "or", "start": 958, "end": 960, "id": 185, "annotation": null}, {"text": "deep", "start": 961, "end": 965, "id": 186, "annotation": null}, {"text": "traps", "start": 966, "end": 971, "id": 187, "annotation": null}, {"text": ".", "start": 972, "end": 973, "id": 188, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "The establishment of an approach to design tunable yellow emission through singly doped single-phased phosphors to obtain white LED-based InGaN chip was reported. BaY 2-x S 4 :xHo 3+ phosphors were prepared by the high temperature solid state reaction and characterized by X-ray diffraction and photoluminescence spectra. Under the excitation of 465 nm, the emission spectra of these phosphors exhibited three sharp emission lines peaked at about 492, 543 and 661 nm of Ho 3+ corresponding to 5 F 3 , 5 F 4 ( 5 S 2 ) and 5 F 5 \u2192 5 I 8 transitions, respectively, with comparable intensities, resulting in a yellow light emission. The luminescence mechanism for Ho 3+ in BaY 2 S 4 was explained. \u00a9 2011 The Chinese Society of Rare Earths.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "establishment", "start": 4, "end": 17, "annotation": null}, {"text": "of", "start": 18, "end": 20, "annotation": null}, {"text": "an", "start": 21, "end": 23, "annotation": null}, {"text": "approach", "start": 24, "end": 32, "annotation": null}, {"text": "to", "start": 33, "end": 35, "annotation": null}, {"text": "design", "start": 36, "end": 42, "annotation": null}, {"text": "tunable", "start": 43, "end": 50, "annotation": null}, {"text": "yellow", "start": 51, "end": 57, "annotation": null}, {"text": "emission", "start": 58, "end": 66, "annotation": null}, {"text": "through", "start": 67, "end": 74, "annotation": null}, {"text": "singly", "start": 75, "end": 81, "annotation": null}, {"text": "doped", "start": 82, "end": 87, "annotation": null}, {"text": "single", "start": 88, "end": 94, "annotation": null}, {"text": "-", "start": 94, "end": 95, "annotation": null}, {"text": "phased", "start": 95, "end": 101, "annotation": null}, {"text": "phosphors", "start": 102, "end": 111, "annotation": null}, {"text": "to", "start": 112, "end": 114, "annotation": null}, {"text": "obtain", "start": 115, "end": 121, "annotation": null}, {"text": "white", "start": 122, "end": 127, "annotation": null}, {"text": "LED", "start": 128, "end": 131, "annotation": null}, {"text": "-", "start": 131, "end": 132, "annotation": null}, {"text": "based", "start": 132, "end": 137, "annotation": null}, {"text": "InGaN", "start": 138, "end": 143, "annotation": null}, {"text": "chip", "start": 144, "end": 148, "annotation": null}, {"text": "was", "start": 149, "end": 152, "annotation": null}, {"text": "reported", "start": 153, "end": 161, "annotation": null}, {"text": ".", "start": 161, "end": 162, "annotation": null}], [{"text": "BaY", "start": 163, "end": 166, "annotation": "BASEMAT"}, {"text": "2-x", "start": 167, "end": 170, "annotation": "BASEMAT"}, {"text": "S", "start": 171, "end": 172, "annotation": "BASEMAT"}, {"text": "4", "start": 173, "end": 174, "annotation": "BASEMAT"}, {"text": ":", "start": 175, "end": 176, "annotation": null}, {"text": "xHo", "start": 176, "end": 179, "annotation": "DOPANT"}, {"text": "3+", "start": 180, "end": 182, "annotation": "DOPANT"}, {"text": "phosphors", "start": 183, "end": 192, "annotation": null}, {"text": "were", "start": 193, "end": 197, "annotation": null}, {"text": "prepared", "start": 198, "end": 206, "annotation": null}, {"text": "by", "start": 207, "end": 209, "annotation": null}, {"text": "the", "start": 210, "end": 213, "annotation": null}, {"text": "high", "start": 214, "end": 218, "annotation": null}, {"text": "temperature", "start": 219, "end": 230, "annotation": null}, {"text": "solid", "start": 231, "end": 236, "annotation": null}, {"text": "state", "start": 237, "end": 242, "annotation": null}, {"text": "reaction", "start": 243, "end": 251, "annotation": null}, {"text": "and", "start": 252, "end": 255, "annotation": null}, {"text": "characterized", "start": 256, "end": 269, "annotation": null}, {"text": "by", "start": 270, "end": 272, "annotation": null}, {"text": "X-ray", "start": 273, "end": 278, "annotation": null}, {"text": "diffraction", "start": 279, "end": 290, "annotation": null}, {"text": "and", "start": 291, "end": 294, "annotation": null}, {"text": "photoluminescence", "start": 295, "end": 312, "annotation": null}, {"text": "spectra", "start": 313, "end": 320, "annotation": null}, {"text": ".", "start": 320, "end": 321, "annotation": null}], [{"text": "Under", "start": 322, "end": 327, "annotation": null}, {"text": "the", "start": 328, "end": 331, "annotation": null}, {"text": "excitation", "start": 332, "end": 342, "annotation": null}, {"text": "of", "start": 343, "end": 345, "annotation": null}, {"text": "465", "start": 346, "end": 349, "annotation": null}, {"text": "nm", "start": 350, "end": 352, "annotation": null}, {"text": ",", "start": 352, "end": 353, "annotation": null}, {"text": "the", "start": 354, "end": 357, "annotation": null}, {"text": "emission", "start": 358, "end": 366, "annotation": null}, {"text": "spectra", "start": 367, "end": 374, "annotation": null}, {"text": "of", "start": 375, "end": 377, "annotation": null}, {"text": "these", "start": 378, "end": 383, "annotation": null}, {"text": "phosphors", "start": 384, "end": 393, "annotation": null}, {"text": "exhibited", "start": 394, "end": 403, "annotation": null}, {"text": "three", "start": 404, "end": 409, "annotation": null}, {"text": "sharp", "start": 410, "end": 415, "annotation": null}, {"text": "emission", "start": 416, "end": 424, "annotation": null}, {"text": "lines", "start": 425, "end": 430, "annotation": null}, {"text": "peaked", "start": 431, "end": 437, "annotation": null}, {"text": "at", "start": 438, "end": 440, "annotation": null}, {"text": "about", "start": 441, "end": 446, "annotation": null}, {"text": "492", "start": 447, "end": 450, "annotation": null}, {"text": ",", "start": 450, "end": 451, "annotation": null}, {"text": "543", "start": 452, "end": 455, "annotation": null}, {"text": "and", "start": 456, "end": 459, "annotation": null}, {"text": "661", "start": 460, "end": 463, "annotation": null}, {"text": "nm", "start": 464, "end": 466, "annotation": null}, {"text": "of", "start": 467, "end": 469, "annotation": null}, {"text": "Ho", "start": 470, "end": 472, "annotation": null}, {"text": "3+", "start": 473, "end": 475, "annotation": null}, {"text": "corresponding", "start": 476, "end": 489, "annotation": null}, {"text": "to", "start": 490, "end": 492, "annotation": null}, {"text": "5", "start": 493, "end": 494, "annotation": null}, {"text": "F", "start": 495, "end": 496, "annotation": null}, {"text": "3", "start": 497, "end": 498, "annotation": null}, {"text": ",", "start": 499, "end": 500, "annotation": null}, {"text": "5", "start": 501, "end": 502, "annotation": null}, {"text": "F", "start": 503, "end": 504, "annotation": null}, {"text": "4", "start": 505, "end": 506, "annotation": null}, {"text": "(", "start": 507, "end": 508, "annotation": null}, {"text": "5", "start": 509, "end": 510, "annotation": null}, {"text": "S", "start": 511, "end": 512, "annotation": null}, {"text": "2", "start": 513, "end": 514, "annotation": null}, {"text": ")", "start": 515, "end": 516, "annotation": null}, {"text": "and", "start": 517, "end": 520, "annotation": null}, {"text": "5", "start": 521, "end": 522, "annotation": null}, {"text": "F", "start": 523, "end": 524, "annotation": null}, {"text": "5", "start": 525, "end": 526, "annotation": null}, {"text": "\u2192", "start": 527, "end": 528, "annotation": null}, {"text": "5", "start": 529, "end": 530, "annotation": null}, {"text": "I", "start": 531, "end": 532, "annotation": null}, {"text": "8", "start": 533, "end": 534, "annotation": null}, {"text": "transitions", "start": 535, "end": 546, "annotation": null}, {"text": ",", "start": 546, "end": 547, "annotation": null}, {"text": "respectively", "start": 548, "end": 560, "annotation": null}, {"text": ",", "start": 560, "end": 561, "annotation": null}, {"text": "with", "start": 562, "end": 566, "annotation": null}, {"text": "comparable", "start": 567, "end": 577, "annotation": null}, {"text": "intensities", "start": 578, "end": 589, "annotation": null}, {"text": ",", "start": 589, "end": 590, "annotation": null}, {"text": "resulting", "start": 591, "end": 600, "annotation": null}, {"text": "in", "start": 601, "end": 603, "annotation": null}, {"text": "a", "start": 604, "end": 605, "annotation": null}, {"text": "yellow", "start": 606, "end": 612, "annotation": null}, {"text": "light", "start": 613, "end": 618, "annotation": null}, {"text": "emission", "start": 619, "end": 627, "annotation": null}, {"text": ".", "start": 627, "end": 628, "annotation": null}], [{"text": "The", "start": 629, "end": 632, "annotation": null}, {"text": "luminescence", "start": 633, "end": 645, "annotation": null}, {"text": "mechanism", "start": 646, "end": 655, "annotation": null}, {"text": "for", "start": 656, "end": 659, "annotation": null}, {"text": "Ho", "start": 660, "end": 662, "annotation": "DOPANT"}, {"text": "3+", "start": 663, "end": 665, "annotation": "DOPANT"}, {"text": "in", "start": 666, "end": 668, "annotation": null}, {"text": "BaY", "start": 669, "end": 672, "annotation": "BASEMAT"}, {"text": "2", "start": 673, "end": 674, "annotation": "BASEMAT"}, {"text": "S", "start": 675, "end": 676, "annotation": "BASEMAT"}, {"text": "4", "start": 677, "end": 678, "annotation": "BASEMAT"}, {"text": "was", "start": 679, "end": 682, "annotation": null}, {"text": "explained", "start": 683, "end": 692, "annotation": null}, {"text": ".", "start": 692, "end": 693, "annotation": null}]]} -{"text": "We develop a backside illuminated photo-sensor that is fabricated on a <100>-oriented, high resistivity n-type 400 \u03bcm thick silicon wafer. The PIN photodiode is designed and manufactured as a radiation detector for alpha particles and low energy gamma-rays. The silicon photo-sensor is susceptible to radiation damage. Therefore, it is important to investigate the effects of radiation damage to the fabricated PIN photodiode. We measure the radiation damage to a PIN photodiode by a 35 MeV proton beam at the Korea Institute of Radiological and Medical Sciences (KIRAMS). We present the effects of proton radiation on the electrical properties of the PIN photodiode.", "meta": {"doi": "10.3938/jkps.59.692"}, "_input_hash": -1202953208, "_task_hash": 278727161, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "develop", "start": 3, "end": 10, "id": 1, "annotation": null}, {"text": "a", "start": 11, "end": 12, "id": 2, "annotation": null}, {"text": "backside", "start": 13, "end": 21, "id": 3, "annotation": null}, {"text": "illuminated", "start": 22, "end": 33, "id": 4, "annotation": null}, {"text": "photo", "start": 34, "end": 39, "id": 5, "annotation": null}, {"text": "-", "start": 40, "end": 41, "id": 6, "annotation": null}, {"text": "sensor", "start": 42, "end": 48, "id": 7, "annotation": null}, {"text": "that", "start": 49, "end": 53, "id": 8, "annotation": null}, {"text": "is", "start": 54, "end": 56, "id": 9, "annotation": null}, {"text": "fabricated", "start": 57, "end": 67, "id": 10, "annotation": null}, {"text": "on", "start": 68, "end": 70, "id": 11, "annotation": null}, {"text": "a", "start": 71, "end": 72, "id": 12, "annotation": null}, {"text": "<", "start": 73, "end": 74, "id": 13, "annotation": null}, {"text": "100>-oriented", "start": 75, "end": 88, "id": 14, "annotation": null}, {"text": ",", "start": 89, "end": 90, "id": 15, "annotation": null}, {"text": "high", "start": 91, "end": 95, "id": 16, "annotation": null}, {"text": "resistivity", "start": 96, "end": 107, "id": 17, "annotation": null}, {"text": "n", "start": 108, "end": 109, "id": 18, "annotation": "DOPANT"}, {"text": "-", "start": 110, "end": 111, "id": 19, "annotation": null}, {"text": "type", "start": 112, "end": 116, "id": 20, "annotation": "DOPANT"}, {"text": "400", "start": 117, "end": 120, "id": 21, "annotation": null}, {"text": "\u03bcm", "start": 121, "end": 123, "id": 22, "annotation": null}, {"text": "thick", "start": 124, "end": 129, "id": 23, "annotation": null}, {"text": "silicon", "start": 130, "end": 137, "id": 24, "annotation": "BASEMAT"}, {"text": "wafer", "start": 138, "end": 143, "id": 25, "annotation": null}, {"text": ".", "start": 144, "end": 145, "id": 26, "annotation": null}], [{"text": "The", "start": 146, "end": 149, "id": 27, "annotation": null}, {"text": "PIN", "start": 150, "end": 153, "id": 28, "annotation": null}, {"text": "photodiode", "start": 154, "end": 164, "id": 29, "annotation": null}, {"text": "is", "start": 165, "end": 167, "id": 30, "annotation": null}, {"text": "designed", "start": 168, "end": 176, "id": 31, "annotation": null}, {"text": "and", "start": 177, "end": 180, "id": 32, "annotation": null}, {"text": "manufactured", "start": 181, "end": 193, "id": 33, "annotation": null}, {"text": "as", "start": 194, "end": 196, "id": 34, "annotation": null}, {"text": "a", "start": 197, "end": 198, "id": 35, "annotation": null}, {"text": "radiation", "start": 199, "end": 208, "id": 36, "annotation": null}, {"text": "detector", "start": 209, "end": 217, "id": 37, "annotation": null}, {"text": "for", "start": 218, "end": 221, "id": 38, "annotation": null}, {"text": "alpha", "start": 222, "end": 227, "id": 39, "annotation": null}, {"text": "particles", "start": 228, "end": 237, "id": 40, "annotation": null}, {"text": "and", "start": 238, "end": 241, "id": 41, "annotation": null}, {"text": "low", "start": 242, "end": 245, "id": 42, "annotation": null}, {"text": "energy", "start": 246, "end": 252, "id": 43, "annotation": null}, {"text": "gamma", "start": 253, "end": 258, "id": 44, "annotation": null}, {"text": "-", "start": 259, "end": 260, "id": 45, "annotation": null}, {"text": "rays", "start": 261, "end": 265, "id": 46, "annotation": null}, {"text": ".", "start": 266, "end": 267, "id": 47, "annotation": null}], [{"text": "The", "start": 268, "end": 271, "id": 48, "annotation": null}, {"text": "silicon", "start": 272, "end": 279, "id": 49, "annotation": null}, {"text": "photo", "start": 280, "end": 285, "id": 50, "annotation": null}, {"text": "-", "start": 286, "end": 287, "id": 51, "annotation": null}, {"text": "sensor", "start": 288, "end": 294, "id": 52, "annotation": null}, {"text": "is", "start": 295, "end": 297, "id": 53, "annotation": null}, {"text": "susceptible", "start": 298, "end": 309, "id": 54, "annotation": null}, {"text": "to", "start": 310, "end": 312, "id": 55, "annotation": null}, {"text": "radiation", "start": 313, "end": 322, "id": 56, "annotation": null}, {"text": "damage", "start": 323, "end": 329, "id": 57, "annotation": null}, {"text": ".", "start": 330, "end": 331, "id": 58, "annotation": null}], [{"text": "Therefore", "start": 332, "end": 341, "id": 59, "annotation": null}, {"text": ",", "start": 342, "end": 343, "id": 60, "annotation": null}, {"text": "it", "start": 344, "end": 346, "id": 61, "annotation": null}, {"text": "is", "start": 347, "end": 349, "id": 62, "annotation": null}, {"text": "important", "start": 350, "end": 359, "id": 63, "annotation": null}, {"text": "to", "start": 360, "end": 362, "id": 64, "annotation": null}, {"text": "investigate", "start": 363, "end": 374, "id": 65, "annotation": null}, {"text": "the", "start": 375, "end": 378, "id": 66, "annotation": null}, {"text": "effects", "start": 379, "end": 386, "id": 67, "annotation": null}, {"text": "of", "start": 387, "end": 389, "id": 68, "annotation": null}, {"text": "radiation", "start": 390, "end": 399, "id": 69, "annotation": null}, {"text": "damage", "start": 400, "end": 406, "id": 70, "annotation": null}, {"text": "to", "start": 407, "end": 409, "id": 71, "annotation": null}, {"text": "the", "start": 410, "end": 413, "id": 72, "annotation": null}, {"text": "fabricated", "start": 414, "end": 424, "id": 73, "annotation": null}, {"text": "PIN", "start": 425, "end": 428, "id": 74, "annotation": null}, {"text": "photodiode", "start": 429, "end": 439, "id": 75, "annotation": null}, {"text": ".", "start": 440, "end": 441, "id": 76, "annotation": null}], [{"text": "We", "start": 442, "end": 444, "id": 77, "annotation": null}, {"text": "measure", "start": 445, "end": 452, "id": 78, "annotation": null}, {"text": "the", "start": 453, "end": 456, "id": 79, "annotation": null}, {"text": "radiation", "start": 457, "end": 466, "id": 80, "annotation": null}, {"text": "damage", "start": 467, "end": 473, "id": 81, "annotation": null}, {"text": "to", "start": 474, "end": 476, "id": 82, "annotation": null}, {"text": "a", "start": 477, "end": 478, "id": 83, "annotation": null}, {"text": "PIN", "start": 479, "end": 482, "id": 84, "annotation": null}, {"text": "photodiode", "start": 483, "end": 493, "id": 85, "annotation": null}, {"text": "by", "start": 494, "end": 496, "id": 86, "annotation": null}, {"text": "a", "start": 497, "end": 498, "id": 87, "annotation": null}, {"text": "35", "start": 499, "end": 501, "id": 88, "annotation": null}, {"text": "MeV", "start": 502, "end": 505, "id": 89, "annotation": null}, {"text": "proton", "start": 506, "end": 512, "id": 90, "annotation": null}, {"text": "beam", "start": 513, "end": 517, "id": 91, "annotation": null}, {"text": "at", "start": 518, "end": 520, "id": 92, "annotation": null}, {"text": "the", "start": 521, "end": 524, "id": 93, "annotation": null}, {"text": "Korea", "start": 525, "end": 530, "id": 94, "annotation": null}, {"text": "Institute", "start": 531, "end": 540, "id": 95, "annotation": null}, {"text": "of", "start": 541, "end": 543, "id": 96, "annotation": null}, {"text": "Radiological", "start": 544, "end": 556, "id": 97, "annotation": null}, {"text": "and", "start": 557, "end": 560, "id": 98, "annotation": null}, {"text": "Medical", "start": 561, "end": 568, "id": 99, "annotation": null}, {"text": "Sciences", "start": 569, "end": 577, "id": 100, "annotation": null}, {"text": "(", "start": 578, "end": 579, "id": 101, "annotation": null}, {"text": "KIRAMS", "start": 580, "end": 586, "id": 102, "annotation": null}, {"text": ")", "start": 587, "end": 588, "id": 103, "annotation": null}, {"text": ".", "start": 589, "end": 590, "id": 104, "annotation": null}], [{"text": "We", "start": 591, "end": 593, "id": 105, "annotation": null}, {"text": "present", "start": 594, "end": 601, "id": 106, "annotation": null}, {"text": "the", "start": 602, "end": 605, "id": 107, "annotation": null}, {"text": "effects", "start": 606, "end": 613, "id": 108, "annotation": null}, {"text": "of", "start": 614, "end": 616, "id": 109, "annotation": null}, {"text": "proton", "start": 617, "end": 623, "id": 110, "annotation": null}, {"text": "radiation", "start": 624, "end": 633, "id": 111, "annotation": null}, {"text": "on", "start": 634, "end": 636, "id": 112, "annotation": null}, {"text": "the", "start": 637, "end": 640, "id": 113, "annotation": null}, {"text": "electrical", "start": 641, "end": 651, "id": 114, "annotation": null}, {"text": "properties", "start": 652, "end": 662, "id": 115, "annotation": null}, {"text": "of", "start": 663, "end": 665, "id": 116, "annotation": null}, {"text": "the", "start": 666, "end": 669, "id": 117, "annotation": null}, {"text": "PIN", "start": 670, "end": 673, "id": 118, "annotation": null}, {"text": "photodiode", "start": 674, "end": 684, "id": 119, "annotation": null}, {"text": ".", "start": 685, "end": 686, "id": 120, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Half-metallic ferromagnetism in Cu-doped ZnO is predicted by accurate full-potential linearized augmented plane-wave and DMol3 calculations based on density functional theory. A net magnetic moment of 1 \u03bcB is found per Cu. At a Cu concentration of 12.5%, total energy calculations show that the ferromagnetic state is 43 meV lower than the antiferromagnetic state and is thus predicted to be the ground state with a Tc estimated to be about 380 K. The magnetic moments are localized within the Cu O4 tetrahedron with ferromagnetic coupling between Cu and O. The electronic states near EF are dominated by strong hybridization between O 2p and Cu 3d which implies that the Cu-O bond is quite covalent instead of purely ionic. We examine the interplay between the carrier density and the ferromagnetism with N codoping and oxygen vacancies where we find no apparent relation between them. Oxygen vacancies tend to destroy the ferromagnetism and therefore should be avoided during sample fabrication. We found no clustering tendency of the Cu atoms. Since there is no magnetic element in this compound, Cu-doped ZnO appears to be an unambiguous dilute magnetic semiconductor where ferromagnetic precipitate problems can be avoided. \u00a9 2006 The American Physical Society.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Half", "start": 0, "end": 4, "annotation": null}, {"text": "-", "start": 4, "end": 5, "annotation": null}, {"text": "metallic", "start": 5, "end": 13, "annotation": null}, {"text": "ferromagnetism", "start": 14, "end": 28, "annotation": null}, {"text": "in", "start": 29, "end": 31, "annotation": null}, {"text": "Cu", "start": 32, "end": 34, "annotation": "DOPANT"}, {"text": "-", "start": 34, "end": 35, "annotation": null}, {"text": "doped", "start": 35, "end": 40, "annotation": null}, {"text": "ZnO", "start": 41, "end": 44, "annotation": "BASEMAT"}, {"text": "is", "start": 45, "end": 47, "annotation": null}, {"text": "predicted", "start": 48, "end": 57, "annotation": null}, {"text": "by", "start": 58, "end": 60, "annotation": null}, {"text": "accurate", "start": 61, "end": 69, "annotation": null}, {"text": "full", "start": 70, "end": 74, "annotation": null}, {"text": "-", "start": 74, "end": 75, "annotation": null}, {"text": "potential", "start": 75, "end": 84, "annotation": null}, {"text": "linearized", "start": 85, "end": 95, "annotation": null}, {"text": "augmented", "start": 96, "end": 105, "annotation": null}, {"text": "plane", "start": 106, "end": 111, "annotation": null}, {"text": "-", "start": 111, "end": 112, "annotation": null}, {"text": "wave", "start": 112, "end": 116, "annotation": null}, {"text": "and", "start": 117, "end": 120, "annotation": null}, {"text": "DMol3", "start": 121, "end": 126, "annotation": null}, {"text": "calculations", "start": 127, "end": 139, "annotation": null}, {"text": "based", "start": 140, "end": 145, "annotation": null}, {"text": "on", "start": 146, "end": 148, "annotation": null}, {"text": "density", "start": 149, "end": 156, "annotation": null}, {"text": "functional", "start": 157, "end": 167, "annotation": null}, {"text": "theory", "start": 168, "end": 174, "annotation": null}, {"text": ".", "start": 174, "end": 175, "annotation": null}], [{"text": "A", "start": 176, "end": 177, "annotation": null}, {"text": "net", "start": 178, "end": 181, "annotation": null}, {"text": "magnetic", "start": 182, "end": 190, "annotation": null}, {"text": "moment", "start": 191, "end": 197, "annotation": null}, {"text": "of", "start": 198, "end": 200, "annotation": null}, {"text": "1", "start": 201, "end": 202, "annotation": null}, {"text": "\u03bcB", "start": 203, "end": 205, "annotation": null}, {"text": "is", "start": 206, "end": 208, "annotation": null}, {"text": "found", "start": 209, "end": 214, "annotation": null}, {"text": "per", "start": 215, "end": 218, "annotation": null}, {"text": "Cu", "start": 219, "end": 221, "annotation": null}, {"text": ".", "start": 221, "end": 222, "annotation": null}], [{"text": "At", "start": 223, "end": 225, "annotation": null}, {"text": "a", "start": 226, "end": 227, "annotation": null}, {"text": "Cu", "start": 228, "end": 230, "annotation": "DOPANT"}, {"text": "concentration", "start": 231, "end": 244, "annotation": null}, {"text": "of", "start": 245, "end": 247, "annotation": null}, {"text": "12.5", "start": 248, "end": 252, "annotation": "DOPMODQ"}, {"text": "%", "start": 252, "end": 253, "annotation": "DOPMODQ"}, {"text": ",", "start": 253, "end": 254, "annotation": null}, {"text": "total", "start": 255, "end": 260, "annotation": null}, {"text": "energy", "start": 261, "end": 267, "annotation": null}, {"text": "calculations", "start": 268, "end": 280, "annotation": null}, {"text": "show", "start": 281, "end": 285, "annotation": null}, {"text": "that", "start": 286, "end": 290, "annotation": null}, {"text": "the", "start": 291, "end": 294, "annotation": null}, {"text": "ferromagnetic", "start": 295, "end": 308, "annotation": null}, {"text": "state", "start": 309, "end": 314, "annotation": null}, {"text": "is", "start": 315, "end": 317, "annotation": null}, {"text": "43", "start": 318, "end": 320, "annotation": null}, {"text": "meV", "start": 321, "end": 324, "annotation": null}, {"text": "lower", "start": 325, "end": 330, "annotation": null}, {"text": "than", "start": 331, "end": 335, "annotation": null}, {"text": "the", "start": 336, "end": 339, "annotation": null}, {"text": "antiferromagnetic", "start": 340, "end": 357, "annotation": null}, {"text": "state", "start": 358, "end": 363, "annotation": null}, {"text": "and", "start": 364, "end": 367, "annotation": null}, {"text": "is", "start": 368, "end": 370, "annotation": null}, {"text": "thus", "start": 371, "end": 375, "annotation": null}, {"text": "predicted", "start": 376, "end": 385, "annotation": null}, {"text": "to", "start": 386, "end": 388, "annotation": null}, {"text": "be", "start": 389, "end": 391, "annotation": null}, {"text": "the", "start": 392, "end": 395, "annotation": null}, {"text": "ground", "start": 396, "end": 402, "annotation": null}, {"text": "state", "start": 403, "end": 408, "annotation": null}, {"text": "with", "start": 409, "end": 413, "annotation": null}, {"text": "a", "start": 414, "end": 415, "annotation": null}, {"text": "Tc", "start": 416, "end": 418, "annotation": null}, {"text": "estimated", "start": 419, "end": 428, "annotation": null}, {"text": "to", "start": 429, "end": 431, "annotation": null}, {"text": "be", "start": 432, "end": 434, "annotation": null}, {"text": "about", "start": 435, "end": 440, "annotation": null}, {"text": "380", "start": 441, "end": 444, "annotation": null}, {"text": "K", "start": 445, "end": 446, "annotation": null}, {"text": ".", "start": 446, "end": 447, "annotation": null}], [{"text": "The", "start": 448, "end": 451, "annotation": null}, {"text": "magnetic", "start": 452, "end": 460, "annotation": null}, {"text": "moments", "start": 461, "end": 468, "annotation": null}, {"text": "are", "start": 469, "end": 472, "annotation": null}, {"text": "localized", "start": 473, "end": 482, "annotation": null}, {"text": "within", "start": 483, "end": 489, "annotation": null}, {"text": "the", "start": 490, "end": 493, "annotation": null}, {"text": "Cu", "start": 494, "end": 496, "annotation": null}, {"text": "O4", "start": 497, "end": 499, "annotation": null}, {"text": "tetrahedron", "start": 500, "end": 511, "annotation": null}, {"text": "with", "start": 512, "end": 516, "annotation": null}, {"text": "ferromagnetic", "start": 517, "end": 530, "annotation": null}, {"text": "coupling", "start": 531, "end": 539, "annotation": null}, {"text": "between", "start": 540, "end": 547, "annotation": null}, {"text": "Cu", "start": 548, "end": 550, "annotation": null}, {"text": "and", "start": 551, "end": 554, "annotation": null}, {"text": "O", "start": 555, "end": 556, "annotation": null}, {"text": ".", "start": 556, "end": 557, "annotation": null}], [{"text": "The", "start": 558, "end": 561, "annotation": null}, {"text": "electronic", "start": 562, "end": 572, "annotation": null}, {"text": "states", "start": 573, "end": 579, "annotation": null}, {"text": "near", "start": 580, "end": 584, "annotation": null}, {"text": "EF", "start": 585, "end": 587, "annotation": null}, {"text": "are", "start": 588, "end": 591, "annotation": null}, {"text": "dominated", "start": 592, "end": 601, "annotation": null}, {"text": "by", "start": 602, "end": 604, "annotation": null}, {"text": "strong", "start": 605, "end": 611, "annotation": null}, {"text": "hybridization", "start": 612, "end": 625, "annotation": null}, {"text": "between", "start": 626, "end": 633, "annotation": null}, {"text": "O", "start": 634, "end": 635, "annotation": null}, {"text": "2p", "start": 636, "end": 638, "annotation": null}, {"text": "and", "start": 639, "end": 642, "annotation": null}, {"text": "Cu", "start": 643, "end": 645, "annotation": null}, {"text": "3d", "start": 646, "end": 648, "annotation": null}, {"text": "which", "start": 649, "end": 654, "annotation": null}, {"text": "implies", "start": 655, "end": 662, "annotation": null}, {"text": "that", "start": 663, "end": 667, "annotation": null}, {"text": "the", "start": 668, "end": 671, "annotation": null}, {"text": "Cu-O", "start": 672, "end": 676, "annotation": null}, {"text": "bond", "start": 677, "end": 681, "annotation": null}, {"text": "is", "start": 682, "end": 684, "annotation": null}, {"text": "quite", "start": 685, "end": 690, "annotation": null}, {"text": "covalent", "start": 691, "end": 699, "annotation": null}, {"text": "instead", "start": 700, "end": 707, "annotation": null}, {"text": "of", "start": 708, "end": 710, "annotation": null}, {"text": "purely", "start": 711, "end": 717, "annotation": null}, {"text": "ionic", "start": 718, "end": 723, "annotation": null}, {"text": ".", "start": 723, "end": 724, "annotation": null}], [{"text": "We", "start": 725, "end": 727, "annotation": null}, {"text": "examine", "start": 728, "end": 735, "annotation": null}, {"text": "the", "start": 736, "end": 739, "annotation": null}, {"text": "interplay", "start": 740, "end": 749, "annotation": null}, {"text": "between", "start": 750, "end": 757, "annotation": null}, {"text": "the", "start": 758, "end": 761, "annotation": null}, {"text": "carrier", "start": 762, "end": 769, "annotation": null}, {"text": "density", "start": 770, "end": 777, "annotation": null}, {"text": "and", "start": 778, "end": 781, "annotation": null}, {"text": "the", "start": 782, "end": 785, "annotation": null}, {"text": "ferromagnetism", "start": 786, "end": 800, "annotation": null}, {"text": "with", "start": 801, "end": 805, "annotation": null}, {"text": "N", "start": 806, "end": 807, "annotation": "DOPANT"}, {"text": "codoping", "start": 808, "end": 816, "annotation": null}, {"text": "and", "start": 817, "end": 820, "annotation": null}, {"text": "oxygen", "start": 821, "end": 827, "annotation": null}, {"text": "vacancies", "start": 828, "end": 837, "annotation": null}, {"text": "where", "start": 838, "end": 843, "annotation": null}, {"text": "we", "start": 844, "end": 846, "annotation": null}, {"text": "find", "start": 847, "end": 851, "annotation": null}, {"text": "no", "start": 852, "end": 854, "annotation": null}, {"text": "apparent", "start": 855, "end": 863, "annotation": null}, {"text": "relation", "start": 864, "end": 872, "annotation": null}, {"text": "between", "start": 873, "end": 880, "annotation": null}, {"text": "them", "start": 881, "end": 885, "annotation": null}, {"text": ".", "start": 885, "end": 886, "annotation": null}], [{"text": "Oxygen", "start": 887, "end": 893, "annotation": null}, {"text": "vacancies", "start": 894, "end": 903, "annotation": null}, {"text": "tend", "start": 904, "end": 908, "annotation": null}, {"text": "to", "start": 909, "end": 911, "annotation": null}, {"text": "destroy", "start": 912, "end": 919, "annotation": null}, {"text": "the", "start": 920, "end": 923, "annotation": null}, {"text": "ferromagnetism", "start": 924, "end": 938, "annotation": null}, {"text": "and", "start": 939, "end": 942, "annotation": null}, {"text": "therefore", "start": 943, "end": 952, "annotation": null}, {"text": "should", "start": 953, "end": 959, "annotation": null}, {"text": "be", "start": 960, "end": 962, "annotation": null}, {"text": "avoided", "start": 963, "end": 970, "annotation": null}, {"text": "during", "start": 971, "end": 977, "annotation": null}, {"text": "sample", "start": 978, "end": 984, "annotation": null}, {"text": "fabrication", "start": 985, "end": 996, "annotation": null}, {"text": ".", "start": 996, "end": 997, "annotation": null}], [{"text": "We", "start": 998, "end": 1000, "annotation": null}, {"text": "found", "start": 1001, "end": 1006, "annotation": null}, {"text": "no", "start": 1007, "end": 1009, "annotation": null}, {"text": "clustering", "start": 1010, "end": 1020, "annotation": null}, {"text": "tendency", "start": 1021, "end": 1029, "annotation": null}, {"text": "of", "start": 1030, "end": 1032, "annotation": null}, {"text": "the", "start": 1033, "end": 1036, "annotation": null}, {"text": "Cu", "start": 1037, "end": 1039, "annotation": null}, {"text": "atoms", "start": 1040, "end": 1045, "annotation": null}, {"text": ".", "start": 1045, "end": 1046, "annotation": null}], [{"text": "Since", "start": 1047, "end": 1052, "annotation": null}, {"text": "there", "start": 1053, "end": 1058, "annotation": null}, {"text": "is", "start": 1059, "end": 1061, "annotation": null}, {"text": "no", "start": 1062, "end": 1064, "annotation": null}, {"text": "magnetic", "start": 1065, "end": 1073, "annotation": null}, {"text": "element", "start": 1074, "end": 1081, "annotation": null}, {"text": "in", "start": 1082, "end": 1084, "annotation": null}, {"text": "this", "start": 1085, "end": 1089, "annotation": null}, {"text": "compound", "start": 1090, "end": 1098, "annotation": null}, {"text": ",", "start": 1098, "end": 1099, "annotation": null}, {"text": "Cu", "start": 1100, "end": 1102, "annotation": "DOPANT"}, {"text": "-", "start": 1102, "end": 1103, "annotation": null}, {"text": "doped", "start": 1103, "end": 1108, "annotation": null}, {"text": "ZnO", "start": 1109, "end": 1112, "annotation": "BASEMAT"}, {"text": "appears", "start": 1113, "end": 1120, "annotation": null}, {"text": "to", "start": 1121, "end": 1123, "annotation": null}, {"text": "be", "start": 1124, "end": 1126, "annotation": null}, {"text": "an", "start": 1127, "end": 1129, "annotation": null}, {"text": "unambiguous", "start": 1130, "end": 1141, "annotation": null}, {"text": "dilute", "start": 1142, "end": 1148, "annotation": null}, {"text": "magnetic", "start": 1149, "end": 1157, "annotation": null}, {"text": "semiconductor", "start": 1158, "end": 1171, "annotation": null}, {"text": "where", "start": 1172, "end": 1177, "annotation": null}, {"text": "ferromagnetic", "start": 1178, "end": 1191, "annotation": null}, {"text": "precipitate", "start": 1192, "end": 1203, "annotation": null}, {"text": "problems", "start": 1204, "end": 1212, "annotation": null}, {"text": "can", "start": 1213, "end": 1216, "annotation": null}, {"text": "be", "start": 1217, "end": 1219, "annotation": null}, {"text": "avoided", "start": 1220, "end": 1227, "annotation": null}, {"text": ".", "start": 1227, "end": 1228, "annotation": null}]]} +{"remark": "doping_annt1", "text": "The establishment of an approach to design tunable yellow emission through singly doped single-phased phosphors to obtain white LED-based InGaN chip was reported. BaY 2-x S 4 :xHo 3+ phosphors were prepared by the high temperature solid state reaction and characterized by X-ray diffraction and photoluminescence spectra. Under the excitation of 465 nm, the emission spectra of these phosphors exhibited three sharp emission lines peaked at about 492, 543 and 661 nm of Ho 3+ corresponding to 5 F 3 , 5 F 4 ( 5 S 2 ) and 5 F 5 \u2192 5 I 8 transitions, respectively, with comparable intensities, resulting in a yellow light emission. The luminescence mechanism for Ho 3+ in BaY 2 S 4 was explained. \u00a9 2011 The Chinese Society of Rare Earths.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "establishment", "start": 4, "end": 17, "annotation": null}, {"text": "of", "start": 18, "end": 20, "annotation": null}, {"text": "an", "start": 21, "end": 23, "annotation": null}, {"text": "approach", "start": 24, "end": 32, "annotation": null}, {"text": "to", "start": 33, "end": 35, "annotation": null}, {"text": "design", "start": 36, "end": 42, "annotation": null}, {"text": "tunable", "start": 43, "end": 50, "annotation": null}, {"text": "yellow", "start": 51, "end": 57, "annotation": null}, {"text": "emission", "start": 58, "end": 66, "annotation": null}, {"text": "through", "start": 67, "end": 74, "annotation": null}, {"text": "singly", "start": 75, "end": 81, "annotation": null}, {"text": "doped", "start": 82, "end": 87, "annotation": null}, {"text": "single", "start": 88, "end": 94, "annotation": null}, {"text": "-", "start": 94, "end": 95, "annotation": null}, {"text": "phased", "start": 95, "end": 101, "annotation": null}, {"text": "phosphors", "start": 102, "end": 111, "annotation": null}, {"text": "to", "start": 112, "end": 114, "annotation": null}, {"text": "obtain", "start": 115, "end": 121, "annotation": null}, {"text": "white", "start": 122, "end": 127, "annotation": null}, {"text": "LED", "start": 128, "end": 131, "annotation": null}, {"text": "-", "start": 131, "end": 132, "annotation": null}, {"text": "based", "start": 132, "end": 137, "annotation": null}, {"text": "InGaN", "start": 138, "end": 143, "annotation": null}, {"text": "chip", "start": 144, "end": 148, "annotation": null}, {"text": "was", "start": 149, "end": 152, "annotation": null}, {"text": "reported", "start": 153, "end": 161, "annotation": null}, {"text": ".", "start": 161, "end": 162, "annotation": null}], [{"text": "BaY", "start": 163, "end": 166, "annotation": "BASEMAT"}, {"text": "2-x", "start": 167, "end": 170, "annotation": "BASEMAT"}, {"text": "S", "start": 171, "end": 172, "annotation": "BASEMAT"}, {"text": "4", "start": 173, "end": 174, "annotation": "BASEMAT"}, {"text": ":", "start": 175, "end": 176, "annotation": null}, {"text": "xHo", "start": 176, "end": 179, "annotation": "DOPANT"}, {"text": "3+", "start": 180, "end": 182, "annotation": "DOPANT"}, {"text": "phosphors", "start": 183, "end": 192, "annotation": null}, {"text": "were", "start": 193, "end": 197, "annotation": null}, {"text": "prepared", "start": 198, "end": 206, "annotation": null}, {"text": "by", "start": 207, "end": 209, "annotation": null}, {"text": "the", "start": 210, "end": 213, "annotation": null}, {"text": "high", "start": 214, "end": 218, "annotation": null}, {"text": "temperature", "start": 219, "end": 230, "annotation": null}, {"text": "solid", "start": 231, "end": 236, "annotation": null}, {"text": "state", "start": 237, "end": 242, "annotation": null}, {"text": "reaction", "start": 243, "end": 251, "annotation": null}, {"text": "and", "start": 252, "end": 255, "annotation": null}, {"text": "characterized", "start": 256, "end": 269, "annotation": null}, {"text": "by", "start": 270, "end": 272, "annotation": null}, {"text": "X-ray", "start": 273, "end": 278, "annotation": null}, {"text": "diffraction", "start": 279, "end": 290, "annotation": null}, {"text": "and", "start": 291, "end": 294, "annotation": null}, {"text": "photoluminescence", "start": 295, "end": 312, "annotation": null}, {"text": "spectra", "start": 313, "end": 320, "annotation": null}, {"text": ".", "start": 320, "end": 321, "annotation": null}], [{"text": "Under", "start": 322, "end": 327, "annotation": null}, {"text": "the", "start": 328, "end": 331, "annotation": null}, {"text": "excitation", "start": 332, "end": 342, "annotation": null}, {"text": "of", "start": 343, "end": 345, "annotation": null}, {"text": "465", "start": 346, "end": 349, "annotation": null}, {"text": "nm", "start": 350, "end": 352, "annotation": null}, {"text": ",", "start": 352, "end": 353, "annotation": null}, {"text": "the", "start": 354, "end": 357, "annotation": null}, {"text": "emission", "start": 358, "end": 366, "annotation": null}, {"text": "spectra", "start": 367, "end": 374, "annotation": null}, {"text": "of", "start": 375, "end": 377, "annotation": null}, {"text": "these", "start": 378, "end": 383, "annotation": null}, {"text": "phosphors", "start": 384, "end": 393, "annotation": null}, {"text": "exhibited", "start": 394, "end": 403, "annotation": null}, {"text": "three", "start": 404, "end": 409, "annotation": null}, {"text": "sharp", "start": 410, "end": 415, "annotation": null}, {"text": "emission", "start": 416, "end": 424, "annotation": null}, {"text": "lines", "start": 425, "end": 430, "annotation": null}, {"text": "peaked", "start": 431, "end": 437, "annotation": null}, {"text": "at", "start": 438, "end": 440, "annotation": null}, {"text": "about", "start": 441, "end": 446, "annotation": null}, {"text": "492", "start": 447, "end": 450, "annotation": null}, {"text": ",", "start": 450, "end": 451, "annotation": null}, {"text": "543", "start": 452, "end": 455, "annotation": null}, {"text": "and", "start": 456, "end": 459, "annotation": null}, {"text": "661", "start": 460, "end": 463, "annotation": null}, {"text": "nm", "start": 464, "end": 466, "annotation": null}, {"text": "of", "start": 467, "end": 469, "annotation": null}, {"text": "Ho", "start": 470, "end": 472, "annotation": null}, {"text": "3+", "start": 473, "end": 475, "annotation": null}, {"text": "corresponding", "start": 476, "end": 489, "annotation": null}, {"text": "to", "start": 490, "end": 492, "annotation": null}, {"text": "5", "start": 493, "end": 494, "annotation": null}, {"text": "F", "start": 495, "end": 496, "annotation": null}, {"text": "3", "start": 497, "end": 498, "annotation": null}, {"text": ",", "start": 499, "end": 500, "annotation": null}, {"text": "5", "start": 501, "end": 502, "annotation": null}, {"text": "F", "start": 503, "end": 504, "annotation": null}, {"text": "4", "start": 505, "end": 506, "annotation": null}, {"text": "(", "start": 507, "end": 508, "annotation": null}, {"text": "5", "start": 509, "end": 510, "annotation": null}, {"text": "S", "start": 511, "end": 512, "annotation": null}, {"text": "2", "start": 513, "end": 514, "annotation": null}, {"text": ")", "start": 515, "end": 516, "annotation": null}, {"text": "and", "start": 517, "end": 520, "annotation": null}, {"text": "5", "start": 521, "end": 522, "annotation": null}, {"text": "F", "start": 523, "end": 524, "annotation": null}, {"text": "5", "start": 525, "end": 526, "annotation": null}, {"text": "\u2192", "start": 527, "end": 528, "annotation": null}, {"text": "5", "start": 529, "end": 530, "annotation": null}, {"text": "I", "start": 531, "end": 532, "annotation": null}, {"text": "8", "start": 533, "end": 534, "annotation": null}, {"text": "transitions", "start": 535, "end": 546, "annotation": null}, {"text": ",", "start": 546, "end": 547, "annotation": null}, {"text": "respectively", "start": 548, "end": 560, "annotation": null}, {"text": ",", "start": 560, "end": 561, "annotation": null}, {"text": "with", "start": 562, "end": 566, "annotation": null}, {"text": "comparable", "start": 567, "end": 577, "annotation": null}, {"text": "intensities", "start": 578, "end": 589, "annotation": null}, {"text": ",", "start": 589, "end": 590, "annotation": null}, {"text": "resulting", "start": 591, "end": 600, "annotation": null}, {"text": "in", "start": 601, "end": 603, "annotation": null}, {"text": "a", "start": 604, "end": 605, "annotation": null}, {"text": "yellow", "start": 606, "end": 612, "annotation": null}, {"text": "light", "start": 613, "end": 618, "annotation": null}, {"text": "emission", "start": 619, "end": 627, "annotation": null}, {"text": ".", "start": 627, "end": 628, "annotation": null}], [{"text": "The", "start": 629, "end": 632, "annotation": null}, {"text": "luminescence", "start": 633, "end": 645, "annotation": null}, {"text": "mechanism", "start": 646, "end": 655, "annotation": null}, {"text": "for", "start": 656, "end": 659, "annotation": null}, {"text": "Ho", "start": 660, "end": 662, "annotation": "DOPANT"}, {"text": "3+", "start": 663, "end": 665, "annotation": "DOPANT"}, {"text": "in", "start": 666, "end": 668, "annotation": null}, {"text": "BaY", "start": 669, "end": 672, "annotation": "BASEMAT"}, {"text": "2", "start": 673, "end": 674, "annotation": "BASEMAT"}, {"text": "S", "start": 675, "end": 676, "annotation": "BASEMAT"}, {"text": "4", "start": 677, "end": 678, "annotation": "BASEMAT"}, {"text": "was", "start": 679, "end": 682, "annotation": null}, {"text": "explained", "start": 683, "end": 692, "annotation": null}, {"text": ".", "start": 692, "end": 693, "annotation": null}]], "meta": {"doi": "10.1016/S1002-0721(10)60475-9"}} +{"text": "We develop a backside illuminated photo-sensor that is fabricated on a <100>-oriented, high resistivity n-type 400 \u03bcm thick silicon wafer. The PIN photodiode is designed and manufactured as a radiation detector for alpha particles and low energy gamma-rays. The silicon photo-sensor is susceptible to radiation damage. Therefore, it is important to investigate the effects of radiation damage to the fabricated PIN photodiode. We measure the radiation damage to a PIN photodiode by a 35 MeV proton beam at the Korea Institute of Radiological and Medical Sciences (KIRAMS). We present the effects of proton radiation on the electrical properties of the PIN photodiode.", "meta": {"doi": "10.3938/jkps.59.692"}, "_input_hash": -1202953208, "_task_hash": 278727161, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "develop", "start": 3, "end": 10, "id": 1, "annotation": null}, {"text": "a", "start": 11, "end": 12, "id": 2, "annotation": null}, {"text": "backside", "start": 13, "end": 21, "id": 3, "annotation": null}, {"text": "illuminated", "start": 22, "end": 33, "id": 4, "annotation": null}, {"text": "photo", "start": 34, "end": 39, "id": 5, "annotation": null}, {"text": "-", "start": 40, "end": 41, "id": 6, "annotation": null}, {"text": "sensor", "start": 42, "end": 48, "id": 7, "annotation": null}, {"text": "that", "start": 49, "end": 53, "id": 8, "annotation": null}, {"text": "is", "start": 54, "end": 56, "id": 9, "annotation": null}, {"text": "fabricated", "start": 57, "end": 67, "id": 10, "annotation": null}, {"text": "on", "start": 68, "end": 70, "id": 11, "annotation": null}, {"text": "a", "start": 71, "end": 72, "id": 12, "annotation": null}, {"text": "<", "start": 73, "end": 74, "id": 13, "annotation": null}, {"text": "100>-oriented", "start": 75, "end": 88, "id": 14, "annotation": null}, {"text": ",", "start": 89, "end": 90, "id": 15, "annotation": null}, {"text": "high", "start": 91, "end": 95, "id": 16, "annotation": null}, {"text": "resistivity", "start": 96, "end": 107, "id": 17, "annotation": null}, {"text": "n", "start": 108, "end": 109, "id": 18, "annotation": "DOPANT"}, {"text": "-", "start": 110, "end": 111, "id": 19, "annotation": "DOPANT"}, {"text": "type", "start": 112, "end": 116, "id": 20, "annotation": "DOPANT"}, {"text": "400", "start": 117, "end": 120, "id": 21, "annotation": null}, {"text": "\u03bcm", "start": 121, "end": 123, "id": 22, "annotation": null}, {"text": "thick", "start": 124, "end": 129, "id": 23, "annotation": null}, {"text": "silicon", "start": 130, "end": 137, "id": 24, "annotation": "BASEMAT"}, {"text": "wafer", "start": 138, "end": 143, "id": 25, "annotation": null}, {"text": ".", "start": 144, "end": 145, "id": 26, "annotation": null}], [{"text": "The", "start": 146, "end": 149, "id": 27, "annotation": null}, {"text": "PIN", "start": 150, "end": 153, "id": 28, "annotation": null}, {"text": "photodiode", "start": 154, "end": 164, "id": 29, "annotation": null}, {"text": "is", "start": 165, "end": 167, "id": 30, "annotation": null}, {"text": "designed", "start": 168, "end": 176, "id": 31, "annotation": null}, {"text": "and", "start": 177, "end": 180, "id": 32, "annotation": null}, {"text": "manufactured", "start": 181, "end": 193, "id": 33, "annotation": null}, {"text": "as", "start": 194, "end": 196, "id": 34, "annotation": null}, {"text": "a", "start": 197, "end": 198, "id": 35, "annotation": null}, {"text": "radiation", "start": 199, "end": 208, "id": 36, "annotation": null}, {"text": "detector", "start": 209, "end": 217, "id": 37, "annotation": null}, {"text": "for", "start": 218, "end": 221, "id": 38, "annotation": null}, {"text": "alpha", "start": 222, "end": 227, "id": 39, "annotation": null}, {"text": "particles", "start": 228, "end": 237, "id": 40, "annotation": null}, {"text": "and", "start": 238, "end": 241, "id": 41, "annotation": null}, {"text": "low", "start": 242, "end": 245, "id": 42, "annotation": null}, {"text": "energy", "start": 246, "end": 252, "id": 43, "annotation": null}, {"text": "gamma", "start": 253, "end": 258, "id": 44, "annotation": null}, {"text": "-", "start": 259, "end": 260, "id": 45, "annotation": null}, {"text": "rays", "start": 261, "end": 265, "id": 46, "annotation": null}, {"text": ".", "start": 266, "end": 267, "id": 47, "annotation": null}], [{"text": "The", "start": 268, "end": 271, "id": 48, "annotation": null}, {"text": "silicon", "start": 272, "end": 279, "id": 49, "annotation": null}, {"text": "photo", "start": 280, "end": 285, "id": 50, "annotation": null}, {"text": "-", "start": 286, "end": 287, "id": 51, "annotation": null}, {"text": "sensor", "start": 288, "end": 294, "id": 52, "annotation": null}, {"text": "is", "start": 295, "end": 297, "id": 53, "annotation": null}, {"text": "susceptible", "start": 298, "end": 309, "id": 54, "annotation": null}, {"text": "to", "start": 310, "end": 312, "id": 55, "annotation": null}, {"text": "radiation", "start": 313, "end": 322, "id": 56, "annotation": null}, {"text": "damage", "start": 323, "end": 329, "id": 57, "annotation": null}, {"text": ".", "start": 330, "end": 331, "id": 58, "annotation": null}], [{"text": "Therefore", "start": 332, "end": 341, "id": 59, "annotation": null}, {"text": ",", "start": 342, "end": 343, "id": 60, "annotation": null}, {"text": "it", "start": 344, "end": 346, "id": 61, "annotation": null}, {"text": "is", "start": 347, "end": 349, "id": 62, "annotation": null}, {"text": "important", "start": 350, "end": 359, "id": 63, "annotation": null}, {"text": "to", "start": 360, "end": 362, "id": 64, "annotation": null}, {"text": "investigate", "start": 363, "end": 374, "id": 65, "annotation": null}, {"text": "the", "start": 375, "end": 378, "id": 66, "annotation": null}, {"text": "effects", "start": 379, "end": 386, "id": 67, "annotation": null}, {"text": "of", "start": 387, "end": 389, "id": 68, "annotation": null}, {"text": "radiation", "start": 390, "end": 399, "id": 69, "annotation": null}, {"text": "damage", "start": 400, "end": 406, "id": 70, "annotation": null}, {"text": "to", "start": 407, "end": 409, "id": 71, "annotation": null}, {"text": "the", "start": 410, "end": 413, "id": 72, "annotation": null}, {"text": "fabricated", "start": 414, "end": 424, "id": 73, "annotation": null}, {"text": "PIN", "start": 425, "end": 428, "id": 74, "annotation": null}, {"text": "photodiode", "start": 429, "end": 439, "id": 75, "annotation": null}, {"text": ".", "start": 440, "end": 441, "id": 76, "annotation": null}], [{"text": "We", "start": 442, "end": 444, "id": 77, "annotation": null}, {"text": "measure", "start": 445, "end": 452, "id": 78, "annotation": null}, {"text": "the", "start": 453, "end": 456, "id": 79, "annotation": null}, {"text": "radiation", "start": 457, "end": 466, "id": 80, "annotation": null}, {"text": "damage", "start": 467, "end": 473, "id": 81, "annotation": null}, {"text": "to", "start": 474, "end": 476, "id": 82, "annotation": null}, {"text": "a", "start": 477, "end": 478, "id": 83, "annotation": null}, {"text": "PIN", "start": 479, "end": 482, "id": 84, "annotation": null}, {"text": "photodiode", "start": 483, "end": 493, "id": 85, "annotation": null}, {"text": "by", "start": 494, "end": 496, "id": 86, "annotation": null}, {"text": "a", "start": 497, "end": 498, "id": 87, "annotation": null}, {"text": "35", "start": 499, "end": 501, "id": 88, "annotation": null}, {"text": "MeV", "start": 502, "end": 505, "id": 89, "annotation": null}, {"text": "proton", "start": 506, "end": 512, "id": 90, "annotation": null}, {"text": "beam", "start": 513, "end": 517, "id": 91, "annotation": null}, {"text": "at", "start": 518, "end": 520, "id": 92, "annotation": null}, {"text": "the", "start": 521, "end": 524, "id": 93, "annotation": null}, {"text": "Korea", "start": 525, "end": 530, "id": 94, "annotation": null}, {"text": "Institute", "start": 531, "end": 540, "id": 95, "annotation": null}, {"text": "of", "start": 541, "end": 543, "id": 96, "annotation": null}, {"text": "Radiological", "start": 544, "end": 556, "id": 97, "annotation": null}, {"text": "and", "start": 557, "end": 560, "id": 98, "annotation": null}, {"text": "Medical", "start": 561, "end": 568, "id": 99, "annotation": null}, {"text": "Sciences", "start": 569, "end": 577, "id": 100, "annotation": null}, {"text": "(", "start": 578, "end": 579, "id": 101, "annotation": null}, {"text": "KIRAMS", "start": 580, "end": 586, "id": 102, "annotation": null}, {"text": ")", "start": 587, "end": 588, "id": 103, "annotation": null}, {"text": ".", "start": 589, "end": 590, "id": 104, "annotation": null}], [{"text": "We", "start": 591, "end": 593, "id": 105, "annotation": null}, {"text": "present", "start": 594, "end": 601, "id": 106, "annotation": null}, {"text": "the", "start": 602, "end": 605, "id": 107, "annotation": null}, {"text": "effects", "start": 606, "end": 613, "id": 108, "annotation": null}, {"text": "of", "start": 614, "end": 616, "id": 109, "annotation": null}, {"text": "proton", "start": 617, "end": 623, "id": 110, "annotation": null}, {"text": "radiation", "start": 624, "end": 633, "id": 111, "annotation": null}, {"text": "on", "start": 634, "end": 636, "id": 112, "annotation": null}, {"text": "the", "start": 637, "end": 640, "id": 113, "annotation": null}, {"text": "electrical", "start": 641, "end": 651, "id": 114, "annotation": null}, {"text": "properties", "start": 652, "end": 662, "id": 115, "annotation": null}, {"text": "of", "start": 663, "end": 665, "id": 116, "annotation": null}, {"text": "the", "start": 666, "end": 669, "id": 117, "annotation": null}, {"text": "PIN", "start": 670, "end": 673, "id": 118, "annotation": null}, {"text": "photodiode", "start": 674, "end": 684, "id": 119, "annotation": null}, {"text": ".", "start": 685, "end": 686, "id": 120, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "Half-metallic ferromagnetism in Cu-doped ZnO is predicted by accurate full-potential linearized augmented plane-wave and DMol3 calculations based on density functional theory. A net magnetic moment of 1 \u03bcB is found per Cu. At a Cu concentration of 12.5%, total energy calculations show that the ferromagnetic state is 43 meV lower than the antiferromagnetic state and is thus predicted to be the ground state with a Tc estimated to be about 380 K. The magnetic moments are localized within the Cu O4 tetrahedron with ferromagnetic coupling between Cu and O. The electronic states near EF are dominated by strong hybridization between O 2p and Cu 3d which implies that the Cu-O bond is quite covalent instead of purely ionic. We examine the interplay between the carrier density and the ferromagnetism with N codoping and oxygen vacancies where we find no apparent relation between them. Oxygen vacancies tend to destroy the ferromagnetism and therefore should be avoided during sample fabrication. We found no clustering tendency of the Cu atoms. Since there is no magnetic element in this compound, Cu-doped ZnO appears to be an unambiguous dilute magnetic semiconductor where ferromagnetic precipitate problems can be avoided. \u00a9 2006 The American Physical Society.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Half", "start": 0, "end": 4, "annotation": null}, {"text": "-", "start": 4, "end": 5, "annotation": null}, {"text": "metallic", "start": 5, "end": 13, "annotation": null}, {"text": "ferromagnetism", "start": 14, "end": 28, "annotation": null}, {"text": "in", "start": 29, "end": 31, "annotation": null}, {"text": "Cu", "start": 32, "end": 34, "annotation": "DOPANT"}, {"text": "-", "start": 34, "end": 35, "annotation": null}, {"text": "doped", "start": 35, "end": 40, "annotation": null}, {"text": "ZnO", "start": 41, "end": 44, "annotation": "BASEMAT"}, {"text": "is", "start": 45, "end": 47, "annotation": null}, {"text": "predicted", "start": 48, "end": 57, "annotation": null}, {"text": "by", "start": 58, "end": 60, "annotation": null}, {"text": "accurate", "start": 61, "end": 69, "annotation": null}, {"text": "full", "start": 70, "end": 74, "annotation": null}, {"text": "-", "start": 74, "end": 75, "annotation": null}, {"text": "potential", "start": 75, "end": 84, "annotation": null}, {"text": "linearized", "start": 85, "end": 95, "annotation": null}, {"text": "augmented", "start": 96, "end": 105, "annotation": null}, {"text": "plane", "start": 106, "end": 111, "annotation": null}, {"text": "-", "start": 111, "end": 112, "annotation": null}, {"text": "wave", "start": 112, "end": 116, "annotation": null}, {"text": "and", "start": 117, "end": 120, "annotation": null}, {"text": "DMol3", "start": 121, "end": 126, "annotation": null}, {"text": "calculations", "start": 127, "end": 139, "annotation": null}, {"text": "based", "start": 140, "end": 145, "annotation": null}, {"text": "on", "start": 146, "end": 148, "annotation": null}, {"text": "density", "start": 149, "end": 156, "annotation": null}, {"text": "functional", "start": 157, "end": 167, "annotation": null}, {"text": "theory", "start": 168, "end": 174, "annotation": null}, {"text": ".", "start": 174, "end": 175, "annotation": null}], [{"text": "A", "start": 176, "end": 177, "annotation": null}, {"text": "net", "start": 178, "end": 181, "annotation": null}, {"text": "magnetic", "start": 182, "end": 190, "annotation": null}, {"text": "moment", "start": 191, "end": 197, "annotation": null}, {"text": "of", "start": 198, "end": 200, "annotation": null}, {"text": "1", "start": 201, "end": 202, "annotation": null}, {"text": "\u03bcB", "start": 203, "end": 205, "annotation": null}, {"text": "is", "start": 206, "end": 208, "annotation": null}, {"text": "found", "start": 209, "end": 214, "annotation": null}, {"text": "per", "start": 215, "end": 218, "annotation": null}, {"text": "Cu", "start": 219, "end": 221, "annotation": null}, {"text": ".", "start": 221, "end": 222, "annotation": null}], [{"text": "At", "start": 223, "end": 225, "annotation": null}, {"text": "a", "start": 226, "end": 227, "annotation": null}, {"text": "Cu", "start": 228, "end": 230, "annotation": "DOPANT"}, {"text": "concentration", "start": 231, "end": 244, "annotation": null}, {"text": "of", "start": 245, "end": 247, "annotation": null}, {"text": "12.5", "start": 248, "end": 252, "annotation": "DOPMODQ"}, {"text": "%", "start": 252, "end": 253, "annotation": "DOPMODQ"}, {"text": ",", "start": 253, "end": 254, "annotation": null}, {"text": "total", "start": 255, "end": 260, "annotation": null}, {"text": "energy", "start": 261, "end": 267, "annotation": null}, {"text": "calculations", "start": 268, "end": 280, "annotation": null}, {"text": "show", "start": 281, "end": 285, "annotation": null}, {"text": "that", "start": 286, "end": 290, "annotation": null}, {"text": "the", "start": 291, "end": 294, "annotation": null}, {"text": "ferromagnetic", "start": 295, "end": 308, "annotation": null}, {"text": "state", "start": 309, "end": 314, "annotation": null}, {"text": "is", "start": 315, "end": 317, "annotation": null}, {"text": "43", "start": 318, "end": 320, "annotation": null}, {"text": "meV", "start": 321, "end": 324, "annotation": null}, {"text": "lower", "start": 325, "end": 330, "annotation": null}, {"text": "than", "start": 331, "end": 335, "annotation": null}, {"text": "the", "start": 336, "end": 339, "annotation": null}, {"text": "antiferromagnetic", "start": 340, "end": 357, "annotation": null}, {"text": "state", "start": 358, "end": 363, "annotation": null}, {"text": "and", "start": 364, "end": 367, "annotation": null}, {"text": "is", "start": 368, "end": 370, "annotation": null}, {"text": "thus", "start": 371, "end": 375, "annotation": null}, {"text": "predicted", "start": 376, "end": 385, "annotation": null}, {"text": "to", "start": 386, "end": 388, "annotation": null}, {"text": "be", "start": 389, "end": 391, "annotation": null}, {"text": "the", "start": 392, "end": 395, "annotation": null}, {"text": "ground", "start": 396, "end": 402, "annotation": null}, {"text": "state", "start": 403, "end": 408, "annotation": null}, {"text": "with", "start": 409, "end": 413, "annotation": null}, {"text": "a", "start": 414, "end": 415, "annotation": null}, {"text": "Tc", "start": 416, "end": 418, "annotation": null}, {"text": "estimated", "start": 419, "end": 428, "annotation": null}, {"text": "to", "start": 429, "end": 431, "annotation": null}, {"text": "be", "start": 432, "end": 434, "annotation": null}, {"text": "about", "start": 435, "end": 440, "annotation": null}, {"text": "380", "start": 441, "end": 444, "annotation": null}, {"text": "K", "start": 445, "end": 446, "annotation": null}, {"text": ".", "start": 446, "end": 447, "annotation": null}], [{"text": "The", "start": 448, "end": 451, "annotation": null}, {"text": "magnetic", "start": 452, "end": 460, "annotation": null}, {"text": "moments", "start": 461, "end": 468, "annotation": null}, {"text": "are", "start": 469, "end": 472, "annotation": null}, {"text": "localized", "start": 473, "end": 482, "annotation": null}, {"text": "within", "start": 483, "end": 489, "annotation": null}, {"text": "the", "start": 490, "end": 493, "annotation": null}, {"text": "Cu", "start": 494, "end": 496, "annotation": null}, {"text": "O4", "start": 497, "end": 499, "annotation": null}, {"text": "tetrahedron", "start": 500, "end": 511, "annotation": null}, {"text": "with", "start": 512, "end": 516, "annotation": null}, {"text": "ferromagnetic", "start": 517, "end": 530, "annotation": null}, {"text": "coupling", "start": 531, "end": 539, "annotation": null}, {"text": "between", "start": 540, "end": 547, "annotation": null}, {"text": "Cu", "start": 548, "end": 550, "annotation": null}, {"text": "and", "start": 551, "end": 554, "annotation": null}, {"text": "O", "start": 555, "end": 556, "annotation": null}, {"text": ".", "start": 556, "end": 557, "annotation": null}], [{"text": "The", "start": 558, "end": 561, "annotation": null}, {"text": "electronic", "start": 562, "end": 572, "annotation": null}, {"text": "states", "start": 573, "end": 579, "annotation": null}, {"text": "near", "start": 580, "end": 584, "annotation": null}, {"text": "EF", "start": 585, "end": 587, "annotation": null}, {"text": "are", "start": 588, "end": 591, "annotation": null}, {"text": "dominated", "start": 592, "end": 601, "annotation": null}, {"text": "by", "start": 602, "end": 604, "annotation": null}, {"text": "strong", "start": 605, "end": 611, "annotation": null}, {"text": "hybridization", "start": 612, "end": 625, "annotation": null}, {"text": "between", "start": 626, "end": 633, "annotation": null}, {"text": "O", "start": 634, "end": 635, "annotation": null}, {"text": "2p", "start": 636, "end": 638, "annotation": null}, {"text": "and", "start": 639, "end": 642, "annotation": null}, {"text": "Cu", "start": 643, "end": 645, "annotation": null}, {"text": "3d", "start": 646, "end": 648, "annotation": null}, {"text": "which", "start": 649, "end": 654, "annotation": null}, {"text": "implies", "start": 655, "end": 662, "annotation": null}, {"text": "that", "start": 663, "end": 667, "annotation": null}, {"text": "the", "start": 668, "end": 671, "annotation": null}, {"text": "Cu-O", "start": 672, "end": 676, "annotation": null}, {"text": "bond", "start": 677, "end": 681, "annotation": null}, {"text": "is", "start": 682, "end": 684, "annotation": null}, {"text": "quite", "start": 685, "end": 690, "annotation": null}, {"text": "covalent", "start": 691, "end": 699, "annotation": null}, {"text": "instead", "start": 700, "end": 707, "annotation": null}, {"text": "of", "start": 708, "end": 710, "annotation": null}, {"text": "purely", "start": 711, "end": 717, "annotation": null}, {"text": "ionic", "start": 718, "end": 723, "annotation": null}, {"text": ".", "start": 723, "end": 724, "annotation": null}], [{"text": "We", "start": 725, "end": 727, "annotation": null}, {"text": "examine", "start": 728, "end": 735, "annotation": null}, {"text": "the", "start": 736, "end": 739, "annotation": null}, {"text": "interplay", "start": 740, "end": 749, "annotation": null}, {"text": "between", "start": 750, "end": 757, "annotation": null}, {"text": "the", "start": 758, "end": 761, "annotation": null}, {"text": "carrier", "start": 762, "end": 769, "annotation": null}, {"text": "density", "start": 770, "end": 777, "annotation": null}, {"text": "and", "start": 778, "end": 781, "annotation": null}, {"text": "the", "start": 782, "end": 785, "annotation": null}, {"text": "ferromagnetism", "start": 786, "end": 800, "annotation": null}, {"text": "with", "start": 801, "end": 805, "annotation": null}, {"text": "N", "start": 806, "end": 807, "annotation": "DOPANT"}, {"text": "codoping", "start": 808, "end": 816, "annotation": null}, {"text": "and", "start": 817, "end": 820, "annotation": null}, {"text": "oxygen", "start": 821, "end": 827, "annotation": null}, {"text": "vacancies", "start": 828, "end": 837, "annotation": null}, {"text": "where", "start": 838, "end": 843, "annotation": null}, {"text": "we", "start": 844, "end": 846, "annotation": null}, {"text": "find", "start": 847, "end": 851, "annotation": null}, {"text": "no", "start": 852, "end": 854, "annotation": null}, {"text": "apparent", "start": 855, "end": 863, "annotation": null}, {"text": "relation", "start": 864, "end": 872, "annotation": null}, {"text": "between", "start": 873, "end": 880, "annotation": null}, {"text": "them", "start": 881, "end": 885, "annotation": null}, {"text": ".", "start": 885, "end": 886, "annotation": null}], [{"text": "Oxygen", "start": 887, "end": 893, "annotation": null}, {"text": "vacancies", "start": 894, "end": 903, "annotation": null}, {"text": "tend", "start": 904, "end": 908, "annotation": null}, {"text": "to", "start": 909, "end": 911, "annotation": null}, {"text": "destroy", "start": 912, "end": 919, "annotation": null}, {"text": "the", "start": 920, "end": 923, "annotation": null}, {"text": "ferromagnetism", "start": 924, "end": 938, "annotation": null}, {"text": "and", "start": 939, "end": 942, "annotation": null}, {"text": "therefore", "start": 943, "end": 952, "annotation": null}, {"text": "should", "start": 953, "end": 959, "annotation": null}, {"text": "be", "start": 960, "end": 962, "annotation": null}, {"text": "avoided", "start": 963, "end": 970, "annotation": null}, {"text": "during", "start": 971, "end": 977, "annotation": null}, {"text": "sample", "start": 978, "end": 984, "annotation": null}, {"text": "fabrication", "start": 985, "end": 996, "annotation": null}, {"text": ".", "start": 996, "end": 997, "annotation": null}], [{"text": "We", "start": 998, "end": 1000, "annotation": null}, {"text": "found", "start": 1001, "end": 1006, "annotation": null}, {"text": "no", "start": 1007, "end": 1009, "annotation": null}, {"text": "clustering", "start": 1010, "end": 1020, "annotation": null}, {"text": "tendency", "start": 1021, "end": 1029, "annotation": null}, {"text": "of", "start": 1030, "end": 1032, "annotation": null}, {"text": "the", "start": 1033, "end": 1036, "annotation": null}, {"text": "Cu", "start": 1037, "end": 1039, "annotation": null}, {"text": "atoms", "start": 1040, "end": 1045, "annotation": null}, {"text": ".", "start": 1045, "end": 1046, "annotation": null}], [{"text": "Since", "start": 1047, "end": 1052, "annotation": null}, {"text": "there", "start": 1053, "end": 1058, "annotation": null}, {"text": "is", "start": 1059, "end": 1061, "annotation": null}, {"text": "no", "start": 1062, "end": 1064, "annotation": null}, {"text": "magnetic", "start": 1065, "end": 1073, "annotation": null}, {"text": "element", "start": 1074, "end": 1081, "annotation": null}, {"text": "in", "start": 1082, "end": 1084, "annotation": null}, {"text": "this", "start": 1085, "end": 1089, "annotation": null}, {"text": "compound", "start": 1090, "end": 1098, "annotation": null}, {"text": ",", "start": 1098, "end": 1099, "annotation": null}, {"text": "Cu", "start": 1100, "end": 1102, "annotation": "DOPANT"}, {"text": "-", "start": 1102, "end": 1103, "annotation": null}, {"text": "doped", "start": 1103, "end": 1108, "annotation": null}, {"text": "ZnO", "start": 1109, "end": 1112, "annotation": "BASEMAT"}, {"text": "appears", "start": 1113, "end": 1120, "annotation": null}, {"text": "to", "start": 1121, "end": 1123, "annotation": null}, {"text": "be", "start": 1124, "end": 1126, "annotation": null}, {"text": "an", "start": 1127, "end": 1129, "annotation": null}, {"text": "unambiguous", "start": 1130, "end": 1141, "annotation": null}, {"text": "dilute", "start": 1142, "end": 1148, "annotation": null}, {"text": "magnetic", "start": 1149, "end": 1157, "annotation": null}, {"text": "semiconductor", "start": 1158, "end": 1171, "annotation": null}, {"text": "where", "start": 1172, "end": 1177, "annotation": null}, {"text": "ferromagnetic", "start": 1178, "end": 1191, "annotation": null}, {"text": "precipitate", "start": 1192, "end": 1203, "annotation": null}, {"text": "problems", "start": 1204, "end": 1212, "annotation": null}, {"text": "can", "start": 1213, "end": 1216, "annotation": null}, {"text": "be", "start": 1217, "end": 1219, "annotation": null}, {"text": "avoided", "start": 1220, "end": 1227, "annotation": null}, {"text": ".", "start": 1227, "end": 1228, "annotation": null}]], "meta": {"doi": "10.1103/PhysRevB.73.033203"}} {"text": "Ni0.4Zn0.6Fe2O4 and Ni0.4Zn0.6Fe1.95Ti0.05O4 ferrites were prepared by solid state reaction method and their magnetic properties were investigated. It was found that there is a magnetic hysteresis loss crossover around Bm = 4 mT, the hysteresis loss coefficient from 5.5 \u00d7 10\u22122 T\u22121 in Bm < 4 mT jump down to 4.0 \u00d7 10\u22122 T\u22121 in Bm > 4 mT in Ni0.4Zn0.6Fe1.95Ti0.05O4 sample by measuring field dependence of relative loss factor. This crossover was verified by measuring field dependence of real part permeability and magnetic loops. The possible mechanism of this crossover was discussed, and it was regarded that the crossover was due to magnetic domain wall pinning by Ti cation doped in ferrite.", "meta": {"doi": "10.1016/j.jallcom.2015.11.062"}, "_input_hash": 1534591866, "_task_hash": 1341283057, "tokens": [[{"text": "Ni0.4Zn0.6Fe2O4", "start": 0, "end": 15, "id": 0, "annotation": null}, {"text": "and", "start": 16, "end": 19, "id": 1, "annotation": null}, {"text": "Ni0.4Zn0.6Fe1.95Ti0.05O4", "start": 20, "end": 44, "id": 2, "annotation": null}, {"text": "ferrites", "start": 45, "end": 53, "id": 3, "annotation": null}, {"text": "were", "start": 54, "end": 58, "id": 4, "annotation": null}, {"text": "prepared", "start": 59, "end": 67, "id": 5, "annotation": null}, {"text": "by", "start": 68, "end": 70, "id": 6, "annotation": null}, {"text": "solid", "start": 71, "end": 76, "id": 7, "annotation": null}, {"text": "state", "start": 77, "end": 82, "id": 8, "annotation": null}, {"text": "reaction", "start": 83, "end": 91, "id": 9, "annotation": null}, {"text": "method", "start": 92, "end": 98, "id": 10, "annotation": null}, {"text": "and", "start": 99, "end": 102, "id": 11, "annotation": null}, {"text": "their", "start": 103, "end": 108, "id": 12, "annotation": null}, {"text": "magnetic", "start": 109, "end": 117, "id": 13, "annotation": null}, {"text": "properties", "start": 118, "end": 128, "id": 14, "annotation": null}, {"text": "were", "start": 129, "end": 133, "id": 15, "annotation": null}, {"text": "investigated", "start": 134, "end": 146, "id": 16, "annotation": null}, {"text": ".", "start": 147, "end": 148, "id": 17, "annotation": null}], [{"text": "It", "start": 149, "end": 151, "id": 18, "annotation": null}, {"text": "was", "start": 152, "end": 155, "id": 19, "annotation": null}, {"text": "found", "start": 156, "end": 161, "id": 20, "annotation": null}, {"text": "that", "start": 162, "end": 166, "id": 21, "annotation": null}, {"text": "there", "start": 167, "end": 172, "id": 22, "annotation": null}, {"text": "is", "start": 173, "end": 175, "id": 23, "annotation": null}, {"text": "a", "start": 176, "end": 177, "id": 24, "annotation": null}, {"text": "magnetic", "start": 178, "end": 186, "id": 25, "annotation": null}, {"text": "hysteresis", "start": 187, "end": 197, "id": 26, "annotation": null}, {"text": "loss", "start": 198, "end": 202, "id": 27, "annotation": null}, {"text": "crossover", "start": 203, "end": 212, "id": 28, "annotation": null}, {"text": "around", "start": 213, "end": 219, "id": 29, "annotation": null}, {"text": "Bm", "start": 220, "end": 222, "id": 30, "annotation": null}, {"text": "=", "start": 223, "end": 224, "id": 31, "annotation": null}, {"text": "4", "start": 225, "end": 226, "id": 32, "annotation": null}, {"text": "mT", "start": 227, "end": 229, "id": 33, "annotation": null}, {"text": ",", "start": 230, "end": 231, "id": 34, "annotation": null}, {"text": "the", "start": 232, "end": 235, "id": 35, "annotation": null}, {"text": "hysteresis", "start": 236, "end": 246, "id": 36, "annotation": null}, {"text": "loss", "start": 247, "end": 251, "id": 37, "annotation": null}, {"text": "coefficient", "start": 252, "end": 263, "id": 38, "annotation": null}, {"text": "from", "start": 264, "end": 268, "id": 39, "annotation": null}, {"text": "5.5", "start": 269, "end": 272, "id": 40, "annotation": null}, {"text": "\u00d7", "start": 273, "end": 274, "id": 41, "annotation": null}, {"text": "10\u22122", "start": 275, "end": 279, "id": 42, "annotation": null}, {"text": "T\u22121", "start": 280, "end": 283, "id": 43, "annotation": null}, {"text": "in", "start": 284, "end": 286, "id": 44, "annotation": null}, {"text": "Bm", "start": 287, "end": 289, "id": 45, "annotation": null}, {"text": "<", "start": 290, "end": 291, "id": 46, "annotation": null}, {"text": "4", "start": 292, "end": 293, "id": 47, "annotation": null}, {"text": "mT", "start": 294, "end": 296, "id": 48, "annotation": null}, {"text": "jump", "start": 297, "end": 301, "id": 49, "annotation": null}, {"text": "down", "start": 302, "end": 306, "id": 50, "annotation": null}, {"text": "to", "start": 307, "end": 309, "id": 51, "annotation": null}, {"text": "4.0", "start": 310, "end": 313, "id": 52, "annotation": null}, {"text": "\u00d7", "start": 314, "end": 315, "id": 53, "annotation": null}, {"text": "10\u22122", "start": 316, "end": 320, "id": 54, "annotation": null}, {"text": "T\u22121", "start": 321, "end": 324, "id": 55, "annotation": null}, {"text": "in", "start": 325, "end": 327, "id": 56, "annotation": null}, {"text": "Bm", "start": 328, "end": 330, "id": 57, "annotation": null}, {"text": ">", "start": 331, "end": 332, "id": 58, "annotation": null}, {"text": "4", "start": 333, "end": 334, "id": 59, "annotation": null}, {"text": "mT", "start": 335, "end": 337, "id": 60, "annotation": null}, {"text": "in", "start": 338, "end": 340, "id": 61, "annotation": null}, {"text": "Ni0.4Zn0.6Fe1.95Ti0.05O4", "start": 341, "end": 365, "id": 62, "annotation": null}, {"text": "sample", "start": 366, "end": 372, "id": 63, "annotation": null}, {"text": "by", "start": 373, "end": 375, "id": 64, "annotation": null}, {"text": "measuring", "start": 376, "end": 385, "id": 65, "annotation": null}, {"text": "field", "start": 386, "end": 391, "id": 66, "annotation": null}, {"text": "dependence", "start": 392, "end": 402, "id": 67, "annotation": null}, {"text": "of", "start": 403, "end": 405, "id": 68, "annotation": null}, {"text": "relative", "start": 406, "end": 414, "id": 69, "annotation": null}, {"text": "loss", "start": 415, "end": 419, "id": 70, "annotation": null}, {"text": "factor", "start": 420, "end": 426, "id": 71, "annotation": null}, {"text": ".", "start": 427, "end": 428, "id": 72, "annotation": null}], [{"text": "This", "start": 429, "end": 433, "id": 73, "annotation": null}, {"text": "crossover", "start": 434, "end": 443, "id": 74, "annotation": null}, {"text": "was", "start": 444, "end": 447, "id": 75, "annotation": null}, {"text": "verified", "start": 448, "end": 456, "id": 76, "annotation": null}, {"text": "by", "start": 457, "end": 459, "id": 77, "annotation": null}, {"text": "measuring", "start": 460, "end": 469, "id": 78, "annotation": null}, {"text": "field", "start": 470, "end": 475, "id": 79, "annotation": null}, {"text": "dependence", "start": 476, "end": 486, "id": 80, "annotation": null}, {"text": "of", "start": 487, "end": 489, "id": 81, "annotation": null}, {"text": "real", "start": 490, "end": 494, "id": 82, "annotation": null}, {"text": "part", "start": 495, "end": 499, "id": 83, "annotation": null}, {"text": "permeability", "start": 500, "end": 512, "id": 84, "annotation": null}, {"text": "and", "start": 513, "end": 516, "id": 85, "annotation": null}, {"text": "magnetic", "start": 517, "end": 525, "id": 86, "annotation": null}, {"text": "loops", "start": 526, "end": 531, "id": 87, "annotation": null}, {"text": ".", "start": 532, "end": 533, "id": 88, "annotation": null}], [{"text": "The", "start": 534, "end": 537, "id": 89, "annotation": null}, {"text": "possible", "start": 538, "end": 546, "id": 90, "annotation": null}, {"text": "mechanism", "start": 547, "end": 556, "id": 91, "annotation": null}, {"text": "of", "start": 557, "end": 559, "id": 92, "annotation": null}, {"text": "this", "start": 560, "end": 564, "id": 93, "annotation": null}, {"text": "crossover", "start": 565, "end": 574, "id": 94, "annotation": null}, {"text": "was", "start": 575, "end": 578, "id": 95, "annotation": null}, {"text": "discussed", "start": 579, "end": 588, "id": 96, "annotation": null}, {"text": ",", "start": 589, "end": 590, "id": 97, "annotation": null}, {"text": "and", "start": 591, "end": 594, "id": 98, "annotation": null}, {"text": "it", "start": 595, "end": 597, "id": 99, "annotation": null}, {"text": "was", "start": 598, "end": 601, "id": 100, "annotation": null}, {"text": "regarded", "start": 602, "end": 610, "id": 101, "annotation": null}, {"text": "that", "start": 611, "end": 615, "id": 102, "annotation": null}, {"text": "the", "start": 616, "end": 619, "id": 103, "annotation": null}, {"text": "crossover", "start": 620, "end": 629, "id": 104, "annotation": null}, {"text": "was", "start": 630, "end": 633, "id": 105, "annotation": null}, {"text": "due", "start": 634, "end": 637, "id": 106, "annotation": null}, {"text": "to", "start": 638, "end": 640, "id": 107, "annotation": null}, {"text": "magnetic", "start": 641, "end": 649, "id": 108, "annotation": null}, {"text": "domain", "start": 650, "end": 656, "id": 109, "annotation": null}, {"text": "wall", "start": 657, "end": 661, "id": 110, "annotation": null}, {"text": "pinning", "start": 662, "end": 669, "id": 111, "annotation": null}, {"text": "by", "start": 670, "end": 672, "id": 112, "annotation": null}, {"text": "Ti", "start": 673, "end": 675, "id": 113, "annotation": "DOPANT"}, {"text": "cation", "start": 676, "end": 682, "id": 114, "annotation": null}, {"text": "doped", "start": 683, "end": 688, "id": 115, "annotation": null}, {"text": "in", "start": 689, "end": 691, "id": 116, "annotation": null}, {"text": "ferrite", "start": 692, "end": 699, "id": 117, "annotation": "BASEMAT"}, {"text": ".", "start": 700, "end": 701, "id": 118, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Using an atomic force microscope (AFM) at a controlled contact force, we report the electrical signal response of multi-walled carbon nanotubes (MWCNTs) disposed on a golden thin film. In this investigation, we highlight first the theoretical calculation of the contact resistance between two types of conductive tips (metal-coated and doped diamond-coated), individual MWCNTs and golden substrate. We also propose a circuit analysis model to schematize the \u00abtip-CNT-substrate\u00bb junction by means of a series-parallel resistance network. We estimate the contact resistance R of each contribution of the junction such as Rtip-CNT, RCNT-substrate and Rtip-substrate by using the Sharvin resistance model. Our final objective is thus to deduce the CNT intrinsic radial resistance taking into account the calculated electrical resistance values with the global resistance measured experimentally. An unwished electrochemical phenomenon at the tip apex has also been evidenced by performing measurements at different bias voltages with diamond tips. For negative tip-substrate bias, a systematic degradation in color and contrast of the electrical cartography occurs, consisting of an important and non-reversible increase of the measured resistance. This effect is attributed to the oxidation of some amorphous carbon areas scattered over the diamond layer covering the tip. For a direct polarization, the CNT and substrate surface can in turn be modified by an oxidation mechanism.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Using", "start": 0, "end": 5, "annotation": null}, {"text": "an", "start": 6, "end": 8, "annotation": null}, {"text": "atomic", "start": 9, "end": 15, "annotation": null}, {"text": "force", "start": 16, "end": 21, "annotation": null}, {"text": "microscope", "start": 22, "end": 32, "annotation": null}, {"text": "(", "start": 33, "end": 34, "annotation": null}, {"text": "AFM", "start": 34, "end": 37, "annotation": null}, {"text": ")", "start": 37, "end": 38, "annotation": null}, {"text": "at", "start": 39, "end": 41, "annotation": null}, {"text": "a", "start": 42, "end": 43, "annotation": null}, {"text": "controlled", "start": 44, "end": 54, "annotation": null}, {"text": "contact", "start": 55, "end": 62, "annotation": null}, {"text": "force", "start": 63, "end": 68, "annotation": null}, {"text": ",", "start": 68, "end": 69, "annotation": null}, {"text": "we", "start": 70, "end": 72, "annotation": null}, {"text": "report", "start": 73, "end": 79, "annotation": null}, {"text": "the", "start": 80, "end": 83, "annotation": null}, {"text": "electrical", "start": 84, "end": 94, "annotation": null}, {"text": "signal", "start": 95, "end": 101, "annotation": null}, {"text": "response", "start": 102, "end": 110, "annotation": null}, {"text": "of", "start": 111, "end": 113, "annotation": null}, {"text": "multi-walled", "start": 114, "end": 126, "annotation": null}, {"text": "carbon", "start": 127, "end": 133, "annotation": null}, {"text": "nanotubes", "start": 134, "end": 143, "annotation": null}, {"text": "(", "start": 144, "end": 145, "annotation": null}, {"text": "MWCNTs", "start": 145, "end": 151, "annotation": null}, {"text": ")", "start": 151, "end": 152, "annotation": null}, {"text": "disposed", "start": 153, "end": 161, "annotation": null}, {"text": "on", "start": 162, "end": 164, "annotation": null}, {"text": "a", "start": 165, "end": 166, "annotation": null}, {"text": "golden", "start": 167, "end": 173, "annotation": null}, {"text": "thin", "start": 174, "end": 178, "annotation": null}, {"text": "film", "start": 179, "end": 183, "annotation": null}, {"text": ".", "start": 183, "end": 184, "annotation": null}], [{"text": "In", "start": 185, "end": 187, "annotation": null}, {"text": "this", "start": 188, "end": 192, "annotation": null}, {"text": "investigation", "start": 193, "end": 206, "annotation": null}, {"text": ",", "start": 206, "end": 207, "annotation": null}, {"text": "we", "start": 208, "end": 210, "annotation": null}, {"text": "highlight", "start": 211, "end": 220, "annotation": null}, {"text": "first", "start": 221, "end": 226, "annotation": null}, {"text": "the", "start": 227, "end": 230, "annotation": null}, {"text": "theoretical", "start": 231, "end": 242, "annotation": null}, {"text": "calculation", "start": 243, "end": 254, "annotation": null}, {"text": "of", "start": 255, "end": 257, "annotation": null}, {"text": "the", "start": 258, "end": 261, "annotation": null}, {"text": "contact", "start": 262, "end": 269, "annotation": null}, {"text": "resistance", "start": 270, "end": 280, "annotation": null}, {"text": "between", "start": 281, "end": 288, "annotation": null}, {"text": "two", "start": 289, "end": 292, "annotation": null}, {"text": "types", "start": 293, "end": 298, "annotation": null}, {"text": "of", "start": 299, "end": 301, "annotation": null}, {"text": "conductive", "start": 302, "end": 312, "annotation": null}, {"text": "tips", "start": 313, "end": 317, "annotation": null}, {"text": "(", "start": 318, "end": 319, "annotation": null}, {"text": "metal", "start": 319, "end": 324, "annotation": null}, {"text": "-", "start": 324, "end": 325, "annotation": null}, {"text": "coated", "start": 325, "end": 331, "annotation": null}, {"text": "and", "start": 332, "end": 335, "annotation": null}, {"text": "doped", "start": 336, "end": 341, "annotation": "DOPANT"}, {"text": "diamond", "start": 342, "end": 349, "annotation": "BASEMAT"}, {"text": "-", "start": 349, "end": 350, "annotation": null}, {"text": "coated", "start": 350, "end": 356, "annotation": null}, {"text": ")", "start": 356, "end": 357, "annotation": null}, {"text": ",", "start": 357, "end": 358, "annotation": null}, {"text": "individual", "start": 359, "end": 369, "annotation": null}, {"text": "MWCNTs", "start": 370, "end": 376, "annotation": null}, {"text": "and", "start": 377, "end": 380, "annotation": null}, {"text": "golden", "start": 381, "end": 387, "annotation": null}, {"text": "substrate", "start": 388, "end": 397, "annotation": null}, {"text": ".", "start": 397, "end": 398, "annotation": null}], [{"text": "We", "start": 399, "end": 401, "annotation": null}, {"text": "also", "start": 402, "end": 406, "annotation": null}, {"text": "propose", "start": 407, "end": 414, "annotation": null}, {"text": "a", "start": 415, "end": 416, "annotation": null}, {"text": "circuit", "start": 417, "end": 424, "annotation": null}, {"text": "analysis", "start": 425, "end": 433, "annotation": null}, {"text": "model", "start": 434, "end": 439, "annotation": null}, {"text": "to", "start": 440, "end": 442, "annotation": null}, {"text": "schematize", "start": 443, "end": 453, "annotation": null}, {"text": "the", "start": 454, "end": 457, "annotation": null}, {"text": "\u00abtip-CNT-substrate\u00bb", "start": 458, "end": 477, "annotation": null}, {"text": "junction", "start": 478, "end": 486, "annotation": null}, {"text": "by", "start": 487, "end": 489, "annotation": null}, {"text": "means", "start": 490, "end": 495, "annotation": null}, {"text": "of", "start": 496, "end": 498, "annotation": null}, {"text": "a", "start": 499, "end": 500, "annotation": null}, {"text": "series", "start": 501, "end": 507, "annotation": null}, {"text": "-", "start": 507, "end": 508, "annotation": null}, {"text": "parallel", "start": 508, "end": 516, "annotation": null}, {"text": "resistance", "start": 517, "end": 527, "annotation": null}, {"text": "network", "start": 528, "end": 535, "annotation": null}, {"text": ".", "start": 535, "end": 536, "annotation": null}], [{"text": "We", "start": 537, "end": 539, "annotation": null}, {"text": "estimate", "start": 540, "end": 548, "annotation": null}, {"text": "the", "start": 549, "end": 552, "annotation": null}, {"text": "contact", "start": 553, "end": 560, "annotation": null}, {"text": "resistance", "start": 561, "end": 571, "annotation": null}, {"text": "R", "start": 572, "end": 573, "annotation": null}, {"text": "of", "start": 574, "end": 576, "annotation": null}, {"text": "each", "start": 577, "end": 581, "annotation": null}, {"text": "contribution", "start": 582, "end": 594, "annotation": null}, {"text": "of", "start": 595, "end": 597, "annotation": null}, {"text": "the", "start": 598, "end": 601, "annotation": null}, {"text": "junction", "start": 602, "end": 610, "annotation": null}, {"text": "such", "start": 611, "end": 615, "annotation": null}, {"text": "as", "start": 616, "end": 618, "annotation": null}, {"text": "Rtip", "start": 619, "end": 623, "annotation": null}, {"text": "-", "start": 623, "end": 624, "annotation": null}, {"text": "CNT", "start": 624, "end": 627, "annotation": null}, {"text": ",", "start": 627, "end": 628, "annotation": null}, {"text": "RCNT", "start": 629, "end": 633, "annotation": null}, {"text": "-", "start": 633, "end": 634, "annotation": null}, {"text": "substrate", "start": 634, "end": 643, "annotation": null}, {"text": "and", "start": 644, "end": 647, "annotation": null}, {"text": "Rtip", "start": 648, "end": 652, "annotation": null}, {"text": "-", "start": 652, "end": 653, "annotation": null}, {"text": "substrate", "start": 653, "end": 662, "annotation": null}, {"text": "by", "start": 663, "end": 665, "annotation": null}, {"text": "using", "start": 666, "end": 671, "annotation": null}, {"text": "the", "start": 672, "end": 675, "annotation": null}, {"text": "Sharvin", "start": 676, "end": 683, "annotation": null}, {"text": "resistance", "start": 684, "end": 694, "annotation": null}, {"text": "model", "start": 695, "end": 700, "annotation": null}, {"text": ".", "start": 700, "end": 701, "annotation": null}], [{"text": "Our", "start": 702, "end": 705, "annotation": null}, {"text": "final", "start": 706, "end": 711, "annotation": null}, {"text": "objective", "start": 712, "end": 721, "annotation": null}, {"text": "is", "start": 722, "end": 724, "annotation": null}, {"text": "thus", "start": 725, "end": 729, "annotation": null}, {"text": "to", "start": 730, "end": 732, "annotation": null}, {"text": "deduce", "start": 733, "end": 739, "annotation": null}, {"text": "the", "start": 740, "end": 743, "annotation": null}, {"text": "CNT", "start": 744, "end": 747, "annotation": null}, {"text": "intrinsic", "start": 748, "end": 757, "annotation": null}, {"text": "radial", "start": 758, "end": 764, "annotation": null}, {"text": "resistance", "start": 765, "end": 775, "annotation": null}, {"text": "taking", "start": 776, "end": 782, "annotation": null}, {"text": "into", "start": 783, "end": 787, "annotation": null}, {"text": "account", "start": 788, "end": 795, "annotation": null}, {"text": "the", "start": 796, "end": 799, "annotation": null}, {"text": "calculated", "start": 800, "end": 810, "annotation": null}, {"text": "electrical", "start": 811, "end": 821, "annotation": null}, {"text": "resistance", "start": 822, "end": 832, "annotation": null}, {"text": "values", "start": 833, "end": 839, "annotation": null}, {"text": "with", "start": 840, "end": 844, "annotation": null}, {"text": "the", "start": 845, "end": 848, "annotation": null}, {"text": "global", "start": 849, "end": 855, "annotation": null}, {"text": "resistance", "start": 856, "end": 866, "annotation": null}, {"text": "measured", "start": 867, "end": 875, "annotation": null}, {"text": "experimentally", "start": 876, "end": 890, "annotation": null}, {"text": ".", "start": 890, "end": 891, "annotation": null}], [{"text": "An", "start": 892, "end": 894, "annotation": null}, {"text": "unwished", "start": 895, "end": 903, "annotation": null}, {"text": "electrochemical", "start": 904, "end": 919, "annotation": null}, {"text": "phenomenon", "start": 920, "end": 930, "annotation": null}, {"text": "at", "start": 931, "end": 933, "annotation": null}, {"text": "the", "start": 934, "end": 937, "annotation": null}, {"text": "tip", "start": 938, "end": 941, "annotation": null}, {"text": "apex", "start": 942, "end": 946, "annotation": null}, {"text": "has", "start": 947, "end": 950, "annotation": null}, {"text": "also", "start": 951, "end": 955, "annotation": null}, {"text": "been", "start": 956, "end": 960, "annotation": null}, {"text": "evidenced", "start": 961, "end": 970, "annotation": null}, {"text": "by", "start": 971, "end": 973, "annotation": null}, {"text": "performing", "start": 974, "end": 984, "annotation": null}, {"text": "measurements", "start": 985, "end": 997, "annotation": null}, {"text": "at", "start": 998, "end": 1000, "annotation": null}, {"text": "different", "start": 1001, "end": 1010, "annotation": null}, {"text": "bias", "start": 1011, "end": 1015, "annotation": null}, {"text": "voltages", "start": 1016, "end": 1024, "annotation": null}, {"text": "with", "start": 1025, "end": 1029, "annotation": null}, {"text": "diamond", "start": 1030, "end": 1037, "annotation": null}, {"text": "tips", "start": 1038, "end": 1042, "annotation": null}, {"text": ".", "start": 1042, "end": 1043, "annotation": null}], [{"text": "For", "start": 1044, "end": 1047, "annotation": null}, {"text": "negative", "start": 1048, "end": 1056, "annotation": null}, {"text": "tip", "start": 1057, "end": 1060, "annotation": null}, {"text": "-", "start": 1060, "end": 1061, "annotation": null}, {"text": "substrate", "start": 1061, "end": 1070, "annotation": null}, {"text": "bias", "start": 1071, "end": 1075, "annotation": null}, {"text": ",", "start": 1075, "end": 1076, "annotation": null}, {"text": "a", "start": 1077, "end": 1078, "annotation": null}, {"text": "systematic", "start": 1079, "end": 1089, "annotation": null}, {"text": "degradation", "start": 1090, "end": 1101, "annotation": null}, {"text": "in", "start": 1102, "end": 1104, "annotation": null}, {"text": "color", "start": 1105, "end": 1110, "annotation": null}, {"text": "and", "start": 1111, "end": 1114, "annotation": null}, {"text": "contrast", "start": 1115, "end": 1123, "annotation": null}, {"text": "of", "start": 1124, "end": 1126, "annotation": null}, {"text": "the", "start": 1127, "end": 1130, "annotation": null}, {"text": "electrical", "start": 1131, "end": 1141, "annotation": null}, {"text": "cartography", "start": 1142, "end": 1153, "annotation": null}, {"text": "occurs", "start": 1154, "end": 1160, "annotation": null}, {"text": ",", "start": 1160, "end": 1161, "annotation": null}, {"text": "consisting", "start": 1162, "end": 1172, "annotation": null}, {"text": "of", "start": 1173, "end": 1175, "annotation": null}, {"text": "an", "start": 1176, "end": 1178, "annotation": null}, {"text": "important", "start": 1179, "end": 1188, "annotation": null}, {"text": "and", "start": 1189, "end": 1192, "annotation": null}, {"text": "non-reversible", "start": 1193, "end": 1207, "annotation": null}, {"text": "increase", "start": 1208, "end": 1216, "annotation": null}, {"text": "of", "start": 1217, "end": 1219, "annotation": null}, {"text": "the", "start": 1220, "end": 1223, "annotation": null}, {"text": "measured", "start": 1224, "end": 1232, "annotation": null}, {"text": "resistance", "start": 1233, "end": 1243, "annotation": null}, {"text": ".", "start": 1243, "end": 1244, "annotation": null}], [{"text": "This", "start": 1245, "end": 1249, "annotation": null}, {"text": "effect", "start": 1250, "end": 1256, "annotation": null}, {"text": "is", "start": 1257, "end": 1259, "annotation": null}, {"text": "attributed", "start": 1260, "end": 1270, "annotation": null}, {"text": "to", "start": 1271, "end": 1273, "annotation": null}, {"text": "the", "start": 1274, "end": 1277, "annotation": null}, {"text": "oxidation", "start": 1278, "end": 1287, "annotation": null}, {"text": "of", "start": 1288, "end": 1290, "annotation": null}, {"text": "some", "start": 1291, "end": 1295, "annotation": null}, {"text": "amorphous", "start": 1296, "end": 1305, "annotation": null}, {"text": "carbon", "start": 1306, "end": 1312, "annotation": null}, {"text": "areas", "start": 1313, "end": 1318, "annotation": null}, {"text": "scattered", "start": 1319, "end": 1328, "annotation": null}, {"text": "over", "start": 1329, "end": 1333, "annotation": null}, {"text": "the", "start": 1334, "end": 1337, "annotation": null}, {"text": "diamond", "start": 1338, "end": 1345, "annotation": null}, {"text": "layer", "start": 1346, "end": 1351, "annotation": null}, {"text": "covering", "start": 1352, "end": 1360, "annotation": null}, {"text": "the", "start": 1361, "end": 1364, "annotation": null}, {"text": "tip", "start": 1365, "end": 1368, "annotation": null}, {"text": ".", "start": 1368, "end": 1369, "annotation": null}], [{"text": "For", "start": 1370, "end": 1373, "annotation": null}, {"text": "a", "start": 1374, "end": 1375, "annotation": null}, {"text": "direct", "start": 1376, "end": 1382, "annotation": null}, {"text": "polarization", "start": 1383, "end": 1395, "annotation": null}, {"text": ",", "start": 1395, "end": 1396, "annotation": null}, {"text": "the", "start": 1397, "end": 1400, "annotation": null}, {"text": "CNT", "start": 1401, "end": 1404, "annotation": null}, {"text": "and", "start": 1405, "end": 1408, "annotation": null}, {"text": "substrate", "start": 1409, "end": 1418, "annotation": null}, {"text": "surface", "start": 1419, "end": 1426, "annotation": null}, {"text": "can", "start": 1427, "end": 1430, "annotation": null}, {"text": "in", "start": 1431, "end": 1433, "annotation": null}, {"text": "turn", "start": 1434, "end": 1438, "annotation": null}, {"text": "be", "start": 1439, "end": 1441, "annotation": null}, {"text": "modified", "start": 1442, "end": 1450, "annotation": null}, {"text": "by", "start": 1451, "end": 1453, "annotation": null}, {"text": "an", "start": 1454, "end": 1456, "annotation": null}, {"text": "oxidation", "start": 1457, "end": 1466, "annotation": null}, {"text": "mechanism", "start": 1467, "end": 1476, "annotation": null}, {"text": ".", "start": 1476, "end": 1477, "annotation": null}]]} -{"text": "The BiOI/BiOCOOH composites were synthesized by a facile ion exchange strategy between BiOCOOH precursor and KI by ultrasonic reaction. The as-prepared BiOI/BiOCOOH composites were characterized by X-ray diffraction (XRD), field emission scanning electron microscopy (FESEM), energy dispersive X-ray spectroscopy (EDS), X-ray photoelectron spectroscopy (XPS), UV-vis diffuse reflectance absorption spectra (DRS), Fourier transform infrared spectroscopy (FTIR) and photoluminescence spectra (PL). Under visible light illumination, the BiOI/BiOCOOH composites exhibited much higher photocatalytic activities than those of single BiOCOOH and BiOI for the degradation of Rhodamine B (RhB). The markedly enhanced photocatalytic activities of BiOI/BiOCOOH composites were attributed to the formation of a p-n heterojunction between p-type BiOI and n-type BiOCOOH, which facilitated the charge separation of photogenerated electron-hole pairs. The photoelectrochemical measurement confirmed that the charge separation efficiency was greatly improved by the formation of the heterojunction structure. Moreover, tests of radical scavengers demonstrated that h+and O2-were the main active species for the degradation of RhB. This journal is", "meta": {"doi": "10.1039/c4ra10999f"}, "_input_hash": -1059623086, "_task_hash": -293904879, "tokens": [[{"text": "The", "start": 35, "end": 38, "id": 7, "annotation": null}, {"text": "BiOI", "start": 39, "end": 43, "id": 8, "annotation": null}, {"text": "/", "start": 44, "end": 45, "id": 9, "annotation": null}, {"text": "BiOCOOH", "start": 46, "end": 53, "id": 10, "annotation": null}, {"text": "composites", "start": 54, "end": 64, "id": 11, "annotation": null}, {"text": "were", "start": 65, "end": 69, "id": 12, "annotation": null}, {"text": "synthesized", "start": 70, "end": 81, "id": 13, "annotation": null}, {"text": "by", "start": 82, "end": 84, "id": 14, "annotation": null}, {"text": "a", "start": 85, "end": 86, "id": 15, "annotation": null}, {"text": "facile", "start": 87, "end": 93, "id": 16, "annotation": null}, {"text": "ion", "start": 94, "end": 97, "id": 17, "annotation": null}, {"text": "exchange", "start": 98, "end": 106, "id": 18, "annotation": null}, {"text": "strategy", "start": 107, "end": 115, "id": 19, "annotation": null}, {"text": "between", "start": 116, "end": 123, "id": 20, "annotation": null}, {"text": "BiOCOOH", "start": 124, "end": 131, "id": 21, "annotation": null}, {"text": "precursor", "start": 132, "end": 141, "id": 22, "annotation": null}, {"text": "and", "start": 142, "end": 145, "id": 23, "annotation": null}, {"text": "KI", "start": 146, "end": 148, "id": 24, "annotation": null}, {"text": "by", "start": 149, "end": 151, "id": 25, "annotation": null}, {"text": "ultrasonic", "start": 152, "end": 162, "id": 26, "annotation": null}, {"text": "reaction", "start": 163, "end": 171, "id": 27, "annotation": null}, {"text": ".", "start": 172, "end": 173, "id": 28, "annotation": null}], [{"text": "The", "start": 174, "end": 177, "id": 29, "annotation": null}, {"text": "as", "start": 178, "end": 180, "id": 30, "annotation": null}, {"text": "-", "start": 181, "end": 182, "id": 31, "annotation": null}, {"text": "prepared", "start": 183, "end": 191, "id": 32, "annotation": null}, {"text": "BiOI", "start": 192, "end": 196, "id": 33, "annotation": null}, {"text": "/", "start": 197, "end": 198, "id": 34, "annotation": null}, {"text": "BiOCOOH", "start": 199, "end": 206, "id": 35, "annotation": null}, {"text": "composites", "start": 207, "end": 217, "id": 36, "annotation": null}, {"text": "were", "start": 218, "end": 222, "id": 37, "annotation": null}, {"text": "characterized", "start": 223, "end": 236, "id": 38, "annotation": null}, {"text": "by", "start": 237, "end": 239, "id": 39, "annotation": null}, {"text": "X", "start": 240, "end": 241, "id": 40, "annotation": null}, {"text": "-", "start": 242, "end": 243, "id": 41, "annotation": null}, {"text": "ray", "start": 244, "end": 247, "id": 42, "annotation": null}, {"text": "diffraction", "start": 248, "end": 259, "id": 43, "annotation": null}, {"text": "(", "start": 260, "end": 261, "id": 44, "annotation": null}, {"text": "XRD", "start": 262, "end": 265, "id": 45, "annotation": null}, {"text": ")", "start": 266, "end": 267, "id": 46, "annotation": null}, {"text": ",", "start": 268, "end": 269, "id": 47, "annotation": null}, {"text": "field", "start": 270, "end": 275, "id": 48, "annotation": null}, {"text": "emission", "start": 276, "end": 284, "id": 49, "annotation": null}, {"text": "scanning", "start": 285, "end": 293, "id": 50, "annotation": null}, {"text": "electron", "start": 294, "end": 302, "id": 51, "annotation": null}, {"text": "microscopy", "start": 303, "end": 313, "id": 52, "annotation": null}, {"text": "(", "start": 314, "end": 315, "id": 53, "annotation": null}, {"text": "FESEM", "start": 316, "end": 321, "id": 54, "annotation": null}, {"text": ")", "start": 322, "end": 323, "id": 55, "annotation": null}, {"text": ",", "start": 324, "end": 325, "id": 56, "annotation": null}, {"text": "energy", "start": 326, "end": 332, "id": 57, "annotation": null}, {"text": "dispersive", "start": 333, "end": 343, "id": 58, "annotation": null}, {"text": "X", "start": 344, "end": 345, "id": 59, "annotation": null}, {"text": "-", "start": 346, "end": 347, "id": 60, "annotation": null}, {"text": "ray", "start": 348, "end": 351, "id": 61, "annotation": null}, {"text": "spectroscopy", "start": 352, "end": 364, "id": 62, "annotation": null}, {"text": "(", "start": 365, "end": 366, "id": 63, "annotation": null}, {"text": "EDS", "start": 367, "end": 370, "id": 64, "annotation": null}, {"text": ")", "start": 371, "end": 372, "id": 65, "annotation": null}, {"text": ",", "start": 373, "end": 374, "id": 66, "annotation": null}, {"text": "X", "start": 375, "end": 376, "id": 67, "annotation": null}, {"text": "-", "start": 377, "end": 378, "id": 68, "annotation": null}, {"text": "ray", "start": 379, "end": 382, "id": 69, "annotation": null}, {"text": "photoelectron", "start": 383, "end": 396, "id": 70, "annotation": null}, {"text": "spectroscopy", "start": 397, "end": 409, "id": 71, "annotation": null}, {"text": "(", "start": 410, "end": 411, "id": 72, "annotation": null}, {"text": "XPS", "start": 412, "end": 415, "id": 73, "annotation": null}, {"text": ")", "start": 416, "end": 417, "id": 74, "annotation": null}, {"text": ",", "start": 418, "end": 419, "id": 75, "annotation": null}, {"text": "UV", "start": 420, "end": 422, "id": 76, "annotation": null}, {"text": "-", "start": 423, "end": 424, "id": 77, "annotation": null}, {"text": "vis", "start": 425, "end": 428, "id": 78, "annotation": null}, {"text": "diffuse", "start": 429, "end": 436, "id": 79, "annotation": null}, {"text": "reflectance", "start": 437, "end": 448, "id": 80, "annotation": null}, {"text": "absorption", "start": 449, "end": 459, "id": 81, "annotation": null}, {"text": "spectra", "start": 460, "end": 467, "id": 82, "annotation": null}, {"text": "(", "start": 468, "end": 469, "id": 83, "annotation": null}, {"text": "DRS", "start": 470, "end": 473, "id": 84, "annotation": null}, {"text": ")", "start": 474, "end": 475, "id": 85, "annotation": null}, {"text": ",", "start": 476, "end": 477, "id": 86, "annotation": null}, {"text": "Fourier", "start": 478, "end": 485, "id": 87, "annotation": null}, {"text": "transform", "start": 486, "end": 495, "id": 88, "annotation": null}, {"text": "infrared", "start": 496, "end": 504, "id": 89, "annotation": null}, {"text": "spectroscopy", "start": 505, "end": 517, "id": 90, "annotation": null}, {"text": "(", "start": 518, "end": 519, "id": 91, "annotation": null}, {"text": "FTIR", "start": 520, "end": 524, "id": 92, "annotation": null}, {"text": ")", "start": 525, "end": 526, "id": 93, "annotation": null}, {"text": "and", "start": 527, "end": 530, "id": 94, "annotation": null}, {"text": "photoluminescence", "start": 531, "end": 548, "id": 95, "annotation": null}, {"text": "spectra", "start": 549, "end": 556, "id": 96, "annotation": null}, {"text": "(", "start": 557, "end": 558, "id": 97, "annotation": null}, {"text": "PL", "start": 559, "end": 561, "id": 98, "annotation": null}, {"text": ")", "start": 562, "end": 563, "id": 99, "annotation": null}, {"text": ".", "start": 564, "end": 565, "id": 100, "annotation": null}], [{"text": "Under", "start": 566, "end": 571, "id": 101, "annotation": null}, {"text": "visible", "start": 572, "end": 579, "id": 102, "annotation": null}, {"text": "light", "start": 580, "end": 585, "id": 103, "annotation": null}, {"text": "illumination", "start": 586, "end": 598, "id": 104, "annotation": null}, {"text": ",", "start": 599, "end": 600, "id": 105, "annotation": null}, {"text": "the", "start": 601, "end": 604, "id": 106, "annotation": null}, {"text": "BiOI", "start": 605, "end": 609, "id": 107, "annotation": null}, {"text": "/", "start": 610, "end": 611, "id": 108, "annotation": null}, {"text": "BiOCOOH", "start": 612, "end": 619, "id": 109, "annotation": null}, {"text": "composites", "start": 620, "end": 630, "id": 110, "annotation": null}, {"text": "exhibited", "start": 631, "end": 640, "id": 111, "annotation": null}, {"text": "much", "start": 641, "end": 645, "id": 112, "annotation": null}, {"text": "higher", "start": 646, "end": 652, "id": 113, "annotation": null}, {"text": "photocatalytic", "start": 653, "end": 667, "id": 114, "annotation": null}, {"text": "activities", "start": 668, "end": 678, "id": 115, "annotation": null}, {"text": "than", "start": 679, "end": 683, "id": 116, "annotation": null}, {"text": "those", "start": 684, "end": 689, "id": 117, "annotation": null}, {"text": "of", "start": 690, "end": 692, "id": 118, "annotation": null}, {"text": "single", "start": 693, "end": 699, "id": 119, "annotation": null}, {"text": "BiOCOOH", "start": 700, "end": 707, "id": 120, "annotation": null}, {"text": "and", "start": 708, "end": 711, "id": 121, "annotation": null}, {"text": "BiOI", "start": 712, "end": 716, "id": 122, "annotation": null}, {"text": "for", "start": 717, "end": 720, "id": 123, "annotation": null}, {"text": "the", "start": 721, "end": 724, "id": 124, "annotation": null}, {"text": "degradation", "start": 725, "end": 736, "id": 125, "annotation": null}, {"text": "of", "start": 737, "end": 739, "id": 126, "annotation": null}, {"text": "Rhodamine", "start": 740, "end": 749, "id": 127, "annotation": null}, {"text": "B", "start": 750, "end": 751, "id": 128, "annotation": null}, {"text": "(", "start": 752, "end": 753, "id": 129, "annotation": null}, {"text": "RhB", "start": 754, "end": 757, "id": 130, "annotation": null}, {"text": ")", "start": 758, "end": 759, "id": 131, "annotation": null}, {"text": ".", "start": 760, "end": 761, "id": 132, "annotation": null}], [{"text": "The", "start": 762, "end": 765, "id": 133, "annotation": null}, {"text": "markedly", "start": 766, "end": 774, "id": 134, "annotation": null}, {"text": "enhanced", "start": 775, "end": 783, "id": 135, "annotation": null}, {"text": "photocatalytic", "start": 784, "end": 798, "id": 136, "annotation": null}, {"text": "activities", "start": 799, "end": 809, "id": 137, "annotation": null}, {"text": "of", "start": 810, "end": 812, "id": 138, "annotation": null}, {"text": "BiOI", "start": 813, "end": 817, "id": 139, "annotation": null}, {"text": "/", "start": 818, "end": 819, "id": 140, "annotation": null}, {"text": "BiOCOOH", "start": 820, "end": 827, "id": 141, "annotation": null}, {"text": "composites", "start": 828, "end": 838, "id": 142, "annotation": null}, {"text": "were", "start": 839, "end": 843, "id": 143, "annotation": null}, {"text": "attributed", "start": 844, "end": 854, "id": 144, "annotation": null}, {"text": "to", "start": 855, "end": 857, "id": 145, "annotation": null}, {"text": "the", "start": 858, "end": 861, "id": 146, "annotation": null}, {"text": "formation", "start": 862, "end": 871, "id": 147, "annotation": null}, {"text": "of", "start": 872, "end": 874, "id": 148, "annotation": null}, {"text": "a", "start": 875, "end": 876, "id": 149, "annotation": null}, {"text": "p", "start": 877, "end": 878, "id": 150, "annotation": null}, {"text": "-", "start": 879, "end": 880, "id": 151, "annotation": null}, {"text": "n", "start": 881, "end": 882, "id": 152, "annotation": null}, {"text": "heterojunction", "start": 883, "end": 897, "id": 153, "annotation": null}, {"text": "between", "start": 898, "end": 905, "id": 154, "annotation": null}, {"text": "p", "start": 906, "end": 907, "id": 155, "annotation": "DOPANT"}, {"text": "-", "start": 908, "end": 909, "id": 156, "annotation": null}, {"text": "type", "start": 910, "end": 914, "id": 157, "annotation": "DOPANT"}, {"text": "BiOI", "start": 915, "end": 919, "id": 158, "annotation": "BASEMAT"}, {"text": "and", "start": 920, "end": 923, "id": 159, "annotation": null}, {"text": "n", "start": 924, "end": 925, "id": 160, "annotation": "DOPANT"}, {"text": "-", "start": 926, "end": 927, "id": 161, "annotation": null}, {"text": "type", "start": 928, "end": 932, "id": 162, "annotation": "DOPANT"}, {"text": "BiOCOOH", "start": 933, "end": 940, "id": 163, "annotation": "BASEMAT"}, {"text": ",", "start": 941, "end": 942, "id": 164, "annotation": null}, {"text": "which", "start": 943, "end": 948, "id": 165, "annotation": null}, {"text": "facilitated", "start": 949, "end": 960, "id": 166, "annotation": null}, {"text": "the", "start": 961, "end": 964, "id": 167, "annotation": null}, {"text": "charge", "start": 965, "end": 971, "id": 168, "annotation": null}, {"text": "separation", "start": 972, "end": 982, "id": 169, "annotation": null}, {"text": "of", "start": 983, "end": 985, "id": 170, "annotation": null}, {"text": "photogenerated", "start": 986, "end": 1000, "id": 171, "annotation": null}, {"text": "electron", "start": 1001, "end": 1009, "id": 172, "annotation": null}, {"text": "-", "start": 1010, "end": 1011, "id": 173, "annotation": null}, {"text": "hole", "start": 1012, "end": 1016, "id": 174, "annotation": null}, {"text": "pairs", "start": 1017, "end": 1022, "id": 175, "annotation": null}, {"text": ".", "start": 1023, "end": 1024, "id": 176, "annotation": null}], [{"text": "The", "start": 1025, "end": 1028, "id": 177, "annotation": null}, {"text": "photoelectrochemical", "start": 1029, "end": 1049, "id": 178, "annotation": null}, {"text": "measurement", "start": 1050, "end": 1061, "id": 179, "annotation": null}, {"text": "confirmed", "start": 1062, "end": 1071, "id": 180, "annotation": null}, {"text": "that", "start": 1072, "end": 1076, "id": 181, "annotation": null}, {"text": "the", "start": 1077, "end": 1080, "id": 182, "annotation": null}, {"text": "charge", "start": 1081, "end": 1087, "id": 183, "annotation": null}, {"text": "separation", "start": 1088, "end": 1098, "id": 184, "annotation": null}, {"text": "efficiency", "start": 1099, "end": 1109, "id": 185, "annotation": null}, {"text": "was", "start": 1110, "end": 1113, "id": 186, "annotation": null}, {"text": "greatly", "start": 1114, "end": 1121, "id": 187, "annotation": null}, {"text": "improved", "start": 1122, "end": 1130, "id": 188, "annotation": null}, {"text": "by", "start": 1131, "end": 1133, "id": 189, "annotation": null}, {"text": "the", "start": 1134, "end": 1137, "id": 190, "annotation": null}, {"text": "formation", "start": 1138, "end": 1147, "id": 191, "annotation": null}, {"text": "of", "start": 1148, "end": 1150, "id": 192, "annotation": null}, {"text": "the", "start": 1151, "end": 1154, "id": 193, "annotation": null}, {"text": "heterojunction", "start": 1155, "end": 1169, "id": 194, "annotation": null}, {"text": "structure", "start": 1170, "end": 1179, "id": 195, "annotation": null}, {"text": ".", "start": 1180, "end": 1181, "id": 196, "annotation": null}], [{"text": "Moreover", "start": 1182, "end": 1190, "id": 197, "annotation": null}, {"text": ",", "start": 1191, "end": 1192, "id": 198, "annotation": null}, {"text": "tests", "start": 1193, "end": 1198, "id": 199, "annotation": null}, {"text": "of", "start": 1199, "end": 1201, "id": 200, "annotation": null}, {"text": "radical", "start": 1202, "end": 1209, "id": 201, "annotation": null}, {"text": "scavengers", "start": 1210, "end": 1220, "id": 202, "annotation": null}, {"text": "demonstrated", "start": 1221, "end": 1233, "id": 203, "annotation": null}, {"text": "that", "start": 1234, "end": 1238, "id": 204, "annotation": null}, {"text": "h+and", "start": 1239, "end": 1244, "id": 205, "annotation": null}, {"text": "O2-were", "start": 1245, "end": 1252, "id": 206, "annotation": null}, {"text": "the", "start": 1253, "end": 1256, "id": 207, "annotation": null}, {"text": "main", "start": 1257, "end": 1261, "id": 208, "annotation": null}, {"text": "active", "start": 1262, "end": 1268, "id": 209, "annotation": null}, {"text": "species", "start": 1269, "end": 1276, "id": 210, "annotation": null}, {"text": "for", "start": 1277, "end": 1280, "id": 211, "annotation": null}, {"text": "the", "start": 1281, "end": 1284, "id": 212, "annotation": null}, {"text": "degradation", "start": 1285, "end": 1296, "id": 213, "annotation": null}, {"text": "of", "start": 1297, "end": 1299, "id": 214, "annotation": null}, {"text": "RhB.", "start": 1300, "end": 1304, "id": 215, "annotation": null}], [{"text": "This", "start": 1305, "end": 1309, "id": 216, "annotation": null}, {"text": "journal", "start": 1310, "end": 1317, "id": 217, "annotation": null}, {"text": "is", "start": 1318, "end": 1320, "id": 218, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "Using an atomic force microscope (AFM) at a controlled contact force, we report the electrical signal response of multi-walled carbon nanotubes (MWCNTs) disposed on a golden thin film. In this investigation, we highlight first the theoretical calculation of the contact resistance between two types of conductive tips (metal-coated and doped diamond-coated), individual MWCNTs and golden substrate. We also propose a circuit analysis model to schematize the \u00abtip-CNT-substrate\u00bb junction by means of a series-parallel resistance network. We estimate the contact resistance R of each contribution of the junction such as Rtip-CNT, RCNT-substrate and Rtip-substrate by using the Sharvin resistance model. Our final objective is thus to deduce the CNT intrinsic radial resistance taking into account the calculated electrical resistance values with the global resistance measured experimentally. An unwished electrochemical phenomenon at the tip apex has also been evidenced by performing measurements at different bias voltages with diamond tips. For negative tip-substrate bias, a systematic degradation in color and contrast of the electrical cartography occurs, consisting of an important and non-reversible increase of the measured resistance. This effect is attributed to the oxidation of some amorphous carbon areas scattered over the diamond layer covering the tip. For a direct polarization, the CNT and substrate surface can in turn be modified by an oxidation mechanism.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Using", "start": 0, "end": 5, "annotation": null}, {"text": "an", "start": 6, "end": 8, "annotation": null}, {"text": "atomic", "start": 9, "end": 15, "annotation": null}, {"text": "force", "start": 16, "end": 21, "annotation": null}, {"text": "microscope", "start": 22, "end": 32, "annotation": null}, {"text": "(", "start": 33, "end": 34, "annotation": null}, {"text": "AFM", "start": 34, "end": 37, "annotation": null}, {"text": ")", "start": 37, "end": 38, "annotation": null}, {"text": "at", "start": 39, "end": 41, "annotation": null}, {"text": "a", "start": 42, "end": 43, "annotation": null}, {"text": "controlled", "start": 44, "end": 54, "annotation": null}, {"text": "contact", "start": 55, "end": 62, "annotation": null}, {"text": "force", "start": 63, "end": 68, "annotation": null}, {"text": ",", "start": 68, "end": 69, "annotation": null}, {"text": "we", "start": 70, "end": 72, "annotation": null}, {"text": "report", "start": 73, "end": 79, "annotation": null}, {"text": "the", "start": 80, "end": 83, "annotation": null}, {"text": "electrical", "start": 84, "end": 94, "annotation": null}, {"text": "signal", "start": 95, "end": 101, "annotation": null}, {"text": "response", "start": 102, "end": 110, "annotation": null}, {"text": "of", "start": 111, "end": 113, "annotation": null}, {"text": "multi-walled", "start": 114, "end": 126, "annotation": null}, {"text": "carbon", "start": 127, "end": 133, "annotation": null}, {"text": "nanotubes", "start": 134, "end": 143, "annotation": null}, {"text": "(", "start": 144, "end": 145, "annotation": null}, {"text": "MWCNTs", "start": 145, "end": 151, "annotation": null}, {"text": ")", "start": 151, "end": 152, "annotation": null}, {"text": "disposed", "start": 153, "end": 161, "annotation": null}, {"text": "on", "start": 162, "end": 164, "annotation": null}, {"text": "a", "start": 165, "end": 166, "annotation": null}, {"text": "golden", "start": 167, "end": 173, "annotation": null}, {"text": "thin", "start": 174, "end": 178, "annotation": null}, {"text": "film", "start": 179, "end": 183, "annotation": null}, {"text": ".", "start": 183, "end": 184, "annotation": null}], [{"text": "In", "start": 185, "end": 187, "annotation": null}, {"text": "this", "start": 188, "end": 192, "annotation": null}, {"text": "investigation", "start": 193, "end": 206, "annotation": null}, {"text": ",", "start": 206, "end": 207, "annotation": null}, {"text": "we", "start": 208, "end": 210, "annotation": null}, {"text": "highlight", "start": 211, "end": 220, "annotation": null}, {"text": "first", "start": 221, "end": 226, "annotation": null}, {"text": "the", "start": 227, "end": 230, "annotation": null}, {"text": "theoretical", "start": 231, "end": 242, "annotation": null}, {"text": "calculation", "start": 243, "end": 254, "annotation": null}, {"text": "of", "start": 255, "end": 257, "annotation": null}, {"text": "the", "start": 258, "end": 261, "annotation": null}, {"text": "contact", "start": 262, "end": 269, "annotation": null}, {"text": "resistance", "start": 270, "end": 280, "annotation": null}, {"text": "between", "start": 281, "end": 288, "annotation": null}, {"text": "two", "start": 289, "end": 292, "annotation": null}, {"text": "types", "start": 293, "end": 298, "annotation": null}, {"text": "of", "start": 299, "end": 301, "annotation": null}, {"text": "conductive", "start": 302, "end": 312, "annotation": null}, {"text": "tips", "start": 313, "end": 317, "annotation": null}, {"text": "(", "start": 318, "end": 319, "annotation": null}, {"text": "metal", "start": 319, "end": 324, "annotation": null}, {"text": "-", "start": 324, "end": 325, "annotation": null}, {"text": "coated", "start": 325, "end": 331, "annotation": null}, {"text": "and", "start": 332, "end": 335, "annotation": null}, {"text": "doped", "start": 336, "end": 341, "annotation": "DOPANT"}, {"text": "diamond", "start": 342, "end": 349, "annotation": "BASEMAT"}, {"text": "-", "start": 349, "end": 350, "annotation": null}, {"text": "coated", "start": 350, "end": 356, "annotation": null}, {"text": ")", "start": 356, "end": 357, "annotation": null}, {"text": ",", "start": 357, "end": 358, "annotation": null}, {"text": "individual", "start": 359, "end": 369, "annotation": null}, {"text": "MWCNTs", "start": 370, "end": 376, "annotation": null}, {"text": "and", "start": 377, "end": 380, "annotation": null}, {"text": "golden", "start": 381, "end": 387, "annotation": null}, {"text": "substrate", "start": 388, "end": 397, "annotation": null}, {"text": ".", "start": 397, "end": 398, "annotation": null}], [{"text": "We", "start": 399, "end": 401, "annotation": null}, {"text": "also", "start": 402, "end": 406, "annotation": null}, {"text": "propose", "start": 407, "end": 414, "annotation": null}, {"text": "a", "start": 415, "end": 416, "annotation": null}, {"text": "circuit", "start": 417, "end": 424, "annotation": null}, {"text": "analysis", "start": 425, "end": 433, "annotation": null}, {"text": "model", "start": 434, "end": 439, "annotation": null}, {"text": "to", "start": 440, "end": 442, "annotation": null}, {"text": "schematize", "start": 443, "end": 453, "annotation": null}, {"text": "the", "start": 454, "end": 457, "annotation": null}, {"text": "\u00abtip-CNT-substrate\u00bb", "start": 458, "end": 477, "annotation": null}, {"text": "junction", "start": 478, "end": 486, "annotation": null}, {"text": "by", "start": 487, "end": 489, "annotation": null}, {"text": "means", "start": 490, "end": 495, "annotation": null}, {"text": "of", "start": 496, "end": 498, "annotation": null}, {"text": "a", "start": 499, "end": 500, "annotation": null}, {"text": "series", "start": 501, "end": 507, "annotation": null}, {"text": "-", "start": 507, "end": 508, "annotation": null}, {"text": "parallel", "start": 508, "end": 516, "annotation": null}, {"text": "resistance", "start": 517, "end": 527, "annotation": null}, {"text": "network", "start": 528, "end": 535, "annotation": null}, {"text": ".", "start": 535, "end": 536, "annotation": null}], [{"text": "We", "start": 537, "end": 539, "annotation": null}, {"text": "estimate", "start": 540, "end": 548, "annotation": null}, {"text": "the", "start": 549, "end": 552, "annotation": null}, {"text": "contact", "start": 553, "end": 560, "annotation": null}, {"text": "resistance", "start": 561, "end": 571, "annotation": null}, {"text": "R", "start": 572, "end": 573, "annotation": null}, {"text": "of", "start": 574, "end": 576, "annotation": null}, {"text": "each", "start": 577, "end": 581, "annotation": null}, {"text": "contribution", "start": 582, "end": 594, "annotation": null}, {"text": "of", "start": 595, "end": 597, "annotation": null}, {"text": "the", "start": 598, "end": 601, "annotation": null}, {"text": "junction", "start": 602, "end": 610, "annotation": null}, {"text": "such", "start": 611, "end": 615, "annotation": null}, {"text": "as", "start": 616, "end": 618, "annotation": null}, {"text": "Rtip", "start": 619, "end": 623, "annotation": null}, {"text": "-", "start": 623, "end": 624, "annotation": null}, {"text": "CNT", "start": 624, "end": 627, "annotation": null}, {"text": ",", "start": 627, "end": 628, "annotation": null}, {"text": "RCNT", "start": 629, "end": 633, "annotation": null}, {"text": "-", "start": 633, "end": 634, "annotation": null}, {"text": "substrate", "start": 634, "end": 643, "annotation": null}, {"text": "and", "start": 644, "end": 647, "annotation": null}, {"text": "Rtip", "start": 648, "end": 652, "annotation": null}, {"text": "-", "start": 652, "end": 653, "annotation": null}, {"text": "substrate", "start": 653, "end": 662, "annotation": null}, {"text": "by", "start": 663, "end": 665, "annotation": null}, {"text": "using", "start": 666, "end": 671, "annotation": null}, {"text": "the", "start": 672, "end": 675, "annotation": null}, {"text": "Sharvin", "start": 676, "end": 683, "annotation": null}, {"text": "resistance", "start": 684, "end": 694, "annotation": null}, {"text": "model", "start": 695, "end": 700, "annotation": null}, {"text": ".", "start": 700, "end": 701, "annotation": null}], [{"text": "Our", "start": 702, "end": 705, "annotation": null}, {"text": "final", "start": 706, "end": 711, "annotation": null}, {"text": "objective", "start": 712, "end": 721, "annotation": null}, {"text": "is", "start": 722, "end": 724, "annotation": null}, {"text": "thus", "start": 725, "end": 729, "annotation": null}, {"text": "to", "start": 730, "end": 732, "annotation": null}, {"text": "deduce", "start": 733, "end": 739, "annotation": null}, {"text": "the", "start": 740, "end": 743, "annotation": null}, {"text": "CNT", "start": 744, "end": 747, "annotation": null}, {"text": "intrinsic", "start": 748, "end": 757, "annotation": null}, {"text": "radial", "start": 758, "end": 764, "annotation": null}, {"text": "resistance", "start": 765, "end": 775, "annotation": null}, {"text": "taking", "start": 776, "end": 782, "annotation": null}, {"text": "into", "start": 783, "end": 787, "annotation": null}, {"text": "account", "start": 788, "end": 795, "annotation": null}, {"text": "the", "start": 796, "end": 799, "annotation": null}, {"text": "calculated", "start": 800, "end": 810, "annotation": null}, {"text": "electrical", "start": 811, "end": 821, "annotation": null}, {"text": "resistance", "start": 822, "end": 832, "annotation": null}, {"text": "values", "start": 833, "end": 839, "annotation": null}, {"text": "with", "start": 840, "end": 844, "annotation": null}, {"text": "the", "start": 845, "end": 848, "annotation": null}, {"text": "global", "start": 849, "end": 855, "annotation": null}, {"text": "resistance", "start": 856, "end": 866, "annotation": null}, {"text": "measured", "start": 867, "end": 875, "annotation": null}, {"text": "experimentally", "start": 876, "end": 890, "annotation": null}, {"text": ".", "start": 890, "end": 891, "annotation": null}], [{"text": "An", "start": 892, "end": 894, "annotation": null}, {"text": "unwished", "start": 895, "end": 903, "annotation": null}, {"text": "electrochemical", "start": 904, "end": 919, "annotation": null}, {"text": "phenomenon", "start": 920, "end": 930, "annotation": null}, {"text": "at", "start": 931, "end": 933, "annotation": null}, {"text": "the", "start": 934, "end": 937, "annotation": null}, {"text": "tip", "start": 938, "end": 941, "annotation": null}, {"text": "apex", "start": 942, "end": 946, "annotation": null}, {"text": "has", "start": 947, "end": 950, "annotation": null}, {"text": "also", "start": 951, "end": 955, "annotation": null}, {"text": "been", "start": 956, "end": 960, "annotation": null}, {"text": "evidenced", "start": 961, "end": 970, "annotation": null}, {"text": "by", "start": 971, "end": 973, "annotation": null}, {"text": "performing", "start": 974, "end": 984, "annotation": null}, {"text": "measurements", "start": 985, "end": 997, "annotation": null}, {"text": "at", "start": 998, "end": 1000, "annotation": null}, {"text": "different", "start": 1001, "end": 1010, "annotation": null}, {"text": "bias", "start": 1011, "end": 1015, "annotation": null}, {"text": "voltages", "start": 1016, "end": 1024, "annotation": null}, {"text": "with", "start": 1025, "end": 1029, "annotation": null}, {"text": "diamond", "start": 1030, "end": 1037, "annotation": null}, {"text": "tips", "start": 1038, "end": 1042, "annotation": null}, {"text": ".", "start": 1042, "end": 1043, "annotation": null}], [{"text": "For", "start": 1044, "end": 1047, "annotation": null}, {"text": "negative", "start": 1048, "end": 1056, "annotation": null}, {"text": "tip", "start": 1057, "end": 1060, "annotation": null}, {"text": "-", "start": 1060, "end": 1061, "annotation": null}, {"text": "substrate", "start": 1061, "end": 1070, "annotation": null}, {"text": "bias", "start": 1071, "end": 1075, "annotation": null}, {"text": ",", "start": 1075, "end": 1076, "annotation": null}, {"text": "a", "start": 1077, "end": 1078, "annotation": null}, {"text": "systematic", "start": 1079, "end": 1089, "annotation": null}, {"text": "degradation", "start": 1090, "end": 1101, "annotation": null}, {"text": "in", "start": 1102, "end": 1104, "annotation": null}, {"text": "color", "start": 1105, "end": 1110, "annotation": null}, {"text": "and", "start": 1111, "end": 1114, "annotation": null}, {"text": "contrast", "start": 1115, "end": 1123, "annotation": null}, {"text": "of", "start": 1124, "end": 1126, "annotation": null}, {"text": "the", "start": 1127, "end": 1130, "annotation": null}, {"text": "electrical", "start": 1131, "end": 1141, "annotation": null}, {"text": "cartography", "start": 1142, "end": 1153, "annotation": null}, {"text": "occurs", "start": 1154, "end": 1160, "annotation": null}, {"text": ",", "start": 1160, "end": 1161, "annotation": null}, {"text": "consisting", "start": 1162, "end": 1172, "annotation": null}, {"text": "of", "start": 1173, "end": 1175, "annotation": null}, {"text": "an", "start": 1176, "end": 1178, "annotation": null}, {"text": "important", "start": 1179, "end": 1188, "annotation": null}, {"text": "and", "start": 1189, "end": 1192, "annotation": null}, {"text": "non-reversible", "start": 1193, "end": 1207, "annotation": null}, {"text": "increase", "start": 1208, "end": 1216, "annotation": null}, {"text": "of", "start": 1217, "end": 1219, "annotation": null}, {"text": "the", "start": 1220, "end": 1223, "annotation": null}, {"text": "measured", "start": 1224, "end": 1232, "annotation": null}, {"text": "resistance", "start": 1233, "end": 1243, "annotation": null}, {"text": ".", "start": 1243, "end": 1244, "annotation": null}], [{"text": "This", "start": 1245, "end": 1249, "annotation": null}, {"text": "effect", "start": 1250, "end": 1256, "annotation": null}, {"text": "is", "start": 1257, "end": 1259, "annotation": null}, {"text": "attributed", "start": 1260, "end": 1270, "annotation": null}, {"text": "to", "start": 1271, "end": 1273, "annotation": null}, {"text": "the", "start": 1274, "end": 1277, "annotation": null}, {"text": "oxidation", "start": 1278, "end": 1287, "annotation": null}, {"text": "of", "start": 1288, "end": 1290, "annotation": null}, {"text": "some", "start": 1291, "end": 1295, "annotation": null}, {"text": "amorphous", "start": 1296, "end": 1305, "annotation": null}, {"text": "carbon", "start": 1306, "end": 1312, "annotation": null}, {"text": "areas", "start": 1313, "end": 1318, "annotation": null}, {"text": "scattered", "start": 1319, "end": 1328, "annotation": null}, {"text": "over", "start": 1329, "end": 1333, "annotation": null}, {"text": "the", "start": 1334, "end": 1337, "annotation": null}, {"text": "diamond", "start": 1338, "end": 1345, "annotation": null}, {"text": "layer", "start": 1346, "end": 1351, "annotation": null}, {"text": "covering", "start": 1352, "end": 1360, "annotation": null}, {"text": "the", "start": 1361, "end": 1364, "annotation": null}, {"text": "tip", "start": 1365, "end": 1368, "annotation": null}, {"text": ".", "start": 1368, "end": 1369, "annotation": null}], [{"text": "For", "start": 1370, "end": 1373, "annotation": null}, {"text": "a", "start": 1374, "end": 1375, "annotation": null}, {"text": "direct", "start": 1376, "end": 1382, "annotation": null}, {"text": "polarization", "start": 1383, "end": 1395, "annotation": null}, {"text": ",", "start": 1395, "end": 1396, "annotation": null}, {"text": "the", "start": 1397, "end": 1400, "annotation": null}, {"text": "CNT", "start": 1401, "end": 1404, "annotation": null}, {"text": "and", "start": 1405, "end": 1408, "annotation": null}, {"text": "substrate", "start": 1409, "end": 1418, "annotation": null}, {"text": "surface", "start": 1419, "end": 1426, "annotation": null}, {"text": "can", "start": 1427, "end": 1430, "annotation": null}, {"text": "in", "start": 1431, "end": 1433, "annotation": null}, {"text": "turn", "start": 1434, "end": 1438, "annotation": null}, {"text": "be", "start": 1439, "end": 1441, "annotation": null}, {"text": "modified", "start": 1442, "end": 1450, "annotation": null}, {"text": "by", "start": 1451, "end": 1453, "annotation": null}, {"text": "an", "start": 1454, "end": 1456, "annotation": null}, {"text": "oxidation", "start": 1457, "end": 1466, "annotation": null}, {"text": "mechanism", "start": 1467, "end": 1476, "annotation": null}, {"text": ".", "start": 1476, "end": 1477, "annotation": null}]], "meta": {"doi": "10.1186/1556-276X-6-335"}} +{"text": "The BiOI/BiOCOOH composites were synthesized by a facile ion exchange strategy between BiOCOOH precursor and KI by ultrasonic reaction. The as-prepared BiOI/BiOCOOH composites were characterized by X-ray diffraction (XRD), field emission scanning electron microscopy (FESEM), energy dispersive X-ray spectroscopy (EDS), X-ray photoelectron spectroscopy (XPS), UV-vis diffuse reflectance absorption spectra (DRS), Fourier transform infrared spectroscopy (FTIR) and photoluminescence spectra (PL). Under visible light illumination, the BiOI/BiOCOOH composites exhibited much higher photocatalytic activities than those of single BiOCOOH and BiOI for the degradation of Rhodamine B (RhB). The markedly enhanced photocatalytic activities of BiOI/BiOCOOH composites were attributed to the formation of a p-n heterojunction between p-type BiOI and n-type BiOCOOH, which facilitated the charge separation of photogenerated electron-hole pairs. The photoelectrochemical measurement confirmed that the charge separation efficiency was greatly improved by the formation of the heterojunction structure. Moreover, tests of radical scavengers demonstrated that h+and O2-were the main active species for the degradation of RhB. This journal is", "meta": {"doi": "10.1039/c4ra10999f"}, "_input_hash": -1059623086, "_task_hash": -293904879, "tokens": [[{"text": "The", "start": 35, "end": 38, "id": 7, "annotation": null}, {"text": "BiOI", "start": 39, "end": 43, "id": 8, "annotation": null}, {"text": "/", "start": 44, "end": 45, "id": 9, "annotation": null}, {"text": "BiOCOOH", "start": 46, "end": 53, "id": 10, "annotation": null}, {"text": "composites", "start": 54, "end": 64, "id": 11, "annotation": null}, {"text": "were", "start": 65, "end": 69, "id": 12, "annotation": null}, {"text": "synthesized", "start": 70, "end": 81, "id": 13, "annotation": null}, {"text": "by", "start": 82, "end": 84, "id": 14, "annotation": null}, {"text": "a", "start": 85, "end": 86, "id": 15, "annotation": null}, {"text": "facile", "start": 87, "end": 93, "id": 16, "annotation": null}, {"text": "ion", "start": 94, "end": 97, "id": 17, "annotation": null}, {"text": "exchange", "start": 98, "end": 106, "id": 18, "annotation": null}, {"text": "strategy", "start": 107, "end": 115, "id": 19, "annotation": null}, {"text": "between", "start": 116, "end": 123, "id": 20, "annotation": null}, {"text": "BiOCOOH", "start": 124, "end": 131, "id": 21, "annotation": null}, {"text": "precursor", "start": 132, "end": 141, "id": 22, "annotation": null}, {"text": "and", "start": 142, "end": 145, "id": 23, "annotation": null}, {"text": "KI", "start": 146, "end": 148, "id": 24, "annotation": null}, {"text": "by", "start": 149, "end": 151, "id": 25, "annotation": null}, {"text": "ultrasonic", "start": 152, "end": 162, "id": 26, "annotation": null}, {"text": "reaction", "start": 163, "end": 171, "id": 27, "annotation": null}, {"text": ".", "start": 172, "end": 173, "id": 28, "annotation": null}], [{"text": "The", "start": 174, "end": 177, "id": 29, "annotation": null}, {"text": "as", "start": 178, "end": 180, "id": 30, "annotation": null}, {"text": "-", "start": 181, "end": 182, "id": 31, "annotation": null}, {"text": "prepared", "start": 183, "end": 191, "id": 32, "annotation": null}, {"text": "BiOI", "start": 192, "end": 196, "id": 33, "annotation": null}, {"text": "/", "start": 197, "end": 198, "id": 34, "annotation": null}, {"text": "BiOCOOH", "start": 199, "end": 206, "id": 35, "annotation": null}, {"text": "composites", "start": 207, "end": 217, "id": 36, "annotation": null}, {"text": "were", "start": 218, "end": 222, "id": 37, "annotation": null}, {"text": "characterized", "start": 223, "end": 236, "id": 38, "annotation": null}, {"text": "by", "start": 237, "end": 239, "id": 39, "annotation": null}, {"text": "X", "start": 240, "end": 241, "id": 40, "annotation": null}, {"text": "-", "start": 242, "end": 243, "id": 41, "annotation": null}, {"text": "ray", "start": 244, "end": 247, "id": 42, "annotation": null}, {"text": "diffraction", "start": 248, "end": 259, "id": 43, "annotation": null}, {"text": "(", "start": 260, "end": 261, "id": 44, "annotation": null}, {"text": "XRD", "start": 262, "end": 265, "id": 45, "annotation": null}, {"text": ")", "start": 266, "end": 267, "id": 46, "annotation": null}, {"text": ",", "start": 268, "end": 269, "id": 47, "annotation": null}, {"text": "field", "start": 270, "end": 275, "id": 48, "annotation": null}, {"text": "emission", "start": 276, "end": 284, "id": 49, "annotation": null}, {"text": "scanning", "start": 285, "end": 293, "id": 50, "annotation": null}, {"text": "electron", "start": 294, "end": 302, "id": 51, "annotation": null}, {"text": "microscopy", "start": 303, "end": 313, "id": 52, "annotation": null}, {"text": "(", "start": 314, "end": 315, "id": 53, "annotation": null}, {"text": "FESEM", "start": 316, "end": 321, "id": 54, "annotation": null}, {"text": ")", "start": 322, "end": 323, "id": 55, "annotation": null}, {"text": ",", "start": 324, "end": 325, "id": 56, "annotation": null}, {"text": "energy", "start": 326, "end": 332, "id": 57, "annotation": null}, {"text": "dispersive", "start": 333, "end": 343, "id": 58, "annotation": null}, {"text": "X", "start": 344, "end": 345, "id": 59, "annotation": null}, {"text": "-", "start": 346, "end": 347, "id": 60, "annotation": null}, {"text": "ray", "start": 348, "end": 351, "id": 61, "annotation": null}, {"text": "spectroscopy", "start": 352, "end": 364, "id": 62, "annotation": null}, {"text": "(", "start": 365, "end": 366, "id": 63, "annotation": null}, {"text": "EDS", "start": 367, "end": 370, "id": 64, "annotation": null}, {"text": ")", "start": 371, "end": 372, "id": 65, "annotation": null}, {"text": ",", "start": 373, "end": 374, "id": 66, "annotation": null}, {"text": "X", "start": 375, "end": 376, "id": 67, "annotation": null}, {"text": "-", "start": 377, "end": 378, "id": 68, "annotation": null}, {"text": "ray", "start": 379, "end": 382, "id": 69, "annotation": null}, {"text": "photoelectron", "start": 383, "end": 396, "id": 70, "annotation": null}, {"text": "spectroscopy", "start": 397, "end": 409, "id": 71, "annotation": null}, {"text": "(", "start": 410, "end": 411, "id": 72, "annotation": null}, {"text": "XPS", "start": 412, "end": 415, "id": 73, "annotation": null}, {"text": ")", "start": 416, "end": 417, "id": 74, "annotation": null}, {"text": ",", "start": 418, "end": 419, "id": 75, "annotation": null}, {"text": "UV", "start": 420, "end": 422, "id": 76, "annotation": null}, {"text": "-", "start": 423, "end": 424, "id": 77, "annotation": null}, {"text": "vis", "start": 425, "end": 428, "id": 78, "annotation": null}, {"text": "diffuse", "start": 429, "end": 436, "id": 79, "annotation": null}, {"text": "reflectance", "start": 437, "end": 448, "id": 80, "annotation": null}, {"text": "absorption", "start": 449, "end": 459, "id": 81, "annotation": null}, {"text": "spectra", "start": 460, "end": 467, "id": 82, "annotation": null}, {"text": "(", "start": 468, "end": 469, "id": 83, "annotation": null}, {"text": "DRS", "start": 470, "end": 473, "id": 84, "annotation": null}, {"text": ")", "start": 474, "end": 475, "id": 85, "annotation": null}, {"text": ",", "start": 476, "end": 477, "id": 86, "annotation": null}, {"text": "Fourier", "start": 478, "end": 485, "id": 87, "annotation": null}, {"text": "transform", "start": 486, "end": 495, "id": 88, "annotation": null}, {"text": "infrared", "start": 496, "end": 504, "id": 89, "annotation": null}, {"text": "spectroscopy", "start": 505, "end": 517, "id": 90, "annotation": null}, {"text": "(", "start": 518, "end": 519, "id": 91, "annotation": null}, {"text": "FTIR", "start": 520, "end": 524, "id": 92, "annotation": null}, {"text": ")", "start": 525, "end": 526, "id": 93, "annotation": null}, {"text": "and", "start": 527, "end": 530, "id": 94, "annotation": null}, {"text": "photoluminescence", "start": 531, "end": 548, "id": 95, "annotation": null}, {"text": "spectra", "start": 549, "end": 556, "id": 96, "annotation": null}, {"text": "(", "start": 557, "end": 558, "id": 97, "annotation": null}, {"text": "PL", "start": 559, "end": 561, "id": 98, "annotation": null}, {"text": ")", "start": 562, "end": 563, "id": 99, "annotation": null}, {"text": ".", "start": 564, "end": 565, "id": 100, "annotation": null}], [{"text": "Under", "start": 566, "end": 571, "id": 101, "annotation": null}, {"text": "visible", "start": 572, "end": 579, "id": 102, "annotation": null}, {"text": "light", "start": 580, "end": 585, "id": 103, "annotation": null}, {"text": "illumination", "start": 586, "end": 598, "id": 104, "annotation": null}, {"text": ",", "start": 599, "end": 600, "id": 105, "annotation": null}, {"text": "the", "start": 601, "end": 604, "id": 106, "annotation": null}, {"text": "BiOI", "start": 605, "end": 609, "id": 107, "annotation": null}, {"text": "/", "start": 610, "end": 611, "id": 108, "annotation": null}, {"text": "BiOCOOH", "start": 612, "end": 619, "id": 109, "annotation": null}, {"text": "composites", "start": 620, "end": 630, "id": 110, "annotation": null}, {"text": "exhibited", "start": 631, "end": 640, "id": 111, "annotation": null}, {"text": "much", "start": 641, "end": 645, "id": 112, "annotation": null}, {"text": "higher", "start": 646, "end": 652, "id": 113, "annotation": null}, {"text": "photocatalytic", "start": 653, "end": 667, "id": 114, "annotation": null}, {"text": "activities", "start": 668, "end": 678, "id": 115, "annotation": null}, {"text": "than", "start": 679, "end": 683, "id": 116, "annotation": null}, {"text": "those", "start": 684, "end": 689, "id": 117, "annotation": null}, {"text": "of", "start": 690, "end": 692, "id": 118, "annotation": null}, {"text": "single", "start": 693, "end": 699, "id": 119, "annotation": null}, {"text": "BiOCOOH", "start": 700, "end": 707, "id": 120, "annotation": null}, {"text": "and", "start": 708, "end": 711, "id": 121, "annotation": null}, {"text": "BiOI", "start": 712, "end": 716, "id": 122, "annotation": null}, {"text": "for", "start": 717, "end": 720, "id": 123, "annotation": null}, {"text": "the", "start": 721, "end": 724, "id": 124, "annotation": null}, {"text": "degradation", "start": 725, "end": 736, "id": 125, "annotation": null}, {"text": "of", "start": 737, "end": 739, "id": 126, "annotation": null}, {"text": "Rhodamine", "start": 740, "end": 749, "id": 127, "annotation": null}, {"text": "B", "start": 750, "end": 751, "id": 128, "annotation": null}, {"text": "(", "start": 752, "end": 753, "id": 129, "annotation": null}, {"text": "RhB", "start": 754, "end": 757, "id": 130, "annotation": null}, {"text": ")", "start": 758, "end": 759, "id": 131, "annotation": null}, {"text": ".", "start": 760, "end": 761, "id": 132, "annotation": null}], [{"text": "The", "start": 762, "end": 765, "id": 133, "annotation": null}, {"text": "markedly", "start": 766, "end": 774, "id": 134, "annotation": null}, {"text": "enhanced", "start": 775, "end": 783, "id": 135, "annotation": null}, {"text": "photocatalytic", "start": 784, "end": 798, "id": 136, "annotation": null}, {"text": "activities", "start": 799, "end": 809, "id": 137, "annotation": null}, {"text": "of", "start": 810, "end": 812, "id": 138, "annotation": null}, {"text": "BiOI", "start": 813, "end": 817, "id": 139, "annotation": null}, {"text": "/", "start": 818, "end": 819, "id": 140, "annotation": null}, {"text": "BiOCOOH", "start": 820, "end": 827, "id": 141, "annotation": null}, {"text": "composites", "start": 828, "end": 838, "id": 142, "annotation": null}, {"text": "were", "start": 839, "end": 843, "id": 143, "annotation": null}, {"text": "attributed", "start": 844, "end": 854, "id": 144, "annotation": null}, {"text": "to", "start": 855, "end": 857, "id": 145, "annotation": null}, {"text": "the", "start": 858, "end": 861, "id": 146, "annotation": null}, {"text": "formation", "start": 862, "end": 871, "id": 147, "annotation": null}, {"text": "of", "start": 872, "end": 874, "id": 148, "annotation": null}, {"text": "a", "start": 875, "end": 876, "id": 149, "annotation": null}, {"text": "p", "start": 877, "end": 878, "id": 150, "annotation": null}, {"text": "-", "start": 879, "end": 880, "id": 151, "annotation": null}, {"text": "n", "start": 881, "end": 882, "id": 152, "annotation": null}, {"text": "heterojunction", "start": 883, "end": 897, "id": 153, "annotation": null}, {"text": "between", "start": 898, "end": 905, "id": 154, "annotation": null}, {"text": "p", "start": 906, "end": 907, "id": 155, "annotation": "DOPANT"}, {"text": "-", "start": 908, "end": 909, "id": 156, "annotation": "DOPANT"}, {"text": "type", "start": 910, "end": 914, "id": 157, "annotation": "DOPANT"}, {"text": "BiOI", "start": 915, "end": 919, "id": 158, "annotation": "BASEMAT"}, {"text": "and", "start": 920, "end": 923, "id": 159, "annotation": null}, {"text": "n", "start": 924, "end": 925, "id": 160, "annotation": "DOPANT"}, {"text": "-", "start": 926, "end": 927, "id": 161, "annotation": "DOPANT"}, {"text": "type", "start": 928, "end": 932, "id": 162, "annotation": "DOPANT"}, {"text": "BiOCOOH", "start": 933, "end": 940, "id": 163, "annotation": "BASEMAT"}, {"text": ",", "start": 941, "end": 942, "id": 164, "annotation": null}, {"text": "which", "start": 943, "end": 948, "id": 165, "annotation": null}, {"text": "facilitated", "start": 949, "end": 960, "id": 166, "annotation": null}, {"text": "the", "start": 961, "end": 964, "id": 167, "annotation": null}, {"text": "charge", "start": 965, "end": 971, "id": 168, "annotation": null}, {"text": "separation", "start": 972, "end": 982, "id": 169, "annotation": null}, {"text": "of", "start": 983, "end": 985, "id": 170, "annotation": null}, {"text": "photogenerated", "start": 986, "end": 1000, "id": 171, "annotation": null}, {"text": "electron", "start": 1001, "end": 1009, "id": 172, "annotation": null}, {"text": "-", "start": 1010, "end": 1011, "id": 173, "annotation": null}, {"text": "hole", "start": 1012, "end": 1016, "id": 174, "annotation": null}, {"text": "pairs", "start": 1017, "end": 1022, "id": 175, "annotation": null}, {"text": ".", "start": 1023, "end": 1024, "id": 176, "annotation": null}], [{"text": "The", "start": 1025, "end": 1028, "id": 177, "annotation": null}, {"text": "photoelectrochemical", "start": 1029, "end": 1049, "id": 178, "annotation": null}, {"text": "measurement", "start": 1050, "end": 1061, "id": 179, "annotation": null}, {"text": "confirmed", "start": 1062, "end": 1071, "id": 180, "annotation": null}, {"text": "that", "start": 1072, "end": 1076, "id": 181, "annotation": null}, {"text": "the", "start": 1077, "end": 1080, "id": 182, "annotation": null}, {"text": "charge", "start": 1081, "end": 1087, "id": 183, "annotation": null}, {"text": "separation", "start": 1088, "end": 1098, "id": 184, "annotation": null}, {"text": "efficiency", "start": 1099, "end": 1109, "id": 185, "annotation": null}, {"text": "was", "start": 1110, "end": 1113, "id": 186, "annotation": null}, {"text": "greatly", "start": 1114, "end": 1121, "id": 187, "annotation": null}, {"text": "improved", "start": 1122, "end": 1130, "id": 188, "annotation": null}, {"text": "by", "start": 1131, "end": 1133, "id": 189, "annotation": null}, {"text": "the", "start": 1134, "end": 1137, "id": 190, "annotation": null}, {"text": "formation", "start": 1138, "end": 1147, "id": 191, "annotation": null}, {"text": "of", "start": 1148, "end": 1150, "id": 192, "annotation": null}, {"text": "the", "start": 1151, "end": 1154, "id": 193, "annotation": null}, {"text": "heterojunction", "start": 1155, "end": 1169, "id": 194, "annotation": null}, {"text": "structure", "start": 1170, "end": 1179, "id": 195, "annotation": null}, {"text": ".", "start": 1180, "end": 1181, "id": 196, "annotation": null}], [{"text": "Moreover", "start": 1182, "end": 1190, "id": 197, "annotation": null}, {"text": ",", "start": 1191, "end": 1192, "id": 198, "annotation": null}, {"text": "tests", "start": 1193, "end": 1198, "id": 199, "annotation": null}, {"text": "of", "start": 1199, "end": 1201, "id": 200, "annotation": null}, {"text": "radical", "start": 1202, "end": 1209, "id": 201, "annotation": null}, {"text": "scavengers", "start": 1210, "end": 1220, "id": 202, "annotation": null}, {"text": "demonstrated", "start": 1221, "end": 1233, "id": 203, "annotation": null}, {"text": "that", "start": 1234, "end": 1238, "id": 204, "annotation": null}, {"text": "h+and", "start": 1239, "end": 1244, "id": 205, "annotation": null}, {"text": "O2-were", "start": 1245, "end": 1252, "id": 206, "annotation": null}, {"text": "the", "start": 1253, "end": 1256, "id": 207, "annotation": null}, {"text": "main", "start": 1257, "end": 1261, "id": 208, "annotation": null}, {"text": "active", "start": 1262, "end": 1268, "id": 209, "annotation": null}, {"text": "species", "start": 1269, "end": 1276, "id": 210, "annotation": null}, {"text": "for", "start": 1277, "end": 1280, "id": 211, "annotation": null}, {"text": "the", "start": 1281, "end": 1284, "id": 212, "annotation": null}, {"text": "degradation", "start": 1285, "end": 1296, "id": 213, "annotation": null}, {"text": "of", "start": 1297, "end": 1299, "id": 214, "annotation": null}, {"text": "RhB.", "start": 1300, "end": 1304, "id": 215, "annotation": null}], [{"text": "This", "start": 1305, "end": 1309, "id": 216, "annotation": null}, {"text": "journal", "start": 1310, "end": 1317, "id": 217, "annotation": null}, {"text": "is", "start": 1318, "end": 1320, "id": 218, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "This paper reports the synthesis of pure and Cr-doped TiO2 nanoparticles with different doping concentrations by using a cost-effective solvothermal method. The as-synthesized nanoparticles were characterized by using X-ray diffraction, transmission electron microscopy and UV\u2013Vis spectroscopy to study their structural and optical properties. The XRD pattern showed the prepared material is pure anatase of the crystalline phase. Using TEM measurement, the average particles size is found to be about 11\u201313nm while selective area electron diffraction (SAED) patterns have confirmed the polycrystalline nature of the nanoparticles. The size of the crystallite is observed to be decreased with an increase in dopant (Cr) concentration. UV\u2013Vis absorption spectra showed enhanced absorption in the visible range in accordance with the doping concentration of Cr with a red shift in the absorption edge. The band gap energy of doped nanoparticles decreases in accordance with an increase in dopant concentration due to the reduced particles size. This presented work would be useful to tune the optical properties of doped and undoped metal oxide TiO2 for its optoelectronic applications.", "meta": {"doi": "10.1016/j.rinp.2017.03.014"}, "_input_hash": 2097253503, "_task_hash": -673019175, "tokens": [[{"text": "This", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "paper", "start": 5, "end": 10, "id": 1, "annotation": null}, {"text": "reports", "start": 11, "end": 18, "id": 2, "annotation": null}, {"text": "the", "start": 19, "end": 22, "id": 3, "annotation": null}, {"text": "synthesis", "start": 23, "end": 32, "id": 4, "annotation": null}, {"text": "of", "start": 33, "end": 35, "id": 5, "annotation": null}, {"text": "pure", "start": 36, "end": 40, "id": 6, "annotation": null}, {"text": "and", "start": 41, "end": 44, "id": 7, "annotation": null}, {"text": "Cr", "start": 45, "end": 47, "id": 8, "annotation": "DOPANT"}, {"text": "-", "start": 48, "end": 49, "id": 9, "annotation": null}, {"text": "doped", "start": 50, "end": 55, "id": 10, "annotation": null}, {"text": "TiO2", "start": 56, "end": 60, "id": 11, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 61, "end": 74, "id": 12, "annotation": null}, {"text": "with", "start": 75, "end": 79, "id": 13, "annotation": null}, {"text": "different", "start": 80, "end": 89, "id": 14, "annotation": null}, {"text": "doping", "start": 90, "end": 96, "id": 15, "annotation": null}, {"text": "concentrations", "start": 97, "end": 111, "id": 16, "annotation": null}, {"text": "by", "start": 112, "end": 114, "id": 17, "annotation": null}, {"text": "using", "start": 115, "end": 120, "id": 18, "annotation": null}, {"text": "a", "start": 121, "end": 122, "id": 19, "annotation": null}, {"text": "cost", "start": 123, "end": 127, "id": 20, "annotation": null}, {"text": "-", "start": 128, "end": 129, "id": 21, "annotation": null}, {"text": "effective", "start": 130, "end": 139, "id": 22, "annotation": null}, {"text": "solvothermal", "start": 140, "end": 152, "id": 23, "annotation": null}, {"text": "method", "start": 153, "end": 159, "id": 24, "annotation": null}, {"text": ".", "start": 160, "end": 161, "id": 25, "annotation": null}], [{"text": "The", "start": 162, "end": 165, "id": 26, "annotation": null}, {"text": "as", "start": 166, "end": 168, "id": 27, "annotation": null}, {"text": "-", "start": 169, "end": 170, "id": 28, "annotation": null}, {"text": "synthesized", "start": 171, "end": 182, "id": 29, "annotation": null}, {"text": "nanoparticles", "start": 183, "end": 196, "id": 30, "annotation": null}, {"text": "were", "start": 197, "end": 201, "id": 31, "annotation": null}, {"text": "characterized", "start": 202, "end": 215, "id": 32, "annotation": null}, {"text": "by", "start": 216, "end": 218, "id": 33, "annotation": null}, {"text": "using", "start": 219, "end": 224, "id": 34, "annotation": null}, {"text": "X", "start": 225, "end": 226, "id": 35, "annotation": null}, {"text": "-", "start": 227, "end": 228, "id": 36, "annotation": null}, {"text": "ray", "start": 229, "end": 232, "id": 37, "annotation": null}, {"text": "diffraction", "start": 233, "end": 244, "id": 38, "annotation": null}, {"text": ",", "start": 245, "end": 246, "id": 39, "annotation": null}, {"text": "transmission", "start": 247, "end": 259, "id": 40, "annotation": null}, {"text": "electron", "start": 260, "end": 268, "id": 41, "annotation": null}, {"text": "microscopy", "start": 269, "end": 279, "id": 42, "annotation": null}, {"text": "and", "start": 280, "end": 283, "id": 43, "annotation": null}, {"text": "UV", "start": 284, "end": 286, "id": 44, "annotation": null}, {"text": "\u2013", "start": 287, "end": 288, "id": 45, "annotation": null}, {"text": "Vis", "start": 289, "end": 292, "id": 46, "annotation": null}, {"text": "spectroscopy", "start": 293, "end": 305, "id": 47, "annotation": null}, {"text": "to", "start": 306, "end": 308, "id": 48, "annotation": null}, {"text": "study", "start": 309, "end": 314, "id": 49, "annotation": null}, {"text": "their", "start": 315, "end": 320, "id": 50, "annotation": null}, {"text": "structural", "start": 321, "end": 331, "id": 51, "annotation": null}, {"text": "and", "start": 332, "end": 335, "id": 52, "annotation": null}, {"text": "optical", "start": 336, "end": 343, "id": 53, "annotation": null}, {"text": "properties", "start": 344, "end": 354, "id": 54, "annotation": null}, {"text": ".", "start": 355, "end": 356, "id": 55, "annotation": null}], [{"text": "The", "start": 357, "end": 360, "id": 56, "annotation": null}, {"text": "XRD", "start": 361, "end": 364, "id": 57, "annotation": null}, {"text": "pattern", "start": 365, "end": 372, "id": 58, "annotation": null}, {"text": "showed", "start": 373, "end": 379, "id": 59, "annotation": null}, {"text": "the", "start": 380, "end": 383, "id": 60, "annotation": null}, {"text": "prepared", "start": 384, "end": 392, "id": 61, "annotation": null}, {"text": "material", "start": 393, "end": 401, "id": 62, "annotation": null}, {"text": "is", "start": 402, "end": 404, "id": 63, "annotation": null}, {"text": "pure", "start": 405, "end": 409, "id": 64, "annotation": null}, {"text": "anatase", "start": 410, "end": 417, "id": 65, "annotation": null}, {"text": "of", "start": 418, "end": 420, "id": 66, "annotation": null}, {"text": "the", "start": 421, "end": 424, "id": 67, "annotation": null}, {"text": "crystalline", "start": 425, "end": 436, "id": 68, "annotation": null}, {"text": "phase", "start": 437, "end": 442, "id": 69, "annotation": null}, {"text": ".", "start": 443, "end": 444, "id": 70, "annotation": null}], [{"text": "Using", "start": 445, "end": 450, "id": 71, "annotation": null}, {"text": "TEM", "start": 451, "end": 454, "id": 72, "annotation": null}, {"text": "measurement", "start": 455, "end": 466, "id": 73, "annotation": null}, {"text": ",", "start": 467, "end": 468, "id": 74, "annotation": null}, {"text": "the", "start": 469, "end": 472, "id": 75, "annotation": null}, {"text": "average", "start": 473, "end": 480, "id": 76, "annotation": null}, {"text": "particles", "start": 481, "end": 490, "id": 77, "annotation": null}, {"text": "size", "start": 491, "end": 495, "id": 78, "annotation": null}, {"text": "is", "start": 496, "end": 498, "id": 79, "annotation": null}, {"text": "found", "start": 499, "end": 504, "id": 80, "annotation": null}, {"text": "to", "start": 505, "end": 507, "id": 81, "annotation": null}, {"text": "be", "start": 508, "end": 510, "id": 82, "annotation": null}, {"text": "about", "start": 511, "end": 516, "id": 83, "annotation": null}, {"text": "11\u201313", "start": 517, "end": 522, "id": 84, "annotation": null}, {"text": "nm", "start": 523, "end": 525, "id": 85, "annotation": null}, {"text": "while", "start": 526, "end": 531, "id": 86, "annotation": null}, {"text": "selective", "start": 532, "end": 541, "id": 87, "annotation": null}, {"text": "area", "start": 542, "end": 546, "id": 88, "annotation": null}, {"text": "electron", "start": 547, "end": 555, "id": 89, "annotation": null}, {"text": "diffraction", "start": 556, "end": 567, "id": 90, "annotation": null}, {"text": "(", "start": 568, "end": 569, "id": 91, "annotation": null}, {"text": "SAED", "start": 570, "end": 574, "id": 92, "annotation": null}, {"text": ")", "start": 575, "end": 576, "id": 93, "annotation": null}, {"text": "patterns", "start": 577, "end": 585, "id": 94, "annotation": null}, {"text": "have", "start": 586, "end": 590, "id": 95, "annotation": null}, {"text": "confirmed", "start": 591, "end": 600, "id": 96, "annotation": null}, {"text": "the", "start": 601, "end": 604, "id": 97, "annotation": null}, {"text": "polycrystalline", "start": 605, "end": 620, "id": 98, "annotation": null}, {"text": "nature", "start": 621, "end": 627, "id": 99, "annotation": null}, {"text": "of", "start": 628, "end": 630, "id": 100, "annotation": null}, {"text": "the", "start": 631, "end": 634, "id": 101, "annotation": null}, {"text": "nanoparticles", "start": 635, "end": 648, "id": 102, "annotation": null}, {"text": ".", "start": 649, "end": 650, "id": 103, "annotation": null}], [{"text": "The", "start": 651, "end": 654, "id": 104, "annotation": null}, {"text": "size", "start": 655, "end": 659, "id": 105, "annotation": null}, {"text": "of", "start": 660, "end": 662, "id": 106, "annotation": null}, {"text": "the", "start": 663, "end": 666, "id": 107, "annotation": null}, {"text": "crystallite", "start": 667, "end": 678, "id": 108, "annotation": null}, {"text": "is", "start": 679, "end": 681, "id": 109, "annotation": null}, {"text": "observed", "start": 682, "end": 690, "id": 110, "annotation": null}, {"text": "to", "start": 691, "end": 693, "id": 111, "annotation": null}, {"text": "be", "start": 694, "end": 696, "id": 112, "annotation": null}, {"text": "decreased", "start": 697, "end": 706, "id": 113, "annotation": null}, {"text": "with", "start": 707, "end": 711, "id": 114, "annotation": null}, {"text": "an", "start": 712, "end": 714, "id": 115, "annotation": null}, {"text": "increase", "start": 715, "end": 723, "id": 116, "annotation": null}, {"text": "in", "start": 724, "end": 726, "id": 117, "annotation": null}, {"text": "dopant", "start": 727, "end": 733, "id": 118, "annotation": null}, {"text": "(", "start": 734, "end": 735, "id": 119, "annotation": null}, {"text": "Cr", "start": 736, "end": 738, "id": 120, "annotation": "DOPANT"}, {"text": ")", "start": 739, "end": 740, "id": 121, "annotation": null}, {"text": "concentration", "start": 741, "end": 754, "id": 122, "annotation": null}, {"text": ".", "start": 755, "end": 756, "id": 123, "annotation": null}], [{"text": "UV", "start": 757, "end": 759, "id": 124, "annotation": null}, {"text": "\u2013", "start": 760, "end": 761, "id": 125, "annotation": null}, {"text": "Vis", "start": 762, "end": 765, "id": 126, "annotation": null}, {"text": "absorption", "start": 766, "end": 776, "id": 127, "annotation": null}, {"text": "spectra", "start": 777, "end": 784, "id": 128, "annotation": null}, {"text": "showed", "start": 785, "end": 791, "id": 129, "annotation": null}, {"text": "enhanced", "start": 792, "end": 800, "id": 130, "annotation": null}, {"text": "absorption", "start": 801, "end": 811, "id": 131, "annotation": null}, {"text": "in", "start": 812, "end": 814, "id": 132, "annotation": null}, {"text": "the", "start": 815, "end": 818, "id": 133, "annotation": null}, {"text": "visible", "start": 819, "end": 826, "id": 134, "annotation": null}, {"text": "range", "start": 827, "end": 832, "id": 135, "annotation": null}, {"text": "in", "start": 833, "end": 835, "id": 136, "annotation": null}, {"text": "accordance", "start": 836, "end": 846, "id": 137, "annotation": null}, {"text": "with", "start": 847, "end": 851, "id": 138, "annotation": null}, {"text": "the", "start": 852, "end": 855, "id": 139, "annotation": null}, {"text": "doping", "start": 856, "end": 862, "id": 140, "annotation": null}, {"text": "concentration", "start": 863, "end": 876, "id": 141, "annotation": null}, {"text": "of", "start": 877, "end": 879, "id": 142, "annotation": null}, {"text": "Cr", "start": 880, "end": 882, "id": 143, "annotation": "DOPANT"}, {"text": "with", "start": 883, "end": 887, "id": 144, "annotation": null}, {"text": "a", "start": 888, "end": 889, "id": 145, "annotation": null}, {"text": "red", "start": 890, "end": 893, "id": 146, "annotation": null}, {"text": "shift", "start": 894, "end": 899, "id": 147, "annotation": null}, {"text": "in", "start": 900, "end": 902, "id": 148, "annotation": null}, {"text": "the", "start": 903, "end": 906, "id": 149, "annotation": null}, {"text": "absorption", "start": 907, "end": 917, "id": 150, "annotation": null}, {"text": "edge", "start": 918, "end": 922, "id": 151, "annotation": null}, {"text": ".", "start": 923, "end": 924, "id": 152, "annotation": null}], [{"text": "The", "start": 925, "end": 928, "id": 153, "annotation": null}, {"text": "band", "start": 929, "end": 933, "id": 154, "annotation": null}, {"text": "gap", "start": 934, "end": 937, "id": 155, "annotation": null}, {"text": "energy", "start": 938, "end": 944, "id": 156, "annotation": null}, {"text": "of", "start": 945, "end": 947, "id": 157, "annotation": null}, {"text": "doped", "start": 948, "end": 953, "id": 158, "annotation": null}, {"text": "nanoparticles", "start": 954, "end": 967, "id": 159, "annotation": "BASEMAT"}, {"text": "decreases", "start": 968, "end": 977, "id": 160, "annotation": null}, {"text": "in", "start": 978, "end": 980, "id": 161, "annotation": null}, {"text": "accordance", "start": 981, "end": 991, "id": 162, "annotation": null}, {"text": "with", "start": 992, "end": 996, "id": 163, "annotation": null}, {"text": "an", "start": 997, "end": 999, "id": 164, "annotation": null}, {"text": "increase", "start": 1000, "end": 1008, "id": 165, "annotation": null}, {"text": "in", "start": 1009, "end": 1011, "id": 166, "annotation": null}, {"text": "dopant", "start": 1012, "end": 1018, "id": 167, "annotation": null}, {"text": "concentration", "start": 1019, "end": 1032, "id": 168, "annotation": null}, {"text": "due", "start": 1033, "end": 1036, "id": 169, "annotation": null}, {"text": "to", "start": 1037, "end": 1039, "id": 170, "annotation": null}, {"text": "the", "start": 1040, "end": 1043, "id": 171, "annotation": null}, {"text": "reduced", "start": 1044, "end": 1051, "id": 172, "annotation": null}, {"text": "particles", "start": 1052, "end": 1061, "id": 173, "annotation": null}, {"text": "size", "start": 1062, "end": 1066, "id": 174, "annotation": null}, {"text": ".", "start": 1067, "end": 1068, "id": 175, "annotation": null}], [{"text": "This", "start": 1069, "end": 1073, "id": 176, "annotation": null}, {"text": "presented", "start": 1074, "end": 1083, "id": 177, "annotation": null}, {"text": "work", "start": 1084, "end": 1088, "id": 178, "annotation": null}, {"text": "would", "start": 1089, "end": 1094, "id": 179, "annotation": null}, {"text": "be", "start": 1095, "end": 1097, "id": 180, "annotation": null}, {"text": "useful", "start": 1098, "end": 1104, "id": 181, "annotation": null}, {"text": "to", "start": 1105, "end": 1107, "id": 182, "annotation": null}, {"text": "tune", "start": 1108, "end": 1112, "id": 183, "annotation": null}, {"text": "the", "start": 1113, "end": 1116, "id": 184, "annotation": null}, {"text": "optical", "start": 1117, "end": 1124, "id": 185, "annotation": null}, {"text": "properties", "start": 1125, "end": 1135, "id": 186, "annotation": null}, {"text": "of", "start": 1136, "end": 1138, "id": 187, "annotation": null}, {"text": "doped", "start": 1139, "end": 1144, "id": 188, "annotation": null}, {"text": "and", "start": 1145, "end": 1148, "id": 189, "annotation": null}, {"text": "undoped", "start": 1149, "end": 1156, "id": 190, "annotation": null}, {"text": "metal", "start": 1157, "end": 1162, "id": 191, "annotation": null}, {"text": "oxide", "start": 1163, "end": 1168, "id": 192, "annotation": null}, {"text": "TiO2", "start": 1169, "end": 1173, "id": 193, "annotation": "BASEMAT"}, {"text": "for", "start": 1174, "end": 1177, "id": 194, "annotation": null}, {"text": "its", "start": 1178, "end": 1181, "id": 195, "annotation": null}, {"text": "optoelectronic", "start": 1182, "end": 1196, "id": 196, "annotation": null}, {"text": "applications", "start": 1197, "end": 1209, "id": 197, "annotation": null}, {"text": ".", "start": 1210, "end": 1211, "id": 198, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "We investigate the mechanism of light extraction enhancement of a GaN-based light-emitting diode (LED) grown on patterned sapphire substrate (PSS), that has ZnO nanorod arrays (NRAs) fabricated on top of the device using the hydrothermal method. We found that the light output power of the LED with ZnO NRAs increases by approximately 30% compared to the conventional LED without damaging the electrical properties of the device. We argue that the gradual decrease of the effective refractive index, which is caused by the fabrication of ZnO NRAs, is the mechanism of the observed improvement. Our argument is confirmed by cross-sectional confocal scanning electroluminescence microscopy (CSEM) and the theoretical simulations, where we observed a distinct increase of the transmission at the interface between LED and air at the operation wavelength of the LED. In addition, the plane-view CSEM results indicate that ZnO NRAs, which were grown on the bare p-type GaN layer as an electrical safety margin area, also contribute to the enhanced light output power of the LED, which indicate further enhancement is manifested even in the optically ineffective sacrificial area.", "meta": {"doi": "10.1039/C3NR06584G"}, "_input_hash": 2025029862, "_task_hash": -2038181945, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "investigate", "start": 3, "end": 14, "id": 1, "annotation": null}, {"text": "the", "start": 15, "end": 18, "id": 2, "annotation": null}, {"text": "mechanism", "start": 19, "end": 28, "id": 3, "annotation": null}, {"text": "of", "start": 29, "end": 31, "id": 4, "annotation": null}, {"text": "light", "start": 32, "end": 37, "id": 5, "annotation": null}, {"text": "extraction", "start": 38, "end": 48, "id": 6, "annotation": null}, {"text": "enhancement", "start": 49, "end": 60, "id": 7, "annotation": null}, {"text": "of", "start": 61, "end": 63, "id": 8, "annotation": null}, {"text": "a", "start": 64, "end": 65, "id": 9, "annotation": null}, {"text": "GaN", "start": 66, "end": 69, "id": 10, "annotation": null}, {"text": "-", "start": 70, "end": 71, "id": 11, "annotation": null}, {"text": "based", "start": 72, "end": 77, "id": 12, "annotation": null}, {"text": "light", "start": 78, "end": 83, "id": 13, "annotation": null}, {"text": "-", "start": 84, "end": 85, "id": 14, "annotation": null}, {"text": "emitting", "start": 86, "end": 94, "id": 15, "annotation": null}, {"text": "diode", "start": 95, "end": 100, "id": 16, "annotation": null}, {"text": "(", "start": 101, "end": 102, "id": 17, "annotation": null}, {"text": "LED", "start": 103, "end": 106, "id": 18, "annotation": null}, {"text": ")", "start": 107, "end": 108, "id": 19, "annotation": null}, {"text": "grown", "start": 109, "end": 114, "id": 20, "annotation": null}, {"text": "on", "start": 115, "end": 117, "id": 21, "annotation": null}, {"text": "patterned", "start": 118, "end": 127, "id": 22, "annotation": null}, {"text": "sapphire", "start": 128, "end": 136, "id": 23, "annotation": null}, {"text": "substrate", "start": 137, "end": 146, "id": 24, "annotation": null}, {"text": "(", "start": 147, "end": 148, "id": 25, "annotation": null}, {"text": "PSS", "start": 149, "end": 152, "id": 26, "annotation": null}, {"text": ")", "start": 153, "end": 154, "id": 27, "annotation": null}, {"text": ",", "start": 155, "end": 156, "id": 28, "annotation": null}, {"text": "that", "start": 157, "end": 161, "id": 29, "annotation": null}, {"text": "has", "start": 162, "end": 165, "id": 30, "annotation": null}, {"text": "ZnO", "start": 166, "end": 169, "id": 31, "annotation": null}, {"text": "nanorod", "start": 170, "end": 177, "id": 32, "annotation": null}, {"text": "arrays", "start": 178, "end": 184, "id": 33, "annotation": null}, {"text": "(", "start": 185, "end": 186, "id": 34, "annotation": null}, {"text": "NRAs", "start": 187, "end": 191, "id": 35, "annotation": null}, {"text": ")", "start": 192, "end": 193, "id": 36, "annotation": null}, {"text": "fabricated", "start": 194, "end": 204, "id": 37, "annotation": null}, {"text": "on", "start": 205, "end": 207, "id": 38, "annotation": null}, {"text": "top", "start": 208, "end": 211, "id": 39, "annotation": null}, {"text": "of", "start": 212, "end": 214, "id": 40, "annotation": null}, {"text": "the", "start": 215, "end": 218, "id": 41, "annotation": null}, {"text": "device", "start": 219, "end": 225, "id": 42, "annotation": null}, {"text": "using", "start": 226, "end": 231, "id": 43, "annotation": null}, {"text": "the", "start": 232, "end": 235, "id": 44, "annotation": null}, {"text": "hydrothermal", "start": 236, "end": 248, "id": 45, "annotation": null}, {"text": "method", "start": 249, "end": 255, "id": 46, "annotation": null}, {"text": ".", "start": 256, "end": 257, "id": 47, "annotation": null}], [{"text": "We", "start": 258, "end": 260, "id": 48, "annotation": null}, {"text": "found", "start": 261, "end": 266, "id": 49, "annotation": null}, {"text": "that", "start": 267, "end": 271, "id": 50, "annotation": null}, {"text": "the", "start": 272, "end": 275, "id": 51, "annotation": null}, {"text": "light", "start": 276, "end": 281, "id": 52, "annotation": null}, {"text": "output", "start": 282, "end": 288, "id": 53, "annotation": null}, {"text": "power", "start": 289, "end": 294, "id": 54, "annotation": null}, {"text": "of", "start": 295, "end": 297, "id": 55, "annotation": null}, {"text": "the", "start": 298, "end": 301, "id": 56, "annotation": null}, {"text": "LED", "start": 302, "end": 305, "id": 57, "annotation": null}, {"text": "with", "start": 306, "end": 310, "id": 58, "annotation": null}, {"text": "ZnO", "start": 311, "end": 314, "id": 59, "annotation": null}, {"text": "NRAs", "start": 315, "end": 319, "id": 60, "annotation": null}, {"text": "increases", "start": 320, "end": 329, "id": 61, "annotation": null}, {"text": "by", "start": 330, "end": 332, "id": 62, "annotation": null}, {"text": "approximately", "start": 333, "end": 346, "id": 63, "annotation": null}, {"text": "30", "start": 347, "end": 349, "id": 64, "annotation": null}, {"text": "%", "start": 350, "end": 351, "id": 65, "annotation": null}, {"text": "compared", "start": 352, "end": 360, "id": 66, "annotation": null}, {"text": "to", "start": 361, "end": 363, "id": 67, "annotation": null}, {"text": "the", "start": 364, "end": 367, "id": 68, "annotation": null}, {"text": "conventional", "start": 368, "end": 380, "id": 69, "annotation": null}, {"text": "LED", "start": 381, "end": 384, "id": 70, "annotation": null}, {"text": "without", "start": 385, "end": 392, "id": 71, "annotation": null}, {"text": "damaging", "start": 393, "end": 401, "id": 72, "annotation": null}, {"text": "the", "start": 402, "end": 405, "id": 73, "annotation": null}, {"text": "electrical", "start": 406, "end": 416, "id": 74, "annotation": null}, {"text": "properties", "start": 417, "end": 427, "id": 75, "annotation": null}, {"text": "of", "start": 428, "end": 430, "id": 76, "annotation": null}, {"text": "the", "start": 431, "end": 434, "id": 77, "annotation": null}, {"text": "device", "start": 435, "end": 441, "id": 78, "annotation": null}, {"text": ".", "start": 442, "end": 443, "id": 79, "annotation": null}], [{"text": "We", "start": 444, "end": 446, "id": 80, "annotation": null}, {"text": "argue", "start": 447, "end": 452, "id": 81, "annotation": null}, {"text": "that", "start": 453, "end": 457, "id": 82, "annotation": null}, {"text": "the", "start": 458, "end": 461, "id": 83, "annotation": null}, {"text": "gradual", "start": 462, "end": 469, "id": 84, "annotation": null}, {"text": "decrease", "start": 470, "end": 478, "id": 85, "annotation": null}, {"text": "of", "start": 479, "end": 481, "id": 86, "annotation": null}, {"text": "the", "start": 482, "end": 485, "id": 87, "annotation": null}, {"text": "effective", "start": 486, "end": 495, "id": 88, "annotation": null}, {"text": "refractive", "start": 496, "end": 506, "id": 89, "annotation": null}, {"text": "index", "start": 507, "end": 512, "id": 90, "annotation": null}, {"text": ",", "start": 513, "end": 514, "id": 91, "annotation": null}, {"text": "which", "start": 515, "end": 520, "id": 92, "annotation": null}, {"text": "is", "start": 521, "end": 523, "id": 93, "annotation": null}, {"text": "caused", "start": 524, "end": 530, "id": 94, "annotation": null}, {"text": "by", "start": 531, "end": 533, "id": 95, "annotation": null}, {"text": "the", "start": 534, "end": 537, "id": 96, "annotation": null}, {"text": "fabrication", "start": 538, "end": 549, "id": 97, "annotation": null}, {"text": "of", "start": 550, "end": 552, "id": 98, "annotation": null}, {"text": "ZnO", "start": 553, "end": 556, "id": 99, "annotation": null}, {"text": "NRAs", "start": 557, "end": 561, "id": 100, "annotation": null}, {"text": ",", "start": 562, "end": 563, "id": 101, "annotation": null}, {"text": "is", "start": 564, "end": 566, "id": 102, "annotation": null}, {"text": "the", "start": 567, "end": 570, "id": 103, "annotation": null}, {"text": "mechanism", "start": 571, "end": 580, "id": 104, "annotation": null}, {"text": "of", "start": 581, "end": 583, "id": 105, "annotation": null}, {"text": "the", "start": 584, "end": 587, "id": 106, "annotation": null}, {"text": "observed", "start": 588, "end": 596, "id": 107, "annotation": null}, {"text": "improvement", "start": 597, "end": 608, "id": 108, "annotation": null}, {"text": ".", "start": 609, "end": 610, "id": 109, "annotation": null}], [{"text": "Our", "start": 611, "end": 614, "id": 110, "annotation": null}, {"text": "argument", "start": 615, "end": 623, "id": 111, "annotation": null}, {"text": "is", "start": 624, "end": 626, "id": 112, "annotation": null}, {"text": "confirmed", "start": 627, "end": 636, "id": 113, "annotation": null}, {"text": "by", "start": 637, "end": 639, "id": 114, "annotation": null}, {"text": "cross", "start": 640, "end": 645, "id": 115, "annotation": null}, {"text": "-", "start": 646, "end": 647, "id": 116, "annotation": null}, {"text": "sectional", "start": 648, "end": 657, "id": 117, "annotation": null}, {"text": "confocal", "start": 658, "end": 666, "id": 118, "annotation": null}, {"text": "scanning", "start": 667, "end": 675, "id": 119, "annotation": null}, {"text": "electroluminescence", "start": 676, "end": 695, "id": 120, "annotation": null}, {"text": "microscopy", "start": 696, "end": 706, "id": 121, "annotation": null}, {"text": "(", "start": 707, "end": 708, "id": 122, "annotation": null}, {"text": "CSEM", "start": 709, "end": 713, "id": 123, "annotation": null}, {"text": ")", "start": 714, "end": 715, "id": 124, "annotation": null}, {"text": "and", "start": 716, "end": 719, "id": 125, "annotation": null}, {"text": "the", "start": 720, "end": 723, "id": 126, "annotation": null}, {"text": "theoretical", "start": 724, "end": 735, "id": 127, "annotation": null}, {"text": "simulations", "start": 736, "end": 747, "id": 128, "annotation": null}, {"text": ",", "start": 748, "end": 749, "id": 129, "annotation": null}, {"text": "where", "start": 750, "end": 755, "id": 130, "annotation": null}, {"text": "we", "start": 756, "end": 758, "id": 131, "annotation": null}, {"text": "observed", "start": 759, "end": 767, "id": 132, "annotation": null}, {"text": "a", "start": 768, "end": 769, "id": 133, "annotation": null}, {"text": "distinct", "start": 770, "end": 778, "id": 134, "annotation": null}, {"text": "increase", "start": 779, "end": 787, "id": 135, "annotation": null}, {"text": "of", "start": 788, "end": 790, "id": 136, "annotation": null}, {"text": "the", "start": 791, "end": 794, "id": 137, "annotation": null}, {"text": "transmission", "start": 795, "end": 807, "id": 138, "annotation": null}, {"text": "at", "start": 808, "end": 810, "id": 139, "annotation": null}, {"text": "the", "start": 811, "end": 814, "id": 140, "annotation": null}, {"text": "interface", "start": 815, "end": 824, "id": 141, "annotation": null}, {"text": "between", "start": 825, "end": 832, "id": 142, "annotation": null}, {"text": "LED", "start": 833, "end": 836, "id": 143, "annotation": null}, {"text": "and", "start": 837, "end": 840, "id": 144, "annotation": null}, {"text": "air", "start": 841, "end": 844, "id": 145, "annotation": null}, {"text": "at", "start": 845, "end": 847, "id": 146, "annotation": null}, {"text": "the", "start": 848, "end": 851, "id": 147, "annotation": null}, {"text": "operation", "start": 852, "end": 861, "id": 148, "annotation": null}, {"text": "wavelength", "start": 862, "end": 872, "id": 149, "annotation": null}, {"text": "of", "start": 873, "end": 875, "id": 150, "annotation": null}, {"text": "the", "start": 876, "end": 879, "id": 151, "annotation": null}, {"text": "LED", "start": 880, "end": 883, "id": 152, "annotation": null}, {"text": ".", "start": 884, "end": 885, "id": 153, "annotation": null}], [{"text": "In", "start": 886, "end": 888, "id": 154, "annotation": null}, {"text": "addition", "start": 889, "end": 897, "id": 155, "annotation": null}, {"text": ",", "start": 898, "end": 899, "id": 156, "annotation": null}, {"text": "the", "start": 900, "end": 903, "id": 157, "annotation": null}, {"text": "plane", "start": 904, "end": 909, "id": 158, "annotation": null}, {"text": "-", "start": 910, "end": 911, "id": 159, "annotation": null}, {"text": "view", "start": 912, "end": 916, "id": 160, "annotation": null}, {"text": "CSEM", "start": 917, "end": 921, "id": 161, "annotation": null}, {"text": "results", "start": 922, "end": 929, "id": 162, "annotation": null}, {"text": "indicate", "start": 930, "end": 938, "id": 163, "annotation": null}, {"text": "that", "start": 939, "end": 943, "id": 164, "annotation": null}, {"text": "ZnO", "start": 944, "end": 947, "id": 165, "annotation": null}, {"text": "NRAs", "start": 948, "end": 952, "id": 166, "annotation": null}, {"text": ",", "start": 953, "end": 954, "id": 167, "annotation": null}, {"text": "which", "start": 955, "end": 960, "id": 168, "annotation": null}, {"text": "were", "start": 961, "end": 965, "id": 169, "annotation": null}, {"text": "grown", "start": 966, "end": 971, "id": 170, "annotation": null}, {"text": "on", "start": 972, "end": 974, "id": 171, "annotation": null}, {"text": "the", "start": 975, "end": 978, "id": 172, "annotation": null}, {"text": "bare", "start": 979, "end": 983, "id": 173, "annotation": null}, {"text": "p", "start": 984, "end": 985, "id": 174, "annotation": "DOPANT"}, {"text": "-", "start": 986, "end": 987, "id": 175, "annotation": null}, {"text": "type", "start": 988, "end": 992, "id": 176, "annotation": "DOPANT"}, {"text": "GaN", "start": 993, "end": 996, "id": 177, "annotation": "BASEMAT"}, {"text": "layer", "start": 997, "end": 1002, "id": 178, "annotation": null}, {"text": "as", "start": 1003, "end": 1005, "id": 179, "annotation": null}, {"text": "an", "start": 1006, "end": 1008, "id": 180, "annotation": null}, {"text": "electrical", "start": 1009, "end": 1019, "id": 181, "annotation": null}, {"text": "safety", "start": 1020, "end": 1026, "id": 182, "annotation": null}, {"text": "margin", "start": 1027, "end": 1033, "id": 183, "annotation": null}, {"text": "area", "start": 1034, "end": 1038, "id": 184, "annotation": null}, {"text": ",", "start": 1039, "end": 1040, "id": 185, "annotation": null}, {"text": "also", "start": 1041, "end": 1045, "id": 186, "annotation": null}, {"text": "contribute", "start": 1046, "end": 1056, "id": 187, "annotation": null}, {"text": "to", "start": 1057, "end": 1059, "id": 188, "annotation": null}, {"text": "the", "start": 1060, "end": 1063, "id": 189, "annotation": null}, {"text": "enhanced", "start": 1064, "end": 1072, "id": 190, "annotation": null}, {"text": "light", "start": 1073, "end": 1078, "id": 191, "annotation": null}, {"text": "output", "start": 1079, "end": 1085, "id": 192, "annotation": null}, {"text": "power", "start": 1086, "end": 1091, "id": 193, "annotation": null}, {"text": "of", "start": 1092, "end": 1094, "id": 194, "annotation": null}, {"text": "the", "start": 1095, "end": 1098, "id": 195, "annotation": null}, {"text": "LED", "start": 1099, "end": 1102, "id": 196, "annotation": null}, {"text": ",", "start": 1103, "end": 1104, "id": 197, "annotation": null}, {"text": "which", "start": 1105, "end": 1110, "id": 198, "annotation": null}, {"text": "indicate", "start": 1111, "end": 1119, "id": 199, "annotation": null}, {"text": "further", "start": 1120, "end": 1127, "id": 200, "annotation": null}, {"text": "enhancement", "start": 1128, "end": 1139, "id": 201, "annotation": null}, {"text": "is", "start": 1140, "end": 1142, "id": 202, "annotation": null}, {"text": "manifested", "start": 1143, "end": 1153, "id": 203, "annotation": null}, {"text": "even", "start": 1154, "end": 1158, "id": 204, "annotation": null}, {"text": "in", "start": 1159, "end": 1161, "id": 205, "annotation": null}, {"text": "the", "start": 1162, "end": 1165, "id": 206, "annotation": null}, {"text": "optically", "start": 1166, "end": 1175, "id": 207, "annotation": null}, {"text": "ineffective", "start": 1176, "end": 1187, "id": 208, "annotation": null}, {"text": "sacrificial", "start": 1188, "end": 1199, "id": 209, "annotation": null}, {"text": "area", "start": 1200, "end": 1204, "id": 210, "annotation": null}, {"text": ".", "start": 1205, "end": 1206, "id": 211, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "We present a surface corrosion method to shift the photocurrent onset potential cathodically for water oxidation on a Ti4+ doped Fe2O3 by about 100 mV. After the surface treatment, the doped hematite photoanodes showed a similar photocurrent onset potential to the lowest values obtained by loading with electrocatalysts or depositing functional over-layers. Moreover, the cathodic shift of the onset potential was preserved well even after a long operating time. The results indicated the effectiveness of this simple surface treatment. In order to make clear the reason for the onset potential shift, the doped hematite samples before and after surface corrosion were investigated by SEM, X-ray photoelectron spectroscopy (XPS), inductively coupled plasma mass spectrometry (ICP-MS), photoluminescence spectroscopy (PL), electrochemical impedance spectroscopy (EIS), Mott\u2013Schottky and so on. Based on the experimental evidence, we proposed a new mechanism for the onset potential shift. The cathodic shift of the onset potential was due to decreasing the back reaction, but not accelerating water oxidation kinetics, passivating surface states or ions adsorption as reported in the previous studies. This strategy of suppressing the back reaction can offer a reference to reduce the overpotential for other photoelectrodes.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "present", "start": 3, "end": 10, "annotation": null}, {"text": "a", "start": 11, "end": 12, "annotation": null}, {"text": "surface", "start": 13, "end": 20, "annotation": null}, {"text": "corrosion", "start": 21, "end": 30, "annotation": null}, {"text": "method", "start": 31, "end": 37, "annotation": null}, {"text": "to", "start": 38, "end": 40, "annotation": null}, {"text": "shift", "start": 41, "end": 46, "annotation": null}, {"text": "the", "start": 47, "end": 50, "annotation": null}, {"text": "photocurrent", "start": 51, "end": 63, "annotation": null}, {"text": "onset", "start": 64, "end": 69, "annotation": null}, {"text": "potential", "start": 70, "end": 79, "annotation": null}, {"text": "cathodically", "start": 80, "end": 92, "annotation": null}, {"text": "for", "start": 93, "end": 96, "annotation": null}, {"text": "water", "start": 97, "end": 102, "annotation": null}, {"text": "oxidation", "start": 103, "end": 112, "annotation": null}, {"text": "on", "start": 113, "end": 115, "annotation": null}, {"text": "a", "start": 116, "end": 117, "annotation": null}, {"text": "Ti4+", "start": 118, "end": 122, "annotation": "DOPANT"}, {"text": "doped", "start": 123, "end": 128, "annotation": null}, {"text": "Fe2O3", "start": 129, "end": 134, "annotation": "BASEMAT"}, {"text": "by", "start": 135, "end": 137, "annotation": null}, {"text": "about", "start": 138, "end": 143, "annotation": null}, {"text": "100", "start": 144, "end": 147, "annotation": null}, {"text": "mV", "start": 148, "end": 150, "annotation": null}, {"text": ".", "start": 150, "end": 151, "annotation": null}], [{"text": "After", "start": 152, "end": 157, "annotation": null}, {"text": "the", "start": 158, "end": 161, "annotation": null}, {"text": "surface", "start": 162, "end": 169, "annotation": null}, {"text": "treatment", "start": 170, "end": 179, "annotation": null}, {"text": ",", "start": 179, "end": 180, "annotation": null}, {"text": "the", "start": 181, "end": 184, "annotation": null}, {"text": "doped", "start": 185, "end": 190, "annotation": null}, {"text": "hematite", "start": 191, "end": 199, "annotation": null}, {"text": "photoanodes", "start": 200, "end": 211, "annotation": null}, {"text": "showed", "start": 212, "end": 218, "annotation": null}, {"text": "a", "start": 219, "end": 220, "annotation": null}, {"text": "similar", "start": 221, "end": 228, "annotation": null}, {"text": "photocurrent", "start": 229, "end": 241, "annotation": null}, {"text": "onset", "start": 242, "end": 247, "annotation": null}, {"text": "potential", "start": 248, "end": 257, "annotation": null}, {"text": "to", "start": 258, "end": 260, "annotation": null}, {"text": "the", "start": 261, "end": 264, "annotation": null}, {"text": "lowest", "start": 265, "end": 271, "annotation": null}, {"text": "values", "start": 272, "end": 278, "annotation": null}, {"text": "obtained", "start": 279, "end": 287, "annotation": null}, {"text": "by", "start": 288, "end": 290, "annotation": null}, {"text": "loading", "start": 291, "end": 298, "annotation": null}, {"text": "with", "start": 299, "end": 303, "annotation": null}, {"text": "electrocatalysts", "start": 304, "end": 320, "annotation": null}, {"text": "or", "start": 321, "end": 323, "annotation": null}, {"text": "depositing", "start": 324, "end": 334, "annotation": null}, {"text": "functional", "start": 335, "end": 345, "annotation": null}, {"text": "over-layers", "start": 346, "end": 357, "annotation": null}, {"text": ".", "start": 357, "end": 358, "annotation": null}], [{"text": "Moreover", "start": 359, "end": 367, "annotation": null}, {"text": ",", "start": 367, "end": 368, "annotation": null}, {"text": "the", "start": 369, "end": 372, "annotation": null}, {"text": "cathodic", "start": 373, "end": 381, "annotation": null}, {"text": "shift", "start": 382, "end": 387, "annotation": null}, {"text": "of", "start": 388, "end": 390, "annotation": null}, {"text": "the", "start": 391, "end": 394, "annotation": null}, {"text": "onset", "start": 395, "end": 400, "annotation": null}, {"text": "potential", "start": 401, "end": 410, "annotation": null}, {"text": "was", "start": 411, "end": 414, "annotation": null}, {"text": "preserved", "start": 415, "end": 424, "annotation": null}, {"text": "well", "start": 425, "end": 429, "annotation": null}, {"text": "even", "start": 430, "end": 434, "annotation": null}, {"text": "after", "start": 435, "end": 440, "annotation": null}, {"text": "a", "start": 441, "end": 442, "annotation": null}, {"text": "long", "start": 443, "end": 447, "annotation": null}, {"text": "operating", "start": 448, "end": 457, "annotation": null}, {"text": "time", "start": 458, "end": 462, "annotation": null}, {"text": ".", "start": 462, "end": 463, "annotation": null}], [{"text": "The", "start": 464, "end": 467, "annotation": null}, {"text": "results", "start": 468, "end": 475, "annotation": null}, {"text": "indicated", "start": 476, "end": 485, "annotation": null}, {"text": "the", "start": 486, "end": 489, "annotation": null}, {"text": "effectiveness", "start": 490, "end": 503, "annotation": null}, {"text": "of", "start": 504, "end": 506, "annotation": null}, {"text": "this", "start": 507, "end": 511, "annotation": null}, {"text": "simple", "start": 512, "end": 518, "annotation": null}, {"text": "surface", "start": 519, "end": 526, "annotation": null}, {"text": "treatment", "start": 527, "end": 536, "annotation": null}, {"text": ".", "start": 536, "end": 537, "annotation": null}], [{"text": "In", "start": 538, "end": 540, "annotation": null}, {"text": "order", "start": 541, "end": 546, "annotation": null}, {"text": "to", "start": 547, "end": 549, "annotation": null}, {"text": "make", "start": 550, "end": 554, "annotation": null}, {"text": "clear", "start": 555, "end": 560, "annotation": null}, {"text": "the", "start": 561, "end": 564, "annotation": null}, {"text": "reason", "start": 565, "end": 571, "annotation": null}, {"text": "for", "start": 572, "end": 575, "annotation": null}, {"text": "the", "start": 576, "end": 579, "annotation": null}, {"text": "onset", "start": 580, "end": 585, "annotation": null}, {"text": "potential", "start": 586, "end": 595, "annotation": null}, {"text": "shift", "start": 596, "end": 601, "annotation": null}, {"text": ",", "start": 601, "end": 602, "annotation": null}, {"text": "the", "start": 603, "end": 606, "annotation": null}, {"text": "doped", "start": 607, "end": 612, "annotation": null}, {"text": "hematite", "start": 613, "end": 621, "annotation": "BASEMAT"}, {"text": "samples", "start": 622, "end": 629, "annotation": "BASEMAT"}, {"text": "before", "start": 630, "end": 636, "annotation": null}, {"text": "and", "start": 637, "end": 640, "annotation": null}, {"text": "after", "start": 641, "end": 646, "annotation": null}, {"text": "surface", "start": 647, "end": 654, "annotation": null}, {"text": "corrosion", "start": 655, "end": 664, "annotation": null}, {"text": "were", "start": 665, "end": 669, "annotation": null}, {"text": "investigated", "start": 670, "end": 682, "annotation": null}, {"text": "by", "start": 683, "end": 685, "annotation": null}, {"text": "SEM", "start": 686, "end": 689, "annotation": null}, {"text": ",", "start": 689, "end": 690, "annotation": null}, {"text": "X-ray", "start": 691, "end": 696, "annotation": null}, {"text": "photoelectron", "start": 697, "end": 710, "annotation": null}, {"text": "spectroscopy", "start": 711, "end": 723, "annotation": null}, {"text": "(", "start": 724, "end": 725, "annotation": null}, {"text": "XPS", "start": 725, "end": 728, "annotation": null}, {"text": ")", "start": 728, "end": 729, "annotation": null}, {"text": ",", "start": 729, "end": 730, "annotation": null}, {"text": "inductively", "start": 731, "end": 742, "annotation": null}, {"text": "coupled", "start": 743, "end": 750, "annotation": null}, {"text": "plasma", "start": 751, "end": 757, "annotation": null}, {"text": "mass", "start": 758, "end": 762, "annotation": null}, {"text": "spectrometry", "start": 763, "end": 775, "annotation": null}, {"text": "(", "start": 776, "end": 777, "annotation": null}, {"text": "ICP-MS", "start": 777, "end": 783, "annotation": null}, {"text": ")", "start": 783, "end": 784, "annotation": null}, {"text": ",", "start": 784, "end": 785, "annotation": null}, {"text": "photoluminescence", "start": 786, "end": 803, "annotation": null}, {"text": "spectroscopy", "start": 804, "end": 816, "annotation": null}, {"text": "(", "start": 817, "end": 818, "annotation": null}, {"text": "PL", "start": 818, "end": 820, "annotation": null}, {"text": ")", "start": 820, "end": 821, "annotation": null}, {"text": ",", "start": 821, "end": 822, "annotation": null}, {"text": "electrochemical", "start": 823, "end": 838, "annotation": null}, {"text": "impedance", "start": 839, "end": 848, "annotation": null}, {"text": "spectroscopy", "start": 849, "end": 861, "annotation": null}, {"text": "(", "start": 862, "end": 863, "annotation": null}, {"text": "EIS", "start": 863, "end": 866, "annotation": null}, {"text": ")", "start": 866, "end": 867, "annotation": null}, {"text": ",", "start": 867, "end": 868, "annotation": null}, {"text": "Mott", "start": 869, "end": 873, "annotation": null}, {"text": "\u2013", "start": 873, "end": 874, "annotation": null}, {"text": "Schottky", "start": 874, "end": 882, "annotation": null}, {"text": "and", "start": 883, "end": 886, "annotation": null}, {"text": "so", "start": 887, "end": 889, "annotation": null}, {"text": "on", "start": 890, "end": 892, "annotation": null}, {"text": ".", "start": 892, "end": 893, "annotation": null}], [{"text": "Based", "start": 894, "end": 899, "annotation": null}, {"text": "on", "start": 900, "end": 902, "annotation": null}, {"text": "the", "start": 903, "end": 906, "annotation": null}, {"text": "experimental", "start": 907, "end": 919, "annotation": null}, {"text": "evidence", "start": 920, "end": 928, "annotation": null}, {"text": ",", "start": 928, "end": 929, "annotation": null}, {"text": "we", "start": 930, "end": 932, "annotation": null}, {"text": "proposed", "start": 933, "end": 941, "annotation": null}, {"text": "a", "start": 942, "end": 943, "annotation": null}, {"text": "new", "start": 944, "end": 947, "annotation": null}, {"text": "mechanism", "start": 948, "end": 957, "annotation": null}, {"text": "for", "start": 958, "end": 961, "annotation": null}, {"text": "the", "start": 962, "end": 965, "annotation": null}, {"text": "onset", "start": 966, "end": 971, "annotation": null}, {"text": "potential", "start": 972, "end": 981, "annotation": null}, {"text": "shift", "start": 982, "end": 987, "annotation": null}, {"text": ".", "start": 987, "end": 988, "annotation": null}], [{"text": "The", "start": 989, "end": 992, "annotation": null}, {"text": "cathodic", "start": 993, "end": 1001, "annotation": null}, {"text": "shift", "start": 1002, "end": 1007, "annotation": null}, {"text": "of", "start": 1008, "end": 1010, "annotation": null}, {"text": "the", "start": 1011, "end": 1014, "annotation": null}, {"text": "onset", "start": 1015, "end": 1020, "annotation": null}, {"text": "potential", "start": 1021, "end": 1030, "annotation": null}, {"text": "was", "start": 1031, "end": 1034, "annotation": null}, {"text": "due", "start": 1035, "end": 1038, "annotation": null}, {"text": "to", "start": 1039, "end": 1041, "annotation": null}, {"text": "decreasing", "start": 1042, "end": 1052, "annotation": null}, {"text": "the", "start": 1053, "end": 1056, "annotation": null}, {"text": "back", "start": 1057, "end": 1061, "annotation": null}, {"text": "reaction", "start": 1062, "end": 1070, "annotation": null}, {"text": ",", "start": 1070, "end": 1071, "annotation": null}, {"text": "but", "start": 1072, "end": 1075, "annotation": null}, {"text": "not", "start": 1076, "end": 1079, "annotation": null}, {"text": "accelerating", "start": 1080, "end": 1092, "annotation": null}, {"text": "water", "start": 1093, "end": 1098, "annotation": null}, {"text": "oxidation", "start": 1099, "end": 1108, "annotation": null}, {"text": "kinetics", "start": 1109, "end": 1117, "annotation": null}, {"text": ",", "start": 1117, "end": 1118, "annotation": null}, {"text": "passivating", "start": 1119, "end": 1130, "annotation": null}, {"text": "surface", "start": 1131, "end": 1138, "annotation": null}, {"text": "states", "start": 1139, "end": 1145, "annotation": null}, {"text": "or", "start": 1146, "end": 1148, "annotation": null}, {"text": "ions", "start": 1149, "end": 1153, "annotation": null}, {"text": "adsorption", "start": 1154, "end": 1164, "annotation": null}, {"text": "as", "start": 1165, "end": 1167, "annotation": null}, {"text": "reported", "start": 1168, "end": 1176, "annotation": null}, {"text": "in", "start": 1177, "end": 1179, "annotation": null}, {"text": "the", "start": 1180, "end": 1183, "annotation": null}, {"text": "previous", "start": 1184, "end": 1192, "annotation": null}, {"text": "studies", "start": 1193, "end": 1200, "annotation": null}, {"text": ".", "start": 1200, "end": 1201, "annotation": null}], [{"text": "This", "start": 1202, "end": 1206, "annotation": null}, {"text": "strategy", "start": 1207, "end": 1215, "annotation": null}, {"text": "of", "start": 1216, "end": 1218, "annotation": null}, {"text": "suppressing", "start": 1219, "end": 1230, "annotation": null}, {"text": "the", "start": 1231, "end": 1234, "annotation": null}, {"text": "back", "start": 1235, "end": 1239, "annotation": null}, {"text": "reaction", "start": 1240, "end": 1248, "annotation": null}, {"text": "can", "start": 1249, "end": 1252, "annotation": null}, {"text": "offer", "start": 1253, "end": 1258, "annotation": null}, {"text": "a", "start": 1259, "end": 1260, "annotation": null}, {"text": "reference", "start": 1261, "end": 1270, "annotation": null}, {"text": "to", "start": 1271, "end": 1273, "annotation": null}, {"text": "reduce", "start": 1274, "end": 1280, "annotation": null}, {"text": "the", "start": 1281, "end": 1284, "annotation": null}, {"text": "overpotential", "start": 1285, "end": 1298, "annotation": null}, {"text": "for", "start": 1299, "end": 1302, "annotation": null}, {"text": "other", "start": 1303, "end": 1308, "annotation": null}, {"text": "photoelectrodes", "start": 1309, "end": 1324, "annotation": null}, {"text": ".", "start": 1324, "end": 1325, "annotation": null}]]} -{"remark": "doping_annt1", "text": "We have performed the first synchrotron radiation X-ray absorption spectroscopy (EXAFS/XANES) study of the local atomic and electronic structure around Cu and W ions in WO3/Cu/WO3/Si and WO3/Cu/Si multilayered structures, aimed for the application in the electrochemical metallization cell memory. The influence of low-temperature annealing at 135\u00b0C has been investigated in details, and a structural model of Cu-doped WO3 films is proposed.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "have", "start": 3, "end": 7, "annotation": null}, {"text": "performed", "start": 8, "end": 17, "annotation": null}, {"text": "the", "start": 18, "end": 21, "annotation": null}, {"text": "first", "start": 22, "end": 27, "annotation": null}, {"text": "synchrotron", "start": 28, "end": 39, "annotation": null}, {"text": "radiation", "start": 40, "end": 49, "annotation": null}, {"text": "X-ray", "start": 50, "end": 55, "annotation": null}, {"text": "absorption", "start": 56, "end": 66, "annotation": null}, {"text": "spectroscopy", "start": 67, "end": 79, "annotation": null}, {"text": "(", "start": 80, "end": 81, "annotation": null}, {"text": "EXAFS", "start": 81, "end": 86, "annotation": null}, {"text": "/", "start": 86, "end": 87, "annotation": null}, {"text": "XANES", "start": 87, "end": 92, "annotation": null}, {"text": ")", "start": 92, "end": 93, "annotation": null}, {"text": "study", "start": 94, "end": 99, "annotation": null}, {"text": "of", "start": 100, "end": 102, "annotation": null}, {"text": "the", "start": 103, "end": 106, "annotation": null}, {"text": "local", "start": 107, "end": 112, "annotation": null}, {"text": "atomic", "start": 113, "end": 119, "annotation": null}, {"text": "and", "start": 120, "end": 123, "annotation": null}, {"text": "electronic", "start": 124, "end": 134, "annotation": null}, {"text": "structure", "start": 135, "end": 144, "annotation": null}, {"text": "around", "start": 145, "end": 151, "annotation": null}, {"text": "Cu", "start": 152, "end": 154, "annotation": "DOPANT"}, {"text": "and", "start": 155, "end": 158, "annotation": null}, {"text": "W", "start": 159, "end": 160, "annotation": "DOPANT"}, {"text": "ions", "start": 161, "end": 165, "annotation": null}, {"text": "in", "start": 166, "end": 168, "annotation": null}, {"text": "WO3", "start": 169, "end": 172, "annotation": "BASEMAT"}, {"text": "/", "start": 172, "end": 173, "annotation": "BASEMAT"}, {"text": "Cu", "start": 173, "end": 175, "annotation": "BASEMAT"}, {"text": "/", "start": 175, "end": 176, "annotation": "BASEMAT"}, {"text": "WO3", "start": 176, "end": 179, "annotation": "BASEMAT"}, {"text": "/", "start": 179, "end": 180, "annotation": "BASEMAT"}, {"text": "Si", "start": 180, "end": 182, "annotation": "BASEMAT"}, {"text": "and", "start": 183, "end": 186, "annotation": null}, {"text": "WO3", "start": 187, "end": 190, "annotation": "BASEMAT"}, {"text": "/", "start": 190, "end": 191, "annotation": "BASEMAT"}, {"text": "Cu", "start": 191, "end": 193, "annotation": "BASEMAT"}, {"text": "/", "start": 193, "end": 194, "annotation": "BASEMAT"}, {"text": "Si", "start": 194, "end": 196, "annotation": "BASEMAT"}, {"text": "multilayered", "start": 197, "end": 209, "annotation": null}, {"text": "structures", "start": 210, "end": 220, "annotation": null}, {"text": ",", "start": 220, "end": 221, "annotation": null}, {"text": "aimed", "start": 222, "end": 227, "annotation": null}, {"text": "for", "start": 228, "end": 231, "annotation": null}, {"text": "the", "start": 232, "end": 235, "annotation": null}, {"text": "application", "start": 236, "end": 247, "annotation": null}, {"text": "in", "start": 248, "end": 250, "annotation": null}, {"text": "the", "start": 251, "end": 254, "annotation": null}, {"text": "electrochemical", "start": 255, "end": 270, "annotation": null}, {"text": "metallization", "start": 271, "end": 284, "annotation": null}, {"text": "cell", "start": 285, "end": 289, "annotation": null}, {"text": "memory", "start": 290, "end": 296, "annotation": null}, {"text": ".", "start": 296, "end": 297, "annotation": null}], [{"text": "The", "start": 298, "end": 301, "annotation": null}, {"text": "influence", "start": 302, "end": 311, "annotation": null}, {"text": "of", "start": 312, "end": 314, "annotation": null}, {"text": "low", "start": 315, "end": 318, "annotation": null}, {"text": "-", "start": 318, "end": 319, "annotation": null}, {"text": "temperature", "start": 319, "end": 330, "annotation": null}, {"text": "annealing", "start": 331, "end": 340, "annotation": null}, {"text": "at", "start": 341, "end": 343, "annotation": null}, {"text": "135", "start": 344, "end": 347, "annotation": null}, {"text": "\u00b0", "start": 347, "end": 348, "annotation": null}, {"text": "C", "start": 348, "end": 349, "annotation": null}, {"text": "has", "start": 350, "end": 353, "annotation": null}, {"text": "been", "start": 354, "end": 358, "annotation": null}, {"text": "investigated", "start": 359, "end": 371, "annotation": null}, {"text": "in", "start": 372, "end": 374, "annotation": null}, {"text": "details", "start": 375, "end": 382, "annotation": null}, {"text": ",", "start": 382, "end": 383, "annotation": null}, {"text": "and", "start": 384, "end": 387, "annotation": null}, {"text": "a", "start": 388, "end": 389, "annotation": null}, {"text": "structural", "start": 390, "end": 400, "annotation": null}, {"text": "model", "start": 401, "end": 406, "annotation": null}, {"text": "of", "start": 407, "end": 409, "annotation": null}, {"text": "Cu", "start": 410, "end": 412, "annotation": "DOPANT"}, {"text": "-", "start": 412, "end": 413, "annotation": null}, {"text": "doped", "start": 413, "end": 418, "annotation": null}, {"text": "WO3", "start": 419, "end": 422, "annotation": "BASEMAT"}, {"text": "films", "start": 423, "end": 428, "annotation": null}, {"text": "is", "start": 429, "end": 431, "annotation": null}, {"text": "proposed", "start": 432, "end": 440, "annotation": null}, {"text": ".", "start": 440, "end": 441, "annotation": null}]]} -{"remark": "doping_annt2", "text": "A dye-doped cholesteric liquid crystal (LC) cell with the focal-conic initial state is demonstrated. Although dye-doped LC/polymer composites have been widely used for LC light shutters, dye-doped LC cells with polymer structures suffer from the degradation of dichroic dyes during the UV curing process. To avoid this problem, we propose a dye-doped cholesteric LC cell using vertical alignment layers instead of polymer structures. We have shown that the focal-conic initial state can be obtained by homeotropic anchoring without the polymer structure. The proposed device not only provides the black color but can also hide objects behind a display panel in the focal-conic initial state without the degradation of dichroic dyes.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "dye", "start": 2, "end": 5, "annotation": "DOPANT"}, {"text": "-", "start": 5, "end": 6, "annotation": null}, {"text": "doped", "start": 6, "end": 11, "annotation": null}, {"text": "cholesteric", "start": 12, "end": 23, "annotation": "BASEMAT"}, {"text": "liquid", "start": 24, "end": 30, "annotation": "BASEMAT"}, {"text": "crystal", "start": 31, "end": 38, "annotation": "BASEMAT"}, {"text": "(", "start": 39, "end": 40, "annotation": null}, {"text": "LC", "start": 40, "end": 42, "annotation": "BASEMAT"}, {"text": ")", "start": 42, "end": 43, "annotation": null}, {"text": "cell", "start": 44, "end": 48, "annotation": null}, {"text": "with", "start": 49, "end": 53, "annotation": null}, {"text": "the", "start": 54, "end": 57, "annotation": null}, {"text": "focal", "start": 58, "end": 63, "annotation": null}, {"text": "-", "start": 63, "end": 64, "annotation": null}, {"text": "conic", "start": 64, "end": 69, "annotation": null}, {"text": "initial", "start": 70, "end": 77, "annotation": null}, {"text": "state", "start": 78, "end": 83, "annotation": null}, {"text": "is", "start": 84, "end": 86, "annotation": null}, {"text": "demonstrated", "start": 87, "end": 99, "annotation": null}, {"text": ".", "start": 99, "end": 100, "annotation": null}], [{"text": "Although", "start": 101, "end": 109, "annotation": null}, {"text": "dye", "start": 110, "end": 113, "annotation": "DOPANT"}, {"text": "-", "start": 113, "end": 114, "annotation": null}, {"text": "doped", "start": 114, "end": 119, "annotation": null}, {"text": "LC", "start": 120, "end": 122, "annotation": "BASEMAT"}, {"text": "/", "start": 122, "end": 123, "annotation": "BASEMAT"}, {"text": "polymer", "start": 123, "end": 130, "annotation": "BASEMAT"}, {"text": "composites", "start": 131, "end": 141, "annotation": null}, {"text": "have", "start": 142, "end": 146, "annotation": null}, {"text": "been", "start": 147, "end": 151, "annotation": null}, {"text": "widely", "start": 152, "end": 158, "annotation": null}, {"text": "used", "start": 159, "end": 163, "annotation": null}, {"text": "for", "start": 164, "end": 167, "annotation": null}, {"text": "LC", "start": 168, "end": 170, "annotation": "BASEMAT"}, {"text": "light", "start": 171, "end": 176, "annotation": null}, {"text": "shutters", "start": 177, "end": 185, "annotation": null}, {"text": ",", "start": 185, "end": 186, "annotation": null}, {"text": "dye", "start": 187, "end": 190, "annotation": "DOPANT"}, {"text": "-", "start": 190, "end": 191, "annotation": null}, {"text": "doped", "start": 191, "end": 196, "annotation": null}, {"text": "LC", "start": 197, "end": 199, "annotation": "BASEMAT"}, {"text": "cells", "start": 200, "end": 205, "annotation": null}, {"text": "with", "start": 206, "end": 210, "annotation": null}, {"text": "polymer", "start": 211, "end": 218, "annotation": null}, {"text": "structures", "start": 219, "end": 229, "annotation": null}, {"text": "suffer", "start": 230, "end": 236, "annotation": null}, {"text": "from", "start": 237, "end": 241, "annotation": null}, {"text": "the", "start": 242, "end": 245, "annotation": null}, {"text": "degradation", "start": 246, "end": 257, "annotation": null}, {"text": "of", "start": 258, "end": 260, "annotation": null}, {"text": "dichroic", "start": 261, "end": 269, "annotation": null}, {"text": "dyes", "start": 270, "end": 274, "annotation": null}, {"text": "during", "start": 275, "end": 281, "annotation": null}, {"text": "the", "start": 282, "end": 285, "annotation": null}, {"text": "UV", "start": 286, "end": 288, "annotation": null}, {"text": "curing", "start": 289, "end": 295, "annotation": null}, {"text": "process", "start": 296, "end": 303, "annotation": null}, {"text": ".", "start": 303, "end": 304, "annotation": null}], [{"text": "To", "start": 305, "end": 307, "annotation": null}, {"text": "avoid", "start": 308, "end": 313, "annotation": null}, {"text": "this", "start": 314, "end": 318, "annotation": null}, {"text": "problem", "start": 319, "end": 326, "annotation": null}, {"text": ",", "start": 326, "end": 327, "annotation": null}, {"text": "we", "start": 328, "end": 330, "annotation": null}, {"text": "propose", "start": 331, "end": 338, "annotation": null}, {"text": "a", "start": 339, "end": 340, "annotation": null}, {"text": "dye", "start": 341, "end": 344, "annotation": "DOPANT"}, {"text": "-", "start": 344, "end": 345, "annotation": null}, {"text": "doped", "start": 345, "end": 350, "annotation": null}, {"text": "cholesteric", "start": 351, "end": 362, "annotation": "BASEMAT"}, {"text": "LC", "start": 363, "end": 365, "annotation": "BASEMAT"}, {"text": "cell", "start": 366, "end": 370, "annotation": null}, {"text": "using", "start": 371, "end": 376, "annotation": null}, {"text": "vertical", "start": 377, "end": 385, "annotation": null}, {"text": "alignment", "start": 386, "end": 395, "annotation": null}, {"text": "layers", "start": 396, "end": 402, "annotation": null}, {"text": "instead", "start": 403, "end": 410, "annotation": null}, {"text": "of", "start": 411, "end": 413, "annotation": null}, {"text": "polymer", "start": 414, "end": 421, "annotation": null}, {"text": "structures", "start": 422, "end": 432, "annotation": null}, {"text": ".", "start": 432, "end": 433, "annotation": null}], [{"text": "We", "start": 434, "end": 436, "annotation": null}, {"text": "have", "start": 437, "end": 441, "annotation": null}, {"text": "shown", "start": 442, "end": 447, "annotation": null}, {"text": "that", "start": 448, "end": 452, "annotation": null}, {"text": "the", "start": 453, "end": 456, "annotation": null}, {"text": "focal", "start": 457, "end": 462, "annotation": null}, {"text": "-", "start": 462, "end": 463, "annotation": null}, {"text": "conic", "start": 463, "end": 468, "annotation": null}, {"text": "initial", "start": 469, "end": 476, "annotation": null}, {"text": "state", "start": 477, "end": 482, "annotation": null}, {"text": "can", "start": 483, "end": 486, "annotation": null}, {"text": "be", "start": 487, "end": 489, "annotation": null}, {"text": "obtained", "start": 490, "end": 498, "annotation": null}, {"text": "by", "start": 499, "end": 501, "annotation": null}, {"text": "homeotropic", "start": 502, "end": 513, "annotation": null}, {"text": "anchoring", "start": 514, "end": 523, "annotation": null}, {"text": "without", "start": 524, "end": 531, "annotation": null}, {"text": "the", "start": 532, "end": 535, "annotation": null}, {"text": "polymer", "start": 536, "end": 543, "annotation": null}, {"text": "structure", "start": 544, "end": 553, "annotation": null}, {"text": ".", "start": 553, "end": 554, "annotation": null}], [{"text": "The", "start": 555, "end": 558, "annotation": null}, {"text": "proposed", "start": 559, "end": 567, "annotation": null}, {"text": "device", "start": 568, "end": 574, "annotation": null}, {"text": "not", "start": 575, "end": 578, "annotation": null}, {"text": "only", "start": 579, "end": 583, "annotation": null}, {"text": "provides", "start": 584, "end": 592, "annotation": null}, {"text": "the", "start": 593, "end": 596, "annotation": null}, {"text": "black", "start": 597, "end": 602, "annotation": null}, {"text": "color", "start": 603, "end": 608, "annotation": null}, {"text": "but", "start": 609, "end": 612, "annotation": null}, {"text": "can", "start": 613, "end": 616, "annotation": null}, {"text": "also", "start": 617, "end": 621, "annotation": null}, {"text": "hide", "start": 622, "end": 626, "annotation": null}, {"text": "objects", "start": 627, "end": 634, "annotation": null}, {"text": "behind", "start": 635, "end": 641, "annotation": null}, {"text": "a", "start": 642, "end": 643, "annotation": null}, {"text": "display", "start": 644, "end": 651, "annotation": null}, {"text": "panel", "start": 652, "end": 657, "annotation": null}, {"text": "in", "start": 658, "end": 660, "annotation": null}, {"text": "the", "start": 661, "end": 664, "annotation": null}, {"text": "focal", "start": 665, "end": 670, "annotation": null}, {"text": "-", "start": 670, "end": 671, "annotation": null}, {"text": "conic", "start": 671, "end": 676, "annotation": null}, {"text": "initial", "start": 677, "end": 684, "annotation": null}, {"text": "state", "start": 685, "end": 690, "annotation": null}, {"text": "without", "start": 691, "end": 698, "annotation": null}, {"text": "the", "start": 699, "end": 702, "annotation": null}, {"text": "degradation", "start": 703, "end": 714, "annotation": null}, {"text": "of", "start": 715, "end": 717, "annotation": null}, {"text": "dichroic", "start": 718, "end": 726, "annotation": null}, {"text": "dyes", "start": 727, "end": 731, "annotation": null}, {"text": ".", "start": 731, "end": 732, "annotation": null}]]} -{"remark": "doping_annt1", "text": "We performed electrical and optical measurements on as-grown ZnO which exhibits n-type conductivity. So far, neither the origin of the residual conductivity nor the electrical properties of the responsible defects is fully understood. We investigated shallow and deep donors in ZnO materials grown with pulsed laser injection using admittance spectroscopy. We identifed shallow donors with ionization energies as low as 15meV which may be attributed to native defects. Annealing in nitrogen ambient enhances the conductivity by further lowering the ionization energy of the shallow donors. Using optically excited admittance spectroscopy we also found deep defects. They are strongly metastable and account for a significant part of the persistent photoconductivity in our ZnO materials.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "performed", "start": 3, "end": 12, "annotation": null}, {"text": "electrical", "start": 13, "end": 23, "annotation": null}, {"text": "and", "start": 24, "end": 27, "annotation": null}, {"text": "optical", "start": 28, "end": 35, "annotation": null}, {"text": "measurements", "start": 36, "end": 48, "annotation": null}, {"text": "on", "start": 49, "end": 51, "annotation": null}, {"text": "as-grown", "start": 52, "end": 60, "annotation": null}, {"text": "ZnO", "start": 61, "end": 64, "annotation": "BASEMAT"}, {"text": "which", "start": 65, "end": 70, "annotation": null}, {"text": "exhibits", "start": 71, "end": 79, "annotation": null}, {"text": "n", "start": 80, "end": 81, "annotation": "DOPANT"}, {"text": "-", "start": 81, "end": 82, "annotation": "DOPANT"}, {"text": "type", "start": 82, "end": 86, "annotation": "DOPANT"}, {"text": "conductivity", "start": 87, "end": 99, "annotation": null}, {"text": ".", "start": 99, "end": 100, "annotation": null}], [{"text": "So", "start": 101, "end": 103, "annotation": null}, {"text": "far", "start": 104, "end": 107, "annotation": null}, {"text": ",", "start": 107, "end": 108, "annotation": null}, {"text": "neither", "start": 109, "end": 116, "annotation": null}, {"text": "the", "start": 117, "end": 120, "annotation": null}, {"text": "origin", "start": 121, "end": 127, "annotation": null}, {"text": "of", "start": 128, "end": 130, "annotation": null}, {"text": "the", "start": 131, "end": 134, "annotation": null}, {"text": "residual", "start": 135, "end": 143, "annotation": null}, {"text": "conductivity", "start": 144, "end": 156, "annotation": null}, {"text": "nor", "start": 157, "end": 160, "annotation": null}, {"text": "the", "start": 161, "end": 164, "annotation": null}, {"text": "electrical", "start": 165, "end": 175, "annotation": null}, {"text": "properties", "start": 176, "end": 186, "annotation": null}, {"text": "of", "start": 187, "end": 189, "annotation": null}, {"text": "the", "start": 190, "end": 193, "annotation": null}, {"text": "responsible", "start": 194, "end": 205, "annotation": null}, {"text": "defects", "start": 206, "end": 213, "annotation": null}, {"text": "is", "start": 214, "end": 216, "annotation": null}, {"text": "fully", "start": 217, "end": 222, "annotation": null}, {"text": "understood", "start": 223, "end": 233, "annotation": null}, {"text": ".", "start": 233, "end": 234, "annotation": null}], [{"text": "We", "start": 235, "end": 237, "annotation": null}, {"text": "investigated", "start": 238, "end": 250, "annotation": null}, {"text": "shallow", "start": 251, "end": 258, "annotation": null}, {"text": "and", "start": 259, "end": 262, "annotation": null}, {"text": "deep", "start": 263, "end": 267, "annotation": null}, {"text": "donors", "start": 268, "end": 274, "annotation": "DOPANT"}, {"text": "in", "start": 275, "end": 277, "annotation": null}, {"text": "ZnO", "start": 278, "end": 281, "annotation": "BASEMAT"}, {"text": "materials", "start": 282, "end": 291, "annotation": null}, {"text": "grown", "start": 292, "end": 297, "annotation": null}, {"text": "with", "start": 298, "end": 302, "annotation": null}, {"text": "pulsed", "start": 303, "end": 309, "annotation": null}, {"text": "laser", "start": 310, "end": 315, "annotation": null}, {"text": "injection", "start": 316, "end": 325, "annotation": null}, {"text": "using", "start": 326, "end": 331, "annotation": null}, {"text": "admittance", "start": 332, "end": 342, "annotation": null}, {"text": "spectroscopy", "start": 343, "end": 355, "annotation": null}, {"text": ".", "start": 355, "end": 356, "annotation": null}], [{"text": "We", "start": 357, "end": 359, "annotation": null}, {"text": "identifed", "start": 360, "end": 369, "annotation": null}, {"text": "shallow", "start": 370, "end": 377, "annotation": null}, {"text": "donors", "start": 378, "end": 384, "annotation": null}, {"text": "with", "start": 385, "end": 389, "annotation": null}, {"text": "ionization", "start": 390, "end": 400, "annotation": null}, {"text": "energies", "start": 401, "end": 409, "annotation": null}, {"text": "as", "start": 410, "end": 412, "annotation": null}, {"text": "low", "start": 413, "end": 416, "annotation": null}, {"text": "as", "start": 417, "end": 419, "annotation": null}, {"text": "15meV", "start": 420, "end": 425, "annotation": null}, {"text": "which", "start": 426, "end": 431, "annotation": null}, {"text": "may", "start": 432, "end": 435, "annotation": null}, {"text": "be", "start": 436, "end": 438, "annotation": null}, {"text": "attributed", "start": 439, "end": 449, "annotation": null}, {"text": "to", "start": 450, "end": 452, "annotation": null}, {"text": "native", "start": 453, "end": 459, "annotation": null}, {"text": "defects", "start": 460, "end": 467, "annotation": null}, {"text": ".", "start": 467, "end": 468, "annotation": null}], [{"text": "Annealing", "start": 469, "end": 478, "annotation": null}, {"text": "in", "start": 479, "end": 481, "annotation": null}, {"text": "nitrogen", "start": 482, "end": 490, "annotation": null}, {"text": "ambient", "start": 491, "end": 498, "annotation": null}, {"text": "enhances", "start": 499, "end": 507, "annotation": null}, {"text": "the", "start": 508, "end": 511, "annotation": null}, {"text": "conductivity", "start": 512, "end": 524, "annotation": null}, {"text": "by", "start": 525, "end": 527, "annotation": null}, {"text": "further", "start": 528, "end": 535, "annotation": null}, {"text": "lowering", "start": 536, "end": 544, "annotation": null}, {"text": "the", "start": 545, "end": 548, "annotation": null}, {"text": "ionization", "start": 549, "end": 559, "annotation": null}, {"text": "energy", "start": 560, "end": 566, "annotation": null}, {"text": "of", "start": 567, "end": 569, "annotation": null}, {"text": "the", "start": 570, "end": 573, "annotation": null}, {"text": "shallow", "start": 574, "end": 581, "annotation": null}, {"text": "donors", "start": 582, "end": 588, "annotation": null}, {"text": ".", "start": 588, "end": 589, "annotation": null}], [{"text": "Using", "start": 590, "end": 595, "annotation": null}, {"text": "optically", "start": 596, "end": 605, "annotation": null}, {"text": "excited", "start": 606, "end": 613, "annotation": null}, {"text": "admittance", "start": 614, "end": 624, "annotation": null}, {"text": "spectroscopy", "start": 625, "end": 637, "annotation": null}, {"text": "we", "start": 638, "end": 640, "annotation": null}, {"text": "also", "start": 641, "end": 645, "annotation": null}, {"text": "found", "start": 646, "end": 651, "annotation": null}, {"text": "deep", "start": 652, "end": 656, "annotation": null}, {"text": "defects", "start": 657, "end": 664, "annotation": null}, {"text": ".", "start": 664, "end": 665, "annotation": null}], [{"text": "They", "start": 666, "end": 670, "annotation": null}, {"text": "are", "start": 671, "end": 674, "annotation": null}, {"text": "strongly", "start": 675, "end": 683, "annotation": null}, {"text": "metastable", "start": 684, "end": 694, "annotation": null}, {"text": "and", "start": 695, "end": 698, "annotation": null}, {"text": "account", "start": 699, "end": 706, "annotation": null}, {"text": "for", "start": 707, "end": 710, "annotation": null}, {"text": "a", "start": 711, "end": 712, "annotation": null}, {"text": "significant", "start": 713, "end": 724, "annotation": null}, {"text": "part", "start": 725, "end": 729, "annotation": null}, {"text": "of", "start": 730, "end": 732, "annotation": null}, {"text": "the", "start": 733, "end": 736, "annotation": null}, {"text": "persistent", "start": 737, "end": 747, "annotation": null}, {"text": "photoconductivity", "start": 748, "end": 765, "annotation": null}, {"text": "in", "start": 766, "end": 768, "annotation": null}, {"text": "our", "start": 769, "end": 772, "annotation": null}, {"text": "ZnO", "start": 773, "end": 776, "annotation": null}, {"text": "materials", "start": 777, "end": 786, "annotation": null}, {"text": ".", "start": 786, "end": 787, "annotation": null}]]} -{"remark": "doping_annt2", "text": "Thin films of intrinsic and Cd-doped ZnO with different cadmium concentrations were prepared by colloidal route technique associated with dip-coating onto glass substrates. Zinc acetate dehydrate, Cadmium acetate, methanol and ethanolamine were used as a starting materials, solvent and stabilizer, respectively. Nanostructured ZnO thin films with different concentrations of Cd doping (0, 2 and 10wt%) are annealed at 500\u00b0C for 2h. The films were characterized by different methods to understand their structural, optical and electrical properties such as the film surface is with a ganglia-like structure as observed by Environmental Scanning Electron Microscopy (ESEM). The films were characterized by grazing incidence X-ray diffraction, its comprise of ZnO nanocrystallites with hexagonal crystal structure with a presence of CdO nanocrystallites with cubic crystal structure in 10% Cd-doped ZnO film (ZnO/CdO nanocomposite), as revealed by means of X-ray diffraction (XRD), the Raman and the Rutherford backscattering spectrometry (RBS) confirmed that. All films exhibit a transmittance above 75\u201390% along the visible range up to 800nm and a sharp absorption onset about 375nm corresponding to the fundamental absorption edge 3.2eV (UV\u2013vis). Photoluminescence of the films showed an ultraviolet UV and visible emissions like violet, blue and green related to defects.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Thin", "start": 0, "end": 4, "annotation": null}, {"text": "films", "start": 5, "end": 10, "annotation": null}, {"text": "of", "start": 11, "end": 13, "annotation": null}, {"text": "intrinsic", "start": 14, "end": 23, "annotation": null}, {"text": "and", "start": 24, "end": 27, "annotation": null}, {"text": "Cd", "start": 28, "end": 30, "annotation": "DOPANT"}, {"text": "-", "start": 30, "end": 31, "annotation": null}, {"text": "doped", "start": 31, "end": 36, "annotation": null}, {"text": "ZnO", "start": 37, "end": 40, "annotation": "BASEMAT"}, {"text": "with", "start": 41, "end": 45, "annotation": null}, {"text": "different", "start": 46, "end": 55, "annotation": null}, {"text": "cadmium", "start": 56, "end": 63, "annotation": "DOPANT"}, {"text": "concentrations", "start": 64, "end": 78, "annotation": null}, {"text": "were", "start": 79, "end": 83, "annotation": null}, {"text": "prepared", "start": 84, "end": 92, "annotation": null}, {"text": "by", "start": 93, "end": 95, "annotation": null}, {"text": "colloidal", "start": 96, "end": 105, "annotation": null}, {"text": "route", "start": 106, "end": 111, "annotation": null}, {"text": "technique", "start": 112, "end": 121, "annotation": null}, {"text": "associated", "start": 122, "end": 132, "annotation": null}, {"text": "with", "start": 133, "end": 137, "annotation": null}, {"text": "dip", "start": 138, "end": 141, "annotation": null}, {"text": "-", "start": 141, "end": 142, "annotation": null}, {"text": "coating", "start": 142, "end": 149, "annotation": null}, {"text": "onto", "start": 150, "end": 154, "annotation": null}, {"text": "glass", "start": 155, "end": 160, "annotation": null}, {"text": "substrates", "start": 161, "end": 171, "annotation": null}, {"text": ".", "start": 171, "end": 172, "annotation": null}], [{"text": "Zinc", "start": 173, "end": 177, "annotation": null}, {"text": "acetate", "start": 178, "end": 185, "annotation": null}, {"text": "dehydrate", "start": 186, "end": 195, "annotation": null}, {"text": ",", "start": 195, "end": 196, "annotation": null}, {"text": "Cadmium", "start": 197, "end": 204, "annotation": null}, {"text": "acetate", "start": 205, "end": 212, "annotation": null}, {"text": ",", "start": 212, "end": 213, "annotation": null}, {"text": "methanol", "start": 214, "end": 222, "annotation": null}, {"text": "and", "start": 223, "end": 226, "annotation": null}, {"text": "ethanolamine", "start": 227, "end": 239, "annotation": null}, {"text": "were", "start": 240, "end": 244, "annotation": null}, {"text": "used", "start": 245, "end": 249, "annotation": null}, {"text": "as", "start": 250, "end": 252, "annotation": null}, {"text": "a", "start": 253, "end": 254, "annotation": null}, {"text": "starting", "start": 255, "end": 263, "annotation": null}, {"text": "materials", "start": 264, "end": 273, "annotation": null}, {"text": ",", "start": 273, "end": 274, "annotation": null}, {"text": "solvent", "start": 275, "end": 282, "annotation": null}, {"text": "and", "start": 283, "end": 286, "annotation": null}, {"text": "stabilizer", "start": 287, "end": 297, "annotation": null}, {"text": ",", "start": 297, "end": 298, "annotation": null}, {"text": "respectively", "start": 299, "end": 311, "annotation": null}, {"text": ".", "start": 311, "end": 312, "annotation": null}], [{"text": "Nanostructured", "start": 313, "end": 327, "annotation": null}, {"text": "ZnO", "start": 328, "end": 331, "annotation": "BASEMAT"}, {"text": "thin", "start": 332, "end": 336, "annotation": null}, {"text": "films", "start": 337, "end": 342, "annotation": null}, {"text": "with", "start": 343, "end": 347, "annotation": null}, {"text": "different", "start": 348, "end": 357, "annotation": null}, {"text": "concentrations", "start": 358, "end": 372, "annotation": null}, {"text": "of", "start": 373, "end": 375, "annotation": null}, {"text": "Cd", "start": 376, "end": 378, "annotation": "DOPANT"}, {"text": "doping", "start": 379, "end": 385, "annotation": null}, {"text": "(", "start": 386, "end": 387, "annotation": null}, {"text": "0", "start": 387, "end": 388, "annotation": "DOPMODQ"}, {"text": ",", "start": 388, "end": 389, "annotation": null}, {"text": "2", "start": 390, "end": 391, "annotation": "DOPMODQ"}, {"text": "and", "start": 392, "end": 395, "annotation": null}, {"text": "10wt", "start": 396, "end": 400, "annotation": "DOPMODQ"}, {"text": "%", "start": 400, "end": 401, "annotation": "DOPMODQ"}, {"text": ")", "start": 401, "end": 402, "annotation": null}, {"text": "are", "start": 403, "end": 406, "annotation": null}, {"text": "annealed", "start": 407, "end": 415, "annotation": null}, {"text": "at", "start": 416, "end": 418, "annotation": null}, {"text": "500", "start": 419, "end": 422, "annotation": null}, {"text": "\u00b0", "start": 422, "end": 423, "annotation": null}, {"text": "C", "start": 423, "end": 424, "annotation": null}, {"text": "for", "start": 425, "end": 428, "annotation": null}, {"text": "2h", "start": 429, "end": 431, "annotation": null}, {"text": ".", "start": 431, "end": 432, "annotation": null}], [{"text": "The", "start": 433, "end": 436, "annotation": null}, {"text": "films", "start": 437, "end": 442, "annotation": null}, {"text": "were", "start": 443, "end": 447, "annotation": null}, {"text": "characterized", "start": 448, "end": 461, "annotation": null}, {"text": "by", "start": 462, "end": 464, "annotation": null}, {"text": "different", "start": 465, "end": 474, "annotation": null}, {"text": "methods", "start": 475, "end": 482, "annotation": null}, {"text": "to", "start": 483, "end": 485, "annotation": null}, {"text": "understand", "start": 486, "end": 496, "annotation": null}, {"text": "their", "start": 497, "end": 502, "annotation": null}, {"text": "structural", "start": 503, "end": 513, "annotation": null}, {"text": ",", "start": 513, "end": 514, "annotation": null}, {"text": "optical", "start": 515, "end": 522, "annotation": null}, {"text": "and", "start": 523, "end": 526, "annotation": null}, {"text": "electrical", "start": 527, "end": 537, "annotation": null}, {"text": "properties", "start": 538, "end": 548, "annotation": null}, {"text": "such", "start": 549, "end": 553, "annotation": null}, {"text": "as", "start": 554, "end": 556, "annotation": null}, {"text": "the", "start": 557, "end": 560, "annotation": null}, {"text": "film", "start": 561, "end": 565, "annotation": null}, {"text": "surface", "start": 566, "end": 573, "annotation": null}, {"text": "is", "start": 574, "end": 576, "annotation": null}, {"text": "with", "start": 577, "end": 581, "annotation": null}, {"text": "a", "start": 582, "end": 583, "annotation": null}, {"text": "ganglia", "start": 584, "end": 591, "annotation": null}, {"text": "-", "start": 591, "end": 592, "annotation": null}, {"text": "like", "start": 592, "end": 596, "annotation": null}, {"text": "structure", "start": 597, "end": 606, "annotation": null}, {"text": "as", "start": 607, "end": 609, "annotation": null}, {"text": "observed", "start": 610, "end": 618, "annotation": null}, {"text": "by", "start": 619, "end": 621, "annotation": null}, {"text": "Environmental", "start": 622, "end": 635, "annotation": null}, {"text": "Scanning", "start": 636, "end": 644, "annotation": null}, {"text": "Electron", "start": 645, "end": 653, "annotation": null}, {"text": "Microscopy", "start": 654, "end": 664, "annotation": null}, {"text": "(", "start": 665, "end": 666, "annotation": null}, {"text": "ESEM", "start": 666, "end": 670, "annotation": null}, {"text": ")", "start": 670, "end": 671, "annotation": null}, {"text": ".", "start": 671, "end": 672, "annotation": null}], [{"text": "The", "start": 673, "end": 676, "annotation": null}, {"text": "films", "start": 677, "end": 682, "annotation": null}, {"text": "were", "start": 683, "end": 687, "annotation": null}, {"text": "characterized", "start": 688, "end": 701, "annotation": null}, {"text": "by", "start": 702, "end": 704, "annotation": null}, {"text": "grazing", "start": 705, "end": 712, "annotation": null}, {"text": "incidence", "start": 713, "end": 722, "annotation": null}, {"text": "X-ray", "start": 723, "end": 728, "annotation": null}, {"text": "diffraction", "start": 729, "end": 740, "annotation": null}, {"text": ",", "start": 740, "end": 741, "annotation": null}, {"text": "its", "start": 742, "end": 745, "annotation": null}, {"text": "comprise", "start": 746, "end": 754, "annotation": null}, {"text": "of", "start": 755, "end": 757, "annotation": null}, {"text": "ZnO", "start": 758, "end": 761, "annotation": null}, {"text": "nanocrystallites", "start": 762, "end": 778, "annotation": null}, {"text": "with", "start": 779, "end": 783, "annotation": null}, {"text": "hexagonal", "start": 784, "end": 793, "annotation": null}, {"text": "crystal", "start": 794, "end": 801, "annotation": null}, {"text": "structure", "start": 802, "end": 811, "annotation": null}, {"text": "with", "start": 812, "end": 816, "annotation": null}, {"text": "a", "start": 817, "end": 818, "annotation": null}, {"text": "presence", "start": 819, "end": 827, "annotation": null}, {"text": "of", "start": 828, "end": 830, "annotation": null}, {"text": "CdO", "start": 831, "end": 834, "annotation": null}, {"text": "nanocrystallites", "start": 835, "end": 851, "annotation": null}, {"text": "with", "start": 852, "end": 856, "annotation": null}, {"text": "cubic", "start": 857, "end": 862, "annotation": null}, {"text": "crystal", "start": 863, "end": 870, "annotation": null}, {"text": "structure", "start": 871, "end": 880, "annotation": null}, {"text": "in", "start": 881, "end": 883, "annotation": null}, {"text": "10", "start": 884, "end": 886, "annotation": "DOPMODQ"}, {"text": "%", "start": 886, "end": 887, "annotation": "DOPMODQ"}, {"text": "Cd", "start": 888, "end": 890, "annotation": "DOPANT"}, {"text": "-", "start": 890, "end": 891, "annotation": null}, {"text": "doped", "start": 891, "end": 896, "annotation": null}, {"text": "ZnO", "start": 897, "end": 900, "annotation": "BASEMAT"}, {"text": "film", "start": 901, "end": 905, "annotation": null}, {"text": "(", "start": 906, "end": 907, "annotation": null}, {"text": "ZnO", "start": 907, "end": 910, "annotation": "BASEMAT"}, {"text": "/", "start": 910, "end": 911, "annotation": null}, {"text": "CdO", "start": 911, "end": 914, "annotation": "BASEMAT"}, {"text": "nanocomposite", "start": 915, "end": 928, "annotation": "BASEMAT"}, {"text": ")", "start": 928, "end": 929, "annotation": null}, {"text": ",", "start": 929, "end": 930, "annotation": null}, {"text": "as", "start": 931, "end": 933, "annotation": null}, {"text": "revealed", "start": 934, "end": 942, "annotation": null}, {"text": "by", "start": 943, "end": 945, "annotation": null}, {"text": "means", "start": 946, "end": 951, "annotation": null}, {"text": "of", "start": 952, "end": 954, "annotation": null}, {"text": "X-ray", "start": 955, "end": 960, "annotation": null}, {"text": "diffraction", "start": 961, "end": 972, "annotation": null}, {"text": "(", "start": 973, "end": 974, "annotation": null}, {"text": "XRD", "start": 974, "end": 977, "annotation": null}, {"text": ")", "start": 977, "end": 978, "annotation": null}, {"text": ",", "start": 978, "end": 979, "annotation": null}, {"text": "the", "start": 980, "end": 983, "annotation": null}, {"text": "Raman", "start": 984, "end": 989, "annotation": null}, {"text": "and", "start": 990, "end": 993, "annotation": null}, {"text": "the", "start": 994, "end": 997, "annotation": null}, {"text": "Rutherford", "start": 998, "end": 1008, "annotation": null}, {"text": "backscattering", "start": 1009, "end": 1023, "annotation": null}, {"text": "spectrometry", "start": 1024, "end": 1036, "annotation": null}, {"text": "(", "start": 1037, "end": 1038, "annotation": null}, {"text": "RBS", "start": 1038, "end": 1041, "annotation": null}, {"text": ")", "start": 1041, "end": 1042, "annotation": null}, {"text": "confirmed", "start": 1043, "end": 1052, "annotation": null}, {"text": "that", "start": 1053, "end": 1057, "annotation": null}, {"text": ".", "start": 1057, "end": 1058, "annotation": null}], [{"text": "All", "start": 1059, "end": 1062, "annotation": null}, {"text": "films", "start": 1063, "end": 1068, "annotation": null}, {"text": "exhibit", "start": 1069, "end": 1076, "annotation": null}, {"text": "a", "start": 1077, "end": 1078, "annotation": null}, {"text": "transmittance", "start": 1079, "end": 1092, "annotation": null}, {"text": "above", "start": 1093, "end": 1098, "annotation": null}, {"text": "75", "start": 1099, "end": 1101, "annotation": null}, {"text": "\u2013", "start": 1101, "end": 1102, "annotation": null}, {"text": "90", "start": 1102, "end": 1104, "annotation": null}, {"text": "%", "start": 1104, "end": 1105, "annotation": null}, {"text": "along", "start": 1106, "end": 1111, "annotation": null}, {"text": "the", "start": 1112, "end": 1115, "annotation": null}, {"text": "visible", "start": 1116, "end": 1123, "annotation": null}, {"text": "range", "start": 1124, "end": 1129, "annotation": null}, {"text": "up", "start": 1130, "end": 1132, "annotation": null}, {"text": "to", "start": 1133, "end": 1135, "annotation": null}, {"text": "800", "start": 1136, "end": 1139, "annotation": null}, {"text": "nm", "start": 1139, "end": 1141, "annotation": null}, {"text": "and", "start": 1142, "end": 1145, "annotation": null}, {"text": "a", "start": 1146, "end": 1147, "annotation": null}, {"text": "sharp", "start": 1148, "end": 1153, "annotation": null}, {"text": "absorption", "start": 1154, "end": 1164, "annotation": null}, {"text": "onset", "start": 1165, "end": 1170, "annotation": null}, {"text": "about", "start": 1171, "end": 1176, "annotation": null}, {"text": "375", "start": 1177, "end": 1180, "annotation": null}, {"text": "nm", "start": 1180, "end": 1182, "annotation": null}, {"text": "corresponding", "start": 1183, "end": 1196, "annotation": null}, {"text": "to", "start": 1197, "end": 1199, "annotation": null}, {"text": "the", "start": 1200, "end": 1203, "annotation": null}, {"text": "fundamental", "start": 1204, "end": 1215, "annotation": null}, {"text": "absorption", "start": 1216, "end": 1226, "annotation": null}, {"text": "edge", "start": 1227, "end": 1231, "annotation": null}, {"text": "3.2eV", "start": 1232, "end": 1237, "annotation": null}, {"text": "(", "start": 1238, "end": 1239, "annotation": null}, {"text": "UV", "start": 1239, "end": 1241, "annotation": null}, {"text": "\u2013", "start": 1241, "end": 1242, "annotation": null}, {"text": "vis", "start": 1242, "end": 1245, "annotation": null}, {"text": ")", "start": 1245, "end": 1246, "annotation": null}, {"text": ".", "start": 1246, "end": 1247, "annotation": null}], [{"text": "Photoluminescence", "start": 1248, "end": 1265, "annotation": null}, {"text": "of", "start": 1266, "end": 1268, "annotation": null}, {"text": "the", "start": 1269, "end": 1272, "annotation": null}, {"text": "films", "start": 1273, "end": 1278, "annotation": null}, {"text": "showed", "start": 1279, "end": 1285, "annotation": null}, {"text": "an", "start": 1286, "end": 1288, "annotation": null}, {"text": "ultraviolet", "start": 1289, "end": 1300, "annotation": null}, {"text": "UV", "start": 1301, "end": 1303, "annotation": null}, {"text": "and", "start": 1304, "end": 1307, "annotation": null}, {"text": "visible", "start": 1308, "end": 1315, "annotation": null}, {"text": "emissions", "start": 1316, "end": 1325, "annotation": null}, {"text": "like", "start": 1326, "end": 1330, "annotation": null}, {"text": "violet", "start": 1331, "end": 1337, "annotation": null}, {"text": ",", "start": 1337, "end": 1338, "annotation": null}, {"text": "blue", "start": 1339, "end": 1343, "annotation": null}, {"text": "and", "start": 1344, "end": 1347, "annotation": null}, {"text": "green", "start": 1348, "end": 1353, "annotation": null}, {"text": "related", "start": 1354, "end": 1361, "annotation": null}, {"text": "to", "start": 1362, "end": 1364, "annotation": null}, {"text": "defects", "start": 1365, "end": 1372, "annotation": null}, {"text": ".", "start": 1372, "end": 1373, "annotation": null}]]} -{"remark": "doping_annt3", "text": "In this article, we study the possible relation between the electronic and magnetic structures of the TiO2/LaAlO3 interface and the unexpected magnetism found in undoped TiO2 films grown on LaAlO3. We concentrate on the role played by structural relaxation and interfacial oxygen vacancies. LaAlO3 has a layered structure along the (001) direction with alternating LaO and AlO2 planes, with nominal charges of +1 and \u22121, respectively. As a consequence of that, an oxygen-deficient TiO2 film with anatase structure will grow preferently on the AlO2 surface layer. We have therefore performed ab initio calculations for superlattices with TiO2/AlO2 interfaces with interfacial oxygen vacancies. Our main results are that vacancies lead to a change in the valence state of neighbor Ti atoms but not necessarily to a magnetic solution and that the appearance of magnetism depends also on structural details, such as second neighbor positions. These results are obtained using both the local spin density approximation (LSDA) and LSDA+U approximations.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "this", "start": 3, "end": 7, "annotation": null}, {"text": "article", "start": 8, "end": 15, "annotation": null}, {"text": ",", "start": 15, "end": 16, "annotation": null}, {"text": "we", "start": 17, "end": 19, "annotation": null}, {"text": "study", "start": 20, "end": 25, "annotation": null}, {"text": "the", "start": 26, "end": 29, "annotation": null}, {"text": "possible", "start": 30, "end": 38, "annotation": null}, {"text": "relation", "start": 39, "end": 47, "annotation": null}, {"text": "between", "start": 48, "end": 55, "annotation": null}, {"text": "the", "start": 56, "end": 59, "annotation": null}, {"text": "electronic", "start": 60, "end": 70, "annotation": null}, {"text": "and", "start": 71, "end": 74, "annotation": null}, {"text": "magnetic", "start": 75, "end": 83, "annotation": null}, {"text": "structures", "start": 84, "end": 94, "annotation": null}, {"text": "of", "start": 95, "end": 97, "annotation": null}, {"text": "the", "start": 98, "end": 101, "annotation": null}, {"text": "TiO2", "start": 102, "end": 106, "annotation": null}, {"text": "/", "start": 106, "end": 107, "annotation": null}, {"text": "LaAlO3", "start": 107, "end": 113, "annotation": null}, {"text": "interface", "start": 114, "end": 123, "annotation": null}, {"text": "and", "start": 124, "end": 127, "annotation": null}, {"text": "the", "start": 128, "end": 131, "annotation": null}, {"text": "unexpected", "start": 132, "end": 142, "annotation": null}, {"text": "magnetism", "start": 143, "end": 152, "annotation": null}, {"text": "found", "start": 153, "end": 158, "annotation": null}, {"text": "in", "start": 159, "end": 161, "annotation": null}, {"text": "undoped", "start": 162, "end": 169, "annotation": null}, {"text": "TiO2", "start": 170, "end": 174, "annotation": null}, {"text": "films", "start": 175, "end": 180, "annotation": null}, {"text": "grown", "start": 181, "end": 186, "annotation": null}, {"text": "on", "start": 187, "end": 189, "annotation": null}, {"text": "LaAlO3", "start": 190, "end": 196, "annotation": null}, {"text": ".", "start": 196, "end": 197, "annotation": null}], [{"text": "We", "start": 198, "end": 200, "annotation": null}, {"text": "concentrate", "start": 201, "end": 212, "annotation": null}, {"text": "on", "start": 213, "end": 215, "annotation": null}, {"text": "the", "start": 216, "end": 219, "annotation": null}, {"text": "role", "start": 220, "end": 224, "annotation": null}, {"text": "played", "start": 225, "end": 231, "annotation": null}, {"text": "by", "start": 232, "end": 234, "annotation": null}, {"text": "structural", "start": 235, "end": 245, "annotation": null}, {"text": "relaxation", "start": 246, "end": 256, "annotation": null}, {"text": "and", "start": 257, "end": 260, "annotation": null}, {"text": "interfacial", "start": 261, "end": 272, "annotation": null}, {"text": "oxygen", "start": 273, "end": 279, "annotation": null}, {"text": "vacancies", "start": 280, "end": 289, "annotation": null}, {"text": ".", "start": 289, "end": 290, "annotation": null}], [{"text": "LaAlO3", "start": 291, "end": 297, "annotation": null}, {"text": "has", "start": 298, "end": 301, "annotation": null}, {"text": "a", "start": 302, "end": 303, "annotation": null}, {"text": "layered", "start": 304, "end": 311, "annotation": null}, {"text": "structure", "start": 312, "end": 321, "annotation": null}, {"text": "along", "start": 322, "end": 327, "annotation": null}, {"text": "the", "start": 328, "end": 331, "annotation": null}, {"text": "(", "start": 332, "end": 333, "annotation": null}, {"text": "001", "start": 333, "end": 336, "annotation": null}, {"text": ")", "start": 336, "end": 337, "annotation": null}, {"text": "direction", "start": 338, "end": 347, "annotation": null}, {"text": "with", "start": 348, "end": 352, "annotation": null}, {"text": "alternating", "start": 353, "end": 364, "annotation": null}, {"text": "LaO", "start": 365, "end": 368, "annotation": null}, {"text": "and", "start": 369, "end": 372, "annotation": null}, {"text": "AlO2", "start": 373, "end": 377, "annotation": null}, {"text": "planes", "start": 378, "end": 384, "annotation": null}, {"text": ",", "start": 384, "end": 385, "annotation": null}, {"text": "with", "start": 386, "end": 390, "annotation": null}, {"text": "nominal", "start": 391, "end": 398, "annotation": null}, {"text": "charges", "start": 399, "end": 406, "annotation": null}, {"text": "of", "start": 407, "end": 409, "annotation": null}, {"text": "+", "start": 410, "end": 411, "annotation": null}, {"text": "1", "start": 411, "end": 412, "annotation": null}, {"text": "and", "start": 413, "end": 416, "annotation": null}, {"text": "\u2212", "start": 417, "end": 418, "annotation": null}, {"text": "1", "start": 418, "end": 419, "annotation": null}, {"text": ",", "start": 419, "end": 420, "annotation": null}, {"text": "respectively", "start": 421, "end": 433, "annotation": null}, {"text": ".", "start": 433, "end": 434, "annotation": null}], [{"text": "As", "start": 435, "end": 437, "annotation": null}, {"text": "a", "start": 438, "end": 439, "annotation": null}, {"text": "consequence", "start": 440, "end": 451, "annotation": null}, {"text": "of", "start": 452, "end": 454, "annotation": null}, {"text": "that", "start": 455, "end": 459, "annotation": null}, {"text": ",", "start": 459, "end": 460, "annotation": null}, {"text": "an", "start": 461, "end": 463, "annotation": null}, {"text": "oxygen", "start": 464, "end": 470, "annotation": null}, {"text": "-", "start": 470, "end": 471, "annotation": null}, {"text": "deficient", "start": 471, "end": 480, "annotation": null}, {"text": "TiO2", "start": 481, "end": 485, "annotation": null}, {"text": "film", "start": 486, "end": 490, "annotation": null}, {"text": "with", "start": 491, "end": 495, "annotation": null}, {"text": "anatase", "start": 496, "end": 503, "annotation": null}, {"text": "structure", "start": 504, "end": 513, "annotation": null}, {"text": "will", "start": 514, "end": 518, "annotation": null}, {"text": "grow", "start": 519, "end": 523, "annotation": null}, {"text": "preferently", "start": 524, "end": 535, "annotation": null}, {"text": "on", "start": 536, "end": 538, "annotation": null}, {"text": "the", "start": 539, "end": 542, "annotation": null}, {"text": "AlO2", "start": 543, "end": 547, "annotation": null}, {"text": "surface", "start": 548, "end": 555, "annotation": null}, {"text": "layer", "start": 556, "end": 561, "annotation": null}, {"text": ".", "start": 561, "end": 562, "annotation": null}], [{"text": "We", "start": 563, "end": 565, "annotation": null}, {"text": "have", "start": 566, "end": 570, "annotation": null}, {"text": "therefore", "start": 571, "end": 580, "annotation": null}, {"text": "performed", "start": 581, "end": 590, "annotation": null}, {"text": "ab", "start": 591, "end": 593, "annotation": null}, {"text": "initio", "start": 594, "end": 600, "annotation": null}, {"text": "calculations", "start": 601, "end": 613, "annotation": null}, {"text": "for", "start": 614, "end": 617, "annotation": null}, {"text": "superlattices", "start": 618, "end": 631, "annotation": null}, {"text": "with", "start": 632, "end": 636, "annotation": null}, {"text": "TiO2", "start": 637, "end": 641, "annotation": null}, {"text": "/", "start": 641, "end": 642, "annotation": null}, {"text": "AlO2", "start": 642, "end": 646, "annotation": null}, {"text": "interfaces", "start": 647, "end": 657, "annotation": null}, {"text": "with", "start": 658, "end": 662, "annotation": null}, {"text": "interfacial", "start": 663, "end": 674, "annotation": null}, {"text": "oxygen", "start": 675, "end": 681, "annotation": null}, {"text": "vacancies", "start": 682, "end": 691, "annotation": null}, {"text": ".", "start": 691, "end": 692, "annotation": null}], [{"text": "Our", "start": 693, "end": 696, "annotation": null}, {"text": "main", "start": 697, "end": 701, "annotation": null}, {"text": "results", "start": 702, "end": 709, "annotation": null}, {"text": "are", "start": 710, "end": 713, "annotation": null}, {"text": "that", "start": 714, "end": 718, "annotation": null}, {"text": "vacancies", "start": 719, "end": 728, "annotation": null}, {"text": "lead", "start": 729, "end": 733, "annotation": null}, {"text": "to", "start": 734, "end": 736, "annotation": null}, {"text": "a", "start": 737, "end": 738, "annotation": null}, {"text": "change", "start": 739, "end": 745, "annotation": null}, {"text": "in", "start": 746, "end": 748, "annotation": null}, {"text": "the", "start": 749, "end": 752, "annotation": null}, {"text": "valence", "start": 753, "end": 760, "annotation": null}, {"text": "state", "start": 761, "end": 766, "annotation": null}, {"text": "of", "start": 767, "end": 769, "annotation": null}, {"text": "neighbor", "start": 770, "end": 778, "annotation": null}, {"text": "Ti", "start": 779, "end": 781, "annotation": null}, {"text": "atoms", "start": 782, "end": 787, "annotation": null}, {"text": "but", "start": 788, "end": 791, "annotation": null}, {"text": "not", "start": 792, "end": 795, "annotation": null}, {"text": "necessarily", "start": 796, "end": 807, "annotation": null}, {"text": "to", "start": 808, "end": 810, "annotation": null}, {"text": "a", "start": 811, "end": 812, "annotation": null}, {"text": "magnetic", "start": 813, "end": 821, "annotation": null}, {"text": "solution", "start": 822, "end": 830, "annotation": null}, {"text": "and", "start": 831, "end": 834, "annotation": null}, {"text": "that", "start": 835, "end": 839, "annotation": null}, {"text": "the", "start": 840, "end": 843, "annotation": null}, {"text": "appearance", "start": 844, "end": 854, "annotation": null}, {"text": "of", "start": 855, "end": 857, "annotation": null}, {"text": "magnetism", "start": 858, "end": 867, "annotation": null}, {"text": "depends", "start": 868, "end": 875, "annotation": null}, {"text": "also", "start": 876, "end": 880, "annotation": null}, {"text": "on", "start": 881, "end": 883, "annotation": null}, {"text": "structural", "start": 884, "end": 894, "annotation": null}, {"text": "details", "start": 895, "end": 902, "annotation": null}, {"text": ",", "start": 902, "end": 903, "annotation": null}, {"text": "such", "start": 904, "end": 908, "annotation": null}, {"text": "as", "start": 909, "end": 911, "annotation": null}, {"text": "second", "start": 912, "end": 918, "annotation": null}, {"text": "neighbor", "start": 919, "end": 927, "annotation": null}, {"text": "positions", "start": 928, "end": 937, "annotation": null}, {"text": ".", "start": 937, "end": 938, "annotation": null}], [{"text": "These", "start": 939, "end": 944, "annotation": null}, {"text": "results", "start": 945, "end": 952, "annotation": null}, {"text": "are", "start": 953, "end": 956, "annotation": null}, {"text": "obtained", "start": 957, "end": 965, "annotation": null}, {"text": "using", "start": 966, "end": 971, "annotation": null}, {"text": "both", "start": 972, "end": 976, "annotation": null}, {"text": "the", "start": 977, "end": 980, "annotation": null}, {"text": "local", "start": 981, "end": 986, "annotation": null}, {"text": "spin", "start": 987, "end": 991, "annotation": null}, {"text": "density", "start": 992, "end": 999, "annotation": null}, {"text": "approximation", "start": 1000, "end": 1013, "annotation": null}, {"text": "(", "start": 1014, "end": 1015, "annotation": null}, {"text": "LSDA", "start": 1015, "end": 1019, "annotation": null}, {"text": ")", "start": 1019, "end": 1020, "annotation": null}, {"text": "and", "start": 1021, "end": 1024, "annotation": null}, {"text": "LSDA", "start": 1025, "end": 1029, "annotation": null}, {"text": "+", "start": 1029, "end": 1030, "annotation": null}, {"text": "U", "start": 1030, "end": 1031, "annotation": null}, {"text": "approximations", "start": 1032, "end": 1046, "annotation": null}, {"text": ".", "start": 1046, "end": 1047, "annotation": null}]]} +{"text": "We investigate the mechanism of light extraction enhancement of a GaN-based light-emitting diode (LED) grown on patterned sapphire substrate (PSS), that has ZnO nanorod arrays (NRAs) fabricated on top of the device using the hydrothermal method. We found that the light output power of the LED with ZnO NRAs increases by approximately 30% compared to the conventional LED without damaging the electrical properties of the device. We argue that the gradual decrease of the effective refractive index, which is caused by the fabrication of ZnO NRAs, is the mechanism of the observed improvement. Our argument is confirmed by cross-sectional confocal scanning electroluminescence microscopy (CSEM) and the theoretical simulations, where we observed a distinct increase of the transmission at the interface between LED and air at the operation wavelength of the LED. In addition, the plane-view CSEM results indicate that ZnO NRAs, which were grown on the bare p-type GaN layer as an electrical safety margin area, also contribute to the enhanced light output power of the LED, which indicate further enhancement is manifested even in the optically ineffective sacrificial area.", "meta": {"doi": "10.1039/C3NR06584G"}, "_input_hash": 2025029862, "_task_hash": -2038181945, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "investigate", "start": 3, "end": 14, "id": 1, "annotation": null}, {"text": "the", "start": 15, "end": 18, "id": 2, "annotation": null}, {"text": "mechanism", "start": 19, "end": 28, "id": 3, "annotation": null}, {"text": "of", "start": 29, "end": 31, "id": 4, "annotation": null}, {"text": "light", "start": 32, "end": 37, "id": 5, "annotation": null}, {"text": "extraction", "start": 38, "end": 48, "id": 6, "annotation": null}, {"text": "enhancement", "start": 49, "end": 60, "id": 7, "annotation": null}, {"text": "of", "start": 61, "end": 63, "id": 8, "annotation": null}, {"text": "a", "start": 64, "end": 65, "id": 9, "annotation": null}, {"text": "GaN", "start": 66, "end": 69, "id": 10, "annotation": null}, {"text": "-", "start": 70, "end": 71, "id": 11, "annotation": null}, {"text": "based", "start": 72, "end": 77, "id": 12, "annotation": null}, {"text": "light", "start": 78, "end": 83, "id": 13, "annotation": null}, {"text": "-", "start": 84, "end": 85, "id": 14, "annotation": null}, {"text": "emitting", "start": 86, "end": 94, "id": 15, "annotation": null}, {"text": "diode", "start": 95, "end": 100, "id": 16, "annotation": null}, {"text": "(", "start": 101, "end": 102, "id": 17, "annotation": null}, {"text": "LED", "start": 103, "end": 106, "id": 18, "annotation": null}, {"text": ")", "start": 107, "end": 108, "id": 19, "annotation": null}, {"text": "grown", "start": 109, "end": 114, "id": 20, "annotation": null}, {"text": "on", "start": 115, "end": 117, "id": 21, "annotation": null}, {"text": "patterned", "start": 118, "end": 127, "id": 22, "annotation": null}, {"text": "sapphire", "start": 128, "end": 136, "id": 23, "annotation": null}, {"text": "substrate", "start": 137, "end": 146, "id": 24, "annotation": null}, {"text": "(", "start": 147, "end": 148, "id": 25, "annotation": null}, {"text": "PSS", "start": 149, "end": 152, "id": 26, "annotation": null}, {"text": ")", "start": 153, "end": 154, "id": 27, "annotation": null}, {"text": ",", "start": 155, "end": 156, "id": 28, "annotation": null}, {"text": "that", "start": 157, "end": 161, "id": 29, "annotation": null}, {"text": "has", "start": 162, "end": 165, "id": 30, "annotation": null}, {"text": "ZnO", "start": 166, "end": 169, "id": 31, "annotation": null}, {"text": "nanorod", "start": 170, "end": 177, "id": 32, "annotation": null}, {"text": "arrays", "start": 178, "end": 184, "id": 33, "annotation": null}, {"text": "(", "start": 185, "end": 186, "id": 34, "annotation": null}, {"text": "NRAs", "start": 187, "end": 191, "id": 35, "annotation": null}, {"text": ")", "start": 192, "end": 193, "id": 36, "annotation": null}, {"text": "fabricated", "start": 194, "end": 204, "id": 37, "annotation": null}, {"text": "on", "start": 205, "end": 207, "id": 38, "annotation": null}, {"text": "top", "start": 208, "end": 211, "id": 39, "annotation": null}, {"text": "of", "start": 212, "end": 214, "id": 40, "annotation": null}, {"text": "the", "start": 215, "end": 218, "id": 41, "annotation": null}, {"text": "device", "start": 219, "end": 225, "id": 42, "annotation": null}, {"text": "using", "start": 226, "end": 231, "id": 43, "annotation": null}, {"text": "the", "start": 232, "end": 235, "id": 44, "annotation": null}, {"text": "hydrothermal", "start": 236, "end": 248, "id": 45, "annotation": null}, {"text": "method", "start": 249, "end": 255, "id": 46, "annotation": null}, {"text": ".", "start": 256, "end": 257, "id": 47, "annotation": null}], [{"text": "We", "start": 258, "end": 260, "id": 48, "annotation": null}, {"text": "found", "start": 261, "end": 266, "id": 49, "annotation": null}, {"text": "that", "start": 267, "end": 271, "id": 50, "annotation": null}, {"text": "the", "start": 272, "end": 275, "id": 51, "annotation": null}, {"text": "light", "start": 276, "end": 281, "id": 52, "annotation": null}, {"text": "output", "start": 282, "end": 288, "id": 53, "annotation": null}, {"text": "power", "start": 289, "end": 294, "id": 54, "annotation": null}, {"text": "of", "start": 295, "end": 297, "id": 55, "annotation": null}, {"text": "the", "start": 298, "end": 301, "id": 56, "annotation": null}, {"text": "LED", "start": 302, "end": 305, "id": 57, "annotation": null}, {"text": "with", "start": 306, "end": 310, "id": 58, "annotation": null}, {"text": "ZnO", "start": 311, "end": 314, "id": 59, "annotation": null}, {"text": "NRAs", "start": 315, "end": 319, "id": 60, "annotation": null}, {"text": "increases", "start": 320, "end": 329, "id": 61, "annotation": null}, {"text": "by", "start": 330, "end": 332, "id": 62, "annotation": null}, {"text": "approximately", "start": 333, "end": 346, "id": 63, "annotation": null}, {"text": "30", "start": 347, "end": 349, "id": 64, "annotation": null}, {"text": "%", "start": 350, "end": 351, "id": 65, "annotation": null}, {"text": "compared", "start": 352, "end": 360, "id": 66, "annotation": null}, {"text": "to", "start": 361, "end": 363, "id": 67, "annotation": null}, {"text": "the", "start": 364, "end": 367, "id": 68, "annotation": null}, {"text": "conventional", "start": 368, "end": 380, "id": 69, "annotation": null}, {"text": "LED", "start": 381, "end": 384, "id": 70, "annotation": null}, {"text": "without", "start": 385, "end": 392, "id": 71, "annotation": null}, {"text": "damaging", "start": 393, "end": 401, "id": 72, "annotation": null}, {"text": "the", "start": 402, "end": 405, "id": 73, "annotation": null}, {"text": "electrical", "start": 406, "end": 416, "id": 74, "annotation": null}, {"text": "properties", "start": 417, "end": 427, "id": 75, "annotation": null}, {"text": "of", "start": 428, "end": 430, "id": 76, "annotation": null}, {"text": "the", "start": 431, "end": 434, "id": 77, "annotation": null}, {"text": "device", "start": 435, "end": 441, "id": 78, "annotation": null}, {"text": ".", "start": 442, "end": 443, "id": 79, "annotation": null}], [{"text": "We", "start": 444, "end": 446, "id": 80, "annotation": null}, {"text": "argue", "start": 447, "end": 452, "id": 81, "annotation": null}, {"text": "that", "start": 453, "end": 457, "id": 82, "annotation": null}, {"text": "the", "start": 458, "end": 461, "id": 83, "annotation": null}, {"text": "gradual", "start": 462, "end": 469, "id": 84, "annotation": null}, {"text": "decrease", "start": 470, "end": 478, "id": 85, "annotation": null}, {"text": "of", "start": 479, "end": 481, "id": 86, "annotation": null}, {"text": "the", "start": 482, "end": 485, "id": 87, "annotation": null}, {"text": "effective", "start": 486, "end": 495, "id": 88, "annotation": null}, {"text": "refractive", "start": 496, "end": 506, "id": 89, "annotation": null}, {"text": "index", "start": 507, "end": 512, "id": 90, "annotation": null}, {"text": ",", "start": 513, "end": 514, "id": 91, "annotation": null}, {"text": "which", "start": 515, "end": 520, "id": 92, "annotation": null}, {"text": "is", "start": 521, "end": 523, "id": 93, "annotation": null}, {"text": "caused", "start": 524, "end": 530, "id": 94, "annotation": null}, {"text": "by", "start": 531, "end": 533, "id": 95, "annotation": null}, {"text": "the", "start": 534, "end": 537, "id": 96, "annotation": null}, {"text": "fabrication", "start": 538, "end": 549, "id": 97, "annotation": null}, {"text": "of", "start": 550, "end": 552, "id": 98, "annotation": null}, {"text": "ZnO", "start": 553, "end": 556, "id": 99, "annotation": null}, {"text": "NRAs", "start": 557, "end": 561, "id": 100, "annotation": null}, {"text": ",", "start": 562, "end": 563, "id": 101, "annotation": null}, {"text": "is", "start": 564, "end": 566, "id": 102, "annotation": null}, {"text": "the", "start": 567, "end": 570, "id": 103, "annotation": null}, {"text": "mechanism", "start": 571, "end": 580, "id": 104, "annotation": null}, {"text": "of", "start": 581, "end": 583, "id": 105, "annotation": null}, {"text": "the", "start": 584, "end": 587, "id": 106, "annotation": null}, {"text": "observed", "start": 588, "end": 596, "id": 107, "annotation": null}, {"text": "improvement", "start": 597, "end": 608, "id": 108, "annotation": null}, {"text": ".", "start": 609, "end": 610, "id": 109, "annotation": null}], [{"text": "Our", "start": 611, "end": 614, "id": 110, "annotation": null}, {"text": "argument", "start": 615, "end": 623, "id": 111, "annotation": null}, {"text": "is", "start": 624, "end": 626, "id": 112, "annotation": null}, {"text": "confirmed", "start": 627, "end": 636, "id": 113, "annotation": null}, {"text": "by", "start": 637, "end": 639, "id": 114, "annotation": null}, {"text": "cross", "start": 640, "end": 645, "id": 115, "annotation": null}, {"text": "-", "start": 646, "end": 647, "id": 116, "annotation": null}, {"text": "sectional", "start": 648, "end": 657, "id": 117, "annotation": null}, {"text": "confocal", "start": 658, "end": 666, "id": 118, "annotation": null}, {"text": "scanning", "start": 667, "end": 675, "id": 119, "annotation": null}, {"text": "electroluminescence", "start": 676, "end": 695, "id": 120, "annotation": null}, {"text": "microscopy", "start": 696, "end": 706, "id": 121, "annotation": null}, {"text": "(", "start": 707, "end": 708, "id": 122, "annotation": null}, {"text": "CSEM", "start": 709, "end": 713, "id": 123, "annotation": null}, {"text": ")", "start": 714, "end": 715, "id": 124, "annotation": null}, {"text": "and", "start": 716, "end": 719, "id": 125, "annotation": null}, {"text": "the", "start": 720, "end": 723, "id": 126, "annotation": null}, {"text": "theoretical", "start": 724, "end": 735, "id": 127, "annotation": null}, {"text": "simulations", "start": 736, "end": 747, "id": 128, "annotation": null}, {"text": ",", "start": 748, "end": 749, "id": 129, "annotation": null}, {"text": "where", "start": 750, "end": 755, "id": 130, "annotation": null}, {"text": "we", "start": 756, "end": 758, "id": 131, "annotation": null}, {"text": "observed", "start": 759, "end": 767, "id": 132, "annotation": null}, {"text": "a", "start": 768, "end": 769, "id": 133, "annotation": null}, {"text": "distinct", "start": 770, "end": 778, "id": 134, "annotation": null}, {"text": "increase", "start": 779, "end": 787, "id": 135, "annotation": null}, {"text": "of", "start": 788, "end": 790, "id": 136, "annotation": null}, {"text": "the", "start": 791, "end": 794, "id": 137, "annotation": null}, {"text": "transmission", "start": 795, "end": 807, "id": 138, "annotation": null}, {"text": "at", "start": 808, "end": 810, "id": 139, "annotation": null}, {"text": "the", "start": 811, "end": 814, "id": 140, "annotation": null}, {"text": "interface", "start": 815, "end": 824, "id": 141, "annotation": null}, {"text": "between", "start": 825, "end": 832, "id": 142, "annotation": null}, {"text": "LED", "start": 833, "end": 836, "id": 143, "annotation": null}, {"text": "and", "start": 837, "end": 840, "id": 144, "annotation": null}, {"text": "air", "start": 841, "end": 844, "id": 145, "annotation": null}, {"text": "at", "start": 845, "end": 847, "id": 146, "annotation": null}, {"text": "the", "start": 848, "end": 851, "id": 147, "annotation": null}, {"text": "operation", "start": 852, "end": 861, "id": 148, "annotation": null}, {"text": "wavelength", "start": 862, "end": 872, "id": 149, "annotation": null}, {"text": "of", "start": 873, "end": 875, "id": 150, "annotation": null}, {"text": "the", "start": 876, "end": 879, "id": 151, "annotation": null}, {"text": "LED", "start": 880, "end": 883, "id": 152, "annotation": null}, {"text": ".", "start": 884, "end": 885, "id": 153, "annotation": null}], [{"text": "In", "start": 886, "end": 888, "id": 154, "annotation": null}, {"text": "addition", "start": 889, "end": 897, "id": 155, "annotation": null}, {"text": ",", "start": 898, "end": 899, "id": 156, "annotation": null}, {"text": "the", "start": 900, "end": 903, "id": 157, "annotation": null}, {"text": "plane", "start": 904, "end": 909, "id": 158, "annotation": null}, {"text": "-", "start": 910, "end": 911, "id": 159, "annotation": null}, {"text": "view", "start": 912, "end": 916, "id": 160, "annotation": null}, {"text": "CSEM", "start": 917, "end": 921, "id": 161, "annotation": null}, {"text": "results", "start": 922, "end": 929, "id": 162, "annotation": null}, {"text": "indicate", "start": 930, "end": 938, "id": 163, "annotation": null}, {"text": "that", "start": 939, "end": 943, "id": 164, "annotation": null}, {"text": "ZnO", "start": 944, "end": 947, "id": 165, "annotation": null}, {"text": "NRAs", "start": 948, "end": 952, "id": 166, "annotation": null}, {"text": ",", "start": 953, "end": 954, "id": 167, "annotation": null}, {"text": "which", "start": 955, "end": 960, "id": 168, "annotation": null}, {"text": "were", "start": 961, "end": 965, "id": 169, "annotation": null}, {"text": "grown", "start": 966, "end": 971, "id": 170, "annotation": null}, {"text": "on", "start": 972, "end": 974, "id": 171, "annotation": null}, {"text": "the", "start": 975, "end": 978, "id": 172, "annotation": null}, {"text": "bare", "start": 979, "end": 983, "id": 173, "annotation": null}, {"text": "p", "start": 984, "end": 985, "id": 174, "annotation": "DOPANT"}, {"text": "-", "start": 986, "end": 987, "id": 175, "annotation": "DOPANT"}, {"text": "type", "start": 988, "end": 992, "id": 176, "annotation": "DOPANT"}, {"text": "GaN", "start": 993, "end": 996, "id": 177, "annotation": "BASEMAT"}, {"text": "layer", "start": 997, "end": 1002, "id": 178, "annotation": null}, {"text": "as", "start": 1003, "end": 1005, "id": 179, "annotation": null}, {"text": "an", "start": 1006, "end": 1008, "id": 180, "annotation": null}, {"text": "electrical", "start": 1009, "end": 1019, "id": 181, "annotation": null}, {"text": "safety", "start": 1020, "end": 1026, "id": 182, "annotation": null}, {"text": "margin", "start": 1027, "end": 1033, "id": 183, "annotation": null}, {"text": "area", "start": 1034, "end": 1038, "id": 184, "annotation": null}, {"text": ",", "start": 1039, "end": 1040, "id": 185, "annotation": null}, {"text": "also", "start": 1041, "end": 1045, "id": 186, "annotation": null}, {"text": "contribute", "start": 1046, "end": 1056, "id": 187, "annotation": null}, {"text": "to", "start": 1057, "end": 1059, "id": 188, "annotation": null}, {"text": "the", "start": 1060, "end": 1063, "id": 189, "annotation": null}, {"text": "enhanced", "start": 1064, "end": 1072, "id": 190, "annotation": null}, {"text": "light", "start": 1073, "end": 1078, "id": 191, "annotation": null}, {"text": "output", "start": 1079, "end": 1085, "id": 192, "annotation": null}, {"text": "power", "start": 1086, "end": 1091, "id": 193, "annotation": null}, {"text": "of", "start": 1092, "end": 1094, "id": 194, "annotation": null}, {"text": "the", "start": 1095, "end": 1098, "id": 195, "annotation": null}, {"text": "LED", "start": 1099, "end": 1102, "id": 196, "annotation": null}, {"text": ",", "start": 1103, "end": 1104, "id": 197, "annotation": null}, {"text": "which", "start": 1105, "end": 1110, "id": 198, "annotation": null}, {"text": "indicate", "start": 1111, "end": 1119, "id": 199, "annotation": null}, {"text": "further", "start": 1120, "end": 1127, "id": 200, "annotation": null}, {"text": "enhancement", "start": 1128, "end": 1139, "id": 201, "annotation": null}, {"text": "is", "start": 1140, "end": 1142, "id": 202, "annotation": null}, {"text": "manifested", "start": 1143, "end": 1153, "id": 203, "annotation": null}, {"text": "even", "start": 1154, "end": 1158, "id": 204, "annotation": null}, {"text": "in", "start": 1159, "end": 1161, "id": 205, "annotation": null}, {"text": "the", "start": 1162, "end": 1165, "id": 206, "annotation": null}, {"text": "optically", "start": 1166, "end": 1175, "id": 207, "annotation": null}, {"text": "ineffective", "start": 1176, "end": 1187, "id": 208, "annotation": null}, {"text": "sacrificial", "start": 1188, "end": 1199, "id": 209, "annotation": null}, {"text": "area", "start": 1200, "end": 1204, "id": 210, "annotation": null}, {"text": ".", "start": 1205, "end": 1206, "id": 211, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "We present a surface corrosion method to shift the photocurrent onset potential cathodically for water oxidation on a Ti4+ doped Fe2O3 by about 100 mV. After the surface treatment, the doped hematite photoanodes showed a similar photocurrent onset potential to the lowest values obtained by loading with electrocatalysts or depositing functional over-layers. Moreover, the cathodic shift of the onset potential was preserved well even after a long operating time. The results indicated the effectiveness of this simple surface treatment. In order to make clear the reason for the onset potential shift, the doped hematite samples before and after surface corrosion were investigated by SEM, X-ray photoelectron spectroscopy (XPS), inductively coupled plasma mass spectrometry (ICP-MS), photoluminescence spectroscopy (PL), electrochemical impedance spectroscopy (EIS), Mott\u2013Schottky and so on. Based on the experimental evidence, we proposed a new mechanism for the onset potential shift. The cathodic shift of the onset potential was due to decreasing the back reaction, but not accelerating water oxidation kinetics, passivating surface states or ions adsorption as reported in the previous studies. This strategy of suppressing the back reaction can offer a reference to reduce the overpotential for other photoelectrodes.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "present", "start": 3, "end": 10, "annotation": null}, {"text": "a", "start": 11, "end": 12, "annotation": null}, {"text": "surface", "start": 13, "end": 20, "annotation": null}, {"text": "corrosion", "start": 21, "end": 30, "annotation": null}, {"text": "method", "start": 31, "end": 37, "annotation": null}, {"text": "to", "start": 38, "end": 40, "annotation": null}, {"text": "shift", "start": 41, "end": 46, "annotation": null}, {"text": "the", "start": 47, "end": 50, "annotation": null}, {"text": "photocurrent", "start": 51, "end": 63, "annotation": null}, {"text": "onset", "start": 64, "end": 69, "annotation": null}, {"text": "potential", "start": 70, "end": 79, "annotation": null}, {"text": "cathodically", "start": 80, "end": 92, "annotation": null}, {"text": "for", "start": 93, "end": 96, "annotation": null}, {"text": "water", "start": 97, "end": 102, "annotation": null}, {"text": "oxidation", "start": 103, "end": 112, "annotation": null}, {"text": "on", "start": 113, "end": 115, "annotation": null}, {"text": "a", "start": 116, "end": 117, "annotation": null}, {"text": "Ti4+", "start": 118, "end": 122, "annotation": "DOPANT"}, {"text": "doped", "start": 123, "end": 128, "annotation": null}, {"text": "Fe2O3", "start": 129, "end": 134, "annotation": "BASEMAT"}, {"text": "by", "start": 135, "end": 137, "annotation": null}, {"text": "about", "start": 138, "end": 143, "annotation": null}, {"text": "100", "start": 144, "end": 147, "annotation": null}, {"text": "mV", "start": 148, "end": 150, "annotation": null}, {"text": ".", "start": 150, "end": 151, "annotation": null}], [{"text": "After", "start": 152, "end": 157, "annotation": null}, {"text": "the", "start": 158, "end": 161, "annotation": null}, {"text": "surface", "start": 162, "end": 169, "annotation": null}, {"text": "treatment", "start": 170, "end": 179, "annotation": null}, {"text": ",", "start": 179, "end": 180, "annotation": null}, {"text": "the", "start": 181, "end": 184, "annotation": null}, {"text": "doped", "start": 185, "end": 190, "annotation": null}, {"text": "hematite", "start": 191, "end": 199, "annotation": null}, {"text": "photoanodes", "start": 200, "end": 211, "annotation": null}, {"text": "showed", "start": 212, "end": 218, "annotation": null}, {"text": "a", "start": 219, "end": 220, "annotation": null}, {"text": "similar", "start": 221, "end": 228, "annotation": null}, {"text": "photocurrent", "start": 229, "end": 241, "annotation": null}, {"text": "onset", "start": 242, "end": 247, "annotation": null}, {"text": "potential", "start": 248, "end": 257, "annotation": null}, {"text": "to", "start": 258, "end": 260, "annotation": null}, {"text": "the", "start": 261, "end": 264, "annotation": null}, {"text": "lowest", "start": 265, "end": 271, "annotation": null}, {"text": "values", "start": 272, "end": 278, "annotation": null}, {"text": "obtained", "start": 279, "end": 287, "annotation": null}, {"text": "by", "start": 288, "end": 290, "annotation": null}, {"text": "loading", "start": 291, "end": 298, "annotation": null}, {"text": "with", "start": 299, "end": 303, "annotation": null}, {"text": "electrocatalysts", "start": 304, "end": 320, "annotation": null}, {"text": "or", "start": 321, "end": 323, "annotation": null}, {"text": "depositing", "start": 324, "end": 334, "annotation": null}, {"text": "functional", "start": 335, "end": 345, "annotation": null}, {"text": "over-layers", "start": 346, "end": 357, "annotation": null}, {"text": ".", "start": 357, "end": 358, "annotation": null}], [{"text": "Moreover", "start": 359, "end": 367, "annotation": null}, {"text": ",", "start": 367, "end": 368, "annotation": null}, {"text": "the", "start": 369, "end": 372, "annotation": null}, {"text": "cathodic", "start": 373, "end": 381, "annotation": null}, {"text": "shift", "start": 382, "end": 387, "annotation": null}, {"text": "of", "start": 388, "end": 390, "annotation": null}, {"text": "the", "start": 391, "end": 394, "annotation": null}, {"text": "onset", "start": 395, "end": 400, "annotation": null}, {"text": "potential", "start": 401, "end": 410, "annotation": null}, {"text": "was", "start": 411, "end": 414, "annotation": null}, {"text": "preserved", "start": 415, "end": 424, "annotation": null}, {"text": "well", "start": 425, "end": 429, "annotation": null}, {"text": "even", "start": 430, "end": 434, "annotation": null}, {"text": "after", "start": 435, "end": 440, "annotation": null}, {"text": "a", "start": 441, "end": 442, "annotation": null}, {"text": "long", "start": 443, "end": 447, "annotation": null}, {"text": "operating", "start": 448, "end": 457, "annotation": null}, {"text": "time", "start": 458, "end": 462, "annotation": null}, {"text": ".", "start": 462, "end": 463, "annotation": null}], [{"text": "The", "start": 464, "end": 467, "annotation": null}, {"text": "results", "start": 468, "end": 475, "annotation": null}, {"text": "indicated", "start": 476, "end": 485, "annotation": null}, {"text": "the", "start": 486, "end": 489, "annotation": null}, {"text": "effectiveness", "start": 490, "end": 503, "annotation": null}, {"text": "of", "start": 504, "end": 506, "annotation": null}, {"text": "this", "start": 507, "end": 511, "annotation": null}, {"text": "simple", "start": 512, "end": 518, "annotation": null}, {"text": "surface", "start": 519, "end": 526, "annotation": null}, {"text": "treatment", "start": 527, "end": 536, "annotation": null}, {"text": ".", "start": 536, "end": 537, "annotation": null}], [{"text": "In", "start": 538, "end": 540, "annotation": null}, {"text": "order", "start": 541, "end": 546, "annotation": null}, {"text": "to", "start": 547, "end": 549, "annotation": null}, {"text": "make", "start": 550, "end": 554, "annotation": null}, {"text": "clear", "start": 555, "end": 560, "annotation": null}, {"text": "the", "start": 561, "end": 564, "annotation": null}, {"text": "reason", "start": 565, "end": 571, "annotation": null}, {"text": "for", "start": 572, "end": 575, "annotation": null}, {"text": "the", "start": 576, "end": 579, "annotation": null}, {"text": "onset", "start": 580, "end": 585, "annotation": null}, {"text": "potential", "start": 586, "end": 595, "annotation": null}, {"text": "shift", "start": 596, "end": 601, "annotation": null}, {"text": ",", "start": 601, "end": 602, "annotation": null}, {"text": "the", "start": 603, "end": 606, "annotation": null}, {"text": "doped", "start": 607, "end": 612, "annotation": null}, {"text": "hematite", "start": 613, "end": 621, "annotation": "BASEMAT"}, {"text": "samples", "start": 622, "end": 629, "annotation": "BASEMAT"}, {"text": "before", "start": 630, "end": 636, "annotation": null}, {"text": "and", "start": 637, "end": 640, "annotation": null}, {"text": "after", "start": 641, "end": 646, "annotation": null}, {"text": "surface", "start": 647, "end": 654, "annotation": null}, {"text": "corrosion", "start": 655, "end": 664, "annotation": null}, {"text": "were", "start": 665, "end": 669, "annotation": null}, {"text": "investigated", "start": 670, "end": 682, "annotation": null}, {"text": "by", "start": 683, "end": 685, "annotation": null}, {"text": "SEM", "start": 686, "end": 689, "annotation": null}, {"text": ",", "start": 689, "end": 690, "annotation": null}, {"text": "X-ray", "start": 691, "end": 696, "annotation": null}, {"text": "photoelectron", "start": 697, "end": 710, "annotation": null}, {"text": "spectroscopy", "start": 711, "end": 723, "annotation": null}, {"text": "(", "start": 724, "end": 725, "annotation": null}, {"text": "XPS", "start": 725, "end": 728, "annotation": null}, {"text": ")", "start": 728, "end": 729, "annotation": null}, {"text": ",", "start": 729, "end": 730, "annotation": null}, {"text": "inductively", "start": 731, "end": 742, "annotation": null}, {"text": "coupled", "start": 743, "end": 750, "annotation": null}, {"text": "plasma", "start": 751, "end": 757, "annotation": null}, {"text": "mass", "start": 758, "end": 762, "annotation": null}, {"text": "spectrometry", "start": 763, "end": 775, "annotation": null}, {"text": "(", "start": 776, "end": 777, "annotation": null}, {"text": "ICP-MS", "start": 777, "end": 783, "annotation": null}, {"text": ")", "start": 783, "end": 784, "annotation": null}, {"text": ",", "start": 784, "end": 785, "annotation": null}, {"text": "photoluminescence", "start": 786, "end": 803, "annotation": null}, {"text": "spectroscopy", "start": 804, "end": 816, "annotation": null}, {"text": "(", "start": 817, "end": 818, "annotation": null}, {"text": "PL", "start": 818, "end": 820, "annotation": null}, {"text": ")", "start": 820, "end": 821, "annotation": null}, {"text": ",", "start": 821, "end": 822, "annotation": null}, {"text": "electrochemical", "start": 823, "end": 838, "annotation": null}, {"text": "impedance", "start": 839, "end": 848, "annotation": null}, {"text": "spectroscopy", "start": 849, "end": 861, "annotation": null}, {"text": "(", "start": 862, "end": 863, "annotation": null}, {"text": "EIS", "start": 863, "end": 866, "annotation": null}, {"text": ")", "start": 866, "end": 867, "annotation": null}, {"text": ",", "start": 867, "end": 868, "annotation": null}, {"text": "Mott", "start": 869, "end": 873, "annotation": null}, {"text": "\u2013", "start": 873, "end": 874, "annotation": null}, {"text": "Schottky", "start": 874, "end": 882, "annotation": null}, {"text": "and", "start": 883, "end": 886, "annotation": null}, {"text": "so", "start": 887, "end": 889, "annotation": null}, {"text": "on", "start": 890, "end": 892, "annotation": null}, {"text": ".", "start": 892, "end": 893, "annotation": null}], [{"text": "Based", "start": 894, "end": 899, "annotation": null}, {"text": "on", "start": 900, "end": 902, "annotation": null}, {"text": "the", "start": 903, "end": 906, "annotation": null}, {"text": "experimental", "start": 907, "end": 919, "annotation": null}, {"text": "evidence", "start": 920, "end": 928, "annotation": null}, {"text": ",", "start": 928, "end": 929, "annotation": null}, {"text": "we", "start": 930, "end": 932, "annotation": null}, {"text": "proposed", "start": 933, "end": 941, "annotation": null}, {"text": "a", "start": 942, "end": 943, "annotation": null}, {"text": "new", "start": 944, "end": 947, "annotation": null}, {"text": "mechanism", "start": 948, "end": 957, "annotation": null}, {"text": "for", "start": 958, "end": 961, "annotation": null}, {"text": "the", "start": 962, "end": 965, "annotation": null}, {"text": "onset", "start": 966, "end": 971, "annotation": null}, {"text": "potential", "start": 972, "end": 981, "annotation": null}, {"text": "shift", "start": 982, "end": 987, "annotation": null}, {"text": ".", "start": 987, "end": 988, "annotation": null}], [{"text": "The", "start": 989, "end": 992, "annotation": null}, {"text": "cathodic", "start": 993, "end": 1001, "annotation": null}, {"text": "shift", "start": 1002, "end": 1007, "annotation": null}, {"text": "of", "start": 1008, "end": 1010, "annotation": null}, {"text": "the", "start": 1011, "end": 1014, "annotation": null}, {"text": "onset", "start": 1015, "end": 1020, "annotation": null}, {"text": "potential", "start": 1021, "end": 1030, "annotation": null}, {"text": "was", "start": 1031, "end": 1034, "annotation": null}, {"text": "due", "start": 1035, "end": 1038, "annotation": null}, {"text": "to", "start": 1039, "end": 1041, "annotation": null}, {"text": "decreasing", "start": 1042, "end": 1052, "annotation": null}, {"text": "the", "start": 1053, "end": 1056, "annotation": null}, {"text": "back", "start": 1057, "end": 1061, "annotation": null}, {"text": "reaction", "start": 1062, "end": 1070, "annotation": null}, {"text": ",", "start": 1070, "end": 1071, "annotation": null}, {"text": "but", "start": 1072, "end": 1075, "annotation": null}, {"text": "not", "start": 1076, "end": 1079, "annotation": null}, {"text": "accelerating", "start": 1080, "end": 1092, "annotation": null}, {"text": "water", "start": 1093, "end": 1098, "annotation": null}, {"text": "oxidation", "start": 1099, "end": 1108, "annotation": null}, {"text": "kinetics", "start": 1109, "end": 1117, "annotation": null}, {"text": ",", "start": 1117, "end": 1118, "annotation": null}, {"text": "passivating", "start": 1119, "end": 1130, "annotation": null}, {"text": "surface", "start": 1131, "end": 1138, "annotation": null}, {"text": "states", "start": 1139, "end": 1145, "annotation": null}, {"text": "or", "start": 1146, "end": 1148, "annotation": null}, {"text": "ions", "start": 1149, "end": 1153, "annotation": null}, {"text": "adsorption", "start": 1154, "end": 1164, "annotation": null}, {"text": "as", "start": 1165, "end": 1167, "annotation": null}, {"text": "reported", "start": 1168, "end": 1176, "annotation": null}, {"text": "in", "start": 1177, "end": 1179, "annotation": null}, {"text": "the", "start": 1180, "end": 1183, "annotation": null}, {"text": "previous", "start": 1184, "end": 1192, "annotation": null}, {"text": "studies", "start": 1193, "end": 1200, "annotation": null}, {"text": ".", "start": 1200, "end": 1201, "annotation": null}], [{"text": "This", "start": 1202, "end": 1206, "annotation": null}, {"text": "strategy", "start": 1207, "end": 1215, "annotation": null}, {"text": "of", "start": 1216, "end": 1218, "annotation": null}, {"text": "suppressing", "start": 1219, "end": 1230, "annotation": null}, {"text": "the", "start": 1231, "end": 1234, "annotation": null}, {"text": "back", "start": 1235, "end": 1239, "annotation": null}, {"text": "reaction", "start": 1240, "end": 1248, "annotation": null}, {"text": "can", "start": 1249, "end": 1252, "annotation": null}, {"text": "offer", "start": 1253, "end": 1258, "annotation": null}, {"text": "a", "start": 1259, "end": 1260, "annotation": null}, {"text": "reference", "start": 1261, "end": 1270, "annotation": null}, {"text": "to", "start": 1271, "end": 1273, "annotation": null}, {"text": "reduce", "start": 1274, "end": 1280, "annotation": null}, {"text": "the", "start": 1281, "end": 1284, "annotation": null}, {"text": "overpotential", "start": 1285, "end": 1298, "annotation": null}, {"text": "for", "start": 1299, "end": 1302, "annotation": null}, {"text": "other", "start": 1303, "end": 1308, "annotation": null}, {"text": "photoelectrodes", "start": 1309, "end": 1324, "annotation": null}, {"text": ".", "start": 1324, "end": 1325, "annotation": null}]], "meta": {"doi": "10.1039/C3EE42722F"}} +{"remark": "doping_annt1", "text": "We have performed the first synchrotron radiation X-ray absorption spectroscopy (EXAFS/XANES) study of the local atomic and electronic structure around Cu and W ions in WO3/Cu/WO3/Si and WO3/Cu/Si multilayered structures, aimed for the application in the electrochemical metallization cell memory. The influence of low-temperature annealing at 135\u00b0C has been investigated in details, and a structural model of Cu-doped WO3 films is proposed.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "have", "start": 3, "end": 7, "annotation": null}, {"text": "performed", "start": 8, "end": 17, "annotation": null}, {"text": "the", "start": 18, "end": 21, "annotation": null}, {"text": "first", "start": 22, "end": 27, "annotation": null}, {"text": "synchrotron", "start": 28, "end": 39, "annotation": null}, {"text": "radiation", "start": 40, "end": 49, "annotation": null}, {"text": "X-ray", "start": 50, "end": 55, "annotation": null}, {"text": "absorption", "start": 56, "end": 66, "annotation": null}, {"text": "spectroscopy", "start": 67, "end": 79, "annotation": null}, {"text": "(", "start": 80, "end": 81, "annotation": null}, {"text": "EXAFS", "start": 81, "end": 86, "annotation": null}, {"text": "/", "start": 86, "end": 87, "annotation": null}, {"text": "XANES", "start": 87, "end": 92, "annotation": null}, {"text": ")", "start": 92, "end": 93, "annotation": null}, {"text": "study", "start": 94, "end": 99, "annotation": null}, {"text": "of", "start": 100, "end": 102, "annotation": null}, {"text": "the", "start": 103, "end": 106, "annotation": null}, {"text": "local", "start": 107, "end": 112, "annotation": null}, {"text": "atomic", "start": 113, "end": 119, "annotation": null}, {"text": "and", "start": 120, "end": 123, "annotation": null}, {"text": "electronic", "start": 124, "end": 134, "annotation": null}, {"text": "structure", "start": 135, "end": 144, "annotation": null}, {"text": "around", "start": 145, "end": 151, "annotation": null}, {"text": "Cu", "start": 152, "end": 154, "annotation": "DOPANT"}, {"text": "and", "start": 155, "end": 158, "annotation": null}, {"text": "W", "start": 159, "end": 160, "annotation": "DOPANT"}, {"text": "ions", "start": 161, "end": 165, "annotation": null}, {"text": "in", "start": 166, "end": 168, "annotation": null}, {"text": "WO3", "start": 169, "end": 172, "annotation": "BASEMAT"}, {"text": "/", "start": 172, "end": 173, "annotation": "BASEMAT"}, {"text": "Cu", "start": 173, "end": 175, "annotation": "BASEMAT"}, {"text": "/", "start": 175, "end": 176, "annotation": "BASEMAT"}, {"text": "WO3", "start": 176, "end": 179, "annotation": "BASEMAT"}, {"text": "/", "start": 179, "end": 180, "annotation": "BASEMAT"}, {"text": "Si", "start": 180, "end": 182, "annotation": "BASEMAT"}, {"text": "and", "start": 183, "end": 186, "annotation": null}, {"text": "WO3", "start": 187, "end": 190, "annotation": "BASEMAT"}, {"text": "/", "start": 190, "end": 191, "annotation": "BASEMAT"}, {"text": "Cu", "start": 191, "end": 193, "annotation": "BASEMAT"}, {"text": "/", "start": 193, "end": 194, "annotation": "BASEMAT"}, {"text": "Si", "start": 194, "end": 196, "annotation": "BASEMAT"}, {"text": "multilayered", "start": 197, "end": 209, "annotation": null}, {"text": "structures", "start": 210, "end": 220, "annotation": null}, {"text": ",", "start": 220, "end": 221, "annotation": null}, {"text": "aimed", "start": 222, "end": 227, "annotation": null}, {"text": "for", "start": 228, "end": 231, "annotation": null}, {"text": "the", "start": 232, "end": 235, "annotation": null}, {"text": "application", "start": 236, "end": 247, "annotation": null}, {"text": "in", "start": 248, "end": 250, "annotation": null}, {"text": "the", "start": 251, "end": 254, "annotation": null}, {"text": "electrochemical", "start": 255, "end": 270, "annotation": null}, {"text": "metallization", "start": 271, "end": 284, "annotation": null}, {"text": "cell", "start": 285, "end": 289, "annotation": null}, {"text": "memory", "start": 290, "end": 296, "annotation": null}, {"text": ".", "start": 296, "end": 297, "annotation": null}], [{"text": "The", "start": 298, "end": 301, "annotation": null}, {"text": "influence", "start": 302, "end": 311, "annotation": null}, {"text": "of", "start": 312, "end": 314, "annotation": null}, {"text": "low", "start": 315, "end": 318, "annotation": null}, {"text": "-", "start": 318, "end": 319, "annotation": null}, {"text": "temperature", "start": 319, "end": 330, "annotation": null}, {"text": "annealing", "start": 331, "end": 340, "annotation": null}, {"text": "at", "start": 341, "end": 343, "annotation": null}, {"text": "135", "start": 344, "end": 347, "annotation": null}, {"text": "\u00b0", "start": 347, "end": 348, "annotation": null}, {"text": "C", "start": 348, "end": 349, "annotation": null}, {"text": "has", "start": 350, "end": 353, "annotation": null}, {"text": "been", "start": 354, "end": 358, "annotation": null}, {"text": "investigated", "start": 359, "end": 371, "annotation": null}, {"text": "in", "start": 372, "end": 374, "annotation": null}, {"text": "details", "start": 375, "end": 382, "annotation": null}, {"text": ",", "start": 382, "end": 383, "annotation": null}, {"text": "and", "start": 384, "end": 387, "annotation": null}, {"text": "a", "start": 388, "end": 389, "annotation": null}, {"text": "structural", "start": 390, "end": 400, "annotation": null}, {"text": "model", "start": 401, "end": 406, "annotation": null}, {"text": "of", "start": 407, "end": 409, "annotation": null}, {"text": "Cu", "start": 410, "end": 412, "annotation": "DOPANT"}, {"text": "-", "start": 412, "end": 413, "annotation": null}, {"text": "doped", "start": 413, "end": 418, "annotation": null}, {"text": "WO3", "start": 419, "end": 422, "annotation": "BASEMAT"}, {"text": "films", "start": 423, "end": 428, "annotation": null}, {"text": "is", "start": 429, "end": 431, "annotation": null}, {"text": "proposed", "start": 432, "end": 440, "annotation": null}, {"text": ".", "start": 440, "end": 441, "annotation": null}]], "meta": {"doi": "10.1016/j.jnoncrysol.2014.01.022"}} +{"remark": "doping_annt2", "text": "A dye-doped cholesteric liquid crystal (LC) cell with the focal-conic initial state is demonstrated. Although dye-doped LC/polymer composites have been widely used for LC light shutters, dye-doped LC cells with polymer structures suffer from the degradation of dichroic dyes during the UV curing process. To avoid this problem, we propose a dye-doped cholesteric LC cell using vertical alignment layers instead of polymer structures. We have shown that the focal-conic initial state can be obtained by homeotropic anchoring without the polymer structure. The proposed device not only provides the black color but can also hide objects behind a display panel in the focal-conic initial state without the degradation of dichroic dyes.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "dye", "start": 2, "end": 5, "annotation": "DOPANT"}, {"text": "-", "start": 5, "end": 6, "annotation": null}, {"text": "doped", "start": 6, "end": 11, "annotation": null}, {"text": "cholesteric", "start": 12, "end": 23, "annotation": "BASEMAT"}, {"text": "liquid", "start": 24, "end": 30, "annotation": "BASEMAT"}, {"text": "crystal", "start": 31, "end": 38, "annotation": "BASEMAT"}, {"text": "(", "start": 39, "end": 40, "annotation": null}, {"text": "LC", "start": 40, "end": 42, "annotation": "BASEMAT"}, {"text": ")", "start": 42, "end": 43, "annotation": null}, {"text": "cell", "start": 44, "end": 48, "annotation": null}, {"text": "with", "start": 49, "end": 53, "annotation": null}, {"text": "the", "start": 54, "end": 57, "annotation": null}, {"text": "focal", "start": 58, "end": 63, "annotation": null}, {"text": "-", "start": 63, "end": 64, "annotation": null}, {"text": "conic", "start": 64, "end": 69, "annotation": null}, {"text": "initial", "start": 70, "end": 77, "annotation": null}, {"text": "state", "start": 78, "end": 83, "annotation": null}, {"text": "is", "start": 84, "end": 86, "annotation": null}, {"text": "demonstrated", "start": 87, "end": 99, "annotation": null}, {"text": ".", "start": 99, "end": 100, "annotation": null}], [{"text": "Although", "start": 101, "end": 109, "annotation": null}, {"text": "dye", "start": 110, "end": 113, "annotation": "DOPANT"}, {"text": "-", "start": 113, "end": 114, "annotation": null}, {"text": "doped", "start": 114, "end": 119, "annotation": null}, {"text": "LC", "start": 120, "end": 122, "annotation": "BASEMAT"}, {"text": "/", "start": 122, "end": 123, "annotation": "BASEMAT"}, {"text": "polymer", "start": 123, "end": 130, "annotation": "BASEMAT"}, {"text": "composites", "start": 131, "end": 141, "annotation": null}, {"text": "have", "start": 142, "end": 146, "annotation": null}, {"text": "been", "start": 147, "end": 151, "annotation": null}, {"text": "widely", "start": 152, "end": 158, "annotation": null}, {"text": "used", "start": 159, "end": 163, "annotation": null}, {"text": "for", "start": 164, "end": 167, "annotation": null}, {"text": "LC", "start": 168, "end": 170, "annotation": "BASEMAT"}, {"text": "light", "start": 171, "end": 176, "annotation": null}, {"text": "shutters", "start": 177, "end": 185, "annotation": null}, {"text": ",", "start": 185, "end": 186, "annotation": null}, {"text": "dye", "start": 187, "end": 190, "annotation": "DOPANT"}, {"text": "-", "start": 190, "end": 191, "annotation": null}, {"text": "doped", "start": 191, "end": 196, "annotation": null}, {"text": "LC", "start": 197, "end": 199, "annotation": "BASEMAT"}, {"text": "cells", "start": 200, "end": 205, "annotation": null}, {"text": "with", "start": 206, "end": 210, "annotation": null}, {"text": "polymer", "start": 211, "end": 218, "annotation": null}, {"text": "structures", "start": 219, "end": 229, "annotation": null}, {"text": "suffer", "start": 230, "end": 236, "annotation": null}, {"text": "from", "start": 237, "end": 241, "annotation": null}, {"text": "the", "start": 242, "end": 245, "annotation": null}, {"text": "degradation", "start": 246, "end": 257, "annotation": null}, {"text": "of", "start": 258, "end": 260, "annotation": null}, {"text": "dichroic", "start": 261, "end": 269, "annotation": null}, {"text": "dyes", "start": 270, "end": 274, "annotation": null}, {"text": "during", "start": 275, "end": 281, "annotation": null}, {"text": "the", "start": 282, "end": 285, "annotation": null}, {"text": "UV", "start": 286, "end": 288, "annotation": null}, {"text": "curing", "start": 289, "end": 295, "annotation": null}, {"text": "process", "start": 296, "end": 303, "annotation": null}, {"text": ".", "start": 303, "end": 304, "annotation": null}], [{"text": "To", "start": 305, "end": 307, "annotation": null}, {"text": "avoid", "start": 308, "end": 313, "annotation": null}, {"text": "this", "start": 314, "end": 318, "annotation": null}, {"text": "problem", "start": 319, "end": 326, "annotation": null}, {"text": ",", "start": 326, "end": 327, "annotation": null}, {"text": "we", "start": 328, "end": 330, "annotation": null}, {"text": "propose", "start": 331, "end": 338, "annotation": null}, {"text": "a", "start": 339, "end": 340, "annotation": null}, {"text": "dye", "start": 341, "end": 344, "annotation": "DOPANT"}, {"text": "-", "start": 344, "end": 345, "annotation": null}, {"text": "doped", "start": 345, "end": 350, "annotation": null}, {"text": "cholesteric", "start": 351, "end": 362, "annotation": "BASEMAT"}, {"text": "LC", "start": 363, "end": 365, "annotation": "BASEMAT"}, {"text": "cell", "start": 366, "end": 370, "annotation": null}, {"text": "using", "start": 371, "end": 376, "annotation": null}, {"text": "vertical", "start": 377, "end": 385, "annotation": null}, {"text": "alignment", "start": 386, "end": 395, "annotation": null}, {"text": "layers", "start": 396, "end": 402, "annotation": null}, {"text": "instead", "start": 403, "end": 410, "annotation": null}, {"text": "of", "start": 411, "end": 413, "annotation": null}, {"text": "polymer", "start": 414, "end": 421, "annotation": null}, {"text": "structures", "start": 422, "end": 432, "annotation": null}, {"text": ".", "start": 432, "end": 433, "annotation": null}], [{"text": "We", "start": 434, "end": 436, "annotation": null}, {"text": "have", "start": 437, "end": 441, "annotation": null}, {"text": "shown", "start": 442, "end": 447, "annotation": null}, {"text": "that", "start": 448, "end": 452, "annotation": null}, {"text": "the", "start": 453, "end": 456, "annotation": null}, {"text": "focal", "start": 457, "end": 462, "annotation": null}, {"text": "-", "start": 462, "end": 463, "annotation": null}, {"text": "conic", "start": 463, "end": 468, "annotation": null}, {"text": "initial", "start": 469, "end": 476, "annotation": null}, {"text": "state", "start": 477, "end": 482, "annotation": null}, {"text": "can", "start": 483, "end": 486, "annotation": null}, {"text": "be", "start": 487, "end": 489, "annotation": null}, {"text": "obtained", "start": 490, "end": 498, "annotation": null}, {"text": "by", "start": 499, "end": 501, "annotation": null}, {"text": "homeotropic", "start": 502, "end": 513, "annotation": null}, {"text": "anchoring", "start": 514, "end": 523, "annotation": null}, {"text": "without", "start": 524, "end": 531, "annotation": null}, {"text": "the", "start": 532, "end": 535, "annotation": null}, {"text": "polymer", "start": 536, "end": 543, "annotation": null}, {"text": "structure", "start": 544, "end": 553, "annotation": null}, {"text": ".", "start": 553, "end": 554, "annotation": null}], [{"text": "The", "start": 555, "end": 558, "annotation": null}, {"text": "proposed", "start": 559, "end": 567, "annotation": null}, {"text": "device", "start": 568, "end": 574, "annotation": null}, {"text": "not", "start": 575, "end": 578, "annotation": null}, {"text": "only", "start": 579, "end": 583, "annotation": null}, {"text": "provides", "start": 584, "end": 592, "annotation": null}, {"text": "the", "start": 593, "end": 596, "annotation": null}, {"text": "black", "start": 597, "end": 602, "annotation": null}, {"text": "color", "start": 603, "end": 608, "annotation": null}, {"text": "but", "start": 609, "end": 612, "annotation": null}, {"text": "can", "start": 613, "end": 616, "annotation": null}, {"text": "also", "start": 617, "end": 621, "annotation": null}, {"text": "hide", "start": 622, "end": 626, "annotation": null}, {"text": "objects", "start": 627, "end": 634, "annotation": null}, {"text": "behind", "start": 635, "end": 641, "annotation": null}, {"text": "a", "start": 642, "end": 643, "annotation": null}, {"text": "display", "start": 644, "end": 651, "annotation": null}, {"text": "panel", "start": 652, "end": 657, "annotation": null}, {"text": "in", "start": 658, "end": 660, "annotation": null}, {"text": "the", "start": 661, "end": 664, "annotation": null}, {"text": "focal", "start": 665, "end": 670, "annotation": null}, {"text": "-", "start": 670, "end": 671, "annotation": null}, {"text": "conic", "start": 671, "end": 676, "annotation": null}, {"text": "initial", "start": 677, "end": 684, "annotation": null}, {"text": "state", "start": 685, "end": 690, "annotation": null}, {"text": "without", "start": 691, "end": 698, "annotation": null}, {"text": "the", "start": 699, "end": 702, "annotation": null}, {"text": "degradation", "start": 703, "end": 714, "annotation": null}, {"text": "of", "start": 715, "end": 717, "annotation": null}, {"text": "dichroic", "start": 718, "end": 726, "annotation": null}, {"text": "dyes", "start": 727, "end": 731, "annotation": null}, {"text": ".", "start": 731, "end": 732, "annotation": null}]], "meta": {"doi": "10.1016/j.displa.2017.10.002"}} +{"remark": "doping_annt1", "text": "We performed electrical and optical measurements on as-grown ZnO which exhibits n-type conductivity. So far, neither the origin of the residual conductivity nor the electrical properties of the responsible defects is fully understood. We investigated shallow and deep donors in ZnO materials grown with pulsed laser injection using admittance spectroscopy. We identifed shallow donors with ionization energies as low as 15meV which may be attributed to native defects. Annealing in nitrogen ambient enhances the conductivity by further lowering the ionization energy of the shallow donors. Using optically excited admittance spectroscopy we also found deep defects. They are strongly metastable and account for a significant part of the persistent photoconductivity in our ZnO materials.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "performed", "start": 3, "end": 12, "annotation": null}, {"text": "electrical", "start": 13, "end": 23, "annotation": null}, {"text": "and", "start": 24, "end": 27, "annotation": null}, {"text": "optical", "start": 28, "end": 35, "annotation": null}, {"text": "measurements", "start": 36, "end": 48, "annotation": null}, {"text": "on", "start": 49, "end": 51, "annotation": null}, {"text": "as-grown", "start": 52, "end": 60, "annotation": null}, {"text": "ZnO", "start": 61, "end": 64, "annotation": "BASEMAT"}, {"text": "which", "start": 65, "end": 70, "annotation": null}, {"text": "exhibits", "start": 71, "end": 79, "annotation": null}, {"text": "n", "start": 80, "end": 81, "annotation": "DOPANT"}, {"text": "-", "start": 81, "end": 82, "annotation": "DOPANT"}, {"text": "type", "start": 82, "end": 86, "annotation": "DOPANT"}, {"text": "conductivity", "start": 87, "end": 99, "annotation": null}, {"text": ".", "start": 99, "end": 100, "annotation": null}], [{"text": "So", "start": 101, "end": 103, "annotation": null}, {"text": "far", "start": 104, "end": 107, "annotation": null}, {"text": ",", "start": 107, "end": 108, "annotation": null}, {"text": "neither", "start": 109, "end": 116, "annotation": null}, {"text": "the", "start": 117, "end": 120, "annotation": null}, {"text": "origin", "start": 121, "end": 127, "annotation": null}, {"text": "of", "start": 128, "end": 130, "annotation": null}, {"text": "the", "start": 131, "end": 134, "annotation": null}, {"text": "residual", "start": 135, "end": 143, "annotation": null}, {"text": "conductivity", "start": 144, "end": 156, "annotation": null}, {"text": "nor", "start": 157, "end": 160, "annotation": null}, {"text": "the", "start": 161, "end": 164, "annotation": null}, {"text": "electrical", "start": 165, "end": 175, "annotation": null}, {"text": "properties", "start": 176, "end": 186, "annotation": null}, {"text": "of", "start": 187, "end": 189, "annotation": null}, {"text": "the", "start": 190, "end": 193, "annotation": null}, {"text": "responsible", "start": 194, "end": 205, "annotation": null}, {"text": "defects", "start": 206, "end": 213, "annotation": null}, {"text": "is", "start": 214, "end": 216, "annotation": null}, {"text": "fully", "start": 217, "end": 222, "annotation": null}, {"text": "understood", "start": 223, "end": 233, "annotation": null}, {"text": ".", "start": 233, "end": 234, "annotation": null}], [{"text": "We", "start": 235, "end": 237, "annotation": null}, {"text": "investigated", "start": 238, "end": 250, "annotation": null}, {"text": "shallow", "start": 251, "end": 258, "annotation": null}, {"text": "and", "start": 259, "end": 262, "annotation": null}, {"text": "deep", "start": 263, "end": 267, "annotation": null}, {"text": "donors", "start": 268, "end": 274, "annotation": "DOPANT"}, {"text": "in", "start": 275, "end": 277, "annotation": null}, {"text": "ZnO", "start": 278, "end": 281, "annotation": "BASEMAT"}, {"text": "materials", "start": 282, "end": 291, "annotation": null}, {"text": "grown", "start": 292, "end": 297, "annotation": null}, {"text": "with", "start": 298, "end": 302, "annotation": null}, {"text": "pulsed", "start": 303, "end": 309, "annotation": null}, {"text": "laser", "start": 310, "end": 315, "annotation": null}, {"text": "injection", "start": 316, "end": 325, "annotation": null}, {"text": "using", "start": 326, "end": 331, "annotation": null}, {"text": "admittance", "start": 332, "end": 342, "annotation": null}, {"text": "spectroscopy", "start": 343, "end": 355, "annotation": null}, {"text": ".", "start": 355, "end": 356, "annotation": null}], [{"text": "We", "start": 357, "end": 359, "annotation": null}, {"text": "identifed", "start": 360, "end": 369, "annotation": null}, {"text": "shallow", "start": 370, "end": 377, "annotation": null}, {"text": "donors", "start": 378, "end": 384, "annotation": null}, {"text": "with", "start": 385, "end": 389, "annotation": null}, {"text": "ionization", "start": 390, "end": 400, "annotation": null}, {"text": "energies", "start": 401, "end": 409, "annotation": null}, {"text": "as", "start": 410, "end": 412, "annotation": null}, {"text": "low", "start": 413, "end": 416, "annotation": null}, {"text": "as", "start": 417, "end": 419, "annotation": null}, {"text": "15meV", "start": 420, "end": 425, "annotation": null}, {"text": "which", "start": 426, "end": 431, "annotation": null}, {"text": "may", "start": 432, "end": 435, "annotation": null}, {"text": "be", "start": 436, "end": 438, "annotation": null}, {"text": "attributed", "start": 439, "end": 449, "annotation": null}, {"text": "to", "start": 450, "end": 452, "annotation": null}, {"text": "native", "start": 453, "end": 459, "annotation": null}, {"text": "defects", "start": 460, "end": 467, "annotation": null}, {"text": ".", "start": 467, "end": 468, "annotation": null}], [{"text": "Annealing", "start": 469, "end": 478, "annotation": null}, {"text": "in", "start": 479, "end": 481, "annotation": null}, {"text": "nitrogen", "start": 482, "end": 490, "annotation": null}, {"text": "ambient", "start": 491, "end": 498, "annotation": null}, {"text": "enhances", "start": 499, "end": 507, "annotation": null}, {"text": "the", "start": 508, "end": 511, "annotation": null}, {"text": "conductivity", "start": 512, "end": 524, "annotation": null}, {"text": "by", "start": 525, "end": 527, "annotation": null}, {"text": "further", "start": 528, "end": 535, "annotation": null}, {"text": "lowering", "start": 536, "end": 544, "annotation": null}, {"text": "the", "start": 545, "end": 548, "annotation": null}, {"text": "ionization", "start": 549, "end": 559, "annotation": null}, {"text": "energy", "start": 560, "end": 566, "annotation": null}, {"text": "of", "start": 567, "end": 569, "annotation": null}, {"text": "the", "start": 570, "end": 573, "annotation": null}, {"text": "shallow", "start": 574, "end": 581, "annotation": null}, {"text": "donors", "start": 582, "end": 588, "annotation": null}, {"text": ".", "start": 588, "end": 589, "annotation": null}], [{"text": "Using", "start": 590, "end": 595, "annotation": null}, {"text": "optically", "start": 596, "end": 605, "annotation": null}, {"text": "excited", "start": 606, "end": 613, "annotation": null}, {"text": "admittance", "start": 614, "end": 624, "annotation": null}, {"text": "spectroscopy", "start": 625, "end": 637, "annotation": null}, {"text": "we", "start": 638, "end": 640, "annotation": null}, {"text": "also", "start": 641, "end": 645, "annotation": null}, {"text": "found", "start": 646, "end": 651, "annotation": null}, {"text": "deep", "start": 652, "end": 656, "annotation": null}, {"text": "defects", "start": 657, "end": 664, "annotation": null}, {"text": ".", "start": 664, "end": 665, "annotation": null}], [{"text": "They", "start": 666, "end": 670, "annotation": null}, {"text": "are", "start": 671, "end": 674, "annotation": null}, {"text": "strongly", "start": 675, "end": 683, "annotation": null}, {"text": "metastable", "start": 684, "end": 694, "annotation": null}, {"text": "and", "start": 695, "end": 698, "annotation": null}, {"text": "account", "start": 699, "end": 706, "annotation": null}, {"text": "for", "start": 707, "end": 710, "annotation": null}, {"text": "a", "start": 711, "end": 712, "annotation": null}, {"text": "significant", "start": 713, "end": 724, "annotation": null}, {"text": "part", "start": 725, "end": 729, "annotation": null}, {"text": "of", "start": 730, "end": 732, "annotation": null}, {"text": "the", "start": 733, "end": 736, "annotation": null}, {"text": "persistent", "start": 737, "end": 747, "annotation": null}, {"text": "photoconductivity", "start": 748, "end": 765, "annotation": null}, {"text": "in", "start": 766, "end": 768, "annotation": null}, {"text": "our", "start": 769, "end": 772, "annotation": null}, {"text": "ZnO", "start": 773, "end": 776, "annotation": null}, {"text": "materials", "start": 777, "end": 786, "annotation": null}, {"text": ".", "start": 786, "end": 787, "annotation": null}]], "meta": {"doi": "10.1016/j.physb.2007.08.198"}} +{"remark": "doping_annt2", "text": "Thin films of intrinsic and Cd-doped ZnO with different cadmium concentrations were prepared by colloidal route technique associated with dip-coating onto glass substrates. Zinc acetate dehydrate, Cadmium acetate, methanol and ethanolamine were used as a starting materials, solvent and stabilizer, respectively. Nanostructured ZnO thin films with different concentrations of Cd doping (0, 2 and 10wt%) are annealed at 500\u00b0C for 2h. The films were characterized by different methods to understand their structural, optical and electrical properties such as the film surface is with a ganglia-like structure as observed by Environmental Scanning Electron Microscopy (ESEM). The films were characterized by grazing incidence X-ray diffraction, its comprise of ZnO nanocrystallites with hexagonal crystal structure with a presence of CdO nanocrystallites with cubic crystal structure in 10% Cd-doped ZnO film (ZnO/CdO nanocomposite), as revealed by means of X-ray diffraction (XRD), the Raman and the Rutherford backscattering spectrometry (RBS) confirmed that. All films exhibit a transmittance above 75\u201390% along the visible range up to 800nm and a sharp absorption onset about 375nm corresponding to the fundamental absorption edge 3.2eV (UV\u2013vis). Photoluminescence of the films showed an ultraviolet UV and visible emissions like violet, blue and green related to defects.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Thin", "start": 0, "end": 4, "annotation": null}, {"text": "films", "start": 5, "end": 10, "annotation": null}, {"text": "of", "start": 11, "end": 13, "annotation": null}, {"text": "intrinsic", "start": 14, "end": 23, "annotation": null}, {"text": "and", "start": 24, "end": 27, "annotation": null}, {"text": "Cd", "start": 28, "end": 30, "annotation": "DOPANT"}, {"text": "-", "start": 30, "end": 31, "annotation": null}, {"text": "doped", "start": 31, "end": 36, "annotation": null}, {"text": "ZnO", "start": 37, "end": 40, "annotation": "BASEMAT"}, {"text": "with", "start": 41, "end": 45, "annotation": null}, {"text": "different", "start": 46, "end": 55, "annotation": null}, {"text": "cadmium", "start": 56, "end": 63, "annotation": "DOPANT"}, {"text": "concentrations", "start": 64, "end": 78, "annotation": null}, {"text": "were", "start": 79, "end": 83, "annotation": null}, {"text": "prepared", "start": 84, "end": 92, "annotation": null}, {"text": "by", "start": 93, "end": 95, "annotation": null}, {"text": "colloidal", "start": 96, "end": 105, "annotation": null}, {"text": "route", "start": 106, "end": 111, "annotation": null}, {"text": "technique", "start": 112, "end": 121, "annotation": null}, {"text": "associated", "start": 122, "end": 132, "annotation": null}, {"text": "with", "start": 133, "end": 137, "annotation": null}, {"text": "dip", "start": 138, "end": 141, "annotation": null}, {"text": "-", "start": 141, "end": 142, "annotation": null}, {"text": "coating", "start": 142, "end": 149, "annotation": null}, {"text": "onto", "start": 150, "end": 154, "annotation": null}, {"text": "glass", "start": 155, "end": 160, "annotation": null}, {"text": "substrates", "start": 161, "end": 171, "annotation": null}, {"text": ".", "start": 171, "end": 172, "annotation": null}], [{"text": "Zinc", "start": 173, "end": 177, "annotation": null}, {"text": "acetate", "start": 178, "end": 185, "annotation": null}, {"text": "dehydrate", "start": 186, "end": 195, "annotation": null}, {"text": ",", "start": 195, "end": 196, "annotation": null}, {"text": "Cadmium", "start": 197, "end": 204, "annotation": null}, {"text": "acetate", "start": 205, "end": 212, "annotation": null}, {"text": ",", "start": 212, "end": 213, "annotation": null}, {"text": "methanol", "start": 214, "end": 222, "annotation": null}, {"text": "and", "start": 223, "end": 226, "annotation": null}, {"text": "ethanolamine", "start": 227, "end": 239, "annotation": null}, {"text": "were", "start": 240, "end": 244, "annotation": null}, {"text": "used", "start": 245, "end": 249, "annotation": null}, {"text": "as", "start": 250, "end": 252, "annotation": null}, {"text": "a", "start": 253, "end": 254, "annotation": null}, {"text": "starting", "start": 255, "end": 263, "annotation": null}, {"text": "materials", "start": 264, "end": 273, "annotation": null}, {"text": ",", "start": 273, "end": 274, "annotation": null}, {"text": "solvent", "start": 275, "end": 282, "annotation": null}, {"text": "and", "start": 283, "end": 286, "annotation": null}, {"text": "stabilizer", "start": 287, "end": 297, "annotation": null}, {"text": ",", "start": 297, "end": 298, "annotation": null}, {"text": "respectively", "start": 299, "end": 311, "annotation": null}, {"text": ".", "start": 311, "end": 312, "annotation": null}], [{"text": "Nanostructured", "start": 313, "end": 327, "annotation": null}, {"text": "ZnO", "start": 328, "end": 331, "annotation": "BASEMAT"}, {"text": "thin", "start": 332, "end": 336, "annotation": null}, {"text": "films", "start": 337, "end": 342, "annotation": null}, {"text": "with", "start": 343, "end": 347, "annotation": null}, {"text": "different", "start": 348, "end": 357, "annotation": null}, {"text": "concentrations", "start": 358, "end": 372, "annotation": null}, {"text": "of", "start": 373, "end": 375, "annotation": null}, {"text": "Cd", "start": 376, "end": 378, "annotation": "DOPANT"}, {"text": "doping", "start": 379, "end": 385, "annotation": null}, {"text": "(", "start": 386, "end": 387, "annotation": null}, {"text": "0", "start": 387, "end": 388, "annotation": "DOPMODQ"}, {"text": ",", "start": 388, "end": 389, "annotation": "DOPMODQ"}, {"text": "2", "start": 390, "end": 391, "annotation": "DOPMODQ"}, {"text": "and", "start": 392, "end": 395, "annotation": "DOPMODQ"}, {"text": "10wt", "start": 396, "end": 400, "annotation": "DOPMODQ"}, {"text": "%", "start": 400, "end": 401, "annotation": "DOPMODQ"}, {"text": ")", "start": 401, "end": 402, "annotation": null}, {"text": "are", "start": 403, "end": 406, "annotation": null}, {"text": "annealed", "start": 407, "end": 415, "annotation": null}, {"text": "at", "start": 416, "end": 418, "annotation": null}, {"text": "500", "start": 419, "end": 422, "annotation": null}, {"text": "\u00b0", "start": 422, "end": 423, "annotation": null}, {"text": "C", "start": 423, "end": 424, "annotation": null}, {"text": "for", "start": 425, "end": 428, "annotation": null}, {"text": "2h", "start": 429, "end": 431, "annotation": null}, {"text": ".", "start": 431, "end": 432, "annotation": null}], [{"text": "The", "start": 433, "end": 436, "annotation": null}, {"text": "films", "start": 437, "end": 442, "annotation": null}, {"text": "were", "start": 443, "end": 447, "annotation": null}, {"text": "characterized", "start": 448, "end": 461, "annotation": null}, {"text": "by", "start": 462, "end": 464, "annotation": null}, {"text": "different", "start": 465, "end": 474, "annotation": null}, {"text": "methods", "start": 475, "end": 482, "annotation": null}, {"text": "to", "start": 483, "end": 485, "annotation": null}, {"text": "understand", "start": 486, "end": 496, "annotation": null}, {"text": "their", "start": 497, "end": 502, "annotation": null}, {"text": "structural", "start": 503, "end": 513, "annotation": null}, {"text": ",", "start": 513, "end": 514, "annotation": null}, {"text": "optical", "start": 515, "end": 522, "annotation": null}, {"text": "and", "start": 523, "end": 526, "annotation": null}, {"text": "electrical", "start": 527, "end": 537, "annotation": null}, {"text": "properties", "start": 538, "end": 548, "annotation": null}, {"text": "such", "start": 549, "end": 553, "annotation": null}, {"text": "as", "start": 554, "end": 556, "annotation": null}, {"text": "the", "start": 557, "end": 560, "annotation": null}, {"text": "film", "start": 561, "end": 565, "annotation": null}, {"text": "surface", "start": 566, "end": 573, "annotation": null}, {"text": "is", "start": 574, "end": 576, "annotation": null}, {"text": "with", "start": 577, "end": 581, "annotation": null}, {"text": "a", "start": 582, "end": 583, "annotation": null}, {"text": "ganglia", "start": 584, "end": 591, "annotation": null}, {"text": "-", "start": 591, "end": 592, "annotation": null}, {"text": "like", "start": 592, "end": 596, "annotation": null}, {"text": "structure", "start": 597, "end": 606, "annotation": null}, {"text": "as", "start": 607, "end": 609, "annotation": null}, {"text": "observed", "start": 610, "end": 618, "annotation": null}, {"text": "by", "start": 619, "end": 621, "annotation": null}, {"text": "Environmental", "start": 622, "end": 635, "annotation": null}, {"text": "Scanning", "start": 636, "end": 644, "annotation": null}, {"text": "Electron", "start": 645, "end": 653, "annotation": null}, {"text": "Microscopy", "start": 654, "end": 664, "annotation": null}, {"text": "(", "start": 665, "end": 666, "annotation": null}, {"text": "ESEM", "start": 666, "end": 670, "annotation": null}, {"text": ")", "start": 670, "end": 671, "annotation": null}, {"text": ".", "start": 671, "end": 672, "annotation": null}], [{"text": "The", "start": 673, "end": 676, "annotation": null}, {"text": "films", "start": 677, "end": 682, "annotation": null}, {"text": "were", "start": 683, "end": 687, "annotation": null}, {"text": "characterized", "start": 688, "end": 701, "annotation": null}, {"text": "by", "start": 702, "end": 704, "annotation": null}, {"text": "grazing", "start": 705, "end": 712, "annotation": null}, {"text": "incidence", "start": 713, "end": 722, "annotation": null}, {"text": "X-ray", "start": 723, "end": 728, "annotation": null}, {"text": "diffraction", "start": 729, "end": 740, "annotation": null}, {"text": ",", "start": 740, "end": 741, "annotation": null}, {"text": "its", "start": 742, "end": 745, "annotation": null}, {"text": "comprise", "start": 746, "end": 754, "annotation": null}, {"text": "of", "start": 755, "end": 757, "annotation": null}, {"text": "ZnO", "start": 758, "end": 761, "annotation": null}, {"text": "nanocrystallites", "start": 762, "end": 778, "annotation": null}, {"text": "with", "start": 779, "end": 783, "annotation": null}, {"text": "hexagonal", "start": 784, "end": 793, "annotation": null}, {"text": "crystal", "start": 794, "end": 801, "annotation": null}, {"text": "structure", "start": 802, "end": 811, "annotation": null}, {"text": "with", "start": 812, "end": 816, "annotation": null}, {"text": "a", "start": 817, "end": 818, "annotation": null}, {"text": "presence", "start": 819, "end": 827, "annotation": null}, {"text": "of", "start": 828, "end": 830, "annotation": null}, {"text": "CdO", "start": 831, "end": 834, "annotation": null}, {"text": "nanocrystallites", "start": 835, "end": 851, "annotation": null}, {"text": "with", "start": 852, "end": 856, "annotation": null}, {"text": "cubic", "start": 857, "end": 862, "annotation": null}, {"text": "crystal", "start": 863, "end": 870, "annotation": null}, {"text": "structure", "start": 871, "end": 880, "annotation": null}, {"text": "in", "start": 881, "end": 883, "annotation": null}, {"text": "10", "start": 884, "end": 886, "annotation": "DOPMODQ"}, {"text": "%", "start": 886, "end": 887, "annotation": "DOPMODQ"}, {"text": "Cd", "start": 888, "end": 890, "annotation": "DOPANT"}, {"text": "-", "start": 890, "end": 891, "annotation": null}, {"text": "doped", "start": 891, "end": 896, "annotation": null}, {"text": "ZnO", "start": 897, "end": 900, "annotation": "BASEMAT"}, {"text": "film", "start": 901, "end": 905, "annotation": null}, {"text": "(", "start": 906, "end": 907, "annotation": null}, {"text": "ZnO", "start": 907, "end": 910, "annotation": "BASEMAT"}, {"text": "/", "start": 910, "end": 911, "annotation": null}, {"text": "CdO", "start": 911, "end": 914, "annotation": "BASEMAT"}, {"text": "nanocomposite", "start": 915, "end": 928, "annotation": "BASEMAT"}, {"text": ")", "start": 928, "end": 929, "annotation": null}, {"text": ",", "start": 929, "end": 930, "annotation": null}, {"text": "as", "start": 931, "end": 933, "annotation": null}, {"text": "revealed", "start": 934, "end": 942, "annotation": null}, {"text": "by", "start": 943, "end": 945, "annotation": null}, {"text": "means", "start": 946, "end": 951, "annotation": null}, {"text": "of", "start": 952, "end": 954, "annotation": null}, {"text": "X-ray", "start": 955, "end": 960, "annotation": null}, {"text": "diffraction", "start": 961, "end": 972, "annotation": null}, {"text": "(", "start": 973, "end": 974, "annotation": null}, {"text": "XRD", "start": 974, "end": 977, "annotation": null}, {"text": ")", "start": 977, "end": 978, "annotation": null}, {"text": ",", "start": 978, "end": 979, "annotation": null}, {"text": "the", "start": 980, "end": 983, "annotation": null}, {"text": "Raman", "start": 984, "end": 989, "annotation": null}, {"text": "and", "start": 990, "end": 993, "annotation": null}, {"text": "the", "start": 994, "end": 997, "annotation": null}, {"text": "Rutherford", "start": 998, "end": 1008, "annotation": null}, {"text": "backscattering", "start": 1009, "end": 1023, "annotation": null}, {"text": "spectrometry", "start": 1024, "end": 1036, "annotation": null}, {"text": "(", "start": 1037, "end": 1038, "annotation": null}, {"text": "RBS", "start": 1038, "end": 1041, "annotation": null}, {"text": ")", "start": 1041, "end": 1042, "annotation": null}, {"text": "confirmed", "start": 1043, "end": 1052, "annotation": null}, {"text": "that", "start": 1053, "end": 1057, "annotation": null}, {"text": ".", "start": 1057, "end": 1058, "annotation": null}], [{"text": "All", "start": 1059, "end": 1062, "annotation": null}, {"text": "films", "start": 1063, "end": 1068, "annotation": null}, {"text": "exhibit", "start": 1069, "end": 1076, "annotation": null}, {"text": "a", "start": 1077, "end": 1078, "annotation": null}, {"text": "transmittance", "start": 1079, "end": 1092, "annotation": null}, {"text": "above", "start": 1093, "end": 1098, "annotation": null}, {"text": "75", "start": 1099, "end": 1101, "annotation": null}, {"text": "\u2013", "start": 1101, "end": 1102, "annotation": null}, {"text": "90", "start": 1102, "end": 1104, "annotation": null}, {"text": "%", "start": 1104, "end": 1105, "annotation": null}, {"text": "along", "start": 1106, "end": 1111, "annotation": null}, {"text": "the", "start": 1112, "end": 1115, "annotation": null}, {"text": "visible", "start": 1116, "end": 1123, "annotation": null}, {"text": "range", "start": 1124, "end": 1129, "annotation": null}, {"text": "up", "start": 1130, "end": 1132, "annotation": null}, {"text": "to", "start": 1133, "end": 1135, "annotation": null}, {"text": "800", "start": 1136, "end": 1139, "annotation": null}, {"text": "nm", "start": 1139, "end": 1141, "annotation": null}, {"text": "and", "start": 1142, "end": 1145, "annotation": null}, {"text": "a", "start": 1146, "end": 1147, "annotation": null}, {"text": "sharp", "start": 1148, "end": 1153, "annotation": null}, {"text": "absorption", "start": 1154, "end": 1164, "annotation": null}, {"text": "onset", "start": 1165, "end": 1170, "annotation": null}, {"text": "about", "start": 1171, "end": 1176, "annotation": null}, {"text": "375", "start": 1177, "end": 1180, "annotation": null}, {"text": "nm", "start": 1180, "end": 1182, "annotation": null}, {"text": "corresponding", "start": 1183, "end": 1196, "annotation": null}, {"text": "to", "start": 1197, "end": 1199, "annotation": null}, {"text": "the", "start": 1200, "end": 1203, "annotation": null}, {"text": "fundamental", "start": 1204, "end": 1215, "annotation": null}, {"text": "absorption", "start": 1216, "end": 1226, "annotation": null}, {"text": "edge", "start": 1227, "end": 1231, "annotation": null}, {"text": "3.2eV", "start": 1232, "end": 1237, "annotation": null}, {"text": "(", "start": 1238, "end": 1239, "annotation": null}, {"text": "UV", "start": 1239, "end": 1241, "annotation": null}, {"text": "\u2013", "start": 1241, "end": 1242, "annotation": null}, {"text": "vis", "start": 1242, "end": 1245, "annotation": null}, {"text": ")", "start": 1245, "end": 1246, "annotation": null}, {"text": ".", "start": 1246, "end": 1247, "annotation": null}], [{"text": "Photoluminescence", "start": 1248, "end": 1265, "annotation": null}, {"text": "of", "start": 1266, "end": 1268, "annotation": null}, {"text": "the", "start": 1269, "end": 1272, "annotation": null}, {"text": "films", "start": 1273, "end": 1278, "annotation": null}, {"text": "showed", "start": 1279, "end": 1285, "annotation": null}, {"text": "an", "start": 1286, "end": 1288, "annotation": null}, {"text": "ultraviolet", "start": 1289, "end": 1300, "annotation": null}, {"text": "UV", "start": 1301, "end": 1303, "annotation": null}, {"text": "and", "start": 1304, "end": 1307, "annotation": null}, {"text": "visible", "start": 1308, "end": 1315, "annotation": null}, {"text": "emissions", "start": 1316, "end": 1325, "annotation": null}, {"text": "like", "start": 1326, "end": 1330, "annotation": null}, {"text": "violet", "start": 1331, "end": 1337, "annotation": null}, {"text": ",", "start": 1337, "end": 1338, "annotation": null}, {"text": "blue", "start": 1339, "end": 1343, "annotation": null}, {"text": "and", "start": 1344, "end": 1347, "annotation": null}, {"text": "green", "start": 1348, "end": 1353, "annotation": null}, {"text": "related", "start": 1354, "end": 1361, "annotation": null}, {"text": "to", "start": 1362, "end": 1364, "annotation": null}, {"text": "defects", "start": 1365, "end": 1372, "annotation": null}, {"text": ".", "start": 1372, "end": 1373, "annotation": null}]], "meta": {"doi": "10.1016/j.ijleo.2016.05.006"}} +{"remark": "doping_annt3", "text": "In this article, we study the possible relation between the electronic and magnetic structures of the TiO2/LaAlO3 interface and the unexpected magnetism found in undoped TiO2 films grown on LaAlO3. We concentrate on the role played by structural relaxation and interfacial oxygen vacancies. LaAlO3 has a layered structure along the (001) direction with alternating LaO and AlO2 planes, with nominal charges of +1 and \u22121, respectively. As a consequence of that, an oxygen-deficient TiO2 film with anatase structure will grow preferently on the AlO2 surface layer. We have therefore performed ab initio calculations for superlattices with TiO2/AlO2 interfaces with interfacial oxygen vacancies. Our main results are that vacancies lead to a change in the valence state of neighbor Ti atoms but not necessarily to a magnetic solution and that the appearance of magnetism depends also on structural details, such as second neighbor positions. These results are obtained using both the local spin density approximation (LSDA) and LSDA+U approximations.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "In", "start": 0, "end": 2, "annotation": null}, {"text": "this", "start": 3, "end": 7, "annotation": null}, {"text": "article", "start": 8, "end": 15, "annotation": null}, {"text": ",", "start": 15, "end": 16, "annotation": null}, {"text": "we", "start": 17, "end": 19, "annotation": null}, {"text": "study", "start": 20, "end": 25, "annotation": null}, {"text": "the", "start": 26, "end": 29, "annotation": null}, {"text": "possible", "start": 30, "end": 38, "annotation": null}, {"text": "relation", "start": 39, "end": 47, "annotation": null}, {"text": "between", "start": 48, "end": 55, "annotation": null}, {"text": "the", "start": 56, "end": 59, "annotation": null}, {"text": "electronic", "start": 60, "end": 70, "annotation": null}, {"text": "and", "start": 71, "end": 74, "annotation": null}, {"text": "magnetic", "start": 75, "end": 83, "annotation": null}, {"text": "structures", "start": 84, "end": 94, "annotation": null}, {"text": "of", "start": 95, "end": 97, "annotation": null}, {"text": "the", "start": 98, "end": 101, "annotation": null}, {"text": "TiO2", "start": 102, "end": 106, "annotation": null}, {"text": "/", "start": 106, "end": 107, "annotation": null}, {"text": "LaAlO3", "start": 107, "end": 113, "annotation": null}, {"text": "interface", "start": 114, "end": 123, "annotation": null}, {"text": "and", "start": 124, "end": 127, "annotation": null}, {"text": "the", "start": 128, "end": 131, "annotation": null}, {"text": "unexpected", "start": 132, "end": 142, "annotation": null}, {"text": "magnetism", "start": 143, "end": 152, "annotation": null}, {"text": "found", "start": 153, "end": 158, "annotation": null}, {"text": "in", "start": 159, "end": 161, "annotation": null}, {"text": "undoped", "start": 162, "end": 169, "annotation": null}, {"text": "TiO2", "start": 170, "end": 174, "annotation": null}, {"text": "films", "start": 175, "end": 180, "annotation": null}, {"text": "grown", "start": 181, "end": 186, "annotation": null}, {"text": "on", "start": 187, "end": 189, "annotation": null}, {"text": "LaAlO3", "start": 190, "end": 196, "annotation": null}, {"text": ".", "start": 196, "end": 197, "annotation": null}], [{"text": "We", "start": 198, "end": 200, "annotation": null}, {"text": "concentrate", "start": 201, "end": 212, "annotation": null}, {"text": "on", "start": 213, "end": 215, "annotation": null}, {"text": "the", "start": 216, "end": 219, "annotation": null}, {"text": "role", "start": 220, "end": 224, "annotation": null}, {"text": "played", "start": 225, "end": 231, "annotation": null}, {"text": "by", "start": 232, "end": 234, "annotation": null}, {"text": "structural", "start": 235, "end": 245, "annotation": null}, {"text": "relaxation", "start": 246, "end": 256, "annotation": null}, {"text": "and", "start": 257, "end": 260, "annotation": null}, {"text": "interfacial", "start": 261, "end": 272, "annotation": null}, {"text": "oxygen", "start": 273, "end": 279, "annotation": null}, {"text": "vacancies", "start": 280, "end": 289, "annotation": null}, {"text": ".", "start": 289, "end": 290, "annotation": null}], [{"text": "LaAlO3", "start": 291, "end": 297, "annotation": null}, {"text": "has", "start": 298, "end": 301, "annotation": null}, {"text": "a", "start": 302, "end": 303, "annotation": null}, {"text": "layered", "start": 304, "end": 311, "annotation": null}, {"text": "structure", "start": 312, "end": 321, "annotation": null}, {"text": "along", "start": 322, "end": 327, "annotation": null}, {"text": "the", "start": 328, "end": 331, "annotation": null}, {"text": "(", "start": 332, "end": 333, "annotation": null}, {"text": "001", "start": 333, "end": 336, "annotation": null}, {"text": ")", "start": 336, "end": 337, "annotation": null}, {"text": "direction", "start": 338, "end": 347, "annotation": null}, {"text": "with", "start": 348, "end": 352, "annotation": null}, {"text": "alternating", "start": 353, "end": 364, "annotation": null}, {"text": "LaO", "start": 365, "end": 368, "annotation": null}, {"text": "and", "start": 369, "end": 372, "annotation": null}, {"text": "AlO2", "start": 373, "end": 377, "annotation": null}, {"text": "planes", "start": 378, "end": 384, "annotation": null}, {"text": ",", "start": 384, "end": 385, "annotation": null}, {"text": "with", "start": 386, "end": 390, "annotation": null}, {"text": "nominal", "start": 391, "end": 398, "annotation": null}, {"text": "charges", "start": 399, "end": 406, "annotation": null}, {"text": "of", "start": 407, "end": 409, "annotation": null}, {"text": "+", "start": 410, "end": 411, "annotation": null}, {"text": "1", "start": 411, "end": 412, "annotation": null}, {"text": "and", "start": 413, "end": 416, "annotation": null}, {"text": "\u2212", "start": 417, "end": 418, "annotation": null}, {"text": "1", "start": 418, "end": 419, "annotation": null}, {"text": ",", "start": 419, "end": 420, "annotation": null}, {"text": "respectively", "start": 421, "end": 433, "annotation": null}, {"text": ".", "start": 433, "end": 434, "annotation": null}], [{"text": "As", "start": 435, "end": 437, "annotation": null}, {"text": "a", "start": 438, "end": 439, "annotation": null}, {"text": "consequence", "start": 440, "end": 451, "annotation": null}, {"text": "of", "start": 452, "end": 454, "annotation": null}, {"text": "that", "start": 455, "end": 459, "annotation": null}, {"text": ",", "start": 459, "end": 460, "annotation": null}, {"text": "an", "start": 461, "end": 463, "annotation": null}, {"text": "oxygen", "start": 464, "end": 470, "annotation": null}, {"text": "-", "start": 470, "end": 471, "annotation": null}, {"text": "deficient", "start": 471, "end": 480, "annotation": null}, {"text": "TiO2", "start": 481, "end": 485, "annotation": null}, {"text": "film", "start": 486, "end": 490, "annotation": null}, {"text": "with", "start": 491, "end": 495, "annotation": null}, {"text": "anatase", "start": 496, "end": 503, "annotation": null}, {"text": "structure", "start": 504, "end": 513, "annotation": null}, {"text": "will", "start": 514, "end": 518, "annotation": null}, {"text": "grow", "start": 519, "end": 523, "annotation": null}, {"text": "preferently", "start": 524, "end": 535, "annotation": null}, {"text": "on", "start": 536, "end": 538, "annotation": null}, {"text": "the", "start": 539, "end": 542, "annotation": null}, {"text": "AlO2", "start": 543, "end": 547, "annotation": null}, {"text": "surface", "start": 548, "end": 555, "annotation": null}, {"text": "layer", "start": 556, "end": 561, "annotation": null}, {"text": ".", "start": 561, "end": 562, "annotation": null}], [{"text": "We", "start": 563, "end": 565, "annotation": null}, {"text": "have", "start": 566, "end": 570, "annotation": null}, {"text": "therefore", "start": 571, "end": 580, "annotation": null}, {"text": "performed", "start": 581, "end": 590, "annotation": null}, {"text": "ab", "start": 591, "end": 593, "annotation": null}, {"text": "initio", "start": 594, "end": 600, "annotation": null}, {"text": "calculations", "start": 601, "end": 613, "annotation": null}, {"text": "for", "start": 614, "end": 617, "annotation": null}, {"text": "superlattices", "start": 618, "end": 631, "annotation": null}, {"text": "with", "start": 632, "end": 636, "annotation": null}, {"text": "TiO2", "start": 637, "end": 641, "annotation": null}, {"text": "/", "start": 641, "end": 642, "annotation": null}, {"text": "AlO2", "start": 642, "end": 646, "annotation": null}, {"text": "interfaces", "start": 647, "end": 657, "annotation": null}, {"text": "with", "start": 658, "end": 662, "annotation": null}, {"text": "interfacial", "start": 663, "end": 674, "annotation": null}, {"text": "oxygen", "start": 675, "end": 681, "annotation": null}, {"text": "vacancies", "start": 682, "end": 691, "annotation": null}, {"text": ".", "start": 691, "end": 692, "annotation": null}], [{"text": "Our", "start": 693, "end": 696, "annotation": null}, {"text": "main", "start": 697, "end": 701, "annotation": null}, {"text": "results", "start": 702, "end": 709, "annotation": null}, {"text": "are", "start": 710, "end": 713, "annotation": null}, {"text": "that", "start": 714, "end": 718, "annotation": null}, {"text": "vacancies", "start": 719, "end": 728, "annotation": null}, {"text": "lead", "start": 729, "end": 733, "annotation": null}, {"text": "to", "start": 734, "end": 736, "annotation": null}, {"text": "a", "start": 737, "end": 738, "annotation": null}, {"text": "change", "start": 739, "end": 745, "annotation": null}, {"text": "in", "start": 746, "end": 748, "annotation": null}, {"text": "the", "start": 749, "end": 752, "annotation": null}, {"text": "valence", "start": 753, "end": 760, "annotation": null}, {"text": "state", "start": 761, "end": 766, "annotation": null}, {"text": "of", "start": 767, "end": 769, "annotation": null}, {"text": "neighbor", "start": 770, "end": 778, "annotation": null}, {"text": "Ti", "start": 779, "end": 781, "annotation": null}, {"text": "atoms", "start": 782, "end": 787, "annotation": null}, {"text": "but", "start": 788, "end": 791, "annotation": null}, {"text": "not", "start": 792, "end": 795, "annotation": null}, {"text": "necessarily", "start": 796, "end": 807, "annotation": null}, {"text": "to", "start": 808, "end": 810, "annotation": null}, {"text": "a", "start": 811, "end": 812, "annotation": null}, {"text": "magnetic", "start": 813, "end": 821, "annotation": null}, {"text": "solution", "start": 822, "end": 830, "annotation": null}, {"text": "and", "start": 831, "end": 834, "annotation": null}, {"text": "that", "start": 835, "end": 839, "annotation": null}, {"text": "the", "start": 840, "end": 843, "annotation": null}, {"text": "appearance", "start": 844, "end": 854, "annotation": null}, {"text": "of", "start": 855, "end": 857, "annotation": null}, {"text": "magnetism", "start": 858, "end": 867, "annotation": null}, {"text": "depends", "start": 868, "end": 875, "annotation": null}, {"text": "also", "start": 876, "end": 880, "annotation": null}, {"text": "on", "start": 881, "end": 883, "annotation": null}, {"text": "structural", "start": 884, "end": 894, "annotation": null}, {"text": "details", "start": 895, "end": 902, "annotation": null}, {"text": ",", "start": 902, "end": 903, "annotation": null}, {"text": "such", "start": 904, "end": 908, "annotation": null}, {"text": "as", "start": 909, "end": 911, "annotation": null}, {"text": "second", "start": 912, "end": 918, "annotation": null}, {"text": "neighbor", "start": 919, "end": 927, "annotation": null}, {"text": "positions", "start": 928, "end": 937, "annotation": null}, {"text": ".", "start": 937, "end": 938, "annotation": null}], [{"text": "These", "start": 939, "end": 944, "annotation": null}, {"text": "results", "start": 945, "end": 952, "annotation": null}, {"text": "are", "start": 953, "end": 956, "annotation": null}, {"text": "obtained", "start": 957, "end": 965, "annotation": null}, {"text": "using", "start": 966, "end": 971, "annotation": null}, {"text": "both", "start": 972, "end": 976, "annotation": null}, {"text": "the", "start": 977, "end": 980, "annotation": null}, {"text": "local", "start": 981, "end": 986, "annotation": null}, {"text": "spin", "start": 987, "end": 991, "annotation": null}, {"text": "density", "start": 992, "end": 999, "annotation": null}, {"text": "approximation", "start": 1000, "end": 1013, "annotation": null}, {"text": "(", "start": 1014, "end": 1015, "annotation": null}, {"text": "LSDA", "start": 1015, "end": 1019, "annotation": null}, {"text": ")", "start": 1019, "end": 1020, "annotation": null}, {"text": "and", "start": 1021, "end": 1024, "annotation": null}, {"text": "LSDA", "start": 1025, "end": 1029, "annotation": null}, {"text": "+", "start": 1029, "end": 1030, "annotation": null}, {"text": "U", "start": 1030, "end": 1031, "annotation": null}, {"text": "approximations", "start": 1032, "end": 1046, "annotation": null}, {"text": ".", "start": 1046, "end": 1047, "annotation": null}]], "meta": {"doi": "10.1007/s10853-010-4231-z"}} {"text": "CaZr(PO4)2:Mn2+ and CaZr(PO4)2:Mn2+, Sm3+ phosphors are synthesized by high-temperature solid state reaction method in air. CaZr(PO4)2:Mn2+ phosphor shows green emission and its broad emission band peaking at ~545\u00a0nm within the range 470\u2013650\u00a0nm is attributed to the 4T1(G)\u00a0\u2192\u00a06A1(6S) transition of Mn2+ ion. The optimal Mn2+ doping concentration is ~5\u00a0mol% in CaZr(PO4)2:Mn2+ phosphor. CaZr(PO4)2:Mn2+, Sm3+ phosphor with excitation 399\u00a0nm emits reddish-orange light, and it shows a systematically varied hue from green to yellow with excitation 405\u00a0nm by changing Sm3+ and Mn2+ ions concentration. The luminous mechanism of CaZr(PO4)2:Mn2+, Sm3+ phosphor is analyzed and explained by the simplified energy level diagrams of Mn2+ and Sm3+ ions in CaZr(PO4)2:Mn2+, Sm3+ phosphor. The experimental results are helpful to develop new Mn2+/Sm3+-doped materials.", "meta": {"doi": "10.1007/s10854-016-5561-7"}, "_input_hash": 1701811744, "_task_hash": 1569013034, "tokens": [[{"text": "CaZr(PO4)2", "start": 0, "end": 10, "id": 0, "annotation": "BASEMAT"}, {"text": ":", "start": 11, "end": 12, "id": 1, "annotation": null}, {"text": "Mn2", "start": 13, "end": 16, "id": 2, "annotation": "DOPANT"}, {"text": "+", "start": 17, "end": 18, "id": 3, "annotation": "DOPANT"}, {"text": "and", "start": 19, "end": 22, "id": 4, "annotation": null}, {"text": "CaZr(PO4)2", "start": 23, "end": 33, "id": 5, "annotation": "BASEMAT"}, {"text": ":", "start": 34, "end": 35, "id": 6, "annotation": null}, {"text": "Mn2", "start": 36, "end": 39, "id": 7, "annotation": "DOPANT"}, {"text": "+", "start": 40, "end": 41, "id": 8, "annotation": "DOPANT"}, {"text": ",", "start": 42, "end": 43, "id": 9, "annotation": null}, {"text": "Sm3", "start": 44, "end": 47, "id": 10, "annotation": "DOPANT"}, {"text": "+", "start": 48, "end": 49, "id": 11, "annotation": "DOPANT"}, {"text": "phosphors", "start": 50, "end": 59, "id": 12, "annotation": null}, {"text": "are", "start": 60, "end": 63, "id": 13, "annotation": null}, {"text": "synthesized", "start": 64, "end": 75, "id": 14, "annotation": null}, {"text": "by", "start": 76, "end": 78, "id": 15, "annotation": null}, {"text": "high", "start": 79, "end": 83, "id": 16, "annotation": null}, {"text": "-", "start": 84, "end": 85, "id": 17, "annotation": null}, {"text": "temperature", "start": 86, "end": 97, "id": 18, "annotation": null}, {"text": "solid", "start": 98, "end": 103, "id": 19, "annotation": null}, {"text": "state", "start": 104, "end": 109, "id": 20, "annotation": null}, {"text": "reaction", "start": 110, "end": 118, "id": 21, "annotation": null}, {"text": "method", "start": 119, "end": 125, "id": 22, "annotation": null}, {"text": "in", "start": 126, "end": 128, "id": 23, "annotation": null}, {"text": "air", "start": 129, "end": 132, "id": 24, "annotation": null}, {"text": ".", "start": 133, "end": 134, "id": 25, "annotation": null}], [{"text": "CaZr(PO4)2", "start": 135, "end": 145, "id": 26, "annotation": "BASEMAT"}, {"text": ":", "start": 146, "end": 147, "id": 27, "annotation": null}, {"text": "Mn2", "start": 148, "end": 151, "id": 28, "annotation": "DOPANT"}, {"text": "+", "start": 152, "end": 153, "id": 29, "annotation": "DOPANT"}, {"text": "phosphor", "start": 154, "end": 162, "id": 30, "annotation": null}, {"text": "shows", "start": 163, "end": 168, "id": 31, "annotation": null}, {"text": "green", "start": 169, "end": 174, "id": 32, "annotation": null}, {"text": "emission", "start": 175, "end": 183, "id": 33, "annotation": null}, {"text": "and", "start": 184, "end": 187, "id": 34, "annotation": null}, {"text": "its", "start": 188, "end": 191, "id": 35, "annotation": null}, {"text": "broad", "start": 192, "end": 197, "id": 36, "annotation": null}, {"text": "emission", "start": 198, "end": 206, "id": 37, "annotation": null}, {"text": "band", "start": 207, "end": 211, "id": 38, "annotation": null}, {"text": "peaking", "start": 212, "end": 219, "id": 39, "annotation": null}, {"text": "at", "start": 220, "end": 222, "id": 40, "annotation": null}, {"text": "~545", "start": 223, "end": 227, "id": 41, "annotation": null}, {"text": "nm", "start": 228, "end": 230, "id": 43, "annotation": null}, {"text": "within", "start": 231, "end": 237, "id": 44, "annotation": null}, {"text": "the", "start": 238, "end": 241, "id": 45, "annotation": null}, {"text": "range", "start": 242, "end": 247, "id": 46, "annotation": null}, {"text": "470\u2013650", "start": 248, "end": 255, "id": 47, "annotation": null}, {"text": "nm", "start": 256, "end": 258, "id": 49, "annotation": null}, {"text": "is", "start": 259, "end": 261, "id": 50, "annotation": null}, {"text": "attributed", "start": 262, "end": 272, "id": 51, "annotation": null}, {"text": "to", "start": 273, "end": 275, "id": 52, "annotation": null}, {"text": "the", "start": 276, "end": 279, "id": 53, "annotation": null}, {"text": "4T1(G", "start": 280, "end": 285, "id": 54, "annotation": null}, {"text": ")", "start": 286, "end": 287, "id": 55, "annotation": null}, {"text": "\u2192", "start": 288, "end": 289, "id": 57, "annotation": null}, {"text": "6A1(6S", "start": 290, "end": 296, "id": 59, "annotation": null}, {"text": ")", "start": 297, "end": 298, "id": 60, "annotation": null}, {"text": "transition", "start": 299, "end": 309, "id": 61, "annotation": null}, {"text": "of", "start": 310, "end": 312, "id": 62, "annotation": null}, {"text": "Mn2", "start": 313, "end": 316, "id": 63, "annotation": "DOPANT"}, {"text": "+", "start": 317, "end": 318, "id": 64, "annotation": "DOPANT"}, {"text": "ion", "start": 319, "end": 322, "id": 65, "annotation": null}, {"text": ".", "start": 323, "end": 324, "id": 66, "annotation": null}], [{"text": "The", "start": 325, "end": 328, "id": 67, "annotation": null}, {"text": "optimal", "start": 329, "end": 336, "id": 68, "annotation": null}, {"text": "Mn2", "start": 337, "end": 340, "id": 69, "annotation": "DOPANT"}, {"text": "+", "start": 341, "end": 342, "id": 70, "annotation": "DOPANT"}, {"text": "doping", "start": 343, "end": 349, "id": 71, "annotation": null}, {"text": "concentration", "start": 350, "end": 363, "id": 72, "annotation": null}, {"text": "is", "start": 364, "end": 366, "id": 73, "annotation": null}, {"text": "~5", "start": 367, "end": 369, "id": 74, "annotation": "DOPMODQ"}, {"text": "mol%", "start": 370, "end": 374, "id": 76, "annotation": "DOPMODQ"}, {"text": "in", "start": 375, "end": 377, "id": 77, "annotation": null}, {"text": "CaZr(PO4)2", "start": 378, "end": 388, "id": 78, "annotation": "BASEMAT"}, {"text": ":", "start": 389, "end": 390, "id": 79, "annotation": null}, {"text": "Mn2", "start": 391, "end": 394, "id": 80, "annotation": "DOPANT"}, {"text": "+", "start": 395, "end": 396, "id": 81, "annotation": "DOPANT"}, {"text": "phosphor", "start": 397, "end": 405, "id": 82, "annotation": null}, {"text": ".", "start": 406, "end": 407, "id": 83, "annotation": null}], [{"text": "CaZr(PO4)2", "start": 408, "end": 418, "id": 84, "annotation": "BASEMAT"}, {"text": ":", "start": 419, "end": 420, "id": 85, "annotation": null}, {"text": "Mn2", "start": 421, "end": 424, "id": 86, "annotation": "DOPANT"}, {"text": "+", "start": 425, "end": 426, "id": 87, "annotation": "DOPANT"}, {"text": ",", "start": 427, "end": 428, "id": 88, "annotation": null}, {"text": "Sm3", "start": 429, "end": 432, "id": 89, "annotation": "DOPANT"}, {"text": "+", "start": 433, "end": 434, "id": 90, "annotation": "DOPANT"}, {"text": "phosphor", "start": 435, "end": 443, "id": 91, "annotation": null}, {"text": "with", "start": 444, "end": 448, "id": 92, "annotation": null}, {"text": "excitation", "start": 449, "end": 459, "id": 93, "annotation": null}, {"text": "399", "start": 460, "end": 463, "id": 94, "annotation": null}, {"text": "nm", "start": 464, "end": 466, "id": 96, "annotation": null}, {"text": "emits", "start": 467, "end": 472, "id": 97, "annotation": null}, {"text": "reddish", "start": 473, "end": 480, "id": 98, "annotation": null}, {"text": "-", "start": 481, "end": 482, "id": 99, "annotation": null}, {"text": "orange", "start": 483, "end": 489, "id": 100, "annotation": null}, {"text": "light", "start": 490, "end": 495, "id": 101, "annotation": null}, {"text": ",", "start": 496, "end": 497, "id": 102, "annotation": null}, {"text": "and", "start": 498, "end": 501, "id": 103, "annotation": null}, {"text": "it", "start": 502, "end": 504, "id": 104, "annotation": null}, {"text": "shows", "start": 505, "end": 510, "id": 105, "annotation": null}, {"text": "a", "start": 511, "end": 512, "id": 106, "annotation": null}, {"text": "systematically", "start": 513, "end": 527, "id": 107, "annotation": null}, {"text": "varied", "start": 528, "end": 534, "id": 108, "annotation": null}, {"text": "hue", "start": 535, "end": 538, "id": 109, "annotation": null}, {"text": "from", "start": 539, "end": 543, "id": 110, "annotation": null}, {"text": "green", "start": 544, "end": 549, "id": 111, "annotation": null}, {"text": "to", "start": 550, "end": 552, "id": 112, "annotation": null}, {"text": "yellow", "start": 553, "end": 559, "id": 113, "annotation": null}, {"text": "with", "start": 560, "end": 564, "id": 114, "annotation": null}, {"text": "excitation", "start": 565, "end": 575, "id": 115, "annotation": null}, {"text": "405", "start": 576, "end": 579, "id": 116, "annotation": null}, {"text": "nm", "start": 580, "end": 582, "id": 118, "annotation": null}, {"text": "by", "start": 583, "end": 585, "id": 119, "annotation": null}, {"text": "changing", "start": 586, "end": 594, "id": 120, "annotation": null}, {"text": "Sm3", "start": 595, "end": 598, "id": 121, "annotation": "DOPANT"}, {"text": "+", "start": 599, "end": 600, "id": 122, "annotation": "DOPANT"}, {"text": "and", "start": 601, "end": 604, "id": 123, "annotation": null}, {"text": "Mn2", "start": 605, "end": 608, "id": 124, "annotation": "DOPANT"}, {"text": "+", "start": 609, "end": 610, "id": 125, "annotation": "DOPANT"}, {"text": "ions", "start": 611, "end": 615, "id": 126, "annotation": null}, {"text": "concentration", "start": 616, "end": 629, "id": 127, "annotation": null}, {"text": ".", "start": 630, "end": 631, "id": 128, "annotation": null}], [{"text": "The", "start": 632, "end": 635, "id": 129, "annotation": null}, {"text": "luminous", "start": 636, "end": 644, "id": 130, "annotation": null}, {"text": "mechanism", "start": 645, "end": 654, "id": 131, "annotation": null}, {"text": "of", "start": 655, "end": 657, "id": 132, "annotation": null}, {"text": "CaZr(PO4)2", "start": 658, "end": 668, "id": 133, "annotation": "BASEMAT"}, {"text": ":", "start": 669, "end": 670, "id": 134, "annotation": null}, {"text": "Mn2", "start": 671, "end": 674, "id": 135, "annotation": "DOPANT"}, {"text": "+", "start": 675, "end": 676, "id": 136, "annotation": "DOPANT"}, {"text": ",", "start": 677, "end": 678, "id": 137, "annotation": null}, {"text": "Sm3", "start": 679, "end": 682, "id": 138, "annotation": "DOPANT"}, {"text": "+", "start": 683, "end": 684, "id": 139, "annotation": "DOPANT"}, {"text": "phosphor", "start": 685, "end": 693, "id": 140, "annotation": null}, {"text": "is", "start": 694, "end": 696, "id": 141, "annotation": null}, {"text": "analyzed", "start": 697, "end": 705, "id": 142, "annotation": null}, {"text": "and", "start": 706, "end": 709, "id": 143, "annotation": null}, {"text": "explained", "start": 710, "end": 719, "id": 144, "annotation": null}, {"text": "by", "start": 720, "end": 722, "id": 145, "annotation": null}, {"text": "the", "start": 723, "end": 726, "id": 146, "annotation": null}, {"text": "simplified", "start": 727, "end": 737, "id": 147, "annotation": null}, {"text": "energy", "start": 738, "end": 744, "id": 148, "annotation": null}, {"text": "level", "start": 745, "end": 750, "id": 149, "annotation": null}, {"text": "diagrams", "start": 751, "end": 759, "id": 150, "annotation": null}, {"text": "of", "start": 760, "end": 762, "id": 151, "annotation": null}, {"text": "Mn2", "start": 763, "end": 766, "id": 152, "annotation": "DOPANT"}, {"text": "+", "start": 767, "end": 768, "id": 153, "annotation": "DOPANT"}, {"text": "and", "start": 769, "end": 772, "id": 154, "annotation": null}, {"text": "Sm3", "start": 773, "end": 776, "id": 155, "annotation": "DOPANT"}, {"text": "+", "start": 777, "end": 778, "id": 156, "annotation": "DOPANT"}, {"text": "ions", "start": 779, "end": 783, "id": 157, "annotation": null}, {"text": "in", "start": 784, "end": 786, "id": 158, "annotation": null}, {"text": "CaZr(PO4)2", "start": 787, "end": 797, "id": 159, "annotation": "BASEMAT"}, {"text": ":", "start": 798, "end": 799, "id": 160, "annotation": null}, {"text": "Mn2", "start": 800, "end": 803, "id": 161, "annotation": "DOPANT"}, {"text": "+", "start": 804, "end": 805, "id": 162, "annotation": "DOPANT"}, {"text": ",", "start": 806, "end": 807, "id": 163, "annotation": null}, {"text": "Sm3", "start": 808, "end": 811, "id": 164, "annotation": "DOPANT"}, {"text": "+", "start": 812, "end": 813, "id": 165, "annotation": "DOPANT"}, {"text": "phosphor", "start": 814, "end": 822, "id": 166, "annotation": null}, {"text": ".", "start": 823, "end": 824, "id": 167, "annotation": null}], [{"text": "The", "start": 825, "end": 828, "id": 168, "annotation": null}, {"text": "experimental", "start": 829, "end": 841, "id": 169, "annotation": null}, {"text": "results", "start": 842, "end": 849, "id": 170, "annotation": null}, {"text": "are", "start": 850, "end": 853, "id": 171, "annotation": null}, {"text": "helpful", "start": 854, "end": 861, "id": 172, "annotation": null}, {"text": "to", "start": 862, "end": 864, "id": 173, "annotation": null}, {"text": "develop", "start": 865, "end": 872, "id": 174, "annotation": null}, {"text": "new", "start": 873, "end": 876, "id": 175, "annotation": null}, {"text": "Mn2+/Sm3", "start": 877, "end": 885, "id": 176, "annotation": "DOPANT"}, {"text": "+", "start": 886, "end": 887, "id": 177, "annotation": "DOPANT"}, {"text": "-doped", "start": 888, "end": 894, "id": 178, "annotation": null}, {"text": "materials", "start": 895, "end": 904, "id": 179, "annotation": null}, {"text": ".", "start": 905, "end": 906, "id": 180, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Anode supported solid oxide fuel cells (SOFCs) with varying Ni content in the anode function layer (AFL) were fabricated and investigated. The observed open circuit potential (OCP) was higher with lower Ni content. However, the highest maximum power densities (MPDs) in the low temperature range, from 450 to 650\u00b0C, were achieved at 60 wt% NiO in the AFL, which is a 1:1 volume ratio of Ni (49 vol%) to Gd-doped ceria (GDC) (51 vol%) phase after reduction. The long term stability of the SOFC of this composition was demonstrated with a power density of \u223c1.1 W/cm2 at 650\u00b0C for 200 hours. Electrochemical impedance was consistent with these results showing the lowest electrode area specific resistance (ASR) at 49 vol% Ni, which has a linear relationship with MPD.", "meta": {"doi": "10.1149/2.009207jes"}, "_input_hash": -974294752, "_task_hash": 2093707605, "tokens": [[{"text": "Anode", "start": 0, "end": 5, "id": 0, "annotation": null}, {"text": "supported", "start": 6, "end": 15, "id": 1, "annotation": null}, {"text": "solid", "start": 16, "end": 21, "id": 2, "annotation": null}, {"text": "oxide", "start": 22, "end": 27, "id": 3, "annotation": null}, {"text": "fuel", "start": 28, "end": 32, "id": 4, "annotation": null}, {"text": "cells", "start": 33, "end": 38, "id": 5, "annotation": null}, {"text": "(", "start": 39, "end": 40, "id": 6, "annotation": null}, {"text": "SOFCs", "start": 41, "end": 46, "id": 7, "annotation": null}, {"text": ")", "start": 47, "end": 48, "id": 8, "annotation": null}, {"text": "with", "start": 49, "end": 53, "id": 9, "annotation": null}, {"text": "varying", "start": 54, "end": 61, "id": 10, "annotation": null}, {"text": "Ni", "start": 62, "end": 64, "id": 11, "annotation": null}, {"text": "content", "start": 65, "end": 72, "id": 12, "annotation": null}, {"text": "in", "start": 73, "end": 75, "id": 13, "annotation": null}, {"text": "the", "start": 76, "end": 79, "id": 14, "annotation": null}, {"text": "anode", "start": 80, "end": 85, "id": 15, "annotation": null}, {"text": "function", "start": 86, "end": 94, "id": 16, "annotation": null}, {"text": "layer", "start": 95, "end": 100, "id": 17, "annotation": null}, {"text": "(", "start": 101, "end": 102, "id": 18, "annotation": null}, {"text": "AFL", "start": 103, "end": 106, "id": 19, "annotation": null}, {"text": ")", "start": 107, "end": 108, "id": 20, "annotation": null}, {"text": "were", "start": 109, "end": 113, "id": 21, "annotation": null}, {"text": "fabricated", "start": 114, "end": 124, "id": 22, "annotation": null}, {"text": "and", "start": 125, "end": 128, "id": 23, "annotation": null}, {"text": "investigated", "start": 129, "end": 141, "id": 24, "annotation": null}, {"text": ".", "start": 142, "end": 143, "id": 25, "annotation": null}], [{"text": "The", "start": 144, "end": 147, "id": 26, "annotation": null}, {"text": "observed", "start": 148, "end": 156, "id": 27, "annotation": null}, {"text": "open", "start": 157, "end": 161, "id": 28, "annotation": null}, {"text": "circuit", "start": 162, "end": 169, "id": 29, "annotation": null}, {"text": "potential", "start": 170, "end": 179, "id": 30, "annotation": null}, {"text": "(", "start": 180, "end": 181, "id": 31, "annotation": null}, {"text": "OCP", "start": 182, "end": 185, "id": 32, "annotation": null}, {"text": ")", "start": 186, "end": 187, "id": 33, "annotation": null}, {"text": "was", "start": 188, "end": 191, "id": 34, "annotation": null}, {"text": "higher", "start": 192, "end": 198, "id": 35, "annotation": null}, {"text": "with", "start": 199, "end": 203, "id": 36, "annotation": null}, {"text": "lower", "start": 204, "end": 209, "id": 37, "annotation": null}, {"text": "Ni", "start": 210, "end": 212, "id": 38, "annotation": null}, {"text": "content", "start": 213, "end": 220, "id": 39, "annotation": null}, {"text": ".", "start": 221, "end": 222, "id": 40, "annotation": null}], [{"text": "However", "start": 223, "end": 230, "id": 41, "annotation": null}, {"text": ",", "start": 231, "end": 232, "id": 42, "annotation": null}, {"text": "the", "start": 233, "end": 236, "id": 43, "annotation": null}, {"text": "highest", "start": 237, "end": 244, "id": 44, "annotation": null}, {"text": "maximum", "start": 245, "end": 252, "id": 45, "annotation": null}, {"text": "power", "start": 253, "end": 258, "id": 46, "annotation": null}, {"text": "densities", "start": 259, "end": 268, "id": 47, "annotation": null}, {"text": "(", "start": 269, "end": 270, "id": 48, "annotation": null}, {"text": "MPDs", "start": 271, "end": 275, "id": 49, "annotation": null}, {"text": ")", "start": 276, "end": 277, "id": 50, "annotation": null}, {"text": "in", "start": 278, "end": 280, "id": 51, "annotation": null}, {"text": "the", "start": 281, "end": 284, "id": 52, "annotation": null}, {"text": "low", "start": 285, "end": 288, "id": 53, "annotation": null}, {"text": "temperature", "start": 289, "end": 300, "id": 54, "annotation": null}, {"text": "range", "start": 301, "end": 306, "id": 55, "annotation": null}, {"text": ",", "start": 307, "end": 308, "id": 56, "annotation": null}, {"text": "from", "start": 309, "end": 313, "id": 57, "annotation": null}, {"text": "450", "start": 314, "end": 317, "id": 58, "annotation": null}, {"text": "to", "start": 318, "end": 320, "id": 59, "annotation": null}, {"text": "650", "start": 321, "end": 324, "id": 60, "annotation": null}, {"text": "\u00b0", "start": 325, "end": 326, "id": 61, "annotation": null}, {"text": "C", "start": 327, "end": 328, "id": 62, "annotation": null}, {"text": ",", "start": 329, "end": 330, "id": 63, "annotation": null}, {"text": "were", "start": 331, "end": 335, "id": 64, "annotation": null}, {"text": "achieved", "start": 336, "end": 344, "id": 65, "annotation": null}, {"text": "at", "start": 345, "end": 347, "id": 66, "annotation": null}, {"text": "60", "start": 348, "end": 350, "id": 67, "annotation": null}, {"text": "wt%", "start": 351, "end": 354, "id": 68, "annotation": null}, {"text": "NiO", "start": 355, "end": 358, "id": 69, "annotation": null}, {"text": "in", "start": 359, "end": 361, "id": 70, "annotation": null}, {"text": "the", "start": 362, "end": 365, "id": 71, "annotation": null}, {"text": "AFL", "start": 366, "end": 369, "id": 72, "annotation": null}, {"text": ",", "start": 370, "end": 371, "id": 73, "annotation": null}, {"text": "which", "start": 372, "end": 377, "id": 74, "annotation": null}, {"text": "is", "start": 378, "end": 380, "id": 75, "annotation": null}, {"text": "a", "start": 381, "end": 382, "id": 76, "annotation": null}, {"text": "1:1", "start": 383, "end": 386, "id": 77, "annotation": null}, {"text": "volume", "start": 387, "end": 393, "id": 78, "annotation": null}, {"text": "ratio", "start": 394, "end": 399, "id": 79, "annotation": null}, {"text": "of", "start": 400, "end": 402, "id": 80, "annotation": null}, {"text": "Ni", "start": 403, "end": 405, "id": 81, "annotation": null}, {"text": "(", "start": 406, "end": 407, "id": 82, "annotation": null}, {"text": "49", "start": 408, "end": 410, "id": 83, "annotation": null}, {"text": "vol%", "start": 411, "end": 415, "id": 84, "annotation": null}, {"text": ")", "start": 416, "end": 417, "id": 85, "annotation": null}, {"text": "to", "start": 418, "end": 420, "id": 86, "annotation": null}, {"text": "Gd", "start": 421, "end": 423, "id": 87, "annotation": "DOPANT"}, {"text": "-", "start": 424, "end": 425, "id": 88, "annotation": null}, {"text": "doped", "start": 426, "end": 431, "id": 89, "annotation": null}, {"text": "ceria", "start": 432, "end": 437, "id": 90, "annotation": "BASEMAT"}, {"text": "(", "start": 438, "end": 439, "id": 91, "annotation": null}, {"text": "GDC", "start": 440, "end": 443, "id": 92, "annotation": null}, {"text": ")", "start": 444, "end": 445, "id": 93, "annotation": null}, {"text": "(", "start": 446, "end": 447, "id": 94, "annotation": null}, {"text": "51", "start": 448, "end": 450, "id": 95, "annotation": null}, {"text": "vol%", "start": 451, "end": 455, "id": 96, "annotation": null}, {"text": ")", "start": 456, "end": 457, "id": 97, "annotation": null}, {"text": "phase", "start": 458, "end": 463, "id": 98, "annotation": null}, {"text": "after", "start": 464, "end": 469, "id": 99, "annotation": null}, {"text": "reduction", "start": 470, "end": 479, "id": 100, "annotation": null}, {"text": ".", "start": 480, "end": 481, "id": 101, "annotation": null}], [{"text": "The", "start": 482, "end": 485, "id": 102, "annotation": null}, {"text": "long", "start": 486, "end": 490, "id": 103, "annotation": null}, {"text": "term", "start": 491, "end": 495, "id": 104, "annotation": null}, {"text": "stability", "start": 496, "end": 505, "id": 105, "annotation": null}, {"text": "of", "start": 506, "end": 508, "id": 106, "annotation": null}, {"text": "the", "start": 509, "end": 512, "id": 107, "annotation": null}, {"text": "SOFC", "start": 513, "end": 517, "id": 108, "annotation": null}, {"text": "of", "start": 518, "end": 520, "id": 109, "annotation": null}, {"text": "this", "start": 521, "end": 525, "id": 110, "annotation": null}, {"text": "composition", "start": 526, "end": 537, "id": 111, "annotation": null}, {"text": "was", "start": 538, "end": 541, "id": 112, "annotation": null}, {"text": "demonstrated", "start": 542, "end": 554, "id": 113, "annotation": null}, {"text": "with", "start": 555, "end": 559, "id": 114, "annotation": null}, {"text": "a", "start": 560, "end": 561, "id": 115, "annotation": null}, {"text": "power", "start": 562, "end": 567, "id": 116, "annotation": null}, {"text": "density", "start": 568, "end": 575, "id": 117, "annotation": null}, {"text": "of", "start": 576, "end": 578, "id": 118, "annotation": null}, {"text": "\u223c1.1", "start": 579, "end": 583, "id": 119, "annotation": null}, {"text": "W", "start": 584, "end": 585, "id": 120, "annotation": null}, {"text": "/", "start": 586, "end": 587, "id": 121, "annotation": null}, {"text": "cm2", "start": 588, "end": 591, "id": 122, "annotation": null}, {"text": "at", "start": 592, "end": 594, "id": 123, "annotation": null}, {"text": "650", "start": 595, "end": 598, "id": 124, "annotation": null}, {"text": "\u00b0", "start": 599, "end": 600, "id": 125, "annotation": null}, {"text": "C", "start": 601, "end": 602, "id": 126, "annotation": null}, {"text": "for", "start": 603, "end": 606, "id": 127, "annotation": null}, {"text": "200", "start": 607, "end": 610, "id": 128, "annotation": null}, {"text": "hours", "start": 611, "end": 616, "id": 129, "annotation": null}, {"text": ".", "start": 617, "end": 618, "id": 130, "annotation": null}], [{"text": "Electrochemical", "start": 619, "end": 634, "id": 131, "annotation": null}, {"text": "impedance", "start": 635, "end": 644, "id": 132, "annotation": null}, {"text": "was", "start": 645, "end": 648, "id": 133, "annotation": null}, {"text": "consistent", "start": 649, "end": 659, "id": 134, "annotation": null}, {"text": "with", "start": 660, "end": 664, "id": 135, "annotation": null}, {"text": "these", "start": 665, "end": 670, "id": 136, "annotation": null}, {"text": "results", "start": 671, "end": 678, "id": 137, "annotation": null}, {"text": "showing", "start": 679, "end": 686, "id": 138, "annotation": null}, {"text": "the", "start": 687, "end": 690, "id": 139, "annotation": null}, {"text": "lowest", "start": 691, "end": 697, "id": 140, "annotation": null}, {"text": "electrode", "start": 698, "end": 707, "id": 141, "annotation": null}, {"text": "area", "start": 708, "end": 712, "id": 142, "annotation": null}, {"text": "specific", "start": 713, "end": 721, "id": 143, "annotation": null}, {"text": "resistance", "start": 722, "end": 732, "id": 144, "annotation": null}, {"text": "(", "start": 733, "end": 734, "id": 145, "annotation": null}, {"text": "ASR", "start": 735, "end": 738, "id": 146, "annotation": null}, {"text": ")", "start": 739, "end": 740, "id": 147, "annotation": null}, {"text": "at", "start": 741, "end": 743, "id": 148, "annotation": null}, {"text": "49", "start": 744, "end": 746, "id": 149, "annotation": null}, {"text": "vol%", "start": 747, "end": 751, "id": 150, "annotation": null}, {"text": "Ni", "start": 752, "end": 754, "id": 151, "annotation": null}, {"text": ",", "start": 755, "end": 756, "id": 152, "annotation": null}, {"text": "which", "start": 757, "end": 762, "id": 153, "annotation": null}, {"text": "has", "start": 763, "end": 766, "id": 154, "annotation": null}, {"text": "a", "start": 767, "end": 768, "id": 155, "annotation": null}, {"text": "linear", "start": 769, "end": 775, "id": 156, "annotation": null}, {"text": "relationship", "start": 776, "end": 788, "id": 157, "annotation": null}, {"text": "with", "start": 789, "end": 793, "id": 158, "annotation": null}, {"text": "MPD", "start": 794, "end": 797, "id": 159, "annotation": null}, {"text": ".", "start": 798, "end": 799, "id": 160, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Mg-doping effects on the electrochemical property of LiFePO4\u2013Li3V2(PO4)3 composite materials, a mutual-doping system, are investigated. X-ray diffraction study indicates that Mg doping decreases the cell volume of LiFePO4 in the composite. The cyclic voltammograms reveal that the reversibility of the electrode reaction and the diffusion of lithium ion is enhanced by Mg doping. Mg doping also improves the conductivity and rate capacity of 7LiFePO4\u2013Li3V2(PO4)3 composite material and decreases the polarization of the electrode reaction. The discharge capacity of the Mg-doped composite was 93\u00a0mAh\u2009g\u22121 at the current density of 1,500\u00a0mA\u2009g\u22121, and Mg-doped composite has better discharge performance than the original 7LiFePO4\u2013Li3V2(PO4)3 composite at low temperature, too. At \u221230\u00a0\u00b0C, the discharge capacity of Mg-doped LFVP is 89\u00a0mAh\u2009g\u22121, higher than that of the original composite. Electrochemical impedance spectroscopy study shows that Mg2+ doping could enhance the electrochemical activity of 7LiFePO4\u2013Li3V2(PO4)3 composite. Mg doping has a positive influence on the electrochemical performance of the LiFePO4\u2013Li3V2(PO4)3 composite material.", "meta": {"doi": "10.1007/s11581-012-0841-6"}, "_input_hash": -1311592230, "_task_hash": 364661770, "tokens": [[{"text": "Mg", "start": 0, "end": 2, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 3, "end": 4, "id": 1, "annotation": null}, {"text": "doping", "start": 5, "end": 11, "id": 2, "annotation": null}, {"text": "effects", "start": 12, "end": 19, "id": 3, "annotation": null}, {"text": "on", "start": 20, "end": 22, "id": 4, "annotation": null}, {"text": "the", "start": 23, "end": 26, "id": 5, "annotation": null}, {"text": "electrochemical", "start": 27, "end": 42, "id": 6, "annotation": null}, {"text": "property", "start": 43, "end": 51, "id": 7, "annotation": null}, {"text": "of", "start": 52, "end": 54, "id": 8, "annotation": null}, {"text": "LiFePO4\u2013Li3V2(PO4)3", "start": 55, "end": 74, "id": 9, "annotation": "BASEMAT"}, {"text": "composite", "start": 75, "end": 84, "id": 10, "annotation": null}, {"text": "materials", "start": 85, "end": 94, "id": 11, "annotation": null}, {"text": ",", "start": 95, "end": 96, "id": 12, "annotation": null}, {"text": "a", "start": 97, "end": 98, "id": 13, "annotation": null}, {"text": "mutual", "start": 99, "end": 105, "id": 14, "annotation": null}, {"text": "-", "start": 106, "end": 107, "id": 15, "annotation": null}, {"text": "doping", "start": 108, "end": 114, "id": 16, "annotation": null}, {"text": "system", "start": 115, "end": 121, "id": 17, "annotation": null}, {"text": ",", "start": 122, "end": 123, "id": 18, "annotation": null}, {"text": "are", "start": 124, "end": 127, "id": 19, "annotation": null}, {"text": "investigated", "start": 128, "end": 140, "id": 20, "annotation": null}, {"text": ".", "start": 141, "end": 142, "id": 21, "annotation": null}], [{"text": "X", "start": 143, "end": 144, "id": 22, "annotation": null}, {"text": "-", "start": 145, "end": 146, "id": 23, "annotation": null}, {"text": "ray", "start": 147, "end": 150, "id": 24, "annotation": null}, {"text": "diffraction", "start": 151, "end": 162, "id": 25, "annotation": null}, {"text": "study", "start": 163, "end": 168, "id": 26, "annotation": null}, {"text": "indicates", "start": 169, "end": 178, "id": 27, "annotation": null}, {"text": "that", "start": 179, "end": 183, "id": 28, "annotation": null}, {"text": "Mg", "start": 184, "end": 186, "id": 29, "annotation": "DOPANT"}, {"text": "doping", "start": 187, "end": 193, "id": 30, "annotation": null}, {"text": "decreases", "start": 194, "end": 203, "id": 31, "annotation": null}, {"text": "the", "start": 204, "end": 207, "id": 32, "annotation": null}, {"text": "cell", "start": 208, "end": 212, "id": 33, "annotation": null}, {"text": "volume", "start": 213, "end": 219, "id": 34, "annotation": null}, {"text": "of", "start": 220, "end": 222, "id": 35, "annotation": null}, {"text": "LiFePO4", "start": 223, "end": 230, "id": 36, "annotation": null}, {"text": "in", "start": 231, "end": 233, "id": 37, "annotation": null}, {"text": "the", "start": 234, "end": 237, "id": 38, "annotation": null}, {"text": "composite", "start": 238, "end": 247, "id": 39, "annotation": null}, {"text": ".", "start": 248, "end": 249, "id": 40, "annotation": null}], [{"text": "The", "start": 250, "end": 253, "id": 41, "annotation": null}, {"text": "cyclic", "start": 254, "end": 260, "id": 42, "annotation": null}, {"text": "voltammograms", "start": 261, "end": 274, "id": 43, "annotation": null}, {"text": "reveal", "start": 275, "end": 281, "id": 44, "annotation": null}, {"text": "that", "start": 282, "end": 286, "id": 45, "annotation": null}, {"text": "the", "start": 287, "end": 290, "id": 46, "annotation": null}, {"text": "reversibility", "start": 291, "end": 304, "id": 47, "annotation": null}, {"text": "of", "start": 305, "end": 307, "id": 48, "annotation": null}, {"text": "the", "start": 308, "end": 311, "id": 49, "annotation": null}, {"text": "electrode", "start": 312, "end": 321, "id": 50, "annotation": null}, {"text": "reaction", "start": 322, "end": 330, "id": 51, "annotation": null}, {"text": "and", "start": 331, "end": 334, "id": 52, "annotation": null}, {"text": "the", "start": 335, "end": 338, "id": 53, "annotation": null}, {"text": "diffusion", "start": 339, "end": 348, "id": 54, "annotation": null}, {"text": "of", "start": 349, "end": 351, "id": 55, "annotation": null}, {"text": "lithium", "start": 352, "end": 359, "id": 56, "annotation": null}, {"text": "ion", "start": 360, "end": 363, "id": 57, "annotation": null}, {"text": "is", "start": 364, "end": 366, "id": 58, "annotation": null}, {"text": "enhanced", "start": 367, "end": 375, "id": 59, "annotation": null}, {"text": "by", "start": 376, "end": 378, "id": 60, "annotation": null}, {"text": "Mg", "start": 379, "end": 381, "id": 61, "annotation": "DOPANT"}, {"text": "doping", "start": 382, "end": 388, "id": 62, "annotation": null}, {"text": ".", "start": 389, "end": 390, "id": 63, "annotation": null}], [{"text": "Mg", "start": 391, "end": 393, "id": 64, "annotation": "DOPANT"}, {"text": "doping", "start": 394, "end": 400, "id": 65, "annotation": null}, {"text": "also", "start": 401, "end": 405, "id": 66, "annotation": null}, {"text": "improves", "start": 406, "end": 414, "id": 67, "annotation": null}, {"text": "the", "start": 415, "end": 418, "id": 68, "annotation": null}, {"text": "conductivity", "start": 419, "end": 431, "id": 69, "annotation": null}, {"text": "and", "start": 432, "end": 435, "id": 70, "annotation": null}, {"text": "rate", "start": 436, "end": 440, "id": 71, "annotation": null}, {"text": "capacity", "start": 441, "end": 449, "id": 72, "annotation": null}, {"text": "of", "start": 450, "end": 452, "id": 73, "annotation": null}, {"text": "7LiFePO4\u2013Li3V2(PO4)3", "start": 453, "end": 473, "id": 74, "annotation": "BASEMAT"}, {"text": "composite", "start": 474, "end": 483, "id": 75, "annotation": null}, {"text": "material", "start": 484, "end": 492, "id": 76, "annotation": null}, {"text": "and", "start": 493, "end": 496, "id": 77, "annotation": null}, {"text": "decreases", "start": 497, "end": 506, "id": 78, "annotation": null}, {"text": "the", "start": 507, "end": 510, "id": 79, "annotation": null}, {"text": "polarization", "start": 511, "end": 523, "id": 80, "annotation": null}, {"text": "of", "start": 524, "end": 526, "id": 81, "annotation": null}, {"text": "the", "start": 527, "end": 530, "id": 82, "annotation": null}, {"text": "electrode", "start": 531, "end": 540, "id": 83, "annotation": null}, {"text": "reaction", "start": 541, "end": 549, "id": 84, "annotation": null}, {"text": ".", "start": 550, "end": 551, "id": 85, "annotation": null}], [{"text": "The", "start": 552, "end": 555, "id": 86, "annotation": null}, {"text": "discharge", "start": 556, "end": 565, "id": 87, "annotation": null}, {"text": "capacity", "start": 566, "end": 574, "id": 88, "annotation": null}, {"text": "of", "start": 575, "end": 577, "id": 89, "annotation": null}, {"text": "the", "start": 578, "end": 581, "id": 90, "annotation": null}, {"text": "Mg", "start": 582, "end": 584, "id": 91, "annotation": "DOPANT"}, {"text": "-", "start": 585, "end": 586, "id": 92, "annotation": null}, {"text": "doped", "start": 587, "end": 592, "id": 93, "annotation": null}, {"text": "composite", "start": 593, "end": 602, "id": 94, "annotation": "BASEMAT"}, {"text": "was", "start": 603, "end": 606, "id": 95, "annotation": null}, {"text": "93", "start": 607, "end": 609, "id": 96, "annotation": null}, {"text": "mAh", "start": 610, "end": 613, "id": 98, "annotation": null}, {"text": "g\u22121", "start": 614, "end": 617, "id": 100, "annotation": null}, {"text": "at", "start": 618, "end": 620, "id": 101, "annotation": null}, {"text": "the", "start": 621, "end": 624, "id": 102, "annotation": null}, {"text": "current", "start": 625, "end": 632, "id": 103, "annotation": null}, {"text": "density", "start": 633, "end": 640, "id": 104, "annotation": null}, {"text": "of", "start": 641, "end": 643, "id": 105, "annotation": null}, {"text": "1,500", "start": 644, "end": 649, "id": 106, "annotation": null}, {"text": "mA", "start": 650, "end": 652, "id": 108, "annotation": null}, {"text": "g\u22121", "start": 653, "end": 656, "id": 110, "annotation": null}, {"text": ",", "start": 657, "end": 658, "id": 111, "annotation": null}, {"text": "and", "start": 659, "end": 662, "id": 112, "annotation": null}, {"text": "Mg", "start": 663, "end": 665, "id": 113, "annotation": "DOPANT"}, {"text": "-", "start": 666, "end": 667, "id": 114, "annotation": null}, {"text": "doped", "start": 668, "end": 673, "id": 115, "annotation": null}, {"text": "composite", "start": 674, "end": 683, "id": 116, "annotation": "DOPMODQ"}, {"text": "has", "start": 684, "end": 687, "id": 117, "annotation": null}, {"text": "better", "start": 688, "end": 694, "id": 118, "annotation": null}, {"text": "discharge", "start": 695, "end": 704, "id": 119, "annotation": null}, {"text": "performance", "start": 705, "end": 716, "id": 120, "annotation": null}, {"text": "than", "start": 717, "end": 721, "id": 121, "annotation": null}, {"text": "the", "start": 722, "end": 725, "id": 122, "annotation": null}, {"text": "original", "start": 726, "end": 734, "id": 123, "annotation": null}, {"text": "7LiFePO4\u2013Li3V2(PO4)3", "start": 735, "end": 755, "id": 124, "annotation": null}, {"text": "composite", "start": 756, "end": 765, "id": 125, "annotation": null}, {"text": "at", "start": 766, "end": 768, "id": 126, "annotation": null}, {"text": "low", "start": 769, "end": 772, "id": 127, "annotation": null}, {"text": "temperature", "start": 773, "end": 784, "id": 128, "annotation": null}, {"text": ",", "start": 785, "end": 786, "id": 129, "annotation": null}, {"text": "too", "start": 787, "end": 790, "id": 130, "annotation": null}, {"text": ".", "start": 791, "end": 792, "id": 131, "annotation": null}], [{"text": "At", "start": 793, "end": 795, "id": 132, "annotation": null}, {"text": "\u221230", "start": 796, "end": 799, "id": 133, "annotation": null}, {"text": "\u00b0", "start": 800, "end": 801, "id": 135, "annotation": null}, {"text": "C", "start": 802, "end": 803, "id": 136, "annotation": null}, {"text": ",", "start": 804, "end": 805, "id": 137, "annotation": null}, {"text": "the", "start": 806, "end": 809, "id": 138, "annotation": null}, {"text": "discharge", "start": 810, "end": 819, "id": 139, "annotation": null}, {"text": "capacity", "start": 820, "end": 828, "id": 140, "annotation": null}, {"text": "of", "start": 829, "end": 831, "id": 141, "annotation": null}, {"text": "Mg", "start": 832, "end": 834, "id": 142, "annotation": "DOPANT"}, {"text": "-", "start": 835, "end": 836, "id": 143, "annotation": null}, {"text": "doped", "start": 837, "end": 842, "id": 144, "annotation": null}, {"text": "LFVP", "start": 843, "end": 847, "id": 145, "annotation": "BASEMAT"}, {"text": "is", "start": 848, "end": 850, "id": 146, "annotation": null}, {"text": "89", "start": 851, "end": 853, "id": 147, "annotation": null}, {"text": "mAh", "start": 854, "end": 857, "id": 149, "annotation": null}, {"text": "g\u22121", "start": 858, "end": 861, "id": 151, "annotation": null}, {"text": ",", "start": 862, "end": 863, "id": 152, "annotation": null}, {"text": "higher", "start": 864, "end": 870, "id": 153, "annotation": null}, {"text": "than", "start": 871, "end": 875, "id": 154, "annotation": null}, {"text": "that", "start": 876, "end": 880, "id": 155, "annotation": null}, {"text": "of", "start": 881, "end": 883, "id": 156, "annotation": null}, {"text": "the", "start": 884, "end": 887, "id": 157, "annotation": null}, {"text": "original", "start": 888, "end": 896, "id": 158, "annotation": null}, {"text": "composite", "start": 897, "end": 906, "id": 159, "annotation": null}, {"text": ".", "start": 907, "end": 908, "id": 160, "annotation": null}], [{"text": "Electrochemical", "start": 909, "end": 924, "id": 161, "annotation": null}, {"text": "impedance", "start": 925, "end": 934, "id": 162, "annotation": null}, {"text": "spectroscopy", "start": 935, "end": 947, "id": 163, "annotation": null}, {"text": "study", "start": 948, "end": 953, "id": 164, "annotation": null}, {"text": "shows", "start": 954, "end": 959, "id": 165, "annotation": null}, {"text": "that", "start": 960, "end": 964, "id": 166, "annotation": null}, {"text": "Mg2", "start": 965, "end": 968, "id": 167, "annotation": "DOPANT"}, {"text": "+", "start": 969, "end": 970, "id": 168, "annotation": "DOPANT"}, {"text": "doping", "start": 971, "end": 977, "id": 169, "annotation": null}, {"text": "could", "start": 978, "end": 983, "id": 170, "annotation": null}, {"text": "enhance", "start": 984, "end": 991, "id": 171, "annotation": null}, {"text": "the", "start": 992, "end": 995, "id": 172, "annotation": null}, {"text": "electrochemical", "start": 996, "end": 1011, "id": 173, "annotation": null}, {"text": "activity", "start": 1012, "end": 1020, "id": 174, "annotation": null}, {"text": "of", "start": 1021, "end": 1023, "id": 175, "annotation": null}, {"text": "7LiFePO4\u2013Li3V2(PO4)3", "start": 1024, "end": 1044, "id": 176, "annotation": "BASEMAT"}, {"text": "composite", "start": 1045, "end": 1054, "id": 177, "annotation": null}, {"text": ".", "start": 1055, "end": 1056, "id": 178, "annotation": null}], [{"text": "Mg", "start": 1057, "end": 1059, "id": 179, "annotation": "DOPANT"}, {"text": "doping", "start": 1060, "end": 1066, "id": 180, "annotation": null}, {"text": "has", "start": 1067, "end": 1070, "id": 181, "annotation": null}, {"text": "a", "start": 1071, "end": 1072, "id": 182, "annotation": null}, {"text": "positive", "start": 1073, "end": 1081, "id": 183, "annotation": null}, {"text": "influence", "start": 1082, "end": 1091, "id": 184, "annotation": null}, {"text": "on", "start": 1092, "end": 1094, "id": 185, "annotation": null}, {"text": "the", "start": 1095, "end": 1098, "id": 186, "annotation": null}, {"text": "electrochemical", "start": 1099, "end": 1114, "id": 187, "annotation": null}, {"text": "performance", "start": 1115, "end": 1126, "id": 188, "annotation": null}, {"text": "of", "start": 1127, "end": 1129, "id": 189, "annotation": null}, {"text": "the", "start": 1130, "end": 1133, "id": 190, "annotation": null}, {"text": "LiFePO4\u2013Li3V2(PO4)3", "start": 1134, "end": 1153, "id": 191, "annotation": "BASEMAT"}, {"text": "composite", "start": 1154, "end": 1163, "id": 192, "annotation": null}, {"text": "material", "start": 1164, "end": 1172, "id": 193, "annotation": null}, {"text": ".", "start": 1173, "end": 1174, "id": 194, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Not only the optical properties, but the microwave dielectric properties of Yttrium aluminium garnet (Y3Al5O12, YAG) ceramics prepared by co-precipitation method combined with spark-plasma sintering (SPS) were investigated by means of adjusting the factors of LiF additive, Nd dopant, and SPS process parameters. Results showed that the in-line transmittance of YAG ceramic with LiF sintered at 1360\u00b0C was 81.8% in the infrared range. With increased sintering temperature, the quality factor (Q\u00d7f) and dielectric constant (\u03b5r) values of the pure YAG ceramics increased to the maximum and then decreased. The optimal microwave dielectric properties (Q\u00d7f=89,810GHz, \u03b5r=10.63 and \u03c4f=\u221251.4ppm/\u00b0C) are achieved for transparent YAG ceramics sintered at 1360\u00b0C. The Q\u00d7f values of Nd:YAG ceramics were lower than those of the pure YAG ceramics. The optimal microwave dielectric properties of 2at.%Nd:YAG ceramic cylinder can be obtained with the Q\u00d7f of 64,026GHz, \u03b5r of 10.2 and \u03c4f of \u221264.8ppm/\u00b0C.", "meta": {"doi": "10.1016/j.jeurceramsoc.2016.04.029"}, "_input_hash": 1214472610, "_task_hash": 1334444563, "tokens": [[{"text": "Not", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "only", "start": 4, "end": 8, "id": 1, "annotation": null}, {"text": "the", "start": 9, "end": 12, "id": 2, "annotation": null}, {"text": "optical", "start": 13, "end": 20, "id": 3, "annotation": null}, {"text": "properties", "start": 21, "end": 31, "id": 4, "annotation": null}, {"text": ",", "start": 32, "end": 33, "id": 5, "annotation": null}, {"text": "but", "start": 34, "end": 37, "id": 6, "annotation": null}, {"text": "the", "start": 38, "end": 41, "id": 7, "annotation": null}, {"text": "microwave", "start": 42, "end": 51, "id": 8, "annotation": null}, {"text": "dielectric", "start": 52, "end": 62, "id": 9, "annotation": null}, {"text": "properties", "start": 63, "end": 73, "id": 10, "annotation": null}, {"text": "of", "start": 74, "end": 76, "id": 11, "annotation": null}, {"text": "Yttrium", "start": 77, "end": 84, "id": 12, "annotation": "BASEMAT"}, {"text": "aluminium", "start": 85, "end": 94, "id": 13, "annotation": null}, {"text": "garnet", "start": 95, "end": 101, "id": 14, "annotation": "BASEMAT"}, {"text": "(", "start": 102, "end": 103, "id": 15, "annotation": null}, {"text": "Y3Al5O12", "start": 104, "end": 112, "id": 16, "annotation": "BASEMAT"}, {"text": ",", "start": 113, "end": 114, "id": 17, "annotation": null}, {"text": "YAG", "start": 115, "end": 118, "id": 18, "annotation": "BASEMAT"}, {"text": ")", "start": 119, "end": 120, "id": 19, "annotation": null}, {"text": "ceramics", "start": 121, "end": 129, "id": 20, "annotation": null}, {"text": "prepared", "start": 130, "end": 138, "id": 21, "annotation": null}, {"text": "by", "start": 139, "end": 141, "id": 22, "annotation": null}, {"text": "co", "start": 142, "end": 144, "id": 23, "annotation": null}, {"text": "-", "start": 145, "end": 146, "id": 24, "annotation": null}, {"text": "precipitation", "start": 147, "end": 160, "id": 25, "annotation": null}, {"text": "method", "start": 161, "end": 167, "id": 26, "annotation": null}, {"text": "combined", "start": 168, "end": 176, "id": 27, "annotation": null}, {"text": "with", "start": 177, "end": 181, "id": 28, "annotation": null}, {"text": "spark", "start": 182, "end": 187, "id": 29, "annotation": null}, {"text": "-", "start": 188, "end": 189, "id": 30, "annotation": null}, {"text": "plasma", "start": 190, "end": 196, "id": 31, "annotation": null}, {"text": "sintering", "start": 197, "end": 206, "id": 32, "annotation": null}, {"text": "(", "start": 207, "end": 208, "id": 33, "annotation": null}, {"text": "SPS", "start": 209, "end": 212, "id": 34, "annotation": null}, {"text": ")", "start": 213, "end": 214, "id": 35, "annotation": null}, {"text": "were", "start": 215, "end": 219, "id": 36, "annotation": null}, {"text": "investigated", "start": 220, "end": 232, "id": 37, "annotation": null}, {"text": "by", "start": 233, "end": 235, "id": 38, "annotation": null}, {"text": "means", "start": 236, "end": 241, "id": 39, "annotation": null}, {"text": "of", "start": 242, "end": 244, "id": 40, "annotation": null}, {"text": "adjusting", "start": 245, "end": 254, "id": 41, "annotation": null}, {"text": "the", "start": 255, "end": 258, "id": 42, "annotation": null}, {"text": "factors", "start": 259, "end": 266, "id": 43, "annotation": null}, {"text": "of", "start": 267, "end": 269, "id": 44, "annotation": null}, {"text": "LiF", "start": 270, "end": 273, "id": 45, "annotation": null}, {"text": "additive", "start": 274, "end": 282, "id": 46, "annotation": null}, {"text": ",", "start": 283, "end": 284, "id": 47, "annotation": null}, {"text": "Nd", "start": 285, "end": 287, "id": 48, "annotation": "DOPANT"}, {"text": "dopant", "start": 288, "end": 294, "id": 49, "annotation": null}, {"text": ",", "start": 295, "end": 296, "id": 50, "annotation": null}, {"text": "and", "start": 297, "end": 300, "id": 51, "annotation": null}, {"text": "SPS", "start": 301, "end": 304, "id": 52, "annotation": null}, {"text": "process", "start": 305, "end": 312, "id": 53, "annotation": null}, {"text": "parameters", "start": 313, "end": 323, "id": 54, "annotation": null}, {"text": ".", "start": 324, "end": 325, "id": 55, "annotation": null}], [{"text": "Results", "start": 326, "end": 333, "id": 56, "annotation": null}, {"text": "showed", "start": 334, "end": 340, "id": 57, "annotation": null}, {"text": "that", "start": 341, "end": 345, "id": 58, "annotation": null}, {"text": "the", "start": 346, "end": 349, "id": 59, "annotation": null}, {"text": "in", "start": 350, "end": 352, "id": 60, "annotation": null}, {"text": "-", "start": 353, "end": 354, "id": 61, "annotation": null}, {"text": "line", "start": 355, "end": 359, "id": 62, "annotation": null}, {"text": "transmittance", "start": 360, "end": 373, "id": 63, "annotation": null}, {"text": "of", "start": 374, "end": 376, "id": 64, "annotation": null}, {"text": "YAG", "start": 377, "end": 380, "id": 65, "annotation": null}, {"text": "ceramic", "start": 381, "end": 388, "id": 66, "annotation": null}, {"text": "with", "start": 389, "end": 393, "id": 67, "annotation": null}, {"text": "LiF", "start": 394, "end": 397, "id": 68, "annotation": null}, {"text": "sintered", "start": 398, "end": 406, "id": 69, "annotation": null}, {"text": "at", "start": 407, "end": 409, "id": 70, "annotation": null}, {"text": "1360", "start": 410, "end": 414, "id": 71, "annotation": null}, {"text": "\u00b0", "start": 415, "end": 416, "id": 72, "annotation": null}, {"text": "C", "start": 417, "end": 418, "id": 73, "annotation": null}, {"text": "was", "start": 419, "end": 422, "id": 74, "annotation": null}, {"text": "81.8", "start": 423, "end": 427, "id": 75, "annotation": null}, {"text": "%", "start": 428, "end": 429, "id": 76, "annotation": null}, {"text": "in", "start": 430, "end": 432, "id": 77, "annotation": null}, {"text": "the", "start": 433, "end": 436, "id": 78, "annotation": null}, {"text": "infrared", "start": 437, "end": 445, "id": 79, "annotation": null}, {"text": "range", "start": 446, "end": 451, "id": 80, "annotation": null}, {"text": ".", "start": 452, "end": 453, "id": 81, "annotation": null}], [{"text": "With", "start": 454, "end": 458, "id": 82, "annotation": null}, {"text": "increased", "start": 459, "end": 468, "id": 83, "annotation": null}, {"text": "sintering", "start": 469, "end": 478, "id": 84, "annotation": null}, {"text": "temperature", "start": 479, "end": 490, "id": 85, "annotation": null}, {"text": ",", "start": 491, "end": 492, "id": 86, "annotation": null}, {"text": "the", "start": 493, "end": 496, "id": 87, "annotation": null}, {"text": "quality", "start": 497, "end": 504, "id": 88, "annotation": null}, {"text": "factor", "start": 505, "end": 511, "id": 89, "annotation": null}, {"text": "(", "start": 512, "end": 513, "id": 90, "annotation": null}, {"text": "Q\u00d7f", "start": 514, "end": 517, "id": 91, "annotation": null}, {"text": ")", "start": 518, "end": 519, "id": 92, "annotation": null}, {"text": "and", "start": 520, "end": 523, "id": 93, "annotation": null}, {"text": "dielectric", "start": 524, "end": 534, "id": 94, "annotation": null}, {"text": "constant", "start": 535, "end": 543, "id": 95, "annotation": null}, {"text": "(", "start": 544, "end": 545, "id": 96, "annotation": null}, {"text": "\u03b5r", "start": 546, "end": 548, "id": 97, "annotation": null}, {"text": ")", "start": 549, "end": 550, "id": 98, "annotation": null}, {"text": "values", "start": 551, "end": 557, "id": 99, "annotation": null}, {"text": "of", "start": 558, "end": 560, "id": 100, "annotation": null}, {"text": "the", "start": 561, "end": 564, "id": 101, "annotation": null}, {"text": "pure", "start": 565, "end": 569, "id": 102, "annotation": null}, {"text": "YAG", "start": 570, "end": 573, "id": 103, "annotation": null}, {"text": "ceramics", "start": 574, "end": 582, "id": 104, "annotation": null}, {"text": "increased", "start": 583, "end": 592, "id": 105, "annotation": null}, {"text": "to", "start": 593, "end": 595, "id": 106, "annotation": null}, {"text": "the", "start": 596, "end": 599, "id": 107, "annotation": null}, {"text": "maximum", "start": 600, "end": 607, "id": 108, "annotation": null}, {"text": "and", "start": 608, "end": 611, "id": 109, "annotation": null}, {"text": "then", "start": 612, "end": 616, "id": 110, "annotation": null}, {"text": "decreased", "start": 617, "end": 626, "id": 111, "annotation": null}, {"text": ".", "start": 627, "end": 628, "id": 112, "annotation": null}], [{"text": "The", "start": 629, "end": 632, "id": 113, "annotation": null}, {"text": "optimal", "start": 633, "end": 640, "id": 114, "annotation": null}, {"text": "microwave", "start": 641, "end": 650, "id": 115, "annotation": null}, {"text": "dielectric", "start": 651, "end": 661, "id": 116, "annotation": null}, {"text": "properties", "start": 662, "end": 672, "id": 117, "annotation": null}, {"text": "(", "start": 673, "end": 674, "id": 118, "annotation": null}, {"text": "Q\u00d7f=89,810GHz", "start": 675, "end": 688, "id": 119, "annotation": null}, {"text": ",", "start": 689, "end": 690, "id": 120, "annotation": null}, {"text": "\u03b5r=10.63", "start": 691, "end": 699, "id": 121, "annotation": null}, {"text": "and", "start": 700, "end": 703, "id": 122, "annotation": null}, {"text": "\u03c4f=\u221251.4ppm/", "start": 704, "end": 716, "id": 123, "annotation": null}, {"text": "\u00b0", "start": 717, "end": 718, "id": 124, "annotation": null}, {"text": "C", "start": 719, "end": 720, "id": 125, "annotation": null}, {"text": ")", "start": 721, "end": 722, "id": 126, "annotation": null}, {"text": "are", "start": 723, "end": 726, "id": 127, "annotation": null}, {"text": "achieved", "start": 727, "end": 735, "id": 128, "annotation": null}, {"text": "for", "start": 736, "end": 739, "id": 129, "annotation": null}, {"text": "transparent", "start": 740, "end": 751, "id": 130, "annotation": null}, {"text": "YAG", "start": 752, "end": 755, "id": 131, "annotation": null}, {"text": "ceramics", "start": 756, "end": 764, "id": 132, "annotation": null}, {"text": "sintered", "start": 765, "end": 773, "id": 133, "annotation": null}, {"text": "at", "start": 774, "end": 776, "id": 134, "annotation": null}, {"text": "1360", "start": 777, "end": 781, "id": 135, "annotation": null}, {"text": "\u00b0", "start": 782, "end": 783, "id": 136, "annotation": null}, {"text": "C", "start": 784, "end": 785, "id": 137, "annotation": null}, {"text": ".", "start": 786, "end": 787, "id": 138, "annotation": null}], [{"text": "The", "start": 788, "end": 791, "id": 139, "annotation": null}, {"text": "Q\u00d7f", "start": 792, "end": 795, "id": 140, "annotation": null}, {"text": "values", "start": 796, "end": 802, "id": 141, "annotation": null}, {"text": "of", "start": 803, "end": 805, "id": 142, "annotation": null}, {"text": "Nd", "start": 806, "end": 808, "id": 143, "annotation": "DOPANT"}, {"text": ":", "start": 809, "end": 810, "id": 144, "annotation": null}, {"text": "YAG", "start": 811, "end": 814, "id": 145, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 815, "end": 823, "id": 146, "annotation": null}, {"text": "were", "start": 824, "end": 828, "id": 147, "annotation": null}, {"text": "lower", "start": 829, "end": 834, "id": 148, "annotation": null}, {"text": "than", "start": 835, "end": 839, "id": 149, "annotation": null}, {"text": "those", "start": 840, "end": 845, "id": 150, "annotation": null}, {"text": "of", "start": 846, "end": 848, "id": 151, "annotation": null}, {"text": "the", "start": 849, "end": 852, "id": 152, "annotation": null}, {"text": "pure", "start": 853, "end": 857, "id": 153, "annotation": null}, {"text": "YAG", "start": 858, "end": 861, "id": 154, "annotation": null}, {"text": "ceramics", "start": 862, "end": 870, "id": 155, "annotation": null}, {"text": ".", "start": 871, "end": 872, "id": 156, "annotation": null}], [{"text": "The", "start": 873, "end": 876, "id": 157, "annotation": null}, {"text": "optimal", "start": 877, "end": 884, "id": 158, "annotation": null}, {"text": "microwave", "start": 885, "end": 894, "id": 159, "annotation": null}, {"text": "dielectric", "start": 895, "end": 905, "id": 160, "annotation": null}, {"text": "properties", "start": 906, "end": 916, "id": 161, "annotation": null}, {"text": "of", "start": 917, "end": 919, "id": 162, "annotation": null}, {"text": "2at.%Nd", "start": 920, "end": 927, "id": 163, "annotation": "DOPANT"}, {"text": ":", "start": 928, "end": 929, "id": 164, "annotation": null}, {"text": "YAG", "start": 930, "end": 933, "id": 165, "annotation": "BASEMAT"}, {"text": "ceramic", "start": 934, "end": 941, "id": 166, "annotation": null}, {"text": "cylinder", "start": 942, "end": 950, "id": 167, "annotation": null}, {"text": "can", "start": 951, "end": 954, "id": 168, "annotation": null}, {"text": "be", "start": 955, "end": 957, "id": 169, "annotation": null}, {"text": "obtained", "start": 958, "end": 966, "id": 170, "annotation": null}, {"text": "with", "start": 967, "end": 971, "id": 171, "annotation": null}, {"text": "the", "start": 972, "end": 975, "id": 172, "annotation": null}, {"text": "Q\u00d7f", "start": 976, "end": 979, "id": 173, "annotation": null}, {"text": "of", "start": 980, "end": 982, "id": 174, "annotation": null}, {"text": "64,026GHz", "start": 983, "end": 992, "id": 175, "annotation": null}, {"text": ",", "start": 993, "end": 994, "id": 176, "annotation": null}, {"text": "\u03b5r", "start": 995, "end": 997, "id": 177, "annotation": null}, {"text": "of", "start": 998, "end": 1000, "id": 178, "annotation": null}, {"text": "10.2", "start": 1001, "end": 1005, "id": 179, "annotation": null}, {"text": "and", "start": 1006, "end": 1009, "id": 180, "annotation": null}, {"text": "\u03c4f", "start": 1010, "end": 1012, "id": 181, "annotation": null}, {"text": "of", "start": 1013, "end": 1015, "id": 182, "annotation": null}, {"text": "\u221264.8ppm/", "start": 1016, "end": 1025, "id": 183, "annotation": null}, {"text": "\u00b0", "start": 1026, "end": 1027, "id": 184, "annotation": null}, {"text": "C", "start": 1028, "end": 1029, "id": 185, "annotation": null}, {"text": ".", "start": 1030, "end": 1031, "id": 186, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "The memristor, the fourth passive circuit element, was predicted theoretically nearly 40 years ago, but we just recently demonstrated both an intentional material system and an analytical model that exhibited the properties of such a device. Here we provide a more physical model based on numerical solutions of coupled drift-diffusion equations for electrons and ions with appropriate boundary conditions. We simulate the dynamics of a two-terminal memristive device based on a semiconductor thin film with mobile dopants that are partially compensated by a small amount of immobile acceptors. We examine the mobile ion distributions, zero-bias potentials, and current-voltage characteristics of the model for both steady-state bias conditions and for dynamical switching to obtain physical insight into the transport processes responsible for memristive behavior in semiconductor films. \u00a9 2009 Wiley-VCH Verlag GmbH & Co. KGaA,.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "memristor", "start": 4, "end": 13, "annotation": null}, {"text": ",", "start": 13, "end": 14, "annotation": null}, {"text": "the", "start": 15, "end": 18, "annotation": null}, {"text": "fourth", "start": 19, "end": 25, "annotation": null}, {"text": "passive", "start": 26, "end": 33, "annotation": null}, {"text": "circuit", "start": 34, "end": 41, "annotation": null}, {"text": "element", "start": 42, "end": 49, "annotation": null}, {"text": ",", "start": 49, "end": 50, "annotation": null}, {"text": "was", "start": 51, "end": 54, "annotation": null}, {"text": "predicted", "start": 55, "end": 64, "annotation": null}, {"text": "theoretically", "start": 65, "end": 78, "annotation": null}, {"text": "nearly", "start": 79, "end": 85, "annotation": null}, {"text": "40", "start": 86, "end": 88, "annotation": null}, {"text": "years", "start": 89, "end": 94, "annotation": null}, {"text": "ago", "start": 95, "end": 98, "annotation": null}, {"text": ",", "start": 98, "end": 99, "annotation": null}, {"text": "but", "start": 100, "end": 103, "annotation": null}, {"text": "we", "start": 104, "end": 106, "annotation": null}, {"text": "just", "start": 107, "end": 111, "annotation": null}, {"text": "recently", "start": 112, "end": 120, "annotation": null}, {"text": "demonstrated", "start": 121, "end": 133, "annotation": null}, {"text": "both", "start": 134, "end": 138, "annotation": null}, {"text": "an", "start": 139, "end": 141, "annotation": null}, {"text": "intentional", "start": 142, "end": 153, "annotation": null}, {"text": "material", "start": 154, "end": 162, "annotation": null}, {"text": "system", "start": 163, "end": 169, "annotation": null}, {"text": "and", "start": 170, "end": 173, "annotation": null}, {"text": "an", "start": 174, "end": 176, "annotation": null}, {"text": "analytical", "start": 177, "end": 187, "annotation": null}, {"text": "model", "start": 188, "end": 193, "annotation": null}, {"text": "that", "start": 194, "end": 198, "annotation": null}, {"text": "exhibited", "start": 199, "end": 208, "annotation": null}, {"text": "the", "start": 209, "end": 212, "annotation": null}, {"text": "properties", "start": 213, "end": 223, "annotation": null}, {"text": "of", "start": 224, "end": 226, "annotation": null}, {"text": "such", "start": 227, "end": 231, "annotation": null}, {"text": "a", "start": 232, "end": 233, "annotation": null}, {"text": "device", "start": 234, "end": 240, "annotation": null}, {"text": ".", "start": 240, "end": 241, "annotation": null}], [{"text": "Here", "start": 242, "end": 246, "annotation": null}, {"text": "we", "start": 247, "end": 249, "annotation": null}, {"text": "provide", "start": 250, "end": 257, "annotation": null}, {"text": "a", "start": 258, "end": 259, "annotation": null}, {"text": "more", "start": 260, "end": 264, "annotation": null}, {"text": "physical", "start": 265, "end": 273, "annotation": null}, {"text": "model", "start": 274, "end": 279, "annotation": null}, {"text": "based", "start": 280, "end": 285, "annotation": null}, {"text": "on", "start": 286, "end": 288, "annotation": null}, {"text": "numerical", "start": 289, "end": 298, "annotation": null}, {"text": "solutions", "start": 299, "end": 308, "annotation": null}, {"text": "of", "start": 309, "end": 311, "annotation": null}, {"text": "coupled", "start": 312, "end": 319, "annotation": null}, {"text": "drift", "start": 320, "end": 325, "annotation": null}, {"text": "-", "start": 325, "end": 326, "annotation": null}, {"text": "diffusion", "start": 326, "end": 335, "annotation": null}, {"text": "equations", "start": 336, "end": 345, "annotation": null}, {"text": "for", "start": 346, "end": 349, "annotation": null}, {"text": "electrons", "start": 350, "end": 359, "annotation": null}, {"text": "and", "start": 360, "end": 363, "annotation": null}, {"text": "ions", "start": 364, "end": 368, "annotation": null}, {"text": "with", "start": 369, "end": 373, "annotation": null}, {"text": "appropriate", "start": 374, "end": 385, "annotation": null}, {"text": "boundary", "start": 386, "end": 394, "annotation": null}, {"text": "conditions", "start": 395, "end": 405, "annotation": null}, {"text": ".", "start": 405, "end": 406, "annotation": null}], [{"text": "We", "start": 407, "end": 409, "annotation": null}, {"text": "simulate", "start": 410, "end": 418, "annotation": null}, {"text": "the", "start": 419, "end": 422, "annotation": null}, {"text": "dynamics", "start": 423, "end": 431, "annotation": null}, {"text": "of", "start": 432, "end": 434, "annotation": null}, {"text": "a", "start": 435, "end": 436, "annotation": null}, {"text": "two", "start": 437, "end": 440, "annotation": null}, {"text": "-", "start": 440, "end": 441, "annotation": null}, {"text": "terminal", "start": 441, "end": 449, "annotation": null}, {"text": "memristive", "start": 450, "end": 460, "annotation": null}, {"text": "device", "start": 461, "end": 467, "annotation": null}, {"text": "based", "start": 468, "end": 473, "annotation": null}, {"text": "on", "start": 474, "end": 476, "annotation": null}, {"text": "a", "start": 477, "end": 478, "annotation": null}, {"text": "semiconductor", "start": 479, "end": 492, "annotation": "BASEMAT"}, {"text": "thin", "start": 493, "end": 497, "annotation": "BASEMAT"}, {"text": "film", "start": 498, "end": 502, "annotation": "BASEMAT"}, {"text": "with", "start": 503, "end": 507, "annotation": null}, {"text": "mobile", "start": 508, "end": 514, "annotation": null}, {"text": "dopants", "start": 515, "end": 522, "annotation": null}, {"text": "that", "start": 523, "end": 527, "annotation": null}, {"text": "are", "start": 528, "end": 531, "annotation": null}, {"text": "partially", "start": 532, "end": 541, "annotation": null}, {"text": "compensated", "start": 542, "end": 553, "annotation": null}, {"text": "by", "start": 554, "end": 556, "annotation": null}, {"text": "a", "start": 557, "end": 558, "annotation": null}, {"text": "small", "start": 559, "end": 564, "annotation": null}, {"text": "amount", "start": 565, "end": 571, "annotation": null}, {"text": "of", "start": 572, "end": 574, "annotation": null}, {"text": "immobile", "start": 575, "end": 583, "annotation": null}, {"text": "acceptors", "start": 584, "end": 593, "annotation": null}, {"text": ".", "start": 593, "end": 594, "annotation": null}], [{"text": "We", "start": 595, "end": 597, "annotation": null}, {"text": "examine", "start": 598, "end": 605, "annotation": null}, {"text": "the", "start": 606, "end": 609, "annotation": null}, {"text": "mobile", "start": 610, "end": 616, "annotation": null}, {"text": "ion", "start": 617, "end": 620, "annotation": null}, {"text": "distributions", "start": 621, "end": 634, "annotation": null}, {"text": ",", "start": 634, "end": 635, "annotation": null}, {"text": "zero", "start": 636, "end": 640, "annotation": null}, {"text": "-", "start": 640, "end": 641, "annotation": null}, {"text": "bias", "start": 641, "end": 645, "annotation": null}, {"text": "potentials", "start": 646, "end": 656, "annotation": null}, {"text": ",", "start": 656, "end": 657, "annotation": null}, {"text": "and", "start": 658, "end": 661, "annotation": null}, {"text": "current", "start": 662, "end": 669, "annotation": null}, {"text": "-", "start": 669, "end": 670, "annotation": null}, {"text": "voltage", "start": 670, "end": 677, "annotation": null}, {"text": "characteristics", "start": 678, "end": 693, "annotation": null}, {"text": "of", "start": 694, "end": 696, "annotation": null}, {"text": "the", "start": 697, "end": 700, "annotation": null}, {"text": "model", "start": 701, "end": 706, "annotation": null}, {"text": "for", "start": 707, "end": 710, "annotation": null}, {"text": "both", "start": 711, "end": 715, "annotation": null}, {"text": "steady", "start": 716, "end": 722, "annotation": null}, {"text": "-", "start": 722, "end": 723, "annotation": null}, {"text": "state", "start": 723, "end": 728, "annotation": null}, {"text": "bias", "start": 729, "end": 733, "annotation": null}, {"text": "conditions", "start": 734, "end": 744, "annotation": null}, {"text": "and", "start": 745, "end": 748, "annotation": null}, {"text": "for", "start": 749, "end": 752, "annotation": null}, {"text": "dynamical", "start": 753, "end": 762, "annotation": null}, {"text": "switching", "start": 763, "end": 772, "annotation": null}, {"text": "to", "start": 773, "end": 775, "annotation": null}, {"text": "obtain", "start": 776, "end": 782, "annotation": null}, {"text": "physical", "start": 783, "end": 791, "annotation": null}, {"text": "insight", "start": 792, "end": 799, "annotation": null}, {"text": "into", "start": 800, "end": 804, "annotation": null}, {"text": "the", "start": 805, "end": 808, "annotation": null}, {"text": "transport", "start": 809, "end": 818, "annotation": null}, {"text": "processes", "start": 819, "end": 828, "annotation": null}, {"text": "responsible", "start": 829, "end": 840, "annotation": null}, {"text": "for", "start": 841, "end": 844, "annotation": null}, {"text": "memristive", "start": 845, "end": 855, "annotation": null}, {"text": "behavior", "start": 856, "end": 864, "annotation": null}, {"text": "in", "start": 865, "end": 867, "annotation": null}, {"text": "semiconductor", "start": 868, "end": 881, "annotation": null}, {"text": "films", "start": 882, "end": 887, "annotation": null}, {"text": ".", "start": 887, "end": 888, "annotation": null}], [{"text": "KGaA", "start": 924, "end": 928, "annotation": null}, {"text": ",", "start": 928, "end": 929, "annotation": null}, {"text": ".", "start": 929, "end": 930, "annotation": null}]]} +{"remark": "doping_annt3", "text": "The memristor, the fourth passive circuit element, was predicted theoretically nearly 40 years ago, but we just recently demonstrated both an intentional material system and an analytical model that exhibited the properties of such a device. Here we provide a more physical model based on numerical solutions of coupled drift-diffusion equations for electrons and ions with appropriate boundary conditions. We simulate the dynamics of a two-terminal memristive device based on a semiconductor thin film with mobile dopants that are partially compensated by a small amount of immobile acceptors. We examine the mobile ion distributions, zero-bias potentials, and current-voltage characteristics of the model for both steady-state bias conditions and for dynamical switching to obtain physical insight into the transport processes responsible for memristive behavior in semiconductor films. \u00a9 2009 Wiley-VCH Verlag GmbH & Co. KGaA,.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "memristor", "start": 4, "end": 13, "annotation": null}, {"text": ",", "start": 13, "end": 14, "annotation": null}, {"text": "the", "start": 15, "end": 18, "annotation": null}, {"text": "fourth", "start": 19, "end": 25, "annotation": null}, {"text": "passive", "start": 26, "end": 33, "annotation": null}, {"text": "circuit", "start": 34, "end": 41, "annotation": null}, {"text": "element", "start": 42, "end": 49, "annotation": null}, {"text": ",", "start": 49, "end": 50, "annotation": null}, {"text": "was", "start": 51, "end": 54, "annotation": null}, {"text": "predicted", "start": 55, "end": 64, "annotation": null}, {"text": "theoretically", "start": 65, "end": 78, "annotation": null}, {"text": "nearly", "start": 79, "end": 85, "annotation": null}, {"text": "40", "start": 86, "end": 88, "annotation": null}, {"text": "years", "start": 89, "end": 94, "annotation": null}, {"text": "ago", "start": 95, "end": 98, "annotation": null}, {"text": ",", "start": 98, "end": 99, "annotation": null}, {"text": "but", "start": 100, "end": 103, "annotation": null}, {"text": "we", "start": 104, "end": 106, "annotation": null}, {"text": "just", "start": 107, "end": 111, "annotation": null}, {"text": "recently", "start": 112, "end": 120, "annotation": null}, {"text": "demonstrated", "start": 121, "end": 133, "annotation": null}, {"text": "both", "start": 134, "end": 138, "annotation": null}, {"text": "an", "start": 139, "end": 141, "annotation": null}, {"text": "intentional", "start": 142, "end": 153, "annotation": null}, {"text": "material", "start": 154, "end": 162, "annotation": null}, {"text": "system", "start": 163, "end": 169, "annotation": null}, {"text": "and", "start": 170, "end": 173, "annotation": null}, {"text": "an", "start": 174, "end": 176, "annotation": null}, {"text": "analytical", "start": 177, "end": 187, "annotation": null}, {"text": "model", "start": 188, "end": 193, "annotation": null}, {"text": "that", "start": 194, "end": 198, "annotation": null}, {"text": "exhibited", "start": 199, "end": 208, "annotation": null}, {"text": "the", "start": 209, "end": 212, "annotation": null}, {"text": "properties", "start": 213, "end": 223, "annotation": null}, {"text": "of", "start": 224, "end": 226, "annotation": null}, {"text": "such", "start": 227, "end": 231, "annotation": null}, {"text": "a", "start": 232, "end": 233, "annotation": null}, {"text": "device", "start": 234, "end": 240, "annotation": null}, {"text": ".", "start": 240, "end": 241, "annotation": null}], [{"text": "Here", "start": 242, "end": 246, "annotation": null}, {"text": "we", "start": 247, "end": 249, "annotation": null}, {"text": "provide", "start": 250, "end": 257, "annotation": null}, {"text": "a", "start": 258, "end": 259, "annotation": null}, {"text": "more", "start": 260, "end": 264, "annotation": null}, {"text": "physical", "start": 265, "end": 273, "annotation": null}, {"text": "model", "start": 274, "end": 279, "annotation": null}, {"text": "based", "start": 280, "end": 285, "annotation": null}, {"text": "on", "start": 286, "end": 288, "annotation": null}, {"text": "numerical", "start": 289, "end": 298, "annotation": null}, {"text": "solutions", "start": 299, "end": 308, "annotation": null}, {"text": "of", "start": 309, "end": 311, "annotation": null}, {"text": "coupled", "start": 312, "end": 319, "annotation": null}, {"text": "drift", "start": 320, "end": 325, "annotation": null}, {"text": "-", "start": 325, "end": 326, "annotation": null}, {"text": "diffusion", "start": 326, "end": 335, "annotation": null}, {"text": "equations", "start": 336, "end": 345, "annotation": null}, {"text": "for", "start": 346, "end": 349, "annotation": null}, {"text": "electrons", "start": 350, "end": 359, "annotation": null}, {"text": "and", "start": 360, "end": 363, "annotation": null}, {"text": "ions", "start": 364, "end": 368, "annotation": null}, {"text": "with", "start": 369, "end": 373, "annotation": null}, {"text": "appropriate", "start": 374, "end": 385, "annotation": null}, {"text": "boundary", "start": 386, "end": 394, "annotation": null}, {"text": "conditions", "start": 395, "end": 405, "annotation": null}, {"text": ".", "start": 405, "end": 406, "annotation": null}], [{"text": "We", "start": 407, "end": 409, "annotation": null}, {"text": "simulate", "start": 410, "end": 418, "annotation": null}, {"text": "the", "start": 419, "end": 422, "annotation": null}, {"text": "dynamics", "start": 423, "end": 431, "annotation": null}, {"text": "of", "start": 432, "end": 434, "annotation": null}, {"text": "a", "start": 435, "end": 436, "annotation": null}, {"text": "two", "start": 437, "end": 440, "annotation": null}, {"text": "-", "start": 440, "end": 441, "annotation": null}, {"text": "terminal", "start": 441, "end": 449, "annotation": null}, {"text": "memristive", "start": 450, "end": 460, "annotation": null}, {"text": "device", "start": 461, "end": 467, "annotation": null}, {"text": "based", "start": 468, "end": 473, "annotation": null}, {"text": "on", "start": 474, "end": 476, "annotation": null}, {"text": "a", "start": 477, "end": 478, "annotation": null}, {"text": "semiconductor", "start": 479, "end": 492, "annotation": "BASEMAT"}, {"text": "thin", "start": 493, "end": 497, "annotation": "BASEMAT"}, {"text": "film", "start": 498, "end": 502, "annotation": "BASEMAT"}, {"text": "with", "start": 503, "end": 507, "annotation": null}, {"text": "mobile", "start": 508, "end": 514, "annotation": null}, {"text": "dopants", "start": 515, "end": 522, "annotation": null}, {"text": "that", "start": 523, "end": 527, "annotation": null}, {"text": "are", "start": 528, "end": 531, "annotation": null}, {"text": "partially", "start": 532, "end": 541, "annotation": null}, {"text": "compensated", "start": 542, "end": 553, "annotation": null}, {"text": "by", "start": 554, "end": 556, "annotation": null}, {"text": "a", "start": 557, "end": 558, "annotation": null}, {"text": "small", "start": 559, "end": 564, "annotation": null}, {"text": "amount", "start": 565, "end": 571, "annotation": null}, {"text": "of", "start": 572, "end": 574, "annotation": null}, {"text": "immobile", "start": 575, "end": 583, "annotation": null}, {"text": "acceptors", "start": 584, "end": 593, "annotation": null}, {"text": ".", "start": 593, "end": 594, "annotation": null}], [{"text": "We", "start": 595, "end": 597, "annotation": null}, {"text": "examine", "start": 598, "end": 605, "annotation": null}, {"text": "the", "start": 606, "end": 609, "annotation": null}, {"text": "mobile", "start": 610, "end": 616, "annotation": null}, {"text": "ion", "start": 617, "end": 620, "annotation": null}, {"text": "distributions", "start": 621, "end": 634, "annotation": null}, {"text": ",", "start": 634, "end": 635, "annotation": null}, {"text": "zero", "start": 636, "end": 640, "annotation": null}, {"text": "-", "start": 640, "end": 641, "annotation": null}, {"text": "bias", "start": 641, "end": 645, "annotation": null}, {"text": "potentials", "start": 646, "end": 656, "annotation": null}, {"text": ",", "start": 656, "end": 657, "annotation": null}, {"text": "and", "start": 658, "end": 661, "annotation": null}, {"text": "current", "start": 662, "end": 669, "annotation": null}, {"text": "-", "start": 669, "end": 670, "annotation": null}, {"text": "voltage", "start": 670, "end": 677, "annotation": null}, {"text": "characteristics", "start": 678, "end": 693, "annotation": null}, {"text": "of", "start": 694, "end": 696, "annotation": null}, {"text": "the", "start": 697, "end": 700, "annotation": null}, {"text": "model", "start": 701, "end": 706, "annotation": null}, {"text": "for", "start": 707, "end": 710, "annotation": null}, {"text": "both", "start": 711, "end": 715, "annotation": null}, {"text": "steady", "start": 716, "end": 722, "annotation": null}, {"text": "-", "start": 722, "end": 723, "annotation": null}, {"text": "state", "start": 723, "end": 728, "annotation": null}, {"text": "bias", "start": 729, "end": 733, "annotation": null}, {"text": "conditions", "start": 734, "end": 744, "annotation": null}, {"text": "and", "start": 745, "end": 748, "annotation": null}, {"text": "for", "start": 749, "end": 752, "annotation": null}, {"text": "dynamical", "start": 753, "end": 762, "annotation": null}, {"text": "switching", "start": 763, "end": 772, "annotation": null}, {"text": "to", "start": 773, "end": 775, "annotation": null}, {"text": "obtain", "start": 776, "end": 782, "annotation": null}, {"text": "physical", "start": 783, "end": 791, "annotation": null}, {"text": "insight", "start": 792, "end": 799, "annotation": null}, {"text": "into", "start": 800, "end": 804, "annotation": null}, {"text": "the", "start": 805, "end": 808, "annotation": null}, {"text": "transport", "start": 809, "end": 818, "annotation": null}, {"text": "processes", "start": 819, "end": 828, "annotation": null}, {"text": "responsible", "start": 829, "end": 840, "annotation": null}, {"text": "for", "start": 841, "end": 844, "annotation": null}, {"text": "memristive", "start": 845, "end": 855, "annotation": null}, {"text": "behavior", "start": 856, "end": 864, "annotation": null}, {"text": "in", "start": 865, "end": 867, "annotation": null}, {"text": "semiconductor", "start": 868, "end": 881, "annotation": null}, {"text": "films", "start": 882, "end": 887, "annotation": null}, {"text": ".", "start": 887, "end": 888, "annotation": null}], [{"text": "KGaA", "start": 924, "end": 928, "annotation": null}, {"text": ",", "start": 928, "end": 929, "annotation": null}, {"text": ".", "start": 929, "end": 930, "annotation": null}]], "meta": {"doi": "10.1002/smll.200801323"}} {"text": "Using the sol-gel route Nd3+-doped oxyfluoride glass-ceramics were prepared. LiYF4 and YF3 crystals were deposited in the glass-ceramics and their size, distribution, and amount ratio were varied by changing the compositions and heating temperatures. The incorporation of Nd3+ ions into both the fluoride crystals was confirmed by the high-resolution elemental mapping of the glass-ceramics. The incorporated Nd3+ ions showed up and down conversion photoluminescence whose properties were obviously different among the samples. The preliminary site analysis for Nd3+ ions was carried out using a unique approach associated with the Prony series approximation. Finally, the approach was found to be useful for the analysis of materials that are structurally complicating.", "meta": {"doi": "10.1111/jace.12053"}, "_input_hash": -1640836652, "_task_hash": -1873812073, "tokens": [[{"text": "Using", "start": 0, "end": 5, "id": 0, "annotation": null}, {"text": "the", "start": 6, "end": 9, "id": 1, "annotation": null}, {"text": "sol", "start": 10, "end": 13, "id": 2, "annotation": null}, {"text": "-", "start": 14, "end": 15, "id": 3, "annotation": null}, {"text": "gel", "start": 16, "end": 19, "id": 4, "annotation": null}, {"text": "route", "start": 20, "end": 25, "id": 5, "annotation": null}, {"text": "Nd3", "start": 26, "end": 29, "id": 6, "annotation": "DOPANT"}, {"text": "+", "start": 30, "end": 31, "id": 7, "annotation": "DOPANT"}, {"text": "-doped", "start": 32, "end": 38, "id": 8, "annotation": null}, {"text": "oxyfluoride", "start": 39, "end": 50, "id": 9, "annotation": "BASEMAT"}, {"text": "glass", "start": 51, "end": 56, "id": 10, "annotation": null}, {"text": "-", "start": 57, "end": 58, "id": 11, "annotation": null}, {"text": "ceramics", "start": 59, "end": 67, "id": 12, "annotation": null}, {"text": "were", "start": 68, "end": 72, "id": 13, "annotation": null}, {"text": "prepared", "start": 73, "end": 81, "id": 14, "annotation": null}, {"text": ".", "start": 82, "end": 83, "id": 15, "annotation": null}], [{"text": "LiYF4", "start": 84, "end": 89, "id": 16, "annotation": null}, {"text": "and", "start": 90, "end": 93, "id": 17, "annotation": null}, {"text": "YF3", "start": 94, "end": 97, "id": 18, "annotation": null}, {"text": "crystals", "start": 98, "end": 106, "id": 19, "annotation": null}, {"text": "were", "start": 107, "end": 111, "id": 20, "annotation": null}, {"text": "deposited", "start": 112, "end": 121, "id": 21, "annotation": null}, {"text": "in", "start": 122, "end": 124, "id": 22, "annotation": null}, {"text": "the", "start": 125, "end": 128, "id": 23, "annotation": null}, {"text": "glass", "start": 129, "end": 134, "id": 24, "annotation": null}, {"text": "-", "start": 135, "end": 136, "id": 25, "annotation": null}, {"text": "ceramics", "start": 137, "end": 145, "id": 26, "annotation": null}, {"text": "and", "start": 146, "end": 149, "id": 27, "annotation": null}, {"text": "their", "start": 150, "end": 155, "id": 28, "annotation": null}, {"text": "size", "start": 156, "end": 160, "id": 29, "annotation": null}, {"text": ",", "start": 161, "end": 162, "id": 30, "annotation": null}, {"text": "distribution", "start": 163, "end": 175, "id": 31, "annotation": null}, {"text": ",", "start": 176, "end": 177, "id": 32, "annotation": null}, {"text": "and", "start": 178, "end": 181, "id": 33, "annotation": null}, {"text": "amount", "start": 182, "end": 188, "id": 34, "annotation": null}, {"text": "ratio", "start": 189, "end": 194, "id": 35, "annotation": null}, {"text": "were", "start": 195, "end": 199, "id": 36, "annotation": null}, {"text": "varied", "start": 200, "end": 206, "id": 37, "annotation": null}, {"text": "by", "start": 207, "end": 209, "id": 38, "annotation": null}, {"text": "changing", "start": 210, "end": 218, "id": 39, "annotation": null}, {"text": "the", "start": 219, "end": 222, "id": 40, "annotation": null}, {"text": "compositions", "start": 223, "end": 235, "id": 41, "annotation": null}, {"text": "and", "start": 236, "end": 239, "id": 42, "annotation": null}, {"text": "heating", "start": 240, "end": 247, "id": 43, "annotation": null}, {"text": "temperatures", "start": 248, "end": 260, "id": 44, "annotation": null}, {"text": ".", "start": 261, "end": 262, "id": 45, "annotation": null}], [{"text": "The", "start": 263, "end": 266, "id": 46, "annotation": null}, {"text": "incorporation", "start": 267, "end": 280, "id": 47, "annotation": null}, {"text": "of", "start": 281, "end": 283, "id": 48, "annotation": null}, {"text": "Nd3", "start": 284, "end": 287, "id": 49, "annotation": null}, {"text": "+", "start": 288, "end": 289, "id": 50, "annotation": null}, {"text": "ions", "start": 290, "end": 294, "id": 51, "annotation": null}, {"text": "into", "start": 295, "end": 299, "id": 52, "annotation": null}, {"text": "both", "start": 300, "end": 304, "id": 53, "annotation": null}, {"text": "the", "start": 305, "end": 308, "id": 54, "annotation": null}, {"text": "fluoride", "start": 309, "end": 317, "id": 55, "annotation": null}, {"text": "crystals", "start": 318, "end": 326, "id": 56, "annotation": null}, {"text": "was", "start": 327, "end": 330, "id": 57, "annotation": null}, {"text": "confirmed", "start": 331, "end": 340, "id": 58, "annotation": null}, {"text": "by", "start": 341, "end": 343, "id": 59, "annotation": null}, {"text": "the", "start": 344, "end": 347, "id": 60, "annotation": null}, {"text": "high", "start": 348, "end": 352, "id": 61, "annotation": null}, {"text": "-", "start": 353, "end": 354, "id": 62, "annotation": null}, {"text": "resolution", "start": 355, "end": 365, "id": 63, "annotation": null}, {"text": "elemental", "start": 366, "end": 375, "id": 64, "annotation": null}, {"text": "mapping", "start": 376, "end": 383, "id": 65, "annotation": null}, {"text": "of", "start": 384, "end": 386, "id": 66, "annotation": null}, {"text": "the", "start": 387, "end": 390, "id": 67, "annotation": null}, {"text": "glass", "start": 391, "end": 396, "id": 68, "annotation": null}, {"text": "-", "start": 397, "end": 398, "id": 69, "annotation": null}, {"text": "ceramics", "start": 399, "end": 407, "id": 70, "annotation": null}, {"text": ".", "start": 408, "end": 409, "id": 71, "annotation": null}], [{"text": "The", "start": 410, "end": 413, "id": 72, "annotation": null}, {"text": "incorporated", "start": 414, "end": 426, "id": 73, "annotation": null}, {"text": "Nd3", "start": 427, "end": 430, "id": 74, "annotation": null}, {"text": "+", "start": 431, "end": 432, "id": 75, "annotation": null}, {"text": "ions", "start": 433, "end": 437, "id": 76, "annotation": null}, {"text": "showed", "start": 438, "end": 444, "id": 77, "annotation": null}, {"text": "up", "start": 445, "end": 447, "id": 78, "annotation": null}, {"text": "and", "start": 448, "end": 451, "id": 79, "annotation": null}, {"text": "down", "start": 452, "end": 456, "id": 80, "annotation": null}, {"text": "conversion", "start": 457, "end": 467, "id": 81, "annotation": null}, {"text": "photoluminescence", "start": 468, "end": 485, "id": 82, "annotation": null}, {"text": "whose", "start": 486, "end": 491, "id": 83, "annotation": null}, {"text": "properties", "start": 492, "end": 502, "id": 84, "annotation": null}, {"text": "were", "start": 503, "end": 507, "id": 85, "annotation": null}, {"text": "obviously", "start": 508, "end": 517, "id": 86, "annotation": null}, {"text": "different", "start": 518, "end": 527, "id": 87, "annotation": null}, {"text": "among", "start": 528, "end": 533, "id": 88, "annotation": null}, {"text": "the", "start": 534, "end": 537, "id": 89, "annotation": null}, {"text": "samples", "start": 538, "end": 545, "id": 90, "annotation": null}, {"text": ".", "start": 546, "end": 547, "id": 91, "annotation": null}], [{"text": "The", "start": 548, "end": 551, "id": 92, "annotation": null}, {"text": "preliminary", "start": 552, "end": 563, "id": 93, "annotation": null}, {"text": "site", "start": 564, "end": 568, "id": 94, "annotation": null}, {"text": "analysis", "start": 569, "end": 577, "id": 95, "annotation": null}, {"text": "for", "start": 578, "end": 581, "id": 96, "annotation": null}, {"text": "Nd3", "start": 582, "end": 585, "id": 97, "annotation": null}, {"text": "+", "start": 586, "end": 587, "id": 98, "annotation": null}, {"text": "ions", "start": 588, "end": 592, "id": 99, "annotation": null}, {"text": "was", "start": 593, "end": 596, "id": 100, "annotation": null}, {"text": "carried", "start": 597, "end": 604, "id": 101, "annotation": null}, {"text": "out", "start": 605, "end": 608, "id": 102, "annotation": null}, {"text": "using", "start": 609, "end": 614, "id": 103, "annotation": null}, {"text": "a", "start": 615, "end": 616, "id": 104, "annotation": null}, {"text": "unique", "start": 617, "end": 623, "id": 105, "annotation": null}, {"text": "approach", "start": 624, "end": 632, "id": 106, "annotation": null}, {"text": "associated", "start": 633, "end": 643, "id": 107, "annotation": null}, {"text": "with", "start": 644, "end": 648, "id": 108, "annotation": null}, {"text": "the", "start": 649, "end": 652, "id": 109, "annotation": null}, {"text": "Prony", "start": 653, "end": 658, "id": 110, "annotation": null}, {"text": "series", "start": 659, "end": 665, "id": 111, "annotation": null}, {"text": "approximation", "start": 666, "end": 679, "id": 112, "annotation": null}, {"text": ".", "start": 680, "end": 681, "id": 113, "annotation": null}], [{"text": "Finally", "start": 682, "end": 689, "id": 114, "annotation": null}, {"text": ",", "start": 690, "end": 691, "id": 115, "annotation": null}, {"text": "the", "start": 692, "end": 695, "id": 116, "annotation": null}, {"text": "approach", "start": 696, "end": 704, "id": 117, "annotation": null}, {"text": "was", "start": 705, "end": 708, "id": 118, "annotation": null}, {"text": "found", "start": 709, "end": 714, "id": 119, "annotation": null}, {"text": "to", "start": 715, "end": 717, "id": 120, "annotation": null}, {"text": "be", "start": 718, "end": 720, "id": 121, "annotation": null}, {"text": "useful", "start": 721, "end": 727, "id": 122, "annotation": null}, {"text": "for", "start": 728, "end": 731, "id": 123, "annotation": null}, {"text": "the", "start": 732, "end": 735, "id": 124, "annotation": null}, {"text": "analysis", "start": 736, "end": 744, "id": 125, "annotation": null}, {"text": "of", "start": 745, "end": 747, "id": 126, "annotation": null}, {"text": "materials", "start": 748, "end": 757, "id": 127, "annotation": null}, {"text": "that", "start": 758, "end": 762, "id": 128, "annotation": null}, {"text": "are", "start": 763, "end": 766, "id": 129, "annotation": null}, {"text": "structurally", "start": 767, "end": 779, "id": 130, "annotation": null}, {"text": "complicating", "start": 780, "end": 792, "id": 131, "annotation": null}, {"text": ".", "start": 793, "end": 794, "id": 132, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "In this study r.f. magnetron sputtering is employed to deposit amorphous Ca-doped titanate film on silicon substrate. The as-deposited BaTiO3 film has a 1 MHz dielectric constant of 14 and a refractive index of 1.9 at a wavelength of 6328 \u00c5. The capacitance-voltage characteristics of the BaTiO3 film suggest a Poole-Frenkel transport mechanism with oxygen vacancies as one of the positively charged traps. The remanent polarization in the BaTiO3 films affects its current-voltage curve. The fatigue behaviour of the BaTiO3 films is improved by the introduction of oxygen gas during sputtering and/or the addition of dopant calcium. No fatigue is observed by the (Ba0.9Ca0.1) TiO3 film up to a switching cycle of 1010.", "meta": {"doi": "10.1016/0040-6090(94)90019-1"}, "_input_hash": -1780526755, "_task_hash": 372759099, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "study", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": "r.f", "start": 14, "end": 17, "id": 3, "annotation": null}, {"text": ".", "start": 18, "end": 19, "id": 4, "annotation": null}], [{"text": "magnetron", "start": 20, "end": 29, "id": 5, "annotation": null}, {"text": "sputtering", "start": 30, "end": 40, "id": 6, "annotation": null}, {"text": "is", "start": 41, "end": 43, "id": 7, "annotation": null}, {"text": "employed", "start": 44, "end": 52, "id": 8, "annotation": null}, {"text": "to", "start": 53, "end": 55, "id": 9, "annotation": null}, {"text": "deposit", "start": 56, "end": 63, "id": 10, "annotation": null}, {"text": "amorphous", "start": 64, "end": 73, "id": 11, "annotation": null}, {"text": "Ca", "start": 74, "end": 76, "id": 12, "annotation": "DOPANT"}, {"text": "-", "start": 77, "end": 78, "id": 13, "annotation": null}, {"text": "doped", "start": 79, "end": 84, "id": 14, "annotation": null}, {"text": "titanate", "start": 85, "end": 93, "id": 15, "annotation": "BASEMAT"}, {"text": "film", "start": 94, "end": 98, "id": 16, "annotation": null}, {"text": "on", "start": 99, "end": 101, "id": 17, "annotation": null}, {"text": "silicon", "start": 102, "end": 109, "id": 18, "annotation": null}, {"text": "substrate", "start": 110, "end": 119, "id": 19, "annotation": null}, {"text": ".", "start": 120, "end": 121, "id": 20, "annotation": null}], [{"text": "The", "start": 122, "end": 125, "id": 21, "annotation": null}, {"text": "as", "start": 126, "end": 128, "id": 22, "annotation": null}, {"text": "-", "start": 129, "end": 130, "id": 23, "annotation": null}, {"text": "deposited", "start": 131, "end": 140, "id": 24, "annotation": null}, {"text": "BaTiO3", "start": 141, "end": 147, "id": 25, "annotation": null}, {"text": "film", "start": 148, "end": 152, "id": 26, "annotation": null}, {"text": "has", "start": 153, "end": 156, "id": 27, "annotation": null}, {"text": "a", "start": 157, "end": 158, "id": 28, "annotation": null}, {"text": "1", "start": 159, "end": 160, "id": 29, "annotation": null}, {"text": "MHz", "start": 161, "end": 164, "id": 30, "annotation": null}, {"text": "dielectric", "start": 165, "end": 175, "id": 31, "annotation": null}, {"text": "constant", "start": 176, "end": 184, "id": 32, "annotation": null}, {"text": "of", "start": 185, "end": 187, "id": 33, "annotation": null}, {"text": "14", "start": 188, "end": 190, "id": 34, "annotation": null}, {"text": "and", "start": 191, "end": 194, "id": 35, "annotation": null}, {"text": "a", "start": 195, "end": 196, "id": 36, "annotation": null}, {"text": "refractive", "start": 197, "end": 207, "id": 37, "annotation": null}, {"text": "index", "start": 208, "end": 213, "id": 38, "annotation": null}, {"text": "of", "start": 214, "end": 216, "id": 39, "annotation": null}, {"text": "1.9", "start": 217, "end": 220, "id": 40, "annotation": null}, {"text": "at", "start": 221, "end": 223, "id": 41, "annotation": null}, {"text": "a", "start": 224, "end": 225, "id": 42, "annotation": null}, {"text": "wavelength", "start": 226, "end": 236, "id": 43, "annotation": null}, {"text": "of", "start": 237, "end": 239, "id": 44, "annotation": null}, {"text": "6328", "start": 240, "end": 244, "id": 45, "annotation": null}, {"text": "\u00c5.", "start": 245, "end": 247, "id": 46, "annotation": null}], [{"text": "The", "start": 248, "end": 251, "id": 47, "annotation": null}, {"text": "capacitance", "start": 252, "end": 263, "id": 48, "annotation": null}, {"text": "-", "start": 264, "end": 265, "id": 49, "annotation": null}, {"text": "voltage", "start": 266, "end": 273, "id": 50, "annotation": null}, {"text": "characteristics", "start": 274, "end": 289, "id": 51, "annotation": null}, {"text": "of", "start": 290, "end": 292, "id": 52, "annotation": null}, {"text": "the", "start": 293, "end": 296, "id": 53, "annotation": null}, {"text": "BaTiO3", "start": 297, "end": 303, "id": 54, "annotation": null}, {"text": "film", "start": 304, "end": 308, "id": 55, "annotation": null}, {"text": "suggest", "start": 309, "end": 316, "id": 56, "annotation": null}, {"text": "a", "start": 317, "end": 318, "id": 57, "annotation": null}, {"text": "Poole", "start": 319, "end": 324, "id": 58, "annotation": null}, {"text": "-", "start": 325, "end": 326, "id": 59, "annotation": null}, {"text": "Frenkel", "start": 327, "end": 334, "id": 60, "annotation": null}, {"text": "transport", "start": 335, "end": 344, "id": 61, "annotation": null}, {"text": "mechanism", "start": 345, "end": 354, "id": 62, "annotation": null}, {"text": "with", "start": 355, "end": 359, "id": 63, "annotation": null}, {"text": "oxygen", "start": 360, "end": 366, "id": 64, "annotation": null}, {"text": "vacancies", "start": 367, "end": 376, "id": 65, "annotation": null}, {"text": "as", "start": 377, "end": 379, "id": 66, "annotation": null}, {"text": "one", "start": 380, "end": 383, "id": 67, "annotation": null}, {"text": "of", "start": 384, "end": 386, "id": 68, "annotation": null}, {"text": "the", "start": 387, "end": 390, "id": 69, "annotation": null}, {"text": "positively", "start": 391, "end": 401, "id": 70, "annotation": null}, {"text": "charged", "start": 402, "end": 409, "id": 71, "annotation": null}, {"text": "traps", "start": 410, "end": 415, "id": 72, "annotation": null}, {"text": ".", "start": 416, "end": 417, "id": 73, "annotation": null}], [{"text": "The", "start": 418, "end": 421, "id": 74, "annotation": null}, {"text": "remanent", "start": 422, "end": 430, "id": 75, "annotation": null}, {"text": "polarization", "start": 431, "end": 443, "id": 76, "annotation": null}, {"text": "in", "start": 444, "end": 446, "id": 77, "annotation": null}, {"text": "the", "start": 447, "end": 450, "id": 78, "annotation": null}, {"text": "BaTiO3", "start": 451, "end": 457, "id": 79, "annotation": null}, {"text": "films", "start": 458, "end": 463, "id": 80, "annotation": null}, {"text": "affects", "start": 464, "end": 471, "id": 81, "annotation": null}, {"text": "its", "start": 472, "end": 475, "id": 82, "annotation": null}, {"text": "current", "start": 476, "end": 483, "id": 83, "annotation": null}, {"text": "-", "start": 484, "end": 485, "id": 84, "annotation": null}, {"text": "voltage", "start": 486, "end": 493, "id": 85, "annotation": null}, {"text": "curve", "start": 494, "end": 499, "id": 86, "annotation": null}, {"text": ".", "start": 500, "end": 501, "id": 87, "annotation": null}], [{"text": "The", "start": 502, "end": 505, "id": 88, "annotation": null}, {"text": "fatigue", "start": 506, "end": 513, "id": 89, "annotation": null}, {"text": "behaviour", "start": 514, "end": 523, "id": 90, "annotation": null}, {"text": "of", "start": 524, "end": 526, "id": 91, "annotation": null}, {"text": "the", "start": 527, "end": 530, "id": 92, "annotation": null}, {"text": "BaTiO3", "start": 531, "end": 537, "id": 93, "annotation": "BASEMAT"}, {"text": "films", "start": 538, "end": 543, "id": 94, "annotation": null}, {"text": "is", "start": 544, "end": 546, "id": 95, "annotation": null}, {"text": "improved", "start": 547, "end": 555, "id": 96, "annotation": null}, {"text": "by", "start": 556, "end": 558, "id": 97, "annotation": null}, {"text": "the", "start": 559, "end": 562, "id": 98, "annotation": null}, {"text": "introduction", "start": 563, "end": 575, "id": 99, "annotation": null}, {"text": "of", "start": 576, "end": 578, "id": 100, "annotation": null}, {"text": "oxygen", "start": 579, "end": 585, "id": 101, "annotation": null}, {"text": "gas", "start": 586, "end": 589, "id": 102, "annotation": null}, {"text": "during", "start": 590, "end": 596, "id": 103, "annotation": null}, {"text": "sputtering", "start": 597, "end": 607, "id": 104, "annotation": null}, {"text": "and/or", "start": 608, "end": 614, "id": 105, "annotation": null}, {"text": "the", "start": 615, "end": 618, "id": 106, "annotation": null}, {"text": "addition", "start": 619, "end": 627, "id": 107, "annotation": null}, {"text": "of", "start": 628, "end": 630, "id": 108, "annotation": null}, {"text": "dopant", "start": 631, "end": 637, "id": 109, "annotation": null}, {"text": "calcium", "start": 638, "end": 645, "id": 110, "annotation": "DOPANT"}, {"text": ".", "start": 646, "end": 647, "id": 111, "annotation": null}], [{"text": "No", "start": 648, "end": 650, "id": 112, "annotation": null}, {"text": "fatigue", "start": 651, "end": 658, "id": 113, "annotation": null}, {"text": "is", "start": 659, "end": 661, "id": 114, "annotation": null}, {"text": "observed", "start": 662, "end": 670, "id": 115, "annotation": null}, {"text": "by", "start": 671, "end": 673, "id": 116, "annotation": null}, {"text": "the", "start": 674, "end": 677, "id": 117, "annotation": null}, {"text": "(", "start": 678, "end": 679, "id": 118, "annotation": null}, {"text": "Ba0.9Ca0.1", "start": 680, "end": 690, "id": 119, "annotation": null}, {"text": ")", "start": 691, "end": 692, "id": 120, "annotation": null}, {"text": "TiO3", "start": 693, "end": 697, "id": 121, "annotation": null}, {"text": "film", "start": 698, "end": 702, "id": 122, "annotation": null}, {"text": "up", "start": 703, "end": 705, "id": 123, "annotation": null}, {"text": "to", "start": 706, "end": 708, "id": 124, "annotation": null}, {"text": "a", "start": 709, "end": 710, "id": 125, "annotation": null}, {"text": "switching", "start": 711, "end": 720, "id": 126, "annotation": null}, {"text": "cycle", "start": 721, "end": 726, "id": 127, "annotation": null}, {"text": "of", "start": 727, "end": 729, "id": 128, "annotation": null}, {"text": "1010", "start": 730, "end": 734, "id": 129, "annotation": null}, {"text": ".", "start": 735, "end": 736, "id": 130, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "Metal-doped magnesium silicides are promising thermoelectric materials for waste heat recovery application at 500\u2013800K because of their low density, large natural availability, non-toxicity, good thermal stability, and transport properties. Reaction kinetics of metal-doped magnesium silicides, Mg2SiXm (X=Ti, Nb, Mn, and Co; m=0.02, 0.04, and 0.08mol) were investigated in this study. A simple and rapid synthesis of Mg2SiXm samples was carried out using pelletizing, and sintering method at 773\u2013823K for 300s. The effect of metal doping on the lattice constants of Mg2SiXm samples was examined using X-ray diffraction technique. Differential thermal analysis heat flow experiments were conducted on (2Mg+Si+mX) sample mixtures to study the solid-state reaction kinetics of Mg2SiXm alloys formation at different scan rates of 0.08, 0.16, 0.25, 0.33Ks\u22121. Activation energies for the formation reaction of Mg2Si were determined using Ozawa, and Kissinger\u2013Akahira\u2013Sunrose equations. A 3-D diffusion-controlled reaction mechanism was proposed based on Coats\u2013Redfern (CR) model. The effect of concentration of the metal-dopants on the formation activation energies of Mg2SiXm was investigated using the CR equation plots.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Metal", "start": 0, "end": 5, "annotation": "DOPANT"}, {"text": "-", "start": 5, "end": 6, "annotation": null}, {"text": "doped", "start": 6, "end": 11, "annotation": null}, {"text": "magnesium", "start": 12, "end": 21, "annotation": "BASEMAT"}, {"text": "silicides", "start": 22, "end": 31, "annotation": "BASEMAT"}, {"text": "are", "start": 32, "end": 35, "annotation": null}, {"text": "promising", "start": 36, "end": 45, "annotation": null}, {"text": "thermoelectric", "start": 46, "end": 60, "annotation": null}, {"text": "materials", "start": 61, "end": 70, "annotation": null}, {"text": "for", "start": 71, "end": 74, "annotation": null}, {"text": "waste", "start": 75, "end": 80, "annotation": null}, {"text": "heat", "start": 81, "end": 85, "annotation": null}, {"text": "recovery", "start": 86, "end": 94, "annotation": null}, {"text": "application", "start": 95, "end": 106, "annotation": null}, {"text": "at", "start": 107, "end": 109, "annotation": null}, {"text": "500", "start": 110, "end": 113, "annotation": null}, {"text": "\u2013", "start": 113, "end": 114, "annotation": null}, {"text": "800", "start": 114, "end": 117, "annotation": null}, {"text": "K", "start": 117, "end": 118, "annotation": null}, {"text": "because", "start": 119, "end": 126, "annotation": null}, {"text": "of", "start": 127, "end": 129, "annotation": null}, {"text": "their", "start": 130, "end": 135, "annotation": null}, {"text": "low", "start": 136, "end": 139, "annotation": null}, {"text": "density", "start": 140, "end": 147, "annotation": null}, {"text": ",", "start": 147, "end": 148, "annotation": null}, {"text": "large", "start": 149, "end": 154, "annotation": null}, {"text": "natural", "start": 155, "end": 162, "annotation": null}, {"text": "availability", "start": 163, "end": 175, "annotation": null}, {"text": ",", "start": 175, "end": 176, "annotation": null}, {"text": "non-toxicity", "start": 177, "end": 189, "annotation": null}, {"text": ",", "start": 189, "end": 190, "annotation": null}, {"text": "good", "start": 191, "end": 195, "annotation": null}, {"text": "thermal", "start": 196, "end": 203, "annotation": null}, {"text": "stability", "start": 204, "end": 213, "annotation": null}, {"text": ",", "start": 213, "end": 214, "annotation": null}, {"text": "and", "start": 215, "end": 218, "annotation": null}, {"text": "transport", "start": 219, "end": 228, "annotation": null}, {"text": "properties", "start": 229, "end": 239, "annotation": null}, {"text": ".", "start": 239, "end": 240, "annotation": null}], [{"text": "Reaction", "start": 241, "end": 249, "annotation": null}, {"text": "kinetics", "start": 250, "end": 258, "annotation": null}, {"text": "of", "start": 259, "end": 261, "annotation": null}, {"text": "metal", "start": 262, "end": 267, "annotation": "DOPANT"}, {"text": "-", "start": 267, "end": 268, "annotation": null}, {"text": "doped", "start": 268, "end": 273, "annotation": null}, {"text": "magnesium", "start": 274, "end": 283, "annotation": "BASEMAT"}, {"text": "silicides", "start": 284, "end": 293, "annotation": "BASEMAT"}, {"text": ",", "start": 293, "end": 294, "annotation": null}, {"text": "Mg2SiXm", "start": 295, "end": 302, "annotation": "BASEMAT"}, {"text": "(", "start": 303, "end": 304, "annotation": null}, {"text": "X", "start": 304, "end": 305, "annotation": null}, {"text": "=", "start": 305, "end": 306, "annotation": null}, {"text": "Ti", "start": 306, "end": 308, "annotation": "DOPANT"}, {"text": ",", "start": 308, "end": 309, "annotation": null}, {"text": "Nb", "start": 310, "end": 312, "annotation": "DOPANT"}, {"text": ",", "start": 312, "end": 313, "annotation": null}, {"text": "Mn", "start": 314, "end": 316, "annotation": "DOPANT"}, {"text": ",", "start": 316, "end": 317, "annotation": null}, {"text": "and", "start": 318, "end": 321, "annotation": null}, {"text": "Co", "start": 322, "end": 324, "annotation": "DOPANT"}, {"text": ";", "start": 324, "end": 325, "annotation": null}, {"text": "m", "start": 326, "end": 327, "annotation": null}, {"text": "=", "start": 327, "end": 328, "annotation": null}, {"text": "0.02", "start": 328, "end": 332, "annotation": "DOPMODQ"}, {"text": ",", "start": 332, "end": 333, "annotation": null}, {"text": "0.04", "start": 334, "end": 338, "annotation": "DOPMODQ"}, {"text": ",", "start": 338, "end": 339, "annotation": null}, {"text": "and", "start": 340, "end": 343, "annotation": null}, {"text": "0.08", "start": 344, "end": 348, "annotation": "DOPMODQ"}, {"text": "mol", "start": 348, "end": 351, "annotation": "DOPMODQ"}, {"text": ")", "start": 351, "end": 352, "annotation": null}, {"text": "were", "start": 353, "end": 357, "annotation": null}, {"text": "investigated", "start": 358, "end": 370, "annotation": null}, {"text": "in", "start": 371, "end": 373, "annotation": null}, {"text": "this", "start": 374, "end": 378, "annotation": null}, {"text": "study", "start": 379, "end": 384, "annotation": null}, {"text": ".", "start": 384, "end": 385, "annotation": null}], [{"text": "A", "start": 386, "end": 387, "annotation": null}, {"text": "simple", "start": 388, "end": 394, "annotation": null}, {"text": "and", "start": 395, "end": 398, "annotation": null}, {"text": "rapid", "start": 399, "end": 404, "annotation": null}, {"text": "synthesis", "start": 405, "end": 414, "annotation": null}, {"text": "of", "start": 415, "end": 417, "annotation": null}, {"text": "Mg2SiXm", "start": 418, "end": 425, "annotation": null}, {"text": "samples", "start": 426, "end": 433, "annotation": null}, {"text": "was", "start": 434, "end": 437, "annotation": null}, {"text": "carried", "start": 438, "end": 445, "annotation": null}, {"text": "out", "start": 446, "end": 449, "annotation": null}, {"text": "using", "start": 450, "end": 455, "annotation": null}, {"text": "pelletizing", "start": 456, "end": 467, "annotation": null}, {"text": ",", "start": 467, "end": 468, "annotation": null}, {"text": "and", "start": 469, "end": 472, "annotation": null}, {"text": "sintering", "start": 473, "end": 482, "annotation": null}, {"text": "method", "start": 483, "end": 489, "annotation": null}, {"text": "at", "start": 490, "end": 492, "annotation": null}, {"text": "773", "start": 493, "end": 496, "annotation": null}, {"text": "\u2013", "start": 496, "end": 497, "annotation": null}, {"text": "823", "start": 497, "end": 500, "annotation": null}, {"text": "K", "start": 500, "end": 501, "annotation": null}, {"text": "for", "start": 502, "end": 505, "annotation": null}, {"text": "300", "start": 506, "end": 509, "annotation": null}, {"text": "s", "start": 509, "end": 510, "annotation": null}, {"text": ".", "start": 510, "end": 511, "annotation": null}], [{"text": "The", "start": 512, "end": 515, "annotation": null}, {"text": "effect", "start": 516, "end": 522, "annotation": null}, {"text": "of", "start": 523, "end": 525, "annotation": null}, {"text": "metal", "start": 526, "end": 531, "annotation": null}, {"text": "doping", "start": 532, "end": 538, "annotation": null}, {"text": "on", "start": 539, "end": 541, "annotation": null}, {"text": "the", "start": 542, "end": 545, "annotation": null}, {"text": "lattice", "start": 546, "end": 553, "annotation": null}, {"text": "constants", "start": 554, "end": 563, "annotation": null}, {"text": "of", "start": 564, "end": 566, "annotation": null}, {"text": "Mg2SiXm", "start": 567, "end": 574, "annotation": null}, {"text": "samples", "start": 575, "end": 582, "annotation": null}, {"text": "was", "start": 583, "end": 586, "annotation": null}, {"text": "examined", "start": 587, "end": 595, "annotation": null}, {"text": "using", "start": 596, "end": 601, "annotation": null}, {"text": "X-ray", "start": 602, "end": 607, "annotation": null}, {"text": "diffraction", "start": 608, "end": 619, "annotation": null}, {"text": "technique", "start": 620, "end": 629, "annotation": null}, {"text": ".", "start": 629, "end": 630, "annotation": null}], [{"text": "Differential", "start": 631, "end": 643, "annotation": null}, {"text": "thermal", "start": 644, "end": 651, "annotation": null}, {"text": "analysis", "start": 652, "end": 660, "annotation": null}, {"text": "heat", "start": 661, "end": 665, "annotation": null}, {"text": "flow", "start": 666, "end": 670, "annotation": null}, {"text": "experiments", "start": 671, "end": 682, "annotation": null}, {"text": "were", "start": 683, "end": 687, "annotation": null}, {"text": "conducted", "start": 688, "end": 697, "annotation": null}, {"text": "on", "start": 698, "end": 700, "annotation": null}, {"text": "(", "start": 701, "end": 702, "annotation": null}, {"text": "2Mg", "start": 702, "end": 705, "annotation": null}, {"text": "+", "start": 705, "end": 706, "annotation": null}, {"text": "Si", "start": 706, "end": 708, "annotation": null}, {"text": "+", "start": 708, "end": 709, "annotation": null}, {"text": "mX", "start": 709, "end": 711, "annotation": null}, {"text": ")", "start": 711, "end": 712, "annotation": null}, {"text": "sample", "start": 713, "end": 719, "annotation": null}, {"text": "mixtures", "start": 720, "end": 728, "annotation": null}, {"text": "to", "start": 729, "end": 731, "annotation": null}, {"text": "study", "start": 732, "end": 737, "annotation": null}, {"text": "the", "start": 738, "end": 741, "annotation": null}, {"text": "solid", "start": 742, "end": 747, "annotation": null}, {"text": "-", "start": 747, "end": 748, "annotation": null}, {"text": "state", "start": 748, "end": 753, "annotation": null}, {"text": "reaction", "start": 754, "end": 762, "annotation": null}, {"text": "kinetics", "start": 763, "end": 771, "annotation": null}, {"text": "of", "start": 772, "end": 774, "annotation": null}, {"text": "Mg2SiXm", "start": 775, "end": 782, "annotation": null}, {"text": "alloys", "start": 783, "end": 789, "annotation": null}, {"text": "formation", "start": 790, "end": 799, "annotation": null}, {"text": "at", "start": 800, "end": 802, "annotation": null}, {"text": "different", "start": 803, "end": 812, "annotation": null}, {"text": "scan", "start": 813, "end": 817, "annotation": null}, {"text": "rates", "start": 818, "end": 823, "annotation": null}, {"text": "of", "start": 824, "end": 826, "annotation": null}, {"text": "0.08", "start": 827, "end": 831, "annotation": null}, {"text": ",", "start": 831, "end": 832, "annotation": null}, {"text": "0.16", "start": 833, "end": 837, "annotation": null}, {"text": ",", "start": 837, "end": 838, "annotation": null}, {"text": "0.25", "start": 839, "end": 843, "annotation": null}, {"text": ",", "start": 843, "end": 844, "annotation": null}, {"text": "0.33", "start": 845, "end": 849, "annotation": null}, {"text": "Ks\u22121", "start": 849, "end": 853, "annotation": null}, {"text": ".", "start": 853, "end": 854, "annotation": null}], [{"text": "Activation", "start": 855, "end": 865, "annotation": null}, {"text": "energies", "start": 866, "end": 874, "annotation": null}, {"text": "for", "start": 875, "end": 878, "annotation": null}, {"text": "the", "start": 879, "end": 882, "annotation": null}, {"text": "formation", "start": 883, "end": 892, "annotation": null}, {"text": "reaction", "start": 893, "end": 901, "annotation": null}, {"text": "of", "start": 902, "end": 904, "annotation": null}, {"text": "Mg2Si", "start": 905, "end": 910, "annotation": null}, {"text": "were", "start": 911, "end": 915, "annotation": null}, {"text": "determined", "start": 916, "end": 926, "annotation": null}, {"text": "using", "start": 927, "end": 932, "annotation": null}, {"text": "Ozawa", "start": 933, "end": 938, "annotation": null}, {"text": ",", "start": 938, "end": 939, "annotation": null}, {"text": "and", "start": 940, "end": 943, "annotation": null}, {"text": "Kissinger", "start": 944, "end": 953, "annotation": null}, {"text": "\u2013", "start": 953, "end": 954, "annotation": null}, {"text": "Akahira", "start": 954, "end": 961, "annotation": null}, {"text": "\u2013", "start": 961, "end": 962, "annotation": null}, {"text": "Sunrose", "start": 962, "end": 969, "annotation": null}, {"text": "equations", "start": 970, "end": 979, "annotation": null}, {"text": ".", "start": 979, "end": 980, "annotation": null}], [{"text": "A", "start": 981, "end": 982, "annotation": null}, {"text": "3-D", "start": 983, "end": 986, "annotation": null}, {"text": "diffusion", "start": 987, "end": 996, "annotation": null}, {"text": "-", "start": 996, "end": 997, "annotation": null}, {"text": "controlled", "start": 997, "end": 1007, "annotation": null}, {"text": "reaction", "start": 1008, "end": 1016, "annotation": null}, {"text": "mechanism", "start": 1017, "end": 1026, "annotation": null}, {"text": "was", "start": 1027, "end": 1030, "annotation": null}, {"text": "proposed", "start": 1031, "end": 1039, "annotation": null}, {"text": "based", "start": 1040, "end": 1045, "annotation": null}, {"text": "on", "start": 1046, "end": 1048, "annotation": null}, {"text": "Coats", "start": 1049, "end": 1054, "annotation": null}, {"text": "\u2013", "start": 1054, "end": 1055, "annotation": null}, {"text": "Redfern", "start": 1055, "end": 1062, "annotation": null}, {"text": "(", "start": 1063, "end": 1064, "annotation": null}, {"text": "CR", "start": 1064, "end": 1066, "annotation": null}, {"text": ")", "start": 1066, "end": 1067, "annotation": null}, {"text": "model", "start": 1068, "end": 1073, "annotation": null}, {"text": ".", "start": 1073, "end": 1074, "annotation": null}], [{"text": "The", "start": 1075, "end": 1078, "annotation": null}, {"text": "effect", "start": 1079, "end": 1085, "annotation": null}, {"text": "of", "start": 1086, "end": 1088, "annotation": null}, {"text": "concentration", "start": 1089, "end": 1102, "annotation": null}, {"text": "of", "start": 1103, "end": 1105, "annotation": null}, {"text": "the", "start": 1106, "end": 1109, "annotation": null}, {"text": "metal", "start": 1110, "end": 1115, "annotation": "DOPANT"}, {"text": "-", "start": 1115, "end": 1116, "annotation": null}, {"text": "dopants", "start": 1116, "end": 1123, "annotation": null}, {"text": "on", "start": 1124, "end": 1126, "annotation": null}, {"text": "the", "start": 1127, "end": 1130, "annotation": null}, {"text": "formation", "start": 1131, "end": 1140, "annotation": null}, {"text": "activation", "start": 1141, "end": 1151, "annotation": null}, {"text": "energies", "start": 1152, "end": 1160, "annotation": null}, {"text": "of", "start": 1161, "end": 1163, "annotation": null}, {"text": "Mg2SiXm", "start": 1164, "end": 1171, "annotation": "BASEMAT"}, {"text": "was", "start": 1172, "end": 1175, "annotation": null}, {"text": "investigated", "start": 1176, "end": 1188, "annotation": null}, {"text": "using", "start": 1189, "end": 1194, "annotation": null}, {"text": "the", "start": 1195, "end": 1198, "annotation": null}, {"text": "CR", "start": 1199, "end": 1201, "annotation": null}, {"text": "equation", "start": 1202, "end": 1210, "annotation": null}, {"text": "plots", "start": 1211, "end": 1216, "annotation": null}, {"text": ".", "start": 1216, "end": 1217, "annotation": null}]]} -{"remark": "doping_annt2", "text": "We propose a novel gap-state spectroscopy, namely, the photo-isothermal capacitance transient spectroscopy (ICTS) using below-gap excitation. Using this method, the energy level spectrum as well as the photoionization cross sections of gap states in P-doped a-Si:H have been determined: two features exist at 0.5\u20130.6 eV and 1.0\u20131.2 eV below the conduction band edge Ec in the gap-state profile and the photoionization cross section of the gap states has been found to be almost independent of their energy level location and to have value of order of 10\u221216 cm2.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "propose", "start": 3, "end": 10, "annotation": null}, {"text": "a", "start": 11, "end": 12, "annotation": null}, {"text": "novel", "start": 13, "end": 18, "annotation": null}, {"text": "gap", "start": 19, "end": 22, "annotation": null}, {"text": "-", "start": 22, "end": 23, "annotation": null}, {"text": "state", "start": 23, "end": 28, "annotation": null}, {"text": "spectroscopy", "start": 29, "end": 41, "annotation": null}, {"text": ",", "start": 41, "end": 42, "annotation": null}, {"text": "namely", "start": 43, "end": 49, "annotation": null}, {"text": ",", "start": 49, "end": 50, "annotation": null}, {"text": "the", "start": 51, "end": 54, "annotation": null}, {"text": "photo", "start": 55, "end": 60, "annotation": null}, {"text": "-", "start": 60, "end": 61, "annotation": null}, {"text": "isothermal", "start": 61, "end": 71, "annotation": null}, {"text": "capacitance", "start": 72, "end": 83, "annotation": null}, {"text": "transient", "start": 84, "end": 93, "annotation": null}, {"text": "spectroscopy", "start": 94, "end": 106, "annotation": null}, {"text": "(", "start": 107, "end": 108, "annotation": null}, {"text": "ICTS", "start": 108, "end": 112, "annotation": null}, {"text": ")", "start": 112, "end": 113, "annotation": null}, {"text": "using", "start": 114, "end": 119, "annotation": null}, {"text": "below", "start": 120, "end": 125, "annotation": null}, {"text": "-", "start": 125, "end": 126, "annotation": null}, {"text": "gap", "start": 126, "end": 129, "annotation": null}, {"text": "excitation", "start": 130, "end": 140, "annotation": null}, {"text": ".", "start": 140, "end": 141, "annotation": null}], [{"text": "Using", "start": 142, "end": 147, "annotation": null}, {"text": "this", "start": 148, "end": 152, "annotation": null}, {"text": "method", "start": 153, "end": 159, "annotation": null}, {"text": ",", "start": 159, "end": 160, "annotation": null}, {"text": "the", "start": 161, "end": 164, "annotation": null}, {"text": "energy", "start": 165, "end": 171, "annotation": null}, {"text": "level", "start": 172, "end": 177, "annotation": null}, {"text": "spectrum", "start": 178, "end": 186, "annotation": null}, {"text": "as", "start": 187, "end": 189, "annotation": null}, {"text": "well", "start": 190, "end": 194, "annotation": null}, {"text": "as", "start": 195, "end": 197, "annotation": null}, {"text": "the", "start": 198, "end": 201, "annotation": null}, {"text": "photoionization", "start": 202, "end": 217, "annotation": null}, {"text": "cross", "start": 218, "end": 223, "annotation": null}, {"text": "sections", "start": 224, "end": 232, "annotation": null}, {"text": "of", "start": 233, "end": 235, "annotation": null}, {"text": "gap", "start": 236, "end": 239, "annotation": null}, {"text": "states", "start": 240, "end": 246, "annotation": null}, {"text": "in", "start": 247, "end": 249, "annotation": null}, {"text": "P", "start": 250, "end": 251, "annotation": "DOPANT"}, {"text": "-", "start": 251, "end": 252, "annotation": null}, {"text": "doped", "start": 252, "end": 257, "annotation": null}, {"text": "a-Si", "start": 258, "end": 262, "annotation": "BASEMAT"}, {"text": ":", "start": 262, "end": 263, "annotation": null}, {"text": "H", "start": 263, "end": 264, "annotation": null}, {"text": "have", "start": 265, "end": 269, "annotation": null}, {"text": "been", "start": 270, "end": 274, "annotation": null}, {"text": "determined", "start": 275, "end": 285, "annotation": null}, {"text": ":", "start": 285, "end": 286, "annotation": null}, {"text": "two", "start": 287, "end": 290, "annotation": null}, {"text": "features", "start": 291, "end": 299, "annotation": null}, {"text": "exist", "start": 300, "end": 305, "annotation": null}, {"text": "at", "start": 306, "end": 308, "annotation": null}, {"text": "0.5", "start": 309, "end": 312, "annotation": null}, {"text": "\u2013", "start": 312, "end": 313, "annotation": null}, {"text": "0.6", "start": 313, "end": 316, "annotation": null}, {"text": "eV", "start": 317, "end": 319, "annotation": null}, {"text": "and", "start": 320, "end": 323, "annotation": null}, {"text": "1.0", "start": 324, "end": 327, "annotation": null}, {"text": "\u2013", "start": 327, "end": 328, "annotation": null}, {"text": "1.2", "start": 328, "end": 331, "annotation": null}, {"text": "eV", "start": 332, "end": 334, "annotation": null}, {"text": "below", "start": 335, "end": 340, "annotation": null}, {"text": "the", "start": 341, "end": 344, "annotation": null}, {"text": "conduction", "start": 345, "end": 355, "annotation": null}, {"text": "band", "start": 356, "end": 360, "annotation": null}, {"text": "edge", "start": 361, "end": 365, "annotation": null}, {"text": "Ec", "start": 366, "end": 368, "annotation": null}, {"text": "in", "start": 369, "end": 371, "annotation": null}, {"text": "the", "start": 372, "end": 375, "annotation": null}, {"text": "gap", "start": 376, "end": 379, "annotation": null}, {"text": "-", "start": 379, "end": 380, "annotation": null}, {"text": "state", "start": 380, "end": 385, "annotation": null}, {"text": "profile", "start": 386, "end": 393, "annotation": null}, {"text": "and", "start": 394, "end": 397, "annotation": null}, {"text": "the", "start": 398, "end": 401, "annotation": null}, {"text": "photoionization", "start": 402, "end": 417, "annotation": null}, {"text": "cross", "start": 418, "end": 423, "annotation": null}, {"text": "section", "start": 424, "end": 431, "annotation": null}, {"text": "of", "start": 432, "end": 434, "annotation": null}, {"text": "the", "start": 435, "end": 438, "annotation": null}, {"text": "gap", "start": 439, "end": 442, "annotation": null}, {"text": "states", "start": 443, "end": 449, "annotation": null}, {"text": "has", "start": 450, "end": 453, "annotation": null}, {"text": "been", "start": 454, "end": 458, "annotation": null}, {"text": "found", "start": 459, "end": 464, "annotation": null}, {"text": "to", "start": 465, "end": 467, "annotation": null}, {"text": "be", "start": 468, "end": 470, "annotation": null}, {"text": "almost", "start": 471, "end": 477, "annotation": null}, {"text": "independent", "start": 478, "end": 489, "annotation": null}, {"text": "of", "start": 490, "end": 492, "annotation": null}, {"text": "their", "start": 493, "end": 498, "annotation": null}, {"text": "energy", "start": 499, "end": 505, "annotation": null}, {"text": "level", "start": 506, "end": 511, "annotation": null}, {"text": "location", "start": 512, "end": 520, "annotation": null}, {"text": "and", "start": 521, "end": 524, "annotation": null}, {"text": "to", "start": 525, "end": 527, "annotation": null}, {"text": "have", "start": 528, "end": 532, "annotation": null}, {"text": "value", "start": 533, "end": 538, "annotation": null}, {"text": "of", "start": 539, "end": 541, "annotation": null}, {"text": "order", "start": 542, "end": 547, "annotation": null}, {"text": "of", "start": 548, "end": 550, "annotation": null}, {"text": "10", "start": 551, "end": 553, "annotation": null}, {"text": "\u2212", "start": 553, "end": 554, "annotation": null}, {"text": "16", "start": 554, "end": 556, "annotation": null}, {"text": "cm2", "start": 557, "end": 560, "annotation": null}, {"text": ".", "start": 560, "end": 561, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Self-stacked nitrogen-doped carbon nanotubes (NCNTs) and pristine carbon nanotubes (CNTs) on commercial porous polypropylene substrates have been applied as air electrodes for sodium-air batteries (SAB). Both NCNT and CNT air electrodes exhibit highly reversible electrochemical activities and large capacities under low current densities in SABs, while NCNT electrodes show much higher rate performance and extended cycling life under high current densities. The superior electrochemical behavior of NCNT electrodes is attributed to the robust network of aligned NCNTs, which enables rapid oxygen and liquid electrolyte transport while accommodating the volume change originating from discharge product aggregation during cycling. Moreover, uniform coverage of the discharge product has been observed on the NCNT air electrodes, in contrast to the random and discrete dispersion of discharge product on the CNT air electrodes. The unique morphologies and growth mechanism of discharge products on NCNT electrodes are believed to be due to the outstanding catalytic activity of the nitrogen-doped sites in the NCNTs, which play a critical role in the high cycling stability of NCNT air electrodes for SABs.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Self", "start": 0, "end": 4, "annotation": null}, {"text": "-", "start": 4, "end": 5, "annotation": null}, {"text": "stacked", "start": 5, "end": 12, "annotation": null}, {"text": "nitrogen", "start": 13, "end": 21, "annotation": "DOPANT"}, {"text": "-", "start": 21, "end": 22, "annotation": null}, {"text": "doped", "start": 22, "end": 27, "annotation": null}, {"text": "carbon", "start": 28, "end": 34, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 35, "end": 44, "annotation": "BASEMAT"}, {"text": "(", "start": 45, "end": 46, "annotation": null}, {"text": "NCNTs", "start": 46, "end": 51, "annotation": "BASEMAT"}, {"text": ")", "start": 51, "end": 52, "annotation": null}, {"text": "and", "start": 53, "end": 56, "annotation": null}, {"text": "pristine", "start": 57, "end": 65, "annotation": null}, {"text": "carbon", "start": 66, "end": 72, "annotation": null}, {"text": "nanotubes", "start": 73, "end": 82, "annotation": null}, {"text": "(", "start": 83, "end": 84, "annotation": null}, {"text": "CNTs", "start": 84, "end": 88, "annotation": null}, {"text": ")", "start": 88, "end": 89, "annotation": null}, {"text": "on", "start": 90, "end": 92, "annotation": null}, {"text": "commercial", "start": 93, "end": 103, "annotation": null}, {"text": "porous", "start": 104, "end": 110, "annotation": null}, {"text": "polypropylene", "start": 111, "end": 124, "annotation": null}, {"text": "substrates", "start": 125, "end": 135, "annotation": null}, {"text": "have", "start": 136, "end": 140, "annotation": null}, {"text": "been", "start": 141, "end": 145, "annotation": null}, {"text": "applied", "start": 146, "end": 153, "annotation": null}, {"text": "as", "start": 154, "end": 156, "annotation": null}, {"text": "air", "start": 157, "end": 160, "annotation": null}, {"text": "electrodes", "start": 161, "end": 171, "annotation": null}, {"text": "for", "start": 172, "end": 175, "annotation": null}, {"text": "sodium", "start": 176, "end": 182, "annotation": null}, {"text": "-", "start": 182, "end": 183, "annotation": null}, {"text": "air", "start": 183, "end": 186, "annotation": null}, {"text": "batteries", "start": 187, "end": 196, "annotation": null}, {"text": "(", "start": 197, "end": 198, "annotation": null}, {"text": "SAB", "start": 198, "end": 201, "annotation": null}, {"text": ")", "start": 201, "end": 202, "annotation": null}, {"text": ".", "start": 202, "end": 203, "annotation": null}], [{"text": "Both", "start": 204, "end": 208, "annotation": null}, {"text": "NCNT", "start": 209, "end": 213, "annotation": null}, {"text": "and", "start": 214, "end": 217, "annotation": null}, {"text": "CNT", "start": 218, "end": 221, "annotation": null}, {"text": "air", "start": 222, "end": 225, "annotation": null}, {"text": "electrodes", "start": 226, "end": 236, "annotation": null}, {"text": "exhibit", "start": 237, "end": 244, "annotation": null}, {"text": "highly", "start": 245, "end": 251, "annotation": null}, {"text": "reversible", "start": 252, "end": 262, "annotation": null}, {"text": "electrochemical", "start": 263, "end": 278, "annotation": null}, {"text": "activities", "start": 279, "end": 289, "annotation": null}, {"text": "and", "start": 290, "end": 293, "annotation": null}, {"text": "large", "start": 294, "end": 299, "annotation": null}, {"text": "capacities", "start": 300, "end": 310, "annotation": null}, {"text": "under", "start": 311, "end": 316, "annotation": null}, {"text": "low", "start": 317, "end": 320, "annotation": null}, {"text": "current", "start": 321, "end": 328, "annotation": null}, {"text": "densities", "start": 329, "end": 338, "annotation": null}, {"text": "in", "start": 339, "end": 341, "annotation": null}, {"text": "SABs", "start": 342, "end": 346, "annotation": null}, {"text": ",", "start": 346, "end": 347, "annotation": null}, {"text": "while", "start": 348, "end": 353, "annotation": null}, {"text": "NCNT", "start": 354, "end": 358, "annotation": null}, {"text": "electrodes", "start": 359, "end": 369, "annotation": null}, {"text": "show", "start": 370, "end": 374, "annotation": null}, {"text": "much", "start": 375, "end": 379, "annotation": null}, {"text": "higher", "start": 380, "end": 386, "annotation": null}, {"text": "rate", "start": 387, "end": 391, "annotation": null}, {"text": "performance", "start": 392, "end": 403, "annotation": null}, {"text": "and", "start": 404, "end": 407, "annotation": null}, {"text": "extended", "start": 408, "end": 416, "annotation": null}, {"text": "cycling", "start": 417, "end": 424, "annotation": null}, {"text": "life", "start": 425, "end": 429, "annotation": null}, {"text": "under", "start": 430, "end": 435, "annotation": null}, {"text": "high", "start": 436, "end": 440, "annotation": null}, {"text": "current", "start": 441, "end": 448, "annotation": null}, {"text": "densities", "start": 449, "end": 458, "annotation": null}, {"text": ".", "start": 458, "end": 459, "annotation": null}], [{"text": "The", "start": 460, "end": 463, "annotation": null}, {"text": "superior", "start": 464, "end": 472, "annotation": null}, {"text": "electrochemical", "start": 473, "end": 488, "annotation": null}, {"text": "behavior", "start": 489, "end": 497, "annotation": null}, {"text": "of", "start": 498, "end": 500, "annotation": null}, {"text": "NCNT", "start": 501, "end": 505, "annotation": null}, {"text": "electrodes", "start": 506, "end": 516, "annotation": null}, {"text": "is", "start": 517, "end": 519, "annotation": null}, {"text": "attributed", "start": 520, "end": 530, "annotation": null}, {"text": "to", "start": 531, "end": 533, "annotation": null}, {"text": "the", "start": 534, "end": 537, "annotation": null}, {"text": "robust", "start": 538, "end": 544, "annotation": null}, {"text": "network", "start": 545, "end": 552, "annotation": null}, {"text": "of", "start": 553, "end": 555, "annotation": null}, {"text": "aligned", "start": 556, "end": 563, "annotation": null}, {"text": "NCNTs", "start": 564, "end": 569, "annotation": null}, {"text": ",", "start": 569, "end": 570, "annotation": null}, {"text": "which", "start": 571, "end": 576, "annotation": null}, {"text": "enables", "start": 577, "end": 584, "annotation": null}, {"text": "rapid", "start": 585, "end": 590, "annotation": null}, {"text": "oxygen", "start": 591, "end": 597, "annotation": null}, {"text": "and", "start": 598, "end": 601, "annotation": null}, {"text": "liquid", "start": 602, "end": 608, "annotation": null}, {"text": "electrolyte", "start": 609, "end": 620, "annotation": null}, {"text": "transport", "start": 621, "end": 630, "annotation": null}, {"text": "while", "start": 631, "end": 636, "annotation": null}, {"text": "accommodating", "start": 637, "end": 650, "annotation": null}, {"text": "the", "start": 651, "end": 654, "annotation": null}, {"text": "volume", "start": 655, "end": 661, "annotation": null}, {"text": "change", "start": 662, "end": 668, "annotation": null}, {"text": "originating", "start": 669, "end": 680, "annotation": null}, {"text": "from", "start": 681, "end": 685, "annotation": null}, {"text": "discharge", "start": 686, "end": 695, "annotation": null}, {"text": "product", "start": 696, "end": 703, "annotation": null}, {"text": "aggregation", "start": 704, "end": 715, "annotation": null}, {"text": "during", "start": 716, "end": 722, "annotation": null}, {"text": "cycling", "start": 723, "end": 730, "annotation": null}, {"text": ".", "start": 730, "end": 731, "annotation": null}], [{"text": "Moreover", "start": 732, "end": 740, "annotation": null}, {"text": ",", "start": 740, "end": 741, "annotation": null}, {"text": "uniform", "start": 742, "end": 749, "annotation": null}, {"text": "coverage", "start": 750, "end": 758, "annotation": null}, {"text": "of", "start": 759, "end": 761, "annotation": null}, {"text": "the", "start": 762, "end": 765, "annotation": null}, {"text": "discharge", "start": 766, "end": 775, "annotation": null}, {"text": "product", "start": 776, "end": 783, "annotation": null}, {"text": "has", "start": 784, "end": 787, "annotation": null}, {"text": "been", "start": 788, "end": 792, "annotation": null}, {"text": "observed", "start": 793, "end": 801, "annotation": null}, {"text": "on", "start": 802, "end": 804, "annotation": null}, {"text": "the", "start": 805, "end": 808, "annotation": null}, {"text": "NCNT", "start": 809, "end": 813, "annotation": null}, {"text": "air", "start": 814, "end": 817, "annotation": null}, {"text": "electrodes", "start": 818, "end": 828, "annotation": null}, {"text": ",", "start": 828, "end": 829, "annotation": null}, {"text": "in", "start": 830, "end": 832, "annotation": null}, {"text": "contrast", "start": 833, "end": 841, "annotation": null}, {"text": "to", "start": 842, "end": 844, "annotation": null}, {"text": "the", "start": 845, "end": 848, "annotation": null}, {"text": "random", "start": 849, "end": 855, "annotation": null}, {"text": "and", "start": 856, "end": 859, "annotation": null}, {"text": "discrete", "start": 860, "end": 868, "annotation": null}, {"text": "dispersion", "start": 869, "end": 879, "annotation": null}, {"text": "of", "start": 880, "end": 882, "annotation": null}, {"text": "discharge", "start": 883, "end": 892, "annotation": null}, {"text": "product", "start": 893, "end": 900, "annotation": null}, {"text": "on", "start": 901, "end": 903, "annotation": null}, {"text": "the", "start": 904, "end": 907, "annotation": null}, {"text": "CNT", "start": 908, "end": 911, "annotation": null}, {"text": "air", "start": 912, "end": 915, "annotation": null}, {"text": "electrodes", "start": 916, "end": 926, "annotation": null}, {"text": ".", "start": 926, "end": 927, "annotation": null}], [{"text": "The", "start": 928, "end": 931, "annotation": null}, {"text": "unique", "start": 932, "end": 938, "annotation": null}, {"text": "morphologies", "start": 939, "end": 951, "annotation": null}, {"text": "and", "start": 952, "end": 955, "annotation": null}, {"text": "growth", "start": 956, "end": 962, "annotation": null}, {"text": "mechanism", "start": 963, "end": 972, "annotation": null}, {"text": "of", "start": 973, "end": 975, "annotation": null}, {"text": "discharge", "start": 976, "end": 985, "annotation": null}, {"text": "products", "start": 986, "end": 994, "annotation": null}, {"text": "on", "start": 995, "end": 997, "annotation": null}, {"text": "NCNT", "start": 998, "end": 1002, "annotation": null}, {"text": "electrodes", "start": 1003, "end": 1013, "annotation": null}, {"text": "are", "start": 1014, "end": 1017, "annotation": null}, {"text": "believed", "start": 1018, "end": 1026, "annotation": null}, {"text": "to", "start": 1027, "end": 1029, "annotation": null}, {"text": "be", "start": 1030, "end": 1032, "annotation": null}, {"text": "due", "start": 1033, "end": 1036, "annotation": null}, {"text": "to", "start": 1037, "end": 1039, "annotation": null}, {"text": "the", "start": 1040, "end": 1043, "annotation": null}, {"text": "outstanding", "start": 1044, "end": 1055, "annotation": null}, {"text": "catalytic", "start": 1056, "end": 1065, "annotation": null}, {"text": "activity", "start": 1066, "end": 1074, "annotation": null}, {"text": "of", "start": 1075, "end": 1077, "annotation": null}, {"text": "the", "start": 1078, "end": 1081, "annotation": null}, {"text": "nitrogen", "start": 1082, "end": 1090, "annotation": "DOPANT"}, {"text": "-", "start": 1090, "end": 1091, "annotation": null}, {"text": "doped", "start": 1091, "end": 1096, "annotation": null}, {"text": "sites", "start": 1097, "end": 1102, "annotation": null}, {"text": "in", "start": 1103, "end": 1105, "annotation": null}, {"text": "the", "start": 1106, "end": 1109, "annotation": null}, {"text": "NCNTs", "start": 1110, "end": 1115, "annotation": "BASEMAT"}, {"text": ",", "start": 1115, "end": 1116, "annotation": null}, {"text": "which", "start": 1117, "end": 1122, "annotation": null}, {"text": "play", "start": 1123, "end": 1127, "annotation": null}, {"text": "a", "start": 1128, "end": 1129, "annotation": null}, {"text": "critical", "start": 1130, "end": 1138, "annotation": null}, {"text": "role", "start": 1139, "end": 1143, "annotation": null}, {"text": "in", "start": 1144, "end": 1146, "annotation": null}, {"text": "the", "start": 1147, "end": 1150, "annotation": null}, {"text": "high", "start": 1151, "end": 1155, "annotation": null}, {"text": "cycling", "start": 1156, "end": 1163, "annotation": null}, {"text": "stability", "start": 1164, "end": 1173, "annotation": null}, {"text": "of", "start": 1174, "end": 1176, "annotation": null}, {"text": "NCNT", "start": 1177, "end": 1181, "annotation": null}, {"text": "air", "start": 1182, "end": 1185, "annotation": null}, {"text": "electrodes", "start": 1186, "end": 1196, "annotation": null}, {"text": "for", "start": 1197, "end": 1200, "annotation": null}, {"text": "SABs", "start": 1201, "end": 1205, "annotation": null}, {"text": ".", "start": 1205, "end": 1206, "annotation": null}]]} -{"remark": "doping_annt2", "text": "The polypyrrole\u2013zinc oxide (PPy\u2013ZnO) hybrid sensor doped with different weight ratios of camphor sulfonic acid (CSA) were prepared by spin coating technique. These CSA doped PPy\u2013ZnO hybrids were characterized by X-ray diffraction (XRD), field emission scanning electron microscope (FESEM), Fourier transform infrared (FTIR) and UV\u2013vis techniques which proved the formation of polypyrrole, PPy\u2013ZnO and the interaction between polypyrrole\u2013ZnO (PPy\u2013ZnO) hybrid with CSA doping. The gas sensing properties of the PPy\u2013ZnO hybrid films doped with CSA have been studied for oxidizing (NO2) as well as reducing (H2S, NH3, C2H5OH and CH3OH) gases at room temperature. We demonstrate that CSA (30wt.%) doped PPy\u2013ZnO hybrid films are highly selective to NO2 along with high-sensitivity at low concentration (80% to 100ppm), fast-response time (120s) and better stability, which suggested that the CSA (30%) doped PPy\u2013ZnO hybrid films are potential candidate for NO2 detection at room temperature.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "polypyrrole", "start": 4, "end": 15, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 15, "end": 16, "annotation": "BASEMAT"}, {"text": "zinc", "start": 16, "end": 20, "annotation": "BASEMAT"}, {"text": "oxide", "start": 21, "end": 26, "annotation": "BASEMAT"}, {"text": "(", "start": 27, "end": 28, "annotation": null}, {"text": "PPy", "start": 28, "end": 31, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 31, "end": 32, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 32, "end": 35, "annotation": "BASEMAT"}, {"text": ")", "start": 35, "end": 36, "annotation": null}, {"text": "hybrid", "start": 37, "end": 43, "annotation": null}, {"text": "sensor", "start": 44, "end": 50, "annotation": null}, {"text": "doped", "start": 51, "end": 56, "annotation": null}, {"text": "with", "start": 57, "end": 61, "annotation": null}, {"text": "different", "start": 62, "end": 71, "annotation": null}, {"text": "weight", "start": 72, "end": 78, "annotation": null}, {"text": "ratios", "start": 79, "end": 85, "annotation": null}, {"text": "of", "start": 86, "end": 88, "annotation": null}, {"text": "camphor", "start": 89, "end": 96, "annotation": "DOPANT"}, {"text": "sulfonic", "start": 97, "end": 105, "annotation": "DOPANT"}, {"text": "acid", "start": 106, "end": 110, "annotation": "DOPANT"}, {"text": "(", "start": 111, "end": 112, "annotation": null}, {"text": "CSA", "start": 112, "end": 115, "annotation": null}, {"text": ")", "start": 115, "end": 116, "annotation": null}, {"text": "were", "start": 117, "end": 121, "annotation": null}, {"text": "prepared", "start": 122, "end": 130, "annotation": null}, {"text": "by", "start": 131, "end": 133, "annotation": null}, {"text": "spin", "start": 134, "end": 138, "annotation": null}, {"text": "coating", "start": 139, "end": 146, "annotation": null}, {"text": "technique", "start": 147, "end": 156, "annotation": null}, {"text": ".", "start": 156, "end": 157, "annotation": null}], [{"text": "These", "start": 158, "end": 163, "annotation": null}, {"text": "CSA", "start": 164, "end": 167, "annotation": "DOPANT"}, {"text": "doped", "start": 168, "end": 173, "annotation": null}, {"text": "PPy", "start": 174, "end": 177, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 177, "end": 178, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 178, "end": 181, "annotation": "BASEMAT"}, {"text": "hybrids", "start": 182, "end": 189, "annotation": null}, {"text": "were", "start": 190, "end": 194, "annotation": null}, {"text": "characterized", "start": 195, "end": 208, "annotation": null}, {"text": "by", "start": 209, "end": 211, "annotation": null}, {"text": "X-ray", "start": 212, "end": 217, "annotation": null}, {"text": "diffraction", "start": 218, "end": 229, "annotation": null}, {"text": "(", "start": 230, "end": 231, "annotation": null}, {"text": "XRD", "start": 231, "end": 234, "annotation": null}, {"text": ")", "start": 234, "end": 235, "annotation": null}, {"text": ",", "start": 235, "end": 236, "annotation": null}, {"text": "field", "start": 237, "end": 242, "annotation": null}, {"text": "emission", "start": 243, "end": 251, "annotation": null}, {"text": "scanning", "start": 252, "end": 260, "annotation": null}, {"text": "electron", "start": 261, "end": 269, "annotation": null}, {"text": "microscope", "start": 270, "end": 280, "annotation": null}, {"text": "(", "start": 281, "end": 282, "annotation": null}, {"text": "FESEM", "start": 282, "end": 287, "annotation": null}, {"text": ")", "start": 287, "end": 288, "annotation": null}, {"text": ",", "start": 288, "end": 289, "annotation": null}, {"text": "Fourier", "start": 290, "end": 297, "annotation": null}, {"text": "transform", "start": 298, "end": 307, "annotation": null}, {"text": "infrared", "start": 308, "end": 316, "annotation": null}, {"text": "(", "start": 317, "end": 318, "annotation": null}, {"text": "FTIR", "start": 318, "end": 322, "annotation": null}, {"text": ")", "start": 322, "end": 323, "annotation": null}, {"text": "and", "start": 324, "end": 327, "annotation": null}, {"text": "UV", "start": 328, "end": 330, "annotation": null}, {"text": "\u2013", "start": 330, "end": 331, "annotation": null}, {"text": "vis", "start": 331, "end": 334, "annotation": null}, {"text": "techniques", "start": 335, "end": 345, "annotation": null}, {"text": "which", "start": 346, "end": 351, "annotation": null}, {"text": "proved", "start": 352, "end": 358, "annotation": null}, {"text": "the", "start": 359, "end": 362, "annotation": null}, {"text": "formation", "start": 363, "end": 372, "annotation": null}, {"text": "of", "start": 373, "end": 375, "annotation": null}, {"text": "polypyrrole", "start": 376, "end": 387, "annotation": "BASEMAT"}, {"text": ",", "start": 387, "end": 388, "annotation": null}, {"text": "PPy", "start": 389, "end": 392, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 392, "end": 393, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 393, "end": 396, "annotation": "BASEMAT"}, {"text": "and", "start": 397, "end": 400, "annotation": null}, {"text": "the", "start": 401, "end": 404, "annotation": null}, {"text": "interaction", "start": 405, "end": 416, "annotation": null}, {"text": "between", "start": 417, "end": 424, "annotation": null}, {"text": "polypyrrole", "start": 425, "end": 436, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 436, "end": 437, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 437, "end": 440, "annotation": "BASEMAT"}, {"text": "(", "start": 441, "end": 442, "annotation": null}, {"text": "PPy", "start": 442, "end": 445, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 445, "end": 446, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 446, "end": 449, "annotation": "BASEMAT"}, {"text": ")", "start": 449, "end": 450, "annotation": null}, {"text": "hybrid", "start": 451, "end": 457, "annotation": null}, {"text": "with", "start": 458, "end": 462, "annotation": null}, {"text": "CSA", "start": 463, "end": 466, "annotation": "DOPANT"}, {"text": "doping", "start": 467, "end": 473, "annotation": null}, {"text": ".", "start": 473, "end": 474, "annotation": null}], [{"text": "The", "start": 475, "end": 478, "annotation": null}, {"text": "gas", "start": 479, "end": 482, "annotation": null}, {"text": "sensing", "start": 483, "end": 490, "annotation": null}, {"text": "properties", "start": 491, "end": 501, "annotation": null}, {"text": "of", "start": 502, "end": 504, "annotation": null}, {"text": "the", "start": 505, "end": 508, "annotation": null}, {"text": "PPy", "start": 509, "end": 512, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 512, "end": 513, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 513, "end": 516, "annotation": "BASEMAT"}, {"text": "hybrid", "start": 517, "end": 523, "annotation": null}, {"text": "films", "start": 524, "end": 529, "annotation": null}, {"text": "doped", "start": 530, "end": 535, "annotation": null}, {"text": "with", "start": 536, "end": 540, "annotation": null}, {"text": "CSA", "start": 541, "end": 544, "annotation": "DOPANT"}, {"text": "have", "start": 545, "end": 549, "annotation": null}, {"text": "been", "start": 550, "end": 554, "annotation": null}, {"text": "studied", "start": 555, "end": 562, "annotation": null}, {"text": "for", "start": 563, "end": 566, "annotation": null}, {"text": "oxidizing", "start": 567, "end": 576, "annotation": null}, {"text": "(", "start": 577, "end": 578, "annotation": null}, {"text": "NO2", "start": 578, "end": 581, "annotation": null}, {"text": ")", "start": 581, "end": 582, "annotation": null}, {"text": "as", "start": 583, "end": 585, "annotation": null}, {"text": "well", "start": 586, "end": 590, "annotation": null}, {"text": "as", "start": 591, "end": 593, "annotation": null}, {"text": "reducing", "start": 594, "end": 602, "annotation": null}, {"text": "(", "start": 603, "end": 604, "annotation": null}, {"text": "H2S", "start": 604, "end": 607, "annotation": null}, {"text": ",", "start": 607, "end": 608, "annotation": null}, {"text": "NH3", "start": 609, "end": 612, "annotation": null}, {"text": ",", "start": 612, "end": 613, "annotation": null}, {"text": "C2H5OH", "start": 614, "end": 620, "annotation": null}, {"text": "and", "start": 621, "end": 624, "annotation": null}, {"text": "CH3OH", "start": 625, "end": 630, "annotation": null}, {"text": ")", "start": 630, "end": 631, "annotation": null}, {"text": "gases", "start": 632, "end": 637, "annotation": null}, {"text": "at", "start": 638, "end": 640, "annotation": null}, {"text": "room", "start": 641, "end": 645, "annotation": null}, {"text": "temperature", "start": 646, "end": 657, "annotation": null}, {"text": ".", "start": 657, "end": 658, "annotation": null}], [{"text": "We", "start": 659, "end": 661, "annotation": null}, {"text": "demonstrate", "start": 662, "end": 673, "annotation": null}, {"text": "that", "start": 674, "end": 678, "annotation": null}, {"text": "CSA", "start": 679, "end": 682, "annotation": "DOPANT"}, {"text": "(", "start": 683, "end": 684, "annotation": null}, {"text": "30wt.", "start": 684, "end": 689, "annotation": "DOPMODQ"}, {"text": "%", "start": 689, "end": 690, "annotation": "DOPMODQ"}, {"text": ")", "start": 690, "end": 691, "annotation": null}, {"text": "doped", "start": 692, "end": 697, "annotation": null}, {"text": "PPy", "start": 698, "end": 701, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 701, "end": 702, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 702, "end": 705, "annotation": "BASEMAT"}, {"text": "hybrid", "start": 706, "end": 712, "annotation": null}, {"text": "films", "start": 713, "end": 718, "annotation": null}, {"text": "are", "start": 719, "end": 722, "annotation": null}, {"text": "highly", "start": 723, "end": 729, "annotation": null}, {"text": "selective", "start": 730, "end": 739, "annotation": null}, {"text": "to", "start": 740, "end": 742, "annotation": null}, {"text": "NO2", "start": 743, "end": 746, "annotation": null}, {"text": "along", "start": 747, "end": 752, "annotation": null}, {"text": "with", "start": 753, "end": 757, "annotation": null}, {"text": "high", "start": 758, "end": 762, "annotation": null}, {"text": "-", "start": 762, "end": 763, "annotation": null}, {"text": "sensitivity", "start": 763, "end": 774, "annotation": null}, {"text": "at", "start": 775, "end": 777, "annotation": null}, {"text": "low", "start": 778, "end": 781, "annotation": null}, {"text": "concentration", "start": 782, "end": 795, "annotation": null}, {"text": "(", "start": 796, "end": 797, "annotation": null}, {"text": "80", "start": 797, "end": 799, "annotation": null}, {"text": "%", "start": 799, "end": 800, "annotation": null}, {"text": "to", "start": 801, "end": 803, "annotation": null}, {"text": "100", "start": 804, "end": 807, "annotation": null}, {"text": "ppm", "start": 807, "end": 810, "annotation": null}, {"text": ")", "start": 810, "end": 811, "annotation": null}, {"text": ",", "start": 811, "end": 812, "annotation": null}, {"text": "fast", "start": 813, "end": 817, "annotation": null}, {"text": "-", "start": 817, "end": 818, "annotation": null}, {"text": "response", "start": 818, "end": 826, "annotation": null}, {"text": "time", "start": 827, "end": 831, "annotation": null}, {"text": "(", "start": 832, "end": 833, "annotation": null}, {"text": "120s", "start": 833, "end": 837, "annotation": null}, {"text": ")", "start": 837, "end": 838, "annotation": null}, {"text": "and", "start": 839, "end": 842, "annotation": null}, {"text": "better", "start": 843, "end": 849, "annotation": null}, {"text": "stability", "start": 850, "end": 859, "annotation": null}, {"text": ",", "start": 859, "end": 860, "annotation": null}, {"text": "which", "start": 861, "end": 866, "annotation": null}, {"text": "suggested", "start": 867, "end": 876, "annotation": null}, {"text": "that", "start": 877, "end": 881, "annotation": null}, {"text": "the", "start": 882, "end": 885, "annotation": null}, {"text": "CSA", "start": 886, "end": 889, "annotation": "DOPANT"}, {"text": "(", "start": 890, "end": 891, "annotation": null}, {"text": "30", "start": 891, "end": 893, "annotation": "DOPMODQ"}, {"text": "%", "start": 893, "end": 894, "annotation": "DOPMODQ"}, {"text": ")", "start": 894, "end": 895, "annotation": null}, {"text": "doped", "start": 896, "end": 901, "annotation": null}, {"text": "PPy", "start": 902, "end": 905, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 905, "end": 906, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 906, "end": 909, "annotation": "BASEMAT"}, {"text": "hybrid", "start": 910, "end": 916, "annotation": null}, {"text": "films", "start": 917, "end": 922, "annotation": null}, {"text": "are", "start": 923, "end": 926, "annotation": null}, {"text": "potential", "start": 927, "end": 936, "annotation": null}, {"text": "candidate", "start": 937, "end": 946, "annotation": null}, {"text": "for", "start": 947, "end": 950, "annotation": null}, {"text": "NO2", "start": 951, "end": 954, "annotation": null}, {"text": "detection", "start": 955, "end": 964, "annotation": null}, {"text": "at", "start": 965, "end": 967, "annotation": null}, {"text": "room", "start": 968, "end": 972, "annotation": null}, {"text": "temperature", "start": 973, "end": 984, "annotation": null}, {"text": ".", "start": 984, "end": 985, "annotation": null}]]} -{"remark": "doping_annt2", "text": "High refractive index hybrid coatings were prepared by directly incorporating anatase titania (TiO2) nanocrystals (NCs) into (3-glycidyloxypropyl) trimethoxysilane organic silica sol followed by a sol\u2013gel process. The anatase TiO2 NCs were prepared by controlling hydrolysis of titanium alkoxide in acid solution, and they show a narrow size distribution centered at about 4nm and very good dispersibility in the silica sol. After doped with TiO2, the coatings possessed excellent surface smoothness and high optical transparency in the visible range. The refractive index at 632.8nm increased from 1.502 to 1.663 as the TiO2 weight content goes from 10% to 50%. Besides, the hybrid coatings also had good thermal stability and high hardness of 3H, which have promising application in antireflection coatings.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "High", "start": 0, "end": 4, "annotation": null}, {"text": "refractive", "start": 5, "end": 15, "annotation": null}, {"text": "index", "start": 16, "end": 21, "annotation": null}, {"text": "hybrid", "start": 22, "end": 28, "annotation": null}, {"text": "coatings", "start": 29, "end": 37, "annotation": null}, {"text": "were", "start": 38, "end": 42, "annotation": null}, {"text": "prepared", "start": 43, "end": 51, "annotation": null}, {"text": "by", "start": 52, "end": 54, "annotation": null}, {"text": "directly", "start": 55, "end": 63, "annotation": null}, {"text": "incorporating", "start": 64, "end": 77, "annotation": null}, {"text": "anatase", "start": 78, "end": 85, "annotation": null}, {"text": "titania", "start": 86, "end": 93, "annotation": "DOPANT"}, {"text": "(", "start": 94, "end": 95, "annotation": null}, {"text": "TiO2", "start": 95, "end": 99, "annotation": "DOPANT"}, {"text": ")", "start": 99, "end": 100, "annotation": null}, {"text": "nanocrystals", "start": 101, "end": 113, "annotation": null}, {"text": "(", "start": 114, "end": 115, "annotation": null}, {"text": "NCs", "start": 115, "end": 118, "annotation": null}, {"text": ")", "start": 118, "end": 119, "annotation": null}, {"text": "into", "start": 120, "end": 124, "annotation": null}, {"text": "(", "start": 125, "end": 126, "annotation": null}, {"text": "3-glycidyloxypropyl", "start": 126, "end": 145, "annotation": "BASEMAT"}, {"text": ")", "start": 145, "end": 146, "annotation": null}, {"text": "trimethoxysilane", "start": 147, "end": 163, "annotation": "BASEMAT"}, {"text": "organic", "start": 164, "end": 171, "annotation": null}, {"text": "silica", "start": 172, "end": 178, "annotation": null}, {"text": "sol", "start": 179, "end": 182, "annotation": null}, {"text": "followed", "start": 183, "end": 191, "annotation": null}, {"text": "by", "start": 192, "end": 194, "annotation": null}, {"text": "a", "start": 195, "end": 196, "annotation": null}, {"text": "sol", "start": 197, "end": 200, "annotation": null}, {"text": "\u2013", "start": 200, "end": 201, "annotation": null}, {"text": "gel", "start": 201, "end": 204, "annotation": null}, {"text": "process", "start": 205, "end": 212, "annotation": null}, {"text": ".", "start": 212, "end": 213, "annotation": null}], [{"text": "The", "start": 214, "end": 217, "annotation": null}, {"text": "anatase", "start": 218, "end": 225, "annotation": null}, {"text": "TiO2", "start": 226, "end": 230, "annotation": null}, {"text": "NCs", "start": 231, "end": 234, "annotation": null}, {"text": "were", "start": 235, "end": 239, "annotation": null}, {"text": "prepared", "start": 240, "end": 248, "annotation": null}, {"text": "by", "start": 249, "end": 251, "annotation": null}, {"text": "controlling", "start": 252, "end": 263, "annotation": null}, {"text": "hydrolysis", "start": 264, "end": 274, "annotation": null}, {"text": "of", "start": 275, "end": 277, "annotation": null}, {"text": "titanium", "start": 278, "end": 286, "annotation": null}, {"text": "alkoxide", "start": 287, "end": 295, "annotation": null}, {"text": "in", "start": 296, "end": 298, "annotation": null}, {"text": "acid", "start": 299, "end": 303, "annotation": null}, {"text": "solution", "start": 304, "end": 312, "annotation": null}, {"text": ",", "start": 312, "end": 313, "annotation": null}, {"text": "and", "start": 314, "end": 317, "annotation": null}, {"text": "they", "start": 318, "end": 322, "annotation": null}, {"text": "show", "start": 323, "end": 327, "annotation": null}, {"text": "a", "start": 328, "end": 329, "annotation": null}, {"text": "narrow", "start": 330, "end": 336, "annotation": null}, {"text": "size", "start": 337, "end": 341, "annotation": null}, {"text": "distribution", "start": 342, "end": 354, "annotation": null}, {"text": "centered", "start": 355, "end": 363, "annotation": null}, {"text": "at", "start": 364, "end": 366, "annotation": null}, {"text": "about", "start": 367, "end": 372, "annotation": null}, {"text": "4", "start": 373, "end": 374, "annotation": null}, {"text": "nm", "start": 374, "end": 376, "annotation": null}, {"text": "and", "start": 377, "end": 380, "annotation": null}, {"text": "very", "start": 381, "end": 385, "annotation": null}, {"text": "good", "start": 386, "end": 390, "annotation": null}, {"text": "dispersibility", "start": 391, "end": 405, "annotation": null}, {"text": "in", "start": 406, "end": 408, "annotation": null}, {"text": "the", "start": 409, "end": 412, "annotation": null}, {"text": "silica", "start": 413, "end": 419, "annotation": null}, {"text": "sol", "start": 420, "end": 423, "annotation": null}, {"text": ".", "start": 423, "end": 424, "annotation": null}], [{"text": "After", "start": 425, "end": 430, "annotation": null}, {"text": "doped", "start": 431, "end": 436, "annotation": null}, {"text": "with", "start": 437, "end": 441, "annotation": null}, {"text": "TiO2", "start": 442, "end": 446, "annotation": "DOPANT"}, {"text": ",", "start": 446, "end": 447, "annotation": null}, {"text": "the", "start": 448, "end": 451, "annotation": null}, {"text": "coatings", "start": 452, "end": 460, "annotation": "BASEMAT"}, {"text": "possessed", "start": 461, "end": 470, "annotation": null}, {"text": "excellent", "start": 471, "end": 480, "annotation": null}, {"text": "surface", "start": 481, "end": 488, "annotation": null}, {"text": "smoothness", "start": 489, "end": 499, "annotation": null}, {"text": "and", "start": 500, "end": 503, "annotation": null}, {"text": "high", "start": 504, "end": 508, "annotation": null}, {"text": "optical", "start": 509, "end": 516, "annotation": null}, {"text": "transparency", "start": 517, "end": 529, "annotation": null}, {"text": "in", "start": 530, "end": 532, "annotation": null}, {"text": "the", "start": 533, "end": 536, "annotation": null}, {"text": "visible", "start": 537, "end": 544, "annotation": null}, {"text": "range", "start": 545, "end": 550, "annotation": null}, {"text": ".", "start": 550, "end": 551, "annotation": null}], [{"text": "The", "start": 552, "end": 555, "annotation": null}, {"text": "refractive", "start": 556, "end": 566, "annotation": null}, {"text": "index", "start": 567, "end": 572, "annotation": null}, {"text": "at", "start": 573, "end": 575, "annotation": null}, {"text": "632.8", "start": 576, "end": 581, "annotation": null}, {"text": "nm", "start": 581, "end": 583, "annotation": null}, {"text": "increased", "start": 584, "end": 593, "annotation": null}, {"text": "from", "start": 594, "end": 598, "annotation": null}, {"text": "1.502", "start": 599, "end": 604, "annotation": null}, {"text": "to", "start": 605, "end": 607, "annotation": null}, {"text": "1.663", "start": 608, "end": 613, "annotation": null}, {"text": "as", "start": 614, "end": 616, "annotation": null}, {"text": "the", "start": 617, "end": 620, "annotation": null}, {"text": "TiO2", "start": 621, "end": 625, "annotation": "DOPANT"}, {"text": "weight", "start": 626, "end": 632, "annotation": null}, {"text": "content", "start": 633, "end": 640, "annotation": null}, {"text": "goes", "start": 641, "end": 645, "annotation": null}, {"text": "from", "start": 646, "end": 650, "annotation": null}, {"text": "10", "start": 651, "end": 653, "annotation": "DOPMODQ"}, {"text": "%", "start": 653, "end": 654, "annotation": "DOPMODQ"}, {"text": "to", "start": 655, "end": 657, "annotation": null}, {"text": "50", "start": 658, "end": 660, "annotation": "DOPMODQ"}, {"text": "%", "start": 660, "end": 661, "annotation": "DOPMODQ"}, {"text": ".", "start": 661, "end": 662, "annotation": null}], [{"text": "Besides", "start": 663, "end": 670, "annotation": null}, {"text": ",", "start": 670, "end": 671, "annotation": null}, {"text": "the", "start": 672, "end": 675, "annotation": null}, {"text": "hybrid", "start": 676, "end": 682, "annotation": null}, {"text": "coatings", "start": 683, "end": 691, "annotation": null}, {"text": "also", "start": 692, "end": 696, "annotation": null}, {"text": "had", "start": 697, "end": 700, "annotation": null}, {"text": "good", "start": 701, "end": 705, "annotation": null}, {"text": "thermal", "start": 706, "end": 713, "annotation": null}, {"text": "stability", "start": 714, "end": 723, "annotation": null}, {"text": "and", "start": 724, "end": 727, "annotation": null}, {"text": "high", "start": 728, "end": 732, "annotation": null}, {"text": "hardness", "start": 733, "end": 741, "annotation": null}, {"text": "of", "start": 742, "end": 744, "annotation": null}, {"text": "3H", "start": 745, "end": 747, "annotation": null}, {"text": ",", "start": 747, "end": 748, "annotation": null}, {"text": "which", "start": 749, "end": 754, "annotation": null}, {"text": "have", "start": 755, "end": 759, "annotation": null}, {"text": "promising", "start": 760, "end": 769, "annotation": null}, {"text": "application", "start": 770, "end": 781, "annotation": null}, {"text": "in", "start": 782, "end": 784, "annotation": null}, {"text": "antireflection", "start": 785, "end": 799, "annotation": null}, {"text": "coatings", "start": 800, "end": 808, "annotation": null}, {"text": ".", "start": 808, "end": 809, "annotation": null}]]} -{"text": "Nb-doped rutile produced by sintering at 1400\u00b0C in an air atmosphere led to a monotonic increase of the shortest \u03c4 1 lifetime of the major spectral component from 0.17 to 0.25 ns in the 22Na positron annihilation lifetime spectrum as the Nb doping level was progressively increased to 0.12 formula units, at which stage TiNb 2O 7 was observed as a second phase. The charge compensators for Nb 5+ substituting for Ti 4+ are indicated as cation vacancies on the basis of the increase of \u03c4 1.", "meta": {"doi": "10.1111/j.1551-2916.2008.02679.x"}, "_input_hash": 387879197, "_task_hash": 2039813015, "tokens": [[{"text": "Nb", "start": 0, "end": 2, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 3, "end": 4, "id": 1, "annotation": null}, {"text": "doped", "start": 5, "end": 10, "id": 2, "annotation": null}, {"text": "rutile", "start": 11, "end": 17, "id": 3, "annotation": "BASEMAT"}, {"text": "produced", "start": 18, "end": 26, "id": 4, "annotation": null}, {"text": "by", "start": 27, "end": 29, "id": 5, "annotation": null}, {"text": "sintering", "start": 30, "end": 39, "id": 6, "annotation": null}, {"text": "at", "start": 40, "end": 42, "id": 7, "annotation": null}, {"text": "1400", "start": 43, "end": 47, "id": 8, "annotation": null}, {"text": "\u00b0", "start": 48, "end": 49, "id": 9, "annotation": null}, {"text": "C", "start": 50, "end": 51, "id": 10, "annotation": null}, {"text": "in", "start": 52, "end": 54, "id": 11, "annotation": null}, {"text": "an", "start": 55, "end": 57, "id": 12, "annotation": null}, {"text": "air", "start": 58, "end": 61, "id": 13, "annotation": null}, {"text": "atmosphere", "start": 62, "end": 72, "id": 14, "annotation": null}, {"text": "led", "start": 73, "end": 76, "id": 15, "annotation": null}, {"text": "to", "start": 77, "end": 79, "id": 16, "annotation": null}, {"text": "a", "start": 80, "end": 81, "id": 17, "annotation": null}, {"text": "monotonic", "start": 82, "end": 91, "id": 18, "annotation": null}, {"text": "increase", "start": 92, "end": 100, "id": 19, "annotation": null}, {"text": "of", "start": 101, "end": 103, "id": 20, "annotation": null}, {"text": "the", "start": 104, "end": 107, "id": 21, "annotation": null}, {"text": "shortest", "start": 108, "end": 116, "id": 22, "annotation": null}, {"text": "\u03c4", "start": 117, "end": 118, "id": 23, "annotation": null}, {"text": "1", "start": 119, "end": 120, "id": 24, "annotation": null}, {"text": "lifetime", "start": 121, "end": 129, "id": 25, "annotation": null}, {"text": "of", "start": 130, "end": 132, "id": 26, "annotation": null}, {"text": "the", "start": 133, "end": 136, "id": 27, "annotation": null}, {"text": "major", "start": 137, "end": 142, "id": 28, "annotation": null}, {"text": "spectral", "start": 143, "end": 151, "id": 29, "annotation": null}, {"text": "component", "start": 152, "end": 161, "id": 30, "annotation": null}, {"text": "from", "start": 162, "end": 166, "id": 31, "annotation": null}, {"text": "0.17", "start": 167, "end": 171, "id": 32, "annotation": null}, {"text": "to", "start": 172, "end": 174, "id": 33, "annotation": null}, {"text": "0.25", "start": 175, "end": 179, "id": 34, "annotation": null}, {"text": "ns", "start": 180, "end": 182, "id": 35, "annotation": null}, {"text": "in", "start": 183, "end": 185, "id": 36, "annotation": null}, {"text": "the", "start": 186, "end": 189, "id": 37, "annotation": null}, {"text": "22Na", "start": 190, "end": 194, "id": 38, "annotation": null}, {"text": "positron", "start": 195, "end": 203, "id": 39, "annotation": null}, {"text": "annihilation", "start": 204, "end": 216, "id": 40, "annotation": null}, {"text": "lifetime", "start": 217, "end": 225, "id": 41, "annotation": null}, {"text": "spectrum", "start": 226, "end": 234, "id": 42, "annotation": null}, {"text": "as", "start": 235, "end": 237, "id": 43, "annotation": null}, {"text": "the", "start": 238, "end": 241, "id": 44, "annotation": null}, {"text": "Nb", "start": 242, "end": 244, "id": 45, "annotation": "DOPANT"}, {"text": "doping", "start": 245, "end": 251, "id": 46, "annotation": null}, {"text": "level", "start": 252, "end": 257, "id": 47, "annotation": null}, {"text": "was", "start": 258, "end": 261, "id": 48, "annotation": null}, {"text": "progressively", "start": 262, "end": 275, "id": 49, "annotation": null}, {"text": "increased", "start": 276, "end": 285, "id": 50, "annotation": null}, {"text": "to", "start": 286, "end": 288, "id": 51, "annotation": null}, {"text": "0.12", "start": 289, "end": 293, "id": 52, "annotation": "DOPMODQ"}, {"text": "formula", "start": 294, "end": 301, "id": 53, "annotation": null}, {"text": "units", "start": 302, "end": 307, "id": 54, "annotation": "DOPMODQ"}, {"text": ",", "start": 308, "end": 309, "id": 55, "annotation": null}, {"text": "at", "start": 310, "end": 312, "id": 56, "annotation": null}, {"text": "which", "start": 313, "end": 318, "id": 57, "annotation": null}, {"text": "stage", "start": 319, "end": 324, "id": 58, "annotation": null}, {"text": "TiNb", "start": 325, "end": 329, "id": 59, "annotation": null}, {"text": "2O", "start": 330, "end": 332, "id": 60, "annotation": null}, {"text": "7", "start": 333, "end": 334, "id": 61, "annotation": null}, {"text": "was", "start": 335, "end": 338, "id": 62, "annotation": null}, {"text": "observed", "start": 339, "end": 347, "id": 63, "annotation": null}, {"text": "as", "start": 348, "end": 350, "id": 64, "annotation": null}, {"text": "a", "start": 351, "end": 352, "id": 65, "annotation": null}, {"text": "second", "start": 353, "end": 359, "id": 66, "annotation": null}, {"text": "phase", "start": 360, "end": 365, "id": 67, "annotation": null}, {"text": ".", "start": 366, "end": 367, "id": 68, "annotation": null}], [{"text": "The", "start": 368, "end": 371, "id": 69, "annotation": null}, {"text": "charge", "start": 372, "end": 378, "id": 70, "annotation": null}, {"text": "compensators", "start": 379, "end": 391, "id": 71, "annotation": null}, {"text": "for", "start": 392, "end": 395, "id": 72, "annotation": null}, {"text": "Nb", "start": 396, "end": 398, "id": 73, "annotation": null}, {"text": "5", "start": 399, "end": 400, "id": 74, "annotation": null}, {"text": "+", "start": 401, "end": 402, "id": 75, "annotation": null}, {"text": "substituting", "start": 403, "end": 415, "id": 76, "annotation": null}, {"text": "for", "start": 416, "end": 419, "id": 77, "annotation": null}, {"text": "Ti", "start": 420, "end": 422, "id": 78, "annotation": null}, {"text": "4", "start": 423, "end": 424, "id": 79, "annotation": null}, {"text": "+", "start": 425, "end": 426, "id": 80, "annotation": null}, {"text": "are", "start": 427, "end": 430, "id": 81, "annotation": null}, {"text": "indicated", "start": 431, "end": 440, "id": 82, "annotation": null}, {"text": "as", "start": 441, "end": 443, "id": 83, "annotation": null}, {"text": "cation", "start": 444, "end": 450, "id": 84, "annotation": null}, {"text": "vacancies", "start": 451, "end": 460, "id": 85, "annotation": null}, {"text": "on", "start": 461, "end": 463, "id": 86, "annotation": null}, {"text": "the", "start": 464, "end": 467, "id": 87, "annotation": null}, {"text": "basis", "start": 468, "end": 473, "id": 88, "annotation": null}, {"text": "of", "start": 474, "end": 476, "id": 89, "annotation": null}, {"text": "the", "start": 477, "end": 480, "id": 90, "annotation": null}, {"text": "increase", "start": 481, "end": 489, "id": 91, "annotation": null}, {"text": "of", "start": 490, "end": 492, "id": 92, "annotation": null}, {"text": "\u03c4", "start": 493, "end": 494, "id": 93, "annotation": null}, {"text": "1", "start": 495, "end": 496, "id": 94, "annotation": null}, {"text": ".", "start": 497, "end": 498, "id": 95, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Carefully prepared bulk ceramic specimens of In 2 O 3 and Sn-doped In 2 O 3 (ITO) were analysed with x-ray and UV photoelectron spectroscopy before and after heat treatment in vacuum and oxygen atmosphere. The results on ex situ prepared ceramic specimens were shown to be comparable to those of in situ deposited-measured thin films in terms of core levels, Fermi levels and ionization potentials. This suggests a viable path for rapid synthesis and screening of surface electronic-defect properties for other transparent conducting oxides (TCO) materials. A strong correlation exists between the surface electronic-defect structure of In 2 O 3 -based TCOs and their underlying electronic-defect structure, owing to the unique crystal-defect properties of the bixbyite structure. This leads to formation of a chemical depletion at the surface and the formation of a peroxide surface species for higher preparation temperatures. The results are discussed with respect to the use of ITO as hole injection electrode in organic light emitting devices.", "meta": {"doi": "10.1088/0022-3727/39/18/006"}, "_input_hash": 1188328900, "_task_hash": -527008589, "tokens": [[{"text": "Carefully", "start": 0, "end": 9, "id": 0, "annotation": null}, {"text": "prepared", "start": 10, "end": 18, "id": 1, "annotation": null}, {"text": "bulk", "start": 19, "end": 23, "id": 2, "annotation": null}, {"text": "ceramic", "start": 24, "end": 31, "id": 3, "annotation": null}, {"text": "specimens", "start": 32, "end": 41, "id": 4, "annotation": null}, {"text": "of", "start": 42, "end": 44, "id": 5, "annotation": null}, {"text": "In", "start": 45, "end": 47, "id": 6, "annotation": null}, {"text": "2", "start": 48, "end": 49, "id": 7, "annotation": null}, {"text": "O", "start": 50, "end": 51, "id": 8, "annotation": null}, {"text": "3", "start": 52, "end": 53, "id": 9, "annotation": null}, {"text": "and", "start": 54, "end": 57, "id": 10, "annotation": null}, {"text": "Sn", "start": 58, "end": 60, "id": 11, "annotation": "DOPANT"}, {"text": "-", "start": 61, "end": 62, "id": 12, "annotation": null}, {"text": "doped", "start": 63, "end": 68, "id": 13, "annotation": null}, {"text": "In", "start": 69, "end": 71, "id": 14, "annotation": "BASEMAT"}, {"text": "2", "start": 72, "end": 73, "id": 15, "annotation": null}, {"text": "O", "start": 74, "end": 75, "id": 16, "annotation": null}, {"text": "3", "start": 76, "end": 77, "id": 17, "annotation": "BASEMAT"}, {"text": "(", "start": 78, "end": 79, "id": 18, "annotation": null}, {"text": "ITO", "start": 80, "end": 83, "id": 19, "annotation": null}, {"text": ")", "start": 84, "end": 85, "id": 20, "annotation": null}, {"text": "were", "start": 86, "end": 90, "id": 21, "annotation": null}, {"text": "analysed", "start": 91, "end": 99, "id": 22, "annotation": null}, {"text": "with", "start": 100, "end": 104, "id": 23, "annotation": null}, {"text": "x", "start": 105, "end": 106, "id": 24, "annotation": null}, {"text": "-", "start": 107, "end": 108, "id": 25, "annotation": null}, {"text": "ray", "start": 109, "end": 112, "id": 26, "annotation": null}, {"text": "and", "start": 113, "end": 116, "id": 27, "annotation": null}, {"text": "UV", "start": 117, "end": 119, "id": 28, "annotation": null}, {"text": "photoelectron", "start": 120, "end": 133, "id": 29, "annotation": null}, {"text": "spectroscopy", "start": 134, "end": 146, "id": 30, "annotation": null}, {"text": "before", "start": 147, "end": 153, "id": 31, "annotation": null}, {"text": "and", "start": 154, "end": 157, "id": 32, "annotation": null}, {"text": "after", "start": 158, "end": 163, "id": 33, "annotation": null}, {"text": "heat", "start": 164, "end": 168, "id": 34, "annotation": null}, {"text": "treatment", "start": 169, "end": 178, "id": 35, "annotation": null}, {"text": "in", "start": 179, "end": 181, "id": 36, "annotation": null}, {"text": "vacuum", "start": 182, "end": 188, "id": 37, "annotation": null}, {"text": "and", "start": 189, "end": 192, "id": 38, "annotation": null}, {"text": "oxygen", "start": 193, "end": 199, "id": 39, "annotation": null}, {"text": "atmosphere", "start": 200, "end": 210, "id": 40, "annotation": null}, {"text": ".", "start": 211, "end": 212, "id": 41, "annotation": null}], [{"text": "The", "start": 213, "end": 216, "id": 42, "annotation": null}, {"text": "results", "start": 217, "end": 224, "id": 43, "annotation": null}, {"text": "on", "start": 225, "end": 227, "id": 44, "annotation": null}, {"text": "ex", "start": 228, "end": 230, "id": 45, "annotation": null}, {"text": "situ", "start": 231, "end": 235, "id": 46, "annotation": null}, {"text": "prepared", "start": 236, "end": 244, "id": 47, "annotation": null}, {"text": "ceramic", "start": 245, "end": 252, "id": 48, "annotation": null}, {"text": "specimens", "start": 253, "end": 262, "id": 49, "annotation": null}, {"text": "were", "start": 263, "end": 267, "id": 50, "annotation": null}, {"text": "shown", "start": 268, "end": 273, "id": 51, "annotation": null}, {"text": "to", "start": 274, "end": 276, "id": 52, "annotation": null}, {"text": "be", "start": 277, "end": 279, "id": 53, "annotation": null}, {"text": "comparable", "start": 280, "end": 290, "id": 54, "annotation": null}, {"text": "to", "start": 291, "end": 293, "id": 55, "annotation": null}, {"text": "those", "start": 294, "end": 299, "id": 56, "annotation": null}, {"text": "of", "start": 300, "end": 302, "id": 57, "annotation": null}, {"text": "in", "start": 303, "end": 305, "id": 58, "annotation": null}, {"text": "situ", "start": 306, "end": 310, "id": 59, "annotation": null}, {"text": "deposited", "start": 311, "end": 320, "id": 60, "annotation": null}, {"text": "-", "start": 321, "end": 322, "id": 61, "annotation": null}, {"text": "measured", "start": 323, "end": 331, "id": 62, "annotation": null}, {"text": "thin", "start": 332, "end": 336, "id": 63, "annotation": null}, {"text": "films", "start": 337, "end": 342, "id": 64, "annotation": null}, {"text": "in", "start": 343, "end": 345, "id": 65, "annotation": null}, {"text": "terms", "start": 346, "end": 351, "id": 66, "annotation": null}, {"text": "of", "start": 352, "end": 354, "id": 67, "annotation": null}, {"text": "core", "start": 355, "end": 359, "id": 68, "annotation": null}, {"text": "levels", "start": 360, "end": 366, "id": 69, "annotation": null}, {"text": ",", "start": 367, "end": 368, "id": 70, "annotation": null}, {"text": "Fermi", "start": 369, "end": 374, "id": 71, "annotation": null}, {"text": "levels", "start": 375, "end": 381, "id": 72, "annotation": null}, {"text": "and", "start": 382, "end": 385, "id": 73, "annotation": null}, {"text": "ionization", "start": 386, "end": 396, "id": 74, "annotation": null}, {"text": "potentials", "start": 397, "end": 407, "id": 75, "annotation": null}, {"text": ".", "start": 408, "end": 409, "id": 76, "annotation": null}], [{"text": "This", "start": 410, "end": 414, "id": 77, "annotation": null}, {"text": "suggests", "start": 415, "end": 423, "id": 78, "annotation": null}, {"text": "a", "start": 424, "end": 425, "id": 79, "annotation": null}, {"text": "viable", "start": 426, "end": 432, "id": 80, "annotation": null}, {"text": "path", "start": 433, "end": 437, "id": 81, "annotation": null}, {"text": "for", "start": 438, "end": 441, "id": 82, "annotation": null}, {"text": "rapid", "start": 442, "end": 447, "id": 83, "annotation": null}, {"text": "synthesis", "start": 448, "end": 457, "id": 84, "annotation": null}, {"text": "and", "start": 458, "end": 461, "id": 85, "annotation": null}, {"text": "screening", "start": 462, "end": 471, "id": 86, "annotation": null}, {"text": "of", "start": 472, "end": 474, "id": 87, "annotation": null}, {"text": "surface", "start": 475, "end": 482, "id": 88, "annotation": null}, {"text": "electronic", "start": 483, "end": 493, "id": 89, "annotation": null}, {"text": "-", "start": 494, "end": 495, "id": 90, "annotation": null}, {"text": "defect", "start": 496, "end": 502, "id": 91, "annotation": null}, {"text": "properties", "start": 503, "end": 513, "id": 92, "annotation": null}, {"text": "for", "start": 514, "end": 517, "id": 93, "annotation": null}, {"text": "other", "start": 518, "end": 523, "id": 94, "annotation": null}, {"text": "transparent", "start": 524, "end": 535, "id": 95, "annotation": null}, {"text": "conducting", "start": 536, "end": 546, "id": 96, "annotation": null}, {"text": "oxides", "start": 547, "end": 553, "id": 97, "annotation": null}, {"text": "(", "start": 554, "end": 555, "id": 98, "annotation": null}, {"text": "TCO", "start": 556, "end": 559, "id": 99, "annotation": null}, {"text": ")", "start": 560, "end": 561, "id": 100, "annotation": null}, {"text": "materials", "start": 562, "end": 571, "id": 101, "annotation": null}, {"text": ".", "start": 572, "end": 573, "id": 102, "annotation": null}], [{"text": "A", "start": 574, "end": 575, "id": 103, "annotation": null}, {"text": "strong", "start": 576, "end": 582, "id": 104, "annotation": null}, {"text": "correlation", "start": 583, "end": 594, "id": 105, "annotation": null}, {"text": "exists", "start": 595, "end": 601, "id": 106, "annotation": null}, {"text": "between", "start": 602, "end": 609, "id": 107, "annotation": null}, {"text": "the", "start": 610, "end": 613, "id": 108, "annotation": null}, {"text": "surface", "start": 614, "end": 621, "id": 109, "annotation": null}, {"text": "electronic", "start": 622, "end": 632, "id": 110, "annotation": null}, {"text": "-", "start": 633, "end": 634, "id": 111, "annotation": null}, {"text": "defect", "start": 635, "end": 641, "id": 112, "annotation": null}, {"text": "structure", "start": 642, "end": 651, "id": 113, "annotation": null}, {"text": "of", "start": 652, "end": 654, "id": 114, "annotation": null}, {"text": "In", "start": 655, "end": 657, "id": 115, "annotation": null}, {"text": "2", "start": 658, "end": 659, "id": 116, "annotation": null}, {"text": "O", "start": 660, "end": 661, "id": 117, "annotation": null}, {"text": "3", "start": 662, "end": 663, "id": 118, "annotation": null}, {"text": "-based", "start": 664, "end": 670, "id": 119, "annotation": null}, {"text": "TCOs", "start": 671, "end": 675, "id": 120, "annotation": null}, {"text": "and", "start": 676, "end": 679, "id": 121, "annotation": null}, {"text": "their", "start": 680, "end": 685, "id": 122, "annotation": null}, {"text": "underlying", "start": 686, "end": 696, "id": 123, "annotation": null}, {"text": "electronic", "start": 697, "end": 707, "id": 124, "annotation": null}, {"text": "-", "start": 708, "end": 709, "id": 125, "annotation": null}, {"text": "defect", "start": 710, "end": 716, "id": 126, "annotation": null}, {"text": "structure", "start": 717, "end": 726, "id": 127, "annotation": null}, {"text": ",", "start": 727, "end": 728, "id": 128, "annotation": null}, {"text": "owing", "start": 729, "end": 734, "id": 129, "annotation": null}, {"text": "to", "start": 735, "end": 737, "id": 130, "annotation": null}, {"text": "the", "start": 738, "end": 741, "id": 131, "annotation": null}, {"text": "unique", "start": 742, "end": 748, "id": 132, "annotation": null}, {"text": "crystal", "start": 749, "end": 756, "id": 133, "annotation": null}, {"text": "-", "start": 757, "end": 758, "id": 134, "annotation": null}, {"text": "defect", "start": 759, "end": 765, "id": 135, "annotation": null}, {"text": "properties", "start": 766, "end": 776, "id": 136, "annotation": null}, {"text": "of", "start": 777, "end": 779, "id": 137, "annotation": null}, {"text": "the", "start": 780, "end": 783, "id": 138, "annotation": null}, {"text": "bixbyite", "start": 784, "end": 792, "id": 139, "annotation": null}, {"text": "structure", "start": 793, "end": 802, "id": 140, "annotation": null}, {"text": ".", "start": 803, "end": 804, "id": 141, "annotation": null}], [{"text": "This", "start": 805, "end": 809, "id": 142, "annotation": null}, {"text": "leads", "start": 810, "end": 815, "id": 143, "annotation": null}, {"text": "to", "start": 816, "end": 818, "id": 144, "annotation": null}, {"text": "formation", "start": 819, "end": 828, "id": 145, "annotation": null}, {"text": "of", "start": 829, "end": 831, "id": 146, "annotation": null}, {"text": "a", "start": 832, "end": 833, "id": 147, "annotation": null}, {"text": "chemical", "start": 834, "end": 842, "id": 148, "annotation": null}, {"text": "depletion", "start": 843, "end": 852, "id": 149, "annotation": null}, {"text": "at", "start": 853, "end": 855, "id": 150, "annotation": null}, {"text": "the", "start": 856, "end": 859, "id": 151, "annotation": null}, {"text": "surface", "start": 860, "end": 867, "id": 152, "annotation": null}, {"text": "and", "start": 868, "end": 871, "id": 153, "annotation": null}, {"text": "the", "start": 872, "end": 875, "id": 154, "annotation": null}, {"text": "formation", "start": 876, "end": 885, "id": 155, "annotation": null}, {"text": "of", "start": 886, "end": 888, "id": 156, "annotation": null}, {"text": "a", "start": 889, "end": 890, "id": 157, "annotation": null}, {"text": "peroxide", "start": 891, "end": 899, "id": 158, "annotation": null}, {"text": "surface", "start": 900, "end": 907, "id": 159, "annotation": null}, {"text": "species", "start": 908, "end": 915, "id": 160, "annotation": null}, {"text": "for", "start": 916, "end": 919, "id": 161, "annotation": null}, {"text": "higher", "start": 920, "end": 926, "id": 162, "annotation": null}, {"text": "preparation", "start": 927, "end": 938, "id": 163, "annotation": null}, {"text": "temperatures", "start": 939, "end": 951, "id": 164, "annotation": null}, {"text": ".", "start": 952, "end": 953, "id": 165, "annotation": null}], [{"text": "The", "start": 954, "end": 957, "id": 166, "annotation": null}, {"text": "results", "start": 958, "end": 965, "id": 167, "annotation": null}, {"text": "are", "start": 966, "end": 969, "id": 168, "annotation": null}, {"text": "discussed", "start": 970, "end": 979, "id": 169, "annotation": null}, {"text": "with", "start": 980, "end": 984, "id": 170, "annotation": null}, {"text": "respect", "start": 985, "end": 992, "id": 171, "annotation": null}, {"text": "to", "start": 993, "end": 995, "id": 172, "annotation": null}, {"text": "the", "start": 996, "end": 999, "id": 173, "annotation": null}, {"text": "use", "start": 1000, "end": 1003, "id": 174, "annotation": null}, {"text": "of", "start": 1004, "end": 1006, "id": 175, "annotation": null}, {"text": "ITO", "start": 1007, "end": 1010, "id": 176, "annotation": null}, {"text": "as", "start": 1011, "end": 1013, "id": 177, "annotation": null}, {"text": "hole", "start": 1014, "end": 1018, "id": 178, "annotation": null}, {"text": "injection", "start": 1019, "end": 1028, "id": 179, "annotation": null}, {"text": "electrode", "start": 1029, "end": 1038, "id": 180, "annotation": null}, {"text": "in", "start": 1039, "end": 1041, "id": 181, "annotation": null}, {"text": "organic", "start": 1042, "end": 1049, "id": 182, "annotation": null}, {"text": "light", "start": 1050, "end": 1055, "id": 183, "annotation": null}, {"text": "emitting", "start": 1056, "end": 1064, "id": 184, "annotation": null}, {"text": "devices", "start": 1065, "end": 1072, "id": 185, "annotation": null}, {"text": ".", "start": 1073, "end": 1074, "id": 186, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "We report a facile and efficient approach to prepare bimetallically doped Ag-M-carbon composites. Only if Ag nanoparticles (NPs) are embedded first into the submicrometer carbon spheres (CSs) can the second metal M (Pd, Pt, and Au) also be introduced into their interior. Especially at not too high concentrations of M-precursor ions (CM-ion), the locations and number density of the resulting NPs mirror those of the Ag NPs in/on the CSs. Therefore, the controllability of the Ag predoping allows control over the location dependent distribution of the NPs in the resulting bimetallic composites. The size and shape of the resulting NPs in the composites are largely controlled by the concentration CM-ion. The different shapes include solid core-shell and hollow NPs, as well as hedgehog-like hollow structures and dendritic aggregates. The nucleation and growth mechanisms, which differ between the different metals M, are discussed to explain the morphologies and the location dependence of the NPs in/on the CSs. \u00a9 2010 American Chemical Society.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "report", "start": 3, "end": 9, "annotation": null}, {"text": "a", "start": 10, "end": 11, "annotation": null}, {"text": "facile", "start": 12, "end": 18, "annotation": null}, {"text": "and", "start": 19, "end": 22, "annotation": null}, {"text": "efficient", "start": 23, "end": 32, "annotation": null}, {"text": "approach", "start": 33, "end": 41, "annotation": null}, {"text": "to", "start": 42, "end": 44, "annotation": null}, {"text": "prepare", "start": 45, "end": 52, "annotation": null}, {"text": "bimetallically", "start": 53, "end": 67, "annotation": null}, {"text": "doped", "start": 68, "end": 73, "annotation": null}, {"text": "Ag-M-carbon", "start": 74, "end": 85, "annotation": null}, {"text": "composites", "start": 86, "end": 96, "annotation": null}, {"text": ".", "start": 96, "end": 97, "annotation": null}], [{"text": "Only", "start": 98, "end": 102, "annotation": null}, {"text": "if", "start": 103, "end": 105, "annotation": null}, {"text": "Ag", "start": 106, "end": 108, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 109, "end": 122, "annotation": null}, {"text": "(", "start": 123, "end": 124, "annotation": null}, {"text": "NPs", "start": 124, "end": 127, "annotation": "DOPANT"}, {"text": ")", "start": 127, "end": 128, "annotation": null}, {"text": "are", "start": 129, "end": 132, "annotation": null}, {"text": "embedded", "start": 133, "end": 141, "annotation": null}, {"text": "first", "start": 142, "end": 147, "annotation": null}, {"text": "into", "start": 148, "end": 152, "annotation": null}, {"text": "the", "start": 153, "end": 156, "annotation": null}, {"text": "submicrometer", "start": 157, "end": 170, "annotation": null}, {"text": "carbon", "start": 171, "end": 177, "annotation": "BASEMAT"}, {"text": "spheres", "start": 178, "end": 185, "annotation": "BASEMAT"}, {"text": "(", "start": 186, "end": 187, "annotation": null}, {"text": "CSs", "start": 187, "end": 190, "annotation": "BASEMAT"}, {"text": ")", "start": 190, "end": 191, "annotation": null}, {"text": "can", "start": 192, "end": 195, "annotation": null}, {"text": "the", "start": 196, "end": 199, "annotation": null}, {"text": "second", "start": 200, "end": 206, "annotation": null}, {"text": "metal", "start": 207, "end": 212, "annotation": null}, {"text": "M", "start": 213, "end": 214, "annotation": "DOPANT"}, {"text": "(", "start": 215, "end": 216, "annotation": null}, {"text": "Pd", "start": 216, "end": 218, "annotation": "DOPANT"}, {"text": ",", "start": 218, "end": 219, "annotation": null}, {"text": "Pt", "start": 220, "end": 222, "annotation": "DOPANT"}, {"text": ",", "start": 222, "end": 223, "annotation": null}, {"text": "and", "start": 224, "end": 227, "annotation": null}, {"text": "Au", "start": 228, "end": 230, "annotation": "DOPANT"}, {"text": ")", "start": 230, "end": 231, "annotation": null}, {"text": "also", "start": 232, "end": 236, "annotation": null}, {"text": "be", "start": 237, "end": 239, "annotation": null}, {"text": "introduced", "start": 240, "end": 250, "annotation": null}, {"text": "into", "start": 251, "end": 255, "annotation": null}, {"text": "their", "start": 256, "end": 261, "annotation": null}, {"text": "interior", "start": 262, "end": 270, "annotation": null}, {"text": ".", "start": 270, "end": 271, "annotation": null}], [{"text": "Especially", "start": 272, "end": 282, "annotation": null}, {"text": "at", "start": 283, "end": 285, "annotation": null}, {"text": "not", "start": 286, "end": 289, "annotation": null}, {"text": "too", "start": 290, "end": 293, "annotation": null}, {"text": "high", "start": 294, "end": 298, "annotation": null}, {"text": "concentrations", "start": 299, "end": 313, "annotation": null}, {"text": "of", "start": 314, "end": 316, "annotation": null}, {"text": "M-precursor", "start": 317, "end": 328, "annotation": "DOPANT"}, {"text": "ions", "start": 329, "end": 333, "annotation": null}, {"text": "(", "start": 334, "end": 335, "annotation": null}, {"text": "CM", "start": 335, "end": 337, "annotation": "DOPANT"}, {"text": "-", "start": 337, "end": 338, "annotation": null}, {"text": "ion", "start": 338, "end": 341, "annotation": null}, {"text": ")", "start": 341, "end": 342, "annotation": null}, {"text": ",", "start": 342, "end": 343, "annotation": null}, {"text": "the", "start": 344, "end": 347, "annotation": null}, {"text": "locations", "start": 348, "end": 357, "annotation": null}, {"text": "and", "start": 358, "end": 361, "annotation": null}, {"text": "number", "start": 362, "end": 368, "annotation": null}, {"text": "density", "start": 369, "end": 376, "annotation": null}, {"text": "of", "start": 377, "end": 379, "annotation": null}, {"text": "the", "start": 380, "end": 383, "annotation": null}, {"text": "resulting", "start": 384, "end": 393, "annotation": null}, {"text": "NPs", "start": 394, "end": 397, "annotation": null}, {"text": "mirror", "start": 398, "end": 404, "annotation": null}, {"text": "those", "start": 405, "end": 410, "annotation": null}, {"text": "of", "start": 411, "end": 413, "annotation": null}, {"text": "the", "start": 414, "end": 417, "annotation": null}, {"text": "Ag", "start": 418, "end": 420, "annotation": "DOPANT"}, {"text": "NPs", "start": 421, "end": 424, "annotation": "DOPANT"}, {"text": "in", "start": 425, "end": 427, "annotation": null}, {"text": "/", "start": 427, "end": 428, "annotation": null}, {"text": "on", "start": 428, "end": 430, "annotation": null}, {"text": "the", "start": 431, "end": 434, "annotation": null}, {"text": "CSs", "start": 435, "end": 438, "annotation": "BASEMAT"}, {"text": ".", "start": 438, "end": 439, "annotation": null}], [{"text": "Therefore", "start": 440, "end": 449, "annotation": null}, {"text": ",", "start": 449, "end": 450, "annotation": null}, {"text": "the", "start": 451, "end": 454, "annotation": null}, {"text": "controllability", "start": 455, "end": 470, "annotation": null}, {"text": "of", "start": 471, "end": 473, "annotation": null}, {"text": "the", "start": 474, "end": 477, "annotation": null}, {"text": "Ag", "start": 478, "end": 480, "annotation": "DOPANT"}, {"text": "predoping", "start": 481, "end": 490, "annotation": null}, {"text": "allows", "start": 491, "end": 497, "annotation": null}, {"text": "control", "start": 498, "end": 505, "annotation": null}, {"text": "over", "start": 506, "end": 510, "annotation": null}, {"text": "the", "start": 511, "end": 514, "annotation": null}, {"text": "location", "start": 515, "end": 523, "annotation": null}, {"text": "dependent", "start": 524, "end": 533, "annotation": null}, {"text": "distribution", "start": 534, "end": 546, "annotation": null}, {"text": "of", "start": 547, "end": 549, "annotation": null}, {"text": "the", "start": 550, "end": 553, "annotation": null}, {"text": "NPs", "start": 554, "end": 557, "annotation": "DOPANT"}, {"text": "in", "start": 558, "end": 560, "annotation": null}, {"text": "the", "start": 561, "end": 564, "annotation": null}, {"text": "resulting", "start": 565, "end": 574, "annotation": null}, {"text": "bimetallic", "start": 575, "end": 585, "annotation": null}, {"text": "composites", "start": 586, "end": 596, "annotation": null}, {"text": ".", "start": 596, "end": 597, "annotation": null}], [{"text": "The", "start": 598, "end": 601, "annotation": null}, {"text": "size", "start": 602, "end": 606, "annotation": null}, {"text": "and", "start": 607, "end": 610, "annotation": null}, {"text": "shape", "start": 611, "end": 616, "annotation": null}, {"text": "of", "start": 617, "end": 619, "annotation": null}, {"text": "the", "start": 620, "end": 623, "annotation": null}, {"text": "resulting", "start": 624, "end": 633, "annotation": null}, {"text": "NPs", "start": 634, "end": 637, "annotation": "DOPANT"}, {"text": "in", "start": 638, "end": 640, "annotation": null}, {"text": "the", "start": 641, "end": 644, "annotation": null}, {"text": "composites", "start": 645, "end": 655, "annotation": null}, {"text": "are", "start": 656, "end": 659, "annotation": null}, {"text": "largely", "start": 660, "end": 667, "annotation": null}, {"text": "controlled", "start": 668, "end": 678, "annotation": null}, {"text": "by", "start": 679, "end": 681, "annotation": null}, {"text": "the", "start": 682, "end": 685, "annotation": null}, {"text": "concentration", "start": 686, "end": 699, "annotation": null}, {"text": "CM", "start": 700, "end": 702, "annotation": "DOPANT"}, {"text": "-", "start": 702, "end": 703, "annotation": null}, {"text": "ion", "start": 703, "end": 706, "annotation": null}, {"text": ".", "start": 706, "end": 707, "annotation": null}], [{"text": "The", "start": 708, "end": 711, "annotation": null}, {"text": "different", "start": 712, "end": 721, "annotation": null}, {"text": "shapes", "start": 722, "end": 728, "annotation": null}, {"text": "include", "start": 729, "end": 736, "annotation": null}, {"text": "solid", "start": 737, "end": 742, "annotation": null}, {"text": "core", "start": 743, "end": 747, "annotation": null}, {"text": "-", "start": 747, "end": 748, "annotation": null}, {"text": "shell", "start": 748, "end": 753, "annotation": null}, {"text": "and", "start": 754, "end": 757, "annotation": null}, {"text": "hollow", "start": 758, "end": 764, "annotation": null}, {"text": "NPs", "start": 765, "end": 768, "annotation": null}, {"text": ",", "start": 768, "end": 769, "annotation": null}, {"text": "as", "start": 770, "end": 772, "annotation": null}, {"text": "well", "start": 773, "end": 777, "annotation": null}, {"text": "as", "start": 778, "end": 780, "annotation": null}, {"text": "hedgehog", "start": 781, "end": 789, "annotation": null}, {"text": "-", "start": 789, "end": 790, "annotation": null}, {"text": "like", "start": 790, "end": 794, "annotation": null}, {"text": "hollow", "start": 795, "end": 801, "annotation": null}, {"text": "structures", "start": 802, "end": 812, "annotation": null}, {"text": "and", "start": 813, "end": 816, "annotation": null}, {"text": "dendritic", "start": 817, "end": 826, "annotation": null}, {"text": "aggregates", "start": 827, "end": 837, "annotation": null}, {"text": ".", "start": 837, "end": 838, "annotation": null}], [{"text": "The", "start": 839, "end": 842, "annotation": null}, {"text": "nucleation", "start": 843, "end": 853, "annotation": null}, {"text": "and", "start": 854, "end": 857, "annotation": null}, {"text": "growth", "start": 858, "end": 864, "annotation": null}, {"text": "mechanisms", "start": 865, "end": 875, "annotation": null}, {"text": ",", "start": 875, "end": 876, "annotation": null}, {"text": "which", "start": 877, "end": 882, "annotation": null}, {"text": "differ", "start": 883, "end": 889, "annotation": null}, {"text": "between", "start": 890, "end": 897, "annotation": null}, {"text": "the", "start": 898, "end": 901, "annotation": null}, {"text": "different", "start": 902, "end": 911, "annotation": null}, {"text": "metals", "start": 912, "end": 918, "annotation": null}, {"text": "M", "start": 919, "end": 920, "annotation": "DOPANT"}, {"text": ",", "start": 920, "end": 921, "annotation": null}, {"text": "are", "start": 922, "end": 925, "annotation": null}, {"text": "discussed", "start": 926, "end": 935, "annotation": null}, {"text": "to", "start": 936, "end": 938, "annotation": null}, {"text": "explain", "start": 939, "end": 946, "annotation": null}, {"text": "the", "start": 947, "end": 950, "annotation": null}, {"text": "morphologies", "start": 951, "end": 963, "annotation": null}, {"text": "and", "start": 964, "end": 967, "annotation": null}, {"text": "the", "start": 968, "end": 971, "annotation": null}, {"text": "location", "start": 972, "end": 980, "annotation": null}, {"text": "dependence", "start": 981, "end": 991, "annotation": null}, {"text": "of", "start": 992, "end": 994, "annotation": null}, {"text": "the", "start": 995, "end": 998, "annotation": null}, {"text": "NPs", "start": 999, "end": 1002, "annotation": "DOPANT"}, {"text": "in", "start": 1003, "end": 1005, "annotation": null}, {"text": "/", "start": 1005, "end": 1006, "annotation": null}, {"text": "on", "start": 1006, "end": 1008, "annotation": null}, {"text": "the", "start": 1009, "end": 1012, "annotation": null}, {"text": "CSs", "start": 1013, "end": 1016, "annotation": "BASEMAT"}, {"text": ".", "start": 1016, "end": 1017, "annotation": null}]]} -{"text": "The bound state of an isotropic muonium atom has been detected in both n- and p-type InSb using a high-field \u03bc SR technique. The hyperfine constant obtained for this center (A=2464\u00b11MHz)is characteristic of deep-levelMu0 centers at tetrahedral interstitial sites in other cubic semiconductors, which typically ionize above 300K . In contrast, theMu0 center in InSb disappears above about 30K , which is more characteristic of ionization of a shallow-level impurity. The charge-state dynamics of Mu in InSb is discussed in terms of a deep trap or recombination center, rather than as electron ionization.", "meta": {"doi": "10.1016/j.physb.2005.11.108"}, "_input_hash": -1518305495, "_task_hash": -146127621, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "bound", "start": 4, "end": 9, "id": 1, "annotation": null}, {"text": "state", "start": 10, "end": 15, "id": 2, "annotation": null}, {"text": "of", "start": 16, "end": 18, "id": 3, "annotation": null}, {"text": "an", "start": 19, "end": 21, "id": 4, "annotation": null}, {"text": "isotropic", "start": 22, "end": 31, "id": 5, "annotation": null}, {"text": "muonium", "start": 32, "end": 39, "id": 6, "annotation": null}, {"text": "atom", "start": 40, "end": 44, "id": 7, "annotation": null}, {"text": "has", "start": 45, "end": 48, "id": 8, "annotation": null}, {"text": "been", "start": 49, "end": 53, "id": 9, "annotation": null}, {"text": "detected", "start": 54, "end": 62, "id": 10, "annotation": null}, {"text": "in", "start": 63, "end": 65, "id": 11, "annotation": null}, {"text": "both", "start": 66, "end": 70, "id": 12, "annotation": null}, {"text": "n-", "start": 71, "end": 73, "id": 13, "annotation": "DOPANT"}, {"text": "and", "start": 74, "end": 77, "id": 14, "annotation": null}, {"text": "p", "start": 78, "end": 79, "id": 15, "annotation": null}, {"text": "-", "start": 80, "end": 81, "id": 16, "annotation": null}, {"text": "type", "start": 82, "end": 86, "id": 17, "annotation": "DOPANT"}, {"text": "InSb", "start": 87, "end": 91, "id": 18, "annotation": "BASEMAT"}, {"text": "using", "start": 92, "end": 97, "id": 19, "annotation": null}, {"text": "a", "start": 98, "end": 99, "id": 20, "annotation": null}, {"text": "high", "start": 100, "end": 104, "id": 21, "annotation": null}, {"text": "-", "start": 105, "end": 106, "id": 22, "annotation": null}, {"text": "field", "start": 107, "end": 112, "id": 23, "annotation": null}, {"text": "\u03bc", "start": 113, "end": 114, "id": 24, "annotation": null}, {"text": "SR", "start": 115, "end": 117, "id": 25, "annotation": null}, {"text": "technique", "start": 118, "end": 127, "id": 26, "annotation": null}, {"text": ".", "start": 128, "end": 129, "id": 27, "annotation": null}], [{"text": "The", "start": 130, "end": 133, "id": 28, "annotation": null}, {"text": "hyperfine", "start": 134, "end": 143, "id": 29, "annotation": null}, {"text": "constant", "start": 144, "end": 152, "id": 30, "annotation": null}, {"text": "obtained", "start": 153, "end": 161, "id": 31, "annotation": null}, {"text": "for", "start": 162, "end": 165, "id": 32, "annotation": null}, {"text": "this", "start": 166, "end": 170, "id": 33, "annotation": null}, {"text": "center", "start": 171, "end": 177, "id": 34, "annotation": null}, {"text": "(", "start": 178, "end": 179, "id": 35, "annotation": null}, {"text": "A=2464\u00b11MHz)is", "start": 180, "end": 194, "id": 36, "annotation": null}, {"text": "characteristic", "start": 195, "end": 209, "id": 37, "annotation": null}, {"text": "of", "start": 210, "end": 212, "id": 38, "annotation": null}, {"text": "deep", "start": 213, "end": 217, "id": 39, "annotation": null}, {"text": "-", "start": 218, "end": 219, "id": 40, "annotation": null}, {"text": "levelMu0", "start": 220, "end": 228, "id": 41, "annotation": null}, {"text": "centers", "start": 229, "end": 236, "id": 42, "annotation": null}, {"text": "at", "start": 237, "end": 239, "id": 43, "annotation": null}, {"text": "tetrahedral", "start": 240, "end": 251, "id": 44, "annotation": null}, {"text": "interstitial", "start": 252, "end": 264, "id": 45, "annotation": null}, {"text": "sites", "start": 265, "end": 270, "id": 46, "annotation": null}, {"text": "in", "start": 271, "end": 273, "id": 47, "annotation": null}, {"text": "other", "start": 274, "end": 279, "id": 48, "annotation": null}, {"text": "cubic", "start": 280, "end": 285, "id": 49, "annotation": null}, {"text": "semiconductors", "start": 286, "end": 300, "id": 50, "annotation": null}, {"text": ",", "start": 301, "end": 302, "id": 51, "annotation": null}, {"text": "which", "start": 303, "end": 308, "id": 52, "annotation": null}, {"text": "typically", "start": 309, "end": 318, "id": 53, "annotation": null}, {"text": "ionize", "start": 319, "end": 325, "id": 54, "annotation": null}, {"text": "above", "start": 326, "end": 331, "id": 55, "annotation": null}, {"text": "300", "start": 332, "end": 335, "id": 56, "annotation": null}, {"text": "K", "start": 336, "end": 337, "id": 57, "annotation": null}, {"text": ".", "start": 338, "end": 339, "id": 58, "annotation": null}], [{"text": "In", "start": 340, "end": 342, "id": 59, "annotation": null}, {"text": "contrast", "start": 343, "end": 351, "id": 60, "annotation": null}, {"text": ",", "start": 352, "end": 353, "id": 61, "annotation": null}, {"text": "theMu0", "start": 354, "end": 360, "id": 62, "annotation": null}, {"text": "center", "start": 361, "end": 367, "id": 63, "annotation": null}, {"text": "in", "start": 368, "end": 370, "id": 64, "annotation": null}, {"text": "InSb", "start": 371, "end": 375, "id": 65, "annotation": null}, {"text": "disappears", "start": 376, "end": 386, "id": 66, "annotation": null}, {"text": "above", "start": 387, "end": 392, "id": 67, "annotation": null}, {"text": "about", "start": 393, "end": 398, "id": 68, "annotation": null}, {"text": "30", "start": 399, "end": 401, "id": 69, "annotation": null}, {"text": "K", "start": 402, "end": 403, "id": 70, "annotation": null}, {"text": ",", "start": 404, "end": 405, "id": 71, "annotation": null}, {"text": "which", "start": 406, "end": 411, "id": 72, "annotation": null}, {"text": "is", "start": 412, "end": 414, "id": 73, "annotation": null}, {"text": "more", "start": 415, "end": 419, "id": 74, "annotation": null}, {"text": "characteristic", "start": 420, "end": 434, "id": 75, "annotation": null}, {"text": "of", "start": 435, "end": 437, "id": 76, "annotation": null}, {"text": "ionization", "start": 438, "end": 448, "id": 77, "annotation": null}, {"text": "of", "start": 449, "end": 451, "id": 78, "annotation": null}, {"text": "a", "start": 452, "end": 453, "id": 79, "annotation": null}, {"text": "shallow", "start": 454, "end": 461, "id": 80, "annotation": null}, {"text": "-", "start": 462, "end": 463, "id": 81, "annotation": null}, {"text": "level", "start": 464, "end": 469, "id": 82, "annotation": null}, {"text": "impurity", "start": 470, "end": 478, "id": 83, "annotation": null}, {"text": ".", "start": 479, "end": 480, "id": 84, "annotation": null}], [{"text": "The", "start": 481, "end": 484, "id": 85, "annotation": null}, {"text": "charge", "start": 485, "end": 491, "id": 86, "annotation": null}, {"text": "-", "start": 492, "end": 493, "id": 87, "annotation": null}, {"text": "state", "start": 494, "end": 499, "id": 88, "annotation": null}, {"text": "dynamics", "start": 500, "end": 508, "id": 89, "annotation": null}, {"text": "of", "start": 509, "end": 511, "id": 90, "annotation": null}, {"text": "Mu", "start": 512, "end": 514, "id": 91, "annotation": null}, {"text": "in", "start": 515, "end": 517, "id": 92, "annotation": null}, {"text": "InSb", "start": 518, "end": 522, "id": 93, "annotation": null}, {"text": "is", "start": 523, "end": 525, "id": 94, "annotation": null}, {"text": "discussed", "start": 526, "end": 535, "id": 95, "annotation": null}, {"text": "in", "start": 536, "end": 538, "id": 96, "annotation": null}, {"text": "terms", "start": 539, "end": 544, "id": 97, "annotation": null}, {"text": "of", "start": 545, "end": 547, "id": 98, "annotation": null}, {"text": "a", "start": 548, "end": 549, "id": 99, "annotation": null}, {"text": "deep", "start": 550, "end": 554, "id": 100, "annotation": null}, {"text": "trap", "start": 555, "end": 559, "id": 101, "annotation": null}, {"text": "or", "start": 560, "end": 562, "id": 102, "annotation": null}, {"text": "recombination", "start": 563, "end": 576, "id": 103, "annotation": null}, {"text": "center", "start": 577, "end": 583, "id": 104, "annotation": null}, {"text": ",", "start": 584, "end": 585, "id": 105, "annotation": null}, {"text": "rather", "start": 586, "end": 592, "id": 106, "annotation": null}, {"text": "than", "start": 593, "end": 597, "id": 107, "annotation": null}, {"text": "as", "start": 598, "end": 600, "id": 108, "annotation": null}, {"text": "electron", "start": 601, "end": 609, "id": 109, "annotation": null}, {"text": "ionization", "start": 610, "end": 620, "id": 110, "annotation": null}, {"text": ".", "start": 621, "end": 622, "id": 111, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Zinc doped SnO2 films were prepared using a simplified spray technique and the influence of dopant concentration on structural, electrical, optical and surface morphological properties were analysed in detail. XRD results showed that all the films were polycrystalline SnO2 with tetragonal rutile structure. The transition of preferential orientation from (211) to (101) plane was found to take place beyond 20at.% of Zn doping level. Hall measurements showed that the films exhibited p-type conductivity when the doping concentration was increased beyond 20at.%. The average transmittance of the SnO2:Zn films were in the range of 80\u201390% in the visible region. The enhancement in the PL emission can be correlated with the decrease in the grain size observed from the SEM images and the sharpening of defect related peaks supplemented the formation of trapped states (introduction of dangling bonds) at higher Zn concentrations.", "meta": {"doi": "10.1016/j.spmi.2013.05.006"}, "_input_hash": 1559097514, "_task_hash": -493355158, "tokens": [[{"text": "Zinc", "start": 0, "end": 4, "id": 0, "annotation": "DOPANT"}, {"text": "doped", "start": 5, "end": 10, "id": 1, "annotation": null}, {"text": "SnO2", "start": 11, "end": 15, "id": 2, "annotation": "BASEMAT"}, {"text": "films", "start": 16, "end": 21, "id": 3, "annotation": null}, {"text": "were", "start": 22, "end": 26, "id": 4, "annotation": null}, {"text": "prepared", "start": 27, "end": 35, "id": 5, "annotation": null}, {"text": "using", "start": 36, "end": 41, "id": 6, "annotation": null}, {"text": "a", "start": 42, "end": 43, "id": 7, "annotation": null}, {"text": "simplified", "start": 44, "end": 54, "id": 8, "annotation": null}, {"text": "spray", "start": 55, "end": 60, "id": 9, "annotation": null}, {"text": "technique", "start": 61, "end": 70, "id": 10, "annotation": null}, {"text": "and", "start": 71, "end": 74, "id": 11, "annotation": null}, {"text": "the", "start": 75, "end": 78, "id": 12, "annotation": null}, {"text": "influence", "start": 79, "end": 88, "id": 13, "annotation": null}, {"text": "of", "start": 89, "end": 91, "id": 14, "annotation": null}, {"text": "dopant", "start": 92, "end": 98, "id": 15, "annotation": null}, {"text": "concentration", "start": 99, "end": 112, "id": 16, "annotation": null}, {"text": "on", "start": 113, "end": 115, "id": 17, "annotation": null}, {"text": "structural", "start": 116, "end": 126, "id": 18, "annotation": null}, {"text": ",", "start": 127, "end": 128, "id": 19, "annotation": null}, {"text": "electrical", "start": 129, "end": 139, "id": 20, "annotation": null}, {"text": ",", "start": 140, "end": 141, "id": 21, "annotation": null}, {"text": "optical", "start": 142, "end": 149, "id": 22, "annotation": null}, {"text": "and", "start": 150, "end": 153, "id": 23, "annotation": null}, {"text": "surface", "start": 154, "end": 161, "id": 24, "annotation": null}, {"text": "morphological", "start": 162, "end": 175, "id": 25, "annotation": null}, {"text": "properties", "start": 176, "end": 186, "id": 26, "annotation": null}, {"text": "were", "start": 187, "end": 191, "id": 27, "annotation": null}, {"text": "analysed", "start": 192, "end": 200, "id": 28, "annotation": null}, {"text": "in", "start": 201, "end": 203, "id": 29, "annotation": null}, {"text": "detail", "start": 204, "end": 210, "id": 30, "annotation": null}, {"text": ".", "start": 211, "end": 212, "id": 31, "annotation": null}], [{"text": "XRD", "start": 213, "end": 216, "id": 32, "annotation": null}, {"text": "results", "start": 217, "end": 224, "id": 33, "annotation": null}, {"text": "showed", "start": 225, "end": 231, "id": 34, "annotation": null}, {"text": "that", "start": 232, "end": 236, "id": 35, "annotation": null}, {"text": "all", "start": 237, "end": 240, "id": 36, "annotation": null}, {"text": "the", "start": 241, "end": 244, "id": 37, "annotation": null}, {"text": "films", "start": 245, "end": 250, "id": 38, "annotation": null}, {"text": "were", "start": 251, "end": 255, "id": 39, "annotation": null}, {"text": "polycrystalline", "start": 256, "end": 271, "id": 40, "annotation": null}, {"text": "SnO2", "start": 272, "end": 276, "id": 41, "annotation": null}, {"text": "with", "start": 277, "end": 281, "id": 42, "annotation": null}, {"text": "tetragonal", "start": 282, "end": 292, "id": 43, "annotation": null}, {"text": "rutile", "start": 293, "end": 299, "id": 44, "annotation": null}, {"text": "structure", "start": 300, "end": 309, "id": 45, "annotation": null}, {"text": ".", "start": 310, "end": 311, "id": 46, "annotation": null}], [{"text": "The", "start": 312, "end": 315, "id": 47, "annotation": null}, {"text": "transition", "start": 316, "end": 326, "id": 48, "annotation": null}, {"text": "of", "start": 327, "end": 329, "id": 49, "annotation": null}, {"text": "preferential", "start": 330, "end": 342, "id": 50, "annotation": null}, {"text": "orientation", "start": 343, "end": 354, "id": 51, "annotation": null}, {"text": "from", "start": 355, "end": 359, "id": 52, "annotation": null}, {"text": "(", "start": 360, "end": 361, "id": 53, "annotation": null}, {"text": "211", "start": 362, "end": 365, "id": 54, "annotation": null}, {"text": ")", "start": 366, "end": 367, "id": 55, "annotation": null}, {"text": "to", "start": 368, "end": 370, "id": 56, "annotation": null}, {"text": "(", "start": 371, "end": 372, "id": 57, "annotation": null}, {"text": "101", "start": 373, "end": 376, "id": 58, "annotation": null}, {"text": ")", "start": 377, "end": 378, "id": 59, "annotation": null}, {"text": "plane", "start": 379, "end": 384, "id": 60, "annotation": null}, {"text": "was", "start": 385, "end": 388, "id": 61, "annotation": null}, {"text": "found", "start": 389, "end": 394, "id": 62, "annotation": null}, {"text": "to", "start": 395, "end": 397, "id": 63, "annotation": null}, {"text": "take", "start": 398, "end": 402, "id": 64, "annotation": null}, {"text": "place", "start": 403, "end": 408, "id": 65, "annotation": null}, {"text": "beyond", "start": 409, "end": 415, "id": 66, "annotation": null}, {"text": "20at.%", "start": 416, "end": 422, "id": 67, "annotation": "DOPMODQ"}, {"text": "of", "start": 423, "end": 425, "id": 68, "annotation": null}, {"text": "Zn", "start": 426, "end": 428, "id": 69, "annotation": "DOPANT"}, {"text": "doping", "start": 429, "end": 435, "id": 70, "annotation": null}, {"text": "level", "start": 436, "end": 441, "id": 71, "annotation": null}, {"text": ".", "start": 442, "end": 443, "id": 72, "annotation": null}], [{"text": "Hall", "start": 444, "end": 448, "id": 73, "annotation": null}, {"text": "measurements", "start": 449, "end": 461, "id": 74, "annotation": null}, {"text": "showed", "start": 462, "end": 468, "id": 75, "annotation": null}, {"text": "that", "start": 469, "end": 473, "id": 76, "annotation": null}, {"text": "the", "start": 474, "end": 477, "id": 77, "annotation": null}, {"text": "films", "start": 478, "end": 483, "id": 78, "annotation": "BASEMAT"}, {"text": "exhibited", "start": 484, "end": 493, "id": 79, "annotation": null}, {"text": "p", "start": 494, "end": 495, "id": 80, "annotation": "DOPANT"}, {"text": "-", "start": 496, "end": 497, "id": 81, "annotation": null}, {"text": "type", "start": 498, "end": 502, "id": 82, "annotation": "DOPANT"}, {"text": "conductivity", "start": 503, "end": 515, "id": 83, "annotation": null}, {"text": "when", "start": 516, "end": 520, "id": 84, "annotation": null}, {"text": "the", "start": 521, "end": 524, "id": 85, "annotation": null}, {"text": "doping", "start": 525, "end": 531, "id": 86, "annotation": null}, {"text": "concentration", "start": 532, "end": 545, "id": 87, "annotation": null}, {"text": "was", "start": 546, "end": 549, "id": 88, "annotation": null}, {"text": "increased", "start": 550, "end": 559, "id": 89, "annotation": null}, {"text": "beyond", "start": 560, "end": 566, "id": 90, "annotation": "DOPMODQ"}, {"text": "20at.%", "start": 567, "end": 573, "id": 91, "annotation": "DOPMODQ"}, {"text": ".", "start": 574, "end": 575, "id": 92, "annotation": null}], [{"text": "The", "start": 576, "end": 579, "id": 93, "annotation": null}, {"text": "average", "start": 580, "end": 587, "id": 94, "annotation": null}, {"text": "transmittance", "start": 588, "end": 601, "id": 95, "annotation": null}, {"text": "of", "start": 602, "end": 604, "id": 96, "annotation": null}, {"text": "the", "start": 605, "end": 608, "id": 97, "annotation": null}, {"text": "SnO2", "start": 609, "end": 613, "id": 98, "annotation": "BASEMAT"}, {"text": ":", "start": 614, "end": 615, "id": 99, "annotation": null}, {"text": "Zn", "start": 616, "end": 618, "id": 100, "annotation": "DOPANT"}, {"text": "films", "start": 619, "end": 624, "id": 101, "annotation": null}, {"text": "were", "start": 625, "end": 629, "id": 102, "annotation": null}, {"text": "in", "start": 630, "end": 632, "id": 103, "annotation": null}, {"text": "the", "start": 633, "end": 636, "id": 104, "annotation": null}, {"text": "range", "start": 637, "end": 642, "id": 105, "annotation": null}, {"text": "of", "start": 643, "end": 645, "id": 106, "annotation": null}, {"text": "80\u201390", "start": 646, "end": 651, "id": 107, "annotation": null}, {"text": "%", "start": 652, "end": 653, "id": 108, "annotation": null}, {"text": "in", "start": 654, "end": 656, "id": 109, "annotation": null}, {"text": "the", "start": 657, "end": 660, "id": 110, "annotation": null}, {"text": "visible", "start": 661, "end": 668, "id": 111, "annotation": null}, {"text": "region", "start": 669, "end": 675, "id": 112, "annotation": null}, {"text": ".", "start": 676, "end": 677, "id": 113, "annotation": null}], [{"text": "The", "start": 678, "end": 681, "id": 114, "annotation": null}, {"text": "enhancement", "start": 682, "end": 693, "id": 115, "annotation": null}, {"text": "in", "start": 694, "end": 696, "id": 116, "annotation": null}, {"text": "the", "start": 697, "end": 700, "id": 117, "annotation": null}, {"text": "PL", "start": 701, "end": 703, "id": 118, "annotation": null}, {"text": "emission", "start": 704, "end": 712, "id": 119, "annotation": null}, {"text": "can", "start": 713, "end": 716, "id": 120, "annotation": null}, {"text": "be", "start": 717, "end": 719, "id": 121, "annotation": null}, {"text": "correlated", "start": 720, "end": 730, "id": 122, "annotation": null}, {"text": "with", "start": 731, "end": 735, "id": 123, "annotation": null}, {"text": "the", "start": 736, "end": 739, "id": 124, "annotation": null}, {"text": "decrease", "start": 740, "end": 748, "id": 125, "annotation": null}, {"text": "in", "start": 749, "end": 751, "id": 126, "annotation": null}, {"text": "the", "start": 752, "end": 755, "id": 127, "annotation": null}, {"text": "grain", "start": 756, "end": 761, "id": 128, "annotation": null}, {"text": "size", "start": 762, "end": 766, "id": 129, "annotation": null}, {"text": "observed", "start": 767, "end": 775, "id": 130, "annotation": null}, {"text": "from", "start": 776, "end": 780, "id": 131, "annotation": null}, {"text": "the", "start": 781, "end": 784, "id": 132, "annotation": null}, {"text": "SEM", "start": 785, "end": 788, "id": 133, "annotation": null}, {"text": "images", "start": 789, "end": 795, "id": 134, "annotation": null}, {"text": "and", "start": 796, "end": 799, "id": 135, "annotation": null}, {"text": "the", "start": 800, "end": 803, "id": 136, "annotation": null}, {"text": "sharpening", "start": 804, "end": 814, "id": 137, "annotation": null}, {"text": "of", "start": 815, "end": 817, "id": 138, "annotation": null}, {"text": "defect", "start": 818, "end": 824, "id": 139, "annotation": null}, {"text": "related", "start": 825, "end": 832, "id": 140, "annotation": null}, {"text": "peaks", "start": 833, "end": 838, "id": 141, "annotation": null}, {"text": "supplemented", "start": 839, "end": 851, "id": 142, "annotation": null}, {"text": "the", "start": 852, "end": 855, "id": 143, "annotation": null}, {"text": "formation", "start": 856, "end": 865, "id": 144, "annotation": null}, {"text": "of", "start": 866, "end": 868, "id": 145, "annotation": null}, {"text": "trapped", "start": 869, "end": 876, "id": 146, "annotation": null}, {"text": "states", "start": 877, "end": 883, "id": 147, "annotation": null}, {"text": "(", "start": 884, "end": 885, "id": 148, "annotation": null}, {"text": "introduction", "start": 886, "end": 898, "id": 149, "annotation": null}, {"text": "of", "start": 899, "end": 901, "id": 150, "annotation": null}, {"text": "dangling", "start": 902, "end": 910, "id": 151, "annotation": null}, {"text": "bonds", "start": 911, "end": 916, "id": 152, "annotation": null}, {"text": ")", "start": 917, "end": 918, "id": 153, "annotation": null}, {"text": "at", "start": 919, "end": 921, "id": 154, "annotation": null}, {"text": "higher", "start": 922, "end": 928, "id": 155, "annotation": null}, {"text": "Zn", "start": 929, "end": 931, "id": 156, "annotation": null}, {"text": "concentrations", "start": 932, "end": 946, "id": 157, "annotation": null}, {"text": ".", "start": 947, "end": 948, "id": 158, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt3", "text": "Metal-doped magnesium silicides are promising thermoelectric materials for waste heat recovery application at 500\u2013800K because of their low density, large natural availability, non-toxicity, good thermal stability, and transport properties. Reaction kinetics of metal-doped magnesium silicides, Mg2SiXm (X=Ti, Nb, Mn, and Co; m=0.02, 0.04, and 0.08mol) were investigated in this study. A simple and rapid synthesis of Mg2SiXm samples was carried out using pelletizing, and sintering method at 773\u2013823K for 300s. The effect of metal doping on the lattice constants of Mg2SiXm samples was examined using X-ray diffraction technique. Differential thermal analysis heat flow experiments were conducted on (2Mg+Si+mX) sample mixtures to study the solid-state reaction kinetics of Mg2SiXm alloys formation at different scan rates of 0.08, 0.16, 0.25, 0.33Ks\u22121. Activation energies for the formation reaction of Mg2Si were determined using Ozawa, and Kissinger\u2013Akahira\u2013Sunrose equations. A 3-D diffusion-controlled reaction mechanism was proposed based on Coats\u2013Redfern (CR) model. The effect of concentration of the metal-dopants on the formation activation energies of Mg2SiXm was investigated using the CR equation plots.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Metal", "start": 0, "end": 5, "annotation": "DOPANT"}, {"text": "-", "start": 5, "end": 6, "annotation": null}, {"text": "doped", "start": 6, "end": 11, "annotation": null}, {"text": "magnesium", "start": 12, "end": 21, "annotation": "BASEMAT"}, {"text": "silicides", "start": 22, "end": 31, "annotation": "BASEMAT"}, {"text": "are", "start": 32, "end": 35, "annotation": null}, {"text": "promising", "start": 36, "end": 45, "annotation": null}, {"text": "thermoelectric", "start": 46, "end": 60, "annotation": null}, {"text": "materials", "start": 61, "end": 70, "annotation": null}, {"text": "for", "start": 71, "end": 74, "annotation": null}, {"text": "waste", "start": 75, "end": 80, "annotation": null}, {"text": "heat", "start": 81, "end": 85, "annotation": null}, {"text": "recovery", "start": 86, "end": 94, "annotation": null}, {"text": "application", "start": 95, "end": 106, "annotation": null}, {"text": "at", "start": 107, "end": 109, "annotation": null}, {"text": "500", "start": 110, "end": 113, "annotation": null}, {"text": "\u2013", "start": 113, "end": 114, "annotation": null}, {"text": "800", "start": 114, "end": 117, "annotation": null}, {"text": "K", "start": 117, "end": 118, "annotation": null}, {"text": "because", "start": 119, "end": 126, "annotation": null}, {"text": "of", "start": 127, "end": 129, "annotation": null}, {"text": "their", "start": 130, "end": 135, "annotation": null}, {"text": "low", "start": 136, "end": 139, "annotation": null}, {"text": "density", "start": 140, "end": 147, "annotation": null}, {"text": ",", "start": 147, "end": 148, "annotation": null}, {"text": "large", "start": 149, "end": 154, "annotation": null}, {"text": "natural", "start": 155, "end": 162, "annotation": null}, {"text": "availability", "start": 163, "end": 175, "annotation": null}, {"text": ",", "start": 175, "end": 176, "annotation": null}, {"text": "non-toxicity", "start": 177, "end": 189, "annotation": null}, {"text": ",", "start": 189, "end": 190, "annotation": null}, {"text": "good", "start": 191, "end": 195, "annotation": null}, {"text": "thermal", "start": 196, "end": 203, "annotation": null}, {"text": "stability", "start": 204, "end": 213, "annotation": null}, {"text": ",", "start": 213, "end": 214, "annotation": null}, {"text": "and", "start": 215, "end": 218, "annotation": null}, {"text": "transport", "start": 219, "end": 228, "annotation": null}, {"text": "properties", "start": 229, "end": 239, "annotation": null}, {"text": ".", "start": 239, "end": 240, "annotation": null}], [{"text": "Reaction", "start": 241, "end": 249, "annotation": null}, {"text": "kinetics", "start": 250, "end": 258, "annotation": null}, {"text": "of", "start": 259, "end": 261, "annotation": null}, {"text": "metal", "start": 262, "end": 267, "annotation": "DOPANT"}, {"text": "-", "start": 267, "end": 268, "annotation": null}, {"text": "doped", "start": 268, "end": 273, "annotation": null}, {"text": "magnesium", "start": 274, "end": 283, "annotation": "BASEMAT"}, {"text": "silicides", "start": 284, "end": 293, "annotation": "BASEMAT"}, {"text": ",", "start": 293, "end": 294, "annotation": null}, {"text": "Mg2SiXm", "start": 295, "end": 302, "annotation": "BASEMAT"}, {"text": "(", "start": 303, "end": 304, "annotation": null}, {"text": "X", "start": 304, "end": 305, "annotation": null}, {"text": "=", "start": 305, "end": 306, "annotation": null}, {"text": "Ti", "start": 306, "end": 308, "annotation": "DOPANT"}, {"text": ",", "start": 308, "end": 309, "annotation": null}, {"text": "Nb", "start": 310, "end": 312, "annotation": "DOPANT"}, {"text": ",", "start": 312, "end": 313, "annotation": null}, {"text": "Mn", "start": 314, "end": 316, "annotation": "DOPANT"}, {"text": ",", "start": 316, "end": 317, "annotation": null}, {"text": "and", "start": 318, "end": 321, "annotation": null}, {"text": "Co", "start": 322, "end": 324, "annotation": "DOPANT"}, {"text": ";", "start": 324, "end": 325, "annotation": null}, {"text": "m", "start": 326, "end": 327, "annotation": null}, {"text": "=", "start": 327, "end": 328, "annotation": null}, {"text": "0.02", "start": 328, "end": 332, "annotation": "DOPMODQ"}, {"text": ",", "start": 332, "end": 333, "annotation": "DOPMODQ"}, {"text": "0.04", "start": 334, "end": 338, "annotation": "DOPMODQ"}, {"text": ",", "start": 338, "end": 339, "annotation": "DOPMODQ"}, {"text": "and", "start": 340, "end": 343, "annotation": "DOPMODQ"}, {"text": "0.08", "start": 344, "end": 348, "annotation": "DOPMODQ"}, {"text": "mol", "start": 348, "end": 351, "annotation": "DOPMODQ"}, {"text": ")", "start": 351, "end": 352, "annotation": null}, {"text": "were", "start": 353, "end": 357, "annotation": null}, {"text": "investigated", "start": 358, "end": 370, "annotation": null}, {"text": "in", "start": 371, "end": 373, "annotation": null}, {"text": "this", "start": 374, "end": 378, "annotation": null}, {"text": "study", "start": 379, "end": 384, "annotation": null}, {"text": ".", "start": 384, "end": 385, "annotation": null}], [{"text": "A", "start": 386, "end": 387, "annotation": null}, {"text": "simple", "start": 388, "end": 394, "annotation": null}, {"text": "and", "start": 395, "end": 398, "annotation": null}, {"text": "rapid", "start": 399, "end": 404, "annotation": null}, {"text": "synthesis", "start": 405, "end": 414, "annotation": null}, {"text": "of", "start": 415, "end": 417, "annotation": null}, {"text": "Mg2SiXm", "start": 418, "end": 425, "annotation": null}, {"text": "samples", "start": 426, "end": 433, "annotation": null}, {"text": "was", "start": 434, "end": 437, "annotation": null}, {"text": "carried", "start": 438, "end": 445, "annotation": null}, {"text": "out", "start": 446, "end": 449, "annotation": null}, {"text": "using", "start": 450, "end": 455, "annotation": null}, {"text": "pelletizing", "start": 456, "end": 467, "annotation": null}, {"text": ",", "start": 467, "end": 468, "annotation": null}, {"text": "and", "start": 469, "end": 472, "annotation": null}, {"text": "sintering", "start": 473, "end": 482, "annotation": null}, {"text": "method", "start": 483, "end": 489, "annotation": null}, {"text": "at", "start": 490, "end": 492, "annotation": null}, {"text": "773", "start": 493, "end": 496, "annotation": null}, {"text": "\u2013", "start": 496, "end": 497, "annotation": null}, {"text": "823", "start": 497, "end": 500, "annotation": null}, {"text": "K", "start": 500, "end": 501, "annotation": null}, {"text": "for", "start": 502, "end": 505, "annotation": null}, {"text": "300", "start": 506, "end": 509, "annotation": null}, {"text": "s", "start": 509, "end": 510, "annotation": null}, {"text": ".", "start": 510, "end": 511, "annotation": null}], [{"text": "The", "start": 512, "end": 515, "annotation": null}, {"text": "effect", "start": 516, "end": 522, "annotation": null}, {"text": "of", "start": 523, "end": 525, "annotation": null}, {"text": "metal", "start": 526, "end": 531, "annotation": null}, {"text": "doping", "start": 532, "end": 538, "annotation": null}, {"text": "on", "start": 539, "end": 541, "annotation": null}, {"text": "the", "start": 542, "end": 545, "annotation": null}, {"text": "lattice", "start": 546, "end": 553, "annotation": null}, {"text": "constants", "start": 554, "end": 563, "annotation": null}, {"text": "of", "start": 564, "end": 566, "annotation": null}, {"text": "Mg2SiXm", "start": 567, "end": 574, "annotation": null}, {"text": "samples", "start": 575, "end": 582, "annotation": null}, {"text": "was", "start": 583, "end": 586, "annotation": null}, {"text": "examined", "start": 587, "end": 595, "annotation": null}, {"text": "using", "start": 596, "end": 601, "annotation": null}, {"text": "X-ray", "start": 602, "end": 607, "annotation": null}, {"text": "diffraction", "start": 608, "end": 619, "annotation": null}, {"text": "technique", "start": 620, "end": 629, "annotation": null}, {"text": ".", "start": 629, "end": 630, "annotation": null}], [{"text": "Differential", "start": 631, "end": 643, "annotation": null}, {"text": "thermal", "start": 644, "end": 651, "annotation": null}, {"text": "analysis", "start": 652, "end": 660, "annotation": null}, {"text": "heat", "start": 661, "end": 665, "annotation": null}, {"text": "flow", "start": 666, "end": 670, "annotation": null}, {"text": "experiments", "start": 671, "end": 682, "annotation": null}, {"text": "were", "start": 683, "end": 687, "annotation": null}, {"text": "conducted", "start": 688, "end": 697, "annotation": null}, {"text": "on", "start": 698, "end": 700, "annotation": null}, {"text": "(", "start": 701, "end": 702, "annotation": null}, {"text": "2Mg", "start": 702, "end": 705, "annotation": null}, {"text": "+", "start": 705, "end": 706, "annotation": null}, {"text": "Si", "start": 706, "end": 708, "annotation": null}, {"text": "+", "start": 708, "end": 709, "annotation": null}, {"text": "mX", "start": 709, "end": 711, "annotation": null}, {"text": ")", "start": 711, "end": 712, "annotation": null}, {"text": "sample", "start": 713, "end": 719, "annotation": null}, {"text": "mixtures", "start": 720, "end": 728, "annotation": null}, {"text": "to", "start": 729, "end": 731, "annotation": null}, {"text": "study", "start": 732, "end": 737, "annotation": null}, {"text": "the", "start": 738, "end": 741, "annotation": null}, {"text": "solid", "start": 742, "end": 747, "annotation": null}, {"text": "-", "start": 747, "end": 748, "annotation": null}, {"text": "state", "start": 748, "end": 753, "annotation": null}, {"text": "reaction", "start": 754, "end": 762, "annotation": null}, {"text": "kinetics", "start": 763, "end": 771, "annotation": null}, {"text": "of", "start": 772, "end": 774, "annotation": null}, {"text": "Mg2SiXm", "start": 775, "end": 782, "annotation": null}, {"text": "alloys", "start": 783, "end": 789, "annotation": null}, {"text": "formation", "start": 790, "end": 799, "annotation": null}, {"text": "at", "start": 800, "end": 802, "annotation": null}, {"text": "different", "start": 803, "end": 812, "annotation": null}, {"text": "scan", "start": 813, "end": 817, "annotation": null}, {"text": "rates", "start": 818, "end": 823, "annotation": null}, {"text": "of", "start": 824, "end": 826, "annotation": null}, {"text": "0.08", "start": 827, "end": 831, "annotation": null}, {"text": ",", "start": 831, "end": 832, "annotation": null}, {"text": "0.16", "start": 833, "end": 837, "annotation": null}, {"text": ",", "start": 837, "end": 838, "annotation": null}, {"text": "0.25", "start": 839, "end": 843, "annotation": null}, {"text": ",", "start": 843, "end": 844, "annotation": null}, {"text": "0.33", "start": 845, "end": 849, "annotation": null}, {"text": "Ks\u22121", "start": 849, "end": 853, "annotation": null}, {"text": ".", "start": 853, "end": 854, "annotation": null}], [{"text": "Activation", "start": 855, "end": 865, "annotation": null}, {"text": "energies", "start": 866, "end": 874, "annotation": null}, {"text": "for", "start": 875, "end": 878, "annotation": null}, {"text": "the", "start": 879, "end": 882, "annotation": null}, {"text": "formation", "start": 883, "end": 892, "annotation": null}, {"text": "reaction", "start": 893, "end": 901, "annotation": null}, {"text": "of", "start": 902, "end": 904, "annotation": null}, {"text": "Mg2Si", "start": 905, "end": 910, "annotation": null}, {"text": "were", "start": 911, "end": 915, "annotation": null}, {"text": "determined", "start": 916, "end": 926, "annotation": null}, {"text": "using", "start": 927, "end": 932, "annotation": null}, {"text": "Ozawa", "start": 933, "end": 938, "annotation": null}, {"text": ",", "start": 938, "end": 939, "annotation": null}, {"text": "and", "start": 940, "end": 943, "annotation": null}, {"text": "Kissinger", "start": 944, "end": 953, "annotation": null}, {"text": "\u2013", "start": 953, "end": 954, "annotation": null}, {"text": "Akahira", "start": 954, "end": 961, "annotation": null}, {"text": "\u2013", "start": 961, "end": 962, "annotation": null}, {"text": "Sunrose", "start": 962, "end": 969, "annotation": null}, {"text": "equations", "start": 970, "end": 979, "annotation": null}, {"text": ".", "start": 979, "end": 980, "annotation": null}], [{"text": "A", "start": 981, "end": 982, "annotation": null}, {"text": "3-D", "start": 983, "end": 986, "annotation": null}, {"text": "diffusion", "start": 987, "end": 996, "annotation": null}, {"text": "-", "start": 996, "end": 997, "annotation": null}, {"text": "controlled", "start": 997, "end": 1007, "annotation": null}, {"text": "reaction", "start": 1008, "end": 1016, "annotation": null}, {"text": "mechanism", "start": 1017, "end": 1026, "annotation": null}, {"text": "was", "start": 1027, "end": 1030, "annotation": null}, {"text": "proposed", "start": 1031, "end": 1039, "annotation": null}, {"text": "based", "start": 1040, "end": 1045, "annotation": null}, {"text": "on", "start": 1046, "end": 1048, "annotation": null}, {"text": "Coats", "start": 1049, "end": 1054, "annotation": null}, {"text": "\u2013", "start": 1054, "end": 1055, "annotation": null}, {"text": "Redfern", "start": 1055, "end": 1062, "annotation": null}, {"text": "(", "start": 1063, "end": 1064, "annotation": null}, {"text": "CR", "start": 1064, "end": 1066, "annotation": null}, {"text": ")", "start": 1066, "end": 1067, "annotation": null}, {"text": "model", "start": 1068, "end": 1073, "annotation": null}, {"text": ".", "start": 1073, "end": 1074, "annotation": null}], [{"text": "The", "start": 1075, "end": 1078, "annotation": null}, {"text": "effect", "start": 1079, "end": 1085, "annotation": null}, {"text": "of", "start": 1086, "end": 1088, "annotation": null}, {"text": "concentration", "start": 1089, "end": 1102, "annotation": null}, {"text": "of", "start": 1103, "end": 1105, "annotation": null}, {"text": "the", "start": 1106, "end": 1109, "annotation": null}, {"text": "metal", "start": 1110, "end": 1115, "annotation": "DOPANT"}, {"text": "-", "start": 1115, "end": 1116, "annotation": null}, {"text": "dopants", "start": 1116, "end": 1123, "annotation": null}, {"text": "on", "start": 1124, "end": 1126, "annotation": null}, {"text": "the", "start": 1127, "end": 1130, "annotation": null}, {"text": "formation", "start": 1131, "end": 1140, "annotation": null}, {"text": "activation", "start": 1141, "end": 1151, "annotation": null}, {"text": "energies", "start": 1152, "end": 1160, "annotation": null}, {"text": "of", "start": 1161, "end": 1163, "annotation": null}, {"text": "Mg2SiXm", "start": 1164, "end": 1171, "annotation": "BASEMAT"}, {"text": "was", "start": 1172, "end": 1175, "annotation": null}, {"text": "investigated", "start": 1176, "end": 1188, "annotation": null}, {"text": "using", "start": 1189, "end": 1194, "annotation": null}, {"text": "the", "start": 1195, "end": 1198, "annotation": null}, {"text": "CR", "start": 1199, "end": 1201, "annotation": null}, {"text": "equation", "start": 1202, "end": 1210, "annotation": null}, {"text": "plots", "start": 1211, "end": 1216, "annotation": null}, {"text": ".", "start": 1216, "end": 1217, "annotation": null}]], "meta": {"doi": "10.1007/s10853-017-1095-5"}} +{"remark": "doping_annt2", "text": "We propose a novel gap-state spectroscopy, namely, the photo-isothermal capacitance transient spectroscopy (ICTS) using below-gap excitation. Using this method, the energy level spectrum as well as the photoionization cross sections of gap states in P-doped a-Si:H have been determined: two features exist at 0.5\u20130.6 eV and 1.0\u20131.2 eV below the conduction band edge Ec in the gap-state profile and the photoionization cross section of the gap states has been found to be almost independent of their energy level location and to have value of order of 10\u221216 cm2.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "propose", "start": 3, "end": 10, "annotation": null}, {"text": "a", "start": 11, "end": 12, "annotation": null}, {"text": "novel", "start": 13, "end": 18, "annotation": null}, {"text": "gap", "start": 19, "end": 22, "annotation": null}, {"text": "-", "start": 22, "end": 23, "annotation": null}, {"text": "state", "start": 23, "end": 28, "annotation": null}, {"text": "spectroscopy", "start": 29, "end": 41, "annotation": null}, {"text": ",", "start": 41, "end": 42, "annotation": null}, {"text": "namely", "start": 43, "end": 49, "annotation": null}, {"text": ",", "start": 49, "end": 50, "annotation": null}, {"text": "the", "start": 51, "end": 54, "annotation": null}, {"text": "photo", "start": 55, "end": 60, "annotation": null}, {"text": "-", "start": 60, "end": 61, "annotation": null}, {"text": "isothermal", "start": 61, "end": 71, "annotation": null}, {"text": "capacitance", "start": 72, "end": 83, "annotation": null}, {"text": "transient", "start": 84, "end": 93, "annotation": null}, {"text": "spectroscopy", "start": 94, "end": 106, "annotation": null}, {"text": "(", "start": 107, "end": 108, "annotation": null}, {"text": "ICTS", "start": 108, "end": 112, "annotation": null}, {"text": ")", "start": 112, "end": 113, "annotation": null}, {"text": "using", "start": 114, "end": 119, "annotation": null}, {"text": "below", "start": 120, "end": 125, "annotation": null}, {"text": "-", "start": 125, "end": 126, "annotation": null}, {"text": "gap", "start": 126, "end": 129, "annotation": null}, {"text": "excitation", "start": 130, "end": 140, "annotation": null}, {"text": ".", "start": 140, "end": 141, "annotation": null}], [{"text": "Using", "start": 142, "end": 147, "annotation": null}, {"text": "this", "start": 148, "end": 152, "annotation": null}, {"text": "method", "start": 153, "end": 159, "annotation": null}, {"text": ",", "start": 159, "end": 160, "annotation": null}, {"text": "the", "start": 161, "end": 164, "annotation": null}, {"text": "energy", "start": 165, "end": 171, "annotation": null}, {"text": "level", "start": 172, "end": 177, "annotation": null}, {"text": "spectrum", "start": 178, "end": 186, "annotation": null}, {"text": "as", "start": 187, "end": 189, "annotation": null}, {"text": "well", "start": 190, "end": 194, "annotation": null}, {"text": "as", "start": 195, "end": 197, "annotation": null}, {"text": "the", "start": 198, "end": 201, "annotation": null}, {"text": "photoionization", "start": 202, "end": 217, "annotation": null}, {"text": "cross", "start": 218, "end": 223, "annotation": null}, {"text": "sections", "start": 224, "end": 232, "annotation": null}, {"text": "of", "start": 233, "end": 235, "annotation": null}, {"text": "gap", "start": 236, "end": 239, "annotation": null}, {"text": "states", "start": 240, "end": 246, "annotation": null}, {"text": "in", "start": 247, "end": 249, "annotation": null}, {"text": "P", "start": 250, "end": 251, "annotation": "DOPANT"}, {"text": "-", "start": 251, "end": 252, "annotation": null}, {"text": "doped", "start": 252, "end": 257, "annotation": null}, {"text": "a-Si", "start": 258, "end": 262, "annotation": "BASEMAT"}, {"text": ":", "start": 262, "end": 263, "annotation": null}, {"text": "H", "start": 263, "end": 264, "annotation": null}, {"text": "have", "start": 265, "end": 269, "annotation": null}, {"text": "been", "start": 270, "end": 274, "annotation": null}, {"text": "determined", "start": 275, "end": 285, "annotation": null}, {"text": ":", "start": 285, "end": 286, "annotation": null}, {"text": "two", "start": 287, "end": 290, "annotation": null}, {"text": "features", "start": 291, "end": 299, "annotation": null}, {"text": "exist", "start": 300, "end": 305, "annotation": null}, {"text": "at", "start": 306, "end": 308, "annotation": null}, {"text": "0.5", "start": 309, "end": 312, "annotation": null}, {"text": "\u2013", "start": 312, "end": 313, "annotation": null}, {"text": "0.6", "start": 313, "end": 316, "annotation": null}, {"text": "eV", "start": 317, "end": 319, "annotation": null}, {"text": "and", "start": 320, "end": 323, "annotation": null}, {"text": "1.0", "start": 324, "end": 327, "annotation": null}, {"text": "\u2013", "start": 327, "end": 328, "annotation": null}, {"text": "1.2", "start": 328, "end": 331, "annotation": null}, {"text": "eV", "start": 332, "end": 334, "annotation": null}, {"text": "below", "start": 335, "end": 340, "annotation": null}, {"text": "the", "start": 341, "end": 344, "annotation": null}, {"text": "conduction", "start": 345, "end": 355, "annotation": null}, {"text": "band", "start": 356, "end": 360, "annotation": null}, {"text": "edge", "start": 361, "end": 365, "annotation": null}, {"text": "Ec", "start": 366, "end": 368, "annotation": null}, {"text": "in", "start": 369, "end": 371, "annotation": null}, {"text": "the", "start": 372, "end": 375, "annotation": null}, {"text": "gap", "start": 376, "end": 379, "annotation": null}, {"text": "-", "start": 379, "end": 380, "annotation": null}, {"text": "state", "start": 380, "end": 385, "annotation": null}, {"text": "profile", "start": 386, "end": 393, "annotation": null}, {"text": "and", "start": 394, "end": 397, "annotation": null}, {"text": "the", "start": 398, "end": 401, "annotation": null}, {"text": "photoionization", "start": 402, "end": 417, "annotation": null}, {"text": "cross", "start": 418, "end": 423, "annotation": null}, {"text": "section", "start": 424, "end": 431, "annotation": null}, {"text": "of", "start": 432, "end": 434, "annotation": null}, {"text": "the", "start": 435, "end": 438, "annotation": null}, {"text": "gap", "start": 439, "end": 442, "annotation": null}, {"text": "states", "start": 443, "end": 449, "annotation": null}, {"text": "has", "start": 450, "end": 453, "annotation": null}, {"text": "been", "start": 454, "end": 458, "annotation": null}, {"text": "found", "start": 459, "end": 464, "annotation": null}, {"text": "to", "start": 465, "end": 467, "annotation": null}, {"text": "be", "start": 468, "end": 470, "annotation": null}, {"text": "almost", "start": 471, "end": 477, "annotation": null}, {"text": "independent", "start": 478, "end": 489, "annotation": null}, {"text": "of", "start": 490, "end": 492, "annotation": null}, {"text": "their", "start": 493, "end": 498, "annotation": null}, {"text": "energy", "start": 499, "end": 505, "annotation": null}, {"text": "level", "start": 506, "end": 511, "annotation": null}, {"text": "location", "start": 512, "end": 520, "annotation": null}, {"text": "and", "start": 521, "end": 524, "annotation": null}, {"text": "to", "start": 525, "end": 527, "annotation": null}, {"text": "have", "start": 528, "end": 532, "annotation": null}, {"text": "value", "start": 533, "end": 538, "annotation": null}, {"text": "of", "start": 539, "end": 541, "annotation": null}, {"text": "order", "start": 542, "end": 547, "annotation": null}, {"text": "of", "start": 548, "end": 550, "annotation": null}, {"text": "10", "start": 551, "end": 553, "annotation": null}, {"text": "\u2212", "start": 553, "end": 554, "annotation": null}, {"text": "16", "start": 554, "end": 556, "annotation": null}, {"text": "cm2", "start": 557, "end": 560, "annotation": null}, {"text": ".", "start": 560, "end": 561, "annotation": null}]], "meta": {"doi": "10.1016/0022-3093(87)90017-2"}} +{"remark": "doping_annt1", "text": "Self-stacked nitrogen-doped carbon nanotubes (NCNTs) and pristine carbon nanotubes (CNTs) on commercial porous polypropylene substrates have been applied as air electrodes for sodium-air batteries (SAB). Both NCNT and CNT air electrodes exhibit highly reversible electrochemical activities and large capacities under low current densities in SABs, while NCNT electrodes show much higher rate performance and extended cycling life under high current densities. The superior electrochemical behavior of NCNT electrodes is attributed to the robust network of aligned NCNTs, which enables rapid oxygen and liquid electrolyte transport while accommodating the volume change originating from discharge product aggregation during cycling. Moreover, uniform coverage of the discharge product has been observed on the NCNT air electrodes, in contrast to the random and discrete dispersion of discharge product on the CNT air electrodes. The unique morphologies and growth mechanism of discharge products on NCNT electrodes are believed to be due to the outstanding catalytic activity of the nitrogen-doped sites in the NCNTs, which play a critical role in the high cycling stability of NCNT air electrodes for SABs.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Self", "start": 0, "end": 4, "annotation": null}, {"text": "-", "start": 4, "end": 5, "annotation": null}, {"text": "stacked", "start": 5, "end": 12, "annotation": null}, {"text": "nitrogen", "start": 13, "end": 21, "annotation": "DOPANT"}, {"text": "-", "start": 21, "end": 22, "annotation": null}, {"text": "doped", "start": 22, "end": 27, "annotation": null}, {"text": "carbon", "start": 28, "end": 34, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 35, "end": 44, "annotation": "BASEMAT"}, {"text": "(", "start": 45, "end": 46, "annotation": null}, {"text": "NCNTs", "start": 46, "end": 51, "annotation": "BASEMAT"}, {"text": ")", "start": 51, "end": 52, "annotation": null}, {"text": "and", "start": 53, "end": 56, "annotation": null}, {"text": "pristine", "start": 57, "end": 65, "annotation": null}, {"text": "carbon", "start": 66, "end": 72, "annotation": null}, {"text": "nanotubes", "start": 73, "end": 82, "annotation": null}, {"text": "(", "start": 83, "end": 84, "annotation": null}, {"text": "CNTs", "start": 84, "end": 88, "annotation": null}, {"text": ")", "start": 88, "end": 89, "annotation": null}, {"text": "on", "start": 90, "end": 92, "annotation": null}, {"text": "commercial", "start": 93, "end": 103, "annotation": null}, {"text": "porous", "start": 104, "end": 110, "annotation": null}, {"text": "polypropylene", "start": 111, "end": 124, "annotation": null}, {"text": "substrates", "start": 125, "end": 135, "annotation": null}, {"text": "have", "start": 136, "end": 140, "annotation": null}, {"text": "been", "start": 141, "end": 145, "annotation": null}, {"text": "applied", "start": 146, "end": 153, "annotation": null}, {"text": "as", "start": 154, "end": 156, "annotation": null}, {"text": "air", "start": 157, "end": 160, "annotation": null}, {"text": "electrodes", "start": 161, "end": 171, "annotation": null}, {"text": "for", "start": 172, "end": 175, "annotation": null}, {"text": "sodium", "start": 176, "end": 182, "annotation": null}, {"text": "-", "start": 182, "end": 183, "annotation": null}, {"text": "air", "start": 183, "end": 186, "annotation": null}, {"text": "batteries", "start": 187, "end": 196, "annotation": null}, {"text": "(", "start": 197, "end": 198, "annotation": null}, {"text": "SAB", "start": 198, "end": 201, "annotation": null}, {"text": ")", "start": 201, "end": 202, "annotation": null}, {"text": ".", "start": 202, "end": 203, "annotation": null}], [{"text": "Both", "start": 204, "end": 208, "annotation": null}, {"text": "NCNT", "start": 209, "end": 213, "annotation": null}, {"text": "and", "start": 214, "end": 217, "annotation": null}, {"text": "CNT", "start": 218, "end": 221, "annotation": null}, {"text": "air", "start": 222, "end": 225, "annotation": null}, {"text": "electrodes", "start": 226, "end": 236, "annotation": null}, {"text": "exhibit", "start": 237, "end": 244, "annotation": null}, {"text": "highly", "start": 245, "end": 251, "annotation": null}, {"text": "reversible", "start": 252, "end": 262, "annotation": null}, {"text": "electrochemical", "start": 263, "end": 278, "annotation": null}, {"text": "activities", "start": 279, "end": 289, "annotation": null}, {"text": "and", "start": 290, "end": 293, "annotation": null}, {"text": "large", "start": 294, "end": 299, "annotation": null}, {"text": "capacities", "start": 300, "end": 310, "annotation": null}, {"text": "under", "start": 311, "end": 316, "annotation": null}, {"text": "low", "start": 317, "end": 320, "annotation": null}, {"text": "current", "start": 321, "end": 328, "annotation": null}, {"text": "densities", "start": 329, "end": 338, "annotation": null}, {"text": "in", "start": 339, "end": 341, "annotation": null}, {"text": "SABs", "start": 342, "end": 346, "annotation": null}, {"text": ",", "start": 346, "end": 347, "annotation": null}, {"text": "while", "start": 348, "end": 353, "annotation": null}, {"text": "NCNT", "start": 354, "end": 358, "annotation": null}, {"text": "electrodes", "start": 359, "end": 369, "annotation": null}, {"text": "show", "start": 370, "end": 374, "annotation": null}, {"text": "much", "start": 375, "end": 379, "annotation": null}, {"text": "higher", "start": 380, "end": 386, "annotation": null}, {"text": "rate", "start": 387, "end": 391, "annotation": null}, {"text": "performance", "start": 392, "end": 403, "annotation": null}, {"text": "and", "start": 404, "end": 407, "annotation": null}, {"text": "extended", "start": 408, "end": 416, "annotation": null}, {"text": "cycling", "start": 417, "end": 424, "annotation": null}, {"text": "life", "start": 425, "end": 429, "annotation": null}, {"text": "under", "start": 430, "end": 435, "annotation": null}, {"text": "high", "start": 436, "end": 440, "annotation": null}, {"text": "current", "start": 441, "end": 448, "annotation": null}, {"text": "densities", "start": 449, "end": 458, "annotation": null}, {"text": ".", "start": 458, "end": 459, "annotation": null}], [{"text": "The", "start": 460, "end": 463, "annotation": null}, {"text": "superior", "start": 464, "end": 472, "annotation": null}, {"text": "electrochemical", "start": 473, "end": 488, "annotation": null}, {"text": "behavior", "start": 489, "end": 497, "annotation": null}, {"text": "of", "start": 498, "end": 500, "annotation": null}, {"text": "NCNT", "start": 501, "end": 505, "annotation": null}, {"text": "electrodes", "start": 506, "end": 516, "annotation": null}, {"text": "is", "start": 517, "end": 519, "annotation": null}, {"text": "attributed", "start": 520, "end": 530, "annotation": null}, {"text": "to", "start": 531, "end": 533, "annotation": null}, {"text": "the", "start": 534, "end": 537, "annotation": null}, {"text": "robust", "start": 538, "end": 544, "annotation": null}, {"text": "network", "start": 545, "end": 552, "annotation": null}, {"text": "of", "start": 553, "end": 555, "annotation": null}, {"text": "aligned", "start": 556, "end": 563, "annotation": null}, {"text": "NCNTs", "start": 564, "end": 569, "annotation": null}, {"text": ",", "start": 569, "end": 570, "annotation": null}, {"text": "which", "start": 571, "end": 576, "annotation": null}, {"text": "enables", "start": 577, "end": 584, "annotation": null}, {"text": "rapid", "start": 585, "end": 590, "annotation": null}, {"text": "oxygen", "start": 591, "end": 597, "annotation": null}, {"text": "and", "start": 598, "end": 601, "annotation": null}, {"text": "liquid", "start": 602, "end": 608, "annotation": null}, {"text": "electrolyte", "start": 609, "end": 620, "annotation": null}, {"text": "transport", "start": 621, "end": 630, "annotation": null}, {"text": "while", "start": 631, "end": 636, "annotation": null}, {"text": "accommodating", "start": 637, "end": 650, "annotation": null}, {"text": "the", "start": 651, "end": 654, "annotation": null}, {"text": "volume", "start": 655, "end": 661, "annotation": null}, {"text": "change", "start": 662, "end": 668, "annotation": null}, {"text": "originating", "start": 669, "end": 680, "annotation": null}, {"text": "from", "start": 681, "end": 685, "annotation": null}, {"text": "discharge", "start": 686, "end": 695, "annotation": null}, {"text": "product", "start": 696, "end": 703, "annotation": null}, {"text": "aggregation", "start": 704, "end": 715, "annotation": null}, {"text": "during", "start": 716, "end": 722, "annotation": null}, {"text": "cycling", "start": 723, "end": 730, "annotation": null}, {"text": ".", "start": 730, "end": 731, "annotation": null}], [{"text": "Moreover", "start": 732, "end": 740, "annotation": null}, {"text": ",", "start": 740, "end": 741, "annotation": null}, {"text": "uniform", "start": 742, "end": 749, "annotation": null}, {"text": "coverage", "start": 750, "end": 758, "annotation": null}, {"text": "of", "start": 759, "end": 761, "annotation": null}, {"text": "the", "start": 762, "end": 765, "annotation": null}, {"text": "discharge", "start": 766, "end": 775, "annotation": null}, {"text": "product", "start": 776, "end": 783, "annotation": null}, {"text": "has", "start": 784, "end": 787, "annotation": null}, {"text": "been", "start": 788, "end": 792, "annotation": null}, {"text": "observed", "start": 793, "end": 801, "annotation": null}, {"text": "on", "start": 802, "end": 804, "annotation": null}, {"text": "the", "start": 805, "end": 808, "annotation": null}, {"text": "NCNT", "start": 809, "end": 813, "annotation": null}, {"text": "air", "start": 814, "end": 817, "annotation": null}, {"text": "electrodes", "start": 818, "end": 828, "annotation": null}, {"text": ",", "start": 828, "end": 829, "annotation": null}, {"text": "in", "start": 830, "end": 832, "annotation": null}, {"text": "contrast", "start": 833, "end": 841, "annotation": null}, {"text": "to", "start": 842, "end": 844, "annotation": null}, {"text": "the", "start": 845, "end": 848, "annotation": null}, {"text": "random", "start": 849, "end": 855, "annotation": null}, {"text": "and", "start": 856, "end": 859, "annotation": null}, {"text": "discrete", "start": 860, "end": 868, "annotation": null}, {"text": "dispersion", "start": 869, "end": 879, "annotation": null}, {"text": "of", "start": 880, "end": 882, "annotation": null}, {"text": "discharge", "start": 883, "end": 892, "annotation": null}, {"text": "product", "start": 893, "end": 900, "annotation": null}, {"text": "on", "start": 901, "end": 903, "annotation": null}, {"text": "the", "start": 904, "end": 907, "annotation": null}, {"text": "CNT", "start": 908, "end": 911, "annotation": null}, {"text": "air", "start": 912, "end": 915, "annotation": null}, {"text": "electrodes", "start": 916, "end": 926, "annotation": null}, {"text": ".", "start": 926, "end": 927, "annotation": null}], [{"text": "The", "start": 928, "end": 931, "annotation": null}, {"text": "unique", "start": 932, "end": 938, "annotation": null}, {"text": "morphologies", "start": 939, "end": 951, "annotation": null}, {"text": "and", "start": 952, "end": 955, "annotation": null}, {"text": "growth", "start": 956, "end": 962, "annotation": null}, {"text": "mechanism", "start": 963, "end": 972, "annotation": null}, {"text": "of", "start": 973, "end": 975, "annotation": null}, {"text": "discharge", "start": 976, "end": 985, "annotation": null}, {"text": "products", "start": 986, "end": 994, "annotation": null}, {"text": "on", "start": 995, "end": 997, "annotation": null}, {"text": "NCNT", "start": 998, "end": 1002, "annotation": null}, {"text": "electrodes", "start": 1003, "end": 1013, "annotation": null}, {"text": "are", "start": 1014, "end": 1017, "annotation": null}, {"text": "believed", "start": 1018, "end": 1026, "annotation": null}, {"text": "to", "start": 1027, "end": 1029, "annotation": null}, {"text": "be", "start": 1030, "end": 1032, "annotation": null}, {"text": "due", "start": 1033, "end": 1036, "annotation": null}, {"text": "to", "start": 1037, "end": 1039, "annotation": null}, {"text": "the", "start": 1040, "end": 1043, "annotation": null}, {"text": "outstanding", "start": 1044, "end": 1055, "annotation": null}, {"text": "catalytic", "start": 1056, "end": 1065, "annotation": null}, {"text": "activity", "start": 1066, "end": 1074, "annotation": null}, {"text": "of", "start": 1075, "end": 1077, "annotation": null}, {"text": "the", "start": 1078, "end": 1081, "annotation": null}, {"text": "nitrogen", "start": 1082, "end": 1090, "annotation": "DOPANT"}, {"text": "-", "start": 1090, "end": 1091, "annotation": null}, {"text": "doped", "start": 1091, "end": 1096, "annotation": null}, {"text": "sites", "start": 1097, "end": 1102, "annotation": null}, {"text": "in", "start": 1103, "end": 1105, "annotation": null}, {"text": "the", "start": 1106, "end": 1109, "annotation": null}, {"text": "NCNTs", "start": 1110, "end": 1115, "annotation": "BASEMAT"}, {"text": ",", "start": 1115, "end": 1116, "annotation": null}, {"text": "which", "start": 1117, "end": 1122, "annotation": null}, {"text": "play", "start": 1123, "end": 1127, "annotation": null}, {"text": "a", "start": 1128, "end": 1129, "annotation": null}, {"text": "critical", "start": 1130, "end": 1138, "annotation": null}, {"text": "role", "start": 1139, "end": 1143, "annotation": null}, {"text": "in", "start": 1144, "end": 1146, "annotation": null}, {"text": "the", "start": 1147, "end": 1150, "annotation": null}, {"text": "high", "start": 1151, "end": 1155, "annotation": null}, {"text": "cycling", "start": 1156, "end": 1163, "annotation": null}, {"text": "stability", "start": 1164, "end": 1173, "annotation": null}, {"text": "of", "start": 1174, "end": 1176, "annotation": null}, {"text": "NCNT", "start": 1177, "end": 1181, "annotation": null}, {"text": "air", "start": 1182, "end": 1185, "annotation": null}, {"text": "electrodes", "start": 1186, "end": 1196, "annotation": null}, {"text": "for", "start": 1197, "end": 1200, "annotation": null}, {"text": "SABs", "start": 1201, "end": 1205, "annotation": null}, {"text": ".", "start": 1205, "end": 1206, "annotation": null}]], "meta": {"doi": "10.1016/j.nanoen.2015.01.018"}} +{"remark": "doping_annt2", "text": "The polypyrrole\u2013zinc oxide (PPy\u2013ZnO) hybrid sensor doped with different weight ratios of camphor sulfonic acid (CSA) were prepared by spin coating technique. These CSA doped PPy\u2013ZnO hybrids were characterized by X-ray diffraction (XRD), field emission scanning electron microscope (FESEM), Fourier transform infrared (FTIR) and UV\u2013vis techniques which proved the formation of polypyrrole, PPy\u2013ZnO and the interaction between polypyrrole\u2013ZnO (PPy\u2013ZnO) hybrid with CSA doping. The gas sensing properties of the PPy\u2013ZnO hybrid films doped with CSA have been studied for oxidizing (NO2) as well as reducing (H2S, NH3, C2H5OH and CH3OH) gases at room temperature. We demonstrate that CSA (30wt.%) doped PPy\u2013ZnO hybrid films are highly selective to NO2 along with high-sensitivity at low concentration (80% to 100ppm), fast-response time (120s) and better stability, which suggested that the CSA (30%) doped PPy\u2013ZnO hybrid films are potential candidate for NO2 detection at room temperature.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "polypyrrole", "start": 4, "end": 15, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 15, "end": 16, "annotation": "BASEMAT"}, {"text": "zinc", "start": 16, "end": 20, "annotation": "BASEMAT"}, {"text": "oxide", "start": 21, "end": 26, "annotation": "BASEMAT"}, {"text": "(", "start": 27, "end": 28, "annotation": null}, {"text": "PPy", "start": 28, "end": 31, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 31, "end": 32, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 32, "end": 35, "annotation": "BASEMAT"}, {"text": ")", "start": 35, "end": 36, "annotation": null}, {"text": "hybrid", "start": 37, "end": 43, "annotation": null}, {"text": "sensor", "start": 44, "end": 50, "annotation": null}, {"text": "doped", "start": 51, "end": 56, "annotation": null}, {"text": "with", "start": 57, "end": 61, "annotation": null}, {"text": "different", "start": 62, "end": 71, "annotation": null}, {"text": "weight", "start": 72, "end": 78, "annotation": null}, {"text": "ratios", "start": 79, "end": 85, "annotation": null}, {"text": "of", "start": 86, "end": 88, "annotation": null}, {"text": "camphor", "start": 89, "end": 96, "annotation": "DOPANT"}, {"text": "sulfonic", "start": 97, "end": 105, "annotation": "DOPANT"}, {"text": "acid", "start": 106, "end": 110, "annotation": "DOPANT"}, {"text": "(", "start": 111, "end": 112, "annotation": null}, {"text": "CSA", "start": 112, "end": 115, "annotation": null}, {"text": ")", "start": 115, "end": 116, "annotation": null}, {"text": "were", "start": 117, "end": 121, "annotation": null}, {"text": "prepared", "start": 122, "end": 130, "annotation": null}, {"text": "by", "start": 131, "end": 133, "annotation": null}, {"text": "spin", "start": 134, "end": 138, "annotation": null}, {"text": "coating", "start": 139, "end": 146, "annotation": null}, {"text": "technique", "start": 147, "end": 156, "annotation": null}, {"text": ".", "start": 156, "end": 157, "annotation": null}], [{"text": "These", "start": 158, "end": 163, "annotation": null}, {"text": "CSA", "start": 164, "end": 167, "annotation": "DOPANT"}, {"text": "doped", "start": 168, "end": 173, "annotation": null}, {"text": "PPy", "start": 174, "end": 177, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 177, "end": 178, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 178, "end": 181, "annotation": "BASEMAT"}, {"text": "hybrids", "start": 182, "end": 189, "annotation": null}, {"text": "were", "start": 190, "end": 194, "annotation": null}, {"text": "characterized", "start": 195, "end": 208, "annotation": null}, {"text": "by", "start": 209, "end": 211, "annotation": null}, {"text": "X-ray", "start": 212, "end": 217, "annotation": null}, {"text": "diffraction", "start": 218, "end": 229, "annotation": null}, {"text": "(", "start": 230, "end": 231, "annotation": null}, {"text": "XRD", "start": 231, "end": 234, "annotation": null}, {"text": ")", "start": 234, "end": 235, "annotation": null}, {"text": ",", "start": 235, "end": 236, "annotation": null}, {"text": "field", "start": 237, "end": 242, "annotation": null}, {"text": "emission", "start": 243, "end": 251, "annotation": null}, {"text": "scanning", "start": 252, "end": 260, "annotation": null}, {"text": "electron", "start": 261, "end": 269, "annotation": null}, {"text": "microscope", "start": 270, "end": 280, "annotation": null}, {"text": "(", "start": 281, "end": 282, "annotation": null}, {"text": "FESEM", "start": 282, "end": 287, "annotation": null}, {"text": ")", "start": 287, "end": 288, "annotation": null}, {"text": ",", "start": 288, "end": 289, "annotation": null}, {"text": "Fourier", "start": 290, "end": 297, "annotation": null}, {"text": "transform", "start": 298, "end": 307, "annotation": null}, {"text": "infrared", "start": 308, "end": 316, "annotation": null}, {"text": "(", "start": 317, "end": 318, "annotation": null}, {"text": "FTIR", "start": 318, "end": 322, "annotation": null}, {"text": ")", "start": 322, "end": 323, "annotation": null}, {"text": "and", "start": 324, "end": 327, "annotation": null}, {"text": "UV", "start": 328, "end": 330, "annotation": null}, {"text": "\u2013", "start": 330, "end": 331, "annotation": null}, {"text": "vis", "start": 331, "end": 334, "annotation": null}, {"text": "techniques", "start": 335, "end": 345, "annotation": null}, {"text": "which", "start": 346, "end": 351, "annotation": null}, {"text": "proved", "start": 352, "end": 358, "annotation": null}, {"text": "the", "start": 359, "end": 362, "annotation": null}, {"text": "formation", "start": 363, "end": 372, "annotation": null}, {"text": "of", "start": 373, "end": 375, "annotation": null}, {"text": "polypyrrole", "start": 376, "end": 387, "annotation": "BASEMAT"}, {"text": ",", "start": 387, "end": 388, "annotation": null}, {"text": "PPy", "start": 389, "end": 392, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 392, "end": 393, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 393, "end": 396, "annotation": "BASEMAT"}, {"text": "and", "start": 397, "end": 400, "annotation": null}, {"text": "the", "start": 401, "end": 404, "annotation": null}, {"text": "interaction", "start": 405, "end": 416, "annotation": null}, {"text": "between", "start": 417, "end": 424, "annotation": null}, {"text": "polypyrrole", "start": 425, "end": 436, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 436, "end": 437, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 437, "end": 440, "annotation": "BASEMAT"}, {"text": "(", "start": 441, "end": 442, "annotation": null}, {"text": "PPy", "start": 442, "end": 445, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 445, "end": 446, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 446, "end": 449, "annotation": "BASEMAT"}, {"text": ")", "start": 449, "end": 450, "annotation": null}, {"text": "hybrid", "start": 451, "end": 457, "annotation": null}, {"text": "with", "start": 458, "end": 462, "annotation": null}, {"text": "CSA", "start": 463, "end": 466, "annotation": "DOPANT"}, {"text": "doping", "start": 467, "end": 473, "annotation": null}, {"text": ".", "start": 473, "end": 474, "annotation": null}], [{"text": "The", "start": 475, "end": 478, "annotation": null}, {"text": "gas", "start": 479, "end": 482, "annotation": null}, {"text": "sensing", "start": 483, "end": 490, "annotation": null}, {"text": "properties", "start": 491, "end": 501, "annotation": null}, {"text": "of", "start": 502, "end": 504, "annotation": null}, {"text": "the", "start": 505, "end": 508, "annotation": null}, {"text": "PPy", "start": 509, "end": 512, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 512, "end": 513, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 513, "end": 516, "annotation": "BASEMAT"}, {"text": "hybrid", "start": 517, "end": 523, "annotation": null}, {"text": "films", "start": 524, "end": 529, "annotation": null}, {"text": "doped", "start": 530, "end": 535, "annotation": null}, {"text": "with", "start": 536, "end": 540, "annotation": null}, {"text": "CSA", "start": 541, "end": 544, "annotation": "DOPANT"}, {"text": "have", "start": 545, "end": 549, "annotation": null}, {"text": "been", "start": 550, "end": 554, "annotation": null}, {"text": "studied", "start": 555, "end": 562, "annotation": null}, {"text": "for", "start": 563, "end": 566, "annotation": null}, {"text": "oxidizing", "start": 567, "end": 576, "annotation": null}, {"text": "(", "start": 577, "end": 578, "annotation": null}, {"text": "NO2", "start": 578, "end": 581, "annotation": null}, {"text": ")", "start": 581, "end": 582, "annotation": null}, {"text": "as", "start": 583, "end": 585, "annotation": null}, {"text": "well", "start": 586, "end": 590, "annotation": null}, {"text": "as", "start": 591, "end": 593, "annotation": null}, {"text": "reducing", "start": 594, "end": 602, "annotation": null}, {"text": "(", "start": 603, "end": 604, "annotation": null}, {"text": "H2S", "start": 604, "end": 607, "annotation": null}, {"text": ",", "start": 607, "end": 608, "annotation": null}, {"text": "NH3", "start": 609, "end": 612, "annotation": null}, {"text": ",", "start": 612, "end": 613, "annotation": null}, {"text": "C2H5OH", "start": 614, "end": 620, "annotation": null}, {"text": "and", "start": 621, "end": 624, "annotation": null}, {"text": "CH3OH", "start": 625, "end": 630, "annotation": null}, {"text": ")", "start": 630, "end": 631, "annotation": null}, {"text": "gases", "start": 632, "end": 637, "annotation": null}, {"text": "at", "start": 638, "end": 640, "annotation": null}, {"text": "room", "start": 641, "end": 645, "annotation": null}, {"text": "temperature", "start": 646, "end": 657, "annotation": null}, {"text": ".", "start": 657, "end": 658, "annotation": null}], [{"text": "We", "start": 659, "end": 661, "annotation": null}, {"text": "demonstrate", "start": 662, "end": 673, "annotation": null}, {"text": "that", "start": 674, "end": 678, "annotation": null}, {"text": "CSA", "start": 679, "end": 682, "annotation": "DOPANT"}, {"text": "(", "start": 683, "end": 684, "annotation": null}, {"text": "30wt.", "start": 684, "end": 689, "annotation": "DOPMODQ"}, {"text": "%", "start": 689, "end": 690, "annotation": "DOPMODQ"}, {"text": ")", "start": 690, "end": 691, "annotation": null}, {"text": "doped", "start": 692, "end": 697, "annotation": null}, {"text": "PPy", "start": 698, "end": 701, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 701, "end": 702, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 702, "end": 705, "annotation": "BASEMAT"}, {"text": "hybrid", "start": 706, "end": 712, "annotation": null}, {"text": "films", "start": 713, "end": 718, "annotation": null}, {"text": "are", "start": 719, "end": 722, "annotation": null}, {"text": "highly", "start": 723, "end": 729, "annotation": null}, {"text": "selective", "start": 730, "end": 739, "annotation": null}, {"text": "to", "start": 740, "end": 742, "annotation": null}, {"text": "NO2", "start": 743, "end": 746, "annotation": null}, {"text": "along", "start": 747, "end": 752, "annotation": null}, {"text": "with", "start": 753, "end": 757, "annotation": null}, {"text": "high", "start": 758, "end": 762, "annotation": null}, {"text": "-", "start": 762, "end": 763, "annotation": null}, {"text": "sensitivity", "start": 763, "end": 774, "annotation": null}, {"text": "at", "start": 775, "end": 777, "annotation": null}, {"text": "low", "start": 778, "end": 781, "annotation": null}, {"text": "concentration", "start": 782, "end": 795, "annotation": null}, {"text": "(", "start": 796, "end": 797, "annotation": null}, {"text": "80", "start": 797, "end": 799, "annotation": null}, {"text": "%", "start": 799, "end": 800, "annotation": null}, {"text": "to", "start": 801, "end": 803, "annotation": null}, {"text": "100", "start": 804, "end": 807, "annotation": null}, {"text": "ppm", "start": 807, "end": 810, "annotation": null}, {"text": ")", "start": 810, "end": 811, "annotation": null}, {"text": ",", "start": 811, "end": 812, "annotation": null}, {"text": "fast", "start": 813, "end": 817, "annotation": null}, {"text": "-", "start": 817, "end": 818, "annotation": null}, {"text": "response", "start": 818, "end": 826, "annotation": null}, {"text": "time", "start": 827, "end": 831, "annotation": null}, {"text": "(", "start": 832, "end": 833, "annotation": null}, {"text": "120s", "start": 833, "end": 837, "annotation": null}, {"text": ")", "start": 837, "end": 838, "annotation": null}, {"text": "and", "start": 839, "end": 842, "annotation": null}, {"text": "better", "start": 843, "end": 849, "annotation": null}, {"text": "stability", "start": 850, "end": 859, "annotation": null}, {"text": ",", "start": 859, "end": 860, "annotation": null}, {"text": "which", "start": 861, "end": 866, "annotation": null}, {"text": "suggested", "start": 867, "end": 876, "annotation": null}, {"text": "that", "start": 877, "end": 881, "annotation": null}, {"text": "the", "start": 882, "end": 885, "annotation": null}, {"text": "CSA", "start": 886, "end": 889, "annotation": "DOPANT"}, {"text": "(", "start": 890, "end": 891, "annotation": null}, {"text": "30", "start": 891, "end": 893, "annotation": "DOPMODQ"}, {"text": "%", "start": 893, "end": 894, "annotation": "DOPMODQ"}, {"text": ")", "start": 894, "end": 895, "annotation": null}, {"text": "doped", "start": 896, "end": 901, "annotation": null}, {"text": "PPy", "start": 902, "end": 905, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 905, "end": 906, "annotation": "BASEMAT"}, {"text": "ZnO", "start": 906, "end": 909, "annotation": "BASEMAT"}, {"text": "hybrid", "start": 910, "end": 916, "annotation": null}, {"text": "films", "start": 917, "end": 922, "annotation": null}, {"text": "are", "start": 923, "end": 926, "annotation": null}, {"text": "potential", "start": 927, "end": 936, "annotation": null}, {"text": "candidate", "start": 937, "end": 946, "annotation": null}, {"text": "for", "start": 947, "end": 950, "annotation": null}, {"text": "NO2", "start": 951, "end": 954, "annotation": null}, {"text": "detection", "start": 955, "end": 964, "annotation": null}, {"text": "at", "start": 965, "end": 967, "annotation": null}, {"text": "room", "start": 968, "end": 972, "annotation": null}, {"text": "temperature", "start": 973, "end": 984, "annotation": null}, {"text": ".", "start": 984, "end": 985, "annotation": null}]], "meta": {"doi": "10.1016/j.synthmet.2012.07.002"}} +{"remark": "doping_annt2", "text": "High refractive index hybrid coatings were prepared by directly incorporating anatase titania (TiO2) nanocrystals (NCs) into (3-glycidyloxypropyl) trimethoxysilane organic silica sol followed by a sol\u2013gel process. The anatase TiO2 NCs were prepared by controlling hydrolysis of titanium alkoxide in acid solution, and they show a narrow size distribution centered at about 4nm and very good dispersibility in the silica sol. After doped with TiO2, the coatings possessed excellent surface smoothness and high optical transparency in the visible range. The refractive index at 632.8nm increased from 1.502 to 1.663 as the TiO2 weight content goes from 10% to 50%. Besides, the hybrid coatings also had good thermal stability and high hardness of 3H, which have promising application in antireflection coatings.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "High", "start": 0, "end": 4, "annotation": null}, {"text": "refractive", "start": 5, "end": 15, "annotation": null}, {"text": "index", "start": 16, "end": 21, "annotation": null}, {"text": "hybrid", "start": 22, "end": 28, "annotation": null}, {"text": "coatings", "start": 29, "end": 37, "annotation": null}, {"text": "were", "start": 38, "end": 42, "annotation": null}, {"text": "prepared", "start": 43, "end": 51, "annotation": null}, {"text": "by", "start": 52, "end": 54, "annotation": null}, {"text": "directly", "start": 55, "end": 63, "annotation": null}, {"text": "incorporating", "start": 64, "end": 77, "annotation": null}, {"text": "anatase", "start": 78, "end": 85, "annotation": null}, {"text": "titania", "start": 86, "end": 93, "annotation": "DOPANT"}, {"text": "(", "start": 94, "end": 95, "annotation": null}, {"text": "TiO2", "start": 95, "end": 99, "annotation": "DOPANT"}, {"text": ")", "start": 99, "end": 100, "annotation": null}, {"text": "nanocrystals", "start": 101, "end": 113, "annotation": null}, {"text": "(", "start": 114, "end": 115, "annotation": null}, {"text": "NCs", "start": 115, "end": 118, "annotation": null}, {"text": ")", "start": 118, "end": 119, "annotation": null}, {"text": "into", "start": 120, "end": 124, "annotation": null}, {"text": "(", "start": 125, "end": 126, "annotation": null}, {"text": "3-glycidyloxypropyl", "start": 126, "end": 145, "annotation": "BASEMAT"}, {"text": ")", "start": 145, "end": 146, "annotation": null}, {"text": "trimethoxysilane", "start": 147, "end": 163, "annotation": "BASEMAT"}, {"text": "organic", "start": 164, "end": 171, "annotation": null}, {"text": "silica", "start": 172, "end": 178, "annotation": null}, {"text": "sol", "start": 179, "end": 182, "annotation": null}, {"text": "followed", "start": 183, "end": 191, "annotation": null}, {"text": "by", "start": 192, "end": 194, "annotation": null}, {"text": "a", "start": 195, "end": 196, "annotation": null}, {"text": "sol", "start": 197, "end": 200, "annotation": null}, {"text": "\u2013", "start": 200, "end": 201, "annotation": null}, {"text": "gel", "start": 201, "end": 204, "annotation": null}, {"text": "process", "start": 205, "end": 212, "annotation": null}, {"text": ".", "start": 212, "end": 213, "annotation": null}], [{"text": "The", "start": 214, "end": 217, "annotation": null}, {"text": "anatase", "start": 218, "end": 225, "annotation": null}, {"text": "TiO2", "start": 226, "end": 230, "annotation": null}, {"text": "NCs", "start": 231, "end": 234, "annotation": null}, {"text": "were", "start": 235, "end": 239, "annotation": null}, {"text": "prepared", "start": 240, "end": 248, "annotation": null}, {"text": "by", "start": 249, "end": 251, "annotation": null}, {"text": "controlling", "start": 252, "end": 263, "annotation": null}, {"text": "hydrolysis", "start": 264, "end": 274, "annotation": null}, {"text": "of", "start": 275, "end": 277, "annotation": null}, {"text": "titanium", "start": 278, "end": 286, "annotation": null}, {"text": "alkoxide", "start": 287, "end": 295, "annotation": null}, {"text": "in", "start": 296, "end": 298, "annotation": null}, {"text": "acid", "start": 299, "end": 303, "annotation": null}, {"text": "solution", "start": 304, "end": 312, "annotation": null}, {"text": ",", "start": 312, "end": 313, "annotation": null}, {"text": "and", "start": 314, "end": 317, "annotation": null}, {"text": "they", "start": 318, "end": 322, "annotation": null}, {"text": "show", "start": 323, "end": 327, "annotation": null}, {"text": "a", "start": 328, "end": 329, "annotation": null}, {"text": "narrow", "start": 330, "end": 336, "annotation": null}, {"text": "size", "start": 337, "end": 341, "annotation": null}, {"text": "distribution", "start": 342, "end": 354, "annotation": null}, {"text": "centered", "start": 355, "end": 363, "annotation": null}, {"text": "at", "start": 364, "end": 366, "annotation": null}, {"text": "about", "start": 367, "end": 372, "annotation": null}, {"text": "4", "start": 373, "end": 374, "annotation": null}, {"text": "nm", "start": 374, "end": 376, "annotation": null}, {"text": "and", "start": 377, "end": 380, "annotation": null}, {"text": "very", "start": 381, "end": 385, "annotation": null}, {"text": "good", "start": 386, "end": 390, "annotation": null}, {"text": "dispersibility", "start": 391, "end": 405, "annotation": null}, {"text": "in", "start": 406, "end": 408, "annotation": null}, {"text": "the", "start": 409, "end": 412, "annotation": null}, {"text": "silica", "start": 413, "end": 419, "annotation": null}, {"text": "sol", "start": 420, "end": 423, "annotation": null}, {"text": ".", "start": 423, "end": 424, "annotation": null}], [{"text": "After", "start": 425, "end": 430, "annotation": null}, {"text": "doped", "start": 431, "end": 436, "annotation": null}, {"text": "with", "start": 437, "end": 441, "annotation": null}, {"text": "TiO2", "start": 442, "end": 446, "annotation": "DOPANT"}, {"text": ",", "start": 446, "end": 447, "annotation": null}, {"text": "the", "start": 448, "end": 451, "annotation": null}, {"text": "coatings", "start": 452, "end": 460, "annotation": "BASEMAT"}, {"text": "possessed", "start": 461, "end": 470, "annotation": null}, {"text": "excellent", "start": 471, "end": 480, "annotation": null}, {"text": "surface", "start": 481, "end": 488, "annotation": null}, {"text": "smoothness", "start": 489, "end": 499, "annotation": null}, {"text": "and", "start": 500, "end": 503, "annotation": null}, {"text": "high", "start": 504, "end": 508, "annotation": null}, {"text": "optical", "start": 509, "end": 516, "annotation": null}, {"text": "transparency", "start": 517, "end": 529, "annotation": null}, {"text": "in", "start": 530, "end": 532, "annotation": null}, {"text": "the", "start": 533, "end": 536, "annotation": null}, {"text": "visible", "start": 537, "end": 544, "annotation": null}, {"text": "range", "start": 545, "end": 550, "annotation": null}, {"text": ".", "start": 550, "end": 551, "annotation": null}], [{"text": "The", "start": 552, "end": 555, "annotation": null}, {"text": "refractive", "start": 556, "end": 566, "annotation": null}, {"text": "index", "start": 567, "end": 572, "annotation": null}, {"text": "at", "start": 573, "end": 575, "annotation": null}, {"text": "632.8", "start": 576, "end": 581, "annotation": null}, {"text": "nm", "start": 581, "end": 583, "annotation": null}, {"text": "increased", "start": 584, "end": 593, "annotation": null}, {"text": "from", "start": 594, "end": 598, "annotation": null}, {"text": "1.502", "start": 599, "end": 604, "annotation": null}, {"text": "to", "start": 605, "end": 607, "annotation": null}, {"text": "1.663", "start": 608, "end": 613, "annotation": null}, {"text": "as", "start": 614, "end": 616, "annotation": null}, {"text": "the", "start": 617, "end": 620, "annotation": null}, {"text": "TiO2", "start": 621, "end": 625, "annotation": "DOPANT"}, {"text": "weight", "start": 626, "end": 632, "annotation": null}, {"text": "content", "start": 633, "end": 640, "annotation": null}, {"text": "goes", "start": 641, "end": 645, "annotation": null}, {"text": "from", "start": 646, "end": 650, "annotation": null}, {"text": "10", "start": 651, "end": 653, "annotation": "DOPMODQ"}, {"text": "%", "start": 653, "end": 654, "annotation": "DOPMODQ"}, {"text": "to", "start": 655, "end": 657, "annotation": null}, {"text": "50", "start": 658, "end": 660, "annotation": "DOPMODQ"}, {"text": "%", "start": 660, "end": 661, "annotation": "DOPMODQ"}, {"text": ".", "start": 661, "end": 662, "annotation": null}], [{"text": "Besides", "start": 663, "end": 670, "annotation": null}, {"text": ",", "start": 670, "end": 671, "annotation": null}, {"text": "the", "start": 672, "end": 675, "annotation": null}, {"text": "hybrid", "start": 676, "end": 682, "annotation": null}, {"text": "coatings", "start": 683, "end": 691, "annotation": null}, {"text": "also", "start": 692, "end": 696, "annotation": null}, {"text": "had", "start": 697, "end": 700, "annotation": null}, {"text": "good", "start": 701, "end": 705, "annotation": null}, {"text": "thermal", "start": 706, "end": 713, "annotation": null}, {"text": "stability", "start": 714, "end": 723, "annotation": null}, {"text": "and", "start": 724, "end": 727, "annotation": null}, {"text": "high", "start": 728, "end": 732, "annotation": null}, {"text": "hardness", "start": 733, "end": 741, "annotation": null}, {"text": "of", "start": 742, "end": 744, "annotation": null}, {"text": "3H", "start": 745, "end": 747, "annotation": null}, {"text": ",", "start": 747, "end": 748, "annotation": null}, {"text": "which", "start": 749, "end": 754, "annotation": null}, {"text": "have", "start": 755, "end": 759, "annotation": null}, {"text": "promising", "start": 760, "end": 769, "annotation": null}, {"text": "application", "start": 770, "end": 781, "annotation": null}, {"text": "in", "start": 782, "end": 784, "annotation": null}, {"text": "antireflection", "start": 785, "end": 799, "annotation": null}, {"text": "coatings", "start": 800, "end": 808, "annotation": null}, {"text": ".", "start": 808, "end": 809, "annotation": null}]], "meta": {"doi": "10.1016/j.colsurfa.2008.06.026"}} +{"text": "Nb-doped rutile produced by sintering at 1400\u00b0C in an air atmosphere led to a monotonic increase of the shortest \u03c4 1 lifetime of the major spectral component from 0.17 to 0.25 ns in the 22Na positron annihilation lifetime spectrum as the Nb doping level was progressively increased to 0.12 formula units, at which stage TiNb 2O 7 was observed as a second phase. The charge compensators for Nb 5+ substituting for Ti 4+ are indicated as cation vacancies on the basis of the increase of \u03c4 1.", "meta": {"doi": "10.1111/j.1551-2916.2008.02679.x"}, "_input_hash": 387879197, "_task_hash": 2039813015, "tokens": [[{"text": "Nb", "start": 0, "end": 2, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 3, "end": 4, "id": 1, "annotation": null}, {"text": "doped", "start": 5, "end": 10, "id": 2, "annotation": null}, {"text": "rutile", "start": 11, "end": 17, "id": 3, "annotation": "BASEMAT"}, {"text": "produced", "start": 18, "end": 26, "id": 4, "annotation": null}, {"text": "by", "start": 27, "end": 29, "id": 5, "annotation": null}, {"text": "sintering", "start": 30, "end": 39, "id": 6, "annotation": null}, {"text": "at", "start": 40, "end": 42, "id": 7, "annotation": null}, {"text": "1400", "start": 43, "end": 47, "id": 8, "annotation": null}, {"text": "\u00b0", "start": 48, "end": 49, "id": 9, "annotation": null}, {"text": "C", "start": 50, "end": 51, "id": 10, "annotation": null}, {"text": "in", "start": 52, "end": 54, "id": 11, "annotation": null}, {"text": "an", "start": 55, "end": 57, "id": 12, "annotation": null}, {"text": "air", "start": 58, "end": 61, "id": 13, "annotation": null}, {"text": "atmosphere", "start": 62, "end": 72, "id": 14, "annotation": null}, {"text": "led", "start": 73, "end": 76, "id": 15, "annotation": null}, {"text": "to", "start": 77, "end": 79, "id": 16, "annotation": null}, {"text": "a", "start": 80, "end": 81, "id": 17, "annotation": null}, {"text": "monotonic", "start": 82, "end": 91, "id": 18, "annotation": null}, {"text": "increase", "start": 92, "end": 100, "id": 19, "annotation": null}, {"text": "of", "start": 101, "end": 103, "id": 20, "annotation": null}, {"text": "the", "start": 104, "end": 107, "id": 21, "annotation": null}, {"text": "shortest", "start": 108, "end": 116, "id": 22, "annotation": null}, {"text": "\u03c4", "start": 117, "end": 118, "id": 23, "annotation": null}, {"text": "1", "start": 119, "end": 120, "id": 24, "annotation": null}, {"text": "lifetime", "start": 121, "end": 129, "id": 25, "annotation": null}, {"text": "of", "start": 130, "end": 132, "id": 26, "annotation": null}, {"text": "the", "start": 133, "end": 136, "id": 27, "annotation": null}, {"text": "major", "start": 137, "end": 142, "id": 28, "annotation": null}, {"text": "spectral", "start": 143, "end": 151, "id": 29, "annotation": null}, {"text": "component", "start": 152, "end": 161, "id": 30, "annotation": null}, {"text": "from", "start": 162, "end": 166, "id": 31, "annotation": null}, {"text": "0.17", "start": 167, "end": 171, "id": 32, "annotation": null}, {"text": "to", "start": 172, "end": 174, "id": 33, "annotation": null}, {"text": "0.25", "start": 175, "end": 179, "id": 34, "annotation": null}, {"text": "ns", "start": 180, "end": 182, "id": 35, "annotation": null}, {"text": "in", "start": 183, "end": 185, "id": 36, "annotation": null}, {"text": "the", "start": 186, "end": 189, "id": 37, "annotation": null}, {"text": "22Na", "start": 190, "end": 194, "id": 38, "annotation": null}, {"text": "positron", "start": 195, "end": 203, "id": 39, "annotation": null}, {"text": "annihilation", "start": 204, "end": 216, "id": 40, "annotation": null}, {"text": "lifetime", "start": 217, "end": 225, "id": 41, "annotation": null}, {"text": "spectrum", "start": 226, "end": 234, "id": 42, "annotation": null}, {"text": "as", "start": 235, "end": 237, "id": 43, "annotation": null}, {"text": "the", "start": 238, "end": 241, "id": 44, "annotation": null}, {"text": "Nb", "start": 242, "end": 244, "id": 45, "annotation": "DOPANT"}, {"text": "doping", "start": 245, "end": 251, "id": 46, "annotation": null}, {"text": "level", "start": 252, "end": 257, "id": 47, "annotation": null}, {"text": "was", "start": 258, "end": 261, "id": 48, "annotation": null}, {"text": "progressively", "start": 262, "end": 275, "id": 49, "annotation": null}, {"text": "increased", "start": 276, "end": 285, "id": 50, "annotation": null}, {"text": "to", "start": 286, "end": 288, "id": 51, "annotation": null}, {"text": "0.12", "start": 289, "end": 293, "id": 52, "annotation": "DOPMODQ"}, {"text": "formula", "start": 294, "end": 301, "id": 53, "annotation": "DOPMODQ"}, {"text": "units", "start": 302, "end": 307, "id": 54, "annotation": "DOPMODQ"}, {"text": ",", "start": 308, "end": 309, "id": 55, "annotation": null}, {"text": "at", "start": 310, "end": 312, "id": 56, "annotation": null}, {"text": "which", "start": 313, "end": 318, "id": 57, "annotation": null}, {"text": "stage", "start": 319, "end": 324, "id": 58, "annotation": null}, {"text": "TiNb", "start": 325, "end": 329, "id": 59, "annotation": null}, {"text": "2O", "start": 330, "end": 332, "id": 60, "annotation": null}, {"text": "7", "start": 333, "end": 334, "id": 61, "annotation": null}, {"text": "was", "start": 335, "end": 338, "id": 62, "annotation": null}, {"text": "observed", "start": 339, "end": 347, "id": 63, "annotation": null}, {"text": "as", "start": 348, "end": 350, "id": 64, "annotation": null}, {"text": "a", "start": 351, "end": 352, "id": 65, "annotation": null}, {"text": "second", "start": 353, "end": 359, "id": 66, "annotation": null}, {"text": "phase", "start": 360, "end": 365, "id": 67, "annotation": null}, {"text": ".", "start": 366, "end": 367, "id": 68, "annotation": null}], [{"text": "The", "start": 368, "end": 371, "id": 69, "annotation": null}, {"text": "charge", "start": 372, "end": 378, "id": 70, "annotation": null}, {"text": "compensators", "start": 379, "end": 391, "id": 71, "annotation": null}, {"text": "for", "start": 392, "end": 395, "id": 72, "annotation": null}, {"text": "Nb", "start": 396, "end": 398, "id": 73, "annotation": null}, {"text": "5", "start": 399, "end": 400, "id": 74, "annotation": null}, {"text": "+", "start": 401, "end": 402, "id": 75, "annotation": null}, {"text": "substituting", "start": 403, "end": 415, "id": 76, "annotation": null}, {"text": "for", "start": 416, "end": 419, "id": 77, "annotation": null}, {"text": "Ti", "start": 420, "end": 422, "id": 78, "annotation": null}, {"text": "4", "start": 423, "end": 424, "id": 79, "annotation": null}, {"text": "+", "start": 425, "end": 426, "id": 80, "annotation": null}, {"text": "are", "start": 427, "end": 430, "id": 81, "annotation": null}, {"text": "indicated", "start": 431, "end": 440, "id": 82, "annotation": null}, {"text": "as", "start": 441, "end": 443, "id": 83, "annotation": null}, {"text": "cation", "start": 444, "end": 450, "id": 84, "annotation": null}, {"text": "vacancies", "start": 451, "end": 460, "id": 85, "annotation": null}, {"text": "on", "start": 461, "end": 463, "id": 86, "annotation": null}, {"text": "the", "start": 464, "end": 467, "id": 87, "annotation": null}, {"text": "basis", "start": 468, "end": 473, "id": 88, "annotation": null}, {"text": "of", "start": 474, "end": 476, "id": 89, "annotation": null}, {"text": "the", "start": 477, "end": 480, "id": 90, "annotation": null}, {"text": "increase", "start": 481, "end": 489, "id": 91, "annotation": null}, {"text": "of", "start": 490, "end": 492, "id": 92, "annotation": null}, {"text": "\u03c4", "start": 493, "end": 494, "id": 93, "annotation": null}, {"text": "1", "start": 495, "end": 496, "id": 94, "annotation": null}, {"text": ".", "start": 497, "end": 498, "id": 95, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Carefully prepared bulk ceramic specimens of In 2 O 3 and Sn-doped In 2 O 3 (ITO) were analysed with x-ray and UV photoelectron spectroscopy before and after heat treatment in vacuum and oxygen atmosphere. The results on ex situ prepared ceramic specimens were shown to be comparable to those of in situ deposited-measured thin films in terms of core levels, Fermi levels and ionization potentials. This suggests a viable path for rapid synthesis and screening of surface electronic-defect properties for other transparent conducting oxides (TCO) materials. A strong correlation exists between the surface electronic-defect structure of In 2 O 3 -based TCOs and their underlying electronic-defect structure, owing to the unique crystal-defect properties of the bixbyite structure. This leads to formation of a chemical depletion at the surface and the formation of a peroxide surface species for higher preparation temperatures. The results are discussed with respect to the use of ITO as hole injection electrode in organic light emitting devices.", "meta": {"doi": "10.1088/0022-3727/39/18/006"}, "_input_hash": 1188328900, "_task_hash": -527008589, "tokens": [[{"text": "Carefully", "start": 0, "end": 9, "id": 0, "annotation": null}, {"text": "prepared", "start": 10, "end": 18, "id": 1, "annotation": null}, {"text": "bulk", "start": 19, "end": 23, "id": 2, "annotation": null}, {"text": "ceramic", "start": 24, "end": 31, "id": 3, "annotation": null}, {"text": "specimens", "start": 32, "end": 41, "id": 4, "annotation": null}, {"text": "of", "start": 42, "end": 44, "id": 5, "annotation": null}, {"text": "In", "start": 45, "end": 47, "id": 6, "annotation": null}, {"text": "2", "start": 48, "end": 49, "id": 7, "annotation": null}, {"text": "O", "start": 50, "end": 51, "id": 8, "annotation": null}, {"text": "3", "start": 52, "end": 53, "id": 9, "annotation": null}, {"text": "and", "start": 54, "end": 57, "id": 10, "annotation": null}, {"text": "Sn", "start": 58, "end": 60, "id": 11, "annotation": "DOPANT"}, {"text": "-", "start": 61, "end": 62, "id": 12, "annotation": null}, {"text": "doped", "start": 63, "end": 68, "id": 13, "annotation": null}, {"text": "In", "start": 69, "end": 71, "id": 14, "annotation": "BASEMAT"}, {"text": "2", "start": 72, "end": 73, "id": 15, "annotation": "BASEMAT"}, {"text": "O", "start": 74, "end": 75, "id": 16, "annotation": "BASEMAT"}, {"text": "3", "start": 76, "end": 77, "id": 17, "annotation": "BASEMAT"}, {"text": "(", "start": 78, "end": 79, "id": 18, "annotation": null}, {"text": "ITO", "start": 80, "end": 83, "id": 19, "annotation": null}, {"text": ")", "start": 84, "end": 85, "id": 20, "annotation": null}, {"text": "were", "start": 86, "end": 90, "id": 21, "annotation": null}, {"text": "analysed", "start": 91, "end": 99, "id": 22, "annotation": null}, {"text": "with", "start": 100, "end": 104, "id": 23, "annotation": null}, {"text": "x", "start": 105, "end": 106, "id": 24, "annotation": null}, {"text": "-", "start": 107, "end": 108, "id": 25, "annotation": null}, {"text": "ray", "start": 109, "end": 112, "id": 26, "annotation": null}, {"text": "and", "start": 113, "end": 116, "id": 27, "annotation": null}, {"text": "UV", "start": 117, "end": 119, "id": 28, "annotation": null}, {"text": "photoelectron", "start": 120, "end": 133, "id": 29, "annotation": null}, {"text": "spectroscopy", "start": 134, "end": 146, "id": 30, "annotation": null}, {"text": "before", "start": 147, "end": 153, "id": 31, "annotation": null}, {"text": "and", "start": 154, "end": 157, "id": 32, "annotation": null}, {"text": "after", "start": 158, "end": 163, "id": 33, "annotation": null}, {"text": "heat", "start": 164, "end": 168, "id": 34, "annotation": null}, {"text": "treatment", "start": 169, "end": 178, "id": 35, "annotation": null}, {"text": "in", "start": 179, "end": 181, "id": 36, "annotation": null}, {"text": "vacuum", "start": 182, "end": 188, "id": 37, "annotation": null}, {"text": "and", "start": 189, "end": 192, "id": 38, "annotation": null}, {"text": "oxygen", "start": 193, "end": 199, "id": 39, "annotation": null}, {"text": "atmosphere", "start": 200, "end": 210, "id": 40, "annotation": null}, {"text": ".", "start": 211, "end": 212, "id": 41, "annotation": null}], [{"text": "The", "start": 213, "end": 216, "id": 42, "annotation": null}, {"text": "results", "start": 217, "end": 224, "id": 43, "annotation": null}, {"text": "on", "start": 225, "end": 227, "id": 44, "annotation": null}, {"text": "ex", "start": 228, "end": 230, "id": 45, "annotation": null}, {"text": "situ", "start": 231, "end": 235, "id": 46, "annotation": null}, {"text": "prepared", "start": 236, "end": 244, "id": 47, "annotation": null}, {"text": "ceramic", "start": 245, "end": 252, "id": 48, "annotation": null}, {"text": "specimens", "start": 253, "end": 262, "id": 49, "annotation": null}, {"text": "were", "start": 263, "end": 267, "id": 50, "annotation": null}, {"text": "shown", "start": 268, "end": 273, "id": 51, "annotation": null}, {"text": "to", "start": 274, "end": 276, "id": 52, "annotation": null}, {"text": "be", "start": 277, "end": 279, "id": 53, "annotation": null}, {"text": "comparable", "start": 280, "end": 290, "id": 54, "annotation": null}, {"text": "to", "start": 291, "end": 293, "id": 55, "annotation": null}, {"text": "those", "start": 294, "end": 299, "id": 56, "annotation": null}, {"text": "of", "start": 300, "end": 302, "id": 57, "annotation": null}, {"text": "in", "start": 303, "end": 305, "id": 58, "annotation": null}, {"text": "situ", "start": 306, "end": 310, "id": 59, "annotation": null}, {"text": "deposited", "start": 311, "end": 320, "id": 60, "annotation": null}, {"text": "-", "start": 321, "end": 322, "id": 61, "annotation": null}, {"text": "measured", "start": 323, "end": 331, "id": 62, "annotation": null}, {"text": "thin", "start": 332, "end": 336, "id": 63, "annotation": null}, {"text": "films", "start": 337, "end": 342, "id": 64, "annotation": null}, {"text": "in", "start": 343, "end": 345, "id": 65, "annotation": null}, {"text": "terms", "start": 346, "end": 351, "id": 66, "annotation": null}, {"text": "of", "start": 352, "end": 354, "id": 67, "annotation": null}, {"text": "core", "start": 355, "end": 359, "id": 68, "annotation": null}, {"text": "levels", "start": 360, "end": 366, "id": 69, "annotation": null}, {"text": ",", "start": 367, "end": 368, "id": 70, "annotation": null}, {"text": "Fermi", "start": 369, "end": 374, "id": 71, "annotation": null}, {"text": "levels", "start": 375, "end": 381, "id": 72, "annotation": null}, {"text": "and", "start": 382, "end": 385, "id": 73, "annotation": null}, {"text": "ionization", "start": 386, "end": 396, "id": 74, "annotation": null}, {"text": "potentials", "start": 397, "end": 407, "id": 75, "annotation": null}, {"text": ".", "start": 408, "end": 409, "id": 76, "annotation": null}], [{"text": "This", "start": 410, "end": 414, "id": 77, "annotation": null}, {"text": "suggests", "start": 415, "end": 423, "id": 78, "annotation": null}, {"text": "a", "start": 424, "end": 425, "id": 79, "annotation": null}, {"text": "viable", "start": 426, "end": 432, "id": 80, "annotation": null}, {"text": "path", "start": 433, "end": 437, "id": 81, "annotation": null}, {"text": "for", "start": 438, "end": 441, "id": 82, "annotation": null}, {"text": "rapid", "start": 442, "end": 447, "id": 83, "annotation": null}, {"text": "synthesis", "start": 448, "end": 457, "id": 84, "annotation": null}, {"text": "and", "start": 458, "end": 461, "id": 85, "annotation": null}, {"text": "screening", "start": 462, "end": 471, "id": 86, "annotation": null}, {"text": "of", "start": 472, "end": 474, "id": 87, "annotation": null}, {"text": "surface", "start": 475, "end": 482, "id": 88, "annotation": null}, {"text": "electronic", "start": 483, "end": 493, "id": 89, "annotation": null}, {"text": "-", "start": 494, "end": 495, "id": 90, "annotation": null}, {"text": "defect", "start": 496, "end": 502, "id": 91, "annotation": null}, {"text": "properties", "start": 503, "end": 513, "id": 92, "annotation": null}, {"text": "for", "start": 514, "end": 517, "id": 93, "annotation": null}, {"text": "other", "start": 518, "end": 523, "id": 94, "annotation": null}, {"text": "transparent", "start": 524, "end": 535, "id": 95, "annotation": null}, {"text": "conducting", "start": 536, "end": 546, "id": 96, "annotation": null}, {"text": "oxides", "start": 547, "end": 553, "id": 97, "annotation": null}, {"text": "(", "start": 554, "end": 555, "id": 98, "annotation": null}, {"text": "TCO", "start": 556, "end": 559, "id": 99, "annotation": null}, {"text": ")", "start": 560, "end": 561, "id": 100, "annotation": null}, {"text": "materials", "start": 562, "end": 571, "id": 101, "annotation": null}, {"text": ".", "start": 572, "end": 573, "id": 102, "annotation": null}], [{"text": "A", "start": 574, "end": 575, "id": 103, "annotation": null}, {"text": "strong", "start": 576, "end": 582, "id": 104, "annotation": null}, {"text": "correlation", "start": 583, "end": 594, "id": 105, "annotation": null}, {"text": "exists", "start": 595, "end": 601, "id": 106, "annotation": null}, {"text": "between", "start": 602, "end": 609, "id": 107, "annotation": null}, {"text": "the", "start": 610, "end": 613, "id": 108, "annotation": null}, {"text": "surface", "start": 614, "end": 621, "id": 109, "annotation": null}, {"text": "electronic", "start": 622, "end": 632, "id": 110, "annotation": null}, {"text": "-", "start": 633, "end": 634, "id": 111, "annotation": null}, {"text": "defect", "start": 635, "end": 641, "id": 112, "annotation": null}, {"text": "structure", "start": 642, "end": 651, "id": 113, "annotation": null}, {"text": "of", "start": 652, "end": 654, "id": 114, "annotation": null}, {"text": "In", "start": 655, "end": 657, "id": 115, "annotation": null}, {"text": "2", "start": 658, "end": 659, "id": 116, "annotation": null}, {"text": "O", "start": 660, "end": 661, "id": 117, "annotation": null}, {"text": "3", "start": 662, "end": 663, "id": 118, "annotation": null}, {"text": "-based", "start": 664, "end": 670, "id": 119, "annotation": null}, {"text": "TCOs", "start": 671, "end": 675, "id": 120, "annotation": null}, {"text": "and", "start": 676, "end": 679, "id": 121, "annotation": null}, {"text": "their", "start": 680, "end": 685, "id": 122, "annotation": null}, {"text": "underlying", "start": 686, "end": 696, "id": 123, "annotation": null}, {"text": "electronic", "start": 697, "end": 707, "id": 124, "annotation": null}, {"text": "-", "start": 708, "end": 709, "id": 125, "annotation": null}, {"text": "defect", "start": 710, "end": 716, "id": 126, "annotation": null}, {"text": "structure", "start": 717, "end": 726, "id": 127, "annotation": null}, {"text": ",", "start": 727, "end": 728, "id": 128, "annotation": null}, {"text": "owing", "start": 729, "end": 734, "id": 129, "annotation": null}, {"text": "to", "start": 735, "end": 737, "id": 130, "annotation": null}, {"text": "the", "start": 738, "end": 741, "id": 131, "annotation": null}, {"text": "unique", "start": 742, "end": 748, "id": 132, "annotation": null}, {"text": "crystal", "start": 749, "end": 756, "id": 133, "annotation": null}, {"text": "-", "start": 757, "end": 758, "id": 134, "annotation": null}, {"text": "defect", "start": 759, "end": 765, "id": 135, "annotation": null}, {"text": "properties", "start": 766, "end": 776, "id": 136, "annotation": null}, {"text": "of", "start": 777, "end": 779, "id": 137, "annotation": null}, {"text": "the", "start": 780, "end": 783, "id": 138, "annotation": null}, {"text": "bixbyite", "start": 784, "end": 792, "id": 139, "annotation": null}, {"text": "structure", "start": 793, "end": 802, "id": 140, "annotation": null}, {"text": ".", "start": 803, "end": 804, "id": 141, "annotation": null}], [{"text": "This", "start": 805, "end": 809, "id": 142, "annotation": null}, {"text": "leads", "start": 810, "end": 815, "id": 143, "annotation": null}, {"text": "to", "start": 816, "end": 818, "id": 144, "annotation": null}, {"text": "formation", "start": 819, "end": 828, "id": 145, "annotation": null}, {"text": "of", "start": 829, "end": 831, "id": 146, "annotation": null}, {"text": "a", "start": 832, "end": 833, "id": 147, "annotation": null}, {"text": "chemical", "start": 834, "end": 842, "id": 148, "annotation": null}, {"text": "depletion", "start": 843, "end": 852, "id": 149, "annotation": null}, {"text": "at", "start": 853, "end": 855, "id": 150, "annotation": null}, {"text": "the", "start": 856, "end": 859, "id": 151, "annotation": null}, {"text": "surface", "start": 860, "end": 867, "id": 152, "annotation": null}, {"text": "and", "start": 868, "end": 871, "id": 153, "annotation": null}, {"text": "the", "start": 872, "end": 875, "id": 154, "annotation": null}, {"text": "formation", "start": 876, "end": 885, "id": 155, "annotation": null}, {"text": "of", "start": 886, "end": 888, "id": 156, "annotation": null}, {"text": "a", "start": 889, "end": 890, "id": 157, "annotation": null}, {"text": "peroxide", "start": 891, "end": 899, "id": 158, "annotation": null}, {"text": "surface", "start": 900, "end": 907, "id": 159, "annotation": null}, {"text": "species", "start": 908, "end": 915, "id": 160, "annotation": null}, {"text": "for", "start": 916, "end": 919, "id": 161, "annotation": null}, {"text": "higher", "start": 920, "end": 926, "id": 162, "annotation": null}, {"text": "preparation", "start": 927, "end": 938, "id": 163, "annotation": null}, {"text": "temperatures", "start": 939, "end": 951, "id": 164, "annotation": null}, {"text": ".", "start": 952, "end": 953, "id": 165, "annotation": null}], [{"text": "The", "start": 954, "end": 957, "id": 166, "annotation": null}, {"text": "results", "start": 958, "end": 965, "id": 167, "annotation": null}, {"text": "are", "start": 966, "end": 969, "id": 168, "annotation": null}, {"text": "discussed", "start": 970, "end": 979, "id": 169, "annotation": null}, {"text": "with", "start": 980, "end": 984, "id": 170, "annotation": null}, {"text": "respect", "start": 985, "end": 992, "id": 171, "annotation": null}, {"text": "to", "start": 993, "end": 995, "id": 172, "annotation": null}, {"text": "the", "start": 996, "end": 999, "id": 173, "annotation": null}, {"text": "use", "start": 1000, "end": 1003, "id": 174, "annotation": null}, {"text": "of", "start": 1004, "end": 1006, "id": 175, "annotation": null}, {"text": "ITO", "start": 1007, "end": 1010, "id": 176, "annotation": null}, {"text": "as", "start": 1011, "end": 1013, "id": 177, "annotation": null}, {"text": "hole", "start": 1014, "end": 1018, "id": 178, "annotation": null}, {"text": "injection", "start": 1019, "end": 1028, "id": 179, "annotation": null}, {"text": "electrode", "start": 1029, "end": 1038, "id": 180, "annotation": null}, {"text": "in", "start": 1039, "end": 1041, "id": 181, "annotation": null}, {"text": "organic", "start": 1042, "end": 1049, "id": 182, "annotation": null}, {"text": "light", "start": 1050, "end": 1055, "id": 183, "annotation": null}, {"text": "emitting", "start": 1056, "end": 1064, "id": 184, "annotation": null}, {"text": "devices", "start": 1065, "end": 1072, "id": 185, "annotation": null}, {"text": ".", "start": 1073, "end": 1074, "id": 186, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "We report a facile and efficient approach to prepare bimetallically doped Ag-M-carbon composites. Only if Ag nanoparticles (NPs) are embedded first into the submicrometer carbon spheres (CSs) can the second metal M (Pd, Pt, and Au) also be introduced into their interior. Especially at not too high concentrations of M-precursor ions (CM-ion), the locations and number density of the resulting NPs mirror those of the Ag NPs in/on the CSs. Therefore, the controllability of the Ag predoping allows control over the location dependent distribution of the NPs in the resulting bimetallic composites. The size and shape of the resulting NPs in the composites are largely controlled by the concentration CM-ion. The different shapes include solid core-shell and hollow NPs, as well as hedgehog-like hollow structures and dendritic aggregates. The nucleation and growth mechanisms, which differ between the different metals M, are discussed to explain the morphologies and the location dependence of the NPs in/on the CSs. \u00a9 2010 American Chemical Society.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "report", "start": 3, "end": 9, "annotation": null}, {"text": "a", "start": 10, "end": 11, "annotation": null}, {"text": "facile", "start": 12, "end": 18, "annotation": null}, {"text": "and", "start": 19, "end": 22, "annotation": null}, {"text": "efficient", "start": 23, "end": 32, "annotation": null}, {"text": "approach", "start": 33, "end": 41, "annotation": null}, {"text": "to", "start": 42, "end": 44, "annotation": null}, {"text": "prepare", "start": 45, "end": 52, "annotation": null}, {"text": "bimetallically", "start": 53, "end": 67, "annotation": null}, {"text": "doped", "start": 68, "end": 73, "annotation": null}, {"text": "Ag-M-carbon", "start": 74, "end": 85, "annotation": null}, {"text": "composites", "start": 86, "end": 96, "annotation": null}, {"text": ".", "start": 96, "end": 97, "annotation": null}], [{"text": "Only", "start": 98, "end": 102, "annotation": null}, {"text": "if", "start": 103, "end": 105, "annotation": null}, {"text": "Ag", "start": 106, "end": 108, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 109, "end": 122, "annotation": null}, {"text": "(", "start": 123, "end": 124, "annotation": null}, {"text": "NPs", "start": 124, "end": 127, "annotation": "DOPANT"}, {"text": ")", "start": 127, "end": 128, "annotation": null}, {"text": "are", "start": 129, "end": 132, "annotation": null}, {"text": "embedded", "start": 133, "end": 141, "annotation": null}, {"text": "first", "start": 142, "end": 147, "annotation": null}, {"text": "into", "start": 148, "end": 152, "annotation": null}, {"text": "the", "start": 153, "end": 156, "annotation": null}, {"text": "submicrometer", "start": 157, "end": 170, "annotation": null}, {"text": "carbon", "start": 171, "end": 177, "annotation": "BASEMAT"}, {"text": "spheres", "start": 178, "end": 185, "annotation": "BASEMAT"}, {"text": "(", "start": 186, "end": 187, "annotation": null}, {"text": "CSs", "start": 187, "end": 190, "annotation": "BASEMAT"}, {"text": ")", "start": 190, "end": 191, "annotation": null}, {"text": "can", "start": 192, "end": 195, "annotation": null}, {"text": "the", "start": 196, "end": 199, "annotation": null}, {"text": "second", "start": 200, "end": 206, "annotation": null}, {"text": "metal", "start": 207, "end": 212, "annotation": null}, {"text": "M", "start": 213, "end": 214, "annotation": "DOPANT"}, {"text": "(", "start": 215, "end": 216, "annotation": null}, {"text": "Pd", "start": 216, "end": 218, "annotation": "DOPANT"}, {"text": ",", "start": 218, "end": 219, "annotation": null}, {"text": "Pt", "start": 220, "end": 222, "annotation": "DOPANT"}, {"text": ",", "start": 222, "end": 223, "annotation": null}, {"text": "and", "start": 224, "end": 227, "annotation": null}, {"text": "Au", "start": 228, "end": 230, "annotation": "DOPANT"}, {"text": ")", "start": 230, "end": 231, "annotation": null}, {"text": "also", "start": 232, "end": 236, "annotation": null}, {"text": "be", "start": 237, "end": 239, "annotation": null}, {"text": "introduced", "start": 240, "end": 250, "annotation": null}, {"text": "into", "start": 251, "end": 255, "annotation": null}, {"text": "their", "start": 256, "end": 261, "annotation": null}, {"text": "interior", "start": 262, "end": 270, "annotation": null}, {"text": ".", "start": 270, "end": 271, "annotation": null}], [{"text": "Especially", "start": 272, "end": 282, "annotation": null}, {"text": "at", "start": 283, "end": 285, "annotation": null}, {"text": "not", "start": 286, "end": 289, "annotation": null}, {"text": "too", "start": 290, "end": 293, "annotation": null}, {"text": "high", "start": 294, "end": 298, "annotation": null}, {"text": "concentrations", "start": 299, "end": 313, "annotation": null}, {"text": "of", "start": 314, "end": 316, "annotation": null}, {"text": "M-precursor", "start": 317, "end": 328, "annotation": "DOPANT"}, {"text": "ions", "start": 329, "end": 333, "annotation": null}, {"text": "(", "start": 334, "end": 335, "annotation": null}, {"text": "CM", "start": 335, "end": 337, "annotation": "DOPANT"}, {"text": "-", "start": 337, "end": 338, "annotation": null}, {"text": "ion", "start": 338, "end": 341, "annotation": null}, {"text": ")", "start": 341, "end": 342, "annotation": null}, {"text": ",", "start": 342, "end": 343, "annotation": null}, {"text": "the", "start": 344, "end": 347, "annotation": null}, {"text": "locations", "start": 348, "end": 357, "annotation": null}, {"text": "and", "start": 358, "end": 361, "annotation": null}, {"text": "number", "start": 362, "end": 368, "annotation": null}, {"text": "density", "start": 369, "end": 376, "annotation": null}, {"text": "of", "start": 377, "end": 379, "annotation": null}, {"text": "the", "start": 380, "end": 383, "annotation": null}, {"text": "resulting", "start": 384, "end": 393, "annotation": null}, {"text": "NPs", "start": 394, "end": 397, "annotation": null}, {"text": "mirror", "start": 398, "end": 404, "annotation": null}, {"text": "those", "start": 405, "end": 410, "annotation": null}, {"text": "of", "start": 411, "end": 413, "annotation": null}, {"text": "the", "start": 414, "end": 417, "annotation": null}, {"text": "Ag", "start": 418, "end": 420, "annotation": "DOPANT"}, {"text": "NPs", "start": 421, "end": 424, "annotation": "DOPANT"}, {"text": "in", "start": 425, "end": 427, "annotation": null}, {"text": "/", "start": 427, "end": 428, "annotation": null}, {"text": "on", "start": 428, "end": 430, "annotation": null}, {"text": "the", "start": 431, "end": 434, "annotation": null}, {"text": "CSs", "start": 435, "end": 438, "annotation": "BASEMAT"}, {"text": ".", "start": 438, "end": 439, "annotation": null}], [{"text": "Therefore", "start": 440, "end": 449, "annotation": null}, {"text": ",", "start": 449, "end": 450, "annotation": null}, {"text": "the", "start": 451, "end": 454, "annotation": null}, {"text": "controllability", "start": 455, "end": 470, "annotation": null}, {"text": "of", "start": 471, "end": 473, "annotation": null}, {"text": "the", "start": 474, "end": 477, "annotation": null}, {"text": "Ag", "start": 478, "end": 480, "annotation": "DOPANT"}, {"text": "predoping", "start": 481, "end": 490, "annotation": null}, {"text": "allows", "start": 491, "end": 497, "annotation": null}, {"text": "control", "start": 498, "end": 505, "annotation": null}, {"text": "over", "start": 506, "end": 510, "annotation": null}, {"text": "the", "start": 511, "end": 514, "annotation": null}, {"text": "location", "start": 515, "end": 523, "annotation": null}, {"text": "dependent", "start": 524, "end": 533, "annotation": null}, {"text": "distribution", "start": 534, "end": 546, "annotation": null}, {"text": "of", "start": 547, "end": 549, "annotation": null}, {"text": "the", "start": 550, "end": 553, "annotation": null}, {"text": "NPs", "start": 554, "end": 557, "annotation": "DOPANT"}, {"text": "in", "start": 558, "end": 560, "annotation": null}, {"text": "the", "start": 561, "end": 564, "annotation": null}, {"text": "resulting", "start": 565, "end": 574, "annotation": null}, {"text": "bimetallic", "start": 575, "end": 585, "annotation": null}, {"text": "composites", "start": 586, "end": 596, "annotation": null}, {"text": ".", "start": 596, "end": 597, "annotation": null}], [{"text": "The", "start": 598, "end": 601, "annotation": null}, {"text": "size", "start": 602, "end": 606, "annotation": null}, {"text": "and", "start": 607, "end": 610, "annotation": null}, {"text": "shape", "start": 611, "end": 616, "annotation": null}, {"text": "of", "start": 617, "end": 619, "annotation": null}, {"text": "the", "start": 620, "end": 623, "annotation": null}, {"text": "resulting", "start": 624, "end": 633, "annotation": null}, {"text": "NPs", "start": 634, "end": 637, "annotation": "DOPANT"}, {"text": "in", "start": 638, "end": 640, "annotation": null}, {"text": "the", "start": 641, "end": 644, "annotation": null}, {"text": "composites", "start": 645, "end": 655, "annotation": null}, {"text": "are", "start": 656, "end": 659, "annotation": null}, {"text": "largely", "start": 660, "end": 667, "annotation": null}, {"text": "controlled", "start": 668, "end": 678, "annotation": null}, {"text": "by", "start": 679, "end": 681, "annotation": null}, {"text": "the", "start": 682, "end": 685, "annotation": null}, {"text": "concentration", "start": 686, "end": 699, "annotation": null}, {"text": "CM", "start": 700, "end": 702, "annotation": "DOPANT"}, {"text": "-", "start": 702, "end": 703, "annotation": null}, {"text": "ion", "start": 703, "end": 706, "annotation": null}, {"text": ".", "start": 706, "end": 707, "annotation": null}], [{"text": "The", "start": 708, "end": 711, "annotation": null}, {"text": "different", "start": 712, "end": 721, "annotation": null}, {"text": "shapes", "start": 722, "end": 728, "annotation": null}, {"text": "include", "start": 729, "end": 736, "annotation": null}, {"text": "solid", "start": 737, "end": 742, "annotation": null}, {"text": "core", "start": 743, "end": 747, "annotation": null}, {"text": "-", "start": 747, "end": 748, "annotation": null}, {"text": "shell", "start": 748, "end": 753, "annotation": null}, {"text": "and", "start": 754, "end": 757, "annotation": null}, {"text": "hollow", "start": 758, "end": 764, "annotation": null}, {"text": "NPs", "start": 765, "end": 768, "annotation": null}, {"text": ",", "start": 768, "end": 769, "annotation": null}, {"text": "as", "start": 770, "end": 772, "annotation": null}, {"text": "well", "start": 773, "end": 777, "annotation": null}, {"text": "as", "start": 778, "end": 780, "annotation": null}, {"text": "hedgehog", "start": 781, "end": 789, "annotation": null}, {"text": "-", "start": 789, "end": 790, "annotation": null}, {"text": "like", "start": 790, "end": 794, "annotation": null}, {"text": "hollow", "start": 795, "end": 801, "annotation": null}, {"text": "structures", "start": 802, "end": 812, "annotation": null}, {"text": "and", "start": 813, "end": 816, "annotation": null}, {"text": "dendritic", "start": 817, "end": 826, "annotation": null}, {"text": "aggregates", "start": 827, "end": 837, "annotation": null}, {"text": ".", "start": 837, "end": 838, "annotation": null}], [{"text": "The", "start": 839, "end": 842, "annotation": null}, {"text": "nucleation", "start": 843, "end": 853, "annotation": null}, {"text": "and", "start": 854, "end": 857, "annotation": null}, {"text": "growth", "start": 858, "end": 864, "annotation": null}, {"text": "mechanisms", "start": 865, "end": 875, "annotation": null}, {"text": ",", "start": 875, "end": 876, "annotation": null}, {"text": "which", "start": 877, "end": 882, "annotation": null}, {"text": "differ", "start": 883, "end": 889, "annotation": null}, {"text": "between", "start": 890, "end": 897, "annotation": null}, {"text": "the", "start": 898, "end": 901, "annotation": null}, {"text": "different", "start": 902, "end": 911, "annotation": null}, {"text": "metals", "start": 912, "end": 918, "annotation": null}, {"text": "M", "start": 919, "end": 920, "annotation": "DOPANT"}, {"text": ",", "start": 920, "end": 921, "annotation": null}, {"text": "are", "start": 922, "end": 925, "annotation": null}, {"text": "discussed", "start": 926, "end": 935, "annotation": null}, {"text": "to", "start": 936, "end": 938, "annotation": null}, {"text": "explain", "start": 939, "end": 946, "annotation": null}, {"text": "the", "start": 947, "end": 950, "annotation": null}, {"text": "morphologies", "start": 951, "end": 963, "annotation": null}, {"text": "and", "start": 964, "end": 967, "annotation": null}, {"text": "the", "start": 968, "end": 971, "annotation": null}, {"text": "location", "start": 972, "end": 980, "annotation": null}, {"text": "dependence", "start": 981, "end": 991, "annotation": null}, {"text": "of", "start": 992, "end": 994, "annotation": null}, {"text": "the", "start": 995, "end": 998, "annotation": null}, {"text": "NPs", "start": 999, "end": 1002, "annotation": "DOPANT"}, {"text": "in", "start": 1003, "end": 1005, "annotation": null}, {"text": "/", "start": 1005, "end": 1006, "annotation": null}, {"text": "on", "start": 1006, "end": 1008, "annotation": null}, {"text": "the", "start": 1009, "end": 1012, "annotation": null}, {"text": "CSs", "start": 1013, "end": 1016, "annotation": "BASEMAT"}, {"text": ".", "start": 1016, "end": 1017, "annotation": null}]], "meta": {"doi": "10.1021/jp105871w"}} +{"text": "The bound state of an isotropic muonium atom has been detected in both n- and p-type InSb using a high-field \u03bc SR technique. The hyperfine constant obtained for this center (A=2464\u00b11MHz)is characteristic of deep-levelMu0 centers at tetrahedral interstitial sites in other cubic semiconductors, which typically ionize above 300K . In contrast, theMu0 center in InSb disappears above about 30K , which is more characteristic of ionization of a shallow-level impurity. The charge-state dynamics of Mu in InSb is discussed in terms of a deep trap or recombination center, rather than as electron ionization.", "meta": {"doi": "10.1016/j.physb.2005.11.108"}, "_input_hash": -1518305495, "_task_hash": -146127621, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "bound", "start": 4, "end": 9, "id": 1, "annotation": null}, {"text": "state", "start": 10, "end": 15, "id": 2, "annotation": null}, {"text": "of", "start": 16, "end": 18, "id": 3, "annotation": null}, {"text": "an", "start": 19, "end": 21, "id": 4, "annotation": null}, {"text": "isotropic", "start": 22, "end": 31, "id": 5, "annotation": null}, {"text": "muonium", "start": 32, "end": 39, "id": 6, "annotation": null}, {"text": "atom", "start": 40, "end": 44, "id": 7, "annotation": null}, {"text": "has", "start": 45, "end": 48, "id": 8, "annotation": null}, {"text": "been", "start": 49, "end": 53, "id": 9, "annotation": null}, {"text": "detected", "start": 54, "end": 62, "id": 10, "annotation": null}, {"text": "in", "start": 63, "end": 65, "id": 11, "annotation": null}, {"text": "both", "start": 66, "end": 70, "id": 12, "annotation": null}, {"text": "n-", "start": 71, "end": 73, "id": 13, "annotation": "DOPANT"}, {"text": "and", "start": 74, "end": 77, "id": 14, "annotation": null}, {"text": "p", "start": 78, "end": 79, "id": 15, "annotation": "DOPANT"}, {"text": "-", "start": 80, "end": 81, "id": 16, "annotation": "DOPANT"}, {"text": "type", "start": 82, "end": 86, "id": 17, "annotation": "DOPANT"}, {"text": "InSb", "start": 87, "end": 91, "id": 18, "annotation": "BASEMAT"}, {"text": "using", "start": 92, "end": 97, "id": 19, "annotation": null}, {"text": "a", "start": 98, "end": 99, "id": 20, "annotation": null}, {"text": "high", "start": 100, "end": 104, "id": 21, "annotation": null}, {"text": "-", "start": 105, "end": 106, "id": 22, "annotation": null}, {"text": "field", "start": 107, "end": 112, "id": 23, "annotation": null}, {"text": "\u03bc", "start": 113, "end": 114, "id": 24, "annotation": null}, {"text": "SR", "start": 115, "end": 117, "id": 25, "annotation": null}, {"text": "technique", "start": 118, "end": 127, "id": 26, "annotation": null}, {"text": ".", "start": 128, "end": 129, "id": 27, "annotation": null}], [{"text": "The", "start": 130, "end": 133, "id": 28, "annotation": null}, {"text": "hyperfine", "start": 134, "end": 143, "id": 29, "annotation": null}, {"text": "constant", "start": 144, "end": 152, "id": 30, "annotation": null}, {"text": "obtained", "start": 153, "end": 161, "id": 31, "annotation": null}, {"text": "for", "start": 162, "end": 165, "id": 32, "annotation": null}, {"text": "this", "start": 166, "end": 170, "id": 33, "annotation": null}, {"text": "center", "start": 171, "end": 177, "id": 34, "annotation": null}, {"text": "(", "start": 178, "end": 179, "id": 35, "annotation": null}, {"text": "A=2464\u00b11MHz)is", "start": 180, "end": 194, "id": 36, "annotation": null}, {"text": "characteristic", "start": 195, "end": 209, "id": 37, "annotation": null}, {"text": "of", "start": 210, "end": 212, "id": 38, "annotation": null}, {"text": "deep", "start": 213, "end": 217, "id": 39, "annotation": null}, {"text": "-", "start": 218, "end": 219, "id": 40, "annotation": null}, {"text": "levelMu0", "start": 220, "end": 228, "id": 41, "annotation": null}, {"text": "centers", "start": 229, "end": 236, "id": 42, "annotation": null}, {"text": "at", "start": 237, "end": 239, "id": 43, "annotation": null}, {"text": "tetrahedral", "start": 240, "end": 251, "id": 44, "annotation": null}, {"text": "interstitial", "start": 252, "end": 264, "id": 45, "annotation": null}, {"text": "sites", "start": 265, "end": 270, "id": 46, "annotation": null}, {"text": "in", "start": 271, "end": 273, "id": 47, "annotation": null}, {"text": "other", "start": 274, "end": 279, "id": 48, "annotation": null}, {"text": "cubic", "start": 280, "end": 285, "id": 49, "annotation": null}, {"text": "semiconductors", "start": 286, "end": 300, "id": 50, "annotation": null}, {"text": ",", "start": 301, "end": 302, "id": 51, "annotation": null}, {"text": "which", "start": 303, "end": 308, "id": 52, "annotation": null}, {"text": "typically", "start": 309, "end": 318, "id": 53, "annotation": null}, {"text": "ionize", "start": 319, "end": 325, "id": 54, "annotation": null}, {"text": "above", "start": 326, "end": 331, "id": 55, "annotation": null}, {"text": "300", "start": 332, "end": 335, "id": 56, "annotation": null}, {"text": "K", "start": 336, "end": 337, "id": 57, "annotation": null}, {"text": ".", "start": 338, "end": 339, "id": 58, "annotation": null}], [{"text": "In", "start": 340, "end": 342, "id": 59, "annotation": null}, {"text": "contrast", "start": 343, "end": 351, "id": 60, "annotation": null}, {"text": ",", "start": 352, "end": 353, "id": 61, "annotation": null}, {"text": "theMu0", "start": 354, "end": 360, "id": 62, "annotation": null}, {"text": "center", "start": 361, "end": 367, "id": 63, "annotation": null}, {"text": "in", "start": 368, "end": 370, "id": 64, "annotation": null}, {"text": "InSb", "start": 371, "end": 375, "id": 65, "annotation": null}, {"text": "disappears", "start": 376, "end": 386, "id": 66, "annotation": null}, {"text": "above", "start": 387, "end": 392, "id": 67, "annotation": null}, {"text": "about", "start": 393, "end": 398, "id": 68, "annotation": null}, {"text": "30", "start": 399, "end": 401, "id": 69, "annotation": null}, {"text": "K", "start": 402, "end": 403, "id": 70, "annotation": null}, {"text": ",", "start": 404, "end": 405, "id": 71, "annotation": null}, {"text": "which", "start": 406, "end": 411, "id": 72, "annotation": null}, {"text": "is", "start": 412, "end": 414, "id": 73, "annotation": null}, {"text": "more", "start": 415, "end": 419, "id": 74, "annotation": null}, {"text": "characteristic", "start": 420, "end": 434, "id": 75, "annotation": null}, {"text": "of", "start": 435, "end": 437, "id": 76, "annotation": null}, {"text": "ionization", "start": 438, "end": 448, "id": 77, "annotation": null}, {"text": "of", "start": 449, "end": 451, "id": 78, "annotation": null}, {"text": "a", "start": 452, "end": 453, "id": 79, "annotation": null}, {"text": "shallow", "start": 454, "end": 461, "id": 80, "annotation": null}, {"text": "-", "start": 462, "end": 463, "id": 81, "annotation": null}, {"text": "level", "start": 464, "end": 469, "id": 82, "annotation": null}, {"text": "impurity", "start": 470, "end": 478, "id": 83, "annotation": null}, {"text": ".", "start": 479, "end": 480, "id": 84, "annotation": null}], [{"text": "The", "start": 481, "end": 484, "id": 85, "annotation": null}, {"text": "charge", "start": 485, "end": 491, "id": 86, "annotation": null}, {"text": "-", "start": 492, "end": 493, "id": 87, "annotation": null}, {"text": "state", "start": 494, "end": 499, "id": 88, "annotation": null}, {"text": "dynamics", "start": 500, "end": 508, "id": 89, "annotation": null}, {"text": "of", "start": 509, "end": 511, "id": 90, "annotation": null}, {"text": "Mu", "start": 512, "end": 514, "id": 91, "annotation": null}, {"text": "in", "start": 515, "end": 517, "id": 92, "annotation": null}, {"text": "InSb", "start": 518, "end": 522, "id": 93, "annotation": null}, {"text": "is", "start": 523, "end": 525, "id": 94, "annotation": null}, {"text": "discussed", "start": 526, "end": 535, "id": 95, "annotation": null}, {"text": "in", "start": 536, "end": 538, "id": 96, "annotation": null}, {"text": "terms", "start": 539, "end": 544, "id": 97, "annotation": null}, {"text": "of", "start": 545, "end": 547, "id": 98, "annotation": null}, {"text": "a", "start": 548, "end": 549, "id": 99, "annotation": null}, {"text": "deep", "start": 550, "end": 554, "id": 100, "annotation": null}, {"text": "trap", "start": 555, "end": 559, "id": 101, "annotation": null}, {"text": "or", "start": 560, "end": 562, "id": 102, "annotation": null}, {"text": "recombination", "start": 563, "end": 576, "id": 103, "annotation": null}, {"text": "center", "start": 577, "end": 583, "id": 104, "annotation": null}, {"text": ",", "start": 584, "end": 585, "id": 105, "annotation": null}, {"text": "rather", "start": 586, "end": 592, "id": 106, "annotation": null}, {"text": "than", "start": 593, "end": 597, "id": 107, "annotation": null}, {"text": "as", "start": 598, "end": 600, "id": 108, "annotation": null}, {"text": "electron", "start": 601, "end": 609, "id": 109, "annotation": null}, {"text": "ionization", "start": 610, "end": 620, "id": 110, "annotation": null}, {"text": ".", "start": 621, "end": 622, "id": 111, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Zinc doped SnO2 films were prepared using a simplified spray technique and the influence of dopant concentration on structural, electrical, optical and surface morphological properties were analysed in detail. XRD results showed that all the films were polycrystalline SnO2 with tetragonal rutile structure. The transition of preferential orientation from (211) to (101) plane was found to take place beyond 20at.% of Zn doping level. Hall measurements showed that the films exhibited p-type conductivity when the doping concentration was increased beyond 20at.%. The average transmittance of the SnO2:Zn films were in the range of 80\u201390% in the visible region. The enhancement in the PL emission can be correlated with the decrease in the grain size observed from the SEM images and the sharpening of defect related peaks supplemented the formation of trapped states (introduction of dangling bonds) at higher Zn concentrations.", "meta": {"doi": "10.1016/j.spmi.2013.05.006"}, "_input_hash": 1559097514, "_task_hash": -493355158, "tokens": [[{"text": "Zinc", "start": 0, "end": 4, "id": 0, "annotation": "DOPANT"}, {"text": "doped", "start": 5, "end": 10, "id": 1, "annotation": null}, {"text": "SnO2", "start": 11, "end": 15, "id": 2, "annotation": "BASEMAT"}, {"text": "films", "start": 16, "end": 21, "id": 3, "annotation": null}, {"text": "were", "start": 22, "end": 26, "id": 4, "annotation": null}, {"text": "prepared", "start": 27, "end": 35, "id": 5, "annotation": null}, {"text": "using", "start": 36, "end": 41, "id": 6, "annotation": null}, {"text": "a", "start": 42, "end": 43, "id": 7, "annotation": null}, {"text": "simplified", "start": 44, "end": 54, "id": 8, "annotation": null}, {"text": "spray", "start": 55, "end": 60, "id": 9, "annotation": null}, {"text": "technique", "start": 61, "end": 70, "id": 10, "annotation": null}, {"text": "and", "start": 71, "end": 74, "id": 11, "annotation": null}, {"text": "the", "start": 75, "end": 78, "id": 12, "annotation": null}, {"text": "influence", "start": 79, "end": 88, "id": 13, "annotation": null}, {"text": "of", "start": 89, "end": 91, "id": 14, "annotation": null}, {"text": "dopant", "start": 92, "end": 98, "id": 15, "annotation": null}, {"text": "concentration", "start": 99, "end": 112, "id": 16, "annotation": null}, {"text": "on", "start": 113, "end": 115, "id": 17, "annotation": null}, {"text": "structural", "start": 116, "end": 126, "id": 18, "annotation": null}, {"text": ",", "start": 127, "end": 128, "id": 19, "annotation": null}, {"text": "electrical", "start": 129, "end": 139, "id": 20, "annotation": null}, {"text": ",", "start": 140, "end": 141, "id": 21, "annotation": null}, {"text": "optical", "start": 142, "end": 149, "id": 22, "annotation": null}, {"text": "and", "start": 150, "end": 153, "id": 23, "annotation": null}, {"text": "surface", "start": 154, "end": 161, "id": 24, "annotation": null}, {"text": "morphological", "start": 162, "end": 175, "id": 25, "annotation": null}, {"text": "properties", "start": 176, "end": 186, "id": 26, "annotation": null}, {"text": "were", "start": 187, "end": 191, "id": 27, "annotation": null}, {"text": "analysed", "start": 192, "end": 200, "id": 28, "annotation": null}, {"text": "in", "start": 201, "end": 203, "id": 29, "annotation": null}, {"text": "detail", "start": 204, "end": 210, "id": 30, "annotation": null}, {"text": ".", "start": 211, "end": 212, "id": 31, "annotation": null}], [{"text": "XRD", "start": 213, "end": 216, "id": 32, "annotation": null}, {"text": "results", "start": 217, "end": 224, "id": 33, "annotation": null}, {"text": "showed", "start": 225, "end": 231, "id": 34, "annotation": null}, {"text": "that", "start": 232, "end": 236, "id": 35, "annotation": null}, {"text": "all", "start": 237, "end": 240, "id": 36, "annotation": null}, {"text": "the", "start": 241, "end": 244, "id": 37, "annotation": null}, {"text": "films", "start": 245, "end": 250, "id": 38, "annotation": null}, {"text": "were", "start": 251, "end": 255, "id": 39, "annotation": null}, {"text": "polycrystalline", "start": 256, "end": 271, "id": 40, "annotation": null}, {"text": "SnO2", "start": 272, "end": 276, "id": 41, "annotation": null}, {"text": "with", "start": 277, "end": 281, "id": 42, "annotation": null}, {"text": "tetragonal", "start": 282, "end": 292, "id": 43, "annotation": null}, {"text": "rutile", "start": 293, "end": 299, "id": 44, "annotation": null}, {"text": "structure", "start": 300, "end": 309, "id": 45, "annotation": null}, {"text": ".", "start": 310, "end": 311, "id": 46, "annotation": null}], [{"text": "The", "start": 312, "end": 315, "id": 47, "annotation": null}, {"text": "transition", "start": 316, "end": 326, "id": 48, "annotation": null}, {"text": "of", "start": 327, "end": 329, "id": 49, "annotation": null}, {"text": "preferential", "start": 330, "end": 342, "id": 50, "annotation": null}, {"text": "orientation", "start": 343, "end": 354, "id": 51, "annotation": null}, {"text": "from", "start": 355, "end": 359, "id": 52, "annotation": null}, {"text": "(", "start": 360, "end": 361, "id": 53, "annotation": null}, {"text": "211", "start": 362, "end": 365, "id": 54, "annotation": null}, {"text": ")", "start": 366, "end": 367, "id": 55, "annotation": null}, {"text": "to", "start": 368, "end": 370, "id": 56, "annotation": null}, {"text": "(", "start": 371, "end": 372, "id": 57, "annotation": null}, {"text": "101", "start": 373, "end": 376, "id": 58, "annotation": null}, {"text": ")", "start": 377, "end": 378, "id": 59, "annotation": null}, {"text": "plane", "start": 379, "end": 384, "id": 60, "annotation": null}, {"text": "was", "start": 385, "end": 388, "id": 61, "annotation": null}, {"text": "found", "start": 389, "end": 394, "id": 62, "annotation": null}, {"text": "to", "start": 395, "end": 397, "id": 63, "annotation": null}, {"text": "take", "start": 398, "end": 402, "id": 64, "annotation": null}, {"text": "place", "start": 403, "end": 408, "id": 65, "annotation": null}, {"text": "beyond", "start": 409, "end": 415, "id": 66, "annotation": null}, {"text": "20at.%", "start": 416, "end": 422, "id": 67, "annotation": "DOPMODQ"}, {"text": "of", "start": 423, "end": 425, "id": 68, "annotation": null}, {"text": "Zn", "start": 426, "end": 428, "id": 69, "annotation": "DOPANT"}, {"text": "doping", "start": 429, "end": 435, "id": 70, "annotation": null}, {"text": "level", "start": 436, "end": 441, "id": 71, "annotation": null}, {"text": ".", "start": 442, "end": 443, "id": 72, "annotation": null}], [{"text": "Hall", "start": 444, "end": 448, "id": 73, "annotation": null}, {"text": "measurements", "start": 449, "end": 461, "id": 74, "annotation": null}, {"text": "showed", "start": 462, "end": 468, "id": 75, "annotation": null}, {"text": "that", "start": 469, "end": 473, "id": 76, "annotation": null}, {"text": "the", "start": 474, "end": 477, "id": 77, "annotation": null}, {"text": "films", "start": 478, "end": 483, "id": 78, "annotation": "BASEMAT"}, {"text": "exhibited", "start": 484, "end": 493, "id": 79, "annotation": null}, {"text": "p", "start": 494, "end": 495, "id": 80, "annotation": "DOPANT"}, {"text": "-", "start": 496, "end": 497, "id": 81, "annotation": "DOPANT"}, {"text": "type", "start": 498, "end": 502, "id": 82, "annotation": "DOPANT"}, {"text": "conductivity", "start": 503, "end": 515, "id": 83, "annotation": null}, {"text": "when", "start": 516, "end": 520, "id": 84, "annotation": null}, {"text": "the", "start": 521, "end": 524, "id": 85, "annotation": null}, {"text": "doping", "start": 525, "end": 531, "id": 86, "annotation": null}, {"text": "concentration", "start": 532, "end": 545, "id": 87, "annotation": null}, {"text": "was", "start": 546, "end": 549, "id": 88, "annotation": null}, {"text": "increased", "start": 550, "end": 559, "id": 89, "annotation": null}, {"text": "beyond", "start": 560, "end": 566, "id": 90, "annotation": "DOPMODQ"}, {"text": "20at.%", "start": 567, "end": 573, "id": 91, "annotation": "DOPMODQ"}, {"text": ".", "start": 574, "end": 575, "id": 92, "annotation": null}], [{"text": "The", "start": 576, "end": 579, "id": 93, "annotation": null}, {"text": "average", "start": 580, "end": 587, "id": 94, "annotation": null}, {"text": "transmittance", "start": 588, "end": 601, "id": 95, "annotation": null}, {"text": "of", "start": 602, "end": 604, "id": 96, "annotation": null}, {"text": "the", "start": 605, "end": 608, "id": 97, "annotation": null}, {"text": "SnO2", "start": 609, "end": 613, "id": 98, "annotation": "BASEMAT"}, {"text": ":", "start": 614, "end": 615, "id": 99, "annotation": null}, {"text": "Zn", "start": 616, "end": 618, "id": 100, "annotation": "DOPANT"}, {"text": "films", "start": 619, "end": 624, "id": 101, "annotation": null}, {"text": "were", "start": 625, "end": 629, "id": 102, "annotation": null}, {"text": "in", "start": 630, "end": 632, "id": 103, "annotation": null}, {"text": "the", "start": 633, "end": 636, "id": 104, "annotation": null}, {"text": "range", "start": 637, "end": 642, "id": 105, "annotation": null}, {"text": "of", "start": 643, "end": 645, "id": 106, "annotation": null}, {"text": "80\u201390", "start": 646, "end": 651, "id": 107, "annotation": null}, {"text": "%", "start": 652, "end": 653, "id": 108, "annotation": null}, {"text": "in", "start": 654, "end": 656, "id": 109, "annotation": null}, {"text": "the", "start": 657, "end": 660, "id": 110, "annotation": null}, {"text": "visible", "start": 661, "end": 668, "id": 111, "annotation": null}, {"text": "region", "start": 669, "end": 675, "id": 112, "annotation": null}, {"text": ".", "start": 676, "end": 677, "id": 113, "annotation": null}], [{"text": "The", "start": 678, "end": 681, "id": 114, "annotation": null}, {"text": "enhancement", "start": 682, "end": 693, "id": 115, "annotation": null}, {"text": "in", "start": 694, "end": 696, "id": 116, "annotation": null}, {"text": "the", "start": 697, "end": 700, "id": 117, "annotation": null}, {"text": "PL", "start": 701, "end": 703, "id": 118, "annotation": null}, {"text": "emission", "start": 704, "end": 712, "id": 119, "annotation": null}, {"text": "can", "start": 713, "end": 716, "id": 120, "annotation": null}, {"text": "be", "start": 717, "end": 719, "id": 121, "annotation": null}, {"text": "correlated", "start": 720, "end": 730, "id": 122, "annotation": null}, {"text": "with", "start": 731, "end": 735, "id": 123, "annotation": null}, {"text": "the", "start": 736, "end": 739, "id": 124, "annotation": null}, {"text": "decrease", "start": 740, "end": 748, "id": 125, "annotation": null}, {"text": "in", "start": 749, "end": 751, "id": 126, "annotation": null}, {"text": "the", "start": 752, "end": 755, "id": 127, "annotation": null}, {"text": "grain", "start": 756, "end": 761, "id": 128, "annotation": null}, {"text": "size", "start": 762, "end": 766, "id": 129, "annotation": null}, {"text": "observed", "start": 767, "end": 775, "id": 130, "annotation": null}, {"text": "from", "start": 776, "end": 780, "id": 131, "annotation": null}, {"text": "the", "start": 781, "end": 784, "id": 132, "annotation": null}, {"text": "SEM", "start": 785, "end": 788, "id": 133, "annotation": null}, {"text": "images", "start": 789, "end": 795, "id": 134, "annotation": null}, {"text": "and", "start": 796, "end": 799, "id": 135, "annotation": null}, {"text": "the", "start": 800, "end": 803, "id": 136, "annotation": null}, {"text": "sharpening", "start": 804, "end": 814, "id": 137, "annotation": null}, {"text": "of", "start": 815, "end": 817, "id": 138, "annotation": null}, {"text": "defect", "start": 818, "end": 824, "id": 139, "annotation": null}, {"text": "related", "start": 825, "end": 832, "id": 140, "annotation": null}, {"text": "peaks", "start": 833, "end": 838, "id": 141, "annotation": null}, {"text": "supplemented", "start": 839, "end": 851, "id": 142, "annotation": null}, {"text": "the", "start": 852, "end": 855, "id": 143, "annotation": null}, {"text": "formation", "start": 856, "end": 865, "id": 144, "annotation": null}, {"text": "of", "start": 866, "end": 868, "id": 145, "annotation": null}, {"text": "trapped", "start": 869, "end": 876, "id": 146, "annotation": null}, {"text": "states", "start": 877, "end": 883, "id": 147, "annotation": null}, {"text": "(", "start": 884, "end": 885, "id": 148, "annotation": null}, {"text": "introduction", "start": 886, "end": 898, "id": 149, "annotation": null}, {"text": "of", "start": 899, "end": 901, "id": 150, "annotation": null}, {"text": "dangling", "start": 902, "end": 910, "id": 151, "annotation": null}, {"text": "bonds", "start": 911, "end": 916, "id": 152, "annotation": null}, {"text": ")", "start": 917, "end": 918, "id": 153, "annotation": null}, {"text": "at", "start": 919, "end": 921, "id": 154, "annotation": null}, {"text": "higher", "start": 922, "end": 928, "id": 155, "annotation": null}, {"text": "Zn", "start": 929, "end": 931, "id": 156, "annotation": null}, {"text": "concentrations", "start": 932, "end": 946, "id": 157, "annotation": null}, {"text": ".", "start": 947, "end": 948, "id": 158, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The polarization behaviors of porous samaria-doped ceria anodes coupled with zirconia electrolytes with various ionic conductivities (\u03c3ion) were investigated. The exchange current density, j0, on such mixed-conducting SDC anodes was not influenced by the \u03c3ion at 900 and 1000\u00b0C, whereas j0 increased proportionally to \u03c3ion at a lower temperature of 800\u00b0C. However, the dispersion of nanometer-sized ruthenium catalysts on SDC particles resulted in an increase of j0 with increase in \u03c3ion in the entire temperature range between 800 and 1000\u00b0C. The observations are well explained kinetically, i.e., the anode performance is controlled by the rate of O2- supply to the anode layer via the electrolyte, as the anodic reaction rate becomes sufficiently high due to highly dispersed Ru electrocatalysts. Consequently, it is clear that the use of high-performance electrodes in combination with the solid electrolyte having high \u03c3ion is a prerequisite to achieving high performance of solid oxide fuel cells.", "meta": {"doi": "10.1149/1.1837671"}, "_input_hash": 1083643236, "_task_hash": -110710199, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "polarization", "start": 4, "end": 16, "id": 1, "annotation": null}, {"text": "behaviors", "start": 17, "end": 26, "id": 2, "annotation": null}, {"text": "of", "start": 27, "end": 29, "id": 3, "annotation": null}, {"text": "porous", "start": 30, "end": 36, "id": 4, "annotation": null}, {"text": "samaria", "start": 37, "end": 44, "id": 5, "annotation": "DOPANT"}, {"text": "-", "start": 45, "end": 46, "id": 6, "annotation": null}, {"text": "doped", "start": 47, "end": 52, "id": 7, "annotation": null}, {"text": "ceria", "start": 53, "end": 58, "id": 8, "annotation": "BASEMAT"}, {"text": "anodes", "start": 59, "end": 65, "id": 9, "annotation": null}, {"text": "coupled", "start": 66, "end": 73, "id": 10, "annotation": null}, {"text": "with", "start": 74, "end": 78, "id": 11, "annotation": null}, {"text": "zirconia", "start": 79, "end": 87, "id": 12, "annotation": null}, {"text": "electrolytes", "start": 88, "end": 100, "id": 13, "annotation": null}, {"text": "with", "start": 101, "end": 105, "id": 14, "annotation": null}, {"text": "various", "start": 106, "end": 113, "id": 15, "annotation": null}, {"text": "ionic", "start": 114, "end": 119, "id": 16, "annotation": null}, {"text": "conductivities", "start": 120, "end": 134, "id": 17, "annotation": null}, {"text": "(", "start": 135, "end": 136, "id": 18, "annotation": null}, {"text": "\u03c3ion", "start": 137, "end": 141, "id": 19, "annotation": null}, {"text": ")", "start": 142, "end": 143, "id": 20, "annotation": null}, {"text": "were", "start": 144, "end": 148, "id": 21, "annotation": null}, {"text": "investigated", "start": 149, "end": 161, "id": 22, "annotation": null}, {"text": ".", "start": 162, "end": 163, "id": 23, "annotation": null}], [{"text": "The", "start": 164, "end": 167, "id": 24, "annotation": null}, {"text": "exchange", "start": 168, "end": 176, "id": 25, "annotation": null}, {"text": "current", "start": 177, "end": 184, "id": 26, "annotation": null}, {"text": "density", "start": 185, "end": 192, "id": 27, "annotation": null}, {"text": ",", "start": 193, "end": 194, "id": 28, "annotation": null}, {"text": "j0", "start": 195, "end": 197, "id": 29, "annotation": null}, {"text": ",", "start": 198, "end": 199, "id": 30, "annotation": null}, {"text": "on", "start": 200, "end": 202, "id": 31, "annotation": null}, {"text": "such", "start": 203, "end": 207, "id": 32, "annotation": null}, {"text": "mixed", "start": 208, "end": 213, "id": 33, "annotation": null}, {"text": "-", "start": 214, "end": 215, "id": 34, "annotation": null}, {"text": "conducting", "start": 216, "end": 226, "id": 35, "annotation": null}, {"text": "SDC", "start": 227, "end": 230, "id": 36, "annotation": null}, {"text": "anodes", "start": 231, "end": 237, "id": 37, "annotation": null}, {"text": "was", "start": 238, "end": 241, "id": 38, "annotation": null}, {"text": "not", "start": 242, "end": 245, "id": 39, "annotation": null}, {"text": "influenced", "start": 246, "end": 256, "id": 40, "annotation": null}, {"text": "by", "start": 257, "end": 259, "id": 41, "annotation": null}, {"text": "the", "start": 260, "end": 263, "id": 42, "annotation": null}, {"text": "\u03c3ion", "start": 264, "end": 268, "id": 43, "annotation": null}, {"text": "at", "start": 269, "end": 271, "id": 44, "annotation": null}, {"text": "900", "start": 272, "end": 275, "id": 45, "annotation": null}, {"text": "and", "start": 276, "end": 279, "id": 46, "annotation": null}, {"text": "1000", "start": 280, "end": 284, "id": 47, "annotation": null}, {"text": "\u00b0", "start": 285, "end": 286, "id": 48, "annotation": null}, {"text": "C", "start": 287, "end": 288, "id": 49, "annotation": null}, {"text": ",", "start": 289, "end": 290, "id": 50, "annotation": null}, {"text": "whereas", "start": 291, "end": 298, "id": 51, "annotation": null}, {"text": "j0", "start": 299, "end": 301, "id": 52, "annotation": null}, {"text": "increased", "start": 302, "end": 311, "id": 53, "annotation": null}, {"text": "proportionally", "start": 312, "end": 326, "id": 54, "annotation": null}, {"text": "to", "start": 327, "end": 329, "id": 55, "annotation": null}, {"text": "\u03c3ion", "start": 330, "end": 334, "id": 56, "annotation": null}, {"text": "at", "start": 335, "end": 337, "id": 57, "annotation": null}, {"text": "a", "start": 338, "end": 339, "id": 58, "annotation": null}, {"text": "lower", "start": 340, "end": 345, "id": 59, "annotation": null}, {"text": "temperature", "start": 346, "end": 357, "id": 60, "annotation": null}, {"text": "of", "start": 358, "end": 360, "id": 61, "annotation": null}, {"text": "800", "start": 361, "end": 364, "id": 62, "annotation": null}, {"text": "\u00b0", "start": 365, "end": 366, "id": 63, "annotation": null}, {"text": "C", "start": 367, "end": 368, "id": 64, "annotation": null}, {"text": ".", "start": 369, "end": 370, "id": 65, "annotation": null}], [{"text": "However", "start": 371, "end": 378, "id": 66, "annotation": null}, {"text": ",", "start": 379, "end": 380, "id": 67, "annotation": null}, {"text": "the", "start": 381, "end": 384, "id": 68, "annotation": null}, {"text": "dispersion", "start": 385, "end": 395, "id": 69, "annotation": null}, {"text": "of", "start": 396, "end": 398, "id": 70, "annotation": null}, {"text": "nanometer", "start": 399, "end": 408, "id": 71, "annotation": null}, {"text": "-", "start": 409, "end": 410, "id": 72, "annotation": null}, {"text": "sized", "start": 411, "end": 416, "id": 73, "annotation": null}, {"text": "ruthenium", "start": 417, "end": 426, "id": 74, "annotation": null}, {"text": "catalysts", "start": 427, "end": 436, "id": 75, "annotation": null}, {"text": "on", "start": 437, "end": 439, "id": 76, "annotation": null}, {"text": "SDC", "start": 440, "end": 443, "id": 77, "annotation": null}, {"text": "particles", "start": 444, "end": 453, "id": 78, "annotation": null}, {"text": "resulted", "start": 454, "end": 462, "id": 79, "annotation": null}, {"text": "in", "start": 463, "end": 465, "id": 80, "annotation": null}, {"text": "an", "start": 466, "end": 468, "id": 81, "annotation": null}, {"text": "increase", "start": 469, "end": 477, "id": 82, "annotation": null}, {"text": "of", "start": 478, "end": 480, "id": 83, "annotation": null}, {"text": "j0", "start": 481, "end": 483, "id": 84, "annotation": null}, {"text": "with", "start": 484, "end": 488, "id": 85, "annotation": null}, {"text": "increase", "start": 489, "end": 497, "id": 86, "annotation": null}, {"text": "in", "start": 498, "end": 500, "id": 87, "annotation": null}, {"text": "\u03c3ion", "start": 501, "end": 505, "id": 88, "annotation": null}, {"text": "in", "start": 506, "end": 508, "id": 89, "annotation": null}, {"text": "the", "start": 509, "end": 512, "id": 90, "annotation": null}, {"text": "entire", "start": 513, "end": 519, "id": 91, "annotation": null}, {"text": "temperature", "start": 520, "end": 531, "id": 92, "annotation": null}, {"text": "range", "start": 532, "end": 537, "id": 93, "annotation": null}, {"text": "between", "start": 538, "end": 545, "id": 94, "annotation": null}, {"text": "800", "start": 546, "end": 549, "id": 95, "annotation": null}, {"text": "and", "start": 550, "end": 553, "id": 96, "annotation": null}, {"text": "1000", "start": 554, "end": 558, "id": 97, "annotation": null}, {"text": "\u00b0", "start": 559, "end": 560, "id": 98, "annotation": null}, {"text": "C", "start": 561, "end": 562, "id": 99, "annotation": null}, {"text": ".", "start": 563, "end": 564, "id": 100, "annotation": null}], [{"text": "The", "start": 565, "end": 568, "id": 101, "annotation": null}, {"text": "observations", "start": 569, "end": 581, "id": 102, "annotation": null}, {"text": "are", "start": 582, "end": 585, "id": 103, "annotation": null}, {"text": "well", "start": 586, "end": 590, "id": 104, "annotation": null}, {"text": "explained", "start": 591, "end": 600, "id": 105, "annotation": null}, {"text": "kinetically", "start": 601, "end": 612, "id": 106, "annotation": null}, {"text": ",", "start": 613, "end": 614, "id": 107, "annotation": null}, {"text": "i.e.", "start": 615, "end": 619, "id": 108, "annotation": null}, {"text": ",", "start": 620, "end": 621, "id": 109, "annotation": null}, {"text": "the", "start": 622, "end": 625, "id": 110, "annotation": null}, {"text": "anode", "start": 626, "end": 631, "id": 111, "annotation": null}, {"text": "performance", "start": 632, "end": 643, "id": 112, "annotation": null}, {"text": "is", "start": 644, "end": 646, "id": 113, "annotation": null}, {"text": "controlled", "start": 647, "end": 657, "id": 114, "annotation": null}, {"text": "by", "start": 658, "end": 660, "id": 115, "annotation": null}, {"text": "the", "start": 661, "end": 664, "id": 116, "annotation": null}, {"text": "rate", "start": 665, "end": 669, "id": 117, "annotation": null}, {"text": "of", "start": 670, "end": 672, "id": 118, "annotation": null}, {"text": "O2-", "start": 673, "end": 676, "id": 119, "annotation": null}, {"text": "supply", "start": 677, "end": 683, "id": 120, "annotation": null}, {"text": "to", "start": 684, "end": 686, "id": 121, "annotation": null}, {"text": "the", "start": 687, "end": 690, "id": 122, "annotation": null}, {"text": "anode", "start": 691, "end": 696, "id": 123, "annotation": null}, {"text": "layer", "start": 697, "end": 702, "id": 124, "annotation": null}, {"text": "via", "start": 703, "end": 706, "id": 125, "annotation": null}, {"text": "the", "start": 707, "end": 710, "id": 126, "annotation": null}, {"text": "electrolyte", "start": 711, "end": 722, "id": 127, "annotation": null}, {"text": ",", "start": 723, "end": 724, "id": 128, "annotation": null}, {"text": "as", "start": 725, "end": 727, "id": 129, "annotation": null}, {"text": "the", "start": 728, "end": 731, "id": 130, "annotation": null}, {"text": "anodic", "start": 732, "end": 738, "id": 131, "annotation": null}, {"text": "reaction", "start": 739, "end": 747, "id": 132, "annotation": null}, {"text": "rate", "start": 748, "end": 752, "id": 133, "annotation": null}, {"text": "becomes", "start": 753, "end": 760, "id": 134, "annotation": null}, {"text": "sufficiently", "start": 761, "end": 773, "id": 135, "annotation": null}, {"text": "high", "start": 774, "end": 778, "id": 136, "annotation": null}, {"text": "due", "start": 779, "end": 782, "id": 137, "annotation": null}, {"text": "to", "start": 783, "end": 785, "id": 138, "annotation": null}, {"text": "highly", "start": 786, "end": 792, "id": 139, "annotation": null}, {"text": "dispersed", "start": 793, "end": 802, "id": 140, "annotation": null}, {"text": "Ru", "start": 803, "end": 805, "id": 141, "annotation": null}, {"text": "electrocatalysts", "start": 806, "end": 822, "id": 142, "annotation": null}, {"text": ".", "start": 823, "end": 824, "id": 143, "annotation": null}], [{"text": "Consequently", "start": 825, "end": 837, "id": 144, "annotation": null}, {"text": ",", "start": 838, "end": 839, "id": 145, "annotation": null}, {"text": "it", "start": 840, "end": 842, "id": 146, "annotation": null}, {"text": "is", "start": 843, "end": 845, "id": 147, "annotation": null}, {"text": "clear", "start": 846, "end": 851, "id": 148, "annotation": null}, {"text": "that", "start": 852, "end": 856, "id": 149, "annotation": null}, {"text": "the", "start": 857, "end": 860, "id": 150, "annotation": null}, {"text": "use", "start": 861, "end": 864, "id": 151, "annotation": null}, {"text": "of", "start": 865, "end": 867, "id": 152, "annotation": null}, {"text": "high", "start": 868, "end": 872, "id": 153, "annotation": null}, {"text": "-", "start": 873, "end": 874, "id": 154, "annotation": null}, {"text": "performance", "start": 875, "end": 886, "id": 155, "annotation": null}, {"text": "electrodes", "start": 887, "end": 897, "id": 156, "annotation": null}, {"text": "in", "start": 898, "end": 900, "id": 157, "annotation": null}, {"text": "combination", "start": 901, "end": 912, "id": 158, "annotation": null}, {"text": "with", "start": 913, "end": 917, "id": 159, "annotation": null}, {"text": "the", "start": 918, "end": 921, "id": 160, "annotation": null}, {"text": "solid", "start": 922, "end": 927, "id": 161, "annotation": null}, {"text": "electrolyte", "start": 928, "end": 939, "id": 162, "annotation": null}, {"text": "having", "start": 940, "end": 946, "id": 163, "annotation": null}, {"text": "high", "start": 947, "end": 951, "id": 164, "annotation": null}, {"text": "\u03c3ion", "start": 952, "end": 956, "id": 165, "annotation": null}, {"text": "is", "start": 957, "end": 959, "id": 166, "annotation": null}, {"text": "a", "start": 960, "end": 961, "id": 167, "annotation": null}, {"text": "prerequisite", "start": 962, "end": 974, "id": 168, "annotation": null}, {"text": "to", "start": 975, "end": 977, "id": 169, "annotation": null}, {"text": "achieving", "start": 978, "end": 987, "id": 170, "annotation": null}, {"text": "high", "start": 988, "end": 992, "id": 171, "annotation": null}, {"text": "performance", "start": 993, "end": 1004, "id": 172, "annotation": null}, {"text": "of", "start": 1005, "end": 1007, "id": 173, "annotation": null}, {"text": "solid", "start": 1008, "end": 1013, "id": 174, "annotation": null}, {"text": "oxide", "start": 1014, "end": 1019, "id": 175, "annotation": null}, {"text": "fuel", "start": 1020, "end": 1024, "id": 176, "annotation": null}, {"text": "cells", "start": 1025, "end": 1030, "id": 177, "annotation": null}, {"text": ".", "start": 1031, "end": 1032, "id": 178, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "\u00a9 2015 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim. Vacancy-type defects in Mg-implanted GaN were probed using a monoenergetic positron beam. Mg ions of multiple energies (15-180keV) were implanted to provide a 200-nm-deep box profile with Mg concentration of 4\u00d71019cm-3. The major defect species of vacancies introduced by Mg-implantation was a complex between Ga-vacancy (VGa) and nitrogen vacancies (VNs). After annealing above 1000\u00b0C, these defects started to agglomerate, and the major defect species became (VGa)2 coupled with VNs. The defect reaction occurred between not only the defects introduced by the implantation but also the defects introduced by an excess Mg-doping. The depth distribution of vacancy-type defects agreed well with that of implanted Mg, and no large change in the distribution was observed up to 1300\u00b0C annealing. Relationships between photoluminescence bands and vacancy-type defects introduced by Mg-implantation are also discussed.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "KGaA", "start": 35, "end": 39, "annotation": null}, {"text": ",", "start": 39, "end": 40, "annotation": null}, {"text": "Weinheim", "start": 41, "end": 49, "annotation": null}, {"text": ".", "start": 49, "end": 50, "annotation": null}], [{"text": "Vacancy", "start": 51, "end": 58, "annotation": null}, {"text": "-", "start": 58, "end": 59, "annotation": null}, {"text": "type", "start": 59, "end": 63, "annotation": null}, {"text": "defects", "start": 64, "end": 71, "annotation": null}, {"text": "in", "start": 72, "end": 74, "annotation": null}, {"text": "Mg", "start": 75, "end": 77, "annotation": "DOPANT"}, {"text": "-", "start": 77, "end": 78, "annotation": null}, {"text": "implanted", "start": 78, "end": 87, "annotation": null}, {"text": "GaN", "start": 88, "end": 91, "annotation": "BASEMAT"}, {"text": "were", "start": 92, "end": 96, "annotation": null}, {"text": "probed", "start": 97, "end": 103, "annotation": null}, {"text": "using", "start": 104, "end": 109, "annotation": null}, {"text": "a", "start": 110, "end": 111, "annotation": null}, {"text": "monoenergetic", "start": 112, "end": 125, "annotation": null}, {"text": "positron", "start": 126, "end": 134, "annotation": null}, {"text": "beam", "start": 135, "end": 139, "annotation": null}, {"text": ".", "start": 139, "end": 140, "annotation": null}], [{"text": "Mg", "start": 141, "end": 143, "annotation": "DOPANT"}, {"text": "ions", "start": 144, "end": 148, "annotation": "DOPANT"}, {"text": "of", "start": 149, "end": 151, "annotation": null}, {"text": "multiple", "start": 152, "end": 160, "annotation": null}, {"text": "energies", "start": 161, "end": 169, "annotation": null}, {"text": "(", "start": 170, "end": 171, "annotation": null}, {"text": "15-180keV", "start": 171, "end": 180, "annotation": null}, {"text": ")", "start": 180, "end": 181, "annotation": null}, {"text": "were", "start": 182, "end": 186, "annotation": null}, {"text": "implanted", "start": 187, "end": 196, "annotation": null}, {"text": "to", "start": 197, "end": 199, "annotation": null}, {"text": "provide", "start": 200, "end": 207, "annotation": null}, {"text": "a", "start": 208, "end": 209, "annotation": null}, {"text": "200-nm-deep", "start": 210, "end": 221, "annotation": null}, {"text": "box", "start": 222, "end": 225, "annotation": null}, {"text": "profile", "start": 226, "end": 233, "annotation": null}, {"text": "with", "start": 234, "end": 238, "annotation": null}, {"text": "Mg", "start": 239, "end": 241, "annotation": null}, {"text": "concentration", "start": 242, "end": 255, "annotation": null}, {"text": "of", "start": 256, "end": 258, "annotation": null}, {"text": "4", "start": 259, "end": 260, "annotation": "DOPMODQ"}, {"text": "\u00d7", "start": 260, "end": 261, "annotation": "DOPMODQ"}, {"text": "1019", "start": 261, "end": 265, "annotation": "DOPMODQ"}, {"text": "cm-3", "start": 265, "end": 269, "annotation": "DOPMODQ"}, {"text": ".", "start": 269, "end": 270, "annotation": null}], [{"text": "The", "start": 271, "end": 274, "annotation": null}, {"text": "major", "start": 275, "end": 280, "annotation": null}, {"text": "defect", "start": 281, "end": 287, "annotation": null}, {"text": "species", "start": 288, "end": 295, "annotation": null}, {"text": "of", "start": 296, "end": 298, "annotation": null}, {"text": "vacancies", "start": 299, "end": 308, "annotation": null}, {"text": "introduced", "start": 309, "end": 319, "annotation": null}, {"text": "by", "start": 320, "end": 322, "annotation": null}, {"text": "Mg", "start": 323, "end": 325, "annotation": "DOPANT"}, {"text": "-", "start": 325, "end": 326, "annotation": null}, {"text": "implantation", "start": 326, "end": 338, "annotation": null}, {"text": "was", "start": 339, "end": 342, "annotation": null}, {"text": "a", "start": 343, "end": 344, "annotation": null}, {"text": "complex", "start": 345, "end": 352, "annotation": null}, {"text": "between", "start": 353, "end": 360, "annotation": null}, {"text": "Ga", "start": 361, "end": 363, "annotation": null}, {"text": "-", "start": 363, "end": 364, "annotation": null}, {"text": "vacancy", "start": 364, "end": 371, "annotation": null}, {"text": "(", "start": 372, "end": 373, "annotation": null}, {"text": "VGa", "start": 373, "end": 376, "annotation": null}, {"text": ")", "start": 376, "end": 377, "annotation": null}, {"text": "and", "start": 378, "end": 381, "annotation": null}, {"text": "nitrogen", "start": 382, "end": 390, "annotation": null}, {"text": "vacancies", "start": 391, "end": 400, "annotation": null}, {"text": "(", "start": 401, "end": 402, "annotation": null}, {"text": "VNs", "start": 402, "end": 405, "annotation": null}, {"text": ")", "start": 405, "end": 406, "annotation": null}, {"text": ".", "start": 406, "end": 407, "annotation": null}], [{"text": "After", "start": 408, "end": 413, "annotation": null}, {"text": "annealing", "start": 414, "end": 423, "annotation": null}, {"text": "above", "start": 424, "end": 429, "annotation": null}, {"text": "1000", "start": 430, "end": 434, "annotation": null}, {"text": "\u00b0", "start": 434, "end": 435, "annotation": null}, {"text": "C", "start": 435, "end": 436, "annotation": null}, {"text": ",", "start": 436, "end": 437, "annotation": null}, {"text": "these", "start": 438, "end": 443, "annotation": null}, {"text": "defects", "start": 444, "end": 451, "annotation": null}, {"text": "started", "start": 452, "end": 459, "annotation": null}, {"text": "to", "start": 460, "end": 462, "annotation": null}, {"text": "agglomerate", "start": 463, "end": 474, "annotation": null}, {"text": ",", "start": 474, "end": 475, "annotation": null}, {"text": "and", "start": 476, "end": 479, "annotation": null}, {"text": "the", "start": 480, "end": 483, "annotation": null}, {"text": "major", "start": 484, "end": 489, "annotation": null}, {"text": "defect", "start": 490, "end": 496, "annotation": null}, {"text": "species", "start": 497, "end": 504, "annotation": null}, {"text": "became", "start": 505, "end": 511, "annotation": null}, {"text": "(VGa)2", "start": 512, "end": 518, "annotation": null}, {"text": "coupled", "start": 519, "end": 526, "annotation": null}, {"text": "with", "start": 527, "end": 531, "annotation": null}, {"text": "VNs", "start": 532, "end": 535, "annotation": null}, {"text": ".", "start": 535, "end": 536, "annotation": null}], [{"text": "The", "start": 537, "end": 540, "annotation": null}, {"text": "defect", "start": 541, "end": 547, "annotation": null}, {"text": "reaction", "start": 548, "end": 556, "annotation": null}, {"text": "occurred", "start": 557, "end": 565, "annotation": null}, {"text": "between", "start": 566, "end": 573, "annotation": null}, {"text": "not", "start": 574, "end": 577, "annotation": null}, {"text": "only", "start": 578, "end": 582, "annotation": null}, {"text": "the", "start": 583, "end": 586, "annotation": null}, {"text": "defects", "start": 587, "end": 594, "annotation": null}, {"text": "introduced", "start": 595, "end": 605, "annotation": null}, {"text": "by", "start": 606, "end": 608, "annotation": null}, {"text": "the", "start": 609, "end": 612, "annotation": null}, {"text": "implantation", "start": 613, "end": 625, "annotation": null}, {"text": "but", "start": 626, "end": 629, "annotation": null}, {"text": "also", "start": 630, "end": 634, "annotation": null}, {"text": "the", "start": 635, "end": 638, "annotation": null}, {"text": "defects", "start": 639, "end": 646, "annotation": null}, {"text": "introduced", "start": 647, "end": 657, "annotation": null}, {"text": "by", "start": 658, "end": 660, "annotation": null}, {"text": "an", "start": 661, "end": 663, "annotation": null}, {"text": "excess", "start": 664, "end": 670, "annotation": null}, {"text": "Mg", "start": 671, "end": 673, "annotation": "DOPANT"}, {"text": "-", "start": 673, "end": 674, "annotation": null}, {"text": "doping", "start": 674, "end": 680, "annotation": null}, {"text": ".", "start": 680, "end": 681, "annotation": null}], [{"text": "The", "start": 682, "end": 685, "annotation": null}, {"text": "depth", "start": 686, "end": 691, "annotation": null}, {"text": "distribution", "start": 692, "end": 704, "annotation": null}, {"text": "of", "start": 705, "end": 707, "annotation": null}, {"text": "vacancy", "start": 708, "end": 715, "annotation": null}, {"text": "-", "start": 715, "end": 716, "annotation": null}, {"text": "type", "start": 716, "end": 720, "annotation": null}, {"text": "defects", "start": 721, "end": 728, "annotation": null}, {"text": "agreed", "start": 729, "end": 735, "annotation": null}, {"text": "well", "start": 736, "end": 740, "annotation": null}, {"text": "with", "start": 741, "end": 745, "annotation": null}, {"text": "that", "start": 746, "end": 750, "annotation": null}, {"text": "of", "start": 751, "end": 753, "annotation": null}, {"text": "implanted", "start": 754, "end": 763, "annotation": null}, {"text": "Mg", "start": 764, "end": 766, "annotation": "DOPANT"}, {"text": ",", "start": 766, "end": 767, "annotation": null}, {"text": "and", "start": 768, "end": 771, "annotation": null}, {"text": "no", "start": 772, "end": 774, "annotation": null}, {"text": "large", "start": 775, "end": 780, "annotation": null}, {"text": "change", "start": 781, "end": 787, "annotation": null}, {"text": "in", "start": 788, "end": 790, "annotation": null}, {"text": "the", "start": 791, "end": 794, "annotation": null}, {"text": "distribution", "start": 795, "end": 807, "annotation": null}, {"text": "was", "start": 808, "end": 811, "annotation": null}, {"text": "observed", "start": 812, "end": 820, "annotation": null}, {"text": "up", "start": 821, "end": 823, "annotation": null}, {"text": "to", "start": 824, "end": 826, "annotation": null}, {"text": "1300", "start": 827, "end": 831, "annotation": null}, {"text": "\u00b0", "start": 831, "end": 832, "annotation": null}, {"text": "C", "start": 832, "end": 833, "annotation": null}, {"text": "annealing", "start": 834, "end": 843, "annotation": null}, {"text": ".", "start": 843, "end": 844, "annotation": null}], [{"text": "Relationships", "start": 845, "end": 858, "annotation": null}, {"text": "between", "start": 859, "end": 866, "annotation": null}, {"text": "photoluminescence", "start": 867, "end": 884, "annotation": null}, {"text": "bands", "start": 885, "end": 890, "annotation": null}, {"text": "and", "start": 891, "end": 894, "annotation": null}, {"text": "vacancy", "start": 895, "end": 902, "annotation": null}, {"text": "-", "start": 902, "end": 903, "annotation": null}, {"text": "type", "start": 903, "end": 907, "annotation": null}, {"text": "defects", "start": 908, "end": 915, "annotation": null}, {"text": "introduced", "start": 916, "end": 926, "annotation": null}, {"text": "by", "start": 927, "end": 929, "annotation": null}, {"text": "Mg", "start": 930, "end": 932, "annotation": "DOPANT"}, {"text": "-", "start": 932, "end": 933, "annotation": null}, {"text": "implantation", "start": 933, "end": 945, "annotation": null}, {"text": "are", "start": 946, "end": 949, "annotation": null}, {"text": "also", "start": 950, "end": 954, "annotation": null}, {"text": "discussed", "start": 955, "end": 964, "annotation": null}, {"text": ".", "start": 964, "end": 965, "annotation": null}]]} -{"remark": "doping_annt3", "text": "Metallic silicides have been used as contact materials on source/drain and gate in metal-oxide semiconductor (MOS) structure for 40 years. Since the 65 nm technology node, NiSi is the preferred material for contact in microelectronic due to low resistivity, low thermal budget, and low Si consumption. Ni(Pt)Si with 10 at.% Pt is currently employed in recent technologies since Pt allows to stabilize NiSi at high temperature. The presence of Pt and the very low thickness (<10 nm) needed for the device contacts bring new concerns for actual devices. In this work, in situ techniques [X-ray diffraction (XRD), X-ray reflectivity (XRR), sheet resistance, differential scanning calorimetry (DSC)] were combined with atom probe tomography (APT) to study the formation mechanisms as well as the redistribution of dopants and alloy elements (Pt, Pd.) during the silicide formation. Phenomena like nucleation, lateral growth, interfacial reaction, diffusion, precipitation, and transient phase formation are investigated. The effect of alloy elements (Pt, Pd.) and dopants (As, B.) as well as stress and defects induced by the confinement in devices on the silicide formation mechanism and alloying element redistribution is examined. In particular APT has been performed for the three-dimensional (3D) analysis of MOSFET at the atomic scale. The advances in the understanding of the mechanisms of formation and redistribution are discussed. \u00a9 2014 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Metallic", "start": 0, "end": 8, "annotation": null}, {"text": "silicides", "start": 9, "end": 18, "annotation": null}, {"text": "have", "start": 19, "end": 23, "annotation": null}, {"text": "been", "start": 24, "end": 28, "annotation": null}, {"text": "used", "start": 29, "end": 33, "annotation": null}, {"text": "as", "start": 34, "end": 36, "annotation": null}, {"text": "contact", "start": 37, "end": 44, "annotation": null}, {"text": "materials", "start": 45, "end": 54, "annotation": null}, {"text": "on", "start": 55, "end": 57, "annotation": null}, {"text": "source", "start": 58, "end": 64, "annotation": null}, {"text": "/", "start": 64, "end": 65, "annotation": null}, {"text": "drain", "start": 65, "end": 70, "annotation": null}, {"text": "and", "start": 71, "end": 74, "annotation": null}, {"text": "gate", "start": 75, "end": 79, "annotation": null}, {"text": "in", "start": 80, "end": 82, "annotation": null}, {"text": "metal", "start": 83, "end": 88, "annotation": null}, {"text": "-", "start": 88, "end": 89, "annotation": null}, {"text": "oxide", "start": 89, "end": 94, "annotation": null}, {"text": "semiconductor", "start": 95, "end": 108, "annotation": null}, {"text": "(", "start": 109, "end": 110, "annotation": null}, {"text": "MOS", "start": 110, "end": 113, "annotation": null}, {"text": ")", "start": 113, "end": 114, "annotation": null}, {"text": "structure", "start": 115, "end": 124, "annotation": null}, {"text": "for", "start": 125, "end": 128, "annotation": null}, {"text": "40", "start": 129, "end": 131, "annotation": null}, {"text": "years", "start": 132, "end": 137, "annotation": null}, {"text": ".", "start": 137, "end": 138, "annotation": null}], [{"text": "Since", "start": 139, "end": 144, "annotation": null}, {"text": "the", "start": 145, "end": 148, "annotation": null}, {"text": "65", "start": 149, "end": 151, "annotation": null}, {"text": "nm", "start": 152, "end": 154, "annotation": null}, {"text": "technology", "start": 155, "end": 165, "annotation": null}, {"text": "node", "start": 166, "end": 170, "annotation": null}, {"text": ",", "start": 170, "end": 171, "annotation": null}, {"text": "NiSi", "start": 172, "end": 176, "annotation": null}, {"text": "is", "start": 177, "end": 179, "annotation": null}, {"text": "the", "start": 180, "end": 183, "annotation": null}, {"text": "preferred", "start": 184, "end": 193, "annotation": null}, {"text": "material", "start": 194, "end": 202, "annotation": null}, {"text": "for", "start": 203, "end": 206, "annotation": null}, {"text": "contact", "start": 207, "end": 214, "annotation": null}, {"text": "in", "start": 215, "end": 217, "annotation": null}, {"text": "microelectronic", "start": 218, "end": 233, "annotation": null}, {"text": "due", "start": 234, "end": 237, "annotation": null}, {"text": "to", "start": 238, "end": 240, "annotation": null}, {"text": "low", "start": 241, "end": 244, "annotation": null}, {"text": "resistivity", "start": 245, "end": 256, "annotation": null}, {"text": ",", "start": 256, "end": 257, "annotation": null}, {"text": "low", "start": 258, "end": 261, "annotation": null}, {"text": "thermal", "start": 262, "end": 269, "annotation": null}, {"text": "budget", "start": 270, "end": 276, "annotation": null}, {"text": ",", "start": 276, "end": 277, "annotation": null}, {"text": "and", "start": 278, "end": 281, "annotation": null}, {"text": "low", "start": 282, "end": 285, "annotation": null}, {"text": "Si", "start": 286, "end": 288, "annotation": null}, {"text": "consumption", "start": 289, "end": 300, "annotation": null}, {"text": ".", "start": 300, "end": 301, "annotation": null}], [{"text": "Ni(Pt)Si", "start": 302, "end": 310, "annotation": null}, {"text": "with", "start": 311, "end": 315, "annotation": null}, {"text": "10", "start": 316, "end": 318, "annotation": null}, {"text": "at.", "start": 319, "end": 322, "annotation": null}, {"text": "%", "start": 322, "end": 323, "annotation": null}, {"text": "Pt", "start": 324, "end": 326, "annotation": null}, {"text": "is", "start": 327, "end": 329, "annotation": null}, {"text": "currently", "start": 330, "end": 339, "annotation": null}, {"text": "employed", "start": 340, "end": 348, "annotation": null}, {"text": "in", "start": 349, "end": 351, "annotation": null}, {"text": "recent", "start": 352, "end": 358, "annotation": null}, {"text": "technologies", "start": 359, "end": 371, "annotation": null}, {"text": "since", "start": 372, "end": 377, "annotation": null}, {"text": "Pt", "start": 378, "end": 380, "annotation": null}, {"text": "allows", "start": 381, "end": 387, "annotation": null}, {"text": "to", "start": 388, "end": 390, "annotation": null}, {"text": "stabilize", "start": 391, "end": 400, "annotation": null}, {"text": "NiSi", "start": 401, "end": 405, "annotation": null}, {"text": "at", "start": 406, "end": 408, "annotation": null}, {"text": "high", "start": 409, "end": 413, "annotation": null}, {"text": "temperature", "start": 414, "end": 425, "annotation": null}, {"text": ".", "start": 425, "end": 426, "annotation": null}], [{"text": "The", "start": 427, "end": 430, "annotation": null}, {"text": "presence", "start": 431, "end": 439, "annotation": null}, {"text": "of", "start": 440, "end": 442, "annotation": null}, {"text": "Pt", "start": 443, "end": 445, "annotation": null}, {"text": "and", "start": 446, "end": 449, "annotation": null}, {"text": "the", "start": 450, "end": 453, "annotation": null}, {"text": "very", "start": 454, "end": 458, "annotation": null}, {"text": "low", "start": 459, "end": 462, "annotation": null}, {"text": "thickness", "start": 463, "end": 472, "annotation": null}, {"text": "(", "start": 473, "end": 474, "annotation": null}, {"text": "<", "start": 474, "end": 475, "annotation": null}, {"text": "10", "start": 475, "end": 477, "annotation": null}, {"text": "nm", "start": 478, "end": 480, "annotation": null}, {"text": ")", "start": 480, "end": 481, "annotation": null}, {"text": "needed", "start": 482, "end": 488, "annotation": null}, {"text": "for", "start": 489, "end": 492, "annotation": null}, {"text": "the", "start": 493, "end": 496, "annotation": null}, {"text": "device", "start": 497, "end": 503, "annotation": null}, {"text": "contacts", "start": 504, "end": 512, "annotation": null}, {"text": "bring", "start": 513, "end": 518, "annotation": null}, {"text": "new", "start": 519, "end": 522, "annotation": null}, {"text": "concerns", "start": 523, "end": 531, "annotation": null}, {"text": "for", "start": 532, "end": 535, "annotation": null}, {"text": "actual", "start": 536, "end": 542, "annotation": null}, {"text": "devices", "start": 543, "end": 550, "annotation": null}, {"text": ".", "start": 550, "end": 551, "annotation": null}], [{"text": "In", "start": 552, "end": 554, "annotation": null}, {"text": "this", "start": 555, "end": 559, "annotation": null}, {"text": "work", "start": 560, "end": 564, "annotation": null}, {"text": ",", "start": 564, "end": 565, "annotation": null}, {"text": "in", "start": 566, "end": 568, "annotation": null}, {"text": "situ", "start": 569, "end": 573, "annotation": null}, {"text": "techniques", "start": 574, "end": 584, "annotation": null}, {"text": "[", "start": 585, "end": 586, "annotation": null}, {"text": "X-ray", "start": 586, "end": 591, "annotation": null}, {"text": "diffraction", "start": 592, "end": 603, "annotation": null}, {"text": "(", "start": 604, "end": 605, "annotation": null}, {"text": "XRD", "start": 605, "end": 608, "annotation": null}, {"text": ")", "start": 608, "end": 609, "annotation": null}, {"text": ",", "start": 609, "end": 610, "annotation": null}, {"text": "X-ray", "start": 611, "end": 616, "annotation": null}, {"text": "reflectivity", "start": 617, "end": 629, "annotation": null}, {"text": "(", "start": 630, "end": 631, "annotation": null}, {"text": "XRR", "start": 631, "end": 634, "annotation": null}, {"text": ")", "start": 634, "end": 635, "annotation": null}, {"text": ",", "start": 635, "end": 636, "annotation": null}, {"text": "sheet", "start": 637, "end": 642, "annotation": null}, {"text": "resistance", "start": 643, "end": 653, "annotation": null}, {"text": ",", "start": 653, "end": 654, "annotation": null}, {"text": "differential", "start": 655, "end": 667, "annotation": null}, {"text": "scanning", "start": 668, "end": 676, "annotation": null}, {"text": "calorimetry", "start": 677, "end": 688, "annotation": null}, {"text": "(", "start": 689, "end": 690, "annotation": null}, {"text": "DSC", "start": 690, "end": 693, "annotation": null}, {"text": ")", "start": 693, "end": 694, "annotation": null}, {"text": "]", "start": 694, "end": 695, "annotation": null}, {"text": "were", "start": 696, "end": 700, "annotation": null}, {"text": "combined", "start": 701, "end": 709, "annotation": null}, {"text": "with", "start": 710, "end": 714, "annotation": null}, {"text": "atom", "start": 715, "end": 719, "annotation": null}, {"text": "probe", "start": 720, "end": 725, "annotation": null}, {"text": "tomography", "start": 726, "end": 736, "annotation": null}, {"text": "(", "start": 737, "end": 738, "annotation": null}, {"text": "APT", "start": 738, "end": 741, "annotation": null}, {"text": ")", "start": 741, "end": 742, "annotation": null}, {"text": "to", "start": 743, "end": 745, "annotation": null}, {"text": "study", "start": 746, "end": 751, "annotation": null}, {"text": "the", "start": 752, "end": 755, "annotation": null}, {"text": "formation", "start": 756, "end": 765, "annotation": null}, {"text": "mechanisms", "start": 766, "end": 776, "annotation": null}, {"text": "as", "start": 777, "end": 779, "annotation": null}, {"text": "well", "start": 780, "end": 784, "annotation": null}, {"text": "as", "start": 785, "end": 787, "annotation": null}, {"text": "the", "start": 788, "end": 791, "annotation": null}, {"text": "redistribution", "start": 792, "end": 806, "annotation": null}, {"text": "of", "start": 807, "end": 809, "annotation": null}, {"text": "dopants", "start": 810, "end": 817, "annotation": null}, {"text": "and", "start": 818, "end": 821, "annotation": null}, {"text": "alloy", "start": 822, "end": 827, "annotation": null}, {"text": "elements", "start": 828, "end": 836, "annotation": null}, {"text": "(", "start": 837, "end": 838, "annotation": null}, {"text": "Pt", "start": 838, "end": 840, "annotation": null}, {"text": ",", "start": 840, "end": 841, "annotation": null}, {"text": "Pd", "start": 842, "end": 844, "annotation": null}, {"text": ".", "start": 844, "end": 845, "annotation": null}, {"text": ")", "start": 845, "end": 846, "annotation": null}], [{"text": "during", "start": 847, "end": 853, "annotation": null}, {"text": "the", "start": 854, "end": 857, "annotation": null}, {"text": "silicide", "start": 858, "end": 866, "annotation": null}, {"text": "formation", "start": 867, "end": 876, "annotation": null}, {"text": ".", "start": 876, "end": 877, "annotation": null}], [{"text": "Phenomena", "start": 878, "end": 887, "annotation": null}, {"text": "like", "start": 888, "end": 892, "annotation": null}, {"text": "nucleation", "start": 893, "end": 903, "annotation": null}, {"text": ",", "start": 903, "end": 904, "annotation": null}, {"text": "lateral", "start": 905, "end": 912, "annotation": null}, {"text": "growth", "start": 913, "end": 919, "annotation": null}, {"text": ",", "start": 919, "end": 920, "annotation": null}, {"text": "interfacial", "start": 921, "end": 932, "annotation": null}, {"text": "reaction", "start": 933, "end": 941, "annotation": null}, {"text": ",", "start": 941, "end": 942, "annotation": null}, {"text": "diffusion", "start": 943, "end": 952, "annotation": null}, {"text": ",", "start": 952, "end": 953, "annotation": null}, {"text": "precipitation", "start": 954, "end": 967, "annotation": null}, {"text": ",", "start": 967, "end": 968, "annotation": null}, {"text": "and", "start": 969, "end": 972, "annotation": null}, {"text": "transient", "start": 973, "end": 982, "annotation": null}, {"text": "phase", "start": 983, "end": 988, "annotation": null}, {"text": "formation", "start": 989, "end": 998, "annotation": null}, {"text": "are", "start": 999, "end": 1002, "annotation": null}, {"text": "investigated", "start": 1003, "end": 1015, "annotation": null}, {"text": ".", "start": 1015, "end": 1016, "annotation": null}], [{"text": "The", "start": 1017, "end": 1020, "annotation": null}, {"text": "effect", "start": 1021, "end": 1027, "annotation": null}, {"text": "of", "start": 1028, "end": 1030, "annotation": null}, {"text": "alloy", "start": 1031, "end": 1036, "annotation": null}, {"text": "elements", "start": 1037, "end": 1045, "annotation": null}, {"text": "(", "start": 1046, "end": 1047, "annotation": null}, {"text": "Pt", "start": 1047, "end": 1049, "annotation": null}, {"text": ",", "start": 1049, "end": 1050, "annotation": null}, {"text": "Pd", "start": 1051, "end": 1053, "annotation": null}, {"text": ".", "start": 1053, "end": 1054, "annotation": null}, {"text": ")", "start": 1054, "end": 1055, "annotation": null}], [{"text": "and", "start": 1056, "end": 1059, "annotation": null}, {"text": "dopants", "start": 1060, "end": 1067, "annotation": null}, {"text": "(", "start": 1068, "end": 1069, "annotation": null}, {"text": "As", "start": 1069, "end": 1071, "annotation": "DOPANT"}, {"text": ",", "start": 1071, "end": 1072, "annotation": null}, {"text": "B", "start": 1073, "end": 1074, "annotation": "DOPANT"}, {"text": ".", "start": 1074, "end": 1075, "annotation": null}, {"text": ")", "start": 1075, "end": 1076, "annotation": null}], [{"text": "as", "start": 1077, "end": 1079, "annotation": null}, {"text": "well", "start": 1080, "end": 1084, "annotation": null}, {"text": "as", "start": 1085, "end": 1087, "annotation": null}, {"text": "stress", "start": 1088, "end": 1094, "annotation": null}, {"text": "and", "start": 1095, "end": 1098, "annotation": null}, {"text": "defects", "start": 1099, "end": 1106, "annotation": null}, {"text": "induced", "start": 1107, "end": 1114, "annotation": null}, {"text": "by", "start": 1115, "end": 1117, "annotation": null}, {"text": "the", "start": 1118, "end": 1121, "annotation": null}, {"text": "confinement", "start": 1122, "end": 1133, "annotation": null}, {"text": "in", "start": 1134, "end": 1136, "annotation": null}, {"text": "devices", "start": 1137, "end": 1144, "annotation": null}, {"text": "on", "start": 1145, "end": 1147, "annotation": null}, {"text": "the", "start": 1148, "end": 1151, "annotation": null}, {"text": "silicide", "start": 1152, "end": 1160, "annotation": "BASEMAT"}, {"text": "formation", "start": 1161, "end": 1170, "annotation": null}, {"text": "mechanism", "start": 1171, "end": 1180, "annotation": null}, {"text": "and", "start": 1181, "end": 1184, "annotation": null}, {"text": "alloying", "start": 1185, "end": 1193, "annotation": null}, {"text": "element", "start": 1194, "end": 1201, "annotation": null}, {"text": "redistribution", "start": 1202, "end": 1216, "annotation": null}, {"text": "is", "start": 1217, "end": 1219, "annotation": null}, {"text": "examined", "start": 1220, "end": 1228, "annotation": null}, {"text": ".", "start": 1228, "end": 1229, "annotation": null}], [{"text": "In", "start": 1230, "end": 1232, "annotation": null}, {"text": "particular", "start": 1233, "end": 1243, "annotation": null}, {"text": "APT", "start": 1244, "end": 1247, "annotation": null}, {"text": "has", "start": 1248, "end": 1251, "annotation": null}, {"text": "been", "start": 1252, "end": 1256, "annotation": null}, {"text": "performed", "start": 1257, "end": 1266, "annotation": null}, {"text": "for", "start": 1267, "end": 1270, "annotation": null}, {"text": "the", "start": 1271, "end": 1274, "annotation": null}, {"text": "three", "start": 1275, "end": 1280, "annotation": null}, {"text": "-", "start": 1280, "end": 1281, "annotation": null}, {"text": "dimensional", "start": 1281, "end": 1292, "annotation": null}, {"text": "(", "start": 1293, "end": 1294, "annotation": null}, {"text": "3D", "start": 1294, "end": 1296, "annotation": null}, {"text": ")", "start": 1296, "end": 1297, "annotation": null}, {"text": "analysis", "start": 1298, "end": 1306, "annotation": null}, {"text": "of", "start": 1307, "end": 1309, "annotation": null}, {"text": "MOSFET", "start": 1310, "end": 1316, "annotation": null}, {"text": "at", "start": 1317, "end": 1319, "annotation": null}, {"text": "the", "start": 1320, "end": 1323, "annotation": null}, {"text": "atomic", "start": 1324, "end": 1330, "annotation": null}, {"text": "scale", "start": 1331, "end": 1336, "annotation": null}, {"text": ".", "start": 1336, "end": 1337, "annotation": null}], [{"text": "The", "start": 1338, "end": 1341, "annotation": null}, {"text": "advances", "start": 1342, "end": 1350, "annotation": null}, {"text": "in", "start": 1351, "end": 1353, "annotation": null}, {"text": "the", "start": 1354, "end": 1357, "annotation": null}, {"text": "understanding", "start": 1358, "end": 1371, "annotation": null}, {"text": "of", "start": 1372, "end": 1374, "annotation": null}, {"text": "the", "start": 1375, "end": 1378, "annotation": null}, {"text": "mechanisms", "start": 1379, "end": 1389, "annotation": null}, {"text": "of", "start": 1390, "end": 1392, "annotation": null}, {"text": "formation", "start": 1393, "end": 1402, "annotation": null}, {"text": "and", "start": 1403, "end": 1406, "annotation": null}, {"text": "redistribution", "start": 1407, "end": 1421, "annotation": null}, {"text": "are", "start": 1422, "end": 1425, "annotation": null}, {"text": "discussed", "start": 1426, "end": 1435, "annotation": null}, {"text": ".", "start": 1435, "end": 1436, "annotation": null}], [{"text": "KGaA", "start": 1472, "end": 1476, "annotation": null}, {"text": ",", "start": 1476, "end": 1477, "annotation": null}, {"text": "Weinheim", "start": 1478, "end": 1486, "annotation": null}, {"text": ".", "start": 1486, "end": 1487, "annotation": null}]]} -{"remark": "doping_annt1", "text": "A novel cost-effective cathode catalyst, manganese dioxide (MnO2) featured with a cryptomelane-type octahedral molecular sieve (OMS-2) structure, was examined in continuous flow microbial fuel cells (MFCs). Power generation and organic substrate removal efficiency of two metal ions doped OMS-2 cathodes (cobalt (Co)-OMS-2 and copper (Cu)-OMS-2) were compared with platinum (Pt) cathodes under different hydraulic retention times (HRTs) and chemical oxygen demands (CODs). The 600-h continuous flow tests showed that Cu-OMS-2 MFCs and Co-OMS-2 MFCs achieved the stable power generation of 200\u00b18mV and 190\u00b15mV, and were 50\u201360mV higher than that of Pt MFCs. The COD removal efficiencies of Cu-OMS-2 MFCs and Co-OMS-2 MFCs were 83\u201387%, which were 15\u201319% higher than that of Pt MFCs. The power generation and COD removal efficiency increased with longer HRTs. The Cu-OMS-2 exhibited the highest power density (201mW/m2) at the COD of 1000mg/L. However, Co-OMS-2 cathodes had the better performance than Cu-OMs-2 at high COD concentrations of 2000\u20134000mg/L, with the power density of 897mW/m2 and COD removal efficiency of 46%. The continuous flow MFC tests demonstrated that the fast reaction rate of OMS-2 cathodes enhanced power generation and COD removal efficiency, and had a great potential to be applied in real-world wastewater treatment processes.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "novel", "start": 2, "end": 7, "annotation": null}, {"text": "cost", "start": 8, "end": 12, "annotation": null}, {"text": "-", "start": 12, "end": 13, "annotation": null}, {"text": "effective", "start": 13, "end": 22, "annotation": null}, {"text": "cathode", "start": 23, "end": 30, "annotation": null}, {"text": "catalyst", "start": 31, "end": 39, "annotation": null}, {"text": ",", "start": 39, "end": 40, "annotation": null}, {"text": "manganese", "start": 41, "end": 50, "annotation": null}, {"text": "dioxide", "start": 51, "end": 58, "annotation": null}, {"text": "(", "start": 59, "end": 60, "annotation": null}, {"text": "MnO2", "start": 60, "end": 64, "annotation": null}, {"text": ")", "start": 64, "end": 65, "annotation": null}, {"text": "featured", "start": 66, "end": 74, "annotation": null}, {"text": "with", "start": 75, "end": 79, "annotation": null}, {"text": "a", "start": 80, "end": 81, "annotation": null}, {"text": "cryptomelane", "start": 82, "end": 94, "annotation": null}, {"text": "-", "start": 94, "end": 95, "annotation": null}, {"text": "type", "start": 95, "end": 99, "annotation": null}, {"text": "octahedral", "start": 100, "end": 110, "annotation": null}, {"text": "molecular", "start": 111, "end": 120, "annotation": null}, {"text": "sieve", "start": 121, "end": 126, "annotation": null}, {"text": "(", "start": 127, "end": 128, "annotation": null}, {"text": "OMS-2", "start": 128, "end": 133, "annotation": null}, {"text": ")", "start": 133, "end": 134, "annotation": null}, {"text": "structure", "start": 135, "end": 144, "annotation": null}, {"text": ",", "start": 144, "end": 145, "annotation": null}, {"text": "was", "start": 146, "end": 149, "annotation": null}, {"text": "examined", "start": 150, "end": 158, "annotation": null}, {"text": "in", "start": 159, "end": 161, "annotation": null}, {"text": "continuous", "start": 162, "end": 172, "annotation": null}, {"text": "flow", "start": 173, "end": 177, "annotation": null}, {"text": "microbial", "start": 178, "end": 187, "annotation": null}, {"text": "fuel", "start": 188, "end": 192, "annotation": null}, {"text": "cells", "start": 193, "end": 198, "annotation": null}, {"text": "(", "start": 199, "end": 200, "annotation": null}, {"text": "MFCs", "start": 200, "end": 204, "annotation": null}, {"text": ")", "start": 204, "end": 205, "annotation": null}, {"text": ".", "start": 205, "end": 206, "annotation": null}], [{"text": "Power", "start": 207, "end": 212, "annotation": null}, {"text": "generation", "start": 213, "end": 223, "annotation": null}, {"text": "and", "start": 224, "end": 227, "annotation": null}, {"text": "organic", "start": 228, "end": 235, "annotation": null}, {"text": "substrate", "start": 236, "end": 245, "annotation": null}, {"text": "removal", "start": 246, "end": 253, "annotation": null}, {"text": "efficiency", "start": 254, "end": 264, "annotation": null}, {"text": "of", "start": 265, "end": 267, "annotation": null}, {"text": "two", "start": 268, "end": 271, "annotation": null}, {"text": "metal", "start": 272, "end": 277, "annotation": null}, {"text": "ions", "start": 278, "end": 282, "annotation": null}, {"text": "doped", "start": 283, "end": 288, "annotation": null}, {"text": "OMS-2", "start": 289, "end": 294, "annotation": "BASEMAT"}, {"text": "cathodes", "start": 295, "end": 303, "annotation": null}, {"text": "(", "start": 304, "end": 305, "annotation": null}, {"text": "cobalt", "start": 305, "end": 311, "annotation": "BASEMAT"}, {"text": "(Co)-OMS-2", "start": 312, "end": 322, "annotation": null}, {"text": "and", "start": 323, "end": 326, "annotation": null}, {"text": "copper", "start": 327, "end": 333, "annotation": "BASEMAT"}, {"text": "(Cu)-OMS-2", "start": 334, "end": 344, "annotation": null}, {"text": ")", "start": 344, "end": 345, "annotation": null}, {"text": "were", "start": 346, "end": 350, "annotation": null}, {"text": "compared", "start": 351, "end": 359, "annotation": null}, {"text": "with", "start": 360, "end": 364, "annotation": null}, {"text": "platinum", "start": 365, "end": 373, "annotation": null}, {"text": "(", "start": 374, "end": 375, "annotation": null}, {"text": "Pt", "start": 375, "end": 377, "annotation": null}, {"text": ")", "start": 377, "end": 378, "annotation": null}, {"text": "cathodes", "start": 379, "end": 387, "annotation": null}, {"text": "under", "start": 388, "end": 393, "annotation": null}, {"text": "different", "start": 394, "end": 403, "annotation": null}, {"text": "hydraulic", "start": 404, "end": 413, "annotation": null}, {"text": "retention", "start": 414, "end": 423, "annotation": null}, {"text": "times", "start": 424, "end": 429, "annotation": null}, {"text": "(", "start": 430, "end": 431, "annotation": null}, {"text": "HRTs", "start": 431, "end": 435, "annotation": null}, {"text": ")", "start": 435, "end": 436, "annotation": null}, {"text": "and", "start": 437, "end": 440, "annotation": null}, {"text": "chemical", "start": 441, "end": 449, "annotation": null}, {"text": "oxygen", "start": 450, "end": 456, "annotation": null}, {"text": "demands", "start": 457, "end": 464, "annotation": null}, {"text": "(", "start": 465, "end": 466, "annotation": null}, {"text": "CODs", "start": 466, "end": 470, "annotation": null}, {"text": ")", "start": 470, "end": 471, "annotation": null}, {"text": ".", "start": 471, "end": 472, "annotation": null}], [{"text": "The", "start": 473, "end": 476, "annotation": null}, {"text": "600-h", "start": 477, "end": 482, "annotation": null}, {"text": "continuous", "start": 483, "end": 493, "annotation": null}, {"text": "flow", "start": 494, "end": 498, "annotation": null}, {"text": "tests", "start": 499, "end": 504, "annotation": null}, {"text": "showed", "start": 505, "end": 511, "annotation": null}, {"text": "that", "start": 512, "end": 516, "annotation": null}, {"text": "Cu-OMS-2", "start": 517, "end": 525, "annotation": null}, {"text": "MFCs", "start": 526, "end": 530, "annotation": null}, {"text": "and", "start": 531, "end": 534, "annotation": null}, {"text": "Co-OMS-2", "start": 535, "end": 543, "annotation": null}, {"text": "MFCs", "start": 544, "end": 548, "annotation": null}, {"text": "achieved", "start": 549, "end": 557, "annotation": null}, {"text": "the", "start": 558, "end": 561, "annotation": null}, {"text": "stable", "start": 562, "end": 568, "annotation": null}, {"text": "power", "start": 569, "end": 574, "annotation": null}, {"text": "generation", "start": 575, "end": 585, "annotation": null}, {"text": "of", "start": 586, "end": 588, "annotation": null}, {"text": "200", "start": 589, "end": 592, "annotation": null}, {"text": "\u00b1", "start": 592, "end": 593, "annotation": null}, {"text": "8", "start": 593, "end": 594, "annotation": null}, {"text": "mV", "start": 594, "end": 596, "annotation": null}, {"text": "and", "start": 597, "end": 600, "annotation": null}, {"text": "190", "start": 601, "end": 604, "annotation": null}, {"text": "\u00b1", "start": 604, "end": 605, "annotation": null}, {"text": "5", "start": 605, "end": 606, "annotation": null}, {"text": "mV", "start": 606, "end": 608, "annotation": null}, {"text": ",", "start": 608, "end": 609, "annotation": null}, {"text": "and", "start": 610, "end": 613, "annotation": null}, {"text": "were", "start": 614, "end": 618, "annotation": null}, {"text": "50", "start": 619, "end": 621, "annotation": null}, {"text": "\u2013", "start": 621, "end": 622, "annotation": null}, {"text": "60", "start": 622, "end": 624, "annotation": null}, {"text": "mV", "start": 624, "end": 626, "annotation": null}, {"text": "higher", "start": 627, "end": 633, "annotation": null}, {"text": "than", "start": 634, "end": 638, "annotation": null}, {"text": "that", "start": 639, "end": 643, "annotation": null}, {"text": "of", "start": 644, "end": 646, "annotation": null}, {"text": "Pt", "start": 647, "end": 649, "annotation": null}, {"text": "MFCs", "start": 650, "end": 654, "annotation": null}, {"text": ".", "start": 654, "end": 655, "annotation": null}], [{"text": "The", "start": 656, "end": 659, "annotation": null}, {"text": "COD", "start": 660, "end": 663, "annotation": null}, {"text": "removal", "start": 664, "end": 671, "annotation": null}, {"text": "efficiencies", "start": 672, "end": 684, "annotation": null}, {"text": "of", "start": 685, "end": 687, "annotation": null}, {"text": "Cu-OMS-2", "start": 688, "end": 696, "annotation": null}, {"text": "MFCs", "start": 697, "end": 701, "annotation": null}, {"text": "and", "start": 702, "end": 705, "annotation": null}, {"text": "Co-OMS-2", "start": 706, "end": 714, "annotation": null}, {"text": "MFCs", "start": 715, "end": 719, "annotation": null}, {"text": "were", "start": 720, "end": 724, "annotation": null}, {"text": "83", "start": 725, "end": 727, "annotation": null}, {"text": "\u2013", "start": 727, "end": 728, "annotation": null}, {"text": "87", "start": 728, "end": 730, "annotation": null}, {"text": "%", "start": 730, "end": 731, "annotation": null}, {"text": ",", "start": 731, "end": 732, "annotation": null}, {"text": "which", "start": 733, "end": 738, "annotation": null}, {"text": "were", "start": 739, "end": 743, "annotation": null}, {"text": "15", "start": 744, "end": 746, "annotation": null}, {"text": "\u2013", "start": 746, "end": 747, "annotation": null}, {"text": "19", "start": 747, "end": 749, "annotation": null}, {"text": "%", "start": 749, "end": 750, "annotation": null}, {"text": "higher", "start": 751, "end": 757, "annotation": null}, {"text": "than", "start": 758, "end": 762, "annotation": null}, {"text": "that", "start": 763, "end": 767, "annotation": null}, {"text": "of", "start": 768, "end": 770, "annotation": null}, {"text": "Pt", "start": 771, "end": 773, "annotation": null}, {"text": "MFCs", "start": 774, "end": 778, "annotation": null}, {"text": ".", "start": 778, "end": 779, "annotation": null}], [{"text": "The", "start": 780, "end": 783, "annotation": null}, {"text": "power", "start": 784, "end": 789, "annotation": null}, {"text": "generation", "start": 790, "end": 800, "annotation": null}, {"text": "and", "start": 801, "end": 804, "annotation": null}, {"text": "COD", "start": 805, "end": 808, "annotation": null}, {"text": "removal", "start": 809, "end": 816, "annotation": null}, {"text": "efficiency", "start": 817, "end": 827, "annotation": null}, {"text": "increased", "start": 828, "end": 837, "annotation": null}, {"text": "with", "start": 838, "end": 842, "annotation": null}, {"text": "longer", "start": 843, "end": 849, "annotation": null}, {"text": "HRTs", "start": 850, "end": 854, "annotation": null}, {"text": ".", "start": 854, "end": 855, "annotation": null}], [{"text": "The", "start": 856, "end": 859, "annotation": null}, {"text": "Cu-OMS-2", "start": 860, "end": 868, "annotation": null}, {"text": "exhibited", "start": 869, "end": 878, "annotation": null}, {"text": "the", "start": 879, "end": 882, "annotation": null}, {"text": "highest", "start": 883, "end": 890, "annotation": null}, {"text": "power", "start": 891, "end": 896, "annotation": null}, {"text": "density", "start": 897, "end": 904, "annotation": null}, {"text": "(", "start": 905, "end": 906, "annotation": null}, {"text": "201", "start": 906, "end": 909, "annotation": null}, {"text": "mW", "start": 909, "end": 911, "annotation": null}, {"text": "/", "start": 911, "end": 912, "annotation": null}, {"text": "m2", "start": 912, "end": 914, "annotation": null}, {"text": ")", "start": 914, "end": 915, "annotation": null}, {"text": "at", "start": 916, "end": 918, "annotation": null}, {"text": "the", "start": 919, "end": 922, "annotation": null}, {"text": "COD", "start": 923, "end": 926, "annotation": null}, {"text": "of", "start": 927, "end": 929, "annotation": null}, {"text": "1000", "start": 930, "end": 934, "annotation": null}, {"text": "mg", "start": 934, "end": 936, "annotation": null}, {"text": "/", "start": 936, "end": 937, "annotation": null}, {"text": "L", "start": 937, "end": 938, "annotation": null}, {"text": ".", "start": 938, "end": 939, "annotation": null}], [{"text": "However", "start": 940, "end": 947, "annotation": null}, {"text": ",", "start": 947, "end": 948, "annotation": null}, {"text": "Co-OMS-2", "start": 949, "end": 957, "annotation": null}, {"text": "cathodes", "start": 958, "end": 966, "annotation": null}, {"text": "had", "start": 967, "end": 970, "annotation": null}, {"text": "the", "start": 971, "end": 974, "annotation": null}, {"text": "better", "start": 975, "end": 981, "annotation": null}, {"text": "performance", "start": 982, "end": 993, "annotation": null}, {"text": "than", "start": 994, "end": 998, "annotation": null}, {"text": "Cu-OMs-2", "start": 999, "end": 1007, "annotation": null}, {"text": "at", "start": 1008, "end": 1010, "annotation": null}, {"text": "high", "start": 1011, "end": 1015, "annotation": null}, {"text": "COD", "start": 1016, "end": 1019, "annotation": null}, {"text": "concentrations", "start": 1020, "end": 1034, "annotation": null}, {"text": "of", "start": 1035, "end": 1037, "annotation": null}, {"text": "2000", "start": 1038, "end": 1042, "annotation": null}, {"text": "\u2013", "start": 1042, "end": 1043, "annotation": null}, {"text": "4000", "start": 1043, "end": 1047, "annotation": null}, {"text": "mg", "start": 1047, "end": 1049, "annotation": null}, {"text": "/", "start": 1049, "end": 1050, "annotation": null}, {"text": "L", "start": 1050, "end": 1051, "annotation": null}, {"text": ",", "start": 1051, "end": 1052, "annotation": null}, {"text": "with", "start": 1053, "end": 1057, "annotation": null}, {"text": "the", "start": 1058, "end": 1061, "annotation": null}, {"text": "power", "start": 1062, "end": 1067, "annotation": null}, {"text": "density", "start": 1068, "end": 1075, "annotation": null}, {"text": "of", "start": 1076, "end": 1078, "annotation": null}, {"text": "897", "start": 1079, "end": 1082, "annotation": null}, {"text": "mW", "start": 1082, "end": 1084, "annotation": null}, {"text": "/", "start": 1084, "end": 1085, "annotation": null}, {"text": "m2", "start": 1085, "end": 1087, "annotation": null}, {"text": "and", "start": 1088, "end": 1091, "annotation": null}, {"text": "COD", "start": 1092, "end": 1095, "annotation": null}, {"text": "removal", "start": 1096, "end": 1103, "annotation": null}, {"text": "efficiency", "start": 1104, "end": 1114, "annotation": null}, {"text": "of", "start": 1115, "end": 1117, "annotation": null}, {"text": "46", "start": 1118, "end": 1120, "annotation": null}, {"text": "%", "start": 1120, "end": 1121, "annotation": null}, {"text": ".", "start": 1121, "end": 1122, "annotation": null}], [{"text": "The", "start": 1123, "end": 1126, "annotation": null}, {"text": "continuous", "start": 1127, "end": 1137, "annotation": null}, {"text": "flow", "start": 1138, "end": 1142, "annotation": null}, {"text": "MFC", "start": 1143, "end": 1146, "annotation": null}, {"text": "tests", "start": 1147, "end": 1152, "annotation": null}, {"text": "demonstrated", "start": 1153, "end": 1165, "annotation": null}, {"text": "that", "start": 1166, "end": 1170, "annotation": null}, {"text": "the", "start": 1171, "end": 1174, "annotation": null}, {"text": "fast", "start": 1175, "end": 1179, "annotation": null}, {"text": "reaction", "start": 1180, "end": 1188, "annotation": null}, {"text": "rate", "start": 1189, "end": 1193, "annotation": null}, {"text": "of", "start": 1194, "end": 1196, "annotation": null}, {"text": "OMS-2", "start": 1197, "end": 1202, "annotation": null}, {"text": "cathodes", "start": 1203, "end": 1211, "annotation": null}, {"text": "enhanced", "start": 1212, "end": 1220, "annotation": null}, {"text": "power", "start": 1221, "end": 1226, "annotation": null}, {"text": "generation", "start": 1227, "end": 1237, "annotation": null}, {"text": "and", "start": 1238, "end": 1241, "annotation": null}, {"text": "COD", "start": 1242, "end": 1245, "annotation": null}, {"text": "removal", "start": 1246, "end": 1253, "annotation": null}, {"text": "efficiency", "start": 1254, "end": 1264, "annotation": null}, {"text": ",", "start": 1264, "end": 1265, "annotation": null}, {"text": "and", "start": 1266, "end": 1269, "annotation": null}, {"text": "had", "start": 1270, "end": 1273, "annotation": null}, {"text": "a", "start": 1274, "end": 1275, "annotation": null}, {"text": "great", "start": 1276, "end": 1281, "annotation": null}, {"text": "potential", "start": 1282, "end": 1291, "annotation": null}, {"text": "to", "start": 1292, "end": 1294, "annotation": null}, {"text": "be", "start": 1295, "end": 1297, "annotation": null}, {"text": "applied", "start": 1298, "end": 1305, "annotation": null}, {"text": "in", "start": 1306, "end": 1308, "annotation": null}, {"text": "real", "start": 1309, "end": 1313, "annotation": null}, {"text": "-", "start": 1313, "end": 1314, "annotation": null}, {"text": "world", "start": 1314, "end": 1319, "annotation": null}, {"text": "wastewater", "start": 1320, "end": 1330, "annotation": null}, {"text": "treatment", "start": 1331, "end": 1340, "annotation": null}, {"text": "processes", "start": 1341, "end": 1350, "annotation": null}, {"text": ".", "start": 1350, "end": 1351, "annotation": null}]]} +{"remark": "doping_annt3", "text": "\u00a9 2015 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim. Vacancy-type defects in Mg-implanted GaN were probed using a monoenergetic positron beam. Mg ions of multiple energies (15-180keV) were implanted to provide a 200-nm-deep box profile with Mg concentration of 4\u00d71019cm-3. The major defect species of vacancies introduced by Mg-implantation was a complex between Ga-vacancy (VGa) and nitrogen vacancies (VNs). After annealing above 1000\u00b0C, these defects started to agglomerate, and the major defect species became (VGa)2 coupled with VNs. The defect reaction occurred between not only the defects introduced by the implantation but also the defects introduced by an excess Mg-doping. The depth distribution of vacancy-type defects agreed well with that of implanted Mg, and no large change in the distribution was observed up to 1300\u00b0C annealing. Relationships between photoluminescence bands and vacancy-type defects introduced by Mg-implantation are also discussed.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "KGaA", "start": 35, "end": 39, "annotation": null}, {"text": ",", "start": 39, "end": 40, "annotation": null}, {"text": "Weinheim", "start": 41, "end": 49, "annotation": null}, {"text": ".", "start": 49, "end": 50, "annotation": null}], [{"text": "Vacancy", "start": 51, "end": 58, "annotation": null}, {"text": "-", "start": 58, "end": 59, "annotation": null}, {"text": "type", "start": 59, "end": 63, "annotation": null}, {"text": "defects", "start": 64, "end": 71, "annotation": null}, {"text": "in", "start": 72, "end": 74, "annotation": null}, {"text": "Mg", "start": 75, "end": 77, "annotation": "DOPANT"}, {"text": "-", "start": 77, "end": 78, "annotation": null}, {"text": "implanted", "start": 78, "end": 87, "annotation": null}, {"text": "GaN", "start": 88, "end": 91, "annotation": "BASEMAT"}, {"text": "were", "start": 92, "end": 96, "annotation": null}, {"text": "probed", "start": 97, "end": 103, "annotation": null}, {"text": "using", "start": 104, "end": 109, "annotation": null}, {"text": "a", "start": 110, "end": 111, "annotation": null}, {"text": "monoenergetic", "start": 112, "end": 125, "annotation": null}, {"text": "positron", "start": 126, "end": 134, "annotation": null}, {"text": "beam", "start": 135, "end": 139, "annotation": null}, {"text": ".", "start": 139, "end": 140, "annotation": null}], [{"text": "Mg", "start": 141, "end": 143, "annotation": "DOPANT"}, {"text": "ions", "start": 144, "end": 148, "annotation": "DOPANT"}, {"text": "of", "start": 149, "end": 151, "annotation": null}, {"text": "multiple", "start": 152, "end": 160, "annotation": null}, {"text": "energies", "start": 161, "end": 169, "annotation": null}, {"text": "(", "start": 170, "end": 171, "annotation": null}, {"text": "15-180keV", "start": 171, "end": 180, "annotation": null}, {"text": ")", "start": 180, "end": 181, "annotation": null}, {"text": "were", "start": 182, "end": 186, "annotation": null}, {"text": "implanted", "start": 187, "end": 196, "annotation": null}, {"text": "to", "start": 197, "end": 199, "annotation": null}, {"text": "provide", "start": 200, "end": 207, "annotation": null}, {"text": "a", "start": 208, "end": 209, "annotation": null}, {"text": "200-nm-deep", "start": 210, "end": 221, "annotation": null}, {"text": "box", "start": 222, "end": 225, "annotation": null}, {"text": "profile", "start": 226, "end": 233, "annotation": null}, {"text": "with", "start": 234, "end": 238, "annotation": null}, {"text": "Mg", "start": 239, "end": 241, "annotation": null}, {"text": "concentration", "start": 242, "end": 255, "annotation": null}, {"text": "of", "start": 256, "end": 258, "annotation": null}, {"text": "4", "start": 259, "end": 260, "annotation": "DOPMODQ"}, {"text": "\u00d7", "start": 260, "end": 261, "annotation": "DOPMODQ"}, {"text": "1019", "start": 261, "end": 265, "annotation": "DOPMODQ"}, {"text": "cm-3", "start": 265, "end": 269, "annotation": "DOPMODQ"}, {"text": ".", "start": 269, "end": 270, "annotation": null}], [{"text": "The", "start": 271, "end": 274, "annotation": null}, {"text": "major", "start": 275, "end": 280, "annotation": null}, {"text": "defect", "start": 281, "end": 287, "annotation": null}, {"text": "species", "start": 288, "end": 295, "annotation": null}, {"text": "of", "start": 296, "end": 298, "annotation": null}, {"text": "vacancies", "start": 299, "end": 308, "annotation": null}, {"text": "introduced", "start": 309, "end": 319, "annotation": null}, {"text": "by", "start": 320, "end": 322, "annotation": null}, {"text": "Mg", "start": 323, "end": 325, "annotation": "DOPANT"}, {"text": "-", "start": 325, "end": 326, "annotation": null}, {"text": "implantation", "start": 326, "end": 338, "annotation": null}, {"text": "was", "start": 339, "end": 342, "annotation": null}, {"text": "a", "start": 343, "end": 344, "annotation": null}, {"text": "complex", "start": 345, "end": 352, "annotation": null}, {"text": "between", "start": 353, "end": 360, "annotation": null}, {"text": "Ga", "start": 361, "end": 363, "annotation": null}, {"text": "-", "start": 363, "end": 364, "annotation": null}, {"text": "vacancy", "start": 364, "end": 371, "annotation": null}, {"text": "(", "start": 372, "end": 373, "annotation": null}, {"text": "VGa", "start": 373, "end": 376, "annotation": null}, {"text": ")", "start": 376, "end": 377, "annotation": null}, {"text": "and", "start": 378, "end": 381, "annotation": null}, {"text": "nitrogen", "start": 382, "end": 390, "annotation": null}, {"text": "vacancies", "start": 391, "end": 400, "annotation": null}, {"text": "(", "start": 401, "end": 402, "annotation": null}, {"text": "VNs", "start": 402, "end": 405, "annotation": null}, {"text": ")", "start": 405, "end": 406, "annotation": null}, {"text": ".", "start": 406, "end": 407, "annotation": null}], [{"text": "After", "start": 408, "end": 413, "annotation": null}, {"text": "annealing", "start": 414, "end": 423, "annotation": null}, {"text": "above", "start": 424, "end": 429, "annotation": null}, {"text": "1000", "start": 430, "end": 434, "annotation": null}, {"text": "\u00b0", "start": 434, "end": 435, "annotation": null}, {"text": "C", "start": 435, "end": 436, "annotation": null}, {"text": ",", "start": 436, "end": 437, "annotation": null}, {"text": "these", "start": 438, "end": 443, "annotation": null}, {"text": "defects", "start": 444, "end": 451, "annotation": null}, {"text": "started", "start": 452, "end": 459, "annotation": null}, {"text": "to", "start": 460, "end": 462, "annotation": null}, {"text": "agglomerate", "start": 463, "end": 474, "annotation": null}, {"text": ",", "start": 474, "end": 475, "annotation": null}, {"text": "and", "start": 476, "end": 479, "annotation": null}, {"text": "the", "start": 480, "end": 483, "annotation": null}, {"text": "major", "start": 484, "end": 489, "annotation": null}, {"text": "defect", "start": 490, "end": 496, "annotation": null}, {"text": "species", "start": 497, "end": 504, "annotation": null}, {"text": "became", "start": 505, "end": 511, "annotation": null}, {"text": "(VGa)2", "start": 512, "end": 518, "annotation": null}, {"text": "coupled", "start": 519, "end": 526, "annotation": null}, {"text": "with", "start": 527, "end": 531, "annotation": null}, {"text": "VNs", "start": 532, "end": 535, "annotation": null}, {"text": ".", "start": 535, "end": 536, "annotation": null}], [{"text": "The", "start": 537, "end": 540, "annotation": null}, {"text": "defect", "start": 541, "end": 547, "annotation": null}, {"text": "reaction", "start": 548, "end": 556, "annotation": null}, {"text": "occurred", "start": 557, "end": 565, "annotation": null}, {"text": "between", "start": 566, "end": 573, "annotation": null}, {"text": "not", "start": 574, "end": 577, "annotation": null}, {"text": "only", "start": 578, "end": 582, "annotation": null}, {"text": "the", "start": 583, "end": 586, "annotation": null}, {"text": "defects", "start": 587, "end": 594, "annotation": null}, {"text": "introduced", "start": 595, "end": 605, "annotation": null}, {"text": "by", "start": 606, "end": 608, "annotation": null}, {"text": "the", "start": 609, "end": 612, "annotation": null}, {"text": "implantation", "start": 613, "end": 625, "annotation": null}, {"text": "but", "start": 626, "end": 629, "annotation": null}, {"text": "also", "start": 630, "end": 634, "annotation": null}, {"text": "the", "start": 635, "end": 638, "annotation": null}, {"text": "defects", "start": 639, "end": 646, "annotation": null}, {"text": "introduced", "start": 647, "end": 657, "annotation": null}, {"text": "by", "start": 658, "end": 660, "annotation": null}, {"text": "an", "start": 661, "end": 663, "annotation": null}, {"text": "excess", "start": 664, "end": 670, "annotation": null}, {"text": "Mg", "start": 671, "end": 673, "annotation": "DOPANT"}, {"text": "-", "start": 673, "end": 674, "annotation": null}, {"text": "doping", "start": 674, "end": 680, "annotation": null}, {"text": ".", "start": 680, "end": 681, "annotation": null}], [{"text": "The", "start": 682, "end": 685, "annotation": null}, {"text": "depth", "start": 686, "end": 691, "annotation": null}, {"text": "distribution", "start": 692, "end": 704, "annotation": null}, {"text": "of", "start": 705, "end": 707, "annotation": null}, {"text": "vacancy", "start": 708, "end": 715, "annotation": null}, {"text": "-", "start": 715, "end": 716, "annotation": null}, {"text": "type", "start": 716, "end": 720, "annotation": null}, {"text": "defects", "start": 721, "end": 728, "annotation": null}, {"text": "agreed", "start": 729, "end": 735, "annotation": null}, {"text": "well", "start": 736, "end": 740, "annotation": null}, {"text": "with", "start": 741, "end": 745, "annotation": null}, {"text": "that", "start": 746, "end": 750, "annotation": null}, {"text": "of", "start": 751, "end": 753, "annotation": null}, {"text": "implanted", "start": 754, "end": 763, "annotation": null}, {"text": "Mg", "start": 764, "end": 766, "annotation": "DOPANT"}, {"text": ",", "start": 766, "end": 767, "annotation": null}, {"text": "and", "start": 768, "end": 771, "annotation": null}, {"text": "no", "start": 772, "end": 774, "annotation": null}, {"text": "large", "start": 775, "end": 780, "annotation": null}, {"text": "change", "start": 781, "end": 787, "annotation": null}, {"text": "in", "start": 788, "end": 790, "annotation": null}, {"text": "the", "start": 791, "end": 794, "annotation": null}, {"text": "distribution", "start": 795, "end": 807, "annotation": null}, {"text": "was", "start": 808, "end": 811, "annotation": null}, {"text": "observed", "start": 812, "end": 820, "annotation": null}, {"text": "up", "start": 821, "end": 823, "annotation": null}, {"text": "to", "start": 824, "end": 826, "annotation": null}, {"text": "1300", "start": 827, "end": 831, "annotation": null}, {"text": "\u00b0", "start": 831, "end": 832, "annotation": null}, {"text": "C", "start": 832, "end": 833, "annotation": null}, {"text": "annealing", "start": 834, "end": 843, "annotation": null}, {"text": ".", "start": 843, "end": 844, "annotation": null}], [{"text": "Relationships", "start": 845, "end": 858, "annotation": null}, {"text": "between", "start": 859, "end": 866, "annotation": null}, {"text": "photoluminescence", "start": 867, "end": 884, "annotation": null}, {"text": "bands", "start": 885, "end": 890, "annotation": null}, {"text": "and", "start": 891, "end": 894, "annotation": null}, {"text": "vacancy", "start": 895, "end": 902, "annotation": null}, {"text": "-", "start": 902, "end": 903, "annotation": null}, {"text": "type", "start": 903, "end": 907, "annotation": null}, {"text": "defects", "start": 908, "end": 915, "annotation": null}, {"text": "introduced", "start": 916, "end": 926, "annotation": null}, {"text": "by", "start": 927, "end": 929, "annotation": null}, {"text": "Mg", "start": 930, "end": 932, "annotation": "DOPANT"}, {"text": "-", "start": 932, "end": 933, "annotation": null}, {"text": "implantation", "start": 933, "end": 945, "annotation": null}, {"text": "are", "start": 946, "end": 949, "annotation": null}, {"text": "also", "start": 950, "end": 954, "annotation": null}, {"text": "discussed", "start": 955, "end": 964, "annotation": null}, {"text": ".", "start": 964, "end": 965, "annotation": null}]], "meta": {"doi": "10.1002/pssb.201552345"}} +{"remark": "doping_annt3", "text": "Metallic silicides have been used as contact materials on source/drain and gate in metal-oxide semiconductor (MOS) structure for 40 years. Since the 65 nm technology node, NiSi is the preferred material for contact in microelectronic due to low resistivity, low thermal budget, and low Si consumption. Ni(Pt)Si with 10 at.% Pt is currently employed in recent technologies since Pt allows to stabilize NiSi at high temperature. The presence of Pt and the very low thickness (<10 nm) needed for the device contacts bring new concerns for actual devices. In this work, in situ techniques [X-ray diffraction (XRD), X-ray reflectivity (XRR), sheet resistance, differential scanning calorimetry (DSC)] were combined with atom probe tomography (APT) to study the formation mechanisms as well as the redistribution of dopants and alloy elements (Pt, Pd.) during the silicide formation. Phenomena like nucleation, lateral growth, interfacial reaction, diffusion, precipitation, and transient phase formation are investigated. The effect of alloy elements (Pt, Pd.) and dopants (As, B.) as well as stress and defects induced by the confinement in devices on the silicide formation mechanism and alloying element redistribution is examined. In particular APT has been performed for the three-dimensional (3D) analysis of MOSFET at the atomic scale. The advances in the understanding of the mechanisms of formation and redistribution are discussed. \u00a9 2014 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Metallic", "start": 0, "end": 8, "annotation": null}, {"text": "silicides", "start": 9, "end": 18, "annotation": null}, {"text": "have", "start": 19, "end": 23, "annotation": null}, {"text": "been", "start": 24, "end": 28, "annotation": null}, {"text": "used", "start": 29, "end": 33, "annotation": null}, {"text": "as", "start": 34, "end": 36, "annotation": null}, {"text": "contact", "start": 37, "end": 44, "annotation": null}, {"text": "materials", "start": 45, "end": 54, "annotation": null}, {"text": "on", "start": 55, "end": 57, "annotation": null}, {"text": "source", "start": 58, "end": 64, "annotation": null}, {"text": "/", "start": 64, "end": 65, "annotation": null}, {"text": "drain", "start": 65, "end": 70, "annotation": null}, {"text": "and", "start": 71, "end": 74, "annotation": null}, {"text": "gate", "start": 75, "end": 79, "annotation": null}, {"text": "in", "start": 80, "end": 82, "annotation": null}, {"text": "metal", "start": 83, "end": 88, "annotation": null}, {"text": "-", "start": 88, "end": 89, "annotation": null}, {"text": "oxide", "start": 89, "end": 94, "annotation": null}, {"text": "semiconductor", "start": 95, "end": 108, "annotation": null}, {"text": "(", "start": 109, "end": 110, "annotation": null}, {"text": "MOS", "start": 110, "end": 113, "annotation": null}, {"text": ")", "start": 113, "end": 114, "annotation": null}, {"text": "structure", "start": 115, "end": 124, "annotation": null}, {"text": "for", "start": 125, "end": 128, "annotation": null}, {"text": "40", "start": 129, "end": 131, "annotation": null}, {"text": "years", "start": 132, "end": 137, "annotation": null}, {"text": ".", "start": 137, "end": 138, "annotation": null}], [{"text": "Since", "start": 139, "end": 144, "annotation": null}, {"text": "the", "start": 145, "end": 148, "annotation": null}, {"text": "65", "start": 149, "end": 151, "annotation": null}, {"text": "nm", "start": 152, "end": 154, "annotation": null}, {"text": "technology", "start": 155, "end": 165, "annotation": null}, {"text": "node", "start": 166, "end": 170, "annotation": null}, {"text": ",", "start": 170, "end": 171, "annotation": null}, {"text": "NiSi", "start": 172, "end": 176, "annotation": null}, {"text": "is", "start": 177, "end": 179, "annotation": null}, {"text": "the", "start": 180, "end": 183, "annotation": null}, {"text": "preferred", "start": 184, "end": 193, "annotation": null}, {"text": "material", "start": 194, "end": 202, "annotation": null}, {"text": "for", "start": 203, "end": 206, "annotation": null}, {"text": "contact", "start": 207, "end": 214, "annotation": null}, {"text": "in", "start": 215, "end": 217, "annotation": null}, {"text": "microelectronic", "start": 218, "end": 233, "annotation": null}, {"text": "due", "start": 234, "end": 237, "annotation": null}, {"text": "to", "start": 238, "end": 240, "annotation": null}, {"text": "low", "start": 241, "end": 244, "annotation": null}, {"text": "resistivity", "start": 245, "end": 256, "annotation": null}, {"text": ",", "start": 256, "end": 257, "annotation": null}, {"text": "low", "start": 258, "end": 261, "annotation": null}, {"text": "thermal", "start": 262, "end": 269, "annotation": null}, {"text": "budget", "start": 270, "end": 276, "annotation": null}, {"text": ",", "start": 276, "end": 277, "annotation": null}, {"text": "and", "start": 278, "end": 281, "annotation": null}, {"text": "low", "start": 282, "end": 285, "annotation": null}, {"text": "Si", "start": 286, "end": 288, "annotation": null}, {"text": "consumption", "start": 289, "end": 300, "annotation": null}, {"text": ".", "start": 300, "end": 301, "annotation": null}], [{"text": "Ni(Pt)Si", "start": 302, "end": 310, "annotation": null}, {"text": "with", "start": 311, "end": 315, "annotation": null}, {"text": "10", "start": 316, "end": 318, "annotation": null}, {"text": "at.", "start": 319, "end": 322, "annotation": null}, {"text": "%", "start": 322, "end": 323, "annotation": null}, {"text": "Pt", "start": 324, "end": 326, "annotation": null}, {"text": "is", "start": 327, "end": 329, "annotation": null}, {"text": "currently", "start": 330, "end": 339, "annotation": null}, {"text": "employed", "start": 340, "end": 348, "annotation": null}, {"text": "in", "start": 349, "end": 351, "annotation": null}, {"text": "recent", "start": 352, "end": 358, "annotation": null}, {"text": "technologies", "start": 359, "end": 371, "annotation": null}, {"text": "since", "start": 372, "end": 377, "annotation": null}, {"text": "Pt", "start": 378, "end": 380, "annotation": null}, {"text": "allows", "start": 381, "end": 387, "annotation": null}, {"text": "to", "start": 388, "end": 390, "annotation": null}, {"text": "stabilize", "start": 391, "end": 400, "annotation": null}, {"text": "NiSi", "start": 401, "end": 405, "annotation": null}, {"text": "at", "start": 406, "end": 408, "annotation": null}, {"text": "high", "start": 409, "end": 413, "annotation": null}, {"text": "temperature", "start": 414, "end": 425, "annotation": null}, {"text": ".", "start": 425, "end": 426, "annotation": null}], [{"text": "The", "start": 427, "end": 430, "annotation": null}, {"text": "presence", "start": 431, "end": 439, "annotation": null}, {"text": "of", "start": 440, "end": 442, "annotation": null}, {"text": "Pt", "start": 443, "end": 445, "annotation": null}, {"text": "and", "start": 446, "end": 449, "annotation": null}, {"text": "the", "start": 450, "end": 453, "annotation": null}, {"text": "very", "start": 454, "end": 458, "annotation": null}, {"text": "low", "start": 459, "end": 462, "annotation": null}, {"text": "thickness", "start": 463, "end": 472, "annotation": null}, {"text": "(", "start": 473, "end": 474, "annotation": null}, {"text": "<", "start": 474, "end": 475, "annotation": null}, {"text": "10", "start": 475, "end": 477, "annotation": null}, {"text": "nm", "start": 478, "end": 480, "annotation": null}, {"text": ")", "start": 480, "end": 481, "annotation": null}, {"text": "needed", "start": 482, "end": 488, "annotation": null}, {"text": "for", "start": 489, "end": 492, "annotation": null}, {"text": "the", "start": 493, "end": 496, "annotation": null}, {"text": "device", "start": 497, "end": 503, "annotation": null}, {"text": "contacts", "start": 504, "end": 512, "annotation": null}, {"text": "bring", "start": 513, "end": 518, "annotation": null}, {"text": "new", "start": 519, "end": 522, "annotation": null}, {"text": "concerns", "start": 523, "end": 531, "annotation": null}, {"text": "for", "start": 532, "end": 535, "annotation": null}, {"text": "actual", "start": 536, "end": 542, "annotation": null}, {"text": "devices", "start": 543, "end": 550, "annotation": null}, {"text": ".", "start": 550, "end": 551, "annotation": null}], [{"text": "In", "start": 552, "end": 554, "annotation": null}, {"text": "this", "start": 555, "end": 559, "annotation": null}, {"text": "work", "start": 560, "end": 564, "annotation": null}, {"text": ",", "start": 564, "end": 565, "annotation": null}, {"text": "in", "start": 566, "end": 568, "annotation": null}, {"text": "situ", "start": 569, "end": 573, "annotation": null}, {"text": "techniques", "start": 574, "end": 584, "annotation": null}, {"text": "[", "start": 585, "end": 586, "annotation": null}, {"text": "X-ray", "start": 586, "end": 591, "annotation": null}, {"text": "diffraction", "start": 592, "end": 603, "annotation": null}, {"text": "(", "start": 604, "end": 605, "annotation": null}, {"text": "XRD", "start": 605, "end": 608, "annotation": null}, {"text": ")", "start": 608, "end": 609, "annotation": null}, {"text": ",", "start": 609, "end": 610, "annotation": null}, {"text": "X-ray", "start": 611, "end": 616, "annotation": null}, {"text": "reflectivity", "start": 617, "end": 629, "annotation": null}, {"text": "(", "start": 630, "end": 631, "annotation": null}, {"text": "XRR", "start": 631, "end": 634, "annotation": null}, {"text": ")", "start": 634, "end": 635, "annotation": null}, {"text": ",", "start": 635, "end": 636, "annotation": null}, {"text": "sheet", "start": 637, "end": 642, "annotation": null}, {"text": "resistance", "start": 643, "end": 653, "annotation": null}, {"text": ",", "start": 653, "end": 654, "annotation": null}, {"text": "differential", "start": 655, "end": 667, "annotation": null}, {"text": "scanning", "start": 668, "end": 676, "annotation": null}, {"text": "calorimetry", "start": 677, "end": 688, "annotation": null}, {"text": "(", "start": 689, "end": 690, "annotation": null}, {"text": "DSC", "start": 690, "end": 693, "annotation": null}, {"text": ")", "start": 693, "end": 694, "annotation": null}, {"text": "]", "start": 694, "end": 695, "annotation": null}, {"text": "were", "start": 696, "end": 700, "annotation": null}, {"text": "combined", "start": 701, "end": 709, "annotation": null}, {"text": "with", "start": 710, "end": 714, "annotation": null}, {"text": "atom", "start": 715, "end": 719, "annotation": null}, {"text": "probe", "start": 720, "end": 725, "annotation": null}, {"text": "tomography", "start": 726, "end": 736, "annotation": null}, {"text": "(", "start": 737, "end": 738, "annotation": null}, {"text": "APT", "start": 738, "end": 741, "annotation": null}, {"text": ")", "start": 741, "end": 742, "annotation": null}, {"text": "to", "start": 743, "end": 745, "annotation": null}, {"text": "study", "start": 746, "end": 751, "annotation": null}, {"text": "the", "start": 752, "end": 755, "annotation": null}, {"text": "formation", "start": 756, "end": 765, "annotation": null}, {"text": "mechanisms", "start": 766, "end": 776, "annotation": null}, {"text": "as", "start": 777, "end": 779, "annotation": null}, {"text": "well", "start": 780, "end": 784, "annotation": null}, {"text": "as", "start": 785, "end": 787, "annotation": null}, {"text": "the", "start": 788, "end": 791, "annotation": null}, {"text": "redistribution", "start": 792, "end": 806, "annotation": null}, {"text": "of", "start": 807, "end": 809, "annotation": null}, {"text": "dopants", "start": 810, "end": 817, "annotation": null}, {"text": "and", "start": 818, "end": 821, "annotation": null}, {"text": "alloy", "start": 822, "end": 827, "annotation": null}, {"text": "elements", "start": 828, "end": 836, "annotation": null}, {"text": "(", "start": 837, "end": 838, "annotation": null}, {"text": "Pt", "start": 838, "end": 840, "annotation": null}, {"text": ",", "start": 840, "end": 841, "annotation": null}, {"text": "Pd", "start": 842, "end": 844, "annotation": null}, {"text": ".", "start": 844, "end": 845, "annotation": null}, {"text": ")", "start": 845, "end": 846, "annotation": null}], [{"text": "during", "start": 847, "end": 853, "annotation": null}, {"text": "the", "start": 854, "end": 857, "annotation": null}, {"text": "silicide", "start": 858, "end": 866, "annotation": null}, {"text": "formation", "start": 867, "end": 876, "annotation": null}, {"text": ".", "start": 876, "end": 877, "annotation": null}], [{"text": "Phenomena", "start": 878, "end": 887, "annotation": null}, {"text": "like", "start": 888, "end": 892, "annotation": null}, {"text": "nucleation", "start": 893, "end": 903, "annotation": null}, {"text": ",", "start": 903, "end": 904, "annotation": null}, {"text": "lateral", "start": 905, "end": 912, "annotation": null}, {"text": "growth", "start": 913, "end": 919, "annotation": null}, {"text": ",", "start": 919, "end": 920, "annotation": null}, {"text": "interfacial", "start": 921, "end": 932, "annotation": null}, {"text": "reaction", "start": 933, "end": 941, "annotation": null}, {"text": ",", "start": 941, "end": 942, "annotation": null}, {"text": "diffusion", "start": 943, "end": 952, "annotation": null}, {"text": ",", "start": 952, "end": 953, "annotation": null}, {"text": "precipitation", "start": 954, "end": 967, "annotation": null}, {"text": ",", "start": 967, "end": 968, "annotation": null}, {"text": "and", "start": 969, "end": 972, "annotation": null}, {"text": "transient", "start": 973, "end": 982, "annotation": null}, {"text": "phase", "start": 983, "end": 988, "annotation": null}, {"text": "formation", "start": 989, "end": 998, "annotation": null}, {"text": "are", "start": 999, "end": 1002, "annotation": null}, {"text": "investigated", "start": 1003, "end": 1015, "annotation": null}, {"text": ".", "start": 1015, "end": 1016, "annotation": null}], [{"text": "The", "start": 1017, "end": 1020, "annotation": null}, {"text": "effect", "start": 1021, "end": 1027, "annotation": null}, {"text": "of", "start": 1028, "end": 1030, "annotation": null}, {"text": "alloy", "start": 1031, "end": 1036, "annotation": null}, {"text": "elements", "start": 1037, "end": 1045, "annotation": null}, {"text": "(", "start": 1046, "end": 1047, "annotation": null}, {"text": "Pt", "start": 1047, "end": 1049, "annotation": null}, {"text": ",", "start": 1049, "end": 1050, "annotation": null}, {"text": "Pd", "start": 1051, "end": 1053, "annotation": null}, {"text": ".", "start": 1053, "end": 1054, "annotation": null}, {"text": ")", "start": 1054, "end": 1055, "annotation": null}], [{"text": "and", "start": 1056, "end": 1059, "annotation": null}, {"text": "dopants", "start": 1060, "end": 1067, "annotation": null}, {"text": "(", "start": 1068, "end": 1069, "annotation": null}, {"text": "As", "start": 1069, "end": 1071, "annotation": "DOPANT"}, {"text": ",", "start": 1071, "end": 1072, "annotation": null}, {"text": "B", "start": 1073, "end": 1074, "annotation": "DOPANT"}, {"text": ".", "start": 1074, "end": 1075, "annotation": null}, {"text": ")", "start": 1075, "end": 1076, "annotation": null}], [{"text": "as", "start": 1077, "end": 1079, "annotation": null}, {"text": "well", "start": 1080, "end": 1084, "annotation": null}, {"text": "as", "start": 1085, "end": 1087, "annotation": null}, {"text": "stress", "start": 1088, "end": 1094, "annotation": null}, {"text": "and", "start": 1095, "end": 1098, "annotation": null}, {"text": "defects", "start": 1099, "end": 1106, "annotation": null}, {"text": "induced", "start": 1107, "end": 1114, "annotation": null}, {"text": "by", "start": 1115, "end": 1117, "annotation": null}, {"text": "the", "start": 1118, "end": 1121, "annotation": null}, {"text": "confinement", "start": 1122, "end": 1133, "annotation": null}, {"text": "in", "start": 1134, "end": 1136, "annotation": null}, {"text": "devices", "start": 1137, "end": 1144, "annotation": null}, {"text": "on", "start": 1145, "end": 1147, "annotation": null}, {"text": "the", "start": 1148, "end": 1151, "annotation": null}, {"text": "silicide", "start": 1152, "end": 1160, "annotation": "BASEMAT"}, {"text": "formation", "start": 1161, "end": 1170, "annotation": null}, {"text": "mechanism", "start": 1171, "end": 1180, "annotation": null}, {"text": "and", "start": 1181, "end": 1184, "annotation": null}, {"text": "alloying", "start": 1185, "end": 1193, "annotation": null}, {"text": "element", "start": 1194, "end": 1201, "annotation": null}, {"text": "redistribution", "start": 1202, "end": 1216, "annotation": null}, {"text": "is", "start": 1217, "end": 1219, "annotation": null}, {"text": "examined", "start": 1220, "end": 1228, "annotation": null}, {"text": ".", "start": 1228, "end": 1229, "annotation": null}], [{"text": "In", "start": 1230, "end": 1232, "annotation": null}, {"text": "particular", "start": 1233, "end": 1243, "annotation": null}, {"text": "APT", "start": 1244, "end": 1247, "annotation": null}, {"text": "has", "start": 1248, "end": 1251, "annotation": null}, {"text": "been", "start": 1252, "end": 1256, "annotation": null}, {"text": "performed", "start": 1257, "end": 1266, "annotation": null}, {"text": "for", "start": 1267, "end": 1270, "annotation": null}, {"text": "the", "start": 1271, "end": 1274, "annotation": null}, {"text": "three", "start": 1275, "end": 1280, "annotation": null}, {"text": "-", "start": 1280, "end": 1281, "annotation": null}, {"text": "dimensional", "start": 1281, "end": 1292, "annotation": null}, {"text": "(", "start": 1293, "end": 1294, "annotation": null}, {"text": "3D", "start": 1294, "end": 1296, "annotation": null}, {"text": ")", "start": 1296, "end": 1297, "annotation": null}, {"text": "analysis", "start": 1298, "end": 1306, "annotation": null}, {"text": "of", "start": 1307, "end": 1309, "annotation": null}, {"text": "MOSFET", "start": 1310, "end": 1316, "annotation": null}, {"text": "at", "start": 1317, "end": 1319, "annotation": null}, {"text": "the", "start": 1320, "end": 1323, "annotation": null}, {"text": "atomic", "start": 1324, "end": 1330, "annotation": null}, {"text": "scale", "start": 1331, "end": 1336, "annotation": null}, {"text": ".", "start": 1336, "end": 1337, "annotation": null}], [{"text": "The", "start": 1338, "end": 1341, "annotation": null}, {"text": "advances", "start": 1342, "end": 1350, "annotation": null}, {"text": "in", "start": 1351, "end": 1353, "annotation": null}, {"text": "the", "start": 1354, "end": 1357, "annotation": null}, {"text": "understanding", "start": 1358, "end": 1371, "annotation": null}, {"text": "of", "start": 1372, "end": 1374, "annotation": null}, {"text": "the", "start": 1375, "end": 1378, "annotation": null}, {"text": "mechanisms", "start": 1379, "end": 1389, "annotation": null}, {"text": "of", "start": 1390, "end": 1392, "annotation": null}, {"text": "formation", "start": 1393, "end": 1402, "annotation": null}, {"text": "and", "start": 1403, "end": 1406, "annotation": null}, {"text": "redistribution", "start": 1407, "end": 1421, "annotation": null}, {"text": "are", "start": 1422, "end": 1425, "annotation": null}, {"text": "discussed", "start": 1426, "end": 1435, "annotation": null}, {"text": ".", "start": 1435, "end": 1436, "annotation": null}], [{"text": "KGaA", "start": 1472, "end": 1476, "annotation": null}, {"text": ",", "start": 1476, "end": 1477, "annotation": null}, {"text": "Weinheim", "start": 1478, "end": 1486, "annotation": null}, {"text": ".", "start": 1486, "end": 1487, "annotation": null}]], "meta": {"doi": "10.1002/pssa.201300167"}} +{"remark": "doping_annt1", "text": "A novel cost-effective cathode catalyst, manganese dioxide (MnO2) featured with a cryptomelane-type octahedral molecular sieve (OMS-2) structure, was examined in continuous flow microbial fuel cells (MFCs). Power generation and organic substrate removal efficiency of two metal ions doped OMS-2 cathodes (cobalt (Co)-OMS-2 and copper (Cu)-OMS-2) were compared with platinum (Pt) cathodes under different hydraulic retention times (HRTs) and chemical oxygen demands (CODs). The 600-h continuous flow tests showed that Cu-OMS-2 MFCs and Co-OMS-2 MFCs achieved the stable power generation of 200\u00b18mV and 190\u00b15mV, and were 50\u201360mV higher than that of Pt MFCs. The COD removal efficiencies of Cu-OMS-2 MFCs and Co-OMS-2 MFCs were 83\u201387%, which were 15\u201319% higher than that of Pt MFCs. The power generation and COD removal efficiency increased with longer HRTs. The Cu-OMS-2 exhibited the highest power density (201mW/m2) at the COD of 1000mg/L. However, Co-OMS-2 cathodes had the better performance than Cu-OMs-2 at high COD concentrations of 2000\u20134000mg/L, with the power density of 897mW/m2 and COD removal efficiency of 46%. The continuous flow MFC tests demonstrated that the fast reaction rate of OMS-2 cathodes enhanced power generation and COD removal efficiency, and had a great potential to be applied in real-world wastewater treatment processes.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "novel", "start": 2, "end": 7, "annotation": null}, {"text": "cost", "start": 8, "end": 12, "annotation": null}, {"text": "-", "start": 12, "end": 13, "annotation": null}, {"text": "effective", "start": 13, "end": 22, "annotation": null}, {"text": "cathode", "start": 23, "end": 30, "annotation": null}, {"text": "catalyst", "start": 31, "end": 39, "annotation": null}, {"text": ",", "start": 39, "end": 40, "annotation": null}, {"text": "manganese", "start": 41, "end": 50, "annotation": null}, {"text": "dioxide", "start": 51, "end": 58, "annotation": null}, {"text": "(", "start": 59, "end": 60, "annotation": null}, {"text": "MnO2", "start": 60, "end": 64, "annotation": null}, {"text": ")", "start": 64, "end": 65, "annotation": null}, {"text": "featured", "start": 66, "end": 74, "annotation": null}, {"text": "with", "start": 75, "end": 79, "annotation": null}, {"text": "a", "start": 80, "end": 81, "annotation": null}, {"text": "cryptomelane", "start": 82, "end": 94, "annotation": null}, {"text": "-", "start": 94, "end": 95, "annotation": null}, {"text": "type", "start": 95, "end": 99, "annotation": null}, {"text": "octahedral", "start": 100, "end": 110, "annotation": null}, {"text": "molecular", "start": 111, "end": 120, "annotation": null}, {"text": "sieve", "start": 121, "end": 126, "annotation": null}, {"text": "(", "start": 127, "end": 128, "annotation": null}, {"text": "OMS-2", "start": 128, "end": 133, "annotation": null}, {"text": ")", "start": 133, "end": 134, "annotation": null}, {"text": "structure", "start": 135, "end": 144, "annotation": null}, {"text": ",", "start": 144, "end": 145, "annotation": null}, {"text": "was", "start": 146, "end": 149, "annotation": null}, {"text": "examined", "start": 150, "end": 158, "annotation": null}, {"text": "in", "start": 159, "end": 161, "annotation": null}, {"text": "continuous", "start": 162, "end": 172, "annotation": null}, {"text": "flow", "start": 173, "end": 177, "annotation": null}, {"text": "microbial", "start": 178, "end": 187, "annotation": null}, {"text": "fuel", "start": 188, "end": 192, "annotation": null}, {"text": "cells", "start": 193, "end": 198, "annotation": null}, {"text": "(", "start": 199, "end": 200, "annotation": null}, {"text": "MFCs", "start": 200, "end": 204, "annotation": null}, {"text": ")", "start": 204, "end": 205, "annotation": null}, {"text": ".", "start": 205, "end": 206, "annotation": null}], [{"text": "Power", "start": 207, "end": 212, "annotation": null}, {"text": "generation", "start": 213, "end": 223, "annotation": null}, {"text": "and", "start": 224, "end": 227, "annotation": null}, {"text": "organic", "start": 228, "end": 235, "annotation": null}, {"text": "substrate", "start": 236, "end": 245, "annotation": null}, {"text": "removal", "start": 246, "end": 253, "annotation": null}, {"text": "efficiency", "start": 254, "end": 264, "annotation": null}, {"text": "of", "start": 265, "end": 267, "annotation": null}, {"text": "two", "start": 268, "end": 271, "annotation": null}, {"text": "metal", "start": 272, "end": 277, "annotation": null}, {"text": "ions", "start": 278, "end": 282, "annotation": null}, {"text": "doped", "start": 283, "end": 288, "annotation": null}, {"text": "OMS-2", "start": 289, "end": 294, "annotation": "BASEMAT"}, {"text": "cathodes", "start": 295, "end": 303, "annotation": null}, {"text": "(", "start": 304, "end": 305, "annotation": null}, {"text": "cobalt", "start": 305, "end": 311, "annotation": "BASEMAT"}, {"text": "(Co)-OMS-2", "start": 312, "end": 322, "annotation": null}, {"text": "and", "start": 323, "end": 326, "annotation": null}, {"text": "copper", "start": 327, "end": 333, "annotation": "BASEMAT"}, {"text": "(Cu)-OMS-2", "start": 334, "end": 344, "annotation": null}, {"text": ")", "start": 344, "end": 345, "annotation": null}, {"text": "were", "start": 346, "end": 350, "annotation": null}, {"text": "compared", "start": 351, "end": 359, "annotation": null}, {"text": "with", "start": 360, "end": 364, "annotation": null}, {"text": "platinum", "start": 365, "end": 373, "annotation": null}, {"text": "(", "start": 374, "end": 375, "annotation": null}, {"text": "Pt", "start": 375, "end": 377, "annotation": null}, {"text": ")", "start": 377, "end": 378, "annotation": null}, {"text": "cathodes", "start": 379, "end": 387, "annotation": null}, {"text": "under", "start": 388, "end": 393, "annotation": null}, {"text": "different", "start": 394, "end": 403, "annotation": null}, {"text": "hydraulic", "start": 404, "end": 413, "annotation": null}, {"text": "retention", "start": 414, "end": 423, "annotation": null}, {"text": "times", "start": 424, "end": 429, "annotation": null}, {"text": "(", "start": 430, "end": 431, "annotation": null}, {"text": "HRTs", "start": 431, "end": 435, "annotation": null}, {"text": ")", "start": 435, "end": 436, "annotation": null}, {"text": "and", "start": 437, "end": 440, "annotation": null}, {"text": "chemical", "start": 441, "end": 449, "annotation": null}, {"text": "oxygen", "start": 450, "end": 456, "annotation": null}, {"text": "demands", "start": 457, "end": 464, "annotation": null}, {"text": "(", "start": 465, "end": 466, "annotation": null}, {"text": "CODs", "start": 466, "end": 470, "annotation": null}, {"text": ")", "start": 470, "end": 471, "annotation": null}, {"text": ".", "start": 471, "end": 472, "annotation": null}], [{"text": "The", "start": 473, "end": 476, "annotation": null}, {"text": "600-h", "start": 477, "end": 482, "annotation": null}, {"text": "continuous", "start": 483, "end": 493, "annotation": null}, {"text": "flow", "start": 494, "end": 498, "annotation": null}, {"text": "tests", "start": 499, "end": 504, "annotation": null}, {"text": "showed", "start": 505, "end": 511, "annotation": null}, {"text": "that", "start": 512, "end": 516, "annotation": null}, {"text": "Cu-OMS-2", "start": 517, "end": 525, "annotation": null}, {"text": "MFCs", "start": 526, "end": 530, "annotation": null}, {"text": "and", "start": 531, "end": 534, "annotation": null}, {"text": "Co-OMS-2", "start": 535, "end": 543, "annotation": null}, {"text": "MFCs", "start": 544, "end": 548, "annotation": null}, {"text": "achieved", "start": 549, "end": 557, "annotation": null}, {"text": "the", "start": 558, "end": 561, "annotation": null}, {"text": "stable", "start": 562, "end": 568, "annotation": null}, {"text": "power", "start": 569, "end": 574, "annotation": null}, {"text": "generation", "start": 575, "end": 585, "annotation": null}, {"text": "of", "start": 586, "end": 588, "annotation": null}, {"text": "200", "start": 589, "end": 592, "annotation": null}, {"text": "\u00b1", "start": 592, "end": 593, "annotation": null}, {"text": "8", "start": 593, "end": 594, "annotation": null}, {"text": "mV", "start": 594, "end": 596, "annotation": null}, {"text": "and", "start": 597, "end": 600, "annotation": null}, {"text": "190", "start": 601, "end": 604, "annotation": null}, {"text": "\u00b1", "start": 604, "end": 605, "annotation": null}, {"text": "5", "start": 605, "end": 606, "annotation": null}, {"text": "mV", "start": 606, "end": 608, "annotation": null}, {"text": ",", "start": 608, "end": 609, "annotation": null}, {"text": "and", "start": 610, "end": 613, "annotation": null}, {"text": "were", "start": 614, "end": 618, "annotation": null}, {"text": "50", "start": 619, "end": 621, "annotation": null}, {"text": "\u2013", "start": 621, "end": 622, "annotation": null}, {"text": "60", "start": 622, "end": 624, "annotation": null}, {"text": "mV", "start": 624, "end": 626, "annotation": null}, {"text": "higher", "start": 627, "end": 633, "annotation": null}, {"text": "than", "start": 634, "end": 638, "annotation": null}, {"text": "that", "start": 639, "end": 643, "annotation": null}, {"text": "of", "start": 644, "end": 646, "annotation": null}, {"text": "Pt", "start": 647, "end": 649, "annotation": null}, {"text": "MFCs", "start": 650, "end": 654, "annotation": null}, {"text": ".", "start": 654, "end": 655, "annotation": null}], [{"text": "The", "start": 656, "end": 659, "annotation": null}, {"text": "COD", "start": 660, "end": 663, "annotation": null}, {"text": "removal", "start": 664, "end": 671, "annotation": null}, {"text": "efficiencies", "start": 672, "end": 684, "annotation": null}, {"text": "of", "start": 685, "end": 687, "annotation": null}, {"text": "Cu-OMS-2", "start": 688, "end": 696, "annotation": null}, {"text": "MFCs", "start": 697, "end": 701, "annotation": null}, {"text": "and", "start": 702, "end": 705, "annotation": null}, {"text": "Co-OMS-2", "start": 706, "end": 714, "annotation": null}, {"text": "MFCs", "start": 715, "end": 719, "annotation": null}, {"text": "were", "start": 720, "end": 724, "annotation": null}, {"text": "83", "start": 725, "end": 727, "annotation": null}, {"text": "\u2013", "start": 727, "end": 728, "annotation": null}, {"text": "87", "start": 728, "end": 730, "annotation": null}, {"text": "%", "start": 730, "end": 731, "annotation": null}, {"text": ",", "start": 731, "end": 732, "annotation": null}, {"text": "which", "start": 733, "end": 738, "annotation": null}, {"text": "were", "start": 739, "end": 743, "annotation": null}, {"text": "15", "start": 744, "end": 746, "annotation": null}, {"text": "\u2013", "start": 746, "end": 747, "annotation": null}, {"text": "19", "start": 747, "end": 749, "annotation": null}, {"text": "%", "start": 749, "end": 750, "annotation": null}, {"text": "higher", "start": 751, "end": 757, "annotation": null}, {"text": "than", "start": 758, "end": 762, "annotation": null}, {"text": "that", "start": 763, "end": 767, "annotation": null}, {"text": "of", "start": 768, "end": 770, "annotation": null}, {"text": "Pt", "start": 771, "end": 773, "annotation": null}, {"text": "MFCs", "start": 774, "end": 778, "annotation": null}, {"text": ".", "start": 778, "end": 779, "annotation": null}], [{"text": "The", "start": 780, "end": 783, "annotation": null}, {"text": "power", "start": 784, "end": 789, "annotation": null}, {"text": "generation", "start": 790, "end": 800, "annotation": null}, {"text": "and", "start": 801, "end": 804, "annotation": null}, {"text": "COD", "start": 805, "end": 808, "annotation": null}, {"text": "removal", "start": 809, "end": 816, "annotation": null}, {"text": "efficiency", "start": 817, "end": 827, "annotation": null}, {"text": "increased", "start": 828, "end": 837, "annotation": null}, {"text": "with", "start": 838, "end": 842, "annotation": null}, {"text": "longer", "start": 843, "end": 849, "annotation": null}, {"text": "HRTs", "start": 850, "end": 854, "annotation": null}, {"text": ".", "start": 854, "end": 855, "annotation": null}], [{"text": "The", "start": 856, "end": 859, "annotation": null}, {"text": "Cu-OMS-2", "start": 860, "end": 868, "annotation": null}, {"text": "exhibited", "start": 869, "end": 878, "annotation": null}, {"text": "the", "start": 879, "end": 882, "annotation": null}, {"text": "highest", "start": 883, "end": 890, "annotation": null}, {"text": "power", "start": 891, "end": 896, "annotation": null}, {"text": "density", "start": 897, "end": 904, "annotation": null}, {"text": "(", "start": 905, "end": 906, "annotation": null}, {"text": "201", "start": 906, "end": 909, "annotation": null}, {"text": "mW", "start": 909, "end": 911, "annotation": null}, {"text": "/", "start": 911, "end": 912, "annotation": null}, {"text": "m2", "start": 912, "end": 914, "annotation": null}, {"text": ")", "start": 914, "end": 915, "annotation": null}, {"text": "at", "start": 916, "end": 918, "annotation": null}, {"text": "the", "start": 919, "end": 922, "annotation": null}, {"text": "COD", "start": 923, "end": 926, "annotation": null}, {"text": "of", "start": 927, "end": 929, "annotation": null}, {"text": "1000", "start": 930, "end": 934, "annotation": null}, {"text": "mg", "start": 934, "end": 936, "annotation": null}, {"text": "/", "start": 936, "end": 937, "annotation": null}, {"text": "L", "start": 937, "end": 938, "annotation": null}, {"text": ".", "start": 938, "end": 939, "annotation": null}], [{"text": "However", "start": 940, "end": 947, "annotation": null}, {"text": ",", "start": 947, "end": 948, "annotation": null}, {"text": "Co-OMS-2", "start": 949, "end": 957, "annotation": null}, {"text": "cathodes", "start": 958, "end": 966, "annotation": null}, {"text": "had", "start": 967, "end": 970, "annotation": null}, {"text": "the", "start": 971, "end": 974, "annotation": null}, {"text": "better", "start": 975, "end": 981, "annotation": null}, {"text": "performance", "start": 982, "end": 993, "annotation": null}, {"text": "than", "start": 994, "end": 998, "annotation": null}, {"text": "Cu-OMs-2", "start": 999, "end": 1007, "annotation": null}, {"text": "at", "start": 1008, "end": 1010, "annotation": null}, {"text": "high", "start": 1011, "end": 1015, "annotation": null}, {"text": "COD", "start": 1016, "end": 1019, "annotation": null}, {"text": "concentrations", "start": 1020, "end": 1034, "annotation": null}, {"text": "of", "start": 1035, "end": 1037, "annotation": null}, {"text": "2000", "start": 1038, "end": 1042, "annotation": null}, {"text": "\u2013", "start": 1042, "end": 1043, "annotation": null}, {"text": "4000", "start": 1043, "end": 1047, "annotation": null}, {"text": "mg", "start": 1047, "end": 1049, "annotation": null}, {"text": "/", "start": 1049, "end": 1050, "annotation": null}, {"text": "L", "start": 1050, "end": 1051, "annotation": null}, {"text": ",", "start": 1051, "end": 1052, "annotation": null}, {"text": "with", "start": 1053, "end": 1057, "annotation": null}, {"text": "the", "start": 1058, "end": 1061, "annotation": null}, {"text": "power", "start": 1062, "end": 1067, "annotation": null}, {"text": "density", "start": 1068, "end": 1075, "annotation": null}, {"text": "of", "start": 1076, "end": 1078, "annotation": null}, {"text": "897", "start": 1079, "end": 1082, "annotation": null}, {"text": "mW", "start": 1082, "end": 1084, "annotation": null}, {"text": "/", "start": 1084, "end": 1085, "annotation": null}, {"text": "m2", "start": 1085, "end": 1087, "annotation": null}, {"text": "and", "start": 1088, "end": 1091, "annotation": null}, {"text": "COD", "start": 1092, "end": 1095, "annotation": null}, {"text": "removal", "start": 1096, "end": 1103, "annotation": null}, {"text": "efficiency", "start": 1104, "end": 1114, "annotation": null}, {"text": "of", "start": 1115, "end": 1117, "annotation": null}, {"text": "46", "start": 1118, "end": 1120, "annotation": null}, {"text": "%", "start": 1120, "end": 1121, "annotation": null}, {"text": ".", "start": 1121, "end": 1122, "annotation": null}], [{"text": "The", "start": 1123, "end": 1126, "annotation": null}, {"text": "continuous", "start": 1127, "end": 1137, "annotation": null}, {"text": "flow", "start": 1138, "end": 1142, "annotation": null}, {"text": "MFC", "start": 1143, "end": 1146, "annotation": null}, {"text": "tests", "start": 1147, "end": 1152, "annotation": null}, {"text": "demonstrated", "start": 1153, "end": 1165, "annotation": null}, {"text": "that", "start": 1166, "end": 1170, "annotation": null}, {"text": "the", "start": 1171, "end": 1174, "annotation": null}, {"text": "fast", "start": 1175, "end": 1179, "annotation": null}, {"text": "reaction", "start": 1180, "end": 1188, "annotation": null}, {"text": "rate", "start": 1189, "end": 1193, "annotation": null}, {"text": "of", "start": 1194, "end": 1196, "annotation": null}, {"text": "OMS-2", "start": 1197, "end": 1202, "annotation": null}, {"text": "cathodes", "start": 1203, "end": 1211, "annotation": null}, {"text": "enhanced", "start": 1212, "end": 1220, "annotation": null}, {"text": "power", "start": 1221, "end": 1226, "annotation": null}, {"text": "generation", "start": 1227, "end": 1237, "annotation": null}, {"text": "and", "start": 1238, "end": 1241, "annotation": null}, {"text": "COD", "start": 1242, "end": 1245, "annotation": null}, {"text": "removal", "start": 1246, "end": 1253, "annotation": null}, {"text": "efficiency", "start": 1254, "end": 1264, "annotation": null}, {"text": ",", "start": 1264, "end": 1265, "annotation": null}, {"text": "and", "start": 1266, "end": 1269, "annotation": null}, {"text": "had", "start": 1270, "end": 1273, "annotation": null}, {"text": "a", "start": 1274, "end": 1275, "annotation": null}, {"text": "great", "start": 1276, "end": 1281, "annotation": null}, {"text": "potential", "start": 1282, "end": 1291, "annotation": null}, {"text": "to", "start": 1292, "end": 1294, "annotation": null}, {"text": "be", "start": 1295, "end": 1297, "annotation": null}, {"text": "applied", "start": 1298, "end": 1305, "annotation": null}, {"text": "in", "start": 1306, "end": 1308, "annotation": null}, {"text": "real", "start": 1309, "end": 1313, "annotation": null}, {"text": "-", "start": 1313, "end": 1314, "annotation": null}, {"text": "world", "start": 1314, "end": 1319, "annotation": null}, {"text": "wastewater", "start": 1320, "end": 1330, "annotation": null}, {"text": "treatment", "start": 1331, "end": 1340, "annotation": null}, {"text": "processes", "start": 1341, "end": 1350, "annotation": null}, {"text": ".", "start": 1350, "end": 1351, "annotation": null}]], "meta": {"doi": "10.1016/j.bej.2011.01.001"}} {"text": "A series of macrocyclic cyclophanes is reduced with alkali metals to yield the corresponding dianions and (in part) tetraanions. The chemical structure proof rests upon quenching and reoxidation experiments. A spectacular outcome is the pronounced ring current effect which appears from the 1 H NMR spectra of the ions. The diatropism of the dianions and paratropism of the tetraanions are ascribed to the formation of perimeter-type structures involving \u03c0-conjugation via aromatic moieties. The unprecedented \u201cannulenoid\u201d properties have been systematically affected by constructing cyclophane species with different ring size and planarity, with different aromatic subunits, and with heteroatoms. The stereodynamic behavior of the anions is rationalized in terms of simple \u03c0-bond theory. The \u201cdoping\u201d of the cyclophanes with electrons provides adequate models for organic conductors of the polyphenylenevinylene-type. All rights reserved.", "meta": {"doi": "10.1021/ja00336a035"}, "_input_hash": 1765721941, "_task_hash": 729413047, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "series", "start": 2, "end": 8, "id": 1, "annotation": null}, {"text": "of", "start": 9, "end": 11, "id": 2, "annotation": null}, {"text": "macrocyclic", "start": 12, "end": 23, "id": 3, "annotation": null}, {"text": "cyclophanes", "start": 24, "end": 35, "id": 4, "annotation": null}, {"text": "is", "start": 36, "end": 38, "id": 5, "annotation": null}, {"text": "reduced", "start": 39, "end": 46, "id": 6, "annotation": null}, {"text": "with", "start": 47, "end": 51, "id": 7, "annotation": null}, {"text": "alkali", "start": 52, "end": 58, "id": 8, "annotation": null}, {"text": "metals", "start": 59, "end": 65, "id": 9, "annotation": null}, {"text": "to", "start": 66, "end": 68, "id": 10, "annotation": null}, {"text": "yield", "start": 69, "end": 74, "id": 11, "annotation": null}, {"text": "the", "start": 75, "end": 78, "id": 12, "annotation": null}, {"text": "corresponding", "start": 79, "end": 92, "id": 13, "annotation": null}, {"text": "dianions", "start": 93, "end": 101, "id": 14, "annotation": null}, {"text": "and", "start": 102, "end": 105, "id": 15, "annotation": null}, {"text": "(", "start": 106, "end": 107, "id": 16, "annotation": null}, {"text": "in", "start": 108, "end": 110, "id": 17, "annotation": null}, {"text": "part", "start": 111, "end": 115, "id": 18, "annotation": null}, {"text": ")", "start": 116, "end": 117, "id": 19, "annotation": null}, {"text": "tetraanions", "start": 118, "end": 129, "id": 20, "annotation": null}, {"text": ".", "start": 130, "end": 131, "id": 21, "annotation": null}], [{"text": "The", "start": 132, "end": 135, "id": 22, "annotation": null}, {"text": "chemical", "start": 136, "end": 144, "id": 23, "annotation": null}, {"text": "structure", "start": 145, "end": 154, "id": 24, "annotation": null}, {"text": "proof", "start": 155, "end": 160, "id": 25, "annotation": null}, {"text": "rests", "start": 161, "end": 166, "id": 26, "annotation": null}, {"text": "upon", "start": 167, "end": 171, "id": 27, "annotation": null}, {"text": "quenching", "start": 172, "end": 181, "id": 28, "annotation": null}, {"text": "and", "start": 182, "end": 185, "id": 29, "annotation": null}, {"text": "reoxidation", "start": 186, "end": 197, "id": 30, "annotation": null}, {"text": "experiments", "start": 198, "end": 209, "id": 31, "annotation": null}, {"text": ".", "start": 210, "end": 211, "id": 32, "annotation": null}], [{"text": "A", "start": 212, "end": 213, "id": 33, "annotation": null}, {"text": "spectacular", "start": 214, "end": 225, "id": 34, "annotation": null}, {"text": "outcome", "start": 226, "end": 233, "id": 35, "annotation": null}, {"text": "is", "start": 234, "end": 236, "id": 36, "annotation": null}, {"text": "the", "start": 237, "end": 240, "id": 37, "annotation": null}, {"text": "pronounced", "start": 241, "end": 251, "id": 38, "annotation": null}, {"text": "ring", "start": 252, "end": 256, "id": 39, "annotation": null}, {"text": "current", "start": 257, "end": 264, "id": 40, "annotation": null}, {"text": "effect", "start": 265, "end": 271, "id": 41, "annotation": null}, {"text": "which", "start": 272, "end": 277, "id": 42, "annotation": null}, {"text": "appears", "start": 278, "end": 285, "id": 43, "annotation": null}, {"text": "from", "start": 286, "end": 290, "id": 44, "annotation": null}, {"text": "the", "start": 291, "end": 294, "id": 45, "annotation": null}, {"text": "1", "start": 295, "end": 296, "id": 46, "annotation": null}, {"text": "H", "start": 297, "end": 298, "id": 47, "annotation": null}, {"text": "NMR", "start": 299, "end": 302, "id": 48, "annotation": null}, {"text": "spectra", "start": 303, "end": 310, "id": 49, "annotation": null}, {"text": "of", "start": 311, "end": 313, "id": 50, "annotation": null}, {"text": "the", "start": 314, "end": 317, "id": 51, "annotation": null}, {"text": "ions", "start": 318, "end": 322, "id": 52, "annotation": null}, {"text": ".", "start": 323, "end": 324, "id": 53, "annotation": null}], [{"text": "The", "start": 325, "end": 328, "id": 54, "annotation": null}, {"text": "diatropism", "start": 329, "end": 339, "id": 55, "annotation": null}, {"text": "of", "start": 340, "end": 342, "id": 56, "annotation": null}, {"text": "the", "start": 343, "end": 346, "id": 57, "annotation": null}, {"text": "dianions", "start": 347, "end": 355, "id": 58, "annotation": null}, {"text": "and", "start": 356, "end": 359, "id": 59, "annotation": null}, {"text": "paratropism", "start": 360, "end": 371, "id": 60, "annotation": null}, {"text": "of", "start": 372, "end": 374, "id": 61, "annotation": null}, {"text": "the", "start": 375, "end": 378, "id": 62, "annotation": null}, {"text": "tetraanions", "start": 379, "end": 390, "id": 63, "annotation": null}, {"text": "are", "start": 391, "end": 394, "id": 64, "annotation": null}, {"text": "ascribed", "start": 395, "end": 403, "id": 65, "annotation": null}, {"text": "to", "start": 404, "end": 406, "id": 66, "annotation": null}, {"text": "the", "start": 407, "end": 410, "id": 67, "annotation": null}, {"text": "formation", "start": 411, "end": 420, "id": 68, "annotation": null}, {"text": "of", "start": 421, "end": 423, "id": 69, "annotation": null}, {"text": "perimeter", "start": 424, "end": 433, "id": 70, "annotation": null}, {"text": "-", "start": 434, "end": 435, "id": 71, "annotation": null}, {"text": "type", "start": 436, "end": 440, "id": 72, "annotation": null}, {"text": "structures", "start": 441, "end": 451, "id": 73, "annotation": null}, {"text": "involving", "start": 452, "end": 461, "id": 74, "annotation": null}, {"text": "\u03c0", "start": 462, "end": 463, "id": 75, "annotation": null}, {"text": "-", "start": 464, "end": 465, "id": 76, "annotation": null}, {"text": "conjugation", "start": 466, "end": 477, "id": 77, "annotation": null}, {"text": "via", "start": 478, "end": 481, "id": 78, "annotation": null}, {"text": "aromatic", "start": 482, "end": 490, "id": 79, "annotation": null}, {"text": "moieties", "start": 491, "end": 499, "id": 80, "annotation": null}, {"text": ".", "start": 500, "end": 501, "id": 81, "annotation": null}], [{"text": "The", "start": 502, "end": 505, "id": 82, "annotation": null}, {"text": "unprecedented", "start": 506, "end": 519, "id": 83, "annotation": null}, {"text": "\u201c", "start": 520, "end": 521, "id": 84, "annotation": null}, {"text": "annulenoid", "start": 522, "end": 532, "id": 85, "annotation": null}, {"text": "\u201d", "start": 533, "end": 534, "id": 86, "annotation": null}, {"text": "properties", "start": 535, "end": 545, "id": 87, "annotation": null}, {"text": "have", "start": 546, "end": 550, "id": 88, "annotation": null}, {"text": "been", "start": 551, "end": 555, "id": 89, "annotation": null}, {"text": "systematically", "start": 556, "end": 570, "id": 90, "annotation": null}, {"text": "affected", "start": 571, "end": 579, "id": 91, "annotation": null}, {"text": "by", "start": 580, "end": 582, "id": 92, "annotation": null}, {"text": "constructing", "start": 583, "end": 595, "id": 93, "annotation": null}, {"text": "cyclophane", "start": 596, "end": 606, "id": 94, "annotation": null}, {"text": "species", "start": 607, "end": 614, "id": 95, "annotation": null}, {"text": "with", "start": 615, "end": 619, "id": 96, "annotation": null}, {"text": "different", "start": 620, "end": 629, "id": 97, "annotation": null}, {"text": "ring", "start": 630, "end": 634, "id": 98, "annotation": null}, {"text": "size", "start": 635, "end": 639, "id": 99, "annotation": null}, {"text": "and", "start": 640, "end": 643, "id": 100, "annotation": null}, {"text": "planarity", "start": 644, "end": 653, "id": 101, "annotation": null}, {"text": ",", "start": 654, "end": 655, "id": 102, "annotation": null}, {"text": "with", "start": 656, "end": 660, "id": 103, "annotation": null}, {"text": "different", "start": 661, "end": 670, "id": 104, "annotation": null}, {"text": "aromatic", "start": 671, "end": 679, "id": 105, "annotation": null}, {"text": "subunits", "start": 680, "end": 688, "id": 106, "annotation": null}, {"text": ",", "start": 689, "end": 690, "id": 107, "annotation": null}, {"text": "and", "start": 691, "end": 694, "id": 108, "annotation": null}, {"text": "with", "start": 695, "end": 699, "id": 109, "annotation": null}, {"text": "heteroatoms", "start": 700, "end": 711, "id": 110, "annotation": null}, {"text": ".", "start": 712, "end": 713, "id": 111, "annotation": null}], [{"text": "The", "start": 714, "end": 717, "id": 112, "annotation": null}, {"text": "stereodynamic", "start": 718, "end": 731, "id": 113, "annotation": null}, {"text": "behavior", "start": 732, "end": 740, "id": 114, "annotation": null}, {"text": "of", "start": 741, "end": 743, "id": 115, "annotation": null}, {"text": "the", "start": 744, "end": 747, "id": 116, "annotation": null}, {"text": "anions", "start": 748, "end": 754, "id": 117, "annotation": null}, {"text": "is", "start": 755, "end": 757, "id": 118, "annotation": null}, {"text": "rationalized", "start": 758, "end": 770, "id": 119, "annotation": null}, {"text": "in", "start": 771, "end": 773, "id": 120, "annotation": null}, {"text": "terms", "start": 774, "end": 779, "id": 121, "annotation": null}, {"text": "of", "start": 780, "end": 782, "id": 122, "annotation": null}, {"text": "simple", "start": 783, "end": 789, "id": 123, "annotation": null}, {"text": "\u03c0", "start": 790, "end": 791, "id": 124, "annotation": null}, {"text": "-", "start": 792, "end": 793, "id": 125, "annotation": null}, {"text": "bond", "start": 794, "end": 798, "id": 126, "annotation": null}, {"text": "theory", "start": 799, "end": 805, "id": 127, "annotation": null}, {"text": ".", "start": 806, "end": 807, "id": 128, "annotation": null}], [{"text": "The", "start": 808, "end": 811, "id": 129, "annotation": null}, {"text": "\u201c", "start": 812, "end": 813, "id": 130, "annotation": null}, {"text": "doping", "start": 814, "end": 820, "id": 131, "annotation": null}, {"text": "\u201d", "start": 821, "end": 822, "id": 132, "annotation": null}, {"text": "of", "start": 823, "end": 825, "id": 133, "annotation": null}, {"text": "the", "start": 826, "end": 829, "id": 134, "annotation": null}, {"text": "cyclophanes", "start": 830, "end": 841, "id": 135, "annotation": "BASEMAT"}, {"text": "with", "start": 842, "end": 846, "id": 136, "annotation": null}, {"text": "electrons", "start": 847, "end": 856, "id": 137, "annotation": "DOPANT"}, {"text": "provides", "start": 857, "end": 865, "id": 138, "annotation": null}, {"text": "adequate", "start": 866, "end": 874, "id": 139, "annotation": null}, {"text": "models", "start": 875, "end": 881, "id": 140, "annotation": null}, {"text": "for", "start": 882, "end": 885, "id": 141, "annotation": null}, {"text": "organic", "start": 886, "end": 893, "id": 142, "annotation": null}, {"text": "conductors", "start": 894, "end": 904, "id": 143, "annotation": null}, {"text": "of", "start": 905, "end": 907, "id": 144, "annotation": null}, {"text": "the", "start": 908, "end": 911, "id": 145, "annotation": null}, {"text": "polyphenylenevinylene", "start": 912, "end": 933, "id": 146, "annotation": null}, {"text": "-", "start": 934, "end": 935, "id": 147, "annotation": null}, {"text": "type", "start": 936, "end": 940, "id": 148, "annotation": null}, {"text": ".", "start": 941, "end": 942, "id": 149, "annotation": null}], [{"text": "All", "start": 980, "end": 983, "id": 157, "annotation": null}, {"text": "rights", "start": 984, "end": 990, "id": 158, "annotation": null}, {"text": "reserved", "start": 991, "end": 999, "id": 159, "annotation": null}, {"text": ".", "start": 1000, "end": 1001, "id": 160, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Porous carbon monoliths have attracted great interest in many fields due to their easy availability, large specific surface area, desirable electronic conductivity, and tunable pore structure. In this work, hierarchical porous nitrogen-doped partial graphitized carbon monoliths (N\u2013MC\u2013Fe) with ordered mesoporous have been successfully synthesized by using resorcinol-formaldehyde as precursors, iron salts as catalyst, and mixed triblock copolymers as templates via a one-step hydrothermal method. In the reactant system, hexamethylenetetramine (HMT) is used as nitrogen source and one of the carbon precursors under hydrothermal conditions instead of using toxic formaldehyde. The N\u2013MC\u2013Fe show hierarchically porous structures, with interconnected macroporous and ordered hexagonally arranged mesoporous. Nitrogen element is in situ doped into carbon through decomposition of HMT. Iron catalyst is helpful to improve the graphitization degree and pore volume of N\u2013MC\u2013Fe. The synthesis strategy is user-friendly, cost-effective, and can be easily scaled up for production. As supercapacitors, the N\u2013MC\u2013Fe show good capacity with high specific capacitance and good electrochemical stability. Graphical abstractHierarchical porous nitrogen-doped partial graphitized carbon monoliths with ordered mesoporous have been successfully synthesized by using resorcinol-formaldehyde as precursors, iron as catalyst, and mixed triblock copolymers as templates via a one-step hydrothermal method.", "meta": {"doi": "10.1007/s11051-017-3796-8"}, "_input_hash": -646028450, "_task_hash": -1513218377, "tokens": [[{"text": "Porous", "start": 0, "end": 6, "id": 0, "annotation": null}, {"text": "carbon", "start": 7, "end": 13, "id": 1, "annotation": null}, {"text": "monoliths", "start": 14, "end": 23, "id": 2, "annotation": null}, {"text": "have", "start": 24, "end": 28, "id": 3, "annotation": null}, {"text": "attracted", "start": 29, "end": 38, "id": 4, "annotation": null}, {"text": "great", "start": 39, "end": 44, "id": 5, "annotation": null}, {"text": "interest", "start": 45, "end": 53, "id": 6, "annotation": null}, {"text": "in", "start": 54, "end": 56, "id": 7, "annotation": null}, {"text": "many", "start": 57, "end": 61, "id": 8, "annotation": null}, {"text": "fields", "start": 62, "end": 68, "id": 9, "annotation": null}, {"text": "due", "start": 69, "end": 72, "id": 10, "annotation": null}, {"text": "to", "start": 73, "end": 75, "id": 11, "annotation": null}, {"text": "their", "start": 76, "end": 81, "id": 12, "annotation": null}, {"text": "easy", "start": 82, "end": 86, "id": 13, "annotation": null}, {"text": "availability", "start": 87, "end": 99, "id": 14, "annotation": null}, {"text": ",", "start": 100, "end": 101, "id": 15, "annotation": null}, {"text": "large", "start": 102, "end": 107, "id": 16, "annotation": null}, {"text": "specific", "start": 108, "end": 116, "id": 17, "annotation": null}, {"text": "surface", "start": 117, "end": 124, "id": 18, "annotation": null}, {"text": "area", "start": 125, "end": 129, "id": 19, "annotation": null}, {"text": ",", "start": 130, "end": 131, "id": 20, "annotation": null}, {"text": "desirable", "start": 132, "end": 141, "id": 21, "annotation": null}, {"text": "electronic", "start": 142, "end": 152, "id": 22, "annotation": null}, {"text": "conductivity", "start": 153, "end": 165, "id": 23, "annotation": null}, {"text": ",", "start": 166, "end": 167, "id": 24, "annotation": null}, {"text": "and", "start": 168, "end": 171, "id": 25, "annotation": null}, {"text": "tunable", "start": 172, "end": 179, "id": 26, "annotation": null}, {"text": "pore", "start": 180, "end": 184, "id": 27, "annotation": null}, {"text": "structure", "start": 185, "end": 194, "id": 28, "annotation": null}, {"text": ".", "start": 195, "end": 196, "id": 29, "annotation": null}], [{"text": "In", "start": 197, "end": 199, "id": 30, "annotation": null}, {"text": "this", "start": 200, "end": 204, "id": 31, "annotation": null}, {"text": "work", "start": 205, "end": 209, "id": 32, "annotation": null}, {"text": ",", "start": 210, "end": 211, "id": 33, "annotation": null}, {"text": "hierarchical", "start": 212, "end": 224, "id": 34, "annotation": null}, {"text": "porous", "start": 225, "end": 231, "id": 35, "annotation": null}, {"text": "nitrogen", "start": 232, "end": 240, "id": 36, "annotation": "DOPANT"}, {"text": "-", "start": 241, "end": 242, "id": 37, "annotation": null}, {"text": "doped", "start": 243, "end": 248, "id": 38, "annotation": null}, {"text": "partial", "start": 249, "end": 256, "id": 39, "annotation": null}, {"text": "graphitized", "start": 257, "end": 268, "id": 40, "annotation": null}, {"text": "carbon", "start": 269, "end": 275, "id": 41, "annotation": "BASEMAT"}, {"text": "monoliths", "start": 276, "end": 285, "id": 42, "annotation": null}, {"text": "(", "start": 286, "end": 287, "id": 43, "annotation": null}, {"text": "N", "start": 288, "end": 289, "id": 44, "annotation": "DOPANT"}, {"text": "\u2013", "start": 290, "end": 291, "id": 45, "annotation": null}, {"text": "MC", "start": 292, "end": 294, "id": 46, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 295, "end": 296, "id": 47, "annotation": null}, {"text": "Fe", "start": 297, "end": 299, "id": 48, "annotation": null}, {"text": ")", "start": 300, "end": 301, "id": 49, "annotation": null}, {"text": "with", "start": 302, "end": 306, "id": 50, "annotation": null}, {"text": "ordered", "start": 307, "end": 314, "id": 51, "annotation": null}, {"text": "mesoporous", "start": 315, "end": 325, "id": 52, "annotation": null}, {"text": "have", "start": 326, "end": 330, "id": 53, "annotation": null}, {"text": "been", "start": 331, "end": 335, "id": 54, "annotation": null}, {"text": "successfully", "start": 336, "end": 348, "id": 55, "annotation": null}, {"text": "synthesized", "start": 349, "end": 360, "id": 56, "annotation": null}, {"text": "by", "start": 361, "end": 363, "id": 57, "annotation": null}, {"text": "using", "start": 364, "end": 369, "id": 58, "annotation": null}, {"text": "resorcinol", "start": 370, "end": 380, "id": 59, "annotation": null}, {"text": "-", "start": 381, "end": 382, "id": 60, "annotation": null}, {"text": "formaldehyde", "start": 383, "end": 395, "id": 61, "annotation": null}, {"text": "as", "start": 396, "end": 398, "id": 62, "annotation": null}, {"text": "precursors", "start": 399, "end": 409, "id": 63, "annotation": null}, {"text": ",", "start": 410, "end": 411, "id": 64, "annotation": null}, {"text": "iron", "start": 412, "end": 416, "id": 65, "annotation": null}, {"text": "salts", "start": 417, "end": 422, "id": 66, "annotation": null}, {"text": "as", "start": 423, "end": 425, "id": 67, "annotation": null}, {"text": "catalyst", "start": 426, "end": 434, "id": 68, "annotation": null}, {"text": ",", "start": 435, "end": 436, "id": 69, "annotation": null}, {"text": "and", "start": 437, "end": 440, "id": 70, "annotation": null}, {"text": "mixed", "start": 441, "end": 446, "id": 71, "annotation": null}, {"text": "triblock", "start": 447, "end": 455, "id": 72, "annotation": null}, {"text": "copolymers", "start": 456, "end": 466, "id": 73, "annotation": null}, {"text": "as", "start": 467, "end": 469, "id": 74, "annotation": null}, {"text": "templates", "start": 470, "end": 479, "id": 75, "annotation": null}, {"text": "via", "start": 480, "end": 483, "id": 76, "annotation": null}, {"text": "a", "start": 484, "end": 485, "id": 77, "annotation": null}, {"text": "one", "start": 486, "end": 489, "id": 78, "annotation": null}, {"text": "-", "start": 490, "end": 491, "id": 79, "annotation": null}, {"text": "step", "start": 492, "end": 496, "id": 80, "annotation": null}, {"text": "hydrothermal", "start": 497, "end": 509, "id": 81, "annotation": null}, {"text": "method", "start": 510, "end": 516, "id": 82, "annotation": null}, {"text": ".", "start": 517, "end": 518, "id": 83, "annotation": null}], [{"text": "In", "start": 519, "end": 521, "id": 84, "annotation": null}, {"text": "the", "start": 522, "end": 525, "id": 85, "annotation": null}, {"text": "reactant", "start": 526, "end": 534, "id": 86, "annotation": null}, {"text": "system", "start": 535, "end": 541, "id": 87, "annotation": null}, {"text": ",", "start": 542, "end": 543, "id": 88, "annotation": null}, {"text": "hexamethylenetetramine", "start": 544, "end": 566, "id": 89, "annotation": null}, {"text": "(", "start": 567, "end": 568, "id": 90, "annotation": null}, {"text": "HMT", "start": 569, "end": 572, "id": 91, "annotation": null}, {"text": ")", "start": 573, "end": 574, "id": 92, "annotation": null}, {"text": "is", "start": 575, "end": 577, "id": 93, "annotation": null}, {"text": "used", "start": 578, "end": 582, "id": 94, "annotation": null}, {"text": "as", "start": 583, "end": 585, "id": 95, "annotation": null}, {"text": "nitrogen", "start": 586, "end": 594, "id": 96, "annotation": null}, {"text": "source", "start": 595, "end": 601, "id": 97, "annotation": null}, {"text": "and", "start": 602, "end": 605, "id": 98, "annotation": null}, {"text": "one", "start": 606, "end": 609, "id": 99, "annotation": null}, {"text": "of", "start": 610, "end": 612, "id": 100, "annotation": null}, {"text": "the", "start": 613, "end": 616, "id": 101, "annotation": null}, {"text": "carbon", "start": 617, "end": 623, "id": 102, "annotation": null}, {"text": "precursors", "start": 624, "end": 634, "id": 103, "annotation": null}, {"text": "under", "start": 635, "end": 640, "id": 104, "annotation": null}, {"text": "hydrothermal", "start": 641, "end": 653, "id": 105, "annotation": null}, {"text": "conditions", "start": 654, "end": 664, "id": 106, "annotation": null}, {"text": "instead", "start": 665, "end": 672, "id": 107, "annotation": null}, {"text": "of", "start": 673, "end": 675, "id": 108, "annotation": null}, {"text": "using", "start": 676, "end": 681, "id": 109, "annotation": null}, {"text": "toxic", "start": 682, "end": 687, "id": 110, "annotation": null}, {"text": "formaldehyde", "start": 688, "end": 700, "id": 111, "annotation": null}, {"text": ".", "start": 701, "end": 702, "id": 112, "annotation": null}], [{"text": "The", "start": 703, "end": 706, "id": 113, "annotation": null}, {"text": "N", "start": 707, "end": 708, "id": 114, "annotation": "DOPANT"}, {"text": "\u2013", "start": 709, "end": 710, "id": 115, "annotation": null}, {"text": "MC", "start": 711, "end": 713, "id": 116, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 714, "end": 715, "id": 117, "annotation": null}, {"text": "Fe", "start": 716, "end": 718, "id": 118, "annotation": null}, {"text": "show", "start": 719, "end": 723, "id": 119, "annotation": null}, {"text": "hierarchically", "start": 724, "end": 738, "id": 120, "annotation": null}, {"text": "porous", "start": 739, "end": 745, "id": 121, "annotation": null}, {"text": "structures", "start": 746, "end": 756, "id": 122, "annotation": null}, {"text": ",", "start": 757, "end": 758, "id": 123, "annotation": null}, {"text": "with", "start": 759, "end": 763, "id": 124, "annotation": null}, {"text": "interconnected", "start": 764, "end": 778, "id": 125, "annotation": null}, {"text": "macroporous", "start": 779, "end": 790, "id": 126, "annotation": null}, {"text": "and", "start": 791, "end": 794, "id": 127, "annotation": null}, {"text": "ordered", "start": 795, "end": 802, "id": 128, "annotation": null}, {"text": "hexagonally", "start": 803, "end": 814, "id": 129, "annotation": null}, {"text": "arranged", "start": 815, "end": 823, "id": 130, "annotation": null}, {"text": "mesoporous", "start": 824, "end": 834, "id": 131, "annotation": null}, {"text": ".", "start": 835, "end": 836, "id": 132, "annotation": null}], [{"text": "Nitrogen", "start": 837, "end": 845, "id": 133, "annotation": "DOPANT"}, {"text": "element", "start": 846, "end": 853, "id": 134, "annotation": null}, {"text": "is", "start": 854, "end": 856, "id": 135, "annotation": null}, {"text": "in", "start": 857, "end": 859, "id": 136, "annotation": null}, {"text": "situ", "start": 860, "end": 864, "id": 137, "annotation": null}, {"text": "doped", "start": 865, "end": 870, "id": 138, "annotation": null}, {"text": "into", "start": 871, "end": 875, "id": 139, "annotation": null}, {"text": "carbon", "start": 876, "end": 882, "id": 140, "annotation": "BASEMAT"}, {"text": "through", "start": 883, "end": 890, "id": 141, "annotation": null}, {"text": "decomposition", "start": 891, "end": 904, "id": 142, "annotation": null}, {"text": "of", "start": 905, "end": 907, "id": 143, "annotation": null}, {"text": "HMT", "start": 908, "end": 911, "id": 144, "annotation": null}, {"text": ".", "start": 912, "end": 913, "id": 145, "annotation": null}], [{"text": "Iron", "start": 914, "end": 918, "id": 146, "annotation": null}, {"text": "catalyst", "start": 919, "end": 927, "id": 147, "annotation": null}, {"text": "is", "start": 928, "end": 930, "id": 148, "annotation": null}, {"text": "helpful", "start": 931, "end": 938, "id": 149, "annotation": null}, {"text": "to", "start": 939, "end": 941, "id": 150, "annotation": null}, {"text": "improve", "start": 942, "end": 949, "id": 151, "annotation": null}, {"text": "the", "start": 950, "end": 953, "id": 152, "annotation": null}, {"text": "graphitization", "start": 954, "end": 968, "id": 153, "annotation": null}, {"text": "degree", "start": 969, "end": 975, "id": 154, "annotation": null}, {"text": "and", "start": 976, "end": 979, "id": 155, "annotation": null}, {"text": "pore", "start": 980, "end": 984, "id": 156, "annotation": null}, {"text": "volume", "start": 985, "end": 991, "id": 157, "annotation": null}, {"text": "of", "start": 992, "end": 994, "id": 158, "annotation": null}, {"text": "N", "start": 995, "end": 996, "id": 159, "annotation": "DOPANT"}, {"text": "\u2013", "start": 997, "end": 998, "id": 160, "annotation": null}, {"text": "MC", "start": 999, "end": 1001, "id": 161, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 1002, "end": 1003, "id": 162, "annotation": null}, {"text": "Fe", "start": 1004, "end": 1006, "id": 163, "annotation": null}, {"text": ".", "start": 1007, "end": 1008, "id": 164, "annotation": null}], [{"text": "The", "start": 1009, "end": 1012, "id": 165, "annotation": null}, {"text": "synthesis", "start": 1013, "end": 1022, "id": 166, "annotation": null}, {"text": "strategy", "start": 1023, "end": 1031, "id": 167, "annotation": null}, {"text": "is", "start": 1032, "end": 1034, "id": 168, "annotation": null}, {"text": "user", "start": 1035, "end": 1039, "id": 169, "annotation": null}, {"text": "-", "start": 1040, "end": 1041, "id": 170, "annotation": null}, {"text": "friendly", "start": 1042, "end": 1050, "id": 171, "annotation": null}, {"text": ",", "start": 1051, "end": 1052, "id": 172, "annotation": null}, {"text": "cost", "start": 1053, "end": 1057, "id": 173, "annotation": null}, {"text": "-", "start": 1058, "end": 1059, "id": 174, "annotation": null}, {"text": "effective", "start": 1060, "end": 1069, "id": 175, "annotation": null}, {"text": ",", "start": 1070, "end": 1071, "id": 176, "annotation": null}, {"text": "and", "start": 1072, "end": 1075, "id": 177, "annotation": null}, {"text": "can", "start": 1076, "end": 1079, "id": 178, "annotation": null}, {"text": "be", "start": 1080, "end": 1082, "id": 179, "annotation": null}, {"text": "easily", "start": 1083, "end": 1089, "id": 180, "annotation": null}, {"text": "scaled", "start": 1090, "end": 1096, "id": 181, "annotation": null}, {"text": "up", "start": 1097, "end": 1099, "id": 182, "annotation": null}, {"text": "for", "start": 1100, "end": 1103, "id": 183, "annotation": null}, {"text": "production", "start": 1104, "end": 1114, "id": 184, "annotation": null}, {"text": ".", "start": 1115, "end": 1116, "id": 185, "annotation": null}], [{"text": "As", "start": 1117, "end": 1119, "id": 186, "annotation": null}, {"text": "supercapacitors", "start": 1120, "end": 1135, "id": 187, "annotation": null}, {"text": ",", "start": 1136, "end": 1137, "id": 188, "annotation": null}, {"text": "the", "start": 1138, "end": 1141, "id": 189, "annotation": null}, {"text": "N", "start": 1142, "end": 1143, "id": 190, "annotation": "DOPANT"}, {"text": "\u2013", "start": 1144, "end": 1145, "id": 191, "annotation": null}, {"text": "MC", "start": 1146, "end": 1148, "id": 192, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 1149, "end": 1150, "id": 193, "annotation": null}, {"text": "Fe", "start": 1151, "end": 1153, "id": 194, "annotation": null}, {"text": "show", "start": 1154, "end": 1158, "id": 195, "annotation": null}, {"text": "good", "start": 1159, "end": 1163, "id": 196, "annotation": null}, {"text": "capacity", "start": 1164, "end": 1172, "id": 197, "annotation": null}, {"text": "with", "start": 1173, "end": 1177, "id": 198, "annotation": null}, {"text": "high", "start": 1178, "end": 1182, "id": 199, "annotation": null}, {"text": "specific", "start": 1183, "end": 1191, "id": 200, "annotation": null}, {"text": "capacitance", "start": 1192, "end": 1203, "id": 201, "annotation": null}, {"text": "and", "start": 1204, "end": 1207, "id": 202, "annotation": null}, {"text": "good", "start": 1208, "end": 1212, "id": 203, "annotation": null}, {"text": "electrochemical", "start": 1213, "end": 1228, "id": 204, "annotation": null}, {"text": "stability", "start": 1229, "end": 1238, "id": 205, "annotation": null}, {"text": ".", "start": 1239, "end": 1240, "id": 206, "annotation": null}], [{"text": "Graphical", "start": 1259, "end": 1268, "id": 208, "annotation": null}, {"text": "abstractHierarchical", "start": 1269, "end": 1289, "id": 209, "annotation": null}, {"text": "porous", "start": 1290, "end": 1296, "id": 210, "annotation": null}, {"text": "nitrogen", "start": 1297, "end": 1305, "id": 211, "annotation": "DOPANT"}, {"text": "-", "start": 1306, "end": 1307, "id": 212, "annotation": null}, {"text": "doped", "start": 1308, "end": 1313, "id": 213, "annotation": null}, {"text": "partial", "start": 1314, "end": 1321, "id": 214, "annotation": null}, {"text": "graphitized", "start": 1322, "end": 1333, "id": 215, "annotation": null}, {"text": "carbon", "start": 1334, "end": 1340, "id": 216, "annotation": "BASEMAT"}, {"text": "monoliths", "start": 1341, "end": 1350, "id": 217, "annotation": null}, {"text": "with", "start": 1351, "end": 1355, "id": 218, "annotation": null}, {"text": "ordered", "start": 1356, "end": 1363, "id": 219, "annotation": null}, {"text": "mesoporous", "start": 1364, "end": 1374, "id": 220, "annotation": null}, {"text": "have", "start": 1375, "end": 1379, "id": 221, "annotation": null}, {"text": "been", "start": 1380, "end": 1384, "id": 222, "annotation": null}, {"text": "successfully", "start": 1385, "end": 1397, "id": 223, "annotation": null}, {"text": "synthesized", "start": 1398, "end": 1409, "id": 224, "annotation": null}, {"text": "by", "start": 1410, "end": 1412, "id": 225, "annotation": null}, {"text": "using", "start": 1413, "end": 1418, "id": 226, "annotation": null}, {"text": "resorcinol", "start": 1419, "end": 1429, "id": 227, "annotation": null}, {"text": "-", "start": 1430, "end": 1431, "id": 228, "annotation": null}, {"text": "formaldehyde", "start": 1432, "end": 1444, "id": 229, "annotation": null}, {"text": "as", "start": 1445, "end": 1447, "id": 230, "annotation": null}, {"text": "precursors", "start": 1448, "end": 1458, "id": 231, "annotation": null}, {"text": ",", "start": 1459, "end": 1460, "id": 232, "annotation": null}, {"text": "iron", "start": 1461, "end": 1465, "id": 233, "annotation": null}, {"text": "as", "start": 1466, "end": 1468, "id": 234, "annotation": null}, {"text": "catalyst", "start": 1469, "end": 1477, "id": 235, "annotation": null}, {"text": ",", "start": 1478, "end": 1479, "id": 236, "annotation": null}, {"text": "and", "start": 1480, "end": 1483, "id": 237, "annotation": null}, {"text": "mixed", "start": 1484, "end": 1489, "id": 238, "annotation": null}, {"text": "triblock", "start": 1490, "end": 1498, "id": 239, "annotation": null}, {"text": "copolymers", "start": 1499, "end": 1509, "id": 240, "annotation": null}, {"text": "as", "start": 1510, "end": 1512, "id": 241, "annotation": null}, {"text": "templates", "start": 1513, "end": 1522, "id": 242, "annotation": null}, {"text": "via", "start": 1523, "end": 1526, "id": 243, "annotation": null}, {"text": "a", "start": 1527, "end": 1528, "id": 244, "annotation": null}, {"text": "one", "start": 1529, "end": 1532, "id": 245, "annotation": null}, {"text": "-", "start": 1533, "end": 1534, "id": 246, "annotation": null}, {"text": "step", "start": 1535, "end": 1539, "id": 247, "annotation": null}, {"text": "hydrothermal", "start": 1540, "end": 1552, "id": 248, "annotation": null}, {"text": "method", "start": 1553, "end": 1559, "id": 249, "annotation": null}, {"text": ".", "start": 1560, "end": 1561, "id": 250, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Gamma induced defect centers of undoped phosphate glasses and the influence of these centers on the sensitivity and build-up time of silver-doped phosphate glasses were investigated. According to the ratio of oxygen and phosphorus ions (O/P) in phosphate glass, the basic glasses were polyphosphate glass (O/P=3.07), metaphosphate glass (O/P=3) and ultraphosphate glass (O/P=2.93). Concentration of Ag+ was 2mol%. Defect centers induced by gamma rays of three base glasses were detected by Electron paramagnetic resonance (EPR) and optical absorption spectra. Three kinds of defect centers were observed and the characteristics of the hyperfine splitting doublets were quite similar in these glass samples. All the defect centers are phosphorus and oxygen related radiation-induced hole trapped defect centers (POHC) and electron centers PO3 2 \u2212 and PO4 4\u2212. Based on EPR and optical absorption spectra, polyphosphate glasses have the highest relative POHC concentration. The fluorescence spectra and EPR spectra of silver-doped glasses were measured. The results indicate that polyphosphate glasses have the highest sensitivity and shortest build-up time of three silver-doped phosphate glasses which are related to the concentration of POHC.", "meta": {"doi": "10.1016/j.radmeas.2010.09.002"}, "_input_hash": -1581360778, "_task_hash": -805313985, "tokens": [[{"text": "Gamma", "start": 0, "end": 5, "id": 0, "annotation": null}, {"text": "induced", "start": 6, "end": 13, "id": 1, "annotation": null}, {"text": "defect", "start": 14, "end": 20, "id": 2, "annotation": null}, {"text": "centers", "start": 21, "end": 28, "id": 3, "annotation": null}, {"text": "of", "start": 29, "end": 31, "id": 4, "annotation": null}, {"text": "undoped", "start": 32, "end": 39, "id": 5, "annotation": null}, {"text": "phosphate", "start": 40, "end": 49, "id": 6, "annotation": null}, {"text": "glasses", "start": 50, "end": 57, "id": 7, "annotation": null}, {"text": "and", "start": 58, "end": 61, "id": 8, "annotation": null}, {"text": "the", "start": 62, "end": 65, "id": 9, "annotation": null}, {"text": "influence", "start": 66, "end": 75, "id": 10, "annotation": null}, {"text": "of", "start": 76, "end": 78, "id": 11, "annotation": null}, {"text": "these", "start": 79, "end": 84, "id": 12, "annotation": null}, {"text": "centers", "start": 85, "end": 92, "id": 13, "annotation": null}, {"text": "on", "start": 93, "end": 95, "id": 14, "annotation": null}, {"text": "the", "start": 96, "end": 99, "id": 15, "annotation": null}, {"text": "sensitivity", "start": 100, "end": 111, "id": 16, "annotation": null}, {"text": "and", "start": 112, "end": 115, "id": 17, "annotation": null}, {"text": "build", "start": 116, "end": 121, "id": 18, "annotation": null}, {"text": "-", "start": 122, "end": 123, "id": 19, "annotation": null}, {"text": "up", "start": 124, "end": 126, "id": 20, "annotation": null}, {"text": "time", "start": 127, "end": 131, "id": 21, "annotation": null}, {"text": "of", "start": 132, "end": 134, "id": 22, "annotation": null}, {"text": "silver", "start": 135, "end": 141, "id": 23, "annotation": "DOPANT"}, {"text": "-", "start": 142, "end": 143, "id": 24, "annotation": null}, {"text": "doped", "start": 144, "end": 149, "id": 25, "annotation": null}, {"text": "phosphate", "start": 150, "end": 159, "id": 26, "annotation": "BASEMAT"}, {"text": "glasses", "start": 160, "end": 167, "id": 27, "annotation": null}, {"text": "were", "start": 168, "end": 172, "id": 28, "annotation": null}, {"text": "investigated", "start": 173, "end": 185, "id": 29, "annotation": null}, {"text": ".", "start": 186, "end": 187, "id": 30, "annotation": null}], [{"text": "According", "start": 188, "end": 197, "id": 31, "annotation": null}, {"text": "to", "start": 198, "end": 200, "id": 32, "annotation": null}, {"text": "the", "start": 201, "end": 204, "id": 33, "annotation": null}, {"text": "ratio", "start": 205, "end": 210, "id": 34, "annotation": null}, {"text": "of", "start": 211, "end": 213, "id": 35, "annotation": null}, {"text": "oxygen", "start": 214, "end": 220, "id": 36, "annotation": null}, {"text": "and", "start": 221, "end": 224, "id": 37, "annotation": null}, {"text": "phosphorus", "start": 225, "end": 235, "id": 38, "annotation": null}, {"text": "ions", "start": 236, "end": 240, "id": 39, "annotation": null}, {"text": "(", "start": 241, "end": 242, "id": 40, "annotation": null}, {"text": "O", "start": 243, "end": 244, "id": 41, "annotation": null}, {"text": "/", "start": 245, "end": 246, "id": 42, "annotation": null}, {"text": "P", "start": 247, "end": 248, "id": 43, "annotation": null}, {"text": ")", "start": 249, "end": 250, "id": 44, "annotation": null}, {"text": "in", "start": 251, "end": 253, "id": 45, "annotation": null}, {"text": "phosphate", "start": 254, "end": 263, "id": 46, "annotation": null}, {"text": "glass", "start": 264, "end": 269, "id": 47, "annotation": null}, {"text": ",", "start": 270, "end": 271, "id": 48, "annotation": null}, {"text": "the", "start": 272, "end": 275, "id": 49, "annotation": null}, {"text": "basic", "start": 276, "end": 281, "id": 50, "annotation": null}, {"text": "glasses", "start": 282, "end": 289, "id": 51, "annotation": null}, {"text": "were", "start": 290, "end": 294, "id": 52, "annotation": null}, {"text": "polyphosphate", "start": 295, "end": 308, "id": 53, "annotation": null}, {"text": "glass", "start": 309, "end": 314, "id": 54, "annotation": null}, {"text": "(", "start": 315, "end": 316, "id": 55, "annotation": null}, {"text": "O", "start": 317, "end": 318, "id": 56, "annotation": null}, {"text": "/", "start": 319, "end": 320, "id": 57, "annotation": null}, {"text": "P=3.07", "start": 321, "end": 327, "id": 58, "annotation": null}, {"text": ")", "start": 328, "end": 329, "id": 59, "annotation": null}, {"text": ",", "start": 330, "end": 331, "id": 60, "annotation": null}, {"text": "metaphosphate", "start": 332, "end": 345, "id": 61, "annotation": null}, {"text": "glass", "start": 346, "end": 351, "id": 62, "annotation": null}, {"text": "(", "start": 352, "end": 353, "id": 63, "annotation": null}, {"text": "O", "start": 354, "end": 355, "id": 64, "annotation": null}, {"text": "/", "start": 356, "end": 357, "id": 65, "annotation": null}, {"text": "P=3", "start": 358, "end": 361, "id": 66, "annotation": null}, {"text": ")", "start": 362, "end": 363, "id": 67, "annotation": null}, {"text": "and", "start": 364, "end": 367, "id": 68, "annotation": null}, {"text": "ultraphosphate", "start": 368, "end": 382, "id": 69, "annotation": null}, {"text": "glass", "start": 383, "end": 388, "id": 70, "annotation": null}, {"text": "(", "start": 389, "end": 390, "id": 71, "annotation": null}, {"text": "O", "start": 391, "end": 392, "id": 72, "annotation": null}, {"text": "/", "start": 393, "end": 394, "id": 73, "annotation": null}, {"text": "P=2.93", "start": 395, "end": 401, "id": 74, "annotation": null}, {"text": ")", "start": 402, "end": 403, "id": 75, "annotation": null}, {"text": ".", "start": 404, "end": 405, "id": 76, "annotation": null}], [{"text": "Concentration", "start": 406, "end": 419, "id": 77, "annotation": null}, {"text": "of", "start": 420, "end": 422, "id": 78, "annotation": null}, {"text": "Ag+", "start": 423, "end": 426, "id": 79, "annotation": "DOPANT"}, {"text": "was", "start": 427, "end": 430, "id": 80, "annotation": null}, {"text": "2mol%", "start": 431, "end": 436, "id": 81, "annotation": "DOPMODQ"}, {"text": ".", "start": 437, "end": 438, "id": 82, "annotation": null}], [{"text": "Defect", "start": 439, "end": 445, "id": 83, "annotation": null}, {"text": "centers", "start": 446, "end": 453, "id": 84, "annotation": null}, {"text": "induced", "start": 454, "end": 461, "id": 85, "annotation": null}, {"text": "by", "start": 462, "end": 464, "id": 86, "annotation": null}, {"text": "gamma", "start": 465, "end": 470, "id": 87, "annotation": null}, {"text": "rays", "start": 471, "end": 475, "id": 88, "annotation": null}, {"text": "of", "start": 476, "end": 478, "id": 89, "annotation": null}, {"text": "three", "start": 479, "end": 484, "id": 90, "annotation": null}, {"text": "base", "start": 485, "end": 489, "id": 91, "annotation": null}, {"text": "glasses", "start": 490, "end": 497, "id": 92, "annotation": null}, {"text": "were", "start": 498, "end": 502, "id": 93, "annotation": null}, {"text": "detected", "start": 503, "end": 511, "id": 94, "annotation": null}, {"text": "by", "start": 512, "end": 514, "id": 95, "annotation": null}, {"text": "Electron", "start": 515, "end": 523, "id": 96, "annotation": null}, {"text": "paramagnetic", "start": 524, "end": 536, "id": 97, "annotation": null}, {"text": "resonance", "start": 537, "end": 546, "id": 98, "annotation": null}, {"text": "(", "start": 547, "end": 548, "id": 99, "annotation": null}, {"text": "EPR", "start": 549, "end": 552, "id": 100, "annotation": null}, {"text": ")", "start": 553, "end": 554, "id": 101, "annotation": null}, {"text": "and", "start": 555, "end": 558, "id": 102, "annotation": null}, {"text": "optical", "start": 559, "end": 566, "id": 103, "annotation": null}, {"text": "absorption", "start": 567, "end": 577, "id": 104, "annotation": null}, {"text": "spectra", "start": 578, "end": 585, "id": 105, "annotation": null}, {"text": ".", "start": 586, "end": 587, "id": 106, "annotation": null}], [{"text": "Three", "start": 588, "end": 593, "id": 107, "annotation": null}, {"text": "kinds", "start": 594, "end": 599, "id": 108, "annotation": null}, {"text": "of", "start": 600, "end": 602, "id": 109, "annotation": null}, {"text": "defect", "start": 603, "end": 609, "id": 110, "annotation": null}, {"text": "centers", "start": 610, "end": 617, "id": 111, "annotation": null}, {"text": "were", "start": 618, "end": 622, "id": 112, "annotation": null}, {"text": "observed", "start": 623, "end": 631, "id": 113, "annotation": null}, {"text": "and", "start": 632, "end": 635, "id": 114, "annotation": null}, {"text": "the", "start": 636, "end": 639, "id": 115, "annotation": null}, {"text": "characteristics", "start": 640, "end": 655, "id": 116, "annotation": null}, {"text": "of", "start": 656, "end": 658, "id": 117, "annotation": null}, {"text": "the", "start": 659, "end": 662, "id": 118, "annotation": null}, {"text": "hyperfine", "start": 663, "end": 672, "id": 119, "annotation": null}, {"text": "splitting", "start": 673, "end": 682, "id": 120, "annotation": null}, {"text": "doublets", "start": 683, "end": 691, "id": 121, "annotation": null}, {"text": "were", "start": 692, "end": 696, "id": 122, "annotation": null}, {"text": "quite", "start": 697, "end": 702, "id": 123, "annotation": null}, {"text": "similar", "start": 703, "end": 710, "id": 124, "annotation": null}, {"text": "in", "start": 711, "end": 713, "id": 125, "annotation": null}, {"text": "these", "start": 714, "end": 719, "id": 126, "annotation": null}, {"text": "glass", "start": 720, "end": 725, "id": 127, "annotation": null}, {"text": "samples", "start": 726, "end": 733, "id": 128, "annotation": null}, {"text": ".", "start": 734, "end": 735, "id": 129, "annotation": null}], [{"text": "All", "start": 736, "end": 739, "id": 130, "annotation": null}, {"text": "the", "start": 740, "end": 743, "id": 131, "annotation": null}, {"text": "defect", "start": 744, "end": 750, "id": 132, "annotation": null}, {"text": "centers", "start": 751, "end": 758, "id": 133, "annotation": null}, {"text": "are", "start": 759, "end": 762, "id": 134, "annotation": null}, {"text": "phosphorus", "start": 763, "end": 773, "id": 135, "annotation": null}, {"text": "and", "start": 774, "end": 777, "id": 136, "annotation": null}, {"text": "oxygen", "start": 778, "end": 784, "id": 137, "annotation": null}, {"text": "related", "start": 785, "end": 792, "id": 138, "annotation": null}, {"text": "radiation", "start": 793, "end": 802, "id": 139, "annotation": null}, {"text": "-", "start": 803, "end": 804, "id": 140, "annotation": null}, {"text": "induced", "start": 805, "end": 812, "id": 141, "annotation": null}, {"text": "hole", "start": 813, "end": 817, "id": 142, "annotation": null}, {"text": "trapped", "start": 818, "end": 825, "id": 143, "annotation": null}, {"text": "defect", "start": 826, "end": 832, "id": 144, "annotation": null}, {"text": "centers", "start": 833, "end": 840, "id": 145, "annotation": null}, {"text": "(", "start": 841, "end": 842, "id": 146, "annotation": null}, {"text": "POHC", "start": 843, "end": 847, "id": 147, "annotation": null}, {"text": ")", "start": 848, "end": 849, "id": 148, "annotation": null}, {"text": "and", "start": 850, "end": 853, "id": 149, "annotation": null}, {"text": "electron", "start": 854, "end": 862, "id": 150, "annotation": null}, {"text": "centers", "start": 863, "end": 870, "id": 151, "annotation": null}, {"text": "PO3", "start": 871, "end": 874, "id": 152, "annotation": null}, {"text": "2", "start": 875, "end": 876, "id": 153, "annotation": null}, {"text": "\u2212", "start": 877, "end": 878, "id": 154, "annotation": null}, {"text": "and", "start": 879, "end": 882, "id": 155, "annotation": null}, {"text": "PO4", "start": 883, "end": 886, "id": 156, "annotation": null}, {"text": "4\u2212.", "start": 887, "end": 890, "id": 157, "annotation": null}], [{"text": "Based", "start": 891, "end": 896, "id": 158, "annotation": null}, {"text": "on", "start": 897, "end": 899, "id": 159, "annotation": null}, {"text": "EPR", "start": 900, "end": 903, "id": 160, "annotation": null}, {"text": "and", "start": 904, "end": 907, "id": 161, "annotation": null}, {"text": "optical", "start": 908, "end": 915, "id": 162, "annotation": null}, {"text": "absorption", "start": 916, "end": 926, "id": 163, "annotation": null}, {"text": "spectra", "start": 927, "end": 934, "id": 164, "annotation": null}, {"text": ",", "start": 935, "end": 936, "id": 165, "annotation": null}, {"text": "polyphosphate", "start": 937, "end": 950, "id": 166, "annotation": null}, {"text": "glasses", "start": 951, "end": 958, "id": 167, "annotation": null}, {"text": "have", "start": 959, "end": 963, "id": 168, "annotation": null}, {"text": "the", "start": 964, "end": 967, "id": 169, "annotation": null}, {"text": "highest", "start": 968, "end": 975, "id": 170, "annotation": null}, {"text": "relative", "start": 976, "end": 984, "id": 171, "annotation": null}, {"text": "POHC", "start": 985, "end": 989, "id": 172, "annotation": null}, {"text": "concentration", "start": 990, "end": 1003, "id": 173, "annotation": null}, {"text": ".", "start": 1004, "end": 1005, "id": 174, "annotation": null}], [{"text": "The", "start": 1006, "end": 1009, "id": 175, "annotation": null}, {"text": "fluorescence", "start": 1010, "end": 1022, "id": 176, "annotation": null}, {"text": "spectra", "start": 1023, "end": 1030, "id": 177, "annotation": null}, {"text": "and", "start": 1031, "end": 1034, "id": 178, "annotation": null}, {"text": "EPR", "start": 1035, "end": 1038, "id": 179, "annotation": null}, {"text": "spectra", "start": 1039, "end": 1046, "id": 180, "annotation": null}, {"text": "of", "start": 1047, "end": 1049, "id": 181, "annotation": null}, {"text": "silver", "start": 1050, "end": 1056, "id": 182, "annotation": "DOPANT"}, {"text": "-", "start": 1057, "end": 1058, "id": 183, "annotation": null}, {"text": "doped", "start": 1059, "end": 1064, "id": 184, "annotation": null}, {"text": "glasses", "start": 1065, "end": 1072, "id": 185, "annotation": "BASEMAT"}, {"text": "were", "start": 1073, "end": 1077, "id": 186, "annotation": null}, {"text": "measured", "start": 1078, "end": 1086, "id": 187, "annotation": null}, {"text": ".", "start": 1087, "end": 1088, "id": 188, "annotation": null}], [{"text": "The", "start": 1089, "end": 1092, "id": 189, "annotation": null}, {"text": "results", "start": 1093, "end": 1100, "id": 190, "annotation": null}, {"text": "indicate", "start": 1101, "end": 1109, "id": 191, "annotation": null}, {"text": "that", "start": 1110, "end": 1114, "id": 192, "annotation": null}, {"text": "polyphosphate", "start": 1115, "end": 1128, "id": 193, "annotation": null}, {"text": "glasses", "start": 1129, "end": 1136, "id": 194, "annotation": null}, {"text": "have", "start": 1137, "end": 1141, "id": 195, "annotation": null}, {"text": "the", "start": 1142, "end": 1145, "id": 196, "annotation": null}, {"text": "highest", "start": 1146, "end": 1153, "id": 197, "annotation": null}, {"text": "sensitivity", "start": 1154, "end": 1165, "id": 198, "annotation": null}, {"text": "and", "start": 1166, "end": 1169, "id": 199, "annotation": null}, {"text": "shortest", "start": 1170, "end": 1178, "id": 200, "annotation": null}, {"text": "build", "start": 1179, "end": 1184, "id": 201, "annotation": null}, {"text": "-", "start": 1185, "end": 1186, "id": 202, "annotation": null}, {"text": "up", "start": 1187, "end": 1189, "id": 203, "annotation": null}, {"text": "time", "start": 1190, "end": 1194, "id": 204, "annotation": null}, {"text": "of", "start": 1195, "end": 1197, "id": 205, "annotation": null}, {"text": "three", "start": 1198, "end": 1203, "id": 206, "annotation": null}, {"text": "silver", "start": 1204, "end": 1210, "id": 207, "annotation": "DOPANT"}, {"text": "-", "start": 1211, "end": 1212, "id": 208, "annotation": null}, {"text": "doped", "start": 1213, "end": 1218, "id": 209, "annotation": null}, {"text": "phosphate", "start": 1219, "end": 1228, "id": 210, "annotation": "BASEMAT"}, {"text": "glasses", "start": 1229, "end": 1236, "id": 211, "annotation": null}, {"text": "which", "start": 1237, "end": 1242, "id": 212, "annotation": null}, {"text": "are", "start": 1243, "end": 1246, "id": 213, "annotation": null}, {"text": "related", "start": 1247, "end": 1254, "id": 214, "annotation": null}, {"text": "to", "start": 1255, "end": 1257, "id": 215, "annotation": null}, {"text": "the", "start": 1258, "end": 1261, "id": 216, "annotation": null}, {"text": "concentration", "start": 1262, "end": 1275, "id": 217, "annotation": null}, {"text": "of", "start": 1276, "end": 1278, "id": 218, "annotation": null}, {"text": "POHC", "start": 1279, "end": 1283, "id": 219, "annotation": null}, {"text": ".", "start": 1284, "end": 1285, "id": 220, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "This paper deals with the study of photoluminescence (PL) and the other physical properties (structural and optoelectronic) of fluorine doped tin oxide (SnO2: F) thin films with controlled disorder and intrinsic defects induced during elaboration by changing the spray solution flow rate from 10 to 25mLmin\u22121 by a step of 5mLmin\u221211. X-Ray Diffraction analysis reveals that SnO2:F thin films have a tetragonal structure with (2000) preferred orientation. The decrease in the PL intensity peaks with increase in the spray solution flow rate is linked with the decrease in intrinsic defects. The infrared transmission cut-off wavelength of the films shifts towards the lower wavelength with increasing the spray solution flow rate. This result corresponds to an increase of the electron concentration. In fact, the infrared reflectance of the layers shows an increase with increasing electron concentration. All the samples have low transmittance and high reflectance in the near-infrared region. But in the visible, the average transmittance of these films is higher than 85%. The minimum resistivity (1.76\u00d710\u22124 \u03a9cm) and maximum Hall mobility (\u03bc =47cm2 V\u22121 s\u22121) were obtained at spray solution flow rate equals to 25mLmin\u22121. This good optoelectronic quality of this material allows us to use it as an ohmic contact in photovoltaic devices such as CuIn1\u2212y Gay S2/\u03b2-In2\u2212z AlzS3/ZnO. This solar cell has a photovoltaic effect. Thus, the open circuit voltage (V oc) and short circuit current density (J sc) are equal to 340mV and 1.25mAcm\u22122, respectively.", "meta": {"doi": "10.1016/j.ijleo.2015.02.039"}, "_input_hash": -256813662, "_task_hash": -1667698657, "tokens": [[{"text": "This", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "paper", "start": 5, "end": 10, "id": 1, "annotation": null}, {"text": "deals", "start": 11, "end": 16, "id": 2, "annotation": null}, {"text": "with", "start": 17, "end": 21, "id": 3, "annotation": null}, {"text": "the", "start": 22, "end": 25, "id": 4, "annotation": null}, {"text": "study", "start": 26, "end": 31, "id": 5, "annotation": null}, {"text": "of", "start": 32, "end": 34, "id": 6, "annotation": null}, {"text": "photoluminescence", "start": 35, "end": 52, "id": 7, "annotation": null}, {"text": "(", "start": 53, "end": 54, "id": 8, "annotation": null}, {"text": "PL", "start": 55, "end": 57, "id": 9, "annotation": null}, {"text": ")", "start": 58, "end": 59, "id": 10, "annotation": null}, {"text": "and", "start": 60, "end": 63, "id": 11, "annotation": null}, {"text": "the", "start": 64, "end": 67, "id": 12, "annotation": null}, {"text": "other", "start": 68, "end": 73, "id": 13, "annotation": null}, {"text": "physical", "start": 74, "end": 82, "id": 14, "annotation": null}, {"text": "properties", "start": 83, "end": 93, "id": 15, "annotation": null}, {"text": "(", "start": 94, "end": 95, "id": 16, "annotation": null}, {"text": "structural", "start": 96, "end": 106, "id": 17, "annotation": null}, {"text": "and", "start": 107, "end": 110, "id": 18, "annotation": null}, {"text": "optoelectronic", "start": 111, "end": 125, "id": 19, "annotation": null}, {"text": ")", "start": 126, "end": 127, "id": 20, "annotation": null}, {"text": "of", "start": 128, "end": 130, "id": 21, "annotation": null}, {"text": "fluorine", "start": 131, "end": 139, "id": 22, "annotation": "DOPANT"}, {"text": "doped", "start": 140, "end": 145, "id": 23, "annotation": null}, {"text": "tin", "start": 146, "end": 149, "id": 24, "annotation": "BASEMAT"}, {"text": "oxide", "start": 150, "end": 155, "id": 25, "annotation": "BASEMAT"}, {"text": "(", "start": 156, "end": 157, "id": 26, "annotation": null}, {"text": "SnO2", "start": 158, "end": 162, "id": 27, "annotation": "BASEMAT"}, {"text": ":", "start": 163, "end": 164, "id": 28, "annotation": null}, {"text": "F", "start": 165, "end": 166, "id": 29, "annotation": "DOPANT"}, {"text": ")", "start": 167, "end": 168, "id": 30, "annotation": null}, {"text": "thin", "start": 169, "end": 173, "id": 31, "annotation": null}, {"text": "films", "start": 174, "end": 179, "id": 32, "annotation": null}, {"text": "with", "start": 180, "end": 184, "id": 33, "annotation": null}, {"text": "controlled", "start": 185, "end": 195, "id": 34, "annotation": null}, {"text": "disorder", "start": 196, "end": 204, "id": 35, "annotation": null}, {"text": "and", "start": 205, "end": 208, "id": 36, "annotation": null}, {"text": "intrinsic", "start": 209, "end": 218, "id": 37, "annotation": null}, {"text": "defects", "start": 219, "end": 226, "id": 38, "annotation": null}, {"text": "induced", "start": 227, "end": 234, "id": 39, "annotation": null}, {"text": "during", "start": 235, "end": 241, "id": 40, "annotation": null}, {"text": "elaboration", "start": 242, "end": 253, "id": 41, "annotation": null}, {"text": "by", "start": 254, "end": 256, "id": 42, "annotation": null}, {"text": "changing", "start": 257, "end": 265, "id": 43, "annotation": null}, {"text": "the", "start": 266, "end": 269, "id": 44, "annotation": null}, {"text": "spray", "start": 270, "end": 275, "id": 45, "annotation": null}, {"text": "solution", "start": 276, "end": 284, "id": 46, "annotation": null}, {"text": "flow", "start": 285, "end": 289, "id": 47, "annotation": null}, {"text": "rate", "start": 290, "end": 294, "id": 48, "annotation": null}, {"text": "from", "start": 295, "end": 299, "id": 49, "annotation": null}, {"text": "10", "start": 300, "end": 302, "id": 50, "annotation": null}, {"text": "to", "start": 303, "end": 305, "id": 51, "annotation": null}, {"text": "25mLmin\u22121", "start": 306, "end": 315, "id": 52, "annotation": null}, {"text": "by", "start": 316, "end": 318, "id": 53, "annotation": null}, {"text": "a", "start": 319, "end": 320, "id": 54, "annotation": null}, {"text": "step", "start": 321, "end": 325, "id": 55, "annotation": null}, {"text": "of", "start": 326, "end": 328, "id": 56, "annotation": null}, {"text": "5mLmin\u221211", "start": 329, "end": 338, "id": 57, "annotation": null}, {"text": ".", "start": 339, "end": 340, "id": 58, "annotation": null}], [{"text": "X", "start": 341, "end": 342, "id": 59, "annotation": null}, {"text": "-", "start": 343, "end": 344, "id": 60, "annotation": null}, {"text": "Ray", "start": 345, "end": 348, "id": 61, "annotation": null}, {"text": "Diffraction", "start": 349, "end": 360, "id": 62, "annotation": null}, {"text": "analysis", "start": 361, "end": 369, "id": 63, "annotation": null}, {"text": "reveals", "start": 370, "end": 377, "id": 64, "annotation": null}, {"text": "that", "start": 378, "end": 382, "id": 65, "annotation": null}, {"text": "SnO2", "start": 383, "end": 387, "id": 66, "annotation": "BASEMAT"}, {"text": ":", "start": 388, "end": 389, "id": 67, "annotation": null}, {"text": "F", "start": 390, "end": 391, "id": 68, "annotation": "DOPANT"}, {"text": "thin", "start": 392, "end": 396, "id": 69, "annotation": null}, {"text": "films", "start": 397, "end": 402, "id": 70, "annotation": null}, {"text": "have", "start": 403, "end": 407, "id": 71, "annotation": null}, {"text": "a", "start": 408, "end": 409, "id": 72, "annotation": null}, {"text": "tetragonal", "start": 410, "end": 420, "id": 73, "annotation": null}, {"text": "structure", "start": 421, "end": 430, "id": 74, "annotation": null}, {"text": "with", "start": 431, "end": 435, "id": 75, "annotation": null}, {"text": "(", "start": 436, "end": 437, "id": 76, "annotation": null}, {"text": "2000", "start": 438, "end": 442, "id": 77, "annotation": null}, {"text": ")", "start": 443, "end": 444, "id": 78, "annotation": null}, {"text": "preferred", "start": 445, "end": 454, "id": 79, "annotation": null}, {"text": "orientation", "start": 455, "end": 466, "id": 80, "annotation": null}, {"text": ".", "start": 467, "end": 468, "id": 81, "annotation": null}], [{"text": "The", "start": 469, "end": 472, "id": 82, "annotation": null}, {"text": "decrease", "start": 473, "end": 481, "id": 83, "annotation": null}, {"text": "in", "start": 482, "end": 484, "id": 84, "annotation": null}, {"text": "the", "start": 485, "end": 488, "id": 85, "annotation": null}, {"text": "PL", "start": 489, "end": 491, "id": 86, "annotation": null}, {"text": "intensity", "start": 492, "end": 501, "id": 87, "annotation": null}, {"text": "peaks", "start": 502, "end": 507, "id": 88, "annotation": null}, {"text": "with", "start": 508, "end": 512, "id": 89, "annotation": null}, {"text": "increase", "start": 513, "end": 521, "id": 90, "annotation": null}, {"text": "in", "start": 522, "end": 524, "id": 91, "annotation": null}, {"text": "the", "start": 525, "end": 528, "id": 92, "annotation": null}, {"text": "spray", "start": 529, "end": 534, "id": 93, "annotation": null}, {"text": "solution", "start": 535, "end": 543, "id": 94, "annotation": null}, {"text": "flow", "start": 544, "end": 548, "id": 95, "annotation": null}, {"text": "rate", "start": 549, "end": 553, "id": 96, "annotation": null}, {"text": "is", "start": 554, "end": 556, "id": 97, "annotation": null}, {"text": "linked", "start": 557, "end": 563, "id": 98, "annotation": null}, {"text": "with", "start": 564, "end": 568, "id": 99, "annotation": null}, {"text": "the", "start": 569, "end": 572, "id": 100, "annotation": null}, {"text": "decrease", "start": 573, "end": 581, "id": 101, "annotation": null}, {"text": "in", "start": 582, "end": 584, "id": 102, "annotation": null}, {"text": "intrinsic", "start": 585, "end": 594, "id": 103, "annotation": null}, {"text": "defects", "start": 595, "end": 602, "id": 104, "annotation": null}, {"text": ".", "start": 603, "end": 604, "id": 105, "annotation": null}], [{"text": "The", "start": 605, "end": 608, "id": 106, "annotation": null}, {"text": "infrared", "start": 609, "end": 617, "id": 107, "annotation": null}, {"text": "transmission", "start": 618, "end": 630, "id": 108, "annotation": null}, {"text": "cut", "start": 631, "end": 634, "id": 109, "annotation": null}, {"text": "-", "start": 635, "end": 636, "id": 110, "annotation": null}, {"text": "off", "start": 637, "end": 640, "id": 111, "annotation": null}, {"text": "wavelength", "start": 641, "end": 651, "id": 112, "annotation": null}, {"text": "of", "start": 652, "end": 654, "id": 113, "annotation": null}, {"text": "the", "start": 655, "end": 658, "id": 114, "annotation": null}, {"text": "films", "start": 659, "end": 664, "id": 115, "annotation": null}, {"text": "shifts", "start": 665, "end": 671, "id": 116, "annotation": null}, {"text": "towards", "start": 672, "end": 679, "id": 117, "annotation": null}, {"text": "the", "start": 680, "end": 683, "id": 118, "annotation": null}, {"text": "lower", "start": 684, "end": 689, "id": 119, "annotation": null}, {"text": "wavelength", "start": 690, "end": 700, "id": 120, "annotation": null}, {"text": "with", "start": 701, "end": 705, "id": 121, "annotation": null}, {"text": "increasing", "start": 706, "end": 716, "id": 122, "annotation": null}, {"text": "the", "start": 717, "end": 720, "id": 123, "annotation": null}, {"text": "spray", "start": 721, "end": 726, "id": 124, "annotation": null}, {"text": "solution", "start": 727, "end": 735, "id": 125, "annotation": null}, {"text": "flow", "start": 736, "end": 740, "id": 126, "annotation": null}, {"text": "rate", "start": 741, "end": 745, "id": 127, "annotation": null}, {"text": ".", "start": 746, "end": 747, "id": 128, "annotation": null}], [{"text": "This", "start": 748, "end": 752, "id": 129, "annotation": null}, {"text": "result", "start": 753, "end": 759, "id": 130, "annotation": null}, {"text": "corresponds", "start": 760, "end": 771, "id": 131, "annotation": null}, {"text": "to", "start": 772, "end": 774, "id": 132, "annotation": null}, {"text": "an", "start": 775, "end": 777, "id": 133, "annotation": null}, {"text": "increase", "start": 778, "end": 786, "id": 134, "annotation": null}, {"text": "of", "start": 787, "end": 789, "id": 135, "annotation": null}, {"text": "the", "start": 790, "end": 793, "id": 136, "annotation": null}, {"text": "electron", "start": 794, "end": 802, "id": 137, "annotation": null}, {"text": "concentration", "start": 803, "end": 816, "id": 138, "annotation": null}, {"text": ".", "start": 817, "end": 818, "id": 139, "annotation": null}], [{"text": "In", "start": 819, "end": 821, "id": 140, "annotation": null}, {"text": "fact", "start": 822, "end": 826, "id": 141, "annotation": null}, {"text": ",", "start": 827, "end": 828, "id": 142, "annotation": null}, {"text": "the", "start": 829, "end": 832, "id": 143, "annotation": null}, {"text": "infrared", "start": 833, "end": 841, "id": 144, "annotation": null}, {"text": "reflectance", "start": 842, "end": 853, "id": 145, "annotation": null}, {"text": "of", "start": 854, "end": 856, "id": 146, "annotation": null}, {"text": "the", "start": 857, "end": 860, "id": 147, "annotation": null}, {"text": "layers", "start": 861, "end": 867, "id": 148, "annotation": null}, {"text": "shows", "start": 868, "end": 873, "id": 149, "annotation": null}, {"text": "an", "start": 874, "end": 876, "id": 150, "annotation": null}, {"text": "increase", "start": 877, "end": 885, "id": 151, "annotation": null}, {"text": "with", "start": 886, "end": 890, "id": 152, "annotation": null}, {"text": "increasing", "start": 891, "end": 901, "id": 153, "annotation": null}, {"text": "electron", "start": 902, "end": 910, "id": 154, "annotation": null}, {"text": "concentration", "start": 911, "end": 924, "id": 155, "annotation": null}, {"text": ".", "start": 925, "end": 926, "id": 156, "annotation": null}], [{"text": "All", "start": 927, "end": 930, "id": 157, "annotation": null}, {"text": "the", "start": 931, "end": 934, "id": 158, "annotation": null}, {"text": "samples", "start": 935, "end": 942, "id": 159, "annotation": null}, {"text": "have", "start": 943, "end": 947, "id": 160, "annotation": null}, {"text": "low", "start": 948, "end": 951, "id": 161, "annotation": null}, {"text": "transmittance", "start": 952, "end": 965, "id": 162, "annotation": null}, {"text": "and", "start": 966, "end": 969, "id": 163, "annotation": null}, {"text": "high", "start": 970, "end": 974, "id": 164, "annotation": null}, {"text": "reflectance", "start": 975, "end": 986, "id": 165, "annotation": null}, {"text": "in", "start": 987, "end": 989, "id": 166, "annotation": null}, {"text": "the", "start": 990, "end": 993, "id": 167, "annotation": null}, {"text": "near", "start": 994, "end": 998, "id": 168, "annotation": null}, {"text": "-", "start": 999, "end": 1000, "id": 169, "annotation": null}, {"text": "infrared", "start": 1001, "end": 1009, "id": 170, "annotation": null}, {"text": "region", "start": 1010, "end": 1016, "id": 171, "annotation": null}, {"text": ".", "start": 1017, "end": 1018, "id": 172, "annotation": null}], [{"text": "But", "start": 1019, "end": 1022, "id": 173, "annotation": null}, {"text": "in", "start": 1023, "end": 1025, "id": 174, "annotation": null}, {"text": "the", "start": 1026, "end": 1029, "id": 175, "annotation": null}, {"text": "visible", "start": 1030, "end": 1037, "id": 176, "annotation": null}, {"text": ",", "start": 1038, "end": 1039, "id": 177, "annotation": null}, {"text": "the", "start": 1040, "end": 1043, "id": 178, "annotation": null}, {"text": "average", "start": 1044, "end": 1051, "id": 179, "annotation": null}, {"text": "transmittance", "start": 1052, "end": 1065, "id": 180, "annotation": null}, {"text": "of", "start": 1066, "end": 1068, "id": 181, "annotation": null}, {"text": "these", "start": 1069, "end": 1074, "id": 182, "annotation": null}, {"text": "films", "start": 1075, "end": 1080, "id": 183, "annotation": null}, {"text": "is", "start": 1081, "end": 1083, "id": 184, "annotation": null}, {"text": "higher", "start": 1084, "end": 1090, "id": 185, "annotation": null}, {"text": "than", "start": 1091, "end": 1095, "id": 186, "annotation": null}, {"text": "85", "start": 1096, "end": 1098, "id": 187, "annotation": null}, {"text": "%", "start": 1099, "end": 1100, "id": 188, "annotation": null}, {"text": ".", "start": 1101, "end": 1102, "id": 189, "annotation": null}], [{"text": "The", "start": 1103, "end": 1106, "id": 190, "annotation": null}, {"text": "minimum", "start": 1107, "end": 1114, "id": 191, "annotation": null}, {"text": "resistivity", "start": 1115, "end": 1126, "id": 192, "annotation": null}, {"text": "(", "start": 1127, "end": 1128, "id": 193, "annotation": null}, {"text": "1.76\u00d710\u22124", "start": 1129, "end": 1138, "id": 194, "annotation": null}, {"text": "\u03a9cm", "start": 1139, "end": 1142, "id": 195, "annotation": null}, {"text": ")", "start": 1143, "end": 1144, "id": 196, "annotation": null}, {"text": "and", "start": 1145, "end": 1148, "id": 197, "annotation": null}, {"text": "maximum", "start": 1149, "end": 1156, "id": 198, "annotation": null}, {"text": "Hall", "start": 1157, "end": 1161, "id": 199, "annotation": null}, {"text": "mobility", "start": 1162, "end": 1170, "id": 200, "annotation": null}, {"text": "(", "start": 1171, "end": 1172, "id": 201, "annotation": null}, {"text": "\u03bc", "start": 1173, "end": 1174, "id": 202, "annotation": null}, {"text": "=", "start": 1175, "end": 1176, "id": 203, "annotation": null}, {"text": "47cm2", "start": 1177, "end": 1182, "id": 204, "annotation": null}, {"text": "V\u22121", "start": 1183, "end": 1186, "id": 205, "annotation": null}, {"text": "s\u22121", "start": 1187, "end": 1190, "id": 206, "annotation": null}, {"text": ")", "start": 1191, "end": 1192, "id": 207, "annotation": null}, {"text": "were", "start": 1193, "end": 1197, "id": 208, "annotation": null}, {"text": "obtained", "start": 1198, "end": 1206, "id": 209, "annotation": null}, {"text": "at", "start": 1207, "end": 1209, "id": 210, "annotation": null}, {"text": "spray", "start": 1210, "end": 1215, "id": 211, "annotation": null}, {"text": "solution", "start": 1216, "end": 1224, "id": 212, "annotation": null}, {"text": "flow", "start": 1225, "end": 1229, "id": 213, "annotation": null}, {"text": "rate", "start": 1230, "end": 1234, "id": 214, "annotation": null}, {"text": "equals", "start": 1235, "end": 1241, "id": 215, "annotation": null}, {"text": "to", "start": 1242, "end": 1244, "id": 216, "annotation": null}, {"text": "25mLmin\u22121", "start": 1245, "end": 1254, "id": 217, "annotation": null}, {"text": ".", "start": 1255, "end": 1256, "id": 218, "annotation": null}], [{"text": "This", "start": 1257, "end": 1261, "id": 219, "annotation": null}, {"text": "good", "start": 1262, "end": 1266, "id": 220, "annotation": null}, {"text": "optoelectronic", "start": 1267, "end": 1281, "id": 221, "annotation": null}, {"text": "quality", "start": 1282, "end": 1289, "id": 222, "annotation": null}, {"text": "of", "start": 1290, "end": 1292, "id": 223, "annotation": null}, {"text": "this", "start": 1293, "end": 1297, "id": 224, "annotation": null}, {"text": "material", "start": 1298, "end": 1306, "id": 225, "annotation": null}, {"text": "allows", "start": 1307, "end": 1313, "id": 226, "annotation": null}, {"text": "us", "start": 1314, "end": 1316, "id": 227, "annotation": null}, {"text": "to", "start": 1317, "end": 1319, "id": 228, "annotation": null}, {"text": "use", "start": 1320, "end": 1323, "id": 229, "annotation": null}, {"text": "it", "start": 1324, "end": 1326, "id": 230, "annotation": null}, {"text": "as", "start": 1327, "end": 1329, "id": 231, "annotation": null}, {"text": "an", "start": 1330, "end": 1332, "id": 232, "annotation": null}, {"text": "ohmic", "start": 1333, "end": 1338, "id": 233, "annotation": null}, {"text": "contact", "start": 1339, "end": 1346, "id": 234, "annotation": null}, {"text": "in", "start": 1347, "end": 1349, "id": 235, "annotation": null}, {"text": "photovoltaic", "start": 1350, "end": 1362, "id": 236, "annotation": null}, {"text": "devices", "start": 1363, "end": 1370, "id": 237, "annotation": null}, {"text": "such", "start": 1371, "end": 1375, "id": 238, "annotation": null}, {"text": "as", "start": 1376, "end": 1378, "id": 239, "annotation": null}, {"text": "CuIn1\u2212y", "start": 1379, "end": 1386, "id": 240, "annotation": null}, {"text": "Gay", "start": 1387, "end": 1390, "id": 241, "annotation": null}, {"text": "S2", "start": 1391, "end": 1393, "id": 242, "annotation": null}, {"text": "/", "start": 1394, "end": 1395, "id": 243, "annotation": null}, {"text": "\u03b2", "start": 1396, "end": 1397, "id": 244, "annotation": null}, {"text": "-", "start": 1398, "end": 1399, "id": 245, "annotation": null}, {"text": "In2\u2212z", "start": 1400, "end": 1405, "id": 246, "annotation": null}, {"text": "AlzS3", "start": 1406, "end": 1411, "id": 247, "annotation": null}, {"text": "/", "start": 1412, "end": 1413, "id": 248, "annotation": null}, {"text": "ZnO.", "start": 1414, "end": 1418, "id": 249, "annotation": null}], [{"text": "This", "start": 1419, "end": 1423, "id": 250, "annotation": null}, {"text": "solar", "start": 1424, "end": 1429, "id": 251, "annotation": null}, {"text": "cell", "start": 1430, "end": 1434, "id": 252, "annotation": null}, {"text": "has", "start": 1435, "end": 1438, "id": 253, "annotation": null}, {"text": "a", "start": 1439, "end": 1440, "id": 254, "annotation": null}, {"text": "photovoltaic", "start": 1441, "end": 1453, "id": 255, "annotation": null}, {"text": "effect", "start": 1454, "end": 1460, "id": 256, "annotation": null}, {"text": ".", "start": 1461, "end": 1462, "id": 257, "annotation": null}], [{"text": "Thus", "start": 1463, "end": 1467, "id": 258, "annotation": null}, {"text": ",", "start": 1468, "end": 1469, "id": 259, "annotation": null}, {"text": "the", "start": 1470, "end": 1473, "id": 260, "annotation": null}, {"text": "open", "start": 1474, "end": 1478, "id": 261, "annotation": null}, {"text": "circuit", "start": 1479, "end": 1486, "id": 262, "annotation": null}, {"text": "voltage", "start": 1487, "end": 1494, "id": 263, "annotation": null}, {"text": "(", "start": 1495, "end": 1496, "id": 264, "annotation": null}, {"text": "V", "start": 1497, "end": 1498, "id": 265, "annotation": null}, {"text": "oc", "start": 1499, "end": 1501, "id": 266, "annotation": null}, {"text": ")", "start": 1502, "end": 1503, "id": 267, "annotation": null}, {"text": "and", "start": 1504, "end": 1507, "id": 268, "annotation": null}, {"text": "short", "start": 1508, "end": 1513, "id": 269, "annotation": null}, {"text": "circuit", "start": 1514, "end": 1521, "id": 270, "annotation": null}, {"text": "current", "start": 1522, "end": 1529, "id": 271, "annotation": null}, {"text": "density", "start": 1530, "end": 1537, "id": 272, "annotation": null}, {"text": "(", "start": 1538, "end": 1539, "id": 273, "annotation": null}, {"text": "J", "start": 1540, "end": 1541, "id": 274, "annotation": null}, {"text": "sc", "start": 1542, "end": 1544, "id": 275, "annotation": null}, {"text": ")", "start": 1545, "end": 1546, "id": 276, "annotation": null}, {"text": "are", "start": 1547, "end": 1550, "id": 277, "annotation": null}, {"text": "equal", "start": 1551, "end": 1556, "id": 278, "annotation": null}, {"text": "to", "start": 1557, "end": 1559, "id": 279, "annotation": null}, {"text": "340mV", "start": 1560, "end": 1565, "id": 280, "annotation": null}, {"text": "and", "start": 1566, "end": 1569, "id": 281, "annotation": null}, {"text": "1.25mAcm\u22122", "start": 1570, "end": 1580, "id": 282, "annotation": null}, {"text": ",", "start": 1581, "end": 1582, "id": 283, "annotation": null}, {"text": "respectively", "start": 1583, "end": 1595, "id": 284, "annotation": null}, {"text": ".", "start": 1596, "end": 1597, "id": 285, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Unique anomalous heavy fermion behavior in the charge-ordering low-carrier-density system, Yb4As3, has been studied together with a similar compound Sm4Bi3 as the reference system. A critical analysis shows that, even in the charge-ordering state, the ratio of the trivalent state is less than one per mole, and a small amount of holes remains at the top of the valence band. Moreover, the trivalent state changes to a pseudogap Kondo state, similar to those in Y-doped YbB12 and SmB6. A simplified model was proposed, and it was shown that various anomalous properties, such as peak structures in the resistivity and Hall constant as functions of temperature, their uniform changes with pressure, and a large residual resistivity, are explained well by this model to be consistent with the properties in Sm4Bi3. All rights reserved.", "meta": {"doi": "10.1143/JPSJ.63.2481"}, "_input_hash": 164372099, "_task_hash": 1733787464, "tokens": [[{"text": "Unique", "start": 0, "end": 6, "id": 0, "annotation": null}, {"text": "anomalous", "start": 7, "end": 16, "id": 1, "annotation": null}, {"text": "heavy", "start": 17, "end": 22, "id": 2, "annotation": null}, {"text": "fermion", "start": 23, "end": 30, "id": 3, "annotation": null}, {"text": "behavior", "start": 31, "end": 39, "id": 4, "annotation": null}, {"text": "in", "start": 40, "end": 42, "id": 5, "annotation": null}, {"text": "the", "start": 43, "end": 46, "id": 6, "annotation": null}, {"text": "charge", "start": 47, "end": 53, "id": 7, "annotation": null}, {"text": "-", "start": 54, "end": 55, "id": 8, "annotation": null}, {"text": "ordering", "start": 56, "end": 64, "id": 9, "annotation": null}, {"text": "low", "start": 65, "end": 68, "id": 10, "annotation": null}, {"text": "-", "start": 69, "end": 70, "id": 11, "annotation": null}, {"text": "carrier", "start": 71, "end": 78, "id": 12, "annotation": null}, {"text": "-", "start": 79, "end": 80, "id": 13, "annotation": null}, {"text": "density", "start": 81, "end": 88, "id": 14, "annotation": null}, {"text": "system", "start": 89, "end": 95, "id": 15, "annotation": null}, {"text": ",", "start": 96, "end": 97, "id": 16, "annotation": null}, {"text": "Yb4As3", "start": 98, "end": 104, "id": 17, "annotation": null}, {"text": ",", "start": 105, "end": 106, "id": 18, "annotation": null}, {"text": "has", "start": 107, "end": 110, "id": 19, "annotation": null}, {"text": "been", "start": 111, "end": 115, "id": 20, "annotation": null}, {"text": "studied", "start": 116, "end": 123, "id": 21, "annotation": null}, {"text": "together", "start": 124, "end": 132, "id": 22, "annotation": null}, {"text": "with", "start": 133, "end": 137, "id": 23, "annotation": null}, {"text": "a", "start": 138, "end": 139, "id": 24, "annotation": null}, {"text": "similar", "start": 140, "end": 147, "id": 25, "annotation": null}, {"text": "compound", "start": 148, "end": 156, "id": 26, "annotation": null}, {"text": "Sm4Bi3", "start": 157, "end": 163, "id": 27, "annotation": null}, {"text": "as", "start": 164, "end": 166, "id": 28, "annotation": null}, {"text": "the", "start": 167, "end": 170, "id": 29, "annotation": null}, {"text": "reference", "start": 171, "end": 180, "id": 30, "annotation": null}, {"text": "system", "start": 181, "end": 187, "id": 31, "annotation": null}, {"text": ".", "start": 188, "end": 189, "id": 32, "annotation": null}], [{"text": "A", "start": 190, "end": 191, "id": 33, "annotation": null}, {"text": "critical", "start": 192, "end": 200, "id": 34, "annotation": null}, {"text": "analysis", "start": 201, "end": 209, "id": 35, "annotation": null}, {"text": "shows", "start": 210, "end": 215, "id": 36, "annotation": null}, {"text": "that", "start": 216, "end": 220, "id": 37, "annotation": null}, {"text": ",", "start": 221, "end": 222, "id": 38, "annotation": null}, {"text": "even", "start": 223, "end": 227, "id": 39, "annotation": null}, {"text": "in", "start": 228, "end": 230, "id": 40, "annotation": null}, {"text": "the", "start": 231, "end": 234, "id": 41, "annotation": null}, {"text": "charge", "start": 235, "end": 241, "id": 42, "annotation": null}, {"text": "-", "start": 242, "end": 243, "id": 43, "annotation": null}, {"text": "ordering", "start": 244, "end": 252, "id": 44, "annotation": null}, {"text": "state", "start": 253, "end": 258, "id": 45, "annotation": null}, {"text": ",", "start": 259, "end": 260, "id": 46, "annotation": null}, {"text": "the", "start": 261, "end": 264, "id": 47, "annotation": null}, {"text": "ratio", "start": 265, "end": 270, "id": 48, "annotation": null}, {"text": "of", "start": 271, "end": 273, "id": 49, "annotation": null}, {"text": "the", "start": 274, "end": 277, "id": 50, "annotation": null}, {"text": "trivalent", "start": 278, "end": 287, "id": 51, "annotation": null}, {"text": "state", "start": 288, "end": 293, "id": 52, "annotation": null}, {"text": "is", "start": 294, "end": 296, "id": 53, "annotation": null}, {"text": "less", "start": 297, "end": 301, "id": 54, "annotation": null}, {"text": "than", "start": 302, "end": 306, "id": 55, "annotation": null}, {"text": "one", "start": 307, "end": 310, "id": 56, "annotation": null}, {"text": "per", "start": 311, "end": 314, "id": 57, "annotation": null}, {"text": "mole", "start": 315, "end": 319, "id": 58, "annotation": null}, {"text": ",", "start": 320, "end": 321, "id": 59, "annotation": null}, {"text": "and", "start": 322, "end": 325, "id": 60, "annotation": null}, {"text": "a", "start": 326, "end": 327, "id": 61, "annotation": null}, {"text": "small", "start": 328, "end": 333, "id": 62, "annotation": null}, {"text": "amount", "start": 334, "end": 340, "id": 63, "annotation": null}, {"text": "of", "start": 341, "end": 343, "id": 64, "annotation": null}, {"text": "holes", "start": 344, "end": 349, "id": 65, "annotation": null}, {"text": "remains", "start": 350, "end": 357, "id": 66, "annotation": null}, {"text": "at", "start": 358, "end": 360, "id": 67, "annotation": null}, {"text": "the", "start": 361, "end": 364, "id": 68, "annotation": null}, {"text": "top", "start": 365, "end": 368, "id": 69, "annotation": null}, {"text": "of", "start": 369, "end": 371, "id": 70, "annotation": null}, {"text": "the", "start": 372, "end": 375, "id": 71, "annotation": null}, {"text": "valence", "start": 376, "end": 383, "id": 72, "annotation": null}, {"text": "band", "start": 384, "end": 388, "id": 73, "annotation": null}, {"text": ".", "start": 389, "end": 390, "id": 74, "annotation": null}], [{"text": "Moreover", "start": 391, "end": 399, "id": 75, "annotation": null}, {"text": ",", "start": 400, "end": 401, "id": 76, "annotation": null}, {"text": "the", "start": 402, "end": 405, "id": 77, "annotation": null}, {"text": "trivalent", "start": 406, "end": 415, "id": 78, "annotation": null}, {"text": "state", "start": 416, "end": 421, "id": 79, "annotation": null}, {"text": "changes", "start": 422, "end": 429, "id": 80, "annotation": null}, {"text": "to", "start": 430, "end": 432, "id": 81, "annotation": null}, {"text": "a", "start": 433, "end": 434, "id": 82, "annotation": null}, {"text": "pseudogap", "start": 435, "end": 444, "id": 83, "annotation": null}, {"text": "Kondo", "start": 445, "end": 450, "id": 84, "annotation": null}, {"text": "state", "start": 451, "end": 456, "id": 85, "annotation": null}, {"text": ",", "start": 457, "end": 458, "id": 86, "annotation": null}, {"text": "similar", "start": 459, "end": 466, "id": 87, "annotation": null}, {"text": "to", "start": 467, "end": 469, "id": 88, "annotation": null}, {"text": "those", "start": 470, "end": 475, "id": 89, "annotation": null}, {"text": "in", "start": 476, "end": 478, "id": 90, "annotation": null}, {"text": "Y", "start": 479, "end": 480, "id": 91, "annotation": "DOPANT"}, {"text": "-", "start": 481, "end": 482, "id": 92, "annotation": null}, {"text": "doped", "start": 483, "end": 488, "id": 93, "annotation": null}, {"text": "YbB12", "start": 489, "end": 494, "id": 94, "annotation": "BASEMAT"}, {"text": "and", "start": 495, "end": 498, "id": 95, "annotation": null}, {"text": "SmB6", "start": 499, "end": 503, "id": 96, "annotation": "BASEMAT"}, {"text": ".", "start": 504, "end": 505, "id": 97, "annotation": null}], [{"text": "A", "start": 506, "end": 507, "id": 98, "annotation": null}, {"text": "simplified", "start": 508, "end": 518, "id": 99, "annotation": null}, {"text": "model", "start": 519, "end": 524, "id": 100, "annotation": null}, {"text": "was", "start": 525, "end": 528, "id": 101, "annotation": null}, {"text": "proposed", "start": 529, "end": 537, "id": 102, "annotation": null}, {"text": ",", "start": 538, "end": 539, "id": 103, "annotation": null}, {"text": "and", "start": 540, "end": 543, "id": 104, "annotation": null}, {"text": "it", "start": 544, "end": 546, "id": 105, "annotation": null}, {"text": "was", "start": 547, "end": 550, "id": 106, "annotation": null}, {"text": "shown", "start": 551, "end": 556, "id": 107, "annotation": null}, {"text": "that", "start": 557, "end": 561, "id": 108, "annotation": null}, {"text": "various", "start": 562, "end": 569, "id": 109, "annotation": null}, {"text": "anomalous", "start": 570, "end": 579, "id": 110, "annotation": null}, {"text": "properties", "start": 580, "end": 590, "id": 111, "annotation": null}, {"text": ",", "start": 591, "end": 592, "id": 112, "annotation": null}, {"text": "such", "start": 593, "end": 597, "id": 113, "annotation": null}, {"text": "as", "start": 598, "end": 600, "id": 114, "annotation": null}, {"text": "peak", "start": 601, "end": 605, "id": 115, "annotation": null}, {"text": "structures", "start": 606, "end": 616, "id": 116, "annotation": null}, {"text": "in", "start": 617, "end": 619, "id": 117, "annotation": null}, {"text": "the", "start": 620, "end": 623, "id": 118, "annotation": null}, {"text": "resistivity", "start": 624, "end": 635, "id": 119, "annotation": null}, {"text": "and", "start": 636, "end": 639, "id": 120, "annotation": null}, {"text": "Hall", "start": 640, "end": 644, "id": 121, "annotation": null}, {"text": "constant", "start": 645, "end": 653, "id": 122, "annotation": null}, {"text": "as", "start": 654, "end": 656, "id": 123, "annotation": null}, {"text": "functions", "start": 657, "end": 666, "id": 124, "annotation": null}, {"text": "of", "start": 667, "end": 669, "id": 125, "annotation": null}, {"text": "temperature", "start": 670, "end": 681, "id": 126, "annotation": null}, {"text": ",", "start": 682, "end": 683, "id": 127, "annotation": null}, {"text": "their", "start": 684, "end": 689, "id": 128, "annotation": null}, {"text": "uniform", "start": 690, "end": 697, "id": 129, "annotation": null}, {"text": "changes", "start": 698, "end": 705, "id": 130, "annotation": null}, {"text": "with", "start": 706, "end": 710, "id": 131, "annotation": null}, {"text": "pressure", "start": 711, "end": 719, "id": 132, "annotation": null}, {"text": ",", "start": 720, "end": 721, "id": 133, "annotation": null}, {"text": "and", "start": 722, "end": 725, "id": 134, "annotation": null}, {"text": "a", "start": 726, "end": 727, "id": 135, "annotation": null}, {"text": "large", "start": 728, "end": 733, "id": 136, "annotation": null}, {"text": "residual", "start": 734, "end": 742, "id": 137, "annotation": null}, {"text": "resistivity", "start": 743, "end": 754, "id": 138, "annotation": null}, {"text": ",", "start": 755, "end": 756, "id": 139, "annotation": null}, {"text": "are", "start": 757, "end": 760, "id": 140, "annotation": null}, {"text": "explained", "start": 761, "end": 770, "id": 141, "annotation": null}, {"text": "well", "start": 771, "end": 775, "id": 142, "annotation": null}, {"text": "by", "start": 776, "end": 778, "id": 143, "annotation": null}, {"text": "this", "start": 779, "end": 783, "id": 144, "annotation": null}, {"text": "model", "start": 784, "end": 789, "id": 145, "annotation": null}, {"text": "to", "start": 790, "end": 792, "id": 146, "annotation": null}, {"text": "be", "start": 793, "end": 795, "id": 147, "annotation": null}, {"text": "consistent", "start": 796, "end": 806, "id": 148, "annotation": null}, {"text": "with", "start": 807, "end": 811, "id": 149, "annotation": null}, {"text": "the", "start": 812, "end": 815, "id": 150, "annotation": null}, {"text": "properties", "start": 816, "end": 826, "id": 151, "annotation": null}, {"text": "in", "start": 827, "end": 829, "id": 152, "annotation": null}, {"text": "Sm4Bi3", "start": 830, "end": 836, "id": 153, "annotation": null}, {"text": ".", "start": 837, "end": 838, "id": 154, "annotation": null}], [{"text": "All", "start": 880, "end": 883, "id": 164, "annotation": null}, {"text": "rights", "start": 884, "end": 890, "id": 165, "annotation": null}, {"text": "reserved", "start": 891, "end": 899, "id": 166, "annotation": null}, {"text": ".", "start": 900, "end": 901, "id": 167, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "A micro hot wire anemometer sensor has been constructed. The process consists in depositing a thin doped polycrystalline silicon layer on silicon substrate, using a micro-machined technique. This paper discusses the reliability and the fabrication flaws of this sensor. The different steps of fabrication are oxidation, deposit, photolithography, chemical attack, ionic implantation and annealing. An additional step, allowing the release of the suspended structures, is added. With each technological process step, a certain number of problems can be met. Each of these problems can potentially give rise to a defect of the final structure. Various tests are carried out on the final structure to make a first approach of the micro flow sensor flaws. \u00a9 2013 Springer-Verlag Berlin Heidelberg.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "micro", "start": 2, "end": 7, "annotation": null}, {"text": "hot", "start": 8, "end": 11, "annotation": null}, {"text": "wire", "start": 12, "end": 16, "annotation": null}, {"text": "anemometer", "start": 17, "end": 27, "annotation": null}, {"text": "sensor", "start": 28, "end": 34, "annotation": null}, {"text": "has", "start": 35, "end": 38, "annotation": null}, {"text": "been", "start": 39, "end": 43, "annotation": null}, {"text": "constructed", "start": 44, "end": 55, "annotation": null}, {"text": ".", "start": 55, "end": 56, "annotation": null}], [{"text": "The", "start": 57, "end": 60, "annotation": null}, {"text": "process", "start": 61, "end": 68, "annotation": null}, {"text": "consists", "start": 69, "end": 77, "annotation": null}, {"text": "in", "start": 78, "end": 80, "annotation": null}, {"text": "depositing", "start": 81, "end": 91, "annotation": null}, {"text": "a", "start": 92, "end": 93, "annotation": null}, {"text": "thin", "start": 94, "end": 98, "annotation": null}, {"text": "doped", "start": 99, "end": 104, "annotation": null}, {"text": "polycrystalline", "start": 105, "end": 120, "annotation": null}, {"text": "silicon", "start": 121, "end": 128, "annotation": "BASEMAT"}, {"text": "layer", "start": 129, "end": 134, "annotation": "BASEMAT"}, {"text": "on", "start": 135, "end": 137, "annotation": null}, {"text": "silicon", "start": 138, "end": 145, "annotation": null}, {"text": "substrate", "start": 146, "end": 155, "annotation": null}, {"text": ",", "start": 155, "end": 156, "annotation": null}, {"text": "using", "start": 157, "end": 162, "annotation": null}, {"text": "a", "start": 163, "end": 164, "annotation": null}, {"text": "micro-machined", "start": 165, "end": 179, "annotation": null}, {"text": "technique", "start": 180, "end": 189, "annotation": null}, {"text": ".", "start": 189, "end": 190, "annotation": null}], [{"text": "This", "start": 191, "end": 195, "annotation": null}, {"text": "paper", "start": 196, "end": 201, "annotation": null}, {"text": "discusses", "start": 202, "end": 211, "annotation": null}, {"text": "the", "start": 212, "end": 215, "annotation": null}, {"text": "reliability", "start": 216, "end": 227, "annotation": null}, {"text": "and", "start": 228, "end": 231, "annotation": null}, {"text": "the", "start": 232, "end": 235, "annotation": null}, {"text": "fabrication", "start": 236, "end": 247, "annotation": null}, {"text": "flaws", "start": 248, "end": 253, "annotation": null}, {"text": "of", "start": 254, "end": 256, "annotation": null}, {"text": "this", "start": 257, "end": 261, "annotation": null}, {"text": "sensor", "start": 262, "end": 268, "annotation": null}, {"text": ".", "start": 268, "end": 269, "annotation": null}], [{"text": "The", "start": 270, "end": 273, "annotation": null}, {"text": "different", "start": 274, "end": 283, "annotation": null}, {"text": "steps", "start": 284, "end": 289, "annotation": null}, {"text": "of", "start": 290, "end": 292, "annotation": null}, {"text": "fabrication", "start": 293, "end": 304, "annotation": null}, {"text": "are", "start": 305, "end": 308, "annotation": null}, {"text": "oxidation", "start": 309, "end": 318, "annotation": null}, {"text": ",", "start": 318, "end": 319, "annotation": null}, {"text": "deposit", "start": 320, "end": 327, "annotation": null}, {"text": ",", "start": 327, "end": 328, "annotation": null}, {"text": "photolithography", "start": 329, "end": 345, "annotation": null}, {"text": ",", "start": 345, "end": 346, "annotation": null}, {"text": "chemical", "start": 347, "end": 355, "annotation": null}, {"text": "attack", "start": 356, "end": 362, "annotation": null}, {"text": ",", "start": 362, "end": 363, "annotation": null}, {"text": "ionic", "start": 364, "end": 369, "annotation": null}, {"text": "implantation", "start": 370, "end": 382, "annotation": null}, {"text": "and", "start": 383, "end": 386, "annotation": null}, {"text": "annealing", "start": 387, "end": 396, "annotation": null}, {"text": ".", "start": 396, "end": 397, "annotation": null}], [{"text": "An", "start": 398, "end": 400, "annotation": null}, {"text": "additional", "start": 401, "end": 411, "annotation": null}, {"text": "step", "start": 412, "end": 416, "annotation": null}, {"text": ",", "start": 416, "end": 417, "annotation": null}, {"text": "allowing", "start": 418, "end": 426, "annotation": null}, {"text": "the", "start": 427, "end": 430, "annotation": null}, {"text": "release", "start": 431, "end": 438, "annotation": null}, {"text": "of", "start": 439, "end": 441, "annotation": null}, {"text": "the", "start": 442, "end": 445, "annotation": null}, {"text": "suspended", "start": 446, "end": 455, "annotation": null}, {"text": "structures", "start": 456, "end": 466, "annotation": null}, {"text": ",", "start": 466, "end": 467, "annotation": null}, {"text": "is", "start": 468, "end": 470, "annotation": null}, {"text": "added", "start": 471, "end": 476, "annotation": null}, {"text": ".", "start": 476, "end": 477, "annotation": null}], [{"text": "With", "start": 478, "end": 482, "annotation": null}, {"text": "each", "start": 483, "end": 487, "annotation": null}, {"text": "technological", "start": 488, "end": 501, "annotation": null}, {"text": "process", "start": 502, "end": 509, "annotation": null}, {"text": "step", "start": 510, "end": 514, "annotation": null}, {"text": ",", "start": 514, "end": 515, "annotation": null}, {"text": "a", "start": 516, "end": 517, "annotation": null}, {"text": "certain", "start": 518, "end": 525, "annotation": null}, {"text": "number", "start": 526, "end": 532, "annotation": null}, {"text": "of", "start": 533, "end": 535, "annotation": null}, {"text": "problems", "start": 536, "end": 544, "annotation": null}, {"text": "can", "start": 545, "end": 548, "annotation": null}, {"text": "be", "start": 549, "end": 551, "annotation": null}, {"text": "met", "start": 552, "end": 555, "annotation": null}, {"text": ".", "start": 555, "end": 556, "annotation": null}], [{"text": "Each", "start": 557, "end": 561, "annotation": null}, {"text": "of", "start": 562, "end": 564, "annotation": null}, {"text": "these", "start": 565, "end": 570, "annotation": null}, {"text": "problems", "start": 571, "end": 579, "annotation": null}, {"text": "can", "start": 580, "end": 583, "annotation": null}, {"text": "potentially", "start": 584, "end": 595, "annotation": null}, {"text": "give", "start": 596, "end": 600, "annotation": null}, {"text": "rise", "start": 601, "end": 605, "annotation": null}, {"text": "to", "start": 606, "end": 608, "annotation": null}, {"text": "a", "start": 609, "end": 610, "annotation": null}, {"text": "defect", "start": 611, "end": 617, "annotation": null}, {"text": "of", "start": 618, "end": 620, "annotation": null}, {"text": "the", "start": 621, "end": 624, "annotation": null}, {"text": "final", "start": 625, "end": 630, "annotation": null}, {"text": "structure", "start": 631, "end": 640, "annotation": null}, {"text": ".", "start": 640, "end": 641, "annotation": null}], [{"text": "Various", "start": 642, "end": 649, "annotation": null}, {"text": "tests", "start": 650, "end": 655, "annotation": null}, {"text": "are", "start": 656, "end": 659, "annotation": null}, {"text": "carried", "start": 660, "end": 667, "annotation": null}, {"text": "out", "start": 668, "end": 671, "annotation": null}, {"text": "on", "start": 672, "end": 674, "annotation": null}, {"text": "the", "start": 675, "end": 678, "annotation": null}, {"text": "final", "start": 679, "end": 684, "annotation": null}, {"text": "structure", "start": 685, "end": 694, "annotation": null}, {"text": "to", "start": 695, "end": 697, "annotation": null}, {"text": "make", "start": 698, "end": 702, "annotation": null}, {"text": "a", "start": 703, "end": 704, "annotation": null}, {"text": "first", "start": 705, "end": 710, "annotation": null}, {"text": "approach", "start": 711, "end": 719, "annotation": null}, {"text": "of", "start": 720, "end": 722, "annotation": null}, {"text": "the", "start": 723, "end": 726, "annotation": null}, {"text": "micro", "start": 727, "end": 732, "annotation": null}, {"text": "flow", "start": 733, "end": 737, "annotation": null}, {"text": "sensor", "start": 738, "end": 744, "annotation": null}, {"text": "flaws", "start": 745, "end": 750, "annotation": null}, {"text": ".", "start": 750, "end": 751, "annotation": null}]]} +{"remark": "doping_annt3", "text": "A micro hot wire anemometer sensor has been constructed. The process consists in depositing a thin doped polycrystalline silicon layer on silicon substrate, using a micro-machined technique. This paper discusses the reliability and the fabrication flaws of this sensor. The different steps of fabrication are oxidation, deposit, photolithography, chemical attack, ionic implantation and annealing. An additional step, allowing the release of the suspended structures, is added. With each technological process step, a certain number of problems can be met. Each of these problems can potentially give rise to a defect of the final structure. Various tests are carried out on the final structure to make a first approach of the micro flow sensor flaws. \u00a9 2013 Springer-Verlag Berlin Heidelberg.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "micro", "start": 2, "end": 7, "annotation": null}, {"text": "hot", "start": 8, "end": 11, "annotation": null}, {"text": "wire", "start": 12, "end": 16, "annotation": null}, {"text": "anemometer", "start": 17, "end": 27, "annotation": null}, {"text": "sensor", "start": 28, "end": 34, "annotation": null}, {"text": "has", "start": 35, "end": 38, "annotation": null}, {"text": "been", "start": 39, "end": 43, "annotation": null}, {"text": "constructed", "start": 44, "end": 55, "annotation": null}, {"text": ".", "start": 55, "end": 56, "annotation": null}], [{"text": "The", "start": 57, "end": 60, "annotation": null}, {"text": "process", "start": 61, "end": 68, "annotation": null}, {"text": "consists", "start": 69, "end": 77, "annotation": null}, {"text": "in", "start": 78, "end": 80, "annotation": null}, {"text": "depositing", "start": 81, "end": 91, "annotation": null}, {"text": "a", "start": 92, "end": 93, "annotation": null}, {"text": "thin", "start": 94, "end": 98, "annotation": null}, {"text": "doped", "start": 99, "end": 104, "annotation": null}, {"text": "polycrystalline", "start": 105, "end": 120, "annotation": null}, {"text": "silicon", "start": 121, "end": 128, "annotation": "BASEMAT"}, {"text": "layer", "start": 129, "end": 134, "annotation": "BASEMAT"}, {"text": "on", "start": 135, "end": 137, "annotation": null}, {"text": "silicon", "start": 138, "end": 145, "annotation": null}, {"text": "substrate", "start": 146, "end": 155, "annotation": null}, {"text": ",", "start": 155, "end": 156, "annotation": null}, {"text": "using", "start": 157, "end": 162, "annotation": null}, {"text": "a", "start": 163, "end": 164, "annotation": null}, {"text": "micro-machined", "start": 165, "end": 179, "annotation": null}, {"text": "technique", "start": 180, "end": 189, "annotation": null}, {"text": ".", "start": 189, "end": 190, "annotation": null}], [{"text": "This", "start": 191, "end": 195, "annotation": null}, {"text": "paper", "start": 196, "end": 201, "annotation": null}, {"text": "discusses", "start": 202, "end": 211, "annotation": null}, {"text": "the", "start": 212, "end": 215, "annotation": null}, {"text": "reliability", "start": 216, "end": 227, "annotation": null}, {"text": "and", "start": 228, "end": 231, "annotation": null}, {"text": "the", "start": 232, "end": 235, "annotation": null}, {"text": "fabrication", "start": 236, "end": 247, "annotation": null}, {"text": "flaws", "start": 248, "end": 253, "annotation": null}, {"text": "of", "start": 254, "end": 256, "annotation": null}, {"text": "this", "start": 257, "end": 261, "annotation": null}, {"text": "sensor", "start": 262, "end": 268, "annotation": null}, {"text": ".", "start": 268, "end": 269, "annotation": null}], [{"text": "The", "start": 270, "end": 273, "annotation": null}, {"text": "different", "start": 274, "end": 283, "annotation": null}, {"text": "steps", "start": 284, "end": 289, "annotation": null}, {"text": "of", "start": 290, "end": 292, "annotation": null}, {"text": "fabrication", "start": 293, "end": 304, "annotation": null}, {"text": "are", "start": 305, "end": 308, "annotation": null}, {"text": "oxidation", "start": 309, "end": 318, "annotation": null}, {"text": ",", "start": 318, "end": 319, "annotation": null}, {"text": "deposit", "start": 320, "end": 327, "annotation": null}, {"text": ",", "start": 327, "end": 328, "annotation": null}, {"text": "photolithography", "start": 329, "end": 345, "annotation": null}, {"text": ",", "start": 345, "end": 346, "annotation": null}, {"text": "chemical", "start": 347, "end": 355, "annotation": null}, {"text": "attack", "start": 356, "end": 362, "annotation": null}, {"text": ",", "start": 362, "end": 363, "annotation": null}, {"text": "ionic", "start": 364, "end": 369, "annotation": null}, {"text": "implantation", "start": 370, "end": 382, "annotation": null}, {"text": "and", "start": 383, "end": 386, "annotation": null}, {"text": "annealing", "start": 387, "end": 396, "annotation": null}, {"text": ".", "start": 396, "end": 397, "annotation": null}], [{"text": "An", "start": 398, "end": 400, "annotation": null}, {"text": "additional", "start": 401, "end": 411, "annotation": null}, {"text": "step", "start": 412, "end": 416, "annotation": null}, {"text": ",", "start": 416, "end": 417, "annotation": null}, {"text": "allowing", "start": 418, "end": 426, "annotation": null}, {"text": "the", "start": 427, "end": 430, "annotation": null}, {"text": "release", "start": 431, "end": 438, "annotation": null}, {"text": "of", "start": 439, "end": 441, "annotation": null}, {"text": "the", "start": 442, "end": 445, "annotation": null}, {"text": "suspended", "start": 446, "end": 455, "annotation": null}, {"text": "structures", "start": 456, "end": 466, "annotation": null}, {"text": ",", "start": 466, "end": 467, "annotation": null}, {"text": "is", "start": 468, "end": 470, "annotation": null}, {"text": "added", "start": 471, "end": 476, "annotation": null}, {"text": ".", "start": 476, "end": 477, "annotation": null}], [{"text": "With", "start": 478, "end": 482, "annotation": null}, {"text": "each", "start": 483, "end": 487, "annotation": null}, {"text": "technological", "start": 488, "end": 501, "annotation": null}, {"text": "process", "start": 502, "end": 509, "annotation": null}, {"text": "step", "start": 510, "end": 514, "annotation": null}, {"text": ",", "start": 514, "end": 515, "annotation": null}, {"text": "a", "start": 516, "end": 517, "annotation": null}, {"text": "certain", "start": 518, "end": 525, "annotation": null}, {"text": "number", "start": 526, "end": 532, "annotation": null}, {"text": "of", "start": 533, "end": 535, "annotation": null}, {"text": "problems", "start": 536, "end": 544, "annotation": null}, {"text": "can", "start": 545, "end": 548, "annotation": null}, {"text": "be", "start": 549, "end": 551, "annotation": null}, {"text": "met", "start": 552, "end": 555, "annotation": null}, {"text": ".", "start": 555, "end": 556, "annotation": null}], [{"text": "Each", "start": 557, "end": 561, "annotation": null}, {"text": "of", "start": 562, "end": 564, "annotation": null}, {"text": "these", "start": 565, "end": 570, "annotation": null}, {"text": "problems", "start": 571, "end": 579, "annotation": null}, {"text": "can", "start": 580, "end": 583, "annotation": null}, {"text": "potentially", "start": 584, "end": 595, "annotation": null}, {"text": "give", "start": 596, "end": 600, "annotation": null}, {"text": "rise", "start": 601, "end": 605, "annotation": null}, {"text": "to", "start": 606, "end": 608, "annotation": null}, {"text": "a", "start": 609, "end": 610, "annotation": null}, {"text": "defect", "start": 611, "end": 617, "annotation": null}, {"text": "of", "start": 618, "end": 620, "annotation": null}, {"text": "the", "start": 621, "end": 624, "annotation": null}, {"text": "final", "start": 625, "end": 630, "annotation": null}, {"text": "structure", "start": 631, "end": 640, "annotation": null}, {"text": ".", "start": 640, "end": 641, "annotation": null}], [{"text": "Various", "start": 642, "end": 649, "annotation": null}, {"text": "tests", "start": 650, "end": 655, "annotation": null}, {"text": "are", "start": 656, "end": 659, "annotation": null}, {"text": "carried", "start": 660, "end": 667, "annotation": null}, {"text": "out", "start": 668, "end": 671, "annotation": null}, {"text": "on", "start": 672, "end": 674, "annotation": null}, {"text": "the", "start": 675, "end": 678, "annotation": null}, {"text": "final", "start": 679, "end": 684, "annotation": null}, {"text": "structure", "start": 685, "end": 694, "annotation": null}, {"text": "to", "start": 695, "end": 697, "annotation": null}, {"text": "make", "start": 698, "end": 702, "annotation": null}, {"text": "a", "start": 703, "end": 704, "annotation": null}, {"text": "first", "start": 705, "end": 710, "annotation": null}, {"text": "approach", "start": 711, "end": 719, "annotation": null}, {"text": "of", "start": 720, "end": 722, "annotation": null}, {"text": "the", "start": 723, "end": 726, "annotation": null}, {"text": "micro", "start": 727, "end": 732, "annotation": null}, {"text": "flow", "start": 733, "end": 737, "annotation": null}, {"text": "sensor", "start": 738, "end": 744, "annotation": null}, {"text": "flaws", "start": 745, "end": 750, "annotation": null}, {"text": ".", "start": 750, "end": 751, "annotation": null}]], "meta": {"doi": "10.1007/s00542-013-1977-7"}} {"text": "A new parametrisation model which takes into account oxygen 2p-4f rare earth hybridization energies is tested in order to understand the unusually large total crystal field splitting in the RBa2Cu3O6+x (R= rare earth) compounds. This model gives also a quantitatively good picture of the charge-transfer mechanism involved by doping with oxygen.", "meta": {"doi": "10.1016/0921-4526(92)90773-L"}, "_input_hash": 234546565, "_task_hash": -2065248315, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "new", "start": 2, "end": 5, "id": 1, "annotation": null}, {"text": "parametrisation", "start": 6, "end": 21, "id": 2, "annotation": null}, {"text": "model", "start": 22, "end": 27, "id": 3, "annotation": null}, {"text": "which", "start": 28, "end": 33, "id": 4, "annotation": null}, {"text": "takes", "start": 34, "end": 39, "id": 5, "annotation": null}, {"text": "into", "start": 40, "end": 44, "id": 6, "annotation": null}, {"text": "account", "start": 45, "end": 52, "id": 7, "annotation": null}, {"text": "oxygen", "start": 53, "end": 59, "id": 8, "annotation": null}, {"text": "2p-4f", "start": 60, "end": 65, "id": 9, "annotation": null}, {"text": "rare", "start": 66, "end": 70, "id": 10, "annotation": null}, {"text": "earth", "start": 71, "end": 76, "id": 11, "annotation": null}, {"text": "hybridization", "start": 77, "end": 90, "id": 12, "annotation": null}, {"text": "energies", "start": 91, "end": 99, "id": 13, "annotation": null}, {"text": "is", "start": 100, "end": 102, "id": 14, "annotation": null}, {"text": "tested", "start": 103, "end": 109, "id": 15, "annotation": null}, {"text": "in", "start": 110, "end": 112, "id": 16, "annotation": null}, {"text": "order", "start": 113, "end": 118, "id": 17, "annotation": null}, {"text": "to", "start": 119, "end": 121, "id": 18, "annotation": null}, {"text": "understand", "start": 122, "end": 132, "id": 19, "annotation": null}, {"text": "the", "start": 133, "end": 136, "id": 20, "annotation": null}, {"text": "unusually", "start": 137, "end": 146, "id": 21, "annotation": null}, {"text": "large", "start": 147, "end": 152, "id": 22, "annotation": null}, {"text": "total", "start": 153, "end": 158, "id": 23, "annotation": null}, {"text": "crystal", "start": 159, "end": 166, "id": 24, "annotation": null}, {"text": "field", "start": 167, "end": 172, "id": 25, "annotation": null}, {"text": "splitting", "start": 173, "end": 182, "id": 26, "annotation": null}, {"text": "in", "start": 183, "end": 185, "id": 27, "annotation": null}, {"text": "the", "start": 186, "end": 189, "id": 28, "annotation": null}, {"text": "RBa2Cu3O6+x", "start": 190, "end": 201, "id": 29, "annotation": null}, {"text": "(", "start": 202, "end": 203, "id": 30, "annotation": null}, {"text": "R=", "start": 204, "end": 206, "id": 31, "annotation": null}, {"text": "rare", "start": 207, "end": 211, "id": 32, "annotation": null}, {"text": "earth", "start": 212, "end": 217, "id": 33, "annotation": null}, {"text": ")", "start": 218, "end": 219, "id": 34, "annotation": null}, {"text": "compounds", "start": 220, "end": 229, "id": 35, "annotation": null}, {"text": ".", "start": 230, "end": 231, "id": 36, "annotation": null}], [{"text": "This", "start": 232, "end": 236, "id": 37, "annotation": null}, {"text": "model", "start": 237, "end": 242, "id": 38, "annotation": null}, {"text": "gives", "start": 243, "end": 248, "id": 39, "annotation": null}, {"text": "also", "start": 249, "end": 253, "id": 40, "annotation": null}, {"text": "a", "start": 254, "end": 255, "id": 41, "annotation": null}, {"text": "quantitatively", "start": 256, "end": 270, "id": 42, "annotation": null}, {"text": "good", "start": 271, "end": 275, "id": 43, "annotation": null}, {"text": "picture", "start": 276, "end": 283, "id": 44, "annotation": null}, {"text": "of", "start": 284, "end": 286, "id": 45, "annotation": null}, {"text": "the", "start": 287, "end": 290, "id": 46, "annotation": null}, {"text": "charge", "start": 291, "end": 297, "id": 47, "annotation": null}, {"text": "-", "start": 298, "end": 299, "id": 48, "annotation": null}, {"text": "transfer", "start": 300, "end": 308, "id": 49, "annotation": null}, {"text": "mechanism", "start": 309, "end": 318, "id": 50, "annotation": null}, {"text": "involved", "start": 319, "end": 327, "id": 51, "annotation": null}, {"text": "by", "start": 328, "end": 330, "id": 52, "annotation": null}, {"text": "doping", "start": 331, "end": 337, "id": 53, "annotation": null}, {"text": "with", "start": 338, "end": 342, "id": 54, "annotation": null}, {"text": "oxygen", "start": 343, "end": 349, "id": 55, "annotation": "DOPANT"}, {"text": ".", "start": 350, "end": 351, "id": 56, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Undoped nanosized In2O3 with n-type conduction was produced in both polymorphic forms (cubic and rhombohedral) and deposited by screen-printing as thick films. These films show high sensitivity to low O3 concentration levels. They have been investigated by four point conductance and Hall effect measurements under sensor operating conditions (elevated temperature and ozone exposure). The effective values of the charge carrier concentration and mobility have been calculated from the experimental records using the recipe for the single crystals. The response to O3 is discussed in the frame of the standard models for gas sensors. The observed deviations from the model are explained in connection with the film crystalline structure and microscopic parameters spread.", "meta": {"doi": "10.1016/j.snb.2009.03.002"}, "_input_hash": 399274975, "_task_hash": 1413355082, "tokens": [[{"text": "Undoped", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "nanosized", "start": 8, "end": 17, "id": 1, "annotation": null}, {"text": "In2O3", "start": 18, "end": 23, "id": 2, "annotation": null}, {"text": "with", "start": 24, "end": 28, "id": 3, "annotation": null}, {"text": "n", "start": 29, "end": 30, "id": 4, "annotation": null}, {"text": "-", "start": 31, "end": 32, "id": 5, "annotation": null}, {"text": "type", "start": 33, "end": 37, "id": 6, "annotation": null}, {"text": "conduction", "start": 38, "end": 48, "id": 7, "annotation": null}, {"text": "was", "start": 49, "end": 52, "id": 8, "annotation": null}, {"text": "produced", "start": 53, "end": 61, "id": 9, "annotation": null}, {"text": "in", "start": 62, "end": 64, "id": 10, "annotation": null}, {"text": "both", "start": 65, "end": 69, "id": 11, "annotation": null}, {"text": "polymorphic", "start": 70, "end": 81, "id": 12, "annotation": null}, {"text": "forms", "start": 82, "end": 87, "id": 13, "annotation": null}, {"text": "(", "start": 88, "end": 89, "id": 14, "annotation": null}, {"text": "cubic", "start": 90, "end": 95, "id": 15, "annotation": null}, {"text": "and", "start": 96, "end": 99, "id": 16, "annotation": null}, {"text": "rhombohedral", "start": 100, "end": 112, "id": 17, "annotation": null}, {"text": ")", "start": 113, "end": 114, "id": 18, "annotation": null}, {"text": "and", "start": 115, "end": 118, "id": 19, "annotation": null}, {"text": "deposited", "start": 119, "end": 128, "id": 20, "annotation": null}, {"text": "by", "start": 129, "end": 131, "id": 21, "annotation": null}, {"text": "screen", "start": 132, "end": 138, "id": 22, "annotation": null}, {"text": "-", "start": 139, "end": 140, "id": 23, "annotation": null}, {"text": "printing", "start": 141, "end": 149, "id": 24, "annotation": null}, {"text": "as", "start": 150, "end": 152, "id": 25, "annotation": null}, {"text": "thick", "start": 153, "end": 158, "id": 26, "annotation": null}, {"text": "films", "start": 159, "end": 164, "id": 27, "annotation": null}, {"text": ".", "start": 165, "end": 166, "id": 28, "annotation": null}], [{"text": "These", "start": 167, "end": 172, "id": 29, "annotation": null}, {"text": "films", "start": 173, "end": 178, "id": 30, "annotation": null}, {"text": "show", "start": 179, "end": 183, "id": 31, "annotation": null}, {"text": "high", "start": 184, "end": 188, "id": 32, "annotation": null}, {"text": "sensitivity", "start": 189, "end": 200, "id": 33, "annotation": null}, {"text": "to", "start": 201, "end": 203, "id": 34, "annotation": null}, {"text": "low", "start": 204, "end": 207, "id": 35, "annotation": null}, {"text": "O3", "start": 208, "end": 210, "id": 36, "annotation": null}, {"text": "concentration", "start": 211, "end": 224, "id": 37, "annotation": null}, {"text": "levels", "start": 225, "end": 231, "id": 38, "annotation": null}, {"text": ".", "start": 232, "end": 233, "id": 39, "annotation": null}], [{"text": "They", "start": 234, "end": 238, "id": 40, "annotation": null}, {"text": "have", "start": 239, "end": 243, "id": 41, "annotation": null}, {"text": "been", "start": 244, "end": 248, "id": 42, "annotation": null}, {"text": "investigated", "start": 249, "end": 261, "id": 43, "annotation": null}, {"text": "by", "start": 262, "end": 264, "id": 44, "annotation": null}, {"text": "four", "start": 265, "end": 269, "id": 45, "annotation": null}, {"text": "point", "start": 270, "end": 275, "id": 46, "annotation": null}, {"text": "conductance", "start": 276, "end": 287, "id": 47, "annotation": null}, {"text": "and", "start": 288, "end": 291, "id": 48, "annotation": null}, {"text": "Hall", "start": 292, "end": 296, "id": 49, "annotation": null}, {"text": "effect", "start": 297, "end": 303, "id": 50, "annotation": null}, {"text": "measurements", "start": 304, "end": 316, "id": 51, "annotation": null}, {"text": "under", "start": 317, "end": 322, "id": 52, "annotation": null}, {"text": "sensor", "start": 323, "end": 329, "id": 53, "annotation": null}, {"text": "operating", "start": 330, "end": 339, "id": 54, "annotation": null}, {"text": "conditions", "start": 340, "end": 350, "id": 55, "annotation": null}, {"text": "(", "start": 351, "end": 352, "id": 56, "annotation": null}, {"text": "elevated", "start": 353, "end": 361, "id": 57, "annotation": null}, {"text": "temperature", "start": 362, "end": 373, "id": 58, "annotation": null}, {"text": "and", "start": 374, "end": 377, "id": 59, "annotation": null}, {"text": "ozone", "start": 378, "end": 383, "id": 60, "annotation": null}, {"text": "exposure", "start": 384, "end": 392, "id": 61, "annotation": null}, {"text": ")", "start": 393, "end": 394, "id": 62, "annotation": null}, {"text": ".", "start": 395, "end": 396, "id": 63, "annotation": null}], [{"text": "The", "start": 397, "end": 400, "id": 64, "annotation": null}, {"text": "effective", "start": 401, "end": 410, "id": 65, "annotation": null}, {"text": "values", "start": 411, "end": 417, "id": 66, "annotation": null}, {"text": "of", "start": 418, "end": 420, "id": 67, "annotation": null}, {"text": "the", "start": 421, "end": 424, "id": 68, "annotation": null}, {"text": "charge", "start": 425, "end": 431, "id": 69, "annotation": null}, {"text": "carrier", "start": 432, "end": 439, "id": 70, "annotation": null}, {"text": "concentration", "start": 440, "end": 453, "id": 71, "annotation": null}, {"text": "and", "start": 454, "end": 457, "id": 72, "annotation": null}, {"text": "mobility", "start": 458, "end": 466, "id": 73, "annotation": null}, {"text": "have", "start": 467, "end": 471, "id": 74, "annotation": null}, {"text": "been", "start": 472, "end": 476, "id": 75, "annotation": null}, {"text": "calculated", "start": 477, "end": 487, "id": 76, "annotation": null}, {"text": "from", "start": 488, "end": 492, "id": 77, "annotation": null}, {"text": "the", "start": 493, "end": 496, "id": 78, "annotation": null}, {"text": "experimental", "start": 497, "end": 509, "id": 79, "annotation": null}, {"text": "records", "start": 510, "end": 517, "id": 80, "annotation": null}, {"text": "using", "start": 518, "end": 523, "id": 81, "annotation": null}, {"text": "the", "start": 524, "end": 527, "id": 82, "annotation": null}, {"text": "recipe", "start": 528, "end": 534, "id": 83, "annotation": null}, {"text": "for", "start": 535, "end": 538, "id": 84, "annotation": null}, {"text": "the", "start": 539, "end": 542, "id": 85, "annotation": null}, {"text": "single", "start": 543, "end": 549, "id": 86, "annotation": null}, {"text": "crystals", "start": 550, "end": 558, "id": 87, "annotation": null}, {"text": ".", "start": 559, "end": 560, "id": 88, "annotation": null}], [{"text": "The", "start": 561, "end": 564, "id": 89, "annotation": null}, {"text": "response", "start": 565, "end": 573, "id": 90, "annotation": null}, {"text": "to", "start": 574, "end": 576, "id": 91, "annotation": null}, {"text": "O3", "start": 577, "end": 579, "id": 92, "annotation": null}, {"text": "is", "start": 580, "end": 582, "id": 93, "annotation": null}, {"text": "discussed", "start": 583, "end": 592, "id": 94, "annotation": null}, {"text": "in", "start": 593, "end": 595, "id": 95, "annotation": null}, {"text": "the", "start": 596, "end": 599, "id": 96, "annotation": null}, {"text": "frame", "start": 600, "end": 605, "id": 97, "annotation": null}, {"text": "of", "start": 606, "end": 608, "id": 98, "annotation": null}, {"text": "the", "start": 609, "end": 612, "id": 99, "annotation": null}, {"text": "standard", "start": 613, "end": 621, "id": 100, "annotation": null}, {"text": "models", "start": 622, "end": 628, "id": 101, "annotation": null}, {"text": "for", "start": 629, "end": 632, "id": 102, "annotation": null}, {"text": "gas", "start": 633, "end": 636, "id": 103, "annotation": null}, {"text": "sensors", "start": 637, "end": 644, "id": 104, "annotation": null}, {"text": ".", "start": 645, "end": 646, "id": 105, "annotation": null}], [{"text": "The", "start": 647, "end": 650, "id": 106, "annotation": null}, {"text": "observed", "start": 651, "end": 659, "id": 107, "annotation": null}, {"text": "deviations", "start": 660, "end": 670, "id": 108, "annotation": null}, {"text": "from", "start": 671, "end": 675, "id": 109, "annotation": null}, {"text": "the", "start": 676, "end": 679, "id": 110, "annotation": null}, {"text": "model", "start": 680, "end": 685, "id": 111, "annotation": null}, {"text": "are", "start": 686, "end": 689, "id": 112, "annotation": null}, {"text": "explained", "start": 690, "end": 699, "id": 113, "annotation": null}, {"text": "in", "start": 700, "end": 702, "id": 114, "annotation": null}, {"text": "connection", "start": 703, "end": 713, "id": 115, "annotation": null}, {"text": "with", "start": 714, "end": 718, "id": 116, "annotation": null}, {"text": "the", "start": 719, "end": 722, "id": 117, "annotation": null}, {"text": "film", "start": 723, "end": 727, "id": 118, "annotation": null}, {"text": "crystalline", "start": 728, "end": 739, "id": 119, "annotation": null}, {"text": "structure", "start": 740, "end": 749, "id": 120, "annotation": null}, {"text": "and", "start": 750, "end": 753, "id": 121, "annotation": null}, {"text": "microscopic", "start": 754, "end": 765, "id": 122, "annotation": null}, {"text": "parameters", "start": 766, "end": 776, "id": 123, "annotation": null}, {"text": "spread", "start": 777, "end": 783, "id": 124, "annotation": null}, {"text": ".", "start": 784, "end": 785, "id": 125, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Solid-state white light emission is important for energy saving, but currently it is mainly based on environmentally unfriendly rare-earth doped phosphors or cadmium-containing quantum dots. Here, we explore an environmentally friendly approach for efficient white light emission based on ZnSe:Mn nanoparticles without rare-earth or cadmium elements. The emission is composed of a broad green-orange spectral band (525-650 nm) with the peak located at 578 nm and the color temperature is low, so it is particularly good for lighting at night to reduce risks to human health. Furthermore, the optimal absorption peak could be designed at 453 nm, which well matches the commercial blue-LED emission wavelength (445-470 nm). A quantum yield up to 84.5% could also be achieved. This rare-earth-element-free material opens up a new avenue for energy-saving, healthy, and environmentally benign lighting.", "meta": {"doi": "10.1039/C6RA19553A"}, "_input_hash": -1107252276, "_task_hash": -1033849474, "tokens": [[{"text": "Solid", "start": 35, "end": 40, "id": 7, "annotation": null}, {"text": "-", "start": 41, "end": 42, "id": 8, "annotation": null}, {"text": "state", "start": 43, "end": 48, "id": 9, "annotation": null}, {"text": "white", "start": 49, "end": 54, "id": 10, "annotation": null}, {"text": "light", "start": 55, "end": 60, "id": 11, "annotation": null}, {"text": "emission", "start": 61, "end": 69, "id": 12, "annotation": null}, {"text": "is", "start": 70, "end": 72, "id": 13, "annotation": null}, {"text": "important", "start": 73, "end": 82, "id": 14, "annotation": null}, {"text": "for", "start": 83, "end": 86, "id": 15, "annotation": null}, {"text": "energy", "start": 87, "end": 93, "id": 16, "annotation": null}, {"text": "saving", "start": 94, "end": 100, "id": 17, "annotation": null}, {"text": ",", "start": 101, "end": 102, "id": 18, "annotation": null}, {"text": "but", "start": 103, "end": 106, "id": 19, "annotation": null}, {"text": "currently", "start": 107, "end": 116, "id": 20, "annotation": null}, {"text": "it", "start": 117, "end": 119, "id": 21, "annotation": null}, {"text": "is", "start": 120, "end": 122, "id": 22, "annotation": null}, {"text": "mainly", "start": 123, "end": 129, "id": 23, "annotation": null}, {"text": "based", "start": 130, "end": 135, "id": 24, "annotation": null}, {"text": "on", "start": 136, "end": 138, "id": 25, "annotation": null}, {"text": "environmentally", "start": 139, "end": 154, "id": 26, "annotation": null}, {"text": "unfriendly", "start": 155, "end": 165, "id": 27, "annotation": null}, {"text": "rare", "start": 166, "end": 170, "id": 28, "annotation": "DOPANT"}, {"text": "-", "start": 171, "end": 172, "id": 29, "annotation": null}, {"text": "earth", "start": 173, "end": 178, "id": 30, "annotation": "DOPANT"}, {"text": "doped", "start": 179, "end": 184, "id": 31, "annotation": null}, {"text": "phosphors", "start": 185, "end": 194, "id": 32, "annotation": "BASEMAT"}, {"text": "or", "start": 195, "end": 197, "id": 33, "annotation": null}, {"text": "cadmium", "start": 198, "end": 205, "id": 34, "annotation": "BASEMAT"}, {"text": "-", "start": 206, "end": 207, "id": 35, "annotation": null}, {"text": "containing", "start": 208, "end": 218, "id": 36, "annotation": null}, {"text": "quantum", "start": 219, "end": 226, "id": 37, "annotation": null}, {"text": "dots", "start": 227, "end": 231, "id": 38, "annotation": "BASEMAT"}, {"text": ".", "start": 232, "end": 233, "id": 39, "annotation": null}], [{"text": "Here", "start": 234, "end": 238, "id": 40, "annotation": null}, {"text": ",", "start": 239, "end": 240, "id": 41, "annotation": null}, {"text": "we", "start": 241, "end": 243, "id": 42, "annotation": null}, {"text": "explore", "start": 244, "end": 251, "id": 43, "annotation": null}, {"text": "an", "start": 252, "end": 254, "id": 44, "annotation": null}, {"text": "environmentally", "start": 255, "end": 270, "id": 45, "annotation": null}, {"text": "friendly", "start": 271, "end": 279, "id": 46, "annotation": null}, {"text": "approach", "start": 280, "end": 288, "id": 47, "annotation": null}, {"text": "for", "start": 289, "end": 292, "id": 48, "annotation": null}, {"text": "efficient", "start": 293, "end": 302, "id": 49, "annotation": null}, {"text": "white", "start": 303, "end": 308, "id": 50, "annotation": null}, {"text": "light", "start": 309, "end": 314, "id": 51, "annotation": null}, {"text": "emission", "start": 315, "end": 323, "id": 52, "annotation": null}, {"text": "based", "start": 324, "end": 329, "id": 53, "annotation": null}, {"text": "on", "start": 330, "end": 332, "id": 54, "annotation": null}, {"text": "ZnSe", "start": 333, "end": 337, "id": 55, "annotation": "BASEMAT"}, {"text": ":", "start": 338, "end": 339, "id": 56, "annotation": null}, {"text": "Mn", "start": 340, "end": 342, "id": 57, "annotation": "DOPANT"}, {"text": "nanoparticles", "start": 343, "end": 356, "id": 58, "annotation": null}, {"text": "without", "start": 357, "end": 364, "id": 59, "annotation": null}, {"text": "rare", "start": 365, "end": 369, "id": 60, "annotation": null}, {"text": "-", "start": 370, "end": 371, "id": 61, "annotation": null}, {"text": "earth", "start": 372, "end": 377, "id": 62, "annotation": null}, {"text": "or", "start": 378, "end": 380, "id": 63, "annotation": null}, {"text": "cadmium", "start": 381, "end": 388, "id": 64, "annotation": null}, {"text": "elements", "start": 389, "end": 397, "id": 65, "annotation": null}, {"text": ".", "start": 398, "end": 399, "id": 66, "annotation": null}], [{"text": "The", "start": 400, "end": 403, "id": 67, "annotation": null}, {"text": "emission", "start": 404, "end": 412, "id": 68, "annotation": null}, {"text": "is", "start": 413, "end": 415, "id": 69, "annotation": null}, {"text": "composed", "start": 416, "end": 424, "id": 70, "annotation": null}, {"text": "of", "start": 425, "end": 427, "id": 71, "annotation": null}, {"text": "a", "start": 428, "end": 429, "id": 72, "annotation": null}, {"text": "broad", "start": 430, "end": 435, "id": 73, "annotation": null}, {"text": "green", "start": 436, "end": 441, "id": 74, "annotation": null}, {"text": "-", "start": 442, "end": 443, "id": 75, "annotation": null}, {"text": "orange", "start": 444, "end": 450, "id": 76, "annotation": null}, {"text": "spectral", "start": 451, "end": 459, "id": 77, "annotation": null}, {"text": "band", "start": 460, "end": 464, "id": 78, "annotation": null}, {"text": "(", "start": 465, "end": 466, "id": 79, "annotation": null}, {"text": "525", "start": 467, "end": 470, "id": 80, "annotation": null}, {"text": "-", "start": 471, "end": 472, "id": 81, "annotation": null}, {"text": "650", "start": 473, "end": 476, "id": 82, "annotation": null}, {"text": "nm", "start": 477, "end": 479, "id": 83, "annotation": null}, {"text": ")", "start": 480, "end": 481, "id": 84, "annotation": null}, {"text": "with", "start": 482, "end": 486, "id": 85, "annotation": null}, {"text": "the", "start": 487, "end": 490, "id": 86, "annotation": null}, {"text": "peak", "start": 491, "end": 495, "id": 87, "annotation": null}, {"text": "located", "start": 496, "end": 503, "id": 88, "annotation": null}, {"text": "at", "start": 504, "end": 506, "id": 89, "annotation": null}, {"text": "578", "start": 507, "end": 510, "id": 90, "annotation": null}, {"text": "nm", "start": 511, "end": 513, "id": 91, "annotation": null}, {"text": "and", "start": 514, "end": 517, "id": 92, "annotation": null}, {"text": "the", "start": 518, "end": 521, "id": 93, "annotation": null}, {"text": "color", "start": 522, "end": 527, "id": 94, "annotation": null}, {"text": "temperature", "start": 528, "end": 539, "id": 95, "annotation": null}, {"text": "is", "start": 540, "end": 542, "id": 96, "annotation": null}, {"text": "low", "start": 543, "end": 546, "id": 97, "annotation": null}, {"text": ",", "start": 547, "end": 548, "id": 98, "annotation": null}, {"text": "so", "start": 549, "end": 551, "id": 99, "annotation": null}, {"text": "it", "start": 552, "end": 554, "id": 100, "annotation": null}, {"text": "is", "start": 555, "end": 557, "id": 101, "annotation": null}, {"text": "particularly", "start": 558, "end": 570, "id": 102, "annotation": null}, {"text": "good", "start": 571, "end": 575, "id": 103, "annotation": null}, {"text": "for", "start": 576, "end": 579, "id": 104, "annotation": null}, {"text": "lighting", "start": 580, "end": 588, "id": 105, "annotation": null}, {"text": "at", "start": 589, "end": 591, "id": 106, "annotation": null}, {"text": "night", "start": 592, "end": 597, "id": 107, "annotation": null}, {"text": "to", "start": 598, "end": 600, "id": 108, "annotation": null}, {"text": "reduce", "start": 601, "end": 607, "id": 109, "annotation": null}, {"text": "risks", "start": 608, "end": 613, "id": 110, "annotation": null}, {"text": "to", "start": 614, "end": 616, "id": 111, "annotation": null}, {"text": "human", "start": 617, "end": 622, "id": 112, "annotation": null}, {"text": "health", "start": 623, "end": 629, "id": 113, "annotation": null}, {"text": ".", "start": 630, "end": 631, "id": 114, "annotation": null}], [{"text": "Furthermore", "start": 632, "end": 643, "id": 115, "annotation": null}, {"text": ",", "start": 644, "end": 645, "id": 116, "annotation": null}, {"text": "the", "start": 646, "end": 649, "id": 117, "annotation": null}, {"text": "optimal", "start": 650, "end": 657, "id": 118, "annotation": null}, {"text": "absorption", "start": 658, "end": 668, "id": 119, "annotation": null}, {"text": "peak", "start": 669, "end": 673, "id": 120, "annotation": null}, {"text": "could", "start": 674, "end": 679, "id": 121, "annotation": null}, {"text": "be", "start": 680, "end": 682, "id": 122, "annotation": null}, {"text": "designed", "start": 683, "end": 691, "id": 123, "annotation": null}, {"text": "at", "start": 692, "end": 694, "id": 124, "annotation": null}, {"text": "453", "start": 695, "end": 698, "id": 125, "annotation": null}, {"text": "nm", "start": 699, "end": 701, "id": 126, "annotation": null}, {"text": ",", "start": 702, "end": 703, "id": 127, "annotation": null}, {"text": "which", "start": 704, "end": 709, "id": 128, "annotation": null}, {"text": "well", "start": 710, "end": 714, "id": 129, "annotation": null}, {"text": "matches", "start": 715, "end": 722, "id": 130, "annotation": null}, {"text": "the", "start": 723, "end": 726, "id": 131, "annotation": null}, {"text": "commercial", "start": 727, "end": 737, "id": 132, "annotation": null}, {"text": "blue", "start": 738, "end": 742, "id": 133, "annotation": null}, {"text": "-", "start": 743, "end": 744, "id": 134, "annotation": null}, {"text": "LED", "start": 745, "end": 748, "id": 135, "annotation": null}, {"text": "emission", "start": 749, "end": 757, "id": 136, "annotation": null}, {"text": "wavelength", "start": 758, "end": 768, "id": 137, "annotation": null}, {"text": "(", "start": 769, "end": 770, "id": 138, "annotation": null}, {"text": "445", "start": 771, "end": 774, "id": 139, "annotation": null}, {"text": "-", "start": 775, "end": 776, "id": 140, "annotation": null}, {"text": "470", "start": 777, "end": 780, "id": 141, "annotation": null}, {"text": "nm", "start": 781, "end": 783, "id": 142, "annotation": null}, {"text": ")", "start": 784, "end": 785, "id": 143, "annotation": null}, {"text": ".", "start": 786, "end": 787, "id": 144, "annotation": null}], [{"text": "A", "start": 788, "end": 789, "id": 145, "annotation": null}, {"text": "quantum", "start": 790, "end": 797, "id": 146, "annotation": null}, {"text": "yield", "start": 798, "end": 803, "id": 147, "annotation": null}, {"text": "up", "start": 804, "end": 806, "id": 148, "annotation": null}, {"text": "to", "start": 807, "end": 809, "id": 149, "annotation": null}, {"text": "84.5", "start": 810, "end": 814, "id": 150, "annotation": null}, {"text": "%", "start": 815, "end": 816, "id": 151, "annotation": null}, {"text": "could", "start": 817, "end": 822, "id": 152, "annotation": null}, {"text": "also", "start": 823, "end": 827, "id": 153, "annotation": null}, {"text": "be", "start": 828, "end": 830, "id": 154, "annotation": null}, {"text": "achieved", "start": 831, "end": 839, "id": 155, "annotation": null}, {"text": ".", "start": 840, "end": 841, "id": 156, "annotation": null}], [{"text": "This", "start": 842, "end": 846, "id": 157, "annotation": null}, {"text": "rare", "start": 847, "end": 851, "id": 158, "annotation": null}, {"text": "-", "start": 852, "end": 853, "id": 159, "annotation": null}, {"text": "earth", "start": 854, "end": 859, "id": 160, "annotation": null}, {"text": "-", "start": 860, "end": 861, "id": 161, "annotation": null}, {"text": "element", "start": 862, "end": 869, "id": 162, "annotation": null}, {"text": "-", "start": 870, "end": 871, "id": 163, "annotation": null}, {"text": "free", "start": 872, "end": 876, "id": 164, "annotation": null}, {"text": "material", "start": 877, "end": 885, "id": 165, "annotation": null}, {"text": "opens", "start": 886, "end": 891, "id": 166, "annotation": null}, {"text": "up", "start": 892, "end": 894, "id": 167, "annotation": null}, {"text": "a", "start": 895, "end": 896, "id": 168, "annotation": null}, {"text": "new", "start": 897, "end": 900, "id": 169, "annotation": null}, {"text": "avenue", "start": 901, "end": 907, "id": 170, "annotation": null}, {"text": "for", "start": 908, "end": 911, "id": 171, "annotation": null}, {"text": "energy", "start": 912, "end": 918, "id": 172, "annotation": null}, {"text": "-", "start": 919, "end": 920, "id": 173, "annotation": null}, {"text": "saving", "start": 921, "end": 927, "id": 174, "annotation": null}, {"text": ",", "start": 928, "end": 929, "id": 175, "annotation": null}, {"text": "healthy", "start": 930, "end": 937, "id": 176, "annotation": null}, {"text": ",", "start": 938, "end": 939, "id": 177, "annotation": null}, {"text": "and", "start": 940, "end": 943, "id": 178, "annotation": null}, {"text": "environmentally", "start": 944, "end": 959, "id": 179, "annotation": null}, {"text": "benign", "start": 960, "end": 966, "id": 180, "annotation": null}, {"text": "lighting", "start": 967, "end": 975, "id": 181, "annotation": null}, {"text": ".", "start": 976, "end": 977, "id": 182, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "This paper reports the synthesis of ZnS microspheres with cubic and hexagonal crystal phases using a solvothermal method. These materials were characterized by a range of techniques. The effects of Au and Ag-doping on ZnS were also examined. Hexagonal phase ZnO microspheres could be obtained by a CO oxidation process over the ZnS microspheres. The onset of CO oxidation occurred above 350 \u00b0C, which was increased by Au and Ag doping. The synthesized materials were used for the photocatalytic degradation of mixed dyes {methylene blue (MB) + methyl orange (MO) + rhodamine B (RhB)}. The observed photocatalytic degradation rate over the photocatalysts was in the order, RhB < MB << MO. The photocatalytic degradation activity of the synthesized materials was observed in the order, Au-ZnS \u2248 Ag-ZnS << ZnS < ZnO. ZnO was \u223c6 times more efficient in the photocatalytic synthesis of 2-hydroxyterephthalic acid than the ZnS and metal-doped ZnS. These results further support the importance and wide applications of the synthesized ZnS, Ag-ZnS, Au-ZnS and ZnO microspheres.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "This", "start": 0, "end": 4, "annotation": null}, {"text": "paper", "start": 5, "end": 10, "annotation": null}, {"text": "reports", "start": 11, "end": 18, "annotation": null}, {"text": "the", "start": 19, "end": 22, "annotation": null}, {"text": "synthesis", "start": 23, "end": 32, "annotation": null}, {"text": "of", "start": 33, "end": 35, "annotation": null}, {"text": "ZnS", "start": 36, "end": 39, "annotation": null}, {"text": "microspheres", "start": 40, "end": 52, "annotation": null}, {"text": "with", "start": 53, "end": 57, "annotation": null}, {"text": "cubic", "start": 58, "end": 63, "annotation": null}, {"text": "and", "start": 64, "end": 67, "annotation": null}, {"text": "hexagonal", "start": 68, "end": 77, "annotation": null}, {"text": "crystal", "start": 78, "end": 85, "annotation": null}, {"text": "phases", "start": 86, "end": 92, "annotation": null}, {"text": "using", "start": 93, "end": 98, "annotation": null}, {"text": "a", "start": 99, "end": 100, "annotation": null}, {"text": "solvothermal", "start": 101, "end": 113, "annotation": null}, {"text": "method", "start": 114, "end": 120, "annotation": null}, {"text": ".", "start": 120, "end": 121, "annotation": null}], [{"text": "These", "start": 122, "end": 127, "annotation": null}, {"text": "materials", "start": 128, "end": 137, "annotation": null}, {"text": "were", "start": 138, "end": 142, "annotation": null}, {"text": "characterized", "start": 143, "end": 156, "annotation": null}, {"text": "by", "start": 157, "end": 159, "annotation": null}, {"text": "a", "start": 160, "end": 161, "annotation": null}, {"text": "range", "start": 162, "end": 167, "annotation": null}, {"text": "of", "start": 168, "end": 170, "annotation": null}, {"text": "techniques", "start": 171, "end": 181, "annotation": null}, {"text": ".", "start": 181, "end": 182, "annotation": null}], [{"text": "The", "start": 183, "end": 186, "annotation": null}, {"text": "effects", "start": 187, "end": 194, "annotation": null}, {"text": "of", "start": 195, "end": 197, "annotation": null}, {"text": "Au", "start": 198, "end": 200, "annotation": "DOPANT"}, {"text": "and", "start": 201, "end": 204, "annotation": null}, {"text": "Ag", "start": 205, "end": 207, "annotation": "DOPANT"}, {"text": "-", "start": 207, "end": 208, "annotation": null}, {"text": "doping", "start": 208, "end": 214, "annotation": null}, {"text": "on", "start": 215, "end": 217, "annotation": null}, {"text": "ZnS", "start": 218, "end": 221, "annotation": "BASEMAT"}, {"text": "were", "start": 222, "end": 226, "annotation": null}, {"text": "also", "start": 227, "end": 231, "annotation": null}, {"text": "examined", "start": 232, "end": 240, "annotation": null}, {"text": ".", "start": 240, "end": 241, "annotation": null}], [{"text": "Hexagonal", "start": 242, "end": 251, "annotation": null}, {"text": "phase", "start": 252, "end": 257, "annotation": null}, {"text": "ZnO", "start": 258, "end": 261, "annotation": null}, {"text": "microspheres", "start": 262, "end": 274, "annotation": null}, {"text": "could", "start": 275, "end": 280, "annotation": null}, {"text": "be", "start": 281, "end": 283, "annotation": null}, {"text": "obtained", "start": 284, "end": 292, "annotation": null}, {"text": "by", "start": 293, "end": 295, "annotation": null}, {"text": "a", "start": 296, "end": 297, "annotation": null}, {"text": "CO", "start": 298, "end": 300, "annotation": null}, {"text": "oxidation", "start": 301, "end": 310, "annotation": null}, {"text": "process", "start": 311, "end": 318, "annotation": null}, {"text": "over", "start": 319, "end": 323, "annotation": null}, {"text": "the", "start": 324, "end": 327, "annotation": null}, {"text": "ZnS", "start": 328, "end": 331, "annotation": null}, {"text": "microspheres", "start": 332, "end": 344, "annotation": null}, {"text": ".", "start": 344, "end": 345, "annotation": null}], [{"text": "The", "start": 346, "end": 349, "annotation": null}, {"text": "onset", "start": 350, "end": 355, "annotation": null}, {"text": "of", "start": 356, "end": 358, "annotation": null}, {"text": "CO", "start": 359, "end": 361, "annotation": null}, {"text": "oxidation", "start": 362, "end": 371, "annotation": null}, {"text": "occurred", "start": 372, "end": 380, "annotation": null}, {"text": "above", "start": 381, "end": 386, "annotation": null}, {"text": "350", "start": 387, "end": 390, "annotation": null}, {"text": "\u00b0", "start": 391, "end": 392, "annotation": null}, {"text": "C", "start": 392, "end": 393, "annotation": null}, {"text": ",", "start": 393, "end": 394, "annotation": null}, {"text": "which", "start": 395, "end": 400, "annotation": null}, {"text": "was", "start": 401, "end": 404, "annotation": null}, {"text": "increased", "start": 405, "end": 414, "annotation": null}, {"text": "by", "start": 415, "end": 417, "annotation": null}, {"text": "Au", "start": 418, "end": 420, "annotation": "DOPANT"}, {"text": "and", "start": 421, "end": 424, "annotation": null}, {"text": "Ag", "start": 425, "end": 427, "annotation": "DOPANT"}, {"text": "doping", "start": 428, "end": 434, "annotation": null}, {"text": ".", "start": 434, "end": 435, "annotation": null}], [{"text": "The", "start": 436, "end": 439, "annotation": null}, {"text": "synthesized", "start": 440, "end": 451, "annotation": null}, {"text": "materials", "start": 452, "end": 461, "annotation": null}, {"text": "were", "start": 462, "end": 466, "annotation": null}, {"text": "used", "start": 467, "end": 471, "annotation": null}, {"text": "for", "start": 472, "end": 475, "annotation": null}, {"text": "the", "start": 476, "end": 479, "annotation": null}, {"text": "photocatalytic", "start": 480, "end": 494, "annotation": null}, {"text": "degradation", "start": 495, "end": 506, "annotation": null}, {"text": "of", "start": 507, "end": 509, "annotation": null}, {"text": "mixed", "start": 510, "end": 515, "annotation": null}, {"text": "dyes", "start": 516, "end": 520, "annotation": null}, {"text": "{", "start": 521, "end": 522, "annotation": null}, {"text": "methylene", "start": 522, "end": 531, "annotation": null}, {"text": "blue", "start": 532, "end": 536, "annotation": null}, {"text": "(", "start": 537, "end": 538, "annotation": null}, {"text": "MB", "start": 538, "end": 540, "annotation": null}, {"text": ")", "start": 540, "end": 541, "annotation": null}, {"text": "+", "start": 542, "end": 543, "annotation": null}, {"text": "methyl", "start": 544, "end": 550, "annotation": null}, {"text": "orange", "start": 551, "end": 557, "annotation": null}, {"text": "(", "start": 558, "end": 559, "annotation": null}, {"text": "MO", "start": 559, "end": 561, "annotation": null}, {"text": ")", "start": 561, "end": 562, "annotation": null}, {"text": "+", "start": 563, "end": 564, "annotation": null}, {"text": "rhodamine", "start": 565, "end": 574, "annotation": null}, {"text": "B", "start": 575, "end": 576, "annotation": null}, {"text": "(", "start": 577, "end": 578, "annotation": null}, {"text": "RhB", "start": 578, "end": 581, "annotation": null}, {"text": ")", "start": 581, "end": 582, "annotation": null}, {"text": "}", "start": 582, "end": 583, "annotation": null}, {"text": ".", "start": 583, "end": 584, "annotation": null}], [{"text": "The", "start": 585, "end": 588, "annotation": null}, {"text": "observed", "start": 589, "end": 597, "annotation": null}, {"text": "photocatalytic", "start": 598, "end": 612, "annotation": null}, {"text": "degradation", "start": 613, "end": 624, "annotation": null}, {"text": "rate", "start": 625, "end": 629, "annotation": null}, {"text": "over", "start": 630, "end": 634, "annotation": null}, {"text": "the", "start": 635, "end": 638, "annotation": null}, {"text": "photocatalysts", "start": 639, "end": 653, "annotation": null}, {"text": "was", "start": 654, "end": 657, "annotation": null}, {"text": "in", "start": 658, "end": 660, "annotation": null}, {"text": "the", "start": 661, "end": 664, "annotation": null}, {"text": "order", "start": 665, "end": 670, "annotation": null}, {"text": ",", "start": 670, "end": 671, "annotation": null}, {"text": "RhB", "start": 672, "end": 675, "annotation": null}, {"text": "<", "start": 676, "end": 677, "annotation": null}, {"text": "MB", "start": 678, "end": 680, "annotation": null}, {"text": "<", "start": 681, "end": 682, "annotation": null}, {"text": "<", "start": 682, "end": 683, "annotation": null}, {"text": "MO", "start": 684, "end": 686, "annotation": null}, {"text": ".", "start": 686, "end": 687, "annotation": null}], [{"text": "The", "start": 688, "end": 691, "annotation": null}, {"text": "photocatalytic", "start": 692, "end": 706, "annotation": null}, {"text": "degradation", "start": 707, "end": 718, "annotation": null}, {"text": "activity", "start": 719, "end": 727, "annotation": null}, {"text": "of", "start": 728, "end": 730, "annotation": null}, {"text": "the", "start": 731, "end": 734, "annotation": null}, {"text": "synthesized", "start": 735, "end": 746, "annotation": null}, {"text": "materials", "start": 747, "end": 756, "annotation": null}, {"text": "was", "start": 757, "end": 760, "annotation": null}, {"text": "observed", "start": 761, "end": 769, "annotation": null}, {"text": "in", "start": 770, "end": 772, "annotation": null}, {"text": "the", "start": 773, "end": 776, "annotation": null}, {"text": "order", "start": 777, "end": 782, "annotation": null}, {"text": ",", "start": 782, "end": 783, "annotation": null}, {"text": "Au", "start": 784, "end": 786, "annotation": null}, {"text": "-", "start": 786, "end": 787, "annotation": null}, {"text": "ZnS", "start": 787, "end": 790, "annotation": null}, {"text": "\u2248", "start": 791, "end": 792, "annotation": null}, {"text": "Ag", "start": 793, "end": 795, "annotation": null}, {"text": "-", "start": 795, "end": 796, "annotation": null}, {"text": "ZnS", "start": 796, "end": 799, "annotation": null}, {"text": "<", "start": 800, "end": 801, "annotation": null}, {"text": "<", "start": 801, "end": 802, "annotation": null}, {"text": "ZnS", "start": 803, "end": 806, "annotation": null}, {"text": "<", "start": 807, "end": 808, "annotation": null}, {"text": "ZnO", "start": 809, "end": 812, "annotation": null}, {"text": ".", "start": 812, "end": 813, "annotation": null}], [{"text": "ZnO", "start": 814, "end": 817, "annotation": null}, {"text": "was", "start": 818, "end": 821, "annotation": null}, {"text": "\u223c", "start": 822, "end": 823, "annotation": null}, {"text": "6", "start": 823, "end": 824, "annotation": null}, {"text": "times", "start": 825, "end": 830, "annotation": null}, {"text": "more", "start": 831, "end": 835, "annotation": null}, {"text": "efficient", "start": 836, "end": 845, "annotation": null}, {"text": "in", "start": 846, "end": 848, "annotation": null}, {"text": "the", "start": 849, "end": 852, "annotation": null}, {"text": "photocatalytic", "start": 853, "end": 867, "annotation": null}, {"text": "synthesis", "start": 868, "end": 877, "annotation": null}, {"text": "of", "start": 878, "end": 880, "annotation": null}, {"text": "2-hydroxyterephthalic", "start": 881, "end": 902, "annotation": null}, {"text": "acid", "start": 903, "end": 907, "annotation": null}, {"text": "than", "start": 908, "end": 912, "annotation": null}, {"text": "the", "start": 913, "end": 916, "annotation": null}, {"text": "ZnS", "start": 917, "end": 920, "annotation": null}, {"text": "and", "start": 921, "end": 924, "annotation": null}, {"text": "metal", "start": 925, "end": 930, "annotation": null}, {"text": "-", "start": 930, "end": 931, "annotation": null}, {"text": "doped", "start": 931, "end": 936, "annotation": null}, {"text": "ZnS", "start": 937, "end": 940, "annotation": null}, {"text": ".", "start": 940, "end": 941, "annotation": null}], [{"text": "These", "start": 942, "end": 947, "annotation": null}, {"text": "results", "start": 948, "end": 955, "annotation": null}, {"text": "further", "start": 956, "end": 963, "annotation": null}, {"text": "support", "start": 964, "end": 971, "annotation": null}, {"text": "the", "start": 972, "end": 975, "annotation": null}, {"text": "importance", "start": 976, "end": 986, "annotation": null}, {"text": "and", "start": 987, "end": 990, "annotation": null}, {"text": "wide", "start": 991, "end": 995, "annotation": null}, {"text": "applications", "start": 996, "end": 1008, "annotation": null}, {"text": "of", "start": 1009, "end": 1011, "annotation": null}, {"text": "the", "start": 1012, "end": 1015, "annotation": null}, {"text": "synthesized", "start": 1016, "end": 1027, "annotation": null}, {"text": "ZnS", "start": 1028, "end": 1031, "annotation": null}, {"text": ",", "start": 1031, "end": 1032, "annotation": null}, {"text": "Ag", "start": 1033, "end": 1035, "annotation": null}, {"text": "-", "start": 1035, "end": 1036, "annotation": null}, {"text": "ZnS", "start": 1036, "end": 1039, "annotation": null}, {"text": ",", "start": 1039, "end": 1040, "annotation": null}, {"text": "Au", "start": 1041, "end": 1043, "annotation": null}, {"text": "-", "start": 1043, "end": 1044, "annotation": null}, {"text": "ZnS", "start": 1044, "end": 1047, "annotation": null}, {"text": "and", "start": 1048, "end": 1051, "annotation": null}, {"text": "ZnO", "start": 1052, "end": 1055, "annotation": null}, {"text": "microspheres", "start": 1056, "end": 1068, "annotation": null}, {"text": ".", "start": 1068, "end": 1069, "annotation": null}]]} -{"remark": "doping_annt3", "text": "A thin layer of polypyrrole was formed on sintered CdSe electrodes. The photoelectrochemical properties of bare CdSe and P-Py/CdSe electrodes were studied in electrolyte with the redox couple [K3Fe(CN)6]. The results were explained by assuming that a p-n junction is formed on CdSe electrodes with polypyrrole working as a p-type semiconductor.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "thin", "start": 2, "end": 6, "annotation": null}, {"text": "layer", "start": 7, "end": 12, "annotation": null}, {"text": "of", "start": 13, "end": 15, "annotation": null}, {"text": "polypyrrole", "start": 16, "end": 27, "annotation": null}, {"text": "was", "start": 28, "end": 31, "annotation": null}, {"text": "formed", "start": 32, "end": 38, "annotation": null}, {"text": "on", "start": 39, "end": 41, "annotation": null}, {"text": "sintered", "start": 42, "end": 50, "annotation": null}, {"text": "CdSe", "start": 51, "end": 55, "annotation": null}, {"text": "electrodes", "start": 56, "end": 66, "annotation": null}, {"text": ".", "start": 66, "end": 67, "annotation": null}], [{"text": "The", "start": 68, "end": 71, "annotation": null}, {"text": "photoelectrochemical", "start": 72, "end": 92, "annotation": null}, {"text": "properties", "start": 93, "end": 103, "annotation": null}, {"text": "of", "start": 104, "end": 106, "annotation": null}, {"text": "bare", "start": 107, "end": 111, "annotation": null}, {"text": "CdSe", "start": 112, "end": 116, "annotation": null}, {"text": "and", "start": 117, "end": 120, "annotation": null}, {"text": "P-Py", "start": 121, "end": 125, "annotation": null}, {"text": "/", "start": 125, "end": 126, "annotation": null}, {"text": "CdSe", "start": 126, "end": 130, "annotation": null}, {"text": "electrodes", "start": 131, "end": 141, "annotation": null}, {"text": "were", "start": 142, "end": 146, "annotation": null}, {"text": "studied", "start": 147, "end": 154, "annotation": null}, {"text": "in", "start": 155, "end": 157, "annotation": null}, {"text": "electrolyte", "start": 158, "end": 169, "annotation": null}, {"text": "with", "start": 170, "end": 174, "annotation": null}, {"text": "the", "start": 175, "end": 178, "annotation": null}, {"text": "redox", "start": 179, "end": 184, "annotation": null}, {"text": "couple", "start": 185, "end": 191, "annotation": null}, {"text": "[K3Fe(CN)6]", "start": 192, "end": 203, "annotation": null}, {"text": ".", "start": 203, "end": 204, "annotation": null}], [{"text": "The", "start": 205, "end": 208, "annotation": null}, {"text": "results", "start": 209, "end": 216, "annotation": null}, {"text": "were", "start": 217, "end": 221, "annotation": null}, {"text": "explained", "start": 222, "end": 231, "annotation": null}, {"text": "by", "start": 232, "end": 234, "annotation": null}, {"text": "assuming", "start": 235, "end": 243, "annotation": null}, {"text": "that", "start": 244, "end": 248, "annotation": null}, {"text": "a", "start": 249, "end": 250, "annotation": null}, {"text": "p-n", "start": 251, "end": 254, "annotation": null}, {"text": "junction", "start": 255, "end": 263, "annotation": null}, {"text": "is", "start": 264, "end": 266, "annotation": null}, {"text": "formed", "start": 267, "end": 273, "annotation": null}, {"text": "on", "start": 274, "end": 276, "annotation": null}, {"text": "CdSe", "start": 277, "end": 281, "annotation": null}, {"text": "electrodes", "start": 282, "end": 292, "annotation": null}, {"text": "with", "start": 293, "end": 297, "annotation": null}, {"text": "polypyrrole", "start": 298, "end": 309, "annotation": "BASEMAT"}, {"text": "working", "start": 310, "end": 317, "annotation": null}, {"text": "as", "start": 318, "end": 320, "annotation": null}, {"text": "a", "start": 321, "end": 322, "annotation": null}, {"text": "p", "start": 323, "end": 324, "annotation": "DOPANT"}, {"text": "-", "start": 324, "end": 325, "annotation": "DOPANT"}, {"text": "type", "start": 325, "end": 329, "annotation": "DOPANT"}, {"text": "semiconductor", "start": 330, "end": 343, "annotation": null}, {"text": ".", "start": 343, "end": 344, "annotation": null}]]} -{"remark": "doping_annt2", "text": "\u00a9 2018 IOP Publishing Ltd. Bi 1-x Pb x FeO 3 (0 \u2264 x \u2264 0.3) has been characterized in detail with an aim to identify role of defect such as dopant, various vacancies, grain boundaries etc, and their effect on structural, optical and multiferroic properties. Structural analysis revealed that Pb substitution transforms the rhombohedral phase of BiFeO 3 to the pseudocubic phase for x \u2265 0.15, consistently all vibrational Raman modes associated with the rhombohedral phase are found disappeared. Optical response revealed weakening of the d-d transitions with Pb addition indicating change in the Fe atoms environment consistent with the transition from non-centrosymmetric to the centrosymmetric structure. Transport and dielectric responses are explained in terms of hopping due to the presence of defects like oxygen vacancies and grain boundary conduction. In the high temperature regime, grain boundary conduction led to decrease in resistivity with the presence of a hump that is associated with hopping conduction. Extrinsic contributions in the transport properties correlate well with dielectric response. Magnetic and ferroelectric responses are also presented where role of oxygen vacancies defects has been clearly identified.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Structural", "start": 257, "end": 267, "annotation": null}, {"text": "analysis", "start": 268, "end": 276, "annotation": null}, {"text": "revealed", "start": 277, "end": 285, "annotation": null}, {"text": "that", "start": 286, "end": 290, "annotation": null}, {"text": "Pb", "start": 291, "end": 293, "annotation": "DOPANT"}, {"text": "substitution", "start": 294, "end": 306, "annotation": null}, {"text": "transforms", "start": 307, "end": 317, "annotation": null}, {"text": "the", "start": 318, "end": 321, "annotation": null}, {"text": "rhombohedral", "start": 322, "end": 334, "annotation": null}, {"text": "phase", "start": 335, "end": 340, "annotation": null}, {"text": "of", "start": 341, "end": 343, "annotation": null}, {"text": "BiFeO", "start": 344, "end": 349, "annotation": null}, {"text": "3", "start": 350, "end": 351, "annotation": null}, {"text": "to", "start": 352, "end": 354, "annotation": null}, {"text": "the", "start": 355, "end": 358, "annotation": null}, {"text": "pseudocubic", "start": 359, "end": 370, "annotation": null}, {"text": "phase", "start": 371, "end": 376, "annotation": null}, {"text": "for", "start": 377, "end": 380, "annotation": null}, {"text": "x", "start": 381, "end": 382, "annotation": "DOPMODQ"}, {"text": "\u2265", "start": 383, "end": 384, "annotation": "DOPMODQ"}, {"text": "0.15", "start": 385, "end": 389, "annotation": "DOPMODQ"}, {"text": ",", "start": 389, "end": 390, "annotation": null}, {"text": "consistently", "start": 391, "end": 403, "annotation": null}, {"text": "all", "start": 404, "end": 407, "annotation": null}, {"text": "vibrational", "start": 408, "end": 419, "annotation": null}, {"text": "Raman", "start": 420, "end": 425, "annotation": null}, {"text": "modes", "start": 426, "end": 431, "annotation": null}, {"text": "associated", "start": 432, "end": 442, "annotation": null}, {"text": "with", "start": 443, "end": 447, "annotation": null}, {"text": "the", "start": 448, "end": 451, "annotation": null}, {"text": "rhombohedral", "start": 452, "end": 464, "annotation": null}, {"text": "phase", "start": 465, "end": 470, "annotation": null}, {"text": "are", "start": 471, "end": 474, "annotation": null}, {"text": "found", "start": 475, "end": 480, "annotation": null}, {"text": "disappeared", "start": 481, "end": 492, "annotation": null}, {"text": ".", "start": 492, "end": 493, "annotation": null}], [{"text": "Optical", "start": 494, "end": 501, "annotation": null}, {"text": "response", "start": 502, "end": 510, "annotation": null}, {"text": "revealed", "start": 511, "end": 519, "annotation": null}, {"text": "weakening", "start": 520, "end": 529, "annotation": null}, {"text": "of", "start": 530, "end": 532, "annotation": null}, {"text": "the", "start": 533, "end": 536, "annotation": null}, {"text": "d-d", "start": 537, "end": 540, "annotation": null}, {"text": "transitions", "start": 541, "end": 552, "annotation": null}, {"text": "with", "start": 553, "end": 557, "annotation": null}, {"text": "Pb", "start": 558, "end": 560, "annotation": "DOPANT"}, {"text": "addition", "start": 561, "end": 569, "annotation": null}, {"text": "indicating", "start": 570, "end": 580, "annotation": null}, {"text": "change", "start": 581, "end": 587, "annotation": null}, {"text": "in", "start": 588, "end": 590, "annotation": null}, {"text": "the", "start": 591, "end": 594, "annotation": null}, {"text": "Fe", "start": 595, "end": 597, "annotation": null}, {"text": "atoms", "start": 598, "end": 603, "annotation": null}, {"text": "environment", "start": 604, "end": 615, "annotation": null}, {"text": "consistent", "start": 616, "end": 626, "annotation": null}, {"text": "with", "start": 627, "end": 631, "annotation": null}, {"text": "the", "start": 632, "end": 635, "annotation": null}, {"text": "transition", "start": 636, "end": 646, "annotation": null}, {"text": "from", "start": 647, "end": 651, "annotation": null}, {"text": "non-centrosymmetric", "start": 652, "end": 671, "annotation": null}, {"text": "to", "start": 672, "end": 674, "annotation": null}, {"text": "the", "start": 675, "end": 678, "annotation": null}, {"text": "centrosymmetric", "start": 679, "end": 694, "annotation": null}, {"text": "structure", "start": 695, "end": 704, "annotation": null}, {"text": ".", "start": 704, "end": 705, "annotation": null}], [{"text": "Transport", "start": 706, "end": 715, "annotation": null}, {"text": "and", "start": 716, "end": 719, "annotation": null}, {"text": "dielectric", "start": 720, "end": 730, "annotation": null}, {"text": "responses", "start": 731, "end": 740, "annotation": null}, {"text": "are", "start": 741, "end": 744, "annotation": null}, {"text": "explained", "start": 745, "end": 754, "annotation": null}, {"text": "in", "start": 755, "end": 757, "annotation": null}, {"text": "terms", "start": 758, "end": 763, "annotation": null}, {"text": "of", "start": 764, "end": 766, "annotation": null}, {"text": "hopping", "start": 767, "end": 774, "annotation": null}, {"text": "due", "start": 775, "end": 778, "annotation": null}, {"text": "to", "start": 779, "end": 781, "annotation": null}, {"text": "the", "start": 782, "end": 785, "annotation": null}, {"text": "presence", "start": 786, "end": 794, "annotation": null}, {"text": "of", "start": 795, "end": 797, "annotation": null}, {"text": "defects", "start": 798, "end": 805, "annotation": null}, {"text": "like", "start": 806, "end": 810, "annotation": null}, {"text": "oxygen", "start": 811, "end": 817, "annotation": null}, {"text": "vacancies", "start": 818, "end": 827, "annotation": null}, {"text": "and", "start": 828, "end": 831, "annotation": null}, {"text": "grain", "start": 832, "end": 837, "annotation": null}, {"text": "boundary", "start": 838, "end": 846, "annotation": null}, {"text": "conduction", "start": 847, "end": 857, "annotation": null}, {"text": ".", "start": 857, "end": 858, "annotation": null}], [{"text": "In", "start": 859, "end": 861, "annotation": null}, {"text": "the", "start": 862, "end": 865, "annotation": null}, {"text": "high", "start": 866, "end": 870, "annotation": null}, {"text": "temperature", "start": 871, "end": 882, "annotation": null}, {"text": "regime", "start": 883, "end": 889, "annotation": null}, {"text": ",", "start": 889, "end": 890, "annotation": null}, {"text": "grain", "start": 891, "end": 896, "annotation": null}, {"text": "boundary", "start": 897, "end": 905, "annotation": null}, {"text": "conduction", "start": 906, "end": 916, "annotation": null}, {"text": "led", "start": 917, "end": 920, "annotation": null}, {"text": "to", "start": 921, "end": 923, "annotation": null}, {"text": "decrease", "start": 924, "end": 932, "annotation": null}, {"text": "in", "start": 933, "end": 935, "annotation": null}, {"text": "resistivity", "start": 936, "end": 947, "annotation": null}, {"text": "with", "start": 948, "end": 952, "annotation": null}, {"text": "the", "start": 953, "end": 956, "annotation": null}, {"text": "presence", "start": 957, "end": 965, "annotation": null}, {"text": "of", "start": 966, "end": 968, "annotation": null}, {"text": "a", "start": 969, "end": 970, "annotation": null}, {"text": "hump", "start": 971, "end": 975, "annotation": null}, {"text": "that", "start": 976, "end": 980, "annotation": null}, {"text": "is", "start": 981, "end": 983, "annotation": null}, {"text": "associated", "start": 984, "end": 994, "annotation": null}, {"text": "with", "start": 995, "end": 999, "annotation": null}, {"text": "hopping", "start": 1000, "end": 1007, "annotation": null}, {"text": "conduction", "start": 1008, "end": 1018, "annotation": null}, {"text": ".", "start": 1018, "end": 1019, "annotation": null}], [{"text": "Extrinsic", "start": 1020, "end": 1029, "annotation": null}, {"text": "contributions", "start": 1030, "end": 1043, "annotation": null}, {"text": "in", "start": 1044, "end": 1046, "annotation": null}, {"text": "the", "start": 1047, "end": 1050, "annotation": null}, {"text": "transport", "start": 1051, "end": 1060, "annotation": null}, {"text": "properties", "start": 1061, "end": 1071, "annotation": null}, {"text": "correlate", "start": 1072, "end": 1081, "annotation": null}, {"text": "well", "start": 1082, "end": 1086, "annotation": null}, {"text": "with", "start": 1087, "end": 1091, "annotation": null}, {"text": "dielectric", "start": 1092, "end": 1102, "annotation": null}, {"text": "response", "start": 1103, "end": 1111, "annotation": null}, {"text": ".", "start": 1111, "end": 1112, "annotation": null}], [{"text": "Magnetic", "start": 1113, "end": 1121, "annotation": null}, {"text": "and", "start": 1122, "end": 1125, "annotation": null}, {"text": "ferroelectric", "start": 1126, "end": 1139, "annotation": null}, {"text": "responses", "start": 1140, "end": 1149, "annotation": null}, {"text": "are", "start": 1150, "end": 1153, "annotation": null}, {"text": "also", "start": 1154, "end": 1158, "annotation": null}, {"text": "presented", "start": 1159, "end": 1168, "annotation": null}, {"text": "where", "start": 1169, "end": 1174, "annotation": null}, {"text": "role", "start": 1175, "end": 1179, "annotation": null}, {"text": "of", "start": 1180, "end": 1182, "annotation": null}, {"text": "oxygen", "start": 1183, "end": 1189, "annotation": null}, {"text": "vacancies", "start": 1190, "end": 1199, "annotation": null}, {"text": "defects", "start": 1200, "end": 1207, "annotation": null}, {"text": "has", "start": 1208, "end": 1211, "annotation": null}, {"text": "been", "start": 1212, "end": 1216, "annotation": null}, {"text": "clearly", "start": 1217, "end": 1224, "annotation": null}, {"text": "identified", "start": 1225, "end": 1235, "annotation": null}, {"text": ".", "start": 1235, "end": 1236, "annotation": null}]]} +{"remark": "doping_annt1", "text": "This paper reports the synthesis of ZnS microspheres with cubic and hexagonal crystal phases using a solvothermal method. These materials were characterized by a range of techniques. The effects of Au and Ag-doping on ZnS were also examined. Hexagonal phase ZnO microspheres could be obtained by a CO oxidation process over the ZnS microspheres. The onset of CO oxidation occurred above 350 \u00b0C, which was increased by Au and Ag doping. The synthesized materials were used for the photocatalytic degradation of mixed dyes {methylene blue (MB) + methyl orange (MO) + rhodamine B (RhB)}. The observed photocatalytic degradation rate over the photocatalysts was in the order, RhB < MB << MO. The photocatalytic degradation activity of the synthesized materials was observed in the order, Au-ZnS \u2248 Ag-ZnS << ZnS < ZnO. ZnO was \u223c6 times more efficient in the photocatalytic synthesis of 2-hydroxyterephthalic acid than the ZnS and metal-doped ZnS. These results further support the importance and wide applications of the synthesized ZnS, Ag-ZnS, Au-ZnS and ZnO microspheres.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "This", "start": 0, "end": 4, "annotation": null}, {"text": "paper", "start": 5, "end": 10, "annotation": null}, {"text": "reports", "start": 11, "end": 18, "annotation": null}, {"text": "the", "start": 19, "end": 22, "annotation": null}, {"text": "synthesis", "start": 23, "end": 32, "annotation": null}, {"text": "of", "start": 33, "end": 35, "annotation": null}, {"text": "ZnS", "start": 36, "end": 39, "annotation": null}, {"text": "microspheres", "start": 40, "end": 52, "annotation": null}, {"text": "with", "start": 53, "end": 57, "annotation": null}, {"text": "cubic", "start": 58, "end": 63, "annotation": null}, {"text": "and", "start": 64, "end": 67, "annotation": null}, {"text": "hexagonal", "start": 68, "end": 77, "annotation": null}, {"text": "crystal", "start": 78, "end": 85, "annotation": null}, {"text": "phases", "start": 86, "end": 92, "annotation": null}, {"text": "using", "start": 93, "end": 98, "annotation": null}, {"text": "a", "start": 99, "end": 100, "annotation": null}, {"text": "solvothermal", "start": 101, "end": 113, "annotation": null}, {"text": "method", "start": 114, "end": 120, "annotation": null}, {"text": ".", "start": 120, "end": 121, "annotation": null}], [{"text": "These", "start": 122, "end": 127, "annotation": null}, {"text": "materials", "start": 128, "end": 137, "annotation": null}, {"text": "were", "start": 138, "end": 142, "annotation": null}, {"text": "characterized", "start": 143, "end": 156, "annotation": null}, {"text": "by", "start": 157, "end": 159, "annotation": null}, {"text": "a", "start": 160, "end": 161, "annotation": null}, {"text": "range", "start": 162, "end": 167, "annotation": null}, {"text": "of", "start": 168, "end": 170, "annotation": null}, {"text": "techniques", "start": 171, "end": 181, "annotation": null}, {"text": ".", "start": 181, "end": 182, "annotation": null}], [{"text": "The", "start": 183, "end": 186, "annotation": null}, {"text": "effects", "start": 187, "end": 194, "annotation": null}, {"text": "of", "start": 195, "end": 197, "annotation": null}, {"text": "Au", "start": 198, "end": 200, "annotation": "DOPANT"}, {"text": "and", "start": 201, "end": 204, "annotation": null}, {"text": "Ag", "start": 205, "end": 207, "annotation": "DOPANT"}, {"text": "-", "start": 207, "end": 208, "annotation": null}, {"text": "doping", "start": 208, "end": 214, "annotation": null}, {"text": "on", "start": 215, "end": 217, "annotation": null}, {"text": "ZnS", "start": 218, "end": 221, "annotation": "BASEMAT"}, {"text": "were", "start": 222, "end": 226, "annotation": null}, {"text": "also", "start": 227, "end": 231, "annotation": null}, {"text": "examined", "start": 232, "end": 240, "annotation": null}, {"text": ".", "start": 240, "end": 241, "annotation": null}], [{"text": "Hexagonal", "start": 242, "end": 251, "annotation": null}, {"text": "phase", "start": 252, "end": 257, "annotation": null}, {"text": "ZnO", "start": 258, "end": 261, "annotation": null}, {"text": "microspheres", "start": 262, "end": 274, "annotation": null}, {"text": "could", "start": 275, "end": 280, "annotation": null}, {"text": "be", "start": 281, "end": 283, "annotation": null}, {"text": "obtained", "start": 284, "end": 292, "annotation": null}, {"text": "by", "start": 293, "end": 295, "annotation": null}, {"text": "a", "start": 296, "end": 297, "annotation": null}, {"text": "CO", "start": 298, "end": 300, "annotation": null}, {"text": "oxidation", "start": 301, "end": 310, "annotation": null}, {"text": "process", "start": 311, "end": 318, "annotation": null}, {"text": "over", "start": 319, "end": 323, "annotation": null}, {"text": "the", "start": 324, "end": 327, "annotation": null}, {"text": "ZnS", "start": 328, "end": 331, "annotation": null}, {"text": "microspheres", "start": 332, "end": 344, "annotation": null}, {"text": ".", "start": 344, "end": 345, "annotation": null}], [{"text": "The", "start": 346, "end": 349, "annotation": null}, {"text": "onset", "start": 350, "end": 355, "annotation": null}, {"text": "of", "start": 356, "end": 358, "annotation": null}, {"text": "CO", "start": 359, "end": 361, "annotation": null}, {"text": "oxidation", "start": 362, "end": 371, "annotation": null}, {"text": "occurred", "start": 372, "end": 380, "annotation": null}, {"text": "above", "start": 381, "end": 386, "annotation": null}, {"text": "350", "start": 387, "end": 390, "annotation": null}, {"text": "\u00b0", "start": 391, "end": 392, "annotation": null}, {"text": "C", "start": 392, "end": 393, "annotation": null}, {"text": ",", "start": 393, "end": 394, "annotation": null}, {"text": "which", "start": 395, "end": 400, "annotation": null}, {"text": "was", "start": 401, "end": 404, "annotation": null}, {"text": "increased", "start": 405, "end": 414, "annotation": null}, {"text": "by", "start": 415, "end": 417, "annotation": null}, {"text": "Au", "start": 418, "end": 420, "annotation": "DOPANT"}, {"text": "and", "start": 421, "end": 424, "annotation": null}, {"text": "Ag", "start": 425, "end": 427, "annotation": "DOPANT"}, {"text": "doping", "start": 428, "end": 434, "annotation": null}, {"text": ".", "start": 434, "end": 435, "annotation": null}], [{"text": "The", "start": 436, "end": 439, "annotation": null}, {"text": "synthesized", "start": 440, "end": 451, "annotation": null}, {"text": "materials", "start": 452, "end": 461, "annotation": null}, {"text": "were", "start": 462, "end": 466, "annotation": null}, {"text": "used", "start": 467, "end": 471, "annotation": null}, {"text": "for", "start": 472, "end": 475, "annotation": null}, {"text": "the", "start": 476, "end": 479, "annotation": null}, {"text": "photocatalytic", "start": 480, "end": 494, "annotation": null}, {"text": "degradation", "start": 495, "end": 506, "annotation": null}, {"text": "of", "start": 507, "end": 509, "annotation": null}, {"text": "mixed", "start": 510, "end": 515, "annotation": null}, {"text": "dyes", "start": 516, "end": 520, "annotation": null}, {"text": "{", "start": 521, "end": 522, "annotation": null}, {"text": "methylene", "start": 522, "end": 531, "annotation": null}, {"text": "blue", "start": 532, "end": 536, "annotation": null}, {"text": "(", "start": 537, "end": 538, "annotation": null}, {"text": "MB", "start": 538, "end": 540, "annotation": null}, {"text": ")", "start": 540, "end": 541, "annotation": null}, {"text": "+", "start": 542, "end": 543, "annotation": null}, {"text": "methyl", "start": 544, "end": 550, "annotation": null}, {"text": "orange", "start": 551, "end": 557, "annotation": null}, {"text": "(", "start": 558, "end": 559, "annotation": null}, {"text": "MO", "start": 559, "end": 561, "annotation": null}, {"text": ")", "start": 561, "end": 562, "annotation": null}, {"text": "+", "start": 563, "end": 564, "annotation": null}, {"text": "rhodamine", "start": 565, "end": 574, "annotation": null}, {"text": "B", "start": 575, "end": 576, "annotation": null}, {"text": "(", "start": 577, "end": 578, "annotation": null}, {"text": "RhB", "start": 578, "end": 581, "annotation": null}, {"text": ")", "start": 581, "end": 582, "annotation": null}, {"text": "}", "start": 582, "end": 583, "annotation": null}, {"text": ".", "start": 583, "end": 584, "annotation": null}], [{"text": "The", "start": 585, "end": 588, "annotation": null}, {"text": "observed", "start": 589, "end": 597, "annotation": null}, {"text": "photocatalytic", "start": 598, "end": 612, "annotation": null}, {"text": "degradation", "start": 613, "end": 624, "annotation": null}, {"text": "rate", "start": 625, "end": 629, "annotation": null}, {"text": "over", "start": 630, "end": 634, "annotation": null}, {"text": "the", "start": 635, "end": 638, "annotation": null}, {"text": "photocatalysts", "start": 639, "end": 653, "annotation": null}, {"text": "was", "start": 654, "end": 657, "annotation": null}, {"text": "in", "start": 658, "end": 660, "annotation": null}, {"text": "the", "start": 661, "end": 664, "annotation": null}, {"text": "order", "start": 665, "end": 670, "annotation": null}, {"text": ",", "start": 670, "end": 671, "annotation": null}, {"text": "RhB", "start": 672, "end": 675, "annotation": null}, {"text": "<", "start": 676, "end": 677, "annotation": null}, {"text": "MB", "start": 678, "end": 680, "annotation": null}, {"text": "<", "start": 681, "end": 682, "annotation": null}, {"text": "<", "start": 682, "end": 683, "annotation": null}, {"text": "MO", "start": 684, "end": 686, "annotation": null}, {"text": ".", "start": 686, "end": 687, "annotation": null}], [{"text": "The", "start": 688, "end": 691, "annotation": null}, {"text": "photocatalytic", "start": 692, "end": 706, "annotation": null}, {"text": "degradation", "start": 707, "end": 718, "annotation": null}, {"text": "activity", "start": 719, "end": 727, "annotation": null}, {"text": "of", "start": 728, "end": 730, "annotation": null}, {"text": "the", "start": 731, "end": 734, "annotation": null}, {"text": "synthesized", "start": 735, "end": 746, "annotation": null}, {"text": "materials", "start": 747, "end": 756, "annotation": null}, {"text": "was", "start": 757, "end": 760, "annotation": null}, {"text": "observed", "start": 761, "end": 769, "annotation": null}, {"text": "in", "start": 770, "end": 772, "annotation": null}, {"text": "the", "start": 773, "end": 776, "annotation": null}, {"text": "order", "start": 777, "end": 782, "annotation": null}, {"text": ",", "start": 782, "end": 783, "annotation": null}, {"text": "Au", "start": 784, "end": 786, "annotation": null}, {"text": "-", "start": 786, "end": 787, "annotation": null}, {"text": "ZnS", "start": 787, "end": 790, "annotation": null}, {"text": "\u2248", "start": 791, "end": 792, "annotation": null}, {"text": "Ag", "start": 793, "end": 795, "annotation": null}, {"text": "-", "start": 795, "end": 796, "annotation": null}, {"text": "ZnS", "start": 796, "end": 799, "annotation": null}, {"text": "<", "start": 800, "end": 801, "annotation": null}, {"text": "<", "start": 801, "end": 802, "annotation": null}, {"text": "ZnS", "start": 803, "end": 806, "annotation": null}, {"text": "<", "start": 807, "end": 808, "annotation": null}, {"text": "ZnO", "start": 809, "end": 812, "annotation": null}, {"text": ".", "start": 812, "end": 813, "annotation": null}], [{"text": "ZnO", "start": 814, "end": 817, "annotation": null}, {"text": "was", "start": 818, "end": 821, "annotation": null}, {"text": "\u223c", "start": 822, "end": 823, "annotation": null}, {"text": "6", "start": 823, "end": 824, "annotation": null}, {"text": "times", "start": 825, "end": 830, "annotation": null}, {"text": "more", "start": 831, "end": 835, "annotation": null}, {"text": "efficient", "start": 836, "end": 845, "annotation": null}, {"text": "in", "start": 846, "end": 848, "annotation": null}, {"text": "the", "start": 849, "end": 852, "annotation": null}, {"text": "photocatalytic", "start": 853, "end": 867, "annotation": null}, {"text": "synthesis", "start": 868, "end": 877, "annotation": null}, {"text": "of", "start": 878, "end": 880, "annotation": null}, {"text": "2-hydroxyterephthalic", "start": 881, "end": 902, "annotation": null}, {"text": "acid", "start": 903, "end": 907, "annotation": null}, {"text": "than", "start": 908, "end": 912, "annotation": null}, {"text": "the", "start": 913, "end": 916, "annotation": null}, {"text": "ZnS", "start": 917, "end": 920, "annotation": null}, {"text": "and", "start": 921, "end": 924, "annotation": null}, {"text": "metal", "start": 925, "end": 930, "annotation": null}, {"text": "-", "start": 930, "end": 931, "annotation": null}, {"text": "doped", "start": 931, "end": 936, "annotation": null}, {"text": "ZnS", "start": 937, "end": 940, "annotation": null}, {"text": ".", "start": 940, "end": 941, "annotation": null}], [{"text": "These", "start": 942, "end": 947, "annotation": null}, {"text": "results", "start": 948, "end": 955, "annotation": null}, {"text": "further", "start": 956, "end": 963, "annotation": null}, {"text": "support", "start": 964, "end": 971, "annotation": null}, {"text": "the", "start": 972, "end": 975, "annotation": null}, {"text": "importance", "start": 976, "end": 986, "annotation": null}, {"text": "and", "start": 987, "end": 990, "annotation": null}, {"text": "wide", "start": 991, "end": 995, "annotation": null}, {"text": "applications", "start": 996, "end": 1008, "annotation": null}, {"text": "of", "start": 1009, "end": 1011, "annotation": null}, {"text": "the", "start": 1012, "end": 1015, "annotation": null}, {"text": "synthesized", "start": 1016, "end": 1027, "annotation": null}, {"text": "ZnS", "start": 1028, "end": 1031, "annotation": null}, {"text": ",", "start": 1031, "end": 1032, "annotation": null}, {"text": "Ag", "start": 1033, "end": 1035, "annotation": null}, {"text": "-", "start": 1035, "end": 1036, "annotation": null}, {"text": "ZnS", "start": 1036, "end": 1039, "annotation": null}, {"text": ",", "start": 1039, "end": 1040, "annotation": null}, {"text": "Au", "start": 1041, "end": 1043, "annotation": null}, {"text": "-", "start": 1043, "end": 1044, "annotation": null}, {"text": "ZnS", "start": 1044, "end": 1047, "annotation": null}, {"text": "and", "start": 1048, "end": 1051, "annotation": null}, {"text": "ZnO", "start": 1052, "end": 1055, "annotation": null}, {"text": "microspheres", "start": 1056, "end": 1068, "annotation": null}, {"text": ".", "start": 1068, "end": 1069, "annotation": null}]], "meta": {"doi": "10.1016/j.jallcom.2016.03.070"}} +{"remark": "doping_annt3", "text": "A thin layer of polypyrrole was formed on sintered CdSe electrodes. The photoelectrochemical properties of bare CdSe and P-Py/CdSe electrodes were studied in electrolyte with the redox couple [K3Fe(CN)6]. The results were explained by assuming that a p-n junction is formed on CdSe electrodes with polypyrrole working as a p-type semiconductor.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "thin", "start": 2, "end": 6, "annotation": null}, {"text": "layer", "start": 7, "end": 12, "annotation": null}, {"text": "of", "start": 13, "end": 15, "annotation": null}, {"text": "polypyrrole", "start": 16, "end": 27, "annotation": null}, {"text": "was", "start": 28, "end": 31, "annotation": null}, {"text": "formed", "start": 32, "end": 38, "annotation": null}, {"text": "on", "start": 39, "end": 41, "annotation": null}, {"text": "sintered", "start": 42, "end": 50, "annotation": null}, {"text": "CdSe", "start": 51, "end": 55, "annotation": null}, {"text": "electrodes", "start": 56, "end": 66, "annotation": null}, {"text": ".", "start": 66, "end": 67, "annotation": null}], [{"text": "The", "start": 68, "end": 71, "annotation": null}, {"text": "photoelectrochemical", "start": 72, "end": 92, "annotation": null}, {"text": "properties", "start": 93, "end": 103, "annotation": null}, {"text": "of", "start": 104, "end": 106, "annotation": null}, {"text": "bare", "start": 107, "end": 111, "annotation": null}, {"text": "CdSe", "start": 112, "end": 116, "annotation": null}, {"text": "and", "start": 117, "end": 120, "annotation": null}, {"text": "P-Py", "start": 121, "end": 125, "annotation": null}, {"text": "/", "start": 125, "end": 126, "annotation": null}, {"text": "CdSe", "start": 126, "end": 130, "annotation": null}, {"text": "electrodes", "start": 131, "end": 141, "annotation": null}, {"text": "were", "start": 142, "end": 146, "annotation": null}, {"text": "studied", "start": 147, "end": 154, "annotation": null}, {"text": "in", "start": 155, "end": 157, "annotation": null}, {"text": "electrolyte", "start": 158, "end": 169, "annotation": null}, {"text": "with", "start": 170, "end": 174, "annotation": null}, {"text": "the", "start": 175, "end": 178, "annotation": null}, {"text": "redox", "start": 179, "end": 184, "annotation": null}, {"text": "couple", "start": 185, "end": 191, "annotation": null}, {"text": "[K3Fe(CN)6]", "start": 192, "end": 203, "annotation": null}, {"text": ".", "start": 203, "end": 204, "annotation": null}], [{"text": "The", "start": 205, "end": 208, "annotation": null}, {"text": "results", "start": 209, "end": 216, "annotation": null}, {"text": "were", "start": 217, "end": 221, "annotation": null}, {"text": "explained", "start": 222, "end": 231, "annotation": null}, {"text": "by", "start": 232, "end": 234, "annotation": null}, {"text": "assuming", "start": 235, "end": 243, "annotation": null}, {"text": "that", "start": 244, "end": 248, "annotation": null}, {"text": "a", "start": 249, "end": 250, "annotation": null}, {"text": "p-n", "start": 251, "end": 254, "annotation": null}, {"text": "junction", "start": 255, "end": 263, "annotation": null}, {"text": "is", "start": 264, "end": 266, "annotation": null}, {"text": "formed", "start": 267, "end": 273, "annotation": null}, {"text": "on", "start": 274, "end": 276, "annotation": null}, {"text": "CdSe", "start": 277, "end": 281, "annotation": null}, {"text": "electrodes", "start": 282, "end": 292, "annotation": null}, {"text": "with", "start": 293, "end": 297, "annotation": null}, {"text": "polypyrrole", "start": 298, "end": 309, "annotation": "BASEMAT"}, {"text": "working", "start": 310, "end": 317, "annotation": null}, {"text": "as", "start": 318, "end": 320, "annotation": null}, {"text": "a", "start": 321, "end": 322, "annotation": null}, {"text": "p", "start": 323, "end": 324, "annotation": "DOPANT"}, {"text": "-", "start": 324, "end": 325, "annotation": "DOPANT"}, {"text": "type", "start": 325, "end": 329, "annotation": "DOPANT"}, {"text": "semiconductor", "start": 330, "end": 343, "annotation": null}, {"text": ".", "start": 343, "end": 344, "annotation": null}]], "meta": {"doi": "10.1007/BF01093748"}} +{"remark": "doping_annt2", "text": "\u00a9 2018 IOP Publishing Ltd. Bi 1-x Pb x FeO 3 (0 \u2264 x \u2264 0.3) has been characterized in detail with an aim to identify role of defect such as dopant, various vacancies, grain boundaries etc, and their effect on structural, optical and multiferroic properties. Structural analysis revealed that Pb substitution transforms the rhombohedral phase of BiFeO 3 to the pseudocubic phase for x \u2265 0.15, consistently all vibrational Raman modes associated with the rhombohedral phase are found disappeared. Optical response revealed weakening of the d-d transitions with Pb addition indicating change in the Fe atoms environment consistent with the transition from non-centrosymmetric to the centrosymmetric structure. Transport and dielectric responses are explained in terms of hopping due to the presence of defects like oxygen vacancies and grain boundary conduction. In the high temperature regime, grain boundary conduction led to decrease in resistivity with the presence of a hump that is associated with hopping conduction. Extrinsic contributions in the transport properties correlate well with dielectric response. Magnetic and ferroelectric responses are also presented where role of oxygen vacancies defects has been clearly identified.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Structural", "start": 257, "end": 267, "annotation": null}, {"text": "analysis", "start": 268, "end": 276, "annotation": null}, {"text": "revealed", "start": 277, "end": 285, "annotation": null}, {"text": "that", "start": 286, "end": 290, "annotation": null}, {"text": "Pb", "start": 291, "end": 293, "annotation": "DOPANT"}, {"text": "substitution", "start": 294, "end": 306, "annotation": null}, {"text": "transforms", "start": 307, "end": 317, "annotation": null}, {"text": "the", "start": 318, "end": 321, "annotation": null}, {"text": "rhombohedral", "start": 322, "end": 334, "annotation": null}, {"text": "phase", "start": 335, "end": 340, "annotation": null}, {"text": "of", "start": 341, "end": 343, "annotation": null}, {"text": "BiFeO", "start": 344, "end": 349, "annotation": null}, {"text": "3", "start": 350, "end": 351, "annotation": null}, {"text": "to", "start": 352, "end": 354, "annotation": null}, {"text": "the", "start": 355, "end": 358, "annotation": null}, {"text": "pseudocubic", "start": 359, "end": 370, "annotation": null}, {"text": "phase", "start": 371, "end": 376, "annotation": null}, {"text": "for", "start": 377, "end": 380, "annotation": null}, {"text": "x", "start": 381, "end": 382, "annotation": "DOPMODQ"}, {"text": "\u2265", "start": 383, "end": 384, "annotation": "DOPMODQ"}, {"text": "0.15", "start": 385, "end": 389, "annotation": "DOPMODQ"}, {"text": ",", "start": 389, "end": 390, "annotation": null}, {"text": "consistently", "start": 391, "end": 403, "annotation": null}, {"text": "all", "start": 404, "end": 407, "annotation": null}, {"text": "vibrational", "start": 408, "end": 419, "annotation": null}, {"text": "Raman", "start": 420, "end": 425, "annotation": null}, {"text": "modes", "start": 426, "end": 431, "annotation": null}, {"text": "associated", "start": 432, "end": 442, "annotation": null}, {"text": "with", "start": 443, "end": 447, "annotation": null}, {"text": "the", "start": 448, "end": 451, "annotation": null}, {"text": "rhombohedral", "start": 452, "end": 464, "annotation": null}, {"text": "phase", "start": 465, "end": 470, "annotation": null}, {"text": "are", "start": 471, "end": 474, "annotation": null}, {"text": "found", "start": 475, "end": 480, "annotation": null}, {"text": "disappeared", "start": 481, "end": 492, "annotation": null}, {"text": ".", "start": 492, "end": 493, "annotation": null}], [{"text": "Optical", "start": 494, "end": 501, "annotation": null}, {"text": "response", "start": 502, "end": 510, "annotation": null}, {"text": "revealed", "start": 511, "end": 519, "annotation": null}, {"text": "weakening", "start": 520, "end": 529, "annotation": null}, {"text": "of", "start": 530, "end": 532, "annotation": null}, {"text": "the", "start": 533, "end": 536, "annotation": null}, {"text": "d-d", "start": 537, "end": 540, "annotation": null}, {"text": "transitions", "start": 541, "end": 552, "annotation": null}, {"text": "with", "start": 553, "end": 557, "annotation": null}, {"text": "Pb", "start": 558, "end": 560, "annotation": "DOPANT"}, {"text": "addition", "start": 561, "end": 569, "annotation": null}, {"text": "indicating", "start": 570, "end": 580, "annotation": null}, {"text": "change", "start": 581, "end": 587, "annotation": null}, {"text": "in", "start": 588, "end": 590, "annotation": null}, {"text": "the", "start": 591, "end": 594, "annotation": null}, {"text": "Fe", "start": 595, "end": 597, "annotation": null}, {"text": "atoms", "start": 598, "end": 603, "annotation": null}, {"text": "environment", "start": 604, "end": 615, "annotation": null}, {"text": "consistent", "start": 616, "end": 626, "annotation": null}, {"text": "with", "start": 627, "end": 631, "annotation": null}, {"text": "the", "start": 632, "end": 635, "annotation": null}, {"text": "transition", "start": 636, "end": 646, "annotation": null}, {"text": "from", "start": 647, "end": 651, "annotation": null}, {"text": "non-centrosymmetric", "start": 652, "end": 671, "annotation": null}, {"text": "to", "start": 672, "end": 674, "annotation": null}, {"text": "the", "start": 675, "end": 678, "annotation": null}, {"text": "centrosymmetric", "start": 679, "end": 694, "annotation": null}, {"text": "structure", "start": 695, "end": 704, "annotation": null}, {"text": ".", "start": 704, "end": 705, "annotation": null}], [{"text": "Transport", "start": 706, "end": 715, "annotation": null}, {"text": "and", "start": 716, "end": 719, "annotation": null}, {"text": "dielectric", "start": 720, "end": 730, "annotation": null}, {"text": "responses", "start": 731, "end": 740, "annotation": null}, {"text": "are", "start": 741, "end": 744, "annotation": null}, {"text": "explained", "start": 745, "end": 754, "annotation": null}, {"text": "in", "start": 755, "end": 757, "annotation": null}, {"text": "terms", "start": 758, "end": 763, "annotation": null}, {"text": "of", "start": 764, "end": 766, "annotation": null}, {"text": "hopping", "start": 767, "end": 774, "annotation": null}, {"text": "due", "start": 775, "end": 778, "annotation": null}, {"text": "to", "start": 779, "end": 781, "annotation": null}, {"text": "the", "start": 782, "end": 785, "annotation": null}, {"text": "presence", "start": 786, "end": 794, "annotation": null}, {"text": "of", "start": 795, "end": 797, "annotation": null}, {"text": "defects", "start": 798, "end": 805, "annotation": null}, {"text": "like", "start": 806, "end": 810, "annotation": null}, {"text": "oxygen", "start": 811, "end": 817, "annotation": null}, {"text": "vacancies", "start": 818, "end": 827, "annotation": null}, {"text": "and", "start": 828, "end": 831, "annotation": null}, {"text": "grain", "start": 832, "end": 837, "annotation": null}, {"text": "boundary", "start": 838, "end": 846, "annotation": null}, {"text": "conduction", "start": 847, "end": 857, "annotation": null}, {"text": ".", "start": 857, "end": 858, "annotation": null}], [{"text": "In", "start": 859, "end": 861, "annotation": null}, {"text": "the", "start": 862, "end": 865, "annotation": null}, {"text": "high", "start": 866, "end": 870, "annotation": null}, {"text": "temperature", "start": 871, "end": 882, "annotation": null}, {"text": "regime", "start": 883, "end": 889, "annotation": null}, {"text": ",", "start": 889, "end": 890, "annotation": null}, {"text": "grain", "start": 891, "end": 896, "annotation": null}, {"text": "boundary", "start": 897, "end": 905, "annotation": null}, {"text": "conduction", "start": 906, "end": 916, "annotation": null}, {"text": "led", "start": 917, "end": 920, "annotation": null}, {"text": "to", "start": 921, "end": 923, "annotation": null}, {"text": "decrease", "start": 924, "end": 932, "annotation": null}, {"text": "in", "start": 933, "end": 935, "annotation": null}, {"text": "resistivity", "start": 936, "end": 947, "annotation": null}, {"text": "with", "start": 948, "end": 952, "annotation": null}, {"text": "the", "start": 953, "end": 956, "annotation": null}, {"text": "presence", "start": 957, "end": 965, "annotation": null}, {"text": "of", "start": 966, "end": 968, "annotation": null}, {"text": "a", "start": 969, "end": 970, "annotation": null}, {"text": "hump", "start": 971, "end": 975, "annotation": null}, {"text": "that", "start": 976, "end": 980, "annotation": null}, {"text": "is", "start": 981, "end": 983, "annotation": null}, {"text": "associated", "start": 984, "end": 994, "annotation": null}, {"text": "with", "start": 995, "end": 999, "annotation": null}, {"text": "hopping", "start": 1000, "end": 1007, "annotation": null}, {"text": "conduction", "start": 1008, "end": 1018, "annotation": null}, {"text": ".", "start": 1018, "end": 1019, "annotation": null}], [{"text": "Extrinsic", "start": 1020, "end": 1029, "annotation": null}, {"text": "contributions", "start": 1030, "end": 1043, "annotation": null}, {"text": "in", "start": 1044, "end": 1046, "annotation": null}, {"text": "the", "start": 1047, "end": 1050, "annotation": null}, {"text": "transport", "start": 1051, "end": 1060, "annotation": null}, {"text": "properties", "start": 1061, "end": 1071, "annotation": null}, {"text": "correlate", "start": 1072, "end": 1081, "annotation": null}, {"text": "well", "start": 1082, "end": 1086, "annotation": null}, {"text": "with", "start": 1087, "end": 1091, "annotation": null}, {"text": "dielectric", "start": 1092, "end": 1102, "annotation": null}, {"text": "response", "start": 1103, "end": 1111, "annotation": null}, {"text": ".", "start": 1111, "end": 1112, "annotation": null}], [{"text": "Magnetic", "start": 1113, "end": 1121, "annotation": null}, {"text": "and", "start": 1122, "end": 1125, "annotation": null}, {"text": "ferroelectric", "start": 1126, "end": 1139, "annotation": null}, {"text": "responses", "start": 1140, "end": 1149, "annotation": null}, {"text": "are", "start": 1150, "end": 1153, "annotation": null}, {"text": "also", "start": 1154, "end": 1158, "annotation": null}, {"text": "presented", "start": 1159, "end": 1168, "annotation": null}, {"text": "where", "start": 1169, "end": 1174, "annotation": null}, {"text": "role", "start": 1175, "end": 1179, "annotation": null}, {"text": "of", "start": 1180, "end": 1182, "annotation": null}, {"text": "oxygen", "start": 1183, "end": 1189, "annotation": null}, {"text": "vacancies", "start": 1190, "end": 1199, "annotation": null}, {"text": "defects", "start": 1200, "end": 1207, "annotation": null}, {"text": "has", "start": 1208, "end": 1211, "annotation": null}, {"text": "been", "start": 1212, "end": 1216, "annotation": null}, {"text": "clearly", "start": 1217, "end": 1224, "annotation": null}, {"text": "identified", "start": 1225, "end": 1235, "annotation": null}, {"text": ".", "start": 1235, "end": 1236, "annotation": null}]], "meta": {"doi": "10.1088/2053-1591/aaa14f"}} {"text": "Rare earth rhodates of the distorted perovskite structure are semiconductors with a band gap of 2.2 eV. They may be doped either n- or p-type. The oxides are stable against photodecomposition at the potential for hydrogen evolution. With ceramic p-type LuRhO3 as the cathode and n-type TiO2 as the anode of an electrolytic cell sufficient photopotential is developed both to photoelectrolyze water in sunlight with no externally applied potential and to generate power simultaneously. LuRhO3 possesses deep lying impurity levels and surface capacitance does not exhibit ideal Mott-Schottky behavior. The Fermi level at the surface of LuRhO3 is pinned at the same potential independent of whether the oxide is p- or n-type.", "meta": {"doi": "10.1016/0039-6028(80)90613-5"}, "_input_hash": 221209901, "_task_hash": 1633870799, "tokens": [[{"text": "Rare", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "earth", "start": 5, "end": 10, "id": 1, "annotation": null}, {"text": "rhodates", "start": 11, "end": 19, "id": 2, "annotation": null}, {"text": "of", "start": 20, "end": 22, "id": 3, "annotation": null}, {"text": "the", "start": 23, "end": 26, "id": 4, "annotation": null}, {"text": "distorted", "start": 27, "end": 36, "id": 5, "annotation": null}, {"text": "perovskite", "start": 37, "end": 47, "id": 6, "annotation": null}, {"text": "structure", "start": 48, "end": 57, "id": 7, "annotation": null}, {"text": "are", "start": 58, "end": 61, "id": 8, "annotation": null}, {"text": "semiconductors", "start": 62, "end": 76, "id": 9, "annotation": null}, {"text": "with", "start": 77, "end": 81, "id": 10, "annotation": null}, {"text": "a", "start": 82, "end": 83, "id": 11, "annotation": null}, {"text": "band", "start": 84, "end": 88, "id": 12, "annotation": null}, {"text": "gap", "start": 89, "end": 92, "id": 13, "annotation": null}, {"text": "of", "start": 93, "end": 95, "id": 14, "annotation": null}, {"text": "2.2", "start": 96, "end": 99, "id": 15, "annotation": null}, {"text": "eV.", "start": 100, "end": 103, "id": 16, "annotation": null}], [{"text": "They", "start": 104, "end": 108, "id": 17, "annotation": "BASEMAT"}, {"text": "may", "start": 109, "end": 112, "id": 18, "annotation": null}, {"text": "be", "start": 113, "end": 115, "id": 19, "annotation": null}, {"text": "doped", "start": 116, "end": 121, "id": 20, "annotation": null}, {"text": "either", "start": 122, "end": 128, "id": 21, "annotation": null}, {"text": "n-", "start": 129, "end": 131, "id": 22, "annotation": "DOPANT"}, {"text": "or", "start": 132, "end": 134, "id": 23, "annotation": null}, {"text": "p", "start": 135, "end": 136, "id": 24, "annotation": "DOPANT"}, {"text": "-", "start": 137, "end": 138, "id": 25, "annotation": null}, {"text": "type", "start": 139, "end": 143, "id": 26, "annotation": "DOPANT"}, {"text": ".", "start": 144, "end": 145, "id": 27, "annotation": null}], [{"text": "The", "start": 146, "end": 149, "id": 28, "annotation": null}, {"text": "oxides", "start": 150, "end": 156, "id": 29, "annotation": null}, {"text": "are", "start": 157, "end": 160, "id": 30, "annotation": null}, {"text": "stable", "start": 161, "end": 167, "id": 31, "annotation": null}, {"text": "against", "start": 168, "end": 175, "id": 32, "annotation": null}, {"text": "photodecomposition", "start": 176, "end": 194, "id": 33, "annotation": null}, {"text": "at", "start": 195, "end": 197, "id": 34, "annotation": null}, {"text": "the", "start": 198, "end": 201, "id": 35, "annotation": null}, {"text": "potential", "start": 202, "end": 211, "id": 36, "annotation": null}, {"text": "for", "start": 212, "end": 215, "id": 37, "annotation": null}, {"text": "hydrogen", "start": 216, "end": 224, "id": 38, "annotation": null}, {"text": "evolution", "start": 225, "end": 234, "id": 39, "annotation": null}, {"text": ".", "start": 235, "end": 236, "id": 40, "annotation": null}], [{"text": "With", "start": 237, "end": 241, "id": 41, "annotation": null}, {"text": "ceramic", "start": 242, "end": 249, "id": 42, "annotation": null}, {"text": "p", "start": 250, "end": 251, "id": 43, "annotation": "DOPANT"}, {"text": "-", "start": 252, "end": 253, "id": 44, "annotation": null}, {"text": "type", "start": 254, "end": 258, "id": 45, "annotation": "DOPANT"}, {"text": "LuRhO3", "start": 259, "end": 265, "id": 46, "annotation": "BASEMAT"}, {"text": "as", "start": 266, "end": 268, "id": 47, "annotation": null}, {"text": "the", "start": 269, "end": 272, "id": 48, "annotation": null}, {"text": "cathode", "start": 273, "end": 280, "id": 49, "annotation": null}, {"text": "and", "start": 281, "end": 284, "id": 50, "annotation": null}, {"text": "n", "start": 285, "end": 286, "id": 51, "annotation": "DOPANT"}, {"text": "-", "start": 287, "end": 288, "id": 52, "annotation": null}, {"text": "type", "start": 289, "end": 293, "id": 53, "annotation": "DOPANT"}, {"text": "TiO2", "start": 294, "end": 298, "id": 54, "annotation": "BASEMAT"}, {"text": "as", "start": 299, "end": 301, "id": 55, "annotation": null}, {"text": "the", "start": 302, "end": 305, "id": 56, "annotation": null}, {"text": "anode", "start": 306, "end": 311, "id": 57, "annotation": null}, {"text": "of", "start": 312, "end": 314, "id": 58, "annotation": null}, {"text": "an", "start": 315, "end": 317, "id": 59, "annotation": null}, {"text": "electrolytic", "start": 318, "end": 330, "id": 60, "annotation": null}, {"text": "cell", "start": 331, "end": 335, "id": 61, "annotation": null}, {"text": "sufficient", "start": 336, "end": 346, "id": 62, "annotation": null}, {"text": "photopotential", "start": 347, "end": 361, "id": 63, "annotation": null}, {"text": "is", "start": 362, "end": 364, "id": 64, "annotation": null}, {"text": "developed", "start": 365, "end": 374, "id": 65, "annotation": null}, {"text": "both", "start": 375, "end": 379, "id": 66, "annotation": null}, {"text": "to", "start": 380, "end": 382, "id": 67, "annotation": null}, {"text": "photoelectrolyze", "start": 383, "end": 399, "id": 68, "annotation": null}, {"text": "water", "start": 400, "end": 405, "id": 69, "annotation": null}, {"text": "in", "start": 406, "end": 408, "id": 70, "annotation": null}, {"text": "sunlight", "start": 409, "end": 417, "id": 71, "annotation": null}, {"text": "with", "start": 418, "end": 422, "id": 72, "annotation": null}, {"text": "no", "start": 423, "end": 425, "id": 73, "annotation": null}, {"text": "externally", "start": 426, "end": 436, "id": 74, "annotation": null}, {"text": "applied", "start": 437, "end": 444, "id": 75, "annotation": null}, {"text": "potential", "start": 445, "end": 454, "id": 76, "annotation": null}, {"text": "and", "start": 455, "end": 458, "id": 77, "annotation": null}, {"text": "to", "start": 459, "end": 461, "id": 78, "annotation": null}, {"text": "generate", "start": 462, "end": 470, "id": 79, "annotation": null}, {"text": "power", "start": 471, "end": 476, "id": 80, "annotation": null}, {"text": "simultaneously", "start": 477, "end": 491, "id": 81, "annotation": null}, {"text": ".", "start": 492, "end": 493, "id": 82, "annotation": null}], [{"text": "LuRhO3", "start": 494, "end": 500, "id": 83, "annotation": null}, {"text": "possesses", "start": 501, "end": 510, "id": 84, "annotation": null}, {"text": "deep", "start": 511, "end": 515, "id": 85, "annotation": null}, {"text": "lying", "start": 516, "end": 521, "id": 86, "annotation": null}, {"text": "impurity", "start": 522, "end": 530, "id": 87, "annotation": null}, {"text": "levels", "start": 531, "end": 537, "id": 88, "annotation": null}, {"text": "and", "start": 538, "end": 541, "id": 89, "annotation": null}, {"text": "surface", "start": 542, "end": 549, "id": 90, "annotation": null}, {"text": "capacitance", "start": 550, "end": 561, "id": 91, "annotation": null}, {"text": "does", "start": 562, "end": 566, "id": 92, "annotation": null}, {"text": "not", "start": 567, "end": 570, "id": 93, "annotation": null}, {"text": "exhibit", "start": 571, "end": 578, "id": 94, "annotation": null}, {"text": "ideal", "start": 579, "end": 584, "id": 95, "annotation": null}, {"text": "Mott", "start": 585, "end": 589, "id": 96, "annotation": null}, {"text": "-", "start": 590, "end": 591, "id": 97, "annotation": null}, {"text": "Schottky", "start": 592, "end": 600, "id": 98, "annotation": null}, {"text": "behavior", "start": 601, "end": 609, "id": 99, "annotation": null}, {"text": ".", "start": 610, "end": 611, "id": 100, "annotation": null}], [{"text": "The", "start": 612, "end": 615, "id": 101, "annotation": null}, {"text": "Fermi", "start": 616, "end": 621, "id": 102, "annotation": null}, {"text": "level", "start": 622, "end": 627, "id": 103, "annotation": null}, {"text": "at", "start": 628, "end": 630, "id": 104, "annotation": null}, {"text": "the", "start": 631, "end": 634, "id": 105, "annotation": null}, {"text": "surface", "start": 635, "end": 642, "id": 106, "annotation": null}, {"text": "of", "start": 643, "end": 645, "id": 107, "annotation": null}, {"text": "LuRhO3", "start": 646, "end": 652, "id": 108, "annotation": null}, {"text": "is", "start": 653, "end": 655, "id": 109, "annotation": null}, {"text": "pinned", "start": 656, "end": 662, "id": 110, "annotation": null}, {"text": "at", "start": 663, "end": 665, "id": 111, "annotation": null}, {"text": "the", "start": 666, "end": 669, "id": 112, "annotation": null}, {"text": "same", "start": 670, "end": 674, "id": 113, "annotation": null}, {"text": "potential", "start": 675, "end": 684, "id": 114, "annotation": null}, {"text": "independent", "start": 685, "end": 696, "id": 115, "annotation": null}, {"text": "of", "start": 697, "end": 699, "id": 116, "annotation": null}, {"text": "whether", "start": 700, "end": 707, "id": 117, "annotation": null}, {"text": "the", "start": 708, "end": 711, "id": 118, "annotation": null}, {"text": "oxide", "start": 712, "end": 717, "id": 119, "annotation": "BASEMAT"}, {"text": "is", "start": 718, "end": 720, "id": 120, "annotation": null}, {"text": "p-", "start": 721, "end": 723, "id": 121, "annotation": "DOPANT"}, {"text": "or", "start": 724, "end": 726, "id": 122, "annotation": null}, {"text": "n", "start": 727, "end": 728, "id": 123, "annotation": "DOPANT"}, {"text": "-", "start": 729, "end": 730, "id": 124, "annotation": null}, {"text": "type", "start": 731, "end": 735, "id": 125, "annotation": "DOPANT"}, {"text": ".", "start": 736, "end": 737, "id": 126, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Transition metal doped La0.08Sr0.92M0.20Ti0.80O3\u2212\u03b4 (M = Mn, Fe, and Co) perovskite oxides were synthesized by the Pechini method. The methane oxidation behavior and the polarization resistance of the solid oxide fuel cells (SOFCs) with the perovskite oxides as anode was subsequently measured as a function of operation temperature. Surface atomic concentrations of the perovskite oxides were evaluated using X-ray photoelectron spectroscopy (XPS) and their relationship to the catalytic activity were discussed with respect to the transition metal dopant. The complete oxidation of methane was predominant in the low-temperature region, while the partial oxidation of methane occurred at high temperatures. Fe- and Co-doped perovskites showed better catalytic activity for the methane oxidation reaction than Mn-doped powder. This phenomenon could be explained by the high atomic concentration with low oxidation states and the resulting high oxygen vacancy concentration in the Fe- and Co-doped perovskite powder samples.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Transition", "start": 0, "end": 10, "annotation": "DOPANT"}, {"text": "metal", "start": 11, "end": 16, "annotation": "DOPANT"}, {"text": "doped", "start": 17, "end": 22, "annotation": null}, {"text": "La0.08Sr0.92M0.20Ti0.80O3\u2212\u03b4", "start": 23, "end": 50, "annotation": null}, {"text": "(", "start": 51, "end": 52, "annotation": null}, {"text": "M", "start": 52, "end": 53, "annotation": null}, {"text": "=", "start": 54, "end": 55, "annotation": null}, {"text": "Mn", "start": 56, "end": 58, "annotation": null}, {"text": ",", "start": 58, "end": 59, "annotation": null}, {"text": "Fe", "start": 60, "end": 62, "annotation": null}, {"text": ",", "start": 62, "end": 63, "annotation": null}, {"text": "and", "start": 64, "end": 67, "annotation": null}, {"text": "Co", "start": 68, "end": 70, "annotation": null}, {"text": ")", "start": 70, "end": 71, "annotation": null}, {"text": "perovskite", "start": 72, "end": 82, "annotation": "BASEMAT"}, {"text": "oxides", "start": 83, "end": 89, "annotation": "BASEMAT"}, {"text": "were", "start": 90, "end": 94, "annotation": null}, {"text": "synthesized", "start": 95, "end": 106, "annotation": null}, {"text": "by", "start": 107, "end": 109, "annotation": null}, {"text": "the", "start": 110, "end": 113, "annotation": null}, {"text": "Pechini", "start": 114, "end": 121, "annotation": null}, {"text": "method", "start": 122, "end": 128, "annotation": null}, {"text": ".", "start": 128, "end": 129, "annotation": null}], [{"text": "The", "start": 130, "end": 133, "annotation": null}, {"text": "methane", "start": 134, "end": 141, "annotation": null}, {"text": "oxidation", "start": 142, "end": 151, "annotation": null}, {"text": "behavior", "start": 152, "end": 160, "annotation": null}, {"text": "and", "start": 161, "end": 164, "annotation": null}, {"text": "the", "start": 165, "end": 168, "annotation": null}, {"text": "polarization", "start": 169, "end": 181, "annotation": null}, {"text": "resistance", "start": 182, "end": 192, "annotation": null}, {"text": "of", "start": 193, "end": 195, "annotation": null}, {"text": "the", "start": 196, "end": 199, "annotation": null}, {"text": "solid", "start": 200, "end": 205, "annotation": null}, {"text": "oxide", "start": 206, "end": 211, "annotation": null}, {"text": "fuel", "start": 212, "end": 216, "annotation": null}, {"text": "cells", "start": 217, "end": 222, "annotation": null}, {"text": "(", "start": 223, "end": 224, "annotation": null}, {"text": "SOFCs", "start": 224, "end": 229, "annotation": null}, {"text": ")", "start": 229, "end": 230, "annotation": null}, {"text": "with", "start": 231, "end": 235, "annotation": null}, {"text": "the", "start": 236, "end": 239, "annotation": null}, {"text": "perovskite", "start": 240, "end": 250, "annotation": null}, {"text": "oxides", "start": 251, "end": 257, "annotation": null}, {"text": "as", "start": 258, "end": 260, "annotation": null}, {"text": "anode", "start": 261, "end": 266, "annotation": null}, {"text": "was", "start": 267, "end": 270, "annotation": null}, {"text": "subsequently", "start": 271, "end": 283, "annotation": null}, {"text": "measured", "start": 284, "end": 292, "annotation": null}, {"text": "as", "start": 293, "end": 295, "annotation": null}, {"text": "a", "start": 296, "end": 297, "annotation": null}, {"text": "function", "start": 298, "end": 306, "annotation": null}, {"text": "of", "start": 307, "end": 309, "annotation": null}, {"text": "operation", "start": 310, "end": 319, "annotation": null}, {"text": "temperature", "start": 320, "end": 331, "annotation": null}, {"text": ".", "start": 331, "end": 332, "annotation": null}], [{"text": "Surface", "start": 333, "end": 340, "annotation": null}, {"text": "atomic", "start": 341, "end": 347, "annotation": null}, {"text": "concentrations", "start": 348, "end": 362, "annotation": null}, {"text": "of", "start": 363, "end": 365, "annotation": null}, {"text": "the", "start": 366, "end": 369, "annotation": null}, {"text": "perovskite", "start": 370, "end": 380, "annotation": null}, {"text": "oxides", "start": 381, "end": 387, "annotation": null}, {"text": "were", "start": 388, "end": 392, "annotation": null}, {"text": "evaluated", "start": 393, "end": 402, "annotation": null}, {"text": "using", "start": 403, "end": 408, "annotation": null}, {"text": "X-ray", "start": 409, "end": 414, "annotation": null}, {"text": "photoelectron", "start": 415, "end": 428, "annotation": null}, {"text": "spectroscopy", "start": 429, "end": 441, "annotation": null}, {"text": "(", "start": 442, "end": 443, "annotation": null}, {"text": "XPS", "start": 443, "end": 446, "annotation": null}, {"text": ")", "start": 446, "end": 447, "annotation": null}, {"text": "and", "start": 448, "end": 451, "annotation": null}, {"text": "their", "start": 452, "end": 457, "annotation": null}, {"text": "relationship", "start": 458, "end": 470, "annotation": null}, {"text": "to", "start": 471, "end": 473, "annotation": null}, {"text": "the", "start": 474, "end": 477, "annotation": null}, {"text": "catalytic", "start": 478, "end": 487, "annotation": null}, {"text": "activity", "start": 488, "end": 496, "annotation": null}, {"text": "were", "start": 497, "end": 501, "annotation": null}, {"text": "discussed", "start": 502, "end": 511, "annotation": null}, {"text": "with", "start": 512, "end": 516, "annotation": null}, {"text": "respect", "start": 517, "end": 524, "annotation": null}, {"text": "to", "start": 525, "end": 527, "annotation": null}, {"text": "the", "start": 528, "end": 531, "annotation": null}, {"text": "transition", "start": 532, "end": 542, "annotation": null}, {"text": "metal", "start": 543, "end": 548, "annotation": null}, {"text": "dopant", "start": 549, "end": 555, "annotation": null}, {"text": ".", "start": 555, "end": 556, "annotation": null}], [{"text": "The", "start": 557, "end": 560, "annotation": null}, {"text": "complete", "start": 561, "end": 569, "annotation": null}, {"text": "oxidation", "start": 570, "end": 579, "annotation": null}, {"text": "of", "start": 580, "end": 582, "annotation": null}, {"text": "methane", "start": 583, "end": 590, "annotation": null}, {"text": "was", "start": 591, "end": 594, "annotation": null}, {"text": "predominant", "start": 595, "end": 606, "annotation": null}, {"text": "in", "start": 607, "end": 609, "annotation": null}, {"text": "the", "start": 610, "end": 613, "annotation": null}, {"text": "low", "start": 614, "end": 617, "annotation": null}, {"text": "-", "start": 617, "end": 618, "annotation": null}, {"text": "temperature", "start": 618, "end": 629, "annotation": null}, {"text": "region", "start": 630, "end": 636, "annotation": null}, {"text": ",", "start": 636, "end": 637, "annotation": null}, {"text": "while", "start": 638, "end": 643, "annotation": null}, {"text": "the", "start": 644, "end": 647, "annotation": null}, {"text": "partial", "start": 648, "end": 655, "annotation": null}, {"text": "oxidation", "start": 656, "end": 665, "annotation": null}, {"text": "of", "start": 666, "end": 668, "annotation": null}, {"text": "methane", "start": 669, "end": 676, "annotation": null}, {"text": "occurred", "start": 677, "end": 685, "annotation": null}, {"text": "at", "start": 686, "end": 688, "annotation": null}, {"text": "high", "start": 689, "end": 693, "annotation": null}, {"text": "temperatures", "start": 694, "end": 706, "annotation": null}, {"text": ".", "start": 706, "end": 707, "annotation": null}], [{"text": "Fe-", "start": 708, "end": 711, "annotation": "DOPANT"}, {"text": "and", "start": 712, "end": 715, "annotation": null}, {"text": "Co-doped", "start": 716, "end": 724, "annotation": "DOPANT"}, {"text": "perovskites", "start": 725, "end": 736, "annotation": "BASEMAT"}, {"text": "showed", "start": 737, "end": 743, "annotation": null}, {"text": "better", "start": 744, "end": 750, "annotation": null}, {"text": "catalytic", "start": 751, "end": 760, "annotation": null}, {"text": "activity", "start": 761, "end": 769, "annotation": null}, {"text": "for", "start": 770, "end": 773, "annotation": null}, {"text": "the", "start": 774, "end": 777, "annotation": null}, {"text": "methane", "start": 778, "end": 785, "annotation": null}, {"text": "oxidation", "start": 786, "end": 795, "annotation": null}, {"text": "reaction", "start": 796, "end": 804, "annotation": null}, {"text": "than", "start": 805, "end": 809, "annotation": null}, {"text": "Mn", "start": 810, "end": 812, "annotation": "DOPANT"}, {"text": "-", "start": 812, "end": 813, "annotation": null}, {"text": "doped", "start": 813, "end": 818, "annotation": null}, {"text": "powder", "start": 819, "end": 825, "annotation": "BASEMAT"}, {"text": ".", "start": 825, "end": 826, "annotation": null}], [{"text": "This", "start": 827, "end": 831, "annotation": null}, {"text": "phenomenon", "start": 832, "end": 842, "annotation": null}, {"text": "could", "start": 843, "end": 848, "annotation": null}, {"text": "be", "start": 849, "end": 851, "annotation": null}, {"text": "explained", "start": 852, "end": 861, "annotation": null}, {"text": "by", "start": 862, "end": 864, "annotation": null}, {"text": "the", "start": 865, "end": 868, "annotation": null}, {"text": "high", "start": 869, "end": 873, "annotation": null}, {"text": "atomic", "start": 874, "end": 880, "annotation": null}, {"text": "concentration", "start": 881, "end": 894, "annotation": null}, {"text": "with", "start": 895, "end": 899, "annotation": null}, {"text": "low", "start": 900, "end": 903, "annotation": null}, {"text": "oxidation", "start": 904, "end": 913, "annotation": null}, {"text": "states", "start": 914, "end": 920, "annotation": null}, {"text": "and", "start": 921, "end": 924, "annotation": null}, {"text": "the", "start": 925, "end": 928, "annotation": null}, {"text": "resulting", "start": 929, "end": 938, "annotation": null}, {"text": "high", "start": 939, "end": 943, "annotation": null}, {"text": "oxygen", "start": 944, "end": 950, "annotation": null}, {"text": "vacancy", "start": 951, "end": 958, "annotation": null}, {"text": "concentration", "start": 959, "end": 972, "annotation": null}, {"text": "in", "start": 973, "end": 975, "annotation": null}, {"text": "the", "start": 976, "end": 979, "annotation": null}, {"text": "Fe-", "start": 980, "end": 983, "annotation": "DOPANT"}, {"text": "and", "start": 984, "end": 987, "annotation": null}, {"text": "Co-doped", "start": 988, "end": 996, "annotation": "DOPANT"}, {"text": "perovskite", "start": 997, "end": 1007, "annotation": "BASEMAT"}, {"text": "powder", "start": 1008, "end": 1014, "annotation": null}, {"text": "samples", "start": 1015, "end": 1022, "annotation": null}, {"text": ".", "start": 1022, "end": 1023, "annotation": null}]]} -{"remark": "doping_annt1", "text": "This work explores the influence of annealing temperature on microstructure and optical characteristics of Eu3+ doped GdVO4 (0.5, 1, 2 and 3at.% Eu3+) nanopowders produced via co-precipitation synthesis. Samples were annealed at different temperatures (300\u00b0C, 600\u00b0C, 800\u00b0C and 1000\u00b0C) for 2h and XRD analyses confirmed their tetragonal zircon structure. As-synthesized powders were composed of nanorods (diameter\u223c5nm, length\u223c20nm) organized in bundles, which by annealing grew to faceted crystals of round and rectangular shape (50\u2013150nm in size). Energy band gap shifts to higher energy (3.56eV\u21923.72eV) with decreasing crystallite size (43nm\u219213nm). Photoluminescence emission spectra were recorded using two different excitation wavelengths: \u03bb ex =330nm and \u03bb ex =466nm, aiming to excite directly the host matrix and Eu3+ ions, respectively. The intensity of most pronounced red transitions is one order of magnitude higher for \u03bb ex =330nm due to a strong energy absorption of VO 4 3 - groups, followed by efficient energy transfer to Eu3+ ions. We investigated the influence of annealing temperature and concentration of Eu3+ ions on the optical properties, namely photoluminescence emission and excitation, and decay time. The maximum intensity of 5D0 \u2192 7F2 red emission is observed for sample treated at 1000\u00b0C, containing 2at.% of Eu3+ ions. With the increase of Eu3+ concentration (0.5\u20133at.%) the decay time of 5D0 \u2192 7F2 transition decreases from \u223c1ms to 0.5ms.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "This", "start": 0, "end": 4, "annotation": null}, {"text": "work", "start": 5, "end": 9, "annotation": null}, {"text": "explores", "start": 10, "end": 18, "annotation": null}, {"text": "the", "start": 19, "end": 22, "annotation": null}, {"text": "influence", "start": 23, "end": 32, "annotation": null}, {"text": "of", "start": 33, "end": 35, "annotation": null}, {"text": "annealing", "start": 36, "end": 45, "annotation": null}, {"text": "temperature", "start": 46, "end": 57, "annotation": null}, {"text": "on", "start": 58, "end": 60, "annotation": null}, {"text": "microstructure", "start": 61, "end": 75, "annotation": null}, {"text": "and", "start": 76, "end": 79, "annotation": null}, {"text": "optical", "start": 80, "end": 87, "annotation": null}, {"text": "characteristics", "start": 88, "end": 103, "annotation": null}, {"text": "of", "start": 104, "end": 106, "annotation": null}, {"text": "Eu3+", "start": 107, "end": 111, "annotation": "DOPANT"}, {"text": "doped", "start": 112, "end": 117, "annotation": null}, {"text": "GdVO4", "start": 118, "end": 123, "annotation": "BASEMAT"}, {"text": "(", "start": 124, "end": 125, "annotation": null}, {"text": "0.5", "start": 125, "end": 128, "annotation": "DOPMODQ"}, {"text": ",", "start": 128, "end": 129, "annotation": "DOPMODQ"}, {"text": "1", "start": 130, "end": 131, "annotation": "DOPMODQ"}, {"text": ",", "start": 131, "end": 132, "annotation": "DOPMODQ"}, {"text": "2", "start": 133, "end": 134, "annotation": "DOPMODQ"}, {"text": "and", "start": 135, "end": 138, "annotation": "DOPMODQ"}, {"text": "3at.", "start": 139, "end": 143, "annotation": "DOPMODQ"}, {"text": "%", "start": 143, "end": 144, "annotation": "DOPMODQ"}, {"text": "Eu3+", "start": 145, "end": 149, "annotation": "DOPANT"}, {"text": ")", "start": 149, "end": 150, "annotation": null}, {"text": "nanopowders", "start": 151, "end": 162, "annotation": null}, {"text": "produced", "start": 163, "end": 171, "annotation": null}, {"text": "via", "start": 172, "end": 175, "annotation": null}, {"text": "co-precipitation", "start": 176, "end": 192, "annotation": null}, {"text": "synthesis", "start": 193, "end": 202, "annotation": null}, {"text": ".", "start": 202, "end": 203, "annotation": null}], [{"text": "Samples", "start": 204, "end": 211, "annotation": null}, {"text": "were", "start": 212, "end": 216, "annotation": null}, {"text": "annealed", "start": 217, "end": 225, "annotation": null}, {"text": "at", "start": 226, "end": 228, "annotation": null}, {"text": "different", "start": 229, "end": 238, "annotation": null}, {"text": "temperatures", "start": 239, "end": 251, "annotation": null}, {"text": "(", "start": 252, "end": 253, "annotation": null}, {"text": "300", "start": 253, "end": 256, "annotation": null}, {"text": "\u00b0", "start": 256, "end": 257, "annotation": null}, {"text": "C", "start": 257, "end": 258, "annotation": null}, {"text": ",", "start": 258, "end": 259, "annotation": null}, {"text": "600", "start": 260, "end": 263, "annotation": null}, {"text": "\u00b0", "start": 263, "end": 264, "annotation": null}, {"text": "C", "start": 264, "end": 265, "annotation": null}, {"text": ",", "start": 265, "end": 266, "annotation": null}, {"text": "800", "start": 267, "end": 270, "annotation": null}, {"text": "\u00b0", "start": 270, "end": 271, "annotation": null}, {"text": "C", "start": 271, "end": 272, "annotation": null}, {"text": "and", "start": 273, "end": 276, "annotation": null}, {"text": "1000", "start": 277, "end": 281, "annotation": null}, {"text": "\u00b0", "start": 281, "end": 282, "annotation": null}, {"text": "C", "start": 282, "end": 283, "annotation": null}, {"text": ")", "start": 283, "end": 284, "annotation": null}, {"text": "for", "start": 285, "end": 288, "annotation": null}, {"text": "2h", "start": 289, "end": 291, "annotation": null}, {"text": "and", "start": 292, "end": 295, "annotation": null}, {"text": "XRD", "start": 296, "end": 299, "annotation": null}, {"text": "analyses", "start": 300, "end": 308, "annotation": null}, {"text": "confirmed", "start": 309, "end": 318, "annotation": null}, {"text": "their", "start": 319, "end": 324, "annotation": null}, {"text": "tetragonal", "start": 325, "end": 335, "annotation": null}, {"text": "zircon", "start": 336, "end": 342, "annotation": null}, {"text": "structure", "start": 343, "end": 352, "annotation": null}, {"text": ".", "start": 352, "end": 353, "annotation": null}], [{"text": "As-synthesized", "start": 354, "end": 368, "annotation": null}, {"text": "powders", "start": 369, "end": 376, "annotation": null}, {"text": "were", "start": 377, "end": 381, "annotation": null}, {"text": "composed", "start": 382, "end": 390, "annotation": null}, {"text": "of", "start": 391, "end": 393, "annotation": null}, {"text": "nanorods", "start": 394, "end": 402, "annotation": null}, {"text": "(", "start": 403, "end": 404, "annotation": null}, {"text": "diameter", "start": 404, "end": 412, "annotation": null}, {"text": "\u223c", "start": 412, "end": 413, "annotation": null}, {"text": "5", "start": 413, "end": 414, "annotation": null}, {"text": "nm", "start": 414, "end": 416, "annotation": null}, {"text": ",", "start": 416, "end": 417, "annotation": null}, {"text": "length", "start": 418, "end": 424, "annotation": null}, {"text": "\u223c", "start": 424, "end": 425, "annotation": null}, {"text": "20", "start": 425, "end": 427, "annotation": null}, {"text": "nm", "start": 427, "end": 429, "annotation": null}, {"text": ")", "start": 429, "end": 430, "annotation": null}, {"text": "organized", "start": 431, "end": 440, "annotation": null}, {"text": "in", "start": 441, "end": 443, "annotation": null}, {"text": "bundles", "start": 444, "end": 451, "annotation": null}, {"text": ",", "start": 451, "end": 452, "annotation": null}, {"text": "which", "start": 453, "end": 458, "annotation": null}, {"text": "by", "start": 459, "end": 461, "annotation": null}, {"text": "annealing", "start": 462, "end": 471, "annotation": null}, {"text": "grew", "start": 472, "end": 476, "annotation": null}, {"text": "to", "start": 477, "end": 479, "annotation": null}, {"text": "faceted", "start": 480, "end": 487, "annotation": null}, {"text": "crystals", "start": 488, "end": 496, "annotation": null}, {"text": "of", "start": 497, "end": 499, "annotation": null}, {"text": "round", "start": 500, "end": 505, "annotation": null}, {"text": "and", "start": 506, "end": 509, "annotation": null}, {"text": "rectangular", "start": 510, "end": 521, "annotation": null}, {"text": "shape", "start": 522, "end": 527, "annotation": null}, {"text": "(", "start": 528, "end": 529, "annotation": null}, {"text": "50", "start": 529, "end": 531, "annotation": null}, {"text": "\u2013", "start": 531, "end": 532, "annotation": null}, {"text": "150", "start": 532, "end": 535, "annotation": null}, {"text": "nm", "start": 535, "end": 537, "annotation": null}, {"text": "in", "start": 538, "end": 540, "annotation": null}, {"text": "size", "start": 541, "end": 545, "annotation": null}, {"text": ")", "start": 545, "end": 546, "annotation": null}, {"text": ".", "start": 546, "end": 547, "annotation": null}], [{"text": "Energy", "start": 548, "end": 554, "annotation": null}, {"text": "band", "start": 555, "end": 559, "annotation": null}, {"text": "gap", "start": 560, "end": 563, "annotation": null}, {"text": "shifts", "start": 564, "end": 570, "annotation": null}, {"text": "to", "start": 571, "end": 573, "annotation": null}, {"text": "higher", "start": 574, "end": 580, "annotation": null}, {"text": "energy", "start": 581, "end": 587, "annotation": null}, {"text": "(", "start": 588, "end": 589, "annotation": null}, {"text": "3.56eV\u21923.72eV", "start": 589, "end": 602, "annotation": null}, {"text": ")", "start": 602, "end": 603, "annotation": null}, {"text": "with", "start": 604, "end": 608, "annotation": null}, {"text": "decreasing", "start": 609, "end": 619, "annotation": null}, {"text": "crystallite", "start": 620, "end": 631, "annotation": null}, {"text": "size", "start": 632, "end": 636, "annotation": null}, {"text": "(", "start": 637, "end": 638, "annotation": null}, {"text": "43nm\u219213nm", "start": 638, "end": 647, "annotation": null}, {"text": ")", "start": 647, "end": 648, "annotation": null}, {"text": ".", "start": 648, "end": 649, "annotation": null}], [{"text": "Photoluminescence", "start": 650, "end": 667, "annotation": null}, {"text": "emission", "start": 668, "end": 676, "annotation": null}, {"text": "spectra", "start": 677, "end": 684, "annotation": null}, {"text": "were", "start": 685, "end": 689, "annotation": null}, {"text": "recorded", "start": 690, "end": 698, "annotation": null}, {"text": "using", "start": 699, "end": 704, "annotation": null}, {"text": "two", "start": 705, "end": 708, "annotation": null}, {"text": "different", "start": 709, "end": 718, "annotation": null}, {"text": "excitation", "start": 719, "end": 729, "annotation": null}, {"text": "wavelengths", "start": 730, "end": 741, "annotation": null}, {"text": ":", "start": 741, "end": 742, "annotation": null}, {"text": "\u03bb", "start": 743, "end": 744, "annotation": null}, {"text": "ex", "start": 745, "end": 747, "annotation": null}, {"text": "=", "start": 748, "end": 749, "annotation": null}, {"text": "330", "start": 749, "end": 752, "annotation": null}, {"text": "nm", "start": 752, "end": 754, "annotation": null}, {"text": "and", "start": 755, "end": 758, "annotation": null}, {"text": "\u03bb", "start": 759, "end": 760, "annotation": null}, {"text": "ex", "start": 761, "end": 763, "annotation": null}, {"text": "=", "start": 764, "end": 765, "annotation": null}, {"text": "466", "start": 765, "end": 768, "annotation": null}, {"text": "nm", "start": 768, "end": 770, "annotation": null}, {"text": ",", "start": 770, "end": 771, "annotation": null}, {"text": "aiming", "start": 772, "end": 778, "annotation": null}, {"text": "to", "start": 779, "end": 781, "annotation": null}, {"text": "excite", "start": 782, "end": 788, "annotation": null}, {"text": "directly", "start": 789, "end": 797, "annotation": null}, {"text": "the", "start": 798, "end": 801, "annotation": null}, {"text": "host", "start": 802, "end": 806, "annotation": null}, {"text": "matrix", "start": 807, "end": 813, "annotation": null}, {"text": "and", "start": 814, "end": 817, "annotation": null}, {"text": "Eu3+", "start": 818, "end": 822, "annotation": "DOPANT"}, {"text": "ions", "start": 823, "end": 827, "annotation": null}, {"text": ",", "start": 827, "end": 828, "annotation": null}, {"text": "respectively", "start": 829, "end": 841, "annotation": null}, {"text": ".", "start": 841, "end": 842, "annotation": null}], [{"text": "The", "start": 843, "end": 846, "annotation": null}, {"text": "intensity", "start": 847, "end": 856, "annotation": null}, {"text": "of", "start": 857, "end": 859, "annotation": null}, {"text": "most", "start": 860, "end": 864, "annotation": null}, {"text": "pronounced", "start": 865, "end": 875, "annotation": null}, {"text": "red", "start": 876, "end": 879, "annotation": null}, {"text": "transitions", "start": 880, "end": 891, "annotation": null}, {"text": "is", "start": 892, "end": 894, "annotation": null}, {"text": "one", "start": 895, "end": 898, "annotation": null}, {"text": "order", "start": 899, "end": 904, "annotation": null}, {"text": "of", "start": 905, "end": 907, "annotation": null}, {"text": "magnitude", "start": 908, "end": 917, "annotation": null}, {"text": "higher", "start": 918, "end": 924, "annotation": null}, {"text": "for", "start": 925, "end": 928, "annotation": null}, {"text": "\u03bb", "start": 929, "end": 930, "annotation": null}, {"text": "ex", "start": 931, "end": 933, "annotation": null}, {"text": "=", "start": 934, "end": 935, "annotation": null}, {"text": "330", "start": 935, "end": 938, "annotation": null}, {"text": "nm", "start": 938, "end": 940, "annotation": null}, {"text": "due", "start": 941, "end": 944, "annotation": null}, {"text": "to", "start": 945, "end": 947, "annotation": null}, {"text": "a", "start": 948, "end": 949, "annotation": null}, {"text": "strong", "start": 950, "end": 956, "annotation": null}, {"text": "energy", "start": 957, "end": 963, "annotation": null}, {"text": "absorption", "start": 964, "end": 974, "annotation": null}, {"text": "of", "start": 975, "end": 977, "annotation": null}, {"text": "VO", "start": 978, "end": 980, "annotation": null}, {"text": "4", "start": 981, "end": 982, "annotation": null}, {"text": "3", "start": 983, "end": 984, "annotation": null}, {"text": "-", "start": 985, "end": 986, "annotation": null}, {"text": "groups", "start": 987, "end": 993, "annotation": null}, {"text": ",", "start": 993, "end": 994, "annotation": null}, {"text": "followed", "start": 995, "end": 1003, "annotation": null}, {"text": "by", "start": 1004, "end": 1006, "annotation": null}, {"text": "efficient", "start": 1007, "end": 1016, "annotation": null}, {"text": "energy", "start": 1017, "end": 1023, "annotation": null}, {"text": "transfer", "start": 1024, "end": 1032, "annotation": null}, {"text": "to", "start": 1033, "end": 1035, "annotation": null}, {"text": "Eu3+", "start": 1036, "end": 1040, "annotation": "DOPANT"}, {"text": "ions", "start": 1041, "end": 1045, "annotation": null}, {"text": ".", "start": 1045, "end": 1046, "annotation": null}], [{"text": "We", "start": 1047, "end": 1049, "annotation": null}, {"text": "investigated", "start": 1050, "end": 1062, "annotation": null}, {"text": "the", "start": 1063, "end": 1066, "annotation": null}, {"text": "influence", "start": 1067, "end": 1076, "annotation": null}, {"text": "of", "start": 1077, "end": 1079, "annotation": null}, {"text": "annealing", "start": 1080, "end": 1089, "annotation": null}, {"text": "temperature", "start": 1090, "end": 1101, "annotation": null}, {"text": "and", "start": 1102, "end": 1105, "annotation": null}, {"text": "concentration", "start": 1106, "end": 1119, "annotation": null}, {"text": "of", "start": 1120, "end": 1122, "annotation": null}, {"text": "Eu3+", "start": 1123, "end": 1127, "annotation": "DOPANT"}, {"text": "ions", "start": 1128, "end": 1132, "annotation": null}, {"text": "on", "start": 1133, "end": 1135, "annotation": null}, {"text": "the", "start": 1136, "end": 1139, "annotation": null}, {"text": "optical", "start": 1140, "end": 1147, "annotation": null}, {"text": "properties", "start": 1148, "end": 1158, "annotation": null}, {"text": ",", "start": 1158, "end": 1159, "annotation": null}, {"text": "namely", "start": 1160, "end": 1166, "annotation": null}, {"text": "photoluminescence", "start": 1167, "end": 1184, "annotation": null}, {"text": "emission", "start": 1185, "end": 1193, "annotation": null}, {"text": "and", "start": 1194, "end": 1197, "annotation": null}, {"text": "excitation", "start": 1198, "end": 1208, "annotation": null}, {"text": ",", "start": 1208, "end": 1209, "annotation": null}, {"text": "and", "start": 1210, "end": 1213, "annotation": null}, {"text": "decay", "start": 1214, "end": 1219, "annotation": null}, {"text": "time", "start": 1220, "end": 1224, "annotation": null}, {"text": ".", "start": 1224, "end": 1225, "annotation": null}], [{"text": "The", "start": 1226, "end": 1229, "annotation": null}, {"text": "maximum", "start": 1230, "end": 1237, "annotation": null}, {"text": "intensity", "start": 1238, "end": 1247, "annotation": null}, {"text": "of", "start": 1248, "end": 1250, "annotation": null}, {"text": "5D0", "start": 1251, "end": 1254, "annotation": null}, {"text": "\u2192", "start": 1255, "end": 1256, "annotation": null}, {"text": "7F2", "start": 1257, "end": 1260, "annotation": null}, {"text": "red", "start": 1261, "end": 1264, "annotation": null}, {"text": "emission", "start": 1265, "end": 1273, "annotation": null}, {"text": "is", "start": 1274, "end": 1276, "annotation": null}, {"text": "observed", "start": 1277, "end": 1285, "annotation": null}, {"text": "for", "start": 1286, "end": 1289, "annotation": null}, {"text": "sample", "start": 1290, "end": 1296, "annotation": null}, {"text": "treated", "start": 1297, "end": 1304, "annotation": null}, {"text": "at", "start": 1305, "end": 1307, "annotation": null}, {"text": "1000", "start": 1308, "end": 1312, "annotation": null}, {"text": "\u00b0", "start": 1312, "end": 1313, "annotation": null}, {"text": "C", "start": 1313, "end": 1314, "annotation": null}, {"text": ",", "start": 1314, "end": 1315, "annotation": null}, {"text": "containing", "start": 1316, "end": 1326, "annotation": null}, {"text": "2at.", "start": 1327, "end": 1331, "annotation": "DOPMODQ"}, {"text": "%", "start": 1331, "end": 1332, "annotation": "DOPMODQ"}, {"text": "of", "start": 1333, "end": 1335, "annotation": null}, {"text": "Eu3+", "start": 1336, "end": 1340, "annotation": "DOPANT"}, {"text": "ions", "start": 1341, "end": 1345, "annotation": null}, {"text": ".", "start": 1345, "end": 1346, "annotation": null}], [{"text": "With", "start": 1347, "end": 1351, "annotation": null}, {"text": "the", "start": 1352, "end": 1355, "annotation": null}, {"text": "increase", "start": 1356, "end": 1364, "annotation": null}, {"text": "of", "start": 1365, "end": 1367, "annotation": null}, {"text": "Eu3+", "start": 1368, "end": 1372, "annotation": "DOPANT"}, {"text": "concentration", "start": 1373, "end": 1386, "annotation": null}, {"text": "(", "start": 1387, "end": 1388, "annotation": null}, {"text": "0.5", "start": 1388, "end": 1391, "annotation": "DOPMODQ"}, {"text": "\u2013", "start": 1391, "end": 1392, "annotation": "DOPMODQ"}, {"text": "3at.", "start": 1392, "end": 1396, "annotation": "DOPMODQ"}, {"text": "%", "start": 1396, "end": 1397, "annotation": "DOPMODQ"}, {"text": ")", "start": 1397, "end": 1398, "annotation": null}, {"text": "the", "start": 1399, "end": 1402, "annotation": null}, {"text": "decay", "start": 1403, "end": 1408, "annotation": null}, {"text": "time", "start": 1409, "end": 1413, "annotation": null}, {"text": "of", "start": 1414, "end": 1416, "annotation": null}, {"text": "5D0", "start": 1417, "end": 1420, "annotation": null}, {"text": "\u2192", "start": 1421, "end": 1422, "annotation": null}, {"text": "7F2", "start": 1423, "end": 1426, "annotation": null}, {"text": "transition", "start": 1427, "end": 1437, "annotation": null}, {"text": "decreases", "start": 1438, "end": 1447, "annotation": null}, {"text": "from", "start": 1448, "end": 1452, "annotation": null}, {"text": "\u223c", "start": 1453, "end": 1454, "annotation": null}, {"text": "1", "start": 1454, "end": 1455, "annotation": null}, {"text": "ms", "start": 1455, "end": 1457, "annotation": null}, {"text": "to", "start": 1458, "end": 1460, "annotation": null}, {"text": "0.5", "start": 1461, "end": 1464, "annotation": null}, {"text": "ms", "start": 1464, "end": 1466, "annotation": null}, {"text": ".", "start": 1466, "end": 1467, "annotation": null}]]} -{"remark": "doping_annt1", "text": "\u00a9 the Partner Organisations 2014. Here we present a novel approach to prepare N-doped graphene under ambient conditions by denitrifying bacteria CFMI-1. The N element can be effectively introduced into graphene and 8.2% (atom %) N doping level can be achieved. N-doped graphene possesses a size around 300-600 nm and an average thickness of 1-2 nm. This journal is", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Here", "start": 34, "end": 38, "annotation": null}, {"text": "we", "start": 39, "end": 41, "annotation": null}, {"text": "present", "start": 42, "end": 49, "annotation": null}, {"text": "a", "start": 50, "end": 51, "annotation": null}, {"text": "novel", "start": 52, "end": 57, "annotation": null}, {"text": "approach", "start": 58, "end": 66, "annotation": null}, {"text": "to", "start": 67, "end": 69, "annotation": null}, {"text": "prepare", "start": 70, "end": 77, "annotation": null}, {"text": "N", "start": 78, "end": 79, "annotation": "DOPANT"}, {"text": "-", "start": 79, "end": 80, "annotation": null}, {"text": "doped", "start": 80, "end": 85, "annotation": null}, {"text": "graphene", "start": 86, "end": 94, "annotation": "BASEMAT"}, {"text": "under", "start": 95, "end": 100, "annotation": null}, {"text": "ambient", "start": 101, "end": 108, "annotation": null}, {"text": "conditions", "start": 109, "end": 119, "annotation": null}, {"text": "by", "start": 120, "end": 122, "annotation": null}, {"text": "denitrifying", "start": 123, "end": 135, "annotation": null}, {"text": "bacteria", "start": 136, "end": 144, "annotation": null}, {"text": "CFMI-1", "start": 145, "end": 151, "annotation": null}, {"text": ".", "start": 151, "end": 152, "annotation": null}], [{"text": "The", "start": 153, "end": 156, "annotation": null}, {"text": "N", "start": 157, "end": 158, "annotation": "DOPANT"}, {"text": "element", "start": 159, "end": 166, "annotation": null}, {"text": "can", "start": 167, "end": 170, "annotation": null}, {"text": "be", "start": 171, "end": 173, "annotation": null}, {"text": "effectively", "start": 174, "end": 185, "annotation": null}, {"text": "introduced", "start": 186, "end": 196, "annotation": null}, {"text": "into", "start": 197, "end": 201, "annotation": null}, {"text": "graphene", "start": 202, "end": 210, "annotation": "BASEMAT"}, {"text": "and", "start": 211, "end": 214, "annotation": null}, {"text": "8.2", "start": 215, "end": 218, "annotation": "DOPMODQ"}, {"text": "%", "start": 218, "end": 219, "annotation": "DOPMODQ"}, {"text": "(", "start": 220, "end": 221, "annotation": null}, {"text": "atom", "start": 221, "end": 225, "annotation": null}, {"text": "%", "start": 226, "end": 227, "annotation": null}, {"text": ")", "start": 227, "end": 228, "annotation": null}, {"text": "N", "start": 229, "end": 230, "annotation": "DOPANT"}, {"text": "doping", "start": 231, "end": 237, "annotation": null}, {"text": "level", "start": 238, "end": 243, "annotation": null}, {"text": "can", "start": 244, "end": 247, "annotation": null}, {"text": "be", "start": 248, "end": 250, "annotation": null}, {"text": "achieved", "start": 251, "end": 259, "annotation": null}, {"text": ".", "start": 259, "end": 260, "annotation": null}], [{"text": "N", "start": 261, "end": 262, "annotation": "DOPANT"}, {"text": "-", "start": 262, "end": 263, "annotation": null}, {"text": "doped", "start": 263, "end": 268, "annotation": null}, {"text": "graphene", "start": 269, "end": 277, "annotation": "BASEMAT"}, {"text": "possesses", "start": 278, "end": 287, "annotation": null}, {"text": "a", "start": 288, "end": 289, "annotation": null}, {"text": "size", "start": 290, "end": 294, "annotation": null}, {"text": "around", "start": 295, "end": 301, "annotation": null}, {"text": "300-600", "start": 302, "end": 309, "annotation": null}, {"text": "nm", "start": 310, "end": 312, "annotation": null}, {"text": "and", "start": 313, "end": 316, "annotation": null}, {"text": "an", "start": 317, "end": 319, "annotation": null}, {"text": "average", "start": 320, "end": 327, "annotation": null}, {"text": "thickness", "start": 328, "end": 337, "annotation": null}, {"text": "of", "start": 338, "end": 340, "annotation": null}, {"text": "1-2", "start": 341, "end": 344, "annotation": null}, {"text": "nm", "start": 345, "end": 347, "annotation": null}, {"text": ".", "start": 347, "end": 348, "annotation": null}], [{"text": "This", "start": 349, "end": 353, "annotation": null}, {"text": "journal", "start": 354, "end": 361, "annotation": null}, {"text": "is", "start": 362, "end": 364, "annotation": null}]]} -{"remark": "doping_annt2", "text": "\u00a9 2016 American Chemical Society. We demonstrate the generic value of a rigorous analysis of spike shapes observed in nanoimpact experiments. To this end, we investigate the electrochemical doping of insoluble nanoparticles impacting on a biased electrode surface and develop an analytical model of the doping process is developed that accounts for the diffusion of ions inside nanoparticles as well as a numerical model for the response characteristics of the analogue measurement circuitry. By this means, spike shapes that are experimentally observed in the electrode current are predicted and directly compared with experimental data, while appropriate fitting procedures allow detailed physical insights into the ionic mass transport within the particle. Using the oxidative doping of ferrocene nanoparticles with tetrafluoroborate anions as a paradigm case, we demonstrate that size distributions of particle populations showing excellent agreement with scanning electron microscopy measurements can be extracted from experimental data and ionic diffusion inside the particle can be quantified.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 34, "end": 36, "annotation": null}, {"text": "demonstrate", "start": 37, "end": 48, "annotation": null}, {"text": "the", "start": 49, "end": 52, "annotation": null}, {"text": "generic", "start": 53, "end": 60, "annotation": null}, {"text": "value", "start": 61, "end": 66, "annotation": null}, {"text": "of", "start": 67, "end": 69, "annotation": null}, {"text": "a", "start": 70, "end": 71, "annotation": null}, {"text": "rigorous", "start": 72, "end": 80, "annotation": null}, {"text": "analysis", "start": 81, "end": 89, "annotation": null}, {"text": "of", "start": 90, "end": 92, "annotation": null}, {"text": "spike", "start": 93, "end": 98, "annotation": null}, {"text": "shapes", "start": 99, "end": 105, "annotation": null}, {"text": "observed", "start": 106, "end": 114, "annotation": null}, {"text": "in", "start": 115, "end": 117, "annotation": null}, {"text": "nanoimpact", "start": 118, "end": 128, "annotation": null}, {"text": "experiments", "start": 129, "end": 140, "annotation": null}, {"text": ".", "start": 140, "end": 141, "annotation": null}], [{"text": "To", "start": 142, "end": 144, "annotation": null}, {"text": "this", "start": 145, "end": 149, "annotation": null}, {"text": "end", "start": 150, "end": 153, "annotation": null}, {"text": ",", "start": 153, "end": 154, "annotation": null}, {"text": "we", "start": 155, "end": 157, "annotation": null}, {"text": "investigate", "start": 158, "end": 169, "annotation": null}, {"text": "the", "start": 170, "end": 173, "annotation": null}, {"text": "electrochemical", "start": 174, "end": 189, "annotation": null}, {"text": "doping", "start": 190, "end": 196, "annotation": null}, {"text": "of", "start": 197, "end": 199, "annotation": null}, {"text": "insoluble", "start": 200, "end": 209, "annotation": null}, {"text": "nanoparticles", "start": 210, "end": 223, "annotation": "BASEMAT"}, {"text": "impacting", "start": 224, "end": 233, "annotation": null}, {"text": "on", "start": 234, "end": 236, "annotation": null}, {"text": "a", "start": 237, "end": 238, "annotation": null}, {"text": "biased", "start": 239, "end": 245, "annotation": null}, {"text": "electrode", "start": 246, "end": 255, "annotation": null}, {"text": "surface", "start": 256, "end": 263, "annotation": null}, {"text": "and", "start": 264, "end": 267, "annotation": null}, {"text": "develop", "start": 268, "end": 275, "annotation": null}, {"text": "an", "start": 276, "end": 278, "annotation": null}, {"text": "analytical", "start": 279, "end": 289, "annotation": null}, {"text": "model", "start": 290, "end": 295, "annotation": null}, {"text": "of", "start": 296, "end": 298, "annotation": null}, {"text": "the", "start": 299, "end": 302, "annotation": null}, {"text": "doping", "start": 303, "end": 309, "annotation": null}, {"text": "process", "start": 310, "end": 317, "annotation": null}, {"text": "is", "start": 318, "end": 320, "annotation": null}, {"text": "developed", "start": 321, "end": 330, "annotation": null}, {"text": "that", "start": 331, "end": 335, "annotation": null}, {"text": "accounts", "start": 336, "end": 344, "annotation": null}, {"text": "for", "start": 345, "end": 348, "annotation": null}, {"text": "the", "start": 349, "end": 352, "annotation": null}, {"text": "diffusion", "start": 353, "end": 362, "annotation": null}, {"text": "of", "start": 363, "end": 365, "annotation": null}, {"text": "ions", "start": 366, "end": 370, "annotation": null}, {"text": "inside", "start": 371, "end": 377, "annotation": null}, {"text": "nanoparticles", "start": 378, "end": 391, "annotation": null}, {"text": "as", "start": 392, "end": 394, "annotation": null}, {"text": "well", "start": 395, "end": 399, "annotation": null}, {"text": "as", "start": 400, "end": 402, "annotation": null}, {"text": "a", "start": 403, "end": 404, "annotation": null}, {"text": "numerical", "start": 405, "end": 414, "annotation": null}, {"text": "model", "start": 415, "end": 420, "annotation": null}, {"text": "for", "start": 421, "end": 424, "annotation": null}, {"text": "the", "start": 425, "end": 428, "annotation": null}, {"text": "response", "start": 429, "end": 437, "annotation": null}, {"text": "characteristics", "start": 438, "end": 453, "annotation": null}, {"text": "of", "start": 454, "end": 456, "annotation": null}, {"text": "the", "start": 457, "end": 460, "annotation": null}, {"text": "analogue", "start": 461, "end": 469, "annotation": null}, {"text": "measurement", "start": 470, "end": 481, "annotation": null}, {"text": "circuitry", "start": 482, "end": 491, "annotation": null}, {"text": ".", "start": 491, "end": 492, "annotation": null}], [{"text": "By", "start": 493, "end": 495, "annotation": null}, {"text": "this", "start": 496, "end": 500, "annotation": null}, {"text": "means", "start": 501, "end": 506, "annotation": null}, {"text": ",", "start": 506, "end": 507, "annotation": null}, {"text": "spike", "start": 508, "end": 513, "annotation": null}, {"text": "shapes", "start": 514, "end": 520, "annotation": null}, {"text": "that", "start": 521, "end": 525, "annotation": null}, {"text": "are", "start": 526, "end": 529, "annotation": null}, {"text": "experimentally", "start": 530, "end": 544, "annotation": null}, {"text": "observed", "start": 545, "end": 553, "annotation": null}, {"text": "in", "start": 554, "end": 556, "annotation": null}, {"text": "the", "start": 557, "end": 560, "annotation": null}, {"text": "electrode", "start": 561, "end": 570, "annotation": null}, {"text": "current", "start": 571, "end": 578, "annotation": null}, {"text": "are", "start": 579, "end": 582, "annotation": null}, {"text": "predicted", "start": 583, "end": 592, "annotation": null}, {"text": "and", "start": 593, "end": 596, "annotation": null}, {"text": "directly", "start": 597, "end": 605, "annotation": null}, {"text": "compared", "start": 606, "end": 614, "annotation": null}, {"text": "with", "start": 615, "end": 619, "annotation": null}, {"text": "experimental", "start": 620, "end": 632, "annotation": null}, {"text": "data", "start": 633, "end": 637, "annotation": null}, {"text": ",", "start": 637, "end": 638, "annotation": null}, {"text": "while", "start": 639, "end": 644, "annotation": null}, {"text": "appropriate", "start": 645, "end": 656, "annotation": null}, {"text": "fitting", "start": 657, "end": 664, "annotation": null}, {"text": "procedures", "start": 665, "end": 675, "annotation": null}, {"text": "allow", "start": 676, "end": 681, "annotation": null}, {"text": "detailed", "start": 682, "end": 690, "annotation": null}, {"text": "physical", "start": 691, "end": 699, "annotation": null}, {"text": "insights", "start": 700, "end": 708, "annotation": null}, {"text": "into", "start": 709, "end": 713, "annotation": null}, {"text": "the", "start": 714, "end": 717, "annotation": null}, {"text": "ionic", "start": 718, "end": 723, "annotation": null}, {"text": "mass", "start": 724, "end": 728, "annotation": null}, {"text": "transport", "start": 729, "end": 738, "annotation": null}, {"text": "within", "start": 739, "end": 745, "annotation": null}, {"text": "the", "start": 746, "end": 749, "annotation": null}, {"text": "particle", "start": 750, "end": 758, "annotation": null}, {"text": ".", "start": 758, "end": 759, "annotation": null}], [{"text": "Using", "start": 760, "end": 765, "annotation": null}, {"text": "the", "start": 766, "end": 769, "annotation": null}, {"text": "oxidative", "start": 770, "end": 779, "annotation": null}, {"text": "doping", "start": 780, "end": 786, "annotation": null}, {"text": "of", "start": 787, "end": 789, "annotation": null}, {"text": "ferrocene", "start": 790, "end": 799, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 800, "end": 813, "annotation": "BASEMAT"}, {"text": "with", "start": 814, "end": 818, "annotation": null}, {"text": "tetrafluoroborate", "start": 819, "end": 836, "annotation": "DOPANT"}, {"text": "anions", "start": 837, "end": 843, "annotation": "DOPANT"}, {"text": "as", "start": 844, "end": 846, "annotation": null}, {"text": "a", "start": 847, "end": 848, "annotation": null}, {"text": "paradigm", "start": 849, "end": 857, "annotation": null}, {"text": "case", "start": 858, "end": 862, "annotation": null}, {"text": ",", "start": 862, "end": 863, "annotation": null}, {"text": "we", "start": 864, "end": 866, "annotation": null}, {"text": "demonstrate", "start": 867, "end": 878, "annotation": null}, {"text": "that", "start": 879, "end": 883, "annotation": null}, {"text": "size", "start": 884, "end": 888, "annotation": null}, {"text": "distributions", "start": 889, "end": 902, "annotation": null}, {"text": "of", "start": 903, "end": 905, "annotation": null}, {"text": "particle", "start": 906, "end": 914, "annotation": null}, {"text": "populations", "start": 915, "end": 926, "annotation": null}, {"text": "showing", "start": 927, "end": 934, "annotation": null}, {"text": "excellent", "start": 935, "end": 944, "annotation": null}, {"text": "agreement", "start": 945, "end": 954, "annotation": null}, {"text": "with", "start": 955, "end": 959, "annotation": null}, {"text": "scanning", "start": 960, "end": 968, "annotation": null}, {"text": "electron", "start": 969, "end": 977, "annotation": null}, {"text": "microscopy", "start": 978, "end": 988, "annotation": null}, {"text": "measurements", "start": 989, "end": 1001, "annotation": null}, {"text": "can", "start": 1002, "end": 1005, "annotation": null}, {"text": "be", "start": 1006, "end": 1008, "annotation": null}, {"text": "extracted", "start": 1009, "end": 1018, "annotation": null}, {"text": "from", "start": 1019, "end": 1023, "annotation": null}, {"text": "experimental", "start": 1024, "end": 1036, "annotation": null}, {"text": "data", "start": 1037, "end": 1041, "annotation": null}, {"text": "and", "start": 1042, "end": 1045, "annotation": null}, {"text": "ionic", "start": 1046, "end": 1051, "annotation": null}, {"text": "diffusion", "start": 1052, "end": 1061, "annotation": null}, {"text": "inside", "start": 1062, "end": 1068, "annotation": null}, {"text": "the", "start": 1069, "end": 1072, "annotation": null}, {"text": "particle", "start": 1073, "end": 1081, "annotation": null}, {"text": "can", "start": 1082, "end": 1085, "annotation": null}, {"text": "be", "start": 1086, "end": 1088, "annotation": null}, {"text": "quantified", "start": 1089, "end": 1099, "annotation": null}, {"text": ".", "start": 1099, "end": 1100, "annotation": null}]]} +{"remark": "doping_annt1", "text": "Transition metal doped La0.08Sr0.92M0.20Ti0.80O3\u2212\u03b4 (M = Mn, Fe, and Co) perovskite oxides were synthesized by the Pechini method. The methane oxidation behavior and the polarization resistance of the solid oxide fuel cells (SOFCs) with the perovskite oxides as anode was subsequently measured as a function of operation temperature. Surface atomic concentrations of the perovskite oxides were evaluated using X-ray photoelectron spectroscopy (XPS) and their relationship to the catalytic activity were discussed with respect to the transition metal dopant. The complete oxidation of methane was predominant in the low-temperature region, while the partial oxidation of methane occurred at high temperatures. Fe- and Co-doped perovskites showed better catalytic activity for the methane oxidation reaction than Mn-doped powder. This phenomenon could be explained by the high atomic concentration with low oxidation states and the resulting high oxygen vacancy concentration in the Fe- and Co-doped perovskite powder samples.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Transition", "start": 0, "end": 10, "annotation": "DOPANT"}, {"text": "metal", "start": 11, "end": 16, "annotation": "DOPANT"}, {"text": "doped", "start": 17, "end": 22, "annotation": null}, {"text": "La0.08Sr0.92M0.20Ti0.80O3\u2212\u03b4", "start": 23, "end": 50, "annotation": null}, {"text": "(", "start": 51, "end": 52, "annotation": null}, {"text": "M", "start": 52, "end": 53, "annotation": null}, {"text": "=", "start": 54, "end": 55, "annotation": null}, {"text": "Mn", "start": 56, "end": 58, "annotation": null}, {"text": ",", "start": 58, "end": 59, "annotation": null}, {"text": "Fe", "start": 60, "end": 62, "annotation": null}, {"text": ",", "start": 62, "end": 63, "annotation": null}, {"text": "and", "start": 64, "end": 67, "annotation": null}, {"text": "Co", "start": 68, "end": 70, "annotation": null}, {"text": ")", "start": 70, "end": 71, "annotation": null}, {"text": "perovskite", "start": 72, "end": 82, "annotation": "BASEMAT"}, {"text": "oxides", "start": 83, "end": 89, "annotation": "BASEMAT"}, {"text": "were", "start": 90, "end": 94, "annotation": null}, {"text": "synthesized", "start": 95, "end": 106, "annotation": null}, {"text": "by", "start": 107, "end": 109, "annotation": null}, {"text": "the", "start": 110, "end": 113, "annotation": null}, {"text": "Pechini", "start": 114, "end": 121, "annotation": null}, {"text": "method", "start": 122, "end": 128, "annotation": null}, {"text": ".", "start": 128, "end": 129, "annotation": null}], [{"text": "The", "start": 130, "end": 133, "annotation": null}, {"text": "methane", "start": 134, "end": 141, "annotation": null}, {"text": "oxidation", "start": 142, "end": 151, "annotation": null}, {"text": "behavior", "start": 152, "end": 160, "annotation": null}, {"text": "and", "start": 161, "end": 164, "annotation": null}, {"text": "the", "start": 165, "end": 168, "annotation": null}, {"text": "polarization", "start": 169, "end": 181, "annotation": null}, {"text": "resistance", "start": 182, "end": 192, "annotation": null}, {"text": "of", "start": 193, "end": 195, "annotation": null}, {"text": "the", "start": 196, "end": 199, "annotation": null}, {"text": "solid", "start": 200, "end": 205, "annotation": null}, {"text": "oxide", "start": 206, "end": 211, "annotation": null}, {"text": "fuel", "start": 212, "end": 216, "annotation": null}, {"text": "cells", "start": 217, "end": 222, "annotation": null}, {"text": "(", "start": 223, "end": 224, "annotation": null}, {"text": "SOFCs", "start": 224, "end": 229, "annotation": null}, {"text": ")", "start": 229, "end": 230, "annotation": null}, {"text": "with", "start": 231, "end": 235, "annotation": null}, {"text": "the", "start": 236, "end": 239, "annotation": null}, {"text": "perovskite", "start": 240, "end": 250, "annotation": null}, {"text": "oxides", "start": 251, "end": 257, "annotation": null}, {"text": "as", "start": 258, "end": 260, "annotation": null}, {"text": "anode", "start": 261, "end": 266, "annotation": null}, {"text": "was", "start": 267, "end": 270, "annotation": null}, {"text": "subsequently", "start": 271, "end": 283, "annotation": null}, {"text": "measured", "start": 284, "end": 292, "annotation": null}, {"text": "as", "start": 293, "end": 295, "annotation": null}, {"text": "a", "start": 296, "end": 297, "annotation": null}, {"text": "function", "start": 298, "end": 306, "annotation": null}, {"text": "of", "start": 307, "end": 309, "annotation": null}, {"text": "operation", "start": 310, "end": 319, "annotation": null}, {"text": "temperature", "start": 320, "end": 331, "annotation": null}, {"text": ".", "start": 331, "end": 332, "annotation": null}], [{"text": "Surface", "start": 333, "end": 340, "annotation": null}, {"text": "atomic", "start": 341, "end": 347, "annotation": null}, {"text": "concentrations", "start": 348, "end": 362, "annotation": null}, {"text": "of", "start": 363, "end": 365, "annotation": null}, {"text": "the", "start": 366, "end": 369, "annotation": null}, {"text": "perovskite", "start": 370, "end": 380, "annotation": null}, {"text": "oxides", "start": 381, "end": 387, "annotation": null}, {"text": "were", "start": 388, "end": 392, "annotation": null}, {"text": "evaluated", "start": 393, "end": 402, "annotation": null}, {"text": "using", "start": 403, "end": 408, "annotation": null}, {"text": "X-ray", "start": 409, "end": 414, "annotation": null}, {"text": "photoelectron", "start": 415, "end": 428, "annotation": null}, {"text": "spectroscopy", "start": 429, "end": 441, "annotation": null}, {"text": "(", "start": 442, "end": 443, "annotation": null}, {"text": "XPS", "start": 443, "end": 446, "annotation": null}, {"text": ")", "start": 446, "end": 447, "annotation": null}, {"text": "and", "start": 448, "end": 451, "annotation": null}, {"text": "their", "start": 452, "end": 457, "annotation": null}, {"text": "relationship", "start": 458, "end": 470, "annotation": null}, {"text": "to", "start": 471, "end": 473, "annotation": null}, {"text": "the", "start": 474, "end": 477, "annotation": null}, {"text": "catalytic", "start": 478, "end": 487, "annotation": null}, {"text": "activity", "start": 488, "end": 496, "annotation": null}, {"text": "were", "start": 497, "end": 501, "annotation": null}, {"text": "discussed", "start": 502, "end": 511, "annotation": null}, {"text": "with", "start": 512, "end": 516, "annotation": null}, {"text": "respect", "start": 517, "end": 524, "annotation": null}, {"text": "to", "start": 525, "end": 527, "annotation": null}, {"text": "the", "start": 528, "end": 531, "annotation": null}, {"text": "transition", "start": 532, "end": 542, "annotation": null}, {"text": "metal", "start": 543, "end": 548, "annotation": null}, {"text": "dopant", "start": 549, "end": 555, "annotation": null}, {"text": ".", "start": 555, "end": 556, "annotation": null}], [{"text": "The", "start": 557, "end": 560, "annotation": null}, {"text": "complete", "start": 561, "end": 569, "annotation": null}, {"text": "oxidation", "start": 570, "end": 579, "annotation": null}, {"text": "of", "start": 580, "end": 582, "annotation": null}, {"text": "methane", "start": 583, "end": 590, "annotation": null}, {"text": "was", "start": 591, "end": 594, "annotation": null}, {"text": "predominant", "start": 595, "end": 606, "annotation": null}, {"text": "in", "start": 607, "end": 609, "annotation": null}, {"text": "the", "start": 610, "end": 613, "annotation": null}, {"text": "low", "start": 614, "end": 617, "annotation": null}, {"text": "-", "start": 617, "end": 618, "annotation": null}, {"text": "temperature", "start": 618, "end": 629, "annotation": null}, {"text": "region", "start": 630, "end": 636, "annotation": null}, {"text": ",", "start": 636, "end": 637, "annotation": null}, {"text": "while", "start": 638, "end": 643, "annotation": null}, {"text": "the", "start": 644, "end": 647, "annotation": null}, {"text": "partial", "start": 648, "end": 655, "annotation": null}, {"text": "oxidation", "start": 656, "end": 665, "annotation": null}, {"text": "of", "start": 666, "end": 668, "annotation": null}, {"text": "methane", "start": 669, "end": 676, "annotation": null}, {"text": "occurred", "start": 677, "end": 685, "annotation": null}, {"text": "at", "start": 686, "end": 688, "annotation": null}, {"text": "high", "start": 689, "end": 693, "annotation": null}, {"text": "temperatures", "start": 694, "end": 706, "annotation": null}, {"text": ".", "start": 706, "end": 707, "annotation": null}], [{"text": "Fe-", "start": 708, "end": 711, "annotation": "DOPANT"}, {"text": "and", "start": 712, "end": 715, "annotation": null}, {"text": "Co-doped", "start": 716, "end": 724, "annotation": "DOPANT"}, {"text": "perovskites", "start": 725, "end": 736, "annotation": "BASEMAT"}, {"text": "showed", "start": 737, "end": 743, "annotation": null}, {"text": "better", "start": 744, "end": 750, "annotation": null}, {"text": "catalytic", "start": 751, "end": 760, "annotation": null}, {"text": "activity", "start": 761, "end": 769, "annotation": null}, {"text": "for", "start": 770, "end": 773, "annotation": null}, {"text": "the", "start": 774, "end": 777, "annotation": null}, {"text": "methane", "start": 778, "end": 785, "annotation": null}, {"text": "oxidation", "start": 786, "end": 795, "annotation": null}, {"text": "reaction", "start": 796, "end": 804, "annotation": null}, {"text": "than", "start": 805, "end": 809, "annotation": null}, {"text": "Mn", "start": 810, "end": 812, "annotation": "DOPANT"}, {"text": "-", "start": 812, "end": 813, "annotation": null}, {"text": "doped", "start": 813, "end": 818, "annotation": null}, {"text": "powder", "start": 819, "end": 825, "annotation": "BASEMAT"}, {"text": ".", "start": 825, "end": 826, "annotation": null}], [{"text": "This", "start": 827, "end": 831, "annotation": null}, {"text": "phenomenon", "start": 832, "end": 842, "annotation": null}, {"text": "could", "start": 843, "end": 848, "annotation": null}, {"text": "be", "start": 849, "end": 851, "annotation": null}, {"text": "explained", "start": 852, "end": 861, "annotation": null}, {"text": "by", "start": 862, "end": 864, "annotation": null}, {"text": "the", "start": 865, "end": 868, "annotation": null}, {"text": "high", "start": 869, "end": 873, "annotation": null}, {"text": "atomic", "start": 874, "end": 880, "annotation": null}, {"text": "concentration", "start": 881, "end": 894, "annotation": null}, {"text": "with", "start": 895, "end": 899, "annotation": null}, {"text": "low", "start": 900, "end": 903, "annotation": null}, {"text": "oxidation", "start": 904, "end": 913, "annotation": null}, {"text": "states", "start": 914, "end": 920, "annotation": null}, {"text": "and", "start": 921, "end": 924, "annotation": null}, {"text": "the", "start": 925, "end": 928, "annotation": null}, {"text": "resulting", "start": 929, "end": 938, "annotation": null}, {"text": "high", "start": 939, "end": 943, "annotation": null}, {"text": "oxygen", "start": 944, "end": 950, "annotation": null}, {"text": "vacancy", "start": 951, "end": 958, "annotation": null}, {"text": "concentration", "start": 959, "end": 972, "annotation": null}, {"text": "in", "start": 973, "end": 975, "annotation": null}, {"text": "the", "start": 976, "end": 979, "annotation": null}, {"text": "Fe-", "start": 980, "end": 983, "annotation": "DOPANT"}, {"text": "and", "start": 984, "end": 987, "annotation": null}, {"text": "Co-doped", "start": 988, "end": 996, "annotation": "DOPANT"}, {"text": "perovskite", "start": 997, "end": 1007, "annotation": "BASEMAT"}, {"text": "powder", "start": 1008, "end": 1014, "annotation": null}, {"text": "samples", "start": 1015, "end": 1022, "annotation": null}, {"text": ".", "start": 1022, "end": 1023, "annotation": null}]], "meta": {"doi": "10.1016/j.ijhydene.2014.03.008"}} +{"remark": "doping_annt1", "text": "This work explores the influence of annealing temperature on microstructure and optical characteristics of Eu3+ doped GdVO4 (0.5, 1, 2 and 3at.% Eu3+) nanopowders produced via co-precipitation synthesis. Samples were annealed at different temperatures (300\u00b0C, 600\u00b0C, 800\u00b0C and 1000\u00b0C) for 2h and XRD analyses confirmed their tetragonal zircon structure. As-synthesized powders were composed of nanorods (diameter\u223c5nm, length\u223c20nm) organized in bundles, which by annealing grew to faceted crystals of round and rectangular shape (50\u2013150nm in size). Energy band gap shifts to higher energy (3.56eV\u21923.72eV) with decreasing crystallite size (43nm\u219213nm). Photoluminescence emission spectra were recorded using two different excitation wavelengths: \u03bb ex =330nm and \u03bb ex =466nm, aiming to excite directly the host matrix and Eu3+ ions, respectively. The intensity of most pronounced red transitions is one order of magnitude higher for \u03bb ex =330nm due to a strong energy absorption of VO 4 3 - groups, followed by efficient energy transfer to Eu3+ ions. We investigated the influence of annealing temperature and concentration of Eu3+ ions on the optical properties, namely photoluminescence emission and excitation, and decay time. The maximum intensity of 5D0 \u2192 7F2 red emission is observed for sample treated at 1000\u00b0C, containing 2at.% of Eu3+ ions. With the increase of Eu3+ concentration (0.5\u20133at.%) the decay time of 5D0 \u2192 7F2 transition decreases from \u223c1ms to 0.5ms.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "This", "start": 0, "end": 4, "annotation": null}, {"text": "work", "start": 5, "end": 9, "annotation": null}, {"text": "explores", "start": 10, "end": 18, "annotation": null}, {"text": "the", "start": 19, "end": 22, "annotation": null}, {"text": "influence", "start": 23, "end": 32, "annotation": null}, {"text": "of", "start": 33, "end": 35, "annotation": null}, {"text": "annealing", "start": 36, "end": 45, "annotation": null}, {"text": "temperature", "start": 46, "end": 57, "annotation": null}, {"text": "on", "start": 58, "end": 60, "annotation": null}, {"text": "microstructure", "start": 61, "end": 75, "annotation": null}, {"text": "and", "start": 76, "end": 79, "annotation": null}, {"text": "optical", "start": 80, "end": 87, "annotation": null}, {"text": "characteristics", "start": 88, "end": 103, "annotation": null}, {"text": "of", "start": 104, "end": 106, "annotation": null}, {"text": "Eu3+", "start": 107, "end": 111, "annotation": "DOPANT"}, {"text": "doped", "start": 112, "end": 117, "annotation": null}, {"text": "GdVO4", "start": 118, "end": 123, "annotation": "BASEMAT"}, {"text": "(", "start": 124, "end": 125, "annotation": null}, {"text": "0.5", "start": 125, "end": 128, "annotation": "DOPMODQ"}, {"text": ",", "start": 128, "end": 129, "annotation": "DOPMODQ"}, {"text": "1", "start": 130, "end": 131, "annotation": "DOPMODQ"}, {"text": ",", "start": 131, "end": 132, "annotation": "DOPMODQ"}, {"text": "2", "start": 133, "end": 134, "annotation": "DOPMODQ"}, {"text": "and", "start": 135, "end": 138, "annotation": "DOPMODQ"}, {"text": "3at.", "start": 139, "end": 143, "annotation": "DOPMODQ"}, {"text": "%", "start": 143, "end": 144, "annotation": "DOPMODQ"}, {"text": "Eu3+", "start": 145, "end": 149, "annotation": "DOPANT"}, {"text": ")", "start": 149, "end": 150, "annotation": null}, {"text": "nanopowders", "start": 151, "end": 162, "annotation": null}, {"text": "produced", "start": 163, "end": 171, "annotation": null}, {"text": "via", "start": 172, "end": 175, "annotation": null}, {"text": "co-precipitation", "start": 176, "end": 192, "annotation": null}, {"text": "synthesis", "start": 193, "end": 202, "annotation": null}, {"text": ".", "start": 202, "end": 203, "annotation": null}], [{"text": "Samples", "start": 204, "end": 211, "annotation": null}, {"text": "were", "start": 212, "end": 216, "annotation": null}, {"text": "annealed", "start": 217, "end": 225, "annotation": null}, {"text": "at", "start": 226, "end": 228, "annotation": null}, {"text": "different", "start": 229, "end": 238, "annotation": null}, {"text": "temperatures", "start": 239, "end": 251, "annotation": null}, {"text": "(", "start": 252, "end": 253, "annotation": null}, {"text": "300", "start": 253, "end": 256, "annotation": null}, {"text": "\u00b0", "start": 256, "end": 257, "annotation": null}, {"text": "C", "start": 257, "end": 258, "annotation": null}, {"text": ",", "start": 258, "end": 259, "annotation": null}, {"text": "600", "start": 260, "end": 263, "annotation": null}, {"text": "\u00b0", "start": 263, "end": 264, "annotation": null}, {"text": "C", "start": 264, "end": 265, "annotation": null}, {"text": ",", "start": 265, "end": 266, "annotation": null}, {"text": "800", "start": 267, "end": 270, "annotation": null}, {"text": "\u00b0", "start": 270, "end": 271, "annotation": null}, {"text": "C", "start": 271, "end": 272, "annotation": null}, {"text": "and", "start": 273, "end": 276, "annotation": null}, {"text": "1000", "start": 277, "end": 281, "annotation": null}, {"text": "\u00b0", "start": 281, "end": 282, "annotation": null}, {"text": "C", "start": 282, "end": 283, "annotation": null}, {"text": ")", "start": 283, "end": 284, "annotation": null}, {"text": "for", "start": 285, "end": 288, "annotation": null}, {"text": "2h", "start": 289, "end": 291, "annotation": null}, {"text": "and", "start": 292, "end": 295, "annotation": null}, {"text": "XRD", "start": 296, "end": 299, "annotation": null}, {"text": "analyses", "start": 300, "end": 308, "annotation": null}, {"text": "confirmed", "start": 309, "end": 318, "annotation": null}, {"text": "their", "start": 319, "end": 324, "annotation": null}, {"text": "tetragonal", "start": 325, "end": 335, "annotation": null}, {"text": "zircon", "start": 336, "end": 342, "annotation": null}, {"text": "structure", "start": 343, "end": 352, "annotation": null}, {"text": ".", "start": 352, "end": 353, "annotation": null}], [{"text": "As-synthesized", "start": 354, "end": 368, "annotation": null}, {"text": "powders", "start": 369, "end": 376, "annotation": null}, {"text": "were", "start": 377, "end": 381, "annotation": null}, {"text": "composed", "start": 382, "end": 390, "annotation": null}, {"text": "of", "start": 391, "end": 393, "annotation": null}, {"text": "nanorods", "start": 394, "end": 402, "annotation": null}, {"text": "(", "start": 403, "end": 404, "annotation": null}, {"text": "diameter", "start": 404, "end": 412, "annotation": null}, {"text": "\u223c", "start": 412, "end": 413, "annotation": null}, {"text": "5", "start": 413, "end": 414, "annotation": null}, {"text": "nm", "start": 414, "end": 416, "annotation": null}, {"text": ",", "start": 416, "end": 417, "annotation": null}, {"text": "length", "start": 418, "end": 424, "annotation": null}, {"text": "\u223c", "start": 424, "end": 425, "annotation": null}, {"text": "20", "start": 425, "end": 427, "annotation": null}, {"text": "nm", "start": 427, "end": 429, "annotation": null}, {"text": ")", "start": 429, "end": 430, "annotation": null}, {"text": "organized", "start": 431, "end": 440, "annotation": null}, {"text": "in", "start": 441, "end": 443, "annotation": null}, {"text": "bundles", "start": 444, "end": 451, "annotation": null}, {"text": ",", "start": 451, "end": 452, "annotation": null}, {"text": "which", "start": 453, "end": 458, "annotation": null}, {"text": "by", "start": 459, "end": 461, "annotation": null}, {"text": "annealing", "start": 462, "end": 471, "annotation": null}, {"text": "grew", "start": 472, "end": 476, "annotation": null}, {"text": "to", "start": 477, "end": 479, "annotation": null}, {"text": "faceted", "start": 480, "end": 487, "annotation": null}, {"text": "crystals", "start": 488, "end": 496, "annotation": null}, {"text": "of", "start": 497, "end": 499, "annotation": null}, {"text": "round", "start": 500, "end": 505, "annotation": null}, {"text": "and", "start": 506, "end": 509, "annotation": null}, {"text": "rectangular", "start": 510, "end": 521, "annotation": null}, {"text": "shape", "start": 522, "end": 527, "annotation": null}, {"text": "(", "start": 528, "end": 529, "annotation": null}, {"text": "50", "start": 529, "end": 531, "annotation": null}, {"text": "\u2013", "start": 531, "end": 532, "annotation": null}, {"text": "150", "start": 532, "end": 535, "annotation": null}, {"text": "nm", "start": 535, "end": 537, "annotation": null}, {"text": "in", "start": 538, "end": 540, "annotation": null}, {"text": "size", "start": 541, "end": 545, "annotation": null}, {"text": ")", "start": 545, "end": 546, "annotation": null}, {"text": ".", "start": 546, "end": 547, "annotation": null}], [{"text": "Energy", "start": 548, "end": 554, "annotation": null}, {"text": "band", "start": 555, "end": 559, "annotation": null}, {"text": "gap", "start": 560, "end": 563, "annotation": null}, {"text": "shifts", "start": 564, "end": 570, "annotation": null}, {"text": "to", "start": 571, "end": 573, "annotation": null}, {"text": "higher", "start": 574, "end": 580, "annotation": null}, {"text": "energy", "start": 581, "end": 587, "annotation": null}, {"text": "(", "start": 588, "end": 589, "annotation": null}, {"text": "3.56eV\u21923.72eV", "start": 589, "end": 602, "annotation": null}, {"text": ")", "start": 602, "end": 603, "annotation": null}, {"text": "with", "start": 604, "end": 608, "annotation": null}, {"text": "decreasing", "start": 609, "end": 619, "annotation": null}, {"text": "crystallite", "start": 620, "end": 631, "annotation": null}, {"text": "size", "start": 632, "end": 636, "annotation": null}, {"text": "(", "start": 637, "end": 638, "annotation": null}, {"text": "43nm\u219213nm", "start": 638, "end": 647, "annotation": null}, {"text": ")", "start": 647, "end": 648, "annotation": null}, {"text": ".", "start": 648, "end": 649, "annotation": null}], [{"text": "Photoluminescence", "start": 650, "end": 667, "annotation": null}, {"text": "emission", "start": 668, "end": 676, "annotation": null}, {"text": "spectra", "start": 677, "end": 684, "annotation": null}, {"text": "were", "start": 685, "end": 689, "annotation": null}, {"text": "recorded", "start": 690, "end": 698, "annotation": null}, {"text": "using", "start": 699, "end": 704, "annotation": null}, {"text": "two", "start": 705, "end": 708, "annotation": null}, {"text": "different", "start": 709, "end": 718, "annotation": null}, {"text": "excitation", "start": 719, "end": 729, "annotation": null}, {"text": "wavelengths", "start": 730, "end": 741, "annotation": null}, {"text": ":", "start": 741, "end": 742, "annotation": null}, {"text": "\u03bb", "start": 743, "end": 744, "annotation": null}, {"text": "ex", "start": 745, "end": 747, "annotation": null}, {"text": "=", "start": 748, "end": 749, "annotation": null}, {"text": "330", "start": 749, "end": 752, "annotation": null}, {"text": "nm", "start": 752, "end": 754, "annotation": null}, {"text": "and", "start": 755, "end": 758, "annotation": null}, {"text": "\u03bb", "start": 759, "end": 760, "annotation": null}, {"text": "ex", "start": 761, "end": 763, "annotation": null}, {"text": "=", "start": 764, "end": 765, "annotation": null}, {"text": "466", "start": 765, "end": 768, "annotation": null}, {"text": "nm", "start": 768, "end": 770, "annotation": null}, {"text": ",", "start": 770, "end": 771, "annotation": null}, {"text": "aiming", "start": 772, "end": 778, "annotation": null}, {"text": "to", "start": 779, "end": 781, "annotation": null}, {"text": "excite", "start": 782, "end": 788, "annotation": null}, {"text": "directly", "start": 789, "end": 797, "annotation": null}, {"text": "the", "start": 798, "end": 801, "annotation": null}, {"text": "host", "start": 802, "end": 806, "annotation": null}, {"text": "matrix", "start": 807, "end": 813, "annotation": null}, {"text": "and", "start": 814, "end": 817, "annotation": null}, {"text": "Eu3+", "start": 818, "end": 822, "annotation": "DOPANT"}, {"text": "ions", "start": 823, "end": 827, "annotation": null}, {"text": ",", "start": 827, "end": 828, "annotation": null}, {"text": "respectively", "start": 829, "end": 841, "annotation": null}, {"text": ".", "start": 841, "end": 842, "annotation": null}], [{"text": "The", "start": 843, "end": 846, "annotation": null}, {"text": "intensity", "start": 847, "end": 856, "annotation": null}, {"text": "of", "start": 857, "end": 859, "annotation": null}, {"text": "most", "start": 860, "end": 864, "annotation": null}, {"text": "pronounced", "start": 865, "end": 875, "annotation": null}, {"text": "red", "start": 876, "end": 879, "annotation": null}, {"text": "transitions", "start": 880, "end": 891, "annotation": null}, {"text": "is", "start": 892, "end": 894, "annotation": null}, {"text": "one", "start": 895, "end": 898, "annotation": null}, {"text": "order", "start": 899, "end": 904, "annotation": null}, {"text": "of", "start": 905, "end": 907, "annotation": null}, {"text": "magnitude", "start": 908, "end": 917, "annotation": null}, {"text": "higher", "start": 918, "end": 924, "annotation": null}, {"text": "for", "start": 925, "end": 928, "annotation": null}, {"text": "\u03bb", "start": 929, "end": 930, "annotation": null}, {"text": "ex", "start": 931, "end": 933, "annotation": null}, {"text": "=", "start": 934, "end": 935, "annotation": null}, {"text": "330", "start": 935, "end": 938, "annotation": null}, {"text": "nm", "start": 938, "end": 940, "annotation": null}, {"text": "due", "start": 941, "end": 944, "annotation": null}, {"text": "to", "start": 945, "end": 947, "annotation": null}, {"text": "a", "start": 948, "end": 949, "annotation": null}, {"text": "strong", "start": 950, "end": 956, "annotation": null}, {"text": "energy", "start": 957, "end": 963, "annotation": null}, {"text": "absorption", "start": 964, "end": 974, "annotation": null}, {"text": "of", "start": 975, "end": 977, "annotation": null}, {"text": "VO", "start": 978, "end": 980, "annotation": null}, {"text": "4", "start": 981, "end": 982, "annotation": null}, {"text": "3", "start": 983, "end": 984, "annotation": null}, {"text": "-", "start": 985, "end": 986, "annotation": null}, {"text": "groups", "start": 987, "end": 993, "annotation": null}, {"text": ",", "start": 993, "end": 994, "annotation": null}, {"text": "followed", "start": 995, "end": 1003, "annotation": null}, {"text": "by", "start": 1004, "end": 1006, "annotation": null}, {"text": "efficient", "start": 1007, "end": 1016, "annotation": null}, {"text": "energy", "start": 1017, "end": 1023, "annotation": null}, {"text": "transfer", "start": 1024, "end": 1032, "annotation": null}, {"text": "to", "start": 1033, "end": 1035, "annotation": null}, {"text": "Eu3+", "start": 1036, "end": 1040, "annotation": "DOPANT"}, {"text": "ions", "start": 1041, "end": 1045, "annotation": null}, {"text": ".", "start": 1045, "end": 1046, "annotation": null}], [{"text": "We", "start": 1047, "end": 1049, "annotation": null}, {"text": "investigated", "start": 1050, "end": 1062, "annotation": null}, {"text": "the", "start": 1063, "end": 1066, "annotation": null}, {"text": "influence", "start": 1067, "end": 1076, "annotation": null}, {"text": "of", "start": 1077, "end": 1079, "annotation": null}, {"text": "annealing", "start": 1080, "end": 1089, "annotation": null}, {"text": "temperature", "start": 1090, "end": 1101, "annotation": null}, {"text": "and", "start": 1102, "end": 1105, "annotation": null}, {"text": "concentration", "start": 1106, "end": 1119, "annotation": null}, {"text": "of", "start": 1120, "end": 1122, "annotation": null}, {"text": "Eu3+", "start": 1123, "end": 1127, "annotation": "DOPANT"}, {"text": "ions", "start": 1128, "end": 1132, "annotation": null}, {"text": "on", "start": 1133, "end": 1135, "annotation": null}, {"text": "the", "start": 1136, "end": 1139, "annotation": null}, {"text": "optical", "start": 1140, "end": 1147, "annotation": null}, {"text": "properties", "start": 1148, "end": 1158, "annotation": null}, {"text": ",", "start": 1158, "end": 1159, "annotation": null}, {"text": "namely", "start": 1160, "end": 1166, "annotation": null}, {"text": "photoluminescence", "start": 1167, "end": 1184, "annotation": null}, {"text": "emission", "start": 1185, "end": 1193, "annotation": null}, {"text": "and", "start": 1194, "end": 1197, "annotation": null}, {"text": "excitation", "start": 1198, "end": 1208, "annotation": null}, {"text": ",", "start": 1208, "end": 1209, "annotation": null}, {"text": "and", "start": 1210, "end": 1213, "annotation": null}, {"text": "decay", "start": 1214, "end": 1219, "annotation": null}, {"text": "time", "start": 1220, "end": 1224, "annotation": null}, {"text": ".", "start": 1224, "end": 1225, "annotation": null}], [{"text": "The", "start": 1226, "end": 1229, "annotation": null}, {"text": "maximum", "start": 1230, "end": 1237, "annotation": null}, {"text": "intensity", "start": 1238, "end": 1247, "annotation": null}, {"text": "of", "start": 1248, "end": 1250, "annotation": null}, {"text": "5D0", "start": 1251, "end": 1254, "annotation": null}, {"text": "\u2192", "start": 1255, "end": 1256, "annotation": null}, {"text": "7F2", "start": 1257, "end": 1260, "annotation": null}, {"text": "red", "start": 1261, "end": 1264, "annotation": null}, {"text": "emission", "start": 1265, "end": 1273, "annotation": null}, {"text": "is", "start": 1274, "end": 1276, "annotation": null}, {"text": "observed", "start": 1277, "end": 1285, "annotation": null}, {"text": "for", "start": 1286, "end": 1289, "annotation": null}, {"text": "sample", "start": 1290, "end": 1296, "annotation": null}, {"text": "treated", "start": 1297, "end": 1304, "annotation": null}, {"text": "at", "start": 1305, "end": 1307, "annotation": null}, {"text": "1000", "start": 1308, "end": 1312, "annotation": null}, {"text": "\u00b0", "start": 1312, "end": 1313, "annotation": null}, {"text": "C", "start": 1313, "end": 1314, "annotation": null}, {"text": ",", "start": 1314, "end": 1315, "annotation": null}, {"text": "containing", "start": 1316, "end": 1326, "annotation": null}, {"text": "2at.", "start": 1327, "end": 1331, "annotation": "DOPMODQ"}, {"text": "%", "start": 1331, "end": 1332, "annotation": "DOPMODQ"}, {"text": "of", "start": 1333, "end": 1335, "annotation": null}, {"text": "Eu3+", "start": 1336, "end": 1340, "annotation": "DOPANT"}, {"text": "ions", "start": 1341, "end": 1345, "annotation": null}, {"text": ".", "start": 1345, "end": 1346, "annotation": null}], [{"text": "With", "start": 1347, "end": 1351, "annotation": null}, {"text": "the", "start": 1352, "end": 1355, "annotation": null}, {"text": "increase", "start": 1356, "end": 1364, "annotation": null}, {"text": "of", "start": 1365, "end": 1367, "annotation": null}, {"text": "Eu3+", "start": 1368, "end": 1372, "annotation": "DOPANT"}, {"text": "concentration", "start": 1373, "end": 1386, "annotation": null}, {"text": "(", "start": 1387, "end": 1388, "annotation": null}, {"text": "0.5", "start": 1388, "end": 1391, "annotation": "DOPMODQ"}, {"text": "\u2013", "start": 1391, "end": 1392, "annotation": "DOPMODQ"}, {"text": "3at.", "start": 1392, "end": 1396, "annotation": "DOPMODQ"}, {"text": "%", "start": 1396, "end": 1397, "annotation": "DOPMODQ"}, {"text": ")", "start": 1397, "end": 1398, "annotation": null}, {"text": "the", "start": 1399, "end": 1402, "annotation": null}, {"text": "decay", "start": 1403, "end": 1408, "annotation": null}, {"text": "time", "start": 1409, "end": 1413, "annotation": null}, {"text": "of", "start": 1414, "end": 1416, "annotation": null}, {"text": "5D0", "start": 1417, "end": 1420, "annotation": null}, {"text": "\u2192", "start": 1421, "end": 1422, "annotation": null}, {"text": "7F2", "start": 1423, "end": 1426, "annotation": null}, {"text": "transition", "start": 1427, "end": 1437, "annotation": null}, {"text": "decreases", "start": 1438, "end": 1447, "annotation": null}, {"text": "from", "start": 1448, "end": 1452, "annotation": null}, {"text": "\u223c", "start": 1453, "end": 1454, "annotation": null}, {"text": "1", "start": 1454, "end": 1455, "annotation": null}, {"text": "ms", "start": 1455, "end": 1457, "annotation": null}, {"text": "to", "start": 1458, "end": 1460, "annotation": null}, {"text": "0.5", "start": 1461, "end": 1464, "annotation": null}, {"text": "ms", "start": 1464, "end": 1466, "annotation": null}, {"text": ".", "start": 1466, "end": 1467, "annotation": null}]], "meta": {"doi": "10.1016/j.optmat.2013.03.012"}} +{"remark": "doping_annt1", "text": "\u00a9 the Partner Organisations 2014. Here we present a novel approach to prepare N-doped graphene under ambient conditions by denitrifying bacteria CFMI-1. The N element can be effectively introduced into graphene and 8.2% (atom %) N doping level can be achieved. N-doped graphene possesses a size around 300-600 nm and an average thickness of 1-2 nm. This journal is", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Here", "start": 34, "end": 38, "annotation": null}, {"text": "we", "start": 39, "end": 41, "annotation": null}, {"text": "present", "start": 42, "end": 49, "annotation": null}, {"text": "a", "start": 50, "end": 51, "annotation": null}, {"text": "novel", "start": 52, "end": 57, "annotation": null}, {"text": "approach", "start": 58, "end": 66, "annotation": null}, {"text": "to", "start": 67, "end": 69, "annotation": null}, {"text": "prepare", "start": 70, "end": 77, "annotation": null}, {"text": "N", "start": 78, "end": 79, "annotation": "DOPANT"}, {"text": "-", "start": 79, "end": 80, "annotation": null}, {"text": "doped", "start": 80, "end": 85, "annotation": null}, {"text": "graphene", "start": 86, "end": 94, "annotation": "BASEMAT"}, {"text": "under", "start": 95, "end": 100, "annotation": null}, {"text": "ambient", "start": 101, "end": 108, "annotation": null}, {"text": "conditions", "start": 109, "end": 119, "annotation": null}, {"text": "by", "start": 120, "end": 122, "annotation": null}, {"text": "denitrifying", "start": 123, "end": 135, "annotation": null}, {"text": "bacteria", "start": 136, "end": 144, "annotation": null}, {"text": "CFMI-1", "start": 145, "end": 151, "annotation": null}, {"text": ".", "start": 151, "end": 152, "annotation": null}], [{"text": "The", "start": 153, "end": 156, "annotation": null}, {"text": "N", "start": 157, "end": 158, "annotation": "DOPANT"}, {"text": "element", "start": 159, "end": 166, "annotation": null}, {"text": "can", "start": 167, "end": 170, "annotation": null}, {"text": "be", "start": 171, "end": 173, "annotation": null}, {"text": "effectively", "start": 174, "end": 185, "annotation": null}, {"text": "introduced", "start": 186, "end": 196, "annotation": null}, {"text": "into", "start": 197, "end": 201, "annotation": null}, {"text": "graphene", "start": 202, "end": 210, "annotation": "BASEMAT"}, {"text": "and", "start": 211, "end": 214, "annotation": null}, {"text": "8.2", "start": 215, "end": 218, "annotation": "DOPMODQ"}, {"text": "%", "start": 218, "end": 219, "annotation": "DOPMODQ"}, {"text": "(", "start": 220, "end": 221, "annotation": null}, {"text": "atom", "start": 221, "end": 225, "annotation": null}, {"text": "%", "start": 226, "end": 227, "annotation": null}, {"text": ")", "start": 227, "end": 228, "annotation": null}, {"text": "N", "start": 229, "end": 230, "annotation": "DOPANT"}, {"text": "doping", "start": 231, "end": 237, "annotation": null}, {"text": "level", "start": 238, "end": 243, "annotation": null}, {"text": "can", "start": 244, "end": 247, "annotation": null}, {"text": "be", "start": 248, "end": 250, "annotation": null}, {"text": "achieved", "start": 251, "end": 259, "annotation": null}, {"text": ".", "start": 259, "end": 260, "annotation": null}], [{"text": "N", "start": 261, "end": 262, "annotation": "DOPANT"}, {"text": "-", "start": 262, "end": 263, "annotation": null}, {"text": "doped", "start": 263, "end": 268, "annotation": null}, {"text": "graphene", "start": 269, "end": 277, "annotation": "BASEMAT"}, {"text": "possesses", "start": 278, "end": 287, "annotation": null}, {"text": "a", "start": 288, "end": 289, "annotation": null}, {"text": "size", "start": 290, "end": 294, "annotation": null}, {"text": "around", "start": 295, "end": 301, "annotation": null}, {"text": "300-600", "start": 302, "end": 309, "annotation": null}, {"text": "nm", "start": 310, "end": 312, "annotation": null}, {"text": "and", "start": 313, "end": 316, "annotation": null}, {"text": "an", "start": 317, "end": 319, "annotation": null}, {"text": "average", "start": 320, "end": 327, "annotation": null}, {"text": "thickness", "start": 328, "end": 337, "annotation": null}, {"text": "of", "start": 338, "end": 340, "annotation": null}, {"text": "1-2", "start": 341, "end": 344, "annotation": null}, {"text": "nm", "start": 345, "end": 347, "annotation": null}, {"text": ".", "start": 347, "end": 348, "annotation": null}], [{"text": "This", "start": 349, "end": 353, "annotation": null}, {"text": "journal", "start": 354, "end": 361, "annotation": null}, {"text": "is", "start": 362, "end": 364, "annotation": null}]], "meta": {"doi": "10.1039/c4ra06552b"}} +{"remark": "doping_annt2", "text": "\u00a9 2016 American Chemical Society. We demonstrate the generic value of a rigorous analysis of spike shapes observed in nanoimpact experiments. To this end, we investigate the electrochemical doping of insoluble nanoparticles impacting on a biased electrode surface and develop an analytical model of the doping process is developed that accounts for the diffusion of ions inside nanoparticles as well as a numerical model for the response characteristics of the analogue measurement circuitry. By this means, spike shapes that are experimentally observed in the electrode current are predicted and directly compared with experimental data, while appropriate fitting procedures allow detailed physical insights into the ionic mass transport within the particle. Using the oxidative doping of ferrocene nanoparticles with tetrafluoroborate anions as a paradigm case, we demonstrate that size distributions of particle populations showing excellent agreement with scanning electron microscopy measurements can be extracted from experimental data and ionic diffusion inside the particle can be quantified.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 34, "end": 36, "annotation": null}, {"text": "demonstrate", "start": 37, "end": 48, "annotation": null}, {"text": "the", "start": 49, "end": 52, "annotation": null}, {"text": "generic", "start": 53, "end": 60, "annotation": null}, {"text": "value", "start": 61, "end": 66, "annotation": null}, {"text": "of", "start": 67, "end": 69, "annotation": null}, {"text": "a", "start": 70, "end": 71, "annotation": null}, {"text": "rigorous", "start": 72, "end": 80, "annotation": null}, {"text": "analysis", "start": 81, "end": 89, "annotation": null}, {"text": "of", "start": 90, "end": 92, "annotation": null}, {"text": "spike", "start": 93, "end": 98, "annotation": null}, {"text": "shapes", "start": 99, "end": 105, "annotation": null}, {"text": "observed", "start": 106, "end": 114, "annotation": null}, {"text": "in", "start": 115, "end": 117, "annotation": null}, {"text": "nanoimpact", "start": 118, "end": 128, "annotation": null}, {"text": "experiments", "start": 129, "end": 140, "annotation": null}, {"text": ".", "start": 140, "end": 141, "annotation": null}], [{"text": "To", "start": 142, "end": 144, "annotation": null}, {"text": "this", "start": 145, "end": 149, "annotation": null}, {"text": "end", "start": 150, "end": 153, "annotation": null}, {"text": ",", "start": 153, "end": 154, "annotation": null}, {"text": "we", "start": 155, "end": 157, "annotation": null}, {"text": "investigate", "start": 158, "end": 169, "annotation": null}, {"text": "the", "start": 170, "end": 173, "annotation": null}, {"text": "electrochemical", "start": 174, "end": 189, "annotation": null}, {"text": "doping", "start": 190, "end": 196, "annotation": null}, {"text": "of", "start": 197, "end": 199, "annotation": null}, {"text": "insoluble", "start": 200, "end": 209, "annotation": null}, {"text": "nanoparticles", "start": 210, "end": 223, "annotation": "BASEMAT"}, {"text": "impacting", "start": 224, "end": 233, "annotation": null}, {"text": "on", "start": 234, "end": 236, "annotation": null}, {"text": "a", "start": 237, "end": 238, "annotation": null}, {"text": "biased", "start": 239, "end": 245, "annotation": null}, {"text": "electrode", "start": 246, "end": 255, "annotation": null}, {"text": "surface", "start": 256, "end": 263, "annotation": null}, {"text": "and", "start": 264, "end": 267, "annotation": null}, {"text": "develop", "start": 268, "end": 275, "annotation": null}, {"text": "an", "start": 276, "end": 278, "annotation": null}, {"text": "analytical", "start": 279, "end": 289, "annotation": null}, {"text": "model", "start": 290, "end": 295, "annotation": null}, {"text": "of", "start": 296, "end": 298, "annotation": null}, {"text": "the", "start": 299, "end": 302, "annotation": null}, {"text": "doping", "start": 303, "end": 309, "annotation": null}, {"text": "process", "start": 310, "end": 317, "annotation": null}, {"text": "is", "start": 318, "end": 320, "annotation": null}, {"text": "developed", "start": 321, "end": 330, "annotation": null}, {"text": "that", "start": 331, "end": 335, "annotation": null}, {"text": "accounts", "start": 336, "end": 344, "annotation": null}, {"text": "for", "start": 345, "end": 348, "annotation": null}, {"text": "the", "start": 349, "end": 352, "annotation": null}, {"text": "diffusion", "start": 353, "end": 362, "annotation": null}, {"text": "of", "start": 363, "end": 365, "annotation": null}, {"text": "ions", "start": 366, "end": 370, "annotation": null}, {"text": "inside", "start": 371, "end": 377, "annotation": null}, {"text": "nanoparticles", "start": 378, "end": 391, "annotation": null}, {"text": "as", "start": 392, "end": 394, "annotation": null}, {"text": "well", "start": 395, "end": 399, "annotation": null}, {"text": "as", "start": 400, "end": 402, "annotation": null}, {"text": "a", "start": 403, "end": 404, "annotation": null}, {"text": "numerical", "start": 405, "end": 414, "annotation": null}, {"text": "model", "start": 415, "end": 420, "annotation": null}, {"text": "for", "start": 421, "end": 424, "annotation": null}, {"text": "the", "start": 425, "end": 428, "annotation": null}, {"text": "response", "start": 429, "end": 437, "annotation": null}, {"text": "characteristics", "start": 438, "end": 453, "annotation": null}, {"text": "of", "start": 454, "end": 456, "annotation": null}, {"text": "the", "start": 457, "end": 460, "annotation": null}, {"text": "analogue", "start": 461, "end": 469, "annotation": null}, {"text": "measurement", "start": 470, "end": 481, "annotation": null}, {"text": "circuitry", "start": 482, "end": 491, "annotation": null}, {"text": ".", "start": 491, "end": 492, "annotation": null}], [{"text": "By", "start": 493, "end": 495, "annotation": null}, {"text": "this", "start": 496, "end": 500, "annotation": null}, {"text": "means", "start": 501, "end": 506, "annotation": null}, {"text": ",", "start": 506, "end": 507, "annotation": null}, {"text": "spike", "start": 508, "end": 513, "annotation": null}, {"text": "shapes", "start": 514, "end": 520, "annotation": null}, {"text": "that", "start": 521, "end": 525, "annotation": null}, {"text": "are", "start": 526, "end": 529, "annotation": null}, {"text": "experimentally", "start": 530, "end": 544, "annotation": null}, {"text": "observed", "start": 545, "end": 553, "annotation": null}, {"text": "in", "start": 554, "end": 556, "annotation": null}, {"text": "the", "start": 557, "end": 560, "annotation": null}, {"text": "electrode", "start": 561, "end": 570, "annotation": null}, {"text": "current", "start": 571, "end": 578, "annotation": null}, {"text": "are", "start": 579, "end": 582, "annotation": null}, {"text": "predicted", "start": 583, "end": 592, "annotation": null}, {"text": "and", "start": 593, "end": 596, "annotation": null}, {"text": "directly", "start": 597, "end": 605, "annotation": null}, {"text": "compared", "start": 606, "end": 614, "annotation": null}, {"text": "with", "start": 615, "end": 619, "annotation": null}, {"text": "experimental", "start": 620, "end": 632, "annotation": null}, {"text": "data", "start": 633, "end": 637, "annotation": null}, {"text": ",", "start": 637, "end": 638, "annotation": null}, {"text": "while", "start": 639, "end": 644, "annotation": null}, {"text": "appropriate", "start": 645, "end": 656, "annotation": null}, {"text": "fitting", "start": 657, "end": 664, "annotation": null}, {"text": "procedures", "start": 665, "end": 675, "annotation": null}, {"text": "allow", "start": 676, "end": 681, "annotation": null}, {"text": "detailed", "start": 682, "end": 690, "annotation": null}, {"text": "physical", "start": 691, "end": 699, "annotation": null}, {"text": "insights", "start": 700, "end": 708, "annotation": null}, {"text": "into", "start": 709, "end": 713, "annotation": null}, {"text": "the", "start": 714, "end": 717, "annotation": null}, {"text": "ionic", "start": 718, "end": 723, "annotation": null}, {"text": "mass", "start": 724, "end": 728, "annotation": null}, {"text": "transport", "start": 729, "end": 738, "annotation": null}, {"text": "within", "start": 739, "end": 745, "annotation": null}, {"text": "the", "start": 746, "end": 749, "annotation": null}, {"text": "particle", "start": 750, "end": 758, "annotation": null}, {"text": ".", "start": 758, "end": 759, "annotation": null}], [{"text": "Using", "start": 760, "end": 765, "annotation": null}, {"text": "the", "start": 766, "end": 769, "annotation": null}, {"text": "oxidative", "start": 770, "end": 779, "annotation": null}, {"text": "doping", "start": 780, "end": 786, "annotation": null}, {"text": "of", "start": 787, "end": 789, "annotation": null}, {"text": "ferrocene", "start": 790, "end": 799, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 800, "end": 813, "annotation": "BASEMAT"}, {"text": "with", "start": 814, "end": 818, "annotation": null}, {"text": "tetrafluoroborate", "start": 819, "end": 836, "annotation": "DOPANT"}, {"text": "anions", "start": 837, "end": 843, "annotation": "DOPANT"}, {"text": "as", "start": 844, "end": 846, "annotation": null}, {"text": "a", "start": 847, "end": 848, "annotation": null}, {"text": "paradigm", "start": 849, "end": 857, "annotation": null}, {"text": "case", "start": 858, "end": 862, "annotation": null}, {"text": ",", "start": 862, "end": 863, "annotation": null}, {"text": "we", "start": 864, "end": 866, "annotation": null}, {"text": "demonstrate", "start": 867, "end": 878, "annotation": null}, {"text": "that", "start": 879, "end": 883, "annotation": null}, {"text": "size", "start": 884, "end": 888, "annotation": null}, {"text": "distributions", "start": 889, "end": 902, "annotation": null}, {"text": "of", "start": 903, "end": 905, "annotation": null}, {"text": "particle", "start": 906, "end": 914, "annotation": null}, {"text": "populations", "start": 915, "end": 926, "annotation": null}, {"text": "showing", "start": 927, "end": 934, "annotation": null}, {"text": "excellent", "start": 935, "end": 944, "annotation": null}, {"text": "agreement", "start": 945, "end": 954, "annotation": null}, {"text": "with", "start": 955, "end": 959, "annotation": null}, {"text": "scanning", "start": 960, "end": 968, "annotation": null}, {"text": "electron", "start": 969, "end": 977, "annotation": null}, {"text": "microscopy", "start": 978, "end": 988, "annotation": null}, {"text": "measurements", "start": 989, "end": 1001, "annotation": null}, {"text": "can", "start": 1002, "end": 1005, "annotation": null}, {"text": "be", "start": 1006, "end": 1008, "annotation": null}, {"text": "extracted", "start": 1009, "end": 1018, "annotation": null}, {"text": "from", "start": 1019, "end": 1023, "annotation": null}, {"text": "experimental", "start": 1024, "end": 1036, "annotation": null}, {"text": "data", "start": 1037, "end": 1041, "annotation": null}, {"text": "and", "start": 1042, "end": 1045, "annotation": null}, {"text": "ionic", "start": 1046, "end": 1051, "annotation": null}, {"text": "diffusion", "start": 1052, "end": 1061, "annotation": null}, {"text": "inside", "start": 1062, "end": 1068, "annotation": null}, {"text": "the", "start": 1069, "end": 1072, "annotation": null}, {"text": "particle", "start": 1073, "end": 1081, "annotation": null}, {"text": "can", "start": 1082, "end": 1085, "annotation": null}, {"text": "be", "start": 1086, "end": 1088, "annotation": null}, {"text": "quantified", "start": 1089, "end": 1099, "annotation": null}, {"text": ".", "start": 1099, "end": 1100, "annotation": null}]], "meta": {"doi": "10.1021/acs.jpcc.6b04289"}} {"text": "The substitution of manganese and chromium for 6at.% nickel in Ti1.6V0.4Ni leads the rapid quenching synthesis of quinary icosahedral phase (i-phase) evidenced by the observations of 2-, 3- and 5-fold symmetries. As negative electrode in Ni-MH battery, the quinary Ti\u2013V\u2013Ni\u2013Mn\u2013Cr i-phase can deliver a maximum discharge capacity of 278mAhg\u22121 at 30mAg\u22121, larger than that of Ti1.6V0.4Ni master alloy anode owing to Mn and/or Cr doping. After a preliminary test of 30 consecutive cycles the cycling capacity retention rate (CR%) is 80%. The strong chemisorption of hydrogen shown in cyclic voltammetric (CV) response indicates that the electrocatalytic activity improvement for the i-phase negative electrode is highly demanded.", "meta": {"doi": "10.1016/j.matlet.2011.06.059"}, "_input_hash": -628619035, "_task_hash": -2143232196, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "substitution", "start": 4, "end": 16, "id": 1, "annotation": null}, {"text": "of", "start": 17, "end": 19, "id": 2, "annotation": null}, {"text": "manganese", "start": 20, "end": 29, "id": 3, "annotation": null}, {"text": "and", "start": 30, "end": 33, "id": 4, "annotation": null}, {"text": "chromium", "start": 34, "end": 42, "id": 5, "annotation": null}, {"text": "for", "start": 43, "end": 46, "id": 6, "annotation": null}, {"text": "6at.%", "start": 47, "end": 52, "id": 7, "annotation": null}, {"text": "nickel", "start": 53, "end": 59, "id": 8, "annotation": null}, {"text": "in", "start": 60, "end": 62, "id": 9, "annotation": null}, {"text": "Ti1.6V0.4Ni", "start": 63, "end": 74, "id": 10, "annotation": null}, {"text": "leads", "start": 75, "end": 80, "id": 11, "annotation": null}, {"text": "the", "start": 81, "end": 84, "id": 12, "annotation": null}, {"text": "rapid", "start": 85, "end": 90, "id": 13, "annotation": null}, {"text": "quenching", "start": 91, "end": 100, "id": 14, "annotation": null}, {"text": "synthesis", "start": 101, "end": 110, "id": 15, "annotation": null}, {"text": "of", "start": 111, "end": 113, "id": 16, "annotation": null}, {"text": "quinary", "start": 114, "end": 121, "id": 17, "annotation": null}, {"text": "icosahedral", "start": 122, "end": 133, "id": 18, "annotation": null}, {"text": "phase", "start": 134, "end": 139, "id": 19, "annotation": null}, {"text": "(", "start": 140, "end": 141, "id": 20, "annotation": null}, {"text": "i", "start": 142, "end": 143, "id": 21, "annotation": null}, {"text": "-", "start": 144, "end": 145, "id": 22, "annotation": null}, {"text": "phase", "start": 146, "end": 151, "id": 23, "annotation": null}, {"text": ")", "start": 152, "end": 153, "id": 24, "annotation": null}, {"text": "evidenced", "start": 154, "end": 163, "id": 25, "annotation": null}, {"text": "by", "start": 164, "end": 166, "id": 26, "annotation": null}, {"text": "the", "start": 167, "end": 170, "id": 27, "annotation": null}, {"text": "observations", "start": 171, "end": 183, "id": 28, "annotation": null}, {"text": "of", "start": 184, "end": 186, "id": 29, "annotation": null}, {"text": "2-", "start": 187, "end": 189, "id": 30, "annotation": null}, {"text": ",", "start": 190, "end": 191, "id": 31, "annotation": null}, {"text": "3-", "start": 192, "end": 194, "id": 32, "annotation": null}, {"text": "and", "start": 195, "end": 198, "id": 33, "annotation": null}, {"text": "5-fold", "start": 199, "end": 205, "id": 34, "annotation": null}, {"text": "symmetries", "start": 206, "end": 216, "id": 35, "annotation": null}, {"text": ".", "start": 217, "end": 218, "id": 36, "annotation": null}], [{"text": "As", "start": 219, "end": 221, "id": 37, "annotation": null}, {"text": "negative", "start": 222, "end": 230, "id": 38, "annotation": null}, {"text": "electrode", "start": 231, "end": 240, "id": 39, "annotation": null}, {"text": "in", "start": 241, "end": 243, "id": 40, "annotation": null}, {"text": "Ni", "start": 244, "end": 246, "id": 41, "annotation": null}, {"text": "-", "start": 247, "end": 248, "id": 42, "annotation": null}, {"text": "MH", "start": 249, "end": 251, "id": 43, "annotation": null}, {"text": "battery", "start": 252, "end": 259, "id": 44, "annotation": null}, {"text": ",", "start": 260, "end": 261, "id": 45, "annotation": null}, {"text": "the", "start": 262, "end": 265, "id": 46, "annotation": null}, {"text": "quinary", "start": 266, "end": 273, "id": 47, "annotation": null}, {"text": "Ti", "start": 274, "end": 276, "id": 48, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 277, "end": 278, "id": 49, "annotation": null}, {"text": "V", "start": 279, "end": 280, "id": 50, "annotation": null}, {"text": "\u2013", "start": 281, "end": 282, "id": 51, "annotation": null}, {"text": "Ni", "start": 283, "end": 285, "id": 52, "annotation": null}, {"text": "\u2013", "start": 286, "end": 287, "id": 53, "annotation": null}, {"text": "Mn", "start": 288, "end": 290, "id": 54, "annotation": null}, {"text": "\u2013", "start": 291, "end": 292, "id": 55, "annotation": null}, {"text": "Cr", "start": 293, "end": 295, "id": 56, "annotation": "BASEMAT"}, {"text": "i", "start": 296, "end": 297, "id": 57, "annotation": null}, {"text": "-", "start": 298, "end": 299, "id": 58, "annotation": null}, {"text": "phase", "start": 300, "end": 305, "id": 59, "annotation": null}, {"text": "can", "start": 306, "end": 309, "id": 60, "annotation": null}, {"text": "deliver", "start": 310, "end": 317, "id": 61, "annotation": null}, {"text": "a", "start": 318, "end": 319, "id": 62, "annotation": null}, {"text": "maximum", "start": 320, "end": 327, "id": 63, "annotation": null}, {"text": "discharge", "start": 328, "end": 337, "id": 64, "annotation": null}, {"text": "capacity", "start": 338, "end": 346, "id": 65, "annotation": null}, {"text": "of", "start": 347, "end": 349, "id": 66, "annotation": null}, {"text": "278mAhg\u22121", "start": 350, "end": 359, "id": 67, "annotation": null}, {"text": "at", "start": 360, "end": 362, "id": 68, "annotation": null}, {"text": "30mAg\u22121", "start": 363, "end": 370, "id": 69, "annotation": null}, {"text": ",", "start": 371, "end": 372, "id": 70, "annotation": null}, {"text": "larger", "start": 373, "end": 379, "id": 71, "annotation": null}, {"text": "than", "start": 380, "end": 384, "id": 72, "annotation": null}, {"text": "that", "start": 385, "end": 389, "id": 73, "annotation": null}, {"text": "of", "start": 390, "end": 392, "id": 74, "annotation": null}, {"text": "Ti1.6V0.4Ni", "start": 393, "end": 404, "id": 75, "annotation": null}, {"text": "master", "start": 405, "end": 411, "id": 76, "annotation": null}, {"text": "alloy", "start": 412, "end": 417, "id": 77, "annotation": null}, {"text": "anode", "start": 418, "end": 423, "id": 78, "annotation": null}, {"text": "owing", "start": 424, "end": 429, "id": 79, "annotation": null}, {"text": "to", "start": 430, "end": 432, "id": 80, "annotation": null}, {"text": "Mn", "start": 433, "end": 435, "id": 81, "annotation": "DOPANT"}, {"text": "and/or", "start": 436, "end": 442, "id": 82, "annotation": null}, {"text": "Cr", "start": 443, "end": 445, "id": 83, "annotation": "DOPANT"}, {"text": "doping", "start": 446, "end": 452, "id": 84, "annotation": null}, {"text": ".", "start": 453, "end": 454, "id": 85, "annotation": null}], [{"text": "After", "start": 455, "end": 460, "id": 86, "annotation": null}, {"text": "a", "start": 461, "end": 462, "id": 87, "annotation": null}, {"text": "preliminary", "start": 463, "end": 474, "id": 88, "annotation": null}, {"text": "test", "start": 475, "end": 479, "id": 89, "annotation": null}, {"text": "of", "start": 480, "end": 482, "id": 90, "annotation": null}, {"text": "30", "start": 483, "end": 485, "id": 91, "annotation": null}, {"text": "consecutive", "start": 486, "end": 497, "id": 92, "annotation": null}, {"text": "cycles", "start": 498, "end": 504, "id": 93, "annotation": null}, {"text": "the", "start": 505, "end": 508, "id": 94, "annotation": null}, {"text": "cycling", "start": 509, "end": 516, "id": 95, "annotation": null}, {"text": "capacity", "start": 517, "end": 525, "id": 96, "annotation": null}, {"text": "retention", "start": 526, "end": 535, "id": 97, "annotation": null}, {"text": "rate", "start": 536, "end": 540, "id": 98, "annotation": null}, {"text": "(", "start": 541, "end": 542, "id": 99, "annotation": null}, {"text": "CR%", "start": 543, "end": 546, "id": 100, "annotation": null}, {"text": ")", "start": 547, "end": 548, "id": 101, "annotation": null}, {"text": "is", "start": 549, "end": 551, "id": 102, "annotation": null}, {"text": "80", "start": 552, "end": 554, "id": 103, "annotation": null}, {"text": "%", "start": 555, "end": 556, "id": 104, "annotation": null}, {"text": ".", "start": 557, "end": 558, "id": 105, "annotation": null}], [{"text": "The", "start": 559, "end": 562, "id": 106, "annotation": null}, {"text": "strong", "start": 563, "end": 569, "id": 107, "annotation": null}, {"text": "chemisorption", "start": 570, "end": 583, "id": 108, "annotation": null}, {"text": "of", "start": 584, "end": 586, "id": 109, "annotation": null}, {"text": "hydrogen", "start": 587, "end": 595, "id": 110, "annotation": null}, {"text": "shown", "start": 596, "end": 601, "id": 111, "annotation": null}, {"text": "in", "start": 602, "end": 604, "id": 112, "annotation": null}, {"text": "cyclic", "start": 605, "end": 611, "id": 113, "annotation": null}, {"text": "voltammetric", "start": 612, "end": 624, "id": 114, "annotation": null}, {"text": "(", "start": 625, "end": 626, "id": 115, "annotation": null}, {"text": "CV", "start": 627, "end": 629, "id": 116, "annotation": null}, {"text": ")", "start": 630, "end": 631, "id": 117, "annotation": null}, {"text": "response", "start": 632, "end": 640, "id": 118, "annotation": null}, {"text": "indicates", "start": 641, "end": 650, "id": 119, "annotation": null}, {"text": "that", "start": 651, "end": 655, "id": 120, "annotation": null}, {"text": "the", "start": 656, "end": 659, "id": 121, "annotation": null}, {"text": "electrocatalytic", "start": 660, "end": 676, "id": 122, "annotation": null}, {"text": "activity", "start": 677, "end": 685, "id": 123, "annotation": null}, {"text": "improvement", "start": 686, "end": 697, "id": 124, "annotation": null}, {"text": "for", "start": 698, "end": 701, "id": 125, "annotation": null}, {"text": "the", "start": 702, "end": 705, "id": 126, "annotation": null}, {"text": "i", "start": 706, "end": 707, "id": 127, "annotation": null}, {"text": "-", "start": 708, "end": 709, "id": 128, "annotation": null}, {"text": "phase", "start": 710, "end": 715, "id": 129, "annotation": null}, {"text": "negative", "start": 716, "end": 724, "id": 130, "annotation": null}, {"text": "electrode", "start": 725, "end": 734, "id": 131, "annotation": null}, {"text": "is", "start": 735, "end": 737, "id": 132, "annotation": null}, {"text": "highly", "start": 738, "end": 744, "id": 133, "annotation": null}, {"text": "demanded", "start": 745, "end": 753, "id": 134, "annotation": null}, {"text": ".", "start": 754, "end": 755, "id": 135, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The deep level transient spectroscopy (DLTS) has been used to investigate the Si-related DX center in heavily doped ion-implanted GaAs. Experimental results reveal the existence of two intrisic levels related to DX center. The activation energies of these two levels are 270 and 315 meV. The implications of these results are discussed.", "meta": {"doi": "10.1016/0038-1098(95)00322-3"}, "_input_hash": 215423631, "_task_hash": -162148707, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "deep", "start": 4, "end": 8, "id": 1, "annotation": null}, {"text": "level", "start": 9, "end": 14, "id": 2, "annotation": null}, {"text": "transient", "start": 15, "end": 24, "id": 3, "annotation": null}, {"text": "spectroscopy", "start": 25, "end": 37, "id": 4, "annotation": null}, {"text": "(", "start": 38, "end": 39, "id": 5, "annotation": null}, {"text": "DLTS", "start": 40, "end": 44, "id": 6, "annotation": null}, {"text": ")", "start": 45, "end": 46, "id": 7, "annotation": null}, {"text": "has", "start": 47, "end": 50, "id": 8, "annotation": null}, {"text": "been", "start": 51, "end": 55, "id": 9, "annotation": null}, {"text": "used", "start": 56, "end": 60, "id": 10, "annotation": null}, {"text": "to", "start": 61, "end": 63, "id": 11, "annotation": null}, {"text": "investigate", "start": 64, "end": 75, "id": 12, "annotation": null}, {"text": "the", "start": 76, "end": 79, "id": 13, "annotation": null}, {"text": "Si", "start": 80, "end": 82, "id": 14, "annotation": null}, {"text": "-", "start": 83, "end": 84, "id": 15, "annotation": null}, {"text": "related", "start": 85, "end": 92, "id": 16, "annotation": null}, {"text": "DX", "start": 93, "end": 95, "id": 17, "annotation": null}, {"text": "center", "start": 96, "end": 102, "id": 18, "annotation": null}, {"text": "in", "start": 103, "end": 105, "id": 19, "annotation": null}, {"text": "heavily", "start": 106, "end": 113, "id": 20, "annotation": null}, {"text": "doped", "start": 114, "end": 119, "id": 21, "annotation": null}, {"text": "ion", "start": 120, "end": 123, "id": 22, "annotation": null}, {"text": "-", "start": 124, "end": 125, "id": 23, "annotation": null}, {"text": "implanted", "start": 126, "end": 135, "id": 24, "annotation": null}, {"text": "GaAs", "start": 136, "end": 140, "id": 25, "annotation": "BASEMAT"}, {"text": ".", "start": 141, "end": 142, "id": 26, "annotation": null}], [{"text": "Experimental", "start": 143, "end": 155, "id": 27, "annotation": null}, {"text": "results", "start": 156, "end": 163, "id": 28, "annotation": null}, {"text": "reveal", "start": 164, "end": 170, "id": 29, "annotation": null}, {"text": "the", "start": 171, "end": 174, "id": 30, "annotation": null}, {"text": "existence", "start": 175, "end": 184, "id": 31, "annotation": null}, {"text": "of", "start": 185, "end": 187, "id": 32, "annotation": null}, {"text": "two", "start": 188, "end": 191, "id": 33, "annotation": null}, {"text": "intrisic", "start": 192, "end": 200, "id": 34, "annotation": null}, {"text": "levels", "start": 201, "end": 207, "id": 35, "annotation": null}, {"text": "related", "start": 208, "end": 215, "id": 36, "annotation": null}, {"text": "to", "start": 216, "end": 218, "id": 37, "annotation": null}, {"text": "DX", "start": 219, "end": 221, "id": 38, "annotation": null}, {"text": "center", "start": 222, "end": 228, "id": 39, "annotation": null}, {"text": ".", "start": 229, "end": 230, "id": 40, "annotation": null}], [{"text": "The", "start": 231, "end": 234, "id": 41, "annotation": null}, {"text": "activation", "start": 235, "end": 245, "id": 42, "annotation": null}, {"text": "energies", "start": 246, "end": 254, "id": 43, "annotation": null}, {"text": "of", "start": 255, "end": 257, "id": 44, "annotation": null}, {"text": "these", "start": 258, "end": 263, "id": 45, "annotation": null}, {"text": "two", "start": 264, "end": 267, "id": 46, "annotation": null}, {"text": "levels", "start": 268, "end": 274, "id": 47, "annotation": null}, {"text": "are", "start": 275, "end": 278, "id": 48, "annotation": null}, {"text": "270", "start": 279, "end": 282, "id": 49, "annotation": null}, {"text": "and", "start": 283, "end": 286, "id": 50, "annotation": null}, {"text": "315", "start": 287, "end": 290, "id": 51, "annotation": null}, {"text": "meV.", "start": 291, "end": 295, "id": 52, "annotation": null}], [{"text": "The", "start": 296, "end": 299, "id": 53, "annotation": null}, {"text": "implications", "start": 300, "end": 312, "id": 54, "annotation": null}, {"text": "of", "start": 313, "end": 315, "id": 55, "annotation": null}, {"text": "these", "start": 316, "end": 321, "id": 56, "annotation": null}, {"text": "results", "start": 322, "end": 329, "id": 57, "annotation": null}, {"text": "are", "start": 330, "end": 333, "id": 58, "annotation": null}, {"text": "discussed", "start": 334, "end": 343, "id": 59, "annotation": null}, {"text": ".", "start": 344, "end": 345, "id": 60, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "\u00a9 2018 The Royal Society of Chemistry. Waste from the sugar cane industry and alcohol distilleries is one of the sources of water pollution, and the degradation of this effluent is a very challenging task. Photocatalytic degradation can be an attractive alternative to conventional degradation processes. A vanadium-doped TiO2 (V-TiO2) photocatalyst for the degradation of spent wash and industrial dyes has been studied and reported here. V-doped TiO2 nanoparticles were prepared using a sol-gel method based on aqueous titanium peroxide with titanium isopropoxide as the Ti precursor and V2O5 as the V precursor. In order to observe the effect of the dopant on sol-gel behaviour, physicochemical and structural properties, the concentration of V was varied between 1.0% and 5% by weight. The crystallization temperature and time were optimized to obtain the required phase of V-TiO2. The physicochemical and structural characteristics of the V-doped TiO2 catalyst were determined using Brunauer-Emmett-Teller (BET), X-ray diffraction, FESEM, TEM, TG, FT-IR, Raman, PL and UV-visible spectroscopic techniques. UV-visible analysis showed a red shift in the absorption edge of TiO2 upon doping with V metal, which suggested an increase in the absorption of visible light due to a decrease in the effective band gap. The application potential of the V-TiO2 catalyst was studied via the degradation of sugar industry waste (spent wash) and Jakofix red dye (HE 8BN) under natural sunlight, as well as a standard artificial solar energy source (Xe lamp). The highest activity was observed for a 1% V-TiO2 photocatalyst for the degradation of spent wash and Jakofix red dye under natural sunlight. The degradation of coloured compounds in spent wash was monitored by gel permeation chromatography (GPC), which showed the degradation of high-molecular-weight compounds into low-molecular-weight fractions. The catalyst decomposed 90% of Jakofix red dye (HE 8BN) in 3.5 h and 65% of spent wash in 5 h under irradiation with natural sunlight, whereas Degussa P-25 TiO2 was only able to decompose 35% of the dye and 20% of spent wash under identical reaction conditions. A cycling stability test showed the high stability and reusability of the photocatalyst for degradation reactions, with a recovery of around 94-96%.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Waste", "start": 39, "end": 44, "annotation": null}, {"text": "from", "start": 45, "end": 49, "annotation": null}, {"text": "the", "start": 50, "end": 53, "annotation": null}, {"text": "sugar", "start": 54, "end": 59, "annotation": null}, {"text": "cane", "start": 60, "end": 64, "annotation": null}, {"text": "industry", "start": 65, "end": 73, "annotation": null}, {"text": "and", "start": 74, "end": 77, "annotation": null}, {"text": "alcohol", "start": 78, "end": 85, "annotation": null}, {"text": "distilleries", "start": 86, "end": 98, "annotation": null}, {"text": "is", "start": 99, "end": 101, "annotation": null}, {"text": "one", "start": 102, "end": 105, "annotation": null}, {"text": "of", "start": 106, "end": 108, "annotation": null}, {"text": "the", "start": 109, "end": 112, "annotation": null}, {"text": "sources", "start": 113, "end": 120, "annotation": null}, {"text": "of", "start": 121, "end": 123, "annotation": null}, {"text": "water", "start": 124, "end": 129, "annotation": null}, {"text": "pollution", "start": 130, "end": 139, "annotation": null}, {"text": ",", "start": 139, "end": 140, "annotation": null}, {"text": "and", "start": 141, "end": 144, "annotation": null}, {"text": "the", "start": 145, "end": 148, "annotation": null}, {"text": "degradation", "start": 149, "end": 160, "annotation": null}, {"text": "of", "start": 161, "end": 163, "annotation": null}, {"text": "this", "start": 164, "end": 168, "annotation": null}, {"text": "effluent", "start": 169, "end": 177, "annotation": null}, {"text": "is", "start": 178, "end": 180, "annotation": null}, {"text": "a", "start": 181, "end": 182, "annotation": null}, {"text": "very", "start": 183, "end": 187, "annotation": null}, {"text": "challenging", "start": 188, "end": 199, "annotation": null}, {"text": "task", "start": 200, "end": 204, "annotation": null}, {"text": ".", "start": 204, "end": 205, "annotation": null}], [{"text": "Photocatalytic", "start": 206, "end": 220, "annotation": null}, {"text": "degradation", "start": 221, "end": 232, "annotation": null}, {"text": "can", "start": 233, "end": 236, "annotation": null}, {"text": "be", "start": 237, "end": 239, "annotation": null}, {"text": "an", "start": 240, "end": 242, "annotation": null}, {"text": "attractive", "start": 243, "end": 253, "annotation": null}, {"text": "alternative", "start": 254, "end": 265, "annotation": null}, {"text": "to", "start": 266, "end": 268, "annotation": null}, {"text": "conventional", "start": 269, "end": 281, "annotation": null}, {"text": "degradation", "start": 282, "end": 293, "annotation": null}, {"text": "processes", "start": 294, "end": 303, "annotation": null}, {"text": ".", "start": 303, "end": 304, "annotation": null}], [{"text": "A", "start": 305, "end": 306, "annotation": null}, {"text": "vanadium", "start": 307, "end": 315, "annotation": "DOPANT"}, {"text": "-", "start": 315, "end": 316, "annotation": null}, {"text": "doped", "start": 316, "end": 321, "annotation": null}, {"text": "TiO2", "start": 322, "end": 326, "annotation": "BASEMAT"}, {"text": "(", "start": 327, "end": 328, "annotation": null}, {"text": "V-TiO2", "start": 328, "end": 334, "annotation": null}, {"text": ")", "start": 334, "end": 335, "annotation": null}, {"text": "photocatalyst", "start": 336, "end": 349, "annotation": null}, {"text": "for", "start": 350, "end": 353, "annotation": null}, {"text": "the", "start": 354, "end": 357, "annotation": null}, {"text": "degradation", "start": 358, "end": 369, "annotation": null}, {"text": "of", "start": 370, "end": 372, "annotation": null}, {"text": "spent", "start": 373, "end": 378, "annotation": null}, {"text": "wash", "start": 379, "end": 383, "annotation": null}, {"text": "and", "start": 384, "end": 387, "annotation": null}, {"text": "industrial", "start": 388, "end": 398, "annotation": null}, {"text": "dyes", "start": 399, "end": 403, "annotation": null}, {"text": "has", "start": 404, "end": 407, "annotation": null}, {"text": "been", "start": 408, "end": 412, "annotation": null}, {"text": "studied", "start": 413, "end": 420, "annotation": null}, {"text": "and", "start": 421, "end": 424, "annotation": null}, {"text": "reported", "start": 425, "end": 433, "annotation": null}, {"text": "here", "start": 434, "end": 438, "annotation": null}, {"text": ".", "start": 438, "end": 439, "annotation": null}], [{"text": "V", "start": 440, "end": 441, "annotation": "DOPANT"}, {"text": "-", "start": 441, "end": 442, "annotation": null}, {"text": "doped", "start": 442, "end": 447, "annotation": null}, {"text": "TiO2", "start": 448, "end": 452, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 453, "end": 466, "annotation": null}, {"text": "were", "start": 467, "end": 471, "annotation": null}, {"text": "prepared", "start": 472, "end": 480, "annotation": null}, {"text": "using", "start": 481, "end": 486, "annotation": null}, {"text": "a", "start": 487, "end": 488, "annotation": null}, {"text": "sol", "start": 489, "end": 492, "annotation": null}, {"text": "-", "start": 492, "end": 493, "annotation": null}, {"text": "gel", "start": 493, "end": 496, "annotation": null}, {"text": "method", "start": 497, "end": 503, "annotation": null}, {"text": "based", "start": 504, "end": 509, "annotation": null}, {"text": "on", "start": 510, "end": 512, "annotation": null}, {"text": "aqueous", "start": 513, "end": 520, "annotation": null}, {"text": "titanium", "start": 521, "end": 529, "annotation": null}, {"text": "peroxide", "start": 530, "end": 538, "annotation": null}, {"text": "with", "start": 539, "end": 543, "annotation": null}, {"text": "titanium", "start": 544, "end": 552, "annotation": null}, {"text": "isopropoxide", "start": 553, "end": 565, "annotation": null}, {"text": "as", "start": 566, "end": 568, "annotation": null}, {"text": "the", "start": 569, "end": 572, "annotation": null}, {"text": "Ti", "start": 573, "end": 575, "annotation": null}, {"text": "precursor", "start": 576, "end": 585, "annotation": null}, {"text": "and", "start": 586, "end": 589, "annotation": null}, {"text": "V2O5", "start": 590, "end": 594, "annotation": null}, {"text": "as", "start": 595, "end": 597, "annotation": null}, {"text": "the", "start": 598, "end": 601, "annotation": null}, {"text": "V", "start": 602, "end": 603, "annotation": null}, {"text": "precursor", "start": 604, "end": 613, "annotation": null}, {"text": ".", "start": 613, "end": 614, "annotation": null}], [{"text": "In", "start": 615, "end": 617, "annotation": null}, {"text": "order", "start": 618, "end": 623, "annotation": null}, {"text": "to", "start": 624, "end": 626, "annotation": null}, {"text": "observe", "start": 627, "end": 634, "annotation": null}, {"text": "the", "start": 635, "end": 638, "annotation": null}, {"text": "effect", "start": 639, "end": 645, "annotation": null}, {"text": "of", "start": 646, "end": 648, "annotation": null}, {"text": "the", "start": 649, "end": 652, "annotation": null}, {"text": "dopant", "start": 653, "end": 659, "annotation": null}, {"text": "on", "start": 660, "end": 662, "annotation": null}, {"text": "sol", "start": 663, "end": 666, "annotation": null}, {"text": "-", "start": 666, "end": 667, "annotation": null}, {"text": "gel", "start": 667, "end": 670, "annotation": null}, {"text": "behaviour", "start": 671, "end": 680, "annotation": null}, {"text": ",", "start": 680, "end": 681, "annotation": null}, {"text": "physicochemical", "start": 682, "end": 697, "annotation": null}, {"text": "and", "start": 698, "end": 701, "annotation": null}, {"text": "structural", "start": 702, "end": 712, "annotation": null}, {"text": "properties", "start": 713, "end": 723, "annotation": null}, {"text": ",", "start": 723, "end": 724, "annotation": null}, {"text": "the", "start": 725, "end": 728, "annotation": null}, {"text": "concentration", "start": 729, "end": 742, "annotation": null}, {"text": "of", "start": 743, "end": 745, "annotation": null}, {"text": "V", "start": 746, "end": 747, "annotation": "DOPANT"}, {"text": "was", "start": 748, "end": 751, "annotation": null}, {"text": "varied", "start": 752, "end": 758, "annotation": null}, {"text": "between", "start": 759, "end": 766, "annotation": null}, {"text": "1.0", "start": 767, "end": 770, "annotation": "DOPMODQ"}, {"text": "%", "start": 770, "end": 771, "annotation": "DOPMODQ"}, {"text": "and", "start": 772, "end": 775, "annotation": null}, {"text": "5", "start": 776, "end": 777, "annotation": "DOPMODQ"}, {"text": "%", "start": 777, "end": 778, "annotation": "DOPMODQ"}, {"text": "by", "start": 779, "end": 781, "annotation": null}, {"text": "weight", "start": 782, "end": 788, "annotation": null}, {"text": ".", "start": 788, "end": 789, "annotation": null}], [{"text": "The", "start": 790, "end": 793, "annotation": null}, {"text": "crystallization", "start": 794, "end": 809, "annotation": null}, {"text": "temperature", "start": 810, "end": 821, "annotation": null}, {"text": "and", "start": 822, "end": 825, "annotation": null}, {"text": "time", "start": 826, "end": 830, "annotation": null}, {"text": "were", "start": 831, "end": 835, "annotation": null}, {"text": "optimized", "start": 836, "end": 845, "annotation": null}, {"text": "to", "start": 846, "end": 848, "annotation": null}, {"text": "obtain", "start": 849, "end": 855, "annotation": null}, {"text": "the", "start": 856, "end": 859, "annotation": null}, {"text": "required", "start": 860, "end": 868, "annotation": null}, {"text": "phase", "start": 869, "end": 874, "annotation": null}, {"text": "of", "start": 875, "end": 877, "annotation": null}, {"text": "V-TiO2", "start": 878, "end": 884, "annotation": null}, {"text": ".", "start": 884, "end": 885, "annotation": null}], [{"text": "The", "start": 886, "end": 889, "annotation": null}, {"text": "physicochemical", "start": 890, "end": 905, "annotation": null}, {"text": "and", "start": 906, "end": 909, "annotation": null}, {"text": "structural", "start": 910, "end": 920, "annotation": null}, {"text": "characteristics", "start": 921, "end": 936, "annotation": null}, {"text": "of", "start": 937, "end": 939, "annotation": null}, {"text": "the", "start": 940, "end": 943, "annotation": null}, {"text": "V", "start": 944, "end": 945, "annotation": "DOPANT"}, {"text": "-", "start": 945, "end": 946, "annotation": null}, {"text": "doped", "start": 946, "end": 951, "annotation": null}, {"text": "TiO2", "start": 952, "end": 956, "annotation": "BASEMAT"}, {"text": "catalyst", "start": 957, "end": 965, "annotation": null}, {"text": "were", "start": 966, "end": 970, "annotation": null}, {"text": "determined", "start": 971, "end": 981, "annotation": null}, {"text": "using", "start": 982, "end": 987, "annotation": null}, {"text": "Brunauer-Emmett-Teller", "start": 988, "end": 1010, "annotation": null}, {"text": "(", "start": 1011, "end": 1012, "annotation": null}, {"text": "BET", "start": 1012, "end": 1015, "annotation": null}, {"text": ")", "start": 1015, "end": 1016, "annotation": null}, {"text": ",", "start": 1016, "end": 1017, "annotation": null}, {"text": "X-ray", "start": 1018, "end": 1023, "annotation": null}, {"text": "diffraction", "start": 1024, "end": 1035, "annotation": null}, {"text": ",", "start": 1035, "end": 1036, "annotation": null}, {"text": "FESEM", "start": 1037, "end": 1042, "annotation": null}, {"text": ",", "start": 1042, "end": 1043, "annotation": null}, {"text": "TEM", "start": 1044, "end": 1047, "annotation": null}, {"text": ",", "start": 1047, "end": 1048, "annotation": null}, {"text": "TG", "start": 1049, "end": 1051, "annotation": null}, {"text": ",", "start": 1051, "end": 1052, "annotation": null}, {"text": "FT-IR", "start": 1053, "end": 1058, "annotation": null}, {"text": ",", "start": 1058, "end": 1059, "annotation": null}, {"text": "Raman", "start": 1060, "end": 1065, "annotation": null}, {"text": ",", "start": 1065, "end": 1066, "annotation": null}, {"text": "PL", "start": 1067, "end": 1069, "annotation": null}, {"text": "and", "start": 1070, "end": 1073, "annotation": null}, {"text": "UV", "start": 1074, "end": 1076, "annotation": null}, {"text": "-", "start": 1076, "end": 1077, "annotation": null}, {"text": "visible", "start": 1077, "end": 1084, "annotation": null}, {"text": "spectroscopic", "start": 1085, "end": 1098, "annotation": null}, {"text": "techniques", "start": 1099, "end": 1109, "annotation": null}, {"text": ".", "start": 1109, "end": 1110, "annotation": null}], [{"text": "UV", "start": 1111, "end": 1113, "annotation": null}, {"text": "-", "start": 1113, "end": 1114, "annotation": null}, {"text": "visible", "start": 1114, "end": 1121, "annotation": null}, {"text": "analysis", "start": 1122, "end": 1130, "annotation": null}, {"text": "showed", "start": 1131, "end": 1137, "annotation": null}, {"text": "a", "start": 1138, "end": 1139, "annotation": null}, {"text": "red", "start": 1140, "end": 1143, "annotation": null}, {"text": "shift", "start": 1144, "end": 1149, "annotation": null}, {"text": "in", "start": 1150, "end": 1152, "annotation": null}, {"text": "the", "start": 1153, "end": 1156, "annotation": null}, {"text": "absorption", "start": 1157, "end": 1167, "annotation": null}, {"text": "edge", "start": 1168, "end": 1172, "annotation": null}, {"text": "of", "start": 1173, "end": 1175, "annotation": null}, {"text": "TiO2", "start": 1176, "end": 1180, "annotation": "BASEMAT"}, {"text": "upon", "start": 1181, "end": 1185, "annotation": null}, {"text": "doping", "start": 1186, "end": 1192, "annotation": null}, {"text": "with", "start": 1193, "end": 1197, "annotation": null}, {"text": "V", "start": 1198, "end": 1199, "annotation": "DOPANT"}, {"text": "metal", "start": 1200, "end": 1205, "annotation": null}, {"text": ",", "start": 1205, "end": 1206, "annotation": null}, {"text": "which", "start": 1207, "end": 1212, "annotation": null}, {"text": "suggested", "start": 1213, "end": 1222, "annotation": null}, {"text": "an", "start": 1223, "end": 1225, "annotation": null}, {"text": "increase", "start": 1226, "end": 1234, "annotation": null}, {"text": "in", "start": 1235, "end": 1237, "annotation": null}, {"text": "the", "start": 1238, "end": 1241, "annotation": null}, {"text": "absorption", "start": 1242, "end": 1252, "annotation": null}, {"text": "of", "start": 1253, "end": 1255, "annotation": null}, {"text": "visible", "start": 1256, "end": 1263, "annotation": null}, {"text": "light", "start": 1264, "end": 1269, "annotation": null}, {"text": "due", "start": 1270, "end": 1273, "annotation": null}, {"text": "to", "start": 1274, "end": 1276, "annotation": null}, {"text": "a", "start": 1277, "end": 1278, "annotation": null}, {"text": "decrease", "start": 1279, "end": 1287, "annotation": null}, {"text": "in", "start": 1288, "end": 1290, "annotation": null}, {"text": "the", "start": 1291, "end": 1294, "annotation": null}, {"text": "effective", "start": 1295, "end": 1304, "annotation": null}, {"text": "band", "start": 1305, "end": 1309, "annotation": null}, {"text": "gap", "start": 1310, "end": 1313, "annotation": null}, {"text": ".", "start": 1313, "end": 1314, "annotation": null}], [{"text": "The", "start": 1315, "end": 1318, "annotation": null}, {"text": "application", "start": 1319, "end": 1330, "annotation": null}, {"text": "potential", "start": 1331, "end": 1340, "annotation": null}, {"text": "of", "start": 1341, "end": 1343, "annotation": null}, {"text": "the", "start": 1344, "end": 1347, "annotation": null}, {"text": "V-TiO2", "start": 1348, "end": 1354, "annotation": null}, {"text": "catalyst", "start": 1355, "end": 1363, "annotation": null}, {"text": "was", "start": 1364, "end": 1367, "annotation": null}, {"text": "studied", "start": 1368, "end": 1375, "annotation": null}, {"text": "via", "start": 1376, "end": 1379, "annotation": null}, {"text": "the", "start": 1380, "end": 1383, "annotation": null}, {"text": "degradation", "start": 1384, "end": 1395, "annotation": null}, {"text": "of", "start": 1396, "end": 1398, "annotation": null}, {"text": "sugar", "start": 1399, "end": 1404, "annotation": null}, {"text": "industry", "start": 1405, "end": 1413, "annotation": null}, {"text": "waste", "start": 1414, "end": 1419, "annotation": null}, {"text": "(", "start": 1420, "end": 1421, "annotation": null}, {"text": "spent", "start": 1421, "end": 1426, "annotation": null}, {"text": "wash", "start": 1427, "end": 1431, "annotation": null}, {"text": ")", "start": 1431, "end": 1432, "annotation": null}, {"text": "and", "start": 1433, "end": 1436, "annotation": null}, {"text": "Jakofix", "start": 1437, "end": 1444, "annotation": null}, {"text": "red", "start": 1445, "end": 1448, "annotation": null}, {"text": "dye", "start": 1449, "end": 1452, "annotation": null}, {"text": "(", "start": 1453, "end": 1454, "annotation": null}, {"text": "HE", "start": 1454, "end": 1456, "annotation": null}, {"text": "8BN", "start": 1457, "end": 1460, "annotation": null}, {"text": ")", "start": 1460, "end": 1461, "annotation": null}, {"text": "under", "start": 1462, "end": 1467, "annotation": null}, {"text": "natural", "start": 1468, "end": 1475, "annotation": null}, {"text": "sunlight", "start": 1476, "end": 1484, "annotation": null}, {"text": ",", "start": 1484, "end": 1485, "annotation": null}, {"text": "as", "start": 1486, "end": 1488, "annotation": null}, {"text": "well", "start": 1489, "end": 1493, "annotation": null}, {"text": "as", "start": 1494, "end": 1496, "annotation": null}, {"text": "a", "start": 1497, "end": 1498, "annotation": null}, {"text": "standard", "start": 1499, "end": 1507, "annotation": null}, {"text": "artificial", "start": 1508, "end": 1518, "annotation": null}, {"text": "solar", "start": 1519, "end": 1524, "annotation": null}, {"text": "energy", "start": 1525, "end": 1531, "annotation": null}, {"text": "source", "start": 1532, "end": 1538, "annotation": null}, {"text": "(", "start": 1539, "end": 1540, "annotation": null}, {"text": "Xe", "start": 1540, "end": 1542, "annotation": null}, {"text": "lamp", "start": 1543, "end": 1547, "annotation": null}, {"text": ")", "start": 1547, "end": 1548, "annotation": null}, {"text": ".", "start": 1548, "end": 1549, "annotation": null}], [{"text": "The", "start": 1550, "end": 1553, "annotation": null}, {"text": "highest", "start": 1554, "end": 1561, "annotation": null}, {"text": "activity", "start": 1562, "end": 1570, "annotation": null}, {"text": "was", "start": 1571, "end": 1574, "annotation": null}, {"text": "observed", "start": 1575, "end": 1583, "annotation": null}, {"text": "for", "start": 1584, "end": 1587, "annotation": null}, {"text": "a", "start": 1588, "end": 1589, "annotation": null}, {"text": "1", "start": 1590, "end": 1591, "annotation": null}, {"text": "%", "start": 1591, "end": 1592, "annotation": null}, {"text": "V-TiO2", "start": 1593, "end": 1599, "annotation": null}, {"text": "photocatalyst", "start": 1600, "end": 1613, "annotation": null}, {"text": "for", "start": 1614, "end": 1617, "annotation": null}, {"text": "the", "start": 1618, "end": 1621, "annotation": null}, {"text": "degradation", "start": 1622, "end": 1633, "annotation": null}, {"text": "of", "start": 1634, "end": 1636, "annotation": null}, {"text": "spent", "start": 1637, "end": 1642, "annotation": null}, {"text": "wash", "start": 1643, "end": 1647, "annotation": null}, {"text": "and", "start": 1648, "end": 1651, "annotation": null}, {"text": "Jakofix", "start": 1652, "end": 1659, "annotation": null}, {"text": "red", "start": 1660, "end": 1663, "annotation": null}, {"text": "dye", "start": 1664, "end": 1667, "annotation": null}, {"text": "under", "start": 1668, "end": 1673, "annotation": null}, {"text": "natural", "start": 1674, "end": 1681, "annotation": null}, {"text": "sunlight", "start": 1682, "end": 1690, "annotation": null}, {"text": ".", "start": 1690, "end": 1691, "annotation": null}], [{"text": "The", "start": 1692, "end": 1695, "annotation": null}, {"text": "degradation", "start": 1696, "end": 1707, "annotation": null}, {"text": "of", "start": 1708, "end": 1710, "annotation": null}, {"text": "coloured", "start": 1711, "end": 1719, "annotation": null}, {"text": "compounds", "start": 1720, "end": 1729, "annotation": null}, {"text": "in", "start": 1730, "end": 1732, "annotation": null}, {"text": "spent", "start": 1733, "end": 1738, "annotation": null}, {"text": "wash", "start": 1739, "end": 1743, "annotation": null}, {"text": "was", "start": 1744, "end": 1747, "annotation": null}, {"text": "monitored", "start": 1748, "end": 1757, "annotation": null}, {"text": "by", "start": 1758, "end": 1760, "annotation": null}, {"text": "gel", "start": 1761, "end": 1764, "annotation": null}, {"text": "permeation", "start": 1765, "end": 1775, "annotation": null}, {"text": "chromatography", "start": 1776, "end": 1790, "annotation": null}, {"text": "(", "start": 1791, "end": 1792, "annotation": null}, {"text": "GPC", "start": 1792, "end": 1795, "annotation": null}, {"text": ")", "start": 1795, "end": 1796, "annotation": null}, {"text": ",", "start": 1796, "end": 1797, "annotation": null}, {"text": "which", "start": 1798, "end": 1803, "annotation": null}, {"text": "showed", "start": 1804, "end": 1810, "annotation": null}, {"text": "the", "start": 1811, "end": 1814, "annotation": null}, {"text": "degradation", "start": 1815, "end": 1826, "annotation": null}, {"text": "of", "start": 1827, "end": 1829, "annotation": null}, {"text": "high-molecular-weight", "start": 1830, "end": 1851, "annotation": null}, {"text": "compounds", "start": 1852, "end": 1861, "annotation": null}, {"text": "into", "start": 1862, "end": 1866, "annotation": null}, {"text": "low-molecular-weight", "start": 1867, "end": 1887, "annotation": null}, {"text": "fractions", "start": 1888, "end": 1897, "annotation": null}, {"text": ".", "start": 1897, "end": 1898, "annotation": null}], [{"text": "The", "start": 1899, "end": 1902, "annotation": null}, {"text": "catalyst", "start": 1903, "end": 1911, "annotation": null}, {"text": "decomposed", "start": 1912, "end": 1922, "annotation": null}, {"text": "90", "start": 1923, "end": 1925, "annotation": null}, {"text": "%", "start": 1925, "end": 1926, "annotation": null}, {"text": "of", "start": 1927, "end": 1929, "annotation": null}, {"text": "Jakofix", "start": 1930, "end": 1937, "annotation": null}, {"text": "red", "start": 1938, "end": 1941, "annotation": null}, {"text": "dye", "start": 1942, "end": 1945, "annotation": null}, {"text": "(", "start": 1946, "end": 1947, "annotation": null}, {"text": "HE", "start": 1947, "end": 1949, "annotation": null}, {"text": "8BN", "start": 1950, "end": 1953, "annotation": null}, {"text": ")", "start": 1953, "end": 1954, "annotation": null}, {"text": "in", "start": 1955, "end": 1957, "annotation": null}, {"text": "3.5", "start": 1958, "end": 1961, "annotation": null}, {"text": "h", "start": 1962, "end": 1963, "annotation": null}, {"text": "and", "start": 1964, "end": 1967, "annotation": null}, {"text": "65", "start": 1968, "end": 1970, "annotation": null}, {"text": "%", "start": 1970, "end": 1971, "annotation": null}, {"text": "of", "start": 1972, "end": 1974, "annotation": null}, {"text": "spent", "start": 1975, "end": 1980, "annotation": null}, {"text": "wash", "start": 1981, "end": 1985, "annotation": null}, {"text": "in", "start": 1986, "end": 1988, "annotation": null}, {"text": "5", "start": 1989, "end": 1990, "annotation": null}, {"text": "h", "start": 1991, "end": 1992, "annotation": null}, {"text": "under", "start": 1993, "end": 1998, "annotation": null}, {"text": "irradiation", "start": 1999, "end": 2010, "annotation": null}, {"text": "with", "start": 2011, "end": 2015, "annotation": null}, {"text": "natural", "start": 2016, "end": 2023, "annotation": null}, {"text": "sunlight", "start": 2024, "end": 2032, "annotation": null}, {"text": ",", "start": 2032, "end": 2033, "annotation": null}, {"text": "whereas", "start": 2034, "end": 2041, "annotation": null}, {"text": "Degussa", "start": 2042, "end": 2049, "annotation": null}, {"text": "P-25", "start": 2050, "end": 2054, "annotation": null}, {"text": "TiO2", "start": 2055, "end": 2059, "annotation": null}, {"text": "was", "start": 2060, "end": 2063, "annotation": null}, {"text": "only", "start": 2064, "end": 2068, "annotation": null}, {"text": "able", "start": 2069, "end": 2073, "annotation": null}, {"text": "to", "start": 2074, "end": 2076, "annotation": null}, {"text": "decompose", "start": 2077, "end": 2086, "annotation": null}, {"text": "35", "start": 2087, "end": 2089, "annotation": null}, {"text": "%", "start": 2089, "end": 2090, "annotation": null}, {"text": "of", "start": 2091, "end": 2093, "annotation": null}, {"text": "the", "start": 2094, "end": 2097, "annotation": null}, {"text": "dye", "start": 2098, "end": 2101, "annotation": null}, {"text": "and", "start": 2102, "end": 2105, "annotation": null}, {"text": "20", "start": 2106, "end": 2108, "annotation": null}, {"text": "%", "start": 2108, "end": 2109, "annotation": null}, {"text": "of", "start": 2110, "end": 2112, "annotation": null}, {"text": "spent", "start": 2113, "end": 2118, "annotation": null}, {"text": "wash", "start": 2119, "end": 2123, "annotation": null}, {"text": "under", "start": 2124, "end": 2129, "annotation": null}, {"text": "identical", "start": 2130, "end": 2139, "annotation": null}, {"text": "reaction", "start": 2140, "end": 2148, "annotation": null}, {"text": "conditions", "start": 2149, "end": 2159, "annotation": null}, {"text": ".", "start": 2159, "end": 2160, "annotation": null}], [{"text": "A", "start": 2161, "end": 2162, "annotation": null}, {"text": "cycling", "start": 2163, "end": 2170, "annotation": null}, {"text": "stability", "start": 2171, "end": 2180, "annotation": null}, {"text": "test", "start": 2181, "end": 2185, "annotation": null}, {"text": "showed", "start": 2186, "end": 2192, "annotation": null}, {"text": "the", "start": 2193, "end": 2196, "annotation": null}, {"text": "high", "start": 2197, "end": 2201, "annotation": null}, {"text": "stability", "start": 2202, "end": 2211, "annotation": null}, {"text": "and", "start": 2212, "end": 2215, "annotation": null}, {"text": "reusability", "start": 2216, "end": 2227, "annotation": null}, {"text": "of", "start": 2228, "end": 2230, "annotation": null}, {"text": "the", "start": 2231, "end": 2234, "annotation": null}, {"text": "photocatalyst", "start": 2235, "end": 2248, "annotation": null}, {"text": "for", "start": 2249, "end": 2252, "annotation": null}, {"text": "degradation", "start": 2253, "end": 2264, "annotation": null}, {"text": "reactions", "start": 2265, "end": 2274, "annotation": null}, {"text": ",", "start": 2274, "end": 2275, "annotation": null}, {"text": "with", "start": 2276, "end": 2280, "annotation": null}, {"text": "a", "start": 2281, "end": 2282, "annotation": null}, {"text": "recovery", "start": 2283, "end": 2291, "annotation": null}, {"text": "of", "start": 2292, "end": 2294, "annotation": null}, {"text": "around", "start": 2295, "end": 2301, "annotation": null}, {"text": "94-96", "start": 2302, "end": 2307, "annotation": null}, {"text": "%", "start": 2307, "end": 2308, "annotation": null}, {"text": ".", "start": 2308, "end": 2309, "annotation": null}]]} +{"remark": "doping_annt1", "text": "\u00a9 2018 The Royal Society of Chemistry. Waste from the sugar cane industry and alcohol distilleries is one of the sources of water pollution, and the degradation of this effluent is a very challenging task. Photocatalytic degradation can be an attractive alternative to conventional degradation processes. A vanadium-doped TiO2 (V-TiO2) photocatalyst for the degradation of spent wash and industrial dyes has been studied and reported here. V-doped TiO2 nanoparticles were prepared using a sol-gel method based on aqueous titanium peroxide with titanium isopropoxide as the Ti precursor and V2O5 as the V precursor. In order to observe the effect of the dopant on sol-gel behaviour, physicochemical and structural properties, the concentration of V was varied between 1.0% and 5% by weight. The crystallization temperature and time were optimized to obtain the required phase of V-TiO2. The physicochemical and structural characteristics of the V-doped TiO2 catalyst were determined using Brunauer-Emmett-Teller (BET), X-ray diffraction, FESEM, TEM, TG, FT-IR, Raman, PL and UV-visible spectroscopic techniques. UV-visible analysis showed a red shift in the absorption edge of TiO2 upon doping with V metal, which suggested an increase in the absorption of visible light due to a decrease in the effective band gap. The application potential of the V-TiO2 catalyst was studied via the degradation of sugar industry waste (spent wash) and Jakofix red dye (HE 8BN) under natural sunlight, as well as a standard artificial solar energy source (Xe lamp). The highest activity was observed for a 1% V-TiO2 photocatalyst for the degradation of spent wash and Jakofix red dye under natural sunlight. The degradation of coloured compounds in spent wash was monitored by gel permeation chromatography (GPC), which showed the degradation of high-molecular-weight compounds into low-molecular-weight fractions. The catalyst decomposed 90% of Jakofix red dye (HE 8BN) in 3.5 h and 65% of spent wash in 5 h under irradiation with natural sunlight, whereas Degussa P-25 TiO2 was only able to decompose 35% of the dye and 20% of spent wash under identical reaction conditions. A cycling stability test showed the high stability and reusability of the photocatalyst for degradation reactions, with a recovery of around 94-96%.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Waste", "start": 39, "end": 44, "annotation": null}, {"text": "from", "start": 45, "end": 49, "annotation": null}, {"text": "the", "start": 50, "end": 53, "annotation": null}, {"text": "sugar", "start": 54, "end": 59, "annotation": null}, {"text": "cane", "start": 60, "end": 64, "annotation": null}, {"text": "industry", "start": 65, "end": 73, "annotation": null}, {"text": "and", "start": 74, "end": 77, "annotation": null}, {"text": "alcohol", "start": 78, "end": 85, "annotation": null}, {"text": "distilleries", "start": 86, "end": 98, "annotation": null}, {"text": "is", "start": 99, "end": 101, "annotation": null}, {"text": "one", "start": 102, "end": 105, "annotation": null}, {"text": "of", "start": 106, "end": 108, "annotation": null}, {"text": "the", "start": 109, "end": 112, "annotation": null}, {"text": "sources", "start": 113, "end": 120, "annotation": null}, {"text": "of", "start": 121, "end": 123, "annotation": null}, {"text": "water", "start": 124, "end": 129, "annotation": null}, {"text": "pollution", "start": 130, "end": 139, "annotation": null}, {"text": ",", "start": 139, "end": 140, "annotation": null}, {"text": "and", "start": 141, "end": 144, "annotation": null}, {"text": "the", "start": 145, "end": 148, "annotation": null}, {"text": "degradation", "start": 149, "end": 160, "annotation": null}, {"text": "of", "start": 161, "end": 163, "annotation": null}, {"text": "this", "start": 164, "end": 168, "annotation": null}, {"text": "effluent", "start": 169, "end": 177, "annotation": null}, {"text": "is", "start": 178, "end": 180, "annotation": null}, {"text": "a", "start": 181, "end": 182, "annotation": null}, {"text": "very", "start": 183, "end": 187, "annotation": null}, {"text": "challenging", "start": 188, "end": 199, "annotation": null}, {"text": "task", "start": 200, "end": 204, "annotation": null}, {"text": ".", "start": 204, "end": 205, "annotation": null}], [{"text": "Photocatalytic", "start": 206, "end": 220, "annotation": null}, {"text": "degradation", "start": 221, "end": 232, "annotation": null}, {"text": "can", "start": 233, "end": 236, "annotation": null}, {"text": "be", "start": 237, "end": 239, "annotation": null}, {"text": "an", "start": 240, "end": 242, "annotation": null}, {"text": "attractive", "start": 243, "end": 253, "annotation": null}, {"text": "alternative", "start": 254, "end": 265, "annotation": null}, {"text": "to", "start": 266, "end": 268, "annotation": null}, {"text": "conventional", "start": 269, "end": 281, "annotation": null}, {"text": "degradation", "start": 282, "end": 293, "annotation": null}, {"text": "processes", "start": 294, "end": 303, "annotation": null}, {"text": ".", "start": 303, "end": 304, "annotation": null}], [{"text": "A", "start": 305, "end": 306, "annotation": null}, {"text": "vanadium", "start": 307, "end": 315, "annotation": "DOPANT"}, {"text": "-", "start": 315, "end": 316, "annotation": null}, {"text": "doped", "start": 316, "end": 321, "annotation": null}, {"text": "TiO2", "start": 322, "end": 326, "annotation": "BASEMAT"}, {"text": "(", "start": 327, "end": 328, "annotation": null}, {"text": "V-TiO2", "start": 328, "end": 334, "annotation": null}, {"text": ")", "start": 334, "end": 335, "annotation": null}, {"text": "photocatalyst", "start": 336, "end": 349, "annotation": null}, {"text": "for", "start": 350, "end": 353, "annotation": null}, {"text": "the", "start": 354, "end": 357, "annotation": null}, {"text": "degradation", "start": 358, "end": 369, "annotation": null}, {"text": "of", "start": 370, "end": 372, "annotation": null}, {"text": "spent", "start": 373, "end": 378, "annotation": null}, {"text": "wash", "start": 379, "end": 383, "annotation": null}, {"text": "and", "start": 384, "end": 387, "annotation": null}, {"text": "industrial", "start": 388, "end": 398, "annotation": null}, {"text": "dyes", "start": 399, "end": 403, "annotation": null}, {"text": "has", "start": 404, "end": 407, "annotation": null}, {"text": "been", "start": 408, "end": 412, "annotation": null}, {"text": "studied", "start": 413, "end": 420, "annotation": null}, {"text": "and", "start": 421, "end": 424, "annotation": null}, {"text": "reported", "start": 425, "end": 433, "annotation": null}, {"text": "here", "start": 434, "end": 438, "annotation": null}, {"text": ".", "start": 438, "end": 439, "annotation": null}], [{"text": "V", "start": 440, "end": 441, "annotation": "DOPANT"}, {"text": "-", "start": 441, "end": 442, "annotation": null}, {"text": "doped", "start": 442, "end": 447, "annotation": null}, {"text": "TiO2", "start": 448, "end": 452, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 453, "end": 466, "annotation": null}, {"text": "were", "start": 467, "end": 471, "annotation": null}, {"text": "prepared", "start": 472, "end": 480, "annotation": null}, {"text": "using", "start": 481, "end": 486, "annotation": null}, {"text": "a", "start": 487, "end": 488, "annotation": null}, {"text": "sol", "start": 489, "end": 492, "annotation": null}, {"text": "-", "start": 492, "end": 493, "annotation": null}, {"text": "gel", "start": 493, "end": 496, "annotation": null}, {"text": "method", "start": 497, "end": 503, "annotation": null}, {"text": "based", "start": 504, "end": 509, "annotation": null}, {"text": "on", "start": 510, "end": 512, "annotation": null}, {"text": "aqueous", "start": 513, "end": 520, "annotation": null}, {"text": "titanium", "start": 521, "end": 529, "annotation": null}, {"text": "peroxide", "start": 530, "end": 538, "annotation": null}, {"text": "with", "start": 539, "end": 543, "annotation": null}, {"text": "titanium", "start": 544, "end": 552, "annotation": null}, {"text": "isopropoxide", "start": 553, "end": 565, "annotation": null}, {"text": "as", "start": 566, "end": 568, "annotation": null}, {"text": "the", "start": 569, "end": 572, "annotation": null}, {"text": "Ti", "start": 573, "end": 575, "annotation": null}, {"text": "precursor", "start": 576, "end": 585, "annotation": null}, {"text": "and", "start": 586, "end": 589, "annotation": null}, {"text": "V2O5", "start": 590, "end": 594, "annotation": null}, {"text": "as", "start": 595, "end": 597, "annotation": null}, {"text": "the", "start": 598, "end": 601, "annotation": null}, {"text": "V", "start": 602, "end": 603, "annotation": null}, {"text": "precursor", "start": 604, "end": 613, "annotation": null}, {"text": ".", "start": 613, "end": 614, "annotation": null}], [{"text": "In", "start": 615, "end": 617, "annotation": null}, {"text": "order", "start": 618, "end": 623, "annotation": null}, {"text": "to", "start": 624, "end": 626, "annotation": null}, {"text": "observe", "start": 627, "end": 634, "annotation": null}, {"text": "the", "start": 635, "end": 638, "annotation": null}, {"text": "effect", "start": 639, "end": 645, "annotation": null}, {"text": "of", "start": 646, "end": 648, "annotation": null}, {"text": "the", "start": 649, "end": 652, "annotation": null}, {"text": "dopant", "start": 653, "end": 659, "annotation": null}, {"text": "on", "start": 660, "end": 662, "annotation": null}, {"text": "sol", "start": 663, "end": 666, "annotation": null}, {"text": "-", "start": 666, "end": 667, "annotation": null}, {"text": "gel", "start": 667, "end": 670, "annotation": null}, {"text": "behaviour", "start": 671, "end": 680, "annotation": null}, {"text": ",", "start": 680, "end": 681, "annotation": null}, {"text": "physicochemical", "start": 682, "end": 697, "annotation": null}, {"text": "and", "start": 698, "end": 701, "annotation": null}, {"text": "structural", "start": 702, "end": 712, "annotation": null}, {"text": "properties", "start": 713, "end": 723, "annotation": null}, {"text": ",", "start": 723, "end": 724, "annotation": null}, {"text": "the", "start": 725, "end": 728, "annotation": null}, {"text": "concentration", "start": 729, "end": 742, "annotation": null}, {"text": "of", "start": 743, "end": 745, "annotation": null}, {"text": "V", "start": 746, "end": 747, "annotation": "DOPANT"}, {"text": "was", "start": 748, "end": 751, "annotation": null}, {"text": "varied", "start": 752, "end": 758, "annotation": null}, {"text": "between", "start": 759, "end": 766, "annotation": null}, {"text": "1.0", "start": 767, "end": 770, "annotation": "DOPMODQ"}, {"text": "%", "start": 770, "end": 771, "annotation": "DOPMODQ"}, {"text": "and", "start": 772, "end": 775, "annotation": null}, {"text": "5", "start": 776, "end": 777, "annotation": "DOPMODQ"}, {"text": "%", "start": 777, "end": 778, "annotation": "DOPMODQ"}, {"text": "by", "start": 779, "end": 781, "annotation": null}, {"text": "weight", "start": 782, "end": 788, "annotation": null}, {"text": ".", "start": 788, "end": 789, "annotation": null}], [{"text": "The", "start": 790, "end": 793, "annotation": null}, {"text": "crystallization", "start": 794, "end": 809, "annotation": null}, {"text": "temperature", "start": 810, "end": 821, "annotation": null}, {"text": "and", "start": 822, "end": 825, "annotation": null}, {"text": "time", "start": 826, "end": 830, "annotation": null}, {"text": "were", "start": 831, "end": 835, "annotation": null}, {"text": "optimized", "start": 836, "end": 845, "annotation": null}, {"text": "to", "start": 846, "end": 848, "annotation": null}, {"text": "obtain", "start": 849, "end": 855, "annotation": null}, {"text": "the", "start": 856, "end": 859, "annotation": null}, {"text": "required", "start": 860, "end": 868, "annotation": null}, {"text": "phase", "start": 869, "end": 874, "annotation": null}, {"text": "of", "start": 875, "end": 877, "annotation": null}, {"text": "V-TiO2", "start": 878, "end": 884, "annotation": null}, {"text": ".", "start": 884, "end": 885, "annotation": null}], [{"text": "The", "start": 886, "end": 889, "annotation": null}, {"text": "physicochemical", "start": 890, "end": 905, "annotation": null}, {"text": "and", "start": 906, "end": 909, "annotation": null}, {"text": "structural", "start": 910, "end": 920, "annotation": null}, {"text": "characteristics", "start": 921, "end": 936, "annotation": null}, {"text": "of", "start": 937, "end": 939, "annotation": null}, {"text": "the", "start": 940, "end": 943, "annotation": null}, {"text": "V", "start": 944, "end": 945, "annotation": "DOPANT"}, {"text": "-", "start": 945, "end": 946, "annotation": null}, {"text": "doped", "start": 946, "end": 951, "annotation": null}, {"text": "TiO2", "start": 952, "end": 956, "annotation": "BASEMAT"}, {"text": "catalyst", "start": 957, "end": 965, "annotation": null}, {"text": "were", "start": 966, "end": 970, "annotation": null}, {"text": "determined", "start": 971, "end": 981, "annotation": null}, {"text": "using", "start": 982, "end": 987, "annotation": null}, {"text": "Brunauer-Emmett-Teller", "start": 988, "end": 1010, "annotation": null}, {"text": "(", "start": 1011, "end": 1012, "annotation": null}, {"text": "BET", "start": 1012, "end": 1015, "annotation": null}, {"text": ")", "start": 1015, "end": 1016, "annotation": null}, {"text": ",", "start": 1016, "end": 1017, "annotation": null}, {"text": "X-ray", "start": 1018, "end": 1023, "annotation": null}, {"text": "diffraction", "start": 1024, "end": 1035, "annotation": null}, {"text": ",", "start": 1035, "end": 1036, "annotation": null}, {"text": "FESEM", "start": 1037, "end": 1042, "annotation": null}, {"text": ",", "start": 1042, "end": 1043, "annotation": null}, {"text": "TEM", "start": 1044, "end": 1047, "annotation": null}, {"text": ",", "start": 1047, "end": 1048, "annotation": null}, {"text": "TG", "start": 1049, "end": 1051, "annotation": null}, {"text": ",", "start": 1051, "end": 1052, "annotation": null}, {"text": "FT-IR", "start": 1053, "end": 1058, "annotation": null}, {"text": ",", "start": 1058, "end": 1059, "annotation": null}, {"text": "Raman", "start": 1060, "end": 1065, "annotation": null}, {"text": ",", "start": 1065, "end": 1066, "annotation": null}, {"text": "PL", "start": 1067, "end": 1069, "annotation": null}, {"text": "and", "start": 1070, "end": 1073, "annotation": null}, {"text": "UV", "start": 1074, "end": 1076, "annotation": null}, {"text": "-", "start": 1076, "end": 1077, "annotation": null}, {"text": "visible", "start": 1077, "end": 1084, "annotation": null}, {"text": "spectroscopic", "start": 1085, "end": 1098, "annotation": null}, {"text": "techniques", "start": 1099, "end": 1109, "annotation": null}, {"text": ".", "start": 1109, "end": 1110, "annotation": null}], [{"text": "UV", "start": 1111, "end": 1113, "annotation": null}, {"text": "-", "start": 1113, "end": 1114, "annotation": null}, {"text": "visible", "start": 1114, "end": 1121, "annotation": null}, {"text": "analysis", "start": 1122, "end": 1130, "annotation": null}, {"text": "showed", "start": 1131, "end": 1137, "annotation": null}, {"text": "a", "start": 1138, "end": 1139, "annotation": null}, {"text": "red", "start": 1140, "end": 1143, "annotation": null}, {"text": "shift", "start": 1144, "end": 1149, "annotation": null}, {"text": "in", "start": 1150, "end": 1152, "annotation": null}, {"text": "the", "start": 1153, "end": 1156, "annotation": null}, {"text": "absorption", "start": 1157, "end": 1167, "annotation": null}, {"text": "edge", "start": 1168, "end": 1172, "annotation": null}, {"text": "of", "start": 1173, "end": 1175, "annotation": null}, {"text": "TiO2", "start": 1176, "end": 1180, "annotation": "BASEMAT"}, {"text": "upon", "start": 1181, "end": 1185, "annotation": null}, {"text": "doping", "start": 1186, "end": 1192, "annotation": null}, {"text": "with", "start": 1193, "end": 1197, "annotation": null}, {"text": "V", "start": 1198, "end": 1199, "annotation": "DOPANT"}, {"text": "metal", "start": 1200, "end": 1205, "annotation": null}, {"text": ",", "start": 1205, "end": 1206, "annotation": null}, {"text": "which", "start": 1207, "end": 1212, "annotation": null}, {"text": "suggested", "start": 1213, "end": 1222, "annotation": null}, {"text": "an", "start": 1223, "end": 1225, "annotation": null}, {"text": "increase", "start": 1226, "end": 1234, "annotation": null}, {"text": "in", "start": 1235, "end": 1237, "annotation": null}, {"text": "the", "start": 1238, "end": 1241, "annotation": null}, {"text": "absorption", "start": 1242, "end": 1252, "annotation": null}, {"text": "of", "start": 1253, "end": 1255, "annotation": null}, {"text": "visible", "start": 1256, "end": 1263, "annotation": null}, {"text": "light", "start": 1264, "end": 1269, "annotation": null}, {"text": "due", "start": 1270, "end": 1273, "annotation": null}, {"text": "to", "start": 1274, "end": 1276, "annotation": null}, {"text": "a", "start": 1277, "end": 1278, "annotation": null}, {"text": "decrease", "start": 1279, "end": 1287, "annotation": null}, {"text": "in", "start": 1288, "end": 1290, "annotation": null}, {"text": "the", "start": 1291, "end": 1294, "annotation": null}, {"text": "effective", "start": 1295, "end": 1304, "annotation": null}, {"text": "band", "start": 1305, "end": 1309, "annotation": null}, {"text": "gap", "start": 1310, "end": 1313, "annotation": null}, {"text": ".", "start": 1313, "end": 1314, "annotation": null}], [{"text": "The", "start": 1315, "end": 1318, "annotation": null}, {"text": "application", "start": 1319, "end": 1330, "annotation": null}, {"text": "potential", "start": 1331, "end": 1340, "annotation": null}, {"text": "of", "start": 1341, "end": 1343, "annotation": null}, {"text": "the", "start": 1344, "end": 1347, "annotation": null}, {"text": "V-TiO2", "start": 1348, "end": 1354, "annotation": null}, {"text": "catalyst", "start": 1355, "end": 1363, "annotation": null}, {"text": "was", "start": 1364, "end": 1367, "annotation": null}, {"text": "studied", "start": 1368, "end": 1375, "annotation": null}, {"text": "via", "start": 1376, "end": 1379, "annotation": null}, {"text": "the", "start": 1380, "end": 1383, "annotation": null}, {"text": "degradation", "start": 1384, "end": 1395, "annotation": null}, {"text": "of", "start": 1396, "end": 1398, "annotation": null}, {"text": "sugar", "start": 1399, "end": 1404, "annotation": null}, {"text": "industry", "start": 1405, "end": 1413, "annotation": null}, {"text": "waste", "start": 1414, "end": 1419, "annotation": null}, {"text": "(", "start": 1420, "end": 1421, "annotation": null}, {"text": "spent", "start": 1421, "end": 1426, "annotation": null}, {"text": "wash", "start": 1427, "end": 1431, "annotation": null}, {"text": ")", "start": 1431, "end": 1432, "annotation": null}, {"text": "and", "start": 1433, "end": 1436, "annotation": null}, {"text": "Jakofix", "start": 1437, "end": 1444, "annotation": null}, {"text": "red", "start": 1445, "end": 1448, "annotation": null}, {"text": "dye", "start": 1449, "end": 1452, "annotation": null}, {"text": "(", "start": 1453, "end": 1454, "annotation": null}, {"text": "HE", "start": 1454, "end": 1456, "annotation": null}, {"text": "8BN", "start": 1457, "end": 1460, "annotation": null}, {"text": ")", "start": 1460, "end": 1461, "annotation": null}, {"text": "under", "start": 1462, "end": 1467, "annotation": null}, {"text": "natural", "start": 1468, "end": 1475, "annotation": null}, {"text": "sunlight", "start": 1476, "end": 1484, "annotation": null}, {"text": ",", "start": 1484, "end": 1485, "annotation": null}, {"text": "as", "start": 1486, "end": 1488, "annotation": null}, {"text": "well", "start": 1489, "end": 1493, "annotation": null}, {"text": "as", "start": 1494, "end": 1496, "annotation": null}, {"text": "a", "start": 1497, "end": 1498, "annotation": null}, {"text": "standard", "start": 1499, "end": 1507, "annotation": null}, {"text": "artificial", "start": 1508, "end": 1518, "annotation": null}, {"text": "solar", "start": 1519, "end": 1524, "annotation": null}, {"text": "energy", "start": 1525, "end": 1531, "annotation": null}, {"text": "source", "start": 1532, "end": 1538, "annotation": null}, {"text": "(", "start": 1539, "end": 1540, "annotation": null}, {"text": "Xe", "start": 1540, "end": 1542, "annotation": null}, {"text": "lamp", "start": 1543, "end": 1547, "annotation": null}, {"text": ")", "start": 1547, "end": 1548, "annotation": null}, {"text": ".", "start": 1548, "end": 1549, "annotation": null}], [{"text": "The", "start": 1550, "end": 1553, "annotation": null}, {"text": "highest", "start": 1554, "end": 1561, "annotation": null}, {"text": "activity", "start": 1562, "end": 1570, "annotation": null}, {"text": "was", "start": 1571, "end": 1574, "annotation": null}, {"text": "observed", "start": 1575, "end": 1583, "annotation": null}, {"text": "for", "start": 1584, "end": 1587, "annotation": null}, {"text": "a", "start": 1588, "end": 1589, "annotation": null}, {"text": "1", "start": 1590, "end": 1591, "annotation": null}, {"text": "%", "start": 1591, "end": 1592, "annotation": null}, {"text": "V-TiO2", "start": 1593, "end": 1599, "annotation": null}, {"text": "photocatalyst", "start": 1600, "end": 1613, "annotation": null}, {"text": "for", "start": 1614, "end": 1617, "annotation": null}, {"text": "the", "start": 1618, "end": 1621, "annotation": null}, {"text": "degradation", "start": 1622, "end": 1633, "annotation": null}, {"text": "of", "start": 1634, "end": 1636, "annotation": null}, {"text": "spent", "start": 1637, "end": 1642, "annotation": null}, {"text": "wash", "start": 1643, "end": 1647, "annotation": null}, {"text": "and", "start": 1648, "end": 1651, "annotation": null}, {"text": "Jakofix", "start": 1652, "end": 1659, "annotation": null}, {"text": "red", "start": 1660, "end": 1663, "annotation": null}, {"text": "dye", "start": 1664, "end": 1667, "annotation": null}, {"text": "under", "start": 1668, "end": 1673, "annotation": null}, {"text": "natural", "start": 1674, "end": 1681, "annotation": null}, {"text": "sunlight", "start": 1682, "end": 1690, "annotation": null}, {"text": ".", "start": 1690, "end": 1691, "annotation": null}], [{"text": "The", "start": 1692, "end": 1695, "annotation": null}, {"text": "degradation", "start": 1696, "end": 1707, "annotation": null}, {"text": "of", "start": 1708, "end": 1710, "annotation": null}, {"text": "coloured", "start": 1711, "end": 1719, "annotation": null}, {"text": "compounds", "start": 1720, "end": 1729, "annotation": null}, {"text": "in", "start": 1730, "end": 1732, "annotation": null}, {"text": "spent", "start": 1733, "end": 1738, "annotation": null}, {"text": "wash", "start": 1739, "end": 1743, "annotation": null}, {"text": "was", "start": 1744, "end": 1747, "annotation": null}, {"text": "monitored", "start": 1748, "end": 1757, "annotation": null}, {"text": "by", "start": 1758, "end": 1760, "annotation": null}, {"text": "gel", "start": 1761, "end": 1764, "annotation": null}, {"text": "permeation", "start": 1765, "end": 1775, "annotation": null}, {"text": "chromatography", "start": 1776, "end": 1790, "annotation": null}, {"text": "(", "start": 1791, "end": 1792, "annotation": null}, {"text": "GPC", "start": 1792, "end": 1795, "annotation": null}, {"text": ")", "start": 1795, "end": 1796, "annotation": null}, {"text": ",", "start": 1796, "end": 1797, "annotation": null}, {"text": "which", "start": 1798, "end": 1803, "annotation": null}, {"text": "showed", "start": 1804, "end": 1810, "annotation": null}, {"text": "the", "start": 1811, "end": 1814, "annotation": null}, {"text": "degradation", "start": 1815, "end": 1826, "annotation": null}, {"text": "of", "start": 1827, "end": 1829, "annotation": null}, {"text": "high-molecular-weight", "start": 1830, "end": 1851, "annotation": null}, {"text": "compounds", "start": 1852, "end": 1861, "annotation": null}, {"text": "into", "start": 1862, "end": 1866, "annotation": null}, {"text": "low-molecular-weight", "start": 1867, "end": 1887, "annotation": null}, {"text": "fractions", "start": 1888, "end": 1897, "annotation": null}, {"text": ".", "start": 1897, "end": 1898, "annotation": null}], [{"text": "The", "start": 1899, "end": 1902, "annotation": null}, {"text": "catalyst", "start": 1903, "end": 1911, "annotation": null}, {"text": "decomposed", "start": 1912, "end": 1922, "annotation": null}, {"text": "90", "start": 1923, "end": 1925, "annotation": null}, {"text": "%", "start": 1925, "end": 1926, "annotation": null}, {"text": "of", "start": 1927, "end": 1929, "annotation": null}, {"text": "Jakofix", "start": 1930, "end": 1937, "annotation": null}, {"text": "red", "start": 1938, "end": 1941, "annotation": null}, {"text": "dye", "start": 1942, "end": 1945, "annotation": null}, {"text": "(", "start": 1946, "end": 1947, "annotation": null}, {"text": "HE", "start": 1947, "end": 1949, "annotation": null}, {"text": "8BN", "start": 1950, "end": 1953, "annotation": null}, {"text": ")", "start": 1953, "end": 1954, "annotation": null}, {"text": "in", "start": 1955, "end": 1957, "annotation": null}, {"text": "3.5", "start": 1958, "end": 1961, "annotation": null}, {"text": "h", "start": 1962, "end": 1963, "annotation": null}, {"text": "and", "start": 1964, "end": 1967, "annotation": null}, {"text": "65", "start": 1968, "end": 1970, "annotation": null}, {"text": "%", "start": 1970, "end": 1971, "annotation": null}, {"text": "of", "start": 1972, "end": 1974, "annotation": null}, {"text": "spent", "start": 1975, "end": 1980, "annotation": null}, {"text": "wash", "start": 1981, "end": 1985, "annotation": null}, {"text": "in", "start": 1986, "end": 1988, "annotation": null}, {"text": "5", "start": 1989, "end": 1990, "annotation": null}, {"text": "h", "start": 1991, "end": 1992, "annotation": null}, {"text": "under", "start": 1993, "end": 1998, "annotation": null}, {"text": "irradiation", "start": 1999, "end": 2010, "annotation": null}, {"text": "with", "start": 2011, "end": 2015, "annotation": null}, {"text": "natural", "start": 2016, "end": 2023, "annotation": null}, {"text": "sunlight", "start": 2024, "end": 2032, "annotation": null}, {"text": ",", "start": 2032, "end": 2033, "annotation": null}, {"text": "whereas", "start": 2034, "end": 2041, "annotation": null}, {"text": "Degussa", "start": 2042, "end": 2049, "annotation": null}, {"text": "P-25", "start": 2050, "end": 2054, "annotation": null}, {"text": "TiO2", "start": 2055, "end": 2059, "annotation": null}, {"text": "was", "start": 2060, "end": 2063, "annotation": null}, {"text": "only", "start": 2064, "end": 2068, "annotation": null}, {"text": "able", "start": 2069, "end": 2073, "annotation": null}, {"text": "to", "start": 2074, "end": 2076, "annotation": null}, {"text": "decompose", "start": 2077, "end": 2086, "annotation": null}, {"text": "35", "start": 2087, "end": 2089, "annotation": null}, {"text": "%", "start": 2089, "end": 2090, "annotation": null}, {"text": "of", "start": 2091, "end": 2093, "annotation": null}, {"text": "the", "start": 2094, "end": 2097, "annotation": null}, {"text": "dye", "start": 2098, "end": 2101, "annotation": null}, {"text": "and", "start": 2102, "end": 2105, "annotation": null}, {"text": "20", "start": 2106, "end": 2108, "annotation": null}, {"text": "%", "start": 2108, "end": 2109, "annotation": null}, {"text": "of", "start": 2110, "end": 2112, "annotation": null}, {"text": "spent", "start": 2113, "end": 2118, "annotation": null}, {"text": "wash", "start": 2119, "end": 2123, "annotation": null}, {"text": "under", "start": 2124, "end": 2129, "annotation": null}, {"text": "identical", "start": 2130, "end": 2139, "annotation": null}, {"text": "reaction", "start": 2140, "end": 2148, "annotation": null}, {"text": "conditions", "start": 2149, "end": 2159, "annotation": null}, {"text": ".", "start": 2159, "end": 2160, "annotation": null}], [{"text": "A", "start": 2161, "end": 2162, "annotation": null}, {"text": "cycling", "start": 2163, "end": 2170, "annotation": null}, {"text": "stability", "start": 2171, "end": 2180, "annotation": null}, {"text": "test", "start": 2181, "end": 2185, "annotation": null}, {"text": "showed", "start": 2186, "end": 2192, "annotation": null}, {"text": "the", "start": 2193, "end": 2196, "annotation": null}, {"text": "high", "start": 2197, "end": 2201, "annotation": null}, {"text": "stability", "start": 2202, "end": 2211, "annotation": null}, {"text": "and", "start": 2212, "end": 2215, "annotation": null}, {"text": "reusability", "start": 2216, "end": 2227, "annotation": null}, {"text": "of", "start": 2228, "end": 2230, "annotation": null}, {"text": "the", "start": 2231, "end": 2234, "annotation": null}, {"text": "photocatalyst", "start": 2235, "end": 2248, "annotation": null}, {"text": "for", "start": 2249, "end": 2252, "annotation": null}, {"text": "degradation", "start": 2253, "end": 2264, "annotation": null}, {"text": "reactions", "start": 2265, "end": 2274, "annotation": null}, {"text": ",", "start": 2274, "end": 2275, "annotation": null}, {"text": "with", "start": 2276, "end": 2280, "annotation": null}, {"text": "a", "start": 2281, "end": 2282, "annotation": null}, {"text": "recovery", "start": 2283, "end": 2291, "annotation": null}, {"text": "of", "start": 2292, "end": 2294, "annotation": null}, {"text": "around", "start": 2295, "end": 2301, "annotation": null}, {"text": "94-96", "start": 2302, "end": 2307, "annotation": null}, {"text": "%", "start": 2307, "end": 2308, "annotation": null}, {"text": ".", "start": 2308, "end": 2309, "annotation": null}]], "meta": {"doi": "10.1039/c8ra02869a"}} {"text": "Samples of UO2 doped with small amounts of Nb2O5 or La2O3, and having various grain sizes, have been irradiated at 1500\u00b0C to 0.1% FIMA. At this low burn-up, gas release and swelling measurements show no dependence on dopant, but the Booth model prediction of swelling proportional to reciprocal grain size has been verified. Gas release does not fit the simple Booth model at the low releases measured, and shows a dependence on sample density, and hence surface area only. A model has been derived to explain these results. The rare gas diffusion coefficient in UO2 at 1500\u00b0C has been measured to be 1.6 \u00d7 10\u221219 m2/s.", "meta": {"doi": "10.1016/0022-3115(75)90164-6"}, "_input_hash": -1492423575, "_task_hash": -1814672692, "tokens": [[{"text": "Samples", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "of", "start": 8, "end": 10, "id": 1, "annotation": null}, {"text": "UO2", "start": 11, "end": 14, "id": 2, "annotation": "BASEMAT"}, {"text": "doped", "start": 15, "end": 20, "id": 3, "annotation": null}, {"text": "with", "start": 21, "end": 25, "id": 4, "annotation": null}, {"text": "small", "start": 26, "end": 31, "id": 5, "annotation": null}, {"text": "amounts", "start": 32, "end": 39, "id": 6, "annotation": null}, {"text": "of", "start": 40, "end": 42, "id": 7, "annotation": null}, {"text": "Nb2O5", "start": 43, "end": 48, "id": 8, "annotation": "DOPANT"}, {"text": "or", "start": 49, "end": 51, "id": 9, "annotation": null}, {"text": "La2O3", "start": 52, "end": 57, "id": 10, "annotation": "DOPANT"}, {"text": ",", "start": 58, "end": 59, "id": 11, "annotation": null}, {"text": "and", "start": 60, "end": 63, "id": 12, "annotation": null}, {"text": "having", "start": 64, "end": 70, "id": 13, "annotation": null}, {"text": "various", "start": 71, "end": 78, "id": 14, "annotation": null}, {"text": "grain", "start": 79, "end": 84, "id": 15, "annotation": null}, {"text": "sizes", "start": 85, "end": 90, "id": 16, "annotation": null}, {"text": ",", "start": 91, "end": 92, "id": 17, "annotation": null}, {"text": "have", "start": 93, "end": 97, "id": 18, "annotation": null}, {"text": "been", "start": 98, "end": 102, "id": 19, "annotation": null}, {"text": "irradiated", "start": 103, "end": 113, "id": 20, "annotation": null}, {"text": "at", "start": 114, "end": 116, "id": 21, "annotation": null}, {"text": "1500", "start": 117, "end": 121, "id": 22, "annotation": null}, {"text": "\u00b0", "start": 122, "end": 123, "id": 23, "annotation": null}, {"text": "C", "start": 124, "end": 125, "id": 24, "annotation": null}, {"text": "to", "start": 126, "end": 128, "id": 25, "annotation": null}, {"text": "0.1", "start": 129, "end": 132, "id": 26, "annotation": null}, {"text": "%", "start": 133, "end": 134, "id": 27, "annotation": null}, {"text": "FIMA", "start": 135, "end": 139, "id": 28, "annotation": null}, {"text": ".", "start": 140, "end": 141, "id": 29, "annotation": null}], [{"text": "At", "start": 142, "end": 144, "id": 30, "annotation": null}, {"text": "this", "start": 145, "end": 149, "id": 31, "annotation": null}, {"text": "low", "start": 150, "end": 153, "id": 32, "annotation": null}, {"text": "burn", "start": 154, "end": 158, "id": 33, "annotation": null}, {"text": "-", "start": 159, "end": 160, "id": 34, "annotation": null}, {"text": "up", "start": 161, "end": 163, "id": 35, "annotation": null}, {"text": ",", "start": 164, "end": 165, "id": 36, "annotation": null}, {"text": "gas", "start": 166, "end": 169, "id": 37, "annotation": null}, {"text": "release", "start": 170, "end": 177, "id": 38, "annotation": null}, {"text": "and", "start": 178, "end": 181, "id": 39, "annotation": null}, {"text": "swelling", "start": 182, "end": 190, "id": 40, "annotation": null}, {"text": "measurements", "start": 191, "end": 203, "id": 41, "annotation": null}, {"text": "show", "start": 204, "end": 208, "id": 42, "annotation": null}, {"text": "no", "start": 209, "end": 211, "id": 43, "annotation": null}, {"text": "dependence", "start": 212, "end": 222, "id": 44, "annotation": null}, {"text": "on", "start": 223, "end": 225, "id": 45, "annotation": null}, {"text": "dopant", "start": 226, "end": 232, "id": 46, "annotation": null}, {"text": ",", "start": 233, "end": 234, "id": 47, "annotation": null}, {"text": "but", "start": 235, "end": 238, "id": 48, "annotation": null}, {"text": "the", "start": 239, "end": 242, "id": 49, "annotation": null}, {"text": "Booth", "start": 243, "end": 248, "id": 50, "annotation": null}, {"text": "model", "start": 249, "end": 254, "id": 51, "annotation": null}, {"text": "prediction", "start": 255, "end": 265, "id": 52, "annotation": null}, {"text": "of", "start": 266, "end": 268, "id": 53, "annotation": null}, {"text": "swelling", "start": 269, "end": 277, "id": 54, "annotation": null}, {"text": "proportional", "start": 278, "end": 290, "id": 55, "annotation": null}, {"text": "to", "start": 291, "end": 293, "id": 56, "annotation": null}, {"text": "reciprocal", "start": 294, "end": 304, "id": 57, "annotation": null}, {"text": "grain", "start": 305, "end": 310, "id": 58, "annotation": null}, {"text": "size", "start": 311, "end": 315, "id": 59, "annotation": null}, {"text": "has", "start": 316, "end": 319, "id": 60, "annotation": null}, {"text": "been", "start": 320, "end": 324, "id": 61, "annotation": null}, {"text": "verified", "start": 325, "end": 333, "id": 62, "annotation": null}, {"text": ".", "start": 334, "end": 335, "id": 63, "annotation": null}], [{"text": "Gas", "start": 336, "end": 339, "id": 64, "annotation": null}, {"text": "release", "start": 340, "end": 347, "id": 65, "annotation": null}, {"text": "does", "start": 348, "end": 352, "id": 66, "annotation": null}, {"text": "not", "start": 353, "end": 356, "id": 67, "annotation": null}, {"text": "fit", "start": 357, "end": 360, "id": 68, "annotation": null}, {"text": "the", "start": 361, "end": 364, "id": 69, "annotation": null}, {"text": "simple", "start": 365, "end": 371, "id": 70, "annotation": null}, {"text": "Booth", "start": 372, "end": 377, "id": 71, "annotation": null}, {"text": "model", "start": 378, "end": 383, "id": 72, "annotation": null}, {"text": "at", "start": 384, "end": 386, "id": 73, "annotation": null}, {"text": "the", "start": 387, "end": 390, "id": 74, "annotation": null}, {"text": "low", "start": 391, "end": 394, "id": 75, "annotation": null}, {"text": "releases", "start": 395, "end": 403, "id": 76, "annotation": null}, {"text": "measured", "start": 404, "end": 412, "id": 77, "annotation": null}, {"text": ",", "start": 413, "end": 414, "id": 78, "annotation": null}, {"text": "and", "start": 415, "end": 418, "id": 79, "annotation": null}, {"text": "shows", "start": 419, "end": 424, "id": 80, "annotation": null}, {"text": "a", "start": 425, "end": 426, "id": 81, "annotation": null}, {"text": "dependence", "start": 427, "end": 437, "id": 82, "annotation": null}, {"text": "on", "start": 438, "end": 440, "id": 83, "annotation": null}, {"text": "sample", "start": 441, "end": 447, "id": 84, "annotation": null}, {"text": "density", "start": 448, "end": 455, "id": 85, "annotation": null}, {"text": ",", "start": 456, "end": 457, "id": 86, "annotation": null}, {"text": "and", "start": 458, "end": 461, "id": 87, "annotation": null}, {"text": "hence", "start": 462, "end": 467, "id": 88, "annotation": null}, {"text": "surface", "start": 468, "end": 475, "id": 89, "annotation": null}, {"text": "area", "start": 476, "end": 480, "id": 90, "annotation": null}, {"text": "only", "start": 481, "end": 485, "id": 91, "annotation": null}, {"text": ".", "start": 486, "end": 487, "id": 92, "annotation": null}], [{"text": "A", "start": 488, "end": 489, "id": 93, "annotation": null}, {"text": "model", "start": 490, "end": 495, "id": 94, "annotation": null}, {"text": "has", "start": 496, "end": 499, "id": 95, "annotation": null}, {"text": "been", "start": 500, "end": 504, "id": 96, "annotation": null}, {"text": "derived", "start": 505, "end": 512, "id": 97, "annotation": null}, {"text": "to", "start": 513, "end": 515, "id": 98, "annotation": null}, {"text": "explain", "start": 516, "end": 523, "id": 99, "annotation": null}, {"text": "these", "start": 524, "end": 529, "id": 100, "annotation": null}, {"text": "results", "start": 530, "end": 537, "id": 101, "annotation": null}, {"text": ".", "start": 538, "end": 539, "id": 102, "annotation": null}], [{"text": "The", "start": 540, "end": 543, "id": 103, "annotation": null}, {"text": "rare", "start": 544, "end": 548, "id": 104, "annotation": null}, {"text": "gas", "start": 549, "end": 552, "id": 105, "annotation": null}, {"text": "diffusion", "start": 553, "end": 562, "id": 106, "annotation": null}, {"text": "coefficient", "start": 563, "end": 574, "id": 107, "annotation": null}, {"text": "in", "start": 575, "end": 577, "id": 108, "annotation": null}, {"text": "UO2", "start": 578, "end": 581, "id": 109, "annotation": null}, {"text": "at", "start": 582, "end": 584, "id": 110, "annotation": null}, {"text": "1500", "start": 585, "end": 589, "id": 111, "annotation": null}, {"text": "\u00b0", "start": 590, "end": 591, "id": 112, "annotation": null}, {"text": "C", "start": 592, "end": 593, "id": 113, "annotation": null}, {"text": "has", "start": 594, "end": 597, "id": 114, "annotation": null}, {"text": "been", "start": 598, "end": 602, "id": 115, "annotation": null}, {"text": "measured", "start": 603, "end": 611, "id": 116, "annotation": null}, {"text": "to", "start": 612, "end": 614, "id": 117, "annotation": null}, {"text": "be", "start": 615, "end": 617, "id": 118, "annotation": null}, {"text": "1.6", "start": 618, "end": 621, "id": 119, "annotation": null}, {"text": "\u00d7", "start": 622, "end": 623, "id": 120, "annotation": null}, {"text": "10\u221219", "start": 624, "end": 629, "id": 121, "annotation": null}, {"text": "m2", "start": 630, "end": 632, "id": 122, "annotation": null}, {"text": "/", "start": 633, "end": 634, "id": 123, "annotation": null}, {"text": "s", "start": 635, "end": 636, "id": 124, "annotation": null}, {"text": ".", "start": 637, "end": 638, "id": 125, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "Tm3+:LaF3 nanocrystals were synthesized with hydrothermal technique. Local-field effect on the radiative relaxation rate was studied in the system of Tm3+:LaF3 nanocrystals immersed in several liquid media. The fluorescence lifetime was measured. It was found that the fluorescence decay presented the characteristics of second-order exponential decay, for which the contribution from the ions inside the nanocrystal and ions at the interface of the nanocrystal were distinguished. Investigating the experimental results with proposed models, we found that the surface effect had to be eliminated. For rare earth doped LaF3 nanocrystals, real-cavity model well explains the influence of surrounding medium on the fluorescence relaxation rate. \u00a9 2009 John Wiley & Sons, Ltd.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Tm3+", "start": 0, "end": 4, "annotation": "DOPANT"}, {"text": ":", "start": 4, "end": 5, "annotation": null}, {"text": "LaF3", "start": 5, "end": 9, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 10, "end": 22, "annotation": "BASEMAT"}, {"text": "were", "start": 23, "end": 27, "annotation": null}, {"text": "synthesized", "start": 28, "end": 39, "annotation": null}, {"text": "with", "start": 40, "end": 44, "annotation": null}, {"text": "hydrothermal", "start": 45, "end": 57, "annotation": null}, {"text": "technique", "start": 58, "end": 67, "annotation": null}, {"text": ".", "start": 67, "end": 68, "annotation": null}], [{"text": "Local", "start": 69, "end": 74, "annotation": null}, {"text": "-", "start": 74, "end": 75, "annotation": null}, {"text": "field", "start": 75, "end": 80, "annotation": null}, {"text": "effect", "start": 81, "end": 87, "annotation": null}, {"text": "on", "start": 88, "end": 90, "annotation": null}, {"text": "the", "start": 91, "end": 94, "annotation": null}, {"text": "radiative", "start": 95, "end": 104, "annotation": null}, {"text": "relaxation", "start": 105, "end": 115, "annotation": null}, {"text": "rate", "start": 116, "end": 120, "annotation": null}, {"text": "was", "start": 121, "end": 124, "annotation": null}, {"text": "studied", "start": 125, "end": 132, "annotation": null}, {"text": "in", "start": 133, "end": 135, "annotation": null}, {"text": "the", "start": 136, "end": 139, "annotation": null}, {"text": "system", "start": 140, "end": 146, "annotation": null}, {"text": "of", "start": 147, "end": 149, "annotation": null}, {"text": "Tm3+", "start": 150, "end": 154, "annotation": "DOPANT"}, {"text": ":", "start": 154, "end": 155, "annotation": null}, {"text": "LaF3", "start": 155, "end": 159, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 160, "end": 172, "annotation": null}, {"text": "immersed", "start": 173, "end": 181, "annotation": null}, {"text": "in", "start": 182, "end": 184, "annotation": null}, {"text": "several", "start": 185, "end": 192, "annotation": null}, {"text": "liquid", "start": 193, "end": 199, "annotation": null}, {"text": "media", "start": 200, "end": 205, "annotation": null}, {"text": ".", "start": 205, "end": 206, "annotation": null}], [{"text": "The", "start": 207, "end": 210, "annotation": null}, {"text": "fluorescence", "start": 211, "end": 223, "annotation": null}, {"text": "lifetime", "start": 224, "end": 232, "annotation": null}, {"text": "was", "start": 233, "end": 236, "annotation": null}, {"text": "measured", "start": 237, "end": 245, "annotation": null}, {"text": ".", "start": 245, "end": 246, "annotation": null}], [{"text": "It", "start": 247, "end": 249, "annotation": null}, {"text": "was", "start": 250, "end": 253, "annotation": null}, {"text": "found", "start": 254, "end": 259, "annotation": null}, {"text": "that", "start": 260, "end": 264, "annotation": null}, {"text": "the", "start": 265, "end": 268, "annotation": null}, {"text": "fluorescence", "start": 269, "end": 281, "annotation": null}, {"text": "decay", "start": 282, "end": 287, "annotation": null}, {"text": "presented", "start": 288, "end": 297, "annotation": null}, {"text": "the", "start": 298, "end": 301, "annotation": null}, {"text": "characteristics", "start": 302, "end": 317, "annotation": null}, {"text": "of", "start": 318, "end": 320, "annotation": null}, {"text": "second", "start": 321, "end": 327, "annotation": null}, {"text": "-", "start": 327, "end": 328, "annotation": null}, {"text": "order", "start": 328, "end": 333, "annotation": null}, {"text": "exponential", "start": 334, "end": 345, "annotation": null}, {"text": "decay", "start": 346, "end": 351, "annotation": null}, {"text": ",", "start": 351, "end": 352, "annotation": null}, {"text": "for", "start": 353, "end": 356, "annotation": null}, {"text": "which", "start": 357, "end": 362, "annotation": null}, {"text": "the", "start": 363, "end": 366, "annotation": null}, {"text": "contribution", "start": 367, "end": 379, "annotation": null}, {"text": "from", "start": 380, "end": 384, "annotation": null}, {"text": "the", "start": 385, "end": 388, "annotation": null}, {"text": "ions", "start": 389, "end": 393, "annotation": null}, {"text": "inside", "start": 394, "end": 400, "annotation": null}, {"text": "the", "start": 401, "end": 404, "annotation": null}, {"text": "nanocrystal", "start": 405, "end": 416, "annotation": null}, {"text": "and", "start": 417, "end": 420, "annotation": null}, {"text": "ions", "start": 421, "end": 425, "annotation": null}, {"text": "at", "start": 426, "end": 428, "annotation": null}, {"text": "the", "start": 429, "end": 432, "annotation": null}, {"text": "interface", "start": 433, "end": 442, "annotation": null}, {"text": "of", "start": 443, "end": 445, "annotation": null}, {"text": "the", "start": 446, "end": 449, "annotation": null}, {"text": "nanocrystal", "start": 450, "end": 461, "annotation": null}, {"text": "were", "start": 462, "end": 466, "annotation": null}, {"text": "distinguished", "start": 467, "end": 480, "annotation": null}, {"text": ".", "start": 480, "end": 481, "annotation": null}], [{"text": "Investigating", "start": 482, "end": 495, "annotation": null}, {"text": "the", "start": 496, "end": 499, "annotation": null}, {"text": "experimental", "start": 500, "end": 512, "annotation": null}, {"text": "results", "start": 513, "end": 520, "annotation": null}, {"text": "with", "start": 521, "end": 525, "annotation": null}, {"text": "proposed", "start": 526, "end": 534, "annotation": null}, {"text": "models", "start": 535, "end": 541, "annotation": null}, {"text": ",", "start": 541, "end": 542, "annotation": null}, {"text": "we", "start": 543, "end": 545, "annotation": null}, {"text": "found", "start": 546, "end": 551, "annotation": null}, {"text": "that", "start": 552, "end": 556, "annotation": null}, {"text": "the", "start": 557, "end": 560, "annotation": null}, {"text": "surface", "start": 561, "end": 568, "annotation": null}, {"text": "effect", "start": 569, "end": 575, "annotation": null}, {"text": "had", "start": 576, "end": 579, "annotation": null}, {"text": "to", "start": 580, "end": 582, "annotation": null}, {"text": "be", "start": 583, "end": 585, "annotation": null}, {"text": "eliminated", "start": 586, "end": 596, "annotation": null}, {"text": ".", "start": 596, "end": 597, "annotation": null}], [{"text": "For", "start": 598, "end": 601, "annotation": null}, {"text": "rare", "start": 602, "end": 606, "annotation": "DOPANT"}, {"text": "earth", "start": 607, "end": 612, "annotation": "DOPANT"}, {"text": "doped", "start": 613, "end": 618, "annotation": null}, {"text": "LaF3", "start": 619, "end": 623, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 624, "end": 636, "annotation": "BASEMAT"}, {"text": ",", "start": 636, "end": 637, "annotation": null}, {"text": "real", "start": 638, "end": 642, "annotation": null}, {"text": "-", "start": 642, "end": 643, "annotation": null}, {"text": "cavity", "start": 643, "end": 649, "annotation": null}, {"text": "model", "start": 650, "end": 655, "annotation": null}, {"text": "well", "start": 656, "end": 660, "annotation": null}, {"text": "explains", "start": 661, "end": 669, "annotation": null}, {"text": "the", "start": 670, "end": 673, "annotation": null}, {"text": "influence", "start": 674, "end": 683, "annotation": null}, {"text": "of", "start": 684, "end": 686, "annotation": null}, {"text": "surrounding", "start": 687, "end": 698, "annotation": null}, {"text": "medium", "start": 699, "end": 705, "annotation": null}, {"text": "on", "start": 706, "end": 708, "annotation": null}, {"text": "the", "start": 709, "end": 712, "annotation": null}, {"text": "fluorescence", "start": 713, "end": 725, "annotation": null}, {"text": "relaxation", "start": 726, "end": 736, "annotation": null}, {"text": "rate", "start": 737, "end": 741, "annotation": null}, {"text": ".", "start": 741, "end": 742, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Dysprosium doped di-strontium magnesium di-silicate namely Sr2MgSi2O7:Dy3+ phosphor was prepared by the solid state reaction method. The phase structure, surface morphology, particle size, elemental analysis was analyzed by using XRD, TEM, EDX and FTIR techniques. The EDX and FTIR spectra confirm the present elements in Sr2MgSi2O7:Dy3+ phosphor. The optical properties of Sr2MgSi2O7:Dy3+ phosphor was investigated utilizing thermoluminescence (TL), photoluminescence (PL), long lasting phosphorescence and mechanoluminescence (ML). Under the ultraviolet excitation, the emission spectra of Sr2MgSi2O7:Dy3+ phosphor are composed of a broad band and the characteristic emission of Dy3+ peaking at 470nm (blue), 575nm (yellow) and 678nm (red), originating from the transitions of 4F9/2 \u2192 6H15/2, 4F9/2 \u2192 6H13/2 and 4F9/2 \u2192 6H11/2. CIE color coordinates of Sr2MgSi2O7:Dy3+ are suitable as white light emitting phosphor. Decay graph indicate that this phosphor also contains fast decay and slow decay process. The peak of ML intensity increases linearly with increasing impact velocity of the moving piston. The possible mechanism of this white light emitting long lasting phosphor is also investigated.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Dysprosium", "start": 0, "end": 10, "annotation": "DOPANT"}, {"text": "doped", "start": 11, "end": 16, "annotation": null}, {"text": "di-strontium", "start": 17, "end": 29, "annotation": "BASEMAT"}, {"text": "magnesium", "start": 30, "end": 39, "annotation": "BASEMAT"}, {"text": "di-silicate", "start": 40, "end": 51, "annotation": "BASEMAT"}, {"text": "namely", "start": 52, "end": 58, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 59, "end": 69, "annotation": "BASEMAT"}, {"text": ":", "start": 69, "end": 70, "annotation": null}, {"text": "Dy3+", "start": 70, "end": 74, "annotation": "DOPANT"}, {"text": "phosphor", "start": 75, "end": 83, "annotation": null}, {"text": "was", "start": 84, "end": 87, "annotation": null}, {"text": "prepared", "start": 88, "end": 96, "annotation": null}, {"text": "by", "start": 97, "end": 99, "annotation": null}, {"text": "the", "start": 100, "end": 103, "annotation": null}, {"text": "solid", "start": 104, "end": 109, "annotation": null}, {"text": "state", "start": 110, "end": 115, "annotation": null}, {"text": "reaction", "start": 116, "end": 124, "annotation": null}, {"text": "method", "start": 125, "end": 131, "annotation": null}, {"text": ".", "start": 131, "end": 132, "annotation": null}], [{"text": "The", "start": 133, "end": 136, "annotation": null}, {"text": "phase", "start": 137, "end": 142, "annotation": null}, {"text": "structure", "start": 143, "end": 152, "annotation": null}, {"text": ",", "start": 152, "end": 153, "annotation": null}, {"text": "surface", "start": 154, "end": 161, "annotation": null}, {"text": "morphology", "start": 162, "end": 172, "annotation": null}, {"text": ",", "start": 172, "end": 173, "annotation": null}, {"text": "particle", "start": 174, "end": 182, "annotation": null}, {"text": "size", "start": 183, "end": 187, "annotation": null}, {"text": ",", "start": 187, "end": 188, "annotation": null}, {"text": "elemental", "start": 189, "end": 198, "annotation": null}, {"text": "analysis", "start": 199, "end": 207, "annotation": null}, {"text": "was", "start": 208, "end": 211, "annotation": null}, {"text": "analyzed", "start": 212, "end": 220, "annotation": null}, {"text": "by", "start": 221, "end": 223, "annotation": null}, {"text": "using", "start": 224, "end": 229, "annotation": null}, {"text": "XRD", "start": 230, "end": 233, "annotation": null}, {"text": ",", "start": 233, "end": 234, "annotation": null}, {"text": "TEM", "start": 235, "end": 238, "annotation": null}, {"text": ",", "start": 238, "end": 239, "annotation": null}, {"text": "EDX", "start": 240, "end": 243, "annotation": null}, {"text": "and", "start": 244, "end": 247, "annotation": null}, {"text": "FTIR", "start": 248, "end": 252, "annotation": null}, {"text": "techniques", "start": 253, "end": 263, "annotation": null}, {"text": ".", "start": 263, "end": 264, "annotation": null}], [{"text": "The", "start": 265, "end": 268, "annotation": null}, {"text": "EDX", "start": 269, "end": 272, "annotation": null}, {"text": "and", "start": 273, "end": 276, "annotation": null}, {"text": "FTIR", "start": 277, "end": 281, "annotation": null}, {"text": "spectra", "start": 282, "end": 289, "annotation": null}, {"text": "confirm", "start": 290, "end": 297, "annotation": null}, {"text": "the", "start": 298, "end": 301, "annotation": null}, {"text": "present", "start": 302, "end": 309, "annotation": null}, {"text": "elements", "start": 310, "end": 318, "annotation": null}, {"text": "in", "start": 319, "end": 321, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 322, "end": 332, "annotation": "BASEMAT"}, {"text": ":", "start": 332, "end": 333, "annotation": null}, {"text": "Dy3+", "start": 333, "end": 337, "annotation": "DOPANT"}, {"text": "phosphor", "start": 338, "end": 346, "annotation": null}, {"text": ".", "start": 346, "end": 347, "annotation": null}], [{"text": "The", "start": 348, "end": 351, "annotation": null}, {"text": "optical", "start": 352, "end": 359, "annotation": null}, {"text": "properties", "start": 360, "end": 370, "annotation": null}, {"text": "of", "start": 371, "end": 373, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 374, "end": 384, "annotation": "BASEMAT"}, {"text": ":", "start": 384, "end": 385, "annotation": null}, {"text": "Dy3+", "start": 385, "end": 389, "annotation": "DOPANT"}, {"text": "phosphor", "start": 390, "end": 398, "annotation": null}, {"text": "was", "start": 399, "end": 402, "annotation": null}, {"text": "investigated", "start": 403, "end": 415, "annotation": null}, {"text": "utilizing", "start": 416, "end": 425, "annotation": null}, {"text": "thermoluminescence", "start": 426, "end": 444, "annotation": null}, {"text": "(", "start": 445, "end": 446, "annotation": null}, {"text": "TL", "start": 446, "end": 448, "annotation": null}, {"text": ")", "start": 448, "end": 449, "annotation": null}, {"text": ",", "start": 449, "end": 450, "annotation": null}, {"text": "photoluminescence", "start": 451, "end": 468, "annotation": null}, {"text": "(", "start": 469, "end": 470, "annotation": null}, {"text": "PL", "start": 470, "end": 472, "annotation": null}, {"text": ")", "start": 472, "end": 473, "annotation": null}, {"text": ",", "start": 473, "end": 474, "annotation": null}, {"text": "long", "start": 475, "end": 479, "annotation": null}, {"text": "lasting", "start": 480, "end": 487, "annotation": null}, {"text": "phosphorescence", "start": 488, "end": 503, "annotation": null}, {"text": "and", "start": 504, "end": 507, "annotation": null}, {"text": "mechanoluminescence", "start": 508, "end": 527, "annotation": null}, {"text": "(", "start": 528, "end": 529, "annotation": null}, {"text": "ML", "start": 529, "end": 531, "annotation": null}, {"text": ")", "start": 531, "end": 532, "annotation": null}, {"text": ".", "start": 532, "end": 533, "annotation": null}], [{"text": "Under", "start": 534, "end": 539, "annotation": null}, {"text": "the", "start": 540, "end": 543, "annotation": null}, {"text": "ultraviolet", "start": 544, "end": 555, "annotation": null}, {"text": "excitation", "start": 556, "end": 566, "annotation": null}, {"text": ",", "start": 566, "end": 567, "annotation": null}, {"text": "the", "start": 568, "end": 571, "annotation": null}, {"text": "emission", "start": 572, "end": 580, "annotation": null}, {"text": "spectra", "start": 581, "end": 588, "annotation": null}, {"text": "of", "start": 589, "end": 591, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 592, "end": 602, "annotation": "BASEMAT"}, {"text": ":", "start": 602, "end": 603, "annotation": null}, {"text": "Dy3+", "start": 603, "end": 607, "annotation": "DOPANT"}, {"text": "phosphor", "start": 608, "end": 616, "annotation": null}, {"text": "are", "start": 617, "end": 620, "annotation": null}, {"text": "composed", "start": 621, "end": 629, "annotation": null}, {"text": "of", "start": 630, "end": 632, "annotation": null}, {"text": "a", "start": 633, "end": 634, "annotation": null}, {"text": "broad", "start": 635, "end": 640, "annotation": null}, {"text": "band", "start": 641, "end": 645, "annotation": null}, {"text": "and", "start": 646, "end": 649, "annotation": null}, {"text": "the", "start": 650, "end": 653, "annotation": null}, {"text": "characteristic", "start": 654, "end": 668, "annotation": null}, {"text": "emission", "start": 669, "end": 677, "annotation": null}, {"text": "of", "start": 678, "end": 680, "annotation": null}, {"text": "Dy3+", "start": 681, "end": 685, "annotation": "DOPANT"}, {"text": "peaking", "start": 686, "end": 693, "annotation": null}, {"text": "at", "start": 694, "end": 696, "annotation": null}, {"text": "470", "start": 697, "end": 700, "annotation": null}, {"text": "nm", "start": 700, "end": 702, "annotation": null}, {"text": "(", "start": 703, "end": 704, "annotation": null}, {"text": "blue", "start": 704, "end": 708, "annotation": null}, {"text": ")", "start": 708, "end": 709, "annotation": null}, {"text": ",", "start": 709, "end": 710, "annotation": null}, {"text": "575", "start": 711, "end": 714, "annotation": null}, {"text": "nm", "start": 714, "end": 716, "annotation": null}, {"text": "(", "start": 717, "end": 718, "annotation": null}, {"text": "yellow", "start": 718, "end": 724, "annotation": null}, {"text": ")", "start": 724, "end": 725, "annotation": null}, {"text": "and", "start": 726, "end": 729, "annotation": null}, {"text": "678", "start": 730, "end": 733, "annotation": null}, {"text": "nm", "start": 733, "end": 735, "annotation": null}, {"text": "(", "start": 736, "end": 737, "annotation": null}, {"text": "red", "start": 737, "end": 740, "annotation": null}, {"text": ")", "start": 740, "end": 741, "annotation": null}, {"text": ",", "start": 741, "end": 742, "annotation": null}, {"text": "originating", "start": 743, "end": 754, "annotation": null}, {"text": "from", "start": 755, "end": 759, "annotation": null}, {"text": "the", "start": 760, "end": 763, "annotation": null}, {"text": "transitions", "start": 764, "end": 775, "annotation": null}, {"text": "of", "start": 776, "end": 778, "annotation": null}, {"text": "4F9", "start": 779, "end": 782, "annotation": null}, {"text": "/", "start": 782, "end": 783, "annotation": null}, {"text": "2", "start": 783, "end": 784, "annotation": null}, {"text": "\u2192", "start": 785, "end": 786, "annotation": null}, {"text": "6H15", "start": 787, "end": 791, "annotation": null}, {"text": "/", "start": 791, "end": 792, "annotation": null}, {"text": "2", "start": 792, "end": 793, "annotation": null}, {"text": ",", "start": 793, "end": 794, "annotation": null}, {"text": "4F9", "start": 795, "end": 798, "annotation": null}, {"text": "/", "start": 798, "end": 799, "annotation": null}, {"text": "2", "start": 799, "end": 800, "annotation": null}, {"text": "\u2192", "start": 801, "end": 802, "annotation": null}, {"text": "6H13", "start": 803, "end": 807, "annotation": null}, {"text": "/", "start": 807, "end": 808, "annotation": null}, {"text": "2", "start": 808, "end": 809, "annotation": null}, {"text": "and", "start": 810, "end": 813, "annotation": null}, {"text": "4F9", "start": 814, "end": 817, "annotation": null}, {"text": "/", "start": 817, "end": 818, "annotation": null}, {"text": "2", "start": 818, "end": 819, "annotation": null}, {"text": "\u2192", "start": 820, "end": 821, "annotation": null}, {"text": "6H11", "start": 822, "end": 826, "annotation": null}, {"text": "/", "start": 826, "end": 827, "annotation": null}, {"text": "2", "start": 827, "end": 828, "annotation": null}, {"text": ".", "start": 828, "end": 829, "annotation": null}], [{"text": "CIE", "start": 830, "end": 833, "annotation": null}, {"text": "color", "start": 834, "end": 839, "annotation": null}, {"text": "coordinates", "start": 840, "end": 851, "annotation": null}, {"text": "of", "start": 852, "end": 854, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 855, "end": 865, "annotation": "BASEMAT"}, {"text": ":", "start": 865, "end": 866, "annotation": null}, {"text": "Dy3+", "start": 866, "end": 870, "annotation": "DOPANT"}, {"text": "are", "start": 871, "end": 874, "annotation": null}, {"text": "suitable", "start": 875, "end": 883, "annotation": null}, {"text": "as", "start": 884, "end": 886, "annotation": null}, {"text": "white", "start": 887, "end": 892, "annotation": null}, {"text": "light", "start": 893, "end": 898, "annotation": null}, {"text": "emitting", "start": 899, "end": 907, "annotation": null}, {"text": "phosphor", "start": 908, "end": 916, "annotation": null}, {"text": ".", "start": 916, "end": 917, "annotation": null}], [{"text": "Decay", "start": 918, "end": 923, "annotation": null}, {"text": "graph", "start": 924, "end": 929, "annotation": null}, {"text": "indicate", "start": 930, "end": 938, "annotation": null}, {"text": "that", "start": 939, "end": 943, "annotation": null}, {"text": "this", "start": 944, "end": 948, "annotation": null}, {"text": "phosphor", "start": 949, "end": 957, "annotation": null}, {"text": "also", "start": 958, "end": 962, "annotation": null}, {"text": "contains", "start": 963, "end": 971, "annotation": null}, {"text": "fast", "start": 972, "end": 976, "annotation": null}, {"text": "decay", "start": 977, "end": 982, "annotation": null}, {"text": "and", "start": 983, "end": 986, "annotation": null}, {"text": "slow", "start": 987, "end": 991, "annotation": null}, {"text": "decay", "start": 992, "end": 997, "annotation": null}, {"text": "process", "start": 998, "end": 1005, "annotation": null}, {"text": ".", "start": 1005, "end": 1006, "annotation": null}], [{"text": "The", "start": 1007, "end": 1010, "annotation": null}, {"text": "peak", "start": 1011, "end": 1015, "annotation": null}, {"text": "of", "start": 1016, "end": 1018, "annotation": null}, {"text": "ML", "start": 1019, "end": 1021, "annotation": null}, {"text": "intensity", "start": 1022, "end": 1031, "annotation": null}, {"text": "increases", "start": 1032, "end": 1041, "annotation": null}, {"text": "linearly", "start": 1042, "end": 1050, "annotation": null}, {"text": "with", "start": 1051, "end": 1055, "annotation": null}, {"text": "increasing", "start": 1056, "end": 1066, "annotation": null}, {"text": "impact", "start": 1067, "end": 1073, "annotation": null}, {"text": "velocity", "start": 1074, "end": 1082, "annotation": null}, {"text": "of", "start": 1083, "end": 1085, "annotation": null}, {"text": "the", "start": 1086, "end": 1089, "annotation": null}, {"text": "moving", "start": 1090, "end": 1096, "annotation": null}, {"text": "piston", "start": 1097, "end": 1103, "annotation": null}, {"text": ".", "start": 1103, "end": 1104, "annotation": null}], [{"text": "The", "start": 1105, "end": 1108, "annotation": null}, {"text": "possible", "start": 1109, "end": 1117, "annotation": null}, {"text": "mechanism", "start": 1118, "end": 1127, "annotation": null}, {"text": "of", "start": 1128, "end": 1130, "annotation": null}, {"text": "this", "start": 1131, "end": 1135, "annotation": null}, {"text": "white", "start": 1136, "end": 1141, "annotation": null}, {"text": "light", "start": 1142, "end": 1147, "annotation": null}, {"text": "emitting", "start": 1148, "end": 1156, "annotation": null}, {"text": "long", "start": 1157, "end": 1161, "annotation": null}, {"text": "lasting", "start": 1162, "end": 1169, "annotation": null}, {"text": "phosphor", "start": 1170, "end": 1178, "annotation": null}, {"text": "is", "start": 1179, "end": 1181, "annotation": null}, {"text": "also", "start": 1182, "end": 1186, "annotation": null}, {"text": "investigated", "start": 1187, "end": 1199, "annotation": null}, {"text": ".", "start": 1199, "end": 1200, "annotation": null}]]} -{"text": "Recently p-type Cu\u2013Ti\u2013O nanotubes have been explored in water-splitting photoelectrochemical pn-junction diodes to significantly improve the photoconversion efficiency. We reported on the growth and characterization of Cu\u2013Ti\u2013O nanotube arrays by anodizing directly Cu\u2013Ti (30:70wt%) alloy substrate. As-anodized hierarchical Cu\u2013Ti\u2013O nanotube arrays consist of two distinct Ti-rich and Cu-rich nanotube regions. It was found that mechanical stresses induced by copper doping resulted in the difference in the microstructure evolution of Cu-rich and Ti-rich regions. The oxygen vacancies induced by the high concentration Cu dopant into the Cu\u2013Ti\u2013O nanotube play a crucial role in determining the phase stabilization of anatase phase. The absorption edge of TiO2 nanotube arrays was extended into the visible region by Cu doping. In degrading Methyl orange (MO), 21.2% MO was removed using Cu\u2013Ti\u2013O nanotube arrays after 240min UV illumination. This result indicates the photocatalytic activity of Cu\u2013Ti\u2013O nanotube arrays to MO is reasonably high.", "meta": {"doi": "10.1016/j.jallcom.2010.04.099"}, "_input_hash": -688211843, "_task_hash": 15686230, "tokens": [[{"text": "Recently", "start": 0, "end": 8, "id": 0, "annotation": null}, {"text": "p", "start": 9, "end": 10, "id": 1, "annotation": "DOPANT"}, {"text": "-", "start": 11, "end": 12, "id": 2, "annotation": null}, {"text": "type", "start": 13, "end": 17, "id": 3, "annotation": "DOPANT"}, {"text": "Cu", "start": 18, "end": 20, "id": 4, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 21, "end": 22, "id": 5, "annotation": null}, {"text": "Ti", "start": 23, "end": 25, "id": 6, "annotation": null}, {"text": "\u2013", "start": 26, "end": 27, "id": 7, "annotation": null}, {"text": "O", "start": 28, "end": 29, "id": 8, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 30, "end": 39, "id": 9, "annotation": null}, {"text": "have", "start": 40, "end": 44, "id": 10, "annotation": null}, {"text": "been", "start": 45, "end": 49, "id": 11, "annotation": null}, {"text": "explored", "start": 50, "end": 58, "id": 12, "annotation": null}, {"text": "in", "start": 59, "end": 61, "id": 13, "annotation": null}, {"text": "water", "start": 62, "end": 67, "id": 14, "annotation": null}, {"text": "-", "start": 68, "end": 69, "id": 15, "annotation": null}, {"text": "splitting", "start": 70, "end": 79, "id": 16, "annotation": null}, {"text": "photoelectrochemical", "start": 80, "end": 100, "id": 17, "annotation": null}, {"text": "pn", "start": 101, "end": 103, "id": 18, "annotation": null}, {"text": "-", "start": 104, "end": 105, "id": 19, "annotation": null}, {"text": "junction", "start": 106, "end": 114, "id": 20, "annotation": null}, {"text": "diodes", "start": 115, "end": 121, "id": 21, "annotation": null}, {"text": "to", "start": 122, "end": 124, "id": 22, "annotation": null}, {"text": "significantly", "start": 125, "end": 138, "id": 23, "annotation": null}, {"text": "improve", "start": 139, "end": 146, "id": 24, "annotation": null}, {"text": "the", "start": 147, "end": 150, "id": 25, "annotation": null}, {"text": "photoconversion", "start": 151, "end": 166, "id": 26, "annotation": null}, {"text": "efficiency", "start": 167, "end": 177, "id": 27, "annotation": null}, {"text": ".", "start": 178, "end": 179, "id": 28, "annotation": null}], [{"text": "We", "start": 180, "end": 182, "id": 29, "annotation": null}, {"text": "reported", "start": 183, "end": 191, "id": 30, "annotation": null}, {"text": "on", "start": 192, "end": 194, "id": 31, "annotation": null}, {"text": "the", "start": 195, "end": 198, "id": 32, "annotation": null}, {"text": "growth", "start": 199, "end": 205, "id": 33, "annotation": null}, {"text": "and", "start": 206, "end": 209, "id": 34, "annotation": null}, {"text": "characterization", "start": 210, "end": 226, "id": 35, "annotation": null}, {"text": "of", "start": 227, "end": 229, "id": 36, "annotation": null}, {"text": "Cu", "start": 230, "end": 232, "id": 37, "annotation": null}, {"text": "\u2013", "start": 233, "end": 234, "id": 38, "annotation": null}, {"text": "Ti", "start": 235, "end": 237, "id": 39, "annotation": null}, {"text": "\u2013", "start": 238, "end": 239, "id": 40, "annotation": null}, {"text": "O", "start": 240, "end": 241, "id": 41, "annotation": null}, {"text": "nanotube", "start": 242, "end": 250, "id": 42, "annotation": null}, {"text": "arrays", "start": 251, "end": 257, "id": 43, "annotation": null}, {"text": "by", "start": 258, "end": 260, "id": 44, "annotation": null}, {"text": "anodizing", "start": 261, "end": 270, "id": 45, "annotation": null}, {"text": "directly", "start": 271, "end": 279, "id": 46, "annotation": null}, {"text": "Cu", "start": 280, "end": 282, "id": 47, "annotation": null}, {"text": "\u2013", "start": 283, "end": 284, "id": 48, "annotation": null}, {"text": "Ti", "start": 285, "end": 287, "id": 49, "annotation": null}, {"text": "(", "start": 288, "end": 289, "id": 50, "annotation": null}, {"text": "30:70wt%", "start": 290, "end": 298, "id": 51, "annotation": null}, {"text": ")", "start": 299, "end": 300, "id": 52, "annotation": null}, {"text": "alloy", "start": 301, "end": 306, "id": 53, "annotation": null}, {"text": "substrate", "start": 307, "end": 316, "id": 54, "annotation": null}, {"text": ".", "start": 317, "end": 318, "id": 55, "annotation": null}], [{"text": "As", "start": 319, "end": 321, "id": 56, "annotation": null}, {"text": "-", "start": 322, "end": 323, "id": 57, "annotation": null}, {"text": "anodized", "start": 324, "end": 332, "id": 58, "annotation": null}, {"text": "hierarchical", "start": 333, "end": 345, "id": 59, "annotation": null}, {"text": "Cu", "start": 346, "end": 348, "id": 60, "annotation": null}, {"text": "\u2013", "start": 349, "end": 350, "id": 61, "annotation": null}, {"text": "Ti", "start": 351, "end": 353, "id": 62, "annotation": null}, {"text": "\u2013", "start": 354, "end": 355, "id": 63, "annotation": null}, {"text": "O", "start": 356, "end": 357, "id": 64, "annotation": null}, {"text": "nanotube", "start": 358, "end": 366, "id": 65, "annotation": null}, {"text": "arrays", "start": 367, "end": 373, "id": 66, "annotation": null}, {"text": "consist", "start": 374, "end": 381, "id": 67, "annotation": null}, {"text": "of", "start": 382, "end": 384, "id": 68, "annotation": null}, {"text": "two", "start": 385, "end": 388, "id": 69, "annotation": null}, {"text": "distinct", "start": 389, "end": 397, "id": 70, "annotation": null}, {"text": "Ti", "start": 398, "end": 400, "id": 71, "annotation": null}, {"text": "-", "start": 401, "end": 402, "id": 72, "annotation": null}, {"text": "rich", "start": 403, "end": 407, "id": 73, "annotation": null}, {"text": "and", "start": 408, "end": 411, "id": 74, "annotation": null}, {"text": "Cu", "start": 412, "end": 414, "id": 75, "annotation": null}, {"text": "-", "start": 415, "end": 416, "id": 76, "annotation": null}, {"text": "rich", "start": 417, "end": 421, "id": 77, "annotation": null}, {"text": "nanotube", "start": 422, "end": 430, "id": 78, "annotation": null}, {"text": "regions", "start": 431, "end": 438, "id": 79, "annotation": null}, {"text": ".", "start": 439, "end": 440, "id": 80, "annotation": null}], [{"text": "It", "start": 441, "end": 443, "id": 81, "annotation": null}, {"text": "was", "start": 444, "end": 447, "id": 82, "annotation": null}, {"text": "found", "start": 448, "end": 453, "id": 83, "annotation": null}, {"text": "that", "start": 454, "end": 458, "id": 84, "annotation": null}, {"text": "mechanical", "start": 459, "end": 469, "id": 85, "annotation": null}, {"text": "stresses", "start": 470, "end": 478, "id": 86, "annotation": null}, {"text": "induced", "start": 479, "end": 486, "id": 87, "annotation": null}, {"text": "by", "start": 487, "end": 489, "id": 88, "annotation": null}, {"text": "copper", "start": 490, "end": 496, "id": 89, "annotation": "DOPANT"}, {"text": "doping", "start": 497, "end": 503, "id": 90, "annotation": null}, {"text": "resulted", "start": 504, "end": 512, "id": 91, "annotation": null}, {"text": "in", "start": 513, "end": 515, "id": 92, "annotation": null}, {"text": "the", "start": 516, "end": 519, "id": 93, "annotation": null}, {"text": "difference", "start": 520, "end": 530, "id": 94, "annotation": null}, {"text": "in", "start": 531, "end": 533, "id": 95, "annotation": null}, {"text": "the", "start": 534, "end": 537, "id": 96, "annotation": null}, {"text": "microstructure", "start": 538, "end": 552, "id": 97, "annotation": null}, {"text": "evolution", "start": 553, "end": 562, "id": 98, "annotation": null}, {"text": "of", "start": 563, "end": 565, "id": 99, "annotation": null}, {"text": "Cu", "start": 566, "end": 568, "id": 100, "annotation": null}, {"text": "-", "start": 569, "end": 570, "id": 101, "annotation": null}, {"text": "rich", "start": 571, "end": 575, "id": 102, "annotation": null}, {"text": "and", "start": 576, "end": 579, "id": 103, "annotation": null}, {"text": "Ti", "start": 580, "end": 582, "id": 104, "annotation": null}, {"text": "-", "start": 583, "end": 584, "id": 105, "annotation": null}, {"text": "rich", "start": 585, "end": 589, "id": 106, "annotation": null}, {"text": "regions", "start": 590, "end": 597, "id": 107, "annotation": null}, {"text": ".", "start": 598, "end": 599, "id": 108, "annotation": null}], [{"text": "The", "start": 600, "end": 603, "id": 109, "annotation": null}, {"text": "oxygen", "start": 604, "end": 610, "id": 110, "annotation": null}, {"text": "vacancies", "start": 611, "end": 620, "id": 111, "annotation": null}, {"text": "induced", "start": 621, "end": 628, "id": 112, "annotation": null}, {"text": "by", "start": 629, "end": 631, "id": 113, "annotation": null}, {"text": "the", "start": 632, "end": 635, "id": 114, "annotation": null}, {"text": "high", "start": 636, "end": 640, "id": 115, "annotation": null}, {"text": "concentration", "start": 641, "end": 654, "id": 116, "annotation": null}, {"text": "Cu", "start": 655, "end": 657, "id": 117, "annotation": "DOPANT"}, {"text": "dopant", "start": 658, "end": 664, "id": 118, "annotation": null}, {"text": "into", "start": 665, "end": 669, "id": 119, "annotation": null}, {"text": "the", "start": 670, "end": 673, "id": 120, "annotation": null}, {"text": "Cu", "start": 674, "end": 676, "id": 121, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 677, "end": 678, "id": 122, "annotation": null}, {"text": "Ti", "start": 679, "end": 681, "id": 123, "annotation": null}, {"text": "\u2013", "start": 682, "end": 683, "id": 124, "annotation": null}, {"text": "O", "start": 684, "end": 685, "id": 125, "annotation": "BASEMAT"}, {"text": "nanotube", "start": 686, "end": 694, "id": 126, "annotation": null}, {"text": "play", "start": 695, "end": 699, "id": 127, "annotation": null}, {"text": "a", "start": 700, "end": 701, "id": 128, "annotation": null}, {"text": "crucial", "start": 702, "end": 709, "id": 129, "annotation": null}, {"text": "role", "start": 710, "end": 714, "id": 130, "annotation": null}, {"text": "in", "start": 715, "end": 717, "id": 131, "annotation": null}, {"text": "determining", "start": 718, "end": 729, "id": 132, "annotation": null}, {"text": "the", "start": 730, "end": 733, "id": 133, "annotation": null}, {"text": "phase", "start": 734, "end": 739, "id": 134, "annotation": null}, {"text": "stabilization", "start": 740, "end": 753, "id": 135, "annotation": null}, {"text": "of", "start": 754, "end": 756, "id": 136, "annotation": null}, {"text": "anatase", "start": 757, "end": 764, "id": 137, "annotation": null}, {"text": "phase", "start": 765, "end": 770, "id": 138, "annotation": null}, {"text": ".", "start": 771, "end": 772, "id": 139, "annotation": null}], [{"text": "The", "start": 773, "end": 776, "id": 140, "annotation": null}, {"text": "absorption", "start": 777, "end": 787, "id": 141, "annotation": null}, {"text": "edge", "start": 788, "end": 792, "id": 142, "annotation": null}, {"text": "of", "start": 793, "end": 795, "id": 143, "annotation": null}, {"text": "TiO2", "start": 796, "end": 800, "id": 144, "annotation": "BASEMAT"}, {"text": "nanotube", "start": 801, "end": 809, "id": 145, "annotation": null}, {"text": "arrays", "start": 810, "end": 816, "id": 146, "annotation": null}, {"text": "was", "start": 817, "end": 820, "id": 147, "annotation": null}, {"text": "extended", "start": 821, "end": 829, "id": 148, "annotation": null}, {"text": "into", "start": 830, "end": 834, "id": 149, "annotation": null}, {"text": "the", "start": 835, "end": 838, "id": 150, "annotation": null}, {"text": "visible", "start": 839, "end": 846, "id": 151, "annotation": null}, {"text": "region", "start": 847, "end": 853, "id": 152, "annotation": null}, {"text": "by", "start": 854, "end": 856, "id": 153, "annotation": null}, {"text": "Cu", "start": 857, "end": 859, "id": 154, "annotation": "DOPANT"}, {"text": "doping", "start": 860, "end": 866, "id": 155, "annotation": null}, {"text": ".", "start": 867, "end": 868, "id": 156, "annotation": null}], [{"text": "In", "start": 869, "end": 871, "id": 157, "annotation": null}, {"text": "degrading", "start": 872, "end": 881, "id": 158, "annotation": null}, {"text": "Methyl", "start": 882, "end": 888, "id": 159, "annotation": null}, {"text": "orange", "start": 889, "end": 895, "id": 160, "annotation": null}, {"text": "(", "start": 896, "end": 897, "id": 161, "annotation": null}, {"text": "MO", "start": 898, "end": 900, "id": 162, "annotation": null}, {"text": ")", "start": 901, "end": 902, "id": 163, "annotation": null}, {"text": ",", "start": 903, "end": 904, "id": 164, "annotation": null}, {"text": "21.2", "start": 905, "end": 909, "id": 165, "annotation": null}, {"text": "%", "start": 910, "end": 911, "id": 166, "annotation": null}, {"text": "MO", "start": 912, "end": 914, "id": 167, "annotation": null}, {"text": "was", "start": 915, "end": 918, "id": 168, "annotation": null}, {"text": "removed", "start": 919, "end": 926, "id": 169, "annotation": null}, {"text": "using", "start": 927, "end": 932, "id": 170, "annotation": null}, {"text": "Cu", "start": 933, "end": 935, "id": 171, "annotation": null}, {"text": "\u2013", "start": 936, "end": 937, "id": 172, "annotation": null}, {"text": "Ti", "start": 938, "end": 940, "id": 173, "annotation": null}, {"text": "\u2013", "start": 941, "end": 942, "id": 174, "annotation": null}, {"text": "O", "start": 943, "end": 944, "id": 175, "annotation": null}, {"text": "nanotube", "start": 945, "end": 953, "id": 176, "annotation": null}, {"text": "arrays", "start": 954, "end": 960, "id": 177, "annotation": null}, {"text": "after", "start": 961, "end": 966, "id": 178, "annotation": null}, {"text": "240min", "start": 967, "end": 973, "id": 179, "annotation": null}, {"text": "UV", "start": 974, "end": 976, "id": 180, "annotation": null}, {"text": "illumination", "start": 977, "end": 989, "id": 181, "annotation": null}, {"text": ".", "start": 990, "end": 991, "id": 182, "annotation": null}], [{"text": "This", "start": 992, "end": 996, "id": 183, "annotation": null}, {"text": "result", "start": 997, "end": 1003, "id": 184, "annotation": null}, {"text": "indicates", "start": 1004, "end": 1013, "id": 185, "annotation": null}, {"text": "the", "start": 1014, "end": 1017, "id": 186, "annotation": null}, {"text": "photocatalytic", "start": 1018, "end": 1032, "id": 187, "annotation": null}, {"text": "activity", "start": 1033, "end": 1041, "id": 188, "annotation": null}, {"text": "of", "start": 1042, "end": 1044, "id": 189, "annotation": null}, {"text": "Cu", "start": 1045, "end": 1047, "id": 190, "annotation": null}, {"text": "\u2013", "start": 1048, "end": 1049, "id": 191, "annotation": null}, {"text": "Ti", "start": 1050, "end": 1052, "id": 192, "annotation": null}, {"text": "\u2013", "start": 1053, "end": 1054, "id": 193, "annotation": null}, {"text": "O", "start": 1055, "end": 1056, "id": 194, "annotation": null}, {"text": "nanotube", "start": 1057, "end": 1065, "id": 195, "annotation": null}, {"text": "arrays", "start": 1066, "end": 1072, "id": 196, "annotation": null}, {"text": "to", "start": 1073, "end": 1075, "id": 197, "annotation": null}, {"text": "MO", "start": 1076, "end": 1078, "id": 198, "annotation": null}, {"text": "is", "start": 1079, "end": 1081, "id": 199, "annotation": null}, {"text": "reasonably", "start": 1082, "end": 1092, "id": 200, "annotation": null}, {"text": "high", "start": 1093, "end": 1097, "id": 201, "annotation": null}, {"text": ".", "start": 1098, "end": 1099, "id": 202, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt3", "text": "Tm3+:LaF3 nanocrystals were synthesized with hydrothermal technique. Local-field effect on the radiative relaxation rate was studied in the system of Tm3+:LaF3 nanocrystals immersed in several liquid media. The fluorescence lifetime was measured. It was found that the fluorescence decay presented the characteristics of second-order exponential decay, for which the contribution from the ions inside the nanocrystal and ions at the interface of the nanocrystal were distinguished. Investigating the experimental results with proposed models, we found that the surface effect had to be eliminated. For rare earth doped LaF3 nanocrystals, real-cavity model well explains the influence of surrounding medium on the fluorescence relaxation rate. \u00a9 2009 John Wiley & Sons, Ltd.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Tm3+", "start": 0, "end": 4, "annotation": "DOPANT"}, {"text": ":", "start": 4, "end": 5, "annotation": null}, {"text": "LaF3", "start": 5, "end": 9, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 10, "end": 22, "annotation": "BASEMAT"}, {"text": "were", "start": 23, "end": 27, "annotation": null}, {"text": "synthesized", "start": 28, "end": 39, "annotation": null}, {"text": "with", "start": 40, "end": 44, "annotation": null}, {"text": "hydrothermal", "start": 45, "end": 57, "annotation": null}, {"text": "technique", "start": 58, "end": 67, "annotation": null}, {"text": ".", "start": 67, "end": 68, "annotation": null}], [{"text": "Local", "start": 69, "end": 74, "annotation": null}, {"text": "-", "start": 74, "end": 75, "annotation": null}, {"text": "field", "start": 75, "end": 80, "annotation": null}, {"text": "effect", "start": 81, "end": 87, "annotation": null}, {"text": "on", "start": 88, "end": 90, "annotation": null}, {"text": "the", "start": 91, "end": 94, "annotation": null}, {"text": "radiative", "start": 95, "end": 104, "annotation": null}, {"text": "relaxation", "start": 105, "end": 115, "annotation": null}, {"text": "rate", "start": 116, "end": 120, "annotation": null}, {"text": "was", "start": 121, "end": 124, "annotation": null}, {"text": "studied", "start": 125, "end": 132, "annotation": null}, {"text": "in", "start": 133, "end": 135, "annotation": null}, {"text": "the", "start": 136, "end": 139, "annotation": null}, {"text": "system", "start": 140, "end": 146, "annotation": null}, {"text": "of", "start": 147, "end": 149, "annotation": null}, {"text": "Tm3+", "start": 150, "end": 154, "annotation": "DOPANT"}, {"text": ":", "start": 154, "end": 155, "annotation": null}, {"text": "LaF3", "start": 155, "end": 159, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 160, "end": 172, "annotation": null}, {"text": "immersed", "start": 173, "end": 181, "annotation": null}, {"text": "in", "start": 182, "end": 184, "annotation": null}, {"text": "several", "start": 185, "end": 192, "annotation": null}, {"text": "liquid", "start": 193, "end": 199, "annotation": null}, {"text": "media", "start": 200, "end": 205, "annotation": null}, {"text": ".", "start": 205, "end": 206, "annotation": null}], [{"text": "The", "start": 207, "end": 210, "annotation": null}, {"text": "fluorescence", "start": 211, "end": 223, "annotation": null}, {"text": "lifetime", "start": 224, "end": 232, "annotation": null}, {"text": "was", "start": 233, "end": 236, "annotation": null}, {"text": "measured", "start": 237, "end": 245, "annotation": null}, {"text": ".", "start": 245, "end": 246, "annotation": null}], [{"text": "It", "start": 247, "end": 249, "annotation": null}, {"text": "was", "start": 250, "end": 253, "annotation": null}, {"text": "found", "start": 254, "end": 259, "annotation": null}, {"text": "that", "start": 260, "end": 264, "annotation": null}, {"text": "the", "start": 265, "end": 268, "annotation": null}, {"text": "fluorescence", "start": 269, "end": 281, "annotation": null}, {"text": "decay", "start": 282, "end": 287, "annotation": null}, {"text": "presented", "start": 288, "end": 297, "annotation": null}, {"text": "the", "start": 298, "end": 301, "annotation": null}, {"text": "characteristics", "start": 302, "end": 317, "annotation": null}, {"text": "of", "start": 318, "end": 320, "annotation": null}, {"text": "second", "start": 321, "end": 327, "annotation": null}, {"text": "-", "start": 327, "end": 328, "annotation": null}, {"text": "order", "start": 328, "end": 333, "annotation": null}, {"text": "exponential", "start": 334, "end": 345, "annotation": null}, {"text": "decay", "start": 346, "end": 351, "annotation": null}, {"text": ",", "start": 351, "end": 352, "annotation": null}, {"text": "for", "start": 353, "end": 356, "annotation": null}, {"text": "which", "start": 357, "end": 362, "annotation": null}, {"text": "the", "start": 363, "end": 366, "annotation": null}, {"text": "contribution", "start": 367, "end": 379, "annotation": null}, {"text": "from", "start": 380, "end": 384, "annotation": null}, {"text": "the", "start": 385, "end": 388, "annotation": null}, {"text": "ions", "start": 389, "end": 393, "annotation": null}, {"text": "inside", "start": 394, "end": 400, "annotation": null}, {"text": "the", "start": 401, "end": 404, "annotation": null}, {"text": "nanocrystal", "start": 405, "end": 416, "annotation": null}, {"text": "and", "start": 417, "end": 420, "annotation": null}, {"text": "ions", "start": 421, "end": 425, "annotation": null}, {"text": "at", "start": 426, "end": 428, "annotation": null}, {"text": "the", "start": 429, "end": 432, "annotation": null}, {"text": "interface", "start": 433, "end": 442, "annotation": null}, {"text": "of", "start": 443, "end": 445, "annotation": null}, {"text": "the", "start": 446, "end": 449, "annotation": null}, {"text": "nanocrystal", "start": 450, "end": 461, "annotation": null}, {"text": "were", "start": 462, "end": 466, "annotation": null}, {"text": "distinguished", "start": 467, "end": 480, "annotation": null}, {"text": ".", "start": 480, "end": 481, "annotation": null}], [{"text": "Investigating", "start": 482, "end": 495, "annotation": null}, {"text": "the", "start": 496, "end": 499, "annotation": null}, {"text": "experimental", "start": 500, "end": 512, "annotation": null}, {"text": "results", "start": 513, "end": 520, "annotation": null}, {"text": "with", "start": 521, "end": 525, "annotation": null}, {"text": "proposed", "start": 526, "end": 534, "annotation": null}, {"text": "models", "start": 535, "end": 541, "annotation": null}, {"text": ",", "start": 541, "end": 542, "annotation": null}, {"text": "we", "start": 543, "end": 545, "annotation": null}, {"text": "found", "start": 546, "end": 551, "annotation": null}, {"text": "that", "start": 552, "end": 556, "annotation": null}, {"text": "the", "start": 557, "end": 560, "annotation": null}, {"text": "surface", "start": 561, "end": 568, "annotation": null}, {"text": "effect", "start": 569, "end": 575, "annotation": null}, {"text": "had", "start": 576, "end": 579, "annotation": null}, {"text": "to", "start": 580, "end": 582, "annotation": null}, {"text": "be", "start": 583, "end": 585, "annotation": null}, {"text": "eliminated", "start": 586, "end": 596, "annotation": null}, {"text": ".", "start": 596, "end": 597, "annotation": null}], [{"text": "For", "start": 598, "end": 601, "annotation": null}, {"text": "rare", "start": 602, "end": 606, "annotation": "DOPANT"}, {"text": "earth", "start": 607, "end": 612, "annotation": "DOPANT"}, {"text": "doped", "start": 613, "end": 618, "annotation": null}, {"text": "LaF3", "start": 619, "end": 623, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 624, "end": 636, "annotation": "BASEMAT"}, {"text": ",", "start": 636, "end": 637, "annotation": null}, {"text": "real", "start": 638, "end": 642, "annotation": null}, {"text": "-", "start": 642, "end": 643, "annotation": null}, {"text": "cavity", "start": 643, "end": 649, "annotation": null}, {"text": "model", "start": 650, "end": 655, "annotation": null}, {"text": "well", "start": 656, "end": 660, "annotation": null}, {"text": "explains", "start": 661, "end": 669, "annotation": null}, {"text": "the", "start": 670, "end": 673, "annotation": null}, {"text": "influence", "start": 674, "end": 683, "annotation": null}, {"text": "of", "start": 684, "end": 686, "annotation": null}, {"text": "surrounding", "start": 687, "end": 698, "annotation": null}, {"text": "medium", "start": 699, "end": 705, "annotation": null}, {"text": "on", "start": 706, "end": 708, "annotation": null}, {"text": "the", "start": 709, "end": 712, "annotation": null}, {"text": "fluorescence", "start": 713, "end": 725, "annotation": null}, {"text": "relaxation", "start": 726, "end": 736, "annotation": null}, {"text": "rate", "start": 737, "end": 741, "annotation": null}, {"text": ".", "start": 741, "end": 742, "annotation": null}]], "meta": {"doi": "10.1002/bio.1146"}} +{"remark": "doping_annt1", "text": "Dysprosium doped di-strontium magnesium di-silicate namely Sr2MgSi2O7:Dy3+ phosphor was prepared by the solid state reaction method. The phase structure, surface morphology, particle size, elemental analysis was analyzed by using XRD, TEM, EDX and FTIR techniques. The EDX and FTIR spectra confirm the present elements in Sr2MgSi2O7:Dy3+ phosphor. The optical properties of Sr2MgSi2O7:Dy3+ phosphor was investigated utilizing thermoluminescence (TL), photoluminescence (PL), long lasting phosphorescence and mechanoluminescence (ML). Under the ultraviolet excitation, the emission spectra of Sr2MgSi2O7:Dy3+ phosphor are composed of a broad band and the characteristic emission of Dy3+ peaking at 470nm (blue), 575nm (yellow) and 678nm (red), originating from the transitions of 4F9/2 \u2192 6H15/2, 4F9/2 \u2192 6H13/2 and 4F9/2 \u2192 6H11/2. CIE color coordinates of Sr2MgSi2O7:Dy3+ are suitable as white light emitting phosphor. Decay graph indicate that this phosphor also contains fast decay and slow decay process. The peak of ML intensity increases linearly with increasing impact velocity of the moving piston. The possible mechanism of this white light emitting long lasting phosphor is also investigated.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Dysprosium", "start": 0, "end": 10, "annotation": "DOPANT"}, {"text": "doped", "start": 11, "end": 16, "annotation": null}, {"text": "di-strontium", "start": 17, "end": 29, "annotation": "BASEMAT"}, {"text": "magnesium", "start": 30, "end": 39, "annotation": "BASEMAT"}, {"text": "di-silicate", "start": 40, "end": 51, "annotation": "BASEMAT"}, {"text": "namely", "start": 52, "end": 58, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 59, "end": 69, "annotation": "BASEMAT"}, {"text": ":", "start": 69, "end": 70, "annotation": null}, {"text": "Dy3+", "start": 70, "end": 74, "annotation": "DOPANT"}, {"text": "phosphor", "start": 75, "end": 83, "annotation": null}, {"text": "was", "start": 84, "end": 87, "annotation": null}, {"text": "prepared", "start": 88, "end": 96, "annotation": null}, {"text": "by", "start": 97, "end": 99, "annotation": null}, {"text": "the", "start": 100, "end": 103, "annotation": null}, {"text": "solid", "start": 104, "end": 109, "annotation": null}, {"text": "state", "start": 110, "end": 115, "annotation": null}, {"text": "reaction", "start": 116, "end": 124, "annotation": null}, {"text": "method", "start": 125, "end": 131, "annotation": null}, {"text": ".", "start": 131, "end": 132, "annotation": null}], [{"text": "The", "start": 133, "end": 136, "annotation": null}, {"text": "phase", "start": 137, "end": 142, "annotation": null}, {"text": "structure", "start": 143, "end": 152, "annotation": null}, {"text": ",", "start": 152, "end": 153, "annotation": null}, {"text": "surface", "start": 154, "end": 161, "annotation": null}, {"text": "morphology", "start": 162, "end": 172, "annotation": null}, {"text": ",", "start": 172, "end": 173, "annotation": null}, {"text": "particle", "start": 174, "end": 182, "annotation": null}, {"text": "size", "start": 183, "end": 187, "annotation": null}, {"text": ",", "start": 187, "end": 188, "annotation": null}, {"text": "elemental", "start": 189, "end": 198, "annotation": null}, {"text": "analysis", "start": 199, "end": 207, "annotation": null}, {"text": "was", "start": 208, "end": 211, "annotation": null}, {"text": "analyzed", "start": 212, "end": 220, "annotation": null}, {"text": "by", "start": 221, "end": 223, "annotation": null}, {"text": "using", "start": 224, "end": 229, "annotation": null}, {"text": "XRD", "start": 230, "end": 233, "annotation": null}, {"text": ",", "start": 233, "end": 234, "annotation": null}, {"text": "TEM", "start": 235, "end": 238, "annotation": null}, {"text": ",", "start": 238, "end": 239, "annotation": null}, {"text": "EDX", "start": 240, "end": 243, "annotation": null}, {"text": "and", "start": 244, "end": 247, "annotation": null}, {"text": "FTIR", "start": 248, "end": 252, "annotation": null}, {"text": "techniques", "start": 253, "end": 263, "annotation": null}, {"text": ".", "start": 263, "end": 264, "annotation": null}], [{"text": "The", "start": 265, "end": 268, "annotation": null}, {"text": "EDX", "start": 269, "end": 272, "annotation": null}, {"text": "and", "start": 273, "end": 276, "annotation": null}, {"text": "FTIR", "start": 277, "end": 281, "annotation": null}, {"text": "spectra", "start": 282, "end": 289, "annotation": null}, {"text": "confirm", "start": 290, "end": 297, "annotation": null}, {"text": "the", "start": 298, "end": 301, "annotation": null}, {"text": "present", "start": 302, "end": 309, "annotation": null}, {"text": "elements", "start": 310, "end": 318, "annotation": null}, {"text": "in", "start": 319, "end": 321, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 322, "end": 332, "annotation": "BASEMAT"}, {"text": ":", "start": 332, "end": 333, "annotation": null}, {"text": "Dy3+", "start": 333, "end": 337, "annotation": "DOPANT"}, {"text": "phosphor", "start": 338, "end": 346, "annotation": null}, {"text": ".", "start": 346, "end": 347, "annotation": null}], [{"text": "The", "start": 348, "end": 351, "annotation": null}, {"text": "optical", "start": 352, "end": 359, "annotation": null}, {"text": "properties", "start": 360, "end": 370, "annotation": null}, {"text": "of", "start": 371, "end": 373, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 374, "end": 384, "annotation": "BASEMAT"}, {"text": ":", "start": 384, "end": 385, "annotation": null}, {"text": "Dy3+", "start": 385, "end": 389, "annotation": "DOPANT"}, {"text": "phosphor", "start": 390, "end": 398, "annotation": null}, {"text": "was", "start": 399, "end": 402, "annotation": null}, {"text": "investigated", "start": 403, "end": 415, "annotation": null}, {"text": "utilizing", "start": 416, "end": 425, "annotation": null}, {"text": "thermoluminescence", "start": 426, "end": 444, "annotation": null}, {"text": "(", "start": 445, "end": 446, "annotation": null}, {"text": "TL", "start": 446, "end": 448, "annotation": null}, {"text": ")", "start": 448, "end": 449, "annotation": null}, {"text": ",", "start": 449, "end": 450, "annotation": null}, {"text": "photoluminescence", "start": 451, "end": 468, "annotation": null}, {"text": "(", "start": 469, "end": 470, "annotation": null}, {"text": "PL", "start": 470, "end": 472, "annotation": null}, {"text": ")", "start": 472, "end": 473, "annotation": null}, {"text": ",", "start": 473, "end": 474, "annotation": null}, {"text": "long", "start": 475, "end": 479, "annotation": null}, {"text": "lasting", "start": 480, "end": 487, "annotation": null}, {"text": "phosphorescence", "start": 488, "end": 503, "annotation": null}, {"text": "and", "start": 504, "end": 507, "annotation": null}, {"text": "mechanoluminescence", "start": 508, "end": 527, "annotation": null}, {"text": "(", "start": 528, "end": 529, "annotation": null}, {"text": "ML", "start": 529, "end": 531, "annotation": null}, {"text": ")", "start": 531, "end": 532, "annotation": null}, {"text": ".", "start": 532, "end": 533, "annotation": null}], [{"text": "Under", "start": 534, "end": 539, "annotation": null}, {"text": "the", "start": 540, "end": 543, "annotation": null}, {"text": "ultraviolet", "start": 544, "end": 555, "annotation": null}, {"text": "excitation", "start": 556, "end": 566, "annotation": null}, {"text": ",", "start": 566, "end": 567, "annotation": null}, {"text": "the", "start": 568, "end": 571, "annotation": null}, {"text": "emission", "start": 572, "end": 580, "annotation": null}, {"text": "spectra", "start": 581, "end": 588, "annotation": null}, {"text": "of", "start": 589, "end": 591, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 592, "end": 602, "annotation": "BASEMAT"}, {"text": ":", "start": 602, "end": 603, "annotation": null}, {"text": "Dy3+", "start": 603, "end": 607, "annotation": "DOPANT"}, {"text": "phosphor", "start": 608, "end": 616, "annotation": null}, {"text": "are", "start": 617, "end": 620, "annotation": null}, {"text": "composed", "start": 621, "end": 629, "annotation": null}, {"text": "of", "start": 630, "end": 632, "annotation": null}, {"text": "a", "start": 633, "end": 634, "annotation": null}, {"text": "broad", "start": 635, "end": 640, "annotation": null}, {"text": "band", "start": 641, "end": 645, "annotation": null}, {"text": "and", "start": 646, "end": 649, "annotation": null}, {"text": "the", "start": 650, "end": 653, "annotation": null}, {"text": "characteristic", "start": 654, "end": 668, "annotation": null}, {"text": "emission", "start": 669, "end": 677, "annotation": null}, {"text": "of", "start": 678, "end": 680, "annotation": null}, {"text": "Dy3+", "start": 681, "end": 685, "annotation": "DOPANT"}, {"text": "peaking", "start": 686, "end": 693, "annotation": null}, {"text": "at", "start": 694, "end": 696, "annotation": null}, {"text": "470", "start": 697, "end": 700, "annotation": null}, {"text": "nm", "start": 700, "end": 702, "annotation": null}, {"text": "(", "start": 703, "end": 704, "annotation": null}, {"text": "blue", "start": 704, "end": 708, "annotation": null}, {"text": ")", "start": 708, "end": 709, "annotation": null}, {"text": ",", "start": 709, "end": 710, "annotation": null}, {"text": "575", "start": 711, "end": 714, "annotation": null}, {"text": "nm", "start": 714, "end": 716, "annotation": null}, {"text": "(", "start": 717, "end": 718, "annotation": null}, {"text": "yellow", "start": 718, "end": 724, "annotation": null}, {"text": ")", "start": 724, "end": 725, "annotation": null}, {"text": "and", "start": 726, "end": 729, "annotation": null}, {"text": "678", "start": 730, "end": 733, "annotation": null}, {"text": "nm", "start": 733, "end": 735, "annotation": null}, {"text": "(", "start": 736, "end": 737, "annotation": null}, {"text": "red", "start": 737, "end": 740, "annotation": null}, {"text": ")", "start": 740, "end": 741, "annotation": null}, {"text": ",", "start": 741, "end": 742, "annotation": null}, {"text": "originating", "start": 743, "end": 754, "annotation": null}, {"text": "from", "start": 755, "end": 759, "annotation": null}, {"text": "the", "start": 760, "end": 763, "annotation": null}, {"text": "transitions", "start": 764, "end": 775, "annotation": null}, {"text": "of", "start": 776, "end": 778, "annotation": null}, {"text": "4F9", "start": 779, "end": 782, "annotation": null}, {"text": "/", "start": 782, "end": 783, "annotation": null}, {"text": "2", "start": 783, "end": 784, "annotation": null}, {"text": "\u2192", "start": 785, "end": 786, "annotation": null}, {"text": "6H15", "start": 787, "end": 791, "annotation": null}, {"text": "/", "start": 791, "end": 792, "annotation": null}, {"text": "2", "start": 792, "end": 793, "annotation": null}, {"text": ",", "start": 793, "end": 794, "annotation": null}, {"text": "4F9", "start": 795, "end": 798, "annotation": null}, {"text": "/", "start": 798, "end": 799, "annotation": null}, {"text": "2", "start": 799, "end": 800, "annotation": null}, {"text": "\u2192", "start": 801, "end": 802, "annotation": null}, {"text": "6H13", "start": 803, "end": 807, "annotation": null}, {"text": "/", "start": 807, "end": 808, "annotation": null}, {"text": "2", "start": 808, "end": 809, "annotation": null}, {"text": "and", "start": 810, "end": 813, "annotation": null}, {"text": "4F9", "start": 814, "end": 817, "annotation": null}, {"text": "/", "start": 817, "end": 818, "annotation": null}, {"text": "2", "start": 818, "end": 819, "annotation": null}, {"text": "\u2192", "start": 820, "end": 821, "annotation": null}, {"text": "6H11", "start": 822, "end": 826, "annotation": null}, {"text": "/", "start": 826, "end": 827, "annotation": null}, {"text": "2", "start": 827, "end": 828, "annotation": null}, {"text": ".", "start": 828, "end": 829, "annotation": null}], [{"text": "CIE", "start": 830, "end": 833, "annotation": null}, {"text": "color", "start": 834, "end": 839, "annotation": null}, {"text": "coordinates", "start": 840, "end": 851, "annotation": null}, {"text": "of", "start": 852, "end": 854, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 855, "end": 865, "annotation": "BASEMAT"}, {"text": ":", "start": 865, "end": 866, "annotation": null}, {"text": "Dy3+", "start": 866, "end": 870, "annotation": "DOPANT"}, {"text": "are", "start": 871, "end": 874, "annotation": null}, {"text": "suitable", "start": 875, "end": 883, "annotation": null}, {"text": "as", "start": 884, "end": 886, "annotation": null}, {"text": "white", "start": 887, "end": 892, "annotation": null}, {"text": "light", "start": 893, "end": 898, "annotation": null}, {"text": "emitting", "start": 899, "end": 907, "annotation": null}, {"text": "phosphor", "start": 908, "end": 916, "annotation": null}, {"text": ".", "start": 916, "end": 917, "annotation": null}], [{"text": "Decay", "start": 918, "end": 923, "annotation": null}, {"text": "graph", "start": 924, "end": 929, "annotation": null}, {"text": "indicate", "start": 930, "end": 938, "annotation": null}, {"text": "that", "start": 939, "end": 943, "annotation": null}, {"text": "this", "start": 944, "end": 948, "annotation": null}, {"text": "phosphor", "start": 949, "end": 957, "annotation": null}, {"text": "also", "start": 958, "end": 962, "annotation": null}, {"text": "contains", "start": 963, "end": 971, "annotation": null}, {"text": "fast", "start": 972, "end": 976, "annotation": null}, {"text": "decay", "start": 977, "end": 982, "annotation": null}, {"text": "and", "start": 983, "end": 986, "annotation": null}, {"text": "slow", "start": 987, "end": 991, "annotation": null}, {"text": "decay", "start": 992, "end": 997, "annotation": null}, {"text": "process", "start": 998, "end": 1005, "annotation": null}, {"text": ".", "start": 1005, "end": 1006, "annotation": null}], [{"text": "The", "start": 1007, "end": 1010, "annotation": null}, {"text": "peak", "start": 1011, "end": 1015, "annotation": null}, {"text": "of", "start": 1016, "end": 1018, "annotation": null}, {"text": "ML", "start": 1019, "end": 1021, "annotation": null}, {"text": "intensity", "start": 1022, "end": 1031, "annotation": null}, {"text": "increases", "start": 1032, "end": 1041, "annotation": null}, {"text": "linearly", "start": 1042, "end": 1050, "annotation": null}, {"text": "with", "start": 1051, "end": 1055, "annotation": null}, {"text": "increasing", "start": 1056, "end": 1066, "annotation": null}, {"text": "impact", "start": 1067, "end": 1073, "annotation": null}, {"text": "velocity", "start": 1074, "end": 1082, "annotation": null}, {"text": "of", "start": 1083, "end": 1085, "annotation": null}, {"text": "the", "start": 1086, "end": 1089, "annotation": null}, {"text": "moving", "start": 1090, "end": 1096, "annotation": null}, {"text": "piston", "start": 1097, "end": 1103, "annotation": null}, {"text": ".", "start": 1103, "end": 1104, "annotation": null}], [{"text": "The", "start": 1105, "end": 1108, "annotation": null}, {"text": "possible", "start": 1109, "end": 1117, "annotation": null}, {"text": "mechanism", "start": 1118, "end": 1127, "annotation": null}, {"text": "of", "start": 1128, "end": 1130, "annotation": null}, {"text": "this", "start": 1131, "end": 1135, "annotation": null}, {"text": "white", "start": 1136, "end": 1141, "annotation": null}, {"text": "light", "start": 1142, "end": 1147, "annotation": null}, {"text": "emitting", "start": 1148, "end": 1156, "annotation": null}, {"text": "long", "start": 1157, "end": 1161, "annotation": null}, {"text": "lasting", "start": 1162, "end": 1169, "annotation": null}, {"text": "phosphor", "start": 1170, "end": 1178, "annotation": null}, {"text": "is", "start": 1179, "end": 1181, "annotation": null}, {"text": "also", "start": 1182, "end": 1186, "annotation": null}, {"text": "investigated", "start": 1187, "end": 1199, "annotation": null}, {"text": ".", "start": 1199, "end": 1200, "annotation": null}]], "meta": {"doi": "10.1016/j.displa.2014.09.006"}} +{"text": "Recently p-type Cu\u2013Ti\u2013O nanotubes have been explored in water-splitting photoelectrochemical pn-junction diodes to significantly improve the photoconversion efficiency. We reported on the growth and characterization of Cu\u2013Ti\u2013O nanotube arrays by anodizing directly Cu\u2013Ti (30:70wt%) alloy substrate. As-anodized hierarchical Cu\u2013Ti\u2013O nanotube arrays consist of two distinct Ti-rich and Cu-rich nanotube regions. It was found that mechanical stresses induced by copper doping resulted in the difference in the microstructure evolution of Cu-rich and Ti-rich regions. The oxygen vacancies induced by the high concentration Cu dopant into the Cu\u2013Ti\u2013O nanotube play a crucial role in determining the phase stabilization of anatase phase. The absorption edge of TiO2 nanotube arrays was extended into the visible region by Cu doping. In degrading Methyl orange (MO), 21.2% MO was removed using Cu\u2013Ti\u2013O nanotube arrays after 240min UV illumination. This result indicates the photocatalytic activity of Cu\u2013Ti\u2013O nanotube arrays to MO is reasonably high.", "meta": {"doi": "10.1016/j.jallcom.2010.04.099"}, "_input_hash": -688211843, "_task_hash": 15686230, "tokens": [[{"text": "Recently", "start": 0, "end": 8, "id": 0, "annotation": null}, {"text": "p", "start": 9, "end": 10, "id": 1, "annotation": "DOPANT"}, {"text": "-", "start": 11, "end": 12, "id": 2, "annotation": "DOPANT"}, {"text": "type", "start": 13, "end": 17, "id": 3, "annotation": "DOPANT"}, {"text": "Cu", "start": 18, "end": 20, "id": 4, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 21, "end": 22, "id": 5, "annotation": null}, {"text": "Ti", "start": 23, "end": 25, "id": 6, "annotation": null}, {"text": "\u2013", "start": 26, "end": 27, "id": 7, "annotation": null}, {"text": "O", "start": 28, "end": 29, "id": 8, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 30, "end": 39, "id": 9, "annotation": null}, {"text": "have", "start": 40, "end": 44, "id": 10, "annotation": null}, {"text": "been", "start": 45, "end": 49, "id": 11, "annotation": null}, {"text": "explored", "start": 50, "end": 58, "id": 12, "annotation": null}, {"text": "in", "start": 59, "end": 61, "id": 13, "annotation": null}, {"text": "water", "start": 62, "end": 67, "id": 14, "annotation": null}, {"text": "-", "start": 68, "end": 69, "id": 15, "annotation": null}, {"text": "splitting", "start": 70, "end": 79, "id": 16, "annotation": null}, {"text": "photoelectrochemical", "start": 80, "end": 100, "id": 17, "annotation": null}, {"text": "pn", "start": 101, "end": 103, "id": 18, "annotation": null}, {"text": "-", "start": 104, "end": 105, "id": 19, "annotation": null}, {"text": "junction", "start": 106, "end": 114, "id": 20, "annotation": null}, {"text": "diodes", "start": 115, "end": 121, "id": 21, "annotation": null}, {"text": "to", "start": 122, "end": 124, "id": 22, "annotation": null}, {"text": "significantly", "start": 125, "end": 138, "id": 23, "annotation": null}, {"text": "improve", "start": 139, "end": 146, "id": 24, "annotation": null}, {"text": "the", "start": 147, "end": 150, "id": 25, "annotation": null}, {"text": "photoconversion", "start": 151, "end": 166, "id": 26, "annotation": null}, {"text": "efficiency", "start": 167, "end": 177, "id": 27, "annotation": null}, {"text": ".", "start": 178, "end": 179, "id": 28, "annotation": null}], [{"text": "We", "start": 180, "end": 182, "id": 29, "annotation": null}, {"text": "reported", "start": 183, "end": 191, "id": 30, "annotation": null}, {"text": "on", "start": 192, "end": 194, "id": 31, "annotation": null}, {"text": "the", "start": 195, "end": 198, "id": 32, "annotation": null}, {"text": "growth", "start": 199, "end": 205, "id": 33, "annotation": null}, {"text": "and", "start": 206, "end": 209, "id": 34, "annotation": null}, {"text": "characterization", "start": 210, "end": 226, "id": 35, "annotation": null}, {"text": "of", "start": 227, "end": 229, "id": 36, "annotation": null}, {"text": "Cu", "start": 230, "end": 232, "id": 37, "annotation": null}, {"text": "\u2013", "start": 233, "end": 234, "id": 38, "annotation": null}, {"text": "Ti", "start": 235, "end": 237, "id": 39, "annotation": null}, {"text": "\u2013", "start": 238, "end": 239, "id": 40, "annotation": null}, {"text": "O", "start": 240, "end": 241, "id": 41, "annotation": null}, {"text": "nanotube", "start": 242, "end": 250, "id": 42, "annotation": null}, {"text": "arrays", "start": 251, "end": 257, "id": 43, "annotation": null}, {"text": "by", "start": 258, "end": 260, "id": 44, "annotation": null}, {"text": "anodizing", "start": 261, "end": 270, "id": 45, "annotation": null}, {"text": "directly", "start": 271, "end": 279, "id": 46, "annotation": null}, {"text": "Cu", "start": 280, "end": 282, "id": 47, "annotation": null}, {"text": "\u2013", "start": 283, "end": 284, "id": 48, "annotation": null}, {"text": "Ti", "start": 285, "end": 287, "id": 49, "annotation": null}, {"text": "(", "start": 288, "end": 289, "id": 50, "annotation": null}, {"text": "30:70wt%", "start": 290, "end": 298, "id": 51, "annotation": null}, {"text": ")", "start": 299, "end": 300, "id": 52, "annotation": null}, {"text": "alloy", "start": 301, "end": 306, "id": 53, "annotation": null}, {"text": "substrate", "start": 307, "end": 316, "id": 54, "annotation": null}, {"text": ".", "start": 317, "end": 318, "id": 55, "annotation": null}], [{"text": "As", "start": 319, "end": 321, "id": 56, "annotation": null}, {"text": "-", "start": 322, "end": 323, "id": 57, "annotation": null}, {"text": "anodized", "start": 324, "end": 332, "id": 58, "annotation": null}, {"text": "hierarchical", "start": 333, "end": 345, "id": 59, "annotation": null}, {"text": "Cu", "start": 346, "end": 348, "id": 60, "annotation": null}, {"text": "\u2013", "start": 349, "end": 350, "id": 61, "annotation": null}, {"text": "Ti", "start": 351, "end": 353, "id": 62, "annotation": null}, {"text": "\u2013", "start": 354, "end": 355, "id": 63, "annotation": null}, {"text": "O", "start": 356, "end": 357, "id": 64, "annotation": null}, {"text": "nanotube", "start": 358, "end": 366, "id": 65, "annotation": null}, {"text": "arrays", "start": 367, "end": 373, "id": 66, "annotation": null}, {"text": "consist", "start": 374, "end": 381, "id": 67, "annotation": null}, {"text": "of", "start": 382, "end": 384, "id": 68, "annotation": null}, {"text": "two", "start": 385, "end": 388, "id": 69, "annotation": null}, {"text": "distinct", "start": 389, "end": 397, "id": 70, "annotation": null}, {"text": "Ti", "start": 398, "end": 400, "id": 71, "annotation": null}, {"text": "-", "start": 401, "end": 402, "id": 72, "annotation": null}, {"text": "rich", "start": 403, "end": 407, "id": 73, "annotation": null}, {"text": "and", "start": 408, "end": 411, "id": 74, "annotation": null}, {"text": "Cu", "start": 412, "end": 414, "id": 75, "annotation": null}, {"text": "-", "start": 415, "end": 416, "id": 76, "annotation": null}, {"text": "rich", "start": 417, "end": 421, "id": 77, "annotation": null}, {"text": "nanotube", "start": 422, "end": 430, "id": 78, "annotation": null}, {"text": "regions", "start": 431, "end": 438, "id": 79, "annotation": null}, {"text": ".", "start": 439, "end": 440, "id": 80, "annotation": null}], [{"text": "It", "start": 441, "end": 443, "id": 81, "annotation": null}, {"text": "was", "start": 444, "end": 447, "id": 82, "annotation": null}, {"text": "found", "start": 448, "end": 453, "id": 83, "annotation": null}, {"text": "that", "start": 454, "end": 458, "id": 84, "annotation": null}, {"text": "mechanical", "start": 459, "end": 469, "id": 85, "annotation": null}, {"text": "stresses", "start": 470, "end": 478, "id": 86, "annotation": null}, {"text": "induced", "start": 479, "end": 486, "id": 87, "annotation": null}, {"text": "by", "start": 487, "end": 489, "id": 88, "annotation": null}, {"text": "copper", "start": 490, "end": 496, "id": 89, "annotation": "DOPANT"}, {"text": "doping", "start": 497, "end": 503, "id": 90, "annotation": null}, {"text": "resulted", "start": 504, "end": 512, "id": 91, "annotation": null}, {"text": "in", "start": 513, "end": 515, "id": 92, "annotation": null}, {"text": "the", "start": 516, "end": 519, "id": 93, "annotation": null}, {"text": "difference", "start": 520, "end": 530, "id": 94, "annotation": null}, {"text": "in", "start": 531, "end": 533, "id": 95, "annotation": null}, {"text": "the", "start": 534, "end": 537, "id": 96, "annotation": null}, {"text": "microstructure", "start": 538, "end": 552, "id": 97, "annotation": null}, {"text": "evolution", "start": 553, "end": 562, "id": 98, "annotation": null}, {"text": "of", "start": 563, "end": 565, "id": 99, "annotation": null}, {"text": "Cu", "start": 566, "end": 568, "id": 100, "annotation": null}, {"text": "-", "start": 569, "end": 570, "id": 101, "annotation": null}, {"text": "rich", "start": 571, "end": 575, "id": 102, "annotation": null}, {"text": "and", "start": 576, "end": 579, "id": 103, "annotation": null}, {"text": "Ti", "start": 580, "end": 582, "id": 104, "annotation": null}, {"text": "-", "start": 583, "end": 584, "id": 105, "annotation": null}, {"text": "rich", "start": 585, "end": 589, "id": 106, "annotation": null}, {"text": "regions", "start": 590, "end": 597, "id": 107, "annotation": null}, {"text": ".", "start": 598, "end": 599, "id": 108, "annotation": null}], [{"text": "The", "start": 600, "end": 603, "id": 109, "annotation": null}, {"text": "oxygen", "start": 604, "end": 610, "id": 110, "annotation": null}, {"text": "vacancies", "start": 611, "end": 620, "id": 111, "annotation": null}, {"text": "induced", "start": 621, "end": 628, "id": 112, "annotation": null}, {"text": "by", "start": 629, "end": 631, "id": 113, "annotation": null}, {"text": "the", "start": 632, "end": 635, "id": 114, "annotation": null}, {"text": "high", "start": 636, "end": 640, "id": 115, "annotation": null}, {"text": "concentration", "start": 641, "end": 654, "id": 116, "annotation": null}, {"text": "Cu", "start": 655, "end": 657, "id": 117, "annotation": "DOPANT"}, {"text": "dopant", "start": 658, "end": 664, "id": 118, "annotation": null}, {"text": "into", "start": 665, "end": 669, "id": 119, "annotation": null}, {"text": "the", "start": 670, "end": 673, "id": 120, "annotation": null}, {"text": "Cu", "start": 674, "end": 676, "id": 121, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 677, "end": 678, "id": 122, "annotation": null}, {"text": "Ti", "start": 679, "end": 681, "id": 123, "annotation": null}, {"text": "\u2013", "start": 682, "end": 683, "id": 124, "annotation": null}, {"text": "O", "start": 684, "end": 685, "id": 125, "annotation": "BASEMAT"}, {"text": "nanotube", "start": 686, "end": 694, "id": 126, "annotation": null}, {"text": "play", "start": 695, "end": 699, "id": 127, "annotation": null}, {"text": "a", "start": 700, "end": 701, "id": 128, "annotation": null}, {"text": "crucial", "start": 702, "end": 709, "id": 129, "annotation": null}, {"text": "role", "start": 710, "end": 714, "id": 130, "annotation": null}, {"text": "in", "start": 715, "end": 717, "id": 131, "annotation": null}, {"text": "determining", "start": 718, "end": 729, "id": 132, "annotation": null}, {"text": "the", "start": 730, "end": 733, "id": 133, "annotation": null}, {"text": "phase", "start": 734, "end": 739, "id": 134, "annotation": null}, {"text": "stabilization", "start": 740, "end": 753, "id": 135, "annotation": null}, {"text": "of", "start": 754, "end": 756, "id": 136, "annotation": null}, {"text": "anatase", "start": 757, "end": 764, "id": 137, "annotation": null}, {"text": "phase", "start": 765, "end": 770, "id": 138, "annotation": null}, {"text": ".", "start": 771, "end": 772, "id": 139, "annotation": null}], [{"text": "The", "start": 773, "end": 776, "id": 140, "annotation": null}, {"text": "absorption", "start": 777, "end": 787, "id": 141, "annotation": null}, {"text": "edge", "start": 788, "end": 792, "id": 142, "annotation": null}, {"text": "of", "start": 793, "end": 795, "id": 143, "annotation": null}, {"text": "TiO2", "start": 796, "end": 800, "id": 144, "annotation": "BASEMAT"}, {"text": "nanotube", "start": 801, "end": 809, "id": 145, "annotation": null}, {"text": "arrays", "start": 810, "end": 816, "id": 146, "annotation": null}, {"text": "was", "start": 817, "end": 820, "id": 147, "annotation": null}, {"text": "extended", "start": 821, "end": 829, "id": 148, "annotation": null}, {"text": "into", "start": 830, "end": 834, "id": 149, "annotation": null}, {"text": "the", "start": 835, "end": 838, "id": 150, "annotation": null}, {"text": "visible", "start": 839, "end": 846, "id": 151, "annotation": null}, {"text": "region", "start": 847, "end": 853, "id": 152, "annotation": null}, {"text": "by", "start": 854, "end": 856, "id": 153, "annotation": null}, {"text": "Cu", "start": 857, "end": 859, "id": 154, "annotation": "DOPANT"}, {"text": "doping", "start": 860, "end": 866, "id": 155, "annotation": null}, {"text": ".", "start": 867, "end": 868, "id": 156, "annotation": null}], [{"text": "In", "start": 869, "end": 871, "id": 157, "annotation": null}, {"text": "degrading", "start": 872, "end": 881, "id": 158, "annotation": null}, {"text": "Methyl", "start": 882, "end": 888, "id": 159, "annotation": null}, {"text": "orange", "start": 889, "end": 895, "id": 160, "annotation": null}, {"text": "(", "start": 896, "end": 897, "id": 161, "annotation": null}, {"text": "MO", "start": 898, "end": 900, "id": 162, "annotation": null}, {"text": ")", "start": 901, "end": 902, "id": 163, "annotation": null}, {"text": ",", "start": 903, "end": 904, "id": 164, "annotation": null}, {"text": "21.2", "start": 905, "end": 909, "id": 165, "annotation": null}, {"text": "%", "start": 910, "end": 911, "id": 166, "annotation": null}, {"text": "MO", "start": 912, "end": 914, "id": 167, "annotation": null}, {"text": "was", "start": 915, "end": 918, "id": 168, "annotation": null}, {"text": "removed", "start": 919, "end": 926, "id": 169, "annotation": null}, {"text": "using", "start": 927, "end": 932, "id": 170, "annotation": null}, {"text": "Cu", "start": 933, "end": 935, "id": 171, "annotation": null}, {"text": "\u2013", "start": 936, "end": 937, "id": 172, "annotation": null}, {"text": "Ti", "start": 938, "end": 940, "id": 173, "annotation": null}, {"text": "\u2013", "start": 941, "end": 942, "id": 174, "annotation": null}, {"text": "O", "start": 943, "end": 944, "id": 175, "annotation": null}, {"text": "nanotube", "start": 945, "end": 953, "id": 176, "annotation": null}, {"text": "arrays", "start": 954, "end": 960, "id": 177, "annotation": null}, {"text": "after", "start": 961, "end": 966, "id": 178, "annotation": null}, {"text": "240min", "start": 967, "end": 973, "id": 179, "annotation": null}, {"text": "UV", "start": 974, "end": 976, "id": 180, "annotation": null}, {"text": "illumination", "start": 977, "end": 989, "id": 181, "annotation": null}, {"text": ".", "start": 990, "end": 991, "id": 182, "annotation": null}], [{"text": "This", "start": 992, "end": 996, "id": 183, "annotation": null}, {"text": "result", "start": 997, "end": 1003, "id": 184, "annotation": null}, {"text": "indicates", "start": 1004, "end": 1013, "id": 185, "annotation": null}, {"text": "the", "start": 1014, "end": 1017, "id": 186, "annotation": null}, {"text": "photocatalytic", "start": 1018, "end": 1032, "id": 187, "annotation": null}, {"text": "activity", "start": 1033, "end": 1041, "id": 188, "annotation": null}, {"text": "of", "start": 1042, "end": 1044, "id": 189, "annotation": null}, {"text": "Cu", "start": 1045, "end": 1047, "id": 190, "annotation": null}, {"text": "\u2013", "start": 1048, "end": 1049, "id": 191, "annotation": null}, {"text": "Ti", "start": 1050, "end": 1052, "id": 192, "annotation": null}, {"text": "\u2013", "start": 1053, "end": 1054, "id": 193, "annotation": null}, {"text": "O", "start": 1055, "end": 1056, "id": 194, "annotation": null}, {"text": "nanotube", "start": 1057, "end": 1065, "id": 195, "annotation": null}, {"text": "arrays", "start": 1066, "end": 1072, "id": 196, "annotation": null}, {"text": "to", "start": 1073, "end": 1075, "id": 197, "annotation": null}, {"text": "MO", "start": 1076, "end": 1078, "id": 198, "annotation": null}, {"text": "is", "start": 1079, "end": 1081, "id": 199, "annotation": null}, {"text": "reasonably", "start": 1082, "end": 1092, "id": 200, "annotation": null}, {"text": "high", "start": 1093, "end": 1097, "id": 201, "annotation": null}, {"text": ".", "start": 1098, "end": 1099, "id": 202, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "This paper presents an n-i-p type solar cell structure consisting of polycrystalline silicon thin film as an absorber of incident radiation and a ZnO thin film for optical improvement. The characteristics of Si layers (thickness and doping level) are designed to assure a high value of collection efficiency for photogenerated carriers. The thin films of polycrystalline silicon are obtained by CVD at a temperature of around 620\u00b0C. ZnO thin film is prepared by thermal decomposition of Zn-acetylacetonate [Zn(C5H7O2)2] in a vertical reactor. It is used as AR coating and as contact electrode due to its properties of high transparency (90%) and high conductivity (3\u00d710\u22124 \u03a9cm). Polycrystalline silicon and ZnO films have been investigated in terms of surface morphology and grain size by AFM and XRD.", "meta": {"doi": "10.1016/S0927-0248(01)00169-6"}, "_input_hash": -1514004990, "_task_hash": -2043632791, "tokens": [[{"text": "This", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "paper", "start": 5, "end": 10, "id": 1, "annotation": null}, {"text": "presents", "start": 11, "end": 19, "id": 2, "annotation": null}, {"text": "an", "start": 20, "end": 22, "id": 3, "annotation": null}, {"text": "n", "start": 23, "end": 24, "id": 4, "annotation": null}, {"text": "-", "start": 25, "end": 26, "id": 5, "annotation": null}, {"text": "i", "start": 27, "end": 28, "id": 6, "annotation": null}, {"text": "-", "start": 29, "end": 30, "id": 7, "annotation": null}, {"text": "p", "start": 31, "end": 32, "id": 8, "annotation": null}, {"text": "type", "start": 33, "end": 37, "id": 9, "annotation": null}, {"text": "solar", "start": 38, "end": 43, "id": 10, "annotation": null}, {"text": "cell", "start": 44, "end": 48, "id": 11, "annotation": null}, {"text": "structure", "start": 49, "end": 58, "id": 12, "annotation": null}, {"text": "consisting", "start": 59, "end": 69, "id": 13, "annotation": null}, {"text": "of", "start": 70, "end": 72, "id": 14, "annotation": null}, {"text": "polycrystalline", "start": 73, "end": 88, "id": 15, "annotation": null}, {"text": "silicon", "start": 89, "end": 96, "id": 16, "annotation": null}, {"text": "thin", "start": 97, "end": 101, "id": 17, "annotation": null}, {"text": "film", "start": 102, "end": 106, "id": 18, "annotation": null}, {"text": "as", "start": 107, "end": 109, "id": 19, "annotation": null}, {"text": "an", "start": 110, "end": 112, "id": 20, "annotation": null}, {"text": "absorber", "start": 113, "end": 121, "id": 21, "annotation": null}, {"text": "of", "start": 122, "end": 124, "id": 22, "annotation": null}, {"text": "incident", "start": 125, "end": 133, "id": 23, "annotation": null}, {"text": "radiation", "start": 134, "end": 143, "id": 24, "annotation": null}, {"text": "and", "start": 144, "end": 147, "id": 25, "annotation": null}, {"text": "a", "start": 148, "end": 149, "id": 26, "annotation": null}, {"text": "ZnO", "start": 150, "end": 153, "id": 27, "annotation": null}, {"text": "thin", "start": 154, "end": 158, "id": 28, "annotation": null}, {"text": "film", "start": 159, "end": 163, "id": 29, "annotation": null}, {"text": "for", "start": 164, "end": 167, "id": 30, "annotation": null}, {"text": "optical", "start": 168, "end": 175, "id": 31, "annotation": null}, {"text": "improvement", "start": 176, "end": 187, "id": 32, "annotation": null}, {"text": ".", "start": 188, "end": 189, "id": 33, "annotation": null}], [{"text": "The", "start": 190, "end": 193, "id": 34, "annotation": null}, {"text": "characteristics", "start": 194, "end": 209, "id": 35, "annotation": null}, {"text": "of", "start": 210, "end": 212, "id": 36, "annotation": null}, {"text": "Si", "start": 213, "end": 215, "id": 37, "annotation": "BASEMAT"}, {"text": "layers", "start": 216, "end": 222, "id": 38, "annotation": null}, {"text": "(", "start": 223, "end": 224, "id": 39, "annotation": null}, {"text": "thickness", "start": 225, "end": 234, "id": 40, "annotation": null}, {"text": "and", "start": 235, "end": 238, "id": 41, "annotation": null}, {"text": "doping", "start": 239, "end": 245, "id": 42, "annotation": null}, {"text": "level", "start": 246, "end": 251, "id": 43, "annotation": null}, {"text": ")", "start": 252, "end": 253, "id": 44, "annotation": null}, {"text": "are", "start": 254, "end": 257, "id": 45, "annotation": null}, {"text": "designed", "start": 258, "end": 266, "id": 46, "annotation": null}, {"text": "to", "start": 267, "end": 269, "id": 47, "annotation": null}, {"text": "assure", "start": 270, "end": 276, "id": 48, "annotation": null}, {"text": "a", "start": 277, "end": 278, "id": 49, "annotation": null}, {"text": "high", "start": 279, "end": 283, "id": 50, "annotation": null}, {"text": "value", "start": 284, "end": 289, "id": 51, "annotation": null}, {"text": "of", "start": 290, "end": 292, "id": 52, "annotation": null}, {"text": "collection", "start": 293, "end": 303, "id": 53, "annotation": null}, {"text": "efficiency", "start": 304, "end": 314, "id": 54, "annotation": null}, {"text": "for", "start": 315, "end": 318, "id": 55, "annotation": null}, {"text": "photogenerated", "start": 319, "end": 333, "id": 56, "annotation": null}, {"text": "carriers", "start": 334, "end": 342, "id": 57, "annotation": null}, {"text": ".", "start": 343, "end": 344, "id": 58, "annotation": null}], [{"text": "The", "start": 345, "end": 348, "id": 59, "annotation": null}, {"text": "thin", "start": 349, "end": 353, "id": 60, "annotation": null}, {"text": "films", "start": 354, "end": 359, "id": 61, "annotation": null}, {"text": "of", "start": 360, "end": 362, "id": 62, "annotation": null}, {"text": "polycrystalline", "start": 363, "end": 378, "id": 63, "annotation": null}, {"text": "silicon", "start": 379, "end": 386, "id": 64, "annotation": null}, {"text": "are", "start": 387, "end": 390, "id": 65, "annotation": null}, {"text": "obtained", "start": 391, "end": 399, "id": 66, "annotation": null}, {"text": "by", "start": 400, "end": 402, "id": 67, "annotation": null}, {"text": "CVD", "start": 403, "end": 406, "id": 68, "annotation": null}, {"text": "at", "start": 407, "end": 409, "id": 69, "annotation": null}, {"text": "a", "start": 410, "end": 411, "id": 70, "annotation": null}, {"text": "temperature", "start": 412, "end": 423, "id": 71, "annotation": null}, {"text": "of", "start": 424, "end": 426, "id": 72, "annotation": null}, {"text": "around", "start": 427, "end": 433, "id": 73, "annotation": null}, {"text": "620", "start": 434, "end": 437, "id": 74, "annotation": null}, {"text": "\u00b0", "start": 438, "end": 439, "id": 75, "annotation": null}, {"text": "C", "start": 440, "end": 441, "id": 76, "annotation": null}, {"text": ".", "start": 442, "end": 443, "id": 77, "annotation": null}], [{"text": "ZnO", "start": 444, "end": 447, "id": 78, "annotation": null}, {"text": "thin", "start": 448, "end": 452, "id": 79, "annotation": null}, {"text": "film", "start": 453, "end": 457, "id": 80, "annotation": null}, {"text": "is", "start": 458, "end": 460, "id": 81, "annotation": null}, {"text": "prepared", "start": 461, "end": 469, "id": 82, "annotation": null}, {"text": "by", "start": 470, "end": 472, "id": 83, "annotation": null}, {"text": "thermal", "start": 473, "end": 480, "id": 84, "annotation": null}, {"text": "decomposition", "start": 481, "end": 494, "id": 85, "annotation": null}, {"text": "of", "start": 495, "end": 497, "id": 86, "annotation": null}, {"text": "Zn", "start": 498, "end": 500, "id": 87, "annotation": null}, {"text": "-", "start": 501, "end": 502, "id": 88, "annotation": null}, {"text": "acetylacetonate", "start": 503, "end": 518, "id": 89, "annotation": null}, {"text": "[", "start": 519, "end": 520, "id": 90, "annotation": null}, {"text": "Zn(C5H7O2)2", "start": 521, "end": 532, "id": 91, "annotation": null}, {"text": "]", "start": 533, "end": 534, "id": 92, "annotation": null}, {"text": "in", "start": 535, "end": 537, "id": 93, "annotation": null}, {"text": "a", "start": 538, "end": 539, "id": 94, "annotation": null}, {"text": "vertical", "start": 540, "end": 548, "id": 95, "annotation": null}, {"text": "reactor", "start": 549, "end": 556, "id": 96, "annotation": null}, {"text": ".", "start": 557, "end": 558, "id": 97, "annotation": null}], [{"text": "It", "start": 559, "end": 561, "id": 98, "annotation": null}, {"text": "is", "start": 562, "end": 564, "id": 99, "annotation": null}, {"text": "used", "start": 565, "end": 569, "id": 100, "annotation": null}, {"text": "as", "start": 570, "end": 572, "id": 101, "annotation": null}, {"text": "AR", "start": 573, "end": 575, "id": 102, "annotation": null}, {"text": "coating", "start": 576, "end": 583, "id": 103, "annotation": null}, {"text": "and", "start": 584, "end": 587, "id": 104, "annotation": null}, {"text": "as", "start": 588, "end": 590, "id": 105, "annotation": null}, {"text": "contact", "start": 591, "end": 598, "id": 106, "annotation": null}, {"text": "electrode", "start": 599, "end": 608, "id": 107, "annotation": null}, {"text": "due", "start": 609, "end": 612, "id": 108, "annotation": null}, {"text": "to", "start": 613, "end": 615, "id": 109, "annotation": null}, {"text": "its", "start": 616, "end": 619, "id": 110, "annotation": null}, {"text": "properties", "start": 620, "end": 630, "id": 111, "annotation": null}, {"text": "of", "start": 631, "end": 633, "id": 112, "annotation": null}, {"text": "high", "start": 634, "end": 638, "id": 113, "annotation": null}, {"text": "transparency", "start": 639, "end": 651, "id": 114, "annotation": null}, {"text": "(", "start": 652, "end": 653, "id": 115, "annotation": null}, {"text": "90", "start": 654, "end": 656, "id": 116, "annotation": null}, {"text": "%", "start": 657, "end": 658, "id": 117, "annotation": null}, {"text": ")", "start": 659, "end": 660, "id": 118, "annotation": null}, {"text": "and", "start": 661, "end": 664, "id": 119, "annotation": null}, {"text": "high", "start": 665, "end": 669, "id": 120, "annotation": null}, {"text": "conductivity", "start": 670, "end": 682, "id": 121, "annotation": null}, {"text": "(", "start": 683, "end": 684, "id": 122, "annotation": null}, {"text": "3\u00d710\u22124", "start": 685, "end": 691, "id": 123, "annotation": null}, {"text": "\u03a9cm", "start": 692, "end": 695, "id": 124, "annotation": null}, {"text": ")", "start": 696, "end": 697, "id": 125, "annotation": null}, {"text": ".", "start": 698, "end": 699, "id": 126, "annotation": null}], [{"text": "Polycrystalline", "start": 700, "end": 715, "id": 127, "annotation": null}, {"text": "silicon", "start": 716, "end": 723, "id": 128, "annotation": null}, {"text": "and", "start": 724, "end": 727, "id": 129, "annotation": null}, {"text": "ZnO", "start": 728, "end": 731, "id": 130, "annotation": null}, {"text": "films", "start": 732, "end": 737, "id": 131, "annotation": null}, {"text": "have", "start": 738, "end": 742, "id": 132, "annotation": null}, {"text": "been", "start": 743, "end": 747, "id": 133, "annotation": null}, {"text": "investigated", "start": 748, "end": 760, "id": 134, "annotation": null}, {"text": "in", "start": 761, "end": 763, "id": 135, "annotation": null}, {"text": "terms", "start": 764, "end": 769, "id": 136, "annotation": null}, {"text": "of", "start": 770, "end": 772, "id": 137, "annotation": null}, {"text": "surface", "start": 773, "end": 780, "id": 138, "annotation": null}, {"text": "morphology", "start": 781, "end": 791, "id": 139, "annotation": null}, {"text": "and", "start": 792, "end": 795, "id": 140, "annotation": null}, {"text": "grain", "start": 796, "end": 801, "id": 141, "annotation": null}, {"text": "size", "start": 802, "end": 806, "id": 142, "annotation": null}, {"text": "by", "start": 807, "end": 809, "id": 143, "annotation": null}, {"text": "AFM", "start": 810, "end": 813, "id": 144, "annotation": null}, {"text": "and", "start": 814, "end": 817, "id": 145, "annotation": null}, {"text": "XRD", "start": 818, "end": 821, "id": 146, "annotation": null}, {"text": ".", "start": 822, "end": 823, "id": 147, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Exploration of sustainable electrocatalysts toward oxygen reduction reaction (ORR) with high catalytic activity remains a key challenge in the development of metal\u2013air batteries and fuel cells. In this work, a hybrid electrocatalyst composed of cobalt (Co/CoOx) nanoparticles encapsulated in Co/N-doped mesoporous graphene (Co/CoOx@Co/N-graphene) is reported for efficient ORR catalysis. The catalyst is rationally designed and synthesized via a facile combination of spontaneous one-pot polymerization of dopamine in the presence of graphene oxide (GO) and Co2+ ions and the subsequent carbonization process. The morphology, doping nature and ORR activity of the as-prepared catalyst are systematically investigated. It is found that there are abundant Co/N active sites and Co/CoOx nanoparticles in this hybrid catalyst, leading to a synergistic enhancement effect for improved ORR activity. In an alkaline environment, this Co/CoOx@Co/N-graphene catalyst displays Pt/C-comparable ORR activity in terms of half-wave potential and four-electron reduction selectivity, and higher limiting current density, better methanol tolerant ability and long-term durability. When being evaluated in a Zn\u2013air battery, it demonstrates superior performance to the commercial Pt/C catalyst.", "meta": {"doi": "10.1039/C7NR03897F"}, "_input_hash": 1714264524, "_task_hash": -1363557261, "tokens": [[{"text": "Exploration", "start": 0, "end": 11, "id": 0, "annotation": null}, {"text": "of", "start": 12, "end": 14, "id": 1, "annotation": null}, {"text": "sustainable", "start": 15, "end": 26, "id": 2, "annotation": null}, {"text": "electrocatalysts", "start": 27, "end": 43, "id": 3, "annotation": null}, {"text": "toward", "start": 44, "end": 50, "id": 4, "annotation": null}, {"text": "oxygen", "start": 51, "end": 57, "id": 5, "annotation": null}, {"text": "reduction", "start": 58, "end": 67, "id": 6, "annotation": null}, {"text": "reaction", "start": 68, "end": 76, "id": 7, "annotation": null}, {"text": "(", "start": 77, "end": 78, "id": 8, "annotation": null}, {"text": "ORR", "start": 79, "end": 82, "id": 9, "annotation": null}, {"text": ")", "start": 83, "end": 84, "id": 10, "annotation": null}, {"text": "with", "start": 85, "end": 89, "id": 11, "annotation": null}, {"text": "high", "start": 90, "end": 94, "id": 12, "annotation": null}, {"text": "catalytic", "start": 95, "end": 104, "id": 13, "annotation": null}, {"text": "activity", "start": 105, "end": 113, "id": 14, "annotation": null}, {"text": "remains", "start": 114, "end": 121, "id": 15, "annotation": null}, {"text": "a", "start": 122, "end": 123, "id": 16, "annotation": null}, {"text": "key", "start": 124, "end": 127, "id": 17, "annotation": null}, {"text": "challenge", "start": 128, "end": 137, "id": 18, "annotation": null}, {"text": "in", "start": 138, "end": 140, "id": 19, "annotation": null}, {"text": "the", "start": 141, "end": 144, "id": 20, "annotation": null}, {"text": "development", "start": 145, "end": 156, "id": 21, "annotation": null}, {"text": "of", "start": 157, "end": 159, "id": 22, "annotation": null}, {"text": "metal", "start": 160, "end": 165, "id": 23, "annotation": null}, {"text": "\u2013", "start": 166, "end": 167, "id": 24, "annotation": null}, {"text": "air", "start": 168, "end": 171, "id": 25, "annotation": null}, {"text": "batteries", "start": 172, "end": 181, "id": 26, "annotation": null}, {"text": "and", "start": 182, "end": 185, "id": 27, "annotation": null}, {"text": "fuel", "start": 186, "end": 190, "id": 28, "annotation": null}, {"text": "cells", "start": 191, "end": 196, "id": 29, "annotation": null}, {"text": ".", "start": 197, "end": 198, "id": 30, "annotation": null}], [{"text": "In", "start": 199, "end": 201, "id": 31, "annotation": null}, {"text": "this", "start": 202, "end": 206, "id": 32, "annotation": null}, {"text": "work", "start": 207, "end": 211, "id": 33, "annotation": null}, {"text": ",", "start": 212, "end": 213, "id": 34, "annotation": null}, {"text": "a", "start": 214, "end": 215, "id": 35, "annotation": null}, {"text": "hybrid", "start": 216, "end": 222, "id": 36, "annotation": null}, {"text": "electrocatalyst", "start": 223, "end": 238, "id": 37, "annotation": null}, {"text": "composed", "start": 239, "end": 247, "id": 38, "annotation": null}, {"text": "of", "start": 248, "end": 250, "id": 39, "annotation": null}, {"text": "cobalt", "start": 251, "end": 257, "id": 40, "annotation": null}, {"text": "(", "start": 258, "end": 259, "id": 41, "annotation": null}, {"text": "Co", "start": 260, "end": 262, "id": 42, "annotation": null}, {"text": "/", "start": 263, "end": 264, "id": 43, "annotation": null}, {"text": "CoOx", "start": 265, "end": 269, "id": 44, "annotation": null}, {"text": ")", "start": 270, "end": 271, "id": 45, "annotation": null}, {"text": "nanoparticles", "start": 272, "end": 285, "id": 46, "annotation": null}, {"text": "encapsulated", "start": 286, "end": 298, "id": 47, "annotation": null}, {"text": "in", "start": 299, "end": 301, "id": 48, "annotation": null}, {"text": "Co", "start": 302, "end": 304, "id": 49, "annotation": null}, {"text": "/", "start": 305, "end": 306, "id": 50, "annotation": null}, {"text": "N", "start": 307, "end": 308, "id": 51, "annotation": "DOPANT"}, {"text": "-", "start": 309, "end": 310, "id": 52, "annotation": null}, {"text": "doped", "start": 311, "end": 316, "id": 53, "annotation": null}, {"text": "mesoporous", "start": 317, "end": 327, "id": 54, "annotation": null}, {"text": "graphene", "start": 328, "end": 336, "id": 55, "annotation": "BASEMAT"}, {"text": "(", "start": 337, "end": 338, "id": 56, "annotation": null}, {"text": "Co", "start": 339, "end": 341, "id": 57, "annotation": null}, {"text": "/", "start": 342, "end": 343, "id": 58, "annotation": null}, {"text": "CoOx@Co", "start": 344, "end": 351, "id": 59, "annotation": null}, {"text": "/", "start": 352, "end": 353, "id": 60, "annotation": null}, {"text": "N", "start": 354, "end": 355, "id": 61, "annotation": "DOPANT"}, {"text": "-", "start": 356, "end": 357, "id": 62, "annotation": null}, {"text": "graphene", "start": 358, "end": 366, "id": 63, "annotation": "BASEMAT"}, {"text": ")", "start": 367, "end": 368, "id": 64, "annotation": null}, {"text": "is", "start": 369, "end": 371, "id": 65, "annotation": null}, {"text": "reported", "start": 372, "end": 380, "id": 66, "annotation": null}, {"text": "for", "start": 381, "end": 384, "id": 67, "annotation": null}, {"text": "efficient", "start": 385, "end": 394, "id": 68, "annotation": null}, {"text": "ORR", "start": 395, "end": 398, "id": 69, "annotation": null}, {"text": "catalysis", "start": 399, "end": 408, "id": 70, "annotation": null}, {"text": ".", "start": 409, "end": 410, "id": 71, "annotation": null}], [{"text": "The", "start": 411, "end": 414, "id": 72, "annotation": null}, {"text": "catalyst", "start": 415, "end": 423, "id": 73, "annotation": null}, {"text": "is", "start": 424, "end": 426, "id": 74, "annotation": null}, {"text": "rationally", "start": 427, "end": 437, "id": 75, "annotation": null}, {"text": "designed", "start": 438, "end": 446, "id": 76, "annotation": null}, {"text": "and", "start": 447, "end": 450, "id": 77, "annotation": null}, {"text": "synthesized", "start": 451, "end": 462, "id": 78, "annotation": null}, {"text": "via", "start": 463, "end": 466, "id": 79, "annotation": null}, {"text": "a", "start": 467, "end": 468, "id": 80, "annotation": null}, {"text": "facile", "start": 469, "end": 475, "id": 81, "annotation": null}, {"text": "combination", "start": 476, "end": 487, "id": 82, "annotation": null}, {"text": "of", "start": 488, "end": 490, "id": 83, "annotation": null}, {"text": "spontaneous", "start": 491, "end": 502, "id": 84, "annotation": null}, {"text": "one", "start": 503, "end": 506, "id": 85, "annotation": null}, {"text": "-", "start": 507, "end": 508, "id": 86, "annotation": null}, {"text": "pot", "start": 509, "end": 512, "id": 87, "annotation": null}, {"text": "polymerization", "start": 513, "end": 527, "id": 88, "annotation": null}, {"text": "of", "start": 528, "end": 530, "id": 89, "annotation": null}, {"text": "dopamine", "start": 531, "end": 539, "id": 90, "annotation": null}, {"text": "in", "start": 540, "end": 542, "id": 91, "annotation": null}, {"text": "the", "start": 543, "end": 546, "id": 92, "annotation": null}, {"text": "presence", "start": 547, "end": 555, "id": 93, "annotation": null}, {"text": "of", "start": 556, "end": 558, "id": 94, "annotation": null}, {"text": "graphene", "start": 559, "end": 567, "id": 95, "annotation": null}, {"text": "oxide", "start": 568, "end": 573, "id": 96, "annotation": null}, {"text": "(", "start": 574, "end": 575, "id": 97, "annotation": null}, {"text": "GO", "start": 576, "end": 578, "id": 98, "annotation": null}, {"text": ")", "start": 579, "end": 580, "id": 99, "annotation": null}, {"text": "and", "start": 581, "end": 584, "id": 100, "annotation": null}, {"text": "Co2", "start": 585, "end": 588, "id": 101, "annotation": null}, {"text": "+", "start": 589, "end": 590, "id": 102, "annotation": null}, {"text": "ions", "start": 591, "end": 595, "id": 103, "annotation": null}, {"text": "and", "start": 596, "end": 599, "id": 104, "annotation": null}, {"text": "the", "start": 600, "end": 603, "id": 105, "annotation": null}, {"text": "subsequent", "start": 604, "end": 614, "id": 106, "annotation": null}, {"text": "carbonization", "start": 615, "end": 628, "id": 107, "annotation": null}, {"text": "process", "start": 629, "end": 636, "id": 108, "annotation": null}, {"text": ".", "start": 637, "end": 638, "id": 109, "annotation": null}], [{"text": "The", "start": 639, "end": 642, "id": 110, "annotation": null}, {"text": "morphology", "start": 643, "end": 653, "id": 111, "annotation": null}, {"text": ",", "start": 654, "end": 655, "id": 112, "annotation": null}, {"text": "doping", "start": 656, "end": 662, "id": 113, "annotation": null}, {"text": "nature", "start": 663, "end": 669, "id": 114, "annotation": null}, {"text": "and", "start": 670, "end": 673, "id": 115, "annotation": null}, {"text": "ORR", "start": 674, "end": 677, "id": 116, "annotation": null}, {"text": "activity", "start": 678, "end": 686, "id": 117, "annotation": null}, {"text": "of", "start": 687, "end": 689, "id": 118, "annotation": null}, {"text": "the", "start": 690, "end": 693, "id": 119, "annotation": null}, {"text": "as", "start": 694, "end": 696, "id": 120, "annotation": null}, {"text": "-", "start": 697, "end": 698, "id": 121, "annotation": null}, {"text": "prepared", "start": 699, "end": 707, "id": 122, "annotation": null}, {"text": "catalyst", "start": 708, "end": 716, "id": 123, "annotation": null}, {"text": "are", "start": 717, "end": 720, "id": 124, "annotation": null}, {"text": "systematically", "start": 721, "end": 735, "id": 125, "annotation": null}, {"text": "investigated", "start": 736, "end": 748, "id": 126, "annotation": null}, {"text": ".", "start": 749, "end": 750, "id": 127, "annotation": null}], [{"text": "It", "start": 751, "end": 753, "id": 128, "annotation": null}, {"text": "is", "start": 754, "end": 756, "id": 129, "annotation": null}, {"text": "found", "start": 757, "end": 762, "id": 130, "annotation": null}, {"text": "that", "start": 763, "end": 767, "id": 131, "annotation": null}, {"text": "there", "start": 768, "end": 773, "id": 132, "annotation": null}, {"text": "are", "start": 774, "end": 777, "id": 133, "annotation": null}, {"text": "abundant", "start": 778, "end": 786, "id": 134, "annotation": null}, {"text": "Co", "start": 787, "end": 789, "id": 135, "annotation": null}, {"text": "/", "start": 790, "end": 791, "id": 136, "annotation": null}, {"text": "N", "start": 792, "end": 793, "id": 137, "annotation": null}, {"text": "active", "start": 794, "end": 800, "id": 138, "annotation": null}, {"text": "sites", "start": 801, "end": 806, "id": 139, "annotation": null}, {"text": "and", "start": 807, "end": 810, "id": 140, "annotation": null}, {"text": "Co", "start": 811, "end": 813, "id": 141, "annotation": null}, {"text": "/", "start": 814, "end": 815, "id": 142, "annotation": null}, {"text": "CoOx", "start": 816, "end": 820, "id": 143, "annotation": null}, {"text": "nanoparticles", "start": 821, "end": 834, "id": 144, "annotation": null}, {"text": "in", "start": 835, "end": 837, "id": 145, "annotation": null}, {"text": "this", "start": 838, "end": 842, "id": 146, "annotation": null}, {"text": "hybrid", "start": 843, "end": 849, "id": 147, "annotation": null}, {"text": "catalyst", "start": 850, "end": 858, "id": 148, "annotation": null}, {"text": ",", "start": 859, "end": 860, "id": 149, "annotation": null}, {"text": "leading", "start": 861, "end": 868, "id": 150, "annotation": null}, {"text": "to", "start": 869, "end": 871, "id": 151, "annotation": null}, {"text": "a", "start": 872, "end": 873, "id": 152, "annotation": null}, {"text": "synergistic", "start": 874, "end": 885, "id": 153, "annotation": null}, {"text": "enhancement", "start": 886, "end": 897, "id": 154, "annotation": null}, {"text": "effect", "start": 898, "end": 904, "id": 155, "annotation": null}, {"text": "for", "start": 905, "end": 908, "id": 156, "annotation": null}, {"text": "improved", "start": 909, "end": 917, "id": 157, "annotation": null}, {"text": "ORR", "start": 918, "end": 921, "id": 158, "annotation": null}, {"text": "activity", "start": 922, "end": 930, "id": 159, "annotation": null}, {"text": ".", "start": 931, "end": 932, "id": 160, "annotation": null}], [{"text": "In", "start": 933, "end": 935, "id": 161, "annotation": null}, {"text": "an", "start": 936, "end": 938, "id": 162, "annotation": null}, {"text": "alkaline", "start": 939, "end": 947, "id": 163, "annotation": null}, {"text": "environment", "start": 948, "end": 959, "id": 164, "annotation": null}, {"text": ",", "start": 960, "end": 961, "id": 165, "annotation": null}, {"text": "this", "start": 962, "end": 966, "id": 166, "annotation": null}, {"text": "Co", "start": 967, "end": 969, "id": 167, "annotation": null}, {"text": "/", "start": 970, "end": 971, "id": 168, "annotation": null}, {"text": "CoOx@Co", "start": 972, "end": 979, "id": 169, "annotation": null}, {"text": "/", "start": 980, "end": 981, "id": 170, "annotation": null}, {"text": "N", "start": 982, "end": 983, "id": 171, "annotation": "DOPANT"}, {"text": "-", "start": 984, "end": 985, "id": 172, "annotation": null}, {"text": "graphene", "start": 986, "end": 994, "id": 173, "annotation": "BASEMAT"}, {"text": "catalyst", "start": 995, "end": 1003, "id": 174, "annotation": null}, {"text": "displays", "start": 1004, "end": 1012, "id": 175, "annotation": null}, {"text": "Pt", "start": 1013, "end": 1015, "id": 176, "annotation": null}, {"text": "/", "start": 1016, "end": 1017, "id": 177, "annotation": null}, {"text": "C", "start": 1018, "end": 1019, "id": 178, "annotation": null}, {"text": "-", "start": 1020, "end": 1021, "id": 179, "annotation": null}, {"text": "comparable", "start": 1022, "end": 1032, "id": 180, "annotation": null}, {"text": "ORR", "start": 1033, "end": 1036, "id": 181, "annotation": null}, {"text": "activity", "start": 1037, "end": 1045, "id": 182, "annotation": null}, {"text": "in", "start": 1046, "end": 1048, "id": 183, "annotation": null}, {"text": "terms", "start": 1049, "end": 1054, "id": 184, "annotation": null}, {"text": "of", "start": 1055, "end": 1057, "id": 185, "annotation": null}, {"text": "half", "start": 1058, "end": 1062, "id": 186, "annotation": null}, {"text": "-", "start": 1063, "end": 1064, "id": 187, "annotation": null}, {"text": "wave", "start": 1065, "end": 1069, "id": 188, "annotation": null}, {"text": "potential", "start": 1070, "end": 1079, "id": 189, "annotation": null}, {"text": "and", "start": 1080, "end": 1083, "id": 190, "annotation": null}, {"text": "four", "start": 1084, "end": 1088, "id": 191, "annotation": null}, {"text": "-", "start": 1089, "end": 1090, "id": 192, "annotation": null}, {"text": "electron", "start": 1091, "end": 1099, "id": 193, "annotation": null}, {"text": "reduction", "start": 1100, "end": 1109, "id": 194, "annotation": null}, {"text": "selectivity", "start": 1110, "end": 1121, "id": 195, "annotation": null}, {"text": ",", "start": 1122, "end": 1123, "id": 196, "annotation": null}, {"text": "and", "start": 1124, "end": 1127, "id": 197, "annotation": null}, {"text": "higher", "start": 1128, "end": 1134, "id": 198, "annotation": null}, {"text": "limiting", "start": 1135, "end": 1143, "id": 199, "annotation": null}, {"text": "current", "start": 1144, "end": 1151, "id": 200, "annotation": null}, {"text": "density", "start": 1152, "end": 1159, "id": 201, "annotation": null}, {"text": ",", "start": 1160, "end": 1161, "id": 202, "annotation": null}, {"text": "better", "start": 1162, "end": 1168, "id": 203, "annotation": null}, {"text": "methanol", "start": 1169, "end": 1177, "id": 204, "annotation": null}, {"text": "tolerant", "start": 1178, "end": 1186, "id": 205, "annotation": null}, {"text": "ability", "start": 1187, "end": 1194, "id": 206, "annotation": null}, {"text": "and", "start": 1195, "end": 1198, "id": 207, "annotation": null}, {"text": "long", "start": 1199, "end": 1203, "id": 208, "annotation": null}, {"text": "-", "start": 1204, "end": 1205, "id": 209, "annotation": null}, {"text": "term", "start": 1206, "end": 1210, "id": 210, "annotation": null}, {"text": "durability", "start": 1211, "end": 1221, "id": 211, "annotation": null}, {"text": ".", "start": 1222, "end": 1223, "id": 212, "annotation": null}], [{"text": "When", "start": 1224, "end": 1228, "id": 213, "annotation": null}, {"text": "being", "start": 1229, "end": 1234, "id": 214, "annotation": null}, {"text": "evaluated", "start": 1235, "end": 1244, "id": 215, "annotation": null}, {"text": "in", "start": 1245, "end": 1247, "id": 216, "annotation": null}, {"text": "a", "start": 1248, "end": 1249, "id": 217, "annotation": null}, {"text": "Zn", "start": 1250, "end": 1252, "id": 218, "annotation": null}, {"text": "\u2013", "start": 1253, "end": 1254, "id": 219, "annotation": null}, {"text": "air", "start": 1255, "end": 1258, "id": 220, "annotation": null}, {"text": "battery", "start": 1259, "end": 1266, "id": 221, "annotation": null}, {"text": ",", "start": 1267, "end": 1268, "id": 222, "annotation": null}, {"text": "it", "start": 1269, "end": 1271, "id": 223, "annotation": null}, {"text": "demonstrates", "start": 1272, "end": 1284, "id": 224, "annotation": null}, {"text": "superior", "start": 1285, "end": 1293, "id": 225, "annotation": null}, {"text": "performance", "start": 1294, "end": 1305, "id": 226, "annotation": null}, {"text": "to", "start": 1306, "end": 1308, "id": 227, "annotation": null}, {"text": "the", "start": 1309, "end": 1312, "id": 228, "annotation": null}, {"text": "commercial", "start": 1313, "end": 1323, "id": 229, "annotation": null}, {"text": "Pt", "start": 1324, "end": 1326, "id": 230, "annotation": null}, {"text": "/", "start": 1327, "end": 1328, "id": 231, "annotation": null}, {"text": "C", "start": 1329, "end": 1330, "id": 232, "annotation": null}, {"text": "catalyst", "start": 1331, "end": 1339, "id": 233, "annotation": null}, {"text": ".", "start": 1340, "end": 1341, "id": 234, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Preparation of LuBa2Cu3O y (Lu-123) thin films by a pulsed laser deposition (PLD) technique was studied. Thin films with c-axis orientation were successfully obtained on SrTiO3(100) substrates at a relatively low temperatures of 600\u2013660 \u00b0C. These films exhibited a T c(zero) of 82 K. We fabricated interface-modified ramp-edge Josephson junctions using the Lu-123 and La-doped Y-123 for counter and base electrodes, respectively. The Lu-123 electrode was deposited at 635 \u00b0C. The obtained junctions exhibited RCSJ-type current\u2013voltage characteristics. The Lu-123 electrode without a ground plane showed moderately low sheet inductance of 3 pH/\u25a1.", "meta": {"doi": "10.1016/j.physc.2003.12.106"}, "_input_hash": -1335086088, "_task_hash": -1868449368, "tokens": [[{"text": "Preparation", "start": 0, "end": 11, "id": 0, "annotation": null}, {"text": "of", "start": 12, "end": 14, "id": 1, "annotation": null}, {"text": "LuBa2Cu3O", "start": 15, "end": 24, "id": 2, "annotation": null}, {"text": "y", "start": 25, "end": 26, "id": 3, "annotation": null}, {"text": "(", "start": 27, "end": 28, "id": 4, "annotation": null}, {"text": "Lu-123", "start": 29, "end": 35, "id": 5, "annotation": null}, {"text": ")", "start": 36, "end": 37, "id": 6, "annotation": null}, {"text": "thin", "start": 38, "end": 42, "id": 7, "annotation": null}, {"text": "films", "start": 43, "end": 48, "id": 8, "annotation": null}, {"text": "by", "start": 49, "end": 51, "id": 9, "annotation": null}, {"text": "a", "start": 52, "end": 53, "id": 10, "annotation": null}, {"text": "pulsed", "start": 54, "end": 60, "id": 11, "annotation": null}, {"text": "laser", "start": 61, "end": 66, "id": 12, "annotation": null}, {"text": "deposition", "start": 67, "end": 77, "id": 13, "annotation": null}, {"text": "(", "start": 78, "end": 79, "id": 14, "annotation": null}, {"text": "PLD", "start": 80, "end": 83, "id": 15, "annotation": null}, {"text": ")", "start": 84, "end": 85, "id": 16, "annotation": null}, {"text": "technique", "start": 86, "end": 95, "id": 17, "annotation": null}, {"text": "was", "start": 96, "end": 99, "id": 18, "annotation": null}, {"text": "studied", "start": 100, "end": 107, "id": 19, "annotation": null}, {"text": ".", "start": 108, "end": 109, "id": 20, "annotation": null}], [{"text": "Thin", "start": 110, "end": 114, "id": 21, "annotation": null}, {"text": "films", "start": 115, "end": 120, "id": 22, "annotation": null}, {"text": "with", "start": 121, "end": 125, "id": 23, "annotation": null}, {"text": "c", "start": 126, "end": 127, "id": 24, "annotation": null}, {"text": "-", "start": 128, "end": 129, "id": 25, "annotation": null}, {"text": "axis", "start": 130, "end": 134, "id": 26, "annotation": null}, {"text": "orientation", "start": 135, "end": 146, "id": 27, "annotation": null}, {"text": "were", "start": 147, "end": 151, "id": 28, "annotation": null}, {"text": "successfully", "start": 152, "end": 164, "id": 29, "annotation": null}, {"text": "obtained", "start": 165, "end": 173, "id": 30, "annotation": null}, {"text": "on", "start": 174, "end": 176, "id": 31, "annotation": null}, {"text": "SrTiO3(100", "start": 177, "end": 187, "id": 32, "annotation": null}, {"text": ")", "start": 188, "end": 189, "id": 33, "annotation": null}, {"text": "substrates", "start": 190, "end": 200, "id": 34, "annotation": null}, {"text": "at", "start": 201, "end": 203, "id": 35, "annotation": null}, {"text": "a", "start": 204, "end": 205, "id": 36, "annotation": null}, {"text": "relatively", "start": 206, "end": 216, "id": 37, "annotation": null}, {"text": "low", "start": 217, "end": 220, "id": 38, "annotation": null}, {"text": "temperatures", "start": 221, "end": 233, "id": 39, "annotation": null}, {"text": "of", "start": 234, "end": 236, "id": 40, "annotation": null}, {"text": "600\u2013660", "start": 237, "end": 244, "id": 41, "annotation": null}, {"text": "\u00b0", "start": 245, "end": 246, "id": 42, "annotation": null}, {"text": "C", "start": 247, "end": 248, "id": 43, "annotation": null}, {"text": ".", "start": 249, "end": 250, "id": 44, "annotation": null}], [{"text": "These", "start": 251, "end": 256, "id": 45, "annotation": null}, {"text": "films", "start": 257, "end": 262, "id": 46, "annotation": null}, {"text": "exhibited", "start": 263, "end": 272, "id": 47, "annotation": null}, {"text": "a", "start": 273, "end": 274, "id": 48, "annotation": null}, {"text": "T", "start": 275, "end": 276, "id": 49, "annotation": null}, {"text": "c(zero", "start": 277, "end": 283, "id": 50, "annotation": null}, {"text": ")", "start": 284, "end": 285, "id": 51, "annotation": null}, {"text": "of", "start": 286, "end": 288, "id": 52, "annotation": null}, {"text": "82", "start": 289, "end": 291, "id": 53, "annotation": null}, {"text": "K.", "start": 292, "end": 294, "id": 54, "annotation": null}], [{"text": "We", "start": 295, "end": 297, "id": 55, "annotation": null}, {"text": "fabricated", "start": 298, "end": 308, "id": 56, "annotation": null}, {"text": "interface", "start": 309, "end": 318, "id": 57, "annotation": null}, {"text": "-", "start": 319, "end": 320, "id": 58, "annotation": null}, {"text": "modified", "start": 321, "end": 329, "id": 59, "annotation": null}, {"text": "ramp", "start": 330, "end": 334, "id": 60, "annotation": null}, {"text": "-", "start": 335, "end": 336, "id": 61, "annotation": null}, {"text": "edge", "start": 337, "end": 341, "id": 62, "annotation": null}, {"text": "Josephson", "start": 342, "end": 351, "id": 63, "annotation": null}, {"text": "junctions", "start": 352, "end": 361, "id": 64, "annotation": null}, {"text": "using", "start": 362, "end": 367, "id": 65, "annotation": null}, {"text": "the", "start": 368, "end": 371, "id": 66, "annotation": null}, {"text": "Lu-123", "start": 372, "end": 378, "id": 67, "annotation": null}, {"text": "and", "start": 379, "end": 382, "id": 68, "annotation": null}, {"text": "La", "start": 383, "end": 385, "id": 69, "annotation": "BASEMAT"}, {"text": "-", "start": 386, "end": 387, "id": 70, "annotation": null}, {"text": "doped", "start": 388, "end": 393, "id": 71, "annotation": null}, {"text": "Y-123", "start": 394, "end": 399, "id": 72, "annotation": "BASEMAT"}, {"text": "for", "start": 400, "end": 403, "id": 73, "annotation": null}, {"text": "counter", "start": 404, "end": 411, "id": 74, "annotation": null}, {"text": "and", "start": 412, "end": 415, "id": 75, "annotation": null}, {"text": "base", "start": 416, "end": 420, "id": 76, "annotation": null}, {"text": "electrodes", "start": 421, "end": 431, "id": 77, "annotation": null}, {"text": ",", "start": 432, "end": 433, "id": 78, "annotation": null}, {"text": "respectively", "start": 434, "end": 446, "id": 79, "annotation": null}, {"text": ".", "start": 447, "end": 448, "id": 80, "annotation": null}], [{"text": "The", "start": 449, "end": 452, "id": 81, "annotation": null}, {"text": "Lu-123", "start": 453, "end": 459, "id": 82, "annotation": null}, {"text": "electrode", "start": 460, "end": 469, "id": 83, "annotation": null}, {"text": "was", "start": 470, "end": 473, "id": 84, "annotation": null}, {"text": "deposited", "start": 474, "end": 483, "id": 85, "annotation": null}, {"text": "at", "start": 484, "end": 486, "id": 86, "annotation": null}, {"text": "635", "start": 487, "end": 490, "id": 87, "annotation": null}, {"text": "\u00b0", "start": 491, "end": 492, "id": 88, "annotation": null}, {"text": "C", "start": 493, "end": 494, "id": 89, "annotation": null}, {"text": ".", "start": 495, "end": 496, "id": 90, "annotation": null}], [{"text": "The", "start": 497, "end": 500, "id": 91, "annotation": null}, {"text": "obtained", "start": 501, "end": 509, "id": 92, "annotation": null}, {"text": "junctions", "start": 510, "end": 519, "id": 93, "annotation": null}, {"text": "exhibited", "start": 520, "end": 529, "id": 94, "annotation": null}, {"text": "RCSJ", "start": 530, "end": 534, "id": 95, "annotation": null}, {"text": "-", "start": 535, "end": 536, "id": 96, "annotation": null}, {"text": "type", "start": 537, "end": 541, "id": 97, "annotation": null}, {"text": "current", "start": 542, "end": 549, "id": 98, "annotation": null}, {"text": "\u2013", "start": 550, "end": 551, "id": 99, "annotation": null}, {"text": "voltage", "start": 552, "end": 559, "id": 100, "annotation": null}, {"text": "characteristics", "start": 560, "end": 575, "id": 101, "annotation": null}, {"text": ".", "start": 576, "end": 577, "id": 102, "annotation": null}], [{"text": "The", "start": 578, "end": 581, "id": 103, "annotation": null}, {"text": "Lu-123", "start": 582, "end": 588, "id": 104, "annotation": null}, {"text": "electrode", "start": 589, "end": 598, "id": 105, "annotation": null}, {"text": "without", "start": 599, "end": 606, "id": 106, "annotation": null}, {"text": "a", "start": 607, "end": 608, "id": 107, "annotation": null}, {"text": "ground", "start": 609, "end": 615, "id": 108, "annotation": null}, {"text": "plane", "start": 616, "end": 621, "id": 109, "annotation": null}, {"text": "showed", "start": 622, "end": 628, "id": 110, "annotation": null}, {"text": "moderately", "start": 629, "end": 639, "id": 111, "annotation": null}, {"text": "low", "start": 640, "end": 643, "id": 112, "annotation": null}, {"text": "sheet", "start": 644, "end": 649, "id": 113, "annotation": null}, {"text": "inductance", "start": 650, "end": 660, "id": 114, "annotation": null}, {"text": "of", "start": 661, "end": 663, "id": 115, "annotation": null}, {"text": "3", "start": 664, "end": 665, "id": 116, "annotation": null}, {"text": "pH/", "start": 666, "end": 669, "id": 117, "annotation": null}, {"text": "\u25a1", "start": 670, "end": 671, "id": 118, "annotation": null}, {"text": ".", "start": 672, "end": 673, "id": 119, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The local structures of Ti doped NaAlH4 were investigated with extended X-ray absorption fine structure (EXAFS) and X-ray absorption near edge structure (XANES) using Ti(OBu)4 and TiCl3 precursors. The local structures were linked to literature data on hydrogen desorption and absorption kinetics. In the Ti(OBu)4 doped NaAlH4, butoxide or decomposition products thereof (C, O atoms) was bonded to Ti after ball-milling, inhibiting the performance of the Ti catalyst. Upon heating, the C and O atoms were removed and Ti\u2013Al species were formed. The thermodynamical most stable specie, TiAl3, was not formed at T<300\u00b0C, contrarily to TiCl3 doped NaAlH4. Probably the initially present butoxide group gave rise to inhibition of its formation. Besides that, the butoxide or decompostion products thereof (C, O atoms) are also suspected to interfere with the hydrogen uptake of a desorbed NaAlH4.", "meta": {"doi": "10.1016/j.jallcom.2006.12.009"}, "_input_hash": 937398570, "_task_hash": -1315940022, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "local", "start": 4, "end": 9, "id": 1, "annotation": null}, {"text": "structures", "start": 10, "end": 20, "id": 2, "annotation": null}, {"text": "of", "start": 21, "end": 23, "id": 3, "annotation": null}, {"text": "Ti", "start": 24, "end": 26, "id": 4, "annotation": "DOPANT"}, {"text": "doped", "start": 27, "end": 32, "id": 5, "annotation": null}, {"text": "NaAlH4", "start": 33, "end": 39, "id": 6, "annotation": "BASEMAT"}, {"text": "were", "start": 40, "end": 44, "id": 7, "annotation": null}, {"text": "investigated", "start": 45, "end": 57, "id": 8, "annotation": null}, {"text": "with", "start": 58, "end": 62, "id": 9, "annotation": null}, {"text": "extended", "start": 63, "end": 71, "id": 10, "annotation": null}, {"text": "X", "start": 72, "end": 73, "id": 11, "annotation": null}, {"text": "-", "start": 74, "end": 75, "id": 12, "annotation": null}, {"text": "ray", "start": 76, "end": 79, "id": 13, "annotation": null}, {"text": "absorption", "start": 80, "end": 90, "id": 14, "annotation": null}, {"text": "fine", "start": 91, "end": 95, "id": 15, "annotation": null}, {"text": "structure", "start": 96, "end": 105, "id": 16, "annotation": null}, {"text": "(", "start": 106, "end": 107, "id": 17, "annotation": null}, {"text": "EXAFS", "start": 108, "end": 113, "id": 18, "annotation": null}, {"text": ")", "start": 114, "end": 115, "id": 19, "annotation": null}, {"text": "and", "start": 116, "end": 119, "id": 20, "annotation": null}, {"text": "X", "start": 120, "end": 121, "id": 21, "annotation": null}, {"text": "-", "start": 122, "end": 123, "id": 22, "annotation": null}, {"text": "ray", "start": 124, "end": 127, "id": 23, "annotation": null}, {"text": "absorption", "start": 128, "end": 138, "id": 24, "annotation": null}, {"text": "near", "start": 139, "end": 143, "id": 25, "annotation": null}, {"text": "edge", "start": 144, "end": 148, "id": 26, "annotation": null}, {"text": "structure", "start": 149, "end": 158, "id": 27, "annotation": null}, {"text": "(", "start": 159, "end": 160, "id": 28, "annotation": null}, {"text": "XANES", "start": 161, "end": 166, "id": 29, "annotation": null}, {"text": ")", "start": 167, "end": 168, "id": 30, "annotation": null}, {"text": "using", "start": 169, "end": 174, "id": 31, "annotation": null}, {"text": "Ti(OBu)4", "start": 175, "end": 183, "id": 32, "annotation": null}, {"text": "and", "start": 184, "end": 187, "id": 33, "annotation": null}, {"text": "TiCl3", "start": 188, "end": 193, "id": 34, "annotation": null}, {"text": "precursors", "start": 194, "end": 204, "id": 35, "annotation": null}, {"text": ".", "start": 205, "end": 206, "id": 36, "annotation": null}], [{"text": "The", "start": 207, "end": 210, "id": 37, "annotation": null}, {"text": "local", "start": 211, "end": 216, "id": 38, "annotation": null}, {"text": "structures", "start": 217, "end": 227, "id": 39, "annotation": null}, {"text": "were", "start": 228, "end": 232, "id": 40, "annotation": null}, {"text": "linked", "start": 233, "end": 239, "id": 41, "annotation": null}, {"text": "to", "start": 240, "end": 242, "id": 42, "annotation": null}, {"text": "literature", "start": 243, "end": 253, "id": 43, "annotation": null}, {"text": "data", "start": 254, "end": 258, "id": 44, "annotation": null}, {"text": "on", "start": 259, "end": 261, "id": 45, "annotation": null}, {"text": "hydrogen", "start": 262, "end": 270, "id": 46, "annotation": null}, {"text": "desorption", "start": 271, "end": 281, "id": 47, "annotation": null}, {"text": "and", "start": 282, "end": 285, "id": 48, "annotation": null}, {"text": "absorption", "start": 286, "end": 296, "id": 49, "annotation": null}, {"text": "kinetics", "start": 297, "end": 305, "id": 50, "annotation": null}, {"text": ".", "start": 306, "end": 307, "id": 51, "annotation": null}], [{"text": "In", "start": 308, "end": 310, "id": 52, "annotation": null}, {"text": "the", "start": 311, "end": 314, "id": 53, "annotation": null}, {"text": "Ti(OBu)4", "start": 315, "end": 323, "id": 54, "annotation": "DOPANT"}, {"text": "doped", "start": 324, "end": 329, "id": 55, "annotation": null}, {"text": "NaAlH4", "start": 330, "end": 336, "id": 56, "annotation": "BASEMAT"}, {"text": ",", "start": 337, "end": 338, "id": 57, "annotation": null}, {"text": "butoxide", "start": 339, "end": 347, "id": 58, "annotation": null}, {"text": "or", "start": 348, "end": 350, "id": 59, "annotation": null}, {"text": "decomposition", "start": 351, "end": 364, "id": 60, "annotation": null}, {"text": "products", "start": 365, "end": 373, "id": 61, "annotation": null}, {"text": "thereof", "start": 374, "end": 381, "id": 62, "annotation": null}, {"text": "(", "start": 382, "end": 383, "id": 63, "annotation": null}, {"text": "C", "start": 384, "end": 385, "id": 64, "annotation": null}, {"text": ",", "start": 386, "end": 387, "id": 65, "annotation": null}, {"text": "O", "start": 388, "end": 389, "id": 66, "annotation": null}, {"text": "atoms", "start": 390, "end": 395, "id": 67, "annotation": null}, {"text": ")", "start": 396, "end": 397, "id": 68, "annotation": null}, {"text": "was", "start": 398, "end": 401, "id": 69, "annotation": null}, {"text": "bonded", "start": 402, "end": 408, "id": 70, "annotation": null}, {"text": "to", "start": 409, "end": 411, "id": 71, "annotation": null}, {"text": "Ti", "start": 412, "end": 414, "id": 72, "annotation": null}, {"text": "after", "start": 415, "end": 420, "id": 73, "annotation": null}, {"text": "ball", "start": 421, "end": 425, "id": 74, "annotation": null}, {"text": "-", "start": 426, "end": 427, "id": 75, "annotation": null}, {"text": "milling", "start": 428, "end": 435, "id": 76, "annotation": null}, {"text": ",", "start": 436, "end": 437, "id": 77, "annotation": null}, {"text": "inhibiting", "start": 438, "end": 448, "id": 78, "annotation": null}, {"text": "the", "start": 449, "end": 452, "id": 79, "annotation": null}, {"text": "performance", "start": 453, "end": 464, "id": 80, "annotation": null}, {"text": "of", "start": 465, "end": 467, "id": 81, "annotation": null}, {"text": "the", "start": 468, "end": 471, "id": 82, "annotation": null}, {"text": "Ti", "start": 472, "end": 474, "id": 83, "annotation": null}, {"text": "catalyst", "start": 475, "end": 483, "id": 84, "annotation": null}, {"text": ".", "start": 484, "end": 485, "id": 85, "annotation": null}], [{"text": "Upon", "start": 486, "end": 490, "id": 86, "annotation": null}, {"text": "heating", "start": 491, "end": 498, "id": 87, "annotation": null}, {"text": ",", "start": 499, "end": 500, "id": 88, "annotation": null}, {"text": "the", "start": 501, "end": 504, "id": 89, "annotation": null}, {"text": "C", "start": 505, "end": 506, "id": 90, "annotation": null}, {"text": "and", "start": 507, "end": 510, "id": 91, "annotation": null}, {"text": "O", "start": 511, "end": 512, "id": 92, "annotation": null}, {"text": "atoms", "start": 513, "end": 518, "id": 93, "annotation": null}, {"text": "were", "start": 519, "end": 523, "id": 94, "annotation": null}, {"text": "removed", "start": 524, "end": 531, "id": 95, "annotation": null}, {"text": "and", "start": 532, "end": 535, "id": 96, "annotation": null}, {"text": "Ti", "start": 536, "end": 538, "id": 97, "annotation": null}, {"text": "\u2013", "start": 539, "end": 540, "id": 98, "annotation": null}, {"text": "Al", "start": 541, "end": 543, "id": 99, "annotation": null}, {"text": "species", "start": 544, "end": 551, "id": 100, "annotation": null}, {"text": "were", "start": 552, "end": 556, "id": 101, "annotation": null}, {"text": "formed", "start": 557, "end": 563, "id": 102, "annotation": null}, {"text": ".", "start": 564, "end": 565, "id": 103, "annotation": null}], [{"text": "The", "start": 566, "end": 569, "id": 104, "annotation": null}, {"text": "thermodynamical", "start": 570, "end": 585, "id": 105, "annotation": null}, {"text": "most", "start": 586, "end": 590, "id": 106, "annotation": null}, {"text": "stable", "start": 591, "end": 597, "id": 107, "annotation": null}, {"text": "specie", "start": 598, "end": 604, "id": 108, "annotation": null}, {"text": ",", "start": 605, "end": 606, "id": 109, "annotation": null}, {"text": "TiAl3", "start": 607, "end": 612, "id": 110, "annotation": null}, {"text": ",", "start": 613, "end": 614, "id": 111, "annotation": null}, {"text": "was", "start": 615, "end": 618, "id": 112, "annotation": null}, {"text": "not", "start": 619, "end": 622, "id": 113, "annotation": null}, {"text": "formed", "start": 623, "end": 629, "id": 114, "annotation": null}, {"text": "at", "start": 630, "end": 632, "id": 115, "annotation": null}, {"text": "T<300", "start": 633, "end": 638, "id": 116, "annotation": null}, {"text": "\u00b0", "start": 639, "end": 640, "id": 117, "annotation": null}, {"text": "C", "start": 641, "end": 642, "id": 118, "annotation": null}, {"text": ",", "start": 643, "end": 644, "id": 119, "annotation": null}, {"text": "contrarily", "start": 645, "end": 655, "id": 120, "annotation": null}, {"text": "to", "start": 656, "end": 658, "id": 121, "annotation": null}, {"text": "TiCl3", "start": 659, "end": 664, "id": 122, "annotation": "DOPANT"}, {"text": "doped", "start": 665, "end": 670, "id": 123, "annotation": null}, {"text": "NaAlH4", "start": 671, "end": 677, "id": 124, "annotation": "BASEMAT"}, {"text": ".", "start": 678, "end": 679, "id": 125, "annotation": null}], [{"text": "Probably", "start": 680, "end": 688, "id": 126, "annotation": null}, {"text": "the", "start": 689, "end": 692, "id": 127, "annotation": null}, {"text": "initially", "start": 693, "end": 702, "id": 128, "annotation": null}, {"text": "present", "start": 703, "end": 710, "id": 129, "annotation": null}, {"text": "butoxide", "start": 711, "end": 719, "id": 130, "annotation": null}, {"text": "group", "start": 720, "end": 725, "id": 131, "annotation": null}, {"text": "gave", "start": 726, "end": 730, "id": 132, "annotation": null}, {"text": "rise", "start": 731, "end": 735, "id": 133, "annotation": null}, {"text": "to", "start": 736, "end": 738, "id": 134, "annotation": null}, {"text": "inhibition", "start": 739, "end": 749, "id": 135, "annotation": null}, {"text": "of", "start": 750, "end": 752, "id": 136, "annotation": null}, {"text": "its", "start": 753, "end": 756, "id": 137, "annotation": null}, {"text": "formation", "start": 757, "end": 766, "id": 138, "annotation": null}, {"text": ".", "start": 767, "end": 768, "id": 139, "annotation": null}], [{"text": "Besides", "start": 769, "end": 776, "id": 140, "annotation": null}, {"text": "that", "start": 777, "end": 781, "id": 141, "annotation": null}, {"text": ",", "start": 782, "end": 783, "id": 142, "annotation": null}, {"text": "the", "start": 784, "end": 787, "id": 143, "annotation": null}, {"text": "butoxide", "start": 788, "end": 796, "id": 144, "annotation": null}, {"text": "or", "start": 797, "end": 799, "id": 145, "annotation": null}, {"text": "decompostion", "start": 800, "end": 812, "id": 146, "annotation": null}, {"text": "products", "start": 813, "end": 821, "id": 147, "annotation": null}, {"text": "thereof", "start": 822, "end": 829, "id": 148, "annotation": null}, {"text": "(", "start": 830, "end": 831, "id": 149, "annotation": null}, {"text": "C", "start": 832, "end": 833, "id": 150, "annotation": null}, {"text": ",", "start": 834, "end": 835, "id": 151, "annotation": null}, {"text": "O", "start": 836, "end": 837, "id": 152, "annotation": null}, {"text": "atoms", "start": 838, "end": 843, "id": 153, "annotation": null}, {"text": ")", "start": 844, "end": 845, "id": 154, "annotation": null}, {"text": "are", "start": 846, "end": 849, "id": 155, "annotation": null}, {"text": "also", "start": 850, "end": 854, "id": 156, "annotation": null}, {"text": "suspected", "start": 855, "end": 864, "id": 157, "annotation": null}, {"text": "to", "start": 865, "end": 867, "id": 158, "annotation": null}, {"text": "interfere", "start": 868, "end": 877, "id": 159, "annotation": null}, {"text": "with", "start": 878, "end": 882, "id": 160, "annotation": null}, {"text": "the", "start": 883, "end": 886, "id": 161, "annotation": null}, {"text": "hydrogen", "start": 887, "end": 895, "id": 162, "annotation": null}, {"text": "uptake", "start": 896, "end": 902, "id": 163, "annotation": null}, {"text": "of", "start": 903, "end": 905, "id": 164, "annotation": null}, {"text": "a", "start": 906, "end": 907, "id": 165, "annotation": null}, {"text": "desorbed", "start": 908, "end": 916, "id": 166, "annotation": null}, {"text": "NaAlH4", "start": 917, "end": 923, "id": 167, "annotation": null}, {"text": ".", "start": 924, "end": 925, "id": 168, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "This paper presents the results of synthesizing rod-like \u03b2-Si3N4 crystals by combustion synthesis with (Y2O3+Al2O3) or (Y2O3+MgO) as additives. The Mg-doping sample forms a more uniform and regular microstructure (\u223c10 \u03bcm) than that of the Al-doping sample(5\u201310 \u03bcm), while both additives had marked effects on the growth of rod-like \u03b2-Si3N4 crystals compared with those without additives, for the viscosity of Mg-containing liquid phase is lower than that of Al-containing liquid phase.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "This", "start": 0, "end": 4, "annotation": null}, {"text": "paper", "start": 5, "end": 10, "annotation": null}, {"text": "presents", "start": 11, "end": 19, "annotation": null}, {"text": "the", "start": 20, "end": 23, "annotation": null}, {"text": "results", "start": 24, "end": 31, "annotation": null}, {"text": "of", "start": 32, "end": 34, "annotation": null}, {"text": "synthesizing", "start": 35, "end": 47, "annotation": null}, {"text": "rod", "start": 48, "end": 51, "annotation": null}, {"text": "-", "start": 51, "end": 52, "annotation": null}, {"text": "like", "start": 52, "end": 56, "annotation": null}, {"text": "\u03b2-Si3N4", "start": 57, "end": 64, "annotation": "BASEMAT"}, {"text": "crystals", "start": 65, "end": 73, "annotation": null}, {"text": "by", "start": 74, "end": 76, "annotation": null}, {"text": "combustion", "start": 77, "end": 87, "annotation": null}, {"text": "synthesis", "start": 88, "end": 97, "annotation": null}, {"text": "with", "start": 98, "end": 102, "annotation": null}, {"text": "(", "start": 103, "end": 104, "annotation": null}, {"text": "Y2O3+Al2O3", "start": 104, "end": 114, "annotation": "DOPANT"}, {"text": ")", "start": 114, "end": 115, "annotation": null}, {"text": "or", "start": 116, "end": 118, "annotation": null}, {"text": "(", "start": 119, "end": 120, "annotation": null}, {"text": "Y2O3+MgO", "start": 120, "end": 128, "annotation": "DOPANT"}, {"text": ")", "start": 128, "end": 129, "annotation": null}, {"text": "as", "start": 130, "end": 132, "annotation": null}, {"text": "additives", "start": 133, "end": 142, "annotation": null}, {"text": ".", "start": 142, "end": 143, "annotation": null}], [{"text": "The", "start": 144, "end": 147, "annotation": null}, {"text": "Mg", "start": 148, "end": 150, "annotation": "DOPANT"}, {"text": "-", "start": 150, "end": 151, "annotation": null}, {"text": "doping", "start": 151, "end": 157, "annotation": null}, {"text": "sample", "start": 158, "end": 164, "annotation": "BASEMAT"}, {"text": "forms", "start": 165, "end": 170, "annotation": null}, {"text": "a", "start": 171, "end": 172, "annotation": null}, {"text": "more", "start": 173, "end": 177, "annotation": null}, {"text": "uniform", "start": 178, "end": 185, "annotation": null}, {"text": "and", "start": 186, "end": 189, "annotation": null}, {"text": "regular", "start": 190, "end": 197, "annotation": null}, {"text": "microstructure", "start": 198, "end": 212, "annotation": null}, {"text": "(", "start": 213, "end": 214, "annotation": null}, {"text": "\u223c", "start": 214, "end": 215, "annotation": null}, {"text": "10", "start": 215, "end": 217, "annotation": null}, {"text": "\u03bcm", "start": 218, "end": 220, "annotation": null}, {"text": ")", "start": 220, "end": 221, "annotation": null}, {"text": "than", "start": 222, "end": 226, "annotation": null}, {"text": "that", "start": 227, "end": 231, "annotation": null}, {"text": "of", "start": 232, "end": 234, "annotation": null}, {"text": "the", "start": 235, "end": 238, "annotation": null}, {"text": "Al", "start": 239, "end": 241, "annotation": "DOPANT"}, {"text": "-", "start": 241, "end": 242, "annotation": null}, {"text": "doping", "start": 242, "end": 248, "annotation": null}, {"text": "sample(5", "start": 249, "end": 257, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 257, "end": 258, "annotation": null}, {"text": "10", "start": 258, "end": 260, "annotation": null}, {"text": "\u03bcm", "start": 261, "end": 263, "annotation": null}, {"text": ")", "start": 263, "end": 264, "annotation": null}, {"text": ",", "start": 264, "end": 265, "annotation": null}, {"text": "while", "start": 266, "end": 271, "annotation": null}, {"text": "both", "start": 272, "end": 276, "annotation": null}, {"text": "additives", "start": 277, "end": 286, "annotation": null}, {"text": "had", "start": 287, "end": 290, "annotation": null}, {"text": "marked", "start": 291, "end": 297, "annotation": null}, {"text": "effects", "start": 298, "end": 305, "annotation": null}, {"text": "on", "start": 306, "end": 308, "annotation": null}, {"text": "the", "start": 309, "end": 312, "annotation": null}, {"text": "growth", "start": 313, "end": 319, "annotation": null}, {"text": "of", "start": 320, "end": 322, "annotation": null}, {"text": "rod", "start": 323, "end": 326, "annotation": null}, {"text": "-", "start": 326, "end": 327, "annotation": null}, {"text": "like", "start": 327, "end": 331, "annotation": null}, {"text": "\u03b2-Si3N4", "start": 332, "end": 339, "annotation": "BASEMAT"}, {"text": "crystals", "start": 340, "end": 348, "annotation": null}, {"text": "compared", "start": 349, "end": 357, "annotation": null}, {"text": "with", "start": 358, "end": 362, "annotation": null}, {"text": "those", "start": 363, "end": 368, "annotation": null}, {"text": "without", "start": 369, "end": 376, "annotation": null}, {"text": "additives", "start": 377, "end": 386, "annotation": null}, {"text": ",", "start": 386, "end": 387, "annotation": null}, {"text": "for", "start": 388, "end": 391, "annotation": null}, {"text": "the", "start": 392, "end": 395, "annotation": null}, {"text": "viscosity", "start": 396, "end": 405, "annotation": null}, {"text": "of", "start": 406, "end": 408, "annotation": null}, {"text": "Mg", "start": 409, "end": 411, "annotation": "DOPANT"}, {"text": "-", "start": 411, "end": 412, "annotation": null}, {"text": "containing", "start": 412, "end": 422, "annotation": null}, {"text": "liquid", "start": 423, "end": 429, "annotation": null}, {"text": "phase", "start": 430, "end": 435, "annotation": null}, {"text": "is", "start": 436, "end": 438, "annotation": null}, {"text": "lower", "start": 439, "end": 444, "annotation": null}, {"text": "than", "start": 445, "end": 449, "annotation": null}, {"text": "that", "start": 450, "end": 454, "annotation": null}, {"text": "of", "start": 455, "end": 457, "annotation": null}, {"text": "Al", "start": 458, "end": 460, "annotation": "DOPANT"}, {"text": "-", "start": 460, "end": 461, "annotation": null}, {"text": "containing", "start": 461, "end": 471, "annotation": null}, {"text": "liquid", "start": 472, "end": 478, "annotation": null}, {"text": "phase", "start": 479, "end": 484, "annotation": null}, {"text": ".", "start": 484, "end": 485, "annotation": null}]]} +{"remark": "doping_annt2", "text": "This paper presents the results of synthesizing rod-like \u03b2-Si3N4 crystals by combustion synthesis with (Y2O3+Al2O3) or (Y2O3+MgO) as additives. The Mg-doping sample forms a more uniform and regular microstructure (\u223c10 \u03bcm) than that of the Al-doping sample(5\u201310 \u03bcm), while both additives had marked effects on the growth of rod-like \u03b2-Si3N4 crystals compared with those without additives, for the viscosity of Mg-containing liquid phase is lower than that of Al-containing liquid phase.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "This", "start": 0, "end": 4, "annotation": null}, {"text": "paper", "start": 5, "end": 10, "annotation": null}, {"text": "presents", "start": 11, "end": 19, "annotation": null}, {"text": "the", "start": 20, "end": 23, "annotation": null}, {"text": "results", "start": 24, "end": 31, "annotation": null}, {"text": "of", "start": 32, "end": 34, "annotation": null}, {"text": "synthesizing", "start": 35, "end": 47, "annotation": null}, {"text": "rod", "start": 48, "end": 51, "annotation": null}, {"text": "-", "start": 51, "end": 52, "annotation": null}, {"text": "like", "start": 52, "end": 56, "annotation": null}, {"text": "\u03b2-Si3N4", "start": 57, "end": 64, "annotation": "BASEMAT"}, {"text": "crystals", "start": 65, "end": 73, "annotation": null}, {"text": "by", "start": 74, "end": 76, "annotation": null}, {"text": "combustion", "start": 77, "end": 87, "annotation": null}, {"text": "synthesis", "start": 88, "end": 97, "annotation": null}, {"text": "with", "start": 98, "end": 102, "annotation": null}, {"text": "(", "start": 103, "end": 104, "annotation": null}, {"text": "Y2O3+Al2O3", "start": 104, "end": 114, "annotation": "DOPANT"}, {"text": ")", "start": 114, "end": 115, "annotation": null}, {"text": "or", "start": 116, "end": 118, "annotation": null}, {"text": "(", "start": 119, "end": 120, "annotation": null}, {"text": "Y2O3+MgO", "start": 120, "end": 128, "annotation": "DOPANT"}, {"text": ")", "start": 128, "end": 129, "annotation": null}, {"text": "as", "start": 130, "end": 132, "annotation": null}, {"text": "additives", "start": 133, "end": 142, "annotation": null}, {"text": ".", "start": 142, "end": 143, "annotation": null}], [{"text": "The", "start": 144, "end": 147, "annotation": null}, {"text": "Mg", "start": 148, "end": 150, "annotation": "DOPANT"}, {"text": "-", "start": 150, "end": 151, "annotation": null}, {"text": "doping", "start": 151, "end": 157, "annotation": null}, {"text": "sample", "start": 158, "end": 164, "annotation": "BASEMAT"}, {"text": "forms", "start": 165, "end": 170, "annotation": null}, {"text": "a", "start": 171, "end": 172, "annotation": null}, {"text": "more", "start": 173, "end": 177, "annotation": null}, {"text": "uniform", "start": 178, "end": 185, "annotation": null}, {"text": "and", "start": 186, "end": 189, "annotation": null}, {"text": "regular", "start": 190, "end": 197, "annotation": null}, {"text": "microstructure", "start": 198, "end": 212, "annotation": null}, {"text": "(", "start": 213, "end": 214, "annotation": null}, {"text": "\u223c", "start": 214, "end": 215, "annotation": null}, {"text": "10", "start": 215, "end": 217, "annotation": null}, {"text": "\u03bcm", "start": 218, "end": 220, "annotation": null}, {"text": ")", "start": 220, "end": 221, "annotation": null}, {"text": "than", "start": 222, "end": 226, "annotation": null}, {"text": "that", "start": 227, "end": 231, "annotation": null}, {"text": "of", "start": 232, "end": 234, "annotation": null}, {"text": "the", "start": 235, "end": 238, "annotation": null}, {"text": "Al", "start": 239, "end": 241, "annotation": "DOPANT"}, {"text": "-", "start": 241, "end": 242, "annotation": null}, {"text": "doping", "start": 242, "end": 248, "annotation": null}, {"text": "sample(5", "start": 249, "end": 257, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 257, "end": 258, "annotation": null}, {"text": "10", "start": 258, "end": 260, "annotation": null}, {"text": "\u03bcm", "start": 261, "end": 263, "annotation": null}, {"text": ")", "start": 263, "end": 264, "annotation": null}, {"text": ",", "start": 264, "end": 265, "annotation": null}, {"text": "while", "start": 266, "end": 271, "annotation": null}, {"text": "both", "start": 272, "end": 276, "annotation": null}, {"text": "additives", "start": 277, "end": 286, "annotation": null}, {"text": "had", "start": 287, "end": 290, "annotation": null}, {"text": "marked", "start": 291, "end": 297, "annotation": null}, {"text": "effects", "start": 298, "end": 305, "annotation": null}, {"text": "on", "start": 306, "end": 308, "annotation": null}, {"text": "the", "start": 309, "end": 312, "annotation": null}, {"text": "growth", "start": 313, "end": 319, "annotation": null}, {"text": "of", "start": 320, "end": 322, "annotation": null}, {"text": "rod", "start": 323, "end": 326, "annotation": null}, {"text": "-", "start": 326, "end": 327, "annotation": null}, {"text": "like", "start": 327, "end": 331, "annotation": null}, {"text": "\u03b2-Si3N4", "start": 332, "end": 339, "annotation": "BASEMAT"}, {"text": "crystals", "start": 340, "end": 348, "annotation": null}, {"text": "compared", "start": 349, "end": 357, "annotation": null}, {"text": "with", "start": 358, "end": 362, "annotation": null}, {"text": "those", "start": 363, "end": 368, "annotation": null}, {"text": "without", "start": 369, "end": 376, "annotation": null}, {"text": "additives", "start": 377, "end": 386, "annotation": null}, {"text": ",", "start": 386, "end": 387, "annotation": null}, {"text": "for", "start": 388, "end": 391, "annotation": null}, {"text": "the", "start": 392, "end": 395, "annotation": null}, {"text": "viscosity", "start": 396, "end": 405, "annotation": null}, {"text": "of", "start": 406, "end": 408, "annotation": null}, {"text": "Mg", "start": 409, "end": 411, "annotation": "DOPANT"}, {"text": "-", "start": 411, "end": 412, "annotation": null}, {"text": "containing", "start": 412, "end": 422, "annotation": null}, {"text": "liquid", "start": 423, "end": 429, "annotation": null}, {"text": "phase", "start": 430, "end": 435, "annotation": null}, {"text": "is", "start": 436, "end": 438, "annotation": null}, {"text": "lower", "start": 439, "end": 444, "annotation": null}, {"text": "than", "start": 445, "end": 449, "annotation": null}, {"text": "that", "start": 450, "end": 454, "annotation": null}, {"text": "of", "start": 455, "end": 457, "annotation": null}, {"text": "Al", "start": 458, "end": 460, "annotation": "DOPANT"}, {"text": "-", "start": 460, "end": 461, "annotation": null}, {"text": "containing", "start": 461, "end": 471, "annotation": null}, {"text": "liquid", "start": 472, "end": 478, "annotation": null}, {"text": "phase", "start": 479, "end": 484, "annotation": null}, {"text": ".", "start": 484, "end": 485, "annotation": null}]], "meta": {"doi": "10.1016/S0272-8842(03)00067-1"}} {"text": "In this paper, we report results concerning tunable light emission and color temperature in cerium-doped low-silica-calcium-alumino-silicate (LSCAS) glass for smart white-light devices. Spectroscopic results, analyzed using the CIE 1931 x\u2013y chromatic diagram, show that this glass presents two broad emission bands centered at 475 and 540nm, whose intensities can be tuned by the excitation wavelength. Moreover, the same emission can be achieved from a color temperature range from 3200 to 10,000K, with a color-rendering index (CRI) of around 75% obtained by changing the optical path length of the sample. Our new phosphor LSCAS glass, which is a unique system that exhibits tunable yellow emission, combines all qualities for white-light devices.", "meta": {"doi": "10.1016/j.jallcom.2011.08.053"}, "_input_hash": 828589338, "_task_hash": -471027391, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "paper", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": ",", "start": 14, "end": 15, "id": 3, "annotation": null}, {"text": "we", "start": 16, "end": 18, "id": 4, "annotation": null}, {"text": "report", "start": 19, "end": 25, "id": 5, "annotation": null}, {"text": "results", "start": 26, "end": 33, "id": 6, "annotation": null}, {"text": "concerning", "start": 34, "end": 44, "id": 7, "annotation": null}, {"text": "tunable", "start": 45, "end": 52, "id": 8, "annotation": null}, {"text": "light", "start": 53, "end": 58, "id": 9, "annotation": null}, {"text": "emission", "start": 59, "end": 67, "id": 10, "annotation": null}, {"text": "and", "start": 68, "end": 71, "id": 11, "annotation": null}, {"text": "color", "start": 72, "end": 77, "id": 12, "annotation": null}, {"text": "temperature", "start": 78, "end": 89, "id": 13, "annotation": null}, {"text": "in", "start": 90, "end": 92, "id": 14, "annotation": null}, {"text": "cerium", "start": 93, "end": 99, "id": 15, "annotation": "DOPANT"}, {"text": "-", "start": 100, "end": 101, "id": 16, "annotation": null}, {"text": "doped", "start": 102, "end": 107, "id": 17, "annotation": null}, {"text": "low", "start": 108, "end": 111, "id": 18, "annotation": "BASEMAT"}, {"text": "-", "start": 112, "end": 113, "id": 19, "annotation": null}, {"text": "silica", "start": 114, "end": 120, "id": 20, "annotation": null}, {"text": "-", "start": 121, "end": 122, "id": 21, "annotation": null}, {"text": "calcium", "start": 123, "end": 130, "id": 22, "annotation": null}, {"text": "-", "start": 131, "end": 132, "id": 23, "annotation": null}, {"text": "alumino", "start": 133, "end": 140, "id": 24, "annotation": null}, {"text": "-", "start": 141, "end": 142, "id": 25, "annotation": null}, {"text": "silicate", "start": 143, "end": 151, "id": 26, "annotation": "BASEMAT"}, {"text": "(", "start": 152, "end": 153, "id": 27, "annotation": null}, {"text": "LSCAS", "start": 154, "end": 159, "id": 28, "annotation": "BASEMAT"}, {"text": ")", "start": 160, "end": 161, "id": 29, "annotation": null}, {"text": "glass", "start": 162, "end": 167, "id": 30, "annotation": null}, {"text": "for", "start": 168, "end": 171, "id": 31, "annotation": null}, {"text": "smart", "start": 172, "end": 177, "id": 32, "annotation": null}, {"text": "white", "start": 178, "end": 183, "id": 33, "annotation": null}, {"text": "-", "start": 184, "end": 185, "id": 34, "annotation": null}, {"text": "light", "start": 186, "end": 191, "id": 35, "annotation": null}, {"text": "devices", "start": 192, "end": 199, "id": 36, "annotation": null}, {"text": ".", "start": 200, "end": 201, "id": 37, "annotation": null}], [{"text": "Spectroscopic", "start": 202, "end": 215, "id": 38, "annotation": null}, {"text": "results", "start": 216, "end": 223, "id": 39, "annotation": null}, {"text": ",", "start": 224, "end": 225, "id": 40, "annotation": null}, {"text": "analyzed", "start": 226, "end": 234, "id": 41, "annotation": null}, {"text": "using", "start": 235, "end": 240, "id": 42, "annotation": null}, {"text": "the", "start": 241, "end": 244, "id": 43, "annotation": null}, {"text": "CIE", "start": 245, "end": 248, "id": 44, "annotation": null}, {"text": "1931", "start": 249, "end": 253, "id": 45, "annotation": null}, {"text": "x", "start": 254, "end": 255, "id": 46, "annotation": null}, {"text": "\u2013", "start": 256, "end": 257, "id": 47, "annotation": null}, {"text": "y", "start": 258, "end": 259, "id": 48, "annotation": null}, {"text": "chromatic", "start": 260, "end": 269, "id": 49, "annotation": null}, {"text": "diagram", "start": 270, "end": 277, "id": 50, "annotation": null}, {"text": ",", "start": 278, "end": 279, "id": 51, "annotation": null}, {"text": "show", "start": 280, "end": 284, "id": 52, "annotation": null}, {"text": "that", "start": 285, "end": 289, "id": 53, "annotation": null}, {"text": "this", "start": 290, "end": 294, "id": 54, "annotation": null}, {"text": "glass", "start": 295, "end": 300, "id": 55, "annotation": null}, {"text": "presents", "start": 301, "end": 309, "id": 56, "annotation": null}, {"text": "two", "start": 310, "end": 313, "id": 57, "annotation": null}, {"text": "broad", "start": 314, "end": 319, "id": 58, "annotation": null}, {"text": "emission", "start": 320, "end": 328, "id": 59, "annotation": null}, {"text": "bands", "start": 329, "end": 334, "id": 60, "annotation": null}, {"text": "centered", "start": 335, "end": 343, "id": 61, "annotation": null}, {"text": "at", "start": 344, "end": 346, "id": 62, "annotation": null}, {"text": "475", "start": 347, "end": 350, "id": 63, "annotation": null}, {"text": "and", "start": 351, "end": 354, "id": 64, "annotation": null}, {"text": "540", "start": 355, "end": 358, "id": 65, "annotation": null}, {"text": "nm", "start": 359, "end": 361, "id": 66, "annotation": null}, {"text": ",", "start": 362, "end": 363, "id": 67, "annotation": null}, {"text": "whose", "start": 364, "end": 369, "id": 68, "annotation": null}, {"text": "intensities", "start": 370, "end": 381, "id": 69, "annotation": null}, {"text": "can", "start": 382, "end": 385, "id": 70, "annotation": null}, {"text": "be", "start": 386, "end": 388, "id": 71, "annotation": null}, {"text": "tuned", "start": 389, "end": 394, "id": 72, "annotation": null}, {"text": "by", "start": 395, "end": 397, "id": 73, "annotation": null}, {"text": "the", "start": 398, "end": 401, "id": 74, "annotation": null}, {"text": "excitation", "start": 402, "end": 412, "id": 75, "annotation": null}, {"text": "wavelength", "start": 413, "end": 423, "id": 76, "annotation": null}, {"text": ".", "start": 424, "end": 425, "id": 77, "annotation": null}], [{"text": "Moreover", "start": 426, "end": 434, "id": 78, "annotation": null}, {"text": ",", "start": 435, "end": 436, "id": 79, "annotation": null}, {"text": "the", "start": 437, "end": 440, "id": 80, "annotation": null}, {"text": "same", "start": 441, "end": 445, "id": 81, "annotation": null}, {"text": "emission", "start": 446, "end": 454, "id": 82, "annotation": null}, {"text": "can", "start": 455, "end": 458, "id": 83, "annotation": null}, {"text": "be", "start": 459, "end": 461, "id": 84, "annotation": null}, {"text": "achieved", "start": 462, "end": 470, "id": 85, "annotation": null}, {"text": "from", "start": 471, "end": 475, "id": 86, "annotation": null}, {"text": "a", "start": 476, "end": 477, "id": 87, "annotation": null}, {"text": "color", "start": 478, "end": 483, "id": 88, "annotation": null}, {"text": "temperature", "start": 484, "end": 495, "id": 89, "annotation": null}, {"text": "range", "start": 496, "end": 501, "id": 90, "annotation": null}, {"text": "from", "start": 502, "end": 506, "id": 91, "annotation": null}, {"text": "3200", "start": 507, "end": 511, "id": 92, "annotation": null}, {"text": "to", "start": 512, "end": 514, "id": 93, "annotation": null}, {"text": "10,000", "start": 515, "end": 521, "id": 94, "annotation": null}, {"text": "K", "start": 522, "end": 523, "id": 95, "annotation": null}, {"text": ",", "start": 524, "end": 525, "id": 96, "annotation": null}, {"text": "with", "start": 526, "end": 530, "id": 97, "annotation": null}, {"text": "a", "start": 531, "end": 532, "id": 98, "annotation": null}, {"text": "color", "start": 533, "end": 538, "id": 99, "annotation": null}, {"text": "-", "start": 539, "end": 540, "id": 100, "annotation": null}, {"text": "rendering", "start": 541, "end": 550, "id": 101, "annotation": null}, {"text": "index", "start": 551, "end": 556, "id": 102, "annotation": null}, {"text": "(", "start": 557, "end": 558, "id": 103, "annotation": null}, {"text": "CRI", "start": 559, "end": 562, "id": 104, "annotation": null}, {"text": ")", "start": 563, "end": 564, "id": 105, "annotation": null}, {"text": "of", "start": 565, "end": 567, "id": 106, "annotation": null}, {"text": "around", "start": 568, "end": 574, "id": 107, "annotation": null}, {"text": "75", "start": 575, "end": 577, "id": 108, "annotation": null}, {"text": "%", "start": 578, "end": 579, "id": 109, "annotation": null}, {"text": "obtained", "start": 580, "end": 588, "id": 110, "annotation": null}, {"text": "by", "start": 589, "end": 591, "id": 111, "annotation": null}, {"text": "changing", "start": 592, "end": 600, "id": 112, "annotation": null}, {"text": "the", "start": 601, "end": 604, "id": 113, "annotation": null}, {"text": "optical", "start": 605, "end": 612, "id": 114, "annotation": null}, {"text": "path", "start": 613, "end": 617, "id": 115, "annotation": null}, {"text": "length", "start": 618, "end": 624, "id": 116, "annotation": null}, {"text": "of", "start": 625, "end": 627, "id": 117, "annotation": null}, {"text": "the", "start": 628, "end": 631, "id": 118, "annotation": null}, {"text": "sample", "start": 632, "end": 638, "id": 119, "annotation": null}, {"text": ".", "start": 639, "end": 640, "id": 120, "annotation": null}], [{"text": "Our", "start": 641, "end": 644, "id": 121, "annotation": null}, {"text": "new", "start": 645, "end": 648, "id": 122, "annotation": null}, {"text": "phosphor", "start": 649, "end": 657, "id": 123, "annotation": null}, {"text": "LSCAS", "start": 658, "end": 663, "id": 124, "annotation": null}, {"text": "glass", "start": 664, "end": 669, "id": 125, "annotation": null}, {"text": ",", "start": 670, "end": 671, "id": 126, "annotation": null}, {"text": "which", "start": 672, "end": 677, "id": 127, "annotation": null}, {"text": "is", "start": 678, "end": 680, "id": 128, "annotation": null}, {"text": "a", "start": 681, "end": 682, "id": 129, "annotation": null}, {"text": "unique", "start": 683, "end": 689, "id": 130, "annotation": null}, {"text": "system", "start": 690, "end": 696, "id": 131, "annotation": null}, {"text": "that", "start": 697, "end": 701, "id": 132, "annotation": null}, {"text": "exhibits", "start": 702, "end": 710, "id": 133, "annotation": null}, {"text": "tunable", "start": 711, "end": 718, "id": 134, "annotation": null}, {"text": "yellow", "start": 719, "end": 725, "id": 135, "annotation": null}, {"text": "emission", "start": 726, "end": 734, "id": 136, "annotation": null}, {"text": ",", "start": 735, "end": 736, "id": 137, "annotation": null}, {"text": "combines", "start": 737, "end": 745, "id": 138, "annotation": null}, {"text": "all", "start": 746, "end": 749, "id": 139, "annotation": null}, {"text": "qualities", "start": 750, "end": 759, "id": 140, "annotation": null}, {"text": "for", "start": 760, "end": 763, "id": 141, "annotation": null}, {"text": "white", "start": 764, "end": 769, "id": 142, "annotation": null}, {"text": "-", "start": 770, "end": 771, "id": 143, "annotation": null}, {"text": "light", "start": 772, "end": 777, "id": 144, "annotation": null}, {"text": "devices", "start": 778, "end": 785, "id": 145, "annotation": null}, {"text": ".", "start": 786, "end": 787, "id": 146, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "We analyze the effect of the laser annealing on the crystallization of Er3+ doped amorphous Al2O3 thin films deposited on the silica-on-silicon substrate. These thin films were prepared by the microwave electron cyclotron resonance plasma source and were annealed by pulse CO2 laser. The Gauss intensity distribution of laser beam was mended at 3\u00d7 f position in the collimation system. Strong crystallization occurred in Al2O3 thin films and liquid phase crystallization was proposed to appear with the increase of laser powers. Photoluminescence intensity enhancement by a factor of 47 around 1.53\u03bcm has been realized by laser annealing process and Raman spectra study has suggested that Er3+ emission centers excited by Si nanocrystal (Si-nc) were formed in the Al2O3\u2013SiO2 materials. The dual wavelength energy transfer mechanism between 800nm and 980nm is proposed in Er-doped Si-nc in Al2O3\u2013SiO2 thin films.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "analyze", "start": 3, "end": 10, "annotation": null}, {"text": "the", "start": 11, "end": 14, "annotation": null}, {"text": "effect", "start": 15, "end": 21, "annotation": null}, {"text": "of", "start": 22, "end": 24, "annotation": null}, {"text": "the", "start": 25, "end": 28, "annotation": null}, {"text": "laser", "start": 29, "end": 34, "annotation": null}, {"text": "annealing", "start": 35, "end": 44, "annotation": null}, {"text": "on", "start": 45, "end": 47, "annotation": null}, {"text": "the", "start": 48, "end": 51, "annotation": null}, {"text": "crystallization", "start": 52, "end": 67, "annotation": null}, {"text": "of", "start": 68, "end": 70, "annotation": null}, {"text": "Er3+", "start": 71, "end": 75, "annotation": "DOPANT"}, {"text": "doped", "start": 76, "end": 81, "annotation": null}, {"text": "amorphous", "start": 82, "end": 91, "annotation": null}, {"text": "Al2O3", "start": 92, "end": 97, "annotation": "BASEMAT"}, {"text": "thin", "start": 98, "end": 102, "annotation": null}, {"text": "films", "start": 103, "end": 108, "annotation": null}, {"text": "deposited", "start": 109, "end": 118, "annotation": null}, {"text": "on", "start": 119, "end": 121, "annotation": null}, {"text": "the", "start": 122, "end": 125, "annotation": null}, {"text": "silica", "start": 126, "end": 132, "annotation": null}, {"text": "-", "start": 132, "end": 133, "annotation": null}, {"text": "on", "start": 133, "end": 135, "annotation": null}, {"text": "-", "start": 135, "end": 136, "annotation": null}, {"text": "silicon", "start": 136, "end": 143, "annotation": null}, {"text": "substrate", "start": 144, "end": 153, "annotation": null}, {"text": ".", "start": 153, "end": 154, "annotation": null}], [{"text": "These", "start": 155, "end": 160, "annotation": null}, {"text": "thin", "start": 161, "end": 165, "annotation": null}, {"text": "films", "start": 166, "end": 171, "annotation": null}, {"text": "were", "start": 172, "end": 176, "annotation": null}, {"text": "prepared", "start": 177, "end": 185, "annotation": null}, {"text": "by", "start": 186, "end": 188, "annotation": null}, {"text": "the", "start": 189, "end": 192, "annotation": null}, {"text": "microwave", "start": 193, "end": 202, "annotation": null}, {"text": "electron", "start": 203, "end": 211, "annotation": null}, {"text": "cyclotron", "start": 212, "end": 221, "annotation": null}, {"text": "resonance", "start": 222, "end": 231, "annotation": null}, {"text": "plasma", "start": 232, "end": 238, "annotation": null}, {"text": "source", "start": 239, "end": 245, "annotation": null}, {"text": "and", "start": 246, "end": 249, "annotation": null}, {"text": "were", "start": 250, "end": 254, "annotation": null}, {"text": "annealed", "start": 255, "end": 263, "annotation": null}, {"text": "by", "start": 264, "end": 266, "annotation": null}, {"text": "pulse", "start": 267, "end": 272, "annotation": null}, {"text": "CO2", "start": 273, "end": 276, "annotation": null}, {"text": "laser", "start": 277, "end": 282, "annotation": null}, {"text": ".", "start": 282, "end": 283, "annotation": null}], [{"text": "The", "start": 284, "end": 287, "annotation": null}, {"text": "Gauss", "start": 288, "end": 293, "annotation": null}, {"text": "intensity", "start": 294, "end": 303, "annotation": null}, {"text": "distribution", "start": 304, "end": 316, "annotation": null}, {"text": "of", "start": 317, "end": 319, "annotation": null}, {"text": "laser", "start": 320, "end": 325, "annotation": null}, {"text": "beam", "start": 326, "end": 330, "annotation": null}, {"text": "was", "start": 331, "end": 334, "annotation": null}, {"text": "mended", "start": 335, "end": 341, "annotation": null}, {"text": "at", "start": 342, "end": 344, "annotation": null}, {"text": "3", "start": 345, "end": 346, "annotation": null}, {"text": "\u00d7", "start": 346, "end": 347, "annotation": null}, {"text": "f", "start": 348, "end": 349, "annotation": null}, {"text": "position", "start": 350, "end": 358, "annotation": null}, {"text": "in", "start": 359, "end": 361, "annotation": null}, {"text": "the", "start": 362, "end": 365, "annotation": null}, {"text": "collimation", "start": 366, "end": 377, "annotation": null}, {"text": "system", "start": 378, "end": 384, "annotation": null}, {"text": ".", "start": 384, "end": 385, "annotation": null}], [{"text": "Strong", "start": 386, "end": 392, "annotation": null}, {"text": "crystallization", "start": 393, "end": 408, "annotation": null}, {"text": "occurred", "start": 409, "end": 417, "annotation": null}, {"text": "in", "start": 418, "end": 420, "annotation": null}, {"text": "Al2O3", "start": 421, "end": 426, "annotation": "BASEMAT"}, {"text": "thin", "start": 427, "end": 431, "annotation": null}, {"text": "films", "start": 432, "end": 437, "annotation": null}, {"text": "and", "start": 438, "end": 441, "annotation": null}, {"text": "liquid", "start": 442, "end": 448, "annotation": null}, {"text": "phase", "start": 449, "end": 454, "annotation": null}, {"text": "crystallization", "start": 455, "end": 470, "annotation": null}, {"text": "was", "start": 471, "end": 474, "annotation": null}, {"text": "proposed", "start": 475, "end": 483, "annotation": null}, {"text": "to", "start": 484, "end": 486, "annotation": null}, {"text": "appear", "start": 487, "end": 493, "annotation": null}, {"text": "with", "start": 494, "end": 498, "annotation": null}, {"text": "the", "start": 499, "end": 502, "annotation": null}, {"text": "increase", "start": 503, "end": 511, "annotation": null}, {"text": "of", "start": 512, "end": 514, "annotation": null}, {"text": "laser", "start": 515, "end": 520, "annotation": null}, {"text": "powers", "start": 521, "end": 527, "annotation": null}, {"text": ".", "start": 527, "end": 528, "annotation": null}], [{"text": "Photoluminescence", "start": 529, "end": 546, "annotation": null}, {"text": "intensity", "start": 547, "end": 556, "annotation": null}, {"text": "enhancement", "start": 557, "end": 568, "annotation": null}, {"text": "by", "start": 569, "end": 571, "annotation": null}, {"text": "a", "start": 572, "end": 573, "annotation": null}, {"text": "factor", "start": 574, "end": 580, "annotation": null}, {"text": "of", "start": 581, "end": 583, "annotation": null}, {"text": "47", "start": 584, "end": 586, "annotation": null}, {"text": "around", "start": 587, "end": 593, "annotation": null}, {"text": "1.53", "start": 594, "end": 598, "annotation": null}, {"text": "\u03bcm", "start": 598, "end": 600, "annotation": null}, {"text": "has", "start": 601, "end": 604, "annotation": null}, {"text": "been", "start": 605, "end": 609, "annotation": null}, {"text": "realized", "start": 610, "end": 618, "annotation": null}, {"text": "by", "start": 619, "end": 621, "annotation": null}, {"text": "laser", "start": 622, "end": 627, "annotation": null}, {"text": "annealing", "start": 628, "end": 637, "annotation": null}, {"text": "process", "start": 638, "end": 645, "annotation": null}, {"text": "and", "start": 646, "end": 649, "annotation": null}, {"text": "Raman", "start": 650, "end": 655, "annotation": null}, {"text": "spectra", "start": 656, "end": 663, "annotation": null}, {"text": "study", "start": 664, "end": 669, "annotation": null}, {"text": "has", "start": 670, "end": 673, "annotation": null}, {"text": "suggested", "start": 674, "end": 683, "annotation": null}, {"text": "that", "start": 684, "end": 688, "annotation": null}, {"text": "Er3+", "start": 689, "end": 693, "annotation": "DOPANT"}, {"text": "emission", "start": 694, "end": 702, "annotation": null}, {"text": "centers", "start": 703, "end": 710, "annotation": null}, {"text": "excited", "start": 711, "end": 718, "annotation": null}, {"text": "by", "start": 719, "end": 721, "annotation": null}, {"text": "Si", "start": 722, "end": 724, "annotation": null}, {"text": "nanocrystal", "start": 725, "end": 736, "annotation": null}, {"text": "(", "start": 737, "end": 738, "annotation": null}, {"text": "Si-nc", "start": 738, "end": 743, "annotation": null}, {"text": ")", "start": 743, "end": 744, "annotation": null}, {"text": "were", "start": 745, "end": 749, "annotation": null}, {"text": "formed", "start": 750, "end": 756, "annotation": null}, {"text": "in", "start": 757, "end": 759, "annotation": null}, {"text": "the", "start": 760, "end": 763, "annotation": null}, {"text": "Al2O3", "start": 764, "end": 769, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 769, "end": 770, "annotation": null}, {"text": "SiO2", "start": 770, "end": 774, "annotation": "BASEMAT"}, {"text": "materials", "start": 775, "end": 784, "annotation": null}, {"text": ".", "start": 784, "end": 785, "annotation": null}], [{"text": "The", "start": 786, "end": 789, "annotation": null}, {"text": "dual", "start": 790, "end": 794, "annotation": null}, {"text": "wavelength", "start": 795, "end": 805, "annotation": null}, {"text": "energy", "start": 806, "end": 812, "annotation": null}, {"text": "transfer", "start": 813, "end": 821, "annotation": null}, {"text": "mechanism", "start": 822, "end": 831, "annotation": null}, {"text": "between", "start": 832, "end": 839, "annotation": null}, {"text": "800", "start": 840, "end": 843, "annotation": null}, {"text": "nm", "start": 843, "end": 845, "annotation": null}, {"text": "and", "start": 846, "end": 849, "annotation": null}, {"text": "980", "start": 850, "end": 853, "annotation": null}, {"text": "nm", "start": 853, "end": 855, "annotation": null}, {"text": "is", "start": 856, "end": 858, "annotation": null}, {"text": "proposed", "start": 859, "end": 867, "annotation": null}, {"text": "in", "start": 868, "end": 870, "annotation": null}, {"text": "Er", "start": 871, "end": 873, "annotation": "DOPANT"}, {"text": "-", "start": 873, "end": 874, "annotation": null}, {"text": "doped", "start": 874, "end": 879, "annotation": null}, {"text": "Si-nc", "start": 880, "end": 885, "annotation": "BASEMAT"}, {"text": "in", "start": 886, "end": 888, "annotation": null}, {"text": "Al2O3", "start": 889, "end": 894, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 894, "end": 895, "annotation": null}, {"text": "SiO2", "start": 895, "end": 899, "annotation": "BASEMAT"}, {"text": "thin", "start": 900, "end": 904, "annotation": null}, {"text": "films", "start": 905, "end": 910, "annotation": null}, {"text": ".", "start": 910, "end": 911, "annotation": null}]]} +{"remark": "doping_annt2", "text": "We analyze the effect of the laser annealing on the crystallization of Er3+ doped amorphous Al2O3 thin films deposited on the silica-on-silicon substrate. These thin films were prepared by the microwave electron cyclotron resonance plasma source and were annealed by pulse CO2 laser. The Gauss intensity distribution of laser beam was mended at 3\u00d7 f position in the collimation system. Strong crystallization occurred in Al2O3 thin films and liquid phase crystallization was proposed to appear with the increase of laser powers. Photoluminescence intensity enhancement by a factor of 47 around 1.53\u03bcm has been realized by laser annealing process and Raman spectra study has suggested that Er3+ emission centers excited by Si nanocrystal (Si-nc) were formed in the Al2O3\u2013SiO2 materials. The dual wavelength energy transfer mechanism between 800nm and 980nm is proposed in Er-doped Si-nc in Al2O3\u2013SiO2 thin films.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "analyze", "start": 3, "end": 10, "annotation": null}, {"text": "the", "start": 11, "end": 14, "annotation": null}, {"text": "effect", "start": 15, "end": 21, "annotation": null}, {"text": "of", "start": 22, "end": 24, "annotation": null}, {"text": "the", "start": 25, "end": 28, "annotation": null}, {"text": "laser", "start": 29, "end": 34, "annotation": null}, {"text": "annealing", "start": 35, "end": 44, "annotation": null}, {"text": "on", "start": 45, "end": 47, "annotation": null}, {"text": "the", "start": 48, "end": 51, "annotation": null}, {"text": "crystallization", "start": 52, "end": 67, "annotation": null}, {"text": "of", "start": 68, "end": 70, "annotation": null}, {"text": "Er3+", "start": 71, "end": 75, "annotation": "DOPANT"}, {"text": "doped", "start": 76, "end": 81, "annotation": null}, {"text": "amorphous", "start": 82, "end": 91, "annotation": null}, {"text": "Al2O3", "start": 92, "end": 97, "annotation": "BASEMAT"}, {"text": "thin", "start": 98, "end": 102, "annotation": null}, {"text": "films", "start": 103, "end": 108, "annotation": null}, {"text": "deposited", "start": 109, "end": 118, "annotation": null}, {"text": "on", "start": 119, "end": 121, "annotation": null}, {"text": "the", "start": 122, "end": 125, "annotation": null}, {"text": "silica", "start": 126, "end": 132, "annotation": null}, {"text": "-", "start": 132, "end": 133, "annotation": null}, {"text": "on", "start": 133, "end": 135, "annotation": null}, {"text": "-", "start": 135, "end": 136, "annotation": null}, {"text": "silicon", "start": 136, "end": 143, "annotation": null}, {"text": "substrate", "start": 144, "end": 153, "annotation": null}, {"text": ".", "start": 153, "end": 154, "annotation": null}], [{"text": "These", "start": 155, "end": 160, "annotation": null}, {"text": "thin", "start": 161, "end": 165, "annotation": null}, {"text": "films", "start": 166, "end": 171, "annotation": null}, {"text": "were", "start": 172, "end": 176, "annotation": null}, {"text": "prepared", "start": 177, "end": 185, "annotation": null}, {"text": "by", "start": 186, "end": 188, "annotation": null}, {"text": "the", "start": 189, "end": 192, "annotation": null}, {"text": "microwave", "start": 193, "end": 202, "annotation": null}, {"text": "electron", "start": 203, "end": 211, "annotation": null}, {"text": "cyclotron", "start": 212, "end": 221, "annotation": null}, {"text": "resonance", "start": 222, "end": 231, "annotation": null}, {"text": "plasma", "start": 232, "end": 238, "annotation": null}, {"text": "source", "start": 239, "end": 245, "annotation": null}, {"text": "and", "start": 246, "end": 249, "annotation": null}, {"text": "were", "start": 250, "end": 254, "annotation": null}, {"text": "annealed", "start": 255, "end": 263, "annotation": null}, {"text": "by", "start": 264, "end": 266, "annotation": null}, {"text": "pulse", "start": 267, "end": 272, "annotation": null}, {"text": "CO2", "start": 273, "end": 276, "annotation": null}, {"text": "laser", "start": 277, "end": 282, "annotation": null}, {"text": ".", "start": 282, "end": 283, "annotation": null}], [{"text": "The", "start": 284, "end": 287, "annotation": null}, {"text": "Gauss", "start": 288, "end": 293, "annotation": null}, {"text": "intensity", "start": 294, "end": 303, "annotation": null}, {"text": "distribution", "start": 304, "end": 316, "annotation": null}, {"text": "of", "start": 317, "end": 319, "annotation": null}, {"text": "laser", "start": 320, "end": 325, "annotation": null}, {"text": "beam", "start": 326, "end": 330, "annotation": null}, {"text": "was", "start": 331, "end": 334, "annotation": null}, {"text": "mended", "start": 335, "end": 341, "annotation": null}, {"text": "at", "start": 342, "end": 344, "annotation": null}, {"text": "3", "start": 345, "end": 346, "annotation": null}, {"text": "\u00d7", "start": 346, "end": 347, "annotation": null}, {"text": "f", "start": 348, "end": 349, "annotation": null}, {"text": "position", "start": 350, "end": 358, "annotation": null}, {"text": "in", "start": 359, "end": 361, "annotation": null}, {"text": "the", "start": 362, "end": 365, "annotation": null}, {"text": "collimation", "start": 366, "end": 377, "annotation": null}, {"text": "system", "start": 378, "end": 384, "annotation": null}, {"text": ".", "start": 384, "end": 385, "annotation": null}], [{"text": "Strong", "start": 386, "end": 392, "annotation": null}, {"text": "crystallization", "start": 393, "end": 408, "annotation": null}, {"text": "occurred", "start": 409, "end": 417, "annotation": null}, {"text": "in", "start": 418, "end": 420, "annotation": null}, {"text": "Al2O3", "start": 421, "end": 426, "annotation": "BASEMAT"}, {"text": "thin", "start": 427, "end": 431, "annotation": null}, {"text": "films", "start": 432, "end": 437, "annotation": null}, {"text": "and", "start": 438, "end": 441, "annotation": null}, {"text": "liquid", "start": 442, "end": 448, "annotation": null}, {"text": "phase", "start": 449, "end": 454, "annotation": null}, {"text": "crystallization", "start": 455, "end": 470, "annotation": null}, {"text": "was", "start": 471, "end": 474, "annotation": null}, {"text": "proposed", "start": 475, "end": 483, "annotation": null}, {"text": "to", "start": 484, "end": 486, "annotation": null}, {"text": "appear", "start": 487, "end": 493, "annotation": null}, {"text": "with", "start": 494, "end": 498, "annotation": null}, {"text": "the", "start": 499, "end": 502, "annotation": null}, {"text": "increase", "start": 503, "end": 511, "annotation": null}, {"text": "of", "start": 512, "end": 514, "annotation": null}, {"text": "laser", "start": 515, "end": 520, "annotation": null}, {"text": "powers", "start": 521, "end": 527, "annotation": null}, {"text": ".", "start": 527, "end": 528, "annotation": null}], [{"text": "Photoluminescence", "start": 529, "end": 546, "annotation": null}, {"text": "intensity", "start": 547, "end": 556, "annotation": null}, {"text": "enhancement", "start": 557, "end": 568, "annotation": null}, {"text": "by", "start": 569, "end": 571, "annotation": null}, {"text": "a", "start": 572, "end": 573, "annotation": null}, {"text": "factor", "start": 574, "end": 580, "annotation": null}, {"text": "of", "start": 581, "end": 583, "annotation": null}, {"text": "47", "start": 584, "end": 586, "annotation": null}, {"text": "around", "start": 587, "end": 593, "annotation": null}, {"text": "1.53", "start": 594, "end": 598, "annotation": null}, {"text": "\u03bcm", "start": 598, "end": 600, "annotation": null}, {"text": "has", "start": 601, "end": 604, "annotation": null}, {"text": "been", "start": 605, "end": 609, "annotation": null}, {"text": "realized", "start": 610, "end": 618, "annotation": null}, {"text": "by", "start": 619, "end": 621, "annotation": null}, {"text": "laser", "start": 622, "end": 627, "annotation": null}, {"text": "annealing", "start": 628, "end": 637, "annotation": null}, {"text": "process", "start": 638, "end": 645, "annotation": null}, {"text": "and", "start": 646, "end": 649, "annotation": null}, {"text": "Raman", "start": 650, "end": 655, "annotation": null}, {"text": "spectra", "start": 656, "end": 663, "annotation": null}, {"text": "study", "start": 664, "end": 669, "annotation": null}, {"text": "has", "start": 670, "end": 673, "annotation": null}, {"text": "suggested", "start": 674, "end": 683, "annotation": null}, {"text": "that", "start": 684, "end": 688, "annotation": null}, {"text": "Er3+", "start": 689, "end": 693, "annotation": "DOPANT"}, {"text": "emission", "start": 694, "end": 702, "annotation": null}, {"text": "centers", "start": 703, "end": 710, "annotation": null}, {"text": "excited", "start": 711, "end": 718, "annotation": null}, {"text": "by", "start": 719, "end": 721, "annotation": null}, {"text": "Si", "start": 722, "end": 724, "annotation": null}, {"text": "nanocrystal", "start": 725, "end": 736, "annotation": null}, {"text": "(", "start": 737, "end": 738, "annotation": null}, {"text": "Si-nc", "start": 738, "end": 743, "annotation": null}, {"text": ")", "start": 743, "end": 744, "annotation": null}, {"text": "were", "start": 745, "end": 749, "annotation": null}, {"text": "formed", "start": 750, "end": 756, "annotation": null}, {"text": "in", "start": 757, "end": 759, "annotation": null}, {"text": "the", "start": 760, "end": 763, "annotation": null}, {"text": "Al2O3", "start": 764, "end": 769, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 769, "end": 770, "annotation": null}, {"text": "SiO2", "start": 770, "end": 774, "annotation": "BASEMAT"}, {"text": "materials", "start": 775, "end": 784, "annotation": null}, {"text": ".", "start": 784, "end": 785, "annotation": null}], [{"text": "The", "start": 786, "end": 789, "annotation": null}, {"text": "dual", "start": 790, "end": 794, "annotation": null}, {"text": "wavelength", "start": 795, "end": 805, "annotation": null}, {"text": "energy", "start": 806, "end": 812, "annotation": null}, {"text": "transfer", "start": 813, "end": 821, "annotation": null}, {"text": "mechanism", "start": 822, "end": 831, "annotation": null}, {"text": "between", "start": 832, "end": 839, "annotation": null}, {"text": "800", "start": 840, "end": 843, "annotation": null}, {"text": "nm", "start": 843, "end": 845, "annotation": null}, {"text": "and", "start": 846, "end": 849, "annotation": null}, {"text": "980", "start": 850, "end": 853, "annotation": null}, {"text": "nm", "start": 853, "end": 855, "annotation": null}, {"text": "is", "start": 856, "end": 858, "annotation": null}, {"text": "proposed", "start": 859, "end": 867, "annotation": null}, {"text": "in", "start": 868, "end": 870, "annotation": null}, {"text": "Er", "start": 871, "end": 873, "annotation": "DOPANT"}, {"text": "-", "start": 873, "end": 874, "annotation": null}, {"text": "doped", "start": 874, "end": 879, "annotation": null}, {"text": "Si-nc", "start": 880, "end": 885, "annotation": "BASEMAT"}, {"text": "in", "start": 886, "end": 888, "annotation": null}, {"text": "Al2O3", "start": 889, "end": 894, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 894, "end": 895, "annotation": null}, {"text": "SiO2", "start": 895, "end": 899, "annotation": "BASEMAT"}, {"text": "thin", "start": 900, "end": 904, "annotation": null}, {"text": "films", "start": 905, "end": 910, "annotation": null}, {"text": ".", "start": 910, "end": 911, "annotation": null}]], "meta": {"doi": "10.1016/j.optcom.2006.09.036"}} {"text": "Properties of two luminescence centers, which are observed in anthracene-doped fluorene crystal as concentration increases, have been investigated to clarify their origin. Excitation spectra and concentration dependence of absorption spectra were measured and two types of luminescence are attributed to anthracene molecule pair centers with weak and strong interaction. Dipole\u2013dipole interactions between two anthracence molecules of various configurations are estimated and possible configuration for two types of luminescence is proposed.", "meta": {"doi": "10.1016/j.jlumin.2009.04.040"}, "_input_hash": 113064353, "_task_hash": 1080642379, "tokens": [[{"text": "Properties", "start": 0, "end": 10, "id": 0, "annotation": null}, {"text": "of", "start": 11, "end": 13, "id": 1, "annotation": null}, {"text": "two", "start": 14, "end": 17, "id": 2, "annotation": null}, {"text": "luminescence", "start": 18, "end": 30, "id": 3, "annotation": null}, {"text": "centers", "start": 31, "end": 38, "id": 4, "annotation": null}, {"text": ",", "start": 39, "end": 40, "id": 5, "annotation": null}, {"text": "which", "start": 41, "end": 46, "id": 6, "annotation": null}, {"text": "are", "start": 47, "end": 50, "id": 7, "annotation": null}, {"text": "observed", "start": 51, "end": 59, "id": 8, "annotation": null}, {"text": "in", "start": 60, "end": 62, "id": 9, "annotation": null}, {"text": "anthracene", "start": 63, "end": 73, "id": 10, "annotation": "DOPANT"}, {"text": "-", "start": 74, "end": 75, "id": 11, "annotation": null}, {"text": "doped", "start": 76, "end": 81, "id": 12, "annotation": null}, {"text": "fluorene", "start": 82, "end": 90, "id": 13, "annotation": "BASEMAT"}, {"text": "crystal", "start": 91, "end": 98, "id": 14, "annotation": null}, {"text": "as", "start": 99, "end": 101, "id": 15, "annotation": null}, {"text": "concentration", "start": 102, "end": 115, "id": 16, "annotation": null}, {"text": "increases", "start": 116, "end": 125, "id": 17, "annotation": null}, {"text": ",", "start": 126, "end": 127, "id": 18, "annotation": null}, {"text": "have", "start": 128, "end": 132, "id": 19, "annotation": null}, {"text": "been", "start": 133, "end": 137, "id": 20, "annotation": null}, {"text": "investigated", "start": 138, "end": 150, "id": 21, "annotation": null}, {"text": "to", "start": 151, "end": 153, "id": 22, "annotation": null}, {"text": "clarify", "start": 154, "end": 161, "id": 23, "annotation": null}, {"text": "their", "start": 162, "end": 167, "id": 24, "annotation": null}, {"text": "origin", "start": 168, "end": 174, "id": 25, "annotation": null}, {"text": ".", "start": 175, "end": 176, "id": 26, "annotation": null}], [{"text": "Excitation", "start": 177, "end": 187, "id": 27, "annotation": null}, {"text": "spectra", "start": 188, "end": 195, "id": 28, "annotation": null}, {"text": "and", "start": 196, "end": 199, "id": 29, "annotation": null}, {"text": "concentration", "start": 200, "end": 213, "id": 30, "annotation": null}, {"text": "dependence", "start": 214, "end": 224, "id": 31, "annotation": null}, {"text": "of", "start": 225, "end": 227, "id": 32, "annotation": null}, {"text": "absorption", "start": 228, "end": 238, "id": 33, "annotation": null}, {"text": "spectra", "start": 239, "end": 246, "id": 34, "annotation": null}, {"text": "were", "start": 247, "end": 251, "id": 35, "annotation": null}, {"text": "measured", "start": 252, "end": 260, "id": 36, "annotation": null}, {"text": "and", "start": 261, "end": 264, "id": 37, "annotation": null}, {"text": "two", "start": 265, "end": 268, "id": 38, "annotation": null}, {"text": "types", "start": 269, "end": 274, "id": 39, "annotation": null}, {"text": "of", "start": 275, "end": 277, "id": 40, "annotation": null}, {"text": "luminescence", "start": 278, "end": 290, "id": 41, "annotation": null}, {"text": "are", "start": 291, "end": 294, "id": 42, "annotation": null}, {"text": "attributed", "start": 295, "end": 305, "id": 43, "annotation": null}, {"text": "to", "start": 306, "end": 308, "id": 44, "annotation": null}, {"text": "anthracene", "start": 309, "end": 319, "id": 45, "annotation": null}, {"text": "molecule", "start": 320, "end": 328, "id": 46, "annotation": null}, {"text": "pair", "start": 329, "end": 333, "id": 47, "annotation": null}, {"text": "centers", "start": 334, "end": 341, "id": 48, "annotation": null}, {"text": "with", "start": 342, "end": 346, "id": 49, "annotation": null}, {"text": "weak", "start": 347, "end": 351, "id": 50, "annotation": null}, {"text": "and", "start": 352, "end": 355, "id": 51, "annotation": null}, {"text": "strong", "start": 356, "end": 362, "id": 52, "annotation": null}, {"text": "interaction", "start": 363, "end": 374, "id": 53, "annotation": null}, {"text": ".", "start": 375, "end": 376, "id": 54, "annotation": null}], [{"text": "Dipole", "start": 377, "end": 383, "id": 55, "annotation": null}, {"text": "\u2013", "start": 384, "end": 385, "id": 56, "annotation": null}, {"text": "dipole", "start": 386, "end": 392, "id": 57, "annotation": null}, {"text": "interactions", "start": 393, "end": 405, "id": 58, "annotation": null}, {"text": "between", "start": 406, "end": 413, "id": 59, "annotation": null}, {"text": "two", "start": 414, "end": 417, "id": 60, "annotation": null}, {"text": "anthracence", "start": 418, "end": 429, "id": 61, "annotation": null}, {"text": "molecules", "start": 430, "end": 439, "id": 62, "annotation": null}, {"text": "of", "start": 440, "end": 442, "id": 63, "annotation": null}, {"text": "various", "start": 443, "end": 450, "id": 64, "annotation": null}, {"text": "configurations", "start": 451, "end": 465, "id": 65, "annotation": null}, {"text": "are", "start": 466, "end": 469, "id": 66, "annotation": null}, {"text": "estimated", "start": 470, "end": 479, "id": 67, "annotation": null}, {"text": "and", "start": 480, "end": 483, "id": 68, "annotation": null}, {"text": "possible", "start": 484, "end": 492, "id": 69, "annotation": null}, {"text": "configuration", "start": 493, "end": 506, "id": 70, "annotation": null}, {"text": "for", "start": 507, "end": 510, "id": 71, "annotation": null}, {"text": "two", "start": 511, "end": 514, "id": 72, "annotation": null}, {"text": "types", "start": 515, "end": 520, "id": 73, "annotation": null}, {"text": "of", "start": 521, "end": 523, "id": 74, "annotation": null}, {"text": "luminescence", "start": 524, "end": 536, "id": 75, "annotation": null}, {"text": "is", "start": 537, "end": 539, "id": 76, "annotation": null}, {"text": "proposed", "start": 540, "end": 548, "id": 77, "annotation": null}, {"text": ".", "start": 549, "end": 550, "id": 78, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "We herein report a novel, high performance ternary nanocomposite composed of Graphene doped with nano Copper Sulphide and Zinc Oxide nanotubes (GCZ) for photodegradation of organic pollutants. Investigations were made to estimate and compare the Methyl Orange dye (MO) degradation using GCZ, synthesized pristine Graphene (Gr) and Graphene\u2013ZnO hybrid nanocomposite (GZ) under UV light irradiations. The synthesis of nanocomposites involves the simple ultra-sonication and mixing methods. The nanocomposites were characterized using transmission electron microscopy (TEM), high resolution transmission electron microscopy (HR-TEM), X-ray diffraction (XRD), Raman spectroscopy, UV\u2013vis absorption spectroscopy and Brunauer\u2013Emmett\u2013Teller (BET) surface area method. The as synthesized GCZ shows better surface area, porosity and band gap energy than as synthesized Gr and GZ. The photocatalytic degradation of methyl orange dye follows as Gr <<< GCZ >> GZ due to the stronger adsorbability, large number of photo induced electrons and highest inhibition of charge carrier's recombination of GCZ. The kinetic investigation demonstrates that dye degradation exhibit the pseudo first order kinetic model with rate constant 0.1322, 0.049 and0.0109 min\u22121 corresponding to GCZ, GZ and Gr. The mechanism of dye degradation in presence of photocatalyst is also discussed. This study confirms that GCZ is a more promising material for high performance catalytic applications especially in the dye waste water purification.", "meta": {"doi": "10.1016/j.matchemphys.2015.10.041"}, "_input_hash": -505098032, "_task_hash": -1905818555, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "herein", "start": 3, "end": 9, "id": 1, "annotation": null}, {"text": "report", "start": 10, "end": 16, "id": 2, "annotation": null}, {"text": "a", "start": 17, "end": 18, "id": 3, "annotation": null}, {"text": "novel", "start": 19, "end": 24, "id": 4, "annotation": null}, {"text": ",", "start": 25, "end": 26, "id": 5, "annotation": null}, {"text": "high", "start": 27, "end": 31, "id": 6, "annotation": null}, {"text": "performance", "start": 32, "end": 43, "id": 7, "annotation": null}, {"text": "ternary", "start": 44, "end": 51, "id": 8, "annotation": null}, {"text": "nanocomposite", "start": 52, "end": 65, "id": 9, "annotation": null}, {"text": "composed", "start": 66, "end": 74, "id": 10, "annotation": null}, {"text": "of", "start": 75, "end": 77, "id": 11, "annotation": null}, {"text": "Graphene", "start": 78, "end": 86, "id": 12, "annotation": "BASEMAT"}, {"text": "doped", "start": 87, "end": 92, "id": 13, "annotation": null}, {"text": "with", "start": 93, "end": 97, "id": 14, "annotation": null}, {"text": "nano", "start": 98, "end": 102, "id": 15, "annotation": null}, {"text": "Copper", "start": 103, "end": 109, "id": 16, "annotation": "DOPANT"}, {"text": "Sulphide", "start": 110, "end": 118, "id": 17, "annotation": "DOPANT"}, {"text": "and", "start": 119, "end": 122, "id": 18, "annotation": null}, {"text": "Zinc", "start": 123, "end": 127, "id": 19, "annotation": null}, {"text": "Oxide", "start": 128, "end": 133, "id": 20, "annotation": null}, {"text": "nanotubes", "start": 134, "end": 143, "id": 21, "annotation": null}, {"text": "(", "start": 144, "end": 145, "id": 22, "annotation": null}, {"text": "GCZ", "start": 146, "end": 149, "id": 23, "annotation": null}, {"text": ")", "start": 150, "end": 151, "id": 24, "annotation": null}, {"text": "for", "start": 152, "end": 155, "id": 25, "annotation": null}, {"text": "photodegradation", "start": 156, "end": 172, "id": 26, "annotation": null}, {"text": "of", "start": 173, "end": 175, "id": 27, "annotation": null}, {"text": "organic", "start": 176, "end": 183, "id": 28, "annotation": null}, {"text": "pollutants", "start": 184, "end": 194, "id": 29, "annotation": null}, {"text": ".", "start": 195, "end": 196, "id": 30, "annotation": null}], [{"text": "Investigations", "start": 197, "end": 211, "id": 31, "annotation": null}, {"text": "were", "start": 212, "end": 216, "id": 32, "annotation": null}, {"text": "made", "start": 217, "end": 221, "id": 33, "annotation": null}, {"text": "to", "start": 222, "end": 224, "id": 34, "annotation": null}, {"text": "estimate", "start": 225, "end": 233, "id": 35, "annotation": null}, {"text": "and", "start": 234, "end": 237, "id": 36, "annotation": null}, {"text": "compare", "start": 238, "end": 245, "id": 37, "annotation": null}, {"text": "the", "start": 246, "end": 249, "id": 38, "annotation": null}, {"text": "Methyl", "start": 250, "end": 256, "id": 39, "annotation": null}, {"text": "Orange", "start": 257, "end": 263, "id": 40, "annotation": null}, {"text": "dye", "start": 264, "end": 267, "id": 41, "annotation": null}, {"text": "(", "start": 268, "end": 269, "id": 42, "annotation": null}, {"text": "MO", "start": 270, "end": 272, "id": 43, "annotation": null}, {"text": ")", "start": 273, "end": 274, "id": 44, "annotation": null}, {"text": "degradation", "start": 275, "end": 286, "id": 45, "annotation": null}, {"text": "using", "start": 287, "end": 292, "id": 46, "annotation": null}, {"text": "GCZ", "start": 293, "end": 296, "id": 47, "annotation": null}, {"text": ",", "start": 297, "end": 298, "id": 48, "annotation": null}, {"text": "synthesized", "start": 299, "end": 310, "id": 49, "annotation": null}, {"text": "pristine", "start": 311, "end": 319, "id": 50, "annotation": null}, {"text": "Graphene", "start": 320, "end": 328, "id": 51, "annotation": null}, {"text": "(", "start": 329, "end": 330, "id": 52, "annotation": null}, {"text": "Gr", "start": 331, "end": 333, "id": 53, "annotation": null}, {"text": ")", "start": 334, "end": 335, "id": 54, "annotation": null}, {"text": "and", "start": 336, "end": 339, "id": 55, "annotation": null}, {"text": "Graphene", "start": 340, "end": 348, "id": 56, "annotation": null}, {"text": "\u2013", "start": 349, "end": 350, "id": 57, "annotation": null}, {"text": "ZnO", "start": 351, "end": 354, "id": 58, "annotation": null}, {"text": "hybrid", "start": 355, "end": 361, "id": 59, "annotation": null}, {"text": "nanocomposite", "start": 362, "end": 375, "id": 60, "annotation": null}, {"text": "(", "start": 376, "end": 377, "id": 61, "annotation": null}, {"text": "GZ", "start": 378, "end": 380, "id": 62, "annotation": null}, {"text": ")", "start": 381, "end": 382, "id": 63, "annotation": null}, {"text": "under", "start": 383, "end": 388, "id": 64, "annotation": null}, {"text": "UV", "start": 389, "end": 391, "id": 65, "annotation": null}, {"text": "light", "start": 392, "end": 397, "id": 66, "annotation": null}, {"text": "irradiations", "start": 398, "end": 410, "id": 67, "annotation": null}, {"text": ".", "start": 411, "end": 412, "id": 68, "annotation": null}], [{"text": "The", "start": 413, "end": 416, "id": 69, "annotation": null}, {"text": "synthesis", "start": 417, "end": 426, "id": 70, "annotation": null}, {"text": "of", "start": 427, "end": 429, "id": 71, "annotation": null}, {"text": "nanocomposites", "start": 430, "end": 444, "id": 72, "annotation": null}, {"text": "involves", "start": 445, "end": 453, "id": 73, "annotation": null}, {"text": "the", "start": 454, "end": 457, "id": 74, "annotation": null}, {"text": "simple", "start": 458, "end": 464, "id": 75, "annotation": null}, {"text": "ultra", "start": 465, "end": 470, "id": 76, "annotation": null}, {"text": "-", "start": 471, "end": 472, "id": 77, "annotation": null}, {"text": "sonication", "start": 473, "end": 483, "id": 78, "annotation": null}, {"text": "and", "start": 484, "end": 487, "id": 79, "annotation": null}, {"text": "mixing", "start": 488, "end": 494, "id": 80, "annotation": null}, {"text": "methods", "start": 495, "end": 502, "id": 81, "annotation": null}, {"text": ".", "start": 503, "end": 504, "id": 82, "annotation": null}], [{"text": "The", "start": 505, "end": 508, "id": 83, "annotation": null}, {"text": "nanocomposites", "start": 509, "end": 523, "id": 84, "annotation": null}, {"text": "were", "start": 524, "end": 528, "id": 85, "annotation": null}, {"text": "characterized", "start": 529, "end": 542, "id": 86, "annotation": null}, {"text": "using", "start": 543, "end": 548, "id": 87, "annotation": null}, {"text": "transmission", "start": 549, "end": 561, "id": 88, "annotation": null}, {"text": "electron", "start": 562, "end": 570, "id": 89, "annotation": null}, {"text": "microscopy", "start": 571, "end": 581, "id": 90, "annotation": null}, {"text": "(", "start": 582, "end": 583, "id": 91, "annotation": null}, {"text": "TEM", "start": 584, "end": 587, "id": 92, "annotation": null}, {"text": ")", "start": 588, "end": 589, "id": 93, "annotation": null}, {"text": ",", "start": 590, "end": 591, "id": 94, "annotation": null}, {"text": "high", "start": 592, "end": 596, "id": 95, "annotation": null}, {"text": "resolution", "start": 597, "end": 607, "id": 96, "annotation": null}, {"text": "transmission", "start": 608, "end": 620, "id": 97, "annotation": null}, {"text": "electron", "start": 621, "end": 629, "id": 98, "annotation": null}, {"text": "microscopy", "start": 630, "end": 640, "id": 99, "annotation": null}, {"text": "(", "start": 641, "end": 642, "id": 100, "annotation": null}, {"text": "HR", "start": 643, "end": 645, "id": 101, "annotation": null}, {"text": "-", "start": 646, "end": 647, "id": 102, "annotation": null}, {"text": "TEM", "start": 648, "end": 651, "id": 103, "annotation": null}, {"text": ")", "start": 652, "end": 653, "id": 104, "annotation": null}, {"text": ",", "start": 654, "end": 655, "id": 105, "annotation": null}, {"text": "X", "start": 656, "end": 657, "id": 106, "annotation": null}, {"text": "-", "start": 658, "end": 659, "id": 107, "annotation": null}, {"text": "ray", "start": 660, "end": 663, "id": 108, "annotation": null}, {"text": "diffraction", "start": 664, "end": 675, "id": 109, "annotation": null}, {"text": "(", "start": 676, "end": 677, "id": 110, "annotation": null}, {"text": "XRD", "start": 678, "end": 681, "id": 111, "annotation": null}, {"text": ")", "start": 682, "end": 683, "id": 112, "annotation": null}, {"text": ",", "start": 684, "end": 685, "id": 113, "annotation": null}, {"text": "Raman", "start": 686, "end": 691, "id": 114, "annotation": null}, {"text": "spectroscopy", "start": 692, "end": 704, "id": 115, "annotation": null}, {"text": ",", "start": 705, "end": 706, "id": 116, "annotation": null}, {"text": "UV", "start": 707, "end": 709, "id": 117, "annotation": null}, {"text": "\u2013", "start": 710, "end": 711, "id": 118, "annotation": null}, {"text": "vis", "start": 712, "end": 715, "id": 119, "annotation": null}, {"text": "absorption", "start": 716, "end": 726, "id": 120, "annotation": null}, {"text": "spectroscopy", "start": 727, "end": 739, "id": 121, "annotation": null}, {"text": "and", "start": 740, "end": 743, "id": 122, "annotation": null}, {"text": "Brunauer", "start": 744, "end": 752, "id": 123, "annotation": null}, {"text": "\u2013", "start": 753, "end": 754, "id": 124, "annotation": null}, {"text": "Emmett", "start": 755, "end": 761, "id": 125, "annotation": null}, {"text": "\u2013", "start": 762, "end": 763, "id": 126, "annotation": null}, {"text": "Teller", "start": 764, "end": 770, "id": 127, "annotation": null}, {"text": "(", "start": 771, "end": 772, "id": 128, "annotation": null}, {"text": "BET", "start": 773, "end": 776, "id": 129, "annotation": null}, {"text": ")", "start": 777, "end": 778, "id": 130, "annotation": null}, {"text": "surface", "start": 779, "end": 786, "id": 131, "annotation": null}, {"text": "area", "start": 787, "end": 791, "id": 132, "annotation": null}, {"text": "method", "start": 792, "end": 798, "id": 133, "annotation": null}, {"text": ".", "start": 799, "end": 800, "id": 134, "annotation": null}], [{"text": "The", "start": 801, "end": 804, "id": 135, "annotation": null}, {"text": "as", "start": 805, "end": 807, "id": 136, "annotation": null}, {"text": "synthesized", "start": 808, "end": 819, "id": 137, "annotation": null}, {"text": "GCZ", "start": 820, "end": 823, "id": 138, "annotation": null}, {"text": "shows", "start": 824, "end": 829, "id": 139, "annotation": null}, {"text": "better", "start": 830, "end": 836, "id": 140, "annotation": null}, {"text": "surface", "start": 837, "end": 844, "id": 141, "annotation": null}, {"text": "area", "start": 845, "end": 849, "id": 142, "annotation": null}, {"text": ",", "start": 850, "end": 851, "id": 143, "annotation": null}, {"text": "porosity", "start": 852, "end": 860, "id": 144, "annotation": null}, {"text": "and", "start": 861, "end": 864, "id": 145, "annotation": null}, {"text": "band", "start": 865, "end": 869, "id": 146, "annotation": null}, {"text": "gap", "start": 870, "end": 873, "id": 147, "annotation": null}, {"text": "energy", "start": 874, "end": 880, "id": 148, "annotation": null}, {"text": "than", "start": 881, "end": 885, "id": 149, "annotation": null}, {"text": "as", "start": 886, "end": 888, "id": 150, "annotation": null}, {"text": "synthesized", "start": 889, "end": 900, "id": 151, "annotation": null}, {"text": "Gr", "start": 901, "end": 903, "id": 152, "annotation": null}, {"text": "and", "start": 904, "end": 907, "id": 153, "annotation": null}, {"text": "GZ", "start": 908, "end": 910, "id": 154, "annotation": null}, {"text": ".", "start": 911, "end": 912, "id": 155, "annotation": null}], [{"text": "The", "start": 913, "end": 916, "id": 156, "annotation": null}, {"text": "photocatalytic", "start": 917, "end": 931, "id": 157, "annotation": null}, {"text": "degradation", "start": 932, "end": 943, "id": 158, "annotation": null}, {"text": "of", "start": 944, "end": 946, "id": 159, "annotation": null}, {"text": "methyl", "start": 947, "end": 953, "id": 160, "annotation": null}, {"text": "orange", "start": 954, "end": 960, "id": 161, "annotation": null}, {"text": "dye", "start": 961, "end": 964, "id": 162, "annotation": null}, {"text": "follows", "start": 965, "end": 972, "id": 163, "annotation": null}, {"text": "as", "start": 973, "end": 975, "id": 164, "annotation": null}, {"text": "Gr", "start": 976, "end": 978, "id": 165, "annotation": null}, {"text": "<", "start": 979, "end": 980, "id": 166, "annotation": null}, {"text": "<", "start": 981, "end": 982, "id": 167, "annotation": null}, {"text": "<", "start": 983, "end": 984, "id": 168, "annotation": null}, {"text": "GCZ", "start": 985, "end": 988, "id": 169, "annotation": null}, {"text": ">", "start": 989, "end": 990, "id": 170, "annotation": null}, {"text": ">", "start": 991, "end": 992, "id": 171, "annotation": null}, {"text": "GZ", "start": 993, "end": 995, "id": 172, "annotation": null}, {"text": "due", "start": 996, "end": 999, "id": 173, "annotation": null}, {"text": "to", "start": 1000, "end": 1002, "id": 174, "annotation": null}, {"text": "the", "start": 1003, "end": 1006, "id": 175, "annotation": null}, {"text": "stronger", "start": 1007, "end": 1015, "id": 176, "annotation": null}, {"text": "adsorbability", "start": 1016, "end": 1029, "id": 177, "annotation": null}, {"text": ",", "start": 1030, "end": 1031, "id": 178, "annotation": null}, {"text": "large", "start": 1032, "end": 1037, "id": 179, "annotation": null}, {"text": "number", "start": 1038, "end": 1044, "id": 180, "annotation": null}, {"text": "of", "start": 1045, "end": 1047, "id": 181, "annotation": null}, {"text": "photo", "start": 1048, "end": 1053, "id": 182, "annotation": null}, {"text": "induced", "start": 1054, "end": 1061, "id": 183, "annotation": null}, {"text": "electrons", "start": 1062, "end": 1071, "id": 184, "annotation": null}, {"text": "and", "start": 1072, "end": 1075, "id": 185, "annotation": null}, {"text": "highest", "start": 1076, "end": 1083, "id": 186, "annotation": null}, {"text": "inhibition", "start": 1084, "end": 1094, "id": 187, "annotation": null}, {"text": "of", "start": 1095, "end": 1097, "id": 188, "annotation": null}, {"text": "charge", "start": 1098, "end": 1104, "id": 189, "annotation": null}, {"text": "carrier", "start": 1105, "end": 1112, "id": 190, "annotation": null}, {"text": "'s", "start": 1113, "end": 1115, "id": 191, "annotation": null}, {"text": "recombination", "start": 1116, "end": 1129, "id": 192, "annotation": null}, {"text": "of", "start": 1130, "end": 1132, "id": 193, "annotation": null}, {"text": "GCZ", "start": 1133, "end": 1136, "id": 194, "annotation": null}, {"text": ".", "start": 1137, "end": 1138, "id": 195, "annotation": null}], [{"text": "The", "start": 1139, "end": 1142, "id": 196, "annotation": null}, {"text": "kinetic", "start": 1143, "end": 1150, "id": 197, "annotation": null}, {"text": "investigation", "start": 1151, "end": 1164, "id": 198, "annotation": null}, {"text": "demonstrates", "start": 1165, "end": 1177, "id": 199, "annotation": null}, {"text": "that", "start": 1178, "end": 1182, "id": 200, "annotation": null}, {"text": "dye", "start": 1183, "end": 1186, "id": 201, "annotation": null}, {"text": "degradation", "start": 1187, "end": 1198, "id": 202, "annotation": null}, {"text": "exhibit", "start": 1199, "end": 1206, "id": 203, "annotation": null}, {"text": "the", "start": 1207, "end": 1210, "id": 204, "annotation": null}, {"text": "pseudo", "start": 1211, "end": 1217, "id": 205, "annotation": null}, {"text": "first", "start": 1218, "end": 1223, "id": 206, "annotation": null}, {"text": "order", "start": 1224, "end": 1229, "id": 207, "annotation": null}, {"text": "kinetic", "start": 1230, "end": 1237, "id": 208, "annotation": null}, {"text": "model", "start": 1238, "end": 1243, "id": 209, "annotation": null}, {"text": "with", "start": 1244, "end": 1248, "id": 210, "annotation": null}, {"text": "rate", "start": 1249, "end": 1253, "id": 211, "annotation": null}, {"text": "constant", "start": 1254, "end": 1262, "id": 212, "annotation": null}, {"text": "0.1322", "start": 1263, "end": 1269, "id": 213, "annotation": null}, {"text": ",", "start": 1270, "end": 1271, "id": 214, "annotation": null}, {"text": "0.049", "start": 1272, "end": 1277, "id": 215, "annotation": null}, {"text": "and0.0109", "start": 1278, "end": 1287, "id": 216, "annotation": null}, {"text": "min\u22121", "start": 1288, "end": 1293, "id": 217, "annotation": null}, {"text": "corresponding", "start": 1294, "end": 1307, "id": 218, "annotation": null}, {"text": "to", "start": 1308, "end": 1310, "id": 219, "annotation": null}, {"text": "GCZ", "start": 1311, "end": 1314, "id": 220, "annotation": null}, {"text": ",", "start": 1315, "end": 1316, "id": 221, "annotation": null}, {"text": "GZ", "start": 1317, "end": 1319, "id": 222, "annotation": null}, {"text": "and", "start": 1320, "end": 1323, "id": 223, "annotation": null}, {"text": "Gr", "start": 1324, "end": 1326, "id": 224, "annotation": null}, {"text": ".", "start": 1327, "end": 1328, "id": 225, "annotation": null}], [{"text": "The", "start": 1329, "end": 1332, "id": 226, "annotation": null}, {"text": "mechanism", "start": 1333, "end": 1342, "id": 227, "annotation": null}, {"text": "of", "start": 1343, "end": 1345, "id": 228, "annotation": null}, {"text": "dye", "start": 1346, "end": 1349, "id": 229, "annotation": null}, {"text": "degradation", "start": 1350, "end": 1361, "id": 230, "annotation": null}, {"text": "in", "start": 1362, "end": 1364, "id": 231, "annotation": null}, {"text": "presence", "start": 1365, "end": 1373, "id": 232, "annotation": null}, {"text": "of", "start": 1374, "end": 1376, "id": 233, "annotation": null}, {"text": "photocatalyst", "start": 1377, "end": 1390, "id": 234, "annotation": null}, {"text": "is", "start": 1391, "end": 1393, "id": 235, "annotation": null}, {"text": "also", "start": 1394, "end": 1398, "id": 236, "annotation": null}, {"text": "discussed", "start": 1399, "end": 1408, "id": 237, "annotation": null}, {"text": ".", "start": 1409, "end": 1410, "id": 238, "annotation": null}], [{"text": "This", "start": 1411, "end": 1415, "id": 239, "annotation": null}, {"text": "study", "start": 1416, "end": 1421, "id": 240, "annotation": null}, {"text": "confirms", "start": 1422, "end": 1430, "id": 241, "annotation": null}, {"text": "that", "start": 1431, "end": 1435, "id": 242, "annotation": null}, {"text": "GCZ", "start": 1436, "end": 1439, "id": 243, "annotation": null}, {"text": "is", "start": 1440, "end": 1442, "id": 244, "annotation": null}, {"text": "a", "start": 1443, "end": 1444, "id": 245, "annotation": null}, {"text": "more", "start": 1445, "end": 1449, "id": 246, "annotation": null}, {"text": "promising", "start": 1450, "end": 1459, "id": 247, "annotation": null}, {"text": "material", "start": 1460, "end": 1468, "id": 248, "annotation": null}, {"text": "for", "start": 1469, "end": 1472, "id": 249, "annotation": null}, {"text": "high", "start": 1473, "end": 1477, "id": 250, "annotation": null}, {"text": "performance", "start": 1478, "end": 1489, "id": 251, "annotation": null}, {"text": "catalytic", "start": 1490, "end": 1499, "id": 252, "annotation": null}, {"text": "applications", "start": 1500, "end": 1512, "id": 253, "annotation": null}, {"text": "especially", "start": 1513, "end": 1523, "id": 254, "annotation": null}, {"text": "in", "start": 1524, "end": 1526, "id": 255, "annotation": null}, {"text": "the", "start": 1527, "end": 1530, "id": 256, "annotation": null}, {"text": "dye", "start": 1531, "end": 1534, "id": 257, "annotation": null}, {"text": "waste", "start": 1535, "end": 1540, "id": 258, "annotation": null}, {"text": "water", "start": 1541, "end": 1546, "id": 259, "annotation": null}, {"text": "purification", "start": 1547, "end": 1559, "id": 260, "annotation": null}, {"text": ".", "start": 1560, "end": 1561, "id": 261, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "We report on a graphite electrode onto which polypyrrole was electrodeposited and then doped with chromate ion. This electrode can serve as a Cr(VI)-selective solid-state electrode. Electropolymerization of pyrrole was performed potentiostatically at 0.80V (vs. SCE) using battery graphite as the working electrode in a solution containing 0.10M of pyrrole and 20mM of chromate. A platinum wire was used as an auxiliary electrode. The new electrode displays high selectivity, a very wide dynamic range, a sufficiently fast response time and a good shelf lifetime. It shows a linear Nernstian response over 1.0\u00d710\u22126 to 1.0\u00d710\u22121M concentration range (with a slope of 26.55\u00b10.20mV per log of concentration). The detection limit is 0.5\u03bcM, and the pH optimum is 7.0. FigureA highly selective solid state Cr(VI) ion-selective electrode based on polypyrrole conducting polymer was prepared. The introduced Cr(VI) micro sensor electrode exhibited linear response over a wide working concentration range with a high regression coefficient and a near Nernstian slope. The SEM image of PPy/CrO4 thin film shows unevenly distributed nanoparticles.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "report", "start": 3, "end": 9, "annotation": null}, {"text": "on", "start": 10, "end": 12, "annotation": null}, {"text": "a", "start": 13, "end": 14, "annotation": null}, {"text": "graphite", "start": 15, "end": 23, "annotation": null}, {"text": "electrode", "start": 24, "end": 33, "annotation": null}, {"text": "onto", "start": 34, "end": 38, "annotation": null}, {"text": "which", "start": 39, "end": 44, "annotation": null}, {"text": "polypyrrole", "start": 45, "end": 56, "annotation": "BASEMAT"}, {"text": "was", "start": 57, "end": 60, "annotation": null}, {"text": "electrodeposited", "start": 61, "end": 77, "annotation": null}, {"text": "and", "start": 78, "end": 81, "annotation": null}, {"text": "then", "start": 82, "end": 86, "annotation": null}, {"text": "doped", "start": 87, "end": 92, "annotation": null}, {"text": "with", "start": 93, "end": 97, "annotation": null}, {"text": "chromate", "start": 98, "end": 106, "annotation": "DOPANT"}, {"text": "ion", "start": 107, "end": 110, "annotation": "DOPANT"}, {"text": ".", "start": 110, "end": 111, "annotation": null}], [{"text": "This", "start": 112, "end": 116, "annotation": null}, {"text": "electrode", "start": 117, "end": 126, "annotation": null}, {"text": "can", "start": 127, "end": 130, "annotation": null}, {"text": "serve", "start": 131, "end": 136, "annotation": null}, {"text": "as", "start": 137, "end": 139, "annotation": null}, {"text": "a", "start": 140, "end": 141, "annotation": null}, {"text": "Cr(VI)", "start": 142, "end": 148, "annotation": null}, {"text": "-", "start": 148, "end": 149, "annotation": null}, {"text": "selective", "start": 149, "end": 158, "annotation": null}, {"text": "solid", "start": 159, "end": 164, "annotation": null}, {"text": "-", "start": 164, "end": 165, "annotation": null}, {"text": "state", "start": 165, "end": 170, "annotation": null}, {"text": "electrode", "start": 171, "end": 180, "annotation": null}, {"text": ".", "start": 180, "end": 181, "annotation": null}], [{"text": "Electropolymerization", "start": 182, "end": 203, "annotation": null}, {"text": "of", "start": 204, "end": 206, "annotation": null}, {"text": "pyrrole", "start": 207, "end": 214, "annotation": null}, {"text": "was", "start": 215, "end": 218, "annotation": null}, {"text": "performed", "start": 219, "end": 228, "annotation": null}, {"text": "potentiostatically", "start": 229, "end": 247, "annotation": null}, {"text": "at", "start": 248, "end": 250, "annotation": null}, {"text": "0.80", "start": 251, "end": 255, "annotation": null}, {"text": "V", "start": 255, "end": 256, "annotation": null}, {"text": "(", "start": 257, "end": 258, "annotation": null}, {"text": "vs", "start": 258, "end": 260, "annotation": null}, {"text": ".", "start": 260, "end": 261, "annotation": null}], [{"text": "SCE", "start": 262, "end": 265, "annotation": null}, {"text": ")", "start": 265, "end": 266, "annotation": null}, {"text": "using", "start": 267, "end": 272, "annotation": null}, {"text": "battery", "start": 273, "end": 280, "annotation": null}, {"text": "graphite", "start": 281, "end": 289, "annotation": null}, {"text": "as", "start": 290, "end": 292, "annotation": null}, {"text": "the", "start": 293, "end": 296, "annotation": null}, {"text": "working", "start": 297, "end": 304, "annotation": null}, {"text": "electrode", "start": 305, "end": 314, "annotation": null}, {"text": "in", "start": 315, "end": 317, "annotation": null}, {"text": "a", "start": 318, "end": 319, "annotation": null}, {"text": "solution", "start": 320, "end": 328, "annotation": null}, {"text": "containing", "start": 329, "end": 339, "annotation": null}, {"text": "0.10", "start": 340, "end": 344, "annotation": null}, {"text": "M", "start": 344, "end": 345, "annotation": null}, {"text": "of", "start": 346, "end": 348, "annotation": null}, {"text": "pyrrole", "start": 349, "end": 356, "annotation": null}, {"text": "and", "start": 357, "end": 360, "annotation": null}, {"text": "20", "start": 361, "end": 363, "annotation": null}, {"text": "mM", "start": 363, "end": 365, "annotation": null}, {"text": "of", "start": 366, "end": 368, "annotation": null}, {"text": "chromate", "start": 369, "end": 377, "annotation": null}, {"text": ".", "start": 377, "end": 378, "annotation": null}], [{"text": "A", "start": 379, "end": 380, "annotation": null}, {"text": "platinum", "start": 381, "end": 389, "annotation": null}, {"text": "wire", "start": 390, "end": 394, "annotation": null}, {"text": "was", "start": 395, "end": 398, "annotation": null}, {"text": "used", "start": 399, "end": 403, "annotation": null}, {"text": "as", "start": 404, "end": 406, "annotation": null}, {"text": "an", "start": 407, "end": 409, "annotation": null}, {"text": "auxiliary", "start": 410, "end": 419, "annotation": null}, {"text": "electrode", "start": 420, "end": 429, "annotation": null}, {"text": ".", "start": 429, "end": 430, "annotation": null}], [{"text": "The", "start": 431, "end": 434, "annotation": null}, {"text": "new", "start": 435, "end": 438, "annotation": null}, {"text": "electrode", "start": 439, "end": 448, "annotation": null}, {"text": "displays", "start": 449, "end": 457, "annotation": null}, {"text": "high", "start": 458, "end": 462, "annotation": null}, {"text": "selectivity", "start": 463, "end": 474, "annotation": null}, {"text": ",", "start": 474, "end": 475, "annotation": null}, {"text": "a", "start": 476, "end": 477, "annotation": null}, {"text": "very", "start": 478, "end": 482, "annotation": null}, {"text": "wide", "start": 483, "end": 487, "annotation": null}, {"text": "dynamic", "start": 488, "end": 495, "annotation": null}, {"text": "range", "start": 496, "end": 501, "annotation": null}, {"text": ",", "start": 501, "end": 502, "annotation": null}, {"text": "a", "start": 503, "end": 504, "annotation": null}, {"text": "sufficiently", "start": 505, "end": 517, "annotation": null}, {"text": "fast", "start": 518, "end": 522, "annotation": null}, {"text": "response", "start": 523, "end": 531, "annotation": null}, {"text": "time", "start": 532, "end": 536, "annotation": null}, {"text": "and", "start": 537, "end": 540, "annotation": null}, {"text": "a", "start": 541, "end": 542, "annotation": null}, {"text": "good", "start": 543, "end": 547, "annotation": null}, {"text": "shelf", "start": 548, "end": 553, "annotation": null}, {"text": "lifetime", "start": 554, "end": 562, "annotation": null}, {"text": ".", "start": 562, "end": 563, "annotation": null}], [{"text": "It", "start": 564, "end": 566, "annotation": null}, {"text": "shows", "start": 567, "end": 572, "annotation": null}, {"text": "a", "start": 573, "end": 574, "annotation": null}, {"text": "linear", "start": 575, "end": 581, "annotation": null}, {"text": "Nernstian", "start": 582, "end": 591, "annotation": null}, {"text": "response", "start": 592, "end": 600, "annotation": null}, {"text": "over", "start": 601, "end": 605, "annotation": null}, {"text": "1.0", "start": 606, "end": 609, "annotation": null}, {"text": "\u00d7", "start": 609, "end": 610, "annotation": null}, {"text": "10", "start": 610, "end": 612, "annotation": null}, {"text": "\u2212", "start": 612, "end": 613, "annotation": null}, {"text": "6", "start": 613, "end": 614, "annotation": null}, {"text": "to", "start": 615, "end": 617, "annotation": null}, {"text": "1.0", "start": 618, "end": 621, "annotation": null}, {"text": "\u00d7", "start": 621, "end": 622, "annotation": null}, {"text": "10", "start": 622, "end": 624, "annotation": null}, {"text": "\u2212", "start": 624, "end": 625, "annotation": null}, {"text": "1", "start": 625, "end": 626, "annotation": null}, {"text": "M", "start": 626, "end": 627, "annotation": null}, {"text": "concentration", "start": 628, "end": 641, "annotation": null}, {"text": "range", "start": 642, "end": 647, "annotation": null}, {"text": "(", "start": 648, "end": 649, "annotation": null}, {"text": "with", "start": 649, "end": 653, "annotation": null}, {"text": "a", "start": 654, "end": 655, "annotation": null}, {"text": "slope", "start": 656, "end": 661, "annotation": null}, {"text": "of", "start": 662, "end": 664, "annotation": null}, {"text": "26.55", "start": 665, "end": 670, "annotation": null}, {"text": "\u00b1", "start": 670, "end": 671, "annotation": null}, {"text": "0.20", "start": 671, "end": 675, "annotation": null}, {"text": "mV", "start": 675, "end": 677, "annotation": null}, {"text": "per", "start": 678, "end": 681, "annotation": null}, {"text": "log", "start": 682, "end": 685, "annotation": null}, {"text": "of", "start": 686, "end": 688, "annotation": null}, {"text": "concentration", "start": 689, "end": 702, "annotation": null}, {"text": ")", "start": 702, "end": 703, "annotation": null}, {"text": ".", "start": 703, "end": 704, "annotation": null}], [{"text": "The", "start": 705, "end": 708, "annotation": null}, {"text": "detection", "start": 709, "end": 718, "annotation": null}, {"text": "limit", "start": 719, "end": 724, "annotation": null}, {"text": "is", "start": 725, "end": 727, "annotation": null}, {"text": "0.5", "start": 728, "end": 731, "annotation": null}, {"text": "\u03bcM", "start": 731, "end": 733, "annotation": null}, {"text": ",", "start": 733, "end": 734, "annotation": null}, {"text": "and", "start": 735, "end": 738, "annotation": null}, {"text": "the", "start": 739, "end": 742, "annotation": null}, {"text": "pH", "start": 743, "end": 745, "annotation": null}, {"text": "optimum", "start": 746, "end": 753, "annotation": null}, {"text": "is", "start": 754, "end": 756, "annotation": null}, {"text": "7.0", "start": 757, "end": 760, "annotation": null}, {"text": ".", "start": 760, "end": 761, "annotation": null}], [{"text": "FigureA", "start": 762, "end": 769, "annotation": null}, {"text": "highly", "start": 770, "end": 776, "annotation": null}, {"text": "selective", "start": 777, "end": 786, "annotation": null}, {"text": "solid", "start": 787, "end": 792, "annotation": null}, {"text": "state", "start": 793, "end": 798, "annotation": null}, {"text": "Cr(VI)", "start": 799, "end": 805, "annotation": null}, {"text": "ion", "start": 806, "end": 809, "annotation": null}, {"text": "-", "start": 809, "end": 810, "annotation": null}, {"text": "selective", "start": 810, "end": 819, "annotation": null}, {"text": "electrode", "start": 820, "end": 829, "annotation": null}, {"text": "based", "start": 830, "end": 835, "annotation": null}, {"text": "on", "start": 836, "end": 838, "annotation": null}, {"text": "polypyrrole", "start": 839, "end": 850, "annotation": null}, {"text": "conducting", "start": 851, "end": 861, "annotation": null}, {"text": "polymer", "start": 862, "end": 869, "annotation": null}, {"text": "was", "start": 870, "end": 873, "annotation": null}, {"text": "prepared", "start": 874, "end": 882, "annotation": null}, {"text": ".", "start": 882, "end": 883, "annotation": null}], [{"text": "The", "start": 884, "end": 887, "annotation": null}, {"text": "introduced", "start": 888, "end": 898, "annotation": null}, {"text": "Cr(VI)", "start": 899, "end": 905, "annotation": null}, {"text": "micro", "start": 906, "end": 911, "annotation": null}, {"text": "sensor", "start": 912, "end": 918, "annotation": null}, {"text": "electrode", "start": 919, "end": 928, "annotation": null}, {"text": "exhibited", "start": 929, "end": 938, "annotation": null}, {"text": "linear", "start": 939, "end": 945, "annotation": null}, {"text": "response", "start": 946, "end": 954, "annotation": null}, {"text": "over", "start": 955, "end": 959, "annotation": null}, {"text": "a", "start": 960, "end": 961, "annotation": null}, {"text": "wide", "start": 962, "end": 966, "annotation": null}, {"text": "working", "start": 967, "end": 974, "annotation": null}, {"text": "concentration", "start": 975, "end": 988, "annotation": null}, {"text": "range", "start": 989, "end": 994, "annotation": null}, {"text": "with", "start": 995, "end": 999, "annotation": null}, {"text": "a", "start": 1000, "end": 1001, "annotation": null}, {"text": "high", "start": 1002, "end": 1006, "annotation": null}, {"text": "regression", "start": 1007, "end": 1017, "annotation": null}, {"text": "coefficient", "start": 1018, "end": 1029, "annotation": null}, {"text": "and", "start": 1030, "end": 1033, "annotation": null}, {"text": "a", "start": 1034, "end": 1035, "annotation": null}, {"text": "near", "start": 1036, "end": 1040, "annotation": null}, {"text": "Nernstian", "start": 1041, "end": 1050, "annotation": null}, {"text": "slope", "start": 1051, "end": 1056, "annotation": null}, {"text": ".", "start": 1056, "end": 1057, "annotation": null}], [{"text": "The", "start": 1058, "end": 1061, "annotation": null}, {"text": "SEM", "start": 1062, "end": 1065, "annotation": null}, {"text": "image", "start": 1066, "end": 1071, "annotation": null}, {"text": "of", "start": 1072, "end": 1074, "annotation": null}, {"text": "PPy", "start": 1075, "end": 1078, "annotation": "BASEMAT"}, {"text": "/", "start": 1078, "end": 1079, "annotation": null}, {"text": "CrO4", "start": 1079, "end": 1083, "annotation": "DOPANT"}, {"text": "thin", "start": 1084, "end": 1088, "annotation": null}, {"text": "film", "start": 1089, "end": 1093, "annotation": null}, {"text": "shows", "start": 1094, "end": 1099, "annotation": null}, {"text": "unevenly", "start": 1100, "end": 1108, "annotation": null}, {"text": "distributed", "start": 1109, "end": 1120, "annotation": null}, {"text": "nanoparticles", "start": 1121, "end": 1134, "annotation": null}, {"text": ".", "start": 1134, "end": 1135, "annotation": null}]]} -{"remark": "doping_annt1", "text": "\u00a9 2016 Informa UK Limited, trading as Taylor & Francis Group. We report on chiral-nematic mixtures containing viscous chiral dopants, composed of rigid rod-like chiral molecules, in order to solve the problem of backflow in the middle layers of the liquid crystal cells. During the study, the viscoelastic properties of the liquid crystal compositions have been optimised, as well as the helical twisting power of the chiral compounds, the anchoring energy and the pre-tilt angle of alignment materials, the ratio between the cell gap and the helical pitch (d/P0). After optimisation, we prepared test cells with low operating voltage\u2013from 1.5 till 5.0V, fast response time (\u03c4on + \u03c4off)\u2013less than 1ms, wide operating temperature range from \u221240\u00b0C till +100\u00b0C, and good thermal stability. It should be noted that the response time of the new electro-optical mode does not strongly depend on the cell gap, which is in contrast to other known operating modes. We have achieved rather linear than quadratic dependence of the response time when changing the thickness of the cell.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 62, "end": 64, "annotation": null}, {"text": "report", "start": 65, "end": 71, "annotation": null}, {"text": "on", "start": 72, "end": 74, "annotation": null}, {"text": "chiral", "start": 75, "end": 81, "annotation": null}, {"text": "-", "start": 81, "end": 82, "annotation": null}, {"text": "nematic", "start": 82, "end": 89, "annotation": null}, {"text": "mixtures", "start": 90, "end": 98, "annotation": null}, {"text": "containing", "start": 99, "end": 109, "annotation": null}, {"text": "viscous", "start": 110, "end": 117, "annotation": null}, {"text": "chiral", "start": 118, "end": 124, "annotation": "DOPANT"}, {"text": "dopants", "start": 125, "end": 132, "annotation": null}, {"text": ",", "start": 132, "end": 133, "annotation": null}, {"text": "composed", "start": 134, "end": 142, "annotation": null}, {"text": "of", "start": 143, "end": 145, "annotation": null}, {"text": "rigid", "start": 146, "end": 151, "annotation": null}, {"text": "rod", "start": 152, "end": 155, "annotation": null}, {"text": "-", "start": 155, "end": 156, "annotation": null}, {"text": "like", "start": 156, "end": 160, "annotation": null}, {"text": "chiral", "start": 161, "end": 167, "annotation": null}, {"text": "molecules", "start": 168, "end": 177, "annotation": null}, {"text": ",", "start": 177, "end": 178, "annotation": null}, {"text": "in", "start": 179, "end": 181, "annotation": null}, {"text": "order", "start": 182, "end": 187, "annotation": null}, {"text": "to", "start": 188, "end": 190, "annotation": null}, {"text": "solve", "start": 191, "end": 196, "annotation": null}, {"text": "the", "start": 197, "end": 200, "annotation": null}, {"text": "problem", "start": 201, "end": 208, "annotation": null}, {"text": "of", "start": 209, "end": 211, "annotation": null}, {"text": "backflow", "start": 212, "end": 220, "annotation": null}, {"text": "in", "start": 221, "end": 223, "annotation": null}, {"text": "the", "start": 224, "end": 227, "annotation": null}, {"text": "middle", "start": 228, "end": 234, "annotation": null}, {"text": "layers", "start": 235, "end": 241, "annotation": null}, {"text": "of", "start": 242, "end": 244, "annotation": null}, {"text": "the", "start": 245, "end": 248, "annotation": null}, {"text": "liquid", "start": 249, "end": 255, "annotation": "BASEMAT"}, {"text": "crystal", "start": 256, "end": 263, "annotation": "BASEMAT"}, {"text": "cells", "start": 264, "end": 269, "annotation": null}, {"text": ".", "start": 269, "end": 270, "annotation": null}], [{"text": "During", "start": 271, "end": 277, "annotation": null}, {"text": "the", "start": 278, "end": 281, "annotation": null}, {"text": "study", "start": 282, "end": 287, "annotation": null}, {"text": ",", "start": 287, "end": 288, "annotation": null}, {"text": "the", "start": 289, "end": 292, "annotation": null}, {"text": "viscoelastic", "start": 293, "end": 305, "annotation": null}, {"text": "properties", "start": 306, "end": 316, "annotation": null}, {"text": "of", "start": 317, "end": 319, "annotation": null}, {"text": "the", "start": 320, "end": 323, "annotation": null}, {"text": "liquid", "start": 324, "end": 330, "annotation": null}, {"text": "crystal", "start": 331, "end": 338, "annotation": null}, {"text": "compositions", "start": 339, "end": 351, "annotation": null}, {"text": "have", "start": 352, "end": 356, "annotation": null}, {"text": "been", "start": 357, "end": 361, "annotation": null}, {"text": "optimised", "start": 362, "end": 371, "annotation": null}, {"text": ",", "start": 371, "end": 372, "annotation": null}, {"text": "as", "start": 373, "end": 375, "annotation": null}, {"text": "well", "start": 376, "end": 380, "annotation": null}, {"text": "as", "start": 381, "end": 383, "annotation": null}, {"text": "the", "start": 384, "end": 387, "annotation": null}, {"text": "helical", "start": 388, "end": 395, "annotation": null}, {"text": "twisting", "start": 396, "end": 404, "annotation": null}, {"text": "power", "start": 405, "end": 410, "annotation": null}, {"text": "of", "start": 411, "end": 413, "annotation": null}, {"text": "the", "start": 414, "end": 417, "annotation": null}, {"text": "chiral", "start": 418, "end": 424, "annotation": null}, {"text": "compounds", "start": 425, "end": 434, "annotation": null}, {"text": ",", "start": 434, "end": 435, "annotation": null}, {"text": "the", "start": 436, "end": 439, "annotation": null}, {"text": "anchoring", "start": 440, "end": 449, "annotation": null}, {"text": "energy", "start": 450, "end": 456, "annotation": null}, {"text": "and", "start": 457, "end": 460, "annotation": null}, {"text": "the", "start": 461, "end": 464, "annotation": null}, {"text": "pre-tilt", "start": 465, "end": 473, "annotation": null}, {"text": "angle", "start": 474, "end": 479, "annotation": null}, {"text": "of", "start": 480, "end": 482, "annotation": null}, {"text": "alignment", "start": 483, "end": 492, "annotation": null}, {"text": "materials", "start": 493, "end": 502, "annotation": null}, {"text": ",", "start": 502, "end": 503, "annotation": null}, {"text": "the", "start": 504, "end": 507, "annotation": null}, {"text": "ratio", "start": 508, "end": 513, "annotation": null}, {"text": "between", "start": 514, "end": 521, "annotation": null}, {"text": "the", "start": 522, "end": 525, "annotation": null}, {"text": "cell", "start": 526, "end": 530, "annotation": null}, {"text": "gap", "start": 531, "end": 534, "annotation": null}, {"text": "and", "start": 535, "end": 538, "annotation": null}, {"text": "the", "start": 539, "end": 542, "annotation": null}, {"text": "helical", "start": 543, "end": 550, "annotation": null}, {"text": "pitch", "start": 551, "end": 556, "annotation": null}, {"text": "(", "start": 557, "end": 558, "annotation": null}, {"text": "d", "start": 558, "end": 559, "annotation": null}, {"text": "/", "start": 559, "end": 560, "annotation": null}, {"text": "P0", "start": 560, "end": 562, "annotation": null}, {"text": ")", "start": 562, "end": 563, "annotation": null}, {"text": ".", "start": 563, "end": 564, "annotation": null}], [{"text": "After", "start": 565, "end": 570, "annotation": null}, {"text": "optimisation", "start": 571, "end": 583, "annotation": null}, {"text": ",", "start": 583, "end": 584, "annotation": null}, {"text": "we", "start": 585, "end": 587, "annotation": null}, {"text": "prepared", "start": 588, "end": 596, "annotation": null}, {"text": "test", "start": 597, "end": 601, "annotation": null}, {"text": "cells", "start": 602, "end": 607, "annotation": null}, {"text": "with", "start": 608, "end": 612, "annotation": null}, {"text": "low", "start": 613, "end": 616, "annotation": null}, {"text": "operating", "start": 617, "end": 626, "annotation": null}, {"text": "voltage", "start": 627, "end": 634, "annotation": null}, {"text": "\u2013", "start": 634, "end": 635, "annotation": null}, {"text": "from", "start": 635, "end": 639, "annotation": null}, {"text": "1.5", "start": 640, "end": 643, "annotation": null}, {"text": "till", "start": 644, "end": 648, "annotation": null}, {"text": "5.0", "start": 649, "end": 652, "annotation": null}, {"text": "V", "start": 652, "end": 653, "annotation": null}, {"text": ",", "start": 653, "end": 654, "annotation": null}, {"text": "fast", "start": 655, "end": 659, "annotation": null}, {"text": "response", "start": 660, "end": 668, "annotation": null}, {"text": "time", "start": 669, "end": 673, "annotation": null}, {"text": "(", "start": 674, "end": 675, "annotation": null}, {"text": "\u03c4on", "start": 675, "end": 678, "annotation": null}, {"text": "+", "start": 679, "end": 680, "annotation": null}, {"text": "\u03c4off", "start": 681, "end": 685, "annotation": null}, {"text": ")", "start": 685, "end": 686, "annotation": null}, {"text": "\u2013", "start": 686, "end": 687, "annotation": null}, {"text": "less", "start": 687, "end": 691, "annotation": null}, {"text": "than", "start": 692, "end": 696, "annotation": null}, {"text": "1", "start": 697, "end": 698, "annotation": null}, {"text": "ms", "start": 698, "end": 700, "annotation": null}, {"text": ",", "start": 700, "end": 701, "annotation": null}, {"text": "wide", "start": 702, "end": 706, "annotation": null}, {"text": "operating", "start": 707, "end": 716, "annotation": null}, {"text": "temperature", "start": 717, "end": 728, "annotation": null}, {"text": "range", "start": 729, "end": 734, "annotation": null}, {"text": "from", "start": 735, "end": 739, "annotation": null}, {"text": "\u2212", "start": 740, "end": 741, "annotation": null}, {"text": "40", "start": 741, "end": 743, "annotation": null}, {"text": "\u00b0", "start": 743, "end": 744, "annotation": null}, {"text": "C", "start": 744, "end": 745, "annotation": null}, {"text": "till", "start": 746, "end": 750, "annotation": null}, {"text": "+", "start": 751, "end": 752, "annotation": null}, {"text": "100", "start": 752, "end": 755, "annotation": null}, {"text": "\u00b0", "start": 755, "end": 756, "annotation": null}, {"text": "C", "start": 756, "end": 757, "annotation": null}, {"text": ",", "start": 757, "end": 758, "annotation": null}, {"text": "and", "start": 759, "end": 762, "annotation": null}, {"text": "good", "start": 763, "end": 767, "annotation": null}, {"text": "thermal", "start": 768, "end": 775, "annotation": null}, {"text": "stability", "start": 776, "end": 785, "annotation": null}, {"text": ".", "start": 785, "end": 786, "annotation": null}], [{"text": "It", "start": 787, "end": 789, "annotation": null}, {"text": "should", "start": 790, "end": 796, "annotation": null}, {"text": "be", "start": 797, "end": 799, "annotation": null}, {"text": "noted", "start": 800, "end": 805, "annotation": null}, {"text": "that", "start": 806, "end": 810, "annotation": null}, {"text": "the", "start": 811, "end": 814, "annotation": null}, {"text": "response", "start": 815, "end": 823, "annotation": null}, {"text": "time", "start": 824, "end": 828, "annotation": null}, {"text": "of", "start": 829, "end": 831, "annotation": null}, {"text": "the", "start": 832, "end": 835, "annotation": null}, {"text": "new", "start": 836, "end": 839, "annotation": null}, {"text": "electro-optical", "start": 840, "end": 855, "annotation": null}, {"text": "mode", "start": 856, "end": 860, "annotation": null}, {"text": "does", "start": 861, "end": 865, "annotation": null}, {"text": "not", "start": 866, "end": 869, "annotation": null}, {"text": "strongly", "start": 870, "end": 878, "annotation": null}, {"text": "depend", "start": 879, "end": 885, "annotation": null}, {"text": "on", "start": 886, "end": 888, "annotation": null}, {"text": "the", "start": 889, "end": 892, "annotation": null}, {"text": "cell", "start": 893, "end": 897, "annotation": null}, {"text": "gap", "start": 898, "end": 901, "annotation": null}, {"text": ",", "start": 901, "end": 902, "annotation": null}, {"text": "which", "start": 903, "end": 908, "annotation": null}, {"text": "is", "start": 909, "end": 911, "annotation": null}, {"text": "in", "start": 912, "end": 914, "annotation": null}, {"text": "contrast", "start": 915, "end": 923, "annotation": null}, {"text": "to", "start": 924, "end": 926, "annotation": null}, {"text": "other", "start": 927, "end": 932, "annotation": null}, {"text": "known", "start": 933, "end": 938, "annotation": null}, {"text": "operating", "start": 939, "end": 948, "annotation": null}, {"text": "modes", "start": 949, "end": 954, "annotation": null}, {"text": ".", "start": 954, "end": 955, "annotation": null}], [{"text": "We", "start": 956, "end": 958, "annotation": null}, {"text": "have", "start": 959, "end": 963, "annotation": null}, {"text": "achieved", "start": 964, "end": 972, "annotation": null}, {"text": "rather", "start": 973, "end": 979, "annotation": null}, {"text": "linear", "start": 980, "end": 986, "annotation": null}, {"text": "than", "start": 987, "end": 991, "annotation": null}, {"text": "quadratic", "start": 992, "end": 1001, "annotation": null}, {"text": "dependence", "start": 1002, "end": 1012, "annotation": null}, {"text": "of", "start": 1013, "end": 1015, "annotation": null}, {"text": "the", "start": 1016, "end": 1019, "annotation": null}, {"text": "response", "start": 1020, "end": 1028, "annotation": null}, {"text": "time", "start": 1029, "end": 1033, "annotation": null}, {"text": "when", "start": 1034, "end": 1038, "annotation": null}, {"text": "changing", "start": 1039, "end": 1047, "annotation": null}, {"text": "the", "start": 1048, "end": 1051, "annotation": null}, {"text": "thickness", "start": 1052, "end": 1061, "annotation": null}, {"text": "of", "start": 1062, "end": 1064, "annotation": null}, {"text": "the", "start": 1065, "end": 1068, "annotation": null}, {"text": "cell", "start": 1069, "end": 1073, "annotation": null}, {"text": ".", "start": 1073, "end": 1074, "annotation": null}]]} -{"remark": "doping_annt2", "text": "Holmium-doped lanthanum aluminate (LaAlO3) powder phosphors have been prepared at furnace temperatures as low as 500\u00b0C by using the combustion route without further calcining treatment. Powder X-ray diffraction and Fourier-transform infrared spectrometry measurements were used to characterize the prepared combustion products, while the optical properties were studied using UV\u2013vis\u2013NIR and photoluminescence spectroscopy. The Judd\u2013Ofelt (J-O) model was applied to obtain the oscillator strengths (f) and three phenomenological intensity parameters. Using J-O parameters (\u03a92, \u03a94 and \u03a96) the radiative transition probabilities (Aab), radiative lifetimes (\u03c4R) and branching ratios have been calculated for certain excited states of Ho3+. Using the Fuchtbauer\u2013Ladenberg formula, the stimulated emission cross-sections (\u03c3emi) for some interesting transitions, such as 5S2\u21925I8 and 5F5\u21925I8 of Ho3+ in LaAlO3, were determined and discussed.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Holmium", "start": 0, "end": 7, "annotation": "DOPANT"}, {"text": "-", "start": 7, "end": 8, "annotation": null}, {"text": "doped", "start": 8, "end": 13, "annotation": null}, {"text": "lanthanum", "start": 14, "end": 23, "annotation": "BASEMAT"}, {"text": "aluminate", "start": 24, "end": 33, "annotation": "BASEMAT"}, {"text": "(", "start": 34, "end": 35, "annotation": null}, {"text": "LaAlO3", "start": 35, "end": 41, "annotation": "BASEMAT"}, {"text": ")", "start": 41, "end": 42, "annotation": null}, {"text": "powder", "start": 43, "end": 49, "annotation": null}, {"text": "phosphors", "start": 50, "end": 59, "annotation": null}, {"text": "have", "start": 60, "end": 64, "annotation": null}, {"text": "been", "start": 65, "end": 69, "annotation": null}, {"text": "prepared", "start": 70, "end": 78, "annotation": null}, {"text": "at", "start": 79, "end": 81, "annotation": null}, {"text": "furnace", "start": 82, "end": 89, "annotation": null}, {"text": "temperatures", "start": 90, "end": 102, "annotation": null}, {"text": "as", "start": 103, "end": 105, "annotation": null}, {"text": "low", "start": 106, "end": 109, "annotation": null}, {"text": "as", "start": 110, "end": 112, "annotation": null}, {"text": "500", "start": 113, "end": 116, "annotation": null}, {"text": "\u00b0", "start": 116, "end": 117, "annotation": null}, {"text": "C", "start": 117, "end": 118, "annotation": null}, {"text": "by", "start": 119, "end": 121, "annotation": null}, {"text": "using", "start": 122, "end": 127, "annotation": null}, {"text": "the", "start": 128, "end": 131, "annotation": null}, {"text": "combustion", "start": 132, "end": 142, "annotation": null}, {"text": "route", "start": 143, "end": 148, "annotation": null}, {"text": "without", "start": 149, "end": 156, "annotation": null}, {"text": "further", "start": 157, "end": 164, "annotation": null}, {"text": "calcining", "start": 165, "end": 174, "annotation": null}, {"text": "treatment", "start": 175, "end": 184, "annotation": null}, {"text": ".", "start": 184, "end": 185, "annotation": null}], [{"text": "Powder", "start": 186, "end": 192, "annotation": null}, {"text": "X-ray", "start": 193, "end": 198, "annotation": null}, {"text": "diffraction", "start": 199, "end": 210, "annotation": null}, {"text": "and", "start": 211, "end": 214, "annotation": null}, {"text": "Fourier", "start": 215, "end": 222, "annotation": null}, {"text": "-", "start": 222, "end": 223, "annotation": null}, {"text": "transform", "start": 223, "end": 232, "annotation": null}, {"text": "infrared", "start": 233, "end": 241, "annotation": null}, {"text": "spectrometry", "start": 242, "end": 254, "annotation": null}, {"text": "measurements", "start": 255, "end": 267, "annotation": null}, {"text": "were", "start": 268, "end": 272, "annotation": null}, {"text": "used", "start": 273, "end": 277, "annotation": null}, {"text": "to", "start": 278, "end": 280, "annotation": null}, {"text": "characterize", "start": 281, "end": 293, "annotation": null}, {"text": "the", "start": 294, "end": 297, "annotation": null}, {"text": "prepared", "start": 298, "end": 306, "annotation": null}, {"text": "combustion", "start": 307, "end": 317, "annotation": null}, {"text": "products", "start": 318, "end": 326, "annotation": null}, {"text": ",", "start": 326, "end": 327, "annotation": null}, {"text": "while", "start": 328, "end": 333, "annotation": null}, {"text": "the", "start": 334, "end": 337, "annotation": null}, {"text": "optical", "start": 338, "end": 345, "annotation": null}, {"text": "properties", "start": 346, "end": 356, "annotation": null}, {"text": "were", "start": 357, "end": 361, "annotation": null}, {"text": "studied", "start": 362, "end": 369, "annotation": null}, {"text": "using", "start": 370, "end": 375, "annotation": null}, {"text": "UV", "start": 376, "end": 378, "annotation": null}, {"text": "\u2013", "start": 378, "end": 379, "annotation": null}, {"text": "vis", "start": 379, "end": 382, "annotation": null}, {"text": "\u2013", "start": 382, "end": 383, "annotation": null}, {"text": "NIR", "start": 383, "end": 386, "annotation": null}, {"text": "and", "start": 387, "end": 390, "annotation": null}, {"text": "photoluminescence", "start": 391, "end": 408, "annotation": null}, {"text": "spectroscopy", "start": 409, "end": 421, "annotation": null}, {"text": ".", "start": 421, "end": 422, "annotation": null}], [{"text": "The", "start": 423, "end": 426, "annotation": null}, {"text": "Judd", "start": 427, "end": 431, "annotation": null}, {"text": "\u2013", "start": 431, "end": 432, "annotation": null}, {"text": "Ofelt", "start": 432, "end": 437, "annotation": null}, {"text": "(", "start": 438, "end": 439, "annotation": null}, {"text": "J-O", "start": 439, "end": 442, "annotation": null}, {"text": ")", "start": 442, "end": 443, "annotation": null}, {"text": "model", "start": 444, "end": 449, "annotation": null}, {"text": "was", "start": 450, "end": 453, "annotation": null}, {"text": "applied", "start": 454, "end": 461, "annotation": null}, {"text": "to", "start": 462, "end": 464, "annotation": null}, {"text": "obtain", "start": 465, "end": 471, "annotation": null}, {"text": "the", "start": 472, "end": 475, "annotation": null}, {"text": "oscillator", "start": 476, "end": 486, "annotation": null}, {"text": "strengths", "start": 487, "end": 496, "annotation": null}, {"text": "(", "start": 497, "end": 498, "annotation": null}, {"text": "f", "start": 498, "end": 499, "annotation": null}, {"text": ")", "start": 499, "end": 500, "annotation": null}, {"text": "and", "start": 501, "end": 504, "annotation": null}, {"text": "three", "start": 505, "end": 510, "annotation": null}, {"text": "phenomenological", "start": 511, "end": 527, "annotation": null}, {"text": "intensity", "start": 528, "end": 537, "annotation": null}, {"text": "parameters", "start": 538, "end": 548, "annotation": null}, {"text": ".", "start": 548, "end": 549, "annotation": null}], [{"text": "Using", "start": 550, "end": 555, "annotation": null}, {"text": "J-O", "start": 556, "end": 559, "annotation": null}, {"text": "parameters", "start": 560, "end": 570, "annotation": null}, {"text": "(", "start": 571, "end": 572, "annotation": null}, {"text": "\u03a92", "start": 572, "end": 574, "annotation": null}, {"text": ",", "start": 574, "end": 575, "annotation": null}, {"text": "\u03a94", "start": 576, "end": 578, "annotation": null}, {"text": "and", "start": 579, "end": 582, "annotation": null}, {"text": "\u03a96", "start": 583, "end": 585, "annotation": null}, {"text": ")", "start": 585, "end": 586, "annotation": null}, {"text": "the", "start": 587, "end": 590, "annotation": null}, {"text": "radiative", "start": 591, "end": 600, "annotation": null}, {"text": "transition", "start": 601, "end": 611, "annotation": null}, {"text": "probabilities", "start": 612, "end": 625, "annotation": null}, {"text": "(", "start": 626, "end": 627, "annotation": null}, {"text": "Aab", "start": 627, "end": 630, "annotation": null}, {"text": ")", "start": 630, "end": 631, "annotation": null}, {"text": ",", "start": 631, "end": 632, "annotation": null}, {"text": "radiative", "start": 633, "end": 642, "annotation": null}, {"text": "lifetimes", "start": 643, "end": 652, "annotation": null}, {"text": "(", "start": 653, "end": 654, "annotation": null}, {"text": "\u03c4R", "start": 654, "end": 656, "annotation": null}, {"text": ")", "start": 656, "end": 657, "annotation": null}, {"text": "and", "start": 658, "end": 661, "annotation": null}, {"text": "branching", "start": 662, "end": 671, "annotation": null}, {"text": "ratios", "start": 672, "end": 678, "annotation": null}, {"text": "have", "start": 679, "end": 683, "annotation": null}, {"text": "been", "start": 684, "end": 688, "annotation": null}, {"text": "calculated", "start": 689, "end": 699, "annotation": null}, {"text": "for", "start": 700, "end": 703, "annotation": null}, {"text": "certain", "start": 704, "end": 711, "annotation": null}, {"text": "excited", "start": 712, "end": 719, "annotation": null}, {"text": "states", "start": 720, "end": 726, "annotation": null}, {"text": "of", "start": 727, "end": 729, "annotation": null}, {"text": "Ho3+", "start": 730, "end": 734, "annotation": null}, {"text": ".", "start": 734, "end": 735, "annotation": null}], [{"text": "Using", "start": 736, "end": 741, "annotation": null}, {"text": "the", "start": 742, "end": 745, "annotation": null}, {"text": "Fuchtbauer", "start": 746, "end": 756, "annotation": null}, {"text": "\u2013", "start": 756, "end": 757, "annotation": null}, {"text": "Ladenberg", "start": 757, "end": 766, "annotation": null}, {"text": "formula", "start": 767, "end": 774, "annotation": null}, {"text": ",", "start": 774, "end": 775, "annotation": null}, {"text": "the", "start": 776, "end": 779, "annotation": null}, {"text": "stimulated", "start": 780, "end": 790, "annotation": null}, {"text": "emission", "start": 791, "end": 799, "annotation": null}, {"text": "cross-sections", "start": 800, "end": 814, "annotation": null}, {"text": "(", "start": 815, "end": 816, "annotation": null}, {"text": "\u03c3emi", "start": 816, "end": 820, "annotation": null}, {"text": ")", "start": 820, "end": 821, "annotation": null}, {"text": "for", "start": 822, "end": 825, "annotation": null}, {"text": "some", "start": 826, "end": 830, "annotation": null}, {"text": "interesting", "start": 831, "end": 842, "annotation": null}, {"text": "transitions", "start": 843, "end": 854, "annotation": null}, {"text": ",", "start": 854, "end": 855, "annotation": null}, {"text": "such", "start": 856, "end": 860, "annotation": null}, {"text": "as", "start": 861, "end": 863, "annotation": null}, {"text": "5S2\u21925I8", "start": 864, "end": 871, "annotation": null}, {"text": "and", "start": 872, "end": 875, "annotation": null}, {"text": "5F5\u21925I8", "start": 876, "end": 883, "annotation": null}, {"text": "of", "start": 884, "end": 886, "annotation": null}, {"text": "Ho3+", "start": 887, "end": 891, "annotation": "DOPANT"}, {"text": "in", "start": 892, "end": 894, "annotation": null}, {"text": "LaAlO3", "start": 895, "end": 901, "annotation": "BASEMAT"}, {"text": ",", "start": 901, "end": 902, "annotation": null}, {"text": "were", "start": 903, "end": 907, "annotation": null}, {"text": "determined", "start": 908, "end": 918, "annotation": null}, {"text": "and", "start": 919, "end": 922, "annotation": null}, {"text": "discussed", "start": 923, "end": 932, "annotation": null}, {"text": ".", "start": 932, "end": 933, "annotation": null}]]} +{"remark": "doping_annt3", "text": "We report on a graphite electrode onto which polypyrrole was electrodeposited and then doped with chromate ion. This electrode can serve as a Cr(VI)-selective solid-state electrode. Electropolymerization of pyrrole was performed potentiostatically at 0.80V (vs. SCE) using battery graphite as the working electrode in a solution containing 0.10M of pyrrole and 20mM of chromate. A platinum wire was used as an auxiliary electrode. The new electrode displays high selectivity, a very wide dynamic range, a sufficiently fast response time and a good shelf lifetime. It shows a linear Nernstian response over 1.0\u00d710\u22126 to 1.0\u00d710\u22121M concentration range (with a slope of 26.55\u00b10.20mV per log of concentration). The detection limit is 0.5\u03bcM, and the pH optimum is 7.0. FigureA highly selective solid state Cr(VI) ion-selective electrode based on polypyrrole conducting polymer was prepared. The introduced Cr(VI) micro sensor electrode exhibited linear response over a wide working concentration range with a high regression coefficient and a near Nernstian slope. The SEM image of PPy/CrO4 thin film shows unevenly distributed nanoparticles.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "report", "start": 3, "end": 9, "annotation": null}, {"text": "on", "start": 10, "end": 12, "annotation": null}, {"text": "a", "start": 13, "end": 14, "annotation": null}, {"text": "graphite", "start": 15, "end": 23, "annotation": null}, {"text": "electrode", "start": 24, "end": 33, "annotation": null}, {"text": "onto", "start": 34, "end": 38, "annotation": null}, {"text": "which", "start": 39, "end": 44, "annotation": null}, {"text": "polypyrrole", "start": 45, "end": 56, "annotation": "BASEMAT"}, {"text": "was", "start": 57, "end": 60, "annotation": null}, {"text": "electrodeposited", "start": 61, "end": 77, "annotation": null}, {"text": "and", "start": 78, "end": 81, "annotation": null}, {"text": "then", "start": 82, "end": 86, "annotation": null}, {"text": "doped", "start": 87, "end": 92, "annotation": null}, {"text": "with", "start": 93, "end": 97, "annotation": null}, {"text": "chromate", "start": 98, "end": 106, "annotation": "DOPANT"}, {"text": "ion", "start": 107, "end": 110, "annotation": "DOPANT"}, {"text": ".", "start": 110, "end": 111, "annotation": null}], [{"text": "This", "start": 112, "end": 116, "annotation": null}, {"text": "electrode", "start": 117, "end": 126, "annotation": null}, {"text": "can", "start": 127, "end": 130, "annotation": null}, {"text": "serve", "start": 131, "end": 136, "annotation": null}, {"text": "as", "start": 137, "end": 139, "annotation": null}, {"text": "a", "start": 140, "end": 141, "annotation": null}, {"text": "Cr(VI)", "start": 142, "end": 148, "annotation": null}, {"text": "-", "start": 148, "end": 149, "annotation": null}, {"text": "selective", "start": 149, "end": 158, "annotation": null}, {"text": "solid", "start": 159, "end": 164, "annotation": null}, {"text": "-", "start": 164, "end": 165, "annotation": null}, {"text": "state", "start": 165, "end": 170, "annotation": null}, {"text": "electrode", "start": 171, "end": 180, "annotation": null}, {"text": ".", "start": 180, "end": 181, "annotation": null}], [{"text": "Electropolymerization", "start": 182, "end": 203, "annotation": null}, {"text": "of", "start": 204, "end": 206, "annotation": null}, {"text": "pyrrole", "start": 207, "end": 214, "annotation": null}, {"text": "was", "start": 215, "end": 218, "annotation": null}, {"text": "performed", "start": 219, "end": 228, "annotation": null}, {"text": "potentiostatically", "start": 229, "end": 247, "annotation": null}, {"text": "at", "start": 248, "end": 250, "annotation": null}, {"text": "0.80", "start": 251, "end": 255, "annotation": null}, {"text": "V", "start": 255, "end": 256, "annotation": null}, {"text": "(", "start": 257, "end": 258, "annotation": null}, {"text": "vs", "start": 258, "end": 260, "annotation": null}, {"text": ".", "start": 260, "end": 261, "annotation": null}], [{"text": "SCE", "start": 262, "end": 265, "annotation": null}, {"text": ")", "start": 265, "end": 266, "annotation": null}, {"text": "using", "start": 267, "end": 272, "annotation": null}, {"text": "battery", "start": 273, "end": 280, "annotation": null}, {"text": "graphite", "start": 281, "end": 289, "annotation": null}, {"text": "as", "start": 290, "end": 292, "annotation": null}, {"text": "the", "start": 293, "end": 296, "annotation": null}, {"text": "working", "start": 297, "end": 304, "annotation": null}, {"text": "electrode", "start": 305, "end": 314, "annotation": null}, {"text": "in", "start": 315, "end": 317, "annotation": null}, {"text": "a", "start": 318, "end": 319, "annotation": null}, {"text": "solution", "start": 320, "end": 328, "annotation": null}, {"text": "containing", "start": 329, "end": 339, "annotation": null}, {"text": "0.10", "start": 340, "end": 344, "annotation": null}, {"text": "M", "start": 344, "end": 345, "annotation": null}, {"text": "of", "start": 346, "end": 348, "annotation": null}, {"text": "pyrrole", "start": 349, "end": 356, "annotation": null}, {"text": "and", "start": 357, "end": 360, "annotation": null}, {"text": "20", "start": 361, "end": 363, "annotation": null}, {"text": "mM", "start": 363, "end": 365, "annotation": null}, {"text": "of", "start": 366, "end": 368, "annotation": null}, {"text": "chromate", "start": 369, "end": 377, "annotation": null}, {"text": ".", "start": 377, "end": 378, "annotation": null}], [{"text": "A", "start": 379, "end": 380, "annotation": null}, {"text": "platinum", "start": 381, "end": 389, "annotation": null}, {"text": "wire", "start": 390, "end": 394, "annotation": null}, {"text": "was", "start": 395, "end": 398, "annotation": null}, {"text": "used", "start": 399, "end": 403, "annotation": null}, {"text": "as", "start": 404, "end": 406, "annotation": null}, {"text": "an", "start": 407, "end": 409, "annotation": null}, {"text": "auxiliary", "start": 410, "end": 419, "annotation": null}, {"text": "electrode", "start": 420, "end": 429, "annotation": null}, {"text": ".", "start": 429, "end": 430, "annotation": null}], [{"text": "The", "start": 431, "end": 434, "annotation": null}, {"text": "new", "start": 435, "end": 438, "annotation": null}, {"text": "electrode", "start": 439, "end": 448, "annotation": null}, {"text": "displays", "start": 449, "end": 457, "annotation": null}, {"text": "high", "start": 458, "end": 462, "annotation": null}, {"text": "selectivity", "start": 463, "end": 474, "annotation": null}, {"text": ",", "start": 474, "end": 475, "annotation": null}, {"text": "a", "start": 476, "end": 477, "annotation": null}, {"text": "very", "start": 478, "end": 482, "annotation": null}, {"text": "wide", "start": 483, "end": 487, "annotation": null}, {"text": "dynamic", "start": 488, "end": 495, "annotation": null}, {"text": "range", "start": 496, "end": 501, "annotation": null}, {"text": ",", "start": 501, "end": 502, "annotation": null}, {"text": "a", "start": 503, "end": 504, "annotation": null}, {"text": "sufficiently", "start": 505, "end": 517, "annotation": null}, {"text": "fast", "start": 518, "end": 522, "annotation": null}, {"text": "response", "start": 523, "end": 531, "annotation": null}, {"text": "time", "start": 532, "end": 536, "annotation": null}, {"text": "and", "start": 537, "end": 540, "annotation": null}, {"text": "a", "start": 541, "end": 542, "annotation": null}, {"text": "good", "start": 543, "end": 547, "annotation": null}, {"text": "shelf", "start": 548, "end": 553, "annotation": null}, {"text": "lifetime", "start": 554, "end": 562, "annotation": null}, {"text": ".", "start": 562, "end": 563, "annotation": null}], [{"text": "It", "start": 564, "end": 566, "annotation": null}, {"text": "shows", "start": 567, "end": 572, "annotation": null}, {"text": "a", "start": 573, "end": 574, "annotation": null}, {"text": "linear", "start": 575, "end": 581, "annotation": null}, {"text": "Nernstian", "start": 582, "end": 591, "annotation": null}, {"text": "response", "start": 592, "end": 600, "annotation": null}, {"text": "over", "start": 601, "end": 605, "annotation": null}, {"text": "1.0", "start": 606, "end": 609, "annotation": null}, {"text": "\u00d7", "start": 609, "end": 610, "annotation": null}, {"text": "10", "start": 610, "end": 612, "annotation": null}, {"text": "\u2212", "start": 612, "end": 613, "annotation": null}, {"text": "6", "start": 613, "end": 614, "annotation": null}, {"text": "to", "start": 615, "end": 617, "annotation": null}, {"text": "1.0", "start": 618, "end": 621, "annotation": null}, {"text": "\u00d7", "start": 621, "end": 622, "annotation": null}, {"text": "10", "start": 622, "end": 624, "annotation": null}, {"text": "\u2212", "start": 624, "end": 625, "annotation": null}, {"text": "1", "start": 625, "end": 626, "annotation": null}, {"text": "M", "start": 626, "end": 627, "annotation": null}, {"text": "concentration", "start": 628, "end": 641, "annotation": null}, {"text": "range", "start": 642, "end": 647, "annotation": null}, {"text": "(", "start": 648, "end": 649, "annotation": null}, {"text": "with", "start": 649, "end": 653, "annotation": null}, {"text": "a", "start": 654, "end": 655, "annotation": null}, {"text": "slope", "start": 656, "end": 661, "annotation": null}, {"text": "of", "start": 662, "end": 664, "annotation": null}, {"text": "26.55", "start": 665, "end": 670, "annotation": null}, {"text": "\u00b1", "start": 670, "end": 671, "annotation": null}, {"text": "0.20", "start": 671, "end": 675, "annotation": null}, {"text": "mV", "start": 675, "end": 677, "annotation": null}, {"text": "per", "start": 678, "end": 681, "annotation": null}, {"text": "log", "start": 682, "end": 685, "annotation": null}, {"text": "of", "start": 686, "end": 688, "annotation": null}, {"text": "concentration", "start": 689, "end": 702, "annotation": null}, {"text": ")", "start": 702, "end": 703, "annotation": null}, {"text": ".", "start": 703, "end": 704, "annotation": null}], [{"text": "The", "start": 705, "end": 708, "annotation": null}, {"text": "detection", "start": 709, "end": 718, "annotation": null}, {"text": "limit", "start": 719, "end": 724, "annotation": null}, {"text": "is", "start": 725, "end": 727, "annotation": null}, {"text": "0.5", "start": 728, "end": 731, "annotation": null}, {"text": "\u03bcM", "start": 731, "end": 733, "annotation": null}, {"text": ",", "start": 733, "end": 734, "annotation": null}, {"text": "and", "start": 735, "end": 738, "annotation": null}, {"text": "the", "start": 739, "end": 742, "annotation": null}, {"text": "pH", "start": 743, "end": 745, "annotation": null}, {"text": "optimum", "start": 746, "end": 753, "annotation": null}, {"text": "is", "start": 754, "end": 756, "annotation": null}, {"text": "7.0", "start": 757, "end": 760, "annotation": null}, {"text": ".", "start": 760, "end": 761, "annotation": null}], [{"text": "FigureA", "start": 762, "end": 769, "annotation": null}, {"text": "highly", "start": 770, "end": 776, "annotation": null}, {"text": "selective", "start": 777, "end": 786, "annotation": null}, {"text": "solid", "start": 787, "end": 792, "annotation": null}, {"text": "state", "start": 793, "end": 798, "annotation": null}, {"text": "Cr(VI)", "start": 799, "end": 805, "annotation": null}, {"text": "ion", "start": 806, "end": 809, "annotation": null}, {"text": "-", "start": 809, "end": 810, "annotation": null}, {"text": "selective", "start": 810, "end": 819, "annotation": null}, {"text": "electrode", "start": 820, "end": 829, "annotation": null}, {"text": "based", "start": 830, "end": 835, "annotation": null}, {"text": "on", "start": 836, "end": 838, "annotation": null}, {"text": "polypyrrole", "start": 839, "end": 850, "annotation": null}, {"text": "conducting", "start": 851, "end": 861, "annotation": null}, {"text": "polymer", "start": 862, "end": 869, "annotation": null}, {"text": "was", "start": 870, "end": 873, "annotation": null}, {"text": "prepared", "start": 874, "end": 882, "annotation": null}, {"text": ".", "start": 882, "end": 883, "annotation": null}], [{"text": "The", "start": 884, "end": 887, "annotation": null}, {"text": "introduced", "start": 888, "end": 898, "annotation": null}, {"text": "Cr(VI)", "start": 899, "end": 905, "annotation": null}, {"text": "micro", "start": 906, "end": 911, "annotation": null}, {"text": "sensor", "start": 912, "end": 918, "annotation": null}, {"text": "electrode", "start": 919, "end": 928, "annotation": null}, {"text": "exhibited", "start": 929, "end": 938, "annotation": null}, {"text": "linear", "start": 939, "end": 945, "annotation": null}, {"text": "response", "start": 946, "end": 954, "annotation": null}, {"text": "over", "start": 955, "end": 959, "annotation": null}, {"text": "a", "start": 960, "end": 961, "annotation": null}, {"text": "wide", "start": 962, "end": 966, "annotation": null}, {"text": "working", "start": 967, "end": 974, "annotation": null}, {"text": "concentration", "start": 975, "end": 988, "annotation": null}, {"text": "range", "start": 989, "end": 994, "annotation": null}, {"text": "with", "start": 995, "end": 999, "annotation": null}, {"text": "a", "start": 1000, "end": 1001, "annotation": null}, {"text": "high", "start": 1002, "end": 1006, "annotation": null}, {"text": "regression", "start": 1007, "end": 1017, "annotation": null}, {"text": "coefficient", "start": 1018, "end": 1029, "annotation": null}, {"text": "and", "start": 1030, "end": 1033, "annotation": null}, {"text": "a", "start": 1034, "end": 1035, "annotation": null}, {"text": "near", "start": 1036, "end": 1040, "annotation": null}, {"text": "Nernstian", "start": 1041, "end": 1050, "annotation": null}, {"text": "slope", "start": 1051, "end": 1056, "annotation": null}, {"text": ".", "start": 1056, "end": 1057, "annotation": null}], [{"text": "The", "start": 1058, "end": 1061, "annotation": null}, {"text": "SEM", "start": 1062, "end": 1065, "annotation": null}, {"text": "image", "start": 1066, "end": 1071, "annotation": null}, {"text": "of", "start": 1072, "end": 1074, "annotation": null}, {"text": "PPy", "start": 1075, "end": 1078, "annotation": "BASEMAT"}, {"text": "/", "start": 1078, "end": 1079, "annotation": null}, {"text": "CrO4", "start": 1079, "end": 1083, "annotation": "DOPANT"}, {"text": "thin", "start": 1084, "end": 1088, "annotation": null}, {"text": "film", "start": 1089, "end": 1093, "annotation": null}, {"text": "shows", "start": 1094, "end": 1099, "annotation": null}, {"text": "unevenly", "start": 1100, "end": 1108, "annotation": null}, {"text": "distributed", "start": 1109, "end": 1120, "annotation": null}, {"text": "nanoparticles", "start": 1121, "end": 1134, "annotation": null}, {"text": ".", "start": 1134, "end": 1135, "annotation": null}]], "meta": {"doi": "10.1007/s00604-012-0802-9"}} +{"remark": "doping_annt1", "text": "\u00a9 2016 Informa UK Limited, trading as Taylor & Francis Group. We report on chiral-nematic mixtures containing viscous chiral dopants, composed of rigid rod-like chiral molecules, in order to solve the problem of backflow in the middle layers of the liquid crystal cells. During the study, the viscoelastic properties of the liquid crystal compositions have been optimised, as well as the helical twisting power of the chiral compounds, the anchoring energy and the pre-tilt angle of alignment materials, the ratio between the cell gap and the helical pitch (d/P0). After optimisation, we prepared test cells with low operating voltage\u2013from 1.5 till 5.0V, fast response time (\u03c4on + \u03c4off)\u2013less than 1ms, wide operating temperature range from \u221240\u00b0C till +100\u00b0C, and good thermal stability. It should be noted that the response time of the new electro-optical mode does not strongly depend on the cell gap, which is in contrast to other known operating modes. We have achieved rather linear than quadratic dependence of the response time when changing the thickness of the cell.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 62, "end": 64, "annotation": null}, {"text": "report", "start": 65, "end": 71, "annotation": null}, {"text": "on", "start": 72, "end": 74, "annotation": null}, {"text": "chiral", "start": 75, "end": 81, "annotation": null}, {"text": "-", "start": 81, "end": 82, "annotation": null}, {"text": "nematic", "start": 82, "end": 89, "annotation": null}, {"text": "mixtures", "start": 90, "end": 98, "annotation": null}, {"text": "containing", "start": 99, "end": 109, "annotation": null}, {"text": "viscous", "start": 110, "end": 117, "annotation": null}, {"text": "chiral", "start": 118, "end": 124, "annotation": "DOPANT"}, {"text": "dopants", "start": 125, "end": 132, "annotation": null}, {"text": ",", "start": 132, "end": 133, "annotation": null}, {"text": "composed", "start": 134, "end": 142, "annotation": null}, {"text": "of", "start": 143, "end": 145, "annotation": null}, {"text": "rigid", "start": 146, "end": 151, "annotation": null}, {"text": "rod", "start": 152, "end": 155, "annotation": null}, {"text": "-", "start": 155, "end": 156, "annotation": null}, {"text": "like", "start": 156, "end": 160, "annotation": null}, {"text": "chiral", "start": 161, "end": 167, "annotation": null}, {"text": "molecules", "start": 168, "end": 177, "annotation": null}, {"text": ",", "start": 177, "end": 178, "annotation": null}, {"text": "in", "start": 179, "end": 181, "annotation": null}, {"text": "order", "start": 182, "end": 187, "annotation": null}, {"text": "to", "start": 188, "end": 190, "annotation": null}, {"text": "solve", "start": 191, "end": 196, "annotation": null}, {"text": "the", "start": 197, "end": 200, "annotation": null}, {"text": "problem", "start": 201, "end": 208, "annotation": null}, {"text": "of", "start": 209, "end": 211, "annotation": null}, {"text": "backflow", "start": 212, "end": 220, "annotation": null}, {"text": "in", "start": 221, "end": 223, "annotation": null}, {"text": "the", "start": 224, "end": 227, "annotation": null}, {"text": "middle", "start": 228, "end": 234, "annotation": null}, {"text": "layers", "start": 235, "end": 241, "annotation": null}, {"text": "of", "start": 242, "end": 244, "annotation": null}, {"text": "the", "start": 245, "end": 248, "annotation": null}, {"text": "liquid", "start": 249, "end": 255, "annotation": "BASEMAT"}, {"text": "crystal", "start": 256, "end": 263, "annotation": "BASEMAT"}, {"text": "cells", "start": 264, "end": 269, "annotation": null}, {"text": ".", "start": 269, "end": 270, "annotation": null}], [{"text": "During", "start": 271, "end": 277, "annotation": null}, {"text": "the", "start": 278, "end": 281, "annotation": null}, {"text": "study", "start": 282, "end": 287, "annotation": null}, {"text": ",", "start": 287, "end": 288, "annotation": null}, {"text": "the", "start": 289, "end": 292, "annotation": null}, {"text": "viscoelastic", "start": 293, "end": 305, "annotation": null}, {"text": "properties", "start": 306, "end": 316, "annotation": null}, {"text": "of", "start": 317, "end": 319, "annotation": null}, {"text": "the", "start": 320, "end": 323, "annotation": null}, {"text": "liquid", "start": 324, "end": 330, "annotation": null}, {"text": "crystal", "start": 331, "end": 338, "annotation": null}, {"text": "compositions", "start": 339, "end": 351, "annotation": null}, {"text": "have", "start": 352, "end": 356, "annotation": null}, {"text": "been", "start": 357, "end": 361, "annotation": null}, {"text": "optimised", "start": 362, "end": 371, "annotation": null}, {"text": ",", "start": 371, "end": 372, "annotation": null}, {"text": "as", "start": 373, "end": 375, "annotation": null}, {"text": "well", "start": 376, "end": 380, "annotation": null}, {"text": "as", "start": 381, "end": 383, "annotation": null}, {"text": "the", "start": 384, "end": 387, "annotation": null}, {"text": "helical", "start": 388, "end": 395, "annotation": null}, {"text": "twisting", "start": 396, "end": 404, "annotation": null}, {"text": "power", "start": 405, "end": 410, "annotation": null}, {"text": "of", "start": 411, "end": 413, "annotation": null}, {"text": "the", "start": 414, "end": 417, "annotation": null}, {"text": "chiral", "start": 418, "end": 424, "annotation": null}, {"text": "compounds", "start": 425, "end": 434, "annotation": null}, {"text": ",", "start": 434, "end": 435, "annotation": null}, {"text": "the", "start": 436, "end": 439, "annotation": null}, {"text": "anchoring", "start": 440, "end": 449, "annotation": null}, {"text": "energy", "start": 450, "end": 456, "annotation": null}, {"text": "and", "start": 457, "end": 460, "annotation": null}, {"text": "the", "start": 461, "end": 464, "annotation": null}, {"text": "pre-tilt", "start": 465, "end": 473, "annotation": null}, {"text": "angle", "start": 474, "end": 479, "annotation": null}, {"text": "of", "start": 480, "end": 482, "annotation": null}, {"text": "alignment", "start": 483, "end": 492, "annotation": null}, {"text": "materials", "start": 493, "end": 502, "annotation": null}, {"text": ",", "start": 502, "end": 503, "annotation": null}, {"text": "the", "start": 504, "end": 507, "annotation": null}, {"text": "ratio", "start": 508, "end": 513, "annotation": null}, {"text": "between", "start": 514, "end": 521, "annotation": null}, {"text": "the", "start": 522, "end": 525, "annotation": null}, {"text": "cell", "start": 526, "end": 530, "annotation": null}, {"text": "gap", "start": 531, "end": 534, "annotation": null}, {"text": "and", "start": 535, "end": 538, "annotation": null}, {"text": "the", "start": 539, "end": 542, "annotation": null}, {"text": "helical", "start": 543, "end": 550, "annotation": null}, {"text": "pitch", "start": 551, "end": 556, "annotation": null}, {"text": "(", "start": 557, "end": 558, "annotation": null}, {"text": "d", "start": 558, "end": 559, "annotation": null}, {"text": "/", "start": 559, "end": 560, "annotation": null}, {"text": "P0", "start": 560, "end": 562, "annotation": null}, {"text": ")", "start": 562, "end": 563, "annotation": null}, {"text": ".", "start": 563, "end": 564, "annotation": null}], [{"text": "After", "start": 565, "end": 570, "annotation": null}, {"text": "optimisation", "start": 571, "end": 583, "annotation": null}, {"text": ",", "start": 583, "end": 584, "annotation": null}, {"text": "we", "start": 585, "end": 587, "annotation": null}, {"text": "prepared", "start": 588, "end": 596, "annotation": null}, {"text": "test", "start": 597, "end": 601, "annotation": null}, {"text": "cells", "start": 602, "end": 607, "annotation": null}, {"text": "with", "start": 608, "end": 612, "annotation": null}, {"text": "low", "start": 613, "end": 616, "annotation": null}, {"text": "operating", "start": 617, "end": 626, "annotation": null}, {"text": "voltage", "start": 627, "end": 634, "annotation": null}, {"text": "\u2013", "start": 634, "end": 635, "annotation": null}, {"text": "from", "start": 635, "end": 639, "annotation": null}, {"text": "1.5", "start": 640, "end": 643, "annotation": null}, {"text": "till", "start": 644, "end": 648, "annotation": null}, {"text": "5.0", "start": 649, "end": 652, "annotation": null}, {"text": "V", "start": 652, "end": 653, "annotation": null}, {"text": ",", "start": 653, "end": 654, "annotation": null}, {"text": "fast", "start": 655, "end": 659, "annotation": null}, {"text": "response", "start": 660, "end": 668, "annotation": null}, {"text": "time", "start": 669, "end": 673, "annotation": null}, {"text": "(", "start": 674, "end": 675, "annotation": null}, {"text": "\u03c4on", "start": 675, "end": 678, "annotation": null}, {"text": "+", "start": 679, "end": 680, "annotation": null}, {"text": "\u03c4off", "start": 681, "end": 685, "annotation": null}, {"text": ")", "start": 685, "end": 686, "annotation": null}, {"text": "\u2013", "start": 686, "end": 687, "annotation": null}, {"text": "less", "start": 687, "end": 691, "annotation": null}, {"text": "than", "start": 692, "end": 696, "annotation": null}, {"text": "1", "start": 697, "end": 698, "annotation": null}, {"text": "ms", "start": 698, "end": 700, "annotation": null}, {"text": ",", "start": 700, "end": 701, "annotation": null}, {"text": "wide", "start": 702, "end": 706, "annotation": null}, {"text": "operating", "start": 707, "end": 716, "annotation": null}, {"text": "temperature", "start": 717, "end": 728, "annotation": null}, {"text": "range", "start": 729, "end": 734, "annotation": null}, {"text": "from", "start": 735, "end": 739, "annotation": null}, {"text": "\u2212", "start": 740, "end": 741, "annotation": null}, {"text": "40", "start": 741, "end": 743, "annotation": null}, {"text": "\u00b0", "start": 743, "end": 744, "annotation": null}, {"text": "C", "start": 744, "end": 745, "annotation": null}, {"text": "till", "start": 746, "end": 750, "annotation": null}, {"text": "+", "start": 751, "end": 752, "annotation": null}, {"text": "100", "start": 752, "end": 755, "annotation": null}, {"text": "\u00b0", "start": 755, "end": 756, "annotation": null}, {"text": "C", "start": 756, "end": 757, "annotation": null}, {"text": ",", "start": 757, "end": 758, "annotation": null}, {"text": "and", "start": 759, "end": 762, "annotation": null}, {"text": "good", "start": 763, "end": 767, "annotation": null}, {"text": "thermal", "start": 768, "end": 775, "annotation": null}, {"text": "stability", "start": 776, "end": 785, "annotation": null}, {"text": ".", "start": 785, "end": 786, "annotation": null}], [{"text": "It", "start": 787, "end": 789, "annotation": null}, {"text": "should", "start": 790, "end": 796, "annotation": null}, {"text": "be", "start": 797, "end": 799, "annotation": null}, {"text": "noted", "start": 800, "end": 805, "annotation": null}, {"text": "that", "start": 806, "end": 810, "annotation": null}, {"text": "the", "start": 811, "end": 814, "annotation": null}, {"text": "response", "start": 815, "end": 823, "annotation": null}, {"text": "time", "start": 824, "end": 828, "annotation": null}, {"text": "of", "start": 829, "end": 831, "annotation": null}, {"text": "the", "start": 832, "end": 835, "annotation": null}, {"text": "new", "start": 836, "end": 839, "annotation": null}, {"text": "electro-optical", "start": 840, "end": 855, "annotation": null}, {"text": "mode", "start": 856, "end": 860, "annotation": null}, {"text": "does", "start": 861, "end": 865, "annotation": null}, {"text": "not", "start": 866, "end": 869, "annotation": null}, {"text": "strongly", "start": 870, "end": 878, "annotation": null}, {"text": "depend", "start": 879, "end": 885, "annotation": null}, {"text": "on", "start": 886, "end": 888, "annotation": null}, {"text": "the", "start": 889, "end": 892, "annotation": null}, {"text": "cell", "start": 893, "end": 897, "annotation": null}, {"text": "gap", "start": 898, "end": 901, "annotation": null}, {"text": ",", "start": 901, "end": 902, "annotation": null}, {"text": "which", "start": 903, "end": 908, "annotation": null}, {"text": "is", "start": 909, "end": 911, "annotation": null}, {"text": "in", "start": 912, "end": 914, "annotation": null}, {"text": "contrast", "start": 915, "end": 923, "annotation": null}, {"text": "to", "start": 924, "end": 926, "annotation": null}, {"text": "other", "start": 927, "end": 932, "annotation": null}, {"text": "known", "start": 933, "end": 938, "annotation": null}, {"text": "operating", "start": 939, "end": 948, "annotation": null}, {"text": "modes", "start": 949, "end": 954, "annotation": null}, {"text": ".", "start": 954, "end": 955, "annotation": null}], [{"text": "We", "start": 956, "end": 958, "annotation": null}, {"text": "have", "start": 959, "end": 963, "annotation": null}, {"text": "achieved", "start": 964, "end": 972, "annotation": null}, {"text": "rather", "start": 973, "end": 979, "annotation": null}, {"text": "linear", "start": 980, "end": 986, "annotation": null}, {"text": "than", "start": 987, "end": 991, "annotation": null}, {"text": "quadratic", "start": 992, "end": 1001, "annotation": null}, {"text": "dependence", "start": 1002, "end": 1012, "annotation": null}, {"text": "of", "start": 1013, "end": 1015, "annotation": null}, {"text": "the", "start": 1016, "end": 1019, "annotation": null}, {"text": "response", "start": 1020, "end": 1028, "annotation": null}, {"text": "time", "start": 1029, "end": 1033, "annotation": null}, {"text": "when", "start": 1034, "end": 1038, "annotation": null}, {"text": "changing", "start": 1039, "end": 1047, "annotation": null}, {"text": "the", "start": 1048, "end": 1051, "annotation": null}, {"text": "thickness", "start": 1052, "end": 1061, "annotation": null}, {"text": "of", "start": 1062, "end": 1064, "annotation": null}, {"text": "the", "start": 1065, "end": 1068, "annotation": null}, {"text": "cell", "start": 1069, "end": 1073, "annotation": null}, {"text": ".", "start": 1073, "end": 1074, "annotation": null}]], "meta": {"doi": "10.1080/02678292.2016.1196757"}} +{"remark": "doping_annt2", "text": "Holmium-doped lanthanum aluminate (LaAlO3) powder phosphors have been prepared at furnace temperatures as low as 500\u00b0C by using the combustion route without further calcining treatment. Powder X-ray diffraction and Fourier-transform infrared spectrometry measurements were used to characterize the prepared combustion products, while the optical properties were studied using UV\u2013vis\u2013NIR and photoluminescence spectroscopy. The Judd\u2013Ofelt (J-O) model was applied to obtain the oscillator strengths (f) and three phenomenological intensity parameters. Using J-O parameters (\u03a92, \u03a94 and \u03a96) the radiative transition probabilities (Aab), radiative lifetimes (\u03c4R) and branching ratios have been calculated for certain excited states of Ho3+. Using the Fuchtbauer\u2013Ladenberg formula, the stimulated emission cross-sections (\u03c3emi) for some interesting transitions, such as 5S2\u21925I8 and 5F5\u21925I8 of Ho3+ in LaAlO3, were determined and discussed.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Holmium", "start": 0, "end": 7, "annotation": "DOPANT"}, {"text": "-", "start": 7, "end": 8, "annotation": null}, {"text": "doped", "start": 8, "end": 13, "annotation": null}, {"text": "lanthanum", "start": 14, "end": 23, "annotation": "BASEMAT"}, {"text": "aluminate", "start": 24, "end": 33, "annotation": "BASEMAT"}, {"text": "(", "start": 34, "end": 35, "annotation": null}, {"text": "LaAlO3", "start": 35, "end": 41, "annotation": "BASEMAT"}, {"text": ")", "start": 41, "end": 42, "annotation": null}, {"text": "powder", "start": 43, "end": 49, "annotation": null}, {"text": "phosphors", "start": 50, "end": 59, "annotation": null}, {"text": "have", "start": 60, "end": 64, "annotation": null}, {"text": "been", "start": 65, "end": 69, "annotation": null}, {"text": "prepared", "start": 70, "end": 78, "annotation": null}, {"text": "at", "start": 79, "end": 81, "annotation": null}, {"text": "furnace", "start": 82, "end": 89, "annotation": null}, {"text": "temperatures", "start": 90, "end": 102, "annotation": null}, {"text": "as", "start": 103, "end": 105, "annotation": null}, {"text": "low", "start": 106, "end": 109, "annotation": null}, {"text": "as", "start": 110, "end": 112, "annotation": null}, {"text": "500", "start": 113, "end": 116, "annotation": null}, {"text": "\u00b0", "start": 116, "end": 117, "annotation": null}, {"text": "C", "start": 117, "end": 118, "annotation": null}, {"text": "by", "start": 119, "end": 121, "annotation": null}, {"text": "using", "start": 122, "end": 127, "annotation": null}, {"text": "the", "start": 128, "end": 131, "annotation": null}, {"text": "combustion", "start": 132, "end": 142, "annotation": null}, {"text": "route", "start": 143, "end": 148, "annotation": null}, {"text": "without", "start": 149, "end": 156, "annotation": null}, {"text": "further", "start": 157, "end": 164, "annotation": null}, {"text": "calcining", "start": 165, "end": 174, "annotation": null}, {"text": "treatment", "start": 175, "end": 184, "annotation": null}, {"text": ".", "start": 184, "end": 185, "annotation": null}], [{"text": "Powder", "start": 186, "end": 192, "annotation": null}, {"text": "X-ray", "start": 193, "end": 198, "annotation": null}, {"text": "diffraction", "start": 199, "end": 210, "annotation": null}, {"text": "and", "start": 211, "end": 214, "annotation": null}, {"text": "Fourier", "start": 215, "end": 222, "annotation": null}, {"text": "-", "start": 222, "end": 223, "annotation": null}, {"text": "transform", "start": 223, "end": 232, "annotation": null}, {"text": "infrared", "start": 233, "end": 241, "annotation": null}, {"text": "spectrometry", "start": 242, "end": 254, "annotation": null}, {"text": "measurements", "start": 255, "end": 267, "annotation": null}, {"text": "were", "start": 268, "end": 272, "annotation": null}, {"text": "used", "start": 273, "end": 277, "annotation": null}, {"text": "to", "start": 278, "end": 280, "annotation": null}, {"text": "characterize", "start": 281, "end": 293, "annotation": null}, {"text": "the", "start": 294, "end": 297, "annotation": null}, {"text": "prepared", "start": 298, "end": 306, "annotation": null}, {"text": "combustion", "start": 307, "end": 317, "annotation": null}, {"text": "products", "start": 318, "end": 326, "annotation": null}, {"text": ",", "start": 326, "end": 327, "annotation": null}, {"text": "while", "start": 328, "end": 333, "annotation": null}, {"text": "the", "start": 334, "end": 337, "annotation": null}, {"text": "optical", "start": 338, "end": 345, "annotation": null}, {"text": "properties", "start": 346, "end": 356, "annotation": null}, {"text": "were", "start": 357, "end": 361, "annotation": null}, {"text": "studied", "start": 362, "end": 369, "annotation": null}, {"text": "using", "start": 370, "end": 375, "annotation": null}, {"text": "UV", "start": 376, "end": 378, "annotation": null}, {"text": "\u2013", "start": 378, "end": 379, "annotation": null}, {"text": "vis", "start": 379, "end": 382, "annotation": null}, {"text": "\u2013", "start": 382, "end": 383, "annotation": null}, {"text": "NIR", "start": 383, "end": 386, "annotation": null}, {"text": "and", "start": 387, "end": 390, "annotation": null}, {"text": "photoluminescence", "start": 391, "end": 408, "annotation": null}, {"text": "spectroscopy", "start": 409, "end": 421, "annotation": null}, {"text": ".", "start": 421, "end": 422, "annotation": null}], [{"text": "The", "start": 423, "end": 426, "annotation": null}, {"text": "Judd", "start": 427, "end": 431, "annotation": null}, {"text": "\u2013", "start": 431, "end": 432, "annotation": null}, {"text": "Ofelt", "start": 432, "end": 437, "annotation": null}, {"text": "(", "start": 438, "end": 439, "annotation": null}, {"text": "J-O", "start": 439, "end": 442, "annotation": null}, {"text": ")", "start": 442, "end": 443, "annotation": null}, {"text": "model", "start": 444, "end": 449, "annotation": null}, {"text": "was", "start": 450, "end": 453, "annotation": null}, {"text": "applied", "start": 454, "end": 461, "annotation": null}, {"text": "to", "start": 462, "end": 464, "annotation": null}, {"text": "obtain", "start": 465, "end": 471, "annotation": null}, {"text": "the", "start": 472, "end": 475, "annotation": null}, {"text": "oscillator", "start": 476, "end": 486, "annotation": null}, {"text": "strengths", "start": 487, "end": 496, "annotation": null}, {"text": "(", "start": 497, "end": 498, "annotation": null}, {"text": "f", "start": 498, "end": 499, "annotation": null}, {"text": ")", "start": 499, "end": 500, "annotation": null}, {"text": "and", "start": 501, "end": 504, "annotation": null}, {"text": "three", "start": 505, "end": 510, "annotation": null}, {"text": "phenomenological", "start": 511, "end": 527, "annotation": null}, {"text": "intensity", "start": 528, "end": 537, "annotation": null}, {"text": "parameters", "start": 538, "end": 548, "annotation": null}, {"text": ".", "start": 548, "end": 549, "annotation": null}], [{"text": "Using", "start": 550, "end": 555, "annotation": null}, {"text": "J-O", "start": 556, "end": 559, "annotation": null}, {"text": "parameters", "start": 560, "end": 570, "annotation": null}, {"text": "(", "start": 571, "end": 572, "annotation": null}, {"text": "\u03a92", "start": 572, "end": 574, "annotation": null}, {"text": ",", "start": 574, "end": 575, "annotation": null}, {"text": "\u03a94", "start": 576, "end": 578, "annotation": null}, {"text": "and", "start": 579, "end": 582, "annotation": null}, {"text": "\u03a96", "start": 583, "end": 585, "annotation": null}, {"text": ")", "start": 585, "end": 586, "annotation": null}, {"text": "the", "start": 587, "end": 590, "annotation": null}, {"text": "radiative", "start": 591, "end": 600, "annotation": null}, {"text": "transition", "start": 601, "end": 611, "annotation": null}, {"text": "probabilities", "start": 612, "end": 625, "annotation": null}, {"text": "(", "start": 626, "end": 627, "annotation": null}, {"text": "Aab", "start": 627, "end": 630, "annotation": null}, {"text": ")", "start": 630, "end": 631, "annotation": null}, {"text": ",", "start": 631, "end": 632, "annotation": null}, {"text": "radiative", "start": 633, "end": 642, "annotation": null}, {"text": "lifetimes", "start": 643, "end": 652, "annotation": null}, {"text": "(", "start": 653, "end": 654, "annotation": null}, {"text": "\u03c4R", "start": 654, "end": 656, "annotation": null}, {"text": ")", "start": 656, "end": 657, "annotation": null}, {"text": "and", "start": 658, "end": 661, "annotation": null}, {"text": "branching", "start": 662, "end": 671, "annotation": null}, {"text": "ratios", "start": 672, "end": 678, "annotation": null}, {"text": "have", "start": 679, "end": 683, "annotation": null}, {"text": "been", "start": 684, "end": 688, "annotation": null}, {"text": "calculated", "start": 689, "end": 699, "annotation": null}, {"text": "for", "start": 700, "end": 703, "annotation": null}, {"text": "certain", "start": 704, "end": 711, "annotation": null}, {"text": "excited", "start": 712, "end": 719, "annotation": null}, {"text": "states", "start": 720, "end": 726, "annotation": null}, {"text": "of", "start": 727, "end": 729, "annotation": null}, {"text": "Ho3+", "start": 730, "end": 734, "annotation": null}, {"text": ".", "start": 734, "end": 735, "annotation": null}], [{"text": "Using", "start": 736, "end": 741, "annotation": null}, {"text": "the", "start": 742, "end": 745, "annotation": null}, {"text": "Fuchtbauer", "start": 746, "end": 756, "annotation": null}, {"text": "\u2013", "start": 756, "end": 757, "annotation": null}, {"text": "Ladenberg", "start": 757, "end": 766, "annotation": null}, {"text": "formula", "start": 767, "end": 774, "annotation": null}, {"text": ",", "start": 774, "end": 775, "annotation": null}, {"text": "the", "start": 776, "end": 779, "annotation": null}, {"text": "stimulated", "start": 780, "end": 790, "annotation": null}, {"text": "emission", "start": 791, "end": 799, "annotation": null}, {"text": "cross-sections", "start": 800, "end": 814, "annotation": null}, {"text": "(", "start": 815, "end": 816, "annotation": null}, {"text": "\u03c3emi", "start": 816, "end": 820, "annotation": null}, {"text": ")", "start": 820, "end": 821, "annotation": null}, {"text": "for", "start": 822, "end": 825, "annotation": null}, {"text": "some", "start": 826, "end": 830, "annotation": null}, {"text": "interesting", "start": 831, "end": 842, "annotation": null}, {"text": "transitions", "start": 843, "end": 854, "annotation": null}, {"text": ",", "start": 854, "end": 855, "annotation": null}, {"text": "such", "start": 856, "end": 860, "annotation": null}, {"text": "as", "start": 861, "end": 863, "annotation": null}, {"text": "5S2\u21925I8", "start": 864, "end": 871, "annotation": null}, {"text": "and", "start": 872, "end": 875, "annotation": null}, {"text": "5F5\u21925I8", "start": 876, "end": 883, "annotation": null}, {"text": "of", "start": 884, "end": 886, "annotation": null}, {"text": "Ho3+", "start": 887, "end": 891, "annotation": "DOPANT"}, {"text": "in", "start": 892, "end": 894, "annotation": null}, {"text": "LaAlO3", "start": 895, "end": 901, "annotation": "BASEMAT"}, {"text": ",", "start": 901, "end": 902, "annotation": null}, {"text": "were", "start": 903, "end": 907, "annotation": null}, {"text": "determined", "start": 908, "end": 918, "annotation": null}, {"text": "and", "start": 919, "end": 922, "annotation": null}, {"text": "discussed", "start": 923, "end": 932, "annotation": null}, {"text": ".", "start": 932, "end": 933, "annotation": null}]], "meta": {"doi": "10.1016/j.physb.2008.07.026"}} {"text": "New details of the photoluminescence spectrum of Si doped with the interetitial donor Li are reported. The spectrum is found to be very different from that of Si doped with substitutional donors, and these differences are interpreted in terms of the shell model of the structure of bound multiexciton complexes.", "meta": {"doi": "10.1016/0038-1098(78)90412-X"}, "_input_hash": -965824224, "_task_hash": -1094377511, "tokens": [[{"text": "New", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "details", "start": 4, "end": 11, "id": 1, "annotation": null}, {"text": "of", "start": 12, "end": 14, "id": 2, "annotation": null}, {"text": "the", "start": 15, "end": 18, "id": 3, "annotation": null}, {"text": "photoluminescence", "start": 19, "end": 36, "id": 4, "annotation": null}, {"text": "spectrum", "start": 37, "end": 45, "id": 5, "annotation": null}, {"text": "of", "start": 46, "end": 48, "id": 6, "annotation": null}, {"text": "Si", "start": 49, "end": 51, "id": 7, "annotation": "BASEMAT"}, {"text": "doped", "start": 52, "end": 57, "id": 8, "annotation": null}, {"text": "with", "start": 58, "end": 62, "id": 9, "annotation": null}, {"text": "the", "start": 63, "end": 66, "id": 10, "annotation": null}, {"text": "interetitial", "start": 67, "end": 79, "id": 11, "annotation": null}, {"text": "donor", "start": 80, "end": 85, "id": 12, "annotation": null}, {"text": "Li", "start": 86, "end": 88, "id": 13, "annotation": "DOPANT"}, {"text": "are", "start": 89, "end": 92, "id": 14, "annotation": null}, {"text": "reported", "start": 93, "end": 101, "id": 15, "annotation": null}, {"text": ".", "start": 102, "end": 103, "id": 16, "annotation": null}], [{"text": "The", "start": 104, "end": 107, "id": 17, "annotation": null}, {"text": "spectrum", "start": 108, "end": 116, "id": 18, "annotation": null}, {"text": "is", "start": 117, "end": 119, "id": 19, "annotation": null}, {"text": "found", "start": 120, "end": 125, "id": 20, "annotation": null}, {"text": "to", "start": 126, "end": 128, "id": 21, "annotation": null}, {"text": "be", "start": 129, "end": 131, "id": 22, "annotation": null}, {"text": "very", "start": 132, "end": 136, "id": 23, "annotation": null}, {"text": "different", "start": 137, "end": 146, "id": 24, "annotation": null}, {"text": "from", "start": 147, "end": 151, "id": 25, "annotation": null}, {"text": "that", "start": 152, "end": 156, "id": 26, "annotation": null}, {"text": "of", "start": 157, "end": 159, "id": 27, "annotation": null}, {"text": "Si", "start": 160, "end": 162, "id": 28, "annotation": "BASEMAT"}, {"text": "doped", "start": 163, "end": 168, "id": 29, "annotation": null}, {"text": "with", "start": 169, "end": 173, "id": 30, "annotation": null}, {"text": "substitutional", "start": 174, "end": 188, "id": 31, "annotation": null}, {"text": "donors", "start": 189, "end": 195, "id": 32, "annotation": "DOPANT"}, {"text": ",", "start": 196, "end": 197, "id": 33, "annotation": null}, {"text": "and", "start": 198, "end": 201, "id": 34, "annotation": null}, {"text": "these", "start": 202, "end": 207, "id": 35, "annotation": null}, {"text": "differences", "start": 208, "end": 219, "id": 36, "annotation": null}, {"text": "are", "start": 220, "end": 223, "id": 37, "annotation": null}, {"text": "interpreted", "start": 224, "end": 235, "id": 38, "annotation": null}, {"text": "in", "start": 236, "end": 238, "id": 39, "annotation": null}, {"text": "terms", "start": 239, "end": 244, "id": 40, "annotation": null}, {"text": "of", "start": 245, "end": 247, "id": 41, "annotation": null}, {"text": "the", "start": 248, "end": 251, "id": 42, "annotation": null}, {"text": "shell", "start": 252, "end": 257, "id": 43, "annotation": null}, {"text": "model", "start": 258, "end": 263, "id": 44, "annotation": null}, {"text": "of", "start": 264, "end": 266, "id": 45, "annotation": null}, {"text": "the", "start": 267, "end": 270, "id": 46, "annotation": null}, {"text": "structure", "start": 271, "end": 280, "id": 47, "annotation": null}, {"text": "of", "start": 281, "end": 283, "id": 48, "annotation": null}, {"text": "bound", "start": 284, "end": 289, "id": 49, "annotation": null}, {"text": "multiexciton", "start": 290, "end": 302, "id": 50, "annotation": null}, {"text": "complexes", "start": 303, "end": 312, "id": 51, "annotation": null}, {"text": ".", "start": 313, "end": 314, "id": 52, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "A novel electrochemical sensor based on the use of boron doped CeO2 nanocubes modified glassy carbon microspheres paste electrode (B-CeO2NCs/GCPE) was prepared and applied for selective and sensitive determination of xanthine (XA) and hypoxanthine (HXA) individually and simultaneously. The morphology, composition and structural properties of the undoped and B doped CeO2 nanocubes were characterized by X-ray diffraction, energy-dispersed X-ray spectrometry (EDS) and transmission electron microscopy (TEM). Electrochemical activities and the surface analysis of the modified electrode were investigated using scanning electron microscopy (SEM) and cyclic voltammetry (CV). From the B-CeO2NCs/GCPE, well oxidation peaks and enhanced peak currents of XA and HXA were observed owing to the excellent catalytic activity of B-CeO2NCs. For individual detection, the linear responses of XA and HXA were in the concentration range of 5.42 \u00d7 10\u22128\u20131.31 \u00d7 10\u22125 M and 3.98 \u00d7 10\u22127\u20136.01\u00d710\u22125 M with detection limits of 3.02 and 6.17nM, respectively. For simultaneous detection by synchronous change of the concentration of XA and HXA, the linear ranges were 1.98 \u00d7 10\u22127\u20139.45 \u00d7 10\u22126 M and 3.98 \u00d7 10\u22127\u20131.28 \u00d7 10\u22125 M with detection limits of 3.65 and 8.17nM, respectively. The practical application of the modified electrode was demonstrated by simultaneously determining the concentrations of XA and HXA in human biological fluids and in fish meat samples with satisfactory results.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "novel", "start": 2, "end": 7, "annotation": null}, {"text": "electrochemical", "start": 8, "end": 23, "annotation": null}, {"text": "sensor", "start": 24, "end": 30, "annotation": null}, {"text": "based", "start": 31, "end": 36, "annotation": null}, {"text": "on", "start": 37, "end": 39, "annotation": null}, {"text": "the", "start": 40, "end": 43, "annotation": null}, {"text": "use", "start": 44, "end": 47, "annotation": null}, {"text": "of", "start": 48, "end": 50, "annotation": null}, {"text": "boron", "start": 51, "end": 56, "annotation": "DOPANT"}, {"text": "doped", "start": 57, "end": 62, "annotation": null}, {"text": "CeO2", "start": 63, "end": 67, "annotation": "BASEMAT"}, {"text": "nanocubes", "start": 68, "end": 77, "annotation": null}, {"text": "modified", "start": 78, "end": 86, "annotation": null}, {"text": "glassy", "start": 87, "end": 93, "annotation": null}, {"text": "carbon", "start": 94, "end": 100, "annotation": null}, {"text": "microspheres", "start": 101, "end": 113, "annotation": null}, {"text": "paste", "start": 114, "end": 119, "annotation": null}, {"text": "electrode", "start": 120, "end": 129, "annotation": null}, {"text": "(", "start": 130, "end": 131, "annotation": null}, {"text": "B-CeO2NCs", "start": 131, "end": 140, "annotation": null}, {"text": "/", "start": 140, "end": 141, "annotation": null}, {"text": "GCPE", "start": 141, "end": 145, "annotation": null}, {"text": ")", "start": 145, "end": 146, "annotation": null}, {"text": "was", "start": 147, "end": 150, "annotation": null}, {"text": "prepared", "start": 151, "end": 159, "annotation": null}, {"text": "and", "start": 160, "end": 163, "annotation": null}, {"text": "applied", "start": 164, "end": 171, "annotation": null}, {"text": "for", "start": 172, "end": 175, "annotation": null}, {"text": "selective", "start": 176, "end": 185, "annotation": null}, {"text": "and", "start": 186, "end": 189, "annotation": null}, {"text": "sensitive", "start": 190, "end": 199, "annotation": null}, {"text": "determination", "start": 200, "end": 213, "annotation": null}, {"text": "of", "start": 214, "end": 216, "annotation": null}, {"text": "xanthine", "start": 217, "end": 225, "annotation": null}, {"text": "(", "start": 226, "end": 227, "annotation": null}, {"text": "XA", "start": 227, "end": 229, "annotation": null}, {"text": ")", "start": 229, "end": 230, "annotation": null}, {"text": "and", "start": 231, "end": 234, "annotation": null}, {"text": "hypoxanthine", "start": 235, "end": 247, "annotation": null}, {"text": "(", "start": 248, "end": 249, "annotation": null}, {"text": "HXA", "start": 249, "end": 252, "annotation": null}, {"text": ")", "start": 252, "end": 253, "annotation": null}, {"text": "individually", "start": 254, "end": 266, "annotation": null}, {"text": "and", "start": 267, "end": 270, "annotation": null}, {"text": "simultaneously", "start": 271, "end": 285, "annotation": null}, {"text": ".", "start": 285, "end": 286, "annotation": null}], [{"text": "The", "start": 287, "end": 290, "annotation": null}, {"text": "morphology", "start": 291, "end": 301, "annotation": null}, {"text": ",", "start": 301, "end": 302, "annotation": null}, {"text": "composition", "start": 303, "end": 314, "annotation": null}, {"text": "and", "start": 315, "end": 318, "annotation": null}, {"text": "structural", "start": 319, "end": 329, "annotation": null}, {"text": "properties", "start": 330, "end": 340, "annotation": null}, {"text": "of", "start": 341, "end": 343, "annotation": null}, {"text": "the", "start": 344, "end": 347, "annotation": null}, {"text": "undoped", "start": 348, "end": 355, "annotation": null}, {"text": "and", "start": 356, "end": 359, "annotation": null}, {"text": "B", "start": 360, "end": 361, "annotation": "DOPANT"}, {"text": "doped", "start": 362, "end": 367, "annotation": null}, {"text": "CeO2", "start": 368, "end": 372, "annotation": "BASEMAT"}, {"text": "nanocubes", "start": 373, "end": 382, "annotation": null}, {"text": "were", "start": 383, "end": 387, "annotation": null}, {"text": "characterized", "start": 388, "end": 401, "annotation": null}, {"text": "by", "start": 402, "end": 404, "annotation": null}, {"text": "X-ray", "start": 405, "end": 410, "annotation": null}, {"text": "diffraction", "start": 411, "end": 422, "annotation": null}, {"text": ",", "start": 422, "end": 423, "annotation": null}, {"text": "energy", "start": 424, "end": 430, "annotation": null}, {"text": "-", "start": 430, "end": 431, "annotation": null}, {"text": "dispersed", "start": 431, "end": 440, "annotation": null}, {"text": "X-ray", "start": 441, "end": 446, "annotation": null}, {"text": "spectrometry", "start": 447, "end": 459, "annotation": null}, {"text": "(", "start": 460, "end": 461, "annotation": null}, {"text": "EDS", "start": 461, "end": 464, "annotation": null}, {"text": ")", "start": 464, "end": 465, "annotation": null}, {"text": "and", "start": 466, "end": 469, "annotation": null}, {"text": "transmission", "start": 470, "end": 482, "annotation": null}, {"text": "electron", "start": 483, "end": 491, "annotation": null}, {"text": "microscopy", "start": 492, "end": 502, "annotation": null}, {"text": "(", "start": 503, "end": 504, "annotation": null}, {"text": "TEM", "start": 504, "end": 507, "annotation": null}, {"text": ")", "start": 507, "end": 508, "annotation": null}, {"text": ".", "start": 508, "end": 509, "annotation": null}], [{"text": "Electrochemical", "start": 510, "end": 525, "annotation": null}, {"text": "activities", "start": 526, "end": 536, "annotation": null}, {"text": "and", "start": 537, "end": 540, "annotation": null}, {"text": "the", "start": 541, "end": 544, "annotation": null}, {"text": "surface", "start": 545, "end": 552, "annotation": null}, {"text": "analysis", "start": 553, "end": 561, "annotation": null}, {"text": "of", "start": 562, "end": 564, "annotation": null}, {"text": "the", "start": 565, "end": 568, "annotation": null}, {"text": "modified", "start": 569, "end": 577, "annotation": null}, {"text": "electrode", "start": 578, "end": 587, "annotation": null}, {"text": "were", "start": 588, "end": 592, "annotation": null}, {"text": "investigated", "start": 593, "end": 605, "annotation": null}, {"text": "using", "start": 606, "end": 611, "annotation": null}, {"text": "scanning", "start": 612, "end": 620, "annotation": null}, {"text": "electron", "start": 621, "end": 629, "annotation": null}, {"text": "microscopy", "start": 630, "end": 640, "annotation": null}, {"text": "(", "start": 641, "end": 642, "annotation": null}, {"text": "SEM", "start": 642, "end": 645, "annotation": null}, {"text": ")", "start": 645, "end": 646, "annotation": null}, {"text": "and", "start": 647, "end": 650, "annotation": null}, {"text": "cyclic", "start": 651, "end": 657, "annotation": null}, {"text": "voltammetry", "start": 658, "end": 669, "annotation": null}, {"text": "(", "start": 670, "end": 671, "annotation": null}, {"text": "CV", "start": 671, "end": 673, "annotation": null}, {"text": ")", "start": 673, "end": 674, "annotation": null}, {"text": ".", "start": 674, "end": 675, "annotation": null}], [{"text": "From", "start": 676, "end": 680, "annotation": null}, {"text": "the", "start": 681, "end": 684, "annotation": null}, {"text": "B-CeO2NCs", "start": 685, "end": 694, "annotation": null}, {"text": "/", "start": 694, "end": 695, "annotation": null}, {"text": "GCPE", "start": 695, "end": 699, "annotation": null}, {"text": ",", "start": 699, "end": 700, "annotation": null}, {"text": "well", "start": 701, "end": 705, "annotation": null}, {"text": "oxidation", "start": 706, "end": 715, "annotation": null}, {"text": "peaks", "start": 716, "end": 721, "annotation": null}, {"text": "and", "start": 722, "end": 725, "annotation": null}, {"text": "enhanced", "start": 726, "end": 734, "annotation": null}, {"text": "peak", "start": 735, "end": 739, "annotation": null}, {"text": "currents", "start": 740, "end": 748, "annotation": null}, {"text": "of", "start": 749, "end": 751, "annotation": null}, {"text": "XA", "start": 752, "end": 754, "annotation": null}, {"text": "and", "start": 755, "end": 758, "annotation": null}, {"text": "HXA", "start": 759, "end": 762, "annotation": null}, {"text": "were", "start": 763, "end": 767, "annotation": null}, {"text": "observed", "start": 768, "end": 776, "annotation": null}, {"text": "owing", "start": 777, "end": 782, "annotation": null}, {"text": "to", "start": 783, "end": 785, "annotation": null}, {"text": "the", "start": 786, "end": 789, "annotation": null}, {"text": "excellent", "start": 790, "end": 799, "annotation": null}, {"text": "catalytic", "start": 800, "end": 809, "annotation": null}, {"text": "activity", "start": 810, "end": 818, "annotation": null}, {"text": "of", "start": 819, "end": 821, "annotation": null}, {"text": "B-CeO2NCs", "start": 822, "end": 831, "annotation": null}, {"text": ".", "start": 831, "end": 832, "annotation": null}], [{"text": "For", "start": 833, "end": 836, "annotation": null}, {"text": "individual", "start": 837, "end": 847, "annotation": null}, {"text": "detection", "start": 848, "end": 857, "annotation": null}, {"text": ",", "start": 857, "end": 858, "annotation": null}, {"text": "the", "start": 859, "end": 862, "annotation": null}, {"text": "linear", "start": 863, "end": 869, "annotation": null}, {"text": "responses", "start": 870, "end": 879, "annotation": null}, {"text": "of", "start": 880, "end": 882, "annotation": null}, {"text": "XA", "start": 883, "end": 885, "annotation": null}, {"text": "and", "start": 886, "end": 889, "annotation": null}, {"text": "HXA", "start": 890, "end": 893, "annotation": null}, {"text": "were", "start": 894, "end": 898, "annotation": null}, {"text": "in", "start": 899, "end": 901, "annotation": null}, {"text": "the", "start": 902, "end": 905, "annotation": null}, {"text": "concentration", "start": 906, "end": 919, "annotation": null}, {"text": "range", "start": 920, "end": 925, "annotation": null}, {"text": "of", "start": 926, "end": 928, "annotation": null}, {"text": "5.42", "start": 929, "end": 933, "annotation": null}, {"text": "\u00d7", "start": 934, "end": 935, "annotation": null}, {"text": "10", "start": 936, "end": 938, "annotation": null}, {"text": "\u2212", "start": 938, "end": 939, "annotation": null}, {"text": "8", "start": 939, "end": 940, "annotation": null}, {"text": "\u2013", "start": 940, "end": 941, "annotation": null}, {"text": "1.31", "start": 941, "end": 945, "annotation": null}, {"text": "\u00d7", "start": 946, "end": 947, "annotation": null}, {"text": "10", "start": 948, "end": 950, "annotation": null}, {"text": "\u2212", "start": 950, "end": 951, "annotation": null}, {"text": "5", "start": 951, "end": 952, "annotation": null}, {"text": "M", "start": 953, "end": 954, "annotation": null}, {"text": "and", "start": 955, "end": 958, "annotation": null}, {"text": "3.98", "start": 959, "end": 963, "annotation": null}, {"text": "\u00d7", "start": 964, "end": 965, "annotation": null}, {"text": "10", "start": 966, "end": 968, "annotation": null}, {"text": "\u2212", "start": 968, "end": 969, "annotation": null}, {"text": "7", "start": 969, "end": 970, "annotation": null}, {"text": "\u2013", "start": 970, "end": 971, "annotation": null}, {"text": "6.01", "start": 971, "end": 975, "annotation": null}, {"text": "\u00d7", "start": 975, "end": 976, "annotation": null}, {"text": "10", "start": 976, "end": 978, "annotation": null}, {"text": "\u2212", "start": 978, "end": 979, "annotation": null}, {"text": "5", "start": 979, "end": 980, "annotation": null}, {"text": "M", "start": 981, "end": 982, "annotation": null}, {"text": "with", "start": 983, "end": 987, "annotation": null}, {"text": "detection", "start": 988, "end": 997, "annotation": null}, {"text": "limits", "start": 998, "end": 1004, "annotation": null}, {"text": "of", "start": 1005, "end": 1007, "annotation": null}, {"text": "3.02", "start": 1008, "end": 1012, "annotation": null}, {"text": "and", "start": 1013, "end": 1016, "annotation": null}, {"text": "6.17", "start": 1017, "end": 1021, "annotation": null}, {"text": "nM", "start": 1021, "end": 1023, "annotation": null}, {"text": ",", "start": 1023, "end": 1024, "annotation": null}, {"text": "respectively", "start": 1025, "end": 1037, "annotation": null}, {"text": ".", "start": 1037, "end": 1038, "annotation": null}], [{"text": "For", "start": 1039, "end": 1042, "annotation": null}, {"text": "simultaneous", "start": 1043, "end": 1055, "annotation": null}, {"text": "detection", "start": 1056, "end": 1065, "annotation": null}, {"text": "by", "start": 1066, "end": 1068, "annotation": null}, {"text": "synchronous", "start": 1069, "end": 1080, "annotation": null}, {"text": "change", "start": 1081, "end": 1087, "annotation": null}, {"text": "of", "start": 1088, "end": 1090, "annotation": null}, {"text": "the", "start": 1091, "end": 1094, "annotation": null}, {"text": "concentration", "start": 1095, "end": 1108, "annotation": null}, {"text": "of", "start": 1109, "end": 1111, "annotation": null}, {"text": "XA", "start": 1112, "end": 1114, "annotation": null}, {"text": "and", "start": 1115, "end": 1118, "annotation": null}, {"text": "HXA", "start": 1119, "end": 1122, "annotation": null}, {"text": ",", "start": 1122, "end": 1123, "annotation": null}, {"text": "the", "start": 1124, "end": 1127, "annotation": null}, {"text": "linear", "start": 1128, "end": 1134, "annotation": null}, {"text": "ranges", "start": 1135, "end": 1141, "annotation": null}, {"text": "were", "start": 1142, "end": 1146, "annotation": null}, {"text": "1.98", "start": 1147, "end": 1151, "annotation": null}, {"text": "\u00d7", "start": 1152, "end": 1153, "annotation": null}, {"text": "10", "start": 1154, "end": 1156, "annotation": null}, {"text": "\u2212", "start": 1156, "end": 1157, "annotation": null}, {"text": "7", "start": 1157, "end": 1158, "annotation": null}, {"text": "\u2013", "start": 1158, "end": 1159, "annotation": null}, {"text": "9.45", "start": 1159, "end": 1163, "annotation": null}, {"text": "\u00d7", "start": 1164, "end": 1165, "annotation": null}, {"text": "10", "start": 1166, "end": 1168, "annotation": null}, {"text": "\u2212", "start": 1168, "end": 1169, "annotation": null}, {"text": "6", "start": 1169, "end": 1170, "annotation": null}, {"text": "M", "start": 1171, "end": 1172, "annotation": null}, {"text": "and", "start": 1173, "end": 1176, "annotation": null}, {"text": "3.98", "start": 1177, "end": 1181, "annotation": null}, {"text": "\u00d7", "start": 1182, "end": 1183, "annotation": null}, {"text": "10", "start": 1184, "end": 1186, "annotation": null}, {"text": "\u2212", "start": 1186, "end": 1187, "annotation": null}, {"text": "7", "start": 1187, "end": 1188, "annotation": null}, {"text": "\u2013", "start": 1188, "end": 1189, "annotation": null}, {"text": "1.28", "start": 1189, "end": 1193, "annotation": null}, {"text": "\u00d7", "start": 1194, "end": 1195, "annotation": null}, {"text": "10", "start": 1196, "end": 1198, "annotation": null}, {"text": "\u2212", "start": 1198, "end": 1199, "annotation": null}, {"text": "5", "start": 1199, "end": 1200, "annotation": null}, {"text": "M", "start": 1201, "end": 1202, "annotation": null}, {"text": "with", "start": 1203, "end": 1207, "annotation": null}, {"text": "detection", "start": 1208, "end": 1217, "annotation": null}, {"text": "limits", "start": 1218, "end": 1224, "annotation": null}, {"text": "of", "start": 1225, "end": 1227, "annotation": null}, {"text": "3.65", "start": 1228, "end": 1232, "annotation": null}, {"text": "and", "start": 1233, "end": 1236, "annotation": null}, {"text": "8.17", "start": 1237, "end": 1241, "annotation": null}, {"text": "nM", "start": 1241, "end": 1243, "annotation": null}, {"text": ",", "start": 1243, "end": 1244, "annotation": null}, {"text": "respectively", "start": 1245, "end": 1257, "annotation": null}, {"text": ".", "start": 1257, "end": 1258, "annotation": null}], [{"text": "The", "start": 1259, "end": 1262, "annotation": null}, {"text": "practical", "start": 1263, "end": 1272, "annotation": null}, {"text": "application", "start": 1273, "end": 1284, "annotation": null}, {"text": "of", "start": 1285, "end": 1287, "annotation": null}, {"text": "the", "start": 1288, "end": 1291, "annotation": null}, {"text": "modified", "start": 1292, "end": 1300, "annotation": null}, {"text": "electrode", "start": 1301, "end": 1310, "annotation": null}, {"text": "was", "start": 1311, "end": 1314, "annotation": null}, {"text": "demonstrated", "start": 1315, "end": 1327, "annotation": null}, {"text": "by", "start": 1328, "end": 1330, "annotation": null}, {"text": "simultaneously", "start": 1331, "end": 1345, "annotation": null}, {"text": "determining", "start": 1346, "end": 1357, "annotation": null}, {"text": "the", "start": 1358, "end": 1361, "annotation": null}, {"text": "concentrations", "start": 1362, "end": 1376, "annotation": null}, {"text": "of", "start": 1377, "end": 1379, "annotation": null}, {"text": "XA", "start": 1380, "end": 1382, "annotation": null}, {"text": "and", "start": 1383, "end": 1386, "annotation": null}, {"text": "HXA", "start": 1387, "end": 1390, "annotation": null}, {"text": "in", "start": 1391, "end": 1393, "annotation": null}, {"text": "human", "start": 1394, "end": 1399, "annotation": null}, {"text": "biological", "start": 1400, "end": 1410, "annotation": null}, {"text": "fluids", "start": 1411, "end": 1417, "annotation": null}, {"text": "and", "start": 1418, "end": 1421, "annotation": null}, {"text": "in", "start": 1422, "end": 1424, "annotation": null}, {"text": "fish", "start": 1425, "end": 1429, "annotation": null}, {"text": "meat", "start": 1430, "end": 1434, "annotation": null}, {"text": "samples", "start": 1435, "end": 1442, "annotation": null}, {"text": "with", "start": 1443, "end": 1447, "annotation": null}, {"text": "satisfactory", "start": 1448, "end": 1460, "annotation": null}, {"text": "results", "start": 1461, "end": 1468, "annotation": null}, {"text": ".", "start": 1468, "end": 1469, "annotation": null}]]} -{"remark": "doping_annt3", "text": "Hall effect, electrical conductivity, carrier mobility, and magnetoresistance of Cu\u2010doped n\u2010ZnSe bulk crystals are studied in the temperature range 2 to 300 K. Compensating Cu impurity amplifies the random impurity potential, modulates the band edges, and leads to electron localization in the potential wells of the conduction band bottom in slightly doped, highly compensated crystals (K = 0.82 to 0.97). High\u2010temperature hopping conductivity through the localized states of such type observed in the range 100 to 200 K and accompanied by negative magnetoresistance is first investigated in n\u2010ZnSe. Copyright \u00a9 1995 WILEY\u2010VCH Verlag GmbH & Co. KGaA", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Hall", "start": 0, "end": 4, "annotation": null}, {"text": "effect", "start": 5, "end": 11, "annotation": null}, {"text": ",", "start": 11, "end": 12, "annotation": null}, {"text": "electrical", "start": 13, "end": 23, "annotation": null}, {"text": "conductivity", "start": 24, "end": 36, "annotation": null}, {"text": ",", "start": 36, "end": 37, "annotation": null}, {"text": "carrier", "start": 38, "end": 45, "annotation": null}, {"text": "mobility", "start": 46, "end": 54, "annotation": null}, {"text": ",", "start": 54, "end": 55, "annotation": null}, {"text": "and", "start": 56, "end": 59, "annotation": null}, {"text": "magnetoresistance", "start": 60, "end": 77, "annotation": null}, {"text": "of", "start": 78, "end": 80, "annotation": null}, {"text": "Cu\u2010doped", "start": 81, "end": 89, "annotation": "DOPANT"}, {"text": "n\u2010ZnSe", "start": 90, "end": 96, "annotation": "BASEMAT"}, {"text": "bulk", "start": 97, "end": 101, "annotation": null}, {"text": "crystals", "start": 102, "end": 110, "annotation": null}, {"text": "are", "start": 111, "end": 114, "annotation": null}, {"text": "studied", "start": 115, "end": 122, "annotation": null}, {"text": "in", "start": 123, "end": 125, "annotation": null}, {"text": "the", "start": 126, "end": 129, "annotation": null}, {"text": "temperature", "start": 130, "end": 141, "annotation": null}, {"text": "range", "start": 142, "end": 147, "annotation": null}, {"text": "2", "start": 148, "end": 149, "annotation": null}, {"text": "to", "start": 150, "end": 152, "annotation": null}, {"text": "300", "start": 153, "end": 156, "annotation": null}, {"text": "K", "start": 157, "end": 158, "annotation": null}, {"text": ".", "start": 158, "end": 159, "annotation": null}], [{"text": "Compensating", "start": 160, "end": 172, "annotation": null}, {"text": "Cu", "start": 173, "end": 175, "annotation": null}, {"text": "impurity", "start": 176, "end": 184, "annotation": null}, {"text": "amplifies", "start": 185, "end": 194, "annotation": null}, {"text": "the", "start": 195, "end": 198, "annotation": null}, {"text": "random", "start": 199, "end": 205, "annotation": null}, {"text": "impurity", "start": 206, "end": 214, "annotation": null}, {"text": "potential", "start": 215, "end": 224, "annotation": null}, {"text": ",", "start": 224, "end": 225, "annotation": null}, {"text": "modulates", "start": 226, "end": 235, "annotation": null}, {"text": "the", "start": 236, "end": 239, "annotation": null}, {"text": "band", "start": 240, "end": 244, "annotation": null}, {"text": "edges", "start": 245, "end": 250, "annotation": null}, {"text": ",", "start": 250, "end": 251, "annotation": null}, {"text": "and", "start": 252, "end": 255, "annotation": null}, {"text": "leads", "start": 256, "end": 261, "annotation": null}, {"text": "to", "start": 262, "end": 264, "annotation": null}, {"text": "electron", "start": 265, "end": 273, "annotation": null}, {"text": "localization", "start": 274, "end": 286, "annotation": null}, {"text": "in", "start": 287, "end": 289, "annotation": null}, {"text": "the", "start": 290, "end": 293, "annotation": null}, {"text": "potential", "start": 294, "end": 303, "annotation": null}, {"text": "wells", "start": 304, "end": 309, "annotation": null}, {"text": "of", "start": 310, "end": 312, "annotation": null}, {"text": "the", "start": 313, "end": 316, "annotation": null}, {"text": "conduction", "start": 317, "end": 327, "annotation": null}, {"text": "band", "start": 328, "end": 332, "annotation": null}, {"text": "bottom", "start": 333, "end": 339, "annotation": null}, {"text": "in", "start": 340, "end": 342, "annotation": null}, {"text": "slightly", "start": 343, "end": 351, "annotation": null}, {"text": "doped", "start": 352, "end": 357, "annotation": null}, {"text": ",", "start": 357, "end": 358, "annotation": null}, {"text": "highly", "start": 359, "end": 365, "annotation": null}, {"text": "compensated", "start": 366, "end": 377, "annotation": null}, {"text": "crystals", "start": 378, "end": 386, "annotation": null}, {"text": "(", "start": 387, "end": 388, "annotation": null}, {"text": "K", "start": 388, "end": 389, "annotation": null}, {"text": "=", "start": 390, "end": 391, "annotation": null}, {"text": "0.82", "start": 392, "end": 396, "annotation": null}, {"text": "to", "start": 397, "end": 399, "annotation": null}, {"text": "0.97", "start": 400, "end": 404, "annotation": null}, {"text": ")", "start": 404, "end": 405, "annotation": null}, {"text": ".", "start": 405, "end": 406, "annotation": null}], [{"text": "High\u2010temperature", "start": 407, "end": 423, "annotation": null}, {"text": "hopping", "start": 424, "end": 431, "annotation": null}, {"text": "conductivity", "start": 432, "end": 444, "annotation": null}, {"text": "through", "start": 445, "end": 452, "annotation": null}, {"text": "the", "start": 453, "end": 456, "annotation": null}, {"text": "localized", "start": 457, "end": 466, "annotation": null}, {"text": "states", "start": 467, "end": 473, "annotation": null}, {"text": "of", "start": 474, "end": 476, "annotation": null}, {"text": "such", "start": 477, "end": 481, "annotation": null}, {"text": "type", "start": 482, "end": 486, "annotation": null}, {"text": "observed", "start": 487, "end": 495, "annotation": null}, {"text": "in", "start": 496, "end": 498, "annotation": null}, {"text": "the", "start": 499, "end": 502, "annotation": null}, {"text": "range", "start": 503, "end": 508, "annotation": null}, {"text": "100", "start": 509, "end": 512, "annotation": null}, {"text": "to", "start": 513, "end": 515, "annotation": null}, {"text": "200", "start": 516, "end": 519, "annotation": null}, {"text": "K", "start": 520, "end": 521, "annotation": null}, {"text": "and", "start": 522, "end": 525, "annotation": null}, {"text": "accompanied", "start": 526, "end": 537, "annotation": null}, {"text": "by", "start": 538, "end": 540, "annotation": null}, {"text": "negative", "start": 541, "end": 549, "annotation": null}, {"text": "magnetoresistance", "start": 550, "end": 567, "annotation": null}, {"text": "is", "start": 568, "end": 570, "annotation": null}, {"text": "first", "start": 571, "end": 576, "annotation": null}, {"text": "investigated", "start": 577, "end": 589, "annotation": null}, {"text": "in", "start": 590, "end": 592, "annotation": null}, {"text": "n\u2010ZnSe", "start": 593, "end": 599, "annotation": "BASEMAT"}, {"text": ".", "start": 599, "end": 600, "annotation": null}], [{"text": "KGaA", "start": 646, "end": 650, "annotation": null}]]} -{"remark": "doping_annt3", "text": "We have successfully grown antimony-doped Si 1-xGe x epi-films with different doping level and a boron-doped one on Si (001) substrate. Using these samples, we have investigated the effect of these impurities in Si 1-xGe x epifilm on dislocation velocity. Although dislocation velocities in the B-doped SiGe film were comparable to those in the undoped one because of the low concentration of B, those in Sb-doped samples are remarkably enhanced, which is qualitatively similar to the effects in bulk Si. The reduction of the activation energy of dislocation motion depended on the doping level of Sb and the amount of the reduction was 1.0 eV in the highest Sb-concentration film. This value is significantly larger than those reported in bulk Si. The velocities in the lowest Sb-concentration samples are also enhanced though the samples are thought to be electrically intrinsic at the temperatures where dislocation velocities were measured. Therefore, the large activation energy reduction is possibly attributed to multiple effects of the Fermi level change and other characteristic effects of the SiGe epifilm. \u00a9 2012 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "have", "start": 3, "end": 7, "annotation": null}, {"text": "successfully", "start": 8, "end": 20, "annotation": null}, {"text": "grown", "start": 21, "end": 26, "annotation": null}, {"text": "antimony", "start": 27, "end": 35, "annotation": "DOPANT"}, {"text": "-", "start": 35, "end": 36, "annotation": null}, {"text": "doped", "start": 36, "end": 41, "annotation": null}, {"text": "Si", "start": 42, "end": 44, "annotation": "BASEMAT"}, {"text": "1-xGe", "start": 45, "end": 50, "annotation": "BASEMAT"}, {"text": "x", "start": 51, "end": 52, "annotation": "BASEMAT"}, {"text": "epi-films", "start": 53, "end": 62, "annotation": null}, {"text": "with", "start": 63, "end": 67, "annotation": null}, {"text": "different", "start": 68, "end": 77, "annotation": null}, {"text": "doping", "start": 78, "end": 84, "annotation": null}, {"text": "level", "start": 85, "end": 90, "annotation": null}, {"text": "and", "start": 91, "end": 94, "annotation": null}, {"text": "a", "start": 95, "end": 96, "annotation": null}, {"text": "boron", "start": 97, "end": 102, "annotation": "DOPANT"}, {"text": "-", "start": 102, "end": 103, "annotation": null}, {"text": "doped", "start": 103, "end": 108, "annotation": null}, {"text": "one", "start": 109, "end": 112, "annotation": null}, {"text": "on", "start": 113, "end": 115, "annotation": null}, {"text": "Si", "start": 116, "end": 118, "annotation": "BASEMAT"}, {"text": "(", "start": 119, "end": 120, "annotation": null}, {"text": "001", "start": 120, "end": 123, "annotation": "BASEMAT"}, {"text": ")", "start": 123, "end": 124, "annotation": null}, {"text": "substrate", "start": 125, "end": 134, "annotation": "BASEMAT"}, {"text": ".", "start": 134, "end": 135, "annotation": null}], [{"text": "Using", "start": 136, "end": 141, "annotation": null}, {"text": "these", "start": 142, "end": 147, "annotation": null}, {"text": "samples", "start": 148, "end": 155, "annotation": null}, {"text": ",", "start": 155, "end": 156, "annotation": null}, {"text": "we", "start": 157, "end": 159, "annotation": null}, {"text": "have", "start": 160, "end": 164, "annotation": null}, {"text": "investigated", "start": 165, "end": 177, "annotation": null}, {"text": "the", "start": 178, "end": 181, "annotation": null}, {"text": "effect", "start": 182, "end": 188, "annotation": null}, {"text": "of", "start": 189, "end": 191, "annotation": null}, {"text": "these", "start": 192, "end": 197, "annotation": null}, {"text": "impurities", "start": 198, "end": 208, "annotation": null}, {"text": "in", "start": 209, "end": 211, "annotation": null}, {"text": "Si", "start": 212, "end": 214, "annotation": null}, {"text": "1-xGe", "start": 215, "end": 220, "annotation": null}, {"text": "x", "start": 221, "end": 222, "annotation": null}, {"text": "epifilm", "start": 223, "end": 230, "annotation": null}, {"text": "on", "start": 231, "end": 233, "annotation": null}, {"text": "dislocation", "start": 234, "end": 245, "annotation": null}, {"text": "velocity", "start": 246, "end": 254, "annotation": null}, {"text": ".", "start": 254, "end": 255, "annotation": null}], [{"text": "Although", "start": 256, "end": 264, "annotation": null}, {"text": "dislocation", "start": 265, "end": 276, "annotation": null}, {"text": "velocities", "start": 277, "end": 287, "annotation": null}, {"text": "in", "start": 288, "end": 290, "annotation": null}, {"text": "the", "start": 291, "end": 294, "annotation": null}, {"text": "B", "start": 295, "end": 296, "annotation": "DOPANT"}, {"text": "-", "start": 296, "end": 297, "annotation": null}, {"text": "doped", "start": 297, "end": 302, "annotation": null}, {"text": "SiGe", "start": 303, "end": 307, "annotation": "BASEMAT"}, {"text": "film", "start": 308, "end": 312, "annotation": null}, {"text": "were", "start": 313, "end": 317, "annotation": null}, {"text": "comparable", "start": 318, "end": 328, "annotation": null}, {"text": "to", "start": 329, "end": 331, "annotation": null}, {"text": "those", "start": 332, "end": 337, "annotation": null}, {"text": "in", "start": 338, "end": 340, "annotation": null}, {"text": "the", "start": 341, "end": 344, "annotation": null}, {"text": "undoped", "start": 345, "end": 352, "annotation": null}, {"text": "one", "start": 353, "end": 356, "annotation": null}, {"text": "because", "start": 357, "end": 364, "annotation": null}, {"text": "of", "start": 365, "end": 367, "annotation": null}, {"text": "the", "start": 368, "end": 371, "annotation": null}, {"text": "low", "start": 372, "end": 375, "annotation": null}, {"text": "concentration", "start": 376, "end": 389, "annotation": null}, {"text": "of", "start": 390, "end": 392, "annotation": null}, {"text": "B", "start": 393, "end": 394, "annotation": null}, {"text": ",", "start": 394, "end": 395, "annotation": null}, {"text": "those", "start": 396, "end": 401, "annotation": null}, {"text": "in", "start": 402, "end": 404, "annotation": null}, {"text": "Sb", "start": 405, "end": 407, "annotation": "DOPANT"}, {"text": "-", "start": 407, "end": 408, "annotation": null}, {"text": "doped", "start": 408, "end": 413, "annotation": null}, {"text": "samples", "start": 414, "end": 421, "annotation": "BASEMAT"}, {"text": "are", "start": 422, "end": 425, "annotation": null}, {"text": "remarkably", "start": 426, "end": 436, "annotation": null}, {"text": "enhanced", "start": 437, "end": 445, "annotation": null}, {"text": ",", "start": 445, "end": 446, "annotation": null}, {"text": "which", "start": 447, "end": 452, "annotation": null}, {"text": "is", "start": 453, "end": 455, "annotation": null}, {"text": "qualitatively", "start": 456, "end": 469, "annotation": null}, {"text": "similar", "start": 470, "end": 477, "annotation": null}, {"text": "to", "start": 478, "end": 480, "annotation": null}, {"text": "the", "start": 481, "end": 484, "annotation": null}, {"text": "effects", "start": 485, "end": 492, "annotation": null}, {"text": "in", "start": 493, "end": 495, "annotation": null}, {"text": "bulk", "start": 496, "end": 500, "annotation": null}, {"text": "Si", "start": 501, "end": 503, "annotation": null}, {"text": ".", "start": 503, "end": 504, "annotation": null}], [{"text": "The", "start": 505, "end": 508, "annotation": null}, {"text": "reduction", "start": 509, "end": 518, "annotation": null}, {"text": "of", "start": 519, "end": 521, "annotation": null}, {"text": "the", "start": 522, "end": 525, "annotation": null}, {"text": "activation", "start": 526, "end": 536, "annotation": null}, {"text": "energy", "start": 537, "end": 543, "annotation": null}, {"text": "of", "start": 544, "end": 546, "annotation": null}, {"text": "dislocation", "start": 547, "end": 558, "annotation": null}, {"text": "motion", "start": 559, "end": 565, "annotation": null}, {"text": "depended", "start": 566, "end": 574, "annotation": null}, {"text": "on", "start": 575, "end": 577, "annotation": null}, {"text": "the", "start": 578, "end": 581, "annotation": null}, {"text": "doping", "start": 582, "end": 588, "annotation": null}, {"text": "level", "start": 589, "end": 594, "annotation": null}, {"text": "of", "start": 595, "end": 597, "annotation": null}, {"text": "Sb", "start": 598, "end": 600, "annotation": "DOPANT"}, {"text": "and", "start": 601, "end": 604, "annotation": null}, {"text": "the", "start": 605, "end": 608, "annotation": null}, {"text": "amount", "start": 609, "end": 615, "annotation": null}, {"text": "of", "start": 616, "end": 618, "annotation": null}, {"text": "the", "start": 619, "end": 622, "annotation": null}, {"text": "reduction", "start": 623, "end": 632, "annotation": null}, {"text": "was", "start": 633, "end": 636, "annotation": null}, {"text": "1.0", "start": 637, "end": 640, "annotation": null}, {"text": "eV", "start": 641, "end": 643, "annotation": null}, {"text": "in", "start": 644, "end": 646, "annotation": null}, {"text": "the", "start": 647, "end": 650, "annotation": null}, {"text": "highest", "start": 651, "end": 658, "annotation": null}, {"text": "Sb", "start": 659, "end": 661, "annotation": null}, {"text": "-", "start": 661, "end": 662, "annotation": null}, {"text": "concentration", "start": 662, "end": 675, "annotation": null}, {"text": "film", "start": 676, "end": 680, "annotation": null}, {"text": ".", "start": 680, "end": 681, "annotation": null}], [{"text": "This", "start": 682, "end": 686, "annotation": null}, {"text": "value", "start": 687, "end": 692, "annotation": null}, {"text": "is", "start": 693, "end": 695, "annotation": null}, {"text": "significantly", "start": 696, "end": 709, "annotation": null}, {"text": "larger", "start": 710, "end": 716, "annotation": null}, {"text": "than", "start": 717, "end": 721, "annotation": null}, {"text": "those", "start": 722, "end": 727, "annotation": null}, {"text": "reported", "start": 728, "end": 736, "annotation": null}, {"text": "in", "start": 737, "end": 739, "annotation": null}, {"text": "bulk", "start": 740, "end": 744, "annotation": null}, {"text": "Si", "start": 745, "end": 747, "annotation": null}, {"text": ".", "start": 747, "end": 748, "annotation": null}], [{"text": "The", "start": 749, "end": 752, "annotation": null}, {"text": "velocities", "start": 753, "end": 763, "annotation": null}, {"text": "in", "start": 764, "end": 766, "annotation": null}, {"text": "the", "start": 767, "end": 770, "annotation": null}, {"text": "lowest", "start": 771, "end": 777, "annotation": null}, {"text": "Sb", "start": 778, "end": 780, "annotation": null}, {"text": "-", "start": 780, "end": 781, "annotation": null}, {"text": "concentration", "start": 781, "end": 794, "annotation": null}, {"text": "samples", "start": 795, "end": 802, "annotation": null}, {"text": "are", "start": 803, "end": 806, "annotation": null}, {"text": "also", "start": 807, "end": 811, "annotation": null}, {"text": "enhanced", "start": 812, "end": 820, "annotation": null}, {"text": "though", "start": 821, "end": 827, "annotation": null}, {"text": "the", "start": 828, "end": 831, "annotation": null}, {"text": "samples", "start": 832, "end": 839, "annotation": null}, {"text": "are", "start": 840, "end": 843, "annotation": null}, {"text": "thought", "start": 844, "end": 851, "annotation": null}, {"text": "to", "start": 852, "end": 854, "annotation": null}, {"text": "be", "start": 855, "end": 857, "annotation": null}, {"text": "electrically", "start": 858, "end": 870, "annotation": null}, {"text": "intrinsic", "start": 871, "end": 880, "annotation": null}, {"text": "at", "start": 881, "end": 883, "annotation": null}, {"text": "the", "start": 884, "end": 887, "annotation": null}, {"text": "temperatures", "start": 888, "end": 900, "annotation": null}, {"text": "where", "start": 901, "end": 906, "annotation": null}, {"text": "dislocation", "start": 907, "end": 918, "annotation": null}, {"text": "velocities", "start": 919, "end": 929, "annotation": null}, {"text": "were", "start": 930, "end": 934, "annotation": null}, {"text": "measured", "start": 935, "end": 943, "annotation": null}, {"text": ".", "start": 943, "end": 944, "annotation": null}], [{"text": "Therefore", "start": 945, "end": 954, "annotation": null}, {"text": ",", "start": 954, "end": 955, "annotation": null}, {"text": "the", "start": 956, "end": 959, "annotation": null}, {"text": "large", "start": 960, "end": 965, "annotation": null}, {"text": "activation", "start": 966, "end": 976, "annotation": null}, {"text": "energy", "start": 977, "end": 983, "annotation": null}, {"text": "reduction", "start": 984, "end": 993, "annotation": null}, {"text": "is", "start": 994, "end": 996, "annotation": null}, {"text": "possibly", "start": 997, "end": 1005, "annotation": null}, {"text": "attributed", "start": 1006, "end": 1016, "annotation": null}, {"text": "to", "start": 1017, "end": 1019, "annotation": null}, {"text": "multiple", "start": 1020, "end": 1028, "annotation": null}, {"text": "effects", "start": 1029, "end": 1036, "annotation": null}, {"text": "of", "start": 1037, "end": 1039, "annotation": null}, {"text": "the", "start": 1040, "end": 1043, "annotation": null}, {"text": "Fermi", "start": 1044, "end": 1049, "annotation": null}, {"text": "level", "start": 1050, "end": 1055, "annotation": null}, {"text": "change", "start": 1056, "end": 1062, "annotation": null}, {"text": "and", "start": 1063, "end": 1066, "annotation": null}, {"text": "other", "start": 1067, "end": 1072, "annotation": null}, {"text": "characteristic", "start": 1073, "end": 1087, "annotation": null}, {"text": "effects", "start": 1088, "end": 1095, "annotation": null}, {"text": "of", "start": 1096, "end": 1098, "annotation": null}, {"text": "the", "start": 1099, "end": 1102, "annotation": null}, {"text": "SiGe", "start": 1103, "end": 1107, "annotation": null}, {"text": "epifilm", "start": 1108, "end": 1115, "annotation": null}, {"text": ".", "start": 1115, "end": 1116, "annotation": null}], [{"text": "KGaA", "start": 1152, "end": 1156, "annotation": null}, {"text": ",", "start": 1156, "end": 1157, "annotation": null}, {"text": "Weinheim", "start": 1158, "end": 1166, "annotation": null}, {"text": ".", "start": 1166, "end": 1167, "annotation": null}]]} +{"remark": "doping_annt1", "text": "A novel electrochemical sensor based on the use of boron doped CeO2 nanocubes modified glassy carbon microspheres paste electrode (B-CeO2NCs/GCPE) was prepared and applied for selective and sensitive determination of xanthine (XA) and hypoxanthine (HXA) individually and simultaneously. The morphology, composition and structural properties of the undoped and B doped CeO2 nanocubes were characterized by X-ray diffraction, energy-dispersed X-ray spectrometry (EDS) and transmission electron microscopy (TEM). Electrochemical activities and the surface analysis of the modified electrode were investigated using scanning electron microscopy (SEM) and cyclic voltammetry (CV). From the B-CeO2NCs/GCPE, well oxidation peaks and enhanced peak currents of XA and HXA were observed owing to the excellent catalytic activity of B-CeO2NCs. For individual detection, the linear responses of XA and HXA were in the concentration range of 5.42 \u00d7 10\u22128\u20131.31 \u00d7 10\u22125 M and 3.98 \u00d7 10\u22127\u20136.01\u00d710\u22125 M with detection limits of 3.02 and 6.17nM, respectively. For simultaneous detection by synchronous change of the concentration of XA and HXA, the linear ranges were 1.98 \u00d7 10\u22127\u20139.45 \u00d7 10\u22126 M and 3.98 \u00d7 10\u22127\u20131.28 \u00d7 10\u22125 M with detection limits of 3.65 and 8.17nM, respectively. The practical application of the modified electrode was demonstrated by simultaneously determining the concentrations of XA and HXA in human biological fluids and in fish meat samples with satisfactory results.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "novel", "start": 2, "end": 7, "annotation": null}, {"text": "electrochemical", "start": 8, "end": 23, "annotation": null}, {"text": "sensor", "start": 24, "end": 30, "annotation": null}, {"text": "based", "start": 31, "end": 36, "annotation": null}, {"text": "on", "start": 37, "end": 39, "annotation": null}, {"text": "the", "start": 40, "end": 43, "annotation": null}, {"text": "use", "start": 44, "end": 47, "annotation": null}, {"text": "of", "start": 48, "end": 50, "annotation": null}, {"text": "boron", "start": 51, "end": 56, "annotation": "DOPANT"}, {"text": "doped", "start": 57, "end": 62, "annotation": null}, {"text": "CeO2", "start": 63, "end": 67, "annotation": "BASEMAT"}, {"text": "nanocubes", "start": 68, "end": 77, "annotation": null}, {"text": "modified", "start": 78, "end": 86, "annotation": null}, {"text": "glassy", "start": 87, "end": 93, "annotation": null}, {"text": "carbon", "start": 94, "end": 100, "annotation": null}, {"text": "microspheres", "start": 101, "end": 113, "annotation": null}, {"text": "paste", "start": 114, "end": 119, "annotation": null}, {"text": "electrode", "start": 120, "end": 129, "annotation": null}, {"text": "(", "start": 130, "end": 131, "annotation": null}, {"text": "B-CeO2NCs", "start": 131, "end": 140, "annotation": null}, {"text": "/", "start": 140, "end": 141, "annotation": null}, {"text": "GCPE", "start": 141, "end": 145, "annotation": null}, {"text": ")", "start": 145, "end": 146, "annotation": null}, {"text": "was", "start": 147, "end": 150, "annotation": null}, {"text": "prepared", "start": 151, "end": 159, "annotation": null}, {"text": "and", "start": 160, "end": 163, "annotation": null}, {"text": "applied", "start": 164, "end": 171, "annotation": null}, {"text": "for", "start": 172, "end": 175, "annotation": null}, {"text": "selective", "start": 176, "end": 185, "annotation": null}, {"text": "and", "start": 186, "end": 189, "annotation": null}, {"text": "sensitive", "start": 190, "end": 199, "annotation": null}, {"text": "determination", "start": 200, "end": 213, "annotation": null}, {"text": "of", "start": 214, "end": 216, "annotation": null}, {"text": "xanthine", "start": 217, "end": 225, "annotation": null}, {"text": "(", "start": 226, "end": 227, "annotation": null}, {"text": "XA", "start": 227, "end": 229, "annotation": null}, {"text": ")", "start": 229, "end": 230, "annotation": null}, {"text": "and", "start": 231, "end": 234, "annotation": null}, {"text": "hypoxanthine", "start": 235, "end": 247, "annotation": null}, {"text": "(", "start": 248, "end": 249, "annotation": null}, {"text": "HXA", "start": 249, "end": 252, "annotation": null}, {"text": ")", "start": 252, "end": 253, "annotation": null}, {"text": "individually", "start": 254, "end": 266, "annotation": null}, {"text": "and", "start": 267, "end": 270, "annotation": null}, {"text": "simultaneously", "start": 271, "end": 285, "annotation": null}, {"text": ".", "start": 285, "end": 286, "annotation": null}], [{"text": "The", "start": 287, "end": 290, "annotation": null}, {"text": "morphology", "start": 291, "end": 301, "annotation": null}, {"text": ",", "start": 301, "end": 302, "annotation": null}, {"text": "composition", "start": 303, "end": 314, "annotation": null}, {"text": "and", "start": 315, "end": 318, "annotation": null}, {"text": "structural", "start": 319, "end": 329, "annotation": null}, {"text": "properties", "start": 330, "end": 340, "annotation": null}, {"text": "of", "start": 341, "end": 343, "annotation": null}, {"text": "the", "start": 344, "end": 347, "annotation": null}, {"text": "undoped", "start": 348, "end": 355, "annotation": null}, {"text": "and", "start": 356, "end": 359, "annotation": null}, {"text": "B", "start": 360, "end": 361, "annotation": "DOPANT"}, {"text": "doped", "start": 362, "end": 367, "annotation": null}, {"text": "CeO2", "start": 368, "end": 372, "annotation": "BASEMAT"}, {"text": "nanocubes", "start": 373, "end": 382, "annotation": null}, {"text": "were", "start": 383, "end": 387, "annotation": null}, {"text": "characterized", "start": 388, "end": 401, "annotation": null}, {"text": "by", "start": 402, "end": 404, "annotation": null}, {"text": "X-ray", "start": 405, "end": 410, "annotation": null}, {"text": "diffraction", "start": 411, "end": 422, "annotation": null}, {"text": ",", "start": 422, "end": 423, "annotation": null}, {"text": "energy", "start": 424, "end": 430, "annotation": null}, {"text": "-", "start": 430, "end": 431, "annotation": null}, {"text": "dispersed", "start": 431, "end": 440, "annotation": null}, {"text": "X-ray", "start": 441, "end": 446, "annotation": null}, {"text": "spectrometry", "start": 447, "end": 459, "annotation": null}, {"text": "(", "start": 460, "end": 461, "annotation": null}, {"text": "EDS", "start": 461, "end": 464, "annotation": null}, {"text": ")", "start": 464, "end": 465, "annotation": null}, {"text": "and", "start": 466, "end": 469, "annotation": null}, {"text": "transmission", "start": 470, "end": 482, "annotation": null}, {"text": "electron", "start": 483, "end": 491, "annotation": null}, {"text": "microscopy", "start": 492, "end": 502, "annotation": null}, {"text": "(", "start": 503, "end": 504, "annotation": null}, {"text": "TEM", "start": 504, "end": 507, "annotation": null}, {"text": ")", "start": 507, "end": 508, "annotation": null}, {"text": ".", "start": 508, "end": 509, "annotation": null}], [{"text": "Electrochemical", "start": 510, "end": 525, "annotation": null}, {"text": "activities", "start": 526, "end": 536, "annotation": null}, {"text": "and", "start": 537, "end": 540, "annotation": null}, {"text": "the", "start": 541, "end": 544, "annotation": null}, {"text": "surface", "start": 545, "end": 552, "annotation": null}, {"text": "analysis", "start": 553, "end": 561, "annotation": null}, {"text": "of", "start": 562, "end": 564, "annotation": null}, {"text": "the", "start": 565, "end": 568, "annotation": null}, {"text": "modified", "start": 569, "end": 577, "annotation": null}, {"text": "electrode", "start": 578, "end": 587, "annotation": null}, {"text": "were", "start": 588, "end": 592, "annotation": null}, {"text": "investigated", "start": 593, "end": 605, "annotation": null}, {"text": "using", "start": 606, "end": 611, "annotation": null}, {"text": "scanning", "start": 612, "end": 620, "annotation": null}, {"text": "electron", "start": 621, "end": 629, "annotation": null}, {"text": "microscopy", "start": 630, "end": 640, "annotation": null}, {"text": "(", "start": 641, "end": 642, "annotation": null}, {"text": "SEM", "start": 642, "end": 645, "annotation": null}, {"text": ")", "start": 645, "end": 646, "annotation": null}, {"text": "and", "start": 647, "end": 650, "annotation": null}, {"text": "cyclic", "start": 651, "end": 657, "annotation": null}, {"text": "voltammetry", "start": 658, "end": 669, "annotation": null}, {"text": "(", "start": 670, "end": 671, "annotation": null}, {"text": "CV", "start": 671, "end": 673, "annotation": null}, {"text": ")", "start": 673, "end": 674, "annotation": null}, {"text": ".", "start": 674, "end": 675, "annotation": null}], [{"text": "From", "start": 676, "end": 680, "annotation": null}, {"text": "the", "start": 681, "end": 684, "annotation": null}, {"text": "B-CeO2NCs", "start": 685, "end": 694, "annotation": null}, {"text": "/", "start": 694, "end": 695, "annotation": null}, {"text": "GCPE", "start": 695, "end": 699, "annotation": null}, {"text": ",", "start": 699, "end": 700, "annotation": null}, {"text": "well", "start": 701, "end": 705, "annotation": null}, {"text": "oxidation", "start": 706, "end": 715, "annotation": null}, {"text": "peaks", "start": 716, "end": 721, "annotation": null}, {"text": "and", "start": 722, "end": 725, "annotation": null}, {"text": "enhanced", "start": 726, "end": 734, "annotation": null}, {"text": "peak", "start": 735, "end": 739, "annotation": null}, {"text": "currents", "start": 740, "end": 748, "annotation": null}, {"text": "of", "start": 749, "end": 751, "annotation": null}, {"text": "XA", "start": 752, "end": 754, "annotation": null}, {"text": "and", "start": 755, "end": 758, "annotation": null}, {"text": "HXA", "start": 759, "end": 762, "annotation": null}, {"text": "were", "start": 763, "end": 767, "annotation": null}, {"text": "observed", "start": 768, "end": 776, "annotation": null}, {"text": "owing", "start": 777, "end": 782, "annotation": null}, {"text": "to", "start": 783, "end": 785, "annotation": null}, {"text": "the", "start": 786, "end": 789, "annotation": null}, {"text": "excellent", "start": 790, "end": 799, "annotation": null}, {"text": "catalytic", "start": 800, "end": 809, "annotation": null}, {"text": "activity", "start": 810, "end": 818, "annotation": null}, {"text": "of", "start": 819, "end": 821, "annotation": null}, {"text": "B-CeO2NCs", "start": 822, "end": 831, "annotation": null}, {"text": ".", "start": 831, "end": 832, "annotation": null}], [{"text": "For", "start": 833, "end": 836, "annotation": null}, {"text": "individual", "start": 837, "end": 847, "annotation": null}, {"text": "detection", "start": 848, "end": 857, "annotation": null}, {"text": ",", "start": 857, "end": 858, "annotation": null}, {"text": "the", "start": 859, "end": 862, "annotation": null}, {"text": "linear", "start": 863, "end": 869, "annotation": null}, {"text": "responses", "start": 870, "end": 879, "annotation": null}, {"text": "of", "start": 880, "end": 882, "annotation": null}, {"text": "XA", "start": 883, "end": 885, "annotation": null}, {"text": "and", "start": 886, "end": 889, "annotation": null}, {"text": "HXA", "start": 890, "end": 893, "annotation": null}, {"text": "were", "start": 894, "end": 898, "annotation": null}, {"text": "in", "start": 899, "end": 901, "annotation": null}, {"text": "the", "start": 902, "end": 905, "annotation": null}, {"text": "concentration", "start": 906, "end": 919, "annotation": null}, {"text": "range", "start": 920, "end": 925, "annotation": null}, {"text": "of", "start": 926, "end": 928, "annotation": null}, {"text": "5.42", "start": 929, "end": 933, "annotation": null}, {"text": "\u00d7", "start": 934, "end": 935, "annotation": null}, {"text": "10", "start": 936, "end": 938, "annotation": null}, {"text": "\u2212", "start": 938, "end": 939, "annotation": null}, {"text": "8", "start": 939, "end": 940, "annotation": null}, {"text": "\u2013", "start": 940, "end": 941, "annotation": null}, {"text": "1.31", "start": 941, "end": 945, "annotation": null}, {"text": "\u00d7", "start": 946, "end": 947, "annotation": null}, {"text": "10", "start": 948, "end": 950, "annotation": null}, {"text": "\u2212", "start": 950, "end": 951, "annotation": null}, {"text": "5", "start": 951, "end": 952, "annotation": null}, {"text": "M", "start": 953, "end": 954, "annotation": null}, {"text": "and", "start": 955, "end": 958, "annotation": null}, {"text": "3.98", "start": 959, "end": 963, "annotation": null}, {"text": "\u00d7", "start": 964, "end": 965, "annotation": null}, {"text": "10", "start": 966, "end": 968, "annotation": null}, {"text": "\u2212", "start": 968, "end": 969, "annotation": null}, {"text": "7", "start": 969, "end": 970, "annotation": null}, {"text": "\u2013", "start": 970, "end": 971, "annotation": null}, {"text": "6.01", "start": 971, "end": 975, "annotation": null}, {"text": "\u00d7", "start": 975, "end": 976, "annotation": null}, {"text": "10", "start": 976, "end": 978, "annotation": null}, {"text": "\u2212", "start": 978, "end": 979, "annotation": null}, {"text": "5", "start": 979, "end": 980, "annotation": null}, {"text": "M", "start": 981, "end": 982, "annotation": null}, {"text": "with", "start": 983, "end": 987, "annotation": null}, {"text": "detection", "start": 988, "end": 997, "annotation": null}, {"text": "limits", "start": 998, "end": 1004, "annotation": null}, {"text": "of", "start": 1005, "end": 1007, "annotation": null}, {"text": "3.02", "start": 1008, "end": 1012, "annotation": null}, {"text": "and", "start": 1013, "end": 1016, "annotation": null}, {"text": "6.17", "start": 1017, "end": 1021, "annotation": null}, {"text": "nM", "start": 1021, "end": 1023, "annotation": null}, {"text": ",", "start": 1023, "end": 1024, "annotation": null}, {"text": "respectively", "start": 1025, "end": 1037, "annotation": null}, {"text": ".", "start": 1037, "end": 1038, "annotation": null}], [{"text": "For", "start": 1039, "end": 1042, "annotation": null}, {"text": "simultaneous", "start": 1043, "end": 1055, "annotation": null}, {"text": "detection", "start": 1056, "end": 1065, "annotation": null}, {"text": "by", "start": 1066, "end": 1068, "annotation": null}, {"text": "synchronous", "start": 1069, "end": 1080, "annotation": null}, {"text": "change", "start": 1081, "end": 1087, "annotation": null}, {"text": "of", "start": 1088, "end": 1090, "annotation": null}, {"text": "the", "start": 1091, "end": 1094, "annotation": null}, {"text": "concentration", "start": 1095, "end": 1108, "annotation": null}, {"text": "of", "start": 1109, "end": 1111, "annotation": null}, {"text": "XA", "start": 1112, "end": 1114, "annotation": null}, {"text": "and", "start": 1115, "end": 1118, "annotation": null}, {"text": "HXA", "start": 1119, "end": 1122, "annotation": null}, {"text": ",", "start": 1122, "end": 1123, "annotation": null}, {"text": "the", "start": 1124, "end": 1127, "annotation": null}, {"text": "linear", "start": 1128, "end": 1134, "annotation": null}, {"text": "ranges", "start": 1135, "end": 1141, "annotation": null}, {"text": "were", "start": 1142, "end": 1146, "annotation": null}, {"text": "1.98", "start": 1147, "end": 1151, "annotation": null}, {"text": "\u00d7", "start": 1152, "end": 1153, "annotation": null}, {"text": "10", "start": 1154, "end": 1156, "annotation": null}, {"text": "\u2212", "start": 1156, "end": 1157, "annotation": null}, {"text": "7", "start": 1157, "end": 1158, "annotation": null}, {"text": "\u2013", "start": 1158, "end": 1159, "annotation": null}, {"text": "9.45", "start": 1159, "end": 1163, "annotation": null}, {"text": "\u00d7", "start": 1164, "end": 1165, "annotation": null}, {"text": "10", "start": 1166, "end": 1168, "annotation": null}, {"text": "\u2212", "start": 1168, "end": 1169, "annotation": null}, {"text": "6", "start": 1169, "end": 1170, "annotation": null}, {"text": "M", "start": 1171, "end": 1172, "annotation": null}, {"text": "and", "start": 1173, "end": 1176, "annotation": null}, {"text": "3.98", "start": 1177, "end": 1181, "annotation": null}, {"text": "\u00d7", "start": 1182, "end": 1183, "annotation": null}, {"text": "10", "start": 1184, "end": 1186, "annotation": null}, {"text": "\u2212", "start": 1186, "end": 1187, "annotation": null}, {"text": "7", "start": 1187, "end": 1188, "annotation": null}, {"text": "\u2013", "start": 1188, "end": 1189, "annotation": null}, {"text": "1.28", "start": 1189, "end": 1193, "annotation": null}, {"text": "\u00d7", "start": 1194, "end": 1195, "annotation": null}, {"text": "10", "start": 1196, "end": 1198, "annotation": null}, {"text": "\u2212", "start": 1198, "end": 1199, "annotation": null}, {"text": "5", "start": 1199, "end": 1200, "annotation": null}, {"text": "M", "start": 1201, "end": 1202, "annotation": null}, {"text": "with", "start": 1203, "end": 1207, "annotation": null}, {"text": "detection", "start": 1208, "end": 1217, "annotation": null}, {"text": "limits", "start": 1218, "end": 1224, "annotation": null}, {"text": "of", "start": 1225, "end": 1227, "annotation": null}, {"text": "3.65", "start": 1228, "end": 1232, "annotation": null}, {"text": "and", "start": 1233, "end": 1236, "annotation": null}, {"text": "8.17", "start": 1237, "end": 1241, "annotation": null}, {"text": "nM", "start": 1241, "end": 1243, "annotation": null}, {"text": ",", "start": 1243, "end": 1244, "annotation": null}, {"text": "respectively", "start": 1245, "end": 1257, "annotation": null}, {"text": ".", "start": 1257, "end": 1258, "annotation": null}], [{"text": "The", "start": 1259, "end": 1262, "annotation": null}, {"text": "practical", "start": 1263, "end": 1272, "annotation": null}, {"text": "application", "start": 1273, "end": 1284, "annotation": null}, {"text": "of", "start": 1285, "end": 1287, "annotation": null}, {"text": "the", "start": 1288, "end": 1291, "annotation": null}, {"text": "modified", "start": 1292, "end": 1300, "annotation": null}, {"text": "electrode", "start": 1301, "end": 1310, "annotation": null}, {"text": "was", "start": 1311, "end": 1314, "annotation": null}, {"text": "demonstrated", "start": 1315, "end": 1327, "annotation": null}, {"text": "by", "start": 1328, "end": 1330, "annotation": null}, {"text": "simultaneously", "start": 1331, "end": 1345, "annotation": null}, {"text": "determining", "start": 1346, "end": 1357, "annotation": null}, {"text": "the", "start": 1358, "end": 1361, "annotation": null}, {"text": "concentrations", "start": 1362, "end": 1376, "annotation": null}, {"text": "of", "start": 1377, "end": 1379, "annotation": null}, {"text": "XA", "start": 1380, "end": 1382, "annotation": null}, {"text": "and", "start": 1383, "end": 1386, "annotation": null}, {"text": "HXA", "start": 1387, "end": 1390, "annotation": null}, {"text": "in", "start": 1391, "end": 1393, "annotation": null}, {"text": "human", "start": 1394, "end": 1399, "annotation": null}, {"text": "biological", "start": 1400, "end": 1410, "annotation": null}, {"text": "fluids", "start": 1411, "end": 1417, "annotation": null}, {"text": "and", "start": 1418, "end": 1421, "annotation": null}, {"text": "in", "start": 1422, "end": 1424, "annotation": null}, {"text": "fish", "start": 1425, "end": 1429, "annotation": null}, {"text": "meat", "start": 1430, "end": 1434, "annotation": null}, {"text": "samples", "start": 1435, "end": 1442, "annotation": null}, {"text": "with", "start": 1443, "end": 1447, "annotation": null}, {"text": "satisfactory", "start": 1448, "end": 1460, "annotation": null}, {"text": "results", "start": 1461, "end": 1468, "annotation": null}, {"text": ".", "start": 1468, "end": 1469, "annotation": null}]], "meta": {"doi": "10.1016/j.snb.2016.03.133"}} +{"remark": "doping_annt3", "text": "Hall effect, electrical conductivity, carrier mobility, and magnetoresistance of Cu\u2010doped n\u2010ZnSe bulk crystals are studied in the temperature range 2 to 300 K. Compensating Cu impurity amplifies the random impurity potential, modulates the band edges, and leads to electron localization in the potential wells of the conduction band bottom in slightly doped, highly compensated crystals (K = 0.82 to 0.97). High\u2010temperature hopping conductivity through the localized states of such type observed in the range 100 to 200 K and accompanied by negative magnetoresistance is first investigated in n\u2010ZnSe. Copyright \u00a9 1995 WILEY\u2010VCH Verlag GmbH & Co. KGaA", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Hall", "start": 0, "end": 4, "annotation": null}, {"text": "effect", "start": 5, "end": 11, "annotation": null}, {"text": ",", "start": 11, "end": 12, "annotation": null}, {"text": "electrical", "start": 13, "end": 23, "annotation": null}, {"text": "conductivity", "start": 24, "end": 36, "annotation": null}, {"text": ",", "start": 36, "end": 37, "annotation": null}, {"text": "carrier", "start": 38, "end": 45, "annotation": null}, {"text": "mobility", "start": 46, "end": 54, "annotation": null}, {"text": ",", "start": 54, "end": 55, "annotation": null}, {"text": "and", "start": 56, "end": 59, "annotation": null}, {"text": "magnetoresistance", "start": 60, "end": 77, "annotation": null}, {"text": "of", "start": 78, "end": 80, "annotation": null}, {"text": "Cu\u2010doped", "start": 81, "end": 89, "annotation": "DOPANT"}, {"text": "n\u2010ZnSe", "start": 90, "end": 96, "annotation": "BASEMAT"}, {"text": "bulk", "start": 97, "end": 101, "annotation": null}, {"text": "crystals", "start": 102, "end": 110, "annotation": null}, {"text": "are", "start": 111, "end": 114, "annotation": null}, {"text": "studied", "start": 115, "end": 122, "annotation": null}, {"text": "in", "start": 123, "end": 125, "annotation": null}, {"text": "the", "start": 126, "end": 129, "annotation": null}, {"text": "temperature", "start": 130, "end": 141, "annotation": null}, {"text": "range", "start": 142, "end": 147, "annotation": null}, {"text": "2", "start": 148, "end": 149, "annotation": null}, {"text": "to", "start": 150, "end": 152, "annotation": null}, {"text": "300", "start": 153, "end": 156, "annotation": null}, {"text": "K", "start": 157, "end": 158, "annotation": null}, {"text": ".", "start": 158, "end": 159, "annotation": null}], [{"text": "Compensating", "start": 160, "end": 172, "annotation": null}, {"text": "Cu", "start": 173, "end": 175, "annotation": null}, {"text": "impurity", "start": 176, "end": 184, "annotation": null}, {"text": "amplifies", "start": 185, "end": 194, "annotation": null}, {"text": "the", "start": 195, "end": 198, "annotation": null}, {"text": "random", "start": 199, "end": 205, "annotation": null}, {"text": "impurity", "start": 206, "end": 214, "annotation": null}, {"text": "potential", "start": 215, "end": 224, "annotation": null}, {"text": ",", "start": 224, "end": 225, "annotation": null}, {"text": "modulates", "start": 226, "end": 235, "annotation": null}, {"text": "the", "start": 236, "end": 239, "annotation": null}, {"text": "band", "start": 240, "end": 244, "annotation": null}, {"text": "edges", "start": 245, "end": 250, "annotation": null}, {"text": ",", "start": 250, "end": 251, "annotation": null}, {"text": "and", "start": 252, "end": 255, "annotation": null}, {"text": "leads", "start": 256, "end": 261, "annotation": null}, {"text": "to", "start": 262, "end": 264, "annotation": null}, {"text": "electron", "start": 265, "end": 273, "annotation": null}, {"text": "localization", "start": 274, "end": 286, "annotation": null}, {"text": "in", "start": 287, "end": 289, "annotation": null}, {"text": "the", "start": 290, "end": 293, "annotation": null}, {"text": "potential", "start": 294, "end": 303, "annotation": null}, {"text": "wells", "start": 304, "end": 309, "annotation": null}, {"text": "of", "start": 310, "end": 312, "annotation": null}, {"text": "the", "start": 313, "end": 316, "annotation": null}, {"text": "conduction", "start": 317, "end": 327, "annotation": null}, {"text": "band", "start": 328, "end": 332, "annotation": null}, {"text": "bottom", "start": 333, "end": 339, "annotation": null}, {"text": "in", "start": 340, "end": 342, "annotation": null}, {"text": "slightly", "start": 343, "end": 351, "annotation": null}, {"text": "doped", "start": 352, "end": 357, "annotation": null}, {"text": ",", "start": 357, "end": 358, "annotation": null}, {"text": "highly", "start": 359, "end": 365, "annotation": null}, {"text": "compensated", "start": 366, "end": 377, "annotation": null}, {"text": "crystals", "start": 378, "end": 386, "annotation": null}, {"text": "(", "start": 387, "end": 388, "annotation": null}, {"text": "K", "start": 388, "end": 389, "annotation": null}, {"text": "=", "start": 390, "end": 391, "annotation": null}, {"text": "0.82", "start": 392, "end": 396, "annotation": null}, {"text": "to", "start": 397, "end": 399, "annotation": null}, {"text": "0.97", "start": 400, "end": 404, "annotation": null}, {"text": ")", "start": 404, "end": 405, "annotation": null}, {"text": ".", "start": 405, "end": 406, "annotation": null}], [{"text": "High\u2010temperature", "start": 407, "end": 423, "annotation": null}, {"text": "hopping", "start": 424, "end": 431, "annotation": null}, {"text": "conductivity", "start": 432, "end": 444, "annotation": null}, {"text": "through", "start": 445, "end": 452, "annotation": null}, {"text": "the", "start": 453, "end": 456, "annotation": null}, {"text": "localized", "start": 457, "end": 466, "annotation": null}, {"text": "states", "start": 467, "end": 473, "annotation": null}, {"text": "of", "start": 474, "end": 476, "annotation": null}, {"text": "such", "start": 477, "end": 481, "annotation": null}, {"text": "type", "start": 482, "end": 486, "annotation": null}, {"text": "observed", "start": 487, "end": 495, "annotation": null}, {"text": "in", "start": 496, "end": 498, "annotation": null}, {"text": "the", "start": 499, "end": 502, "annotation": null}, {"text": "range", "start": 503, "end": 508, "annotation": null}, {"text": "100", "start": 509, "end": 512, "annotation": null}, {"text": "to", "start": 513, "end": 515, "annotation": null}, {"text": "200", "start": 516, "end": 519, "annotation": null}, {"text": "K", "start": 520, "end": 521, "annotation": null}, {"text": "and", "start": 522, "end": 525, "annotation": null}, {"text": "accompanied", "start": 526, "end": 537, "annotation": null}, {"text": "by", "start": 538, "end": 540, "annotation": null}, {"text": "negative", "start": 541, "end": 549, "annotation": null}, {"text": "magnetoresistance", "start": 550, "end": 567, "annotation": null}, {"text": "is", "start": 568, "end": 570, "annotation": null}, {"text": "first", "start": 571, "end": 576, "annotation": null}, {"text": "investigated", "start": 577, "end": 589, "annotation": null}, {"text": "in", "start": 590, "end": 592, "annotation": null}, {"text": "n\u2010ZnSe", "start": 593, "end": 599, "annotation": "BASEMAT"}, {"text": ".", "start": 599, "end": 600, "annotation": null}], [{"text": "KGaA", "start": 646, "end": 650, "annotation": null}]], "meta": {"doi": "10.1002/pssb.2221900220"}} +{"remark": "doping_annt3", "text": "We have successfully grown antimony-doped Si 1-xGe x epi-films with different doping level and a boron-doped one on Si (001) substrate. Using these samples, we have investigated the effect of these impurities in Si 1-xGe x epifilm on dislocation velocity. Although dislocation velocities in the B-doped SiGe film were comparable to those in the undoped one because of the low concentration of B, those in Sb-doped samples are remarkably enhanced, which is qualitatively similar to the effects in bulk Si. The reduction of the activation energy of dislocation motion depended on the doping level of Sb and the amount of the reduction was 1.0 eV in the highest Sb-concentration film. This value is significantly larger than those reported in bulk Si. The velocities in the lowest Sb-concentration samples are also enhanced though the samples are thought to be electrically intrinsic at the temperatures where dislocation velocities were measured. Therefore, the large activation energy reduction is possibly attributed to multiple effects of the Fermi level change and other characteristic effects of the SiGe epifilm. \u00a9 2012 WILEY-VCH Verlag GmbH & Co. KGaA, Weinheim.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "We", "start": 0, "end": 2, "annotation": null}, {"text": "have", "start": 3, "end": 7, "annotation": null}, {"text": "successfully", "start": 8, "end": 20, "annotation": null}, {"text": "grown", "start": 21, "end": 26, "annotation": null}, {"text": "antimony", "start": 27, "end": 35, "annotation": "DOPANT"}, {"text": "-", "start": 35, "end": 36, "annotation": null}, {"text": "doped", "start": 36, "end": 41, "annotation": null}, {"text": "Si", "start": 42, "end": 44, "annotation": "BASEMAT"}, {"text": "1-xGe", "start": 45, "end": 50, "annotation": "BASEMAT"}, {"text": "x", "start": 51, "end": 52, "annotation": "BASEMAT"}, {"text": "epi-films", "start": 53, "end": 62, "annotation": null}, {"text": "with", "start": 63, "end": 67, "annotation": null}, {"text": "different", "start": 68, "end": 77, "annotation": null}, {"text": "doping", "start": 78, "end": 84, "annotation": null}, {"text": "level", "start": 85, "end": 90, "annotation": null}, {"text": "and", "start": 91, "end": 94, "annotation": null}, {"text": "a", "start": 95, "end": 96, "annotation": null}, {"text": "boron", "start": 97, "end": 102, "annotation": "DOPANT"}, {"text": "-", "start": 102, "end": 103, "annotation": null}, {"text": "doped", "start": 103, "end": 108, "annotation": null}, {"text": "one", "start": 109, "end": 112, "annotation": null}, {"text": "on", "start": 113, "end": 115, "annotation": null}, {"text": "Si", "start": 116, "end": 118, "annotation": "BASEMAT"}, {"text": "(", "start": 119, "end": 120, "annotation": null}, {"text": "001", "start": 120, "end": 123, "annotation": "BASEMAT"}, {"text": ")", "start": 123, "end": 124, "annotation": null}, {"text": "substrate", "start": 125, "end": 134, "annotation": "BASEMAT"}, {"text": ".", "start": 134, "end": 135, "annotation": null}], [{"text": "Using", "start": 136, "end": 141, "annotation": null}, {"text": "these", "start": 142, "end": 147, "annotation": null}, {"text": "samples", "start": 148, "end": 155, "annotation": null}, {"text": ",", "start": 155, "end": 156, "annotation": null}, {"text": "we", "start": 157, "end": 159, "annotation": null}, {"text": "have", "start": 160, "end": 164, "annotation": null}, {"text": "investigated", "start": 165, "end": 177, "annotation": null}, {"text": "the", "start": 178, "end": 181, "annotation": null}, {"text": "effect", "start": 182, "end": 188, "annotation": null}, {"text": "of", "start": 189, "end": 191, "annotation": null}, {"text": "these", "start": 192, "end": 197, "annotation": null}, {"text": "impurities", "start": 198, "end": 208, "annotation": null}, {"text": "in", "start": 209, "end": 211, "annotation": null}, {"text": "Si", "start": 212, "end": 214, "annotation": null}, {"text": "1-xGe", "start": 215, "end": 220, "annotation": null}, {"text": "x", "start": 221, "end": 222, "annotation": null}, {"text": "epifilm", "start": 223, "end": 230, "annotation": null}, {"text": "on", "start": 231, "end": 233, "annotation": null}, {"text": "dislocation", "start": 234, "end": 245, "annotation": null}, {"text": "velocity", "start": 246, "end": 254, "annotation": null}, {"text": ".", "start": 254, "end": 255, "annotation": null}], [{"text": "Although", "start": 256, "end": 264, "annotation": null}, {"text": "dislocation", "start": 265, "end": 276, "annotation": null}, {"text": "velocities", "start": 277, "end": 287, "annotation": null}, {"text": "in", "start": 288, "end": 290, "annotation": null}, {"text": "the", "start": 291, "end": 294, "annotation": null}, {"text": "B", "start": 295, "end": 296, "annotation": "DOPANT"}, {"text": "-", "start": 296, "end": 297, "annotation": null}, {"text": "doped", "start": 297, "end": 302, "annotation": null}, {"text": "SiGe", "start": 303, "end": 307, "annotation": "BASEMAT"}, {"text": "film", "start": 308, "end": 312, "annotation": null}, {"text": "were", "start": 313, "end": 317, "annotation": null}, {"text": "comparable", "start": 318, "end": 328, "annotation": null}, {"text": "to", "start": 329, "end": 331, "annotation": null}, {"text": "those", "start": 332, "end": 337, "annotation": null}, {"text": "in", "start": 338, "end": 340, "annotation": null}, {"text": "the", "start": 341, "end": 344, "annotation": null}, {"text": "undoped", "start": 345, "end": 352, "annotation": null}, {"text": "one", "start": 353, "end": 356, "annotation": null}, {"text": "because", "start": 357, "end": 364, "annotation": null}, {"text": "of", "start": 365, "end": 367, "annotation": null}, {"text": "the", "start": 368, "end": 371, "annotation": null}, {"text": "low", "start": 372, "end": 375, "annotation": null}, {"text": "concentration", "start": 376, "end": 389, "annotation": null}, {"text": "of", "start": 390, "end": 392, "annotation": null}, {"text": "B", "start": 393, "end": 394, "annotation": null}, {"text": ",", "start": 394, "end": 395, "annotation": null}, {"text": "those", "start": 396, "end": 401, "annotation": null}, {"text": "in", "start": 402, "end": 404, "annotation": null}, {"text": "Sb", "start": 405, "end": 407, "annotation": "DOPANT"}, {"text": "-", "start": 407, "end": 408, "annotation": null}, {"text": "doped", "start": 408, "end": 413, "annotation": null}, {"text": "samples", "start": 414, "end": 421, "annotation": "BASEMAT"}, {"text": "are", "start": 422, "end": 425, "annotation": null}, {"text": "remarkably", "start": 426, "end": 436, "annotation": null}, {"text": "enhanced", "start": 437, "end": 445, "annotation": null}, {"text": ",", "start": 445, "end": 446, "annotation": null}, {"text": "which", "start": 447, "end": 452, "annotation": null}, {"text": "is", "start": 453, "end": 455, "annotation": null}, {"text": "qualitatively", "start": 456, "end": 469, "annotation": null}, {"text": "similar", "start": 470, "end": 477, "annotation": null}, {"text": "to", "start": 478, "end": 480, "annotation": null}, {"text": "the", "start": 481, "end": 484, "annotation": null}, {"text": "effects", "start": 485, "end": 492, "annotation": null}, {"text": "in", "start": 493, "end": 495, "annotation": null}, {"text": "bulk", "start": 496, "end": 500, "annotation": null}, {"text": "Si", "start": 501, "end": 503, "annotation": null}, {"text": ".", "start": 503, "end": 504, "annotation": null}], [{"text": "The", "start": 505, "end": 508, "annotation": null}, {"text": "reduction", "start": 509, "end": 518, "annotation": null}, {"text": "of", "start": 519, "end": 521, "annotation": null}, {"text": "the", "start": 522, "end": 525, "annotation": null}, {"text": "activation", "start": 526, "end": 536, "annotation": null}, {"text": "energy", "start": 537, "end": 543, "annotation": null}, {"text": "of", "start": 544, "end": 546, "annotation": null}, {"text": "dislocation", "start": 547, "end": 558, "annotation": null}, {"text": "motion", "start": 559, "end": 565, "annotation": null}, {"text": "depended", "start": 566, "end": 574, "annotation": null}, {"text": "on", "start": 575, "end": 577, "annotation": null}, {"text": "the", "start": 578, "end": 581, "annotation": null}, {"text": "doping", "start": 582, "end": 588, "annotation": null}, {"text": "level", "start": 589, "end": 594, "annotation": null}, {"text": "of", "start": 595, "end": 597, "annotation": null}, {"text": "Sb", "start": 598, "end": 600, "annotation": "DOPANT"}, {"text": "and", "start": 601, "end": 604, "annotation": null}, {"text": "the", "start": 605, "end": 608, "annotation": null}, {"text": "amount", "start": 609, "end": 615, "annotation": null}, {"text": "of", "start": 616, "end": 618, "annotation": null}, {"text": "the", "start": 619, "end": 622, "annotation": null}, {"text": "reduction", "start": 623, "end": 632, "annotation": null}, {"text": "was", "start": 633, "end": 636, "annotation": null}, {"text": "1.0", "start": 637, "end": 640, "annotation": null}, {"text": "eV", "start": 641, "end": 643, "annotation": null}, {"text": "in", "start": 644, "end": 646, "annotation": null}, {"text": "the", "start": 647, "end": 650, "annotation": null}, {"text": "highest", "start": 651, "end": 658, "annotation": null}, {"text": "Sb", "start": 659, "end": 661, "annotation": null}, {"text": "-", "start": 661, "end": 662, "annotation": null}, {"text": "concentration", "start": 662, "end": 675, "annotation": null}, {"text": "film", "start": 676, "end": 680, "annotation": null}, {"text": ".", "start": 680, "end": 681, "annotation": null}], [{"text": "This", "start": 682, "end": 686, "annotation": null}, {"text": "value", "start": 687, "end": 692, "annotation": null}, {"text": "is", "start": 693, "end": 695, "annotation": null}, {"text": "significantly", "start": 696, "end": 709, "annotation": null}, {"text": "larger", "start": 710, "end": 716, "annotation": null}, {"text": "than", "start": 717, "end": 721, "annotation": null}, {"text": "those", "start": 722, "end": 727, "annotation": null}, {"text": "reported", "start": 728, "end": 736, "annotation": null}, {"text": "in", "start": 737, "end": 739, "annotation": null}, {"text": "bulk", "start": 740, "end": 744, "annotation": null}, {"text": "Si", "start": 745, "end": 747, "annotation": null}, {"text": ".", "start": 747, "end": 748, "annotation": null}], [{"text": "The", "start": 749, "end": 752, "annotation": null}, {"text": "velocities", "start": 753, "end": 763, "annotation": null}, {"text": "in", "start": 764, "end": 766, "annotation": null}, {"text": "the", "start": 767, "end": 770, "annotation": null}, {"text": "lowest", "start": 771, "end": 777, "annotation": null}, {"text": "Sb", "start": 778, "end": 780, "annotation": null}, {"text": "-", "start": 780, "end": 781, "annotation": null}, {"text": "concentration", "start": 781, "end": 794, "annotation": null}, {"text": "samples", "start": 795, "end": 802, "annotation": null}, {"text": "are", "start": 803, "end": 806, "annotation": null}, {"text": "also", "start": 807, "end": 811, "annotation": null}, {"text": "enhanced", "start": 812, "end": 820, "annotation": null}, {"text": "though", "start": 821, "end": 827, "annotation": null}, {"text": "the", "start": 828, "end": 831, "annotation": null}, {"text": "samples", "start": 832, "end": 839, "annotation": null}, {"text": "are", "start": 840, "end": 843, "annotation": null}, {"text": "thought", "start": 844, "end": 851, "annotation": null}, {"text": "to", "start": 852, "end": 854, "annotation": null}, {"text": "be", "start": 855, "end": 857, "annotation": null}, {"text": "electrically", "start": 858, "end": 870, "annotation": null}, {"text": "intrinsic", "start": 871, "end": 880, "annotation": null}, {"text": "at", "start": 881, "end": 883, "annotation": null}, {"text": "the", "start": 884, "end": 887, "annotation": null}, {"text": "temperatures", "start": 888, "end": 900, "annotation": null}, {"text": "where", "start": 901, "end": 906, "annotation": null}, {"text": "dislocation", "start": 907, "end": 918, "annotation": null}, {"text": "velocities", "start": 919, "end": 929, "annotation": null}, {"text": "were", "start": 930, "end": 934, "annotation": null}, {"text": "measured", "start": 935, "end": 943, "annotation": null}, {"text": ".", "start": 943, "end": 944, "annotation": null}], [{"text": "Therefore", "start": 945, "end": 954, "annotation": null}, {"text": ",", "start": 954, "end": 955, "annotation": null}, {"text": "the", "start": 956, "end": 959, "annotation": null}, {"text": "large", "start": 960, "end": 965, "annotation": null}, {"text": "activation", "start": 966, "end": 976, "annotation": null}, {"text": "energy", "start": 977, "end": 983, "annotation": null}, {"text": "reduction", "start": 984, "end": 993, "annotation": null}, {"text": "is", "start": 994, "end": 996, "annotation": null}, {"text": "possibly", "start": 997, "end": 1005, "annotation": null}, {"text": "attributed", "start": 1006, "end": 1016, "annotation": null}, {"text": "to", "start": 1017, "end": 1019, "annotation": null}, {"text": "multiple", "start": 1020, "end": 1028, "annotation": null}, {"text": "effects", "start": 1029, "end": 1036, "annotation": null}, {"text": "of", "start": 1037, "end": 1039, "annotation": null}, {"text": "the", "start": 1040, "end": 1043, "annotation": null}, {"text": "Fermi", "start": 1044, "end": 1049, "annotation": null}, {"text": "level", "start": 1050, "end": 1055, "annotation": null}, {"text": "change", "start": 1056, "end": 1062, "annotation": null}, {"text": "and", "start": 1063, "end": 1066, "annotation": null}, {"text": "other", "start": 1067, "end": 1072, "annotation": null}, {"text": "characteristic", "start": 1073, "end": 1087, "annotation": null}, {"text": "effects", "start": 1088, "end": 1095, "annotation": null}, {"text": "of", "start": 1096, "end": 1098, "annotation": null}, {"text": "the", "start": 1099, "end": 1102, "annotation": null}, {"text": "SiGe", "start": 1103, "end": 1107, "annotation": null}, {"text": "epifilm", "start": 1108, "end": 1115, "annotation": null}, {"text": ".", "start": 1115, "end": 1116, "annotation": null}], [{"text": "KGaA", "start": 1152, "end": 1156, "annotation": null}, {"text": ",", "start": 1156, "end": 1157, "annotation": null}, {"text": "Weinheim", "start": 1158, "end": 1166, "annotation": null}, {"text": ".", "start": 1166, "end": 1167, "annotation": null}]], "meta": {"doi": "10.1002/pssa.201200208"}} {"text": "A study of poly(pyrrolium tosylate) by cyclic voltammetry in the presence of bromide and chloride ions has facilitated the determination of the oxidation potential of pyrrole on mercury. Elemental analysis and scanning electron microscope examination of a large film produced in the presence of potassium bromide indicate that any mercury formed by the anodic oxidation is removed as crystalline mercurous bromide, while about one-eighth of the tosylate dopant is replaced by bromide ions.", "meta": {"doi": "10.1016/0032-3861(91)90577-6"}, "_input_hash": -1015015320, "_task_hash": 831667544, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "study", "start": 2, "end": 7, "id": 1, "annotation": null}, {"text": "of", "start": 8, "end": 10, "id": 2, "annotation": null}, {"text": "poly(pyrrolium", "start": 11, "end": 25, "id": 3, "annotation": null}, {"text": "tosylate", "start": 26, "end": 34, "id": 4, "annotation": null}, {"text": ")", "start": 35, "end": 36, "id": 5, "annotation": null}, {"text": "by", "start": 37, "end": 39, "id": 6, "annotation": null}, {"text": "cyclic", "start": 40, "end": 46, "id": 7, "annotation": null}, {"text": "voltammetry", "start": 47, "end": 58, "id": 8, "annotation": null}, {"text": "in", "start": 59, "end": 61, "id": 9, "annotation": null}, {"text": "the", "start": 62, "end": 65, "id": 10, "annotation": null}, {"text": "presence", "start": 66, "end": 74, "id": 11, "annotation": null}, {"text": "of", "start": 75, "end": 77, "id": 12, "annotation": null}, {"text": "bromide", "start": 78, "end": 85, "id": 13, "annotation": null}, {"text": "and", "start": 86, "end": 89, "id": 14, "annotation": null}, {"text": "chloride", "start": 90, "end": 98, "id": 15, "annotation": null}, {"text": "ions", "start": 99, "end": 103, "id": 16, "annotation": null}, {"text": "has", "start": 104, "end": 107, "id": 17, "annotation": null}, {"text": "facilitated", "start": 108, "end": 119, "id": 18, "annotation": null}, {"text": "the", "start": 120, "end": 123, "id": 19, "annotation": null}, {"text": "determination", "start": 124, "end": 137, "id": 20, "annotation": null}, {"text": "of", "start": 138, "end": 140, "id": 21, "annotation": null}, {"text": "the", "start": 141, "end": 144, "id": 22, "annotation": null}, {"text": "oxidation", "start": 145, "end": 154, "id": 23, "annotation": null}, {"text": "potential", "start": 155, "end": 164, "id": 24, "annotation": null}, {"text": "of", "start": 165, "end": 167, "id": 25, "annotation": null}, {"text": "pyrrole", "start": 168, "end": 175, "id": 26, "annotation": null}, {"text": "on", "start": 176, "end": 178, "id": 27, "annotation": null}, {"text": "mercury", "start": 179, "end": 186, "id": 28, "annotation": null}, {"text": ".", "start": 187, "end": 188, "id": 29, "annotation": null}], [{"text": "Elemental", "start": 189, "end": 198, "id": 30, "annotation": null}, {"text": "analysis", "start": 199, "end": 207, "id": 31, "annotation": null}, {"text": "and", "start": 208, "end": 211, "id": 32, "annotation": null}, {"text": "scanning", "start": 212, "end": 220, "id": 33, "annotation": null}, {"text": "electron", "start": 221, "end": 229, "id": 34, "annotation": null}, {"text": "microscope", "start": 230, "end": 240, "id": 35, "annotation": null}, {"text": "examination", "start": 241, "end": 252, "id": 36, "annotation": null}, {"text": "of", "start": 253, "end": 255, "id": 37, "annotation": null}, {"text": "a", "start": 256, "end": 257, "id": 38, "annotation": null}, {"text": "large", "start": 258, "end": 263, "id": 39, "annotation": null}, {"text": "film", "start": 264, "end": 268, "id": 40, "annotation": null}, {"text": "produced", "start": 269, "end": 277, "id": 41, "annotation": null}, {"text": "in", "start": 278, "end": 280, "id": 42, "annotation": null}, {"text": "the", "start": 281, "end": 284, "id": 43, "annotation": null}, {"text": "presence", "start": 285, "end": 293, "id": 44, "annotation": null}, {"text": "of", "start": 294, "end": 296, "id": 45, "annotation": null}, {"text": "potassium", "start": 297, "end": 306, "id": 46, "annotation": null}, {"text": "bromide", "start": 307, "end": 314, "id": 47, "annotation": null}, {"text": "indicate", "start": 315, "end": 323, "id": 48, "annotation": null}, {"text": "that", "start": 324, "end": 328, "id": 49, "annotation": null}, {"text": "any", "start": 329, "end": 332, "id": 50, "annotation": null}, {"text": "mercury", "start": 333, "end": 340, "id": 51, "annotation": null}, {"text": "formed", "start": 341, "end": 347, "id": 52, "annotation": null}, {"text": "by", "start": 348, "end": 350, "id": 53, "annotation": null}, {"text": "the", "start": 351, "end": 354, "id": 54, "annotation": null}, {"text": "anodic", "start": 355, "end": 361, "id": 55, "annotation": null}, {"text": "oxidation", "start": 362, "end": 371, "id": 56, "annotation": null}, {"text": "is", "start": 372, "end": 374, "id": 57, "annotation": null}, {"text": "removed", "start": 375, "end": 382, "id": 58, "annotation": null}, {"text": "as", "start": 383, "end": 385, "id": 59, "annotation": null}, {"text": "crystalline", "start": 386, "end": 397, "id": 60, "annotation": null}, {"text": "mercurous", "start": 398, "end": 407, "id": 61, "annotation": null}, {"text": "bromide", "start": 408, "end": 415, "id": 62, "annotation": null}, {"text": ",", "start": 416, "end": 417, "id": 63, "annotation": null}, {"text": "while", "start": 418, "end": 423, "id": 64, "annotation": null}, {"text": "about", "start": 424, "end": 429, "id": 65, "annotation": null}, {"text": "one", "start": 430, "end": 433, "id": 66, "annotation": null}, {"text": "-", "start": 434, "end": 435, "id": 67, "annotation": null}, {"text": "eighth", "start": 436, "end": 442, "id": 68, "annotation": null}, {"text": "of", "start": 443, "end": 445, "id": 69, "annotation": null}, {"text": "the", "start": 446, "end": 449, "id": 70, "annotation": null}, {"text": "tosylate", "start": 450, "end": 458, "id": 71, "annotation": "BASEMAT"}, {"text": "dopant", "start": 459, "end": 465, "id": 72, "annotation": null}, {"text": "is", "start": 466, "end": 468, "id": 73, "annotation": null}, {"text": "replaced", "start": 469, "end": 477, "id": 74, "annotation": null}, {"text": "by", "start": 478, "end": 480, "id": 75, "annotation": null}, {"text": "bromide", "start": 481, "end": 488, "id": 76, "annotation": "DOPANT"}, {"text": "ions", "start": 489, "end": 493, "id": 77, "annotation": "DOPANT"}, {"text": ".", "start": 494, "end": 495, "id": 78, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "La3+ and K+ co-doped nanoporous TiO2\u201310mol% SnO2 thin films have been prepared by sol\u2013gel method with Pluronic P123 as the organic template on alumina substrates, and their humidity sensing properties have been investigated. It was found that the addition of rare earth ion La3+, alkali ion K+ and tri-block copolymer Pluronic P123 is beneficial for improving the humidity sensitive properties of the samples. The sensing behaviors of thin films were inspected at different sintering temperatures by constructing a humidity-impedance measuring system. It is found that nanoporous TiO2\u2013SnO2 doped with 0.3mol% La3+ and 50mol% K+ sintered at 500\u00b0C for 4h shows the best humidity sensing properties. This thin film achieves a high sensitivity with the impedance changed five orders of magnitude from 109 \u03a9 to 104 \u03a9 with excellent linearity in the relative humidity (RH) range of 11\u201395% at 25\u00b0C. The response and recovery time of this thin film are about 11 and 18s, respectively. High sensitivity, narrow hysteresis loop, rapid response and recovery, prominent stability and good reproducibility are obtained. The effects of dopant content on humidity sensitivity have also been discussed in terms of segregation of rare earth ions at grain boundaries and granularity of crystals, and influence of K+ on the decrease in the intrinsic resistance of the materials and direct contribution to the conduction.", "meta": {"doi": "10.1016/j.snb.2011.07.037"}, "_input_hash": -1317248387, "_task_hash": 2005476364, "tokens": [[{"text": "La3", "start": 0, "end": 3, "id": 0, "annotation": "DOPANT"}, {"text": "+", "start": 4, "end": 5, "id": 1, "annotation": "DOPANT"}, {"text": "and", "start": 6, "end": 9, "id": 2, "annotation": null}, {"text": "K+", "start": 10, "end": 12, "id": 3, "annotation": "DOPANT"}, {"text": "co", "start": 13, "end": 15, "id": 4, "annotation": null}, {"text": "-", "start": 16, "end": 17, "id": 5, "annotation": null}, {"text": "doped", "start": 18, "end": 23, "id": 6, "annotation": null}, {"text": "nanoporous", "start": 24, "end": 34, "id": 7, "annotation": null}, {"text": "TiO2\u201310mol%", "start": 35, "end": 46, "id": 8, "annotation": "BASEMAT"}, {"text": "SnO2", "start": 47, "end": 51, "id": 9, "annotation": "BASEMAT"}, {"text": "thin", "start": 52, "end": 56, "id": 10, "annotation": null}, {"text": "films", "start": 57, "end": 62, "id": 11, "annotation": null}, {"text": "have", "start": 63, "end": 67, "id": 12, "annotation": null}, {"text": "been", "start": 68, "end": 72, "id": 13, "annotation": null}, {"text": "prepared", "start": 73, "end": 81, "id": 14, "annotation": null}, {"text": "by", "start": 82, "end": 84, "id": 15, "annotation": null}, {"text": "sol", "start": 85, "end": 88, "id": 16, "annotation": null}, {"text": "\u2013", "start": 89, "end": 90, "id": 17, "annotation": null}, {"text": "gel", "start": 91, "end": 94, "id": 18, "annotation": null}, {"text": "method", "start": 95, "end": 101, "id": 19, "annotation": null}, {"text": "with", "start": 102, "end": 106, "id": 20, "annotation": null}, {"text": "Pluronic", "start": 107, "end": 115, "id": 21, "annotation": null}, {"text": "P123", "start": 116, "end": 120, "id": 22, "annotation": null}, {"text": "as", "start": 121, "end": 123, "id": 23, "annotation": null}, {"text": "the", "start": 124, "end": 127, "id": 24, "annotation": null}, {"text": "organic", "start": 128, "end": 135, "id": 25, "annotation": null}, {"text": "template", "start": 136, "end": 144, "id": 26, "annotation": null}, {"text": "on", "start": 145, "end": 147, "id": 27, "annotation": null}, {"text": "alumina", "start": 148, "end": 155, "id": 28, "annotation": null}, {"text": "substrates", "start": 156, "end": 166, "id": 29, "annotation": null}, {"text": ",", "start": 167, "end": 168, "id": 30, "annotation": null}, {"text": "and", "start": 169, "end": 172, "id": 31, "annotation": null}, {"text": "their", "start": 173, "end": 178, "id": 32, "annotation": null}, {"text": "humidity", "start": 179, "end": 187, "id": 33, "annotation": null}, {"text": "sensing", "start": 188, "end": 195, "id": 34, "annotation": null}, {"text": "properties", "start": 196, "end": 206, "id": 35, "annotation": null}, {"text": "have", "start": 207, "end": 211, "id": 36, "annotation": null}, {"text": "been", "start": 212, "end": 216, "id": 37, "annotation": null}, {"text": "investigated", "start": 217, "end": 229, "id": 38, "annotation": null}, {"text": ".", "start": 230, "end": 231, "id": 39, "annotation": null}], [{"text": "It", "start": 232, "end": 234, "id": 40, "annotation": null}, {"text": "was", "start": 235, "end": 238, "id": 41, "annotation": null}, {"text": "found", "start": 239, "end": 244, "id": 42, "annotation": null}, {"text": "that", "start": 245, "end": 249, "id": 43, "annotation": null}, {"text": "the", "start": 250, "end": 253, "id": 44, "annotation": null}, {"text": "addition", "start": 254, "end": 262, "id": 45, "annotation": null}, {"text": "of", "start": 263, "end": 265, "id": 46, "annotation": null}, {"text": "rare", "start": 266, "end": 270, "id": 47, "annotation": null}, {"text": "earth", "start": 271, "end": 276, "id": 48, "annotation": null}, {"text": "ion", "start": 277, "end": 280, "id": 49, "annotation": null}, {"text": "La3", "start": 281, "end": 284, "id": 50, "annotation": null}, {"text": "+", "start": 285, "end": 286, "id": 51, "annotation": null}, {"text": ",", "start": 287, "end": 288, "id": 52, "annotation": null}, {"text": "alkali", "start": 289, "end": 295, "id": 53, "annotation": null}, {"text": "ion", "start": 296, "end": 299, "id": 54, "annotation": null}, {"text": "K+", "start": 300, "end": 302, "id": 55, "annotation": null}, {"text": "and", "start": 303, "end": 306, "id": 56, "annotation": null}, {"text": "tri", "start": 307, "end": 310, "id": 57, "annotation": null}, {"text": "-", "start": 311, "end": 312, "id": 58, "annotation": null}, {"text": "block", "start": 313, "end": 318, "id": 59, "annotation": null}, {"text": "copolymer", "start": 319, "end": 328, "id": 60, "annotation": null}, {"text": "Pluronic", "start": 329, "end": 337, "id": 61, "annotation": null}, {"text": "P123", "start": 338, "end": 342, "id": 62, "annotation": null}, {"text": "is", "start": 343, "end": 345, "id": 63, "annotation": null}, {"text": "beneficial", "start": 346, "end": 356, "id": 64, "annotation": null}, {"text": "for", "start": 357, "end": 360, "id": 65, "annotation": null}, {"text": "improving", "start": 361, "end": 370, "id": 66, "annotation": null}, {"text": "the", "start": 371, "end": 374, "id": 67, "annotation": null}, {"text": "humidity", "start": 375, "end": 383, "id": 68, "annotation": null}, {"text": "sensitive", "start": 384, "end": 393, "id": 69, "annotation": null}, {"text": "properties", "start": 394, "end": 404, "id": 70, "annotation": null}, {"text": "of", "start": 405, "end": 407, "id": 71, "annotation": null}, {"text": "the", "start": 408, "end": 411, "id": 72, "annotation": null}, {"text": "samples", "start": 412, "end": 419, "id": 73, "annotation": null}, {"text": ".", "start": 420, "end": 421, "id": 74, "annotation": null}], [{"text": "The", "start": 422, "end": 425, "id": 75, "annotation": null}, {"text": "sensing", "start": 426, "end": 433, "id": 76, "annotation": null}, {"text": "behaviors", "start": 434, "end": 443, "id": 77, "annotation": null}, {"text": "of", "start": 444, "end": 446, "id": 78, "annotation": null}, {"text": "thin", "start": 447, "end": 451, "id": 79, "annotation": null}, {"text": "films", "start": 452, "end": 457, "id": 80, "annotation": null}, {"text": "were", "start": 458, "end": 462, "id": 81, "annotation": null}, {"text": "inspected", "start": 463, "end": 472, "id": 82, "annotation": null}, {"text": "at", "start": 473, "end": 475, "id": 83, "annotation": null}, {"text": "different", "start": 476, "end": 485, "id": 84, "annotation": null}, {"text": "sintering", "start": 486, "end": 495, "id": 85, "annotation": null}, {"text": "temperatures", "start": 496, "end": 508, "id": 86, "annotation": null}, {"text": "by", "start": 509, "end": 511, "id": 87, "annotation": null}, {"text": "constructing", "start": 512, "end": 524, "id": 88, "annotation": null}, {"text": "a", "start": 525, "end": 526, "id": 89, "annotation": null}, {"text": "humidity", "start": 527, "end": 535, "id": 90, "annotation": null}, {"text": "-", "start": 536, "end": 537, "id": 91, "annotation": null}, {"text": "impedance", "start": 538, "end": 547, "id": 92, "annotation": null}, {"text": "measuring", "start": 548, "end": 557, "id": 93, "annotation": null}, {"text": "system", "start": 558, "end": 564, "id": 94, "annotation": null}, {"text": ".", "start": 565, "end": 566, "id": 95, "annotation": null}], [{"text": "It", "start": 567, "end": 569, "id": 96, "annotation": null}, {"text": "is", "start": 570, "end": 572, "id": 97, "annotation": null}, {"text": "found", "start": 573, "end": 578, "id": 98, "annotation": null}, {"text": "that", "start": 579, "end": 583, "id": 99, "annotation": null}, {"text": "nanoporous", "start": 584, "end": 594, "id": 100, "annotation": null}, {"text": "TiO2\u2013SnO2", "start": 595, "end": 604, "id": 101, "annotation": "BASEMAT"}, {"text": "doped", "start": 605, "end": 610, "id": 102, "annotation": null}, {"text": "with", "start": 611, "end": 615, "id": 103, "annotation": null}, {"text": "0.3mol%", "start": 616, "end": 623, "id": 104, "annotation": "DOPMODQ"}, {"text": "La3", "start": 624, "end": 627, "id": 105, "annotation": "DOPANT"}, {"text": "+", "start": 628, "end": 629, "id": 106, "annotation": "DOPANT"}, {"text": "and", "start": 630, "end": 633, "id": 107, "annotation": null}, {"text": "50mol%", "start": 634, "end": 640, "id": 108, "annotation": "DOPMODQ"}, {"text": "K+", "start": 641, "end": 643, "id": 109, "annotation": "DOPANT"}, {"text": "sintered", "start": 644, "end": 652, "id": 110, "annotation": null}, {"text": "at", "start": 653, "end": 655, "id": 111, "annotation": null}, {"text": "500", "start": 656, "end": 659, "id": 112, "annotation": null}, {"text": "\u00b0", "start": 660, "end": 661, "id": 113, "annotation": null}, {"text": "C", "start": 662, "end": 663, "id": 114, "annotation": null}, {"text": "for", "start": 664, "end": 667, "id": 115, "annotation": null}, {"text": "4h", "start": 668, "end": 670, "id": 116, "annotation": null}, {"text": "shows", "start": 671, "end": 676, "id": 117, "annotation": null}, {"text": "the", "start": 677, "end": 680, "id": 118, "annotation": null}, {"text": "best", "start": 681, "end": 685, "id": 119, "annotation": null}, {"text": "humidity", "start": 686, "end": 694, "id": 120, "annotation": null}, {"text": "sensing", "start": 695, "end": 702, "id": 121, "annotation": null}, {"text": "properties", "start": 703, "end": 713, "id": 122, "annotation": null}, {"text": ".", "start": 714, "end": 715, "id": 123, "annotation": null}], [{"text": "This", "start": 716, "end": 720, "id": 124, "annotation": null}, {"text": "thin", "start": 721, "end": 725, "id": 125, "annotation": null}, {"text": "film", "start": 726, "end": 730, "id": 126, "annotation": null}, {"text": "achieves", "start": 731, "end": 739, "id": 127, "annotation": null}, {"text": "a", "start": 740, "end": 741, "id": 128, "annotation": null}, {"text": "high", "start": 742, "end": 746, "id": 129, "annotation": null}, {"text": "sensitivity", "start": 747, "end": 758, "id": 130, "annotation": null}, {"text": "with", "start": 759, "end": 763, "id": 131, "annotation": null}, {"text": "the", "start": 764, "end": 767, "id": 132, "annotation": null}, {"text": "impedance", "start": 768, "end": 777, "id": 133, "annotation": null}, {"text": "changed", "start": 778, "end": 785, "id": 134, "annotation": null}, {"text": "five", "start": 786, "end": 790, "id": 135, "annotation": null}, {"text": "orders", "start": 791, "end": 797, "id": 136, "annotation": null}, {"text": "of", "start": 798, "end": 800, "id": 137, "annotation": null}, {"text": "magnitude", "start": 801, "end": 810, "id": 138, "annotation": null}, {"text": "from", "start": 811, "end": 815, "id": 139, "annotation": null}, {"text": "109", "start": 816, "end": 819, "id": 140, "annotation": null}, {"text": "\u03a9", "start": 820, "end": 821, "id": 141, "annotation": null}, {"text": "to", "start": 822, "end": 824, "id": 142, "annotation": null}, {"text": "104", "start": 825, "end": 828, "id": 143, "annotation": null}, {"text": "\u03a9", "start": 829, "end": 830, "id": 144, "annotation": null}, {"text": "with", "start": 831, "end": 835, "id": 145, "annotation": null}, {"text": "excellent", "start": 836, "end": 845, "id": 146, "annotation": null}, {"text": "linearity", "start": 846, "end": 855, "id": 147, "annotation": null}, {"text": "in", "start": 856, "end": 858, "id": 148, "annotation": null}, {"text": "the", "start": 859, "end": 862, "id": 149, "annotation": null}, {"text": "relative", "start": 863, "end": 871, "id": 150, "annotation": null}, {"text": "humidity", "start": 872, "end": 880, "id": 151, "annotation": null}, {"text": "(", "start": 881, "end": 882, "id": 152, "annotation": null}, {"text": "RH", "start": 883, "end": 885, "id": 153, "annotation": null}, {"text": ")", "start": 886, "end": 887, "id": 154, "annotation": null}, {"text": "range", "start": 888, "end": 893, "id": 155, "annotation": null}, {"text": "of", "start": 894, "end": 896, "id": 156, "annotation": null}, {"text": "11\u201395", "start": 897, "end": 902, "id": 157, "annotation": null}, {"text": "%", "start": 903, "end": 904, "id": 158, "annotation": null}, {"text": "at", "start": 905, "end": 907, "id": 159, "annotation": null}, {"text": "25", "start": 908, "end": 910, "id": 160, "annotation": null}, {"text": "\u00b0", "start": 911, "end": 912, "id": 161, "annotation": null}, {"text": "C", "start": 913, "end": 914, "id": 162, "annotation": null}, {"text": ".", "start": 915, "end": 916, "id": 163, "annotation": null}], [{"text": "The", "start": 917, "end": 920, "id": 164, "annotation": null}, {"text": "response", "start": 921, "end": 929, "id": 165, "annotation": null}, {"text": "and", "start": 930, "end": 933, "id": 166, "annotation": null}, {"text": "recovery", "start": 934, "end": 942, "id": 167, "annotation": null}, {"text": "time", "start": 943, "end": 947, "id": 168, "annotation": null}, {"text": "of", "start": 948, "end": 950, "id": 169, "annotation": null}, {"text": "this", "start": 951, "end": 955, "id": 170, "annotation": null}, {"text": "thin", "start": 956, "end": 960, "id": 171, "annotation": null}, {"text": "film", "start": 961, "end": 965, "id": 172, "annotation": null}, {"text": "are", "start": 966, "end": 969, "id": 173, "annotation": null}, {"text": "about", "start": 970, "end": 975, "id": 174, "annotation": null}, {"text": "11", "start": 976, "end": 978, "id": 175, "annotation": null}, {"text": "and", "start": 979, "end": 982, "id": 176, "annotation": null}, {"text": "18s", "start": 983, "end": 986, "id": 177, "annotation": null}, {"text": ",", "start": 987, "end": 988, "id": 178, "annotation": null}, {"text": "respectively", "start": 989, "end": 1001, "id": 179, "annotation": null}, {"text": ".", "start": 1002, "end": 1003, "id": 180, "annotation": null}], [{"text": "High", "start": 1004, "end": 1008, "id": 181, "annotation": null}, {"text": "sensitivity", "start": 1009, "end": 1020, "id": 182, "annotation": null}, {"text": ",", "start": 1021, "end": 1022, "id": 183, "annotation": null}, {"text": "narrow", "start": 1023, "end": 1029, "id": 184, "annotation": null}, {"text": "hysteresis", "start": 1030, "end": 1040, "id": 185, "annotation": null}, {"text": "loop", "start": 1041, "end": 1045, "id": 186, "annotation": null}, {"text": ",", "start": 1046, "end": 1047, "id": 187, "annotation": null}, {"text": "rapid", "start": 1048, "end": 1053, "id": 188, "annotation": null}, {"text": "response", "start": 1054, "end": 1062, "id": 189, "annotation": null}, {"text": "and", "start": 1063, "end": 1066, "id": 190, "annotation": null}, {"text": "recovery", "start": 1067, "end": 1075, "id": 191, "annotation": null}, {"text": ",", "start": 1076, "end": 1077, "id": 192, "annotation": null}, {"text": "prominent", "start": 1078, "end": 1087, "id": 193, "annotation": null}, {"text": "stability", "start": 1088, "end": 1097, "id": 194, "annotation": null}, {"text": "and", "start": 1098, "end": 1101, "id": 195, "annotation": null}, {"text": "good", "start": 1102, "end": 1106, "id": 196, "annotation": null}, {"text": "reproducibility", "start": 1107, "end": 1122, "id": 197, "annotation": null}, {"text": "are", "start": 1123, "end": 1126, "id": 198, "annotation": null}, {"text": "obtained", "start": 1127, "end": 1135, "id": 199, "annotation": null}, {"text": ".", "start": 1136, "end": 1137, "id": 200, "annotation": null}], [{"text": "The", "start": 1138, "end": 1141, "id": 201, "annotation": null}, {"text": "effects", "start": 1142, "end": 1149, "id": 202, "annotation": null}, {"text": "of", "start": 1150, "end": 1152, "id": 203, "annotation": null}, {"text": "dopant", "start": 1153, "end": 1159, "id": 204, "annotation": null}, {"text": "content", "start": 1160, "end": 1167, "id": 205, "annotation": null}, {"text": "on", "start": 1168, "end": 1170, "id": 206, "annotation": null}, {"text": "humidity", "start": 1171, "end": 1179, "id": 207, "annotation": null}, {"text": "sensitivity", "start": 1180, "end": 1191, "id": 208, "annotation": null}, {"text": "have", "start": 1192, "end": 1196, "id": 209, "annotation": null}, {"text": "also", "start": 1197, "end": 1201, "id": 210, "annotation": null}, {"text": "been", "start": 1202, "end": 1206, "id": 211, "annotation": null}, {"text": "discussed", "start": 1207, "end": 1216, "id": 212, "annotation": null}, {"text": "in", "start": 1217, "end": 1219, "id": 213, "annotation": null}, {"text": "terms", "start": 1220, "end": 1225, "id": 214, "annotation": null}, {"text": "of", "start": 1226, "end": 1228, "id": 215, "annotation": null}, {"text": "segregation", "start": 1229, "end": 1240, "id": 216, "annotation": null}, {"text": "of", "start": 1241, "end": 1243, "id": 217, "annotation": null}, {"text": "rare", "start": 1244, "end": 1248, "id": 218, "annotation": null}, {"text": "earth", "start": 1249, "end": 1254, "id": 219, "annotation": null}, {"text": "ions", "start": 1255, "end": 1259, "id": 220, "annotation": null}, {"text": "at", "start": 1260, "end": 1262, "id": 221, "annotation": null}, {"text": "grain", "start": 1263, "end": 1268, "id": 222, "annotation": null}, {"text": "boundaries", "start": 1269, "end": 1279, "id": 223, "annotation": null}, {"text": "and", "start": 1280, "end": 1283, "id": 224, "annotation": null}, {"text": "granularity", "start": 1284, "end": 1295, "id": 225, "annotation": null}, {"text": "of", "start": 1296, "end": 1298, "id": 226, "annotation": null}, {"text": "crystals", "start": 1299, "end": 1307, "id": 227, "annotation": null}, {"text": ",", "start": 1308, "end": 1309, "id": 228, "annotation": null}, {"text": "and", "start": 1310, "end": 1313, "id": 229, "annotation": null}, {"text": "influence", "start": 1314, "end": 1323, "id": 230, "annotation": null}, {"text": "of", "start": 1324, "end": 1326, "id": 231, "annotation": null}, {"text": "K+", "start": 1327, "end": 1329, "id": 232, "annotation": "DOPANT"}, {"text": "on", "start": 1330, "end": 1332, "id": 233, "annotation": null}, {"text": "the", "start": 1333, "end": 1336, "id": 234, "annotation": null}, {"text": "decrease", "start": 1337, "end": 1345, "id": 235, "annotation": null}, {"text": "in", "start": 1346, "end": 1348, "id": 236, "annotation": null}, {"text": "the", "start": 1349, "end": 1352, "id": 237, "annotation": null}, {"text": "intrinsic", "start": 1353, "end": 1362, "id": 238, "annotation": null}, {"text": "resistance", "start": 1363, "end": 1373, "id": 239, "annotation": null}, {"text": "of", "start": 1374, "end": 1376, "id": 240, "annotation": null}, {"text": "the", "start": 1377, "end": 1380, "id": 241, "annotation": "DOPANT"}, {"text": "materials", "start": 1381, "end": 1390, "id": 242, "annotation": "DOPANT"}, {"text": "and", "start": 1391, "end": 1394, "id": 243, "annotation": null}, {"text": "direct", "start": 1395, "end": 1401, "id": 244, "annotation": null}, {"text": "contribution", "start": 1402, "end": 1414, "id": 245, "annotation": null}, {"text": "to", "start": 1415, "end": 1417, "id": 246, "annotation": null}, {"text": "the", "start": 1418, "end": 1421, "id": 247, "annotation": null}, {"text": "conduction", "start": 1422, "end": 1432, "id": 248, "annotation": null}, {"text": ".", "start": 1433, "end": 1434, "id": 249, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Electrical conductivity \u03c3 and thermopower \u03b1 were studied at temperature 1150\u20131350 K and in the PO2 range between 2\u00d710-11-2\u00d7104 Pa. Both \u03c3 and \u03b1 data are well consistent, n- and p-type conductivity ranges were found at low and high PO2 values, respectively. The power of PO2 dependence for Cu-doped BaTiO3 vary the oxide composition. This effect is discussed in term of the defect structure of BaTiO3 and its solutions with CuO.", "meta": {"doi": "10.1016/0167-2738(86)90034-2"}, "_input_hash": -937633400, "_task_hash": -1116293281, "tokens": [[{"text": "Electrical", "start": 0, "end": 10, "id": 0, "annotation": null}, {"text": "conductivity", "start": 11, "end": 23, "id": 1, "annotation": null}, {"text": "\u03c3", "start": 24, "end": 25, "id": 2, "annotation": null}, {"text": "and", "start": 26, "end": 29, "id": 3, "annotation": null}, {"text": "thermopower", "start": 30, "end": 41, "id": 4, "annotation": null}, {"text": "\u03b1", "start": 42, "end": 43, "id": 5, "annotation": null}, {"text": "were", "start": 44, "end": 48, "id": 6, "annotation": null}, {"text": "studied", "start": 49, "end": 56, "id": 7, "annotation": null}, {"text": "at", "start": 57, "end": 59, "id": 8, "annotation": null}, {"text": "temperature", "start": 60, "end": 71, "id": 9, "annotation": null}, {"text": "1150\u20131350", "start": 72, "end": 81, "id": 10, "annotation": null}, {"text": "K", "start": 82, "end": 83, "id": 11, "annotation": null}, {"text": "and", "start": 84, "end": 87, "id": 12, "annotation": null}, {"text": "in", "start": 88, "end": 90, "id": 13, "annotation": null}, {"text": "the", "start": 91, "end": 94, "id": 14, "annotation": null}, {"text": "PO2", "start": 95, "end": 98, "id": 15, "annotation": null}, {"text": "range", "start": 99, "end": 104, "id": 16, "annotation": null}, {"text": "between", "start": 105, "end": 112, "id": 17, "annotation": null}, {"text": "2\u00d710", "start": 113, "end": 117, "id": 18, "annotation": null}, {"text": "-", "start": 118, "end": 119, "id": 19, "annotation": null}, {"text": "11", "start": 120, "end": 122, "id": 20, "annotation": null}, {"text": "-", "start": 123, "end": 124, "id": 21, "annotation": null}, {"text": "2\u00d7104", "start": 125, "end": 130, "id": 22, "annotation": null}, {"text": "Pa.", "start": 131, "end": 134, "id": 23, "annotation": null}], [{"text": "Both", "start": 135, "end": 139, "id": 24, "annotation": null}, {"text": "\u03c3", "start": 140, "end": 141, "id": 25, "annotation": null}, {"text": "and", "start": 142, "end": 145, "id": 26, "annotation": null}, {"text": "\u03b1", "start": 146, "end": 147, "id": 27, "annotation": null}, {"text": "data", "start": 148, "end": 152, "id": 28, "annotation": null}, {"text": "are", "start": 153, "end": 156, "id": 29, "annotation": null}, {"text": "well", "start": 157, "end": 161, "id": 30, "annotation": null}, {"text": "consistent", "start": 162, "end": 172, "id": 31, "annotation": null}, {"text": ",", "start": 173, "end": 174, "id": 32, "annotation": null}, {"text": "n-", "start": 175, "end": 177, "id": 33, "annotation": null}, {"text": "and", "start": 178, "end": 181, "id": 34, "annotation": null}, {"text": "p", "start": 182, "end": 183, "id": 35, "annotation": null}, {"text": "-", "start": 184, "end": 185, "id": 36, "annotation": null}, {"text": "type", "start": 186, "end": 190, "id": 37, "annotation": null}, {"text": "conductivity", "start": 191, "end": 203, "id": 38, "annotation": null}, {"text": "ranges", "start": 204, "end": 210, "id": 39, "annotation": null}, {"text": "were", "start": 211, "end": 215, "id": 40, "annotation": null}, {"text": "found", "start": 216, "end": 221, "id": 41, "annotation": null}, {"text": "at", "start": 222, "end": 224, "id": 42, "annotation": null}, {"text": "low", "start": 225, "end": 228, "id": 43, "annotation": null}, {"text": "and", "start": 229, "end": 232, "id": 44, "annotation": null}, {"text": "high", "start": 233, "end": 237, "id": 45, "annotation": null}, {"text": "PO2", "start": 238, "end": 241, "id": 46, "annotation": null}, {"text": "values", "start": 242, "end": 248, "id": 47, "annotation": null}, {"text": ",", "start": 249, "end": 250, "id": 48, "annotation": null}, {"text": "respectively", "start": 251, "end": 263, "id": 49, "annotation": null}, {"text": ".", "start": 264, "end": 265, "id": 50, "annotation": null}], [{"text": "The", "start": 266, "end": 269, "id": 51, "annotation": null}, {"text": "power", "start": 270, "end": 275, "id": 52, "annotation": null}, {"text": "of", "start": 276, "end": 278, "id": 53, "annotation": null}, {"text": "PO2", "start": 279, "end": 282, "id": 54, "annotation": null}, {"text": "dependence", "start": 283, "end": 293, "id": 55, "annotation": null}, {"text": "for", "start": 294, "end": 297, "id": 56, "annotation": null}, {"text": "Cu", "start": 298, "end": 300, "id": 57, "annotation": "DOPANT"}, {"text": "-", "start": 301, "end": 302, "id": 58, "annotation": null}, {"text": "doped", "start": 303, "end": 308, "id": 59, "annotation": null}, {"text": "BaTiO3", "start": 309, "end": 315, "id": 60, "annotation": "BASEMAT"}, {"text": "vary", "start": 316, "end": 320, "id": 61, "annotation": null}, {"text": "the", "start": 321, "end": 324, "id": 62, "annotation": null}, {"text": "oxide", "start": 325, "end": 330, "id": 63, "annotation": null}, {"text": "composition", "start": 331, "end": 342, "id": 64, "annotation": null}, {"text": ".", "start": 343, "end": 344, "id": 65, "annotation": null}], [{"text": "This", "start": 345, "end": 349, "id": 66, "annotation": null}, {"text": "effect", "start": 350, "end": 356, "id": 67, "annotation": null}, {"text": "is", "start": 357, "end": 359, "id": 68, "annotation": null}, {"text": "discussed", "start": 360, "end": 369, "id": 69, "annotation": null}, {"text": "in", "start": 370, "end": 372, "id": 70, "annotation": null}, {"text": "term", "start": 373, "end": 377, "id": 71, "annotation": null}, {"text": "of", "start": 378, "end": 380, "id": 72, "annotation": null}, {"text": "the", "start": 381, "end": 384, "id": 73, "annotation": null}, {"text": "defect", "start": 385, "end": 391, "id": 74, "annotation": null}, {"text": "structure", "start": 392, "end": 401, "id": 75, "annotation": null}, {"text": "of", "start": 402, "end": 404, "id": 76, "annotation": null}, {"text": "BaTiO3", "start": 405, "end": 411, "id": 77, "annotation": null}, {"text": "and", "start": 412, "end": 415, "id": 78, "annotation": null}, {"text": "its", "start": 416, "end": 419, "id": 79, "annotation": null}, {"text": "solutions", "start": 420, "end": 429, "id": 80, "annotation": null}, {"text": "with", "start": 430, "end": 434, "id": 81, "annotation": null}, {"text": "CuO.", "start": 435, "end": 439, "id": 82, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Dielectric oxides are traditionally used to fabricate resistive surface humidity-sensing devices, as well as capacitive sandwich-structured sensors. In the present work, relative humidity (RH) sensors were fabricated by employing vertically aligned TiO2 nanotubes array (TNA) film produced using electro-chemical anodization of Ti foil followed by a nitrogen-doping process, simultaneously showing resistive and capacitive humidity-sensing properties in the range of 11.3-93.6%. For the sample formed at optimized experimental conditions, the capacitance (CS) and resistance (RS) of the as-fabricated RH sensors made from nitrogen-doped TiO2 nanotubes film could be simultaneously obtained. Both the resistive and capacitive sensitivity (KR and KC) of the as-fabricated TiO 2 nanotube RH sensors show distinct dependence on the frequency of alternating current (AC) voltage signal and RH. At higher water coverage, water-water interaction will result in lowering of the water dissociation barrier, leading to an increase of conductance. With the increase of RH, the polarization of as-adsorbed water molecules will also occur, causing a sharp increase of capacitance. For an explanation of the frequency response of both CS and RS, ionic transport, as well as the polarization effect, should be comprehensively considered. The changes of capacitance and resistance at different temperatures are plausibly caused by thermal expansion and surface state modification by adsorption and desorption of oxygen and water.", "meta": {"doi": "10.1088/0957-4484/22/2/025501"}, "_input_hash": 1879130051, "_task_hash": 320134758, "tokens": [[{"text": "Dielectric", "start": 0, "end": 10, "id": 0, "annotation": null}, {"text": "oxides", "start": 11, "end": 17, "id": 1, "annotation": null}, {"text": "are", "start": 18, "end": 21, "id": 2, "annotation": null}, {"text": "traditionally", "start": 22, "end": 35, "id": 3, "annotation": null}, {"text": "used", "start": 36, "end": 40, "id": 4, "annotation": null}, {"text": "to", "start": 41, "end": 43, "id": 5, "annotation": null}, {"text": "fabricate", "start": 44, "end": 53, "id": 6, "annotation": null}, {"text": "resistive", "start": 54, "end": 63, "id": 7, "annotation": null}, {"text": "surface", "start": 64, "end": 71, "id": 8, "annotation": null}, {"text": "humidity", "start": 72, "end": 80, "id": 9, "annotation": null}, {"text": "-", "start": 81, "end": 82, "id": 10, "annotation": null}, {"text": "sensing", "start": 83, "end": 90, "id": 11, "annotation": null}, {"text": "devices", "start": 91, "end": 98, "id": 12, "annotation": null}, {"text": ",", "start": 99, "end": 100, "id": 13, "annotation": null}, {"text": "as", "start": 101, "end": 103, "id": 14, "annotation": null}, {"text": "well", "start": 104, "end": 108, "id": 15, "annotation": null}, {"text": "as", "start": 109, "end": 111, "id": 16, "annotation": null}, {"text": "capacitive", "start": 112, "end": 122, "id": 17, "annotation": null}, {"text": "sandwich", "start": 123, "end": 131, "id": 18, "annotation": null}, {"text": "-", "start": 132, "end": 133, "id": 19, "annotation": null}, {"text": "structured", "start": 134, "end": 144, "id": 20, "annotation": null}, {"text": "sensors", "start": 145, "end": 152, "id": 21, "annotation": null}, {"text": ".", "start": 153, "end": 154, "id": 22, "annotation": null}], [{"text": "In", "start": 155, "end": 157, "id": 23, "annotation": null}, {"text": "the", "start": 158, "end": 161, "id": 24, "annotation": null}, {"text": "present", "start": 162, "end": 169, "id": 25, "annotation": null}, {"text": "work", "start": 170, "end": 174, "id": 26, "annotation": null}, {"text": ",", "start": 175, "end": 176, "id": 27, "annotation": null}, {"text": "relative", "start": 177, "end": 185, "id": 28, "annotation": null}, {"text": "humidity", "start": 186, "end": 194, "id": 29, "annotation": null}, {"text": "(", "start": 195, "end": 196, "id": 30, "annotation": null}, {"text": "RH", "start": 197, "end": 199, "id": 31, "annotation": null}, {"text": ")", "start": 200, "end": 201, "id": 32, "annotation": null}, {"text": "sensors", "start": 202, "end": 209, "id": 33, "annotation": null}, {"text": "were", "start": 210, "end": 214, "id": 34, "annotation": null}, {"text": "fabricated", "start": 215, "end": 225, "id": 35, "annotation": null}, {"text": "by", "start": 226, "end": 228, "id": 36, "annotation": null}, {"text": "employing", "start": 229, "end": 238, "id": 37, "annotation": null}, {"text": "vertically", "start": 239, "end": 249, "id": 38, "annotation": null}, {"text": "aligned", "start": 250, "end": 257, "id": 39, "annotation": null}, {"text": "TiO2", "start": 258, "end": 262, "id": 40, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 263, "end": 272, "id": 41, "annotation": null}, {"text": "array", "start": 273, "end": 278, "id": 42, "annotation": null}, {"text": "(", "start": 279, "end": 280, "id": 43, "annotation": null}, {"text": "TNA", "start": 281, "end": 284, "id": 44, "annotation": null}, {"text": ")", "start": 285, "end": 286, "id": 45, "annotation": null}, {"text": "film", "start": 287, "end": 291, "id": 46, "annotation": null}, {"text": "produced", "start": 292, "end": 300, "id": 47, "annotation": null}, {"text": "using", "start": 301, "end": 306, "id": 48, "annotation": null}, {"text": "electro", "start": 307, "end": 314, "id": 49, "annotation": null}, {"text": "-", "start": 315, "end": 316, "id": 50, "annotation": null}, {"text": "chemical", "start": 317, "end": 325, "id": 51, "annotation": null}, {"text": "anodization", "start": 326, "end": 337, "id": 52, "annotation": null}, {"text": "of", "start": 338, "end": 340, "id": 53, "annotation": null}, {"text": "Ti", "start": 341, "end": 343, "id": 54, "annotation": null}, {"text": "foil", "start": 344, "end": 348, "id": 55, "annotation": null}, {"text": "followed", "start": 349, "end": 357, "id": 56, "annotation": null}, {"text": "by", "start": 358, "end": 360, "id": 57, "annotation": null}, {"text": "a", "start": 361, "end": 362, "id": 58, "annotation": null}, {"text": "nitrogen", "start": 363, "end": 371, "id": 59, "annotation": "DOPANT"}, {"text": "-", "start": 372, "end": 373, "id": 60, "annotation": null}, {"text": "doping", "start": 374, "end": 380, "id": 61, "annotation": null}, {"text": "process", "start": 381, "end": 388, "id": 62, "annotation": null}, {"text": ",", "start": 389, "end": 390, "id": 63, "annotation": null}, {"text": "simultaneously", "start": 391, "end": 405, "id": 64, "annotation": null}, {"text": "showing", "start": 406, "end": 413, "id": 65, "annotation": null}, {"text": "resistive", "start": 414, "end": 423, "id": 66, "annotation": null}, {"text": "and", "start": 424, "end": 427, "id": 67, "annotation": null}, {"text": "capacitive", "start": 428, "end": 438, "id": 68, "annotation": null}, {"text": "humidity", "start": 439, "end": 447, "id": 69, "annotation": null}, {"text": "-", "start": 448, "end": 449, "id": 70, "annotation": null}, {"text": "sensing", "start": 450, "end": 457, "id": 71, "annotation": null}, {"text": "properties", "start": 458, "end": 468, "id": 72, "annotation": null}, {"text": "in", "start": 469, "end": 471, "id": 73, "annotation": null}, {"text": "the", "start": 472, "end": 475, "id": 74, "annotation": null}, {"text": "range", "start": 476, "end": 481, "id": 75, "annotation": null}, {"text": "of", "start": 482, "end": 484, "id": 76, "annotation": null}, {"text": "11.3", "start": 485, "end": 489, "id": 77, "annotation": null}, {"text": "-", "start": 490, "end": 491, "id": 78, "annotation": null}, {"text": "93.6", "start": 492, "end": 496, "id": 79, "annotation": null}, {"text": "%", "start": 497, "end": 498, "id": 80, "annotation": null}, {"text": ".", "start": 499, "end": 500, "id": 81, "annotation": null}], [{"text": "For", "start": 501, "end": 504, "id": 82, "annotation": null}, {"text": "the", "start": 505, "end": 508, "id": 83, "annotation": null}, {"text": "sample", "start": 509, "end": 515, "id": 84, "annotation": null}, {"text": "formed", "start": 516, "end": 522, "id": 85, "annotation": null}, {"text": "at", "start": 523, "end": 525, "id": 86, "annotation": null}, {"text": "optimized", "start": 526, "end": 535, "id": 87, "annotation": null}, {"text": "experimental", "start": 536, "end": 548, "id": 88, "annotation": null}, {"text": "conditions", "start": 549, "end": 559, "id": 89, "annotation": null}, {"text": ",", "start": 560, "end": 561, "id": 90, "annotation": null}, {"text": "the", "start": 562, "end": 565, "id": 91, "annotation": null}, {"text": "capacitance", "start": 566, "end": 577, "id": 92, "annotation": null}, {"text": "(", "start": 578, "end": 579, "id": 93, "annotation": null}, {"text": "CS", "start": 580, "end": 582, "id": 94, "annotation": null}, {"text": ")", "start": 583, "end": 584, "id": 95, "annotation": null}, {"text": "and", "start": 585, "end": 588, "id": 96, "annotation": null}, {"text": "resistance", "start": 589, "end": 599, "id": 97, "annotation": null}, {"text": "(", "start": 600, "end": 601, "id": 98, "annotation": null}, {"text": "RS", "start": 602, "end": 604, "id": 99, "annotation": null}, {"text": ")", "start": 605, "end": 606, "id": 100, "annotation": null}, {"text": "of", "start": 607, "end": 609, "id": 101, "annotation": null}, {"text": "the", "start": 610, "end": 613, "id": 102, "annotation": null}, {"text": "as", "start": 614, "end": 616, "id": 103, "annotation": null}, {"text": "-", "start": 617, "end": 618, "id": 104, "annotation": null}, {"text": "fabricated", "start": 619, "end": 629, "id": 105, "annotation": null}, {"text": "RH", "start": 630, "end": 632, "id": 106, "annotation": null}, {"text": "sensors", "start": 633, "end": 640, "id": 107, "annotation": null}, {"text": "made", "start": 641, "end": 645, "id": 108, "annotation": null}, {"text": "from", "start": 646, "end": 650, "id": 109, "annotation": null}, {"text": "nitrogen", "start": 651, "end": 659, "id": 110, "annotation": "DOPANT"}, {"text": "-", "start": 660, "end": 661, "id": 111, "annotation": null}, {"text": "doped", "start": 662, "end": 667, "id": 112, "annotation": null}, {"text": "TiO2", "start": 668, "end": 672, "id": 113, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 673, "end": 682, "id": 114, "annotation": null}, {"text": "film", "start": 683, "end": 687, "id": 115, "annotation": null}, {"text": "could", "start": 688, "end": 693, "id": 116, "annotation": null}, {"text": "be", "start": 694, "end": 696, "id": 117, "annotation": null}, {"text": "simultaneously", "start": 697, "end": 711, "id": 118, "annotation": null}, {"text": "obtained", "start": 712, "end": 720, "id": 119, "annotation": null}, {"text": ".", "start": 721, "end": 722, "id": 120, "annotation": null}], [{"text": "Both", "start": 723, "end": 727, "id": 121, "annotation": null}, {"text": "the", "start": 728, "end": 731, "id": 122, "annotation": null}, {"text": "resistive", "start": 732, "end": 741, "id": 123, "annotation": null}, {"text": "and", "start": 742, "end": 745, "id": 124, "annotation": null}, {"text": "capacitive", "start": 746, "end": 756, "id": 125, "annotation": null}, {"text": "sensitivity", "start": 757, "end": 768, "id": 126, "annotation": null}, {"text": "(", "start": 769, "end": 770, "id": 127, "annotation": null}, {"text": "KR", "start": 771, "end": 773, "id": 128, "annotation": null}, {"text": "and", "start": 774, "end": 777, "id": 129, "annotation": null}, {"text": "KC", "start": 778, "end": 780, "id": 130, "annotation": null}, {"text": ")", "start": 781, "end": 782, "id": 131, "annotation": null}, {"text": "of", "start": 783, "end": 785, "id": 132, "annotation": null}, {"text": "the", "start": 786, "end": 789, "id": 133, "annotation": null}, {"text": "as", "start": 790, "end": 792, "id": 134, "annotation": null}, {"text": "-", "start": 793, "end": 794, "id": 135, "annotation": null}, {"text": "fabricated", "start": 795, "end": 805, "id": 136, "annotation": null}, {"text": "TiO", "start": 806, "end": 809, "id": 137, "annotation": null}, {"text": "2", "start": 810, "end": 811, "id": 138, "annotation": null}, {"text": "nanotube", "start": 812, "end": 820, "id": 139, "annotation": null}, {"text": "RH", "start": 821, "end": 823, "id": 140, "annotation": null}, {"text": "sensors", "start": 824, "end": 831, "id": 141, "annotation": null}, {"text": "show", "start": 832, "end": 836, "id": 142, "annotation": null}, {"text": "distinct", "start": 837, "end": 845, "id": 143, "annotation": null}, {"text": "dependence", "start": 846, "end": 856, "id": 144, "annotation": null}, {"text": "on", "start": 857, "end": 859, "id": 145, "annotation": null}, {"text": "the", "start": 860, "end": 863, "id": 146, "annotation": null}, {"text": "frequency", "start": 864, "end": 873, "id": 147, "annotation": null}, {"text": "of", "start": 874, "end": 876, "id": 148, "annotation": null}, {"text": "alternating", "start": 877, "end": 888, "id": 149, "annotation": null}, {"text": "current", "start": 889, "end": 896, "id": 150, "annotation": null}, {"text": "(", "start": 897, "end": 898, "id": 151, "annotation": null}, {"text": "AC", "start": 899, "end": 901, "id": 152, "annotation": null}, {"text": ")", "start": 902, "end": 903, "id": 153, "annotation": null}, {"text": "voltage", "start": 904, "end": 911, "id": 154, "annotation": null}, {"text": "signal", "start": 912, "end": 918, "id": 155, "annotation": null}, {"text": "and", "start": 919, "end": 922, "id": 156, "annotation": null}, {"text": "RH", "start": 923, "end": 925, "id": 157, "annotation": null}, {"text": ".", "start": 926, "end": 927, "id": 158, "annotation": null}], [{"text": "At", "start": 928, "end": 930, "id": 159, "annotation": null}, {"text": "higher", "start": 931, "end": 937, "id": 160, "annotation": null}, {"text": "water", "start": 938, "end": 943, "id": 161, "annotation": null}, {"text": "coverage", "start": 944, "end": 952, "id": 162, "annotation": null}, {"text": ",", "start": 953, "end": 954, "id": 163, "annotation": null}, {"text": "water", "start": 955, "end": 960, "id": 164, "annotation": null}, {"text": "-", "start": 961, "end": 962, "id": 165, "annotation": null}, {"text": "water", "start": 963, "end": 968, "id": 166, "annotation": null}, {"text": "interaction", "start": 969, "end": 980, "id": 167, "annotation": null}, {"text": "will", "start": 981, "end": 985, "id": 168, "annotation": null}, {"text": "result", "start": 986, "end": 992, "id": 169, "annotation": null}, {"text": "in", "start": 993, "end": 995, "id": 170, "annotation": null}, {"text": "lowering", "start": 996, "end": 1004, "id": 171, "annotation": null}, {"text": "of", "start": 1005, "end": 1007, "id": 172, "annotation": null}, {"text": "the", "start": 1008, "end": 1011, "id": 173, "annotation": null}, {"text": "water", "start": 1012, "end": 1017, "id": 174, "annotation": null}, {"text": "dissociation", "start": 1018, "end": 1030, "id": 175, "annotation": null}, {"text": "barrier", "start": 1031, "end": 1038, "id": 176, "annotation": null}, {"text": ",", "start": 1039, "end": 1040, "id": 177, "annotation": null}, {"text": "leading", "start": 1041, "end": 1048, "id": 178, "annotation": null}, {"text": "to", "start": 1049, "end": 1051, "id": 179, "annotation": null}, {"text": "an", "start": 1052, "end": 1054, "id": 180, "annotation": null}, {"text": "increase", "start": 1055, "end": 1063, "id": 181, "annotation": null}, {"text": "of", "start": 1064, "end": 1066, "id": 182, "annotation": null}, {"text": "conductance", "start": 1067, "end": 1078, "id": 183, "annotation": null}, {"text": ".", "start": 1079, "end": 1080, "id": 184, "annotation": null}], [{"text": "With", "start": 1081, "end": 1085, "id": 185, "annotation": null}, {"text": "the", "start": 1086, "end": 1089, "id": 186, "annotation": null}, {"text": "increase", "start": 1090, "end": 1098, "id": 187, "annotation": null}, {"text": "of", "start": 1099, "end": 1101, "id": 188, "annotation": null}, {"text": "RH", "start": 1102, "end": 1104, "id": 189, "annotation": null}, {"text": ",", "start": 1105, "end": 1106, "id": 190, "annotation": null}, {"text": "the", "start": 1107, "end": 1110, "id": 191, "annotation": null}, {"text": "polarization", "start": 1111, "end": 1123, "id": 192, "annotation": null}, {"text": "of", "start": 1124, "end": 1126, "id": 193, "annotation": null}, {"text": "as", "start": 1127, "end": 1129, "id": 194, "annotation": null}, {"text": "-", "start": 1130, "end": 1131, "id": 195, "annotation": null}, {"text": "adsorbed", "start": 1132, "end": 1140, "id": 196, "annotation": null}, {"text": "water", "start": 1141, "end": 1146, "id": 197, "annotation": null}, {"text": "molecules", "start": 1147, "end": 1156, "id": 198, "annotation": null}, {"text": "will", "start": 1157, "end": 1161, "id": 199, "annotation": null}, {"text": "also", "start": 1162, "end": 1166, "id": 200, "annotation": null}, {"text": "occur", "start": 1167, "end": 1172, "id": 201, "annotation": null}, {"text": ",", "start": 1173, "end": 1174, "id": 202, "annotation": null}, {"text": "causing", "start": 1175, "end": 1182, "id": 203, "annotation": null}, {"text": "a", "start": 1183, "end": 1184, "id": 204, "annotation": null}, {"text": "sharp", "start": 1185, "end": 1190, "id": 205, "annotation": null}, {"text": "increase", "start": 1191, "end": 1199, "id": 206, "annotation": null}, {"text": "of", "start": 1200, "end": 1202, "id": 207, "annotation": null}, {"text": "capacitance", "start": 1203, "end": 1214, "id": 208, "annotation": null}, {"text": ".", "start": 1215, "end": 1216, "id": 209, "annotation": null}], [{"text": "For", "start": 1217, "end": 1220, "id": 210, "annotation": null}, {"text": "an", "start": 1221, "end": 1223, "id": 211, "annotation": null}, {"text": "explanation", "start": 1224, "end": 1235, "id": 212, "annotation": null}, {"text": "of", "start": 1236, "end": 1238, "id": 213, "annotation": null}, {"text": "the", "start": 1239, "end": 1242, "id": 214, "annotation": null}, {"text": "frequency", "start": 1243, "end": 1252, "id": 215, "annotation": null}, {"text": "response", "start": 1253, "end": 1261, "id": 216, "annotation": null}, {"text": "of", "start": 1262, "end": 1264, "id": 217, "annotation": null}, {"text": "both", "start": 1265, "end": 1269, "id": 218, "annotation": null}, {"text": "CS", "start": 1270, "end": 1272, "id": 219, "annotation": null}, {"text": "and", "start": 1273, "end": 1276, "id": 220, "annotation": null}, {"text": "RS", "start": 1277, "end": 1279, "id": 221, "annotation": null}, {"text": ",", "start": 1280, "end": 1281, "id": 222, "annotation": null}, {"text": "ionic", "start": 1282, "end": 1287, "id": 223, "annotation": null}, {"text": "transport", "start": 1288, "end": 1297, "id": 224, "annotation": null}, {"text": ",", "start": 1298, "end": 1299, "id": 225, "annotation": null}, {"text": "as", "start": 1300, "end": 1302, "id": 226, "annotation": null}, {"text": "well", "start": 1303, "end": 1307, "id": 227, "annotation": null}, {"text": "as", "start": 1308, "end": 1310, "id": 228, "annotation": null}, {"text": "the", "start": 1311, "end": 1314, "id": 229, "annotation": null}, {"text": "polarization", "start": 1315, "end": 1327, "id": 230, "annotation": null}, {"text": "effect", "start": 1328, "end": 1334, "id": 231, "annotation": null}, {"text": ",", "start": 1335, "end": 1336, "id": 232, "annotation": null}, {"text": "should", "start": 1337, "end": 1343, "id": 233, "annotation": null}, {"text": "be", "start": 1344, "end": 1346, "id": 234, "annotation": null}, {"text": "comprehensively", "start": 1347, "end": 1362, "id": 235, "annotation": null}, {"text": "considered", "start": 1363, "end": 1373, "id": 236, "annotation": null}, {"text": ".", "start": 1374, "end": 1375, "id": 237, "annotation": null}], [{"text": "The", "start": 1376, "end": 1379, "id": 238, "annotation": null}, {"text": "changes", "start": 1380, "end": 1387, "id": 239, "annotation": null}, {"text": "of", "start": 1388, "end": 1390, "id": 240, "annotation": null}, {"text": "capacitance", "start": 1391, "end": 1402, "id": 241, "annotation": null}, {"text": "and", "start": 1403, "end": 1406, "id": 242, "annotation": null}, {"text": "resistance", "start": 1407, "end": 1417, "id": 243, "annotation": null}, {"text": "at", "start": 1418, "end": 1420, "id": 244, "annotation": null}, {"text": "different", "start": 1421, "end": 1430, "id": 245, "annotation": null}, {"text": "temperatures", "start": 1431, "end": 1443, "id": 246, "annotation": null}, {"text": "are", "start": 1444, "end": 1447, "id": 247, "annotation": null}, {"text": "plausibly", "start": 1448, "end": 1457, "id": 248, "annotation": null}, {"text": "caused", "start": 1458, "end": 1464, "id": 249, "annotation": null}, {"text": "by", "start": 1465, "end": 1467, "id": 250, "annotation": null}, {"text": "thermal", "start": 1468, "end": 1475, "id": 251, "annotation": null}, {"text": "expansion", "start": 1476, "end": 1485, "id": 252, "annotation": null}, {"text": "and", "start": 1486, "end": 1489, "id": 253, "annotation": null}, {"text": "surface", "start": 1490, "end": 1497, "id": 254, "annotation": null}, {"text": "state", "start": 1498, "end": 1503, "id": 255, "annotation": null}, {"text": "modification", "start": 1504, "end": 1516, "id": 256, "annotation": null}, {"text": "by", "start": 1517, "end": 1519, "id": 257, "annotation": null}, {"text": "adsorption", "start": 1520, "end": 1530, "id": 258, "annotation": null}, {"text": "and", "start": 1531, "end": 1534, "id": 259, "annotation": null}, {"text": "desorption", "start": 1535, "end": 1545, "id": 260, "annotation": null}, {"text": "of", "start": 1546, "end": 1548, "id": 261, "annotation": null}, {"text": "oxygen", "start": 1549, "end": 1555, "id": 262, "annotation": null}, {"text": "and", "start": 1556, "end": 1559, "id": 263, "annotation": null}, {"text": "water", "start": 1560, "end": 1565, "id": 264, "annotation": null}, {"text": ".", "start": 1566, "end": 1567, "id": 265, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "Electrical resistivity and Hall measurements have been performed, on strained B-heavily doped Si0.8Ge0.2 epilayers grown by molecular beam epitaxy (MBE) technique, in the temperature range 80\u2013350 K. In-plane Hall mobility and concentration of the free holes were extracted and discussed taking into account the high doping level effects, scattering mechanisms as well as previous drift mobility results.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Electrical", "start": 0, "end": 10, "annotation": null}, {"text": "resistivity", "start": 11, "end": 22, "annotation": null}, {"text": "and", "start": 23, "end": 26, "annotation": null}, {"text": "Hall", "start": 27, "end": 31, "annotation": null}, {"text": "measurements", "start": 32, "end": 44, "annotation": null}, {"text": "have", "start": 45, "end": 49, "annotation": null}, {"text": "been", "start": 50, "end": 54, "annotation": null}, {"text": "performed", "start": 55, "end": 64, "annotation": null}, {"text": ",", "start": 64, "end": 65, "annotation": null}, {"text": "on", "start": 66, "end": 68, "annotation": null}, {"text": "strained", "start": 69, "end": 77, "annotation": null}, {"text": "B-heavily", "start": 78, "end": 87, "annotation": "DOPANT"}, {"text": "doped", "start": 88, "end": 93, "annotation": null}, {"text": "Si0.8Ge0.2", "start": 94, "end": 104, "annotation": "BASEMAT"}, {"text": "epilayers", "start": 105, "end": 114, "annotation": null}, {"text": "grown", "start": 115, "end": 120, "annotation": null}, {"text": "by", "start": 121, "end": 123, "annotation": null}, {"text": "molecular", "start": 124, "end": 133, "annotation": null}, {"text": "beam", "start": 134, "end": 138, "annotation": null}, {"text": "epitaxy", "start": 139, "end": 146, "annotation": null}, {"text": "(", "start": 147, "end": 148, "annotation": null}, {"text": "MBE", "start": 148, "end": 151, "annotation": null}, {"text": ")", "start": 151, "end": 152, "annotation": null}, {"text": "technique", "start": 153, "end": 162, "annotation": null}, {"text": ",", "start": 162, "end": 163, "annotation": null}, {"text": "in", "start": 164, "end": 166, "annotation": null}, {"text": "the", "start": 167, "end": 170, "annotation": null}, {"text": "temperature", "start": 171, "end": 182, "annotation": null}, {"text": "range", "start": 183, "end": 188, "annotation": null}, {"text": "80", "start": 189, "end": 191, "annotation": null}, {"text": "\u2013", "start": 191, "end": 192, "annotation": null}, {"text": "350", "start": 192, "end": 195, "annotation": null}, {"text": "K", "start": 196, "end": 197, "annotation": null}, {"text": ".", "start": 197, "end": 198, "annotation": null}], [{"text": "In-plane", "start": 199, "end": 207, "annotation": null}, {"text": "Hall", "start": 208, "end": 212, "annotation": null}, {"text": "mobility", "start": 213, "end": 221, "annotation": null}, {"text": "and", "start": 222, "end": 225, "annotation": null}, {"text": "concentration", "start": 226, "end": 239, "annotation": null}, {"text": "of", "start": 240, "end": 242, "annotation": null}, {"text": "the", "start": 243, "end": 246, "annotation": null}, {"text": "free", "start": 247, "end": 251, "annotation": null}, {"text": "holes", "start": 252, "end": 257, "annotation": null}, {"text": "were", "start": 258, "end": 262, "annotation": null}, {"text": "extracted", "start": 263, "end": 272, "annotation": null}, {"text": "and", "start": 273, "end": 276, "annotation": null}, {"text": "discussed", "start": 277, "end": 286, "annotation": null}, {"text": "taking", "start": 287, "end": 293, "annotation": null}, {"text": "into", "start": 294, "end": 298, "annotation": null}, {"text": "account", "start": 299, "end": 306, "annotation": null}, {"text": "the", "start": 307, "end": 310, "annotation": null}, {"text": "high", "start": 311, "end": 315, "annotation": null}, {"text": "doping", "start": 316, "end": 322, "annotation": null}, {"text": "level", "start": 323, "end": 328, "annotation": null}, {"text": "effects", "start": 329, "end": 336, "annotation": null}, {"text": ",", "start": 336, "end": 337, "annotation": null}, {"text": "scattering", "start": 338, "end": 348, "annotation": null}, {"text": "mechanisms", "start": 349, "end": 359, "annotation": null}, {"text": "as", "start": 360, "end": 362, "annotation": null}, {"text": "well", "start": 363, "end": 367, "annotation": null}, {"text": "as", "start": 368, "end": 370, "annotation": null}, {"text": "previous", "start": 371, "end": 379, "annotation": null}, {"text": "drift", "start": 380, "end": 385, "annotation": null}, {"text": "mobility", "start": 386, "end": 394, "annotation": null}, {"text": "results", "start": 395, "end": 402, "annotation": null}, {"text": ".", "start": 402, "end": 403, "annotation": null}]]} -{"remark": "doping_annt2", "text": "The effects of AlN fillers on the thermal and mechanical properties of vitrified bond and vitrified cubic boron nitride (CBN) composites were systematically investigated. The basic vitrified bond (B2O3\u2013Al2O3\u2013SiO2\u2013Li2O\u2013Na2O\u2013ZnO) and AlN fillers make up the vitrified bond, and then constitute the vitrified CBN composites consists together with CBN grains. When the adding amount of AlN rises from 0wt% to 8wt%, the thermal conductivity of the vitrified bond increases from 0.74W/mK to 1.44W/mK. 6wt% AlN-doped-vitrified bond presents the minimum coefficient of thermal expansion and bending strength of 66.35MPa. The substantial improvement of thermal conductivity may be attributed to the formation of thermal conductive path and new crystalline phase\u2014\u03b1-tridymite in the vitrified bond. Microstructure characterization indicates that the main crack deflection and divergency are the primary strengthening mechanisms. Such vitrified CBN composites with good thermal conductivity and mechanical strength might be promising in grinding materials for reducing burn.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "effects", "start": 4, "end": 11, "annotation": null}, {"text": "of", "start": 12, "end": 14, "annotation": null}, {"text": "AlN", "start": 15, "end": 18, "annotation": null}, {"text": "fillers", "start": 19, "end": 26, "annotation": null}, {"text": "on", "start": 27, "end": 29, "annotation": null}, {"text": "the", "start": 30, "end": 33, "annotation": null}, {"text": "thermal", "start": 34, "end": 41, "annotation": null}, {"text": "and", "start": 42, "end": 45, "annotation": null}, {"text": "mechanical", "start": 46, "end": 56, "annotation": null}, {"text": "properties", "start": 57, "end": 67, "annotation": null}, {"text": "of", "start": 68, "end": 70, "annotation": null}, {"text": "vitrified", "start": 71, "end": 80, "annotation": null}, {"text": "bond", "start": 81, "end": 85, "annotation": null}, {"text": "and", "start": 86, "end": 89, "annotation": null}, {"text": "vitrified", "start": 90, "end": 99, "annotation": null}, {"text": "cubic", "start": 100, "end": 105, "annotation": "BASEMAT"}, {"text": "boron", "start": 106, "end": 111, "annotation": "BASEMAT"}, {"text": "nitride", "start": 112, "end": 119, "annotation": "BASEMAT"}, {"text": "(", "start": 120, "end": 121, "annotation": null}, {"text": "CBN", "start": 121, "end": 124, "annotation": "BASEMAT"}, {"text": ")", "start": 124, "end": 125, "annotation": null}, {"text": "composites", "start": 126, "end": 136, "annotation": null}, {"text": "were", "start": 137, "end": 141, "annotation": null}, {"text": "systematically", "start": 142, "end": 156, "annotation": null}, {"text": "investigated", "start": 157, "end": 169, "annotation": null}, {"text": ".", "start": 169, "end": 170, "annotation": null}], [{"text": "The", "start": 171, "end": 174, "annotation": null}, {"text": "basic", "start": 175, "end": 180, "annotation": null}, {"text": "vitrified", "start": 181, "end": 190, "annotation": null}, {"text": "bond", "start": 191, "end": 195, "annotation": null}, {"text": "(", "start": 196, "end": 197, "annotation": null}, {"text": "B2O3", "start": 197, "end": 201, "annotation": null}, {"text": "\u2013", "start": 201, "end": 202, "annotation": null}, {"text": "Al2O3", "start": 202, "end": 207, "annotation": null}, {"text": "\u2013", "start": 207, "end": 208, "annotation": null}, {"text": "SiO2", "start": 208, "end": 212, "annotation": null}, {"text": "\u2013", "start": 212, "end": 213, "annotation": null}, {"text": "Li2O", "start": 213, "end": 217, "annotation": null}, {"text": "\u2013", "start": 217, "end": 218, "annotation": null}, {"text": "Na2O", "start": 218, "end": 222, "annotation": null}, {"text": "\u2013", "start": 222, "end": 223, "annotation": null}, {"text": "ZnO", "start": 223, "end": 226, "annotation": null}, {"text": ")", "start": 226, "end": 227, "annotation": null}, {"text": "and", "start": 228, "end": 231, "annotation": null}, {"text": "AlN", "start": 232, "end": 235, "annotation": "DOPANT"}, {"text": "fillers", "start": 236, "end": 243, "annotation": null}, {"text": "make", "start": 244, "end": 248, "annotation": null}, {"text": "up", "start": 249, "end": 251, "annotation": null}, {"text": "the", "start": 252, "end": 255, "annotation": null}, {"text": "vitrified", "start": 256, "end": 265, "annotation": null}, {"text": "bond", "start": 266, "end": 270, "annotation": null}, {"text": ",", "start": 270, "end": 271, "annotation": null}, {"text": "and", "start": 272, "end": 275, "annotation": null}, {"text": "then", "start": 276, "end": 280, "annotation": null}, {"text": "constitute", "start": 281, "end": 291, "annotation": null}, {"text": "the", "start": 292, "end": 295, "annotation": null}, {"text": "vitrified", "start": 296, "end": 305, "annotation": null}, {"text": "CBN", "start": 306, "end": 309, "annotation": "BASEMAT"}, {"text": "composites", "start": 310, "end": 320, "annotation": null}, {"text": "consists", "start": 321, "end": 329, "annotation": null}, {"text": "together", "start": 330, "end": 338, "annotation": null}, {"text": "with", "start": 339, "end": 343, "annotation": null}, {"text": "CBN", "start": 344, "end": 347, "annotation": null}, {"text": "grains", "start": 348, "end": 354, "annotation": null}, {"text": ".", "start": 354, "end": 355, "annotation": null}], [{"text": "When", "start": 356, "end": 360, "annotation": null}, {"text": "the", "start": 361, "end": 364, "annotation": null}, {"text": "adding", "start": 365, "end": 371, "annotation": null}, {"text": "amount", "start": 372, "end": 378, "annotation": null}, {"text": "of", "start": 379, "end": 381, "annotation": null}, {"text": "AlN", "start": 382, "end": 385, "annotation": "DOPANT"}, {"text": "rises", "start": 386, "end": 391, "annotation": null}, {"text": "from", "start": 392, "end": 396, "annotation": null}, {"text": "0wt", "start": 397, "end": 400, "annotation": "DOPMODQ"}, {"text": "%", "start": 400, "end": 401, "annotation": "DOPMODQ"}, {"text": "to", "start": 402, "end": 404, "annotation": null}, {"text": "8wt", "start": 405, "end": 408, "annotation": "DOPMODQ"}, {"text": "%", "start": 408, "end": 409, "annotation": "DOPMODQ"}, {"text": ",", "start": 409, "end": 410, "annotation": null}, {"text": "the", "start": 411, "end": 414, "annotation": null}, {"text": "thermal", "start": 415, "end": 422, "annotation": null}, {"text": "conductivity", "start": 423, "end": 435, "annotation": null}, {"text": "of", "start": 436, "end": 438, "annotation": null}, {"text": "the", "start": 439, "end": 442, "annotation": null}, {"text": "vitrified", "start": 443, "end": 452, "annotation": null}, {"text": "bond", "start": 453, "end": 457, "annotation": null}, {"text": "increases", "start": 458, "end": 467, "annotation": null}, {"text": "from", "start": 468, "end": 472, "annotation": null}, {"text": "0.74", "start": 473, "end": 477, "annotation": null}, {"text": "W", "start": 477, "end": 478, "annotation": null}, {"text": "/", "start": 478, "end": 479, "annotation": null}, {"text": "mK", "start": 479, "end": 481, "annotation": null}, {"text": "to", "start": 482, "end": 484, "annotation": null}, {"text": "1.44", "start": 485, "end": 489, "annotation": null}, {"text": "W", "start": 489, "end": 490, "annotation": null}, {"text": "/", "start": 490, "end": 491, "annotation": null}, {"text": "mK", "start": 491, "end": 493, "annotation": null}, {"text": ".", "start": 493, "end": 494, "annotation": null}], [{"text": "6wt", "start": 495, "end": 498, "annotation": "DOPMODQ"}, {"text": "%", "start": 498, "end": 499, "annotation": "DOPMODQ"}, {"text": "AlN-doped-vitrified", "start": 500, "end": 519, "annotation": null}, {"text": "bond", "start": 520, "end": 524, "annotation": null}, {"text": "presents", "start": 525, "end": 533, "annotation": null}, {"text": "the", "start": 534, "end": 537, "annotation": null}, {"text": "minimum", "start": 538, "end": 545, "annotation": null}, {"text": "coefficient", "start": 546, "end": 557, "annotation": null}, {"text": "of", "start": 558, "end": 560, "annotation": null}, {"text": "thermal", "start": 561, "end": 568, "annotation": null}, {"text": "expansion", "start": 569, "end": 578, "annotation": null}, {"text": "and", "start": 579, "end": 582, "annotation": null}, {"text": "bending", "start": 583, "end": 590, "annotation": null}, {"text": "strength", "start": 591, "end": 599, "annotation": null}, {"text": "of", "start": 600, "end": 602, "annotation": null}, {"text": "66.35MPa", "start": 603, "end": 611, "annotation": null}, {"text": ".", "start": 611, "end": 612, "annotation": null}], [{"text": "The", "start": 613, "end": 616, "annotation": null}, {"text": "substantial", "start": 617, "end": 628, "annotation": null}, {"text": "improvement", "start": 629, "end": 640, "annotation": null}, {"text": "of", "start": 641, "end": 643, "annotation": null}, {"text": "thermal", "start": 644, "end": 651, "annotation": null}, {"text": "conductivity", "start": 652, "end": 664, "annotation": null}, {"text": "may", "start": 665, "end": 668, "annotation": null}, {"text": "be", "start": 669, "end": 671, "annotation": null}, {"text": "attributed", "start": 672, "end": 682, "annotation": null}, {"text": "to", "start": 683, "end": 685, "annotation": null}, {"text": "the", "start": 686, "end": 689, "annotation": null}, {"text": "formation", "start": 690, "end": 699, "annotation": null}, {"text": "of", "start": 700, "end": 702, "annotation": null}, {"text": "thermal", "start": 703, "end": 710, "annotation": null}, {"text": "conductive", "start": 711, "end": 721, "annotation": null}, {"text": "path", "start": 722, "end": 726, "annotation": null}, {"text": "and", "start": 727, "end": 730, "annotation": null}, {"text": "new", "start": 731, "end": 734, "annotation": null}, {"text": "crystalline", "start": 735, "end": 746, "annotation": null}, {"text": "phase", "start": 747, "end": 752, "annotation": null}, {"text": "\u2014", "start": 752, "end": 753, "annotation": null}, {"text": "\u03b1-tridymite", "start": 753, "end": 764, "annotation": null}, {"text": "in", "start": 765, "end": 767, "annotation": null}, {"text": "the", "start": 768, "end": 771, "annotation": null}, {"text": "vitrified", "start": 772, "end": 781, "annotation": null}, {"text": "bond", "start": 782, "end": 786, "annotation": null}, {"text": ".", "start": 786, "end": 787, "annotation": null}], [{"text": "Microstructure", "start": 788, "end": 802, "annotation": null}, {"text": "characterization", "start": 803, "end": 819, "annotation": null}, {"text": "indicates", "start": 820, "end": 829, "annotation": null}, {"text": "that", "start": 830, "end": 834, "annotation": null}, {"text": "the", "start": 835, "end": 838, "annotation": null}, {"text": "main", "start": 839, "end": 843, "annotation": null}, {"text": "crack", "start": 844, "end": 849, "annotation": null}, {"text": "deflection", "start": 850, "end": 860, "annotation": null}, {"text": "and", "start": 861, "end": 864, "annotation": null}, {"text": "divergency", "start": 865, "end": 875, "annotation": null}, {"text": "are", "start": 876, "end": 879, "annotation": null}, {"text": "the", "start": 880, "end": 883, "annotation": null}, {"text": "primary", "start": 884, "end": 891, "annotation": null}, {"text": "strengthening", "start": 892, "end": 905, "annotation": null}, {"text": "mechanisms", "start": 906, "end": 916, "annotation": null}, {"text": ".", "start": 916, "end": 917, "annotation": null}], [{"text": "Such", "start": 918, "end": 922, "annotation": null}, {"text": "vitrified", "start": 923, "end": 932, "annotation": null}, {"text": "CBN", "start": 933, "end": 936, "annotation": "BASEMAT"}, {"text": "composites", "start": 937, "end": 947, "annotation": null}, {"text": "with", "start": 948, "end": 952, "annotation": null}, {"text": "good", "start": 953, "end": 957, "annotation": null}, {"text": "thermal", "start": 958, "end": 965, "annotation": null}, {"text": "conductivity", "start": 966, "end": 978, "annotation": null}, {"text": "and", "start": 979, "end": 982, "annotation": null}, {"text": "mechanical", "start": 983, "end": 993, "annotation": null}, {"text": "strength", "start": 994, "end": 1002, "annotation": null}, {"text": "might", "start": 1003, "end": 1008, "annotation": null}, {"text": "be", "start": 1009, "end": 1011, "annotation": null}, {"text": "promising", "start": 1012, "end": 1021, "annotation": null}, {"text": "in", "start": 1022, "end": 1024, "annotation": null}, {"text": "grinding", "start": 1025, "end": 1033, "annotation": null}, {"text": "materials", "start": 1034, "end": 1043, "annotation": null}, {"text": "for", "start": 1044, "end": 1047, "annotation": null}, {"text": "reducing", "start": 1048, "end": 1056, "annotation": null}, {"text": "burn", "start": 1057, "end": 1061, "annotation": null}, {"text": ".", "start": 1061, "end": 1062, "annotation": null}]]} +{"remark": "doping_annt2", "text": "Electrical resistivity and Hall measurements have been performed, on strained B-heavily doped Si0.8Ge0.2 epilayers grown by molecular beam epitaxy (MBE) technique, in the temperature range 80\u2013350 K. In-plane Hall mobility and concentration of the free holes were extracted and discussed taking into account the high doping level effects, scattering mechanisms as well as previous drift mobility results.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Electrical", "start": 0, "end": 10, "annotation": null}, {"text": "resistivity", "start": 11, "end": 22, "annotation": null}, {"text": "and", "start": 23, "end": 26, "annotation": null}, {"text": "Hall", "start": 27, "end": 31, "annotation": null}, {"text": "measurements", "start": 32, "end": 44, "annotation": null}, {"text": "have", "start": 45, "end": 49, "annotation": null}, {"text": "been", "start": 50, "end": 54, "annotation": null}, {"text": "performed", "start": 55, "end": 64, "annotation": null}, {"text": ",", "start": 64, "end": 65, "annotation": null}, {"text": "on", "start": 66, "end": 68, "annotation": null}, {"text": "strained", "start": 69, "end": 77, "annotation": null}, {"text": "B-heavily", "start": 78, "end": 87, "annotation": "DOPANT"}, {"text": "doped", "start": 88, "end": 93, "annotation": null}, {"text": "Si0.8Ge0.2", "start": 94, "end": 104, "annotation": "BASEMAT"}, {"text": "epilayers", "start": 105, "end": 114, "annotation": null}, {"text": "grown", "start": 115, "end": 120, "annotation": null}, {"text": "by", "start": 121, "end": 123, "annotation": null}, {"text": "molecular", "start": 124, "end": 133, "annotation": null}, {"text": "beam", "start": 134, "end": 138, "annotation": null}, {"text": "epitaxy", "start": 139, "end": 146, "annotation": null}, {"text": "(", "start": 147, "end": 148, "annotation": null}, {"text": "MBE", "start": 148, "end": 151, "annotation": null}, {"text": ")", "start": 151, "end": 152, "annotation": null}, {"text": "technique", "start": 153, "end": 162, "annotation": null}, {"text": ",", "start": 162, "end": 163, "annotation": null}, {"text": "in", "start": 164, "end": 166, "annotation": null}, {"text": "the", "start": 167, "end": 170, "annotation": null}, {"text": "temperature", "start": 171, "end": 182, "annotation": null}, {"text": "range", "start": 183, "end": 188, "annotation": null}, {"text": "80", "start": 189, "end": 191, "annotation": null}, {"text": "\u2013", "start": 191, "end": 192, "annotation": null}, {"text": "350", "start": 192, "end": 195, "annotation": null}, {"text": "K", "start": 196, "end": 197, "annotation": null}, {"text": ".", "start": 197, "end": 198, "annotation": null}], [{"text": "In-plane", "start": 199, "end": 207, "annotation": null}, {"text": "Hall", "start": 208, "end": 212, "annotation": null}, {"text": "mobility", "start": 213, "end": 221, "annotation": null}, {"text": "and", "start": 222, "end": 225, "annotation": null}, {"text": "concentration", "start": 226, "end": 239, "annotation": null}, {"text": "of", "start": 240, "end": 242, "annotation": null}, {"text": "the", "start": 243, "end": 246, "annotation": null}, {"text": "free", "start": 247, "end": 251, "annotation": null}, {"text": "holes", "start": 252, "end": 257, "annotation": null}, {"text": "were", "start": 258, "end": 262, "annotation": null}, {"text": "extracted", "start": 263, "end": 272, "annotation": null}, {"text": "and", "start": 273, "end": 276, "annotation": null}, {"text": "discussed", "start": 277, "end": 286, "annotation": null}, {"text": "taking", "start": 287, "end": 293, "annotation": null}, {"text": "into", "start": 294, "end": 298, "annotation": null}, {"text": "account", "start": 299, "end": 306, "annotation": null}, {"text": "the", "start": 307, "end": 310, "annotation": null}, {"text": "high", "start": 311, "end": 315, "annotation": null}, {"text": "doping", "start": 316, "end": 322, "annotation": null}, {"text": "level", "start": 323, "end": 328, "annotation": null}, {"text": "effects", "start": 329, "end": 336, "annotation": null}, {"text": ",", "start": 336, "end": 337, "annotation": null}, {"text": "scattering", "start": 338, "end": 348, "annotation": null}, {"text": "mechanisms", "start": 349, "end": 359, "annotation": null}, {"text": "as", "start": 360, "end": 362, "annotation": null}, {"text": "well", "start": 363, "end": 367, "annotation": null}, {"text": "as", "start": 368, "end": 370, "annotation": null}, {"text": "previous", "start": 371, "end": 379, "annotation": null}, {"text": "drift", "start": 380, "end": 385, "annotation": null}, {"text": "mobility", "start": 386, "end": 394, "annotation": null}, {"text": "results", "start": 395, "end": 402, "annotation": null}, {"text": ".", "start": 402, "end": 403, "annotation": null}]], "meta": {"doi": "10.1016/S0921-5107(01)00859-5"}} +{"remark": "doping_annt2", "text": "The effects of AlN fillers on the thermal and mechanical properties of vitrified bond and vitrified cubic boron nitride (CBN) composites were systematically investigated. The basic vitrified bond (B2O3\u2013Al2O3\u2013SiO2\u2013Li2O\u2013Na2O\u2013ZnO) and AlN fillers make up the vitrified bond, and then constitute the vitrified CBN composites consists together with CBN grains. When the adding amount of AlN rises from 0wt% to 8wt%, the thermal conductivity of the vitrified bond increases from 0.74W/mK to 1.44W/mK. 6wt% AlN-doped-vitrified bond presents the minimum coefficient of thermal expansion and bending strength of 66.35MPa. The substantial improvement of thermal conductivity may be attributed to the formation of thermal conductive path and new crystalline phase\u2014\u03b1-tridymite in the vitrified bond. Microstructure characterization indicates that the main crack deflection and divergency are the primary strengthening mechanisms. Such vitrified CBN composites with good thermal conductivity and mechanical strength might be promising in grinding materials for reducing burn.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "effects", "start": 4, "end": 11, "annotation": null}, {"text": "of", "start": 12, "end": 14, "annotation": null}, {"text": "AlN", "start": 15, "end": 18, "annotation": null}, {"text": "fillers", "start": 19, "end": 26, "annotation": null}, {"text": "on", "start": 27, "end": 29, "annotation": null}, {"text": "the", "start": 30, "end": 33, "annotation": null}, {"text": "thermal", "start": 34, "end": 41, "annotation": null}, {"text": "and", "start": 42, "end": 45, "annotation": null}, {"text": "mechanical", "start": 46, "end": 56, "annotation": null}, {"text": "properties", "start": 57, "end": 67, "annotation": null}, {"text": "of", "start": 68, "end": 70, "annotation": null}, {"text": "vitrified", "start": 71, "end": 80, "annotation": null}, {"text": "bond", "start": 81, "end": 85, "annotation": null}, {"text": "and", "start": 86, "end": 89, "annotation": null}, {"text": "vitrified", "start": 90, "end": 99, "annotation": null}, {"text": "cubic", "start": 100, "end": 105, "annotation": "BASEMAT"}, {"text": "boron", "start": 106, "end": 111, "annotation": "BASEMAT"}, {"text": "nitride", "start": 112, "end": 119, "annotation": "BASEMAT"}, {"text": "(", "start": 120, "end": 121, "annotation": null}, {"text": "CBN", "start": 121, "end": 124, "annotation": "BASEMAT"}, {"text": ")", "start": 124, "end": 125, "annotation": null}, {"text": "composites", "start": 126, "end": 136, "annotation": null}, {"text": "were", "start": 137, "end": 141, "annotation": null}, {"text": "systematically", "start": 142, "end": 156, "annotation": null}, {"text": "investigated", "start": 157, "end": 169, "annotation": null}, {"text": ".", "start": 169, "end": 170, "annotation": null}], [{"text": "The", "start": 171, "end": 174, "annotation": null}, {"text": "basic", "start": 175, "end": 180, "annotation": null}, {"text": "vitrified", "start": 181, "end": 190, "annotation": null}, {"text": "bond", "start": 191, "end": 195, "annotation": null}, {"text": "(", "start": 196, "end": 197, "annotation": null}, {"text": "B2O3", "start": 197, "end": 201, "annotation": null}, {"text": "\u2013", "start": 201, "end": 202, "annotation": null}, {"text": "Al2O3", "start": 202, "end": 207, "annotation": null}, {"text": "\u2013", "start": 207, "end": 208, "annotation": null}, {"text": "SiO2", "start": 208, "end": 212, "annotation": null}, {"text": "\u2013", "start": 212, "end": 213, "annotation": null}, {"text": "Li2O", "start": 213, "end": 217, "annotation": null}, {"text": "\u2013", "start": 217, "end": 218, "annotation": null}, {"text": "Na2O", "start": 218, "end": 222, "annotation": null}, {"text": "\u2013", "start": 222, "end": 223, "annotation": null}, {"text": "ZnO", "start": 223, "end": 226, "annotation": null}, {"text": ")", "start": 226, "end": 227, "annotation": null}, {"text": "and", "start": 228, "end": 231, "annotation": null}, {"text": "AlN", "start": 232, "end": 235, "annotation": "DOPANT"}, {"text": "fillers", "start": 236, "end": 243, "annotation": null}, {"text": "make", "start": 244, "end": 248, "annotation": null}, {"text": "up", "start": 249, "end": 251, "annotation": null}, {"text": "the", "start": 252, "end": 255, "annotation": null}, {"text": "vitrified", "start": 256, "end": 265, "annotation": null}, {"text": "bond", "start": 266, "end": 270, "annotation": null}, {"text": ",", "start": 270, "end": 271, "annotation": null}, {"text": "and", "start": 272, "end": 275, "annotation": null}, {"text": "then", "start": 276, "end": 280, "annotation": null}, {"text": "constitute", "start": 281, "end": 291, "annotation": null}, {"text": "the", "start": 292, "end": 295, "annotation": null}, {"text": "vitrified", "start": 296, "end": 305, "annotation": null}, {"text": "CBN", "start": 306, "end": 309, "annotation": "BASEMAT"}, {"text": "composites", "start": 310, "end": 320, "annotation": null}, {"text": "consists", "start": 321, "end": 329, "annotation": null}, {"text": "together", "start": 330, "end": 338, "annotation": null}, {"text": "with", "start": 339, "end": 343, "annotation": null}, {"text": "CBN", "start": 344, "end": 347, "annotation": null}, {"text": "grains", "start": 348, "end": 354, "annotation": null}, {"text": ".", "start": 354, "end": 355, "annotation": null}], [{"text": "When", "start": 356, "end": 360, "annotation": null}, {"text": "the", "start": 361, "end": 364, "annotation": null}, {"text": "adding", "start": 365, "end": 371, "annotation": null}, {"text": "amount", "start": 372, "end": 378, "annotation": null}, {"text": "of", "start": 379, "end": 381, "annotation": null}, {"text": "AlN", "start": 382, "end": 385, "annotation": "DOPANT"}, {"text": "rises", "start": 386, "end": 391, "annotation": null}, {"text": "from", "start": 392, "end": 396, "annotation": null}, {"text": "0wt", "start": 397, "end": 400, "annotation": "DOPMODQ"}, {"text": "%", "start": 400, "end": 401, "annotation": "DOPMODQ"}, {"text": "to", "start": 402, "end": 404, "annotation": null}, {"text": "8wt", "start": 405, "end": 408, "annotation": "DOPMODQ"}, {"text": "%", "start": 408, "end": 409, "annotation": "DOPMODQ"}, {"text": ",", "start": 409, "end": 410, "annotation": null}, {"text": "the", "start": 411, "end": 414, "annotation": null}, {"text": "thermal", "start": 415, "end": 422, "annotation": null}, {"text": "conductivity", "start": 423, "end": 435, "annotation": null}, {"text": "of", "start": 436, "end": 438, "annotation": null}, {"text": "the", "start": 439, "end": 442, "annotation": null}, {"text": "vitrified", "start": 443, "end": 452, "annotation": null}, {"text": "bond", "start": 453, "end": 457, "annotation": null}, {"text": "increases", "start": 458, "end": 467, "annotation": null}, {"text": "from", "start": 468, "end": 472, "annotation": null}, {"text": "0.74", "start": 473, "end": 477, "annotation": null}, {"text": "W", "start": 477, "end": 478, "annotation": null}, {"text": "/", "start": 478, "end": 479, "annotation": null}, {"text": "mK", "start": 479, "end": 481, "annotation": null}, {"text": "to", "start": 482, "end": 484, "annotation": null}, {"text": "1.44", "start": 485, "end": 489, "annotation": null}, {"text": "W", "start": 489, "end": 490, "annotation": null}, {"text": "/", "start": 490, "end": 491, "annotation": null}, {"text": "mK", "start": 491, "end": 493, "annotation": null}, {"text": ".", "start": 493, "end": 494, "annotation": null}], [{"text": "6wt", "start": 495, "end": 498, "annotation": "DOPMODQ"}, {"text": "%", "start": 498, "end": 499, "annotation": "DOPMODQ"}, {"text": "AlN-doped-vitrified", "start": 500, "end": 519, "annotation": null}, {"text": "bond", "start": 520, "end": 524, "annotation": null}, {"text": "presents", "start": 525, "end": 533, "annotation": null}, {"text": "the", "start": 534, "end": 537, "annotation": null}, {"text": "minimum", "start": 538, "end": 545, "annotation": null}, {"text": "coefficient", "start": 546, "end": 557, "annotation": null}, {"text": "of", "start": 558, "end": 560, "annotation": null}, {"text": "thermal", "start": 561, "end": 568, "annotation": null}, {"text": "expansion", "start": 569, "end": 578, "annotation": null}, {"text": "and", "start": 579, "end": 582, "annotation": null}, {"text": "bending", "start": 583, "end": 590, "annotation": null}, {"text": "strength", "start": 591, "end": 599, "annotation": null}, {"text": "of", "start": 600, "end": 602, "annotation": null}, {"text": "66.35MPa", "start": 603, "end": 611, "annotation": null}, {"text": ".", "start": 611, "end": 612, "annotation": null}], [{"text": "The", "start": 613, "end": 616, "annotation": null}, {"text": "substantial", "start": 617, "end": 628, "annotation": null}, {"text": "improvement", "start": 629, "end": 640, "annotation": null}, {"text": "of", "start": 641, "end": 643, "annotation": null}, {"text": "thermal", "start": 644, "end": 651, "annotation": null}, {"text": "conductivity", "start": 652, "end": 664, "annotation": null}, {"text": "may", "start": 665, "end": 668, "annotation": null}, {"text": "be", "start": 669, "end": 671, "annotation": null}, {"text": "attributed", "start": 672, "end": 682, "annotation": null}, {"text": "to", "start": 683, "end": 685, "annotation": null}, {"text": "the", "start": 686, "end": 689, "annotation": null}, {"text": "formation", "start": 690, "end": 699, "annotation": null}, {"text": "of", "start": 700, "end": 702, "annotation": null}, {"text": "thermal", "start": 703, "end": 710, "annotation": null}, {"text": "conductive", "start": 711, "end": 721, "annotation": null}, {"text": "path", "start": 722, "end": 726, "annotation": null}, {"text": "and", "start": 727, "end": 730, "annotation": null}, {"text": "new", "start": 731, "end": 734, "annotation": null}, {"text": "crystalline", "start": 735, "end": 746, "annotation": null}, {"text": "phase", "start": 747, "end": 752, "annotation": null}, {"text": "\u2014", "start": 752, "end": 753, "annotation": null}, {"text": "\u03b1-tridymite", "start": 753, "end": 764, "annotation": null}, {"text": "in", "start": 765, "end": 767, "annotation": null}, {"text": "the", "start": 768, "end": 771, "annotation": null}, {"text": "vitrified", "start": 772, "end": 781, "annotation": null}, {"text": "bond", "start": 782, "end": 786, "annotation": null}, {"text": ".", "start": 786, "end": 787, "annotation": null}], [{"text": "Microstructure", "start": 788, "end": 802, "annotation": null}, {"text": "characterization", "start": 803, "end": 819, "annotation": null}, {"text": "indicates", "start": 820, "end": 829, "annotation": null}, {"text": "that", "start": 830, "end": 834, "annotation": null}, {"text": "the", "start": 835, "end": 838, "annotation": null}, {"text": "main", "start": 839, "end": 843, "annotation": null}, {"text": "crack", "start": 844, "end": 849, "annotation": null}, {"text": "deflection", "start": 850, "end": 860, "annotation": null}, {"text": "and", "start": 861, "end": 864, "annotation": null}, {"text": "divergency", "start": 865, "end": 875, "annotation": null}, {"text": "are", "start": 876, "end": 879, "annotation": null}, {"text": "the", "start": 880, "end": 883, "annotation": null}, {"text": "primary", "start": 884, "end": 891, "annotation": null}, {"text": "strengthening", "start": 892, "end": 905, "annotation": null}, {"text": "mechanisms", "start": 906, "end": 916, "annotation": null}, {"text": ".", "start": 916, "end": 917, "annotation": null}], [{"text": "Such", "start": 918, "end": 922, "annotation": null}, {"text": "vitrified", "start": 923, "end": 932, "annotation": null}, {"text": "CBN", "start": 933, "end": 936, "annotation": "BASEMAT"}, {"text": "composites", "start": 937, "end": 947, "annotation": null}, {"text": "with", "start": 948, "end": 952, "annotation": null}, {"text": "good", "start": 953, "end": 957, "annotation": null}, {"text": "thermal", "start": 958, "end": 965, "annotation": null}, {"text": "conductivity", "start": 966, "end": 978, "annotation": null}, {"text": "and", "start": 979, "end": 982, "annotation": null}, {"text": "mechanical", "start": 983, "end": 993, "annotation": null}, {"text": "strength", "start": 994, "end": 1002, "annotation": null}, {"text": "might", "start": 1003, "end": 1008, "annotation": null}, {"text": "be", "start": 1009, "end": 1011, "annotation": null}, {"text": "promising", "start": 1012, "end": 1021, "annotation": null}, {"text": "in", "start": 1022, "end": 1024, "annotation": null}, {"text": "grinding", "start": 1025, "end": 1033, "annotation": null}, {"text": "materials", "start": 1034, "end": 1043, "annotation": null}, {"text": "for", "start": 1044, "end": 1047, "annotation": null}, {"text": "reducing", "start": 1048, "end": 1056, "annotation": null}, {"text": "burn", "start": 1057, "end": 1061, "annotation": null}, {"text": ".", "start": 1061, "end": 1062, "annotation": null}]], "meta": {"doi": "10.1016/j.ceramint.2014.04.129"}} {"text": "The defect structures produced in Si surface layers by low energy (3.0 kV), high dose (1016\u20131018 ions cm\u22122) carbon ion doping have been studied by the electron spin resonance (ESR) method. The ESR analysis of substrates after annealing at 1200\u00b0C revealed the presence of three paramagnetic defects, which are (1) Si dangling bonds with a g value of 2.0060 (\u0394Hpp=6.3Oe), (20 Si dangling bonds with C atom neighbors (g=2.0035; \u0394Hpp=2.6) and (3) ESR centers with a g value of 2.0027 (\u0394Hpp=1.9 Oe), which is assigned to a C dangling bond with C atom neighbors. The presence of the ESR center with a g value of 2.0027 implies the formation of diamond nuclei in the high dose carbon-doped Si surface layer.", "meta": {"doi": "10.1016/0040-6090(93)90617-X"}, "_input_hash": -1352698918, "_task_hash": -1505965623, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "defect", "start": 4, "end": 10, "id": 1, "annotation": null}, {"text": "structures", "start": 11, "end": 21, "id": 2, "annotation": null}, {"text": "produced", "start": 22, "end": 30, "id": 3, "annotation": null}, {"text": "in", "start": 31, "end": 33, "id": 4, "annotation": null}, {"text": "Si", "start": 34, "end": 36, "id": 5, "annotation": "BASEMAT"}, {"text": "surface", "start": 37, "end": 44, "id": 6, "annotation": null}, {"text": "layers", "start": 45, "end": 51, "id": 7, "annotation": null}, {"text": "by", "start": 52, "end": 54, "id": 8, "annotation": null}, {"text": "low", "start": 55, "end": 58, "id": 9, "annotation": null}, {"text": "energy", "start": 59, "end": 65, "id": 10, "annotation": null}, {"text": "(", "start": 66, "end": 67, "id": 11, "annotation": null}, {"text": "3.0", "start": 68, "end": 71, "id": 12, "annotation": null}, {"text": "kV", "start": 72, "end": 74, "id": 13, "annotation": null}, {"text": ")", "start": 75, "end": 76, "id": 14, "annotation": null}, {"text": ",", "start": 77, "end": 78, "id": 15, "annotation": null}, {"text": "high", "start": 79, "end": 83, "id": 16, "annotation": null}, {"text": "dose", "start": 84, "end": 88, "id": 17, "annotation": null}, {"text": "(", "start": 89, "end": 90, "id": 18, "annotation": null}, {"text": "1016\u20131018", "start": 91, "end": 100, "id": 19, "annotation": null}, {"text": "ions", "start": 101, "end": 105, "id": 20, "annotation": null}, {"text": "cm\u22122", "start": 106, "end": 110, "id": 21, "annotation": null}, {"text": ")", "start": 111, "end": 112, "id": 22, "annotation": null}, {"text": "carbon", "start": 113, "end": 119, "id": 23, "annotation": "DOPANT"}, {"text": "ion", "start": 120, "end": 123, "id": 24, "annotation": "DOPANT"}, {"text": "doping", "start": 124, "end": 130, "id": 25, "annotation": null}, {"text": "have", "start": 131, "end": 135, "id": 26, "annotation": null}, {"text": "been", "start": 136, "end": 140, "id": 27, "annotation": null}, {"text": "studied", "start": 141, "end": 148, "id": 28, "annotation": null}, {"text": "by", "start": 149, "end": 151, "id": 29, "annotation": null}, {"text": "the", "start": 152, "end": 155, "id": 30, "annotation": null}, {"text": "electron", "start": 156, "end": 164, "id": 31, "annotation": null}, {"text": "spin", "start": 165, "end": 169, "id": 32, "annotation": null}, {"text": "resonance", "start": 170, "end": 179, "id": 33, "annotation": null}, {"text": "(", "start": 180, "end": 181, "id": 34, "annotation": null}, {"text": "ESR", "start": 182, "end": 185, "id": 35, "annotation": null}, {"text": ")", "start": 186, "end": 187, "id": 36, "annotation": null}, {"text": "method", "start": 188, "end": 194, "id": 37, "annotation": null}, {"text": ".", "start": 195, "end": 196, "id": 38, "annotation": null}], [{"text": "The", "start": 197, "end": 200, "id": 39, "annotation": null}, {"text": "ESR", "start": 201, "end": 204, "id": 40, "annotation": null}, {"text": "analysis", "start": 205, "end": 213, "id": 41, "annotation": null}, {"text": "of", "start": 214, "end": 216, "id": 42, "annotation": null}, {"text": "substrates", "start": 217, "end": 227, "id": 43, "annotation": null}, {"text": "after", "start": 228, "end": 233, "id": 44, "annotation": null}, {"text": "annealing", "start": 234, "end": 243, "id": 45, "annotation": null}, {"text": "at", "start": 244, "end": 246, "id": 46, "annotation": null}, {"text": "1200", "start": 247, "end": 251, "id": 47, "annotation": null}, {"text": "\u00b0", "start": 252, "end": 253, "id": 48, "annotation": null}, {"text": "C", "start": 254, "end": 255, "id": 49, "annotation": null}, {"text": "revealed", "start": 256, "end": 264, "id": 50, "annotation": null}, {"text": "the", "start": 265, "end": 268, "id": 51, "annotation": null}, {"text": "presence", "start": 269, "end": 277, "id": 52, "annotation": null}, {"text": "of", "start": 278, "end": 280, "id": 53, "annotation": null}, {"text": "three", "start": 281, "end": 286, "id": 54, "annotation": null}, {"text": "paramagnetic", "start": 287, "end": 299, "id": 55, "annotation": null}, {"text": "defects", "start": 300, "end": 307, "id": 56, "annotation": null}, {"text": ",", "start": 308, "end": 309, "id": 57, "annotation": null}, {"text": "which", "start": 310, "end": 315, "id": 58, "annotation": null}, {"text": "are", "start": 316, "end": 319, "id": 59, "annotation": null}, {"text": "(", "start": 320, "end": 321, "id": 60, "annotation": null}, {"text": "1", "start": 322, "end": 323, "id": 61, "annotation": null}, {"text": ")", "start": 324, "end": 325, "id": 62, "annotation": null}, {"text": "Si", "start": 326, "end": 328, "id": 63, "annotation": null}, {"text": "dangling", "start": 329, "end": 337, "id": 64, "annotation": null}, {"text": "bonds", "start": 338, "end": 343, "id": 65, "annotation": null}, {"text": "with", "start": 344, "end": 348, "id": 66, "annotation": null}, {"text": "a", "start": 349, "end": 350, "id": 67, "annotation": null}, {"text": "g", "start": 351, "end": 352, "id": 68, "annotation": null}, {"text": "value", "start": 353, "end": 358, "id": 69, "annotation": null}, {"text": "of", "start": 359, "end": 361, "id": 70, "annotation": null}, {"text": "2.0060", "start": 362, "end": 368, "id": 71, "annotation": null}, {"text": "(", "start": 369, "end": 370, "id": 72, "annotation": null}, {"text": "\u0394Hpp=6.3Oe", "start": 371, "end": 381, "id": 73, "annotation": null}, {"text": ")", "start": 382, "end": 383, "id": 74, "annotation": null}, {"text": ",", "start": 384, "end": 385, "id": 75, "annotation": null}, {"text": "(", "start": 386, "end": 387, "id": 76, "annotation": null}, {"text": "20", "start": 388, "end": 390, "id": 77, "annotation": null}, {"text": "Si", "start": 391, "end": 393, "id": 78, "annotation": null}, {"text": "dangling", "start": 394, "end": 402, "id": 79, "annotation": null}, {"text": "bonds", "start": 403, "end": 408, "id": 80, "annotation": null}, {"text": "with", "start": 409, "end": 413, "id": 81, "annotation": null}, {"text": "C", "start": 414, "end": 415, "id": 82, "annotation": null}, {"text": "atom", "start": 416, "end": 420, "id": 83, "annotation": null}, {"text": "neighbors", "start": 421, "end": 430, "id": 84, "annotation": null}, {"text": "(", "start": 431, "end": 432, "id": 85, "annotation": null}, {"text": "g=2.0035", "start": 433, "end": 441, "id": 86, "annotation": null}, {"text": ";", "start": 442, "end": 443, "id": 87, "annotation": null}, {"text": "\u0394Hpp=2.6", "start": 444, "end": 452, "id": 88, "annotation": null}, {"text": ")", "start": 453, "end": 454, "id": 89, "annotation": null}, {"text": "and", "start": 455, "end": 458, "id": 90, "annotation": null}, {"text": "(", "start": 459, "end": 460, "id": 91, "annotation": null}, {"text": "3", "start": 461, "end": 462, "id": 92, "annotation": null}, {"text": ")", "start": 463, "end": 464, "id": 93, "annotation": null}, {"text": "ESR", "start": 465, "end": 468, "id": 94, "annotation": null}, {"text": "centers", "start": 469, "end": 476, "id": 95, "annotation": null}, {"text": "with", "start": 477, "end": 481, "id": 96, "annotation": null}, {"text": "a", "start": 482, "end": 483, "id": 97, "annotation": null}, {"text": "g", "start": 484, "end": 485, "id": 98, "annotation": null}, {"text": "value", "start": 486, "end": 491, "id": 99, "annotation": null}, {"text": "of", "start": 492, "end": 494, "id": 100, "annotation": null}, {"text": "2.0027", "start": 495, "end": 501, "id": 101, "annotation": null}, {"text": "(", "start": 502, "end": 503, "id": 102, "annotation": null}, {"text": "\u0394Hpp=1.9", "start": 504, "end": 512, "id": 103, "annotation": null}, {"text": "Oe", "start": 513, "end": 515, "id": 104, "annotation": null}, {"text": ")", "start": 516, "end": 517, "id": 105, "annotation": null}, {"text": ",", "start": 518, "end": 519, "id": 106, "annotation": null}, {"text": "which", "start": 520, "end": 525, "id": 107, "annotation": null}, {"text": "is", "start": 526, "end": 528, "id": 108, "annotation": null}, {"text": "assigned", "start": 529, "end": 537, "id": 109, "annotation": null}, {"text": "to", "start": 538, "end": 540, "id": 110, "annotation": null}, {"text": "a", "start": 541, "end": 542, "id": 111, "annotation": null}, {"text": "C", "start": 543, "end": 544, "id": 112, "annotation": null}, {"text": "dangling", "start": 545, "end": 553, "id": 113, "annotation": null}, {"text": "bond", "start": 554, "end": 558, "id": 114, "annotation": null}, {"text": "with", "start": 559, "end": 563, "id": 115, "annotation": null}, {"text": "C", "start": 564, "end": 565, "id": 116, "annotation": null}, {"text": "atom", "start": 566, "end": 570, "id": 117, "annotation": null}, {"text": "neighbors", "start": 571, "end": 580, "id": 118, "annotation": null}, {"text": ".", "start": 581, "end": 582, "id": 119, "annotation": null}], [{"text": "The", "start": 583, "end": 586, "id": 120, "annotation": null}, {"text": "presence", "start": 587, "end": 595, "id": 121, "annotation": null}, {"text": "of", "start": 596, "end": 598, "id": 122, "annotation": null}, {"text": "the", "start": 599, "end": 602, "id": 123, "annotation": null}, {"text": "ESR", "start": 603, "end": 606, "id": 124, "annotation": null}, {"text": "center", "start": 607, "end": 613, "id": 125, "annotation": null}, {"text": "with", "start": 614, "end": 618, "id": 126, "annotation": null}, {"text": "a", "start": 619, "end": 620, "id": 127, "annotation": null}, {"text": "g", "start": 621, "end": 622, "id": 128, "annotation": null}, {"text": "value", "start": 623, "end": 628, "id": 129, "annotation": null}, {"text": "of", "start": 629, "end": 631, "id": 130, "annotation": null}, {"text": "2.0027", "start": 632, "end": 638, "id": 131, "annotation": null}, {"text": "implies", "start": 639, "end": 646, "id": 132, "annotation": null}, {"text": "the", "start": 647, "end": 650, "id": 133, "annotation": null}, {"text": "formation", "start": 651, "end": 660, "id": 134, "annotation": null}, {"text": "of", "start": 661, "end": 663, "id": 135, "annotation": null}, {"text": "diamond", "start": 664, "end": 671, "id": 136, "annotation": null}, {"text": "nuclei", "start": 672, "end": 678, "id": 137, "annotation": null}, {"text": "in", "start": 679, "end": 681, "id": 138, "annotation": null}, {"text": "the", "start": 682, "end": 685, "id": 139, "annotation": null}, {"text": "high", "start": 686, "end": 690, "id": 140, "annotation": null}, {"text": "dose", "start": 691, "end": 695, "id": 141, "annotation": null}, {"text": "carbon", "start": 696, "end": 702, "id": 142, "annotation": "DOPANT"}, {"text": "-", "start": 703, "end": 704, "id": 143, "annotation": null}, {"text": "doped", "start": 705, "end": 710, "id": 144, "annotation": null}, {"text": "Si", "start": 711, "end": 713, "id": 145, "annotation": "BASEMAT"}, {"text": "surface", "start": 714, "end": 721, "id": 146, "annotation": null}, {"text": "layer", "start": 722, "end": 727, "id": 147, "annotation": null}, {"text": ".", "start": 728, "end": 729, "id": 148, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Macroporous Al2O3\u2013SiO2 glasses doped with Sm2+ have been prepared from a sol\u2013gel system containing aluminum sec-butoxide, tetramethoxysilane, samarium chloride hexahydrate, poly(ethylene oxide), nitric acid, and water. Monolithic gels having interconnected macropores and skeletons are formed by inducing the phase separation parallel to the gelation. The use of aluminum sec-butoxide preheated at 80\u00b0C as the starting material enables the incorporation of Al3+ into the gel skeleton up to 20mol% in cation ratio. The maximum amount of Al3+, i.e., 20mol%, is twice as large as that reported in our previous study, where aluminum sec-butoxide was diluted with sec-butanol prior to the hydrolysis. Heat-treatment of Sm3+-doped 20AlO3/2\u00b780SiO2 macroporous glass under the reducing atmosphere converts Sm3+ to Sm2+, which is confirmed by the appearance of intense emission peaks attributed to 4f\u20134f transitions of Sm2+.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Macroporous", "start": 0, "end": 11, "annotation": null}, {"text": "Al2O3", "start": 12, "end": 17, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 17, "end": 18, "annotation": "BASEMAT"}, {"text": "SiO2", "start": 18, "end": 22, "annotation": "BASEMAT"}, {"text": "glasses", "start": 23, "end": 30, "annotation": null}, {"text": "doped", "start": 31, "end": 36, "annotation": null}, {"text": "with", "start": 37, "end": 41, "annotation": null}, {"text": "Sm2+", "start": 42, "end": 46, "annotation": "DOPANT"}, {"text": "have", "start": 47, "end": 51, "annotation": null}, {"text": "been", "start": 52, "end": 56, "annotation": null}, {"text": "prepared", "start": 57, "end": 65, "annotation": null}, {"text": "from", "start": 66, "end": 70, "annotation": null}, {"text": "a", "start": 71, "end": 72, "annotation": null}, {"text": "sol", "start": 73, "end": 76, "annotation": null}, {"text": "\u2013", "start": 76, "end": 77, "annotation": null}, {"text": "gel", "start": 77, "end": 80, "annotation": null}, {"text": "system", "start": 81, "end": 87, "annotation": null}, {"text": "containing", "start": 88, "end": 98, "annotation": null}, {"text": "aluminum", "start": 99, "end": 107, "annotation": null}, {"text": "sec-butoxide", "start": 108, "end": 120, "annotation": null}, {"text": ",", "start": 120, "end": 121, "annotation": null}, {"text": "tetramethoxysilane", "start": 122, "end": 140, "annotation": null}, {"text": ",", "start": 140, "end": 141, "annotation": null}, {"text": "samarium", "start": 142, "end": 150, "annotation": null}, {"text": "chloride", "start": 151, "end": 159, "annotation": null}, {"text": "hexahydrate", "start": 160, "end": 171, "annotation": null}, {"text": ",", "start": 171, "end": 172, "annotation": null}, {"text": "poly(ethylene", "start": 173, "end": 186, "annotation": null}, {"text": "oxide", "start": 187, "end": 192, "annotation": null}, {"text": ")", "start": 192, "end": 193, "annotation": null}, {"text": ",", "start": 193, "end": 194, "annotation": null}, {"text": "nitric", "start": 195, "end": 201, "annotation": null}, {"text": "acid", "start": 202, "end": 206, "annotation": null}, {"text": ",", "start": 206, "end": 207, "annotation": null}, {"text": "and", "start": 208, "end": 211, "annotation": null}, {"text": "water", "start": 212, "end": 217, "annotation": null}, {"text": ".", "start": 217, "end": 218, "annotation": null}], [{"text": "Monolithic", "start": 219, "end": 229, "annotation": null}, {"text": "gels", "start": 230, "end": 234, "annotation": null}, {"text": "having", "start": 235, "end": 241, "annotation": null}, {"text": "interconnected", "start": 242, "end": 256, "annotation": null}, {"text": "macropores", "start": 257, "end": 267, "annotation": null}, {"text": "and", "start": 268, "end": 271, "annotation": null}, {"text": "skeletons", "start": 272, "end": 281, "annotation": null}, {"text": "are", "start": 282, "end": 285, "annotation": null}, {"text": "formed", "start": 286, "end": 292, "annotation": null}, {"text": "by", "start": 293, "end": 295, "annotation": null}, {"text": "inducing", "start": 296, "end": 304, "annotation": null}, {"text": "the", "start": 305, "end": 308, "annotation": null}, {"text": "phase", "start": 309, "end": 314, "annotation": null}, {"text": "separation", "start": 315, "end": 325, "annotation": null}, {"text": "parallel", "start": 326, "end": 334, "annotation": null}, {"text": "to", "start": 335, "end": 337, "annotation": null}, {"text": "the", "start": 338, "end": 341, "annotation": null}, {"text": "gelation", "start": 342, "end": 350, "annotation": null}, {"text": ".", "start": 350, "end": 351, "annotation": null}], [{"text": "The", "start": 352, "end": 355, "annotation": null}, {"text": "use", "start": 356, "end": 359, "annotation": null}, {"text": "of", "start": 360, "end": 362, "annotation": null}, {"text": "aluminum", "start": 363, "end": 371, "annotation": null}, {"text": "sec-butoxide", "start": 372, "end": 384, "annotation": null}, {"text": "preheated", "start": 385, "end": 394, "annotation": null}, {"text": "at", "start": 395, "end": 397, "annotation": null}, {"text": "80", "start": 398, "end": 400, "annotation": null}, {"text": "\u00b0", "start": 400, "end": 401, "annotation": null}, {"text": "C", "start": 401, "end": 402, "annotation": null}, {"text": "as", "start": 403, "end": 405, "annotation": null}, {"text": "the", "start": 406, "end": 409, "annotation": null}, {"text": "starting", "start": 410, "end": 418, "annotation": null}, {"text": "material", "start": 419, "end": 427, "annotation": null}, {"text": "enables", "start": 428, "end": 435, "annotation": null}, {"text": "the", "start": 436, "end": 439, "annotation": null}, {"text": "incorporation", "start": 440, "end": 453, "annotation": null}, {"text": "of", "start": 454, "end": 456, "annotation": null}, {"text": "Al3+", "start": 457, "end": 461, "annotation": null}, {"text": "into", "start": 462, "end": 466, "annotation": null}, {"text": "the", "start": 467, "end": 470, "annotation": null}, {"text": "gel", "start": 471, "end": 474, "annotation": null}, {"text": "skeleton", "start": 475, "end": 483, "annotation": null}, {"text": "up", "start": 484, "end": 486, "annotation": null}, {"text": "to", "start": 487, "end": 489, "annotation": null}, {"text": "20", "start": 490, "end": 492, "annotation": null}, {"text": "mol", "start": 492, "end": 495, "annotation": null}, {"text": "%", "start": 495, "end": 496, "annotation": null}, {"text": "in", "start": 497, "end": 499, "annotation": null}, {"text": "cation", "start": 500, "end": 506, "annotation": null}, {"text": "ratio", "start": 507, "end": 512, "annotation": null}, {"text": ".", "start": 512, "end": 513, "annotation": null}], [{"text": "The", "start": 514, "end": 517, "annotation": null}, {"text": "maximum", "start": 518, "end": 525, "annotation": null}, {"text": "amount", "start": 526, "end": 532, "annotation": null}, {"text": "of", "start": 533, "end": 535, "annotation": null}, {"text": "Al3+", "start": 536, "end": 540, "annotation": null}, {"text": ",", "start": 540, "end": 541, "annotation": null}, {"text": "i.e.", "start": 542, "end": 546, "annotation": null}, {"text": ",", "start": 546, "end": 547, "annotation": null}, {"text": "20", "start": 548, "end": 550, "annotation": null}, {"text": "mol", "start": 550, "end": 553, "annotation": null}, {"text": "%", "start": 553, "end": 554, "annotation": null}, {"text": ",", "start": 554, "end": 555, "annotation": null}, {"text": "is", "start": 556, "end": 558, "annotation": null}, {"text": "twice", "start": 559, "end": 564, "annotation": null}, {"text": "as", "start": 565, "end": 567, "annotation": null}, {"text": "large", "start": 568, "end": 573, "annotation": null}, {"text": "as", "start": 574, "end": 576, "annotation": null}, {"text": "that", "start": 577, "end": 581, "annotation": null}, {"text": "reported", "start": 582, "end": 590, "annotation": null}, {"text": "in", "start": 591, "end": 593, "annotation": null}, {"text": "our", "start": 594, "end": 597, "annotation": null}, {"text": "previous", "start": 598, "end": 606, "annotation": null}, {"text": "study", "start": 607, "end": 612, "annotation": null}, {"text": ",", "start": 612, "end": 613, "annotation": null}, {"text": "where", "start": 614, "end": 619, "annotation": null}, {"text": "aluminum", "start": 620, "end": 628, "annotation": null}, {"text": "sec-butoxide", "start": 629, "end": 641, "annotation": null}, {"text": "was", "start": 642, "end": 645, "annotation": null}, {"text": "diluted", "start": 646, "end": 653, "annotation": null}, {"text": "with", "start": 654, "end": 658, "annotation": null}, {"text": "sec-butanol", "start": 659, "end": 670, "annotation": null}, {"text": "prior", "start": 671, "end": 676, "annotation": null}, {"text": "to", "start": 677, "end": 679, "annotation": null}, {"text": "the", "start": 680, "end": 683, "annotation": null}, {"text": "hydrolysis", "start": 684, "end": 694, "annotation": null}, {"text": ".", "start": 694, "end": 695, "annotation": null}], [{"text": "Heat", "start": 696, "end": 700, "annotation": null}, {"text": "-", "start": 700, "end": 701, "annotation": null}, {"text": "treatment", "start": 701, "end": 710, "annotation": null}, {"text": "of", "start": 711, "end": 713, "annotation": null}, {"text": "Sm3+", "start": 714, "end": 718, "annotation": "DOPANT"}, {"text": "-", "start": 718, "end": 719, "annotation": null}, {"text": "doped", "start": 719, "end": 724, "annotation": null}, {"text": "20AlO3", "start": 725, "end": 731, "annotation": "BASEMAT"}, {"text": "/", "start": 731, "end": 732, "annotation": "BASEMAT"}, {"text": "2\u00b780SiO2", "start": 732, "end": 740, "annotation": "BASEMAT"}, {"text": "macroporous", "start": 741, "end": 752, "annotation": null}, {"text": "glass", "start": 753, "end": 758, "annotation": null}, {"text": "under", "start": 759, "end": 764, "annotation": null}, {"text": "the", "start": 765, "end": 768, "annotation": null}, {"text": "reducing", "start": 769, "end": 777, "annotation": null}, {"text": "atmosphere", "start": 778, "end": 788, "annotation": null}, {"text": "converts", "start": 789, "end": 797, "annotation": null}, {"text": "Sm3+", "start": 798, "end": 802, "annotation": null}, {"text": "to", "start": 803, "end": 805, "annotation": null}, {"text": "Sm2+", "start": 806, "end": 810, "annotation": null}, {"text": ",", "start": 810, "end": 811, "annotation": null}, {"text": "which", "start": 812, "end": 817, "annotation": null}, {"text": "is", "start": 818, "end": 820, "annotation": null}, {"text": "confirmed", "start": 821, "end": 830, "annotation": null}, {"text": "by", "start": 831, "end": 833, "annotation": null}, {"text": "the", "start": 834, "end": 837, "annotation": null}, {"text": "appearance", "start": 838, "end": 848, "annotation": null}, {"text": "of", "start": 849, "end": 851, "annotation": null}, {"text": "intense", "start": 852, "end": 859, "annotation": null}, {"text": "emission", "start": 860, "end": 868, "annotation": null}, {"text": "peaks", "start": 869, "end": 874, "annotation": null}, {"text": "attributed", "start": 875, "end": 885, "annotation": null}, {"text": "to", "start": 886, "end": 888, "annotation": null}, {"text": "4f", "start": 889, "end": 891, "annotation": null}, {"text": "\u2013", "start": 891, "end": 892, "annotation": null}, {"text": "4f", "start": 892, "end": 894, "annotation": null}, {"text": "transitions", "start": 895, "end": 906, "annotation": null}, {"text": "of", "start": 907, "end": 909, "annotation": null}, {"text": "Sm2+", "start": 910, "end": 914, "annotation": null}, {"text": ".", "start": 914, "end": 915, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Nitrogen and sulfur co-doped and N-doped TiO2 anatase TKP 102 (Tayca) were prepared by manual grinding with thiourea and urea, respectively, and annealing at 400\u00b0C. Both materials showed visible-light absorption as measured by Diffuse Reflectance Spectroscopy (DRS). Interstitial N-doping, anionic and cationic S-doping was found when the TiO2 was doped with thiourea while TiO2 doped with urea showed only the presence of interstitial N-doping as measured by X-ray Photo-electron Spectroscopy (XPS). The N content on the surface of N-doped TKP 102 photocatalyst was 2.85at.% and higher than the N content in the N, S co-doped TiO2 photocatalyst (0.6at.%). The photocatalytic activity of the doped catalysts was tested using phenol and Escherichia coli as chemical and biological targets, respectively, using N, S co-doped, N-doped TiO2, undoped Degussa P-25 and undoped TKP 102 powders under simulated solar light. It was found that undoped Degussa P-25 was the photocatalyst with the highest photocatalytic activity towards phenol oxidation and E. coli inactivation. N, S co-doped powders showed almost the same photocatalytic activity as undoped TKP 102 while N-doped TKP 102 was the less active photocatalyst probably due the N impurities on the TiO2 acting as recombination centers.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Nitrogen", "start": 0, "end": 8, "annotation": "DOPANT"}, {"text": "and", "start": 9, "end": 12, "annotation": null}, {"text": "sulfur", "start": 13, "end": 19, "annotation": "DOPANT"}, {"text": "co-doped", "start": 20, "end": 28, "annotation": null}, {"text": "and", "start": 29, "end": 32, "annotation": null}, {"text": "N", "start": 33, "end": 34, "annotation": "DOPANT"}, {"text": "-", "start": 34, "end": 35, "annotation": null}, {"text": "doped", "start": 35, "end": 40, "annotation": null}, {"text": "TiO2", "start": 41, "end": 45, "annotation": "BASEMAT"}, {"text": "anatase", "start": 46, "end": 53, "annotation": null}, {"text": "TKP", "start": 54, "end": 57, "annotation": "BASEMAT"}, {"text": "102", "start": 58, "end": 61, "annotation": "BASEMAT"}, {"text": "(", "start": 62, "end": 63, "annotation": null}, {"text": "Tayca", "start": 63, "end": 68, "annotation": null}, {"text": ")", "start": 68, "end": 69, "annotation": null}, {"text": "were", "start": 70, "end": 74, "annotation": null}, {"text": "prepared", "start": 75, "end": 83, "annotation": null}, {"text": "by", "start": 84, "end": 86, "annotation": null}, {"text": "manual", "start": 87, "end": 93, "annotation": null}, {"text": "grinding", "start": 94, "end": 102, "annotation": null}, {"text": "with", "start": 103, "end": 107, "annotation": null}, {"text": "thiourea", "start": 108, "end": 116, "annotation": null}, {"text": "and", "start": 117, "end": 120, "annotation": null}, {"text": "urea", "start": 121, "end": 125, "annotation": null}, {"text": ",", "start": 125, "end": 126, "annotation": null}, {"text": "respectively", "start": 127, "end": 139, "annotation": null}, {"text": ",", "start": 139, "end": 140, "annotation": null}, {"text": "and", "start": 141, "end": 144, "annotation": null}, {"text": "annealing", "start": 145, "end": 154, "annotation": null}, {"text": "at", "start": 155, "end": 157, "annotation": null}, {"text": "400", "start": 158, "end": 161, "annotation": null}, {"text": "\u00b0", "start": 161, "end": 162, "annotation": null}, {"text": "C", "start": 162, "end": 163, "annotation": null}, {"text": ".", "start": 163, "end": 164, "annotation": null}], [{"text": "Both", "start": 165, "end": 169, "annotation": null}, {"text": "materials", "start": 170, "end": 179, "annotation": null}, {"text": "showed", "start": 180, "end": 186, "annotation": null}, {"text": "visible", "start": 187, "end": 194, "annotation": null}, {"text": "-", "start": 194, "end": 195, "annotation": null}, {"text": "light", "start": 195, "end": 200, "annotation": null}, {"text": "absorption", "start": 201, "end": 211, "annotation": null}, {"text": "as", "start": 212, "end": 214, "annotation": null}, {"text": "measured", "start": 215, "end": 223, "annotation": null}, {"text": "by", "start": 224, "end": 226, "annotation": null}, {"text": "Diffuse", "start": 227, "end": 234, "annotation": null}, {"text": "Reflectance", "start": 235, "end": 246, "annotation": null}, {"text": "Spectroscopy", "start": 247, "end": 259, "annotation": null}, {"text": "(", "start": 260, "end": 261, "annotation": null}, {"text": "DRS", "start": 261, "end": 264, "annotation": null}, {"text": ")", "start": 264, "end": 265, "annotation": null}, {"text": ".", "start": 265, "end": 266, "annotation": null}], [{"text": "Interstitial", "start": 267, "end": 279, "annotation": null}, {"text": "N", "start": 280, "end": 281, "annotation": "DOPANT"}, {"text": "-", "start": 281, "end": 282, "annotation": null}, {"text": "doping", "start": 282, "end": 288, "annotation": null}, {"text": ",", "start": 288, "end": 289, "annotation": null}, {"text": "anionic", "start": 290, "end": 297, "annotation": null}, {"text": "and", "start": 298, "end": 301, "annotation": null}, {"text": "cationic", "start": 302, "end": 310, "annotation": null}, {"text": "S", "start": 311, "end": 312, "annotation": "DOPANT"}, {"text": "-", "start": 312, "end": 313, "annotation": null}, {"text": "doping", "start": 313, "end": 319, "annotation": null}, {"text": "was", "start": 320, "end": 323, "annotation": null}, {"text": "found", "start": 324, "end": 329, "annotation": null}, {"text": "when", "start": 330, "end": 334, "annotation": null}, {"text": "the", "start": 335, "end": 338, "annotation": null}, {"text": "TiO2", "start": 339, "end": 343, "annotation": "BASEMAT"}, {"text": "was", "start": 344, "end": 347, "annotation": null}, {"text": "doped", "start": 348, "end": 353, "annotation": null}, {"text": "with", "start": 354, "end": 358, "annotation": null}, {"text": "thiourea", "start": 359, "end": 367, "annotation": "DOPANT"}, {"text": "while", "start": 368, "end": 373, "annotation": null}, {"text": "TiO2", "start": 374, "end": 378, "annotation": null}, {"text": "doped", "start": 379, "end": 384, "annotation": null}, {"text": "with", "start": 385, "end": 389, "annotation": null}, {"text": "urea", "start": 390, "end": 394, "annotation": "DOPANT"}, {"text": "showed", "start": 395, "end": 401, "annotation": null}, {"text": "only", "start": 402, "end": 406, "annotation": null}, {"text": "the", "start": 407, "end": 410, "annotation": null}, {"text": "presence", "start": 411, "end": 419, "annotation": null}, {"text": "of", "start": 420, "end": 422, "annotation": null}, {"text": "interstitial", "start": 423, "end": 435, "annotation": null}, {"text": "N", "start": 436, "end": 437, "annotation": "DOPANT"}, {"text": "-", "start": 437, "end": 438, "annotation": null}, {"text": "doping", "start": 438, "end": 444, "annotation": null}, {"text": "as", "start": 445, "end": 447, "annotation": null}, {"text": "measured", "start": 448, "end": 456, "annotation": null}, {"text": "by", "start": 457, "end": 459, "annotation": null}, {"text": "X-ray", "start": 460, "end": 465, "annotation": null}, {"text": "Photo", "start": 466, "end": 471, "annotation": null}, {"text": "-", "start": 471, "end": 472, "annotation": null}, {"text": "electron", "start": 472, "end": 480, "annotation": null}, {"text": "Spectroscopy", "start": 481, "end": 493, "annotation": null}, {"text": "(", "start": 494, "end": 495, "annotation": null}, {"text": "XPS", "start": 495, "end": 498, "annotation": null}, {"text": ")", "start": 498, "end": 499, "annotation": null}, {"text": ".", "start": 499, "end": 500, "annotation": null}], [{"text": "The", "start": 501, "end": 504, "annotation": null}, {"text": "N", "start": 505, "end": 506, "annotation": "DOPANT"}, {"text": "content", "start": 507, "end": 514, "annotation": null}, {"text": "on", "start": 515, "end": 517, "annotation": null}, {"text": "the", "start": 518, "end": 521, "annotation": null}, {"text": "surface", "start": 522, "end": 529, "annotation": null}, {"text": "of", "start": 530, "end": 532, "annotation": null}, {"text": "N", "start": 533, "end": 534, "annotation": "DOPANT"}, {"text": "-", "start": 534, "end": 535, "annotation": null}, {"text": "doped", "start": 535, "end": 540, "annotation": null}, {"text": "TKP", "start": 541, "end": 544, "annotation": "BASEMAT"}, {"text": "102", "start": 545, "end": 548, "annotation": "BASEMAT"}, {"text": "photocatalyst", "start": 549, "end": 562, "annotation": null}, {"text": "was", "start": 563, "end": 566, "annotation": null}, {"text": "2.85at.", "start": 567, "end": 574, "annotation": "DOPMODQ"}, {"text": "%", "start": 574, "end": 575, "annotation": "DOPMODQ"}, {"text": "and", "start": 576, "end": 579, "annotation": null}, {"text": "higher", "start": 580, "end": 586, "annotation": null}, {"text": "than", "start": 587, "end": 591, "annotation": null}, {"text": "the", "start": 592, "end": 595, "annotation": null}, {"text": "N", "start": 596, "end": 597, "annotation": "DOPANT"}, {"text": "content", "start": 598, "end": 605, "annotation": null}, {"text": "in", "start": 606, "end": 608, "annotation": null}, {"text": "the", "start": 609, "end": 612, "annotation": null}, {"text": "N", "start": 613, "end": 614, "annotation": "DOPANT"}, {"text": ",", "start": 614, "end": 615, "annotation": null}, {"text": "S", "start": 616, "end": 617, "annotation": "DOPANT"}, {"text": "co-doped", "start": 618, "end": 626, "annotation": null}, {"text": "TiO2", "start": 627, "end": 631, "annotation": "BASEMAT"}, {"text": "photocatalyst", "start": 632, "end": 645, "annotation": null}, {"text": "(", "start": 646, "end": 647, "annotation": null}, {"text": "0.6at.", "start": 647, "end": 653, "annotation": "DOPMODQ"}, {"text": "%", "start": 653, "end": 654, "annotation": "DOPMODQ"}, {"text": ")", "start": 654, "end": 655, "annotation": null}, {"text": ".", "start": 655, "end": 656, "annotation": null}], [{"text": "The", "start": 657, "end": 660, "annotation": null}, {"text": "photocatalytic", "start": 661, "end": 675, "annotation": null}, {"text": "activity", "start": 676, "end": 684, "annotation": null}, {"text": "of", "start": 685, "end": 687, "annotation": null}, {"text": "the", "start": 688, "end": 691, "annotation": null}, {"text": "doped", "start": 692, "end": 697, "annotation": "DOPANT"}, {"text": "catalysts", "start": 698, "end": 707, "annotation": "BASEMAT"}, {"text": "was", "start": 708, "end": 711, "annotation": null}, {"text": "tested", "start": 712, "end": 718, "annotation": null}, {"text": "using", "start": 719, "end": 724, "annotation": null}, {"text": "phenol", "start": 725, "end": 731, "annotation": null}, {"text": "and", "start": 732, "end": 735, "annotation": null}, {"text": "Escherichia", "start": 736, "end": 747, "annotation": null}, {"text": "coli", "start": 748, "end": 752, "annotation": null}, {"text": "as", "start": 753, "end": 755, "annotation": null}, {"text": "chemical", "start": 756, "end": 764, "annotation": null}, {"text": "and", "start": 765, "end": 768, "annotation": null}, {"text": "biological", "start": 769, "end": 779, "annotation": null}, {"text": "targets", "start": 780, "end": 787, "annotation": null}, {"text": ",", "start": 787, "end": 788, "annotation": null}, {"text": "respectively", "start": 789, "end": 801, "annotation": null}, {"text": ",", "start": 801, "end": 802, "annotation": null}, {"text": "using", "start": 803, "end": 808, "annotation": null}, {"text": "N", "start": 809, "end": 810, "annotation": "DOPANT"}, {"text": ",", "start": 810, "end": 811, "annotation": null}, {"text": "S", "start": 812, "end": 813, "annotation": "DOPANT"}, {"text": "co-doped", "start": 814, "end": 822, "annotation": null}, {"text": ",", "start": 822, "end": 823, "annotation": null}, {"text": "N", "start": 824, "end": 825, "annotation": "DOPANT"}, {"text": "-", "start": 825, "end": 826, "annotation": null}, {"text": "doped", "start": 826, "end": 831, "annotation": null}, {"text": "TiO2", "start": 832, "end": 836, "annotation": "BASEMAT"}, {"text": ",", "start": 836, "end": 837, "annotation": null}, {"text": "undoped", "start": 838, "end": 845, "annotation": null}, {"text": "Degussa", "start": 846, "end": 853, "annotation": null}, {"text": "P-25", "start": 854, "end": 858, "annotation": null}, {"text": "and", "start": 859, "end": 862, "annotation": null}, {"text": "undoped", "start": 863, "end": 870, "annotation": null}, {"text": "TKP", "start": 871, "end": 874, "annotation": null}, {"text": "102", "start": 875, "end": 878, "annotation": null}, {"text": "powders", "start": 879, "end": 886, "annotation": null}, {"text": "under", "start": 887, "end": 892, "annotation": null}, {"text": "simulated", "start": 893, "end": 902, "annotation": null}, {"text": "solar", "start": 903, "end": 908, "annotation": null}, {"text": "light", "start": 909, "end": 914, "annotation": null}, {"text": ".", "start": 914, "end": 915, "annotation": null}], [{"text": "It", "start": 916, "end": 918, "annotation": null}, {"text": "was", "start": 919, "end": 922, "annotation": null}, {"text": "found", "start": 923, "end": 928, "annotation": null}, {"text": "that", "start": 929, "end": 933, "annotation": null}, {"text": "undoped", "start": 934, "end": 941, "annotation": null}, {"text": "Degussa", "start": 942, "end": 949, "annotation": null}, {"text": "P-25", "start": 950, "end": 954, "annotation": null}, {"text": "was", "start": 955, "end": 958, "annotation": null}, {"text": "the", "start": 959, "end": 962, "annotation": null}, {"text": "photocatalyst", "start": 963, "end": 976, "annotation": null}, {"text": "with", "start": 977, "end": 981, "annotation": null}, {"text": "the", "start": 982, "end": 985, "annotation": null}, {"text": "highest", "start": 986, "end": 993, "annotation": null}, {"text": "photocatalytic", "start": 994, "end": 1008, "annotation": null}, {"text": "activity", "start": 1009, "end": 1017, "annotation": null}, {"text": "towards", "start": 1018, "end": 1025, "annotation": null}, {"text": "phenol", "start": 1026, "end": 1032, "annotation": null}, {"text": "oxidation", "start": 1033, "end": 1042, "annotation": null}, {"text": "and", "start": 1043, "end": 1046, "annotation": null}, {"text": "E.", "start": 1047, "end": 1049, "annotation": null}, {"text": "coli", "start": 1050, "end": 1054, "annotation": null}, {"text": "inactivation", "start": 1055, "end": 1067, "annotation": null}, {"text": ".", "start": 1067, "end": 1068, "annotation": null}], [{"text": "N", "start": 1069, "end": 1070, "annotation": "DOPANT"}, {"text": ",", "start": 1070, "end": 1071, "annotation": null}, {"text": "S", "start": 1072, "end": 1073, "annotation": "DOPANT"}, {"text": "co-doped", "start": 1074, "end": 1082, "annotation": null}, {"text": "powders", "start": 1083, "end": 1090, "annotation": "BASEMAT"}, {"text": "showed", "start": 1091, "end": 1097, "annotation": null}, {"text": "almost", "start": 1098, "end": 1104, "annotation": null}, {"text": "the", "start": 1105, "end": 1108, "annotation": null}, {"text": "same", "start": 1109, "end": 1113, "annotation": null}, {"text": "photocatalytic", "start": 1114, "end": 1128, "annotation": null}, {"text": "activity", "start": 1129, "end": 1137, "annotation": null}, {"text": "as", "start": 1138, "end": 1140, "annotation": null}, {"text": "undoped", "start": 1141, "end": 1148, "annotation": null}, {"text": "TKP", "start": 1149, "end": 1152, "annotation": null}, {"text": "102", "start": 1153, "end": 1156, "annotation": null}, {"text": "while", "start": 1157, "end": 1162, "annotation": null}, {"text": "N", "start": 1163, "end": 1164, "annotation": "DOPANT"}, {"text": "-", "start": 1164, "end": 1165, "annotation": null}, {"text": "doped", "start": 1165, "end": 1170, "annotation": null}, {"text": "TKP", "start": 1171, "end": 1174, "annotation": "BASEMAT"}, {"text": "102", "start": 1175, "end": 1178, "annotation": "BASEMAT"}, {"text": "was", "start": 1179, "end": 1182, "annotation": null}, {"text": "the", "start": 1183, "end": 1186, "annotation": null}, {"text": "less", "start": 1187, "end": 1191, "annotation": null}, {"text": "active", "start": 1192, "end": 1198, "annotation": null}, {"text": "photocatalyst", "start": 1199, "end": 1212, "annotation": null}, {"text": "probably", "start": 1213, "end": 1221, "annotation": null}, {"text": "due", "start": 1222, "end": 1225, "annotation": null}, {"text": "the", "start": 1226, "end": 1229, "annotation": null}, {"text": "N", "start": 1230, "end": 1231, "annotation": "DOPANT"}, {"text": "impurities", "start": 1232, "end": 1242, "annotation": null}, {"text": "on", "start": 1243, "end": 1245, "annotation": null}, {"text": "the", "start": 1246, "end": 1249, "annotation": null}, {"text": "TiO2", "start": 1250, "end": 1254, "annotation": "BASEMAT"}, {"text": "acting", "start": 1255, "end": 1261, "annotation": null}, {"text": "as", "start": 1262, "end": 1264, "annotation": null}, {"text": "recombination", "start": 1265, "end": 1278, "annotation": null}, {"text": "centers", "start": 1279, "end": 1286, "annotation": null}, {"text": ".", "start": 1286, "end": 1287, "annotation": null}]]} +{"remark": "doping_annt1", "text": "Macroporous Al2O3\u2013SiO2 glasses doped with Sm2+ have been prepared from a sol\u2013gel system containing aluminum sec-butoxide, tetramethoxysilane, samarium chloride hexahydrate, poly(ethylene oxide), nitric acid, and water. Monolithic gels having interconnected macropores and skeletons are formed by inducing the phase separation parallel to the gelation. The use of aluminum sec-butoxide preheated at 80\u00b0C as the starting material enables the incorporation of Al3+ into the gel skeleton up to 20mol% in cation ratio. The maximum amount of Al3+, i.e., 20mol%, is twice as large as that reported in our previous study, where aluminum sec-butoxide was diluted with sec-butanol prior to the hydrolysis. Heat-treatment of Sm3+-doped 20AlO3/2\u00b780SiO2 macroporous glass under the reducing atmosphere converts Sm3+ to Sm2+, which is confirmed by the appearance of intense emission peaks attributed to 4f\u20134f transitions of Sm2+.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Macroporous", "start": 0, "end": 11, "annotation": null}, {"text": "Al2O3", "start": 12, "end": 17, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 17, "end": 18, "annotation": "BASEMAT"}, {"text": "SiO2", "start": 18, "end": 22, "annotation": "BASEMAT"}, {"text": "glasses", "start": 23, "end": 30, "annotation": null}, {"text": "doped", "start": 31, "end": 36, "annotation": null}, {"text": "with", "start": 37, "end": 41, "annotation": null}, {"text": "Sm2+", "start": 42, "end": 46, "annotation": "DOPANT"}, {"text": "have", "start": 47, "end": 51, "annotation": null}, {"text": "been", "start": 52, "end": 56, "annotation": null}, {"text": "prepared", "start": 57, "end": 65, "annotation": null}, {"text": "from", "start": 66, "end": 70, "annotation": null}, {"text": "a", "start": 71, "end": 72, "annotation": null}, {"text": "sol", "start": 73, "end": 76, "annotation": null}, {"text": "\u2013", "start": 76, "end": 77, "annotation": null}, {"text": "gel", "start": 77, "end": 80, "annotation": null}, {"text": "system", "start": 81, "end": 87, "annotation": null}, {"text": "containing", "start": 88, "end": 98, "annotation": null}, {"text": "aluminum", "start": 99, "end": 107, "annotation": null}, {"text": "sec-butoxide", "start": 108, "end": 120, "annotation": null}, {"text": ",", "start": 120, "end": 121, "annotation": null}, {"text": "tetramethoxysilane", "start": 122, "end": 140, "annotation": null}, {"text": ",", "start": 140, "end": 141, "annotation": null}, {"text": "samarium", "start": 142, "end": 150, "annotation": null}, {"text": "chloride", "start": 151, "end": 159, "annotation": null}, {"text": "hexahydrate", "start": 160, "end": 171, "annotation": null}, {"text": ",", "start": 171, "end": 172, "annotation": null}, {"text": "poly(ethylene", "start": 173, "end": 186, "annotation": null}, {"text": "oxide", "start": 187, "end": 192, "annotation": null}, {"text": ")", "start": 192, "end": 193, "annotation": null}, {"text": ",", "start": 193, "end": 194, "annotation": null}, {"text": "nitric", "start": 195, "end": 201, "annotation": null}, {"text": "acid", "start": 202, "end": 206, "annotation": null}, {"text": ",", "start": 206, "end": 207, "annotation": null}, {"text": "and", "start": 208, "end": 211, "annotation": null}, {"text": "water", "start": 212, "end": 217, "annotation": null}, {"text": ".", "start": 217, "end": 218, "annotation": null}], [{"text": "Monolithic", "start": 219, "end": 229, "annotation": null}, {"text": "gels", "start": 230, "end": 234, "annotation": null}, {"text": "having", "start": 235, "end": 241, "annotation": null}, {"text": "interconnected", "start": 242, "end": 256, "annotation": null}, {"text": "macropores", "start": 257, "end": 267, "annotation": null}, {"text": "and", "start": 268, "end": 271, "annotation": null}, {"text": "skeletons", "start": 272, "end": 281, "annotation": null}, {"text": "are", "start": 282, "end": 285, "annotation": null}, {"text": "formed", "start": 286, "end": 292, "annotation": null}, {"text": "by", "start": 293, "end": 295, "annotation": null}, {"text": "inducing", "start": 296, "end": 304, "annotation": null}, {"text": "the", "start": 305, "end": 308, "annotation": null}, {"text": "phase", "start": 309, "end": 314, "annotation": null}, {"text": "separation", "start": 315, "end": 325, "annotation": null}, {"text": "parallel", "start": 326, "end": 334, "annotation": null}, {"text": "to", "start": 335, "end": 337, "annotation": null}, {"text": "the", "start": 338, "end": 341, "annotation": null}, {"text": "gelation", "start": 342, "end": 350, "annotation": null}, {"text": ".", "start": 350, "end": 351, "annotation": null}], [{"text": "The", "start": 352, "end": 355, "annotation": null}, {"text": "use", "start": 356, "end": 359, "annotation": null}, {"text": "of", "start": 360, "end": 362, "annotation": null}, {"text": "aluminum", "start": 363, "end": 371, "annotation": null}, {"text": "sec-butoxide", "start": 372, "end": 384, "annotation": null}, {"text": "preheated", "start": 385, "end": 394, "annotation": null}, {"text": "at", "start": 395, "end": 397, "annotation": null}, {"text": "80", "start": 398, "end": 400, "annotation": null}, {"text": "\u00b0", "start": 400, "end": 401, "annotation": null}, {"text": "C", "start": 401, "end": 402, "annotation": null}, {"text": "as", "start": 403, "end": 405, "annotation": null}, {"text": "the", "start": 406, "end": 409, "annotation": null}, {"text": "starting", "start": 410, "end": 418, "annotation": null}, {"text": "material", "start": 419, "end": 427, "annotation": null}, {"text": "enables", "start": 428, "end": 435, "annotation": null}, {"text": "the", "start": 436, "end": 439, "annotation": null}, {"text": "incorporation", "start": 440, "end": 453, "annotation": null}, {"text": "of", "start": 454, "end": 456, "annotation": null}, {"text": "Al3+", "start": 457, "end": 461, "annotation": null}, {"text": "into", "start": 462, "end": 466, "annotation": null}, {"text": "the", "start": 467, "end": 470, "annotation": null}, {"text": "gel", "start": 471, "end": 474, "annotation": null}, {"text": "skeleton", "start": 475, "end": 483, "annotation": null}, {"text": "up", "start": 484, "end": 486, "annotation": null}, {"text": "to", "start": 487, "end": 489, "annotation": null}, {"text": "20", "start": 490, "end": 492, "annotation": null}, {"text": "mol", "start": 492, "end": 495, "annotation": null}, {"text": "%", "start": 495, "end": 496, "annotation": null}, {"text": "in", "start": 497, "end": 499, "annotation": null}, {"text": "cation", "start": 500, "end": 506, "annotation": null}, {"text": "ratio", "start": 507, "end": 512, "annotation": null}, {"text": ".", "start": 512, "end": 513, "annotation": null}], [{"text": "The", "start": 514, "end": 517, "annotation": null}, {"text": "maximum", "start": 518, "end": 525, "annotation": null}, {"text": "amount", "start": 526, "end": 532, "annotation": null}, {"text": "of", "start": 533, "end": 535, "annotation": null}, {"text": "Al3+", "start": 536, "end": 540, "annotation": null}, {"text": ",", "start": 540, "end": 541, "annotation": null}, {"text": "i.e.", "start": 542, "end": 546, "annotation": null}, {"text": ",", "start": 546, "end": 547, "annotation": null}, {"text": "20", "start": 548, "end": 550, "annotation": null}, {"text": "mol", "start": 550, "end": 553, "annotation": null}, {"text": "%", "start": 553, "end": 554, "annotation": null}, {"text": ",", "start": 554, "end": 555, "annotation": null}, {"text": "is", "start": 556, "end": 558, "annotation": null}, {"text": "twice", "start": 559, "end": 564, "annotation": null}, {"text": "as", "start": 565, "end": 567, "annotation": null}, {"text": "large", "start": 568, "end": 573, "annotation": null}, {"text": "as", "start": 574, "end": 576, "annotation": null}, {"text": "that", "start": 577, "end": 581, "annotation": null}, {"text": "reported", "start": 582, "end": 590, "annotation": null}, {"text": "in", "start": 591, "end": 593, "annotation": null}, {"text": "our", "start": 594, "end": 597, "annotation": null}, {"text": "previous", "start": 598, "end": 606, "annotation": null}, {"text": "study", "start": 607, "end": 612, "annotation": null}, {"text": ",", "start": 612, "end": 613, "annotation": null}, {"text": "where", "start": 614, "end": 619, "annotation": null}, {"text": "aluminum", "start": 620, "end": 628, "annotation": null}, {"text": "sec-butoxide", "start": 629, "end": 641, "annotation": null}, {"text": "was", "start": 642, "end": 645, "annotation": null}, {"text": "diluted", "start": 646, "end": 653, "annotation": null}, {"text": "with", "start": 654, "end": 658, "annotation": null}, {"text": "sec-butanol", "start": 659, "end": 670, "annotation": null}, {"text": "prior", "start": 671, "end": 676, "annotation": null}, {"text": "to", "start": 677, "end": 679, "annotation": null}, {"text": "the", "start": 680, "end": 683, "annotation": null}, {"text": "hydrolysis", "start": 684, "end": 694, "annotation": null}, {"text": ".", "start": 694, "end": 695, "annotation": null}], [{"text": "Heat", "start": 696, "end": 700, "annotation": null}, {"text": "-", "start": 700, "end": 701, "annotation": null}, {"text": "treatment", "start": 701, "end": 710, "annotation": null}, {"text": "of", "start": 711, "end": 713, "annotation": null}, {"text": "Sm3+", "start": 714, "end": 718, "annotation": "DOPANT"}, {"text": "-", "start": 718, "end": 719, "annotation": null}, {"text": "doped", "start": 719, "end": 724, "annotation": null}, {"text": "20AlO3", "start": 725, "end": 731, "annotation": "BASEMAT"}, {"text": "/", "start": 731, "end": 732, "annotation": "BASEMAT"}, {"text": "2\u00b780SiO2", "start": 732, "end": 740, "annotation": "BASEMAT"}, {"text": "macroporous", "start": 741, "end": 752, "annotation": null}, {"text": "glass", "start": 753, "end": 758, "annotation": null}, {"text": "under", "start": 759, "end": 764, "annotation": null}, {"text": "the", "start": 765, "end": 768, "annotation": null}, {"text": "reducing", "start": 769, "end": 777, "annotation": null}, {"text": "atmosphere", "start": 778, "end": 788, "annotation": null}, {"text": "converts", "start": 789, "end": 797, "annotation": null}, {"text": "Sm3+", "start": 798, "end": 802, "annotation": null}, {"text": "to", "start": 803, "end": 805, "annotation": null}, {"text": "Sm2+", "start": 806, "end": 810, "annotation": null}, {"text": ",", "start": 810, "end": 811, "annotation": null}, {"text": "which", "start": 812, "end": 817, "annotation": null}, {"text": "is", "start": 818, "end": 820, "annotation": null}, {"text": "confirmed", "start": 821, "end": 830, "annotation": null}, {"text": "by", "start": 831, "end": 833, "annotation": null}, {"text": "the", "start": 834, "end": 837, "annotation": null}, {"text": "appearance", "start": 838, "end": 848, "annotation": null}, {"text": "of", "start": 849, "end": 851, "annotation": null}, {"text": "intense", "start": 852, "end": 859, "annotation": null}, {"text": "emission", "start": 860, "end": 868, "annotation": null}, {"text": "peaks", "start": 869, "end": 874, "annotation": null}, {"text": "attributed", "start": 875, "end": 885, "annotation": null}, {"text": "to", "start": 886, "end": 888, "annotation": null}, {"text": "4f", "start": 889, "end": 891, "annotation": null}, {"text": "\u2013", "start": 891, "end": 892, "annotation": null}, {"text": "4f", "start": 892, "end": 894, "annotation": null}, {"text": "transitions", "start": 895, "end": 906, "annotation": null}, {"text": "of", "start": 907, "end": 909, "annotation": null}, {"text": "Sm2+", "start": 910, "end": 914, "annotation": null}, {"text": ".", "start": 914, "end": 915, "annotation": null}]], "meta": {"doi": "10.1016/j.jnoncrysol.2006.02.101"}} +{"remark": "doping_annt1", "text": "Nitrogen and sulfur co-doped and N-doped TiO2 anatase TKP 102 (Tayca) were prepared by manual grinding with thiourea and urea, respectively, and annealing at 400\u00b0C. Both materials showed visible-light absorption as measured by Diffuse Reflectance Spectroscopy (DRS). Interstitial N-doping, anionic and cationic S-doping was found when the TiO2 was doped with thiourea while TiO2 doped with urea showed only the presence of interstitial N-doping as measured by X-ray Photo-electron Spectroscopy (XPS). The N content on the surface of N-doped TKP 102 photocatalyst was 2.85at.% and higher than the N content in the N, S co-doped TiO2 photocatalyst (0.6at.%). The photocatalytic activity of the doped catalysts was tested using phenol and Escherichia coli as chemical and biological targets, respectively, using N, S co-doped, N-doped TiO2, undoped Degussa P-25 and undoped TKP 102 powders under simulated solar light. It was found that undoped Degussa P-25 was the photocatalyst with the highest photocatalytic activity towards phenol oxidation and E. coli inactivation. N, S co-doped powders showed almost the same photocatalytic activity as undoped TKP 102 while N-doped TKP 102 was the less active photocatalyst probably due the N impurities on the TiO2 acting as recombination centers.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Nitrogen", "start": 0, "end": 8, "annotation": "DOPANT"}, {"text": "and", "start": 9, "end": 12, "annotation": null}, {"text": "sulfur", "start": 13, "end": 19, "annotation": "DOPANT"}, {"text": "co-doped", "start": 20, "end": 28, "annotation": null}, {"text": "and", "start": 29, "end": 32, "annotation": null}, {"text": "N", "start": 33, "end": 34, "annotation": "DOPANT"}, {"text": "-", "start": 34, "end": 35, "annotation": null}, {"text": "doped", "start": 35, "end": 40, "annotation": null}, {"text": "TiO2", "start": 41, "end": 45, "annotation": "BASEMAT"}, {"text": "anatase", "start": 46, "end": 53, "annotation": null}, {"text": "TKP", "start": 54, "end": 57, "annotation": "BASEMAT"}, {"text": "102", "start": 58, "end": 61, "annotation": "BASEMAT"}, {"text": "(", "start": 62, "end": 63, "annotation": null}, {"text": "Tayca", "start": 63, "end": 68, "annotation": null}, {"text": ")", "start": 68, "end": 69, "annotation": null}, {"text": "were", "start": 70, "end": 74, "annotation": null}, {"text": "prepared", "start": 75, "end": 83, "annotation": null}, {"text": "by", "start": 84, "end": 86, "annotation": null}, {"text": "manual", "start": 87, "end": 93, "annotation": null}, {"text": "grinding", "start": 94, "end": 102, "annotation": null}, {"text": "with", "start": 103, "end": 107, "annotation": null}, {"text": "thiourea", "start": 108, "end": 116, "annotation": null}, {"text": "and", "start": 117, "end": 120, "annotation": null}, {"text": "urea", "start": 121, "end": 125, "annotation": null}, {"text": ",", "start": 125, "end": 126, "annotation": null}, {"text": "respectively", "start": 127, "end": 139, "annotation": null}, {"text": ",", "start": 139, "end": 140, "annotation": null}, {"text": "and", "start": 141, "end": 144, "annotation": null}, {"text": "annealing", "start": 145, "end": 154, "annotation": null}, {"text": "at", "start": 155, "end": 157, "annotation": null}, {"text": "400", "start": 158, "end": 161, "annotation": null}, {"text": "\u00b0", "start": 161, "end": 162, "annotation": null}, {"text": "C", "start": 162, "end": 163, "annotation": null}, {"text": ".", "start": 163, "end": 164, "annotation": null}], [{"text": "Both", "start": 165, "end": 169, "annotation": null}, {"text": "materials", "start": 170, "end": 179, "annotation": null}, {"text": "showed", "start": 180, "end": 186, "annotation": null}, {"text": "visible", "start": 187, "end": 194, "annotation": null}, {"text": "-", "start": 194, "end": 195, "annotation": null}, {"text": "light", "start": 195, "end": 200, "annotation": null}, {"text": "absorption", "start": 201, "end": 211, "annotation": null}, {"text": "as", "start": 212, "end": 214, "annotation": null}, {"text": "measured", "start": 215, "end": 223, "annotation": null}, {"text": "by", "start": 224, "end": 226, "annotation": null}, {"text": "Diffuse", "start": 227, "end": 234, "annotation": null}, {"text": "Reflectance", "start": 235, "end": 246, "annotation": null}, {"text": "Spectroscopy", "start": 247, "end": 259, "annotation": null}, {"text": "(", "start": 260, "end": 261, "annotation": null}, {"text": "DRS", "start": 261, "end": 264, "annotation": null}, {"text": ")", "start": 264, "end": 265, "annotation": null}, {"text": ".", "start": 265, "end": 266, "annotation": null}], [{"text": "Interstitial", "start": 267, "end": 279, "annotation": null}, {"text": "N", "start": 280, "end": 281, "annotation": "DOPANT"}, {"text": "-", "start": 281, "end": 282, "annotation": null}, {"text": "doping", "start": 282, "end": 288, "annotation": null}, {"text": ",", "start": 288, "end": 289, "annotation": null}, {"text": "anionic", "start": 290, "end": 297, "annotation": null}, {"text": "and", "start": 298, "end": 301, "annotation": null}, {"text": "cationic", "start": 302, "end": 310, "annotation": null}, {"text": "S", "start": 311, "end": 312, "annotation": "DOPANT"}, {"text": "-", "start": 312, "end": 313, "annotation": null}, {"text": "doping", "start": 313, "end": 319, "annotation": null}, {"text": "was", "start": 320, "end": 323, "annotation": null}, {"text": "found", "start": 324, "end": 329, "annotation": null}, {"text": "when", "start": 330, "end": 334, "annotation": null}, {"text": "the", "start": 335, "end": 338, "annotation": null}, {"text": "TiO2", "start": 339, "end": 343, "annotation": "BASEMAT"}, {"text": "was", "start": 344, "end": 347, "annotation": null}, {"text": "doped", "start": 348, "end": 353, "annotation": null}, {"text": "with", "start": 354, "end": 358, "annotation": null}, {"text": "thiourea", "start": 359, "end": 367, "annotation": "DOPANT"}, {"text": "while", "start": 368, "end": 373, "annotation": null}, {"text": "TiO2", "start": 374, "end": 378, "annotation": null}, {"text": "doped", "start": 379, "end": 384, "annotation": null}, {"text": "with", "start": 385, "end": 389, "annotation": null}, {"text": "urea", "start": 390, "end": 394, "annotation": "DOPANT"}, {"text": "showed", "start": 395, "end": 401, "annotation": null}, {"text": "only", "start": 402, "end": 406, "annotation": null}, {"text": "the", "start": 407, "end": 410, "annotation": null}, {"text": "presence", "start": 411, "end": 419, "annotation": null}, {"text": "of", "start": 420, "end": 422, "annotation": null}, {"text": "interstitial", "start": 423, "end": 435, "annotation": null}, {"text": "N", "start": 436, "end": 437, "annotation": "DOPANT"}, {"text": "-", "start": 437, "end": 438, "annotation": null}, {"text": "doping", "start": 438, "end": 444, "annotation": null}, {"text": "as", "start": 445, "end": 447, "annotation": null}, {"text": "measured", "start": 448, "end": 456, "annotation": null}, {"text": "by", "start": 457, "end": 459, "annotation": null}, {"text": "X-ray", "start": 460, "end": 465, "annotation": null}, {"text": "Photo", "start": 466, "end": 471, "annotation": null}, {"text": "-", "start": 471, "end": 472, "annotation": null}, {"text": "electron", "start": 472, "end": 480, "annotation": null}, {"text": "Spectroscopy", "start": 481, "end": 493, "annotation": null}, {"text": "(", "start": 494, "end": 495, "annotation": null}, {"text": "XPS", "start": 495, "end": 498, "annotation": null}, {"text": ")", "start": 498, "end": 499, "annotation": null}, {"text": ".", "start": 499, "end": 500, "annotation": null}], [{"text": "The", "start": 501, "end": 504, "annotation": null}, {"text": "N", "start": 505, "end": 506, "annotation": "DOPANT"}, {"text": "content", "start": 507, "end": 514, "annotation": null}, {"text": "on", "start": 515, "end": 517, "annotation": null}, {"text": "the", "start": 518, "end": 521, "annotation": null}, {"text": "surface", "start": 522, "end": 529, "annotation": null}, {"text": "of", "start": 530, "end": 532, "annotation": null}, {"text": "N", "start": 533, "end": 534, "annotation": "DOPANT"}, {"text": "-", "start": 534, "end": 535, "annotation": null}, {"text": "doped", "start": 535, "end": 540, "annotation": null}, {"text": "TKP", "start": 541, "end": 544, "annotation": "BASEMAT"}, {"text": "102", "start": 545, "end": 548, "annotation": "BASEMAT"}, {"text": "photocatalyst", "start": 549, "end": 562, "annotation": null}, {"text": "was", "start": 563, "end": 566, "annotation": null}, {"text": "2.85at.", "start": 567, "end": 574, "annotation": "DOPMODQ"}, {"text": "%", "start": 574, "end": 575, "annotation": "DOPMODQ"}, {"text": "and", "start": 576, "end": 579, "annotation": null}, {"text": "higher", "start": 580, "end": 586, "annotation": null}, {"text": "than", "start": 587, "end": 591, "annotation": null}, {"text": "the", "start": 592, "end": 595, "annotation": null}, {"text": "N", "start": 596, "end": 597, "annotation": "DOPANT"}, {"text": "content", "start": 598, "end": 605, "annotation": null}, {"text": "in", "start": 606, "end": 608, "annotation": null}, {"text": "the", "start": 609, "end": 612, "annotation": null}, {"text": "N", "start": 613, "end": 614, "annotation": "DOPANT"}, {"text": ",", "start": 614, "end": 615, "annotation": null}, {"text": "S", "start": 616, "end": 617, "annotation": "DOPANT"}, {"text": "co-doped", "start": 618, "end": 626, "annotation": null}, {"text": "TiO2", "start": 627, "end": 631, "annotation": "BASEMAT"}, {"text": "photocatalyst", "start": 632, "end": 645, "annotation": null}, {"text": "(", "start": 646, "end": 647, "annotation": null}, {"text": "0.6at.", "start": 647, "end": 653, "annotation": "DOPMODQ"}, {"text": "%", "start": 653, "end": 654, "annotation": "DOPMODQ"}, {"text": ")", "start": 654, "end": 655, "annotation": null}, {"text": ".", "start": 655, "end": 656, "annotation": null}], [{"text": "The", "start": 657, "end": 660, "annotation": null}, {"text": "photocatalytic", "start": 661, "end": 675, "annotation": null}, {"text": "activity", "start": 676, "end": 684, "annotation": null}, {"text": "of", "start": 685, "end": 687, "annotation": null}, {"text": "the", "start": 688, "end": 691, "annotation": null}, {"text": "doped", "start": 692, "end": 697, "annotation": "DOPANT"}, {"text": "catalysts", "start": 698, "end": 707, "annotation": "BASEMAT"}, {"text": "was", "start": 708, "end": 711, "annotation": null}, {"text": "tested", "start": 712, "end": 718, "annotation": null}, {"text": "using", "start": 719, "end": 724, "annotation": null}, {"text": "phenol", "start": 725, "end": 731, "annotation": null}, {"text": "and", "start": 732, "end": 735, "annotation": null}, {"text": "Escherichia", "start": 736, "end": 747, "annotation": null}, {"text": "coli", "start": 748, "end": 752, "annotation": null}, {"text": "as", "start": 753, "end": 755, "annotation": null}, {"text": "chemical", "start": 756, "end": 764, "annotation": null}, {"text": "and", "start": 765, "end": 768, "annotation": null}, {"text": "biological", "start": 769, "end": 779, "annotation": null}, {"text": "targets", "start": 780, "end": 787, "annotation": null}, {"text": ",", "start": 787, "end": 788, "annotation": null}, {"text": "respectively", "start": 789, "end": 801, "annotation": null}, {"text": ",", "start": 801, "end": 802, "annotation": null}, {"text": "using", "start": 803, "end": 808, "annotation": null}, {"text": "N", "start": 809, "end": 810, "annotation": "DOPANT"}, {"text": ",", "start": 810, "end": 811, "annotation": null}, {"text": "S", "start": 812, "end": 813, "annotation": "DOPANT"}, {"text": "co-doped", "start": 814, "end": 822, "annotation": null}, {"text": ",", "start": 822, "end": 823, "annotation": null}, {"text": "N", "start": 824, "end": 825, "annotation": "DOPANT"}, {"text": "-", "start": 825, "end": 826, "annotation": null}, {"text": "doped", "start": 826, "end": 831, "annotation": null}, {"text": "TiO2", "start": 832, "end": 836, "annotation": "BASEMAT"}, {"text": ",", "start": 836, "end": 837, "annotation": null}, {"text": "undoped", "start": 838, "end": 845, "annotation": null}, {"text": "Degussa", "start": 846, "end": 853, "annotation": null}, {"text": "P-25", "start": 854, "end": 858, "annotation": null}, {"text": "and", "start": 859, "end": 862, "annotation": null}, {"text": "undoped", "start": 863, "end": 870, "annotation": null}, {"text": "TKP", "start": 871, "end": 874, "annotation": null}, {"text": "102", "start": 875, "end": 878, "annotation": null}, {"text": "powders", "start": 879, "end": 886, "annotation": null}, {"text": "under", "start": 887, "end": 892, "annotation": null}, {"text": "simulated", "start": 893, "end": 902, "annotation": null}, {"text": "solar", "start": 903, "end": 908, "annotation": null}, {"text": "light", "start": 909, "end": 914, "annotation": null}, {"text": ".", "start": 914, "end": 915, "annotation": null}], [{"text": "It", "start": 916, "end": 918, "annotation": null}, {"text": "was", "start": 919, "end": 922, "annotation": null}, {"text": "found", "start": 923, "end": 928, "annotation": null}, {"text": "that", "start": 929, "end": 933, "annotation": null}, {"text": "undoped", "start": 934, "end": 941, "annotation": null}, {"text": "Degussa", "start": 942, "end": 949, "annotation": null}, {"text": "P-25", "start": 950, "end": 954, "annotation": null}, {"text": "was", "start": 955, "end": 958, "annotation": null}, {"text": "the", "start": 959, "end": 962, "annotation": null}, {"text": "photocatalyst", "start": 963, "end": 976, "annotation": null}, {"text": "with", "start": 977, "end": 981, "annotation": null}, {"text": "the", "start": 982, "end": 985, "annotation": null}, {"text": "highest", "start": 986, "end": 993, "annotation": null}, {"text": "photocatalytic", "start": 994, "end": 1008, "annotation": null}, {"text": "activity", "start": 1009, "end": 1017, "annotation": null}, {"text": "towards", "start": 1018, "end": 1025, "annotation": null}, {"text": "phenol", "start": 1026, "end": 1032, "annotation": null}, {"text": "oxidation", "start": 1033, "end": 1042, "annotation": null}, {"text": "and", "start": 1043, "end": 1046, "annotation": null}, {"text": "E.", "start": 1047, "end": 1049, "annotation": null}, {"text": "coli", "start": 1050, "end": 1054, "annotation": null}, {"text": "inactivation", "start": 1055, "end": 1067, "annotation": null}, {"text": ".", "start": 1067, "end": 1068, "annotation": null}], [{"text": "N", "start": 1069, "end": 1070, "annotation": "DOPANT"}, {"text": ",", "start": 1070, "end": 1071, "annotation": null}, {"text": "S", "start": 1072, "end": 1073, "annotation": "DOPANT"}, {"text": "co-doped", "start": 1074, "end": 1082, "annotation": null}, {"text": "powders", "start": 1083, "end": 1090, "annotation": "BASEMAT"}, {"text": "showed", "start": 1091, "end": 1097, "annotation": null}, {"text": "almost", "start": 1098, "end": 1104, "annotation": null}, {"text": "the", "start": 1105, "end": 1108, "annotation": null}, {"text": "same", "start": 1109, "end": 1113, "annotation": null}, {"text": "photocatalytic", "start": 1114, "end": 1128, "annotation": null}, {"text": "activity", "start": 1129, "end": 1137, "annotation": null}, {"text": "as", "start": 1138, "end": 1140, "annotation": null}, {"text": "undoped", "start": 1141, "end": 1148, "annotation": null}, {"text": "TKP", "start": 1149, "end": 1152, "annotation": null}, {"text": "102", "start": 1153, "end": 1156, "annotation": null}, {"text": "while", "start": 1157, "end": 1162, "annotation": null}, {"text": "N", "start": 1163, "end": 1164, "annotation": "DOPANT"}, {"text": "-", "start": 1164, "end": 1165, "annotation": null}, {"text": "doped", "start": 1165, "end": 1170, "annotation": null}, {"text": "TKP", "start": 1171, "end": 1174, "annotation": "BASEMAT"}, {"text": "102", "start": 1175, "end": 1178, "annotation": "BASEMAT"}, {"text": "was", "start": 1179, "end": 1182, "annotation": null}, {"text": "the", "start": 1183, "end": 1186, "annotation": null}, {"text": "less", "start": 1187, "end": 1191, "annotation": null}, {"text": "active", "start": 1192, "end": 1198, "annotation": null}, {"text": "photocatalyst", "start": 1199, "end": 1212, "annotation": null}, {"text": "probably", "start": 1213, "end": 1221, "annotation": null}, {"text": "due", "start": 1222, "end": 1225, "annotation": null}, {"text": "the", "start": 1226, "end": 1229, "annotation": null}, {"text": "N", "start": 1230, "end": 1231, "annotation": "DOPANT"}, {"text": "impurities", "start": 1232, "end": 1242, "annotation": null}, {"text": "on", "start": 1243, "end": 1245, "annotation": null}, {"text": "the", "start": 1246, "end": 1249, "annotation": null}, {"text": "TiO2", "start": 1250, "end": 1254, "annotation": "BASEMAT"}, {"text": "acting", "start": 1255, "end": 1261, "annotation": null}, {"text": "as", "start": 1262, "end": 1264, "annotation": null}, {"text": "recombination", "start": 1265, "end": 1278, "annotation": null}, {"text": "centers", "start": 1279, "end": 1286, "annotation": null}, {"text": ".", "start": 1286, "end": 1287, "annotation": null}]], "meta": {"doi": "10.1016/j.solener.2009.09.008"}} {"text": "Uniform resistive switching properties were observed in fully transparent indium-tin-oxide (ITO)/TiO2 film/F-doped SnO2 (FTO) devices where the TiO2 films were fabricated by chemical solution deposition method. In addition to high transmittance of above 70% for visible light, good resistive switching parameters, such as centralized reset and set voltages, stable resistance values at high and low resistance states (read at 0.2 V), and good retention data (up to 10000 s) also presented in the transparent memory devices. The dominant conducting mechanisms were Ohmic behavior and Schottky emission at low resistance state and high resistance state. The resistive switching phenomenon was explained by formation and rupture of the filaments, in which oxygen ions migration and current-induced thermal effect play important roles. Our results show the potential application of the ITO/TiO2/FTO cell in transparent electronics devices.", "meta": {"doi": "10.1016/j.jallcom.2016.10.009"}, "_input_hash": -197106179, "_task_hash": 255166379, "tokens": [[{"text": "Uniform", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "resistive", "start": 8, "end": 17, "id": 1, "annotation": null}, {"text": "switching", "start": 18, "end": 27, "id": 2, "annotation": null}, {"text": "properties", "start": 28, "end": 38, "id": 3, "annotation": null}, {"text": "were", "start": 39, "end": 43, "id": 4, "annotation": null}, {"text": "observed", "start": 44, "end": 52, "id": 5, "annotation": null}, {"text": "in", "start": 53, "end": 55, "id": 6, "annotation": null}, {"text": "fully", "start": 56, "end": 61, "id": 7, "annotation": null}, {"text": "transparent", "start": 62, "end": 73, "id": 8, "annotation": null}, {"text": "indium", "start": 74, "end": 80, "id": 9, "annotation": null}, {"text": "-", "start": 81, "end": 82, "id": 10, "annotation": null}, {"text": "tin", "start": 83, "end": 86, "id": 11, "annotation": null}, {"text": "-", "start": 87, "end": 88, "id": 12, "annotation": null}, {"text": "oxide", "start": 89, "end": 94, "id": 13, "annotation": null}, {"text": "(", "start": 95, "end": 96, "id": 14, "annotation": null}, {"text": "ITO)/TiO2", "start": 97, "end": 106, "id": 15, "annotation": null}, {"text": "film", "start": 107, "end": 111, "id": 16, "annotation": null}, {"text": "/", "start": 112, "end": 113, "id": 17, "annotation": null}, {"text": "F", "start": 114, "end": 115, "id": 18, "annotation": "DOPANT"}, {"text": "-", "start": 116, "end": 117, "id": 19, "annotation": null}, {"text": "doped", "start": 118, "end": 123, "id": 20, "annotation": null}, {"text": "SnO2", "start": 124, "end": 128, "id": 21, "annotation": "BASEMAT"}, {"text": "(", "start": 129, "end": 130, "id": 22, "annotation": null}, {"text": "FTO", "start": 131, "end": 134, "id": 23, "annotation": null}, {"text": ")", "start": 135, "end": 136, "id": 24, "annotation": null}, {"text": "devices", "start": 137, "end": 144, "id": 25, "annotation": null}, {"text": "where", "start": 145, "end": 150, "id": 26, "annotation": null}, {"text": "the", "start": 151, "end": 154, "id": 27, "annotation": null}, {"text": "TiO2", "start": 155, "end": 159, "id": 28, "annotation": null}, {"text": "films", "start": 160, "end": 165, "id": 29, "annotation": null}, {"text": "were", "start": 166, "end": 170, "id": 30, "annotation": null}, {"text": "fabricated", "start": 171, "end": 181, "id": 31, "annotation": null}, {"text": "by", "start": 182, "end": 184, "id": 32, "annotation": null}, {"text": "chemical", "start": 185, "end": 193, "id": 33, "annotation": null}, {"text": "solution", "start": 194, "end": 202, "id": 34, "annotation": null}, {"text": "deposition", "start": 203, "end": 213, "id": 35, "annotation": null}, {"text": "method", "start": 214, "end": 220, "id": 36, "annotation": null}, {"text": ".", "start": 221, "end": 222, "id": 37, "annotation": null}], [{"text": "In", "start": 223, "end": 225, "id": 38, "annotation": null}, {"text": "addition", "start": 226, "end": 234, "id": 39, "annotation": null}, {"text": "to", "start": 235, "end": 237, "id": 40, "annotation": null}, {"text": "high", "start": 238, "end": 242, "id": 41, "annotation": null}, {"text": "transmittance", "start": 243, "end": 256, "id": 42, "annotation": null}, {"text": "of", "start": 257, "end": 259, "id": 43, "annotation": null}, {"text": "above", "start": 260, "end": 265, "id": 44, "annotation": null}, {"text": "70", "start": 266, "end": 268, "id": 45, "annotation": null}, {"text": "%", "start": 269, "end": 270, "id": 46, "annotation": null}, {"text": "for", "start": 271, "end": 274, "id": 47, "annotation": null}, {"text": "visible", "start": 275, "end": 282, "id": 48, "annotation": null}, {"text": "light", "start": 283, "end": 288, "id": 49, "annotation": null}, {"text": ",", "start": 289, "end": 290, "id": 50, "annotation": null}, {"text": "good", "start": 291, "end": 295, "id": 51, "annotation": null}, {"text": "resistive", "start": 296, "end": 305, "id": 52, "annotation": null}, {"text": "switching", "start": 306, "end": 315, "id": 53, "annotation": null}, {"text": "parameters", "start": 316, "end": 326, "id": 54, "annotation": null}, {"text": ",", "start": 327, "end": 328, "id": 55, "annotation": null}, {"text": "such", "start": 329, "end": 333, "id": 56, "annotation": null}, {"text": "as", "start": 334, "end": 336, "id": 57, "annotation": null}, {"text": "centralized", "start": 337, "end": 348, "id": 58, "annotation": null}, {"text": "reset", "start": 349, "end": 354, "id": 59, "annotation": null}, {"text": "and", "start": 355, "end": 358, "id": 60, "annotation": null}, {"text": "set", "start": 359, "end": 362, "id": 61, "annotation": null}, {"text": "voltages", "start": 363, "end": 371, "id": 62, "annotation": null}, {"text": ",", "start": 372, "end": 373, "id": 63, "annotation": null}, {"text": "stable", "start": 374, "end": 380, "id": 64, "annotation": null}, {"text": "resistance", "start": 381, "end": 391, "id": 65, "annotation": null}, {"text": "values", "start": 392, "end": 398, "id": 66, "annotation": null}, {"text": "at", "start": 399, "end": 401, "id": 67, "annotation": null}, {"text": "high", "start": 402, "end": 406, "id": 68, "annotation": null}, {"text": "and", "start": 407, "end": 410, "id": 69, "annotation": null}, {"text": "low", "start": 411, "end": 414, "id": 70, "annotation": null}, {"text": "resistance", "start": 415, "end": 425, "id": 71, "annotation": null}, {"text": "states", "start": 426, "end": 432, "id": 72, "annotation": null}, {"text": "(", "start": 433, "end": 434, "id": 73, "annotation": null}, {"text": "read", "start": 435, "end": 439, "id": 74, "annotation": null}, {"text": "at", "start": 440, "end": 442, "id": 75, "annotation": null}, {"text": "0.2", "start": 443, "end": 446, "id": 76, "annotation": null}, {"text": "V", "start": 447, "end": 448, "id": 77, "annotation": null}, {"text": ")", "start": 449, "end": 450, "id": 78, "annotation": null}, {"text": ",", "start": 451, "end": 452, "id": 79, "annotation": null}, {"text": "and", "start": 453, "end": 456, "id": 80, "annotation": null}, {"text": "good", "start": 457, "end": 461, "id": 81, "annotation": null}, {"text": "retention", "start": 462, "end": 471, "id": 82, "annotation": null}, {"text": "data", "start": 472, "end": 476, "id": 83, "annotation": null}, {"text": "(", "start": 477, "end": 478, "id": 84, "annotation": null}, {"text": "up", "start": 479, "end": 481, "id": 85, "annotation": null}, {"text": "to", "start": 482, "end": 484, "id": 86, "annotation": null}, {"text": "10000", "start": 485, "end": 490, "id": 87, "annotation": null}, {"text": "s", "start": 491, "end": 492, "id": 88, "annotation": null}, {"text": ")", "start": 493, "end": 494, "id": 89, "annotation": null}, {"text": "also", "start": 495, "end": 499, "id": 90, "annotation": null}, {"text": "presented", "start": 500, "end": 509, "id": 91, "annotation": null}, {"text": "in", "start": 510, "end": 512, "id": 92, "annotation": null}, {"text": "the", "start": 513, "end": 516, "id": 93, "annotation": null}, {"text": "transparent", "start": 517, "end": 528, "id": 94, "annotation": null}, {"text": "memory", "start": 529, "end": 535, "id": 95, "annotation": null}, {"text": "devices", "start": 536, "end": 543, "id": 96, "annotation": null}, {"text": ".", "start": 544, "end": 545, "id": 97, "annotation": null}], [{"text": "The", "start": 546, "end": 549, "id": 98, "annotation": null}, {"text": "dominant", "start": 550, "end": 558, "id": 99, "annotation": null}, {"text": "conducting", "start": 559, "end": 569, "id": 100, "annotation": null}, {"text": "mechanisms", "start": 570, "end": 580, "id": 101, "annotation": null}, {"text": "were", "start": 581, "end": 585, "id": 102, "annotation": null}, {"text": "Ohmic", "start": 586, "end": 591, "id": 103, "annotation": null}, {"text": "behavior", "start": 592, "end": 600, "id": 104, "annotation": null}, {"text": "and", "start": 601, "end": 604, "id": 105, "annotation": null}, {"text": "Schottky", "start": 605, "end": 613, "id": 106, "annotation": null}, {"text": "emission", "start": 614, "end": 622, "id": 107, "annotation": null}, {"text": "at", "start": 623, "end": 625, "id": 108, "annotation": null}, {"text": "low", "start": 626, "end": 629, "id": 109, "annotation": null}, {"text": "resistance", "start": 630, "end": 640, "id": 110, "annotation": null}, {"text": "state", "start": 641, "end": 646, "id": 111, "annotation": null}, {"text": "and", "start": 647, "end": 650, "id": 112, "annotation": null}, {"text": "high", "start": 651, "end": 655, "id": 113, "annotation": null}, {"text": "resistance", "start": 656, "end": 666, "id": 114, "annotation": null}, {"text": "state", "start": 667, "end": 672, "id": 115, "annotation": null}, {"text": ".", "start": 673, "end": 674, "id": 116, "annotation": null}], [{"text": "The", "start": 675, "end": 678, "id": 117, "annotation": null}, {"text": "resistive", "start": 679, "end": 688, "id": 118, "annotation": null}, {"text": "switching", "start": 689, "end": 698, "id": 119, "annotation": null}, {"text": "phenomenon", "start": 699, "end": 709, "id": 120, "annotation": null}, {"text": "was", "start": 710, "end": 713, "id": 121, "annotation": null}, {"text": "explained", "start": 714, "end": 723, "id": 122, "annotation": null}, {"text": "by", "start": 724, "end": 726, "id": 123, "annotation": null}, {"text": "formation", "start": 727, "end": 736, "id": 124, "annotation": null}, {"text": "and", "start": 737, "end": 740, "id": 125, "annotation": null}, {"text": "rupture", "start": 741, "end": 748, "id": 126, "annotation": null}, {"text": "of", "start": 749, "end": 751, "id": 127, "annotation": null}, {"text": "the", "start": 752, "end": 755, "id": 128, "annotation": null}, {"text": "filaments", "start": 756, "end": 765, "id": 129, "annotation": null}, {"text": ",", "start": 766, "end": 767, "id": 130, "annotation": null}, {"text": "in", "start": 768, "end": 770, "id": 131, "annotation": null}, {"text": "which", "start": 771, "end": 776, "id": 132, "annotation": null}, {"text": "oxygen", "start": 777, "end": 783, "id": 133, "annotation": null}, {"text": "ions", "start": 784, "end": 788, "id": 134, "annotation": null}, {"text": "migration", "start": 789, "end": 798, "id": 135, "annotation": null}, {"text": "and", "start": 799, "end": 802, "id": 136, "annotation": null}, {"text": "current", "start": 803, "end": 810, "id": 137, "annotation": null}, {"text": "-", "start": 811, "end": 812, "id": 138, "annotation": null}, {"text": "induced", "start": 813, "end": 820, "id": 139, "annotation": null}, {"text": "thermal", "start": 821, "end": 828, "id": 140, "annotation": null}, {"text": "effect", "start": 829, "end": 835, "id": 141, "annotation": null}, {"text": "play", "start": 836, "end": 840, "id": 142, "annotation": null}, {"text": "important", "start": 841, "end": 850, "id": 143, "annotation": null}, {"text": "roles", "start": 851, "end": 856, "id": 144, "annotation": null}, {"text": ".", "start": 857, "end": 858, "id": 145, "annotation": null}], [{"text": "Our", "start": 859, "end": 862, "id": 146, "annotation": null}, {"text": "results", "start": 863, "end": 870, "id": 147, "annotation": null}, {"text": "show", "start": 871, "end": 875, "id": 148, "annotation": null}, {"text": "the", "start": 876, "end": 879, "id": 149, "annotation": null}, {"text": "potential", "start": 880, "end": 889, "id": 150, "annotation": null}, {"text": "application", "start": 890, "end": 901, "id": 151, "annotation": null}, {"text": "of", "start": 902, "end": 904, "id": 152, "annotation": null}, {"text": "the", "start": 905, "end": 908, "id": 153, "annotation": null}, {"text": "ITO", "start": 909, "end": 912, "id": 154, "annotation": null}, {"text": "/", "start": 913, "end": 914, "id": 155, "annotation": null}, {"text": "TiO2", "start": 915, "end": 919, "id": 156, "annotation": null}, {"text": "/", "start": 920, "end": 921, "id": 157, "annotation": null}, {"text": "FTO", "start": 922, "end": 925, "id": 158, "annotation": null}, {"text": "cell", "start": 926, "end": 930, "id": 159, "annotation": null}, {"text": "in", "start": 931, "end": 933, "id": 160, "annotation": null}, {"text": "transparent", "start": 934, "end": 945, "id": 161, "annotation": null}, {"text": "electronics", "start": 946, "end": 957, "id": 162, "annotation": null}, {"text": "devices", "start": 958, "end": 965, "id": 163, "annotation": null}, {"text": ".", "start": 966, "end": 967, "id": 164, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "The concentration dependent up-conversion luminescence of 0.1; 0.2; 0.5; 1; 1.5; 2; 3; 4 and 5% Ho3+ and 20% Yb3+ co-doped \u03b2-NaYF4 colloidal nanocrystals have been studied. The obtained nanocrystals were homogenous in size and shape, as well as the crystallographic structure was pure. The absorption spectra, upconversion lifetimes, up-conversion emission and Quantum Yield power dependence have been measured to estimate the optimum doping concentration of Ho3+ ions. The experimental results were supported by the calculations based on Judd-Ofelt theory, in order to quantify the oscillator strengths in absorption and luminescence, excited-state radiative lifetimes, energy-transfer probabilities, and to estimate the quantum efficiencies of this interesting material. We have observed evident trend in rise- and luminescence decay profiles with rising Ho3+ activator concentration, and the 1\u20132% Ho3+ ions doping was found to be the most efficient nanophosphors.", "meta": {"doi": "10.1016/j.jlumin.2016.10.016"}, "_input_hash": 589303736, "_task_hash": -219418013, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "concentration", "start": 4, "end": 17, "id": 1, "annotation": null}, {"text": "dependent", "start": 18, "end": 27, "id": 2, "annotation": null}, {"text": "up", "start": 28, "end": 30, "id": 3, "annotation": null}, {"text": "-", "start": 31, "end": 32, "id": 4, "annotation": null}, {"text": "conversion", "start": 33, "end": 43, "id": 5, "annotation": null}, {"text": "luminescence", "start": 44, "end": 56, "id": 6, "annotation": null}, {"text": "of", "start": 57, "end": 59, "id": 7, "annotation": null}, {"text": "0.1", "start": 60, "end": 63, "id": 8, "annotation": "DOPMODQ"}, {"text": ";", "start": 64, "end": 65, "id": 9, "annotation": null}, {"text": "0.2", "start": 66, "end": 69, "id": 10, "annotation": "DOPMODQ"}, {"text": ";", "start": 70, "end": 71, "id": 11, "annotation": null}, {"text": "0.5", "start": 72, "end": 75, "id": 12, "annotation": "DOPMODQ"}, {"text": ";", "start": 76, "end": 77, "id": 13, "annotation": null}, {"text": "1", "start": 78, "end": 79, "id": 14, "annotation": "DOPMODQ"}, {"text": ";", "start": 80, "end": 81, "id": 15, "annotation": null}, {"text": "1.5", "start": 82, "end": 85, "id": 16, "annotation": "DOPMODQ"}, {"text": ";", "start": 86, "end": 87, "id": 17, "annotation": null}, {"text": "2", "start": 88, "end": 89, "id": 18, "annotation": "DOPMODQ"}, {"text": ";", "start": 90, "end": 91, "id": 19, "annotation": null}, {"text": "3", "start": 92, "end": 93, "id": 20, "annotation": "DOPMODQ"}, {"text": ";", "start": 94, "end": 95, "id": 21, "annotation": null}, {"text": "4", "start": 96, "end": 97, "id": 22, "annotation": "DOPMODQ"}, {"text": "and", "start": 98, "end": 101, "id": 23, "annotation": null}, {"text": "5", "start": 102, "end": 103, "id": 24, "annotation": "DOPMODQ"}, {"text": "%", "start": 104, "end": 105, "id": 25, "annotation": "DOPMODQ"}, {"text": "Ho3", "start": 106, "end": 109, "id": 26, "annotation": "DOPANT"}, {"text": "+", "start": 110, "end": 111, "id": 27, "annotation": "DOPANT"}, {"text": "and", "start": 112, "end": 115, "id": 28, "annotation": null}, {"text": "20", "start": 116, "end": 118, "id": 29, "annotation": "DOPMODQ"}, {"text": "%", "start": 119, "end": 120, "id": 30, "annotation": "DOPMODQ"}, {"text": "Yb3", "start": 121, "end": 124, "id": 31, "annotation": "DOPANT"}, {"text": "+", "start": 125, "end": 126, "id": 32, "annotation": "DOPANT"}, {"text": "co", "start": 127, "end": 129, "id": 33, "annotation": null}, {"text": "-", "start": 130, "end": 131, "id": 34, "annotation": null}, {"text": "doped", "start": 132, "end": 137, "id": 35, "annotation": null}, {"text": "\u03b2", "start": 138, "end": 139, "id": 36, "annotation": null}, {"text": "-", "start": 140, "end": 141, "id": 37, "annotation": null}, {"text": "NaYF4", "start": 142, "end": 147, "id": 38, "annotation": "BASEMAT"}, {"text": "colloidal", "start": 148, "end": 157, "id": 39, "annotation": null}, {"text": "nanocrystals", "start": 158, "end": 170, "id": 40, "annotation": null}, {"text": "have", "start": 171, "end": 175, "id": 41, "annotation": null}, {"text": "been", "start": 176, "end": 180, "id": 42, "annotation": null}, {"text": "studied", "start": 181, "end": 188, "id": 43, "annotation": null}, {"text": ".", "start": 189, "end": 190, "id": 44, "annotation": null}], [{"text": "The", "start": 191, "end": 194, "id": 45, "annotation": null}, {"text": "obtained", "start": 195, "end": 203, "id": 46, "annotation": null}, {"text": "nanocrystals", "start": 204, "end": 216, "id": 47, "annotation": null}, {"text": "were", "start": 217, "end": 221, "id": 48, "annotation": null}, {"text": "homogenous", "start": 222, "end": 232, "id": 49, "annotation": null}, {"text": "in", "start": 233, "end": 235, "id": 50, "annotation": null}, {"text": "size", "start": 236, "end": 240, "id": 51, "annotation": null}, {"text": "and", "start": 241, "end": 244, "id": 52, "annotation": null}, {"text": "shape", "start": 245, "end": 250, "id": 53, "annotation": null}, {"text": ",", "start": 251, "end": 252, "id": 54, "annotation": null}, {"text": "as", "start": 253, "end": 255, "id": 55, "annotation": null}, {"text": "well", "start": 256, "end": 260, "id": 56, "annotation": null}, {"text": "as", "start": 261, "end": 263, "id": 57, "annotation": null}, {"text": "the", "start": 264, "end": 267, "id": 58, "annotation": null}, {"text": "crystallographic", "start": 268, "end": 284, "id": 59, "annotation": null}, {"text": "structure", "start": 285, "end": 294, "id": 60, "annotation": null}, {"text": "was", "start": 295, "end": 298, "id": 61, "annotation": null}, {"text": "pure", "start": 299, "end": 303, "id": 62, "annotation": null}, {"text": ".", "start": 304, "end": 305, "id": 63, "annotation": null}], [{"text": "The", "start": 306, "end": 309, "id": 64, "annotation": null}, {"text": "absorption", "start": 310, "end": 320, "id": 65, "annotation": null}, {"text": "spectra", "start": 321, "end": 328, "id": 66, "annotation": null}, {"text": ",", "start": 329, "end": 330, "id": 67, "annotation": null}, {"text": "upconversion", "start": 331, "end": 343, "id": 68, "annotation": null}, {"text": "lifetimes", "start": 344, "end": 353, "id": 69, "annotation": null}, {"text": ",", "start": 354, "end": 355, "id": 70, "annotation": null}, {"text": "up", "start": 356, "end": 358, "id": 71, "annotation": null}, {"text": "-", "start": 359, "end": 360, "id": 72, "annotation": null}, {"text": "conversion", "start": 361, "end": 371, "id": 73, "annotation": null}, {"text": "emission", "start": 372, "end": 380, "id": 74, "annotation": null}, {"text": "and", "start": 381, "end": 384, "id": 75, "annotation": null}, {"text": "Quantum", "start": 385, "end": 392, "id": 76, "annotation": null}, {"text": "Yield", "start": 393, "end": 398, "id": 77, "annotation": null}, {"text": "power", "start": 399, "end": 404, "id": 78, "annotation": null}, {"text": "dependence", "start": 405, "end": 415, "id": 79, "annotation": null}, {"text": "have", "start": 416, "end": 420, "id": 80, "annotation": null}, {"text": "been", "start": 421, "end": 425, "id": 81, "annotation": null}, {"text": "measured", "start": 426, "end": 434, "id": 82, "annotation": null}, {"text": "to", "start": 435, "end": 437, "id": 83, "annotation": null}, {"text": "estimate", "start": 438, "end": 446, "id": 84, "annotation": null}, {"text": "the", "start": 447, "end": 450, "id": 85, "annotation": null}, {"text": "optimum", "start": 451, "end": 458, "id": 86, "annotation": null}, {"text": "doping", "start": 459, "end": 465, "id": 87, "annotation": null}, {"text": "concentration", "start": 466, "end": 479, "id": 88, "annotation": null}, {"text": "of", "start": 480, "end": 482, "id": 89, "annotation": null}, {"text": "Ho3", "start": 483, "end": 486, "id": 90, "annotation": "DOPANT"}, {"text": "+", "start": 487, "end": 488, "id": 91, "annotation": "DOPANT"}, {"text": "ions", "start": 489, "end": 493, "id": 92, "annotation": null}, {"text": ".", "start": 494, "end": 495, "id": 93, "annotation": null}], [{"text": "The", "start": 496, "end": 499, "id": 94, "annotation": null}, {"text": "experimental", "start": 500, "end": 512, "id": 95, "annotation": null}, {"text": "results", "start": 513, "end": 520, "id": 96, "annotation": null}, {"text": "were", "start": 521, "end": 525, "id": 97, "annotation": null}, {"text": "supported", "start": 526, "end": 535, "id": 98, "annotation": null}, {"text": "by", "start": 536, "end": 538, "id": 99, "annotation": null}, {"text": "the", "start": 539, "end": 542, "id": 100, "annotation": null}, {"text": "calculations", "start": 543, "end": 555, "id": 101, "annotation": null}, {"text": "based", "start": 556, "end": 561, "id": 102, "annotation": null}, {"text": "on", "start": 562, "end": 564, "id": 103, "annotation": null}, {"text": "Judd", "start": 565, "end": 569, "id": 104, "annotation": null}, {"text": "-", "start": 570, "end": 571, "id": 105, "annotation": null}, {"text": "Ofelt", "start": 572, "end": 577, "id": 106, "annotation": null}, {"text": "theory", "start": 578, "end": 584, "id": 107, "annotation": null}, {"text": ",", "start": 585, "end": 586, "id": 108, "annotation": null}, {"text": "in", "start": 587, "end": 589, "id": 109, "annotation": null}, {"text": "order", "start": 590, "end": 595, "id": 110, "annotation": null}, {"text": "to", "start": 596, "end": 598, "id": 111, "annotation": null}, {"text": "quantify", "start": 599, "end": 607, "id": 112, "annotation": null}, {"text": "the", "start": 608, "end": 611, "id": 113, "annotation": null}, {"text": "oscillator", "start": 612, "end": 622, "id": 114, "annotation": null}, {"text": "strengths", "start": 623, "end": 632, "id": 115, "annotation": null}, {"text": "in", "start": 633, "end": 635, "id": 116, "annotation": null}, {"text": "absorption", "start": 636, "end": 646, "id": 117, "annotation": null}, {"text": "and", "start": 647, "end": 650, "id": 118, "annotation": null}, {"text": "luminescence", "start": 651, "end": 663, "id": 119, "annotation": null}, {"text": ",", "start": 664, "end": 665, "id": 120, "annotation": null}, {"text": "excited", "start": 666, "end": 673, "id": 121, "annotation": null}, {"text": "-", "start": 674, "end": 675, "id": 122, "annotation": null}, {"text": "state", "start": 676, "end": 681, "id": 123, "annotation": null}, {"text": "radiative", "start": 682, "end": 691, "id": 124, "annotation": null}, {"text": "lifetimes", "start": 692, "end": 701, "id": 125, "annotation": null}, {"text": ",", "start": 702, "end": 703, "id": 126, "annotation": null}, {"text": "energy", "start": 704, "end": 710, "id": 127, "annotation": null}, {"text": "-", "start": 711, "end": 712, "id": 128, "annotation": null}, {"text": "transfer", "start": 713, "end": 721, "id": 129, "annotation": null}, {"text": "probabilities", "start": 722, "end": 735, "id": 130, "annotation": null}, {"text": ",", "start": 736, "end": 737, "id": 131, "annotation": null}, {"text": "and", "start": 738, "end": 741, "id": 132, "annotation": null}, {"text": "to", "start": 742, "end": 744, "id": 133, "annotation": null}, {"text": "estimate", "start": 745, "end": 753, "id": 134, "annotation": null}, {"text": "the", "start": 754, "end": 757, "id": 135, "annotation": null}, {"text": "quantum", "start": 758, "end": 765, "id": 136, "annotation": null}, {"text": "efficiencies", "start": 766, "end": 778, "id": 137, "annotation": null}, {"text": "of", "start": 779, "end": 781, "id": 138, "annotation": null}, {"text": "this", "start": 782, "end": 786, "id": 139, "annotation": null}, {"text": "interesting", "start": 787, "end": 798, "id": 140, "annotation": null}, {"text": "material", "start": 799, "end": 807, "id": 141, "annotation": null}, {"text": ".", "start": 808, "end": 809, "id": 142, "annotation": null}], [{"text": "We", "start": 810, "end": 812, "id": 143, "annotation": null}, {"text": "have", "start": 813, "end": 817, "id": 144, "annotation": null}, {"text": "observed", "start": 818, "end": 826, "id": 145, "annotation": null}, {"text": "evident", "start": 827, "end": 834, "id": 146, "annotation": null}, {"text": "trend", "start": 835, "end": 840, "id": 147, "annotation": null}, {"text": "in", "start": 841, "end": 843, "id": 148, "annotation": null}, {"text": "rise-", "start": 844, "end": 849, "id": 149, "annotation": null}, {"text": "and", "start": 850, "end": 853, "id": 150, "annotation": null}, {"text": "luminescence", "start": 854, "end": 866, "id": 151, "annotation": null}, {"text": "decay", "start": 867, "end": 872, "id": 152, "annotation": null}, {"text": "profiles", "start": 873, "end": 881, "id": 153, "annotation": null}, {"text": "with", "start": 882, "end": 886, "id": 154, "annotation": null}, {"text": "rising", "start": 887, "end": 893, "id": 155, "annotation": null}, {"text": "Ho3", "start": 894, "end": 897, "id": 156, "annotation": null}, {"text": "+", "start": 898, "end": 899, "id": 157, "annotation": null}, {"text": "activator", "start": 900, "end": 909, "id": 158, "annotation": null}, {"text": "concentration", "start": 910, "end": 923, "id": 159, "annotation": null}, {"text": ",", "start": 924, "end": 925, "id": 160, "annotation": null}, {"text": "and", "start": 926, "end": 929, "id": 161, "annotation": null}, {"text": "the", "start": 930, "end": 933, "id": 162, "annotation": null}, {"text": "1\u20132", "start": 934, "end": 937, "id": 163, "annotation": "DOPMODQ"}, {"text": "%", "start": 938, "end": 939, "id": 164, "annotation": "DOPMODQ"}, {"text": "Ho3", "start": 940, "end": 943, "id": 165, "annotation": "DOPANT"}, {"text": "+", "start": 944, "end": 945, "id": 166, "annotation": "DOPANT"}, {"text": "ions", "start": 946, "end": 950, "id": 167, "annotation": null}, {"text": "doping", "start": 951, "end": 957, "id": 168, "annotation": null}, {"text": "was", "start": 958, "end": 961, "id": 169, "annotation": null}, {"text": "found", "start": 962, "end": 967, "id": 170, "annotation": null}, {"text": "to", "start": 968, "end": 970, "id": 171, "annotation": null}, {"text": "be", "start": 971, "end": 973, "id": 172, "annotation": null}, {"text": "the", "start": 974, "end": 977, "id": 173, "annotation": null}, {"text": "most", "start": 978, "end": 982, "id": 174, "annotation": null}, {"text": "efficient", "start": 983, "end": 992, "id": 175, "annotation": null}, {"text": "nanophosphors", "start": 993, "end": 1006, "id": 176, "annotation": null}, {"text": ".", "start": 1007, "end": 1008, "id": 177, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "The concentration dependent up-conversion luminescence of 0.1; 0.2; 0.5; 1; 1.5; 2; 3; 4 and 5% Ho3+ and 20% Yb3+ co-doped \u03b2-NaYF4 colloidal nanocrystals have been studied. The obtained nanocrystals were homogenous in size and shape, as well as the crystallographic structure was pure. The absorption spectra, upconversion lifetimes, up-conversion emission and Quantum Yield power dependence have been measured to estimate the optimum doping concentration of Ho3+ ions. The experimental results were supported by the calculations based on Judd-Ofelt theory, in order to quantify the oscillator strengths in absorption and luminescence, excited-state radiative lifetimes, energy-transfer probabilities, and to estimate the quantum efficiencies of this interesting material. We have observed evident trend in rise- and luminescence decay profiles with rising Ho3+ activator concentration, and the 1\u20132% Ho3+ ions doping was found to be the most efficient nanophosphors.", "meta": {"doi": "10.1016/j.jlumin.2016.10.016"}, "_input_hash": 589303736, "_task_hash": -219418013, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "concentration", "start": 4, "end": 17, "id": 1, "annotation": null}, {"text": "dependent", "start": 18, "end": 27, "id": 2, "annotation": null}, {"text": "up", "start": 28, "end": 30, "id": 3, "annotation": null}, {"text": "-", "start": 31, "end": 32, "id": 4, "annotation": null}, {"text": "conversion", "start": 33, "end": 43, "id": 5, "annotation": null}, {"text": "luminescence", "start": 44, "end": 56, "id": 6, "annotation": null}, {"text": "of", "start": 57, "end": 59, "id": 7, "annotation": null}, {"text": "0.1", "start": 60, "end": 63, "id": 8, "annotation": "DOPMODQ"}, {"text": ";", "start": 64, "end": 65, "id": 9, "annotation": "DOPMODQ"}, {"text": "0.2", "start": 66, "end": 69, "id": 10, "annotation": "DOPMODQ"}, {"text": ";", "start": 70, "end": 71, "id": 11, "annotation": "DOPMODQ"}, {"text": "0.5", "start": 72, "end": 75, "id": 12, "annotation": "DOPMODQ"}, {"text": ";", "start": 76, "end": 77, "id": 13, "annotation": "DOPMODQ"}, {"text": "1", "start": 78, "end": 79, "id": 14, "annotation": "DOPMODQ"}, {"text": ";", "start": 80, "end": 81, "id": 15, "annotation": "DOPMODQ"}, {"text": "1.5", "start": 82, "end": 85, "id": 16, "annotation": "DOPMODQ"}, {"text": ";", "start": 86, "end": 87, "id": 17, "annotation": "DOPMODQ"}, {"text": "2", "start": 88, "end": 89, "id": 18, "annotation": "DOPMODQ"}, {"text": ";", "start": 90, "end": 91, "id": 19, "annotation": "DOPMODQ"}, {"text": "3", "start": 92, "end": 93, "id": 20, "annotation": "DOPMODQ"}, {"text": ";", "start": 94, "end": 95, "id": 21, "annotation": "DOPMODQ"}, {"text": "4", "start": 96, "end": 97, "id": 22, "annotation": "DOPMODQ"}, {"text": "and", "start": 98, "end": 101, "id": 23, "annotation": "DOPMODQ"}, {"text": "5", "start": 102, "end": 103, "id": 24, "annotation": "DOPMODQ"}, {"text": "%", "start": 104, "end": 105, "id": 25, "annotation": "DOPMODQ"}, {"text": "Ho3", "start": 106, "end": 109, "id": 26, "annotation": "DOPANT"}, {"text": "+", "start": 110, "end": 111, "id": 27, "annotation": "DOPANT"}, {"text": "and", "start": 112, "end": 115, "id": 28, "annotation": null}, {"text": "20", "start": 116, "end": 118, "id": 29, "annotation": "DOPMODQ"}, {"text": "%", "start": 119, "end": 120, "id": 30, "annotation": "DOPMODQ"}, {"text": "Yb3", "start": 121, "end": 124, "id": 31, "annotation": "DOPANT"}, {"text": "+", "start": 125, "end": 126, "id": 32, "annotation": "DOPANT"}, {"text": "co", "start": 127, "end": 129, "id": 33, "annotation": null}, {"text": "-", "start": 130, "end": 131, "id": 34, "annotation": null}, {"text": "doped", "start": 132, "end": 137, "id": 35, "annotation": null}, {"text": "\u03b2", "start": 138, "end": 139, "id": 36, "annotation": null}, {"text": "-", "start": 140, "end": 141, "id": 37, "annotation": null}, {"text": "NaYF4", "start": 142, "end": 147, "id": 38, "annotation": "BASEMAT"}, {"text": "colloidal", "start": 148, "end": 157, "id": 39, "annotation": null}, {"text": "nanocrystals", "start": 158, "end": 170, "id": 40, "annotation": null}, {"text": "have", "start": 171, "end": 175, "id": 41, "annotation": null}, {"text": "been", "start": 176, "end": 180, "id": 42, "annotation": null}, {"text": "studied", "start": 181, "end": 188, "id": 43, "annotation": null}, {"text": ".", "start": 189, "end": 190, "id": 44, "annotation": null}], [{"text": "The", "start": 191, "end": 194, "id": 45, "annotation": null}, {"text": "obtained", "start": 195, "end": 203, "id": 46, "annotation": null}, {"text": "nanocrystals", "start": 204, "end": 216, "id": 47, "annotation": null}, {"text": "were", "start": 217, "end": 221, "id": 48, "annotation": null}, {"text": "homogenous", "start": 222, "end": 232, "id": 49, "annotation": null}, {"text": "in", "start": 233, "end": 235, "id": 50, "annotation": null}, {"text": "size", "start": 236, "end": 240, "id": 51, "annotation": null}, {"text": "and", "start": 241, "end": 244, "id": 52, "annotation": null}, {"text": "shape", "start": 245, "end": 250, "id": 53, "annotation": null}, {"text": ",", "start": 251, "end": 252, "id": 54, "annotation": null}, {"text": "as", "start": 253, "end": 255, "id": 55, "annotation": null}, {"text": "well", "start": 256, "end": 260, "id": 56, "annotation": null}, {"text": "as", "start": 261, "end": 263, "id": 57, "annotation": null}, {"text": "the", "start": 264, "end": 267, "id": 58, "annotation": null}, {"text": "crystallographic", "start": 268, "end": 284, "id": 59, "annotation": null}, {"text": "structure", "start": 285, "end": 294, "id": 60, "annotation": null}, {"text": "was", "start": 295, "end": 298, "id": 61, "annotation": null}, {"text": "pure", "start": 299, "end": 303, "id": 62, "annotation": null}, {"text": ".", "start": 304, "end": 305, "id": 63, "annotation": null}], [{"text": "The", "start": 306, "end": 309, "id": 64, "annotation": null}, {"text": "absorption", "start": 310, "end": 320, "id": 65, "annotation": null}, {"text": "spectra", "start": 321, "end": 328, "id": 66, "annotation": null}, {"text": ",", "start": 329, "end": 330, "id": 67, "annotation": null}, {"text": "upconversion", "start": 331, "end": 343, "id": 68, "annotation": null}, {"text": "lifetimes", "start": 344, "end": 353, "id": 69, "annotation": null}, {"text": ",", "start": 354, "end": 355, "id": 70, "annotation": null}, {"text": "up", "start": 356, "end": 358, "id": 71, "annotation": null}, {"text": "-", "start": 359, "end": 360, "id": 72, "annotation": null}, {"text": "conversion", "start": 361, "end": 371, "id": 73, "annotation": null}, {"text": "emission", "start": 372, "end": 380, "id": 74, "annotation": null}, {"text": "and", "start": 381, "end": 384, "id": 75, "annotation": null}, {"text": "Quantum", "start": 385, "end": 392, "id": 76, "annotation": null}, {"text": "Yield", "start": 393, "end": 398, "id": 77, "annotation": null}, {"text": "power", "start": 399, "end": 404, "id": 78, "annotation": null}, {"text": "dependence", "start": 405, "end": 415, "id": 79, "annotation": null}, {"text": "have", "start": 416, "end": 420, "id": 80, "annotation": null}, {"text": "been", "start": 421, "end": 425, "id": 81, "annotation": null}, {"text": "measured", "start": 426, "end": 434, "id": 82, "annotation": null}, {"text": "to", "start": 435, "end": 437, "id": 83, "annotation": null}, {"text": "estimate", "start": 438, "end": 446, "id": 84, "annotation": null}, {"text": "the", "start": 447, "end": 450, "id": 85, "annotation": null}, {"text": "optimum", "start": 451, "end": 458, "id": 86, "annotation": null}, {"text": "doping", "start": 459, "end": 465, "id": 87, "annotation": null}, {"text": "concentration", "start": 466, "end": 479, "id": 88, "annotation": null}, {"text": "of", "start": 480, "end": 482, "id": 89, "annotation": null}, {"text": "Ho3", "start": 483, "end": 486, "id": 90, "annotation": "DOPANT"}, {"text": "+", "start": 487, "end": 488, "id": 91, "annotation": "DOPANT"}, {"text": "ions", "start": 489, "end": 493, "id": 92, "annotation": null}, {"text": ".", "start": 494, "end": 495, "id": 93, "annotation": null}], [{"text": "The", "start": 496, "end": 499, "id": 94, "annotation": null}, {"text": "experimental", "start": 500, "end": 512, "id": 95, "annotation": null}, {"text": "results", "start": 513, "end": 520, "id": 96, "annotation": null}, {"text": "were", "start": 521, "end": 525, "id": 97, "annotation": null}, {"text": "supported", "start": 526, "end": 535, "id": 98, "annotation": null}, {"text": "by", "start": 536, "end": 538, "id": 99, "annotation": null}, {"text": "the", "start": 539, "end": 542, "id": 100, "annotation": null}, {"text": "calculations", "start": 543, "end": 555, "id": 101, "annotation": null}, {"text": "based", "start": 556, "end": 561, "id": 102, "annotation": null}, {"text": "on", "start": 562, "end": 564, "id": 103, "annotation": null}, {"text": "Judd", "start": 565, "end": 569, "id": 104, "annotation": null}, {"text": "-", "start": 570, "end": 571, "id": 105, "annotation": null}, {"text": "Ofelt", "start": 572, "end": 577, "id": 106, "annotation": null}, {"text": "theory", "start": 578, "end": 584, "id": 107, "annotation": null}, {"text": ",", "start": 585, "end": 586, "id": 108, "annotation": null}, {"text": "in", "start": 587, "end": 589, "id": 109, "annotation": null}, {"text": "order", "start": 590, "end": 595, "id": 110, "annotation": null}, {"text": "to", "start": 596, "end": 598, "id": 111, "annotation": null}, {"text": "quantify", "start": 599, "end": 607, "id": 112, "annotation": null}, {"text": "the", "start": 608, "end": 611, "id": 113, "annotation": null}, {"text": "oscillator", "start": 612, "end": 622, "id": 114, "annotation": null}, {"text": "strengths", "start": 623, "end": 632, "id": 115, "annotation": null}, {"text": "in", "start": 633, "end": 635, "id": 116, "annotation": null}, {"text": "absorption", "start": 636, "end": 646, "id": 117, "annotation": null}, {"text": "and", "start": 647, "end": 650, "id": 118, "annotation": null}, {"text": "luminescence", "start": 651, "end": 663, "id": 119, "annotation": null}, {"text": ",", "start": 664, "end": 665, "id": 120, "annotation": null}, {"text": "excited", "start": 666, "end": 673, "id": 121, "annotation": null}, {"text": "-", "start": 674, "end": 675, "id": 122, "annotation": null}, {"text": "state", "start": 676, "end": 681, "id": 123, "annotation": null}, {"text": "radiative", "start": 682, "end": 691, "id": 124, "annotation": null}, {"text": "lifetimes", "start": 692, "end": 701, "id": 125, "annotation": null}, {"text": ",", "start": 702, "end": 703, "id": 126, "annotation": null}, {"text": "energy", "start": 704, "end": 710, "id": 127, "annotation": null}, {"text": "-", "start": 711, "end": 712, "id": 128, "annotation": null}, {"text": "transfer", "start": 713, "end": 721, "id": 129, "annotation": null}, {"text": "probabilities", "start": 722, "end": 735, "id": 130, "annotation": null}, {"text": ",", "start": 736, "end": 737, "id": 131, "annotation": null}, {"text": "and", "start": 738, "end": 741, "id": 132, "annotation": null}, {"text": "to", "start": 742, "end": 744, "id": 133, "annotation": null}, {"text": "estimate", "start": 745, "end": 753, "id": 134, "annotation": null}, {"text": "the", "start": 754, "end": 757, "id": 135, "annotation": null}, {"text": "quantum", "start": 758, "end": 765, "id": 136, "annotation": null}, {"text": "efficiencies", "start": 766, "end": 778, "id": 137, "annotation": null}, {"text": "of", "start": 779, "end": 781, "id": 138, "annotation": null}, {"text": "this", "start": 782, "end": 786, "id": 139, "annotation": null}, {"text": "interesting", "start": 787, "end": 798, "id": 140, "annotation": null}, {"text": "material", "start": 799, "end": 807, "id": 141, "annotation": null}, {"text": ".", "start": 808, "end": 809, "id": 142, "annotation": null}], [{"text": "We", "start": 810, "end": 812, "id": 143, "annotation": null}, {"text": "have", "start": 813, "end": 817, "id": 144, "annotation": null}, {"text": "observed", "start": 818, "end": 826, "id": 145, "annotation": null}, {"text": "evident", "start": 827, "end": 834, "id": 146, "annotation": null}, {"text": "trend", "start": 835, "end": 840, "id": 147, "annotation": null}, {"text": "in", "start": 841, "end": 843, "id": 148, "annotation": null}, {"text": "rise-", "start": 844, "end": 849, "id": 149, "annotation": null}, {"text": "and", "start": 850, "end": 853, "id": 150, "annotation": null}, {"text": "luminescence", "start": 854, "end": 866, "id": 151, "annotation": null}, {"text": "decay", "start": 867, "end": 872, "id": 152, "annotation": null}, {"text": "profiles", "start": 873, "end": 881, "id": 153, "annotation": null}, {"text": "with", "start": 882, "end": 886, "id": 154, "annotation": null}, {"text": "rising", "start": 887, "end": 893, "id": 155, "annotation": null}, {"text": "Ho3", "start": 894, "end": 897, "id": 156, "annotation": null}, {"text": "+", "start": 898, "end": 899, "id": 157, "annotation": null}, {"text": "activator", "start": 900, "end": 909, "id": 158, "annotation": null}, {"text": "concentration", "start": 910, "end": 923, "id": 159, "annotation": null}, {"text": ",", "start": 924, "end": 925, "id": 160, "annotation": null}, {"text": "and", "start": 926, "end": 929, "id": 161, "annotation": null}, {"text": "the", "start": 930, "end": 933, "id": 162, "annotation": null}, {"text": "1\u20132", "start": 934, "end": 937, "id": 163, "annotation": "DOPMODQ"}, {"text": "%", "start": 938, "end": 939, "id": 164, "annotation": "DOPMODQ"}, {"text": "Ho3", "start": 940, "end": 943, "id": 165, "annotation": "DOPANT"}, {"text": "+", "start": 944, "end": 945, "id": 166, "annotation": "DOPANT"}, {"text": "ions", "start": 946, "end": 950, "id": 167, "annotation": null}, {"text": "doping", "start": 951, "end": 957, "id": 168, "annotation": null}, {"text": "was", "start": 958, "end": 961, "id": 169, "annotation": null}, {"text": "found", "start": 962, "end": 967, "id": 170, "annotation": null}, {"text": "to", "start": 968, "end": 970, "id": 171, "annotation": null}, {"text": "be", "start": 971, "end": 973, "id": 172, "annotation": null}, {"text": "the", "start": 974, "end": 977, "id": 173, "annotation": null}, {"text": "most", "start": 978, "end": 982, "id": 174, "annotation": null}, {"text": "efficient", "start": 983, "end": 992, "id": 175, "annotation": null}, {"text": "nanophosphors", "start": 993, "end": 1006, "id": 176, "annotation": null}, {"text": ".", "start": 1007, "end": 1008, "id": 177, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Filter characteristics of long-period fiber gratings are externally controlled by deforming the fiber axis with a Nd-Fe-B permanent magnet. The loss amplitude is tuned from 0 to 15 dB by moving the magnet under the fiber. The loss peak wavelength is changed over a range of 200 nm by stretching the coil spring over the fiber. We apply this device to flatten the amplified spontaneous emission of an Er3+-doped fiber (EDF). We also demonstrate the tunable EDF laser that oscillates from 1532 to 1566 nm.", "meta": {"doi": "10.1002/mop.28250"}, "_input_hash": -1500126319, "_task_hash": -72440712, "tokens": [[{"text": "Filter", "start": 0, "end": 6, "id": 0, "annotation": null}, {"text": "characteristics", "start": 7, "end": 22, "id": 1, "annotation": null}, {"text": "of", "start": 23, "end": 25, "id": 2, "annotation": null}, {"text": "long", "start": 26, "end": 30, "id": 3, "annotation": null}, {"text": "-", "start": 31, "end": 32, "id": 4, "annotation": null}, {"text": "period", "start": 33, "end": 39, "id": 5, "annotation": null}, {"text": "fiber", "start": 40, "end": 45, "id": 6, "annotation": null}, {"text": "gratings", "start": 46, "end": 54, "id": 7, "annotation": null}, {"text": "are", "start": 55, "end": 58, "id": 8, "annotation": null}, {"text": "externally", "start": 59, "end": 69, "id": 9, "annotation": null}, {"text": "controlled", "start": 70, "end": 80, "id": 10, "annotation": null}, {"text": "by", "start": 81, "end": 83, "id": 11, "annotation": null}, {"text": "deforming", "start": 84, "end": 93, "id": 12, "annotation": null}, {"text": "the", "start": 94, "end": 97, "id": 13, "annotation": null}, {"text": "fiber", "start": 98, "end": 103, "id": 14, "annotation": null}, {"text": "axis", "start": 104, "end": 108, "id": 15, "annotation": null}, {"text": "with", "start": 109, "end": 113, "id": 16, "annotation": null}, {"text": "a", "start": 114, "end": 115, "id": 17, "annotation": null}, {"text": "Nd", "start": 116, "end": 118, "id": 18, "annotation": null}, {"text": "-", "start": 119, "end": 120, "id": 19, "annotation": null}, {"text": "Fe", "start": 121, "end": 123, "id": 20, "annotation": null}, {"text": "-", "start": 124, "end": 125, "id": 21, "annotation": null}, {"text": "B", "start": 126, "end": 127, "id": 22, "annotation": null}, {"text": "permanent", "start": 128, "end": 137, "id": 23, "annotation": null}, {"text": "magnet", "start": 138, "end": 144, "id": 24, "annotation": null}, {"text": ".", "start": 145, "end": 146, "id": 25, "annotation": null}], [{"text": "The", "start": 147, "end": 150, "id": 26, "annotation": null}, {"text": "loss", "start": 151, "end": 155, "id": 27, "annotation": null}, {"text": "amplitude", "start": 156, "end": 165, "id": 28, "annotation": null}, {"text": "is", "start": 166, "end": 168, "id": 29, "annotation": null}, {"text": "tuned", "start": 169, "end": 174, "id": 30, "annotation": null}, {"text": "from", "start": 175, "end": 179, "id": 31, "annotation": null}, {"text": "0", "start": 180, "end": 181, "id": 32, "annotation": null}, {"text": "to", "start": 182, "end": 184, "id": 33, "annotation": null}, {"text": "15", "start": 185, "end": 187, "id": 34, "annotation": null}, {"text": "dB", "start": 188, "end": 190, "id": 35, "annotation": null}, {"text": "by", "start": 191, "end": 193, "id": 36, "annotation": null}, {"text": "moving", "start": 194, "end": 200, "id": 37, "annotation": null}, {"text": "the", "start": 201, "end": 204, "id": 38, "annotation": null}, {"text": "magnet", "start": 205, "end": 211, "id": 39, "annotation": null}, {"text": "under", "start": 212, "end": 217, "id": 40, "annotation": null}, {"text": "the", "start": 218, "end": 221, "id": 41, "annotation": null}, {"text": "fiber", "start": 222, "end": 227, "id": 42, "annotation": null}, {"text": ".", "start": 228, "end": 229, "id": 43, "annotation": null}], [{"text": "The", "start": 230, "end": 233, "id": 44, "annotation": null}, {"text": "loss", "start": 234, "end": 238, "id": 45, "annotation": null}, {"text": "peak", "start": 239, "end": 243, "id": 46, "annotation": null}, {"text": "wavelength", "start": 244, "end": 254, "id": 47, "annotation": null}, {"text": "is", "start": 255, "end": 257, "id": 48, "annotation": null}, {"text": "changed", "start": 258, "end": 265, "id": 49, "annotation": null}, {"text": "over", "start": 266, "end": 270, "id": 50, "annotation": null}, {"text": "a", "start": 271, "end": 272, "id": 51, "annotation": null}, {"text": "range", "start": 273, "end": 278, "id": 52, "annotation": null}, {"text": "of", "start": 279, "end": 281, "id": 53, "annotation": null}, {"text": "200", "start": 282, "end": 285, "id": 54, "annotation": null}, {"text": "nm", "start": 286, "end": 288, "id": 55, "annotation": null}, {"text": "by", "start": 289, "end": 291, "id": 56, "annotation": null}, {"text": "stretching", "start": 292, "end": 302, "id": 57, "annotation": null}, {"text": "the", "start": 303, "end": 306, "id": 58, "annotation": null}, {"text": "coil", "start": 307, "end": 311, "id": 59, "annotation": null}, {"text": "spring", "start": 312, "end": 318, "id": 60, "annotation": null}, {"text": "over", "start": 319, "end": 323, "id": 61, "annotation": null}, {"text": "the", "start": 324, "end": 327, "id": 62, "annotation": null}, {"text": "fiber", "start": 328, "end": 333, "id": 63, "annotation": null}, {"text": ".", "start": 334, "end": 335, "id": 64, "annotation": null}], [{"text": "We", "start": 336, "end": 338, "id": 65, "annotation": null}, {"text": "apply", "start": 339, "end": 344, "id": 66, "annotation": null}, {"text": "this", "start": 345, "end": 349, "id": 67, "annotation": null}, {"text": "device", "start": 350, "end": 356, "id": 68, "annotation": null}, {"text": "to", "start": 357, "end": 359, "id": 69, "annotation": null}, {"text": "flatten", "start": 360, "end": 367, "id": 70, "annotation": null}, {"text": "the", "start": 368, "end": 371, "id": 71, "annotation": null}, {"text": "amplified", "start": 372, "end": 381, "id": 72, "annotation": null}, {"text": "spontaneous", "start": 382, "end": 393, "id": 73, "annotation": null}, {"text": "emission", "start": 394, "end": 402, "id": 74, "annotation": null}, {"text": "of", "start": 403, "end": 405, "id": 75, "annotation": null}, {"text": "an", "start": 406, "end": 408, "id": 76, "annotation": null}, {"text": "Er3", "start": 409, "end": 412, "id": 77, "annotation": "DOPANT"}, {"text": "+", "start": 413, "end": 414, "id": 78, "annotation": "DOPANT"}, {"text": "-doped", "start": 415, "end": 421, "id": 79, "annotation": null}, {"text": "fiber", "start": 422, "end": 427, "id": 80, "annotation": "BASEMAT"}, {"text": "(", "start": 428, "end": 429, "id": 81, "annotation": null}, {"text": "EDF", "start": 430, "end": 433, "id": 82, "annotation": null}, {"text": ")", "start": 434, "end": 435, "id": 83, "annotation": null}, {"text": ".", "start": 436, "end": 437, "id": 84, "annotation": null}], [{"text": "We", "start": 438, "end": 440, "id": 85, "annotation": null}, {"text": "also", "start": 441, "end": 445, "id": 86, "annotation": null}, {"text": "demonstrate", "start": 446, "end": 457, "id": 87, "annotation": null}, {"text": "the", "start": 458, "end": 461, "id": 88, "annotation": null}, {"text": "tunable", "start": 462, "end": 469, "id": 89, "annotation": null}, {"text": "EDF", "start": 470, "end": 473, "id": 90, "annotation": null}, {"text": "laser", "start": 474, "end": 479, "id": 91, "annotation": null}, {"text": "that", "start": 480, "end": 484, "id": 92, "annotation": null}, {"text": "oscillates", "start": 485, "end": 495, "id": 93, "annotation": null}, {"text": "from", "start": 496, "end": 500, "id": 94, "annotation": null}, {"text": "1532", "start": 501, "end": 505, "id": 95, "annotation": null}, {"text": "to", "start": 506, "end": 508, "id": 96, "annotation": null}, {"text": "1566", "start": 509, "end": 513, "id": 97, "annotation": null}, {"text": "nm", "start": 514, "end": 516, "id": 98, "annotation": null}, {"text": ".", "start": 517, "end": 518, "id": 99, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Electroluminescence is observed during porous etching of n-type GaP single crystals at strongly positive potential. The emission spectra, which include a supra-bandgap contribution, are markedly different from the spectra observed under optical excitation or minority carrier injection. The current density and electroluminescence intensity show a strong potential dependence and a similar hysteresis. The spectral characteristics of the luminescence suggest that both thermalised and hot charge carriers, generated by impact ionisation, are involved in light emission.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Electroluminescence", "start": 0, "end": 19, "annotation": null}, {"text": "is", "start": 20, "end": 22, "annotation": null}, {"text": "observed", "start": 23, "end": 31, "annotation": null}, {"text": "during", "start": 32, "end": 38, "annotation": null}, {"text": "porous", "start": 39, "end": 45, "annotation": null}, {"text": "etching", "start": 46, "end": 53, "annotation": null}, {"text": "of", "start": 54, "end": 56, "annotation": null}, {"text": "n", "start": 57, "end": 58, "annotation": "DOPANT"}, {"text": "-", "start": 58, "end": 59, "annotation": "DOPANT"}, {"text": "type", "start": 59, "end": 63, "annotation": "DOPANT"}, {"text": "GaP", "start": 64, "end": 67, "annotation": "BASEMAT"}, {"text": "single", "start": 68, "end": 74, "annotation": null}, {"text": "crystals", "start": 75, "end": 83, "annotation": null}, {"text": "at", "start": 84, "end": 86, "annotation": null}, {"text": "strongly", "start": 87, "end": 95, "annotation": null}, {"text": "positive", "start": 96, "end": 104, "annotation": null}, {"text": "potential", "start": 105, "end": 114, "annotation": null}, {"text": ".", "start": 114, "end": 115, "annotation": null}], [{"text": "The", "start": 116, "end": 119, "annotation": null}, {"text": "emission", "start": 120, "end": 128, "annotation": null}, {"text": "spectra", "start": 129, "end": 136, "annotation": null}, {"text": ",", "start": 136, "end": 137, "annotation": null}, {"text": "which", "start": 138, "end": 143, "annotation": null}, {"text": "include", "start": 144, "end": 151, "annotation": null}, {"text": "a", "start": 152, "end": 153, "annotation": null}, {"text": "supra-bandgap", "start": 154, "end": 167, "annotation": null}, {"text": "contribution", "start": 168, "end": 180, "annotation": null}, {"text": ",", "start": 180, "end": 181, "annotation": null}, {"text": "are", "start": 182, "end": 185, "annotation": null}, {"text": "markedly", "start": 186, "end": 194, "annotation": null}, {"text": "different", "start": 195, "end": 204, "annotation": null}, {"text": "from", "start": 205, "end": 209, "annotation": null}, {"text": "the", "start": 210, "end": 213, "annotation": null}, {"text": "spectra", "start": 214, "end": 221, "annotation": null}, {"text": "observed", "start": 222, "end": 230, "annotation": null}, {"text": "under", "start": 231, "end": 236, "annotation": null}, {"text": "optical", "start": 237, "end": 244, "annotation": null}, {"text": "excitation", "start": 245, "end": 255, "annotation": null}, {"text": "or", "start": 256, "end": 258, "annotation": null}, {"text": "minority", "start": 259, "end": 267, "annotation": null}, {"text": "carrier", "start": 268, "end": 275, "annotation": null}, {"text": "injection", "start": 276, "end": 285, "annotation": null}, {"text": ".", "start": 285, "end": 286, "annotation": null}], [{"text": "The", "start": 287, "end": 290, "annotation": null}, {"text": "current", "start": 291, "end": 298, "annotation": null}, {"text": "density", "start": 299, "end": 306, "annotation": null}, {"text": "and", "start": 307, "end": 310, "annotation": null}, {"text": "electroluminescence", "start": 311, "end": 330, "annotation": null}, {"text": "intensity", "start": 331, "end": 340, "annotation": null}, {"text": "show", "start": 341, "end": 345, "annotation": null}, {"text": "a", "start": 346, "end": 347, "annotation": null}, {"text": "strong", "start": 348, "end": 354, "annotation": null}, {"text": "potential", "start": 355, "end": 364, "annotation": null}, {"text": "dependence", "start": 365, "end": 375, "annotation": null}, {"text": "and", "start": 376, "end": 379, "annotation": null}, {"text": "a", "start": 380, "end": 381, "annotation": null}, {"text": "similar", "start": 382, "end": 389, "annotation": null}, {"text": "hysteresis", "start": 390, "end": 400, "annotation": null}, {"text": ".", "start": 400, "end": 401, "annotation": null}], [{"text": "The", "start": 402, "end": 405, "annotation": null}, {"text": "spectral", "start": 406, "end": 414, "annotation": null}, {"text": "characteristics", "start": 415, "end": 430, "annotation": null}, {"text": "of", "start": 431, "end": 433, "annotation": null}, {"text": "the", "start": 434, "end": 437, "annotation": null}, {"text": "luminescence", "start": 438, "end": 450, "annotation": null}, {"text": "suggest", "start": 451, "end": 458, "annotation": null}, {"text": "that", "start": 459, "end": 463, "annotation": null}, {"text": "both", "start": 464, "end": 468, "annotation": null}, {"text": "thermalised", "start": 469, "end": 480, "annotation": null}, {"text": "and", "start": 481, "end": 484, "annotation": null}, {"text": "hot", "start": 485, "end": 488, "annotation": null}, {"text": "charge", "start": 489, "end": 495, "annotation": null}, {"text": "carriers", "start": 496, "end": 504, "annotation": null}, {"text": ",", "start": 504, "end": 505, "annotation": null}, {"text": "generated", "start": 506, "end": 515, "annotation": null}, {"text": "by", "start": 516, "end": 518, "annotation": null}, {"text": "impact", "start": 519, "end": 525, "annotation": null}, {"text": "ionisation", "start": 526, "end": 536, "annotation": null}, {"text": ",", "start": 536, "end": 537, "annotation": null}, {"text": "are", "start": 538, "end": 541, "annotation": null}, {"text": "involved", "start": 542, "end": 550, "annotation": null}, {"text": "in", "start": 551, "end": 553, "annotation": null}, {"text": "light", "start": 554, "end": 559, "annotation": null}, {"text": "emission", "start": 560, "end": 568, "annotation": null}, {"text": ".", "start": 568, "end": 569, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Designing the low cost, long durability and high efficient substitutes for platinum (Pt) electrocatalyst to facilitate ORR is significant for the large-scale commercial application of fuel cells. In this work, single Pd atoms supported on graphitic carbon nitride (i.e., Pd/g-C3N4) with different Pd coverages acting as electrocatalyst for ORR is investigated by using the density functional theory calculations. Our study shows that the doping of Pd atoms can effectively decompose H2O2, leading to a four-electron mechanism via the sequential hydrogenation of *O2 giving *O+*H2O on Pdx/g-C3N4 (x=1\u20134). With the increase of Pd coverages, the energy barriers increase in the rate determining step, which are 0.39eV, 0.63eV, 0.68eV and 2.61eV for Pdx/g-C3N4 (x=1\u20134), respectively. This implies that Pdx/g-C3N4 (x=1\u20133) have lower energy barrier than Pt (calculated value 0.80eV), showing high ORR activity compared with Pt. The oxidized Pd2/g-C3N4 (i.e., Pd2/g-C3N4\u2212O) shows similar ORR activity to Pd2/g-C3N4, but with different rate determining step. The working potentials are also discussed for the studied catalysts. Especially, the working potential for Pd2/g-C3N4 is up to 0.60V, comparable to calculated value 0.73V for Pt/Cu(100).", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Designing", "start": 0, "end": 9, "annotation": null}, {"text": "the", "start": 10, "end": 13, "annotation": null}, {"text": "low", "start": 14, "end": 17, "annotation": null}, {"text": "cost", "start": 18, "end": 22, "annotation": null}, {"text": ",", "start": 22, "end": 23, "annotation": null}, {"text": "long", "start": 24, "end": 28, "annotation": null}, {"text": "durability", "start": 29, "end": 39, "annotation": null}, {"text": "and", "start": 40, "end": 43, "annotation": null}, {"text": "high", "start": 44, "end": 48, "annotation": null}, {"text": "efficient", "start": 49, "end": 58, "annotation": null}, {"text": "substitutes", "start": 59, "end": 70, "annotation": null}, {"text": "for", "start": 71, "end": 74, "annotation": null}, {"text": "platinum", "start": 75, "end": 83, "annotation": null}, {"text": "(", "start": 84, "end": 85, "annotation": null}, {"text": "Pt", "start": 85, "end": 87, "annotation": null}, {"text": ")", "start": 87, "end": 88, "annotation": null}, {"text": "electrocatalyst", "start": 89, "end": 104, "annotation": null}, {"text": "to", "start": 105, "end": 107, "annotation": null}, {"text": "facilitate", "start": 108, "end": 118, "annotation": null}, {"text": "ORR", "start": 119, "end": 122, "annotation": null}, {"text": "is", "start": 123, "end": 125, "annotation": null}, {"text": "significant", "start": 126, "end": 137, "annotation": null}, {"text": "for", "start": 138, "end": 141, "annotation": null}, {"text": "the", "start": 142, "end": 145, "annotation": null}, {"text": "large", "start": 146, "end": 151, "annotation": null}, {"text": "-", "start": 151, "end": 152, "annotation": null}, {"text": "scale", "start": 152, "end": 157, "annotation": null}, {"text": "commercial", "start": 158, "end": 168, "annotation": null}, {"text": "application", "start": 169, "end": 180, "annotation": null}, {"text": "of", "start": 181, "end": 183, "annotation": null}, {"text": "fuel", "start": 184, "end": 188, "annotation": null}, {"text": "cells", "start": 189, "end": 194, "annotation": null}, {"text": ".", "start": 194, "end": 195, "annotation": null}], [{"text": "In", "start": 196, "end": 198, "annotation": null}, {"text": "this", "start": 199, "end": 203, "annotation": null}, {"text": "work", "start": 204, "end": 208, "annotation": null}, {"text": ",", "start": 208, "end": 209, "annotation": null}, {"text": "single", "start": 210, "end": 216, "annotation": null}, {"text": "Pd", "start": 217, "end": 219, "annotation": null}, {"text": "atoms", "start": 220, "end": 225, "annotation": null}, {"text": "supported", "start": 226, "end": 235, "annotation": null}, {"text": "on", "start": 236, "end": 238, "annotation": null}, {"text": "graphitic", "start": 239, "end": 248, "annotation": null}, {"text": "carbon", "start": 249, "end": 255, "annotation": null}, {"text": "nitride", "start": 256, "end": 263, "annotation": null}, {"text": "(", "start": 264, "end": 265, "annotation": null}, {"text": "i.e.", "start": 265, "end": 269, "annotation": null}, {"text": ",", "start": 269, "end": 270, "annotation": null}, {"text": "Pd", "start": 271, "end": 273, "annotation": "DOPANT"}, {"text": "/", "start": 273, "end": 274, "annotation": null}, {"text": "g-C3N4", "start": 274, "end": 280, "annotation": "BASEMAT"}, {"text": ")", "start": 280, "end": 281, "annotation": null}, {"text": "with", "start": 282, "end": 286, "annotation": null}, {"text": "different", "start": 287, "end": 296, "annotation": null}, {"text": "Pd", "start": 297, "end": 299, "annotation": null}, {"text": "coverages", "start": 300, "end": 309, "annotation": null}, {"text": "acting", "start": 310, "end": 316, "annotation": null}, {"text": "as", "start": 317, "end": 319, "annotation": null}, {"text": "electrocatalyst", "start": 320, "end": 335, "annotation": null}, {"text": "for", "start": 336, "end": 339, "annotation": null}, {"text": "ORR", "start": 340, "end": 343, "annotation": null}, {"text": "is", "start": 344, "end": 346, "annotation": null}, {"text": "investigated", "start": 347, "end": 359, "annotation": null}, {"text": "by", "start": 360, "end": 362, "annotation": null}, {"text": "using", "start": 363, "end": 368, "annotation": null}, {"text": "the", "start": 369, "end": 372, "annotation": null}, {"text": "density", "start": 373, "end": 380, "annotation": null}, {"text": "functional", "start": 381, "end": 391, "annotation": null}, {"text": "theory", "start": 392, "end": 398, "annotation": null}, {"text": "calculations", "start": 399, "end": 411, "annotation": null}, {"text": ".", "start": 411, "end": 412, "annotation": null}], [{"text": "Our", "start": 413, "end": 416, "annotation": null}, {"text": "study", "start": 417, "end": 422, "annotation": null}, {"text": "shows", "start": 423, "end": 428, "annotation": null}, {"text": "that", "start": 429, "end": 433, "annotation": null}, {"text": "the", "start": 434, "end": 437, "annotation": null}, {"text": "doping", "start": 438, "end": 444, "annotation": null}, {"text": "of", "start": 445, "end": 447, "annotation": null}, {"text": "Pd", "start": 448, "end": 450, "annotation": "DOPANT"}, {"text": "atoms", "start": 451, "end": 456, "annotation": null}, {"text": "can", "start": 457, "end": 460, "annotation": null}, {"text": "effectively", "start": 461, "end": 472, "annotation": null}, {"text": "decompose", "start": 473, "end": 482, "annotation": null}, {"text": "H2O2", "start": 483, "end": 487, "annotation": null}, {"text": ",", "start": 487, "end": 488, "annotation": null}, {"text": "leading", "start": 489, "end": 496, "annotation": null}, {"text": "to", "start": 497, "end": 499, "annotation": null}, {"text": "a", "start": 500, "end": 501, "annotation": null}, {"text": "four", "start": 502, "end": 506, "annotation": null}, {"text": "-", "start": 506, "end": 507, "annotation": null}, {"text": "electron", "start": 507, "end": 515, "annotation": null}, {"text": "mechanism", "start": 516, "end": 525, "annotation": null}, {"text": "via", "start": 526, "end": 529, "annotation": null}, {"text": "the", "start": 530, "end": 533, "annotation": null}, {"text": "sequential", "start": 534, "end": 544, "annotation": null}, {"text": "hydrogenation", "start": 545, "end": 558, "annotation": null}, {"text": "of", "start": 559, "end": 561, "annotation": null}, {"text": "*O2", "start": 562, "end": 565, "annotation": null}, {"text": "giving", "start": 566, "end": 572, "annotation": null}, {"text": "*O+*H2O", "start": 573, "end": 580, "annotation": null}, {"text": "on", "start": 581, "end": 583, "annotation": null}, {"text": "Pdx", "start": 584, "end": 587, "annotation": "DOPANT"}, {"text": "/", "start": 587, "end": 588, "annotation": null}, {"text": "g-C3N4", "start": 588, "end": 594, "annotation": "BASEMAT"}, {"text": "(", "start": 595, "end": 596, "annotation": null}, {"text": "x", "start": 596, "end": 597, "annotation": null}, {"text": "=", "start": 597, "end": 598, "annotation": null}, {"text": "1", "start": 598, "end": 599, "annotation": null}, {"text": "\u2013", "start": 599, "end": 600, "annotation": null}, {"text": "4", "start": 600, "end": 601, "annotation": null}, {"text": ")", "start": 601, "end": 602, "annotation": null}, {"text": ".", "start": 602, "end": 603, "annotation": null}], [{"text": "With", "start": 604, "end": 608, "annotation": null}, {"text": "the", "start": 609, "end": 612, "annotation": null}, {"text": "increase", "start": 613, "end": 621, "annotation": null}, {"text": "of", "start": 622, "end": 624, "annotation": null}, {"text": "Pd", "start": 625, "end": 627, "annotation": null}, {"text": "coverages", "start": 628, "end": 637, "annotation": null}, {"text": ",", "start": 637, "end": 638, "annotation": null}, {"text": "the", "start": 639, "end": 642, "annotation": null}, {"text": "energy", "start": 643, "end": 649, "annotation": null}, {"text": "barriers", "start": 650, "end": 658, "annotation": null}, {"text": "increase", "start": 659, "end": 667, "annotation": null}, {"text": "in", "start": 668, "end": 670, "annotation": null}, {"text": "the", "start": 671, "end": 674, "annotation": null}, {"text": "rate", "start": 675, "end": 679, "annotation": null}, {"text": "determining", "start": 680, "end": 691, "annotation": null}, {"text": "step", "start": 692, "end": 696, "annotation": null}, {"text": ",", "start": 696, "end": 697, "annotation": null}, {"text": "which", "start": 698, "end": 703, "annotation": null}, {"text": "are", "start": 704, "end": 707, "annotation": null}, {"text": "0.39", "start": 708, "end": 712, "annotation": null}, {"text": "eV", "start": 712, "end": 714, "annotation": null}, {"text": ",", "start": 714, "end": 715, "annotation": null}, {"text": "0.63", "start": 716, "end": 720, "annotation": null}, {"text": "eV", "start": 720, "end": 722, "annotation": null}, {"text": ",", "start": 722, "end": 723, "annotation": null}, {"text": "0.68", "start": 724, "end": 728, "annotation": null}, {"text": "eV", "start": 728, "end": 730, "annotation": null}, {"text": "and", "start": 731, "end": 734, "annotation": null}, {"text": "2.61", "start": 735, "end": 739, "annotation": null}, {"text": "eV", "start": 739, "end": 741, "annotation": null}, {"text": "for", "start": 742, "end": 745, "annotation": null}, {"text": "Pdx", "start": 746, "end": 749, "annotation": null}, {"text": "/", "start": 749, "end": 750, "annotation": null}, {"text": "g-C3N4", "start": 750, "end": 756, "annotation": null}, {"text": "(", "start": 757, "end": 758, "annotation": null}, {"text": "x", "start": 758, "end": 759, "annotation": null}, {"text": "=", "start": 759, "end": 760, "annotation": null}, {"text": "1", "start": 760, "end": 761, "annotation": null}, {"text": "\u2013", "start": 761, "end": 762, "annotation": null}, {"text": "4", "start": 762, "end": 763, "annotation": null}, {"text": ")", "start": 763, "end": 764, "annotation": null}, {"text": ",", "start": 764, "end": 765, "annotation": null}, {"text": "respectively", "start": 766, "end": 778, "annotation": null}, {"text": ".", "start": 778, "end": 779, "annotation": null}], [{"text": "This", "start": 780, "end": 784, "annotation": null}, {"text": "implies", "start": 785, "end": 792, "annotation": null}, {"text": "that", "start": 793, "end": 797, "annotation": null}, {"text": "Pdx", "start": 798, "end": 801, "annotation": "DOPANT"}, {"text": "/", "start": 801, "end": 802, "annotation": null}, {"text": "g-C3N4", "start": 802, "end": 808, "annotation": "BASEMAT"}, {"text": "(", "start": 809, "end": 810, "annotation": null}, {"text": "x", "start": 810, "end": 811, "annotation": null}, {"text": "=", "start": 811, "end": 812, "annotation": null}, {"text": "1", "start": 812, "end": 813, "annotation": null}, {"text": "\u2013", "start": 813, "end": 814, "annotation": null}, {"text": "3", "start": 814, "end": 815, "annotation": null}, {"text": ")", "start": 815, "end": 816, "annotation": null}, {"text": "have", "start": 817, "end": 821, "annotation": null}, {"text": "lower", "start": 822, "end": 827, "annotation": null}, {"text": "energy", "start": 828, "end": 834, "annotation": null}, {"text": "barrier", "start": 835, "end": 842, "annotation": null}, {"text": "than", "start": 843, "end": 847, "annotation": null}, {"text": "Pt", "start": 848, "end": 850, "annotation": null}, {"text": "(", "start": 851, "end": 852, "annotation": null}, {"text": "calculated", "start": 852, "end": 862, "annotation": null}, {"text": "value", "start": 863, "end": 868, "annotation": null}, {"text": "0.80", "start": 869, "end": 873, "annotation": null}, {"text": "eV", "start": 873, "end": 875, "annotation": null}, {"text": ")", "start": 875, "end": 876, "annotation": null}, {"text": ",", "start": 876, "end": 877, "annotation": null}, {"text": "showing", "start": 878, "end": 885, "annotation": null}, {"text": "high", "start": 886, "end": 890, "annotation": null}, {"text": "ORR", "start": 891, "end": 894, "annotation": null}, {"text": "activity", "start": 895, "end": 903, "annotation": null}, {"text": "compared", "start": 904, "end": 912, "annotation": null}, {"text": "with", "start": 913, "end": 917, "annotation": null}, {"text": "Pt", "start": 918, "end": 920, "annotation": null}, {"text": ".", "start": 920, "end": 921, "annotation": null}], [{"text": "The", "start": 922, "end": 925, "annotation": null}, {"text": "oxidized", "start": 926, "end": 934, "annotation": null}, {"text": "Pd2", "start": 935, "end": 938, "annotation": "DOPANT"}, {"text": "/", "start": 938, "end": 939, "annotation": null}, {"text": "g-C3N4", "start": 939, "end": 945, "annotation": "BASEMAT"}, {"text": "(", "start": 946, "end": 947, "annotation": null}, {"text": "i.e.", "start": 947, "end": 951, "annotation": null}, {"text": ",", "start": 951, "end": 952, "annotation": null}, {"text": "Pd2", "start": 953, "end": 956, "annotation": "DOPANT"}, {"text": "/", "start": 956, "end": 957, "annotation": null}, {"text": "g-C3N4\u2212O", "start": 957, "end": 965, "annotation": "BASEMAT"}, {"text": ")", "start": 965, "end": 966, "annotation": null}, {"text": "shows", "start": 967, "end": 972, "annotation": null}, {"text": "similar", "start": 973, "end": 980, "annotation": null}, {"text": "ORR", "start": 981, "end": 984, "annotation": null}, {"text": "activity", "start": 985, "end": 993, "annotation": null}, {"text": "to", "start": 994, "end": 996, "annotation": null}, {"text": "Pd2", "start": 997, "end": 1000, "annotation": "DOPANT"}, {"text": "/", "start": 1000, "end": 1001, "annotation": null}, {"text": "g-C3N4", "start": 1001, "end": 1007, "annotation": "BASEMAT"}, {"text": ",", "start": 1007, "end": 1008, "annotation": null}, {"text": "but", "start": 1009, "end": 1012, "annotation": null}, {"text": "with", "start": 1013, "end": 1017, "annotation": null}, {"text": "different", "start": 1018, "end": 1027, "annotation": null}, {"text": "rate", "start": 1028, "end": 1032, "annotation": null}, {"text": "determining", "start": 1033, "end": 1044, "annotation": null}, {"text": "step", "start": 1045, "end": 1049, "annotation": null}, {"text": ".", "start": 1049, "end": 1050, "annotation": null}], [{"text": "The", "start": 1051, "end": 1054, "annotation": null}, {"text": "working", "start": 1055, "end": 1062, "annotation": null}, {"text": "potentials", "start": 1063, "end": 1073, "annotation": null}, {"text": "are", "start": 1074, "end": 1077, "annotation": null}, {"text": "also", "start": 1078, "end": 1082, "annotation": null}, {"text": "discussed", "start": 1083, "end": 1092, "annotation": null}, {"text": "for", "start": 1093, "end": 1096, "annotation": null}, {"text": "the", "start": 1097, "end": 1100, "annotation": null}, {"text": "studied", "start": 1101, "end": 1108, "annotation": null}, {"text": "catalysts", "start": 1109, "end": 1118, "annotation": null}, {"text": ".", "start": 1118, "end": 1119, "annotation": null}], [{"text": "Especially", "start": 1120, "end": 1130, "annotation": null}, {"text": ",", "start": 1130, "end": 1131, "annotation": null}, {"text": "the", "start": 1132, "end": 1135, "annotation": null}, {"text": "working", "start": 1136, "end": 1143, "annotation": null}, {"text": "potential", "start": 1144, "end": 1153, "annotation": null}, {"text": "for", "start": 1154, "end": 1157, "annotation": null}, {"text": "Pd2", "start": 1158, "end": 1161, "annotation": "DOPANT"}, {"text": "/", "start": 1161, "end": 1162, "annotation": null}, {"text": "g-C3N4", "start": 1162, "end": 1168, "annotation": "BASEMAT"}, {"text": "is", "start": 1169, "end": 1171, "annotation": null}, {"text": "up", "start": 1172, "end": 1174, "annotation": null}, {"text": "to", "start": 1175, "end": 1177, "annotation": null}, {"text": "0.60", "start": 1178, "end": 1182, "annotation": null}, {"text": "V", "start": 1182, "end": 1183, "annotation": null}, {"text": ",", "start": 1183, "end": 1184, "annotation": null}, {"text": "comparable", "start": 1185, "end": 1195, "annotation": null}, {"text": "to", "start": 1196, "end": 1198, "annotation": null}, {"text": "calculated", "start": 1199, "end": 1209, "annotation": null}, {"text": "value", "start": 1210, "end": 1215, "annotation": null}, {"text": "0.73", "start": 1216, "end": 1220, "annotation": null}, {"text": "V", "start": 1220, "end": 1221, "annotation": null}, {"text": "for", "start": 1222, "end": 1225, "annotation": null}, {"text": "Pt", "start": 1226, "end": 1228, "annotation": "DOPANT"}, {"text": "/", "start": 1228, "end": 1229, "annotation": null}, {"text": "Cu(100)", "start": 1229, "end": 1236, "annotation": "BASEMAT"}, {"text": ".", "start": 1236, "end": 1237, "annotation": null}]]} +{"remark": "doping_annt1", "text": "Electroluminescence is observed during porous etching of n-type GaP single crystals at strongly positive potential. The emission spectra, which include a supra-bandgap contribution, are markedly different from the spectra observed under optical excitation or minority carrier injection. The current density and electroluminescence intensity show a strong potential dependence and a similar hysteresis. The spectral characteristics of the luminescence suggest that both thermalised and hot charge carriers, generated by impact ionisation, are involved in light emission.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Electroluminescence", "start": 0, "end": 19, "annotation": null}, {"text": "is", "start": 20, "end": 22, "annotation": null}, {"text": "observed", "start": 23, "end": 31, "annotation": null}, {"text": "during", "start": 32, "end": 38, "annotation": null}, {"text": "porous", "start": 39, "end": 45, "annotation": null}, {"text": "etching", "start": 46, "end": 53, "annotation": null}, {"text": "of", "start": 54, "end": 56, "annotation": null}, {"text": "n", "start": 57, "end": 58, "annotation": "DOPANT"}, {"text": "-", "start": 58, "end": 59, "annotation": "DOPANT"}, {"text": "type", "start": 59, "end": 63, "annotation": "DOPANT"}, {"text": "GaP", "start": 64, "end": 67, "annotation": "BASEMAT"}, {"text": "single", "start": 68, "end": 74, "annotation": null}, {"text": "crystals", "start": 75, "end": 83, "annotation": null}, {"text": "at", "start": 84, "end": 86, "annotation": null}, {"text": "strongly", "start": 87, "end": 95, "annotation": null}, {"text": "positive", "start": 96, "end": 104, "annotation": null}, {"text": "potential", "start": 105, "end": 114, "annotation": null}, {"text": ".", "start": 114, "end": 115, "annotation": null}], [{"text": "The", "start": 116, "end": 119, "annotation": null}, {"text": "emission", "start": 120, "end": 128, "annotation": null}, {"text": "spectra", "start": 129, "end": 136, "annotation": null}, {"text": ",", "start": 136, "end": 137, "annotation": null}, {"text": "which", "start": 138, "end": 143, "annotation": null}, {"text": "include", "start": 144, "end": 151, "annotation": null}, {"text": "a", "start": 152, "end": 153, "annotation": null}, {"text": "supra-bandgap", "start": 154, "end": 167, "annotation": null}, {"text": "contribution", "start": 168, "end": 180, "annotation": null}, {"text": ",", "start": 180, "end": 181, "annotation": null}, {"text": "are", "start": 182, "end": 185, "annotation": null}, {"text": "markedly", "start": 186, "end": 194, "annotation": null}, {"text": "different", "start": 195, "end": 204, "annotation": null}, {"text": "from", "start": 205, "end": 209, "annotation": null}, {"text": "the", "start": 210, "end": 213, "annotation": null}, {"text": "spectra", "start": 214, "end": 221, "annotation": null}, {"text": "observed", "start": 222, "end": 230, "annotation": null}, {"text": "under", "start": 231, "end": 236, "annotation": null}, {"text": "optical", "start": 237, "end": 244, "annotation": null}, {"text": "excitation", "start": 245, "end": 255, "annotation": null}, {"text": "or", "start": 256, "end": 258, "annotation": null}, {"text": "minority", "start": 259, "end": 267, "annotation": null}, {"text": "carrier", "start": 268, "end": 275, "annotation": null}, {"text": "injection", "start": 276, "end": 285, "annotation": null}, {"text": ".", "start": 285, "end": 286, "annotation": null}], [{"text": "The", "start": 287, "end": 290, "annotation": null}, {"text": "current", "start": 291, "end": 298, "annotation": null}, {"text": "density", "start": 299, "end": 306, "annotation": null}, {"text": "and", "start": 307, "end": 310, "annotation": null}, {"text": "electroluminescence", "start": 311, "end": 330, "annotation": null}, {"text": "intensity", "start": 331, "end": 340, "annotation": null}, {"text": "show", "start": 341, "end": 345, "annotation": null}, {"text": "a", "start": 346, "end": 347, "annotation": null}, {"text": "strong", "start": 348, "end": 354, "annotation": null}, {"text": "potential", "start": 355, "end": 364, "annotation": null}, {"text": "dependence", "start": 365, "end": 375, "annotation": null}, {"text": "and", "start": 376, "end": 379, "annotation": null}, {"text": "a", "start": 380, "end": 381, "annotation": null}, {"text": "similar", "start": 382, "end": 389, "annotation": null}, {"text": "hysteresis", "start": 390, "end": 400, "annotation": null}, {"text": ".", "start": 400, "end": 401, "annotation": null}], [{"text": "The", "start": 402, "end": 405, "annotation": null}, {"text": "spectral", "start": 406, "end": 414, "annotation": null}, {"text": "characteristics", "start": 415, "end": 430, "annotation": null}, {"text": "of", "start": 431, "end": 433, "annotation": null}, {"text": "the", "start": 434, "end": 437, "annotation": null}, {"text": "luminescence", "start": 438, "end": 450, "annotation": null}, {"text": "suggest", "start": 451, "end": 458, "annotation": null}, {"text": "that", "start": 459, "end": 463, "annotation": null}, {"text": "both", "start": 464, "end": 468, "annotation": null}, {"text": "thermalised", "start": 469, "end": 480, "annotation": null}, {"text": "and", "start": 481, "end": 484, "annotation": null}, {"text": "hot", "start": 485, "end": 488, "annotation": null}, {"text": "charge", "start": 489, "end": 495, "annotation": null}, {"text": "carriers", "start": 496, "end": 504, "annotation": null}, {"text": ",", "start": 504, "end": 505, "annotation": null}, {"text": "generated", "start": 506, "end": 515, "annotation": null}, {"text": "by", "start": 516, "end": 518, "annotation": null}, {"text": "impact", "start": 519, "end": 525, "annotation": null}, {"text": "ionisation", "start": 526, "end": 536, "annotation": null}, {"text": ",", "start": 536, "end": 537, "annotation": null}, {"text": "are", "start": 538, "end": 541, "annotation": null}, {"text": "involved", "start": 542, "end": 550, "annotation": null}, {"text": "in", "start": 551, "end": 553, "annotation": null}, {"text": "light", "start": 554, "end": 559, "annotation": null}, {"text": "emission", "start": 560, "end": 568, "annotation": null}, {"text": ".", "start": 568, "end": 569, "annotation": null}]], "meta": {"doi": "10.1016/S0039-6028(03)00262-0"}} +{"remark": "doping_annt1", "text": "Designing the low cost, long durability and high efficient substitutes for platinum (Pt) electrocatalyst to facilitate ORR is significant for the large-scale commercial application of fuel cells. In this work, single Pd atoms supported on graphitic carbon nitride (i.e., Pd/g-C3N4) with different Pd coverages acting as electrocatalyst for ORR is investigated by using the density functional theory calculations. Our study shows that the doping of Pd atoms can effectively decompose H2O2, leading to a four-electron mechanism via the sequential hydrogenation of *O2 giving *O+*H2O on Pdx/g-C3N4 (x=1\u20134). With the increase of Pd coverages, the energy barriers increase in the rate determining step, which are 0.39eV, 0.63eV, 0.68eV and 2.61eV for Pdx/g-C3N4 (x=1\u20134), respectively. This implies that Pdx/g-C3N4 (x=1\u20133) have lower energy barrier than Pt (calculated value 0.80eV), showing high ORR activity compared with Pt. The oxidized Pd2/g-C3N4 (i.e., Pd2/g-C3N4\u2212O) shows similar ORR activity to Pd2/g-C3N4, but with different rate determining step. The working potentials are also discussed for the studied catalysts. Especially, the working potential for Pd2/g-C3N4 is up to 0.60V, comparable to calculated value 0.73V for Pt/Cu(100).", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Designing", "start": 0, "end": 9, "annotation": null}, {"text": "the", "start": 10, "end": 13, "annotation": null}, {"text": "low", "start": 14, "end": 17, "annotation": null}, {"text": "cost", "start": 18, "end": 22, "annotation": null}, {"text": ",", "start": 22, "end": 23, "annotation": null}, {"text": "long", "start": 24, "end": 28, "annotation": null}, {"text": "durability", "start": 29, "end": 39, "annotation": null}, {"text": "and", "start": 40, "end": 43, "annotation": null}, {"text": "high", "start": 44, "end": 48, "annotation": null}, {"text": "efficient", "start": 49, "end": 58, "annotation": null}, {"text": "substitutes", "start": 59, "end": 70, "annotation": null}, {"text": "for", "start": 71, "end": 74, "annotation": null}, {"text": "platinum", "start": 75, "end": 83, "annotation": null}, {"text": "(", "start": 84, "end": 85, "annotation": null}, {"text": "Pt", "start": 85, "end": 87, "annotation": null}, {"text": ")", "start": 87, "end": 88, "annotation": null}, {"text": "electrocatalyst", "start": 89, "end": 104, "annotation": null}, {"text": "to", "start": 105, "end": 107, "annotation": null}, {"text": "facilitate", "start": 108, "end": 118, "annotation": null}, {"text": "ORR", "start": 119, "end": 122, "annotation": null}, {"text": "is", "start": 123, "end": 125, "annotation": null}, {"text": "significant", "start": 126, "end": 137, "annotation": null}, {"text": "for", "start": 138, "end": 141, "annotation": null}, {"text": "the", "start": 142, "end": 145, "annotation": null}, {"text": "large", "start": 146, "end": 151, "annotation": null}, {"text": "-", "start": 151, "end": 152, "annotation": null}, {"text": "scale", "start": 152, "end": 157, "annotation": null}, {"text": "commercial", "start": 158, "end": 168, "annotation": null}, {"text": "application", "start": 169, "end": 180, "annotation": null}, {"text": "of", "start": 181, "end": 183, "annotation": null}, {"text": "fuel", "start": 184, "end": 188, "annotation": null}, {"text": "cells", "start": 189, "end": 194, "annotation": null}, {"text": ".", "start": 194, "end": 195, "annotation": null}], [{"text": "In", "start": 196, "end": 198, "annotation": null}, {"text": "this", "start": 199, "end": 203, "annotation": null}, {"text": "work", "start": 204, "end": 208, "annotation": null}, {"text": ",", "start": 208, "end": 209, "annotation": null}, {"text": "single", "start": 210, "end": 216, "annotation": null}, {"text": "Pd", "start": 217, "end": 219, "annotation": null}, {"text": "atoms", "start": 220, "end": 225, "annotation": null}, {"text": "supported", "start": 226, "end": 235, "annotation": null}, {"text": "on", "start": 236, "end": 238, "annotation": null}, {"text": "graphitic", "start": 239, "end": 248, "annotation": null}, {"text": "carbon", "start": 249, "end": 255, "annotation": null}, {"text": "nitride", "start": 256, "end": 263, "annotation": null}, {"text": "(", "start": 264, "end": 265, "annotation": null}, {"text": "i.e.", "start": 265, "end": 269, "annotation": null}, {"text": ",", "start": 269, "end": 270, "annotation": null}, {"text": "Pd", "start": 271, "end": 273, "annotation": "DOPANT"}, {"text": "/", "start": 273, "end": 274, "annotation": null}, {"text": "g-C3N4", "start": 274, "end": 280, "annotation": "BASEMAT"}, {"text": ")", "start": 280, "end": 281, "annotation": null}, {"text": "with", "start": 282, "end": 286, "annotation": null}, {"text": "different", "start": 287, "end": 296, "annotation": null}, {"text": "Pd", "start": 297, "end": 299, "annotation": null}, {"text": "coverages", "start": 300, "end": 309, "annotation": null}, {"text": "acting", "start": 310, "end": 316, "annotation": null}, {"text": "as", "start": 317, "end": 319, "annotation": null}, {"text": "electrocatalyst", "start": 320, "end": 335, "annotation": null}, {"text": "for", "start": 336, "end": 339, "annotation": null}, {"text": "ORR", "start": 340, "end": 343, "annotation": null}, {"text": "is", "start": 344, "end": 346, "annotation": null}, {"text": "investigated", "start": 347, "end": 359, "annotation": null}, {"text": "by", "start": 360, "end": 362, "annotation": null}, {"text": "using", "start": 363, "end": 368, "annotation": null}, {"text": "the", "start": 369, "end": 372, "annotation": null}, {"text": "density", "start": 373, "end": 380, "annotation": null}, {"text": "functional", "start": 381, "end": 391, "annotation": null}, {"text": "theory", "start": 392, "end": 398, "annotation": null}, {"text": "calculations", "start": 399, "end": 411, "annotation": null}, {"text": ".", "start": 411, "end": 412, "annotation": null}], [{"text": "Our", "start": 413, "end": 416, "annotation": null}, {"text": "study", "start": 417, "end": 422, "annotation": null}, {"text": "shows", "start": 423, "end": 428, "annotation": null}, {"text": "that", "start": 429, "end": 433, "annotation": null}, {"text": "the", "start": 434, "end": 437, "annotation": null}, {"text": "doping", "start": 438, "end": 444, "annotation": null}, {"text": "of", "start": 445, "end": 447, "annotation": null}, {"text": "Pd", "start": 448, "end": 450, "annotation": "DOPANT"}, {"text": "atoms", "start": 451, "end": 456, "annotation": null}, {"text": "can", "start": 457, "end": 460, "annotation": null}, {"text": "effectively", "start": 461, "end": 472, "annotation": null}, {"text": "decompose", "start": 473, "end": 482, "annotation": null}, {"text": "H2O2", "start": 483, "end": 487, "annotation": null}, {"text": ",", "start": 487, "end": 488, "annotation": null}, {"text": "leading", "start": 489, "end": 496, "annotation": null}, {"text": "to", "start": 497, "end": 499, "annotation": null}, {"text": "a", "start": 500, "end": 501, "annotation": null}, {"text": "four", "start": 502, "end": 506, "annotation": null}, {"text": "-", "start": 506, "end": 507, "annotation": null}, {"text": "electron", "start": 507, "end": 515, "annotation": null}, {"text": "mechanism", "start": 516, "end": 525, "annotation": null}, {"text": "via", "start": 526, "end": 529, "annotation": null}, {"text": "the", "start": 530, "end": 533, "annotation": null}, {"text": "sequential", "start": 534, "end": 544, "annotation": null}, {"text": "hydrogenation", "start": 545, "end": 558, "annotation": null}, {"text": "of", "start": 559, "end": 561, "annotation": null}, {"text": "*O2", "start": 562, "end": 565, "annotation": null}, {"text": "giving", "start": 566, "end": 572, "annotation": null}, {"text": "*O+*H2O", "start": 573, "end": 580, "annotation": null}, {"text": "on", "start": 581, "end": 583, "annotation": null}, {"text": "Pdx", "start": 584, "end": 587, "annotation": "DOPANT"}, {"text": "/", "start": 587, "end": 588, "annotation": null}, {"text": "g-C3N4", "start": 588, "end": 594, "annotation": "BASEMAT"}, {"text": "(", "start": 595, "end": 596, "annotation": null}, {"text": "x", "start": 596, "end": 597, "annotation": null}, {"text": "=", "start": 597, "end": 598, "annotation": null}, {"text": "1", "start": 598, "end": 599, "annotation": null}, {"text": "\u2013", "start": 599, "end": 600, "annotation": null}, {"text": "4", "start": 600, "end": 601, "annotation": null}, {"text": ")", "start": 601, "end": 602, "annotation": null}, {"text": ".", "start": 602, "end": 603, "annotation": null}], [{"text": "With", "start": 604, "end": 608, "annotation": null}, {"text": "the", "start": 609, "end": 612, "annotation": null}, {"text": "increase", "start": 613, "end": 621, "annotation": null}, {"text": "of", "start": 622, "end": 624, "annotation": null}, {"text": "Pd", "start": 625, "end": 627, "annotation": null}, {"text": "coverages", "start": 628, "end": 637, "annotation": null}, {"text": ",", "start": 637, "end": 638, "annotation": null}, {"text": "the", "start": 639, "end": 642, "annotation": null}, {"text": "energy", "start": 643, "end": 649, "annotation": null}, {"text": "barriers", "start": 650, "end": 658, "annotation": null}, {"text": "increase", "start": 659, "end": 667, "annotation": null}, {"text": "in", "start": 668, "end": 670, "annotation": null}, {"text": "the", "start": 671, "end": 674, "annotation": null}, {"text": "rate", "start": 675, "end": 679, "annotation": null}, {"text": "determining", "start": 680, "end": 691, "annotation": null}, {"text": "step", "start": 692, "end": 696, "annotation": null}, {"text": ",", "start": 696, "end": 697, "annotation": null}, {"text": "which", "start": 698, "end": 703, "annotation": null}, {"text": "are", "start": 704, "end": 707, "annotation": null}, {"text": "0.39", "start": 708, "end": 712, "annotation": null}, {"text": "eV", "start": 712, "end": 714, "annotation": null}, {"text": ",", "start": 714, "end": 715, "annotation": null}, {"text": "0.63", "start": 716, "end": 720, "annotation": null}, {"text": "eV", "start": 720, "end": 722, "annotation": null}, {"text": ",", "start": 722, "end": 723, "annotation": null}, {"text": "0.68", "start": 724, "end": 728, "annotation": null}, {"text": "eV", "start": 728, "end": 730, "annotation": null}, {"text": "and", "start": 731, "end": 734, "annotation": null}, {"text": "2.61", "start": 735, "end": 739, "annotation": null}, {"text": "eV", "start": 739, "end": 741, "annotation": null}, {"text": "for", "start": 742, "end": 745, "annotation": null}, {"text": "Pdx", "start": 746, "end": 749, "annotation": null}, {"text": "/", "start": 749, "end": 750, "annotation": null}, {"text": "g-C3N4", "start": 750, "end": 756, "annotation": null}, {"text": "(", "start": 757, "end": 758, "annotation": null}, {"text": "x", "start": 758, "end": 759, "annotation": null}, {"text": "=", "start": 759, "end": 760, "annotation": null}, {"text": "1", "start": 760, "end": 761, "annotation": null}, {"text": "\u2013", "start": 761, "end": 762, "annotation": null}, {"text": "4", "start": 762, "end": 763, "annotation": null}, {"text": ")", "start": 763, "end": 764, "annotation": null}, {"text": ",", "start": 764, "end": 765, "annotation": null}, {"text": "respectively", "start": 766, "end": 778, "annotation": null}, {"text": ".", "start": 778, "end": 779, "annotation": null}], [{"text": "This", "start": 780, "end": 784, "annotation": null}, {"text": "implies", "start": 785, "end": 792, "annotation": null}, {"text": "that", "start": 793, "end": 797, "annotation": null}, {"text": "Pdx", "start": 798, "end": 801, "annotation": "DOPANT"}, {"text": "/", "start": 801, "end": 802, "annotation": null}, {"text": "g-C3N4", "start": 802, "end": 808, "annotation": "BASEMAT"}, {"text": "(", "start": 809, "end": 810, "annotation": null}, {"text": "x", "start": 810, "end": 811, "annotation": null}, {"text": "=", "start": 811, "end": 812, "annotation": null}, {"text": "1", "start": 812, "end": 813, "annotation": null}, {"text": "\u2013", "start": 813, "end": 814, "annotation": null}, {"text": "3", "start": 814, "end": 815, "annotation": null}, {"text": ")", "start": 815, "end": 816, "annotation": null}, {"text": "have", "start": 817, "end": 821, "annotation": null}, {"text": "lower", "start": 822, "end": 827, "annotation": null}, {"text": "energy", "start": 828, "end": 834, "annotation": null}, {"text": "barrier", "start": 835, "end": 842, "annotation": null}, {"text": "than", "start": 843, "end": 847, "annotation": null}, {"text": "Pt", "start": 848, "end": 850, "annotation": null}, {"text": "(", "start": 851, "end": 852, "annotation": null}, {"text": "calculated", "start": 852, "end": 862, "annotation": null}, {"text": "value", "start": 863, "end": 868, "annotation": null}, {"text": "0.80", "start": 869, "end": 873, "annotation": null}, {"text": "eV", "start": 873, "end": 875, "annotation": null}, {"text": ")", "start": 875, "end": 876, "annotation": null}, {"text": ",", "start": 876, "end": 877, "annotation": null}, {"text": "showing", "start": 878, "end": 885, "annotation": null}, {"text": "high", "start": 886, "end": 890, "annotation": null}, {"text": "ORR", "start": 891, "end": 894, "annotation": null}, {"text": "activity", "start": 895, "end": 903, "annotation": null}, {"text": "compared", "start": 904, "end": 912, "annotation": null}, {"text": "with", "start": 913, "end": 917, "annotation": null}, {"text": "Pt", "start": 918, "end": 920, "annotation": null}, {"text": ".", "start": 920, "end": 921, "annotation": null}], [{"text": "The", "start": 922, "end": 925, "annotation": null}, {"text": "oxidized", "start": 926, "end": 934, "annotation": null}, {"text": "Pd2", "start": 935, "end": 938, "annotation": "DOPANT"}, {"text": "/", "start": 938, "end": 939, "annotation": null}, {"text": "g-C3N4", "start": 939, "end": 945, "annotation": "BASEMAT"}, {"text": "(", "start": 946, "end": 947, "annotation": null}, {"text": "i.e.", "start": 947, "end": 951, "annotation": null}, {"text": ",", "start": 951, "end": 952, "annotation": null}, {"text": "Pd2", "start": 953, "end": 956, "annotation": "DOPANT"}, {"text": "/", "start": 956, "end": 957, "annotation": null}, {"text": "g-C3N4\u2212O", "start": 957, "end": 965, "annotation": "BASEMAT"}, {"text": ")", "start": 965, "end": 966, "annotation": null}, {"text": "shows", "start": 967, "end": 972, "annotation": null}, {"text": "similar", "start": 973, "end": 980, "annotation": null}, {"text": "ORR", "start": 981, "end": 984, "annotation": null}, {"text": "activity", "start": 985, "end": 993, "annotation": null}, {"text": "to", "start": 994, "end": 996, "annotation": null}, {"text": "Pd2", "start": 997, "end": 1000, "annotation": "DOPANT"}, {"text": "/", "start": 1000, "end": 1001, "annotation": null}, {"text": "g-C3N4", "start": 1001, "end": 1007, "annotation": "BASEMAT"}, {"text": ",", "start": 1007, "end": 1008, "annotation": null}, {"text": "but", "start": 1009, "end": 1012, "annotation": null}, {"text": "with", "start": 1013, "end": 1017, "annotation": null}, {"text": "different", "start": 1018, "end": 1027, "annotation": null}, {"text": "rate", "start": 1028, "end": 1032, "annotation": null}, {"text": "determining", "start": 1033, "end": 1044, "annotation": null}, {"text": "step", "start": 1045, "end": 1049, "annotation": null}, {"text": ".", "start": 1049, "end": 1050, "annotation": null}], [{"text": "The", "start": 1051, "end": 1054, "annotation": null}, {"text": "working", "start": 1055, "end": 1062, "annotation": null}, {"text": "potentials", "start": 1063, "end": 1073, "annotation": null}, {"text": "are", "start": 1074, "end": 1077, "annotation": null}, {"text": "also", "start": 1078, "end": 1082, "annotation": null}, {"text": "discussed", "start": 1083, "end": 1092, "annotation": null}, {"text": "for", "start": 1093, "end": 1096, "annotation": null}, {"text": "the", "start": 1097, "end": 1100, "annotation": null}, {"text": "studied", "start": 1101, "end": 1108, "annotation": null}, {"text": "catalysts", "start": 1109, "end": 1118, "annotation": null}, {"text": ".", "start": 1118, "end": 1119, "annotation": null}], [{"text": "Especially", "start": 1120, "end": 1130, "annotation": null}, {"text": ",", "start": 1130, "end": 1131, "annotation": null}, {"text": "the", "start": 1132, "end": 1135, "annotation": null}, {"text": "working", "start": 1136, "end": 1143, "annotation": null}, {"text": "potential", "start": 1144, "end": 1153, "annotation": null}, {"text": "for", "start": 1154, "end": 1157, "annotation": null}, {"text": "Pd2", "start": 1158, "end": 1161, "annotation": "DOPANT"}, {"text": "/", "start": 1161, "end": 1162, "annotation": null}, {"text": "g-C3N4", "start": 1162, "end": 1168, "annotation": "BASEMAT"}, {"text": "is", "start": 1169, "end": 1171, "annotation": null}, {"text": "up", "start": 1172, "end": 1174, "annotation": null}, {"text": "to", "start": 1175, "end": 1177, "annotation": null}, {"text": "0.60", "start": 1178, "end": 1182, "annotation": null}, {"text": "V", "start": 1182, "end": 1183, "annotation": null}, {"text": ",", "start": 1183, "end": 1184, "annotation": null}, {"text": "comparable", "start": 1185, "end": 1195, "annotation": null}, {"text": "to", "start": 1196, "end": 1198, "annotation": null}, {"text": "calculated", "start": 1199, "end": 1209, "annotation": null}, {"text": "value", "start": 1210, "end": 1215, "annotation": null}, {"text": "0.73", "start": 1216, "end": 1220, "annotation": null}, {"text": "V", "start": 1220, "end": 1221, "annotation": null}, {"text": "for", "start": 1222, "end": 1225, "annotation": null}, {"text": "Pt", "start": 1226, "end": 1228, "annotation": "DOPANT"}, {"text": "/", "start": 1228, "end": 1229, "annotation": null}, {"text": "Cu(100)", "start": 1229, "end": 1236, "annotation": "BASEMAT"}, {"text": ".", "start": 1236, "end": 1237, "annotation": null}]], "meta": {"doi": "10.1016/j.carbon.2016.12.061"}} {"text": "In this work, we present photoluminescence characterization of rare earth ion doped nanoporous aluminum oxide synthesized by anodization process in different aqueous electrolyte solutions. We found that the luminescence of doped aluminum oxide strongly depends on the synthesis medium. When synthesized in inorganic acid only rare earth ions fluorescence is present, whereas nanoporous aluminum oxide synthesized in organic solvent presents two strong unexpected luminescence emission lines, one at 429nm and the other at 491nm, with quite long decay time when excited with long wavelength ultraviolet light. Theses results suggest that light simulation of primary colors and chromaticity control of the emitted light can be achieved by carefully doping aluminum oxide nanoporous with a combination of different rare earth ions.", "meta": {"doi": "10.1016/j.mseb.2004.05.039"}, "_input_hash": -515582764, "_task_hash": 370682389, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "work", "start": 8, "end": 12, "id": 2, "annotation": null}, {"text": ",", "start": 13, "end": 14, "id": 3, "annotation": null}, {"text": "we", "start": 15, "end": 17, "id": 4, "annotation": null}, {"text": "present", "start": 18, "end": 25, "id": 5, "annotation": null}, {"text": "photoluminescence", "start": 26, "end": 43, "id": 6, "annotation": null}, {"text": "characterization", "start": 44, "end": 60, "id": 7, "annotation": null}, {"text": "of", "start": 61, "end": 63, "id": 8, "annotation": null}, {"text": "rare", "start": 64, "end": 68, "id": 9, "annotation": "DOPANT"}, {"text": "earth", "start": 69, "end": 74, "id": 10, "annotation": null}, {"text": "ion", "start": 75, "end": 78, "id": 11, "annotation": "DOPANT"}, {"text": "doped", "start": 79, "end": 84, "id": 12, "annotation": null}, {"text": "nanoporous", "start": 85, "end": 95, "id": 13, "annotation": null}, {"text": "aluminum", "start": 96, "end": 104, "id": 14, "annotation": "BASEMAT"}, {"text": "oxide", "start": 105, "end": 110, "id": 15, "annotation": "BASEMAT"}, {"text": "synthesized", "start": 111, "end": 122, "id": 16, "annotation": null}, {"text": "by", "start": 123, "end": 125, "id": 17, "annotation": null}, {"text": "anodization", "start": 126, "end": 137, "id": 18, "annotation": null}, {"text": "process", "start": 138, "end": 145, "id": 19, "annotation": null}, {"text": "in", "start": 146, "end": 148, "id": 20, "annotation": null}, {"text": "different", "start": 149, "end": 158, "id": 21, "annotation": null}, {"text": "aqueous", "start": 159, "end": 166, "id": 22, "annotation": null}, {"text": "electrolyte", "start": 167, "end": 178, "id": 23, "annotation": null}, {"text": "solutions", "start": 179, "end": 188, "id": 24, "annotation": null}, {"text": ".", "start": 189, "end": 190, "id": 25, "annotation": null}], [{"text": "We", "start": 191, "end": 193, "id": 26, "annotation": null}, {"text": "found", "start": 194, "end": 199, "id": 27, "annotation": null}, {"text": "that", "start": 200, "end": 204, "id": 28, "annotation": null}, {"text": "the", "start": 205, "end": 208, "id": 29, "annotation": null}, {"text": "luminescence", "start": 209, "end": 221, "id": 30, "annotation": null}, {"text": "of", "start": 222, "end": 224, "id": 31, "annotation": null}, {"text": "doped", "start": 225, "end": 230, "id": 32, "annotation": null}, {"text": "aluminum", "start": 231, "end": 239, "id": 33, "annotation": "BASEMAT"}, {"text": "oxide", "start": 240, "end": 245, "id": 34, "annotation": "BASEMAT"}, {"text": "strongly", "start": 246, "end": 254, "id": 35, "annotation": null}, {"text": "depends", "start": 255, "end": 262, "id": 36, "annotation": null}, {"text": "on", "start": 263, "end": 265, "id": 37, "annotation": null}, {"text": "the", "start": 266, "end": 269, "id": 38, "annotation": null}, {"text": "synthesis", "start": 270, "end": 279, "id": 39, "annotation": null}, {"text": "medium", "start": 280, "end": 286, "id": 40, "annotation": null}, {"text": ".", "start": 287, "end": 288, "id": 41, "annotation": null}], [{"text": "When", "start": 289, "end": 293, "id": 42, "annotation": null}, {"text": "synthesized", "start": 294, "end": 305, "id": 43, "annotation": null}, {"text": "in", "start": 306, "end": 308, "id": 44, "annotation": null}, {"text": "inorganic", "start": 309, "end": 318, "id": 45, "annotation": null}, {"text": "acid", "start": 319, "end": 323, "id": 46, "annotation": null}, {"text": "only", "start": 324, "end": 328, "id": 47, "annotation": null}, {"text": "rare", "start": 329, "end": 333, "id": 48, "annotation": null}, {"text": "earth", "start": 334, "end": 339, "id": 49, "annotation": null}, {"text": "ions", "start": 340, "end": 344, "id": 50, "annotation": null}, {"text": "fluorescence", "start": 345, "end": 357, "id": 51, "annotation": null}, {"text": "is", "start": 358, "end": 360, "id": 52, "annotation": null}, {"text": "present", "start": 361, "end": 368, "id": 53, "annotation": null}, {"text": ",", "start": 369, "end": 370, "id": 54, "annotation": null}, {"text": "whereas", "start": 371, "end": 378, "id": 55, "annotation": null}, {"text": "nanoporous", "start": 379, "end": 389, "id": 56, "annotation": null}, {"text": "aluminum", "start": 390, "end": 398, "id": 57, "annotation": null}, {"text": "oxide", "start": 399, "end": 404, "id": 58, "annotation": null}, {"text": "synthesized", "start": 405, "end": 416, "id": 59, "annotation": null}, {"text": "in", "start": 417, "end": 419, "id": 60, "annotation": null}, {"text": "organic", "start": 420, "end": 427, "id": 61, "annotation": null}, {"text": "solvent", "start": 428, "end": 435, "id": 62, "annotation": null}, {"text": "presents", "start": 436, "end": 444, "id": 63, "annotation": null}, {"text": "two", "start": 445, "end": 448, "id": 64, "annotation": null}, {"text": "strong", "start": 449, "end": 455, "id": 65, "annotation": null}, {"text": "unexpected", "start": 456, "end": 466, "id": 66, "annotation": null}, {"text": "luminescence", "start": 467, "end": 479, "id": 67, "annotation": null}, {"text": "emission", "start": 480, "end": 488, "id": 68, "annotation": null}, {"text": "lines", "start": 489, "end": 494, "id": 69, "annotation": null}, {"text": ",", "start": 495, "end": 496, "id": 70, "annotation": null}, {"text": "one", "start": 497, "end": 500, "id": 71, "annotation": null}, {"text": "at", "start": 501, "end": 503, "id": 72, "annotation": null}, {"text": "429", "start": 504, "end": 507, "id": 73, "annotation": null}, {"text": "nm", "start": 508, "end": 510, "id": 74, "annotation": null}, {"text": "and", "start": 511, "end": 514, "id": 75, "annotation": null}, {"text": "the", "start": 515, "end": 518, "id": 76, "annotation": null}, {"text": "other", "start": 519, "end": 524, "id": 77, "annotation": null}, {"text": "at", "start": 525, "end": 527, "id": 78, "annotation": null}, {"text": "491", "start": 528, "end": 531, "id": 79, "annotation": null}, {"text": "nm", "start": 532, "end": 534, "id": 80, "annotation": null}, {"text": ",", "start": 535, "end": 536, "id": 81, "annotation": null}, {"text": "with", "start": 537, "end": 541, "id": 82, "annotation": null}, {"text": "quite", "start": 542, "end": 547, "id": 83, "annotation": null}, {"text": "long", "start": 548, "end": 552, "id": 84, "annotation": null}, {"text": "decay", "start": 553, "end": 558, "id": 85, "annotation": null}, {"text": "time", "start": 559, "end": 563, "id": 86, "annotation": null}, {"text": "when", "start": 564, "end": 568, "id": 87, "annotation": null}, {"text": "excited", "start": 569, "end": 576, "id": 88, "annotation": null}, {"text": "with", "start": 577, "end": 581, "id": 89, "annotation": null}, {"text": "long", "start": 582, "end": 586, "id": 90, "annotation": null}, {"text": "wavelength", "start": 587, "end": 597, "id": 91, "annotation": null}, {"text": "ultraviolet", "start": 598, "end": 609, "id": 92, "annotation": null}, {"text": "light", "start": 610, "end": 615, "id": 93, "annotation": null}, {"text": ".", "start": 616, "end": 617, "id": 94, "annotation": null}], [{"text": "These", "start": 618, "end": 623, "id": 95, "annotation": null}, {"text": "s", "start": 624, "end": 625, "id": 96, "annotation": null}, {"text": "results", "start": 626, "end": 633, "id": 97, "annotation": null}, {"text": "suggest", "start": 634, "end": 641, "id": 98, "annotation": null}, {"text": "that", "start": 642, "end": 646, "id": 99, "annotation": null}, {"text": "light", "start": 647, "end": 652, "id": 100, "annotation": null}, {"text": "simulation", "start": 653, "end": 663, "id": 101, "annotation": null}, {"text": "of", "start": 664, "end": 666, "id": 102, "annotation": null}, {"text": "primary", "start": 667, "end": 674, "id": 103, "annotation": null}, {"text": "colors", "start": 675, "end": 681, "id": 104, "annotation": null}, {"text": "and", "start": 682, "end": 685, "id": 105, "annotation": null}, {"text": "chromaticity", "start": 686, "end": 698, "id": 106, "annotation": null}, {"text": "control", "start": 699, "end": 706, "id": 107, "annotation": null}, {"text": "of", "start": 707, "end": 709, "id": 108, "annotation": null}, {"text": "the", "start": 710, "end": 713, "id": 109, "annotation": null}, {"text": "emitted", "start": 714, "end": 721, "id": 110, "annotation": null}, {"text": "light", "start": 722, "end": 727, "id": 111, "annotation": null}, {"text": "can", "start": 728, "end": 731, "id": 112, "annotation": null}, {"text": "be", "start": 732, "end": 734, "id": 113, "annotation": null}, {"text": "achieved", "start": 735, "end": 743, "id": 114, "annotation": null}, {"text": "by", "start": 744, "end": 746, "id": 115, "annotation": null}, {"text": "carefully", "start": 747, "end": 756, "id": 116, "annotation": null}, {"text": "doping", "start": 757, "end": 763, "id": 117, "annotation": null}, {"text": "aluminum", "start": 764, "end": 772, "id": 118, "annotation": "BASEMAT"}, {"text": "oxide", "start": 773, "end": 778, "id": 119, "annotation": "BASEMAT"}, {"text": "nanoporous", "start": 779, "end": 789, "id": 120, "annotation": null}, {"text": "with", "start": 790, "end": 794, "id": 121, "annotation": null}, {"text": "a", "start": 795, "end": 796, "id": 122, "annotation": null}, {"text": "combination", "start": 797, "end": 808, "id": 123, "annotation": null}, {"text": "of", "start": 809, "end": 811, "id": 124, "annotation": null}, {"text": "different", "start": 812, "end": 821, "id": 125, "annotation": null}, {"text": "rare", "start": 822, "end": 826, "id": 126, "annotation": "DOPANT"}, {"text": "earth", "start": 827, "end": 832, "id": 127, "annotation": null}, {"text": "ions", "start": 833, "end": 837, "id": 128, "annotation": "DOPANT"}, {"text": ".", "start": 838, "end": 839, "id": 129, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Er3+/Yb3+ co-doped transparent glass ceramics containing Na3.6Y1.8(PO4)3 crystals were prepared by high-temperature melting and subsequent heat treatment the precursor glass, and their up-conversion luminescent properties were investigated. The optimum heat treatment condition of glass at 630 \u00b0C for 2 h were determined by a series of experimental results, and confirmed the existence of Na3.6Y1.8(PO4)3 crystals in glass ceramics. The up-conversion luminescence spectra of the glass ceramic samples under pulsed excitation at 980 nm revealed luminescence bands corresponding to Er3+ ion transitions in the green (4F7/2-4I15/2, 2H12/2-4I15/2,4S3/2-4I15/2) and red (4F9/2 - 4I15/2) spectral regions. The fluorescence spectra reaches a maximum when the molar ratio of Er2O3 to Yb2O3 is 1:7. Luminescence quantum yield of the samples was measured by using an integrating sphere. The transmission spectra proved that the glass ceramics sample still maintained a high transparency up to 83% in the visible region.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Er3+", "start": 0, "end": 4, "annotation": "DOPANT"}, {"text": "/", "start": 4, "end": 5, "annotation": null}, {"text": "Yb3+", "start": 5, "end": 9, "annotation": "DOPANT"}, {"text": "co-doped", "start": 10, "end": 18, "annotation": null}, {"text": "transparent", "start": 19, "end": 30, "annotation": null}, {"text": "glass", "start": 31, "end": 36, "annotation": null}, {"text": "ceramics", "start": 37, "end": 45, "annotation": null}, {"text": "containing", "start": 46, "end": 56, "annotation": null}, {"text": "Na3.6Y1.8(PO4)3", "start": 57, "end": 72, "annotation": "BASEMAT"}, {"text": "crystals", "start": 73, "end": 81, "annotation": null}, {"text": "were", "start": 82, "end": 86, "annotation": null}, {"text": "prepared", "start": 87, "end": 95, "annotation": null}, {"text": "by", "start": 96, "end": 98, "annotation": null}, {"text": "high", "start": 99, "end": 103, "annotation": null}, {"text": "-", "start": 103, "end": 104, "annotation": null}, {"text": "temperature", "start": 104, "end": 115, "annotation": null}, {"text": "melting", "start": 116, "end": 123, "annotation": null}, {"text": "and", "start": 124, "end": 127, "annotation": null}, {"text": "subsequent", "start": 128, "end": 138, "annotation": null}, {"text": "heat", "start": 139, "end": 143, "annotation": null}, {"text": "treatment", "start": 144, "end": 153, "annotation": null}, {"text": "the", "start": 154, "end": 157, "annotation": null}, {"text": "precursor", "start": 158, "end": 167, "annotation": null}, {"text": "glass", "start": 168, "end": 173, "annotation": null}, {"text": ",", "start": 173, "end": 174, "annotation": null}, {"text": "and", "start": 175, "end": 178, "annotation": null}, {"text": "their", "start": 179, "end": 184, "annotation": null}, {"text": "up", "start": 185, "end": 187, "annotation": null}, {"text": "-", "start": 187, "end": 188, "annotation": null}, {"text": "conversion", "start": 188, "end": 198, "annotation": null}, {"text": "luminescent", "start": 199, "end": 210, "annotation": null}, {"text": "properties", "start": 211, "end": 221, "annotation": null}, {"text": "were", "start": 222, "end": 226, "annotation": null}, {"text": "investigated", "start": 227, "end": 239, "annotation": null}, {"text": ".", "start": 239, "end": 240, "annotation": null}], [{"text": "The", "start": 241, "end": 244, "annotation": null}, {"text": "optimum", "start": 245, "end": 252, "annotation": null}, {"text": "heat", "start": 253, "end": 257, "annotation": null}, {"text": "treatment", "start": 258, "end": 267, "annotation": null}, {"text": "condition", "start": 268, "end": 277, "annotation": null}, {"text": "of", "start": 278, "end": 280, "annotation": null}, {"text": "glass", "start": 281, "end": 286, "annotation": null}, {"text": "at", "start": 287, "end": 289, "annotation": null}, {"text": "630", "start": 290, "end": 293, "annotation": null}, {"text": "\u00b0", "start": 294, "end": 295, "annotation": null}, {"text": "C", "start": 295, "end": 296, "annotation": null}, {"text": "for", "start": 297, "end": 300, "annotation": null}, {"text": "2", "start": 301, "end": 302, "annotation": null}, {"text": "h", "start": 303, "end": 304, "annotation": null}, {"text": "were", "start": 305, "end": 309, "annotation": null}, {"text": "determined", "start": 310, "end": 320, "annotation": null}, {"text": "by", "start": 321, "end": 323, "annotation": null}, {"text": "a", "start": 324, "end": 325, "annotation": null}, {"text": "series", "start": 326, "end": 332, "annotation": null}, {"text": "of", "start": 333, "end": 335, "annotation": null}, {"text": "experimental", "start": 336, "end": 348, "annotation": null}, {"text": "results", "start": 349, "end": 356, "annotation": null}, {"text": ",", "start": 356, "end": 357, "annotation": null}, {"text": "and", "start": 358, "end": 361, "annotation": null}, {"text": "confirmed", "start": 362, "end": 371, "annotation": null}, {"text": "the", "start": 372, "end": 375, "annotation": null}, {"text": "existence", "start": 376, "end": 385, "annotation": null}, {"text": "of", "start": 386, "end": 388, "annotation": null}, {"text": "Na3.6Y1.8(PO4)3", "start": 389, "end": 404, "annotation": null}, {"text": "crystals", "start": 405, "end": 413, "annotation": null}, {"text": "in", "start": 414, "end": 416, "annotation": null}, {"text": "glass", "start": 417, "end": 422, "annotation": null}, {"text": "ceramics", "start": 423, "end": 431, "annotation": null}, {"text": ".", "start": 431, "end": 432, "annotation": null}], [{"text": "The", "start": 433, "end": 436, "annotation": null}, {"text": "up", "start": 437, "end": 439, "annotation": null}, {"text": "-", "start": 439, "end": 440, "annotation": null}, {"text": "conversion", "start": 440, "end": 450, "annotation": null}, {"text": "luminescence", "start": 451, "end": 463, "annotation": null}, {"text": "spectra", "start": 464, "end": 471, "annotation": null}, {"text": "of", "start": 472, "end": 474, "annotation": null}, {"text": "the", "start": 475, "end": 478, "annotation": null}, {"text": "glass", "start": 479, "end": 484, "annotation": null}, {"text": "ceramic", "start": 485, "end": 492, "annotation": null}, {"text": "samples", "start": 493, "end": 500, "annotation": null}, {"text": "under", "start": 501, "end": 506, "annotation": null}, {"text": "pulsed", "start": 507, "end": 513, "annotation": null}, {"text": "excitation", "start": 514, "end": 524, "annotation": null}, {"text": "at", "start": 525, "end": 527, "annotation": null}, {"text": "980", "start": 528, "end": 531, "annotation": null}, {"text": "nm", "start": 532, "end": 534, "annotation": null}, {"text": "revealed", "start": 535, "end": 543, "annotation": null}, {"text": "luminescence", "start": 544, "end": 556, "annotation": null}, {"text": "bands", "start": 557, "end": 562, "annotation": null}, {"text": "corresponding", "start": 563, "end": 576, "annotation": null}, {"text": "to", "start": 577, "end": 579, "annotation": null}, {"text": "Er3+", "start": 580, "end": 584, "annotation": null}, {"text": "ion", "start": 585, "end": 588, "annotation": null}, {"text": "transitions", "start": 589, "end": 600, "annotation": null}, {"text": "in", "start": 601, "end": 603, "annotation": null}, {"text": "the", "start": 604, "end": 607, "annotation": null}, {"text": "green", "start": 608, "end": 613, "annotation": null}, {"text": "(", "start": 614, "end": 615, "annotation": null}, {"text": "4F7", "start": 615, "end": 618, "annotation": null}, {"text": "/", "start": 618, "end": 619, "annotation": null}, {"text": "2-4I15", "start": 619, "end": 625, "annotation": null}, {"text": "/", "start": 625, "end": 626, "annotation": null}, {"text": "2", "start": 626, "end": 627, "annotation": null}, {"text": ",", "start": 627, "end": 628, "annotation": null}, {"text": "2H12", "start": 629, "end": 633, "annotation": null}, {"text": "/", "start": 633, "end": 634, "annotation": null}, {"text": "2-4I15", "start": 634, "end": 640, "annotation": null}, {"text": "/", "start": 640, "end": 641, "annotation": null}, {"text": "2,4S3", "start": 641, "end": 646, "annotation": null}, {"text": "/", "start": 646, "end": 647, "annotation": null}, {"text": "2-4I15", "start": 647, "end": 653, "annotation": null}, {"text": "/", "start": 653, "end": 654, "annotation": null}, {"text": "2", "start": 654, "end": 655, "annotation": null}, {"text": ")", "start": 655, "end": 656, "annotation": null}, {"text": "and", "start": 657, "end": 660, "annotation": null}, {"text": "red", "start": 661, "end": 664, "annotation": null}, {"text": "(", "start": 665, "end": 666, "annotation": null}, {"text": "4F9", "start": 666, "end": 669, "annotation": null}, {"text": "/", "start": 669, "end": 670, "annotation": null}, {"text": "2", "start": 670, "end": 671, "annotation": null}, {"text": "-", "start": 672, "end": 673, "annotation": null}, {"text": "4I15", "start": 674, "end": 678, "annotation": null}, {"text": "/", "start": 678, "end": 679, "annotation": null}, {"text": "2", "start": 679, "end": 680, "annotation": null}, {"text": ")", "start": 680, "end": 681, "annotation": null}, {"text": "spectral", "start": 682, "end": 690, "annotation": null}, {"text": "regions", "start": 691, "end": 698, "annotation": null}, {"text": ".", "start": 698, "end": 699, "annotation": null}], [{"text": "The", "start": 700, "end": 703, "annotation": null}, {"text": "fluorescence", "start": 704, "end": 716, "annotation": null}, {"text": "spectra", "start": 717, "end": 724, "annotation": null}, {"text": "reaches", "start": 725, "end": 732, "annotation": null}, {"text": "a", "start": 733, "end": 734, "annotation": null}, {"text": "maximum", "start": 735, "end": 742, "annotation": null}, {"text": "when", "start": 743, "end": 747, "annotation": null}, {"text": "the", "start": 748, "end": 751, "annotation": null}, {"text": "molar", "start": 752, "end": 757, "annotation": null}, {"text": "ratio", "start": 758, "end": 763, "annotation": null}, {"text": "of", "start": 764, "end": 766, "annotation": null}, {"text": "Er2O3", "start": 767, "end": 772, "annotation": null}, {"text": "to", "start": 773, "end": 775, "annotation": null}, {"text": "Yb2O3", "start": 776, "end": 781, "annotation": null}, {"text": "is", "start": 782, "end": 784, "annotation": null}, {"text": "1", "start": 785, "end": 786, "annotation": null}, {"text": ":", "start": 786, "end": 787, "annotation": null}, {"text": "7", "start": 787, "end": 788, "annotation": null}, {"text": ".", "start": 788, "end": 789, "annotation": null}], [{"text": "Luminescence", "start": 790, "end": 802, "annotation": null}, {"text": "quantum", "start": 803, "end": 810, "annotation": null}, {"text": "yield", "start": 811, "end": 816, "annotation": null}, {"text": "of", "start": 817, "end": 819, "annotation": null}, {"text": "the", "start": 820, "end": 823, "annotation": null}, {"text": "samples", "start": 824, "end": 831, "annotation": null}, {"text": "was", "start": 832, "end": 835, "annotation": null}, {"text": "measured", "start": 836, "end": 844, "annotation": null}, {"text": "by", "start": 845, "end": 847, "annotation": null}, {"text": "using", "start": 848, "end": 853, "annotation": null}, {"text": "an", "start": 854, "end": 856, "annotation": null}, {"text": "integrating", "start": 857, "end": 868, "annotation": null}, {"text": "sphere", "start": 869, "end": 875, "annotation": null}, {"text": ".", "start": 875, "end": 876, "annotation": null}], [{"text": "The", "start": 877, "end": 880, "annotation": null}, {"text": "transmission", "start": 881, "end": 893, "annotation": null}, {"text": "spectra", "start": 894, "end": 901, "annotation": null}, {"text": "proved", "start": 902, "end": 908, "annotation": null}, {"text": "that", "start": 909, "end": 913, "annotation": null}, {"text": "the", "start": 914, "end": 917, "annotation": null}, {"text": "glass", "start": 918, "end": 923, "annotation": null}, {"text": "ceramics", "start": 924, "end": 932, "annotation": null}, {"text": "sample", "start": 933, "end": 939, "annotation": null}, {"text": "still", "start": 940, "end": 945, "annotation": null}, {"text": "maintained", "start": 946, "end": 956, "annotation": null}, {"text": "a", "start": 957, "end": 958, "annotation": null}, {"text": "high", "start": 959, "end": 963, "annotation": null}, {"text": "transparency", "start": 964, "end": 976, "annotation": null}, {"text": "up", "start": 977, "end": 979, "annotation": null}, {"text": "to", "start": 980, "end": 982, "annotation": null}, {"text": "83", "start": 983, "end": 985, "annotation": null}, {"text": "%", "start": 985, "end": 986, "annotation": null}, {"text": "in", "start": 987, "end": 989, "annotation": null}, {"text": "the", "start": 990, "end": 993, "annotation": null}, {"text": "visible", "start": 994, "end": 1001, "annotation": null}, {"text": "region", "start": 1002, "end": 1008, "annotation": null}, {"text": ".", "start": 1008, "end": 1009, "annotation": null}]]} -{"remark": "doping_annt3", "text": "The energy subbands in pseudomorphic p-type Si/Si1\u2212 xGe x /Si quantum wells are calculated within the multiband effective-mass approximation that describes the heavy, light and split-off hole valence bands. We examine the intersubband transitions in this system and the selection rules are obtained for a light polarization vector parallel or perpendicular to the growth direction. Comparison is made with other theories and experiment.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "energy", "start": 4, "end": 10, "annotation": null}, {"text": "subbands", "start": 11, "end": 19, "annotation": null}, {"text": "in", "start": 20, "end": 22, "annotation": null}, {"text": "pseudomorphic", "start": 23, "end": 36, "annotation": null}, {"text": "p", "start": 37, "end": 38, "annotation": "DOPANT"}, {"text": "-", "start": 38, "end": 39, "annotation": "DOPANT"}, {"text": "type", "start": 39, "end": 43, "annotation": "DOPANT"}, {"text": "Si", "start": 44, "end": 46, "annotation": "BASEMAT"}, {"text": "/", "start": 46, "end": 47, "annotation": "BASEMAT"}, {"text": "Si1\u2212", "start": 47, "end": 51, "annotation": "BASEMAT"}, {"text": "xGe", "start": 52, "end": 55, "annotation": "BASEMAT"}, {"text": "x", "start": 56, "end": 57, "annotation": "BASEMAT"}, {"text": "/", "start": 58, "end": 59, "annotation": "BASEMAT"}, {"text": "Si", "start": 59, "end": 61, "annotation": "BASEMAT"}, {"text": "quantum", "start": 62, "end": 69, "annotation": null}, {"text": "wells", "start": 70, "end": 75, "annotation": null}, {"text": "are", "start": 76, "end": 79, "annotation": null}, {"text": "calculated", "start": 80, "end": 90, "annotation": null}, {"text": "within", "start": 91, "end": 97, "annotation": null}, {"text": "the", "start": 98, "end": 101, "annotation": null}, {"text": "multiband", "start": 102, "end": 111, "annotation": null}, {"text": "effective", "start": 112, "end": 121, "annotation": null}, {"text": "-", "start": 121, "end": 122, "annotation": null}, {"text": "mass", "start": 122, "end": 126, "annotation": null}, {"text": "approximation", "start": 127, "end": 140, "annotation": null}, {"text": "that", "start": 141, "end": 145, "annotation": null}, {"text": "describes", "start": 146, "end": 155, "annotation": null}, {"text": "the", "start": 156, "end": 159, "annotation": null}, {"text": "heavy", "start": 160, "end": 165, "annotation": null}, {"text": ",", "start": 165, "end": 166, "annotation": null}, {"text": "light", "start": 167, "end": 172, "annotation": null}, {"text": "and", "start": 173, "end": 176, "annotation": null}, {"text": "split", "start": 177, "end": 182, "annotation": null}, {"text": "-", "start": 182, "end": 183, "annotation": null}, {"text": "off", "start": 183, "end": 186, "annotation": null}, {"text": "hole", "start": 187, "end": 191, "annotation": null}, {"text": "valence", "start": 192, "end": 199, "annotation": null}, {"text": "bands", "start": 200, "end": 205, "annotation": null}, {"text": ".", "start": 205, "end": 206, "annotation": null}], [{"text": "We", "start": 207, "end": 209, "annotation": null}, {"text": "examine", "start": 210, "end": 217, "annotation": null}, {"text": "the", "start": 218, "end": 221, "annotation": null}, {"text": "intersubband", "start": 222, "end": 234, "annotation": null}, {"text": "transitions", "start": 235, "end": 246, "annotation": null}, {"text": "in", "start": 247, "end": 249, "annotation": null}, {"text": "this", "start": 250, "end": 254, "annotation": null}, {"text": "system", "start": 255, "end": 261, "annotation": null}, {"text": "and", "start": 262, "end": 265, "annotation": null}, {"text": "the", "start": 266, "end": 269, "annotation": null}, {"text": "selection", "start": 270, "end": 279, "annotation": null}, {"text": "rules", "start": 280, "end": 285, "annotation": null}, {"text": "are", "start": 286, "end": 289, "annotation": null}, {"text": "obtained", "start": 290, "end": 298, "annotation": null}, {"text": "for", "start": 299, "end": 302, "annotation": null}, {"text": "a", "start": 303, "end": 304, "annotation": null}, {"text": "light", "start": 305, "end": 310, "annotation": null}, {"text": "polarization", "start": 311, "end": 323, "annotation": null}, {"text": "vector", "start": 324, "end": 330, "annotation": null}, {"text": "parallel", "start": 331, "end": 339, "annotation": null}, {"text": "or", "start": 340, "end": 342, "annotation": null}, {"text": "perpendicular", "start": 343, "end": 356, "annotation": null}, {"text": "to", "start": 357, "end": 359, "annotation": null}, {"text": "the", "start": 360, "end": 363, "annotation": null}, {"text": "growth", "start": 364, "end": 370, "annotation": null}, {"text": "direction", "start": 371, "end": 380, "annotation": null}, {"text": ".", "start": 380, "end": 381, "annotation": null}], [{"text": "Comparison", "start": 382, "end": 392, "annotation": null}, {"text": "is", "start": 393, "end": 395, "annotation": null}, {"text": "made", "start": 396, "end": 400, "annotation": null}, {"text": "with", "start": 401, "end": 405, "annotation": null}, {"text": "other", "start": 406, "end": 411, "annotation": null}, {"text": "theories", "start": 412, "end": 420, "annotation": null}, {"text": "and", "start": 421, "end": 424, "annotation": null}, {"text": "experiment", "start": 425, "end": 435, "annotation": null}, {"text": ".", "start": 435, "end": 436, "annotation": null}]]} -{"text": "The carrier concentration dependence of Hg0.6Cd0.4Te on annealing temperature for the Hg and Te saturation condi-tions is presented in this paper. At low annealing tempera-tures, TA < 350\u2021 C, residual donor impurities apparently limit the carrier concentration. In contrast, at higher annealing temperatures, 350\u2021 C < T < 700\u2021 C, the stoichio-metric acceptor density is increased such that the residual donors are compensated and the material is converted to p-type with an acceptor density as large as 1017 cm\u22123 . An empirical expression describing this dependence of the acceptors on annealing temperature is given for both the Hg and Te saturation condition: P (Hg saturation) = 1.46 \u00d7 1022 exp (\u22120.84/kTA), P (Te saturation) = 1.90 \u00d7 1018 exp (\u22120.15/kTA).", "meta": {"doi": "10.1007/BF02656021"}, "_input_hash": 1121439279, "_task_hash": -1075342173, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "carrier", "start": 4, "end": 11, "id": 1, "annotation": null}, {"text": "concentration", "start": 12, "end": 25, "id": 2, "annotation": null}, {"text": "dependence", "start": 26, "end": 36, "id": 3, "annotation": null}, {"text": "of", "start": 37, "end": 39, "id": 4, "annotation": null}, {"text": "Hg0.6Cd0.4Te", "start": 40, "end": 52, "id": 5, "annotation": null}, {"text": "on", "start": 53, "end": 55, "id": 6, "annotation": null}, {"text": "annealing", "start": 56, "end": 65, "id": 7, "annotation": null}, {"text": "temperature", "start": 66, "end": 77, "id": 8, "annotation": null}, {"text": "for", "start": 78, "end": 81, "id": 9, "annotation": null}, {"text": "the", "start": 82, "end": 85, "id": 10, "annotation": null}, {"text": "Hg", "start": 86, "end": 88, "id": 11, "annotation": null}, {"text": "and", "start": 89, "end": 92, "id": 12, "annotation": null}, {"text": "Te", "start": 93, "end": 95, "id": 13, "annotation": null}, {"text": "saturation", "start": 96, "end": 106, "id": 14, "annotation": null}, {"text": "condi", "start": 107, "end": 112, "id": 15, "annotation": null}, {"text": "-", "start": 113, "end": 114, "id": 16, "annotation": null}, {"text": "tions", "start": 115, "end": 120, "id": 17, "annotation": null}, {"text": "is", "start": 121, "end": 123, "id": 18, "annotation": null}, {"text": "presented", "start": 124, "end": 133, "id": 19, "annotation": null}, {"text": "in", "start": 134, "end": 136, "id": 20, "annotation": null}, {"text": "this", "start": 137, "end": 141, "id": 21, "annotation": null}, {"text": "paper", "start": 142, "end": 147, "id": 22, "annotation": null}, {"text": ".", "start": 148, "end": 149, "id": 23, "annotation": null}], [{"text": "At", "start": 150, "end": 152, "id": 24, "annotation": null}, {"text": "low", "start": 153, "end": 156, "id": 25, "annotation": null}, {"text": "annealing", "start": 157, "end": 166, "id": 26, "annotation": null}, {"text": "tempera", "start": 167, "end": 174, "id": 27, "annotation": null}, {"text": "-", "start": 175, "end": 176, "id": 28, "annotation": null}, {"text": "tures", "start": 177, "end": 182, "id": 29, "annotation": null}, {"text": ",", "start": 183, "end": 184, "id": 30, "annotation": null}, {"text": "TA", "start": 185, "end": 187, "id": 31, "annotation": null}, {"text": "<", "start": 188, "end": 189, "id": 32, "annotation": null}, {"text": "350\u2021", "start": 190, "end": 194, "id": 33, "annotation": null}, {"text": "C", "start": 195, "end": 196, "id": 34, "annotation": null}, {"text": ",", "start": 197, "end": 198, "id": 35, "annotation": null}, {"text": "residual", "start": 199, "end": 207, "id": 36, "annotation": null}, {"text": "donor", "start": 208, "end": 213, "id": 37, "annotation": null}, {"text": "impurities", "start": 214, "end": 224, "id": 38, "annotation": null}, {"text": "apparently", "start": 225, "end": 235, "id": 39, "annotation": null}, {"text": "limit", "start": 236, "end": 241, "id": 40, "annotation": null}, {"text": "the", "start": 242, "end": 245, "id": 41, "annotation": null}, {"text": "carrier", "start": 246, "end": 253, "id": 42, "annotation": null}, {"text": "concentration", "start": 254, "end": 267, "id": 43, "annotation": null}, {"text": ".", "start": 268, "end": 269, "id": 44, "annotation": null}], [{"text": "In", "start": 270, "end": 272, "id": 45, "annotation": null}, {"text": "contrast", "start": 273, "end": 281, "id": 46, "annotation": null}, {"text": ",", "start": 282, "end": 283, "id": 47, "annotation": null}, {"text": "at", "start": 284, "end": 286, "id": 48, "annotation": null}, {"text": "higher", "start": 287, "end": 293, "id": 49, "annotation": null}, {"text": "annealing", "start": 294, "end": 303, "id": 50, "annotation": null}, {"text": "temperatures", "start": 304, "end": 316, "id": 51, "annotation": null}, {"text": ",", "start": 317, "end": 318, "id": 52, "annotation": null}, {"text": "350\u2021", "start": 319, "end": 323, "id": 53, "annotation": null}, {"text": "C", "start": 324, "end": 325, "id": 54, "annotation": null}, {"text": "<", "start": 326, "end": 327, "id": 55, "annotation": null}, {"text": "T", "start": 328, "end": 329, "id": 56, "annotation": null}, {"text": "<", "start": 330, "end": 331, "id": 57, "annotation": null}, {"text": "700\u2021", "start": 332, "end": 336, "id": 58, "annotation": null}, {"text": "C", "start": 337, "end": 338, "id": 59, "annotation": null}, {"text": ",", "start": 339, "end": 340, "id": 60, "annotation": null}, {"text": "the", "start": 341, "end": 344, "id": 61, "annotation": null}, {"text": "stoichio", "start": 345, "end": 353, "id": 62, "annotation": null}, {"text": "-", "start": 354, "end": 355, "id": 63, "annotation": null}, {"text": "metric", "start": 356, "end": 362, "id": 64, "annotation": null}, {"text": "acceptor", "start": 363, "end": 371, "id": 65, "annotation": null}, {"text": "density", "start": 372, "end": 379, "id": 66, "annotation": null}, {"text": "is", "start": 380, "end": 382, "id": 67, "annotation": null}, {"text": "increased", "start": 383, "end": 392, "id": 68, "annotation": null}, {"text": "such", "start": 393, "end": 397, "id": 69, "annotation": null}, {"text": "that", "start": 398, "end": 402, "id": 70, "annotation": null}, {"text": "the", "start": 403, "end": 406, "id": 71, "annotation": null}, {"text": "residual", "start": 407, "end": 415, "id": 72, "annotation": null}, {"text": "donors", "start": 416, "end": 422, "id": 73, "annotation": null}, {"text": "are", "start": 423, "end": 426, "id": 74, "annotation": null}, {"text": "compensated", "start": 427, "end": 438, "id": 75, "annotation": null}, {"text": "and", "start": 439, "end": 442, "id": 76, "annotation": null}, {"text": "the", "start": 443, "end": 446, "id": 77, "annotation": "BASEMAT"}, {"text": "material", "start": 447, "end": 455, "id": 78, "annotation": "BASEMAT"}, {"text": "is", "start": 456, "end": 458, "id": 79, "annotation": null}, {"text": "converted", "start": 459, "end": 468, "id": 80, "annotation": null}, {"text": "to", "start": 469, "end": 471, "id": 81, "annotation": null}, {"text": "p", "start": 472, "end": 473, "id": 82, "annotation": "DOPANT"}, {"text": "-", "start": 474, "end": 475, "id": 83, "annotation": null}, {"text": "type", "start": 476, "end": 480, "id": 84, "annotation": "DOPANT"}, {"text": "with", "start": 481, "end": 485, "id": 85, "annotation": null}, {"text": "an", "start": 486, "end": 488, "id": 86, "annotation": null}, {"text": "acceptor", "start": 489, "end": 497, "id": 87, "annotation": null}, {"text": "density", "start": 498, "end": 505, "id": 88, "annotation": null}, {"text": "as", "start": 506, "end": 508, "id": 89, "annotation": null}, {"text": "large", "start": 509, "end": 514, "id": 90, "annotation": null}, {"text": "as", "start": 515, "end": 517, "id": 91, "annotation": null}, {"text": "1017", "start": 518, "end": 522, "id": 92, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 523, "end": 527, "id": 93, "annotation": "DOPMODQ"}, {"text": ".", "start": 528, "end": 529, "id": 94, "annotation": null}], [{"text": "An", "start": 530, "end": 532, "id": 95, "annotation": null}, {"text": "empirical", "start": 533, "end": 542, "id": 96, "annotation": null}, {"text": "expression", "start": 543, "end": 553, "id": 97, "annotation": null}, {"text": "describing", "start": 554, "end": 564, "id": 98, "annotation": null}, {"text": "this", "start": 565, "end": 569, "id": 99, "annotation": null}, {"text": "dependence", "start": 570, "end": 580, "id": 100, "annotation": null}, {"text": "of", "start": 581, "end": 583, "id": 101, "annotation": null}, {"text": "the", "start": 584, "end": 587, "id": 102, "annotation": null}, {"text": "acceptors", "start": 588, "end": 597, "id": 103, "annotation": null}, {"text": "on", "start": 598, "end": 600, "id": 104, "annotation": null}, {"text": "annealing", "start": 601, "end": 610, "id": 105, "annotation": null}, {"text": "temperature", "start": 611, "end": 622, "id": 106, "annotation": null}, {"text": "is", "start": 623, "end": 625, "id": 107, "annotation": null}, {"text": "given", "start": 626, "end": 631, "id": 108, "annotation": null}, {"text": "for", "start": 632, "end": 635, "id": 109, "annotation": null}, {"text": "both", "start": 636, "end": 640, "id": 110, "annotation": null}, {"text": "the", "start": 641, "end": 644, "id": 111, "annotation": null}, {"text": "Hg", "start": 645, "end": 647, "id": 112, "annotation": null}, {"text": "and", "start": 648, "end": 651, "id": 113, "annotation": null}, {"text": "Te", "start": 652, "end": 654, "id": 114, "annotation": null}, {"text": "saturation", "start": 655, "end": 665, "id": 115, "annotation": null}, {"text": "condition", "start": 666, "end": 675, "id": 116, "annotation": null}, {"text": ":", "start": 676, "end": 677, "id": 117, "annotation": null}, {"text": "P", "start": 678, "end": 679, "id": 118, "annotation": null}, {"text": "(", "start": 680, "end": 681, "id": 119, "annotation": null}, {"text": "Hg", "start": 682, "end": 684, "id": 120, "annotation": null}, {"text": "saturation", "start": 685, "end": 695, "id": 121, "annotation": null}, {"text": ")", "start": 696, "end": 697, "id": 122, "annotation": null}, {"text": "=", "start": 698, "end": 699, "id": 123, "annotation": null}, {"text": "1.46", "start": 700, "end": 704, "id": 124, "annotation": null}, {"text": "\u00d7", "start": 705, "end": 706, "id": 125, "annotation": null}, {"text": "1022", "start": 707, "end": 711, "id": 126, "annotation": null}, {"text": "exp", "start": 712, "end": 715, "id": 127, "annotation": null}, {"text": "(", "start": 716, "end": 717, "id": 128, "annotation": null}, {"text": "\u22120.84", "start": 718, "end": 723, "id": 129, "annotation": null}, {"text": "/", "start": 724, "end": 725, "id": 130, "annotation": null}, {"text": "kTA", "start": 726, "end": 729, "id": 131, "annotation": null}, {"text": ")", "start": 730, "end": 731, "id": 132, "annotation": null}, {"text": ",", "start": 732, "end": 733, "id": 133, "annotation": null}, {"text": "P", "start": 734, "end": 735, "id": 134, "annotation": null}, {"text": "(", "start": 736, "end": 737, "id": 135, "annotation": null}, {"text": "Te", "start": 738, "end": 740, "id": 136, "annotation": null}, {"text": "saturation", "start": 741, "end": 751, "id": 137, "annotation": null}, {"text": ")", "start": 752, "end": 753, "id": 138, "annotation": null}, {"text": "=", "start": 754, "end": 755, "id": 139, "annotation": null}, {"text": "1.90", "start": 756, "end": 760, "id": 140, "annotation": null}, {"text": "\u00d7", "start": 761, "end": 762, "id": 141, "annotation": null}, {"text": "1018", "start": 763, "end": 767, "id": 142, "annotation": null}, {"text": "exp", "start": 768, "end": 771, "id": 143, "annotation": null}, {"text": "(", "start": 772, "end": 773, "id": 144, "annotation": null}, {"text": "\u22120.15", "start": 774, "end": 779, "id": 145, "annotation": null}, {"text": "/", "start": 780, "end": 781, "id": 146, "annotation": null}, {"text": "kTA", "start": 782, "end": 785, "id": 147, "annotation": null}, {"text": ")", "start": 786, "end": 787, "id": 148, "annotation": null}, {"text": ".", "start": 788, "end": 789, "id": 149, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "Er3+/Yb3+ co-doped transparent glass ceramics containing Na3.6Y1.8(PO4)3 crystals were prepared by high-temperature melting and subsequent heat treatment the precursor glass, and their up-conversion luminescent properties were investigated. The optimum heat treatment condition of glass at 630 \u00b0C for 2 h were determined by a series of experimental results, and confirmed the existence of Na3.6Y1.8(PO4)3 crystals in glass ceramics. The up-conversion luminescence spectra of the glass ceramic samples under pulsed excitation at 980 nm revealed luminescence bands corresponding to Er3+ ion transitions in the green (4F7/2-4I15/2, 2H12/2-4I15/2,4S3/2-4I15/2) and red (4F9/2 - 4I15/2) spectral regions. The fluorescence spectra reaches a maximum when the molar ratio of Er2O3 to Yb2O3 is 1:7. Luminescence quantum yield of the samples was measured by using an integrating sphere. The transmission spectra proved that the glass ceramics sample still maintained a high transparency up to 83% in the visible region.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Er3+", "start": 0, "end": 4, "annotation": "DOPANT"}, {"text": "/", "start": 4, "end": 5, "annotation": null}, {"text": "Yb3+", "start": 5, "end": 9, "annotation": "DOPANT"}, {"text": "co-doped", "start": 10, "end": 18, "annotation": null}, {"text": "transparent", "start": 19, "end": 30, "annotation": null}, {"text": "glass", "start": 31, "end": 36, "annotation": null}, {"text": "ceramics", "start": 37, "end": 45, "annotation": null}, {"text": "containing", "start": 46, "end": 56, "annotation": null}, {"text": "Na3.6Y1.8(PO4)3", "start": 57, "end": 72, "annotation": "BASEMAT"}, {"text": "crystals", "start": 73, "end": 81, "annotation": null}, {"text": "were", "start": 82, "end": 86, "annotation": null}, {"text": "prepared", "start": 87, "end": 95, "annotation": null}, {"text": "by", "start": 96, "end": 98, "annotation": null}, {"text": "high", "start": 99, "end": 103, "annotation": null}, {"text": "-", "start": 103, "end": 104, "annotation": null}, {"text": "temperature", "start": 104, "end": 115, "annotation": null}, {"text": "melting", "start": 116, "end": 123, "annotation": null}, {"text": "and", "start": 124, "end": 127, "annotation": null}, {"text": "subsequent", "start": 128, "end": 138, "annotation": null}, {"text": "heat", "start": 139, "end": 143, "annotation": null}, {"text": "treatment", "start": 144, "end": 153, "annotation": null}, {"text": "the", "start": 154, "end": 157, "annotation": null}, {"text": "precursor", "start": 158, "end": 167, "annotation": null}, {"text": "glass", "start": 168, "end": 173, "annotation": null}, {"text": ",", "start": 173, "end": 174, "annotation": null}, {"text": "and", "start": 175, "end": 178, "annotation": null}, {"text": "their", "start": 179, "end": 184, "annotation": null}, {"text": "up", "start": 185, "end": 187, "annotation": null}, {"text": "-", "start": 187, "end": 188, "annotation": null}, {"text": "conversion", "start": 188, "end": 198, "annotation": null}, {"text": "luminescent", "start": 199, "end": 210, "annotation": null}, {"text": "properties", "start": 211, "end": 221, "annotation": null}, {"text": "were", "start": 222, "end": 226, "annotation": null}, {"text": "investigated", "start": 227, "end": 239, "annotation": null}, {"text": ".", "start": 239, "end": 240, "annotation": null}], [{"text": "The", "start": 241, "end": 244, "annotation": null}, {"text": "optimum", "start": 245, "end": 252, "annotation": null}, {"text": "heat", "start": 253, "end": 257, "annotation": null}, {"text": "treatment", "start": 258, "end": 267, "annotation": null}, {"text": "condition", "start": 268, "end": 277, "annotation": null}, {"text": "of", "start": 278, "end": 280, "annotation": null}, {"text": "glass", "start": 281, "end": 286, "annotation": null}, {"text": "at", "start": 287, "end": 289, "annotation": null}, {"text": "630", "start": 290, "end": 293, "annotation": null}, {"text": "\u00b0", "start": 294, "end": 295, "annotation": null}, {"text": "C", "start": 295, "end": 296, "annotation": null}, {"text": "for", "start": 297, "end": 300, "annotation": null}, {"text": "2", "start": 301, "end": 302, "annotation": null}, {"text": "h", "start": 303, "end": 304, "annotation": null}, {"text": "were", "start": 305, "end": 309, "annotation": null}, {"text": "determined", "start": 310, "end": 320, "annotation": null}, {"text": "by", "start": 321, "end": 323, "annotation": null}, {"text": "a", "start": 324, "end": 325, "annotation": null}, {"text": "series", "start": 326, "end": 332, "annotation": null}, {"text": "of", "start": 333, "end": 335, "annotation": null}, {"text": "experimental", "start": 336, "end": 348, "annotation": null}, {"text": "results", "start": 349, "end": 356, "annotation": null}, {"text": ",", "start": 356, "end": 357, "annotation": null}, {"text": "and", "start": 358, "end": 361, "annotation": null}, {"text": "confirmed", "start": 362, "end": 371, "annotation": null}, {"text": "the", "start": 372, "end": 375, "annotation": null}, {"text": "existence", "start": 376, "end": 385, "annotation": null}, {"text": "of", "start": 386, "end": 388, "annotation": null}, {"text": "Na3.6Y1.8(PO4)3", "start": 389, "end": 404, "annotation": null}, {"text": "crystals", "start": 405, "end": 413, "annotation": null}, {"text": "in", "start": 414, "end": 416, "annotation": null}, {"text": "glass", "start": 417, "end": 422, "annotation": null}, {"text": "ceramics", "start": 423, "end": 431, "annotation": null}, {"text": ".", "start": 431, "end": 432, "annotation": null}], [{"text": "The", "start": 433, "end": 436, "annotation": null}, {"text": "up", "start": 437, "end": 439, "annotation": null}, {"text": "-", "start": 439, "end": 440, "annotation": null}, {"text": "conversion", "start": 440, "end": 450, "annotation": null}, {"text": "luminescence", "start": 451, "end": 463, "annotation": null}, {"text": "spectra", "start": 464, "end": 471, "annotation": null}, {"text": "of", "start": 472, "end": 474, "annotation": null}, {"text": "the", "start": 475, "end": 478, "annotation": null}, {"text": "glass", "start": 479, "end": 484, "annotation": null}, {"text": "ceramic", "start": 485, "end": 492, "annotation": null}, {"text": "samples", "start": 493, "end": 500, "annotation": null}, {"text": "under", "start": 501, "end": 506, "annotation": null}, {"text": "pulsed", "start": 507, "end": 513, "annotation": null}, {"text": "excitation", "start": 514, "end": 524, "annotation": null}, {"text": "at", "start": 525, "end": 527, "annotation": null}, {"text": "980", "start": 528, "end": 531, "annotation": null}, {"text": "nm", "start": 532, "end": 534, "annotation": null}, {"text": "revealed", "start": 535, "end": 543, "annotation": null}, {"text": "luminescence", "start": 544, "end": 556, "annotation": null}, {"text": "bands", "start": 557, "end": 562, "annotation": null}, {"text": "corresponding", "start": 563, "end": 576, "annotation": null}, {"text": "to", "start": 577, "end": 579, "annotation": null}, {"text": "Er3+", "start": 580, "end": 584, "annotation": null}, {"text": "ion", "start": 585, "end": 588, "annotation": null}, {"text": "transitions", "start": 589, "end": 600, "annotation": null}, {"text": "in", "start": 601, "end": 603, "annotation": null}, {"text": "the", "start": 604, "end": 607, "annotation": null}, {"text": "green", "start": 608, "end": 613, "annotation": null}, {"text": "(", "start": 614, "end": 615, "annotation": null}, {"text": "4F7", "start": 615, "end": 618, "annotation": null}, {"text": "/", "start": 618, "end": 619, "annotation": null}, {"text": "2-4I15", "start": 619, "end": 625, "annotation": null}, {"text": "/", "start": 625, "end": 626, "annotation": null}, {"text": "2", "start": 626, "end": 627, "annotation": null}, {"text": ",", "start": 627, "end": 628, "annotation": null}, {"text": "2H12", "start": 629, "end": 633, "annotation": null}, {"text": "/", "start": 633, "end": 634, "annotation": null}, {"text": "2-4I15", "start": 634, "end": 640, "annotation": null}, {"text": "/", "start": 640, "end": 641, "annotation": null}, {"text": "2,4S3", "start": 641, "end": 646, "annotation": null}, {"text": "/", "start": 646, "end": 647, "annotation": null}, {"text": "2-4I15", "start": 647, "end": 653, "annotation": null}, {"text": "/", "start": 653, "end": 654, "annotation": null}, {"text": "2", "start": 654, "end": 655, "annotation": null}, {"text": ")", "start": 655, "end": 656, "annotation": null}, {"text": "and", "start": 657, "end": 660, "annotation": null}, {"text": "red", "start": 661, "end": 664, "annotation": null}, {"text": "(", "start": 665, "end": 666, "annotation": null}, {"text": "4F9", "start": 666, "end": 669, "annotation": null}, {"text": "/", "start": 669, "end": 670, "annotation": null}, {"text": "2", "start": 670, "end": 671, "annotation": null}, {"text": "-", "start": 672, "end": 673, "annotation": null}, {"text": "4I15", "start": 674, "end": 678, "annotation": null}, {"text": "/", "start": 678, "end": 679, "annotation": null}, {"text": "2", "start": 679, "end": 680, "annotation": null}, {"text": ")", "start": 680, "end": 681, "annotation": null}, {"text": "spectral", "start": 682, "end": 690, "annotation": null}, {"text": "regions", "start": 691, "end": 698, "annotation": null}, {"text": ".", "start": 698, "end": 699, "annotation": null}], [{"text": "The", "start": 700, "end": 703, "annotation": null}, {"text": "fluorescence", "start": 704, "end": 716, "annotation": null}, {"text": "spectra", "start": 717, "end": 724, "annotation": null}, {"text": "reaches", "start": 725, "end": 732, "annotation": null}, {"text": "a", "start": 733, "end": 734, "annotation": null}, {"text": "maximum", "start": 735, "end": 742, "annotation": null}, {"text": "when", "start": 743, "end": 747, "annotation": null}, {"text": "the", "start": 748, "end": 751, "annotation": null}, {"text": "molar", "start": 752, "end": 757, "annotation": null}, {"text": "ratio", "start": 758, "end": 763, "annotation": null}, {"text": "of", "start": 764, "end": 766, "annotation": null}, {"text": "Er2O3", "start": 767, "end": 772, "annotation": null}, {"text": "to", "start": 773, "end": 775, "annotation": null}, {"text": "Yb2O3", "start": 776, "end": 781, "annotation": null}, {"text": "is", "start": 782, "end": 784, "annotation": null}, {"text": "1", "start": 785, "end": 786, "annotation": null}, {"text": ":", "start": 786, "end": 787, "annotation": null}, {"text": "7", "start": 787, "end": 788, "annotation": null}, {"text": ".", "start": 788, "end": 789, "annotation": null}], [{"text": "Luminescence", "start": 790, "end": 802, "annotation": null}, {"text": "quantum", "start": 803, "end": 810, "annotation": null}, {"text": "yield", "start": 811, "end": 816, "annotation": null}, {"text": "of", "start": 817, "end": 819, "annotation": null}, {"text": "the", "start": 820, "end": 823, "annotation": null}, {"text": "samples", "start": 824, "end": 831, "annotation": null}, {"text": "was", "start": 832, "end": 835, "annotation": null}, {"text": "measured", "start": 836, "end": 844, "annotation": null}, {"text": "by", "start": 845, "end": 847, "annotation": null}, {"text": "using", "start": 848, "end": 853, "annotation": null}, {"text": "an", "start": 854, "end": 856, "annotation": null}, {"text": "integrating", "start": 857, "end": 868, "annotation": null}, {"text": "sphere", "start": 869, "end": 875, "annotation": null}, {"text": ".", "start": 875, "end": 876, "annotation": null}], [{"text": "The", "start": 877, "end": 880, "annotation": null}, {"text": "transmission", "start": 881, "end": 893, "annotation": null}, {"text": "spectra", "start": 894, "end": 901, "annotation": null}, {"text": "proved", "start": 902, "end": 908, "annotation": null}, {"text": "that", "start": 909, "end": 913, "annotation": null}, {"text": "the", "start": 914, "end": 917, "annotation": null}, {"text": "glass", "start": 918, "end": 923, "annotation": null}, {"text": "ceramics", "start": 924, "end": 932, "annotation": null}, {"text": "sample", "start": 933, "end": 939, "annotation": null}, {"text": "still", "start": 940, "end": 945, "annotation": null}, {"text": "maintained", "start": 946, "end": 956, "annotation": null}, {"text": "a", "start": 957, "end": 958, "annotation": null}, {"text": "high", "start": 959, "end": 963, "annotation": null}, {"text": "transparency", "start": 964, "end": 976, "annotation": null}, {"text": "up", "start": 977, "end": 979, "annotation": null}, {"text": "to", "start": 980, "end": 982, "annotation": null}, {"text": "83", "start": 983, "end": 985, "annotation": null}, {"text": "%", "start": 985, "end": 986, "annotation": null}, {"text": "in", "start": 987, "end": 989, "annotation": null}, {"text": "the", "start": 990, "end": 993, "annotation": null}, {"text": "visible", "start": 994, "end": 1001, "annotation": null}, {"text": "region", "start": 1002, "end": 1008, "annotation": null}, {"text": ".", "start": 1008, "end": 1009, "annotation": null}]], "meta": {"doi": "10.1016/j.jallcom.2017.09.001"}} +{"remark": "doping_annt3", "text": "The energy subbands in pseudomorphic p-type Si/Si1\u2212 xGe x /Si quantum wells are calculated within the multiband effective-mass approximation that describes the heavy, light and split-off hole valence bands. We examine the intersubband transitions in this system and the selection rules are obtained for a light polarization vector parallel or perpendicular to the growth direction. Comparison is made with other theories and experiment.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "energy", "start": 4, "end": 10, "annotation": null}, {"text": "subbands", "start": 11, "end": 19, "annotation": null}, {"text": "in", "start": 20, "end": 22, "annotation": null}, {"text": "pseudomorphic", "start": 23, "end": 36, "annotation": null}, {"text": "p", "start": 37, "end": 38, "annotation": "DOPANT"}, {"text": "-", "start": 38, "end": 39, "annotation": "DOPANT"}, {"text": "type", "start": 39, "end": 43, "annotation": "DOPANT"}, {"text": "Si", "start": 44, "end": 46, "annotation": "BASEMAT"}, {"text": "/", "start": 46, "end": 47, "annotation": "BASEMAT"}, {"text": "Si1\u2212", "start": 47, "end": 51, "annotation": "BASEMAT"}, {"text": "xGe", "start": 52, "end": 55, "annotation": "BASEMAT"}, {"text": "x", "start": 56, "end": 57, "annotation": "BASEMAT"}, {"text": "/", "start": 58, "end": 59, "annotation": "BASEMAT"}, {"text": "Si", "start": 59, "end": 61, "annotation": "BASEMAT"}, {"text": "quantum", "start": 62, "end": 69, "annotation": null}, {"text": "wells", "start": 70, "end": 75, "annotation": null}, {"text": "are", "start": 76, "end": 79, "annotation": null}, {"text": "calculated", "start": 80, "end": 90, "annotation": null}, {"text": "within", "start": 91, "end": 97, "annotation": null}, {"text": "the", "start": 98, "end": 101, "annotation": null}, {"text": "multiband", "start": 102, "end": 111, "annotation": null}, {"text": "effective", "start": 112, "end": 121, "annotation": null}, {"text": "-", "start": 121, "end": 122, "annotation": null}, {"text": "mass", "start": 122, "end": 126, "annotation": null}, {"text": "approximation", "start": 127, "end": 140, "annotation": null}, {"text": "that", "start": 141, "end": 145, "annotation": null}, {"text": "describes", "start": 146, "end": 155, "annotation": null}, {"text": "the", "start": 156, "end": 159, "annotation": null}, {"text": "heavy", "start": 160, "end": 165, "annotation": null}, {"text": ",", "start": 165, "end": 166, "annotation": null}, {"text": "light", "start": 167, "end": 172, "annotation": null}, {"text": "and", "start": 173, "end": 176, "annotation": null}, {"text": "split", "start": 177, "end": 182, "annotation": null}, {"text": "-", "start": 182, "end": 183, "annotation": null}, {"text": "off", "start": 183, "end": 186, "annotation": null}, {"text": "hole", "start": 187, "end": 191, "annotation": null}, {"text": "valence", "start": 192, "end": 199, "annotation": null}, {"text": "bands", "start": 200, "end": 205, "annotation": null}, {"text": ".", "start": 205, "end": 206, "annotation": null}], [{"text": "We", "start": 207, "end": 209, "annotation": null}, {"text": "examine", "start": 210, "end": 217, "annotation": null}, {"text": "the", "start": 218, "end": 221, "annotation": null}, {"text": "intersubband", "start": 222, "end": 234, "annotation": null}, {"text": "transitions", "start": 235, "end": 246, "annotation": null}, {"text": "in", "start": 247, "end": 249, "annotation": null}, {"text": "this", "start": 250, "end": 254, "annotation": null}, {"text": "system", "start": 255, "end": 261, "annotation": null}, {"text": "and", "start": 262, "end": 265, "annotation": null}, {"text": "the", "start": 266, "end": 269, "annotation": null}, {"text": "selection", "start": 270, "end": 279, "annotation": null}, {"text": "rules", "start": 280, "end": 285, "annotation": null}, {"text": "are", "start": 286, "end": 289, "annotation": null}, {"text": "obtained", "start": 290, "end": 298, "annotation": null}, {"text": "for", "start": 299, "end": 302, "annotation": null}, {"text": "a", "start": 303, "end": 304, "annotation": null}, {"text": "light", "start": 305, "end": 310, "annotation": null}, {"text": "polarization", "start": 311, "end": 323, "annotation": null}, {"text": "vector", "start": 324, "end": 330, "annotation": null}, {"text": "parallel", "start": 331, "end": 339, "annotation": null}, {"text": "or", "start": 340, "end": 342, "annotation": null}, {"text": "perpendicular", "start": 343, "end": 356, "annotation": null}, {"text": "to", "start": 357, "end": 359, "annotation": null}, {"text": "the", "start": 360, "end": 363, "annotation": null}, {"text": "growth", "start": 364, "end": 370, "annotation": null}, {"text": "direction", "start": 371, "end": 380, "annotation": null}, {"text": ".", "start": 380, "end": 381, "annotation": null}], [{"text": "Comparison", "start": 382, "end": 392, "annotation": null}, {"text": "is", "start": 393, "end": 395, "annotation": null}, {"text": "made", "start": 396, "end": 400, "annotation": null}, {"text": "with", "start": 401, "end": 405, "annotation": null}, {"text": "other", "start": 406, "end": 411, "annotation": null}, {"text": "theories", "start": 412, "end": 420, "annotation": null}, {"text": "and", "start": 421, "end": 424, "annotation": null}, {"text": "experiment", "start": 425, "end": 435, "annotation": null}, {"text": ".", "start": 435, "end": 436, "annotation": null}]], "meta": {"doi": "10.1006/spmi.2000.0897"}} +{"text": "The carrier concentration dependence of Hg0.6Cd0.4Te on annealing temperature for the Hg and Te saturation condi-tions is presented in this paper. At low annealing tempera-tures, TA < 350\u2021 C, residual donor impurities apparently limit the carrier concentration. In contrast, at higher annealing temperatures, 350\u2021 C < T < 700\u2021 C, the stoichio-metric acceptor density is increased such that the residual donors are compensated and the material is converted to p-type with an acceptor density as large as 1017 cm\u22123 . An empirical expression describing this dependence of the acceptors on annealing temperature is given for both the Hg and Te saturation condition: P (Hg saturation) = 1.46 \u00d7 1022 exp (\u22120.84/kTA), P (Te saturation) = 1.90 \u00d7 1018 exp (\u22120.15/kTA).", "meta": {"doi": "10.1007/BF02656021"}, "_input_hash": 1121439279, "_task_hash": -1075342173, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "carrier", "start": 4, "end": 11, "id": 1, "annotation": null}, {"text": "concentration", "start": 12, "end": 25, "id": 2, "annotation": null}, {"text": "dependence", "start": 26, "end": 36, "id": 3, "annotation": null}, {"text": "of", "start": 37, "end": 39, "id": 4, "annotation": null}, {"text": "Hg0.6Cd0.4Te", "start": 40, "end": 52, "id": 5, "annotation": null}, {"text": "on", "start": 53, "end": 55, "id": 6, "annotation": null}, {"text": "annealing", "start": 56, "end": 65, "id": 7, "annotation": null}, {"text": "temperature", "start": 66, "end": 77, "id": 8, "annotation": null}, {"text": "for", "start": 78, "end": 81, "id": 9, "annotation": null}, {"text": "the", "start": 82, "end": 85, "id": 10, "annotation": null}, {"text": "Hg", "start": 86, "end": 88, "id": 11, "annotation": null}, {"text": "and", "start": 89, "end": 92, "id": 12, "annotation": null}, {"text": "Te", "start": 93, "end": 95, "id": 13, "annotation": null}, {"text": "saturation", "start": 96, "end": 106, "id": 14, "annotation": null}, {"text": "condi", "start": 107, "end": 112, "id": 15, "annotation": null}, {"text": "-", "start": 113, "end": 114, "id": 16, "annotation": null}, {"text": "tions", "start": 115, "end": 120, "id": 17, "annotation": null}, {"text": "is", "start": 121, "end": 123, "id": 18, "annotation": null}, {"text": "presented", "start": 124, "end": 133, "id": 19, "annotation": null}, {"text": "in", "start": 134, "end": 136, "id": 20, "annotation": null}, {"text": "this", "start": 137, "end": 141, "id": 21, "annotation": null}, {"text": "paper", "start": 142, "end": 147, "id": 22, "annotation": null}, {"text": ".", "start": 148, "end": 149, "id": 23, "annotation": null}], [{"text": "At", "start": 150, "end": 152, "id": 24, "annotation": null}, {"text": "low", "start": 153, "end": 156, "id": 25, "annotation": null}, {"text": "annealing", "start": 157, "end": 166, "id": 26, "annotation": null}, {"text": "tempera", "start": 167, "end": 174, "id": 27, "annotation": null}, {"text": "-", "start": 175, "end": 176, "id": 28, "annotation": null}, {"text": "tures", "start": 177, "end": 182, "id": 29, "annotation": null}, {"text": ",", "start": 183, "end": 184, "id": 30, "annotation": null}, {"text": "TA", "start": 185, "end": 187, "id": 31, "annotation": null}, {"text": "<", "start": 188, "end": 189, "id": 32, "annotation": null}, {"text": "350\u2021", "start": 190, "end": 194, "id": 33, "annotation": null}, {"text": "C", "start": 195, "end": 196, "id": 34, "annotation": null}, {"text": ",", "start": 197, "end": 198, "id": 35, "annotation": null}, {"text": "residual", "start": 199, "end": 207, "id": 36, "annotation": null}, {"text": "donor", "start": 208, "end": 213, "id": 37, "annotation": null}, {"text": "impurities", "start": 214, "end": 224, "id": 38, "annotation": null}, {"text": "apparently", "start": 225, "end": 235, "id": 39, "annotation": null}, {"text": "limit", "start": 236, "end": 241, "id": 40, "annotation": null}, {"text": "the", "start": 242, "end": 245, "id": 41, "annotation": null}, {"text": "carrier", "start": 246, "end": 253, "id": 42, "annotation": null}, {"text": "concentration", "start": 254, "end": 267, "id": 43, "annotation": null}, {"text": ".", "start": 268, "end": 269, "id": 44, "annotation": null}], [{"text": "In", "start": 270, "end": 272, "id": 45, "annotation": null}, {"text": "contrast", "start": 273, "end": 281, "id": 46, "annotation": null}, {"text": ",", "start": 282, "end": 283, "id": 47, "annotation": null}, {"text": "at", "start": 284, "end": 286, "id": 48, "annotation": null}, {"text": "higher", "start": 287, "end": 293, "id": 49, "annotation": null}, {"text": "annealing", "start": 294, "end": 303, "id": 50, "annotation": null}, {"text": "temperatures", "start": 304, "end": 316, "id": 51, "annotation": null}, {"text": ",", "start": 317, "end": 318, "id": 52, "annotation": null}, {"text": "350\u2021", "start": 319, "end": 323, "id": 53, "annotation": null}, {"text": "C", "start": 324, "end": 325, "id": 54, "annotation": null}, {"text": "<", "start": 326, "end": 327, "id": 55, "annotation": null}, {"text": "T", "start": 328, "end": 329, "id": 56, "annotation": null}, {"text": "<", "start": 330, "end": 331, "id": 57, "annotation": null}, {"text": "700\u2021", "start": 332, "end": 336, "id": 58, "annotation": null}, {"text": "C", "start": 337, "end": 338, "id": 59, "annotation": null}, {"text": ",", "start": 339, "end": 340, "id": 60, "annotation": null}, {"text": "the", "start": 341, "end": 344, "id": 61, "annotation": null}, {"text": "stoichio", "start": 345, "end": 353, "id": 62, "annotation": null}, {"text": "-", "start": 354, "end": 355, "id": 63, "annotation": null}, {"text": "metric", "start": 356, "end": 362, "id": 64, "annotation": null}, {"text": "acceptor", "start": 363, "end": 371, "id": 65, "annotation": null}, {"text": "density", "start": 372, "end": 379, "id": 66, "annotation": null}, {"text": "is", "start": 380, "end": 382, "id": 67, "annotation": null}, {"text": "increased", "start": 383, "end": 392, "id": 68, "annotation": null}, {"text": "such", "start": 393, "end": 397, "id": 69, "annotation": null}, {"text": "that", "start": 398, "end": 402, "id": 70, "annotation": null}, {"text": "the", "start": 403, "end": 406, "id": 71, "annotation": null}, {"text": "residual", "start": 407, "end": 415, "id": 72, "annotation": null}, {"text": "donors", "start": 416, "end": 422, "id": 73, "annotation": null}, {"text": "are", "start": 423, "end": 426, "id": 74, "annotation": null}, {"text": "compensated", "start": 427, "end": 438, "id": 75, "annotation": null}, {"text": "and", "start": 439, "end": 442, "id": 76, "annotation": null}, {"text": "the", "start": 443, "end": 446, "id": 77, "annotation": "BASEMAT"}, {"text": "material", "start": 447, "end": 455, "id": 78, "annotation": "BASEMAT"}, {"text": "is", "start": 456, "end": 458, "id": 79, "annotation": null}, {"text": "converted", "start": 459, "end": 468, "id": 80, "annotation": null}, {"text": "to", "start": 469, "end": 471, "id": 81, "annotation": null}, {"text": "p", "start": 472, "end": 473, "id": 82, "annotation": "DOPANT"}, {"text": "-", "start": 474, "end": 475, "id": 83, "annotation": "DOPANT"}, {"text": "type", "start": 476, "end": 480, "id": 84, "annotation": "DOPANT"}, {"text": "with", "start": 481, "end": 485, "id": 85, "annotation": null}, {"text": "an", "start": 486, "end": 488, "id": 86, "annotation": null}, {"text": "acceptor", "start": 489, "end": 497, "id": 87, "annotation": null}, {"text": "density", "start": 498, "end": 505, "id": 88, "annotation": null}, {"text": "as", "start": 506, "end": 508, "id": 89, "annotation": null}, {"text": "large", "start": 509, "end": 514, "id": 90, "annotation": null}, {"text": "as", "start": 515, "end": 517, "id": 91, "annotation": null}, {"text": "1017", "start": 518, "end": 522, "id": 92, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 523, "end": 527, "id": 93, "annotation": "DOPMODQ"}, {"text": ".", "start": 528, "end": 529, "id": 94, "annotation": null}], [{"text": "An", "start": 530, "end": 532, "id": 95, "annotation": null}, {"text": "empirical", "start": 533, "end": 542, "id": 96, "annotation": null}, {"text": "expression", "start": 543, "end": 553, "id": 97, "annotation": null}, {"text": "describing", "start": 554, "end": 564, "id": 98, "annotation": null}, {"text": "this", "start": 565, "end": 569, "id": 99, "annotation": null}, {"text": "dependence", "start": 570, "end": 580, "id": 100, "annotation": null}, {"text": "of", "start": 581, "end": 583, "id": 101, "annotation": null}, {"text": "the", "start": 584, "end": 587, "id": 102, "annotation": null}, {"text": "acceptors", "start": 588, "end": 597, "id": 103, "annotation": null}, {"text": "on", "start": 598, "end": 600, "id": 104, "annotation": null}, {"text": "annealing", "start": 601, "end": 610, "id": 105, "annotation": null}, {"text": "temperature", "start": 611, "end": 622, "id": 106, "annotation": null}, {"text": "is", "start": 623, "end": 625, "id": 107, "annotation": null}, {"text": "given", "start": 626, "end": 631, "id": 108, "annotation": null}, {"text": "for", "start": 632, "end": 635, "id": 109, "annotation": null}, {"text": "both", "start": 636, "end": 640, "id": 110, "annotation": null}, {"text": "the", "start": 641, "end": 644, "id": 111, "annotation": null}, {"text": "Hg", "start": 645, "end": 647, "id": 112, "annotation": null}, {"text": "and", "start": 648, "end": 651, "id": 113, "annotation": null}, {"text": "Te", "start": 652, "end": 654, "id": 114, "annotation": null}, {"text": "saturation", "start": 655, "end": 665, "id": 115, "annotation": null}, {"text": "condition", "start": 666, "end": 675, "id": 116, "annotation": null}, {"text": ":", "start": 676, "end": 677, "id": 117, "annotation": null}, {"text": "P", "start": 678, "end": 679, "id": 118, "annotation": null}, {"text": "(", "start": 680, "end": 681, "id": 119, "annotation": null}, {"text": "Hg", "start": 682, "end": 684, "id": 120, "annotation": null}, {"text": "saturation", "start": 685, "end": 695, "id": 121, "annotation": null}, {"text": ")", "start": 696, "end": 697, "id": 122, "annotation": null}, {"text": "=", "start": 698, "end": 699, "id": 123, "annotation": null}, {"text": "1.46", "start": 700, "end": 704, "id": 124, "annotation": null}, {"text": "\u00d7", "start": 705, "end": 706, "id": 125, "annotation": null}, {"text": "1022", "start": 707, "end": 711, "id": 126, "annotation": null}, {"text": "exp", "start": 712, "end": 715, "id": 127, "annotation": null}, {"text": "(", "start": 716, "end": 717, "id": 128, "annotation": null}, {"text": "\u22120.84", "start": 718, "end": 723, "id": 129, "annotation": null}, {"text": "/", "start": 724, "end": 725, "id": 130, "annotation": null}, {"text": "kTA", "start": 726, "end": 729, "id": 131, "annotation": null}, {"text": ")", "start": 730, "end": 731, "id": 132, "annotation": null}, {"text": ",", "start": 732, "end": 733, "id": 133, "annotation": null}, {"text": "P", "start": 734, "end": 735, "id": 134, "annotation": null}, {"text": "(", "start": 736, "end": 737, "id": 135, "annotation": null}, {"text": "Te", "start": 738, "end": 740, "id": 136, "annotation": null}, {"text": "saturation", "start": 741, "end": 751, "id": 137, "annotation": null}, {"text": ")", "start": 752, "end": 753, "id": 138, "annotation": null}, {"text": "=", "start": 754, "end": 755, "id": 139, "annotation": null}, {"text": "1.90", "start": 756, "end": 760, "id": 140, "annotation": null}, {"text": "\u00d7", "start": 761, "end": 762, "id": 141, "annotation": null}, {"text": "1018", "start": 763, "end": 767, "id": 142, "annotation": null}, {"text": "exp", "start": 768, "end": 771, "id": 143, "annotation": null}, {"text": "(", "start": 772, "end": 773, "id": 144, "annotation": null}, {"text": "\u22120.15", "start": 774, "end": 779, "id": 145, "annotation": null}, {"text": "/", "start": 780, "end": 781, "id": 146, "annotation": null}, {"text": "kTA", "start": 782, "end": 785, "id": 147, "annotation": null}, {"text": ")", "start": 786, "end": 787, "id": 148, "annotation": null}, {"text": ".", "start": 788, "end": 789, "id": 149, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "In both light emitting devices such as light emitting diodes (LEDs), and light absorbing devices such as solar cells (also photodetectors), which are gaining considerable interest for their energy saving and energy production capability, respectively, a compromise must be struck between the need to increase the light emitting/absorbing area/potential and the need for low series resistance of the metal contact grid. This undesirable compromise can be mitigated by using transparent conducting oxides (TCOs), which heretofore have been dominated by ITO (indium tin oxide\u2014an In-rich alloy of indium oxide and tin oxide). Due to the expected scarcity of Indium used in ITO, efforts are underway to develop indium-free TCOs for the above-mentioned devices as well as flat panel displays. ZnO heavily doped with Ga or Al (GZO or AZO) is becoming a very attractive candidate for future generation TCOs. GZO and AZO as well as multilayer TCOs consisting of two TCO layers with a thin metal layer in between have been widely investigated for LEDs and solar cells to enhance device performance. This article succinctly reviews the latest developments in and properties of TCOs, particularly in relation to thin film transparent electrode applications for LEDs and solar cells. Pertinent critical issues and possible solutions are provided as well.", "meta": {"doi": "10.1016/j.spmi.2010.08.011"}, "_input_hash": -1747012537, "_task_hash": -1464765875, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "both", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "light", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": "emitting", "start": 14, "end": 22, "id": 3, "annotation": null}, {"text": "devices", "start": 23, "end": 30, "id": 4, "annotation": null}, {"text": "such", "start": 31, "end": 35, "id": 5, "annotation": null}, {"text": "as", "start": 36, "end": 38, "id": 6, "annotation": null}, {"text": "light", "start": 39, "end": 44, "id": 7, "annotation": null}, {"text": "emitting", "start": 45, "end": 53, "id": 8, "annotation": null}, {"text": "diodes", "start": 54, "end": 60, "id": 9, "annotation": null}, {"text": "(", "start": 61, "end": 62, "id": 10, "annotation": null}, {"text": "LEDs", "start": 63, "end": 67, "id": 11, "annotation": null}, {"text": ")", "start": 68, "end": 69, "id": 12, "annotation": null}, {"text": ",", "start": 70, "end": 71, "id": 13, "annotation": null}, {"text": "and", "start": 72, "end": 75, "id": 14, "annotation": null}, {"text": "light", "start": 76, "end": 81, "id": 15, "annotation": null}, {"text": "absorbing", "start": 82, "end": 91, "id": 16, "annotation": null}, {"text": "devices", "start": 92, "end": 99, "id": 17, "annotation": null}, {"text": "such", "start": 100, "end": 104, "id": 18, "annotation": null}, {"text": "as", "start": 105, "end": 107, "id": 19, "annotation": null}, {"text": "solar", "start": 108, "end": 113, "id": 20, "annotation": null}, {"text": "cells", "start": 114, "end": 119, "id": 21, "annotation": null}, {"text": "(", "start": 120, "end": 121, "id": 22, "annotation": null}, {"text": "also", "start": 122, "end": 126, "id": 23, "annotation": null}, {"text": "photodetectors", "start": 127, "end": 141, "id": 24, "annotation": null}, {"text": ")", "start": 142, "end": 143, "id": 25, "annotation": null}, {"text": ",", "start": 144, "end": 145, "id": 26, "annotation": null}, {"text": "which", "start": 146, "end": 151, "id": 27, "annotation": null}, {"text": "are", "start": 152, "end": 155, "id": 28, "annotation": null}, {"text": "gaining", "start": 156, "end": 163, "id": 29, "annotation": null}, {"text": "considerable", "start": 164, "end": 176, "id": 30, "annotation": null}, {"text": "interest", "start": 177, "end": 185, "id": 31, "annotation": null}, {"text": "for", "start": 186, "end": 189, "id": 32, "annotation": null}, {"text": "their", "start": 190, "end": 195, "id": 33, "annotation": null}, {"text": "energy", "start": 196, "end": 202, "id": 34, "annotation": null}, {"text": "saving", "start": 203, "end": 209, "id": 35, "annotation": null}, {"text": "and", "start": 210, "end": 213, "id": 36, "annotation": null}, {"text": "energy", "start": 214, "end": 220, "id": 37, "annotation": null}, {"text": "production", "start": 221, "end": 231, "id": 38, "annotation": null}, {"text": "capability", "start": 232, "end": 242, "id": 39, "annotation": null}, {"text": ",", "start": 243, "end": 244, "id": 40, "annotation": null}, {"text": "respectively", "start": 245, "end": 257, "id": 41, "annotation": null}, {"text": ",", "start": 258, "end": 259, "id": 42, "annotation": null}, {"text": "a", "start": 260, "end": 261, "id": 43, "annotation": null}, {"text": "compromise", "start": 262, "end": 272, "id": 44, "annotation": null}, {"text": "must", "start": 273, "end": 277, "id": 45, "annotation": null}, {"text": "be", "start": 278, "end": 280, "id": 46, "annotation": null}, {"text": "struck", "start": 281, "end": 287, "id": 47, "annotation": null}, {"text": "between", "start": 288, "end": 295, "id": 48, "annotation": null}, {"text": "the", "start": 296, "end": 299, "id": 49, "annotation": null}, {"text": "need", "start": 300, "end": 304, "id": 50, "annotation": null}, {"text": "to", "start": 305, "end": 307, "id": 51, "annotation": null}, {"text": "increase", "start": 308, "end": 316, "id": 52, "annotation": null}, {"text": "the", "start": 317, "end": 320, "id": 53, "annotation": null}, {"text": "light", "start": 321, "end": 326, "id": 54, "annotation": null}, {"text": "emitting", "start": 327, "end": 335, "id": 55, "annotation": null}, {"text": "/", "start": 336, "end": 337, "id": 56, "annotation": null}, {"text": "absorbing", "start": 338, "end": 347, "id": 57, "annotation": null}, {"text": "area", "start": 348, "end": 352, "id": 58, "annotation": null}, {"text": "/", "start": 353, "end": 354, "id": 59, "annotation": null}, {"text": "potential", "start": 355, "end": 364, "id": 60, "annotation": null}, {"text": "and", "start": 365, "end": 368, "id": 61, "annotation": null}, {"text": "the", "start": 369, "end": 372, "id": 62, "annotation": null}, {"text": "need", "start": 373, "end": 377, "id": 63, "annotation": null}, {"text": "for", "start": 378, "end": 381, "id": 64, "annotation": null}, {"text": "low", "start": 382, "end": 385, "id": 65, "annotation": null}, {"text": "series", "start": 386, "end": 392, "id": 66, "annotation": null}, {"text": "resistance", "start": 393, "end": 403, "id": 67, "annotation": null}, {"text": "of", "start": 404, "end": 406, "id": 68, "annotation": null}, {"text": "the", "start": 407, "end": 410, "id": 69, "annotation": null}, {"text": "metal", "start": 411, "end": 416, "id": 70, "annotation": null}, {"text": "contact", "start": 417, "end": 424, "id": 71, "annotation": null}, {"text": "grid", "start": 425, "end": 429, "id": 72, "annotation": null}, {"text": ".", "start": 430, "end": 431, "id": 73, "annotation": null}], [{"text": "This", "start": 432, "end": 436, "id": 74, "annotation": null}, {"text": "undesirable", "start": 437, "end": 448, "id": 75, "annotation": null}, {"text": "compromise", "start": 449, "end": 459, "id": 76, "annotation": null}, {"text": "can", "start": 460, "end": 463, "id": 77, "annotation": null}, {"text": "be", "start": 464, "end": 466, "id": 78, "annotation": null}, {"text": "mitigated", "start": 467, "end": 476, "id": 79, "annotation": null}, {"text": "by", "start": 477, "end": 479, "id": 80, "annotation": null}, {"text": "using", "start": 480, "end": 485, "id": 81, "annotation": null}, {"text": "transparent", "start": 486, "end": 497, "id": 82, "annotation": null}, {"text": "conducting", "start": 498, "end": 508, "id": 83, "annotation": null}, {"text": "oxides", "start": 509, "end": 515, "id": 84, "annotation": null}, {"text": "(", "start": 516, "end": 517, "id": 85, "annotation": null}, {"text": "TCOs", "start": 518, "end": 522, "id": 86, "annotation": null}, {"text": ")", "start": 523, "end": 524, "id": 87, "annotation": null}, {"text": ",", "start": 525, "end": 526, "id": 88, "annotation": null}, {"text": "which", "start": 527, "end": 532, "id": 89, "annotation": null}, {"text": "heretofore", "start": 533, "end": 543, "id": 90, "annotation": null}, {"text": "have", "start": 544, "end": 548, "id": 91, "annotation": null}, {"text": "been", "start": 549, "end": 553, "id": 92, "annotation": null}, {"text": "dominated", "start": 554, "end": 563, "id": 93, "annotation": null}, {"text": "by", "start": 564, "end": 566, "id": 94, "annotation": null}, {"text": "ITO", "start": 567, "end": 570, "id": 95, "annotation": null}, {"text": "(", "start": 571, "end": 572, "id": 96, "annotation": null}, {"text": "indium", "start": 573, "end": 579, "id": 97, "annotation": null}, {"text": "tin", "start": 580, "end": 583, "id": 98, "annotation": null}, {"text": "oxide", "start": 584, "end": 589, "id": 99, "annotation": null}, {"text": "\u2014", "start": 590, "end": 591, "id": 100, "annotation": null}, {"text": "an", "start": 592, "end": 594, "id": 101, "annotation": null}, {"text": "In", "start": 595, "end": 597, "id": 102, "annotation": null}, {"text": "-", "start": 598, "end": 599, "id": 103, "annotation": null}, {"text": "rich", "start": 600, "end": 604, "id": 104, "annotation": null}, {"text": "alloy", "start": 605, "end": 610, "id": 105, "annotation": null}, {"text": "of", "start": 611, "end": 613, "id": 106, "annotation": null}, {"text": "indium", "start": 614, "end": 620, "id": 107, "annotation": null}, {"text": "oxide", "start": 621, "end": 626, "id": 108, "annotation": null}, {"text": "and", "start": 627, "end": 630, "id": 109, "annotation": null}, {"text": "tin", "start": 631, "end": 634, "id": 110, "annotation": null}, {"text": "oxide", "start": 635, "end": 640, "id": 111, "annotation": null}, {"text": ")", "start": 641, "end": 642, "id": 112, "annotation": null}, {"text": ".", "start": 643, "end": 644, "id": 113, "annotation": null}], [{"text": "Due", "start": 645, "end": 648, "id": 114, "annotation": null}, {"text": "to", "start": 649, "end": 651, "id": 115, "annotation": null}, {"text": "the", "start": 652, "end": 655, "id": 116, "annotation": null}, {"text": "expected", "start": 656, "end": 664, "id": 117, "annotation": null}, {"text": "scarcity", "start": 665, "end": 673, "id": 118, "annotation": null}, {"text": "of", "start": 674, "end": 676, "id": 119, "annotation": null}, {"text": "Indium", "start": 677, "end": 683, "id": 120, "annotation": null}, {"text": "used", "start": 684, "end": 688, "id": 121, "annotation": null}, {"text": "in", "start": 689, "end": 691, "id": 122, "annotation": null}, {"text": "ITO", "start": 692, "end": 695, "id": 123, "annotation": null}, {"text": ",", "start": 696, "end": 697, "id": 124, "annotation": null}, {"text": "efforts", "start": 698, "end": 705, "id": 125, "annotation": null}, {"text": "are", "start": 706, "end": 709, "id": 126, "annotation": null}, {"text": "underway", "start": 710, "end": 718, "id": 127, "annotation": null}, {"text": "to", "start": 719, "end": 721, "id": 128, "annotation": null}, {"text": "develop", "start": 722, "end": 729, "id": 129, "annotation": null}, {"text": "indium", "start": 730, "end": 736, "id": 130, "annotation": null}, {"text": "-", "start": 737, "end": 738, "id": 131, "annotation": null}, {"text": "free", "start": 739, "end": 743, "id": 132, "annotation": null}, {"text": "TCOs", "start": 744, "end": 748, "id": 133, "annotation": null}, {"text": "for", "start": 749, "end": 752, "id": 134, "annotation": null}, {"text": "the", "start": 753, "end": 756, "id": 135, "annotation": null}, {"text": "above", "start": 757, "end": 762, "id": 136, "annotation": null}, {"text": "-", "start": 763, "end": 764, "id": 137, "annotation": null}, {"text": "mentioned", "start": 765, "end": 774, "id": 138, "annotation": null}, {"text": "devices", "start": 775, "end": 782, "id": 139, "annotation": null}, {"text": "as", "start": 783, "end": 785, "id": 140, "annotation": null}, {"text": "well", "start": 786, "end": 790, "id": 141, "annotation": null}, {"text": "as", "start": 791, "end": 793, "id": 142, "annotation": null}, {"text": "flat", "start": 794, "end": 798, "id": 143, "annotation": null}, {"text": "panel", "start": 799, "end": 804, "id": 144, "annotation": null}, {"text": "displays", "start": 805, "end": 813, "id": 145, "annotation": null}, {"text": ".", "start": 814, "end": 815, "id": 146, "annotation": null}], [{"text": "ZnO", "start": 816, "end": 819, "id": 147, "annotation": "BASEMAT"}, {"text": "heavily", "start": 820, "end": 827, "id": 148, "annotation": null}, {"text": "doped", "start": 828, "end": 833, "id": 149, "annotation": null}, {"text": "with", "start": 834, "end": 838, "id": 150, "annotation": null}, {"text": "Ga", "start": 839, "end": 841, "id": 151, "annotation": "DOPANT"}, {"text": "or", "start": 842, "end": 844, "id": 152, "annotation": null}, {"text": "Al", "start": 845, "end": 847, "id": 153, "annotation": "DOPANT"}, {"text": "(", "start": 848, "end": 849, "id": 154, "annotation": null}, {"text": "GZO", "start": 850, "end": 853, "id": 155, "annotation": null}, {"text": "or", "start": 854, "end": 856, "id": 156, "annotation": null}, {"text": "AZO", "start": 857, "end": 860, "id": 157, "annotation": null}, {"text": ")", "start": 861, "end": 862, "id": 158, "annotation": null}, {"text": "is", "start": 863, "end": 865, "id": 159, "annotation": null}, {"text": "becoming", "start": 866, "end": 874, "id": 160, "annotation": null}, {"text": "a", "start": 875, "end": 876, "id": 161, "annotation": null}, {"text": "very", "start": 877, "end": 881, "id": 162, "annotation": null}, {"text": "attractive", "start": 882, "end": 892, "id": 163, "annotation": null}, {"text": "candidate", "start": 893, "end": 902, "id": 164, "annotation": null}, {"text": "for", "start": 903, "end": 906, "id": 165, "annotation": null}, {"text": "future", "start": 907, "end": 913, "id": 166, "annotation": null}, {"text": "generation", "start": 914, "end": 924, "id": 167, "annotation": null}, {"text": "TCOs", "start": 925, "end": 929, "id": 168, "annotation": null}, {"text": ".", "start": 930, "end": 931, "id": 169, "annotation": null}], [{"text": "GZO", "start": 932, "end": 935, "id": 170, "annotation": null}, {"text": "and", "start": 936, "end": 939, "id": 171, "annotation": null}, {"text": "AZO", "start": 940, "end": 943, "id": 172, "annotation": null}, {"text": "as", "start": 944, "end": 946, "id": 173, "annotation": null}, {"text": "well", "start": 947, "end": 951, "id": 174, "annotation": null}, {"text": "as", "start": 952, "end": 954, "id": 175, "annotation": null}, {"text": "multilayer", "start": 955, "end": 965, "id": 176, "annotation": null}, {"text": "TCOs", "start": 966, "end": 970, "id": 177, "annotation": null}, {"text": "consisting", "start": 971, "end": 981, "id": 178, "annotation": null}, {"text": "of", "start": 982, "end": 984, "id": 179, "annotation": null}, {"text": "two", "start": 985, "end": 988, "id": 180, "annotation": null}, {"text": "TCO", "start": 989, "end": 992, "id": 181, "annotation": null}, {"text": "layers", "start": 993, "end": 999, "id": 182, "annotation": null}, {"text": "with", "start": 1000, "end": 1004, "id": 183, "annotation": null}, {"text": "a", "start": 1005, "end": 1006, "id": 184, "annotation": null}, {"text": "thin", "start": 1007, "end": 1011, "id": 185, "annotation": null}, {"text": "metal", "start": 1012, "end": 1017, "id": 186, "annotation": null}, {"text": "layer", "start": 1018, "end": 1023, "id": 187, "annotation": null}, {"text": "in", "start": 1024, "end": 1026, "id": 188, "annotation": null}, {"text": "between", "start": 1027, "end": 1034, "id": 189, "annotation": null}, {"text": "have", "start": 1035, "end": 1039, "id": 190, "annotation": null}, {"text": "been", "start": 1040, "end": 1044, "id": 191, "annotation": null}, {"text": "widely", "start": 1045, "end": 1051, "id": 192, "annotation": null}, {"text": "investigated", "start": 1052, "end": 1064, "id": 193, "annotation": null}, {"text": "for", "start": 1065, "end": 1068, "id": 194, "annotation": null}, {"text": "LEDs", "start": 1069, "end": 1073, "id": 195, "annotation": null}, {"text": "and", "start": 1074, "end": 1077, "id": 196, "annotation": null}, {"text": "solar", "start": 1078, "end": 1083, "id": 197, "annotation": null}, {"text": "cells", "start": 1084, "end": 1089, "id": 198, "annotation": null}, {"text": "to", "start": 1090, "end": 1092, "id": 199, "annotation": null}, {"text": "enhance", "start": 1093, "end": 1100, "id": 200, "annotation": null}, {"text": "device", "start": 1101, "end": 1107, "id": 201, "annotation": null}, {"text": "performance", "start": 1108, "end": 1119, "id": 202, "annotation": null}, {"text": ".", "start": 1120, "end": 1121, "id": 203, "annotation": null}], [{"text": "This", "start": 1122, "end": 1126, "id": 204, "annotation": null}, {"text": "article", "start": 1127, "end": 1134, "id": 205, "annotation": null}, {"text": "succinctly", "start": 1135, "end": 1145, "id": 206, "annotation": null}, {"text": "reviews", "start": 1146, "end": 1153, "id": 207, "annotation": null}, {"text": "the", "start": 1154, "end": 1157, "id": 208, "annotation": null}, {"text": "latest", "start": 1158, "end": 1164, "id": 209, "annotation": null}, {"text": "developments", "start": 1165, "end": 1177, "id": 210, "annotation": null}, {"text": "in", "start": 1178, "end": 1180, "id": 211, "annotation": null}, {"text": "and", "start": 1181, "end": 1184, "id": 212, "annotation": null}, {"text": "properties", "start": 1185, "end": 1195, "id": 213, "annotation": null}, {"text": "of", "start": 1196, "end": 1198, "id": 214, "annotation": null}, {"text": "TCOs", "start": 1199, "end": 1203, "id": 215, "annotation": null}, {"text": ",", "start": 1204, "end": 1205, "id": 216, "annotation": null}, {"text": "particularly", "start": 1206, "end": 1218, "id": 217, "annotation": null}, {"text": "in", "start": 1219, "end": 1221, "id": 218, "annotation": null}, {"text": "relation", "start": 1222, "end": 1230, "id": 219, "annotation": null}, {"text": "to", "start": 1231, "end": 1233, "id": 220, "annotation": null}, {"text": "thin", "start": 1234, "end": 1238, "id": 221, "annotation": null}, {"text": "film", "start": 1239, "end": 1243, "id": 222, "annotation": null}, {"text": "transparent", "start": 1244, "end": 1255, "id": 223, "annotation": null}, {"text": "electrode", "start": 1256, "end": 1265, "id": 224, "annotation": null}, {"text": "applications", "start": 1266, "end": 1278, "id": 225, "annotation": null}, {"text": "for", "start": 1279, "end": 1282, "id": 226, "annotation": null}, {"text": "LEDs", "start": 1283, "end": 1287, "id": 227, "annotation": null}, {"text": "and", "start": 1288, "end": 1291, "id": 228, "annotation": null}, {"text": "solar", "start": 1292, "end": 1297, "id": 229, "annotation": null}, {"text": "cells", "start": 1298, "end": 1303, "id": 230, "annotation": null}, {"text": ".", "start": 1304, "end": 1305, "id": 231, "annotation": null}], [{"text": "Pertinent", "start": 1306, "end": 1315, "id": 232, "annotation": null}, {"text": "critical", "start": 1316, "end": 1324, "id": 233, "annotation": null}, {"text": "issues", "start": 1325, "end": 1331, "id": 234, "annotation": null}, {"text": "and", "start": 1332, "end": 1335, "id": 235, "annotation": null}, {"text": "possible", "start": 1336, "end": 1344, "id": 236, "annotation": null}, {"text": "solutions", "start": 1345, "end": 1354, "id": 237, "annotation": null}, {"text": "are", "start": 1355, "end": 1358, "id": 238, "annotation": null}, {"text": "provided", "start": 1359, "end": 1367, "id": 239, "annotation": null}, {"text": "as", "start": 1368, "end": 1370, "id": 240, "annotation": null}, {"text": "well", "start": 1371, "end": 1375, "id": 241, "annotation": null}, {"text": ".", "start": 1376, "end": 1377, "id": 242, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "\u00a9 2015 WILEY-VCH Verlag GmbH & Co. KGaA. Fiber lasers operating via Raman gain or based on rare-earth-doped active fibers are widely used as sources of CW radiation. However, these lasers are only quasi-CW: their intensity fluctuates strongly on short time scales. Here the framework of the complex Ginzburg-Landau equations, which are well known as an efficient model of mode-locked fiber lasers, is applied for the description of quasi-CW fiber lasers. The vector Ginzburg-Landau model of a Raman fiber laser describes the experimentally observed turbulent-like intensity dynamics, as well as polarization rogue waves. Our results open debates about the common underlying physics of operation of very different laser types - quasi-CW lasers and passively mode-locked lasers. Fiber lasers operating via Raman gain or based on rare-earth-doped active fibers are widely used as sources of CW radiation. However, these lasers are only quasi-CW: their intensity fluctuates strongly on short time scales. Here the framework of the complex Ginzburg-Landau equations, which are well known as an efficient model of mode-locked fiber lasers, is applied for the description of quasi-CW fiber lasers. Our results open debates about the common underlying physics of operation of very different laser types - quasi-CW lasers and passively mode-locked lasers.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "KGaA", "start": 35, "end": 39, "annotation": null}, {"text": ".", "start": 39, "end": 40, "annotation": null}], [{"text": "Fiber", "start": 41, "end": 46, "annotation": null}, {"text": "lasers", "start": 47, "end": 53, "annotation": null}, {"text": "operating", "start": 54, "end": 63, "annotation": null}, {"text": "via", "start": 64, "end": 67, "annotation": null}, {"text": "Raman", "start": 68, "end": 73, "annotation": null}, {"text": "gain", "start": 74, "end": 78, "annotation": null}, {"text": "or", "start": 79, "end": 81, "annotation": null}, {"text": "based", "start": 82, "end": 87, "annotation": null}, {"text": "on", "start": 88, "end": 90, "annotation": null}, {"text": "rare", "start": 91, "end": 95, "annotation": "DOPANT"}, {"text": "-", "start": 95, "end": 96, "annotation": "DOPANT"}, {"text": "earth", "start": 96, "end": 101, "annotation": "DOPANT"}, {"text": "-", "start": 101, "end": 102, "annotation": null}, {"text": "doped", "start": 102, "end": 107, "annotation": null}, {"text": "active", "start": 108, "end": 114, "annotation": "BASEMAT"}, {"text": "fibers", "start": 115, "end": 121, "annotation": "BASEMAT"}, {"text": "are", "start": 122, "end": 125, "annotation": null}, {"text": "widely", "start": 126, "end": 132, "annotation": null}, {"text": "used", "start": 133, "end": 137, "annotation": null}, {"text": "as", "start": 138, "end": 140, "annotation": null}, {"text": "sources", "start": 141, "end": 148, "annotation": null}, {"text": "of", "start": 149, "end": 151, "annotation": null}, {"text": "CW", "start": 152, "end": 154, "annotation": null}, {"text": "radiation", "start": 155, "end": 164, "annotation": null}, {"text": ".", "start": 164, "end": 165, "annotation": null}], [{"text": "However", "start": 166, "end": 173, "annotation": null}, {"text": ",", "start": 173, "end": 174, "annotation": null}, {"text": "these", "start": 175, "end": 180, "annotation": null}, {"text": "lasers", "start": 181, "end": 187, "annotation": null}, {"text": "are", "start": 188, "end": 191, "annotation": null}, {"text": "only", "start": 192, "end": 196, "annotation": null}, {"text": "quasi-CW", "start": 197, "end": 205, "annotation": null}, {"text": ":", "start": 205, "end": 206, "annotation": null}, {"text": "their", "start": 207, "end": 212, "annotation": null}, {"text": "intensity", "start": 213, "end": 222, "annotation": null}, {"text": "fluctuates", "start": 223, "end": 233, "annotation": null}, {"text": "strongly", "start": 234, "end": 242, "annotation": null}, {"text": "on", "start": 243, "end": 245, "annotation": null}, {"text": "short", "start": 246, "end": 251, "annotation": null}, {"text": "time", "start": 252, "end": 256, "annotation": null}, {"text": "scales", "start": 257, "end": 263, "annotation": null}, {"text": ".", "start": 263, "end": 264, "annotation": null}], [{"text": "Here", "start": 265, "end": 269, "annotation": null}, {"text": "the", "start": 270, "end": 273, "annotation": null}, {"text": "framework", "start": 274, "end": 283, "annotation": null}, {"text": "of", "start": 284, "end": 286, "annotation": null}, {"text": "the", "start": 287, "end": 290, "annotation": null}, {"text": "complex", "start": 291, "end": 298, "annotation": null}, {"text": "Ginzburg", "start": 299, "end": 307, "annotation": null}, {"text": "-", "start": 307, "end": 308, "annotation": null}, {"text": "Landau", "start": 308, "end": 314, "annotation": null}, {"text": "equations", "start": 315, "end": 324, "annotation": null}, {"text": ",", "start": 324, "end": 325, "annotation": null}, {"text": "which", "start": 326, "end": 331, "annotation": null}, {"text": "are", "start": 332, "end": 335, "annotation": null}, {"text": "well", "start": 336, "end": 340, "annotation": null}, {"text": "known", "start": 341, "end": 346, "annotation": null}, {"text": "as", "start": 347, "end": 349, "annotation": null}, {"text": "an", "start": 350, "end": 352, "annotation": null}, {"text": "efficient", "start": 353, "end": 362, "annotation": null}, {"text": "model", "start": 363, "end": 368, "annotation": null}, {"text": "of", "start": 369, "end": 371, "annotation": null}, {"text": "mode", "start": 372, "end": 376, "annotation": null}, {"text": "-", "start": 376, "end": 377, "annotation": null}, {"text": "locked", "start": 377, "end": 383, "annotation": null}, {"text": "fiber", "start": 384, "end": 389, "annotation": null}, {"text": "lasers", "start": 390, "end": 396, "annotation": null}, {"text": ",", "start": 396, "end": 397, "annotation": null}, {"text": "is", "start": 398, "end": 400, "annotation": null}, {"text": "applied", "start": 401, "end": 408, "annotation": null}, {"text": "for", "start": 409, "end": 412, "annotation": null}, {"text": "the", "start": 413, "end": 416, "annotation": null}, {"text": "description", "start": 417, "end": 428, "annotation": null}, {"text": "of", "start": 429, "end": 431, "annotation": null}, {"text": "quasi-CW", "start": 432, "end": 440, "annotation": null}, {"text": "fiber", "start": 441, "end": 446, "annotation": null}, {"text": "lasers", "start": 447, "end": 453, "annotation": null}, {"text": ".", "start": 453, "end": 454, "annotation": null}], [{"text": "The", "start": 455, "end": 458, "annotation": null}, {"text": "vector", "start": 459, "end": 465, "annotation": null}, {"text": "Ginzburg", "start": 466, "end": 474, "annotation": null}, {"text": "-", "start": 474, "end": 475, "annotation": null}, {"text": "Landau", "start": 475, "end": 481, "annotation": null}, {"text": "model", "start": 482, "end": 487, "annotation": null}, {"text": "of", "start": 488, "end": 490, "annotation": null}, {"text": "a", "start": 491, "end": 492, "annotation": null}, {"text": "Raman", "start": 493, "end": 498, "annotation": null}, {"text": "fiber", "start": 499, "end": 504, "annotation": null}, {"text": "laser", "start": 505, "end": 510, "annotation": null}, {"text": "describes", "start": 511, "end": 520, "annotation": null}, {"text": "the", "start": 521, "end": 524, "annotation": null}, {"text": "experimentally", "start": 525, "end": 539, "annotation": null}, {"text": "observed", "start": 540, "end": 548, "annotation": null}, {"text": "turbulent", "start": 549, "end": 558, "annotation": null}, {"text": "-", "start": 558, "end": 559, "annotation": null}, {"text": "like", "start": 559, "end": 563, "annotation": null}, {"text": "intensity", "start": 564, "end": 573, "annotation": null}, {"text": "dynamics", "start": 574, "end": 582, "annotation": null}, {"text": ",", "start": 582, "end": 583, "annotation": null}, {"text": "as", "start": 584, "end": 586, "annotation": null}, {"text": "well", "start": 587, "end": 591, "annotation": null}, {"text": "as", "start": 592, "end": 594, "annotation": null}, {"text": "polarization", "start": 595, "end": 607, "annotation": null}, {"text": "rogue", "start": 608, "end": 613, "annotation": null}, {"text": "waves", "start": 614, "end": 619, "annotation": null}, {"text": ".", "start": 619, "end": 620, "annotation": null}], [{"text": "Our", "start": 621, "end": 624, "annotation": null}, {"text": "results", "start": 625, "end": 632, "annotation": null}, {"text": "open", "start": 633, "end": 637, "annotation": null}, {"text": "debates", "start": 638, "end": 645, "annotation": null}, {"text": "about", "start": 646, "end": 651, "annotation": null}, {"text": "the", "start": 652, "end": 655, "annotation": null}, {"text": "common", "start": 656, "end": 662, "annotation": null}, {"text": "underlying", "start": 663, "end": 673, "annotation": null}, {"text": "physics", "start": 674, "end": 681, "annotation": null}, {"text": "of", "start": 682, "end": 684, "annotation": null}, {"text": "operation", "start": 685, "end": 694, "annotation": null}, {"text": "of", "start": 695, "end": 697, "annotation": null}, {"text": "very", "start": 698, "end": 702, "annotation": null}, {"text": "different", "start": 703, "end": 712, "annotation": null}, {"text": "laser", "start": 713, "end": 718, "annotation": null}, {"text": "types", "start": 719, "end": 724, "annotation": null}, {"text": "-", "start": 725, "end": 726, "annotation": null}, {"text": "quasi-CW", "start": 727, "end": 735, "annotation": null}, {"text": "lasers", "start": 736, "end": 742, "annotation": null}, {"text": "and", "start": 743, "end": 746, "annotation": null}, {"text": "passively", "start": 747, "end": 756, "annotation": null}, {"text": "mode", "start": 757, "end": 761, "annotation": null}, {"text": "-", "start": 761, "end": 762, "annotation": null}, {"text": "locked", "start": 762, "end": 768, "annotation": null}, {"text": "lasers", "start": 769, "end": 775, "annotation": null}, {"text": ".", "start": 775, "end": 776, "annotation": null}], [{"text": "Fiber", "start": 777, "end": 782, "annotation": null}, {"text": "lasers", "start": 783, "end": 789, "annotation": null}, {"text": "operating", "start": 790, "end": 799, "annotation": null}, {"text": "via", "start": 800, "end": 803, "annotation": null}, {"text": "Raman", "start": 804, "end": 809, "annotation": null}, {"text": "gain", "start": 810, "end": 814, "annotation": null}, {"text": "or", "start": 815, "end": 817, "annotation": null}, {"text": "based", "start": 818, "end": 823, "annotation": null}, {"text": "on", "start": 824, "end": 826, "annotation": null}, {"text": "rare", "start": 827, "end": 831, "annotation": null}, {"text": "-", "start": 831, "end": 832, "annotation": null}, {"text": "earth", "start": 832, "end": 837, "annotation": null}, {"text": "-", "start": 837, "end": 838, "annotation": null}, {"text": "doped", "start": 838, "end": 843, "annotation": null}, {"text": "active", "start": 844, "end": 850, "annotation": null}, {"text": "fibers", "start": 851, "end": 857, "annotation": null}, {"text": "are", "start": 858, "end": 861, "annotation": null}, {"text": "widely", "start": 862, "end": 868, "annotation": null}, {"text": "used", "start": 869, "end": 873, "annotation": null}, {"text": "as", "start": 874, "end": 876, "annotation": null}, {"text": "sources", "start": 877, "end": 884, "annotation": null}, {"text": "of", "start": 885, "end": 887, "annotation": null}, {"text": "CW", "start": 888, "end": 890, "annotation": null}, {"text": "radiation", "start": 891, "end": 900, "annotation": null}, {"text": ".", "start": 900, "end": 901, "annotation": null}], [{"text": "However", "start": 902, "end": 909, "annotation": null}, {"text": ",", "start": 909, "end": 910, "annotation": null}, {"text": "these", "start": 911, "end": 916, "annotation": null}, {"text": "lasers", "start": 917, "end": 923, "annotation": null}, {"text": "are", "start": 924, "end": 927, "annotation": null}, {"text": "only", "start": 928, "end": 932, "annotation": null}, {"text": "quasi-CW", "start": 933, "end": 941, "annotation": null}, {"text": ":", "start": 941, "end": 942, "annotation": null}, {"text": "their", "start": 943, "end": 948, "annotation": null}, {"text": "intensity", "start": 949, "end": 958, "annotation": null}, {"text": "fluctuates", "start": 959, "end": 969, "annotation": null}, {"text": "strongly", "start": 970, "end": 978, "annotation": null}, {"text": "on", "start": 979, "end": 981, "annotation": null}, {"text": "short", "start": 982, "end": 987, "annotation": null}, {"text": "time", "start": 988, "end": 992, "annotation": null}, {"text": "scales", "start": 993, "end": 999, "annotation": null}, {"text": ".", "start": 999, "end": 1000, "annotation": null}], [{"text": "Here", "start": 1001, "end": 1005, "annotation": null}, {"text": "the", "start": 1006, "end": 1009, "annotation": null}, {"text": "framework", "start": 1010, "end": 1019, "annotation": null}, {"text": "of", "start": 1020, "end": 1022, "annotation": null}, {"text": "the", "start": 1023, "end": 1026, "annotation": null}, {"text": "complex", "start": 1027, "end": 1034, "annotation": null}, {"text": "Ginzburg", "start": 1035, "end": 1043, "annotation": null}, {"text": "-", "start": 1043, "end": 1044, "annotation": null}, {"text": "Landau", "start": 1044, "end": 1050, "annotation": null}, {"text": "equations", "start": 1051, "end": 1060, "annotation": null}, {"text": ",", "start": 1060, "end": 1061, "annotation": null}, {"text": "which", "start": 1062, "end": 1067, "annotation": null}, {"text": "are", "start": 1068, "end": 1071, "annotation": null}, {"text": "well", "start": 1072, "end": 1076, "annotation": null}, {"text": "known", "start": 1077, "end": 1082, "annotation": null}, {"text": "as", "start": 1083, "end": 1085, "annotation": null}, {"text": "an", "start": 1086, "end": 1088, "annotation": null}, {"text": "efficient", "start": 1089, "end": 1098, "annotation": null}, {"text": "model", "start": 1099, "end": 1104, "annotation": null}, {"text": "of", "start": 1105, "end": 1107, "annotation": null}, {"text": "mode", "start": 1108, "end": 1112, "annotation": null}, {"text": "-", "start": 1112, "end": 1113, "annotation": null}, {"text": "locked", "start": 1113, "end": 1119, "annotation": null}, {"text": "fiber", "start": 1120, "end": 1125, "annotation": null}, {"text": "lasers", "start": 1126, "end": 1132, "annotation": null}, {"text": ",", "start": 1132, "end": 1133, "annotation": null}, {"text": "is", "start": 1134, "end": 1136, "annotation": null}, {"text": "applied", "start": 1137, "end": 1144, "annotation": null}, {"text": "for", "start": 1145, "end": 1148, "annotation": null}, {"text": "the", "start": 1149, "end": 1152, "annotation": null}, {"text": "description", "start": 1153, "end": 1164, "annotation": null}, {"text": "of", "start": 1165, "end": 1167, "annotation": null}, {"text": "quasi-CW", "start": 1168, "end": 1176, "annotation": null}, {"text": "fiber", "start": 1177, "end": 1182, "annotation": null}, {"text": "lasers", "start": 1183, "end": 1189, "annotation": null}, {"text": ".", "start": 1189, "end": 1190, "annotation": null}], [{"text": "Our", "start": 1191, "end": 1194, "annotation": null}, {"text": "results", "start": 1195, "end": 1202, "annotation": null}, {"text": "open", "start": 1203, "end": 1207, "annotation": null}, {"text": "debates", "start": 1208, "end": 1215, "annotation": null}, {"text": "about", "start": 1216, "end": 1221, "annotation": null}, {"text": "the", "start": 1222, "end": 1225, "annotation": null}, {"text": "common", "start": 1226, "end": 1232, "annotation": null}, {"text": "underlying", "start": 1233, "end": 1243, "annotation": null}, {"text": "physics", "start": 1244, "end": 1251, "annotation": null}, {"text": "of", "start": 1252, "end": 1254, "annotation": null}, {"text": "operation", "start": 1255, "end": 1264, "annotation": null}, {"text": "of", "start": 1265, "end": 1267, "annotation": null}, {"text": "very", "start": 1268, "end": 1272, "annotation": null}, {"text": "different", "start": 1273, "end": 1282, "annotation": null}, {"text": "laser", "start": 1283, "end": 1288, "annotation": null}, {"text": "types", "start": 1289, "end": 1294, "annotation": null}, {"text": "-", "start": 1295, "end": 1296, "annotation": null}, {"text": "quasi-CW", "start": 1297, "end": 1305, "annotation": null}, {"text": "lasers", "start": 1306, "end": 1312, "annotation": null}, {"text": "and", "start": 1313, "end": 1316, "annotation": null}, {"text": "passively", "start": 1317, "end": 1326, "annotation": null}, {"text": "mode", "start": 1327, "end": 1331, "annotation": null}, {"text": "-", "start": 1331, "end": 1332, "annotation": null}, {"text": "locked", "start": 1332, "end": 1338, "annotation": null}, {"text": "lasers", "start": 1339, "end": 1345, "annotation": null}, {"text": ".", "start": 1345, "end": 1346, "annotation": null}]]} +{"remark": "doping_annt1", "text": "\u00a9 2015 WILEY-VCH Verlag GmbH & Co. KGaA. Fiber lasers operating via Raman gain or based on rare-earth-doped active fibers are widely used as sources of CW radiation. However, these lasers are only quasi-CW: their intensity fluctuates strongly on short time scales. Here the framework of the complex Ginzburg-Landau equations, which are well known as an efficient model of mode-locked fiber lasers, is applied for the description of quasi-CW fiber lasers. The vector Ginzburg-Landau model of a Raman fiber laser describes the experimentally observed turbulent-like intensity dynamics, as well as polarization rogue waves. Our results open debates about the common underlying physics of operation of very different laser types - quasi-CW lasers and passively mode-locked lasers. Fiber lasers operating via Raman gain or based on rare-earth-doped active fibers are widely used as sources of CW radiation. However, these lasers are only quasi-CW: their intensity fluctuates strongly on short time scales. Here the framework of the complex Ginzburg-Landau equations, which are well known as an efficient model of mode-locked fiber lasers, is applied for the description of quasi-CW fiber lasers. Our results open debates about the common underlying physics of operation of very different laser types - quasi-CW lasers and passively mode-locked lasers.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "KGaA", "start": 35, "end": 39, "annotation": null}, {"text": ".", "start": 39, "end": 40, "annotation": null}], [{"text": "Fiber", "start": 41, "end": 46, "annotation": null}, {"text": "lasers", "start": 47, "end": 53, "annotation": null}, {"text": "operating", "start": 54, "end": 63, "annotation": null}, {"text": "via", "start": 64, "end": 67, "annotation": null}, {"text": "Raman", "start": 68, "end": 73, "annotation": null}, {"text": "gain", "start": 74, "end": 78, "annotation": null}, {"text": "or", "start": 79, "end": 81, "annotation": null}, {"text": "based", "start": 82, "end": 87, "annotation": null}, {"text": "on", "start": 88, "end": 90, "annotation": null}, {"text": "rare", "start": 91, "end": 95, "annotation": "DOPANT"}, {"text": "-", "start": 95, "end": 96, "annotation": "DOPANT"}, {"text": "earth", "start": 96, "end": 101, "annotation": "DOPANT"}, {"text": "-", "start": 101, "end": 102, "annotation": null}, {"text": "doped", "start": 102, "end": 107, "annotation": null}, {"text": "active", "start": 108, "end": 114, "annotation": "BASEMAT"}, {"text": "fibers", "start": 115, "end": 121, "annotation": "BASEMAT"}, {"text": "are", "start": 122, "end": 125, "annotation": null}, {"text": "widely", "start": 126, "end": 132, "annotation": null}, {"text": "used", "start": 133, "end": 137, "annotation": null}, {"text": "as", "start": 138, "end": 140, "annotation": null}, {"text": "sources", "start": 141, "end": 148, "annotation": null}, {"text": "of", "start": 149, "end": 151, "annotation": null}, {"text": "CW", "start": 152, "end": 154, "annotation": null}, {"text": "radiation", "start": 155, "end": 164, "annotation": null}, {"text": ".", "start": 164, "end": 165, "annotation": null}], [{"text": "However", "start": 166, "end": 173, "annotation": null}, {"text": ",", "start": 173, "end": 174, "annotation": null}, {"text": "these", "start": 175, "end": 180, "annotation": null}, {"text": "lasers", "start": 181, "end": 187, "annotation": null}, {"text": "are", "start": 188, "end": 191, "annotation": null}, {"text": "only", "start": 192, "end": 196, "annotation": null}, {"text": "quasi-CW", "start": 197, "end": 205, "annotation": null}, {"text": ":", "start": 205, "end": 206, "annotation": null}, {"text": "their", "start": 207, "end": 212, "annotation": null}, {"text": "intensity", "start": 213, "end": 222, "annotation": null}, {"text": "fluctuates", "start": 223, "end": 233, "annotation": null}, {"text": "strongly", "start": 234, "end": 242, "annotation": null}, {"text": "on", "start": 243, "end": 245, "annotation": null}, {"text": "short", "start": 246, "end": 251, "annotation": null}, {"text": "time", "start": 252, "end": 256, "annotation": null}, {"text": "scales", "start": 257, "end": 263, "annotation": null}, {"text": ".", "start": 263, "end": 264, "annotation": null}], [{"text": "Here", "start": 265, "end": 269, "annotation": null}, {"text": "the", "start": 270, "end": 273, "annotation": null}, {"text": "framework", "start": 274, "end": 283, "annotation": null}, {"text": "of", "start": 284, "end": 286, "annotation": null}, {"text": "the", "start": 287, "end": 290, "annotation": null}, {"text": "complex", "start": 291, "end": 298, "annotation": null}, {"text": "Ginzburg", "start": 299, "end": 307, "annotation": null}, {"text": "-", "start": 307, "end": 308, "annotation": null}, {"text": "Landau", "start": 308, "end": 314, "annotation": null}, {"text": "equations", "start": 315, "end": 324, "annotation": null}, {"text": ",", "start": 324, "end": 325, "annotation": null}, {"text": "which", "start": 326, "end": 331, "annotation": null}, {"text": "are", "start": 332, "end": 335, "annotation": null}, {"text": "well", "start": 336, "end": 340, "annotation": null}, {"text": "known", "start": 341, "end": 346, "annotation": null}, {"text": "as", "start": 347, "end": 349, "annotation": null}, {"text": "an", "start": 350, "end": 352, "annotation": null}, {"text": "efficient", "start": 353, "end": 362, "annotation": null}, {"text": "model", "start": 363, "end": 368, "annotation": null}, {"text": "of", "start": 369, "end": 371, "annotation": null}, {"text": "mode", "start": 372, "end": 376, "annotation": null}, {"text": "-", "start": 376, "end": 377, "annotation": null}, {"text": "locked", "start": 377, "end": 383, "annotation": null}, {"text": "fiber", "start": 384, "end": 389, "annotation": null}, {"text": "lasers", "start": 390, "end": 396, "annotation": null}, {"text": ",", "start": 396, "end": 397, "annotation": null}, {"text": "is", "start": 398, "end": 400, "annotation": null}, {"text": "applied", "start": 401, "end": 408, "annotation": null}, {"text": "for", "start": 409, "end": 412, "annotation": null}, {"text": "the", "start": 413, "end": 416, "annotation": null}, {"text": "description", "start": 417, "end": 428, "annotation": null}, {"text": "of", "start": 429, "end": 431, "annotation": null}, {"text": "quasi-CW", "start": 432, "end": 440, "annotation": null}, {"text": "fiber", "start": 441, "end": 446, "annotation": null}, {"text": "lasers", "start": 447, "end": 453, "annotation": null}, {"text": ".", "start": 453, "end": 454, "annotation": null}], [{"text": "The", "start": 455, "end": 458, "annotation": null}, {"text": "vector", "start": 459, "end": 465, "annotation": null}, {"text": "Ginzburg", "start": 466, "end": 474, "annotation": null}, {"text": "-", "start": 474, "end": 475, "annotation": null}, {"text": "Landau", "start": 475, "end": 481, "annotation": null}, {"text": "model", "start": 482, "end": 487, "annotation": null}, {"text": "of", "start": 488, "end": 490, "annotation": null}, {"text": "a", "start": 491, "end": 492, "annotation": null}, {"text": "Raman", "start": 493, "end": 498, "annotation": null}, {"text": "fiber", "start": 499, "end": 504, "annotation": null}, {"text": "laser", "start": 505, "end": 510, "annotation": null}, {"text": "describes", "start": 511, "end": 520, "annotation": null}, {"text": "the", "start": 521, "end": 524, "annotation": null}, {"text": "experimentally", "start": 525, "end": 539, "annotation": null}, {"text": "observed", "start": 540, "end": 548, "annotation": null}, {"text": "turbulent", "start": 549, "end": 558, "annotation": null}, {"text": "-", "start": 558, "end": 559, "annotation": null}, {"text": "like", "start": 559, "end": 563, "annotation": null}, {"text": "intensity", "start": 564, "end": 573, "annotation": null}, {"text": "dynamics", "start": 574, "end": 582, "annotation": null}, {"text": ",", "start": 582, "end": 583, "annotation": null}, {"text": "as", "start": 584, "end": 586, "annotation": null}, {"text": "well", "start": 587, "end": 591, "annotation": null}, {"text": "as", "start": 592, "end": 594, "annotation": null}, {"text": "polarization", "start": 595, "end": 607, "annotation": null}, {"text": "rogue", "start": 608, "end": 613, "annotation": null}, {"text": "waves", "start": 614, "end": 619, "annotation": null}, {"text": ".", "start": 619, "end": 620, "annotation": null}], [{"text": "Our", "start": 621, "end": 624, "annotation": null}, {"text": "results", "start": 625, "end": 632, "annotation": null}, {"text": "open", "start": 633, "end": 637, "annotation": null}, {"text": "debates", "start": 638, "end": 645, "annotation": null}, {"text": "about", "start": 646, "end": 651, "annotation": null}, {"text": "the", "start": 652, "end": 655, "annotation": null}, {"text": "common", "start": 656, "end": 662, "annotation": null}, {"text": "underlying", "start": 663, "end": 673, "annotation": null}, {"text": "physics", "start": 674, "end": 681, "annotation": null}, {"text": "of", "start": 682, "end": 684, "annotation": null}, {"text": "operation", "start": 685, "end": 694, "annotation": null}, {"text": "of", "start": 695, "end": 697, "annotation": null}, {"text": "very", "start": 698, "end": 702, "annotation": null}, {"text": "different", "start": 703, "end": 712, "annotation": null}, {"text": "laser", "start": 713, "end": 718, "annotation": null}, {"text": "types", "start": 719, "end": 724, "annotation": null}, {"text": "-", "start": 725, "end": 726, "annotation": null}, {"text": "quasi-CW", "start": 727, "end": 735, "annotation": null}, {"text": "lasers", "start": 736, "end": 742, "annotation": null}, {"text": "and", "start": 743, "end": 746, "annotation": null}, {"text": "passively", "start": 747, "end": 756, "annotation": null}, {"text": "mode", "start": 757, "end": 761, "annotation": null}, {"text": "-", "start": 761, "end": 762, "annotation": null}, {"text": "locked", "start": 762, "end": 768, "annotation": null}, {"text": "lasers", "start": 769, "end": 775, "annotation": null}, {"text": ".", "start": 775, "end": 776, "annotation": null}], [{"text": "Fiber", "start": 777, "end": 782, "annotation": null}, {"text": "lasers", "start": 783, "end": 789, "annotation": null}, {"text": "operating", "start": 790, "end": 799, "annotation": null}, {"text": "via", "start": 800, "end": 803, "annotation": null}, {"text": "Raman", "start": 804, "end": 809, "annotation": null}, {"text": "gain", "start": 810, "end": 814, "annotation": null}, {"text": "or", "start": 815, "end": 817, "annotation": null}, {"text": "based", "start": 818, "end": 823, "annotation": null}, {"text": "on", "start": 824, "end": 826, "annotation": null}, {"text": "rare", "start": 827, "end": 831, "annotation": null}, {"text": "-", "start": 831, "end": 832, "annotation": null}, {"text": "earth", "start": 832, "end": 837, "annotation": null}, {"text": "-", "start": 837, "end": 838, "annotation": null}, {"text": "doped", "start": 838, "end": 843, "annotation": null}, {"text": "active", "start": 844, "end": 850, "annotation": null}, {"text": "fibers", "start": 851, "end": 857, "annotation": null}, {"text": "are", "start": 858, "end": 861, "annotation": null}, {"text": "widely", "start": 862, "end": 868, "annotation": null}, {"text": "used", "start": 869, "end": 873, "annotation": null}, {"text": "as", "start": 874, "end": 876, "annotation": null}, {"text": "sources", "start": 877, "end": 884, "annotation": null}, {"text": "of", "start": 885, "end": 887, "annotation": null}, {"text": "CW", "start": 888, "end": 890, "annotation": null}, {"text": "radiation", "start": 891, "end": 900, "annotation": null}, {"text": ".", "start": 900, "end": 901, "annotation": null}], [{"text": "However", "start": 902, "end": 909, "annotation": null}, {"text": ",", "start": 909, "end": 910, "annotation": null}, {"text": "these", "start": 911, "end": 916, "annotation": null}, {"text": "lasers", "start": 917, "end": 923, "annotation": null}, {"text": "are", "start": 924, "end": 927, "annotation": null}, {"text": "only", "start": 928, "end": 932, "annotation": null}, {"text": "quasi-CW", "start": 933, "end": 941, "annotation": null}, {"text": ":", "start": 941, "end": 942, "annotation": null}, {"text": "their", "start": 943, "end": 948, "annotation": null}, {"text": "intensity", "start": 949, "end": 958, "annotation": null}, {"text": "fluctuates", "start": 959, "end": 969, "annotation": null}, {"text": "strongly", "start": 970, "end": 978, "annotation": null}, {"text": "on", "start": 979, "end": 981, "annotation": null}, {"text": "short", "start": 982, "end": 987, "annotation": null}, {"text": "time", "start": 988, "end": 992, "annotation": null}, {"text": "scales", "start": 993, "end": 999, "annotation": null}, {"text": ".", "start": 999, "end": 1000, "annotation": null}], [{"text": "Here", "start": 1001, "end": 1005, "annotation": null}, {"text": "the", "start": 1006, "end": 1009, "annotation": null}, {"text": "framework", "start": 1010, "end": 1019, "annotation": null}, {"text": "of", "start": 1020, "end": 1022, "annotation": null}, {"text": "the", "start": 1023, "end": 1026, "annotation": null}, {"text": "complex", "start": 1027, "end": 1034, "annotation": null}, {"text": "Ginzburg", "start": 1035, "end": 1043, "annotation": null}, {"text": "-", "start": 1043, "end": 1044, "annotation": null}, {"text": "Landau", "start": 1044, "end": 1050, "annotation": null}, {"text": "equations", "start": 1051, "end": 1060, "annotation": null}, {"text": ",", "start": 1060, "end": 1061, "annotation": null}, {"text": "which", "start": 1062, "end": 1067, "annotation": null}, {"text": "are", "start": 1068, "end": 1071, "annotation": null}, {"text": "well", "start": 1072, "end": 1076, "annotation": null}, {"text": "known", "start": 1077, "end": 1082, "annotation": null}, {"text": "as", "start": 1083, "end": 1085, "annotation": null}, {"text": "an", "start": 1086, "end": 1088, "annotation": null}, {"text": "efficient", "start": 1089, "end": 1098, "annotation": null}, {"text": "model", "start": 1099, "end": 1104, "annotation": null}, {"text": "of", "start": 1105, "end": 1107, "annotation": null}, {"text": "mode", "start": 1108, "end": 1112, "annotation": null}, {"text": "-", "start": 1112, "end": 1113, "annotation": null}, {"text": "locked", "start": 1113, "end": 1119, "annotation": null}, {"text": "fiber", "start": 1120, "end": 1125, "annotation": null}, {"text": "lasers", "start": 1126, "end": 1132, "annotation": null}, {"text": ",", "start": 1132, "end": 1133, "annotation": null}, {"text": "is", "start": 1134, "end": 1136, "annotation": null}, {"text": "applied", "start": 1137, "end": 1144, "annotation": null}, {"text": "for", "start": 1145, "end": 1148, "annotation": null}, {"text": "the", "start": 1149, "end": 1152, "annotation": null}, {"text": "description", "start": 1153, "end": 1164, "annotation": null}, {"text": "of", "start": 1165, "end": 1167, "annotation": null}, {"text": "quasi-CW", "start": 1168, "end": 1176, "annotation": null}, {"text": "fiber", "start": 1177, "end": 1182, "annotation": null}, {"text": "lasers", "start": 1183, "end": 1189, "annotation": null}, {"text": ".", "start": 1189, "end": 1190, "annotation": null}], [{"text": "Our", "start": 1191, "end": 1194, "annotation": null}, {"text": "results", "start": 1195, "end": 1202, "annotation": null}, {"text": "open", "start": 1203, "end": 1207, "annotation": null}, {"text": "debates", "start": 1208, "end": 1215, "annotation": null}, {"text": "about", "start": 1216, "end": 1221, "annotation": null}, {"text": "the", "start": 1222, "end": 1225, "annotation": null}, {"text": "common", "start": 1226, "end": 1232, "annotation": null}, {"text": "underlying", "start": 1233, "end": 1243, "annotation": null}, {"text": "physics", "start": 1244, "end": 1251, "annotation": null}, {"text": "of", "start": 1252, "end": 1254, "annotation": null}, {"text": "operation", "start": 1255, "end": 1264, "annotation": null}, {"text": "of", "start": 1265, "end": 1267, "annotation": null}, {"text": "very", "start": 1268, "end": 1272, "annotation": null}, {"text": "different", "start": 1273, "end": 1282, "annotation": null}, {"text": "laser", "start": 1283, "end": 1288, "annotation": null}, {"text": "types", "start": 1289, "end": 1294, "annotation": null}, {"text": "-", "start": 1295, "end": 1296, "annotation": null}, {"text": "quasi-CW", "start": 1297, "end": 1305, "annotation": null}, {"text": "lasers", "start": 1306, "end": 1312, "annotation": null}, {"text": "and", "start": 1313, "end": 1316, "annotation": null}, {"text": "passively", "start": 1317, "end": 1326, "annotation": null}, {"text": "mode", "start": 1327, "end": 1331, "annotation": null}, {"text": "-", "start": 1331, "end": 1332, "annotation": null}, {"text": "locked", "start": 1332, "end": 1338, "annotation": null}, {"text": "lasers", "start": 1339, "end": 1345, "annotation": null}, {"text": ".", "start": 1345, "end": 1346, "annotation": null}]], "meta": {"doi": "10.1002/lpor.201500012"}} {"text": "Mesoporous nanocrystalline Cd-doped titania was firstly prepared at low temperature by a modified sol-gel method, using dodecylamine as a template. The template could be easily removed by refluxing samples in nitric acid ethanol solution. The Fourier transform infrared spectrometer (FT-IR), low-angle and wideangle X-ray diffraction (XRD), N2 adsorption-desorption, transmission electron microscopy (TEM), X-ray photoelectron spectra (XPS), and UV-visible diffuse reflectance spectroscopy were used for the characterization of catalysts. The characteristic results clearly showed that Cd2+ ions were doped into the titania lattice, and the mesoporous architecture of Cd-doped TiO2 was composed of mixed-phase crystal textures of anatase and brookite. The samples displayed high visible-light photocatalytic activity for photodegradating 2,4-dichlorophenol (2,4-DCP) solution. The high activities of samples were attributed to the bicrystalline framework, large BET surface area, small crystallite size, and Cd-doping.", "meta": {"doi": "10.1007/s11164-009-0092-y"}, "_input_hash": -723590597, "_task_hash": 1277316682, "tokens": [[{"text": "Mesoporous", "start": 0, "end": 10, "id": 0, "annotation": null}, {"text": "nanocrystalline", "start": 11, "end": 26, "id": 1, "annotation": null}, {"text": "Cd", "start": 27, "end": 29, "id": 2, "annotation": "DOPANT"}, {"text": "-", "start": 30, "end": 31, "id": 3, "annotation": null}, {"text": "doped", "start": 32, "end": 37, "id": 4, "annotation": null}, {"text": "titania", "start": 38, "end": 45, "id": 5, "annotation": "BASEMAT"}, {"text": "was", "start": 46, "end": 49, "id": 6, "annotation": null}, {"text": "firstly", "start": 50, "end": 57, "id": 7, "annotation": null}, {"text": "prepared", "start": 58, "end": 66, "id": 8, "annotation": null}, {"text": "at", "start": 67, "end": 69, "id": 9, "annotation": null}, {"text": "low", "start": 70, "end": 73, "id": 10, "annotation": null}, {"text": "temperature", "start": 74, "end": 85, "id": 11, "annotation": null}, {"text": "by", "start": 86, "end": 88, "id": 12, "annotation": null}, {"text": "a", "start": 89, "end": 90, "id": 13, "annotation": null}, {"text": "modified", "start": 91, "end": 99, "id": 14, "annotation": null}, {"text": "sol", "start": 100, "end": 103, "id": 15, "annotation": null}, {"text": "-", "start": 104, "end": 105, "id": 16, "annotation": null}, {"text": "gel", "start": 106, "end": 109, "id": 17, "annotation": null}, {"text": "method", "start": 110, "end": 116, "id": 18, "annotation": null}, {"text": ",", "start": 117, "end": 118, "id": 19, "annotation": null}, {"text": "using", "start": 119, "end": 124, "id": 20, "annotation": null}, {"text": "dodecylamine", "start": 125, "end": 137, "id": 21, "annotation": null}, {"text": "as", "start": 138, "end": 140, "id": 22, "annotation": null}, {"text": "a", "start": 141, "end": 142, "id": 23, "annotation": null}, {"text": "template", "start": 143, "end": 151, "id": 24, "annotation": null}, {"text": ".", "start": 152, "end": 153, "id": 25, "annotation": null}], [{"text": "The", "start": 154, "end": 157, "id": 26, "annotation": null}, {"text": "template", "start": 158, "end": 166, "id": 27, "annotation": null}, {"text": "could", "start": 167, "end": 172, "id": 28, "annotation": null}, {"text": "be", "start": 173, "end": 175, "id": 29, "annotation": null}, {"text": "easily", "start": 176, "end": 182, "id": 30, "annotation": null}, {"text": "removed", "start": 183, "end": 190, "id": 31, "annotation": null}, {"text": "by", "start": 191, "end": 193, "id": 32, "annotation": null}, {"text": "refluxing", "start": 194, "end": 203, "id": 33, "annotation": null}, {"text": "samples", "start": 204, "end": 211, "id": 34, "annotation": null}, {"text": "in", "start": 212, "end": 214, "id": 35, "annotation": null}, {"text": "nitric", "start": 215, "end": 221, "id": 36, "annotation": null}, {"text": "acid", "start": 222, "end": 226, "id": 37, "annotation": null}, {"text": "ethanol", "start": 227, "end": 234, "id": 38, "annotation": null}, {"text": "solution", "start": 235, "end": 243, "id": 39, "annotation": null}, {"text": ".", "start": 244, "end": 245, "id": 40, "annotation": null}], [{"text": "The", "start": 246, "end": 249, "id": 41, "annotation": null}, {"text": "Fourier", "start": 250, "end": 257, "id": 42, "annotation": null}, {"text": "transform", "start": 258, "end": 267, "id": 43, "annotation": null}, {"text": "infrared", "start": 268, "end": 276, "id": 44, "annotation": null}, {"text": "spectrometer", "start": 277, "end": 289, "id": 45, "annotation": null}, {"text": "(", "start": 290, "end": 291, "id": 46, "annotation": null}, {"text": "FT", "start": 292, "end": 294, "id": 47, "annotation": null}, {"text": "-", "start": 295, "end": 296, "id": 48, "annotation": null}, {"text": "IR", "start": 297, "end": 299, "id": 49, "annotation": null}, {"text": ")", "start": 300, "end": 301, "id": 50, "annotation": null}, {"text": ",", "start": 302, "end": 303, "id": 51, "annotation": null}, {"text": "low", "start": 304, "end": 307, "id": 52, "annotation": null}, {"text": "-", "start": 308, "end": 309, "id": 53, "annotation": null}, {"text": "angle", "start": 310, "end": 315, "id": 54, "annotation": null}, {"text": "and", "start": 316, "end": 319, "id": 55, "annotation": null}, {"text": "wideangle", "start": 320, "end": 329, "id": 56, "annotation": null}, {"text": "X", "start": 330, "end": 331, "id": 57, "annotation": null}, {"text": "-", "start": 332, "end": 333, "id": 58, "annotation": null}, {"text": "ray", "start": 334, "end": 337, "id": 59, "annotation": null}, {"text": "diffraction", "start": 338, "end": 349, "id": 60, "annotation": null}, {"text": "(", "start": 350, "end": 351, "id": 61, "annotation": null}, {"text": "XRD", "start": 352, "end": 355, "id": 62, "annotation": null}, {"text": ")", "start": 356, "end": 357, "id": 63, "annotation": null}, {"text": ",", "start": 358, "end": 359, "id": 64, "annotation": null}, {"text": "N2", "start": 360, "end": 362, "id": 65, "annotation": null}, {"text": "adsorption", "start": 363, "end": 373, "id": 66, "annotation": null}, {"text": "-", "start": 374, "end": 375, "id": 67, "annotation": null}, {"text": "desorption", "start": 376, "end": 386, "id": 68, "annotation": null}, {"text": ",", "start": 387, "end": 388, "id": 69, "annotation": null}, {"text": "transmission", "start": 389, "end": 401, "id": 70, "annotation": null}, {"text": "electron", "start": 402, "end": 410, "id": 71, "annotation": null}, {"text": "microscopy", "start": 411, "end": 421, "id": 72, "annotation": null}, {"text": "(", "start": 422, "end": 423, "id": 73, "annotation": null}, {"text": "TEM", "start": 424, "end": 427, "id": 74, "annotation": null}, {"text": ")", "start": 428, "end": 429, "id": 75, "annotation": null}, {"text": ",", "start": 430, "end": 431, "id": 76, "annotation": null}, {"text": "X", "start": 432, "end": 433, "id": 77, "annotation": null}, {"text": "-", "start": 434, "end": 435, "id": 78, "annotation": null}, {"text": "ray", "start": 436, "end": 439, "id": 79, "annotation": null}, {"text": "photoelectron", "start": 440, "end": 453, "id": 80, "annotation": null}, {"text": "spectra", "start": 454, "end": 461, "id": 81, "annotation": null}, {"text": "(", "start": 462, "end": 463, "id": 82, "annotation": null}, {"text": "XPS", "start": 464, "end": 467, "id": 83, "annotation": null}, {"text": ")", "start": 468, "end": 469, "id": 84, "annotation": null}, {"text": ",", "start": 470, "end": 471, "id": 85, "annotation": null}, {"text": "and", "start": 472, "end": 475, "id": 86, "annotation": null}, {"text": "UV", "start": 476, "end": 478, "id": 87, "annotation": null}, {"text": "-", "start": 479, "end": 480, "id": 88, "annotation": null}, {"text": "visible", "start": 481, "end": 488, "id": 89, "annotation": null}, {"text": "diffuse", "start": 489, "end": 496, "id": 90, "annotation": null}, {"text": "reflectance", "start": 497, "end": 508, "id": 91, "annotation": null}, {"text": "spectroscopy", "start": 509, "end": 521, "id": 92, "annotation": null}, {"text": "were", "start": 522, "end": 526, "id": 93, "annotation": null}, {"text": "used", "start": 527, "end": 531, "id": 94, "annotation": null}, {"text": "for", "start": 532, "end": 535, "id": 95, "annotation": null}, {"text": "the", "start": 536, "end": 539, "id": 96, "annotation": null}, {"text": "characterization", "start": 540, "end": 556, "id": 97, "annotation": null}, {"text": "of", "start": 557, "end": 559, "id": 98, "annotation": null}, {"text": "catalysts", "start": 560, "end": 569, "id": 99, "annotation": null}, {"text": ".", "start": 570, "end": 571, "id": 100, "annotation": null}], [{"text": "The", "start": 572, "end": 575, "id": 101, "annotation": null}, {"text": "characteristic", "start": 576, "end": 590, "id": 102, "annotation": null}, {"text": "results", "start": 591, "end": 598, "id": 103, "annotation": null}, {"text": "clearly", "start": 599, "end": 606, "id": 104, "annotation": null}, {"text": "showed", "start": 607, "end": 613, "id": 105, "annotation": null}, {"text": "that", "start": 614, "end": 618, "id": 106, "annotation": null}, {"text": "Cd2", "start": 619, "end": 622, "id": 107, "annotation": "DOPANT"}, {"text": "+", "start": 623, "end": 624, "id": 108, "annotation": "DOPANT"}, {"text": "ions", "start": 625, "end": 629, "id": 109, "annotation": null}, {"text": "were", "start": 630, "end": 634, "id": 110, "annotation": null}, {"text": "doped", "start": 635, "end": 640, "id": 111, "annotation": null}, {"text": "into", "start": 641, "end": 645, "id": 112, "annotation": null}, {"text": "the", "start": 646, "end": 649, "id": 113, "annotation": null}, {"text": "titania", "start": 650, "end": 657, "id": 114, "annotation": "BASEMAT"}, {"text": "lattice", "start": 658, "end": 665, "id": 115, "annotation": null}, {"text": ",", "start": 666, "end": 667, "id": 116, "annotation": null}, {"text": "and", "start": 668, "end": 671, "id": 117, "annotation": null}, {"text": "the", "start": 672, "end": 675, "id": 118, "annotation": null}, {"text": "mesoporous", "start": 676, "end": 686, "id": 119, "annotation": null}, {"text": "architecture", "start": 687, "end": 699, "id": 120, "annotation": null}, {"text": "of", "start": 700, "end": 702, "id": 121, "annotation": null}, {"text": "Cd", "start": 703, "end": 705, "id": 122, "annotation": "DOPANT"}, {"text": "-", "start": 706, "end": 707, "id": 123, "annotation": null}, {"text": "doped", "start": 708, "end": 713, "id": 124, "annotation": null}, {"text": "TiO2", "start": 714, "end": 718, "id": 125, "annotation": "BASEMAT"}, {"text": "was", "start": 719, "end": 722, "id": 126, "annotation": null}, {"text": "composed", "start": 723, "end": 731, "id": 127, "annotation": null}, {"text": "of", "start": 732, "end": 734, "id": 128, "annotation": null}, {"text": "mixed", "start": 735, "end": 740, "id": 129, "annotation": null}, {"text": "-", "start": 741, "end": 742, "id": 130, "annotation": null}, {"text": "phase", "start": 743, "end": 748, "id": 131, "annotation": null}, {"text": "crystal", "start": 749, "end": 756, "id": 132, "annotation": null}, {"text": "textures", "start": 757, "end": 765, "id": 133, "annotation": null}, {"text": "of", "start": 766, "end": 768, "id": 134, "annotation": null}, {"text": "anatase", "start": 769, "end": 776, "id": 135, "annotation": null}, {"text": "and", "start": 777, "end": 780, "id": 136, "annotation": null}, {"text": "brookite", "start": 781, "end": 789, "id": 137, "annotation": null}, {"text": ".", "start": 790, "end": 791, "id": 138, "annotation": null}], [{"text": "The", "start": 792, "end": 795, "id": 139, "annotation": null}, {"text": "samples", "start": 796, "end": 803, "id": 140, "annotation": null}, {"text": "displayed", "start": 804, "end": 813, "id": 141, "annotation": null}, {"text": "high", "start": 814, "end": 818, "id": 142, "annotation": null}, {"text": "visible", "start": 819, "end": 826, "id": 143, "annotation": null}, {"text": "-", "start": 827, "end": 828, "id": 144, "annotation": null}, {"text": "light", "start": 829, "end": 834, "id": 145, "annotation": null}, {"text": "photocatalytic", "start": 835, "end": 849, "id": 146, "annotation": null}, {"text": "activity", "start": 850, "end": 858, "id": 147, "annotation": null}, {"text": "for", "start": 859, "end": 862, "id": 148, "annotation": null}, {"text": "photodegradating", "start": 863, "end": 879, "id": 149, "annotation": null}, {"text": "2,4-dichlorophenol", "start": 880, "end": 898, "id": 150, "annotation": null}, {"text": "(", "start": 899, "end": 900, "id": 151, "annotation": null}, {"text": "2,4-DCP", "start": 901, "end": 908, "id": 152, "annotation": null}, {"text": ")", "start": 909, "end": 910, "id": 153, "annotation": null}, {"text": "solution", "start": 911, "end": 919, "id": 154, "annotation": null}, {"text": ".", "start": 920, "end": 921, "id": 155, "annotation": null}], [{"text": "The", "start": 922, "end": 925, "id": 156, "annotation": null}, {"text": "high", "start": 926, "end": 930, "id": 157, "annotation": null}, {"text": "activities", "start": 931, "end": 941, "id": 158, "annotation": null}, {"text": "of", "start": 942, "end": 944, "id": 159, "annotation": null}, {"text": "samples", "start": 945, "end": 952, "id": 160, "annotation": "BASEMAT"}, {"text": "were", "start": 953, "end": 957, "id": 161, "annotation": null}, {"text": "attributed", "start": 958, "end": 968, "id": 162, "annotation": null}, {"text": "to", "start": 969, "end": 971, "id": 163, "annotation": null}, {"text": "the", "start": 972, "end": 975, "id": 164, "annotation": null}, {"text": "bicrystalline", "start": 976, "end": 989, "id": 165, "annotation": null}, {"text": "framework", "start": 990, "end": 999, "id": 166, "annotation": null}, {"text": ",", "start": 1000, "end": 1001, "id": 167, "annotation": null}, {"text": "large", "start": 1002, "end": 1007, "id": 168, "annotation": null}, {"text": "BET", "start": 1008, "end": 1011, "id": 169, "annotation": null}, {"text": "surface", "start": 1012, "end": 1019, "id": 170, "annotation": null}, {"text": "area", "start": 1020, "end": 1024, "id": 171, "annotation": null}, {"text": ",", "start": 1025, "end": 1026, "id": 172, "annotation": null}, {"text": "small", "start": 1027, "end": 1032, "id": 173, "annotation": null}, {"text": "crystallite", "start": 1033, "end": 1044, "id": 174, "annotation": null}, {"text": "size", "start": 1045, "end": 1049, "id": 175, "annotation": null}, {"text": ",", "start": 1050, "end": 1051, "id": 176, "annotation": null}, {"text": "and", "start": 1052, "end": 1055, "id": 177, "annotation": null}, {"text": "Cd", "start": 1056, "end": 1058, "id": 178, "annotation": "DOPANT"}, {"text": "-", "start": 1059, "end": 1060, "id": 179, "annotation": null}, {"text": "doping", "start": 1061, "end": 1067, "id": 180, "annotation": null}, {"text": ".", "start": 1068, "end": 1069, "id": 181, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "We have designed and synthesized NaGdF4:Nd3+, Yb3+, Tm3+ magnetic nanophosphors with combined dual-mode downconversion (DC) and upconversion (UC) photoluminescence upon 800 nm excitation. Hexagonal-phase NaGdF4:Nd3+, Yb3+, Tm3+ nanocrystals (NCs) with an average size of 21 nm were synthesized using a solvothermal approach. Nd3+, Yb3+, Tm3+ triple-doped NaGdF4 NCs exhibit a broad range of photoluminescence peaks covering a near infrared first/second window (860\u2013900, 1,000, and 1,060 nm), and visible emission including blue (475 nm), green (520 and 542 nm) and yellow (587 nm) after excitation at 800 nm. A mechanism involving circulation of energy over Gd3+ sublattices as bridge ions and final trapping by the initial activator ions (Nd3+) has been proposed. Penetration depth studies indicate that NIR emission is easily detected even at a large tissue thickness of 10 mm. These paramagnetic nanophosphors demonstrate a large magnetization value of 1.88 emu/g at 20 kOe and longitudinal relaxivity value of 1.2537 mM\u22121\u00b7S\u22121 as a T1-weighted magnetic resonance imaging contrast agent. These NaGdF4:Nd3+, Yb3+, Tm3+ NCs are promising for applications in biological and magnetic resonance imaging.", "meta": {"doi": "10.1007/s12274-014-0548-2"}, "_input_hash": -1512274997, "_task_hash": 1736917806, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "have", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "designed", "start": 8, "end": 16, "id": 2, "annotation": null}, {"text": "and", "start": 17, "end": 20, "id": 3, "annotation": null}, {"text": "synthesized", "start": 21, "end": 32, "id": 4, "annotation": null}, {"text": "NaGdF4", "start": 33, "end": 39, "id": 5, "annotation": "BASEMAT"}, {"text": ":", "start": 40, "end": 41, "id": 6, "annotation": null}, {"text": "Nd3", "start": 42, "end": 45, "id": 7, "annotation": "DOPANT"}, {"text": "+", "start": 46, "end": 47, "id": 8, "annotation": "DOPANT"}, {"text": ",", "start": 48, "end": 49, "id": 9, "annotation": null}, {"text": "Yb3", "start": 50, "end": 53, "id": 10, "annotation": "DOPANT"}, {"text": "+", "start": 54, "end": 55, "id": 11, "annotation": "DOPANT"}, {"text": ",", "start": 56, "end": 57, "id": 12, "annotation": null}, {"text": "Tm3", "start": 58, "end": 61, "id": 13, "annotation": "DOPANT"}, {"text": "+", "start": 62, "end": 63, "id": 14, "annotation": "DOPANT"}, {"text": "magnetic", "start": 64, "end": 72, "id": 15, "annotation": null}, {"text": "nanophosphors", "start": 73, "end": 86, "id": 16, "annotation": null}, {"text": "with", "start": 87, "end": 91, "id": 17, "annotation": null}, {"text": "combined", "start": 92, "end": 100, "id": 18, "annotation": null}, {"text": "dual", "start": 101, "end": 105, "id": 19, "annotation": null}, {"text": "-", "start": 106, "end": 107, "id": 20, "annotation": null}, {"text": "mode", "start": 108, "end": 112, "id": 21, "annotation": null}, {"text": "downconversion", "start": 113, "end": 127, "id": 22, "annotation": null}, {"text": "(", "start": 128, "end": 129, "id": 23, "annotation": null}, {"text": "DC", "start": 130, "end": 132, "id": 24, "annotation": null}, {"text": ")", "start": 133, "end": 134, "id": 25, "annotation": null}, {"text": "and", "start": 135, "end": 138, "id": 26, "annotation": null}, {"text": "upconversion", "start": 139, "end": 151, "id": 27, "annotation": null}, {"text": "(", "start": 152, "end": 153, "id": 28, "annotation": null}, {"text": "UC", "start": 154, "end": 156, "id": 29, "annotation": null}, {"text": ")", "start": 157, "end": 158, "id": 30, "annotation": null}, {"text": "photoluminescence", "start": 159, "end": 176, "id": 31, "annotation": null}, {"text": "upon", "start": 177, "end": 181, "id": 32, "annotation": null}, {"text": "800", "start": 182, "end": 185, "id": 33, "annotation": null}, {"text": "nm", "start": 186, "end": 188, "id": 34, "annotation": null}, {"text": "excitation", "start": 189, "end": 199, "id": 35, "annotation": null}, {"text": ".", "start": 200, "end": 201, "id": 36, "annotation": null}], [{"text": "Hexagonal", "start": 202, "end": 211, "id": 37, "annotation": null}, {"text": "-", "start": 212, "end": 213, "id": 38, "annotation": null}, {"text": "phase", "start": 214, "end": 219, "id": 39, "annotation": null}, {"text": "NaGdF4", "start": 220, "end": 226, "id": 40, "annotation": "BASEMAT"}, {"text": ":", "start": 227, "end": 228, "id": 41, "annotation": null}, {"text": "Nd3", "start": 229, "end": 232, "id": 42, "annotation": "DOPANT"}, {"text": "+", "start": 233, "end": 234, "id": 43, "annotation": "DOPANT"}, {"text": ",", "start": 235, "end": 236, "id": 44, "annotation": null}, {"text": "Yb3", "start": 237, "end": 240, "id": 45, "annotation": "DOPANT"}, {"text": "+", "start": 241, "end": 242, "id": 46, "annotation": "DOPANT"}, {"text": ",", "start": 243, "end": 244, "id": 47, "annotation": null}, {"text": "Tm3", "start": 245, "end": 248, "id": 48, "annotation": "DOPANT"}, {"text": "+", "start": 249, "end": 250, "id": 49, "annotation": "DOPANT"}, {"text": "nanocrystals", "start": 251, "end": 263, "id": 50, "annotation": null}, {"text": "(", "start": 264, "end": 265, "id": 51, "annotation": null}, {"text": "NCs", "start": 266, "end": 269, "id": 52, "annotation": null}, {"text": ")", "start": 270, "end": 271, "id": 53, "annotation": null}, {"text": "with", "start": 272, "end": 276, "id": 54, "annotation": null}, {"text": "an", "start": 277, "end": 279, "id": 55, "annotation": null}, {"text": "average", "start": 280, "end": 287, "id": 56, "annotation": null}, {"text": "size", "start": 288, "end": 292, "id": 57, "annotation": null}, {"text": "of", "start": 293, "end": 295, "id": 58, "annotation": null}, {"text": "21", "start": 296, "end": 298, "id": 59, "annotation": null}, {"text": "nm", "start": 299, "end": 301, "id": 60, "annotation": null}, {"text": "were", "start": 302, "end": 306, "id": 61, "annotation": null}, {"text": "synthesized", "start": 307, "end": 318, "id": 62, "annotation": null}, {"text": "using", "start": 319, "end": 324, "id": 63, "annotation": null}, {"text": "a", "start": 325, "end": 326, "id": 64, "annotation": null}, {"text": "solvothermal", "start": 327, "end": 339, "id": 65, "annotation": null}, {"text": "approach", "start": 340, "end": 348, "id": 66, "annotation": null}, {"text": ".", "start": 349, "end": 350, "id": 67, "annotation": null}], [{"text": "Nd3", "start": 351, "end": 354, "id": 68, "annotation": "DOPANT"}, {"text": "+", "start": 355, "end": 356, "id": 69, "annotation": "DOPANT"}, {"text": ",", "start": 357, "end": 358, "id": 70, "annotation": null}, {"text": "Yb3", "start": 359, "end": 362, "id": 71, "annotation": "DOPANT"}, {"text": "+", "start": 363, "end": 364, "id": 72, "annotation": "DOPANT"}, {"text": ",", "start": 365, "end": 366, "id": 73, "annotation": null}, {"text": "Tm3", "start": 367, "end": 370, "id": 74, "annotation": "DOPANT"}, {"text": "+", "start": 371, "end": 372, "id": 75, "annotation": "DOPANT"}, {"text": "triple", "start": 373, "end": 379, "id": 76, "annotation": null}, {"text": "-", "start": 380, "end": 381, "id": 77, "annotation": null}, {"text": "doped", "start": 382, "end": 387, "id": 78, "annotation": null}, {"text": "NaGdF4", "start": 388, "end": 394, "id": 79, "annotation": "BASEMAT"}, {"text": "NCs", "start": 395, "end": 398, "id": 80, "annotation": null}, {"text": "exhibit", "start": 399, "end": 406, "id": 81, "annotation": null}, {"text": "a", "start": 407, "end": 408, "id": 82, "annotation": null}, {"text": "broad", "start": 409, "end": 414, "id": 83, "annotation": null}, {"text": "range", "start": 415, "end": 420, "id": 84, "annotation": null}, {"text": "of", "start": 421, "end": 423, "id": 85, "annotation": null}, {"text": "photoluminescence", "start": 424, "end": 441, "id": 86, "annotation": null}, {"text": "peaks", "start": 442, "end": 447, "id": 87, "annotation": null}, {"text": "covering", "start": 448, "end": 456, "id": 88, "annotation": null}, {"text": "a", "start": 457, "end": 458, "id": 89, "annotation": null}, {"text": "near", "start": 459, "end": 463, "id": 90, "annotation": null}, {"text": "infrared", "start": 464, "end": 472, "id": 91, "annotation": null}, {"text": "first", "start": 473, "end": 478, "id": 92, "annotation": null}, {"text": "/", "start": 479, "end": 480, "id": 93, "annotation": null}, {"text": "second", "start": 481, "end": 487, "id": 94, "annotation": null}, {"text": "window", "start": 488, "end": 494, "id": 95, "annotation": null}, {"text": "(", "start": 495, "end": 496, "id": 96, "annotation": null}, {"text": "860\u2013900", "start": 497, "end": 504, "id": 97, "annotation": null}, {"text": ",", "start": 505, "end": 506, "id": 98, "annotation": null}, {"text": "1,000", "start": 507, "end": 512, "id": 99, "annotation": null}, {"text": ",", "start": 513, "end": 514, "id": 100, "annotation": null}, {"text": "and", "start": 515, "end": 518, "id": 101, "annotation": null}, {"text": "1,060", "start": 519, "end": 524, "id": 102, "annotation": null}, {"text": "nm", "start": 525, "end": 527, "id": 103, "annotation": null}, {"text": ")", "start": 528, "end": 529, "id": 104, "annotation": null}, {"text": ",", "start": 530, "end": 531, "id": 105, "annotation": null}, {"text": "and", "start": 532, "end": 535, "id": 106, "annotation": null}, {"text": "visible", "start": 536, "end": 543, "id": 107, "annotation": null}, {"text": "emission", "start": 544, "end": 552, "id": 108, "annotation": null}, {"text": "including", "start": 553, "end": 562, "id": 109, "annotation": null}, {"text": "blue", "start": 563, "end": 567, "id": 110, "annotation": null}, {"text": "(", "start": 568, "end": 569, "id": 111, "annotation": null}, {"text": "475", "start": 570, "end": 573, "id": 112, "annotation": null}, {"text": "nm", "start": 574, "end": 576, "id": 113, "annotation": null}, {"text": ")", "start": 577, "end": 578, "id": 114, "annotation": null}, {"text": ",", "start": 579, "end": 580, "id": 115, "annotation": null}, {"text": "green", "start": 581, "end": 586, "id": 116, "annotation": null}, {"text": "(", "start": 587, "end": 588, "id": 117, "annotation": null}, {"text": "520", "start": 589, "end": 592, "id": 118, "annotation": null}, {"text": "and", "start": 593, "end": 596, "id": 119, "annotation": null}, {"text": "542", "start": 597, "end": 600, "id": 120, "annotation": null}, {"text": "nm", "start": 601, "end": 603, "id": 121, "annotation": null}, {"text": ")", "start": 604, "end": 605, "id": 122, "annotation": null}, {"text": "and", "start": 606, "end": 609, "id": 123, "annotation": null}, {"text": "yellow", "start": 610, "end": 616, "id": 124, "annotation": null}, {"text": "(", "start": 617, "end": 618, "id": 125, "annotation": null}, {"text": "587", "start": 619, "end": 622, "id": 126, "annotation": null}, {"text": "nm", "start": 623, "end": 625, "id": 127, "annotation": null}, {"text": ")", "start": 626, "end": 627, "id": 128, "annotation": null}, {"text": "after", "start": 628, "end": 633, "id": 129, "annotation": null}, {"text": "excitation", "start": 634, "end": 644, "id": 130, "annotation": null}, {"text": "at", "start": 645, "end": 647, "id": 131, "annotation": null}, {"text": "800", "start": 648, "end": 651, "id": 132, "annotation": null}, {"text": "nm", "start": 652, "end": 654, "id": 133, "annotation": null}, {"text": ".", "start": 655, "end": 656, "id": 134, "annotation": null}], [{"text": "A", "start": 657, "end": 658, "id": 135, "annotation": null}, {"text": "mechanism", "start": 659, "end": 668, "id": 136, "annotation": null}, {"text": "involving", "start": 669, "end": 678, "id": 137, "annotation": null}, {"text": "circulation", "start": 679, "end": 690, "id": 138, "annotation": null}, {"text": "of", "start": 691, "end": 693, "id": 139, "annotation": null}, {"text": "energy", "start": 694, "end": 700, "id": 140, "annotation": null}, {"text": "over", "start": 701, "end": 705, "id": 141, "annotation": null}, {"text": "Gd3", "start": 706, "end": 709, "id": 142, "annotation": null}, {"text": "+", "start": 710, "end": 711, "id": 143, "annotation": null}, {"text": "sublattices", "start": 712, "end": 723, "id": 144, "annotation": null}, {"text": "as", "start": 724, "end": 726, "id": 145, "annotation": null}, {"text": "bridge", "start": 727, "end": 733, "id": 146, "annotation": null}, {"text": "ions", "start": 734, "end": 738, "id": 147, "annotation": null}, {"text": "and", "start": 739, "end": 742, "id": 148, "annotation": null}, {"text": "final", "start": 743, "end": 748, "id": 149, "annotation": null}, {"text": "trapping", "start": 749, "end": 757, "id": 150, "annotation": null}, {"text": "by", "start": 758, "end": 760, "id": 151, "annotation": null}, {"text": "the", "start": 761, "end": 764, "id": 152, "annotation": null}, {"text": "initial", "start": 765, "end": 772, "id": 153, "annotation": null}, {"text": "activator", "start": 773, "end": 782, "id": 154, "annotation": null}, {"text": "ions", "start": 783, "end": 787, "id": 155, "annotation": null}, {"text": "(", "start": 788, "end": 789, "id": 156, "annotation": null}, {"text": "Nd3", "start": 790, "end": 793, "id": 157, "annotation": null}, {"text": "+", "start": 794, "end": 795, "id": 158, "annotation": null}, {"text": ")", "start": 796, "end": 797, "id": 159, "annotation": null}, {"text": "has", "start": 798, "end": 801, "id": 160, "annotation": null}, {"text": "been", "start": 802, "end": 806, "id": 161, "annotation": null}, {"text": "proposed", "start": 807, "end": 815, "id": 162, "annotation": null}, {"text": ".", "start": 816, "end": 817, "id": 163, "annotation": null}], [{"text": "Penetration", "start": 818, "end": 829, "id": 164, "annotation": null}, {"text": "depth", "start": 830, "end": 835, "id": 165, "annotation": null}, {"text": "studies", "start": 836, "end": 843, "id": 166, "annotation": null}, {"text": "indicate", "start": 844, "end": 852, "id": 167, "annotation": null}, {"text": "that", "start": 853, "end": 857, "id": 168, "annotation": null}, {"text": "NIR", "start": 858, "end": 861, "id": 169, "annotation": null}, {"text": "emission", "start": 862, "end": 870, "id": 170, "annotation": null}, {"text": "is", "start": 871, "end": 873, "id": 171, "annotation": null}, {"text": "easily", "start": 874, "end": 880, "id": 172, "annotation": null}, {"text": "detected", "start": 881, "end": 889, "id": 173, "annotation": null}, {"text": "even", "start": 890, "end": 894, "id": 174, "annotation": null}, {"text": "at", "start": 895, "end": 897, "id": 175, "annotation": null}, {"text": "a", "start": 898, "end": 899, "id": 176, "annotation": null}, {"text": "large", "start": 900, "end": 905, "id": 177, "annotation": null}, {"text": "tissue", "start": 906, "end": 912, "id": 178, "annotation": null}, {"text": "thickness", "start": 913, "end": 922, "id": 179, "annotation": null}, {"text": "of", "start": 923, "end": 925, "id": 180, "annotation": null}, {"text": "10", "start": 926, "end": 928, "id": 181, "annotation": null}, {"text": "mm", "start": 929, "end": 931, "id": 182, "annotation": null}, {"text": ".", "start": 932, "end": 933, "id": 183, "annotation": null}], [{"text": "These", "start": 934, "end": 939, "id": 184, "annotation": null}, {"text": "paramagnetic", "start": 940, "end": 952, "id": 185, "annotation": null}, {"text": "nanophosphors", "start": 953, "end": 966, "id": 186, "annotation": null}, {"text": "demonstrate", "start": 967, "end": 978, "id": 187, "annotation": null}, {"text": "a", "start": 979, "end": 980, "id": 188, "annotation": null}, {"text": "large", "start": 981, "end": 986, "id": 189, "annotation": null}, {"text": "magnetization", "start": 987, "end": 1000, "id": 190, "annotation": null}, {"text": "value", "start": 1001, "end": 1006, "id": 191, "annotation": null}, {"text": "of", "start": 1007, "end": 1009, "id": 192, "annotation": null}, {"text": "1.88", "start": 1010, "end": 1014, "id": 193, "annotation": null}, {"text": "emu", "start": 1015, "end": 1018, "id": 194, "annotation": null}, {"text": "/", "start": 1019, "end": 1020, "id": 195, "annotation": null}, {"text": "g", "start": 1021, "end": 1022, "id": 196, "annotation": null}, {"text": "at", "start": 1023, "end": 1025, "id": 197, "annotation": null}, {"text": "20", "start": 1026, "end": 1028, "id": 198, "annotation": null}, {"text": "kOe", "start": 1029, "end": 1032, "id": 199, "annotation": null}, {"text": "and", "start": 1033, "end": 1036, "id": 200, "annotation": null}, {"text": "longitudinal", "start": 1037, "end": 1049, "id": 201, "annotation": null}, {"text": "relaxivity", "start": 1050, "end": 1060, "id": 202, "annotation": null}, {"text": "value", "start": 1061, "end": 1066, "id": 203, "annotation": null}, {"text": "of", "start": 1067, "end": 1069, "id": 204, "annotation": null}, {"text": "1.2537", "start": 1070, "end": 1076, "id": 205, "annotation": null}, {"text": "mM\u22121\u00b7S\u22121", "start": 1077, "end": 1085, "id": 206, "annotation": null}, {"text": "as", "start": 1086, "end": 1088, "id": 207, "annotation": null}, {"text": "a", "start": 1089, "end": 1090, "id": 208, "annotation": null}, {"text": "T1-weighted", "start": 1091, "end": 1102, "id": 209, "annotation": null}, {"text": "magnetic", "start": 1103, "end": 1111, "id": 210, "annotation": null}, {"text": "resonance", "start": 1112, "end": 1121, "id": 211, "annotation": null}, {"text": "imaging", "start": 1122, "end": 1129, "id": 212, "annotation": null}, {"text": "contrast", "start": 1130, "end": 1138, "id": 213, "annotation": null}, {"text": "agent", "start": 1139, "end": 1144, "id": 214, "annotation": null}, {"text": ".", "start": 1145, "end": 1146, "id": 215, "annotation": null}], [{"text": "These", "start": 1147, "end": 1152, "id": 216, "annotation": null}, {"text": "NaGdF4", "start": 1153, "end": 1159, "id": 217, "annotation": "BASEMAT"}, {"text": ":", "start": 1160, "end": 1161, "id": 218, "annotation": null}, {"text": "Nd3", "start": 1162, "end": 1165, "id": 219, "annotation": "DOPANT"}, {"text": "+", "start": 1166, "end": 1167, "id": 220, "annotation": "DOPANT"}, {"text": ",", "start": 1168, "end": 1169, "id": 221, "annotation": null}, {"text": "Yb3", "start": 1170, "end": 1173, "id": 222, "annotation": "DOPANT"}, {"text": "+", "start": 1174, "end": 1175, "id": 223, "annotation": "DOPANT"}, {"text": ",", "start": 1176, "end": 1177, "id": 224, "annotation": null}, {"text": "Tm3", "start": 1178, "end": 1181, "id": 225, "annotation": "DOPANT"}, {"text": "+", "start": 1182, "end": 1183, "id": 226, "annotation": "DOPANT"}, {"text": "NCs", "start": 1184, "end": 1187, "id": 227, "annotation": null}, {"text": "are", "start": 1188, "end": 1191, "id": 228, "annotation": null}, {"text": "promising", "start": 1192, "end": 1201, "id": 229, "annotation": null}, {"text": "for", "start": 1202, "end": 1205, "id": 230, "annotation": null}, {"text": "applications", "start": 1206, "end": 1218, "id": 231, "annotation": null}, {"text": "in", "start": 1219, "end": 1221, "id": 232, "annotation": null}, {"text": "biological", "start": 1222, "end": 1232, "id": 233, "annotation": null}, {"text": "and", "start": 1233, "end": 1236, "id": 234, "annotation": null}, {"text": "magnetic", "start": 1237, "end": 1245, "id": 235, "annotation": null}, {"text": "resonance", "start": 1246, "end": 1255, "id": 236, "annotation": null}, {"text": "imaging", "start": 1256, "end": 1263, "id": 237, "annotation": null}, {"text": ".", "start": 1264, "end": 1265, "id": 238, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "Bi3.25La0.75Ti3O12 (BLT) is one of the prospective candidate materials for data storage devices application. In order to understand the leakage current conduction mechanism in BLT we have studied Mn doped Bi3.25La0.75Ti3O12 (BLT) thin films with varying concentration of Mn. These films were prepared by chemical solution deposition technique. The structure and phase analysis of these films was performed at room temperature by X-ray diffraction, and scanning electron microscope was used to investigate the surface morphology. Different leakage current conduction mechanisms, e.g., Schottky emission, Modified Schottky, Poole\u2013Frenkel emission and space charge limited (Lampert\u2019s theory) conduction were examined to explain the true nature of charge transport phenomena in BLT and Mn doped BLT thin films. It was found that BLT and Mn doped BLT thin films leakage current conduction mechanism follows the Lampert\u2019s theory of space charge limited conduction in an insulator with traps.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Bi3.25La0.75Ti3O12", "start": 0, "end": 18, "annotation": null}, {"text": "(", "start": 19, "end": 20, "annotation": null}, {"text": "BLT", "start": 20, "end": 23, "annotation": null}, {"text": ")", "start": 23, "end": 24, "annotation": null}, {"text": "is", "start": 25, "end": 27, "annotation": null}, {"text": "one", "start": 28, "end": 31, "annotation": null}, {"text": "of", "start": 32, "end": 34, "annotation": null}, {"text": "the", "start": 35, "end": 38, "annotation": null}, {"text": "prospective", "start": 39, "end": 50, "annotation": null}, {"text": "candidate", "start": 51, "end": 60, "annotation": null}, {"text": "materials", "start": 61, "end": 70, "annotation": null}, {"text": "for", "start": 71, "end": 74, "annotation": null}, {"text": "data", "start": 75, "end": 79, "annotation": null}, {"text": "storage", "start": 80, "end": 87, "annotation": null}, {"text": "devices", "start": 88, "end": 95, "annotation": null}, {"text": "application", "start": 96, "end": 107, "annotation": null}, {"text": ".", "start": 107, "end": 108, "annotation": null}], [{"text": "In", "start": 109, "end": 111, "annotation": null}, {"text": "order", "start": 112, "end": 117, "annotation": null}, {"text": "to", "start": 118, "end": 120, "annotation": null}, {"text": "understand", "start": 121, "end": 131, "annotation": null}, {"text": "the", "start": 132, "end": 135, "annotation": null}, {"text": "leakage", "start": 136, "end": 143, "annotation": null}, {"text": "current", "start": 144, "end": 151, "annotation": null}, {"text": "conduction", "start": 152, "end": 162, "annotation": null}, {"text": "mechanism", "start": 163, "end": 172, "annotation": null}, {"text": "in", "start": 173, "end": 175, "annotation": null}, {"text": "BLT", "start": 176, "end": 179, "annotation": null}, {"text": "we", "start": 180, "end": 182, "annotation": null}, {"text": "have", "start": 183, "end": 187, "annotation": null}, {"text": "studied", "start": 188, "end": 195, "annotation": null}, {"text": "Mn", "start": 196, "end": 198, "annotation": "DOPANT"}, {"text": "doped", "start": 199, "end": 204, "annotation": null}, {"text": "Bi3.25La0.75Ti3O12", "start": 205, "end": 223, "annotation": "BASEMAT"}, {"text": "(", "start": 224, "end": 225, "annotation": null}, {"text": "BLT", "start": 225, "end": 228, "annotation": "BASEMAT"}, {"text": ")", "start": 228, "end": 229, "annotation": null}, {"text": "thin", "start": 230, "end": 234, "annotation": null}, {"text": "films", "start": 235, "end": 240, "annotation": null}, {"text": "with", "start": 241, "end": 245, "annotation": null}, {"text": "varying", "start": 246, "end": 253, "annotation": null}, {"text": "concentration", "start": 254, "end": 267, "annotation": null}, {"text": "of", "start": 268, "end": 270, "annotation": null}, {"text": "Mn", "start": 271, "end": 273, "annotation": "DOPANT"}, {"text": ".", "start": 273, "end": 274, "annotation": null}], [{"text": "These", "start": 275, "end": 280, "annotation": null}, {"text": "films", "start": 281, "end": 286, "annotation": null}, {"text": "were", "start": 287, "end": 291, "annotation": null}, {"text": "prepared", "start": 292, "end": 300, "annotation": null}, {"text": "by", "start": 301, "end": 303, "annotation": null}, {"text": "chemical", "start": 304, "end": 312, "annotation": null}, {"text": "solution", "start": 313, "end": 321, "annotation": null}, {"text": "deposition", "start": 322, "end": 332, "annotation": null}, {"text": "technique", "start": 333, "end": 342, "annotation": null}, {"text": ".", "start": 342, "end": 343, "annotation": null}], [{"text": "The", "start": 344, "end": 347, "annotation": null}, {"text": "structure", "start": 348, "end": 357, "annotation": null}, {"text": "and", "start": 358, "end": 361, "annotation": null}, {"text": "phase", "start": 362, "end": 367, "annotation": null}, {"text": "analysis", "start": 368, "end": 376, "annotation": null}, {"text": "of", "start": 377, "end": 379, "annotation": null}, {"text": "these", "start": 380, "end": 385, "annotation": null}, {"text": "films", "start": 386, "end": 391, "annotation": null}, {"text": "was", "start": 392, "end": 395, "annotation": null}, {"text": "performed", "start": 396, "end": 405, "annotation": null}, {"text": "at", "start": 406, "end": 408, "annotation": null}, {"text": "room", "start": 409, "end": 413, "annotation": null}, {"text": "temperature", "start": 414, "end": 425, "annotation": null}, {"text": "by", "start": 426, "end": 428, "annotation": null}, {"text": "X-ray", "start": 429, "end": 434, "annotation": null}, {"text": "diffraction", "start": 435, "end": 446, "annotation": null}, {"text": ",", "start": 446, "end": 447, "annotation": null}, {"text": "and", "start": 448, "end": 451, "annotation": null}, {"text": "scanning", "start": 452, "end": 460, "annotation": null}, {"text": "electron", "start": 461, "end": 469, "annotation": null}, {"text": "microscope", "start": 470, "end": 480, "annotation": null}, {"text": "was", "start": 481, "end": 484, "annotation": null}, {"text": "used", "start": 485, "end": 489, "annotation": null}, {"text": "to", "start": 490, "end": 492, "annotation": null}, {"text": "investigate", "start": 493, "end": 504, "annotation": null}, {"text": "the", "start": 505, "end": 508, "annotation": null}, {"text": "surface", "start": 509, "end": 516, "annotation": null}, {"text": "morphology", "start": 517, "end": 527, "annotation": null}, {"text": ".", "start": 527, "end": 528, "annotation": null}], [{"text": "Different", "start": 529, "end": 538, "annotation": null}, {"text": "leakage", "start": 539, "end": 546, "annotation": null}, {"text": "current", "start": 547, "end": 554, "annotation": null}, {"text": "conduction", "start": 555, "end": 565, "annotation": null}, {"text": "mechanisms", "start": 566, "end": 576, "annotation": null}, {"text": ",", "start": 576, "end": 577, "annotation": null}, {"text": "e.g.", "start": 578, "end": 582, "annotation": null}, {"text": ",", "start": 582, "end": 583, "annotation": null}, {"text": "Schottky", "start": 584, "end": 592, "annotation": null}, {"text": "emission", "start": 593, "end": 601, "annotation": null}, {"text": ",", "start": 601, "end": 602, "annotation": null}, {"text": "Modified", "start": 603, "end": 611, "annotation": null}, {"text": "Schottky", "start": 612, "end": 620, "annotation": null}, {"text": ",", "start": 620, "end": 621, "annotation": null}, {"text": "Poole", "start": 622, "end": 627, "annotation": null}, {"text": "\u2013", "start": 627, "end": 628, "annotation": null}, {"text": "Frenkel", "start": 628, "end": 635, "annotation": null}, {"text": "emission", "start": 636, "end": 644, "annotation": null}, {"text": "and", "start": 645, "end": 648, "annotation": null}, {"text": "space", "start": 649, "end": 654, "annotation": null}, {"text": "charge", "start": 655, "end": 661, "annotation": null}, {"text": "limited", "start": 662, "end": 669, "annotation": null}, {"text": "(", "start": 670, "end": 671, "annotation": null}, {"text": "Lampert", "start": 671, "end": 678, "annotation": null}, {"text": "\u2019s", "start": 678, "end": 680, "annotation": null}, {"text": "theory", "start": 681, "end": 687, "annotation": null}, {"text": ")", "start": 687, "end": 688, "annotation": null}, {"text": "conduction", "start": 689, "end": 699, "annotation": null}, {"text": "were", "start": 700, "end": 704, "annotation": null}, {"text": "examined", "start": 705, "end": 713, "annotation": null}, {"text": "to", "start": 714, "end": 716, "annotation": null}, {"text": "explain", "start": 717, "end": 724, "annotation": null}, {"text": "the", "start": 725, "end": 728, "annotation": null}, {"text": "true", "start": 729, "end": 733, "annotation": null}, {"text": "nature", "start": 734, "end": 740, "annotation": null}, {"text": "of", "start": 741, "end": 743, "annotation": null}, {"text": "charge", "start": 744, "end": 750, "annotation": null}, {"text": "transport", "start": 751, "end": 760, "annotation": null}, {"text": "phenomena", "start": 761, "end": 770, "annotation": null}, {"text": "in", "start": 771, "end": 773, "annotation": null}, {"text": "BLT", "start": 774, "end": 777, "annotation": "BASEMAT"}, {"text": "and", "start": 778, "end": 781, "annotation": null}, {"text": "Mn", "start": 782, "end": 784, "annotation": "DOPANT"}, {"text": "doped", "start": 785, "end": 790, "annotation": null}, {"text": "BLT", "start": 791, "end": 794, "annotation": "BASEMAT"}, {"text": "thin", "start": 795, "end": 799, "annotation": null}, {"text": "films", "start": 800, "end": 805, "annotation": null}, {"text": ".", "start": 805, "end": 806, "annotation": null}], [{"text": "It", "start": 807, "end": 809, "annotation": null}, {"text": "was", "start": 810, "end": 813, "annotation": null}, {"text": "found", "start": 814, "end": 819, "annotation": null}, {"text": "that", "start": 820, "end": 824, "annotation": null}, {"text": "BLT", "start": 825, "end": 828, "annotation": "BASEMAT"}, {"text": "and", "start": 829, "end": 832, "annotation": null}, {"text": "Mn", "start": 833, "end": 835, "annotation": "DOPANT"}, {"text": "doped", "start": 836, "end": 841, "annotation": null}, {"text": "BLT", "start": 842, "end": 845, "annotation": "BASEMAT"}, {"text": "thin", "start": 846, "end": 850, "annotation": null}, {"text": "films", "start": 851, "end": 856, "annotation": null}, {"text": "leakage", "start": 857, "end": 864, "annotation": null}, {"text": "current", "start": 865, "end": 872, "annotation": null}, {"text": "conduction", "start": 873, "end": 883, "annotation": null}, {"text": "mechanism", "start": 884, "end": 893, "annotation": null}, {"text": "follows", "start": 894, "end": 901, "annotation": null}, {"text": "the", "start": 902, "end": 905, "annotation": null}, {"text": "Lampert", "start": 906, "end": 913, "annotation": null}, {"text": "\u2019s", "start": 913, "end": 915, "annotation": null}, {"text": "theory", "start": 916, "end": 922, "annotation": null}, {"text": "of", "start": 923, "end": 925, "annotation": null}, {"text": "space", "start": 926, "end": 931, "annotation": null}, {"text": "charge", "start": 932, "end": 938, "annotation": null}, {"text": "limited", "start": 939, "end": 946, "annotation": null}, {"text": "conduction", "start": 947, "end": 957, "annotation": null}, {"text": "in", "start": 958, "end": 960, "annotation": null}, {"text": "an", "start": 961, "end": 963, "annotation": null}, {"text": "insulator", "start": 964, "end": 973, "annotation": null}, {"text": "with", "start": 974, "end": 978, "annotation": null}, {"text": "traps", "start": 979, "end": 984, "annotation": null}, {"text": ".", "start": 984, "end": 985, "annotation": null}]]} -{"remark": "doping_annt2", "text": "Dislocation-free p-type float-zone (FZ), magnetic Czochralski (MCZ), and Czochralski (CZ) silicon wafers with resistivity of ~50 \u03a9-cm were investigated before and after oxidation. Prior to any heat-treatment, FZ material showed highest minority-carrier lifetime (\u03c4r) with lifetimes approaching 5 ms. Lifetime in as-grown FZ material appears to be limited primarily by point defects generated due to thermal gradient and temperature fluctuation. As-grown CZ material showed lowest lifetimes of the order of 550 \u00b5s because of high concentration of point defects and residual impurities. This paper demonstrates for the first time that, unlike CZ, crucible-grown MCZ material of resistivity as low as 30\u201360 \u03a9-cm can have a lifetime as high as 2.5 ms. MCZ lifetime is limited by the residual impurities from the crucible and poly, even though the melt convection is reduced considerably. With the starting materials of comparable quality, the MCZ lifetime could be better than FZ because it has fewer defects due to stable liquid/solid interface. After oxidation, both FZ and MCZ samples gave a lifetime of ~550 \u00b5s which could not be explained on the basis of oxidation-induced point defects, because lifetime was limited by impurities diffused-in during high-temperature processing. Unlike FZ and MCZ, CZ material gave a postoxidation lifetime of only 100 \u00b5s due to high density of decorated defects, even though the impurity diffused-in concentration was the same. \u00a9 1990, The Electrochemical Society, Inc. All rights reserved.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Dislocation", "start": 0, "end": 11, "annotation": null}, {"text": "-", "start": 11, "end": 12, "annotation": null}, {"text": "free", "start": 12, "end": 16, "annotation": null}, {"text": "p", "start": 17, "end": 18, "annotation": "DOPANT"}, {"text": "-", "start": 18, "end": 19, "annotation": "DOPANT"}, {"text": "type", "start": 19, "end": 23, "annotation": "DOPANT"}, {"text": "float", "start": 24, "end": 29, "annotation": null}, {"text": "-", "start": 29, "end": 30, "annotation": null}, {"text": "zone", "start": 30, "end": 34, "annotation": null}, {"text": "(", "start": 35, "end": 36, "annotation": null}, {"text": "FZ", "start": 36, "end": 38, "annotation": null}, {"text": ")", "start": 38, "end": 39, "annotation": null}, {"text": ",", "start": 39, "end": 40, "annotation": null}, {"text": "magnetic", "start": 41, "end": 49, "annotation": null}, {"text": "Czochralski", "start": 50, "end": 61, "annotation": null}, {"text": "(", "start": 62, "end": 63, "annotation": null}, {"text": "MCZ", "start": 63, "end": 66, "annotation": null}, {"text": ")", "start": 66, "end": 67, "annotation": null}, {"text": ",", "start": 67, "end": 68, "annotation": null}, {"text": "and", "start": 69, "end": 72, "annotation": null}, {"text": "Czochralski", "start": 73, "end": 84, "annotation": null}, {"text": "(", "start": 85, "end": 86, "annotation": null}, {"text": "CZ", "start": 86, "end": 88, "annotation": null}, {"text": ")", "start": 88, "end": 89, "annotation": null}, {"text": "silicon", "start": 90, "end": 97, "annotation": "BASEMAT"}, {"text": "wafers", "start": 98, "end": 104, "annotation": null}, {"text": "with", "start": 105, "end": 109, "annotation": null}, {"text": "resistivity", "start": 110, "end": 121, "annotation": null}, {"text": "of", "start": 122, "end": 124, "annotation": null}, {"text": "~", "start": 125, "end": 126, "annotation": null}, {"text": "50", "start": 126, "end": 128, "annotation": null}, {"text": "\u03a9-cm", "start": 129, "end": 133, "annotation": null}, {"text": "were", "start": 134, "end": 138, "annotation": null}, {"text": "investigated", "start": 139, "end": 151, "annotation": null}, {"text": "before", "start": 152, "end": 158, "annotation": null}, {"text": "and", "start": 159, "end": 162, "annotation": null}, {"text": "after", "start": 163, "end": 168, "annotation": null}, {"text": "oxidation", "start": 169, "end": 178, "annotation": null}, {"text": ".", "start": 178, "end": 179, "annotation": null}], [{"text": "Prior", "start": 180, "end": 185, "annotation": null}, {"text": "to", "start": 186, "end": 188, "annotation": null}, {"text": "any", "start": 189, "end": 192, "annotation": null}, {"text": "heat", "start": 193, "end": 197, "annotation": null}, {"text": "-", "start": 197, "end": 198, "annotation": null}, {"text": "treatment", "start": 198, "end": 207, "annotation": null}, {"text": ",", "start": 207, "end": 208, "annotation": null}, {"text": "FZ", "start": 209, "end": 211, "annotation": null}, {"text": "material", "start": 212, "end": 220, "annotation": null}, {"text": "showed", "start": 221, "end": 227, "annotation": null}, {"text": "highest", "start": 228, "end": 235, "annotation": null}, {"text": "minority", "start": 236, "end": 244, "annotation": null}, {"text": "-", "start": 244, "end": 245, "annotation": null}, {"text": "carrier", "start": 245, "end": 252, "annotation": null}, {"text": "lifetime", "start": 253, "end": 261, "annotation": null}, {"text": "(", "start": 262, "end": 263, "annotation": null}, {"text": "\u03c4r", "start": 263, "end": 265, "annotation": null}, {"text": ")", "start": 265, "end": 266, "annotation": null}, {"text": "with", "start": 267, "end": 271, "annotation": null}, {"text": "lifetimes", "start": 272, "end": 281, "annotation": null}, {"text": "approaching", "start": 282, "end": 293, "annotation": null}, {"text": "5", "start": 294, "end": 295, "annotation": null}, {"text": "ms.", "start": 296, "end": 299, "annotation": null}, {"text": "Lifetime", "start": 300, "end": 308, "annotation": null}, {"text": "in", "start": 309, "end": 311, "annotation": null}, {"text": "as-grown", "start": 312, "end": 320, "annotation": null}, {"text": "FZ", "start": 321, "end": 323, "annotation": null}, {"text": "material", "start": 324, "end": 332, "annotation": null}, {"text": "appears", "start": 333, "end": 340, "annotation": null}, {"text": "to", "start": 341, "end": 343, "annotation": null}, {"text": "be", "start": 344, "end": 346, "annotation": null}, {"text": "limited", "start": 347, "end": 354, "annotation": null}, {"text": "primarily", "start": 355, "end": 364, "annotation": null}, {"text": "by", "start": 365, "end": 367, "annotation": null}, {"text": "point", "start": 368, "end": 373, "annotation": null}, {"text": "defects", "start": 374, "end": 381, "annotation": null}, {"text": "generated", "start": 382, "end": 391, "annotation": null}, {"text": "due", "start": 392, "end": 395, "annotation": null}, {"text": "to", "start": 396, "end": 398, "annotation": null}, {"text": "thermal", "start": 399, "end": 406, "annotation": null}, {"text": "gradient", "start": 407, "end": 415, "annotation": null}, {"text": "and", "start": 416, "end": 419, "annotation": null}, {"text": "temperature", "start": 420, "end": 431, "annotation": null}, {"text": "fluctuation", "start": 432, "end": 443, "annotation": null}, {"text": ".", "start": 443, "end": 444, "annotation": null}], [{"text": "As-grown", "start": 445, "end": 453, "annotation": null}, {"text": "CZ", "start": 454, "end": 456, "annotation": null}, {"text": "material", "start": 457, "end": 465, "annotation": null}, {"text": "showed", "start": 466, "end": 472, "annotation": null}, {"text": "lowest", "start": 473, "end": 479, "annotation": null}, {"text": "lifetimes", "start": 480, "end": 489, "annotation": null}, {"text": "of", "start": 490, "end": 492, "annotation": null}, {"text": "the", "start": 493, "end": 496, "annotation": null}, {"text": "order", "start": 497, "end": 502, "annotation": null}, {"text": "of", "start": 503, "end": 505, "annotation": null}, {"text": "550", "start": 506, "end": 509, "annotation": null}, {"text": "\u00b5s", "start": 510, "end": 512, "annotation": null}, {"text": "because", "start": 513, "end": 520, "annotation": null}, {"text": "of", "start": 521, "end": 523, "annotation": null}, {"text": "high", "start": 524, "end": 528, "annotation": null}, {"text": "concentration", "start": 529, "end": 542, "annotation": null}, {"text": "of", "start": 543, "end": 545, "annotation": null}, {"text": "point", "start": 546, "end": 551, "annotation": null}, {"text": "defects", "start": 552, "end": 559, "annotation": null}, {"text": "and", "start": 560, "end": 563, "annotation": null}, {"text": "residual", "start": 564, "end": 572, "annotation": null}, {"text": "impurities", "start": 573, "end": 583, "annotation": null}, {"text": ".", "start": 583, "end": 584, "annotation": null}], [{"text": "This", "start": 585, "end": 589, "annotation": null}, {"text": "paper", "start": 590, "end": 595, "annotation": null}, {"text": "demonstrates", "start": 596, "end": 608, "annotation": null}, {"text": "for", "start": 609, "end": 612, "annotation": null}, {"text": "the", "start": 613, "end": 616, "annotation": null}, {"text": "first", "start": 617, "end": 622, "annotation": null}, {"text": "time", "start": 623, "end": 627, "annotation": null}, {"text": "that", "start": 628, "end": 632, "annotation": null}, {"text": ",", "start": 632, "end": 633, "annotation": null}, {"text": "unlike", "start": 634, "end": 640, "annotation": null}, {"text": "CZ", "start": 641, "end": 643, "annotation": null}, {"text": ",", "start": 643, "end": 644, "annotation": null}, {"text": "crucible", "start": 645, "end": 653, "annotation": null}, {"text": "-", "start": 653, "end": 654, "annotation": null}, {"text": "grown", "start": 654, "end": 659, "annotation": null}, {"text": "MCZ", "start": 660, "end": 663, "annotation": null}, {"text": "material", "start": 664, "end": 672, "annotation": null}, {"text": "of", "start": 673, "end": 675, "annotation": null}, {"text": "resistivity", "start": 676, "end": 687, "annotation": null}, {"text": "as", "start": 688, "end": 690, "annotation": null}, {"text": "low", "start": 691, "end": 694, "annotation": null}, {"text": "as", "start": 695, "end": 697, "annotation": null}, {"text": "30", "start": 698, "end": 700, "annotation": null}, {"text": "\u2013", "start": 700, "end": 701, "annotation": null}, {"text": "60", "start": 701, "end": 703, "annotation": null}, {"text": "\u03a9-cm", "start": 704, "end": 708, "annotation": null}, {"text": "can", "start": 709, "end": 712, "annotation": null}, {"text": "have", "start": 713, "end": 717, "annotation": null}, {"text": "a", "start": 718, "end": 719, "annotation": null}, {"text": "lifetime", "start": 720, "end": 728, "annotation": null}, {"text": "as", "start": 729, "end": 731, "annotation": null}, {"text": "high", "start": 732, "end": 736, "annotation": null}, {"text": "as", "start": 737, "end": 739, "annotation": null}, {"text": "2.5", "start": 740, "end": 743, "annotation": null}, {"text": "ms.", "start": 744, "end": 747, "annotation": null}, {"text": "MCZ", "start": 748, "end": 751, "annotation": null}, {"text": "lifetime", "start": 752, "end": 760, "annotation": null}, {"text": "is", "start": 761, "end": 763, "annotation": null}, {"text": "limited", "start": 764, "end": 771, "annotation": null}, {"text": "by", "start": 772, "end": 774, "annotation": null}, {"text": "the", "start": 775, "end": 778, "annotation": null}, {"text": "residual", "start": 779, "end": 787, "annotation": null}, {"text": "impurities", "start": 788, "end": 798, "annotation": null}, {"text": "from", "start": 799, "end": 803, "annotation": null}, {"text": "the", "start": 804, "end": 807, "annotation": null}, {"text": "crucible", "start": 808, "end": 816, "annotation": null}, {"text": "and", "start": 817, "end": 820, "annotation": null}, {"text": "poly", "start": 821, "end": 825, "annotation": null}, {"text": ",", "start": 825, "end": 826, "annotation": null}, {"text": "even", "start": 827, "end": 831, "annotation": null}, {"text": "though", "start": 832, "end": 838, "annotation": null}, {"text": "the", "start": 839, "end": 842, "annotation": null}, {"text": "melt", "start": 843, "end": 847, "annotation": null}, {"text": "convection", "start": 848, "end": 858, "annotation": null}, {"text": "is", "start": 859, "end": 861, "annotation": null}, {"text": "reduced", "start": 862, "end": 869, "annotation": null}, {"text": "considerably", "start": 870, "end": 882, "annotation": null}, {"text": ".", "start": 882, "end": 883, "annotation": null}], [{"text": "With", "start": 884, "end": 888, "annotation": null}, {"text": "the", "start": 889, "end": 892, "annotation": null}, {"text": "starting", "start": 893, "end": 901, "annotation": null}, {"text": "materials", "start": 902, "end": 911, "annotation": null}, {"text": "of", "start": 912, "end": 914, "annotation": null}, {"text": "comparable", "start": 915, "end": 925, "annotation": null}, {"text": "quality", "start": 926, "end": 933, "annotation": null}, {"text": ",", "start": 933, "end": 934, "annotation": null}, {"text": "the", "start": 935, "end": 938, "annotation": null}, {"text": "MCZ", "start": 939, "end": 942, "annotation": null}, {"text": "lifetime", "start": 943, "end": 951, "annotation": null}, {"text": "could", "start": 952, "end": 957, "annotation": null}, {"text": "be", "start": 958, "end": 960, "annotation": null}, {"text": "better", "start": 961, "end": 967, "annotation": null}, {"text": "than", "start": 968, "end": 972, "annotation": null}, {"text": "FZ", "start": 973, "end": 975, "annotation": null}, {"text": "because", "start": 976, "end": 983, "annotation": null}, {"text": "it", "start": 984, "end": 986, "annotation": null}, {"text": "has", "start": 987, "end": 990, "annotation": null}, {"text": "fewer", "start": 991, "end": 996, "annotation": null}, {"text": "defects", "start": 997, "end": 1004, "annotation": null}, {"text": "due", "start": 1005, "end": 1008, "annotation": null}, {"text": "to", "start": 1009, "end": 1011, "annotation": null}, {"text": "stable", "start": 1012, "end": 1018, "annotation": null}, {"text": "liquid", "start": 1019, "end": 1025, "annotation": null}, {"text": "/", "start": 1025, "end": 1026, "annotation": null}, {"text": "solid", "start": 1026, "end": 1031, "annotation": null}, {"text": "interface", "start": 1032, "end": 1041, "annotation": null}, {"text": ".", "start": 1041, "end": 1042, "annotation": null}], [{"text": "After", "start": 1043, "end": 1048, "annotation": null}, {"text": "oxidation", "start": 1049, "end": 1058, "annotation": null}, {"text": ",", "start": 1058, "end": 1059, "annotation": null}, {"text": "both", "start": 1060, "end": 1064, "annotation": null}, {"text": "FZ", "start": 1065, "end": 1067, "annotation": null}, {"text": "and", "start": 1068, "end": 1071, "annotation": null}, {"text": "MCZ", "start": 1072, "end": 1075, "annotation": null}, {"text": "samples", "start": 1076, "end": 1083, "annotation": null}, {"text": "gave", "start": 1084, "end": 1088, "annotation": null}, {"text": "a", "start": 1089, "end": 1090, "annotation": null}, {"text": "lifetime", "start": 1091, "end": 1099, "annotation": null}, {"text": "of", "start": 1100, "end": 1102, "annotation": null}, {"text": "~", "start": 1103, "end": 1104, "annotation": null}, {"text": "550", "start": 1104, "end": 1107, "annotation": null}, {"text": "\u00b5s", "start": 1108, "end": 1110, "annotation": null}, {"text": "which", "start": 1111, "end": 1116, "annotation": null}, {"text": "could", "start": 1117, "end": 1122, "annotation": null}, {"text": "not", "start": 1123, "end": 1126, "annotation": null}, {"text": "be", "start": 1127, "end": 1129, "annotation": null}, {"text": "explained", "start": 1130, "end": 1139, "annotation": null}, {"text": "on", "start": 1140, "end": 1142, "annotation": null}, {"text": "the", "start": 1143, "end": 1146, "annotation": null}, {"text": "basis", "start": 1147, "end": 1152, "annotation": null}, {"text": "of", "start": 1153, "end": 1155, "annotation": null}, {"text": "oxidation", "start": 1156, "end": 1165, "annotation": null}, {"text": "-", "start": 1165, "end": 1166, "annotation": null}, {"text": "induced", "start": 1166, "end": 1173, "annotation": null}, {"text": "point", "start": 1174, "end": 1179, "annotation": null}, {"text": "defects", "start": 1180, "end": 1187, "annotation": null}, {"text": ",", "start": 1187, "end": 1188, "annotation": null}, {"text": "because", "start": 1189, "end": 1196, "annotation": null}, {"text": "lifetime", "start": 1197, "end": 1205, "annotation": null}, {"text": "was", "start": 1206, "end": 1209, "annotation": null}, {"text": "limited", "start": 1210, "end": 1217, "annotation": null}, {"text": "by", "start": 1218, "end": 1220, "annotation": null}, {"text": "impurities", "start": 1221, "end": 1231, "annotation": null}, {"text": "diffused-in", "start": 1232, "end": 1243, "annotation": null}, {"text": "during", "start": 1244, "end": 1250, "annotation": null}, {"text": "high", "start": 1251, "end": 1255, "annotation": null}, {"text": "-", "start": 1255, "end": 1256, "annotation": null}, {"text": "temperature", "start": 1256, "end": 1267, "annotation": null}, {"text": "processing", "start": 1268, "end": 1278, "annotation": null}, {"text": ".", "start": 1278, "end": 1279, "annotation": null}], [{"text": "Unlike", "start": 1280, "end": 1286, "annotation": null}, {"text": "FZ", "start": 1287, "end": 1289, "annotation": null}, {"text": "and", "start": 1290, "end": 1293, "annotation": null}, {"text": "MCZ", "start": 1294, "end": 1297, "annotation": null}, {"text": ",", "start": 1297, "end": 1298, "annotation": null}, {"text": "CZ", "start": 1299, "end": 1301, "annotation": null}, {"text": "material", "start": 1302, "end": 1310, "annotation": null}, {"text": "gave", "start": 1311, "end": 1315, "annotation": null}, {"text": "a", "start": 1316, "end": 1317, "annotation": null}, {"text": "postoxidation", "start": 1318, "end": 1331, "annotation": null}, {"text": "lifetime", "start": 1332, "end": 1340, "annotation": null}, {"text": "of", "start": 1341, "end": 1343, "annotation": null}, {"text": "only", "start": 1344, "end": 1348, "annotation": null}, {"text": "100", "start": 1349, "end": 1352, "annotation": null}, {"text": "\u00b5s", "start": 1353, "end": 1355, "annotation": null}, {"text": "due", "start": 1356, "end": 1359, "annotation": null}, {"text": "to", "start": 1360, "end": 1362, "annotation": null}, {"text": "high", "start": 1363, "end": 1367, "annotation": null}, {"text": "density", "start": 1368, "end": 1375, "annotation": null}, {"text": "of", "start": 1376, "end": 1378, "annotation": null}, {"text": "decorated", "start": 1379, "end": 1388, "annotation": null}, {"text": "defects", "start": 1389, "end": 1396, "annotation": null}, {"text": ",", "start": 1396, "end": 1397, "annotation": null}, {"text": "even", "start": 1398, "end": 1402, "annotation": null}, {"text": "though", "start": 1403, "end": 1409, "annotation": null}, {"text": "the", "start": 1410, "end": 1413, "annotation": null}, {"text": "impurity", "start": 1414, "end": 1422, "annotation": null}, {"text": "diffused-in", "start": 1423, "end": 1434, "annotation": null}, {"text": "concentration", "start": 1435, "end": 1448, "annotation": null}, {"text": "was", "start": 1449, "end": 1452, "annotation": null}, {"text": "the", "start": 1453, "end": 1456, "annotation": null}, {"text": "same", "start": 1457, "end": 1461, "annotation": null}, {"text": ".", "start": 1461, "end": 1462, "annotation": null}], [{"text": "All", "start": 1505, "end": 1508, "annotation": null}, {"text": "rights", "start": 1509, "end": 1515, "annotation": null}, {"text": "reserved", "start": 1516, "end": 1524, "annotation": null}, {"text": ".", "start": 1524, "end": 1525, "annotation": null}]]} +{"remark": "doping_annt2", "text": "Bi3.25La0.75Ti3O12 (BLT) is one of the prospective candidate materials for data storage devices application. In order to understand the leakage current conduction mechanism in BLT we have studied Mn doped Bi3.25La0.75Ti3O12 (BLT) thin films with varying concentration of Mn. These films were prepared by chemical solution deposition technique. The structure and phase analysis of these films was performed at room temperature by X-ray diffraction, and scanning electron microscope was used to investigate the surface morphology. Different leakage current conduction mechanisms, e.g., Schottky emission, Modified Schottky, Poole\u2013Frenkel emission and space charge limited (Lampert\u2019s theory) conduction were examined to explain the true nature of charge transport phenomena in BLT and Mn doped BLT thin films. It was found that BLT and Mn doped BLT thin films leakage current conduction mechanism follows the Lampert\u2019s theory of space charge limited conduction in an insulator with traps.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Bi3.25La0.75Ti3O12", "start": 0, "end": 18, "annotation": null}, {"text": "(", "start": 19, "end": 20, "annotation": null}, {"text": "BLT", "start": 20, "end": 23, "annotation": null}, {"text": ")", "start": 23, "end": 24, "annotation": null}, {"text": "is", "start": 25, "end": 27, "annotation": null}, {"text": "one", "start": 28, "end": 31, "annotation": null}, {"text": "of", "start": 32, "end": 34, "annotation": null}, {"text": "the", "start": 35, "end": 38, "annotation": null}, {"text": "prospective", "start": 39, "end": 50, "annotation": null}, {"text": "candidate", "start": 51, "end": 60, "annotation": null}, {"text": "materials", "start": 61, "end": 70, "annotation": null}, {"text": "for", "start": 71, "end": 74, "annotation": null}, {"text": "data", "start": 75, "end": 79, "annotation": null}, {"text": "storage", "start": 80, "end": 87, "annotation": null}, {"text": "devices", "start": 88, "end": 95, "annotation": null}, {"text": "application", "start": 96, "end": 107, "annotation": null}, {"text": ".", "start": 107, "end": 108, "annotation": null}], [{"text": "In", "start": 109, "end": 111, "annotation": null}, {"text": "order", "start": 112, "end": 117, "annotation": null}, {"text": "to", "start": 118, "end": 120, "annotation": null}, {"text": "understand", "start": 121, "end": 131, "annotation": null}, {"text": "the", "start": 132, "end": 135, "annotation": null}, {"text": "leakage", "start": 136, "end": 143, "annotation": null}, {"text": "current", "start": 144, "end": 151, "annotation": null}, {"text": "conduction", "start": 152, "end": 162, "annotation": null}, {"text": "mechanism", "start": 163, "end": 172, "annotation": null}, {"text": "in", "start": 173, "end": 175, "annotation": null}, {"text": "BLT", "start": 176, "end": 179, "annotation": null}, {"text": "we", "start": 180, "end": 182, "annotation": null}, {"text": "have", "start": 183, "end": 187, "annotation": null}, {"text": "studied", "start": 188, "end": 195, "annotation": null}, {"text": "Mn", "start": 196, "end": 198, "annotation": "DOPANT"}, {"text": "doped", "start": 199, "end": 204, "annotation": null}, {"text": "Bi3.25La0.75Ti3O12", "start": 205, "end": 223, "annotation": "BASEMAT"}, {"text": "(", "start": 224, "end": 225, "annotation": null}, {"text": "BLT", "start": 225, "end": 228, "annotation": "BASEMAT"}, {"text": ")", "start": 228, "end": 229, "annotation": null}, {"text": "thin", "start": 230, "end": 234, "annotation": null}, {"text": "films", "start": 235, "end": 240, "annotation": null}, {"text": "with", "start": 241, "end": 245, "annotation": null}, {"text": "varying", "start": 246, "end": 253, "annotation": null}, {"text": "concentration", "start": 254, "end": 267, "annotation": null}, {"text": "of", "start": 268, "end": 270, "annotation": null}, {"text": "Mn", "start": 271, "end": 273, "annotation": "DOPANT"}, {"text": ".", "start": 273, "end": 274, "annotation": null}], [{"text": "These", "start": 275, "end": 280, "annotation": null}, {"text": "films", "start": 281, "end": 286, "annotation": null}, {"text": "were", "start": 287, "end": 291, "annotation": null}, {"text": "prepared", "start": 292, "end": 300, "annotation": null}, {"text": "by", "start": 301, "end": 303, "annotation": null}, {"text": "chemical", "start": 304, "end": 312, "annotation": null}, {"text": "solution", "start": 313, "end": 321, "annotation": null}, {"text": "deposition", "start": 322, "end": 332, "annotation": null}, {"text": "technique", "start": 333, "end": 342, "annotation": null}, {"text": ".", "start": 342, "end": 343, "annotation": null}], [{"text": "The", "start": 344, "end": 347, "annotation": null}, {"text": "structure", "start": 348, "end": 357, "annotation": null}, {"text": "and", "start": 358, "end": 361, "annotation": null}, {"text": "phase", "start": 362, "end": 367, "annotation": null}, {"text": "analysis", "start": 368, "end": 376, "annotation": null}, {"text": "of", "start": 377, "end": 379, "annotation": null}, {"text": "these", "start": 380, "end": 385, "annotation": null}, {"text": "films", "start": 386, "end": 391, "annotation": null}, {"text": "was", "start": 392, "end": 395, "annotation": null}, {"text": "performed", "start": 396, "end": 405, "annotation": null}, {"text": "at", "start": 406, "end": 408, "annotation": null}, {"text": "room", "start": 409, "end": 413, "annotation": null}, {"text": "temperature", "start": 414, "end": 425, "annotation": null}, {"text": "by", "start": 426, "end": 428, "annotation": null}, {"text": "X-ray", "start": 429, "end": 434, "annotation": null}, {"text": "diffraction", "start": 435, "end": 446, "annotation": null}, {"text": ",", "start": 446, "end": 447, "annotation": null}, {"text": "and", "start": 448, "end": 451, "annotation": null}, {"text": "scanning", "start": 452, "end": 460, "annotation": null}, {"text": "electron", "start": 461, "end": 469, "annotation": null}, {"text": "microscope", "start": 470, "end": 480, "annotation": null}, {"text": "was", "start": 481, "end": 484, "annotation": null}, {"text": "used", "start": 485, "end": 489, "annotation": null}, {"text": "to", "start": 490, "end": 492, "annotation": null}, {"text": "investigate", "start": 493, "end": 504, "annotation": null}, {"text": "the", "start": 505, "end": 508, "annotation": null}, {"text": "surface", "start": 509, "end": 516, "annotation": null}, {"text": "morphology", "start": 517, "end": 527, "annotation": null}, {"text": ".", "start": 527, "end": 528, "annotation": null}], [{"text": "Different", "start": 529, "end": 538, "annotation": null}, {"text": "leakage", "start": 539, "end": 546, "annotation": null}, {"text": "current", "start": 547, "end": 554, "annotation": null}, {"text": "conduction", "start": 555, "end": 565, "annotation": null}, {"text": "mechanisms", "start": 566, "end": 576, "annotation": null}, {"text": ",", "start": 576, "end": 577, "annotation": null}, {"text": "e.g.", "start": 578, "end": 582, "annotation": null}, {"text": ",", "start": 582, "end": 583, "annotation": null}, {"text": "Schottky", "start": 584, "end": 592, "annotation": null}, {"text": "emission", "start": 593, "end": 601, "annotation": null}, {"text": ",", "start": 601, "end": 602, "annotation": null}, {"text": "Modified", "start": 603, "end": 611, "annotation": null}, {"text": "Schottky", "start": 612, "end": 620, "annotation": null}, {"text": ",", "start": 620, "end": 621, "annotation": null}, {"text": "Poole", "start": 622, "end": 627, "annotation": null}, {"text": "\u2013", "start": 627, "end": 628, "annotation": null}, {"text": "Frenkel", "start": 628, "end": 635, "annotation": null}, {"text": "emission", "start": 636, "end": 644, "annotation": null}, {"text": "and", "start": 645, "end": 648, "annotation": null}, {"text": "space", "start": 649, "end": 654, "annotation": null}, {"text": "charge", "start": 655, "end": 661, "annotation": null}, {"text": "limited", "start": 662, "end": 669, "annotation": null}, {"text": "(", "start": 670, "end": 671, "annotation": null}, {"text": "Lampert", "start": 671, "end": 678, "annotation": null}, {"text": "\u2019s", "start": 678, "end": 680, "annotation": null}, {"text": "theory", "start": 681, "end": 687, "annotation": null}, {"text": ")", "start": 687, "end": 688, "annotation": null}, {"text": "conduction", "start": 689, "end": 699, "annotation": null}, {"text": "were", "start": 700, "end": 704, "annotation": null}, {"text": "examined", "start": 705, "end": 713, "annotation": null}, {"text": "to", "start": 714, "end": 716, "annotation": null}, {"text": "explain", "start": 717, "end": 724, "annotation": null}, {"text": "the", "start": 725, "end": 728, "annotation": null}, {"text": "true", "start": 729, "end": 733, "annotation": null}, {"text": "nature", "start": 734, "end": 740, "annotation": null}, {"text": "of", "start": 741, "end": 743, "annotation": null}, {"text": "charge", "start": 744, "end": 750, "annotation": null}, {"text": "transport", "start": 751, "end": 760, "annotation": null}, {"text": "phenomena", "start": 761, "end": 770, "annotation": null}, {"text": "in", "start": 771, "end": 773, "annotation": null}, {"text": "BLT", "start": 774, "end": 777, "annotation": "BASEMAT"}, {"text": "and", "start": 778, "end": 781, "annotation": null}, {"text": "Mn", "start": 782, "end": 784, "annotation": "DOPANT"}, {"text": "doped", "start": 785, "end": 790, "annotation": null}, {"text": "BLT", "start": 791, "end": 794, "annotation": "BASEMAT"}, {"text": "thin", "start": 795, "end": 799, "annotation": null}, {"text": "films", "start": 800, "end": 805, "annotation": null}, {"text": ".", "start": 805, "end": 806, "annotation": null}], [{"text": "It", "start": 807, "end": 809, "annotation": null}, {"text": "was", "start": 810, "end": 813, "annotation": null}, {"text": "found", "start": 814, "end": 819, "annotation": null}, {"text": "that", "start": 820, "end": 824, "annotation": null}, {"text": "BLT", "start": 825, "end": 828, "annotation": "BASEMAT"}, {"text": "and", "start": 829, "end": 832, "annotation": null}, {"text": "Mn", "start": 833, "end": 835, "annotation": "DOPANT"}, {"text": "doped", "start": 836, "end": 841, "annotation": null}, {"text": "BLT", "start": 842, "end": 845, "annotation": "BASEMAT"}, {"text": "thin", "start": 846, "end": 850, "annotation": null}, {"text": "films", "start": 851, "end": 856, "annotation": null}, {"text": "leakage", "start": 857, "end": 864, "annotation": null}, {"text": "current", "start": 865, "end": 872, "annotation": null}, {"text": "conduction", "start": 873, "end": 883, "annotation": null}, {"text": "mechanism", "start": 884, "end": 893, "annotation": null}, {"text": "follows", "start": 894, "end": 901, "annotation": null}, {"text": "the", "start": 902, "end": 905, "annotation": null}, {"text": "Lampert", "start": 906, "end": 913, "annotation": null}, {"text": "\u2019s", "start": 913, "end": 915, "annotation": null}, {"text": "theory", "start": 916, "end": 922, "annotation": null}, {"text": "of", "start": 923, "end": 925, "annotation": null}, {"text": "space", "start": 926, "end": 931, "annotation": null}, {"text": "charge", "start": 932, "end": 938, "annotation": null}, {"text": "limited", "start": 939, "end": 946, "annotation": null}, {"text": "conduction", "start": 947, "end": 957, "annotation": null}, {"text": "in", "start": 958, "end": 960, "annotation": null}, {"text": "an", "start": 961, "end": 963, "annotation": null}, {"text": "insulator", "start": 964, "end": 973, "annotation": null}, {"text": "with", "start": 974, "end": 978, "annotation": null}, {"text": "traps", "start": 979, "end": 984, "annotation": null}, {"text": ".", "start": 984, "end": 985, "annotation": null}]], "meta": {"doi": "10.1016/j.jallcom.2014.03.139"}} +{"remark": "doping_annt2", "text": "Dislocation-free p-type float-zone (FZ), magnetic Czochralski (MCZ), and Czochralski (CZ) silicon wafers with resistivity of ~50 \u03a9-cm were investigated before and after oxidation. Prior to any heat-treatment, FZ material showed highest minority-carrier lifetime (\u03c4r) with lifetimes approaching 5 ms. Lifetime in as-grown FZ material appears to be limited primarily by point defects generated due to thermal gradient and temperature fluctuation. As-grown CZ material showed lowest lifetimes of the order of 550 \u00b5s because of high concentration of point defects and residual impurities. This paper demonstrates for the first time that, unlike CZ, crucible-grown MCZ material of resistivity as low as 30\u201360 \u03a9-cm can have a lifetime as high as 2.5 ms. MCZ lifetime is limited by the residual impurities from the crucible and poly, even though the melt convection is reduced considerably. With the starting materials of comparable quality, the MCZ lifetime could be better than FZ because it has fewer defects due to stable liquid/solid interface. After oxidation, both FZ and MCZ samples gave a lifetime of ~550 \u00b5s which could not be explained on the basis of oxidation-induced point defects, because lifetime was limited by impurities diffused-in during high-temperature processing. Unlike FZ and MCZ, CZ material gave a postoxidation lifetime of only 100 \u00b5s due to high density of decorated defects, even though the impurity diffused-in concentration was the same. \u00a9 1990, The Electrochemical Society, Inc. All rights reserved.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Dislocation", "start": 0, "end": 11, "annotation": null}, {"text": "-", "start": 11, "end": 12, "annotation": null}, {"text": "free", "start": 12, "end": 16, "annotation": null}, {"text": "p", "start": 17, "end": 18, "annotation": "DOPANT"}, {"text": "-", "start": 18, "end": 19, "annotation": "DOPANT"}, {"text": "type", "start": 19, "end": 23, "annotation": "DOPANT"}, {"text": "float", "start": 24, "end": 29, "annotation": null}, {"text": "-", "start": 29, "end": 30, "annotation": null}, {"text": "zone", "start": 30, "end": 34, "annotation": null}, {"text": "(", "start": 35, "end": 36, "annotation": null}, {"text": "FZ", "start": 36, "end": 38, "annotation": null}, {"text": ")", "start": 38, "end": 39, "annotation": null}, {"text": ",", "start": 39, "end": 40, "annotation": null}, {"text": "magnetic", "start": 41, "end": 49, "annotation": null}, {"text": "Czochralski", "start": 50, "end": 61, "annotation": null}, {"text": "(", "start": 62, "end": 63, "annotation": null}, {"text": "MCZ", "start": 63, "end": 66, "annotation": null}, {"text": ")", "start": 66, "end": 67, "annotation": null}, {"text": ",", "start": 67, "end": 68, "annotation": null}, {"text": "and", "start": 69, "end": 72, "annotation": null}, {"text": "Czochralski", "start": 73, "end": 84, "annotation": null}, {"text": "(", "start": 85, "end": 86, "annotation": null}, {"text": "CZ", "start": 86, "end": 88, "annotation": null}, {"text": ")", "start": 88, "end": 89, "annotation": null}, {"text": "silicon", "start": 90, "end": 97, "annotation": "BASEMAT"}, {"text": "wafers", "start": 98, "end": 104, "annotation": null}, {"text": "with", "start": 105, "end": 109, "annotation": null}, {"text": "resistivity", "start": 110, "end": 121, "annotation": null}, {"text": "of", "start": 122, "end": 124, "annotation": null}, {"text": "~", "start": 125, "end": 126, "annotation": null}, {"text": "50", "start": 126, "end": 128, "annotation": null}, {"text": "\u03a9-cm", "start": 129, "end": 133, "annotation": null}, {"text": "were", "start": 134, "end": 138, "annotation": null}, {"text": "investigated", "start": 139, "end": 151, "annotation": null}, {"text": "before", "start": 152, "end": 158, "annotation": null}, {"text": "and", "start": 159, "end": 162, "annotation": null}, {"text": "after", "start": 163, "end": 168, "annotation": null}, {"text": "oxidation", "start": 169, "end": 178, "annotation": null}, {"text": ".", "start": 178, "end": 179, "annotation": null}], [{"text": "Prior", "start": 180, "end": 185, "annotation": null}, {"text": "to", "start": 186, "end": 188, "annotation": null}, {"text": "any", "start": 189, "end": 192, "annotation": null}, {"text": "heat", "start": 193, "end": 197, "annotation": null}, {"text": "-", "start": 197, "end": 198, "annotation": null}, {"text": "treatment", "start": 198, "end": 207, "annotation": null}, {"text": ",", "start": 207, "end": 208, "annotation": null}, {"text": "FZ", "start": 209, "end": 211, "annotation": null}, {"text": "material", "start": 212, "end": 220, "annotation": null}, {"text": "showed", "start": 221, "end": 227, "annotation": null}, {"text": "highest", "start": 228, "end": 235, "annotation": null}, {"text": "minority", "start": 236, "end": 244, "annotation": null}, {"text": "-", "start": 244, "end": 245, "annotation": null}, {"text": "carrier", "start": 245, "end": 252, "annotation": null}, {"text": "lifetime", "start": 253, "end": 261, "annotation": null}, {"text": "(", "start": 262, "end": 263, "annotation": null}, {"text": "\u03c4r", "start": 263, "end": 265, "annotation": null}, {"text": ")", "start": 265, "end": 266, "annotation": null}, {"text": "with", "start": 267, "end": 271, "annotation": null}, {"text": "lifetimes", "start": 272, "end": 281, "annotation": null}, {"text": "approaching", "start": 282, "end": 293, "annotation": null}, {"text": "5", "start": 294, "end": 295, "annotation": null}, {"text": "ms.", "start": 296, "end": 299, "annotation": null}, {"text": "Lifetime", "start": 300, "end": 308, "annotation": null}, {"text": "in", "start": 309, "end": 311, "annotation": null}, {"text": "as-grown", "start": 312, "end": 320, "annotation": null}, {"text": "FZ", "start": 321, "end": 323, "annotation": null}, {"text": "material", "start": 324, "end": 332, "annotation": null}, {"text": "appears", "start": 333, "end": 340, "annotation": null}, {"text": "to", "start": 341, "end": 343, "annotation": null}, {"text": "be", "start": 344, "end": 346, "annotation": null}, {"text": "limited", "start": 347, "end": 354, "annotation": null}, {"text": "primarily", "start": 355, "end": 364, "annotation": null}, {"text": "by", "start": 365, "end": 367, "annotation": null}, {"text": "point", "start": 368, "end": 373, "annotation": null}, {"text": "defects", "start": 374, "end": 381, "annotation": null}, {"text": "generated", "start": 382, "end": 391, "annotation": null}, {"text": "due", "start": 392, "end": 395, "annotation": null}, {"text": "to", "start": 396, "end": 398, "annotation": null}, {"text": "thermal", "start": 399, "end": 406, "annotation": null}, {"text": "gradient", "start": 407, "end": 415, "annotation": null}, {"text": "and", "start": 416, "end": 419, "annotation": null}, {"text": "temperature", "start": 420, "end": 431, "annotation": null}, {"text": "fluctuation", "start": 432, "end": 443, "annotation": null}, {"text": ".", "start": 443, "end": 444, "annotation": null}], [{"text": "As-grown", "start": 445, "end": 453, "annotation": null}, {"text": "CZ", "start": 454, "end": 456, "annotation": null}, {"text": "material", "start": 457, "end": 465, "annotation": null}, {"text": "showed", "start": 466, "end": 472, "annotation": null}, {"text": "lowest", "start": 473, "end": 479, "annotation": null}, {"text": "lifetimes", "start": 480, "end": 489, "annotation": null}, {"text": "of", "start": 490, "end": 492, "annotation": null}, {"text": "the", "start": 493, "end": 496, "annotation": null}, {"text": "order", "start": 497, "end": 502, "annotation": null}, {"text": "of", "start": 503, "end": 505, "annotation": null}, {"text": "550", "start": 506, "end": 509, "annotation": null}, {"text": "\u00b5s", "start": 510, "end": 512, "annotation": null}, {"text": "because", "start": 513, "end": 520, "annotation": null}, {"text": "of", "start": 521, "end": 523, "annotation": null}, {"text": "high", "start": 524, "end": 528, "annotation": null}, {"text": "concentration", "start": 529, "end": 542, "annotation": null}, {"text": "of", "start": 543, "end": 545, "annotation": null}, {"text": "point", "start": 546, "end": 551, "annotation": null}, {"text": "defects", "start": 552, "end": 559, "annotation": null}, {"text": "and", "start": 560, "end": 563, "annotation": null}, {"text": "residual", "start": 564, "end": 572, "annotation": null}, {"text": "impurities", "start": 573, "end": 583, "annotation": null}, {"text": ".", "start": 583, "end": 584, "annotation": null}], [{"text": "This", "start": 585, "end": 589, "annotation": null}, {"text": "paper", "start": 590, "end": 595, "annotation": null}, {"text": "demonstrates", "start": 596, "end": 608, "annotation": null}, {"text": "for", "start": 609, "end": 612, "annotation": null}, {"text": "the", "start": 613, "end": 616, "annotation": null}, {"text": "first", "start": 617, "end": 622, "annotation": null}, {"text": "time", "start": 623, "end": 627, "annotation": null}, {"text": "that", "start": 628, "end": 632, "annotation": null}, {"text": ",", "start": 632, "end": 633, "annotation": null}, {"text": "unlike", "start": 634, "end": 640, "annotation": null}, {"text": "CZ", "start": 641, "end": 643, "annotation": null}, {"text": ",", "start": 643, "end": 644, "annotation": null}, {"text": "crucible", "start": 645, "end": 653, "annotation": null}, {"text": "-", "start": 653, "end": 654, "annotation": null}, {"text": "grown", "start": 654, "end": 659, "annotation": null}, {"text": "MCZ", "start": 660, "end": 663, "annotation": null}, {"text": "material", "start": 664, "end": 672, "annotation": null}, {"text": "of", "start": 673, "end": 675, "annotation": null}, {"text": "resistivity", "start": 676, "end": 687, "annotation": null}, {"text": "as", "start": 688, "end": 690, "annotation": null}, {"text": "low", "start": 691, "end": 694, "annotation": null}, {"text": "as", "start": 695, "end": 697, "annotation": null}, {"text": "30", "start": 698, "end": 700, "annotation": null}, {"text": "\u2013", "start": 700, "end": 701, "annotation": null}, {"text": "60", "start": 701, "end": 703, "annotation": null}, {"text": "\u03a9-cm", "start": 704, "end": 708, "annotation": null}, {"text": "can", "start": 709, "end": 712, "annotation": null}, {"text": "have", "start": 713, "end": 717, "annotation": null}, {"text": "a", "start": 718, "end": 719, "annotation": null}, {"text": "lifetime", "start": 720, "end": 728, "annotation": null}, {"text": "as", "start": 729, "end": 731, "annotation": null}, {"text": "high", "start": 732, "end": 736, "annotation": null}, {"text": "as", "start": 737, "end": 739, "annotation": null}, {"text": "2.5", "start": 740, "end": 743, "annotation": null}, {"text": "ms.", "start": 744, "end": 747, "annotation": null}, {"text": "MCZ", "start": 748, "end": 751, "annotation": null}, {"text": "lifetime", "start": 752, "end": 760, "annotation": null}, {"text": "is", "start": 761, "end": 763, "annotation": null}, {"text": "limited", "start": 764, "end": 771, "annotation": null}, {"text": "by", "start": 772, "end": 774, "annotation": null}, {"text": "the", "start": 775, "end": 778, "annotation": null}, {"text": "residual", "start": 779, "end": 787, "annotation": null}, {"text": "impurities", "start": 788, "end": 798, "annotation": null}, {"text": "from", "start": 799, "end": 803, "annotation": null}, {"text": "the", "start": 804, "end": 807, "annotation": null}, {"text": "crucible", "start": 808, "end": 816, "annotation": null}, {"text": "and", "start": 817, "end": 820, "annotation": null}, {"text": "poly", "start": 821, "end": 825, "annotation": null}, {"text": ",", "start": 825, "end": 826, "annotation": null}, {"text": "even", "start": 827, "end": 831, "annotation": null}, {"text": "though", "start": 832, "end": 838, "annotation": null}, {"text": "the", "start": 839, "end": 842, "annotation": null}, {"text": "melt", "start": 843, "end": 847, "annotation": null}, {"text": "convection", "start": 848, "end": 858, "annotation": null}, {"text": "is", "start": 859, "end": 861, "annotation": null}, {"text": "reduced", "start": 862, "end": 869, "annotation": null}, {"text": "considerably", "start": 870, "end": 882, "annotation": null}, {"text": ".", "start": 882, "end": 883, "annotation": null}], [{"text": "With", "start": 884, "end": 888, "annotation": null}, {"text": "the", "start": 889, "end": 892, "annotation": null}, {"text": "starting", "start": 893, "end": 901, "annotation": null}, {"text": "materials", "start": 902, "end": 911, "annotation": null}, {"text": "of", "start": 912, "end": 914, "annotation": null}, {"text": "comparable", "start": 915, "end": 925, "annotation": null}, {"text": "quality", "start": 926, "end": 933, "annotation": null}, {"text": ",", "start": 933, "end": 934, "annotation": null}, {"text": "the", "start": 935, "end": 938, "annotation": null}, {"text": "MCZ", "start": 939, "end": 942, "annotation": null}, {"text": "lifetime", "start": 943, "end": 951, "annotation": null}, {"text": "could", "start": 952, "end": 957, "annotation": null}, {"text": "be", "start": 958, "end": 960, "annotation": null}, {"text": "better", "start": 961, "end": 967, "annotation": null}, {"text": "than", "start": 968, "end": 972, "annotation": null}, {"text": "FZ", "start": 973, "end": 975, "annotation": null}, {"text": "because", "start": 976, "end": 983, "annotation": null}, {"text": "it", "start": 984, "end": 986, "annotation": null}, {"text": "has", "start": 987, "end": 990, "annotation": null}, {"text": "fewer", "start": 991, "end": 996, "annotation": null}, {"text": "defects", "start": 997, "end": 1004, "annotation": null}, {"text": "due", "start": 1005, "end": 1008, "annotation": null}, {"text": "to", "start": 1009, "end": 1011, "annotation": null}, {"text": "stable", "start": 1012, "end": 1018, "annotation": null}, {"text": "liquid", "start": 1019, "end": 1025, "annotation": null}, {"text": "/", "start": 1025, "end": 1026, "annotation": null}, {"text": "solid", "start": 1026, "end": 1031, "annotation": null}, {"text": "interface", "start": 1032, "end": 1041, "annotation": null}, {"text": ".", "start": 1041, "end": 1042, "annotation": null}], [{"text": "After", "start": 1043, "end": 1048, "annotation": null}, {"text": "oxidation", "start": 1049, "end": 1058, "annotation": null}, {"text": ",", "start": 1058, "end": 1059, "annotation": null}, {"text": "both", "start": 1060, "end": 1064, "annotation": null}, {"text": "FZ", "start": 1065, "end": 1067, "annotation": null}, {"text": "and", "start": 1068, "end": 1071, "annotation": null}, {"text": "MCZ", "start": 1072, "end": 1075, "annotation": null}, {"text": "samples", "start": 1076, "end": 1083, "annotation": null}, {"text": "gave", "start": 1084, "end": 1088, "annotation": null}, {"text": "a", "start": 1089, "end": 1090, "annotation": null}, {"text": "lifetime", "start": 1091, "end": 1099, "annotation": null}, {"text": "of", "start": 1100, "end": 1102, "annotation": null}, {"text": "~", "start": 1103, "end": 1104, "annotation": null}, {"text": "550", "start": 1104, "end": 1107, "annotation": null}, {"text": "\u00b5s", "start": 1108, "end": 1110, "annotation": null}, {"text": "which", "start": 1111, "end": 1116, "annotation": null}, {"text": "could", "start": 1117, "end": 1122, "annotation": null}, {"text": "not", "start": 1123, "end": 1126, "annotation": null}, {"text": "be", "start": 1127, "end": 1129, "annotation": null}, {"text": "explained", "start": 1130, "end": 1139, "annotation": null}, {"text": "on", "start": 1140, "end": 1142, "annotation": null}, {"text": "the", "start": 1143, "end": 1146, "annotation": null}, {"text": "basis", "start": 1147, "end": 1152, "annotation": null}, {"text": "of", "start": 1153, "end": 1155, "annotation": null}, {"text": "oxidation", "start": 1156, "end": 1165, "annotation": null}, {"text": "-", "start": 1165, "end": 1166, "annotation": null}, {"text": "induced", "start": 1166, "end": 1173, "annotation": null}, {"text": "point", "start": 1174, "end": 1179, "annotation": null}, {"text": "defects", "start": 1180, "end": 1187, "annotation": null}, {"text": ",", "start": 1187, "end": 1188, "annotation": null}, {"text": "because", "start": 1189, "end": 1196, "annotation": null}, {"text": "lifetime", "start": 1197, "end": 1205, "annotation": null}, {"text": "was", "start": 1206, "end": 1209, "annotation": null}, {"text": "limited", "start": 1210, "end": 1217, "annotation": null}, {"text": "by", "start": 1218, "end": 1220, "annotation": null}, {"text": "impurities", "start": 1221, "end": 1231, "annotation": null}, {"text": "diffused-in", "start": 1232, "end": 1243, "annotation": null}, {"text": "during", "start": 1244, "end": 1250, "annotation": null}, {"text": "high", "start": 1251, "end": 1255, "annotation": null}, {"text": "-", "start": 1255, "end": 1256, "annotation": null}, {"text": "temperature", "start": 1256, "end": 1267, "annotation": null}, {"text": "processing", "start": 1268, "end": 1278, "annotation": null}, {"text": ".", "start": 1278, "end": 1279, "annotation": null}], [{"text": "Unlike", "start": 1280, "end": 1286, "annotation": null}, {"text": "FZ", "start": 1287, "end": 1289, "annotation": null}, {"text": "and", "start": 1290, "end": 1293, "annotation": null}, {"text": "MCZ", "start": 1294, "end": 1297, "annotation": null}, {"text": ",", "start": 1297, "end": 1298, "annotation": null}, {"text": "CZ", "start": 1299, "end": 1301, "annotation": null}, {"text": "material", "start": 1302, "end": 1310, "annotation": null}, {"text": "gave", "start": 1311, "end": 1315, "annotation": null}, {"text": "a", "start": 1316, "end": 1317, "annotation": null}, {"text": "postoxidation", "start": 1318, "end": 1331, "annotation": null}, {"text": "lifetime", "start": 1332, "end": 1340, "annotation": null}, {"text": "of", "start": 1341, "end": 1343, "annotation": null}, {"text": "only", "start": 1344, "end": 1348, "annotation": null}, {"text": "100", "start": 1349, "end": 1352, "annotation": null}, {"text": "\u00b5s", "start": 1353, "end": 1355, "annotation": null}, {"text": "due", "start": 1356, "end": 1359, "annotation": null}, {"text": "to", "start": 1360, "end": 1362, "annotation": null}, {"text": "high", "start": 1363, "end": 1367, "annotation": null}, {"text": "density", "start": 1368, "end": 1375, "annotation": null}, {"text": "of", "start": 1376, "end": 1378, "annotation": null}, {"text": "decorated", "start": 1379, "end": 1388, "annotation": null}, {"text": "defects", "start": 1389, "end": 1396, "annotation": null}, {"text": ",", "start": 1396, "end": 1397, "annotation": null}, {"text": "even", "start": 1398, "end": 1402, "annotation": null}, {"text": "though", "start": 1403, "end": 1409, "annotation": null}, {"text": "the", "start": 1410, "end": 1413, "annotation": null}, {"text": "impurity", "start": 1414, "end": 1422, "annotation": null}, {"text": "diffused-in", "start": 1423, "end": 1434, "annotation": null}, {"text": "concentration", "start": 1435, "end": 1448, "annotation": null}, {"text": "was", "start": 1449, "end": 1452, "annotation": null}, {"text": "the", "start": 1453, "end": 1456, "annotation": null}, {"text": "same", "start": 1457, "end": 1461, "annotation": null}, {"text": ".", "start": 1461, "end": 1462, "annotation": null}], [{"text": "All", "start": 1505, "end": 1508, "annotation": null}, {"text": "rights", "start": 1509, "end": 1515, "annotation": null}, {"text": "reserved", "start": 1516, "end": 1524, "annotation": null}, {"text": ".", "start": 1524, "end": 1525, "annotation": null}]], "meta": {"doi": "10.1149/1.2086843"}} {"text": "An orange-emitting phosphor was obtained via efficient Ce3+\u2013Mn2+ and Eu2+\u2013Mn2+ energy transfers in La9.33(SiO4)6O2, and has been developed for solid state UV/near-UV white lighting applications. The luminescence properties and energy transfer from Ce3+ to Mn2+ and Eu2+ to Mn2+ are investigated. The La9.33(SiO4)6O2:Ce3+, Mn2+ phosphor shows a blue emission centered at 380 and an orange emission peaking at 590 nm, which could be ascribed to the allowed 5d \u2192 4f transition of the Ce3+ ion and the 4T1g(4G) \u2192 6A1g(6S) transition of the Mn2+ ion, respectively. Upon excitation at 365 nm, the Eu2+, Mn2+ co-doped La9.33(SiO4)6O2 phosphor exhibits the Eu2+ green emission band and the Mn2+ orange emission band. Non-radiative transitions between the Ce3+/Eu2+ and Mn2+ ions in the La9.33(SiO4)6O2 host are both demonstrated to be attributable to dipole\u2013quadrupole interactions. The intensity ratio of the Mn2+ emission bands can be enhanced through the increase of the Mn2+ content, which is attributed to the efficient energy transfer from Ce3+/Eu2+ to Mn2+, and the corresponding chromaticity coordinates (0.50, 0.38), (0.51, 0.46) were obtained with the La9.33(SiO4)6O2:Ce3+, Mn2+ and La9.33(SiO4)6O2:Eu2+, Mn2+ samples. Results indicated that the as-prepared phosphors might have promising applications in white-light LEDs as an orange-emitting phosphor.", "meta": {"doi": "10.1039/C3NJ00758H"}, "_input_hash": 1133881733, "_task_hash": 597787295, "tokens": [[{"text": "An", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "orange", "start": 3, "end": 9, "id": 1, "annotation": null}, {"text": "-", "start": 10, "end": 11, "id": 2, "annotation": null}, {"text": "emitting", "start": 12, "end": 20, "id": 3, "annotation": null}, {"text": "phosphor", "start": 21, "end": 29, "id": 4, "annotation": null}, {"text": "was", "start": 30, "end": 33, "id": 5, "annotation": null}, {"text": "obtained", "start": 34, "end": 42, "id": 6, "annotation": null}, {"text": "via", "start": 43, "end": 46, "id": 7, "annotation": null}, {"text": "efficient", "start": 47, "end": 56, "id": 8, "annotation": null}, {"text": "Ce3+\u2013Mn2", "start": 57, "end": 65, "id": 9, "annotation": null}, {"text": "+", "start": 66, "end": 67, "id": 10, "annotation": null}, {"text": "and", "start": 68, "end": 71, "id": 11, "annotation": null}, {"text": "Eu2+\u2013Mn2", "start": 72, "end": 80, "id": 12, "annotation": null}, {"text": "+", "start": 81, "end": 82, "id": 13, "annotation": null}, {"text": "energy", "start": 83, "end": 89, "id": 14, "annotation": null}, {"text": "transfers", "start": 90, "end": 99, "id": 15, "annotation": null}, {"text": "in", "start": 100, "end": 102, "id": 16, "annotation": null}, {"text": "La9.33(SiO4)6O2", "start": 103, "end": 118, "id": 17, "annotation": null}, {"text": ",", "start": 119, "end": 120, "id": 18, "annotation": null}, {"text": "and", "start": 121, "end": 124, "id": 19, "annotation": null}, {"text": "has", "start": 125, "end": 128, "id": 20, "annotation": null}, {"text": "been", "start": 129, "end": 133, "id": 21, "annotation": null}, {"text": "developed", "start": 134, "end": 143, "id": 22, "annotation": null}, {"text": "for", "start": 144, "end": 147, "id": 23, "annotation": null}, {"text": "solid", "start": 148, "end": 153, "id": 24, "annotation": null}, {"text": "state", "start": 154, "end": 159, "id": 25, "annotation": null}, {"text": "UV", "start": 160, "end": 162, "id": 26, "annotation": null}, {"text": "/", "start": 163, "end": 164, "id": 27, "annotation": null}, {"text": "near", "start": 165, "end": 169, "id": 28, "annotation": null}, {"text": "-", "start": 170, "end": 171, "id": 29, "annotation": null}, {"text": "UV", "start": 172, "end": 174, "id": 30, "annotation": null}, {"text": "white", "start": 175, "end": 180, "id": 31, "annotation": null}, {"text": "lighting", "start": 181, "end": 189, "id": 32, "annotation": null}, {"text": "applications", "start": 190, "end": 202, "id": 33, "annotation": null}, {"text": ".", "start": 203, "end": 204, "id": 34, "annotation": null}], [{"text": "The", "start": 205, "end": 208, "id": 35, "annotation": null}, {"text": "luminescence", "start": 209, "end": 221, "id": 36, "annotation": null}, {"text": "properties", "start": 222, "end": 232, "id": 37, "annotation": null}, {"text": "and", "start": 233, "end": 236, "id": 38, "annotation": null}, {"text": "energy", "start": 237, "end": 243, "id": 39, "annotation": null}, {"text": "transfer", "start": 244, "end": 252, "id": 40, "annotation": null}, {"text": "from", "start": 253, "end": 257, "id": 41, "annotation": null}, {"text": "Ce3", "start": 258, "end": 261, "id": 42, "annotation": null}, {"text": "+", "start": 262, "end": 263, "id": 43, "annotation": null}, {"text": "to", "start": 264, "end": 266, "id": 44, "annotation": null}, {"text": "Mn2", "start": 267, "end": 270, "id": 45, "annotation": null}, {"text": "+", "start": 271, "end": 272, "id": 46, "annotation": null}, {"text": "and", "start": 273, "end": 276, "id": 47, "annotation": null}, {"text": "Eu2", "start": 277, "end": 280, "id": 48, "annotation": null}, {"text": "+", "start": 281, "end": 282, "id": 49, "annotation": null}, {"text": "to", "start": 283, "end": 285, "id": 50, "annotation": null}, {"text": "Mn2", "start": 286, "end": 289, "id": 51, "annotation": null}, {"text": "+", "start": 290, "end": 291, "id": 52, "annotation": null}, {"text": "are", "start": 292, "end": 295, "id": 53, "annotation": null}, {"text": "investigated", "start": 296, "end": 308, "id": 54, "annotation": null}, {"text": ".", "start": 309, "end": 310, "id": 55, "annotation": null}], [{"text": "The", "start": 311, "end": 314, "id": 56, "annotation": null}, {"text": "La9.33(SiO4)6O2", "start": 315, "end": 330, "id": 57, "annotation": null}, {"text": ":", "start": 331, "end": 332, "id": 58, "annotation": null}, {"text": "Ce3", "start": 333, "end": 336, "id": 59, "annotation": null}, {"text": "+", "start": 337, "end": 338, "id": 60, "annotation": null}, {"text": ",", "start": 339, "end": 340, "id": 61, "annotation": null}, {"text": "Mn2", "start": 341, "end": 344, "id": 62, "annotation": null}, {"text": "+", "start": 345, "end": 346, "id": 63, "annotation": null}, {"text": "phosphor", "start": 347, "end": 355, "id": 64, "annotation": null}, {"text": "shows", "start": 356, "end": 361, "id": 65, "annotation": null}, {"text": "a", "start": 362, "end": 363, "id": 66, "annotation": null}, {"text": "blue", "start": 364, "end": 368, "id": 67, "annotation": null}, {"text": "emission", "start": 369, "end": 377, "id": 68, "annotation": null}, {"text": "centered", "start": 378, "end": 386, "id": 69, "annotation": null}, {"text": "at", "start": 387, "end": 389, "id": 70, "annotation": null}, {"text": "380", "start": 390, "end": 393, "id": 71, "annotation": null}, {"text": "and", "start": 394, "end": 397, "id": 72, "annotation": null}, {"text": "an", "start": 398, "end": 400, "id": 73, "annotation": null}, {"text": "orange", "start": 401, "end": 407, "id": 74, "annotation": null}, {"text": "emission", "start": 408, "end": 416, "id": 75, "annotation": null}, {"text": "peaking", "start": 417, "end": 424, "id": 76, "annotation": null}, {"text": "at", "start": 425, "end": 427, "id": 77, "annotation": null}, {"text": "590", "start": 428, "end": 431, "id": 78, "annotation": null}, {"text": "nm", "start": 432, "end": 434, "id": 79, "annotation": null}, {"text": ",", "start": 435, "end": 436, "id": 80, "annotation": null}, {"text": "which", "start": 437, "end": 442, "id": 81, "annotation": null}, {"text": "could", "start": 443, "end": 448, "id": 82, "annotation": null}, {"text": "be", "start": 449, "end": 451, "id": 83, "annotation": null}, {"text": "ascribed", "start": 452, "end": 460, "id": 84, "annotation": null}, {"text": "to", "start": 461, "end": 463, "id": 85, "annotation": null}, {"text": "the", "start": 464, "end": 467, "id": 86, "annotation": null}, {"text": "allowed", "start": 468, "end": 475, "id": 87, "annotation": null}, {"text": "5d", "start": 476, "end": 478, "id": 88, "annotation": null}, {"text": "\u2192", "start": 479, "end": 480, "id": 89, "annotation": null}, {"text": "4f", "start": 481, "end": 483, "id": 90, "annotation": null}, {"text": "transition", "start": 484, "end": 494, "id": 91, "annotation": null}, {"text": "of", "start": 495, "end": 497, "id": 92, "annotation": null}, {"text": "the", "start": 498, "end": 501, "id": 93, "annotation": null}, {"text": "Ce3", "start": 502, "end": 505, "id": 94, "annotation": null}, {"text": "+", "start": 506, "end": 507, "id": 95, "annotation": null}, {"text": "ion", "start": 508, "end": 511, "id": 96, "annotation": null}, {"text": "and", "start": 512, "end": 515, "id": 97, "annotation": null}, {"text": "the", "start": 516, "end": 519, "id": 98, "annotation": null}, {"text": "4T1g(4", "start": 520, "end": 526, "id": 99, "annotation": null}, {"text": "G", "start": 527, "end": 528, "id": 100, "annotation": null}, {"text": ")", "start": 529, "end": 530, "id": 101, "annotation": null}, {"text": "\u2192", "start": 531, "end": 532, "id": 102, "annotation": null}, {"text": "6A1g(6S", "start": 533, "end": 540, "id": 103, "annotation": null}, {"text": ")", "start": 541, "end": 542, "id": 104, "annotation": null}, {"text": "transition", "start": 543, "end": 553, "id": 105, "annotation": null}, {"text": "of", "start": 554, "end": 556, "id": 106, "annotation": null}, {"text": "the", "start": 557, "end": 560, "id": 107, "annotation": null}, {"text": "Mn2", "start": 561, "end": 564, "id": 108, "annotation": null}, {"text": "+", "start": 565, "end": 566, "id": 109, "annotation": null}, {"text": "ion", "start": 567, "end": 570, "id": 110, "annotation": null}, {"text": ",", "start": 571, "end": 572, "id": 111, "annotation": null}, {"text": "respectively", "start": 573, "end": 585, "id": 112, "annotation": null}, {"text": ".", "start": 586, "end": 587, "id": 113, "annotation": null}], [{"text": "Upon", "start": 588, "end": 592, "id": 114, "annotation": null}, {"text": "excitation", "start": 593, "end": 603, "id": 115, "annotation": null}, {"text": "at", "start": 604, "end": 606, "id": 116, "annotation": null}, {"text": "365", "start": 607, "end": 610, "id": 117, "annotation": null}, {"text": "nm", "start": 611, "end": 613, "id": 118, "annotation": null}, {"text": ",", "start": 614, "end": 615, "id": 119, "annotation": null}, {"text": "the", "start": 616, "end": 619, "id": 120, "annotation": null}, {"text": "Eu2", "start": 620, "end": 623, "id": 121, "annotation": "DOPANT"}, {"text": "+", "start": 624, "end": 625, "id": 122, "annotation": "DOPANT"}, {"text": ",", "start": 626, "end": 627, "id": 123, "annotation": null}, {"text": "Mn2", "start": 628, "end": 631, "id": 124, "annotation": "DOPANT"}, {"text": "+", "start": 632, "end": 633, "id": 125, "annotation": "DOPANT"}, {"text": "co", "start": 634, "end": 636, "id": 126, "annotation": null}, {"text": "-", "start": 637, "end": 638, "id": 127, "annotation": null}, {"text": "doped", "start": 639, "end": 644, "id": 128, "annotation": null}, {"text": "La9.33(SiO4)6O2", "start": 645, "end": 660, "id": 129, "annotation": "BASEMAT"}, {"text": "phosphor", "start": 661, "end": 669, "id": 130, "annotation": null}, {"text": "exhibits", "start": 670, "end": 678, "id": 131, "annotation": null}, {"text": "the", "start": 679, "end": 682, "id": 132, "annotation": null}, {"text": "Eu2", "start": 683, "end": 686, "id": 133, "annotation": null}, {"text": "+", "start": 687, "end": 688, "id": 134, "annotation": null}, {"text": "green", "start": 689, "end": 694, "id": 135, "annotation": null}, {"text": "emission", "start": 695, "end": 703, "id": 136, "annotation": null}, {"text": "band", "start": 704, "end": 708, "id": 137, "annotation": null}, {"text": "and", "start": 709, "end": 712, "id": 138, "annotation": null}, {"text": "the", "start": 713, "end": 716, "id": 139, "annotation": null}, {"text": "Mn2", "start": 717, "end": 720, "id": 140, "annotation": null}, {"text": "+", "start": 721, "end": 722, "id": 141, "annotation": null}, {"text": "orange", "start": 723, "end": 729, "id": 142, "annotation": null}, {"text": "emission", "start": 730, "end": 738, "id": 143, "annotation": null}, {"text": "band", "start": 739, "end": 743, "id": 144, "annotation": null}, {"text": ".", "start": 744, "end": 745, "id": 145, "annotation": null}], [{"text": "Non", "start": 746, "end": 749, "id": 146, "annotation": null}, {"text": "-", "start": 750, "end": 751, "id": 147, "annotation": null}, {"text": "radiative", "start": 752, "end": 761, "id": 148, "annotation": null}, {"text": "transitions", "start": 762, "end": 773, "id": 149, "annotation": null}, {"text": "between", "start": 774, "end": 781, "id": 150, "annotation": null}, {"text": "the", "start": 782, "end": 785, "id": 151, "annotation": null}, {"text": "Ce3+/Eu2", "start": 786, "end": 794, "id": 152, "annotation": null}, {"text": "+", "start": 795, "end": 796, "id": 153, "annotation": null}, {"text": "and", "start": 797, "end": 800, "id": 154, "annotation": null}, {"text": "Mn2", "start": 801, "end": 804, "id": 155, "annotation": null}, {"text": "+", "start": 805, "end": 806, "id": 156, "annotation": null}, {"text": "ions", "start": 807, "end": 811, "id": 157, "annotation": null}, {"text": "in", "start": 812, "end": 814, "id": 158, "annotation": null}, {"text": "the", "start": 815, "end": 818, "id": 159, "annotation": null}, {"text": "La9.33(SiO4)6O2", "start": 819, "end": 834, "id": 160, "annotation": null}, {"text": "host", "start": 835, "end": 839, "id": 161, "annotation": null}, {"text": "are", "start": 840, "end": 843, "id": 162, "annotation": null}, {"text": "both", "start": 844, "end": 848, "id": 163, "annotation": null}, {"text": "demonstrated", "start": 849, "end": 861, "id": 164, "annotation": null}, {"text": "to", "start": 862, "end": 864, "id": 165, "annotation": null}, {"text": "be", "start": 865, "end": 867, "id": 166, "annotation": null}, {"text": "attributable", "start": 868, "end": 880, "id": 167, "annotation": null}, {"text": "to", "start": 881, "end": 883, "id": 168, "annotation": null}, {"text": "dipole", "start": 884, "end": 890, "id": 169, "annotation": null}, {"text": "\u2013", "start": 891, "end": 892, "id": 170, "annotation": null}, {"text": "quadrupole", "start": 893, "end": 903, "id": 171, "annotation": null}, {"text": "interactions", "start": 904, "end": 916, "id": 172, "annotation": null}, {"text": ".", "start": 917, "end": 918, "id": 173, "annotation": null}], [{"text": "The", "start": 919, "end": 922, "id": 174, "annotation": null}, {"text": "intensity", "start": 923, "end": 932, "id": 175, "annotation": null}, {"text": "ratio", "start": 933, "end": 938, "id": 176, "annotation": null}, {"text": "of", "start": 939, "end": 941, "id": 177, "annotation": null}, {"text": "the", "start": 942, "end": 945, "id": 178, "annotation": null}, {"text": "Mn2", "start": 946, "end": 949, "id": 179, "annotation": null}, {"text": "+", "start": 950, "end": 951, "id": 180, "annotation": null}, {"text": "emission", "start": 952, "end": 960, "id": 181, "annotation": null}, {"text": "bands", "start": 961, "end": 966, "id": 182, "annotation": null}, {"text": "can", "start": 967, "end": 970, "id": 183, "annotation": null}, {"text": "be", "start": 971, "end": 973, "id": 184, "annotation": null}, {"text": "enhanced", "start": 974, "end": 982, "id": 185, "annotation": null}, {"text": "through", "start": 983, "end": 990, "id": 186, "annotation": null}, {"text": "the", "start": 991, "end": 994, "id": 187, "annotation": null}, {"text": "increase", "start": 995, "end": 1003, "id": 188, "annotation": null}, {"text": "of", "start": 1004, "end": 1006, "id": 189, "annotation": null}, {"text": "the", "start": 1007, "end": 1010, "id": 190, "annotation": null}, {"text": "Mn2", "start": 1011, "end": 1014, "id": 191, "annotation": "DOPANT"}, {"text": "+", "start": 1015, "end": 1016, "id": 192, "annotation": "DOPANT"}, {"text": "content", "start": 1017, "end": 1024, "id": 193, "annotation": null}, {"text": ",", "start": 1025, "end": 1026, "id": 194, "annotation": null}, {"text": "which", "start": 1027, "end": 1032, "id": 195, "annotation": null}, {"text": "is", "start": 1033, "end": 1035, "id": 196, "annotation": null}, {"text": "attributed", "start": 1036, "end": 1046, "id": 197, "annotation": null}, {"text": "to", "start": 1047, "end": 1049, "id": 198, "annotation": null}, {"text": "the", "start": 1050, "end": 1053, "id": 199, "annotation": null}, {"text": "efficient", "start": 1054, "end": 1063, "id": 200, "annotation": null}, {"text": "energy", "start": 1064, "end": 1070, "id": 201, "annotation": null}, {"text": "transfer", "start": 1071, "end": 1079, "id": 202, "annotation": null}, {"text": "from", "start": 1080, "end": 1084, "id": 203, "annotation": null}, {"text": "Ce3+/Eu2", "start": 1085, "end": 1093, "id": 204, "annotation": null}, {"text": "+", "start": 1094, "end": 1095, "id": 205, "annotation": null}, {"text": "to", "start": 1096, "end": 1098, "id": 206, "annotation": null}, {"text": "Mn2", "start": 1099, "end": 1102, "id": 207, "annotation": null}, {"text": "+", "start": 1103, "end": 1104, "id": 208, "annotation": null}, {"text": ",", "start": 1105, "end": 1106, "id": 209, "annotation": null}, {"text": "and", "start": 1107, "end": 1110, "id": 210, "annotation": null}, {"text": "the", "start": 1111, "end": 1114, "id": 211, "annotation": null}, {"text": "corresponding", "start": 1115, "end": 1128, "id": 212, "annotation": null}, {"text": "chromaticity", "start": 1129, "end": 1141, "id": 213, "annotation": null}, {"text": "coordinates", "start": 1142, "end": 1153, "id": 214, "annotation": null}, {"text": "(", "start": 1154, "end": 1155, "id": 215, "annotation": null}, {"text": "0.50", "start": 1156, "end": 1160, "id": 216, "annotation": null}, {"text": ",", "start": 1161, "end": 1162, "id": 217, "annotation": null}, {"text": "0.38", "start": 1163, "end": 1167, "id": 218, "annotation": null}, {"text": ")", "start": 1168, "end": 1169, "id": 219, "annotation": null}, {"text": ",", "start": 1170, "end": 1171, "id": 220, "annotation": null}, {"text": "(", "start": 1172, "end": 1173, "id": 221, "annotation": null}, {"text": "0.51", "start": 1174, "end": 1178, "id": 222, "annotation": null}, {"text": ",", "start": 1179, "end": 1180, "id": 223, "annotation": null}, {"text": "0.46", "start": 1181, "end": 1185, "id": 224, "annotation": null}, {"text": ")", "start": 1186, "end": 1187, "id": 225, "annotation": null}, {"text": "were", "start": 1188, "end": 1192, "id": 226, "annotation": null}, {"text": "obtained", "start": 1193, "end": 1201, "id": 227, "annotation": null}, {"text": "with", "start": 1202, "end": 1206, "id": 228, "annotation": null}, {"text": "the", "start": 1207, "end": 1210, "id": 229, "annotation": null}, {"text": "La9.33(SiO4)6O2", "start": 1211, "end": 1226, "id": 230, "annotation": "BASEMAT"}, {"text": ":", "start": 1227, "end": 1228, "id": 231, "annotation": null}, {"text": "Ce3", "start": 1229, "end": 1232, "id": 232, "annotation": "DOPANT"}, {"text": "+", "start": 1233, "end": 1234, "id": 233, "annotation": "DOPANT"}, {"text": ",", "start": 1235, "end": 1236, "id": 234, "annotation": null}, {"text": "Mn2", "start": 1237, "end": 1240, "id": 235, "annotation": "DOPANT"}, {"text": "+", "start": 1241, "end": 1242, "id": 236, "annotation": "DOPANT"}, {"text": "and", "start": 1243, "end": 1246, "id": 237, "annotation": null}, {"text": "La9.33(SiO4)6O2", "start": 1247, "end": 1262, "id": 238, "annotation": "BASEMAT"}, {"text": ":", "start": 1263, "end": 1264, "id": 239, "annotation": null}, {"text": "Eu2", "start": 1265, "end": 1268, "id": 240, "annotation": "DOPANT"}, {"text": "+", "start": 1269, "end": 1270, "id": 241, "annotation": "DOPANT"}, {"text": ",", "start": 1271, "end": 1272, "id": 242, "annotation": null}, {"text": "Mn2", "start": 1273, "end": 1276, "id": 243, "annotation": "DOPANT"}, {"text": "+", "start": 1277, "end": 1278, "id": 244, "annotation": "DOPANT"}, {"text": "samples", "start": 1279, "end": 1286, "id": 245, "annotation": null}, {"text": ".", "start": 1287, "end": 1288, "id": 246, "annotation": null}], [{"text": "Results", "start": 1289, "end": 1296, "id": 247, "annotation": null}, {"text": "indicated", "start": 1297, "end": 1306, "id": 248, "annotation": null}, {"text": "that", "start": 1307, "end": 1311, "id": 249, "annotation": null}, {"text": "the", "start": 1312, "end": 1315, "id": 250, "annotation": null}, {"text": "as", "start": 1316, "end": 1318, "id": 251, "annotation": null}, {"text": "-", "start": 1319, "end": 1320, "id": 252, "annotation": null}, {"text": "prepared", "start": 1321, "end": 1329, "id": 253, "annotation": null}, {"text": "phosphors", "start": 1330, "end": 1339, "id": 254, "annotation": null}, {"text": "might", "start": 1340, "end": 1345, "id": 255, "annotation": null}, {"text": "have", "start": 1346, "end": 1350, "id": 256, "annotation": null}, {"text": "promising", "start": 1351, "end": 1360, "id": 257, "annotation": null}, {"text": "applications", "start": 1361, "end": 1373, "id": 258, "annotation": null}, {"text": "in", "start": 1374, "end": 1376, "id": 259, "annotation": null}, {"text": "white", "start": 1377, "end": 1382, "id": 260, "annotation": null}, {"text": "-", "start": 1383, "end": 1384, "id": 261, "annotation": null}, {"text": "light", "start": 1385, "end": 1390, "id": 262, "annotation": null}, {"text": "LEDs", "start": 1391, "end": 1395, "id": 263, "annotation": null}, {"text": "as", "start": 1396, "end": 1398, "id": 264, "annotation": null}, {"text": "an", "start": 1399, "end": 1401, "id": 265, "annotation": null}, {"text": "orange", "start": 1402, "end": 1408, "id": 266, "annotation": null}, {"text": "-", "start": 1409, "end": 1410, "id": 267, "annotation": null}, {"text": "emitting", "start": 1411, "end": 1419, "id": 268, "annotation": null}, {"text": "phosphor", "start": 1420, "end": 1428, "id": 269, "annotation": null}, {"text": ".", "start": 1429, "end": 1430, "id": 270, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Mapping of iron concentration is obtained in p-type monocrystalline and multicrystalline silicon by means of contactless lifetime measurements. The recombination rate induced by interstitial iron (Fei ) and iron boron pairs (FeB), which is very sensitive to injection level, is appreciated thanks to comparison between deep level transient spectroscopy (DLTS) and lifetime measurement by the micro-wave phase-shift technique (\u03bcW-PS). Calibration is given for samples doped in the range 5\u00d71013\u20133\u00d71016 cm\u22123.", "meta": {"doi": "10.1016/S0921-5107(01)00998-9"}, "_input_hash": 1190900745, "_task_hash": 1586262563, "tokens": [[{"text": "Mapping", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "of", "start": 8, "end": 10, "id": 1, "annotation": null}, {"text": "iron", "start": 11, "end": 15, "id": 2, "annotation": null}, {"text": "concentration", "start": 16, "end": 29, "id": 3, "annotation": null}, {"text": "is", "start": 30, "end": 32, "id": 4, "annotation": null}, {"text": "obtained", "start": 33, "end": 41, "id": 5, "annotation": null}, {"text": "in", "start": 42, "end": 44, "id": 6, "annotation": null}, {"text": "p", "start": 45, "end": 46, "id": 7, "annotation": "DOPANT"}, {"text": "-", "start": 47, "end": 48, "id": 8, "annotation": null}, {"text": "type", "start": 49, "end": 53, "id": 9, "annotation": "DOPANT"}, {"text": "monocrystalline", "start": 54, "end": 69, "id": 10, "annotation": null}, {"text": "and", "start": 70, "end": 73, "id": 11, "annotation": null}, {"text": "multicrystalline", "start": 74, "end": 90, "id": 12, "annotation": null}, {"text": "silicon", "start": 91, "end": 98, "id": 13, "annotation": "BASEMAT"}, {"text": "by", "start": 99, "end": 101, "id": 14, "annotation": null}, {"text": "means", "start": 102, "end": 107, "id": 15, "annotation": null}, {"text": "of", "start": 108, "end": 110, "id": 16, "annotation": null}, {"text": "contactless", "start": 111, "end": 122, "id": 17, "annotation": null}, {"text": "lifetime", "start": 123, "end": 131, "id": 18, "annotation": null}, {"text": "measurements", "start": 132, "end": 144, "id": 19, "annotation": null}, {"text": ".", "start": 145, "end": 146, "id": 20, "annotation": null}], [{"text": "The", "start": 147, "end": 150, "id": 21, "annotation": null}, {"text": "recombination", "start": 151, "end": 164, "id": 22, "annotation": null}, {"text": "rate", "start": 165, "end": 169, "id": 23, "annotation": null}, {"text": "induced", "start": 170, "end": 177, "id": 24, "annotation": null}, {"text": "by", "start": 178, "end": 180, "id": 25, "annotation": null}, {"text": "interstitial", "start": 181, "end": 193, "id": 26, "annotation": null}, {"text": "iron", "start": 194, "end": 198, "id": 27, "annotation": null}, {"text": "(", "start": 199, "end": 200, "id": 28, "annotation": null}, {"text": "Fei", "start": 201, "end": 204, "id": 29, "annotation": null}, {"text": ")", "start": 205, "end": 206, "id": 30, "annotation": null}, {"text": "and", "start": 207, "end": 210, "id": 31, "annotation": null}, {"text": "iron", "start": 211, "end": 215, "id": 32, "annotation": null}, {"text": "boron", "start": 216, "end": 221, "id": 33, "annotation": "DOPANT"}, {"text": "pairs", "start": 222, "end": 227, "id": 34, "annotation": null}, {"text": "(", "start": 228, "end": 229, "id": 35, "annotation": null}, {"text": "FeB", "start": 230, "end": 233, "id": 36, "annotation": null}, {"text": ")", "start": 234, "end": 235, "id": 37, "annotation": null}, {"text": ",", "start": 236, "end": 237, "id": 38, "annotation": null}, {"text": "which", "start": 238, "end": 243, "id": 39, "annotation": null}, {"text": "is", "start": 244, "end": 246, "id": 40, "annotation": null}, {"text": "very", "start": 247, "end": 251, "id": 41, "annotation": null}, {"text": "sensitive", "start": 252, "end": 261, "id": 42, "annotation": null}, {"text": "to", "start": 262, "end": 264, "id": 43, "annotation": null}, {"text": "injection", "start": 265, "end": 274, "id": 44, "annotation": null}, {"text": "level", "start": 275, "end": 280, "id": 45, "annotation": null}, {"text": ",", "start": 281, "end": 282, "id": 46, "annotation": null}, {"text": "is", "start": 283, "end": 285, "id": 47, "annotation": null}, {"text": "appreciated", "start": 286, "end": 297, "id": 48, "annotation": null}, {"text": "thanks", "start": 298, "end": 304, "id": 49, "annotation": null}, {"text": "to", "start": 305, "end": 307, "id": 50, "annotation": null}, {"text": "comparison", "start": 308, "end": 318, "id": 51, "annotation": null}, {"text": "between", "start": 319, "end": 326, "id": 52, "annotation": null}, {"text": "deep", "start": 327, "end": 331, "id": 53, "annotation": null}, {"text": "level", "start": 332, "end": 337, "id": 54, "annotation": null}, {"text": "transient", "start": 338, "end": 347, "id": 55, "annotation": null}, {"text": "spectroscopy", "start": 348, "end": 360, "id": 56, "annotation": null}, {"text": "(", "start": 361, "end": 362, "id": 57, "annotation": null}, {"text": "DLTS", "start": 363, "end": 367, "id": 58, "annotation": null}, {"text": ")", "start": 368, "end": 369, "id": 59, "annotation": null}, {"text": "and", "start": 370, "end": 373, "id": 60, "annotation": null}, {"text": "lifetime", "start": 374, "end": 382, "id": 61, "annotation": null}, {"text": "measurement", "start": 383, "end": 394, "id": 62, "annotation": null}, {"text": "by", "start": 395, "end": 397, "id": 63, "annotation": null}, {"text": "the", "start": 398, "end": 401, "id": 64, "annotation": null}, {"text": "micro", "start": 402, "end": 407, "id": 65, "annotation": null}, {"text": "-", "start": 408, "end": 409, "id": 66, "annotation": null}, {"text": "wave", "start": 410, "end": 414, "id": 67, "annotation": null}, {"text": "phase", "start": 415, "end": 420, "id": 68, "annotation": null}, {"text": "-", "start": 421, "end": 422, "id": 69, "annotation": null}, {"text": "shift", "start": 423, "end": 428, "id": 70, "annotation": null}, {"text": "technique", "start": 429, "end": 438, "id": 71, "annotation": null}, {"text": "(", "start": 439, "end": 440, "id": 72, "annotation": null}, {"text": "\u03bcW", "start": 441, "end": 443, "id": 73, "annotation": null}, {"text": "-", "start": 444, "end": 445, "id": 74, "annotation": null}, {"text": "PS", "start": 446, "end": 448, "id": 75, "annotation": null}, {"text": ")", "start": 449, "end": 450, "id": 76, "annotation": null}, {"text": ".", "start": 451, "end": 452, "id": 77, "annotation": null}], [{"text": "Calibration", "start": 453, "end": 464, "id": 78, "annotation": null}, {"text": "is", "start": 465, "end": 467, "id": 79, "annotation": null}, {"text": "given", "start": 468, "end": 473, "id": 80, "annotation": null}, {"text": "for", "start": 474, "end": 477, "id": 81, "annotation": null}, {"text": "samples", "start": 478, "end": 485, "id": 82, "annotation": null}, {"text": "doped", "start": 486, "end": 491, "id": 83, "annotation": null}, {"text": "in", "start": 492, "end": 494, "id": 84, "annotation": null}, {"text": "the", "start": 495, "end": 498, "id": 85, "annotation": null}, {"text": "range", "start": 499, "end": 504, "id": 86, "annotation": null}, {"text": "5\u00d71013\u20133\u00d71016", "start": 505, "end": 518, "id": 87, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 519, "end": 523, "id": 88, "annotation": "DOPMODQ"}, {"text": ".", "start": 524, "end": 525, "id": 89, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Undoped and 3mol% Zn-doped barium strontium titanate thin films were deposited on Pt/Ti/SiO2/Si substrates using a sol\u2013gel method. The microstructure and morphology of the films were characterized by X-ray diffraction and atomic force microscopy. It showed that both films are polycrystalline with a perovskite structure and smaller grains were observed for the Zn-doped thin films. Dielectric measurements showed that the dielectric loss at 500kHz was reduced from 0.042 to 0.019 by Zn doping, which was accompanied by a slight decrease of the dielectric constant from 303 to 273. At an applied electric field of 60kV/cm, the leakage current density of the Zn-doped Ba0.7Sr0.3TiO3 thin films was 2.5\u00d710\u22128 A/cm2, which was by two orders of magnitude lower than that of the undoped films. The leakage current characteristics also indicated that the Ohmic conduction region of barium strontium titanate thin films was extended by Zn dopant. The microstructure, electrical properties and extension mechanism of Ohmic conduction region of the Zn-doped barium strontium titanate thin films were discussed in relation to the effect of Zn doping.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Undoped", "start": 0, "end": 7, "annotation": null}, {"text": "and", "start": 8, "end": 11, "annotation": null}, {"text": "3", "start": 12, "end": 13, "annotation": "DOPMODQ"}, {"text": "mol", "start": 13, "end": 16, "annotation": "DOPMODQ"}, {"text": "%", "start": 16, "end": 17, "annotation": "DOPMODQ"}, {"text": "Zn", "start": 18, "end": 20, "annotation": "DOPANT"}, {"text": "-", "start": 20, "end": 21, "annotation": null}, {"text": "doped", "start": 21, "end": 26, "annotation": null}, {"text": "barium", "start": 27, "end": 33, "annotation": "BASEMAT"}, {"text": "strontium", "start": 34, "end": 43, "annotation": "BASEMAT"}, {"text": "titanate", "start": 44, "end": 52, "annotation": "BASEMAT"}, {"text": "thin", "start": 53, "end": 57, "annotation": null}, {"text": "films", "start": 58, "end": 63, "annotation": null}, {"text": "were", "start": 64, "end": 68, "annotation": null}, {"text": "deposited", "start": 69, "end": 78, "annotation": null}, {"text": "on", "start": 79, "end": 81, "annotation": null}, {"text": "Pt", "start": 82, "end": 84, "annotation": null}, {"text": "/", "start": 84, "end": 85, "annotation": null}, {"text": "Ti", "start": 85, "end": 87, "annotation": null}, {"text": "/", "start": 87, "end": 88, "annotation": null}, {"text": "SiO2", "start": 88, "end": 92, "annotation": null}, {"text": "/", "start": 92, "end": 93, "annotation": null}, {"text": "Si", "start": 93, "end": 95, "annotation": null}, {"text": "substrates", "start": 96, "end": 106, "annotation": null}, {"text": "using", "start": 107, "end": 112, "annotation": null}, {"text": "a", "start": 113, "end": 114, "annotation": null}, {"text": "sol", "start": 115, "end": 118, "annotation": null}, {"text": "\u2013", "start": 118, "end": 119, "annotation": null}, {"text": "gel", "start": 119, "end": 122, "annotation": null}, {"text": "method", "start": 123, "end": 129, "annotation": null}, {"text": ".", "start": 129, "end": 130, "annotation": null}], [{"text": "The", "start": 131, "end": 134, "annotation": null}, {"text": "microstructure", "start": 135, "end": 149, "annotation": null}, {"text": "and", "start": 150, "end": 153, "annotation": null}, {"text": "morphology", "start": 154, "end": 164, "annotation": null}, {"text": "of", "start": 165, "end": 167, "annotation": null}, {"text": "the", "start": 168, "end": 171, "annotation": null}, {"text": "films", "start": 172, "end": 177, "annotation": null}, {"text": "were", "start": 178, "end": 182, "annotation": null}, {"text": "characterized", "start": 183, "end": 196, "annotation": null}, {"text": "by", "start": 197, "end": 199, "annotation": null}, {"text": "X-ray", "start": 200, "end": 205, "annotation": null}, {"text": "diffraction", "start": 206, "end": 217, "annotation": null}, {"text": "and", "start": 218, "end": 221, "annotation": null}, {"text": "atomic", "start": 222, "end": 228, "annotation": null}, {"text": "force", "start": 229, "end": 234, "annotation": null}, {"text": "microscopy", "start": 235, "end": 245, "annotation": null}, {"text": ".", "start": 245, "end": 246, "annotation": null}], [{"text": "It", "start": 247, "end": 249, "annotation": null}, {"text": "showed", "start": 250, "end": 256, "annotation": null}, {"text": "that", "start": 257, "end": 261, "annotation": null}, {"text": "both", "start": 262, "end": 266, "annotation": null}, {"text": "films", "start": 267, "end": 272, "annotation": null}, {"text": "are", "start": 273, "end": 276, "annotation": null}, {"text": "polycrystalline", "start": 277, "end": 292, "annotation": null}, {"text": "with", "start": 293, "end": 297, "annotation": null}, {"text": "a", "start": 298, "end": 299, "annotation": null}, {"text": "perovskite", "start": 300, "end": 310, "annotation": null}, {"text": "structure", "start": 311, "end": 320, "annotation": null}, {"text": "and", "start": 321, "end": 324, "annotation": null}, {"text": "smaller", "start": 325, "end": 332, "annotation": null}, {"text": "grains", "start": 333, "end": 339, "annotation": null}, {"text": "were", "start": 340, "end": 344, "annotation": null}, {"text": "observed", "start": 345, "end": 353, "annotation": null}, {"text": "for", "start": 354, "end": 357, "annotation": null}, {"text": "the", "start": 358, "end": 361, "annotation": null}, {"text": "Zn", "start": 362, "end": 364, "annotation": "DOPANT"}, {"text": "-", "start": 364, "end": 365, "annotation": null}, {"text": "doped", "start": 365, "end": 370, "annotation": null}, {"text": "thin", "start": 371, "end": 375, "annotation": "BASEMAT"}, {"text": "films", "start": 376, "end": 381, "annotation": "BASEMAT"}, {"text": ".", "start": 381, "end": 382, "annotation": null}], [{"text": "Dielectric", "start": 383, "end": 393, "annotation": null}, {"text": "measurements", "start": 394, "end": 406, "annotation": null}, {"text": "showed", "start": 407, "end": 413, "annotation": null}, {"text": "that", "start": 414, "end": 418, "annotation": null}, {"text": "the", "start": 419, "end": 422, "annotation": null}, {"text": "dielectric", "start": 423, "end": 433, "annotation": null}, {"text": "loss", "start": 434, "end": 438, "annotation": null}, {"text": "at", "start": 439, "end": 441, "annotation": null}, {"text": "500", "start": 442, "end": 445, "annotation": null}, {"text": "kHz", "start": 445, "end": 448, "annotation": null}, {"text": "was", "start": 449, "end": 452, "annotation": null}, {"text": "reduced", "start": 453, "end": 460, "annotation": null}, {"text": "from", "start": 461, "end": 465, "annotation": null}, {"text": "0.042", "start": 466, "end": 471, "annotation": null}, {"text": "to", "start": 472, "end": 474, "annotation": null}, {"text": "0.019", "start": 475, "end": 480, "annotation": null}, {"text": "by", "start": 481, "end": 483, "annotation": null}, {"text": "Zn", "start": 484, "end": 486, "annotation": "DOPANT"}, {"text": "doping", "start": 487, "end": 493, "annotation": null}, {"text": ",", "start": 493, "end": 494, "annotation": null}, {"text": "which", "start": 495, "end": 500, "annotation": null}, {"text": "was", "start": 501, "end": 504, "annotation": null}, {"text": "accompanied", "start": 505, "end": 516, "annotation": null}, {"text": "by", "start": 517, "end": 519, "annotation": null}, {"text": "a", "start": 520, "end": 521, "annotation": null}, {"text": "slight", "start": 522, "end": 528, "annotation": null}, {"text": "decrease", "start": 529, "end": 537, "annotation": null}, {"text": "of", "start": 538, "end": 540, "annotation": null}, {"text": "the", "start": 541, "end": 544, "annotation": null}, {"text": "dielectric", "start": 545, "end": 555, "annotation": null}, {"text": "constant", "start": 556, "end": 564, "annotation": null}, {"text": "from", "start": 565, "end": 569, "annotation": null}, {"text": "303", "start": 570, "end": 573, "annotation": null}, {"text": "to", "start": 574, "end": 576, "annotation": null}, {"text": "273", "start": 577, "end": 580, "annotation": null}, {"text": ".", "start": 580, "end": 581, "annotation": null}], [{"text": "At", "start": 582, "end": 584, "annotation": null}, {"text": "an", "start": 585, "end": 587, "annotation": null}, {"text": "applied", "start": 588, "end": 595, "annotation": null}, {"text": "electric", "start": 596, "end": 604, "annotation": null}, {"text": "field", "start": 605, "end": 610, "annotation": null}, {"text": "of", "start": 611, "end": 613, "annotation": null}, {"text": "60", "start": 614, "end": 616, "annotation": null}, {"text": "kV", "start": 616, "end": 618, "annotation": null}, {"text": "/", "start": 618, "end": 619, "annotation": null}, {"text": "cm", "start": 619, "end": 621, "annotation": null}, {"text": ",", "start": 621, "end": 622, "annotation": null}, {"text": "the", "start": 623, "end": 626, "annotation": null}, {"text": "leakage", "start": 627, "end": 634, "annotation": null}, {"text": "current", "start": 635, "end": 642, "annotation": null}, {"text": "density", "start": 643, "end": 650, "annotation": null}, {"text": "of", "start": 651, "end": 653, "annotation": null}, {"text": "the", "start": 654, "end": 657, "annotation": null}, {"text": "Zn", "start": 658, "end": 660, "annotation": "DOPANT"}, {"text": "-", "start": 660, "end": 661, "annotation": null}, {"text": "doped", "start": 661, "end": 666, "annotation": null}, {"text": "Ba0.7Sr0.3TiO3", "start": 667, "end": 681, "annotation": "BASEMAT"}, {"text": "thin", "start": 682, "end": 686, "annotation": null}, {"text": "films", "start": 687, "end": 692, "annotation": null}, {"text": "was", "start": 693, "end": 696, "annotation": null}, {"text": "2.5", "start": 697, "end": 700, "annotation": null}, {"text": "\u00d7", "start": 700, "end": 701, "annotation": null}, {"text": "10", "start": 701, "end": 703, "annotation": null}, {"text": "\u2212", "start": 703, "end": 704, "annotation": null}, {"text": "8", "start": 704, "end": 705, "annotation": null}, {"text": "A", "start": 706, "end": 707, "annotation": null}, {"text": "/", "start": 707, "end": 708, "annotation": null}, {"text": "cm2", "start": 708, "end": 711, "annotation": null}, {"text": ",", "start": 711, "end": 712, "annotation": null}, {"text": "which", "start": 713, "end": 718, "annotation": null}, {"text": "was", "start": 719, "end": 722, "annotation": null}, {"text": "by", "start": 723, "end": 725, "annotation": null}, {"text": "two", "start": 726, "end": 729, "annotation": null}, {"text": "orders", "start": 730, "end": 736, "annotation": null}, {"text": "of", "start": 737, "end": 739, "annotation": null}, {"text": "magnitude", "start": 740, "end": 749, "annotation": null}, {"text": "lower", "start": 750, "end": 755, "annotation": null}, {"text": "than", "start": 756, "end": 760, "annotation": null}, {"text": "that", "start": 761, "end": 765, "annotation": null}, {"text": "of", "start": 766, "end": 768, "annotation": null}, {"text": "the", "start": 769, "end": 772, "annotation": null}, {"text": "undoped", "start": 773, "end": 780, "annotation": null}, {"text": "films", "start": 781, "end": 786, "annotation": null}, {"text": ".", "start": 786, "end": 787, "annotation": null}], [{"text": "The", "start": 788, "end": 791, "annotation": null}, {"text": "leakage", "start": 792, "end": 799, "annotation": null}, {"text": "current", "start": 800, "end": 807, "annotation": null}, {"text": "characteristics", "start": 808, "end": 823, "annotation": null}, {"text": "also", "start": 824, "end": 828, "annotation": null}, {"text": "indicated", "start": 829, "end": 838, "annotation": null}, {"text": "that", "start": 839, "end": 843, "annotation": null}, {"text": "the", "start": 844, "end": 847, "annotation": null}, {"text": "Ohmic", "start": 848, "end": 853, "annotation": null}, {"text": "conduction", "start": 854, "end": 864, "annotation": null}, {"text": "region", "start": 865, "end": 871, "annotation": null}, {"text": "of", "start": 872, "end": 874, "annotation": null}, {"text": "barium", "start": 875, "end": 881, "annotation": "BASEMAT"}, {"text": "strontium", "start": 882, "end": 891, "annotation": "BASEMAT"}, {"text": "titanate", "start": 892, "end": 900, "annotation": "BASEMAT"}, {"text": "thin", "start": 901, "end": 905, "annotation": null}, {"text": "films", "start": 906, "end": 911, "annotation": null}, {"text": "was", "start": 912, "end": 915, "annotation": null}, {"text": "extended", "start": 916, "end": 924, "annotation": null}, {"text": "by", "start": 925, "end": 927, "annotation": null}, {"text": "Zn", "start": 928, "end": 930, "annotation": "DOPANT"}, {"text": "dopant", "start": 931, "end": 937, "annotation": null}, {"text": ".", "start": 937, "end": 938, "annotation": null}], [{"text": "The", "start": 939, "end": 942, "annotation": null}, {"text": "microstructure", "start": 943, "end": 957, "annotation": null}, {"text": ",", "start": 957, "end": 958, "annotation": null}, {"text": "electrical", "start": 959, "end": 969, "annotation": null}, {"text": "properties", "start": 970, "end": 980, "annotation": null}, {"text": "and", "start": 981, "end": 984, "annotation": null}, {"text": "extension", "start": 985, "end": 994, "annotation": null}, {"text": "mechanism", "start": 995, "end": 1004, "annotation": null}, {"text": "of", "start": 1005, "end": 1007, "annotation": null}, {"text": "Ohmic", "start": 1008, "end": 1013, "annotation": null}, {"text": "conduction", "start": 1014, "end": 1024, "annotation": null}, {"text": "region", "start": 1025, "end": 1031, "annotation": null}, {"text": "of", "start": 1032, "end": 1034, "annotation": null}, {"text": "the", "start": 1035, "end": 1038, "annotation": null}, {"text": "Zn", "start": 1039, "end": 1041, "annotation": "DOPANT"}, {"text": "-", "start": 1041, "end": 1042, "annotation": null}, {"text": "doped", "start": 1042, "end": 1047, "annotation": null}, {"text": "barium", "start": 1048, "end": 1054, "annotation": "BASEMAT"}, {"text": "strontium", "start": 1055, "end": 1064, "annotation": "BASEMAT"}, {"text": "titanate", "start": 1065, "end": 1073, "annotation": "BASEMAT"}, {"text": "thin", "start": 1074, "end": 1078, "annotation": null}, {"text": "films", "start": 1079, "end": 1084, "annotation": null}, {"text": "were", "start": 1085, "end": 1089, "annotation": null}, {"text": "discussed", "start": 1090, "end": 1099, "annotation": null}, {"text": "in", "start": 1100, "end": 1102, "annotation": null}, {"text": "relation", "start": 1103, "end": 1111, "annotation": null}, {"text": "to", "start": 1112, "end": 1114, "annotation": null}, {"text": "the", "start": 1115, "end": 1118, "annotation": null}, {"text": "effect", "start": 1119, "end": 1125, "annotation": null}, {"text": "of", "start": 1126, "end": 1128, "annotation": null}, {"text": "Zn", "start": 1129, "end": 1131, "annotation": "DOPANT"}, {"text": "doping", "start": 1132, "end": 1138, "annotation": null}, {"text": ".", "start": 1138, "end": 1139, "annotation": null}]]} +{"text": "Mapping of iron concentration is obtained in p-type monocrystalline and multicrystalline silicon by means of contactless lifetime measurements. The recombination rate induced by interstitial iron (Fei ) and iron boron pairs (FeB), which is very sensitive to injection level, is appreciated thanks to comparison between deep level transient spectroscopy (DLTS) and lifetime measurement by the micro-wave phase-shift technique (\u03bcW-PS). Calibration is given for samples doped in the range 5\u00d71013\u20133\u00d71016 cm\u22123.", "meta": {"doi": "10.1016/S0921-5107(01)00998-9"}, "_input_hash": 1190900745, "_task_hash": 1586262563, "tokens": [[{"text": "Mapping", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "of", "start": 8, "end": 10, "id": 1, "annotation": null}, {"text": "iron", "start": 11, "end": 15, "id": 2, "annotation": null}, {"text": "concentration", "start": 16, "end": 29, "id": 3, "annotation": null}, {"text": "is", "start": 30, "end": 32, "id": 4, "annotation": null}, {"text": "obtained", "start": 33, "end": 41, "id": 5, "annotation": null}, {"text": "in", "start": 42, "end": 44, "id": 6, "annotation": null}, {"text": "p", "start": 45, "end": 46, "id": 7, "annotation": "DOPANT"}, {"text": "-", "start": 47, "end": 48, "id": 8, "annotation": "DOPANT"}, {"text": "type", "start": 49, "end": 53, "id": 9, "annotation": "DOPANT"}, {"text": "monocrystalline", "start": 54, "end": 69, "id": 10, "annotation": null}, {"text": "and", "start": 70, "end": 73, "id": 11, "annotation": null}, {"text": "multicrystalline", "start": 74, "end": 90, "id": 12, "annotation": null}, {"text": "silicon", "start": 91, "end": 98, "id": 13, "annotation": "BASEMAT"}, {"text": "by", "start": 99, "end": 101, "id": 14, "annotation": null}, {"text": "means", "start": 102, "end": 107, "id": 15, "annotation": null}, {"text": "of", "start": 108, "end": 110, "id": 16, "annotation": null}, {"text": "contactless", "start": 111, "end": 122, "id": 17, "annotation": null}, {"text": "lifetime", "start": 123, "end": 131, "id": 18, "annotation": null}, {"text": "measurements", "start": 132, "end": 144, "id": 19, "annotation": null}, {"text": ".", "start": 145, "end": 146, "id": 20, "annotation": null}], [{"text": "The", "start": 147, "end": 150, "id": 21, "annotation": null}, {"text": "recombination", "start": 151, "end": 164, "id": 22, "annotation": null}, {"text": "rate", "start": 165, "end": 169, "id": 23, "annotation": null}, {"text": "induced", "start": 170, "end": 177, "id": 24, "annotation": null}, {"text": "by", "start": 178, "end": 180, "id": 25, "annotation": null}, {"text": "interstitial", "start": 181, "end": 193, "id": 26, "annotation": null}, {"text": "iron", "start": 194, "end": 198, "id": 27, "annotation": null}, {"text": "(", "start": 199, "end": 200, "id": 28, "annotation": null}, {"text": "Fei", "start": 201, "end": 204, "id": 29, "annotation": null}, {"text": ")", "start": 205, "end": 206, "id": 30, "annotation": null}, {"text": "and", "start": 207, "end": 210, "id": 31, "annotation": null}, {"text": "iron", "start": 211, "end": 215, "id": 32, "annotation": null}, {"text": "boron", "start": 216, "end": 221, "id": 33, "annotation": "DOPANT"}, {"text": "pairs", "start": 222, "end": 227, "id": 34, "annotation": null}, {"text": "(", "start": 228, "end": 229, "id": 35, "annotation": null}, {"text": "FeB", "start": 230, "end": 233, "id": 36, "annotation": null}, {"text": ")", "start": 234, "end": 235, "id": 37, "annotation": null}, {"text": ",", "start": 236, "end": 237, "id": 38, "annotation": null}, {"text": "which", "start": 238, "end": 243, "id": 39, "annotation": null}, {"text": "is", "start": 244, "end": 246, "id": 40, "annotation": null}, {"text": "very", "start": 247, "end": 251, "id": 41, "annotation": null}, {"text": "sensitive", "start": 252, "end": 261, "id": 42, "annotation": null}, {"text": "to", "start": 262, "end": 264, "id": 43, "annotation": null}, {"text": "injection", "start": 265, "end": 274, "id": 44, "annotation": null}, {"text": "level", "start": 275, "end": 280, "id": 45, "annotation": null}, {"text": ",", "start": 281, "end": 282, "id": 46, "annotation": null}, {"text": "is", "start": 283, "end": 285, "id": 47, "annotation": null}, {"text": "appreciated", "start": 286, "end": 297, "id": 48, "annotation": null}, {"text": "thanks", "start": 298, "end": 304, "id": 49, "annotation": null}, {"text": "to", "start": 305, "end": 307, "id": 50, "annotation": null}, {"text": "comparison", "start": 308, "end": 318, "id": 51, "annotation": null}, {"text": "between", "start": 319, "end": 326, "id": 52, "annotation": null}, {"text": "deep", "start": 327, "end": 331, "id": 53, "annotation": null}, {"text": "level", "start": 332, "end": 337, "id": 54, "annotation": null}, {"text": "transient", "start": 338, "end": 347, "id": 55, "annotation": null}, {"text": "spectroscopy", "start": 348, "end": 360, "id": 56, "annotation": null}, {"text": "(", "start": 361, "end": 362, "id": 57, "annotation": null}, {"text": "DLTS", "start": 363, "end": 367, "id": 58, "annotation": null}, {"text": ")", "start": 368, "end": 369, "id": 59, "annotation": null}, {"text": "and", "start": 370, "end": 373, "id": 60, "annotation": null}, {"text": "lifetime", "start": 374, "end": 382, "id": 61, "annotation": null}, {"text": "measurement", "start": 383, "end": 394, "id": 62, "annotation": null}, {"text": "by", "start": 395, "end": 397, "id": 63, "annotation": null}, {"text": "the", "start": 398, "end": 401, "id": 64, "annotation": null}, {"text": "micro", "start": 402, "end": 407, "id": 65, "annotation": null}, {"text": "-", "start": 408, "end": 409, "id": 66, "annotation": null}, {"text": "wave", "start": 410, "end": 414, "id": 67, "annotation": null}, {"text": "phase", "start": 415, "end": 420, "id": 68, "annotation": null}, {"text": "-", "start": 421, "end": 422, "id": 69, "annotation": null}, {"text": "shift", "start": 423, "end": 428, "id": 70, "annotation": null}, {"text": "technique", "start": 429, "end": 438, "id": 71, "annotation": null}, {"text": "(", "start": 439, "end": 440, "id": 72, "annotation": null}, {"text": "\u03bcW", "start": 441, "end": 443, "id": 73, "annotation": null}, {"text": "-", "start": 444, "end": 445, "id": 74, "annotation": null}, {"text": "PS", "start": 446, "end": 448, "id": 75, "annotation": null}, {"text": ")", "start": 449, "end": 450, "id": 76, "annotation": null}, {"text": ".", "start": 451, "end": 452, "id": 77, "annotation": null}], [{"text": "Calibration", "start": 453, "end": 464, "id": 78, "annotation": null}, {"text": "is", "start": 465, "end": 467, "id": 79, "annotation": null}, {"text": "given", "start": 468, "end": 473, "id": 80, "annotation": null}, {"text": "for", "start": 474, "end": 477, "id": 81, "annotation": null}, {"text": "samples", "start": 478, "end": 485, "id": 82, "annotation": null}, {"text": "doped", "start": 486, "end": 491, "id": 83, "annotation": null}, {"text": "in", "start": 492, "end": 494, "id": 84, "annotation": null}, {"text": "the", "start": 495, "end": 498, "id": 85, "annotation": null}, {"text": "range", "start": 499, "end": 504, "id": 86, "annotation": null}, {"text": "5\u00d71013\u20133\u00d71016", "start": 505, "end": 518, "id": 87, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 519, "end": 523, "id": 88, "annotation": "DOPMODQ"}, {"text": ".", "start": 524, "end": 525, "id": 89, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "Undoped and 3mol% Zn-doped barium strontium titanate thin films were deposited on Pt/Ti/SiO2/Si substrates using a sol\u2013gel method. The microstructure and morphology of the films were characterized by X-ray diffraction and atomic force microscopy. It showed that both films are polycrystalline with a perovskite structure and smaller grains were observed for the Zn-doped thin films. Dielectric measurements showed that the dielectric loss at 500kHz was reduced from 0.042 to 0.019 by Zn doping, which was accompanied by a slight decrease of the dielectric constant from 303 to 273. At an applied electric field of 60kV/cm, the leakage current density of the Zn-doped Ba0.7Sr0.3TiO3 thin films was 2.5\u00d710\u22128 A/cm2, which was by two orders of magnitude lower than that of the undoped films. The leakage current characteristics also indicated that the Ohmic conduction region of barium strontium titanate thin films was extended by Zn dopant. The microstructure, electrical properties and extension mechanism of Ohmic conduction region of the Zn-doped barium strontium titanate thin films were discussed in relation to the effect of Zn doping.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Undoped", "start": 0, "end": 7, "annotation": null}, {"text": "and", "start": 8, "end": 11, "annotation": null}, {"text": "3", "start": 12, "end": 13, "annotation": "DOPMODQ"}, {"text": "mol", "start": 13, "end": 16, "annotation": "DOPMODQ"}, {"text": "%", "start": 16, "end": 17, "annotation": "DOPMODQ"}, {"text": "Zn", "start": 18, "end": 20, "annotation": "DOPANT"}, {"text": "-", "start": 20, "end": 21, "annotation": null}, {"text": "doped", "start": 21, "end": 26, "annotation": null}, {"text": "barium", "start": 27, "end": 33, "annotation": "BASEMAT"}, {"text": "strontium", "start": 34, "end": 43, "annotation": "BASEMAT"}, {"text": "titanate", "start": 44, "end": 52, "annotation": "BASEMAT"}, {"text": "thin", "start": 53, "end": 57, "annotation": null}, {"text": "films", "start": 58, "end": 63, "annotation": null}, {"text": "were", "start": 64, "end": 68, "annotation": null}, {"text": "deposited", "start": 69, "end": 78, "annotation": null}, {"text": "on", "start": 79, "end": 81, "annotation": null}, {"text": "Pt", "start": 82, "end": 84, "annotation": null}, {"text": "/", "start": 84, "end": 85, "annotation": null}, {"text": "Ti", "start": 85, "end": 87, "annotation": null}, {"text": "/", "start": 87, "end": 88, "annotation": null}, {"text": "SiO2", "start": 88, "end": 92, "annotation": null}, {"text": "/", "start": 92, "end": 93, "annotation": null}, {"text": "Si", "start": 93, "end": 95, "annotation": null}, {"text": "substrates", "start": 96, "end": 106, "annotation": null}, {"text": "using", "start": 107, "end": 112, "annotation": null}, {"text": "a", "start": 113, "end": 114, "annotation": null}, {"text": "sol", "start": 115, "end": 118, "annotation": null}, {"text": "\u2013", "start": 118, "end": 119, "annotation": null}, {"text": "gel", "start": 119, "end": 122, "annotation": null}, {"text": "method", "start": 123, "end": 129, "annotation": null}, {"text": ".", "start": 129, "end": 130, "annotation": null}], [{"text": "The", "start": 131, "end": 134, "annotation": null}, {"text": "microstructure", "start": 135, "end": 149, "annotation": null}, {"text": "and", "start": 150, "end": 153, "annotation": null}, {"text": "morphology", "start": 154, "end": 164, "annotation": null}, {"text": "of", "start": 165, "end": 167, "annotation": null}, {"text": "the", "start": 168, "end": 171, "annotation": null}, {"text": "films", "start": 172, "end": 177, "annotation": null}, {"text": "were", "start": 178, "end": 182, "annotation": null}, {"text": "characterized", "start": 183, "end": 196, "annotation": null}, {"text": "by", "start": 197, "end": 199, "annotation": null}, {"text": "X-ray", "start": 200, "end": 205, "annotation": null}, {"text": "diffraction", "start": 206, "end": 217, "annotation": null}, {"text": "and", "start": 218, "end": 221, "annotation": null}, {"text": "atomic", "start": 222, "end": 228, "annotation": null}, {"text": "force", "start": 229, "end": 234, "annotation": null}, {"text": "microscopy", "start": 235, "end": 245, "annotation": null}, {"text": ".", "start": 245, "end": 246, "annotation": null}], [{"text": "It", "start": 247, "end": 249, "annotation": null}, {"text": "showed", "start": 250, "end": 256, "annotation": null}, {"text": "that", "start": 257, "end": 261, "annotation": null}, {"text": "both", "start": 262, "end": 266, "annotation": null}, {"text": "films", "start": 267, "end": 272, "annotation": null}, {"text": "are", "start": 273, "end": 276, "annotation": null}, {"text": "polycrystalline", "start": 277, "end": 292, "annotation": null}, {"text": "with", "start": 293, "end": 297, "annotation": null}, {"text": "a", "start": 298, "end": 299, "annotation": null}, {"text": "perovskite", "start": 300, "end": 310, "annotation": null}, {"text": "structure", "start": 311, "end": 320, "annotation": null}, {"text": "and", "start": 321, "end": 324, "annotation": null}, {"text": "smaller", "start": 325, "end": 332, "annotation": null}, {"text": "grains", "start": 333, "end": 339, "annotation": null}, {"text": "were", "start": 340, "end": 344, "annotation": null}, {"text": "observed", "start": 345, "end": 353, "annotation": null}, {"text": "for", "start": 354, "end": 357, "annotation": null}, {"text": "the", "start": 358, "end": 361, "annotation": null}, {"text": "Zn", "start": 362, "end": 364, "annotation": "DOPANT"}, {"text": "-", "start": 364, "end": 365, "annotation": null}, {"text": "doped", "start": 365, "end": 370, "annotation": null}, {"text": "thin", "start": 371, "end": 375, "annotation": "BASEMAT"}, {"text": "films", "start": 376, "end": 381, "annotation": "BASEMAT"}, {"text": ".", "start": 381, "end": 382, "annotation": null}], [{"text": "Dielectric", "start": 383, "end": 393, "annotation": null}, {"text": "measurements", "start": 394, "end": 406, "annotation": null}, {"text": "showed", "start": 407, "end": 413, "annotation": null}, {"text": "that", "start": 414, "end": 418, "annotation": null}, {"text": "the", "start": 419, "end": 422, "annotation": null}, {"text": "dielectric", "start": 423, "end": 433, "annotation": null}, {"text": "loss", "start": 434, "end": 438, "annotation": null}, {"text": "at", "start": 439, "end": 441, "annotation": null}, {"text": "500", "start": 442, "end": 445, "annotation": null}, {"text": "kHz", "start": 445, "end": 448, "annotation": null}, {"text": "was", "start": 449, "end": 452, "annotation": null}, {"text": "reduced", "start": 453, "end": 460, "annotation": null}, {"text": "from", "start": 461, "end": 465, "annotation": null}, {"text": "0.042", "start": 466, "end": 471, "annotation": null}, {"text": "to", "start": 472, "end": 474, "annotation": null}, {"text": "0.019", "start": 475, "end": 480, "annotation": null}, {"text": "by", "start": 481, "end": 483, "annotation": null}, {"text": "Zn", "start": 484, "end": 486, "annotation": "DOPANT"}, {"text": "doping", "start": 487, "end": 493, "annotation": null}, {"text": ",", "start": 493, "end": 494, "annotation": null}, {"text": "which", "start": 495, "end": 500, "annotation": null}, {"text": "was", "start": 501, "end": 504, "annotation": null}, {"text": "accompanied", "start": 505, "end": 516, "annotation": null}, {"text": "by", "start": 517, "end": 519, "annotation": null}, {"text": "a", "start": 520, "end": 521, "annotation": null}, {"text": "slight", "start": 522, "end": 528, "annotation": null}, {"text": "decrease", "start": 529, "end": 537, "annotation": null}, {"text": "of", "start": 538, "end": 540, "annotation": null}, {"text": "the", "start": 541, "end": 544, "annotation": null}, {"text": "dielectric", "start": 545, "end": 555, "annotation": null}, {"text": "constant", "start": 556, "end": 564, "annotation": null}, {"text": "from", "start": 565, "end": 569, "annotation": null}, {"text": "303", "start": 570, "end": 573, "annotation": null}, {"text": "to", "start": 574, "end": 576, "annotation": null}, {"text": "273", "start": 577, "end": 580, "annotation": null}, {"text": ".", "start": 580, "end": 581, "annotation": null}], [{"text": "At", "start": 582, "end": 584, "annotation": null}, {"text": "an", "start": 585, "end": 587, "annotation": null}, {"text": "applied", "start": 588, "end": 595, "annotation": null}, {"text": "electric", "start": 596, "end": 604, "annotation": null}, {"text": "field", "start": 605, "end": 610, "annotation": null}, {"text": "of", "start": 611, "end": 613, "annotation": null}, {"text": "60", "start": 614, "end": 616, "annotation": null}, {"text": "kV", "start": 616, "end": 618, "annotation": null}, {"text": "/", "start": 618, "end": 619, "annotation": null}, {"text": "cm", "start": 619, "end": 621, "annotation": null}, {"text": ",", "start": 621, "end": 622, "annotation": null}, {"text": "the", "start": 623, "end": 626, "annotation": null}, {"text": "leakage", "start": 627, "end": 634, "annotation": null}, {"text": "current", "start": 635, "end": 642, "annotation": null}, {"text": "density", "start": 643, "end": 650, "annotation": null}, {"text": "of", "start": 651, "end": 653, "annotation": null}, {"text": "the", "start": 654, "end": 657, "annotation": null}, {"text": "Zn", "start": 658, "end": 660, "annotation": "DOPANT"}, {"text": "-", "start": 660, "end": 661, "annotation": null}, {"text": "doped", "start": 661, "end": 666, "annotation": null}, {"text": "Ba0.7Sr0.3TiO3", "start": 667, "end": 681, "annotation": "BASEMAT"}, {"text": "thin", "start": 682, "end": 686, "annotation": null}, {"text": "films", "start": 687, "end": 692, "annotation": null}, {"text": "was", "start": 693, "end": 696, "annotation": null}, {"text": "2.5", "start": 697, "end": 700, "annotation": null}, {"text": "\u00d7", "start": 700, "end": 701, "annotation": null}, {"text": "10", "start": 701, "end": 703, "annotation": null}, {"text": "\u2212", "start": 703, "end": 704, "annotation": null}, {"text": "8", "start": 704, "end": 705, "annotation": null}, {"text": "A", "start": 706, "end": 707, "annotation": null}, {"text": "/", "start": 707, "end": 708, "annotation": null}, {"text": "cm2", "start": 708, "end": 711, "annotation": null}, {"text": ",", "start": 711, "end": 712, "annotation": null}, {"text": "which", "start": 713, "end": 718, "annotation": null}, {"text": "was", "start": 719, "end": 722, "annotation": null}, {"text": "by", "start": 723, "end": 725, "annotation": null}, {"text": "two", "start": 726, "end": 729, "annotation": null}, {"text": "orders", "start": 730, "end": 736, "annotation": null}, {"text": "of", "start": 737, "end": 739, "annotation": null}, {"text": "magnitude", "start": 740, "end": 749, "annotation": null}, {"text": "lower", "start": 750, "end": 755, "annotation": null}, {"text": "than", "start": 756, "end": 760, "annotation": null}, {"text": "that", "start": 761, "end": 765, "annotation": null}, {"text": "of", "start": 766, "end": 768, "annotation": null}, {"text": "the", "start": 769, "end": 772, "annotation": null}, {"text": "undoped", "start": 773, "end": 780, "annotation": null}, {"text": "films", "start": 781, "end": 786, "annotation": null}, {"text": ".", "start": 786, "end": 787, "annotation": null}], [{"text": "The", "start": 788, "end": 791, "annotation": null}, {"text": "leakage", "start": 792, "end": 799, "annotation": null}, {"text": "current", "start": 800, "end": 807, "annotation": null}, {"text": "characteristics", "start": 808, "end": 823, "annotation": null}, {"text": "also", "start": 824, "end": 828, "annotation": null}, {"text": "indicated", "start": 829, "end": 838, "annotation": null}, {"text": "that", "start": 839, "end": 843, "annotation": null}, {"text": "the", "start": 844, "end": 847, "annotation": null}, {"text": "Ohmic", "start": 848, "end": 853, "annotation": null}, {"text": "conduction", "start": 854, "end": 864, "annotation": null}, {"text": "region", "start": 865, "end": 871, "annotation": null}, {"text": "of", "start": 872, "end": 874, "annotation": null}, {"text": "barium", "start": 875, "end": 881, "annotation": "BASEMAT"}, {"text": "strontium", "start": 882, "end": 891, "annotation": "BASEMAT"}, {"text": "titanate", "start": 892, "end": 900, "annotation": "BASEMAT"}, {"text": "thin", "start": 901, "end": 905, "annotation": null}, {"text": "films", "start": 906, "end": 911, "annotation": null}, {"text": "was", "start": 912, "end": 915, "annotation": null}, {"text": "extended", "start": 916, "end": 924, "annotation": null}, {"text": "by", "start": 925, "end": 927, "annotation": null}, {"text": "Zn", "start": 928, "end": 930, "annotation": "DOPANT"}, {"text": "dopant", "start": 931, "end": 937, "annotation": null}, {"text": ".", "start": 937, "end": 938, "annotation": null}], [{"text": "The", "start": 939, "end": 942, "annotation": null}, {"text": "microstructure", "start": 943, "end": 957, "annotation": null}, {"text": ",", "start": 957, "end": 958, "annotation": null}, {"text": "electrical", "start": 959, "end": 969, "annotation": null}, {"text": "properties", "start": 970, "end": 980, "annotation": null}, {"text": "and", "start": 981, "end": 984, "annotation": null}, {"text": "extension", "start": 985, "end": 994, "annotation": null}, {"text": "mechanism", "start": 995, "end": 1004, "annotation": null}, {"text": "of", "start": 1005, "end": 1007, "annotation": null}, {"text": "Ohmic", "start": 1008, "end": 1013, "annotation": null}, {"text": "conduction", "start": 1014, "end": 1024, "annotation": null}, {"text": "region", "start": 1025, "end": 1031, "annotation": null}, {"text": "of", "start": 1032, "end": 1034, "annotation": null}, {"text": "the", "start": 1035, "end": 1038, "annotation": null}, {"text": "Zn", "start": 1039, "end": 1041, "annotation": "DOPANT"}, {"text": "-", "start": 1041, "end": 1042, "annotation": null}, {"text": "doped", "start": 1042, "end": 1047, "annotation": null}, {"text": "barium", "start": 1048, "end": 1054, "annotation": "BASEMAT"}, {"text": "strontium", "start": 1055, "end": 1064, "annotation": "BASEMAT"}, {"text": "titanate", "start": 1065, "end": 1073, "annotation": "BASEMAT"}, {"text": "thin", "start": 1074, "end": 1078, "annotation": null}, {"text": "films", "start": 1079, "end": 1084, "annotation": null}, {"text": "were", "start": 1085, "end": 1089, "annotation": null}, {"text": "discussed", "start": 1090, "end": 1099, "annotation": null}, {"text": "in", "start": 1100, "end": 1102, "annotation": null}, {"text": "relation", "start": 1103, "end": 1111, "annotation": null}, {"text": "to", "start": 1112, "end": 1114, "annotation": null}, {"text": "the", "start": 1115, "end": 1118, "annotation": null}, {"text": "effect", "start": 1119, "end": 1125, "annotation": null}, {"text": "of", "start": 1126, "end": 1128, "annotation": null}, {"text": "Zn", "start": 1129, "end": 1131, "annotation": "DOPANT"}, {"text": "doping", "start": 1132, "end": 1138, "annotation": null}, {"text": ".", "start": 1138, "end": 1139, "annotation": null}]], "meta": {"doi": "10.1007/s10854-010-0226-4"}} {"text": "Equilibrium phase diagram of ruthenium-zirconium oxide (Ru-Zr-O) was calculated by a combination of ab initio density functional theory and thermodynamic calculations. The phase diagrams suggest that the solubility between ruthenium oxide and zirconium oxide is very low under normal experimental conditions, in good agreement with the prior reports in literature. Also provided is the theoretical support for the reported phenomenon that doping or amorphization of Ru-Zr-O might suppress phase separation of the oxide. To study the spinodal decomposition of Ru-Zr-O, we successfully prepared an amorphous Ru0.48Zr0.52O2 film of a solid solution phase by a thermal decomposition at a low temperature (563 K). In situ transmission electron microscopy was utilized to witness the spinodal decomposition of the amorphous Ru0.48Zr0.52O2 solid solution by electron-beam annealing. The present fundamental study of the phase behavior of Ru-Zr-O provides a guideline for the phase and microstructure design of Ru-based mixed oxides for various important applications.", "meta": {"doi": "10.1021/jp308310y"}, "_input_hash": 1845534727, "_task_hash": -104436030, "tokens": [[{"text": "Equilibrium", "start": 0, "end": 11, "id": 0, "annotation": null}, {"text": "phase", "start": 12, "end": 17, "id": 1, "annotation": null}, {"text": "diagram", "start": 18, "end": 25, "id": 2, "annotation": null}, {"text": "of", "start": 26, "end": 28, "id": 3, "annotation": null}, {"text": "ruthenium", "start": 29, "end": 38, "id": 4, "annotation": null}, {"text": "-", "start": 39, "end": 40, "id": 5, "annotation": null}, {"text": "zirconium", "start": 41, "end": 50, "id": 6, "annotation": null}, {"text": "oxide", "start": 51, "end": 56, "id": 7, "annotation": null}, {"text": "(", "start": 57, "end": 58, "id": 8, "annotation": null}, {"text": "Ru", "start": 59, "end": 61, "id": 9, "annotation": null}, {"text": "-", "start": 62, "end": 63, "id": 10, "annotation": null}, {"text": "Zr", "start": 64, "end": 66, "id": 11, "annotation": null}, {"text": "-", "start": 67, "end": 68, "id": 12, "annotation": null}, {"text": "O", "start": 69, "end": 70, "id": 13, "annotation": null}, {"text": ")", "start": 71, "end": 72, "id": 14, "annotation": null}, {"text": "was", "start": 73, "end": 76, "id": 15, "annotation": null}, {"text": "calculated", "start": 77, "end": 87, "id": 16, "annotation": null}, {"text": "by", "start": 88, "end": 90, "id": 17, "annotation": null}, {"text": "a", "start": 91, "end": 92, "id": 18, "annotation": null}, {"text": "combination", "start": 93, "end": 104, "id": 19, "annotation": null}, {"text": "of", "start": 105, "end": 107, "id": 20, "annotation": null}, {"text": "ab", "start": 108, "end": 110, "id": 21, "annotation": null}, {"text": "initio", "start": 111, "end": 117, "id": 22, "annotation": null}, {"text": "density", "start": 118, "end": 125, "id": 23, "annotation": null}, {"text": "functional", "start": 126, "end": 136, "id": 24, "annotation": null}, {"text": "theory", "start": 137, "end": 143, "id": 25, "annotation": null}, {"text": "and", "start": 144, "end": 147, "id": 26, "annotation": null}, {"text": "thermodynamic", "start": 148, "end": 161, "id": 27, "annotation": null}, {"text": "calculations", "start": 162, "end": 174, "id": 28, "annotation": null}, {"text": ".", "start": 175, "end": 176, "id": 29, "annotation": null}], [{"text": "The", "start": 177, "end": 180, "id": 30, "annotation": null}, {"text": "phase", "start": 181, "end": 186, "id": 31, "annotation": null}, {"text": "diagrams", "start": 187, "end": 195, "id": 32, "annotation": null}, {"text": "suggest", "start": 196, "end": 203, "id": 33, "annotation": null}, {"text": "that", "start": 204, "end": 208, "id": 34, "annotation": null}, {"text": "the", "start": 209, "end": 212, "id": 35, "annotation": null}, {"text": "solubility", "start": 213, "end": 223, "id": 36, "annotation": null}, {"text": "between", "start": 224, "end": 231, "id": 37, "annotation": null}, {"text": "ruthenium", "start": 232, "end": 241, "id": 38, "annotation": null}, {"text": "oxide", "start": 242, "end": 247, "id": 39, "annotation": null}, {"text": "and", "start": 248, "end": 251, "id": 40, "annotation": null}, {"text": "zirconium", "start": 252, "end": 261, "id": 41, "annotation": null}, {"text": "oxide", "start": 262, "end": 267, "id": 42, "annotation": null}, {"text": "is", "start": 268, "end": 270, "id": 43, "annotation": null}, {"text": "very", "start": 271, "end": 275, "id": 44, "annotation": null}, {"text": "low", "start": 276, "end": 279, "id": 45, "annotation": null}, {"text": "under", "start": 280, "end": 285, "id": 46, "annotation": null}, {"text": "normal", "start": 286, "end": 292, "id": 47, "annotation": null}, {"text": "experimental", "start": 293, "end": 305, "id": 48, "annotation": null}, {"text": "conditions", "start": 306, "end": 316, "id": 49, "annotation": null}, {"text": ",", "start": 317, "end": 318, "id": 50, "annotation": null}, {"text": "in", "start": 319, "end": 321, "id": 51, "annotation": null}, {"text": "good", "start": 322, "end": 326, "id": 52, "annotation": null}, {"text": "agreement", "start": 327, "end": 336, "id": 53, "annotation": null}, {"text": "with", "start": 337, "end": 341, "id": 54, "annotation": null}, {"text": "the", "start": 342, "end": 345, "id": 55, "annotation": null}, {"text": "prior", "start": 346, "end": 351, "id": 56, "annotation": null}, {"text": "reports", "start": 352, "end": 359, "id": 57, "annotation": null}, {"text": "in", "start": 360, "end": 362, "id": 58, "annotation": null}, {"text": "literature", "start": 363, "end": 373, "id": 59, "annotation": null}, {"text": ".", "start": 374, "end": 375, "id": 60, "annotation": null}], [{"text": "Also", "start": 376, "end": 380, "id": 61, "annotation": null}, {"text": "provided", "start": 381, "end": 389, "id": 62, "annotation": null}, {"text": "is", "start": 390, "end": 392, "id": 63, "annotation": null}, {"text": "the", "start": 393, "end": 396, "id": 64, "annotation": null}, {"text": "theoretical", "start": 397, "end": 408, "id": 65, "annotation": null}, {"text": "support", "start": 409, "end": 416, "id": 66, "annotation": null}, {"text": "for", "start": 417, "end": 420, "id": 67, "annotation": null}, {"text": "the", "start": 421, "end": 424, "id": 68, "annotation": null}, {"text": "reported", "start": 425, "end": 433, "id": 69, "annotation": null}, {"text": "phenomenon", "start": 434, "end": 444, "id": 70, "annotation": null}, {"text": "that", "start": 445, "end": 449, "id": 71, "annotation": null}, {"text": "doping", "start": 450, "end": 456, "id": 72, "annotation": null}, {"text": "or", "start": 457, "end": 459, "id": 73, "annotation": null}, {"text": "amorphization", "start": 460, "end": 473, "id": 74, "annotation": null}, {"text": "of", "start": 474, "end": 476, "id": 75, "annotation": null}, {"text": "Ru", "start": 477, "end": 479, "id": 76, "annotation": "BASEMAT"}, {"text": "-", "start": 480, "end": 481, "id": 77, "annotation": null}, {"text": "Zr", "start": 482, "end": 484, "id": 78, "annotation": null}, {"text": "-", "start": 485, "end": 486, "id": 79, "annotation": null}, {"text": "O", "start": 487, "end": 488, "id": 80, "annotation": "BASEMAT"}, {"text": "might", "start": 489, "end": 494, "id": 81, "annotation": null}, {"text": "suppress", "start": 495, "end": 503, "id": 82, "annotation": null}, {"text": "phase", "start": 504, "end": 509, "id": 83, "annotation": null}, {"text": "separation", "start": 510, "end": 520, "id": 84, "annotation": null}, {"text": "of", "start": 521, "end": 523, "id": 85, "annotation": null}, {"text": "the", "start": 524, "end": 527, "id": 86, "annotation": null}, {"text": "oxide", "start": 528, "end": 533, "id": 87, "annotation": null}, {"text": ".", "start": 534, "end": 535, "id": 88, "annotation": null}], [{"text": "To", "start": 536, "end": 538, "id": 89, "annotation": null}, {"text": "study", "start": 539, "end": 544, "id": 90, "annotation": null}, {"text": "the", "start": 545, "end": 548, "id": 91, "annotation": null}, {"text": "spinodal", "start": 549, "end": 557, "id": 92, "annotation": null}, {"text": "decomposition", "start": 558, "end": 571, "id": 93, "annotation": null}, {"text": "of", "start": 572, "end": 574, "id": 94, "annotation": null}, {"text": "Ru", "start": 575, "end": 577, "id": 95, "annotation": null}, {"text": "-", "start": 578, "end": 579, "id": 96, "annotation": null}, {"text": "Zr", "start": 580, "end": 582, "id": 97, "annotation": null}, {"text": "-", "start": 583, "end": 584, "id": 98, "annotation": null}, {"text": "O", "start": 585, "end": 586, "id": 99, "annotation": null}, {"text": ",", "start": 587, "end": 588, "id": 100, "annotation": null}, {"text": "we", "start": 589, "end": 591, "id": 101, "annotation": null}, {"text": "successfully", "start": 592, "end": 604, "id": 102, "annotation": null}, {"text": "prepared", "start": 605, "end": 613, "id": 103, "annotation": null}, {"text": "an", "start": 614, "end": 616, "id": 104, "annotation": null}, {"text": "amorphous", "start": 617, "end": 626, "id": 105, "annotation": null}, {"text": "Ru0.48Zr0.52O2", "start": 627, "end": 641, "id": 106, "annotation": null}, {"text": "film", "start": 642, "end": 646, "id": 107, "annotation": null}, {"text": "of", "start": 647, "end": 649, "id": 108, "annotation": null}, {"text": "a", "start": 650, "end": 651, "id": 109, "annotation": null}, {"text": "solid", "start": 652, "end": 657, "id": 110, "annotation": null}, {"text": "solution", "start": 658, "end": 666, "id": 111, "annotation": null}, {"text": "phase", "start": 667, "end": 672, "id": 112, "annotation": null}, {"text": "by", "start": 673, "end": 675, "id": 113, "annotation": null}, {"text": "a", "start": 676, "end": 677, "id": 114, "annotation": null}, {"text": "thermal", "start": 678, "end": 685, "id": 115, "annotation": null}, {"text": "decomposition", "start": 686, "end": 699, "id": 116, "annotation": null}, {"text": "at", "start": 700, "end": 702, "id": 117, "annotation": null}, {"text": "a", "start": 703, "end": 704, "id": 118, "annotation": null}, {"text": "low", "start": 705, "end": 708, "id": 119, "annotation": null}, {"text": "temperature", "start": 709, "end": 720, "id": 120, "annotation": null}, {"text": "(", "start": 721, "end": 722, "id": 121, "annotation": null}, {"text": "563", "start": 723, "end": 726, "id": 122, "annotation": null}, {"text": "K", "start": 727, "end": 728, "id": 123, "annotation": null}, {"text": ")", "start": 729, "end": 730, "id": 124, "annotation": null}, {"text": ".", "start": 731, "end": 732, "id": 125, "annotation": null}], [{"text": "In", "start": 733, "end": 735, "id": 126, "annotation": null}, {"text": "situ", "start": 736, "end": 740, "id": 127, "annotation": null}, {"text": "transmission", "start": 741, "end": 753, "id": 128, "annotation": null}, {"text": "electron", "start": 754, "end": 762, "id": 129, "annotation": null}, {"text": "microscopy", "start": 763, "end": 773, "id": 130, "annotation": null}, {"text": "was", "start": 774, "end": 777, "id": 131, "annotation": null}, {"text": "utilized", "start": 778, "end": 786, "id": 132, "annotation": null}, {"text": "to", "start": 787, "end": 789, "id": 133, "annotation": null}, {"text": "witness", "start": 790, "end": 797, "id": 134, "annotation": null}, {"text": "the", "start": 798, "end": 801, "id": 135, "annotation": null}, {"text": "spinodal", "start": 802, "end": 810, "id": 136, "annotation": null}, {"text": "decomposition", "start": 811, "end": 824, "id": 137, "annotation": null}, {"text": "of", "start": 825, "end": 827, "id": 138, "annotation": null}, {"text": "the", "start": 828, "end": 831, "id": 139, "annotation": null}, {"text": "amorphous", "start": 832, "end": 841, "id": 140, "annotation": null}, {"text": "Ru0.48Zr0.52O2", "start": 842, "end": 856, "id": 141, "annotation": null}, {"text": "solid", "start": 857, "end": 862, "id": 142, "annotation": null}, {"text": "solution", "start": 863, "end": 871, "id": 143, "annotation": null}, {"text": "by", "start": 872, "end": 874, "id": 144, "annotation": null}, {"text": "electron", "start": 875, "end": 883, "id": 145, "annotation": null}, {"text": "-", "start": 884, "end": 885, "id": 146, "annotation": null}, {"text": "beam", "start": 886, "end": 890, "id": 147, "annotation": null}, {"text": "annealing", "start": 891, "end": 900, "id": 148, "annotation": null}, {"text": ".", "start": 901, "end": 902, "id": 149, "annotation": null}], [{"text": "The", "start": 903, "end": 906, "id": 150, "annotation": null}, {"text": "present", "start": 907, "end": 914, "id": 151, "annotation": null}, {"text": "fundamental", "start": 915, "end": 926, "id": 152, "annotation": null}, {"text": "study", "start": 927, "end": 932, "id": 153, "annotation": null}, {"text": "of", "start": 933, "end": 935, "id": 154, "annotation": null}, {"text": "the", "start": 936, "end": 939, "id": 155, "annotation": null}, {"text": "phase", "start": 940, "end": 945, "id": 156, "annotation": null}, {"text": "behavior", "start": 946, "end": 954, "id": 157, "annotation": null}, {"text": "of", "start": 955, "end": 957, "id": 158, "annotation": null}, {"text": "Ru", "start": 958, "end": 960, "id": 159, "annotation": null}, {"text": "-", "start": 961, "end": 962, "id": 160, "annotation": null}, {"text": "Zr", "start": 963, "end": 965, "id": 161, "annotation": null}, {"text": "-", "start": 966, "end": 967, "id": 162, "annotation": null}, {"text": "O", "start": 968, "end": 969, "id": 163, "annotation": null}, {"text": "provides", "start": 970, "end": 978, "id": 164, "annotation": null}, {"text": "a", "start": 979, "end": 980, "id": 165, "annotation": null}, {"text": "guideline", "start": 981, "end": 990, "id": 166, "annotation": null}, {"text": "for", "start": 991, "end": 994, "id": 167, "annotation": null}, {"text": "the", "start": 995, "end": 998, "id": 168, "annotation": null}, {"text": "phase", "start": 999, "end": 1004, "id": 169, "annotation": null}, {"text": "and", "start": 1005, "end": 1008, "id": 170, "annotation": null}, {"text": "microstructure", "start": 1009, "end": 1023, "id": 171, "annotation": null}, {"text": "design", "start": 1024, "end": 1030, "id": 172, "annotation": null}, {"text": "of", "start": 1031, "end": 1033, "id": 173, "annotation": null}, {"text": "Ru", "start": 1034, "end": 1036, "id": 174, "annotation": null}, {"text": "-", "start": 1037, "end": 1038, "id": 175, "annotation": null}, {"text": "based", "start": 1039, "end": 1044, "id": 176, "annotation": null}, {"text": "mixed", "start": 1045, "end": 1050, "id": 177, "annotation": null}, {"text": "oxides", "start": 1051, "end": 1057, "id": 178, "annotation": null}, {"text": "for", "start": 1058, "end": 1061, "id": 179, "annotation": null}, {"text": "various", "start": 1062, "end": 1069, "id": 180, "annotation": null}, {"text": "important", "start": 1070, "end": 1079, "id": 181, "annotation": null}, {"text": "applications", "start": 1080, "end": 1092, "id": 182, "annotation": null}, {"text": ".", "start": 1093, "end": 1094, "id": 183, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The effects of La- and Co-doping into SrTiO3 perovskite oxides on their phase structure, electrical conductivity, ionic conductivity and oxygen vacancy concentration have been investigated. The solid solution limits of La in La x Sr1\u2212 x TiO3\u2212 \u03b4 and Co in La0.3Sr0.7Co y Ti1\u2212 y O3\u2212 \u03b4 are about 40mol% and 7mol%, respectively, at 1500\u00b0C. The incorporation of La decreases the band gap and thus increases the electrical conductivity of SrTiO3 remarkably. La0.3Sr0.7TiO3\u2212 \u03b4 shows an electrical conductivity of 247S/cm at 700\u00b0C. Co-doping into La0.3Sr0.7TiO3\u2212 \u03b4 increases the oxygen vacancy concentration and decreases the migration energy for oxygen ions, leading to a significant increase in ionic conductivity but at the expense of some electrical conductivity. The electrical and ionic conductivities of La0.3Sr0.7Co0.07Ti0.93O3\u2212 \u03b4 are 63S/cm and 6\u00d710\u22123 S/cm, respectively, at 700\u00b0C. Both La0.3Sr0.7TiO3\u2212 \u03b4 and La0.3Sr0.7Co0.07Ti0.93O3\u2212 \u03b4 show relatively stable electrical conductivities under oxygen partial pressure of 10\u221214\u201310\u221219 atm at 800\u00b0C. These properties make La0.3Sr0.7Co0.07Ti0.93O3\u2212 \u03b4 a promising anode candidate for solid oxide fuel cells.", "meta": {"doi": "10.1016/j.ijhydene.2009.05.079"}, "_input_hash": -682917347, "_task_hash": -2015774679, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "effects", "start": 4, "end": 11, "id": 1, "annotation": null}, {"text": "of", "start": 12, "end": 14, "id": 2, "annotation": null}, {"text": "La-", "start": 15, "end": 18, "id": 3, "annotation": "DOPANT"}, {"text": "and", "start": 19, "end": 22, "id": 4, "annotation": null}, {"text": "Co", "start": 23, "end": 25, "id": 5, "annotation": "DOPANT"}, {"text": "-", "start": 26, "end": 27, "id": 6, "annotation": null}, {"text": "doping", "start": 28, "end": 34, "id": 7, "annotation": null}, {"text": "into", "start": 35, "end": 39, "id": 8, "annotation": null}, {"text": "SrTiO3", "start": 40, "end": 46, "id": 9, "annotation": "BASEMAT"}, {"text": "perovskite", "start": 47, "end": 57, "id": 10, "annotation": null}, {"text": "oxides", "start": 58, "end": 64, "id": 11, "annotation": null}, {"text": "on", "start": 65, "end": 67, "id": 12, "annotation": null}, {"text": "their", "start": 68, "end": 73, "id": 13, "annotation": null}, {"text": "phase", "start": 74, "end": 79, "id": 14, "annotation": null}, {"text": "structure", "start": 80, "end": 89, "id": 15, "annotation": null}, {"text": ",", "start": 90, "end": 91, "id": 16, "annotation": null}, {"text": "electrical", "start": 92, "end": 102, "id": 17, "annotation": null}, {"text": "conductivity", "start": 103, "end": 115, "id": 18, "annotation": null}, {"text": ",", "start": 116, "end": 117, "id": 19, "annotation": null}, {"text": "ionic", "start": 118, "end": 123, "id": 20, "annotation": null}, {"text": "conductivity", "start": 124, "end": 136, "id": 21, "annotation": null}, {"text": "and", "start": 137, "end": 140, "id": 22, "annotation": null}, {"text": "oxygen", "start": 141, "end": 147, "id": 23, "annotation": null}, {"text": "vacancy", "start": 148, "end": 155, "id": 24, "annotation": null}, {"text": "concentration", "start": 156, "end": 169, "id": 25, "annotation": null}, {"text": "have", "start": 170, "end": 174, "id": 26, "annotation": null}, {"text": "been", "start": 175, "end": 179, "id": 27, "annotation": null}, {"text": "investigated", "start": 180, "end": 192, "id": 28, "annotation": null}, {"text": ".", "start": 193, "end": 194, "id": 29, "annotation": null}], [{"text": "The", "start": 195, "end": 198, "id": 30, "annotation": null}, {"text": "solid", "start": 199, "end": 204, "id": 31, "annotation": null}, {"text": "solution", "start": 205, "end": 213, "id": 32, "annotation": null}, {"text": "limits", "start": 214, "end": 220, "id": 33, "annotation": null}, {"text": "of", "start": 221, "end": 223, "id": 34, "annotation": null}, {"text": "La", "start": 224, "end": 226, "id": 35, "annotation": null}, {"text": "in", "start": 227, "end": 229, "id": 36, "annotation": null}, {"text": "La", "start": 230, "end": 232, "id": 37, "annotation": null}, {"text": "x", "start": 233, "end": 234, "id": 38, "annotation": null}, {"text": "Sr1\u2212", "start": 235, "end": 239, "id": 39, "annotation": null}, {"text": "x", "start": 240, "end": 241, "id": 40, "annotation": null}, {"text": "TiO3\u2212", "start": 242, "end": 247, "id": 41, "annotation": null}, {"text": "\u03b4", "start": 248, "end": 249, "id": 42, "annotation": null}, {"text": "and", "start": 250, "end": 253, "id": 43, "annotation": null}, {"text": "Co", "start": 254, "end": 256, "id": 44, "annotation": null}, {"text": "in", "start": 257, "end": 259, "id": 45, "annotation": null}, {"text": "La0.3Sr0.7Co", "start": 260, "end": 272, "id": 46, "annotation": null}, {"text": "y", "start": 273, "end": 274, "id": 47, "annotation": null}, {"text": "Ti1\u2212", "start": 275, "end": 279, "id": 48, "annotation": null}, {"text": "y", "start": 280, "end": 281, "id": 49, "annotation": null}, {"text": "O3\u2212", "start": 282, "end": 285, "id": 50, "annotation": null}, {"text": "\u03b4", "start": 286, "end": 287, "id": 51, "annotation": null}, {"text": "are", "start": 288, "end": 291, "id": 52, "annotation": null}, {"text": "about", "start": 292, "end": 297, "id": 53, "annotation": null}, {"text": "40mol%", "start": 298, "end": 304, "id": 54, "annotation": null}, {"text": "and", "start": 305, "end": 308, "id": 55, "annotation": null}, {"text": "7mol%", "start": 309, "end": 314, "id": 56, "annotation": null}, {"text": ",", "start": 315, "end": 316, "id": 57, "annotation": null}, {"text": "respectively", "start": 317, "end": 329, "id": 58, "annotation": null}, {"text": ",", "start": 330, "end": 331, "id": 59, "annotation": null}, {"text": "at", "start": 332, "end": 334, "id": 60, "annotation": null}, {"text": "1500", "start": 335, "end": 339, "id": 61, "annotation": null}, {"text": "\u00b0", "start": 340, "end": 341, "id": 62, "annotation": null}, {"text": "C", "start": 342, "end": 343, "id": 63, "annotation": null}, {"text": ".", "start": 344, "end": 345, "id": 64, "annotation": null}], [{"text": "The", "start": 346, "end": 349, "id": 65, "annotation": null}, {"text": "incorporation", "start": 350, "end": 363, "id": 66, "annotation": null}, {"text": "of", "start": 364, "end": 366, "id": 67, "annotation": null}, {"text": "La", "start": 367, "end": 369, "id": 68, "annotation": null}, {"text": "decreases", "start": 370, "end": 379, "id": 69, "annotation": null}, {"text": "the", "start": 380, "end": 383, "id": 70, "annotation": null}, {"text": "band", "start": 384, "end": 388, "id": 71, "annotation": null}, {"text": "gap", "start": 389, "end": 392, "id": 72, "annotation": null}, {"text": "and", "start": 393, "end": 396, "id": 73, "annotation": null}, {"text": "thus", "start": 397, "end": 401, "id": 74, "annotation": null}, {"text": "increases", "start": 402, "end": 411, "id": 75, "annotation": null}, {"text": "the", "start": 412, "end": 415, "id": 76, "annotation": null}, {"text": "electrical", "start": 416, "end": 426, "id": 77, "annotation": null}, {"text": "conductivity", "start": 427, "end": 439, "id": 78, "annotation": null}, {"text": "of", "start": 440, "end": 442, "id": 79, "annotation": null}, {"text": "SrTiO3", "start": 443, "end": 449, "id": 80, "annotation": null}, {"text": "remarkably", "start": 450, "end": 460, "id": 81, "annotation": null}, {"text": ".", "start": 461, "end": 462, "id": 82, "annotation": null}], [{"text": "La0.3Sr0.7TiO3\u2212", "start": 463, "end": 478, "id": 83, "annotation": null}, {"text": "\u03b4", "start": 479, "end": 480, "id": 84, "annotation": null}, {"text": "shows", "start": 481, "end": 486, "id": 85, "annotation": null}, {"text": "an", "start": 487, "end": 489, "id": 86, "annotation": null}, {"text": "electrical", "start": 490, "end": 500, "id": 87, "annotation": null}, {"text": "conductivity", "start": 501, "end": 513, "id": 88, "annotation": null}, {"text": "of", "start": 514, "end": 516, "id": 89, "annotation": null}, {"text": "247S", "start": 517, "end": 521, "id": 90, "annotation": null}, {"text": "/", "start": 522, "end": 523, "id": 91, "annotation": null}, {"text": "cm", "start": 524, "end": 526, "id": 92, "annotation": null}, {"text": "at", "start": 527, "end": 529, "id": 93, "annotation": null}, {"text": "700", "start": 530, "end": 533, "id": 94, "annotation": null}, {"text": "\u00b0", "start": 534, "end": 535, "id": 95, "annotation": null}, {"text": "C", "start": 536, "end": 537, "id": 96, "annotation": null}, {"text": ".", "start": 538, "end": 539, "id": 97, "annotation": null}], [{"text": "Co", "start": 540, "end": 542, "id": 98, "annotation": "DOPANT"}, {"text": "-", "start": 543, "end": 544, "id": 99, "annotation": null}, {"text": "doping", "start": 545, "end": 551, "id": 100, "annotation": null}, {"text": "into", "start": 552, "end": 556, "id": 101, "annotation": null}, {"text": "La0.3Sr0.7TiO3\u2212", "start": 557, "end": 572, "id": 102, "annotation": "BASEMAT"}, {"text": "\u03b4", "start": 573, "end": 574, "id": 103, "annotation": "BASEMAT"}, {"text": "increases", "start": 575, "end": 584, "id": 104, "annotation": null}, {"text": "the", "start": 585, "end": 588, "id": 105, "annotation": null}, {"text": "oxygen", "start": 589, "end": 595, "id": 106, "annotation": null}, {"text": "vacancy", "start": 596, "end": 603, "id": 107, "annotation": null}, {"text": "concentration", "start": 604, "end": 617, "id": 108, "annotation": null}, {"text": "and", "start": 618, "end": 621, "id": 109, "annotation": null}, {"text": "decreases", "start": 622, "end": 631, "id": 110, "annotation": null}, {"text": "the", "start": 632, "end": 635, "id": 111, "annotation": null}, {"text": "migration", "start": 636, "end": 645, "id": 112, "annotation": null}, {"text": "energy", "start": 646, "end": 652, "id": 113, "annotation": null}, {"text": "for", "start": 653, "end": 656, "id": 114, "annotation": null}, {"text": "oxygen", "start": 657, "end": 663, "id": 115, "annotation": null}, {"text": "ions", "start": 664, "end": 668, "id": 116, "annotation": null}, {"text": ",", "start": 669, "end": 670, "id": 117, "annotation": null}, {"text": "leading", "start": 671, "end": 678, "id": 118, "annotation": null}, {"text": "to", "start": 679, "end": 681, "id": 119, "annotation": null}, {"text": "a", "start": 682, "end": 683, "id": 120, "annotation": null}, {"text": "significant", "start": 684, "end": 695, "id": 121, "annotation": null}, {"text": "increase", "start": 696, "end": 704, "id": 122, "annotation": null}, {"text": "in", "start": 705, "end": 707, "id": 123, "annotation": null}, {"text": "ionic", "start": 708, "end": 713, "id": 124, "annotation": null}, {"text": "conductivity", "start": 714, "end": 726, "id": 125, "annotation": null}, {"text": "but", "start": 727, "end": 730, "id": 126, "annotation": null}, {"text": "at", "start": 731, "end": 733, "id": 127, "annotation": null}, {"text": "the", "start": 734, "end": 737, "id": 128, "annotation": null}, {"text": "expense", "start": 738, "end": 745, "id": 129, "annotation": null}, {"text": "of", "start": 746, "end": 748, "id": 130, "annotation": null}, {"text": "some", "start": 749, "end": 753, "id": 131, "annotation": null}, {"text": "electrical", "start": 754, "end": 764, "id": 132, "annotation": null}, {"text": "conductivity", "start": 765, "end": 777, "id": 133, "annotation": null}, {"text": ".", "start": 778, "end": 779, "id": 134, "annotation": null}], [{"text": "The", "start": 780, "end": 783, "id": 135, "annotation": null}, {"text": "electrical", "start": 784, "end": 794, "id": 136, "annotation": null}, {"text": "and", "start": 795, "end": 798, "id": 137, "annotation": null}, {"text": "ionic", "start": 799, "end": 804, "id": 138, "annotation": null}, {"text": "conductivities", "start": 805, "end": 819, "id": 139, "annotation": null}, {"text": "of", "start": 820, "end": 822, "id": 140, "annotation": null}, {"text": "La0.3Sr0.7Co0.07Ti0.93O3\u2212", "start": 823, "end": 848, "id": 141, "annotation": null}, {"text": "\u03b4", "start": 849, "end": 850, "id": 142, "annotation": null}, {"text": "are", "start": 851, "end": 854, "id": 143, "annotation": null}, {"text": "63S", "start": 855, "end": 858, "id": 144, "annotation": null}, {"text": "/", "start": 859, "end": 860, "id": 145, "annotation": null}, {"text": "cm", "start": 861, "end": 863, "id": 146, "annotation": null}, {"text": "and", "start": 864, "end": 867, "id": 147, "annotation": null}, {"text": "6\u00d710\u22123", "start": 868, "end": 874, "id": 148, "annotation": null}, {"text": "S", "start": 875, "end": 876, "id": 149, "annotation": null}, {"text": "/", "start": 877, "end": 878, "id": 150, "annotation": null}, {"text": "cm", "start": 879, "end": 881, "id": 151, "annotation": null}, {"text": ",", "start": 882, "end": 883, "id": 152, "annotation": null}, {"text": "respectively", "start": 884, "end": 896, "id": 153, "annotation": null}, {"text": ",", "start": 897, "end": 898, "id": 154, "annotation": null}, {"text": "at", "start": 899, "end": 901, "id": 155, "annotation": null}, {"text": "700", "start": 902, "end": 905, "id": 156, "annotation": null}, {"text": "\u00b0", "start": 906, "end": 907, "id": 157, "annotation": null}, {"text": "C", "start": 908, "end": 909, "id": 158, "annotation": null}, {"text": ".", "start": 910, "end": 911, "id": 159, "annotation": null}], [{"text": "Both", "start": 912, "end": 916, "id": 160, "annotation": null}, {"text": "La0.3Sr0.7TiO3\u2212", "start": 917, "end": 932, "id": 161, "annotation": null}, {"text": "\u03b4", "start": 933, "end": 934, "id": 162, "annotation": null}, {"text": "and", "start": 935, "end": 938, "id": 163, "annotation": null}, {"text": "La0.3Sr0.7Co0.07Ti0.93O3\u2212", "start": 939, "end": 964, "id": 164, "annotation": null}, {"text": "\u03b4", "start": 965, "end": 966, "id": 165, "annotation": null}, {"text": "show", "start": 967, "end": 971, "id": 166, "annotation": null}, {"text": "relatively", "start": 972, "end": 982, "id": 167, "annotation": null}, {"text": "stable", "start": 983, "end": 989, "id": 168, "annotation": null}, {"text": "electrical", "start": 990, "end": 1000, "id": 169, "annotation": null}, {"text": "conductivities", "start": 1001, "end": 1015, "id": 170, "annotation": null}, {"text": "under", "start": 1016, "end": 1021, "id": 171, "annotation": null}, {"text": "oxygen", "start": 1022, "end": 1028, "id": 172, "annotation": null}, {"text": "partial", "start": 1029, "end": 1036, "id": 173, "annotation": null}, {"text": "pressure", "start": 1037, "end": 1045, "id": 174, "annotation": null}, {"text": "of", "start": 1046, "end": 1048, "id": 175, "annotation": null}, {"text": "10\u221214\u201310\u221219", "start": 1049, "end": 1060, "id": 176, "annotation": null}, {"text": "atm", "start": 1061, "end": 1064, "id": 177, "annotation": null}, {"text": "at", "start": 1065, "end": 1067, "id": 178, "annotation": null}, {"text": "800", "start": 1068, "end": 1071, "id": 179, "annotation": null}, {"text": "\u00b0", "start": 1072, "end": 1073, "id": 180, "annotation": null}, {"text": "C", "start": 1074, "end": 1075, "id": 181, "annotation": null}, {"text": ".", "start": 1076, "end": 1077, "id": 182, "annotation": null}], [{"text": "These", "start": 1078, "end": 1083, "id": 183, "annotation": null}, {"text": "properties", "start": 1084, "end": 1094, "id": 184, "annotation": null}, {"text": "make", "start": 1095, "end": 1099, "id": 185, "annotation": null}, {"text": "La0.3Sr0.7Co0.07Ti0.93O3\u2212", "start": 1100, "end": 1125, "id": 186, "annotation": null}, {"text": "\u03b4", "start": 1126, "end": 1127, "id": 187, "annotation": null}, {"text": "a", "start": 1128, "end": 1129, "id": 188, "annotation": null}, {"text": "promising", "start": 1130, "end": 1139, "id": 189, "annotation": null}, {"text": "anode", "start": 1140, "end": 1145, "id": 190, "annotation": null}, {"text": "candidate", "start": 1146, "end": 1155, "id": 191, "annotation": null}, {"text": "for", "start": 1156, "end": 1159, "id": 192, "annotation": null}, {"text": "solid", "start": 1160, "end": 1165, "id": 193, "annotation": null}, {"text": "oxide", "start": 1166, "end": 1171, "id": 194, "annotation": null}, {"text": "fuel", "start": 1172, "end": 1176, "id": 195, "annotation": null}, {"text": "cells", "start": 1177, "end": 1182, "id": 196, "annotation": null}, {"text": ".", "start": 1183, "end": 1184, "id": 197, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Well-dispersed, uniform Lu2O3 hollow microspheres have been successfully fabricated via a urea-based precipitation method in the presence of colloidal PS microspheres as templates, followed by subsequent heat treatment. The structure, morphology, formation process, and fluorescent properties are well investigated using various techniques. The results indicate that the hollow microspheres can be well indexed to the cubic Lu2O3 phase. The hollow Lu2O3 microspheres with a uniform diameter of about 2.2 \u03bcm maintain the spherical morphology and good dispersion of the PS spheres template. The shell of the hollow microspheres consists of numerous nanocrystals with the thickness of approximately 20 nm. Moreover, the possible formation mechanism of evolution from the PS spheres to the amorphous precursor and to the final hollow Lu2O3 microspheres has also been proposed. Under 980 nm laser diode excitation, Lu2O3:Yb3+/Tm3+, Lu2O3:Er3+ and Lu2O3:Yb3+/Er3+ products are mainly dominated by blue, green and red light emissions, respectively. The ratio of the intensity of green luminescence to that of red luminescence decreases with an increase of the concentration of Yb3+ in Lu2O3:Er3+ samples. Furthermore, the UC white light was successfully obtained in the Lu2O3:Yb3+/Er3+/Tm3+ system by adjusting the relative doping concentration of Yb3+, Er3+ and Tm3+. The obtained UC white light has CIE-x = 0.3478 and CIE-y = 0.3143, which are very close to the standard equal energy white light illuminate (x = 0.33, y = 0.33). Because of abundant luminescent colors from RGB to white in Lu2O3:Yb3+/Er3+/Tm3+ samples under 980 nm laser diode (LD) excitation, they can potentially be used as fluorophores in the fields of color displays, backlights, UC lasers, photonics, and biomedicine.", "meta": {"doi": "10.1039/C3NJ00913K"}, "_input_hash": -2010449521, "_task_hash": 804588924, "tokens": [[{"text": "Well", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "-", "start": 5, "end": 6, "id": 1, "annotation": null}, {"text": "dispersed", "start": 7, "end": 16, "id": 2, "annotation": null}, {"text": ",", "start": 17, "end": 18, "id": 3, "annotation": null}, {"text": "uniform", "start": 19, "end": 26, "id": 4, "annotation": null}, {"text": "Lu2O3", "start": 27, "end": 32, "id": 5, "annotation": null}, {"text": "hollow", "start": 33, "end": 39, "id": 6, "annotation": null}, {"text": "microspheres", "start": 40, "end": 52, "id": 7, "annotation": null}, {"text": "have", "start": 53, "end": 57, "id": 8, "annotation": null}, {"text": "been", "start": 58, "end": 62, "id": 9, "annotation": null}, {"text": "successfully", "start": 63, "end": 75, "id": 10, "annotation": null}, {"text": "fabricated", "start": 76, "end": 86, "id": 11, "annotation": null}, {"text": "via", "start": 87, "end": 90, "id": 12, "annotation": null}, {"text": "a", "start": 91, "end": 92, "id": 13, "annotation": null}, {"text": "urea", "start": 93, "end": 97, "id": 14, "annotation": null}, {"text": "-", "start": 98, "end": 99, "id": 15, "annotation": null}, {"text": "based", "start": 100, "end": 105, "id": 16, "annotation": null}, {"text": "precipitation", "start": 106, "end": 119, "id": 17, "annotation": null}, {"text": "method", "start": 120, "end": 126, "id": 18, "annotation": null}, {"text": "in", "start": 127, "end": 129, "id": 19, "annotation": null}, {"text": "the", "start": 130, "end": 133, "id": 20, "annotation": null}, {"text": "presence", "start": 134, "end": 142, "id": 21, "annotation": null}, {"text": "of", "start": 143, "end": 145, "id": 22, "annotation": null}, {"text": "colloidal", "start": 146, "end": 155, "id": 23, "annotation": null}, {"text": "PS", "start": 156, "end": 158, "id": 24, "annotation": null}, {"text": "microspheres", "start": 159, "end": 171, "id": 25, "annotation": null}, {"text": "as", "start": 172, "end": 174, "id": 26, "annotation": null}, {"text": "templates", "start": 175, "end": 184, "id": 27, "annotation": null}, {"text": ",", "start": 185, "end": 186, "id": 28, "annotation": null}, {"text": "followed", "start": 187, "end": 195, "id": 29, "annotation": null}, {"text": "by", "start": 196, "end": 198, "id": 30, "annotation": null}, {"text": "subsequent", "start": 199, "end": 209, "id": 31, "annotation": null}, {"text": "heat", "start": 210, "end": 214, "id": 32, "annotation": null}, {"text": "treatment", "start": 215, "end": 224, "id": 33, "annotation": null}, {"text": ".", "start": 225, "end": 226, "id": 34, "annotation": null}], [{"text": "The", "start": 227, "end": 230, "id": 35, "annotation": null}, {"text": "structure", "start": 231, "end": 240, "id": 36, "annotation": null}, {"text": ",", "start": 241, "end": 242, "id": 37, "annotation": null}, {"text": "morphology", "start": 243, "end": 253, "id": 38, "annotation": null}, {"text": ",", "start": 254, "end": 255, "id": 39, "annotation": null}, {"text": "formation", "start": 256, "end": 265, "id": 40, "annotation": null}, {"text": "process", "start": 266, "end": 273, "id": 41, "annotation": null}, {"text": ",", "start": 274, "end": 275, "id": 42, "annotation": null}, {"text": "and", "start": 276, "end": 279, "id": 43, "annotation": null}, {"text": "fluorescent", "start": 280, "end": 291, "id": 44, "annotation": null}, {"text": "properties", "start": 292, "end": 302, "id": 45, "annotation": null}, {"text": "are", "start": 303, "end": 306, "id": 46, "annotation": null}, {"text": "well", "start": 307, "end": 311, "id": 47, "annotation": null}, {"text": "investigated", "start": 312, "end": 324, "id": 48, "annotation": null}, {"text": "using", "start": 325, "end": 330, "id": 49, "annotation": null}, {"text": "various", "start": 331, "end": 338, "id": 50, "annotation": null}, {"text": "techniques", "start": 339, "end": 349, "id": 51, "annotation": null}, {"text": ".", "start": 350, "end": 351, "id": 52, "annotation": null}], [{"text": "The", "start": 352, "end": 355, "id": 53, "annotation": null}, {"text": "results", "start": 356, "end": 363, "id": 54, "annotation": null}, {"text": "indicate", "start": 364, "end": 372, "id": 55, "annotation": null}, {"text": "that", "start": 373, "end": 377, "id": 56, "annotation": null}, {"text": "the", "start": 378, "end": 381, "id": 57, "annotation": null}, {"text": "hollow", "start": 382, "end": 388, "id": 58, "annotation": null}, {"text": "microspheres", "start": 389, "end": 401, "id": 59, "annotation": null}, {"text": "can", "start": 402, "end": 405, "id": 60, "annotation": null}, {"text": "be", "start": 406, "end": 408, "id": 61, "annotation": null}, {"text": "well", "start": 409, "end": 413, "id": 62, "annotation": null}, {"text": "indexed", "start": 414, "end": 421, "id": 63, "annotation": null}, {"text": "to", "start": 422, "end": 424, "id": 64, "annotation": null}, {"text": "the", "start": 425, "end": 428, "id": 65, "annotation": null}, {"text": "cubic", "start": 429, "end": 434, "id": 66, "annotation": null}, {"text": "Lu2O3", "start": 435, "end": 440, "id": 67, "annotation": null}, {"text": "phase", "start": 441, "end": 446, "id": 68, "annotation": null}, {"text": ".", "start": 447, "end": 448, "id": 69, "annotation": null}], [{"text": "The", "start": 449, "end": 452, "id": 70, "annotation": null}, {"text": "hollow", "start": 453, "end": 459, "id": 71, "annotation": null}, {"text": "Lu2O3", "start": 460, "end": 465, "id": 72, "annotation": null}, {"text": "microspheres", "start": 466, "end": 478, "id": 73, "annotation": null}, {"text": "with", "start": 479, "end": 483, "id": 74, "annotation": null}, {"text": "a", "start": 484, "end": 485, "id": 75, "annotation": null}, {"text": "uniform", "start": 486, "end": 493, "id": 76, "annotation": null}, {"text": "diameter", "start": 494, "end": 502, "id": 77, "annotation": null}, {"text": "of", "start": 503, "end": 505, "id": 78, "annotation": null}, {"text": "about", "start": 506, "end": 511, "id": 79, "annotation": null}, {"text": "2.2", "start": 512, "end": 515, "id": 80, "annotation": null}, {"text": "\u03bcm", "start": 516, "end": 518, "id": 81, "annotation": null}, {"text": "maintain", "start": 519, "end": 527, "id": 82, "annotation": null}, {"text": "the", "start": 528, "end": 531, "id": 83, "annotation": null}, {"text": "spherical", "start": 532, "end": 541, "id": 84, "annotation": null}, {"text": "morphology", "start": 542, "end": 552, "id": 85, "annotation": null}, {"text": "and", "start": 553, "end": 556, "id": 86, "annotation": null}, {"text": "good", "start": 557, "end": 561, "id": 87, "annotation": null}, {"text": "dispersion", "start": 562, "end": 572, "id": 88, "annotation": null}, {"text": "of", "start": 573, "end": 575, "id": 89, "annotation": null}, {"text": "the", "start": 576, "end": 579, "id": 90, "annotation": null}, {"text": "PS", "start": 580, "end": 582, "id": 91, "annotation": null}, {"text": "spheres", "start": 583, "end": 590, "id": 92, "annotation": null}, {"text": "template", "start": 591, "end": 599, "id": 93, "annotation": null}, {"text": ".", "start": 600, "end": 601, "id": 94, "annotation": null}], [{"text": "The", "start": 602, "end": 605, "id": 95, "annotation": null}, {"text": "shell", "start": 606, "end": 611, "id": 96, "annotation": null}, {"text": "of", "start": 612, "end": 614, "id": 97, "annotation": null}, {"text": "the", "start": 615, "end": 618, "id": 98, "annotation": null}, {"text": "hollow", "start": 619, "end": 625, "id": 99, "annotation": null}, {"text": "microspheres", "start": 626, "end": 638, "id": 100, "annotation": null}, {"text": "consists", "start": 639, "end": 647, "id": 101, "annotation": null}, {"text": "of", "start": 648, "end": 650, "id": 102, "annotation": null}, {"text": "numerous", "start": 651, "end": 659, "id": 103, "annotation": null}, {"text": "nanocrystals", "start": 660, "end": 672, "id": 104, "annotation": null}, {"text": "with", "start": 673, "end": 677, "id": 105, "annotation": null}, {"text": "the", "start": 678, "end": 681, "id": 106, "annotation": null}, {"text": "thickness", "start": 682, "end": 691, "id": 107, "annotation": null}, {"text": "of", "start": 692, "end": 694, "id": 108, "annotation": null}, {"text": "approximately", "start": 695, "end": 708, "id": 109, "annotation": null}, {"text": "20", "start": 709, "end": 711, "id": 110, "annotation": null}, {"text": "nm", "start": 712, "end": 714, "id": 111, "annotation": null}, {"text": ".", "start": 715, "end": 716, "id": 112, "annotation": null}], [{"text": "Moreover", "start": 717, "end": 725, "id": 113, "annotation": null}, {"text": ",", "start": 726, "end": 727, "id": 114, "annotation": null}, {"text": "the", "start": 728, "end": 731, "id": 115, "annotation": null}, {"text": "possible", "start": 732, "end": 740, "id": 116, "annotation": null}, {"text": "formation", "start": 741, "end": 750, "id": 117, "annotation": null}, {"text": "mechanism", "start": 751, "end": 760, "id": 118, "annotation": null}, {"text": "of", "start": 761, "end": 763, "id": 119, "annotation": null}, {"text": "evolution", "start": 764, "end": 773, "id": 120, "annotation": null}, {"text": "from", "start": 774, "end": 778, "id": 121, "annotation": null}, {"text": "the", "start": 779, "end": 782, "id": 122, "annotation": null}, {"text": "PS", "start": 783, "end": 785, "id": 123, "annotation": null}, {"text": "spheres", "start": 786, "end": 793, "id": 124, "annotation": null}, {"text": "to", "start": 794, "end": 796, "id": 125, "annotation": null}, {"text": "the", "start": 797, "end": 800, "id": 126, "annotation": null}, {"text": "amorphous", "start": 801, "end": 810, "id": 127, "annotation": null}, {"text": "precursor", "start": 811, "end": 820, "id": 128, "annotation": null}, {"text": "and", "start": 821, "end": 824, "id": 129, "annotation": null}, {"text": "to", "start": 825, "end": 827, "id": 130, "annotation": null}, {"text": "the", "start": 828, "end": 831, "id": 131, "annotation": null}, {"text": "final", "start": 832, "end": 837, "id": 132, "annotation": null}, {"text": "hollow", "start": 838, "end": 844, "id": 133, "annotation": null}, {"text": "Lu2O3", "start": 845, "end": 850, "id": 134, "annotation": null}, {"text": "microspheres", "start": 851, "end": 863, "id": 135, "annotation": null}, {"text": "has", "start": 864, "end": 867, "id": 136, "annotation": null}, {"text": "also", "start": 868, "end": 872, "id": 137, "annotation": null}, {"text": "been", "start": 873, "end": 877, "id": 138, "annotation": null}, {"text": "proposed", "start": 878, "end": 886, "id": 139, "annotation": null}, {"text": ".", "start": 887, "end": 888, "id": 140, "annotation": null}], [{"text": "Under", "start": 889, "end": 894, "id": 141, "annotation": null}, {"text": "980", "start": 895, "end": 898, "id": 142, "annotation": null}, {"text": "nm", "start": 899, "end": 901, "id": 143, "annotation": null}, {"text": "laser", "start": 902, "end": 907, "id": 144, "annotation": null}, {"text": "diode", "start": 908, "end": 913, "id": 145, "annotation": null}, {"text": "excitation", "start": 914, "end": 924, "id": 146, "annotation": null}, {"text": ",", "start": 925, "end": 926, "id": 147, "annotation": null}, {"text": "Lu2O3", "start": 927, "end": 932, "id": 148, "annotation": "BASEMAT"}, {"text": ":", "start": 933, "end": 934, "id": 149, "annotation": null}, {"text": "Yb3+/Tm3", "start": 935, "end": 943, "id": 150, "annotation": "DOPANT"}, {"text": "+", "start": 944, "end": 945, "id": 151, "annotation": "DOPANT"}, {"text": ",", "start": 946, "end": 947, "id": 152, "annotation": null}, {"text": "Lu2O3", "start": 948, "end": 953, "id": 153, "annotation": "BASEMAT"}, {"text": ":", "start": 954, "end": 955, "id": 154, "annotation": null}, {"text": "Er3", "start": 956, "end": 959, "id": 155, "annotation": "DOPANT"}, {"text": "+", "start": 960, "end": 961, "id": 156, "annotation": "DOPANT"}, {"text": "and", "start": 962, "end": 965, "id": 157, "annotation": null}, {"text": "Lu2O3", "start": 966, "end": 971, "id": 158, "annotation": "BASEMAT"}, {"text": ":", "start": 972, "end": 973, "id": 159, "annotation": null}, {"text": "Yb3+/Er3", "start": 974, "end": 982, "id": 160, "annotation": "DOPANT"}, {"text": "+", "start": 983, "end": 984, "id": 161, "annotation": "DOPANT"}, {"text": "products", "start": 985, "end": 993, "id": 162, "annotation": null}, {"text": "are", "start": 994, "end": 997, "id": 163, "annotation": null}, {"text": "mainly", "start": 998, "end": 1004, "id": 164, "annotation": null}, {"text": "dominated", "start": 1005, "end": 1014, "id": 165, "annotation": null}, {"text": "by", "start": 1015, "end": 1017, "id": 166, "annotation": null}, {"text": "blue", "start": 1018, "end": 1022, "id": 167, "annotation": null}, {"text": ",", "start": 1023, "end": 1024, "id": 168, "annotation": null}, {"text": "green", "start": 1025, "end": 1030, "id": 169, "annotation": null}, {"text": "and", "start": 1031, "end": 1034, "id": 170, "annotation": null}, {"text": "red", "start": 1035, "end": 1038, "id": 171, "annotation": null}, {"text": "light", "start": 1039, "end": 1044, "id": 172, "annotation": null}, {"text": "emissions", "start": 1045, "end": 1054, "id": 173, "annotation": null}, {"text": ",", "start": 1055, "end": 1056, "id": 174, "annotation": null}, {"text": "respectively", "start": 1057, "end": 1069, "id": 175, "annotation": null}, {"text": ".", "start": 1070, "end": 1071, "id": 176, "annotation": null}], [{"text": "The", "start": 1072, "end": 1075, "id": 177, "annotation": null}, {"text": "ratio", "start": 1076, "end": 1081, "id": 178, "annotation": null}, {"text": "of", "start": 1082, "end": 1084, "id": 179, "annotation": null}, {"text": "the", "start": 1085, "end": 1088, "id": 180, "annotation": null}, {"text": "intensity", "start": 1089, "end": 1098, "id": 181, "annotation": null}, {"text": "of", "start": 1099, "end": 1101, "id": 182, "annotation": null}, {"text": "green", "start": 1102, "end": 1107, "id": 183, "annotation": null}, {"text": "luminescence", "start": 1108, "end": 1120, "id": 184, "annotation": null}, {"text": "to", "start": 1121, "end": 1123, "id": 185, "annotation": null}, {"text": "that", "start": 1124, "end": 1128, "id": 186, "annotation": null}, {"text": "of", "start": 1129, "end": 1131, "id": 187, "annotation": null}, {"text": "red", "start": 1132, "end": 1135, "id": 188, "annotation": null}, {"text": "luminescence", "start": 1136, "end": 1148, "id": 189, "annotation": null}, {"text": "decreases", "start": 1149, "end": 1158, "id": 190, "annotation": null}, {"text": "with", "start": 1159, "end": 1163, "id": 191, "annotation": null}, {"text": "an", "start": 1164, "end": 1166, "id": 192, "annotation": null}, {"text": "increase", "start": 1167, "end": 1175, "id": 193, "annotation": null}, {"text": "of", "start": 1176, "end": 1178, "id": 194, "annotation": null}, {"text": "the", "start": 1179, "end": 1182, "id": 195, "annotation": null}, {"text": "concentration", "start": 1183, "end": 1196, "id": 196, "annotation": null}, {"text": "of", "start": 1197, "end": 1199, "id": 197, "annotation": null}, {"text": "Yb3", "start": 1200, "end": 1203, "id": 198, "annotation": null}, {"text": "+", "start": 1204, "end": 1205, "id": 199, "annotation": null}, {"text": "in", "start": 1206, "end": 1208, "id": 200, "annotation": null}, {"text": "Lu2O3", "start": 1209, "end": 1214, "id": 201, "annotation": "BASEMAT"}, {"text": ":", "start": 1215, "end": 1216, "id": 202, "annotation": null}, {"text": "Er3", "start": 1217, "end": 1220, "id": 203, "annotation": "DOPANT"}, {"text": "+", "start": 1221, "end": 1222, "id": 204, "annotation": "DOPANT"}, {"text": "samples", "start": 1223, "end": 1230, "id": 205, "annotation": null}, {"text": ".", "start": 1231, "end": 1232, "id": 206, "annotation": null}], [{"text": "Furthermore", "start": 1233, "end": 1244, "id": 207, "annotation": null}, {"text": ",", "start": 1245, "end": 1246, "id": 208, "annotation": null}, {"text": "the", "start": 1247, "end": 1250, "id": 209, "annotation": null}, {"text": "UC", "start": 1251, "end": 1253, "id": 210, "annotation": null}, {"text": "white", "start": 1254, "end": 1259, "id": 211, "annotation": null}, {"text": "light", "start": 1260, "end": 1265, "id": 212, "annotation": null}, {"text": "was", "start": 1266, "end": 1269, "id": 213, "annotation": null}, {"text": "successfully", "start": 1270, "end": 1282, "id": 214, "annotation": null}, {"text": "obtained", "start": 1283, "end": 1291, "id": 215, "annotation": null}, {"text": "in", "start": 1292, "end": 1294, "id": 216, "annotation": null}, {"text": "the", "start": 1295, "end": 1298, "id": 217, "annotation": null}, {"text": "Lu2O3", "start": 1299, "end": 1304, "id": 218, "annotation": "BASEMAT"}, {"text": ":", "start": 1305, "end": 1306, "id": 219, "annotation": null}, {"text": "Yb3+/Er3+/Tm3", "start": 1307, "end": 1320, "id": 220, "annotation": "DOPANT"}, {"text": "+", "start": 1321, "end": 1322, "id": 221, "annotation": "DOPANT"}, {"text": "system", "start": 1323, "end": 1329, "id": 222, "annotation": null}, {"text": "by", "start": 1330, "end": 1332, "id": 223, "annotation": null}, {"text": "adjusting", "start": 1333, "end": 1342, "id": 224, "annotation": null}, {"text": "the", "start": 1343, "end": 1346, "id": 225, "annotation": null}, {"text": "relative", "start": 1347, "end": 1355, "id": 226, "annotation": null}, {"text": "doping", "start": 1356, "end": 1362, "id": 227, "annotation": null}, {"text": "concentration", "start": 1363, "end": 1376, "id": 228, "annotation": null}, {"text": "of", "start": 1377, "end": 1379, "id": 229, "annotation": null}, {"text": "Yb3", "start": 1380, "end": 1383, "id": 230, "annotation": "DOPANT"}, {"text": "+", "start": 1384, "end": 1385, "id": 231, "annotation": "DOPANT"}, {"text": ",", "start": 1386, "end": 1387, "id": 232, "annotation": null}, {"text": "Er3", "start": 1388, "end": 1391, "id": 233, "annotation": "DOPANT"}, {"text": "+", "start": 1392, "end": 1393, "id": 234, "annotation": "DOPANT"}, {"text": "and", "start": 1394, "end": 1397, "id": 235, "annotation": null}, {"text": "Tm3", "start": 1398, "end": 1401, "id": 236, "annotation": "DOPANT"}, {"text": "+", "start": 1402, "end": 1403, "id": 237, "annotation": "DOPANT"}, {"text": ".", "start": 1404, "end": 1405, "id": 238, "annotation": null}], [{"text": "The", "start": 1406, "end": 1409, "id": 239, "annotation": null}, {"text": "obtained", "start": 1410, "end": 1418, "id": 240, "annotation": null}, {"text": "UC", "start": 1419, "end": 1421, "id": 241, "annotation": null}, {"text": "white", "start": 1422, "end": 1427, "id": 242, "annotation": null}, {"text": "light", "start": 1428, "end": 1433, "id": 243, "annotation": null}, {"text": "has", "start": 1434, "end": 1437, "id": 244, "annotation": null}, {"text": "CIE", "start": 1438, "end": 1441, "id": 245, "annotation": null}, {"text": "-", "start": 1442, "end": 1443, "id": 246, "annotation": null}, {"text": "x", "start": 1444, "end": 1445, "id": 247, "annotation": null}, {"text": "=", "start": 1446, "end": 1447, "id": 248, "annotation": null}, {"text": "0.3478", "start": 1448, "end": 1454, "id": 249, "annotation": null}, {"text": "and", "start": 1455, "end": 1458, "id": 250, "annotation": null}, {"text": "CIE", "start": 1459, "end": 1462, "id": 251, "annotation": null}, {"text": "-", "start": 1463, "end": 1464, "id": 252, "annotation": null}, {"text": "y", "start": 1465, "end": 1466, "id": 253, "annotation": null}, {"text": "=", "start": 1467, "end": 1468, "id": 254, "annotation": null}, {"text": "0.3143", "start": 1469, "end": 1475, "id": 255, "annotation": null}, {"text": ",", "start": 1476, "end": 1477, "id": 256, "annotation": null}, {"text": "which", "start": 1478, "end": 1483, "id": 257, "annotation": null}, {"text": "are", "start": 1484, "end": 1487, "id": 258, "annotation": null}, {"text": "very", "start": 1488, "end": 1492, "id": 259, "annotation": null}, {"text": "close", "start": 1493, "end": 1498, "id": 260, "annotation": null}, {"text": "to", "start": 1499, "end": 1501, "id": 261, "annotation": null}, {"text": "the", "start": 1502, "end": 1505, "id": 262, "annotation": null}, {"text": "standard", "start": 1506, "end": 1514, "id": 263, "annotation": null}, {"text": "equal", "start": 1515, "end": 1520, "id": 264, "annotation": null}, {"text": "energy", "start": 1521, "end": 1527, "id": 265, "annotation": null}, {"text": "white", "start": 1528, "end": 1533, "id": 266, "annotation": null}, {"text": "light", "start": 1534, "end": 1539, "id": 267, "annotation": null}, {"text": "illuminate", "start": 1540, "end": 1550, "id": 268, "annotation": null}, {"text": "(", "start": 1551, "end": 1552, "id": 269, "annotation": null}, {"text": "x", "start": 1553, "end": 1554, "id": 270, "annotation": null}, {"text": "=", "start": 1555, "end": 1556, "id": 271, "annotation": null}, {"text": "0.33", "start": 1557, "end": 1561, "id": 272, "annotation": null}, {"text": ",", "start": 1562, "end": 1563, "id": 273, "annotation": null}, {"text": "y", "start": 1564, "end": 1565, "id": 274, "annotation": null}, {"text": "=", "start": 1566, "end": 1567, "id": 275, "annotation": null}, {"text": "0.33", "start": 1568, "end": 1572, "id": 276, "annotation": null}, {"text": ")", "start": 1573, "end": 1574, "id": 277, "annotation": null}, {"text": ".", "start": 1575, "end": 1576, "id": 278, "annotation": null}], [{"text": "Because", "start": 1577, "end": 1584, "id": 279, "annotation": null}, {"text": "of", "start": 1585, "end": 1587, "id": 280, "annotation": null}, {"text": "abundant", "start": 1588, "end": 1596, "id": 281, "annotation": null}, {"text": "luminescent", "start": 1597, "end": 1608, "id": 282, "annotation": null}, {"text": "colors", "start": 1609, "end": 1615, "id": 283, "annotation": null}, {"text": "from", "start": 1616, "end": 1620, "id": 284, "annotation": null}, {"text": "RGB", "start": 1621, "end": 1624, "id": 285, "annotation": null}, {"text": "to", "start": 1625, "end": 1627, "id": 286, "annotation": null}, {"text": "white", "start": 1628, "end": 1633, "id": 287, "annotation": null}, {"text": "in", "start": 1634, "end": 1636, "id": 288, "annotation": null}, {"text": "Lu2O3", "start": 1637, "end": 1642, "id": 289, "annotation": "BASEMAT"}, {"text": ":", "start": 1643, "end": 1644, "id": 290, "annotation": null}, {"text": "Yb3+/Er3+/Tm3", "start": 1645, "end": 1658, "id": 291, "annotation": "DOPANT"}, {"text": "+", "start": 1659, "end": 1660, "id": 292, "annotation": "DOPANT"}, {"text": "samples", "start": 1661, "end": 1668, "id": 293, "annotation": null}, {"text": "under", "start": 1669, "end": 1674, "id": 294, "annotation": null}, {"text": "980", "start": 1675, "end": 1678, "id": 295, "annotation": null}, {"text": "nm", "start": 1679, "end": 1681, "id": 296, "annotation": null}, {"text": "laser", "start": 1682, "end": 1687, "id": 297, "annotation": null}, {"text": "diode", "start": 1688, "end": 1693, "id": 298, "annotation": null}, {"text": "(", "start": 1694, "end": 1695, "id": 299, "annotation": null}, {"text": "LD", "start": 1696, "end": 1698, "id": 300, "annotation": null}, {"text": ")", "start": 1699, "end": 1700, "id": 301, "annotation": null}, {"text": "excitation", "start": 1701, "end": 1711, "id": 302, "annotation": null}, {"text": ",", "start": 1712, "end": 1713, "id": 303, "annotation": null}, {"text": "they", "start": 1714, "end": 1718, "id": 304, "annotation": null}, {"text": "can", "start": 1719, "end": 1722, "id": 305, "annotation": null}, {"text": "potentially", "start": 1723, "end": 1734, "id": 306, "annotation": null}, {"text": "be", "start": 1735, "end": 1737, "id": 307, "annotation": null}, {"text": "used", "start": 1738, "end": 1742, "id": 308, "annotation": null}, {"text": "as", "start": 1743, "end": 1745, "id": 309, "annotation": null}, {"text": "fluorophores", "start": 1746, "end": 1758, "id": 310, "annotation": null}, {"text": "in", "start": 1759, "end": 1761, "id": 311, "annotation": null}, {"text": "the", "start": 1762, "end": 1765, "id": 312, "annotation": null}, {"text": "fields", "start": 1766, "end": 1772, "id": 313, "annotation": null}, {"text": "of", "start": 1773, "end": 1775, "id": 314, "annotation": null}, {"text": "color", "start": 1776, "end": 1781, "id": 315, "annotation": null}, {"text": "displays", "start": 1782, "end": 1790, "id": 316, "annotation": null}, {"text": ",", "start": 1791, "end": 1792, "id": 317, "annotation": null}, {"text": "backlights", "start": 1793, "end": 1803, "id": 318, "annotation": null}, {"text": ",", "start": 1804, "end": 1805, "id": 319, "annotation": null}, {"text": "UC", "start": 1806, "end": 1808, "id": 320, "annotation": null}, {"text": "lasers", "start": 1809, "end": 1815, "id": 321, "annotation": null}, {"text": ",", "start": 1816, "end": 1817, "id": 322, "annotation": null}, {"text": "photonics", "start": 1818, "end": 1827, "id": 323, "annotation": null}, {"text": ",", "start": 1828, "end": 1829, "id": 324, "annotation": null}, {"text": "and", "start": 1830, "end": 1833, "id": 325, "annotation": null}, {"text": "biomedicine", "start": 1834, "end": 1845, "id": 326, "annotation": null}, {"text": ".", "start": 1846, "end": 1847, "id": 327, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "In recent years, intensive research efforts around the world have been devoted to lanthanide-doped upconversion nanoparticles because of their promising application in biological imaging. However, the overheating issue caused upon 980 nm laser irradiation in conventional Yb3+-based nanoparticles is needed to be addressed, and thus Nd3+/Yb3+-based upconversion nanoparticles with 808 nm excitation are investigated as promising alternatives because they can significantly decrease the optical absorption of water. Due to the cascade sensitization process, Nd3+/Yb3+-based upconversion nanoparticles, however, always suffer from the intrinsic low luminescence efficiency. To solve this problem, here we proposed the active-core/active-shell nanostructured design as an effective strategy for upconversion improvement of Nd3+/Yb3+-based upconversion nanoparticles. We found that after growing an optimized active-shell containing both Nd3+ and Yb3+ ions, a maximum 522-fold enhancement in upconversion luminescence was realized upon excitation at 808 nm. These findings would be of great importance to the community developing high-performance upconversion nanoparticles for bioimaging applications.", "meta": {"doi": "10.1039/C5TC01438G"}, "_input_hash": -683224048, "_task_hash": 279255908, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "recent", "start": 3, "end": 9, "id": 1, "annotation": null}, {"text": "years", "start": 10, "end": 15, "id": 2, "annotation": null}, {"text": ",", "start": 16, "end": 17, "id": 3, "annotation": null}, {"text": "intensive", "start": 18, "end": 27, "id": 4, "annotation": null}, {"text": "research", "start": 28, "end": 36, "id": 5, "annotation": null}, {"text": "efforts", "start": 37, "end": 44, "id": 6, "annotation": null}, {"text": "around", "start": 45, "end": 51, "id": 7, "annotation": null}, {"text": "the", "start": 52, "end": 55, "id": 8, "annotation": null}, {"text": "world", "start": 56, "end": 61, "id": 9, "annotation": null}, {"text": "have", "start": 62, "end": 66, "id": 10, "annotation": null}, {"text": "been", "start": 67, "end": 71, "id": 11, "annotation": null}, {"text": "devoted", "start": 72, "end": 79, "id": 12, "annotation": null}, {"text": "to", "start": 80, "end": 82, "id": 13, "annotation": null}, {"text": "lanthanide", "start": 83, "end": 93, "id": 14, "annotation": "DOPANT"}, {"text": "-", "start": 94, "end": 95, "id": 15, "annotation": null}, {"text": "doped", "start": 96, "end": 101, "id": 16, "annotation": null}, {"text": "upconversion", "start": 102, "end": 114, "id": 17, "annotation": null}, {"text": "nanoparticles", "start": 115, "end": 128, "id": 18, "annotation": "BASEMAT"}, {"text": "because", "start": 129, "end": 136, "id": 19, "annotation": null}, {"text": "of", "start": 137, "end": 139, "id": 20, "annotation": null}, {"text": "their", "start": 140, "end": 145, "id": 21, "annotation": null}, {"text": "promising", "start": 146, "end": 155, "id": 22, "annotation": null}, {"text": "application", "start": 156, "end": 167, "id": 23, "annotation": null}, {"text": "in", "start": 168, "end": 170, "id": 24, "annotation": null}, {"text": "biological", "start": 171, "end": 181, "id": 25, "annotation": null}, {"text": "imaging", "start": 182, "end": 189, "id": 26, "annotation": null}, {"text": ".", "start": 190, "end": 191, "id": 27, "annotation": null}], [{"text": "However", "start": 192, "end": 199, "id": 28, "annotation": null}, {"text": ",", "start": 200, "end": 201, "id": 29, "annotation": null}, {"text": "the", "start": 202, "end": 205, "id": 30, "annotation": null}, {"text": "overheating", "start": 206, "end": 217, "id": 31, "annotation": null}, {"text": "issue", "start": 218, "end": 223, "id": 32, "annotation": null}, {"text": "caused", "start": 224, "end": 230, "id": 33, "annotation": null}, {"text": "upon", "start": 231, "end": 235, "id": 34, "annotation": null}, {"text": "980", "start": 236, "end": 239, "id": 35, "annotation": null}, {"text": "nm", "start": 240, "end": 242, "id": 36, "annotation": null}, {"text": "laser", "start": 243, "end": 248, "id": 37, "annotation": null}, {"text": "irradiation", "start": 249, "end": 260, "id": 38, "annotation": null}, {"text": "in", "start": 261, "end": 263, "id": 39, "annotation": null}, {"text": "conventional", "start": 264, "end": 276, "id": 40, "annotation": null}, {"text": "Yb3", "start": 277, "end": 280, "id": 41, "annotation": "DOPANT"}, {"text": "+", "start": 281, "end": 282, "id": 42, "annotation": "DOPANT"}, {"text": "-based", "start": 283, "end": 289, "id": 43, "annotation": null}, {"text": "nanoparticles", "start": 290, "end": 303, "id": 44, "annotation": null}, {"text": "is", "start": 304, "end": 306, "id": 45, "annotation": null}, {"text": "needed", "start": 307, "end": 313, "id": 46, "annotation": null}, {"text": "to", "start": 314, "end": 316, "id": 47, "annotation": null}, {"text": "be", "start": 317, "end": 319, "id": 48, "annotation": null}, {"text": "addressed", "start": 320, "end": 329, "id": 49, "annotation": null}, {"text": ",", "start": 330, "end": 331, "id": 50, "annotation": null}, {"text": "and", "start": 332, "end": 335, "id": 51, "annotation": null}, {"text": "thus", "start": 336, "end": 340, "id": 52, "annotation": null}, {"text": "Nd3+/Yb3", "start": 341, "end": 349, "id": 53, "annotation": "DOPANT"}, {"text": "+", "start": 350, "end": 351, "id": 54, "annotation": "DOPANT"}, {"text": "-based", "start": 352, "end": 358, "id": 55, "annotation": null}, {"text": "upconversion", "start": 359, "end": 371, "id": 56, "annotation": null}, {"text": "nanoparticles", "start": 372, "end": 385, "id": 57, "annotation": "BASEMAT"}, {"text": "with", "start": 386, "end": 390, "id": 58, "annotation": null}, {"text": "808", "start": 391, "end": 394, "id": 59, "annotation": null}, {"text": "nm", "start": 395, "end": 397, "id": 60, "annotation": null}, {"text": "excitation", "start": 398, "end": 408, "id": 61, "annotation": null}, {"text": "are", "start": 409, "end": 412, "id": 62, "annotation": null}, {"text": "investigated", "start": 413, "end": 425, "id": 63, "annotation": null}, {"text": "as", "start": 426, "end": 428, "id": 64, "annotation": null}, {"text": "promising", "start": 429, "end": 438, "id": 65, "annotation": null}, {"text": "alternatives", "start": 439, "end": 451, "id": 66, "annotation": null}, {"text": "because", "start": 452, "end": 459, "id": 67, "annotation": null}, {"text": "they", "start": 460, "end": 464, "id": 68, "annotation": null}, {"text": "can", "start": 465, "end": 468, "id": 69, "annotation": null}, {"text": "significantly", "start": 469, "end": 482, "id": 70, "annotation": null}, {"text": "decrease", "start": 483, "end": 491, "id": 71, "annotation": null}, {"text": "the", "start": 492, "end": 495, "id": 72, "annotation": null}, {"text": "optical", "start": 496, "end": 503, "id": 73, "annotation": null}, {"text": "absorption", "start": 504, "end": 514, "id": 74, "annotation": null}, {"text": "of", "start": 515, "end": 517, "id": 75, "annotation": null}, {"text": "water", "start": 518, "end": 523, "id": 76, "annotation": null}, {"text": ".", "start": 524, "end": 525, "id": 77, "annotation": null}], [{"text": "Due", "start": 526, "end": 529, "id": 78, "annotation": null}, {"text": "to", "start": 530, "end": 532, "id": 79, "annotation": null}, {"text": "the", "start": 533, "end": 536, "id": 80, "annotation": null}, {"text": "cascade", "start": 537, "end": 544, "id": 81, "annotation": null}, {"text": "sensitization", "start": 545, "end": 558, "id": 82, "annotation": null}, {"text": "process", "start": 559, "end": 566, "id": 83, "annotation": null}, {"text": ",", "start": 567, "end": 568, "id": 84, "annotation": null}, {"text": "Nd3+/Yb3", "start": 569, "end": 577, "id": 85, "annotation": "DOPANT"}, {"text": "+", "start": 578, "end": 579, "id": 86, "annotation": "DOPANT"}, {"text": "-based", "start": 580, "end": 586, "id": 87, "annotation": null}, {"text": "upconversion", "start": 587, "end": 599, "id": 88, "annotation": null}, {"text": "nanoparticles", "start": 600, "end": 613, "id": 89, "annotation": "BASEMAT"}, {"text": ",", "start": 614, "end": 615, "id": 90, "annotation": null}, {"text": "however", "start": 616, "end": 623, "id": 91, "annotation": null}, {"text": ",", "start": 624, "end": 625, "id": 92, "annotation": null}, {"text": "always", "start": 626, "end": 632, "id": 93, "annotation": null}, {"text": "suffer", "start": 633, "end": 639, "id": 94, "annotation": null}, {"text": "from", "start": 640, "end": 644, "id": 95, "annotation": null}, {"text": "the", "start": 645, "end": 648, "id": 96, "annotation": null}, {"text": "intrinsic", "start": 649, "end": 658, "id": 97, "annotation": null}, {"text": "low", "start": 659, "end": 662, "id": 98, "annotation": null}, {"text": "luminescence", "start": 663, "end": 675, "id": 99, "annotation": null}, {"text": "efficiency", "start": 676, "end": 686, "id": 100, "annotation": null}, {"text": ".", "start": 687, "end": 688, "id": 101, "annotation": null}], [{"text": "To", "start": 689, "end": 691, "id": 102, "annotation": null}, {"text": "solve", "start": 692, "end": 697, "id": 103, "annotation": null}, {"text": "this", "start": 698, "end": 702, "id": 104, "annotation": null}, {"text": "problem", "start": 703, "end": 710, "id": 105, "annotation": null}, {"text": ",", "start": 711, "end": 712, "id": 106, "annotation": null}, {"text": "here", "start": 713, "end": 717, "id": 107, "annotation": null}, {"text": "we", "start": 718, "end": 720, "id": 108, "annotation": null}, {"text": "proposed", "start": 721, "end": 729, "id": 109, "annotation": null}, {"text": "the", "start": 730, "end": 733, "id": 110, "annotation": null}, {"text": "active", "start": 734, "end": 740, "id": 111, "annotation": null}, {"text": "-", "start": 741, "end": 742, "id": 112, "annotation": null}, {"text": "core", "start": 743, "end": 747, "id": 113, "annotation": null}, {"text": "/", "start": 748, "end": 749, "id": 114, "annotation": null}, {"text": "active", "start": 750, "end": 756, "id": 115, "annotation": null}, {"text": "-", "start": 757, "end": 758, "id": 116, "annotation": null}, {"text": "shell", "start": 759, "end": 764, "id": 117, "annotation": null}, {"text": "nanostructured", "start": 765, "end": 779, "id": 118, "annotation": null}, {"text": "design", "start": 780, "end": 786, "id": 119, "annotation": null}, {"text": "as", "start": 787, "end": 789, "id": 120, "annotation": null}, {"text": "an", "start": 790, "end": 792, "id": 121, "annotation": null}, {"text": "effective", "start": 793, "end": 802, "id": 122, "annotation": null}, {"text": "strategy", "start": 803, "end": 811, "id": 123, "annotation": null}, {"text": "for", "start": 812, "end": 815, "id": 124, "annotation": null}, {"text": "upconversion", "start": 816, "end": 828, "id": 125, "annotation": null}, {"text": "improvement", "start": 829, "end": 840, "id": 126, "annotation": null}, {"text": "of", "start": 841, "end": 843, "id": 127, "annotation": null}, {"text": "Nd3+/Yb3", "start": 844, "end": 852, "id": 128, "annotation": "DOPANT"}, {"text": "+", "start": 853, "end": 854, "id": 129, "annotation": "DOPANT"}, {"text": "-based", "start": 855, "end": 861, "id": 130, "annotation": null}, {"text": "upconversion", "start": 862, "end": 874, "id": 131, "annotation": null}, {"text": "nanoparticles", "start": 875, "end": 888, "id": 132, "annotation": "BASEMAT"}, {"text": ".", "start": 889, "end": 890, "id": 133, "annotation": null}], [{"text": "We", "start": 891, "end": 893, "id": 134, "annotation": null}, {"text": "found", "start": 894, "end": 899, "id": 135, "annotation": null}, {"text": "that", "start": 900, "end": 904, "id": 136, "annotation": null}, {"text": "after", "start": 905, "end": 910, "id": 137, "annotation": null}, {"text": "growing", "start": 911, "end": 918, "id": 138, "annotation": null}, {"text": "an", "start": 919, "end": 921, "id": 139, "annotation": null}, {"text": "optimized", "start": 922, "end": 931, "id": 140, "annotation": null}, {"text": "active", "start": 932, "end": 938, "id": 141, "annotation": null}, {"text": "-", "start": 939, "end": 940, "id": 142, "annotation": null}, {"text": "shell", "start": 941, "end": 946, "id": 143, "annotation": null}, {"text": "containing", "start": 947, "end": 957, "id": 144, "annotation": null}, {"text": "both", "start": 958, "end": 962, "id": 145, "annotation": null}, {"text": "Nd3", "start": 963, "end": 966, "id": 146, "annotation": "DOPANT"}, {"text": "+", "start": 967, "end": 968, "id": 147, "annotation": "DOPANT"}, {"text": "and", "start": 969, "end": 972, "id": 148, "annotation": null}, {"text": "Yb3", "start": 973, "end": 976, "id": 149, "annotation": "DOPANT"}, {"text": "+", "start": 977, "end": 978, "id": 150, "annotation": "DOPANT"}, {"text": "ions", "start": 979, "end": 983, "id": 151, "annotation": null}, {"text": ",", "start": 984, "end": 985, "id": 152, "annotation": null}, {"text": "a", "start": 986, "end": 987, "id": 153, "annotation": null}, {"text": "maximum", "start": 988, "end": 995, "id": 154, "annotation": null}, {"text": "522-fold", "start": 996, "end": 1004, "id": 155, "annotation": null}, {"text": "enhancement", "start": 1005, "end": 1016, "id": 156, "annotation": null}, {"text": "in", "start": 1017, "end": 1019, "id": 157, "annotation": null}, {"text": "upconversion", "start": 1020, "end": 1032, "id": 158, "annotation": null}, {"text": "luminescence", "start": 1033, "end": 1045, "id": 159, "annotation": null}, {"text": "was", "start": 1046, "end": 1049, "id": 160, "annotation": null}, {"text": "realized", "start": 1050, "end": 1058, "id": 161, "annotation": null}, {"text": "upon", "start": 1059, "end": 1063, "id": 162, "annotation": null}, {"text": "excitation", "start": 1064, "end": 1074, "id": 163, "annotation": null}, {"text": "at", "start": 1075, "end": 1077, "id": 164, "annotation": null}, {"text": "808", "start": 1078, "end": 1081, "id": 165, "annotation": null}, {"text": "nm", "start": 1082, "end": 1084, "id": 166, "annotation": null}, {"text": ".", "start": 1085, "end": 1086, "id": 167, "annotation": null}], [{"text": "These", "start": 1087, "end": 1092, "id": 168, "annotation": null}, {"text": "findings", "start": 1093, "end": 1101, "id": 169, "annotation": null}, {"text": "would", "start": 1102, "end": 1107, "id": 170, "annotation": null}, {"text": "be", "start": 1108, "end": 1110, "id": 171, "annotation": null}, {"text": "of", "start": 1111, "end": 1113, "id": 172, "annotation": null}, {"text": "great", "start": 1114, "end": 1119, "id": 173, "annotation": null}, {"text": "importance", "start": 1120, "end": 1130, "id": 174, "annotation": null}, {"text": "to", "start": 1131, "end": 1133, "id": 175, "annotation": null}, {"text": "the", "start": 1134, "end": 1137, "id": 176, "annotation": null}, {"text": "community", "start": 1138, "end": 1147, "id": 177, "annotation": null}, {"text": "developing", "start": 1148, "end": 1158, "id": 178, "annotation": null}, {"text": "high", "start": 1159, "end": 1163, "id": 179, "annotation": null}, {"text": "-", "start": 1164, "end": 1165, "id": 180, "annotation": null}, {"text": "performance", "start": 1166, "end": 1177, "id": 181, "annotation": null}, {"text": "upconversion", "start": 1178, "end": 1190, "id": 182, "annotation": null}, {"text": "nanoparticles", "start": 1191, "end": 1204, "id": 183, "annotation": null}, {"text": "for", "start": 1205, "end": 1208, "id": 184, "annotation": null}, {"text": "bioimaging", "start": 1209, "end": 1219, "id": 185, "annotation": null}, {"text": "applications", "start": 1220, "end": 1232, "id": 186, "annotation": null}, {"text": ".", "start": 1233, "end": 1234, "id": 187, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "ZnTe with a high photosensitivity has been prepared by annealing single crystals of the material in an atmosphere of Zn and Ga metal and then quenching to room temperature. This material is p-type and exhibits a peak specific sensitivity of about 0.7.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "ZnTe", "start": 0, "end": 4, "annotation": null}, {"text": "with", "start": 5, "end": 9, "annotation": null}, {"text": "a", "start": 10, "end": 11, "annotation": null}, {"text": "high", "start": 12, "end": 16, "annotation": null}, {"text": "photosensitivity", "start": 17, "end": 33, "annotation": null}, {"text": "has", "start": 34, "end": 37, "annotation": null}, {"text": "been", "start": 38, "end": 42, "annotation": null}, {"text": "prepared", "start": 43, "end": 51, "annotation": null}, {"text": "by", "start": 52, "end": 54, "annotation": null}, {"text": "annealing", "start": 55, "end": 64, "annotation": null}, {"text": "single", "start": 65, "end": 71, "annotation": null}, {"text": "crystals", "start": 72, "end": 80, "annotation": null}, {"text": "of", "start": 81, "end": 83, "annotation": null}, {"text": "the", "start": 84, "end": 87, "annotation": null}, {"text": "material", "start": 88, "end": 96, "annotation": null}, {"text": "in", "start": 97, "end": 99, "annotation": null}, {"text": "an", "start": 100, "end": 102, "annotation": null}, {"text": "atmosphere", "start": 103, "end": 113, "annotation": null}, {"text": "of", "start": 114, "end": 116, "annotation": null}, {"text": "Zn", "start": 117, "end": 119, "annotation": null}, {"text": "and", "start": 120, "end": 123, "annotation": null}, {"text": "Ga", "start": 124, "end": 126, "annotation": null}, {"text": "metal", "start": 127, "end": 132, "annotation": null}, {"text": "and", "start": 133, "end": 136, "annotation": null}, {"text": "then", "start": 137, "end": 141, "annotation": null}, {"text": "quenching", "start": 142, "end": 151, "annotation": null}, {"text": "to", "start": 152, "end": 154, "annotation": null}, {"text": "room", "start": 155, "end": 159, "annotation": null}, {"text": "temperature", "start": 160, "end": 171, "annotation": null}, {"text": ".", "start": 171, "end": 172, "annotation": null}], [{"text": "This", "start": 173, "end": 177, "annotation": null}, {"text": "material", "start": 178, "end": 186, "annotation": "BASEMAT"}, {"text": "is", "start": 187, "end": 189, "annotation": null}, {"text": "p", "start": 190, "end": 191, "annotation": "DOPANT"}, {"text": "-", "start": 191, "end": 192, "annotation": "DOPANT"}, {"text": "type", "start": 192, "end": 196, "annotation": "DOPANT"}, {"text": "and", "start": 197, "end": 200, "annotation": null}, {"text": "exhibits", "start": 201, "end": 209, "annotation": null}, {"text": "a", "start": 210, "end": 211, "annotation": null}, {"text": "peak", "start": 212, "end": 216, "annotation": null}, {"text": "specific", "start": 217, "end": 225, "annotation": null}, {"text": "sensitivity", "start": 226, "end": 237, "annotation": null}, {"text": "of", "start": 238, "end": 240, "annotation": null}, {"text": "about", "start": 241, "end": 246, "annotation": null}, {"text": "0.7", "start": 247, "end": 250, "annotation": null}, {"text": ".", "start": 250, "end": 251, "annotation": null}]]} -{"text": "Copper is converted to cuprous oxide after being exposed to oxygen plasma treatment in a reactive ion etcher. X-ray diffraction indicates the formation of (111)-oriented cuprous oxide films. Films exhibit p-type conductivity with high carrier concentrations due to a large number of copper vacancies. The optical bandgap of 2.45eV is significantly larger than reported bulk values of 2.0\u20132.2eV. This blue shift is due to the small crystallite size of the film.", "meta": {"doi": "10.1016/j.tsf.2010.03.102"}, "_input_hash": -1465963295, "_task_hash": 68554038, "tokens": [[{"text": "Copper", "start": 0, "end": 6, "id": 0, "annotation": null}, {"text": "is", "start": 7, "end": 9, "id": 1, "annotation": null}, {"text": "converted", "start": 10, "end": 19, "id": 2, "annotation": null}, {"text": "to", "start": 20, "end": 22, "id": 3, "annotation": null}, {"text": "cuprous", "start": 23, "end": 30, "id": 4, "annotation": null}, {"text": "oxide", "start": 31, "end": 36, "id": 5, "annotation": null}, {"text": "after", "start": 37, "end": 42, "id": 6, "annotation": null}, {"text": "being", "start": 43, "end": 48, "id": 7, "annotation": null}, {"text": "exposed", "start": 49, "end": 56, "id": 8, "annotation": null}, {"text": "to", "start": 57, "end": 59, "id": 9, "annotation": null}, {"text": "oxygen", "start": 60, "end": 66, "id": 10, "annotation": null}, {"text": "plasma", "start": 67, "end": 73, "id": 11, "annotation": null}, {"text": "treatment", "start": 74, "end": 83, "id": 12, "annotation": null}, {"text": "in", "start": 84, "end": 86, "id": 13, "annotation": null}, {"text": "a", "start": 87, "end": 88, "id": 14, "annotation": null}, {"text": "reactive", "start": 89, "end": 97, "id": 15, "annotation": null}, {"text": "ion", "start": 98, "end": 101, "id": 16, "annotation": null}, {"text": "etcher", "start": 102, "end": 108, "id": 17, "annotation": null}, {"text": ".", "start": 109, "end": 110, "id": 18, "annotation": null}], [{"text": "X", "start": 111, "end": 112, "id": 19, "annotation": null}, {"text": "-", "start": 113, "end": 114, "id": 20, "annotation": null}, {"text": "ray", "start": 115, "end": 118, "id": 21, "annotation": null}, {"text": "diffraction", "start": 119, "end": 130, "id": 22, "annotation": null}, {"text": "indicates", "start": 131, "end": 140, "id": 23, "annotation": null}, {"text": "the", "start": 141, "end": 144, "id": 24, "annotation": null}, {"text": "formation", "start": 145, "end": 154, "id": 25, "annotation": null}, {"text": "of", "start": 155, "end": 157, "id": 26, "annotation": null}, {"text": "(", "start": 158, "end": 159, "id": 27, "annotation": null}, {"text": "111)-oriented", "start": 160, "end": 173, "id": 28, "annotation": null}, {"text": "cuprous", "start": 174, "end": 181, "id": 29, "annotation": null}, {"text": "oxide", "start": 182, "end": 187, "id": 30, "annotation": null}, {"text": "films", "start": 188, "end": 193, "id": 31, "annotation": null}, {"text": ".", "start": 194, "end": 195, "id": 32, "annotation": null}], [{"text": "Films", "start": 196, "end": 201, "id": 33, "annotation": "BASEMAT"}, {"text": "exhibit", "start": 202, "end": 209, "id": 34, "annotation": null}, {"text": "p", "start": 210, "end": 211, "id": 35, "annotation": "DOPANT"}, {"text": "-", "start": 212, "end": 213, "id": 36, "annotation": null}, {"text": "type", "start": 214, "end": 218, "id": 37, "annotation": "DOPANT"}, {"text": "conductivity", "start": 219, "end": 231, "id": 38, "annotation": null}, {"text": "with", "start": 232, "end": 236, "id": 39, "annotation": null}, {"text": "high", "start": 237, "end": 241, "id": 40, "annotation": null}, {"text": "carrier", "start": 242, "end": 249, "id": 41, "annotation": null}, {"text": "concentrations", "start": 250, "end": 264, "id": 42, "annotation": null}, {"text": "due", "start": 265, "end": 268, "id": 43, "annotation": null}, {"text": "to", "start": 269, "end": 271, "id": 44, "annotation": null}, {"text": "a", "start": 272, "end": 273, "id": 45, "annotation": null}, {"text": "large", "start": 274, "end": 279, "id": 46, "annotation": null}, {"text": "number", "start": 280, "end": 286, "id": 47, "annotation": null}, {"text": "of", "start": 287, "end": 289, "id": 48, "annotation": null}, {"text": "copper", "start": 290, "end": 296, "id": 49, "annotation": null}, {"text": "vacancies", "start": 297, "end": 306, "id": 50, "annotation": null}, {"text": ".", "start": 307, "end": 308, "id": 51, "annotation": null}], [{"text": "The", "start": 309, "end": 312, "id": 52, "annotation": null}, {"text": "optical", "start": 313, "end": 320, "id": 53, "annotation": null}, {"text": "bandgap", "start": 321, "end": 328, "id": 54, "annotation": null}, {"text": "of", "start": 329, "end": 331, "id": 55, "annotation": null}, {"text": "2.45eV", "start": 332, "end": 338, "id": 56, "annotation": null}, {"text": "is", "start": 339, "end": 341, "id": 57, "annotation": null}, {"text": "significantly", "start": 342, "end": 355, "id": 58, "annotation": null}, {"text": "larger", "start": 356, "end": 362, "id": 59, "annotation": null}, {"text": "than", "start": 363, "end": 367, "id": 60, "annotation": null}, {"text": "reported", "start": 368, "end": 376, "id": 61, "annotation": null}, {"text": "bulk", "start": 377, "end": 381, "id": 62, "annotation": null}, {"text": "values", "start": 382, "end": 388, "id": 63, "annotation": null}, {"text": "of", "start": 389, "end": 391, "id": 64, "annotation": null}, {"text": "2.0\u20132.2eV.", "start": 392, "end": 402, "id": 65, "annotation": null}], [{"text": "This", "start": 403, "end": 407, "id": 66, "annotation": null}, {"text": "blue", "start": 408, "end": 412, "id": 67, "annotation": null}, {"text": "shift", "start": 413, "end": 418, "id": 68, "annotation": null}, {"text": "is", "start": 419, "end": 421, "id": 69, "annotation": null}, {"text": "due", "start": 422, "end": 425, "id": 70, "annotation": null}, {"text": "to", "start": 426, "end": 428, "id": 71, "annotation": null}, {"text": "the", "start": 429, "end": 432, "id": 72, "annotation": null}, {"text": "small", "start": 433, "end": 438, "id": 73, "annotation": null}, {"text": "crystallite", "start": 439, "end": 450, "id": 74, "annotation": null}, {"text": "size", "start": 451, "end": 455, "id": 75, "annotation": null}, {"text": "of", "start": 456, "end": 458, "id": 76, "annotation": null}, {"text": "the", "start": 459, "end": 462, "id": 77, "annotation": null}, {"text": "film", "start": 463, "end": 467, "id": 78, "annotation": null}, {"text": ".", "start": 468, "end": 469, "id": 79, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt3", "text": "ZnTe with a high photosensitivity has been prepared by annealing single crystals of the material in an atmosphere of Zn and Ga metal and then quenching to room temperature. This material is p-type and exhibits a peak specific sensitivity of about 0.7.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "ZnTe", "start": 0, "end": 4, "annotation": null}, {"text": "with", "start": 5, "end": 9, "annotation": null}, {"text": "a", "start": 10, "end": 11, "annotation": null}, {"text": "high", "start": 12, "end": 16, "annotation": null}, {"text": "photosensitivity", "start": 17, "end": 33, "annotation": null}, {"text": "has", "start": 34, "end": 37, "annotation": null}, {"text": "been", "start": 38, "end": 42, "annotation": null}, {"text": "prepared", "start": 43, "end": 51, "annotation": null}, {"text": "by", "start": 52, "end": 54, "annotation": null}, {"text": "annealing", "start": 55, "end": 64, "annotation": null}, {"text": "single", "start": 65, "end": 71, "annotation": null}, {"text": "crystals", "start": 72, "end": 80, "annotation": null}, {"text": "of", "start": 81, "end": 83, "annotation": null}, {"text": "the", "start": 84, "end": 87, "annotation": null}, {"text": "material", "start": 88, "end": 96, "annotation": null}, {"text": "in", "start": 97, "end": 99, "annotation": null}, {"text": "an", "start": 100, "end": 102, "annotation": null}, {"text": "atmosphere", "start": 103, "end": 113, "annotation": null}, {"text": "of", "start": 114, "end": 116, "annotation": null}, {"text": "Zn", "start": 117, "end": 119, "annotation": null}, {"text": "and", "start": 120, "end": 123, "annotation": null}, {"text": "Ga", "start": 124, "end": 126, "annotation": null}, {"text": "metal", "start": 127, "end": 132, "annotation": null}, {"text": "and", "start": 133, "end": 136, "annotation": null}, {"text": "then", "start": 137, "end": 141, "annotation": null}, {"text": "quenching", "start": 142, "end": 151, "annotation": null}, {"text": "to", "start": 152, "end": 154, "annotation": null}, {"text": "room", "start": 155, "end": 159, "annotation": null}, {"text": "temperature", "start": 160, "end": 171, "annotation": null}, {"text": ".", "start": 171, "end": 172, "annotation": null}], [{"text": "This", "start": 173, "end": 177, "annotation": null}, {"text": "material", "start": 178, "end": 186, "annotation": "BASEMAT"}, {"text": "is", "start": 187, "end": 189, "annotation": null}, {"text": "p", "start": 190, "end": 191, "annotation": "DOPANT"}, {"text": "-", "start": 191, "end": 192, "annotation": "DOPANT"}, {"text": "type", "start": 192, "end": 196, "annotation": "DOPANT"}, {"text": "and", "start": 197, "end": 200, "annotation": null}, {"text": "exhibits", "start": 201, "end": 209, "annotation": null}, {"text": "a", "start": 210, "end": 211, "annotation": null}, {"text": "peak", "start": 212, "end": 216, "annotation": null}, {"text": "specific", "start": 217, "end": 225, "annotation": null}, {"text": "sensitivity", "start": 226, "end": 237, "annotation": null}, {"text": "of", "start": 238, "end": 240, "annotation": null}, {"text": "about", "start": 241, "end": 246, "annotation": null}, {"text": "0.7", "start": 247, "end": 250, "annotation": null}, {"text": ".", "start": 250, "end": 251, "annotation": null}]], "meta": {"doi": "10.1016/0038-1098(72)90469-3"}} +{"text": "Copper is converted to cuprous oxide after being exposed to oxygen plasma treatment in a reactive ion etcher. X-ray diffraction indicates the formation of (111)-oriented cuprous oxide films. Films exhibit p-type conductivity with high carrier concentrations due to a large number of copper vacancies. The optical bandgap of 2.45eV is significantly larger than reported bulk values of 2.0\u20132.2eV. This blue shift is due to the small crystallite size of the film.", "meta": {"doi": "10.1016/j.tsf.2010.03.102"}, "_input_hash": -1465963295, "_task_hash": 68554038, "tokens": [[{"text": "Copper", "start": 0, "end": 6, "id": 0, "annotation": null}, {"text": "is", "start": 7, "end": 9, "id": 1, "annotation": null}, {"text": "converted", "start": 10, "end": 19, "id": 2, "annotation": null}, {"text": "to", "start": 20, "end": 22, "id": 3, "annotation": null}, {"text": "cuprous", "start": 23, "end": 30, "id": 4, "annotation": null}, {"text": "oxide", "start": 31, "end": 36, "id": 5, "annotation": null}, {"text": "after", "start": 37, "end": 42, "id": 6, "annotation": null}, {"text": "being", "start": 43, "end": 48, "id": 7, "annotation": null}, {"text": "exposed", "start": 49, "end": 56, "id": 8, "annotation": null}, {"text": "to", "start": 57, "end": 59, "id": 9, "annotation": null}, {"text": "oxygen", "start": 60, "end": 66, "id": 10, "annotation": null}, {"text": "plasma", "start": 67, "end": 73, "id": 11, "annotation": null}, {"text": "treatment", "start": 74, "end": 83, "id": 12, "annotation": null}, {"text": "in", "start": 84, "end": 86, "id": 13, "annotation": null}, {"text": "a", "start": 87, "end": 88, "id": 14, "annotation": null}, {"text": "reactive", "start": 89, "end": 97, "id": 15, "annotation": null}, {"text": "ion", "start": 98, "end": 101, "id": 16, "annotation": null}, {"text": "etcher", "start": 102, "end": 108, "id": 17, "annotation": null}, {"text": ".", "start": 109, "end": 110, "id": 18, "annotation": null}], [{"text": "X", "start": 111, "end": 112, "id": 19, "annotation": null}, {"text": "-", "start": 113, "end": 114, "id": 20, "annotation": null}, {"text": "ray", "start": 115, "end": 118, "id": 21, "annotation": null}, {"text": "diffraction", "start": 119, "end": 130, "id": 22, "annotation": null}, {"text": "indicates", "start": 131, "end": 140, "id": 23, "annotation": null}, {"text": "the", "start": 141, "end": 144, "id": 24, "annotation": null}, {"text": "formation", "start": 145, "end": 154, "id": 25, "annotation": null}, {"text": "of", "start": 155, "end": 157, "id": 26, "annotation": null}, {"text": "(", "start": 158, "end": 159, "id": 27, "annotation": null}, {"text": "111)-oriented", "start": 160, "end": 173, "id": 28, "annotation": null}, {"text": "cuprous", "start": 174, "end": 181, "id": 29, "annotation": null}, {"text": "oxide", "start": 182, "end": 187, "id": 30, "annotation": null}, {"text": "films", "start": 188, "end": 193, "id": 31, "annotation": null}, {"text": ".", "start": 194, "end": 195, "id": 32, "annotation": null}], [{"text": "Films", "start": 196, "end": 201, "id": 33, "annotation": "BASEMAT"}, {"text": "exhibit", "start": 202, "end": 209, "id": 34, "annotation": null}, {"text": "p", "start": 210, "end": 211, "id": 35, "annotation": "DOPANT"}, {"text": "-", "start": 212, "end": 213, "id": 36, "annotation": "DOPANT"}, {"text": "type", "start": 214, "end": 218, "id": 37, "annotation": "DOPANT"}, {"text": "conductivity", "start": 219, "end": 231, "id": 38, "annotation": null}, {"text": "with", "start": 232, "end": 236, "id": 39, "annotation": null}, {"text": "high", "start": 237, "end": 241, "id": 40, "annotation": null}, {"text": "carrier", "start": 242, "end": 249, "id": 41, "annotation": null}, {"text": "concentrations", "start": 250, "end": 264, "id": 42, "annotation": null}, {"text": "due", "start": 265, "end": 268, "id": 43, "annotation": null}, {"text": "to", "start": 269, "end": 271, "id": 44, "annotation": null}, {"text": "a", "start": 272, "end": 273, "id": 45, "annotation": null}, {"text": "large", "start": 274, "end": 279, "id": 46, "annotation": null}, {"text": "number", "start": 280, "end": 286, "id": 47, "annotation": null}, {"text": "of", "start": 287, "end": 289, "id": 48, "annotation": null}, {"text": "copper", "start": 290, "end": 296, "id": 49, "annotation": null}, {"text": "vacancies", "start": 297, "end": 306, "id": 50, "annotation": null}, {"text": ".", "start": 307, "end": 308, "id": 51, "annotation": null}], [{"text": "The", "start": 309, "end": 312, "id": 52, "annotation": null}, {"text": "optical", "start": 313, "end": 320, "id": 53, "annotation": null}, {"text": "bandgap", "start": 321, "end": 328, "id": 54, "annotation": null}, {"text": "of", "start": 329, "end": 331, "id": 55, "annotation": null}, {"text": "2.45eV", "start": 332, "end": 338, "id": 56, "annotation": null}, {"text": "is", "start": 339, "end": 341, "id": 57, "annotation": null}, {"text": "significantly", "start": 342, "end": 355, "id": 58, "annotation": null}, {"text": "larger", "start": 356, "end": 362, "id": 59, "annotation": null}, {"text": "than", "start": 363, "end": 367, "id": 60, "annotation": null}, {"text": "reported", "start": 368, "end": 376, "id": 61, "annotation": null}, {"text": "bulk", "start": 377, "end": 381, "id": 62, "annotation": null}, {"text": "values", "start": 382, "end": 388, "id": 63, "annotation": null}, {"text": "of", "start": 389, "end": 391, "id": 64, "annotation": null}, {"text": "2.0\u20132.2eV.", "start": 392, "end": 402, "id": 65, "annotation": null}], [{"text": "This", "start": 403, "end": 407, "id": 66, "annotation": null}, {"text": "blue", "start": 408, "end": 412, "id": 67, "annotation": null}, {"text": "shift", "start": 413, "end": 418, "id": 68, "annotation": null}, {"text": "is", "start": 419, "end": 421, "id": 69, "annotation": null}, {"text": "due", "start": 422, "end": 425, "id": 70, "annotation": null}, {"text": "to", "start": 426, "end": 428, "id": 71, "annotation": null}, {"text": "the", "start": 429, "end": 432, "id": 72, "annotation": null}, {"text": "small", "start": 433, "end": 438, "id": 73, "annotation": null}, {"text": "crystallite", "start": 439, "end": 450, "id": 74, "annotation": null}, {"text": "size", "start": 451, "end": 455, "id": 75, "annotation": null}, {"text": "of", "start": 456, "end": 458, "id": 76, "annotation": null}, {"text": "the", "start": 459, "end": 462, "id": 77, "annotation": null}, {"text": "film", "start": 463, "end": 467, "id": 78, "annotation": null}, {"text": ".", "start": 468, "end": 469, "id": 79, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Microstructural changes associated with chemical and structural evolution from gels to Fex\u2013ZrSiO4 solid solutions are reported. Mineralizer-free Fex\u2013ZrSiO4 gels in the compositional range 0\u2264x\u22640.15 were prepared by sol\u2013gel liquid-phase route from mixtures of alkoxides of silicon and zirconium, and iron (III) acetylacetonate, and annealed at different temperatures and/or times. The first step on the whole process to the final Fex\u2013ZrSiO4 solid solutions was the formation of aggregated of tetragonal Fe-doped ZrO2 nanocrystals with diameters smaller than 50nm. At this stage the tetragonal Fe\u2013ZrO2 were embedded in amorphous silica resulting nanocomposite materials. The formation of the final Fex\u2013ZrSiO4 solid solution nanocrystals at around 1100\u00b0C occurred almost simultaneously to the Fe\u2013ZrO2 solid solution phase transformation from the tetragonal to the monoclinic form. The microstructural examination of specimens after annealing at 1200\u00b0C revealed the development of Fe-doped zircon nanoparticles smaller than 100nm.", "meta": {"doi": "10.1016/j.jeurceramsoc.2011.08.014"}, "_input_hash": -1473080418, "_task_hash": -722849665, "tokens": [[{"text": "Microstructural", "start": 0, "end": 15, "id": 0, "annotation": null}, {"text": "changes", "start": 16, "end": 23, "id": 1, "annotation": null}, {"text": "associated", "start": 24, "end": 34, "id": 2, "annotation": null}, {"text": "with", "start": 35, "end": 39, "id": 3, "annotation": null}, {"text": "chemical", "start": 40, "end": 48, "id": 4, "annotation": null}, {"text": "and", "start": 49, "end": 52, "id": 5, "annotation": null}, {"text": "structural", "start": 53, "end": 63, "id": 6, "annotation": null}, {"text": "evolution", "start": 64, "end": 73, "id": 7, "annotation": null}, {"text": "from", "start": 74, "end": 78, "id": 8, "annotation": null}, {"text": "gels", "start": 79, "end": 83, "id": 9, "annotation": null}, {"text": "to", "start": 84, "end": 86, "id": 10, "annotation": null}, {"text": "Fex", "start": 87, "end": 90, "id": 11, "annotation": null}, {"text": "\u2013", "start": 91, "end": 92, "id": 12, "annotation": null}, {"text": "ZrSiO4", "start": 93, "end": 99, "id": 13, "annotation": null}, {"text": "solid", "start": 100, "end": 105, "id": 14, "annotation": null}, {"text": "solutions", "start": 106, "end": 115, "id": 15, "annotation": null}, {"text": "are", "start": 116, "end": 119, "id": 16, "annotation": null}, {"text": "reported", "start": 120, "end": 128, "id": 17, "annotation": null}, {"text": ".", "start": 129, "end": 130, "id": 18, "annotation": null}], [{"text": "Mineralizer", "start": 131, "end": 142, "id": 19, "annotation": null}, {"text": "-", "start": 143, "end": 144, "id": 20, "annotation": null}, {"text": "free", "start": 145, "end": 149, "id": 21, "annotation": null}, {"text": "Fex", "start": 150, "end": 153, "id": 22, "annotation": null}, {"text": "\u2013", "start": 154, "end": 155, "id": 23, "annotation": null}, {"text": "ZrSiO4", "start": 156, "end": 162, "id": 24, "annotation": null}, {"text": "gels", "start": 163, "end": 167, "id": 25, "annotation": null}, {"text": "in", "start": 168, "end": 170, "id": 26, "annotation": null}, {"text": "the", "start": 171, "end": 174, "id": 27, "annotation": null}, {"text": "compositional", "start": 175, "end": 188, "id": 28, "annotation": null}, {"text": "range", "start": 189, "end": 194, "id": 29, "annotation": null}, {"text": "0\u2264x\u22640.15", "start": 195, "end": 203, "id": 30, "annotation": null}, {"text": "were", "start": 204, "end": 208, "id": 31, "annotation": null}, {"text": "prepared", "start": 209, "end": 217, "id": 32, "annotation": null}, {"text": "by", "start": 218, "end": 220, "id": 33, "annotation": null}, {"text": "sol", "start": 221, "end": 224, "id": 34, "annotation": null}, {"text": "\u2013", "start": 225, "end": 226, "id": 35, "annotation": null}, {"text": "gel", "start": 227, "end": 230, "id": 36, "annotation": null}, {"text": "liquid", "start": 231, "end": 237, "id": 37, "annotation": null}, {"text": "-", "start": 238, "end": 239, "id": 38, "annotation": null}, {"text": "phase", "start": 240, "end": 245, "id": 39, "annotation": null}, {"text": "route", "start": 246, "end": 251, "id": 40, "annotation": null}, {"text": "from", "start": 252, "end": 256, "id": 41, "annotation": null}, {"text": "mixtures", "start": 257, "end": 265, "id": 42, "annotation": null}, {"text": "of", "start": 266, "end": 268, "id": 43, "annotation": null}, {"text": "alkoxides", "start": 269, "end": 278, "id": 44, "annotation": null}, {"text": "of", "start": 279, "end": 281, "id": 45, "annotation": null}, {"text": "silicon", "start": 282, "end": 289, "id": 46, "annotation": null}, {"text": "and", "start": 290, "end": 293, "id": 47, "annotation": null}, {"text": "zirconium", "start": 294, "end": 303, "id": 48, "annotation": null}, {"text": ",", "start": 304, "end": 305, "id": 49, "annotation": null}, {"text": "and", "start": 306, "end": 309, "id": 50, "annotation": null}, {"text": "iron", "start": 310, "end": 314, "id": 51, "annotation": null}, {"text": "(", "start": 315, "end": 316, "id": 52, "annotation": null}, {"text": "III", "start": 317, "end": 320, "id": 53, "annotation": null}, {"text": ")", "start": 321, "end": 322, "id": 54, "annotation": null}, {"text": "acetylacetonate", "start": 323, "end": 338, "id": 55, "annotation": null}, {"text": ",", "start": 339, "end": 340, "id": 56, "annotation": null}, {"text": "and", "start": 341, "end": 344, "id": 57, "annotation": null}, {"text": "annealed", "start": 345, "end": 353, "id": 58, "annotation": null}, {"text": "at", "start": 354, "end": 356, "id": 59, "annotation": null}, {"text": "different", "start": 357, "end": 366, "id": 60, "annotation": null}, {"text": "temperatures", "start": 367, "end": 379, "id": 61, "annotation": null}, {"text": "and/or", "start": 380, "end": 386, "id": 62, "annotation": null}, {"text": "times", "start": 387, "end": 392, "id": 63, "annotation": null}, {"text": ".", "start": 393, "end": 394, "id": 64, "annotation": null}], [{"text": "The", "start": 395, "end": 398, "id": 65, "annotation": null}, {"text": "first", "start": 399, "end": 404, "id": 66, "annotation": null}, {"text": "step", "start": 405, "end": 409, "id": 67, "annotation": null}, {"text": "on", "start": 410, "end": 412, "id": 68, "annotation": null}, {"text": "the", "start": 413, "end": 416, "id": 69, "annotation": null}, {"text": "whole", "start": 417, "end": 422, "id": 70, "annotation": null}, {"text": "process", "start": 423, "end": 430, "id": 71, "annotation": null}, {"text": "to", "start": 431, "end": 433, "id": 72, "annotation": null}, {"text": "the", "start": 434, "end": 437, "id": 73, "annotation": null}, {"text": "final", "start": 438, "end": 443, "id": 74, "annotation": null}, {"text": "Fex", "start": 444, "end": 447, "id": 75, "annotation": null}, {"text": "\u2013", "start": 448, "end": 449, "id": 76, "annotation": null}, {"text": "ZrSiO4", "start": 450, "end": 456, "id": 77, "annotation": null}, {"text": "solid", "start": 457, "end": 462, "id": 78, "annotation": null}, {"text": "solutions", "start": 463, "end": 472, "id": 79, "annotation": null}, {"text": "was", "start": 473, "end": 476, "id": 80, "annotation": null}, {"text": "the", "start": 477, "end": 480, "id": 81, "annotation": null}, {"text": "formation", "start": 481, "end": 490, "id": 82, "annotation": null}, {"text": "of", "start": 491, "end": 493, "id": 83, "annotation": null}, {"text": "aggregated", "start": 494, "end": 504, "id": 84, "annotation": null}, {"text": "of", "start": 505, "end": 507, "id": 85, "annotation": null}, {"text": "tetragonal", "start": 508, "end": 518, "id": 86, "annotation": null}, {"text": "Fe", "start": 519, "end": 521, "id": 87, "annotation": "DOPANT"}, {"text": "-", "start": 522, "end": 523, "id": 88, "annotation": null}, {"text": "doped", "start": 524, "end": 529, "id": 89, "annotation": null}, {"text": "ZrO2", "start": 530, "end": 534, "id": 90, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 535, "end": 547, "id": 91, "annotation": null}, {"text": "with", "start": 548, "end": 552, "id": 92, "annotation": null}, {"text": "diameters", "start": 553, "end": 562, "id": 93, "annotation": null}, {"text": "smaller", "start": 563, "end": 570, "id": 94, "annotation": null}, {"text": "than", "start": 571, "end": 575, "id": 95, "annotation": null}, {"text": "50", "start": 576, "end": 578, "id": 96, "annotation": null}, {"text": "nm", "start": 579, "end": 581, "id": 97, "annotation": null}, {"text": ".", "start": 582, "end": 583, "id": 98, "annotation": null}], [{"text": "At", "start": 584, "end": 586, "id": 99, "annotation": null}, {"text": "this", "start": 587, "end": 591, "id": 100, "annotation": null}, {"text": "stage", "start": 592, "end": 597, "id": 101, "annotation": null}, {"text": "the", "start": 598, "end": 601, "id": 102, "annotation": null}, {"text": "tetragonal", "start": 602, "end": 612, "id": 103, "annotation": null}, {"text": "Fe", "start": 613, "end": 615, "id": 104, "annotation": "DOPANT"}, {"text": "\u2013", "start": 616, "end": 617, "id": 105, "annotation": null}, {"text": "ZrO2", "start": 618, "end": 622, "id": 106, "annotation": "BASEMAT"}, {"text": "were", "start": 623, "end": 627, "id": 107, "annotation": null}, {"text": "embedded", "start": 628, "end": 636, "id": 108, "annotation": null}, {"text": "in", "start": 637, "end": 639, "id": 109, "annotation": null}, {"text": "amorphous", "start": 640, "end": 649, "id": 110, "annotation": null}, {"text": "silica", "start": 650, "end": 656, "id": 111, "annotation": null}, {"text": "resulting", "start": 657, "end": 666, "id": 112, "annotation": null}, {"text": "nanocomposite", "start": 667, "end": 680, "id": 113, "annotation": null}, {"text": "materials", "start": 681, "end": 690, "id": 114, "annotation": null}, {"text": ".", "start": 691, "end": 692, "id": 115, "annotation": null}], [{"text": "The", "start": 693, "end": 696, "id": 116, "annotation": null}, {"text": "formation", "start": 697, "end": 706, "id": 117, "annotation": null}, {"text": "of", "start": 707, "end": 709, "id": 118, "annotation": null}, {"text": "the", "start": 710, "end": 713, "id": 119, "annotation": null}, {"text": "final", "start": 714, "end": 719, "id": 120, "annotation": null}, {"text": "Fex", "start": 720, "end": 723, "id": 121, "annotation": null}, {"text": "\u2013", "start": 724, "end": 725, "id": 122, "annotation": null}, {"text": "ZrSiO4", "start": 726, "end": 732, "id": 123, "annotation": null}, {"text": "solid", "start": 733, "end": 738, "id": 124, "annotation": null}, {"text": "solution", "start": 739, "end": 747, "id": 125, "annotation": null}, {"text": "nanocrystals", "start": 748, "end": 760, "id": 126, "annotation": null}, {"text": "at", "start": 761, "end": 763, "id": 127, "annotation": null}, {"text": "around", "start": 764, "end": 770, "id": 128, "annotation": null}, {"text": "1100", "start": 771, "end": 775, "id": 129, "annotation": null}, {"text": "\u00b0", "start": 776, "end": 777, "id": 130, "annotation": null}, {"text": "C", "start": 778, "end": 779, "id": 131, "annotation": null}, {"text": "occurred", "start": 780, "end": 788, "id": 132, "annotation": null}, {"text": "almost", "start": 789, "end": 795, "id": 133, "annotation": null}, {"text": "simultaneously", "start": 796, "end": 810, "id": 134, "annotation": null}, {"text": "to", "start": 811, "end": 813, "id": 135, "annotation": null}, {"text": "the", "start": 814, "end": 817, "id": 136, "annotation": null}, {"text": "Fe", "start": 818, "end": 820, "id": 137, "annotation": null}, {"text": "\u2013", "start": 821, "end": 822, "id": 138, "annotation": null}, {"text": "ZrO2", "start": 823, "end": 827, "id": 139, "annotation": null}, {"text": "solid", "start": 828, "end": 833, "id": 140, "annotation": null}, {"text": "solution", "start": 834, "end": 842, "id": 141, "annotation": null}, {"text": "phase", "start": 843, "end": 848, "id": 142, "annotation": null}, {"text": "transformation", "start": 849, "end": 863, "id": 143, "annotation": null}, {"text": "from", "start": 864, "end": 868, "id": 144, "annotation": null}, {"text": "the", "start": 869, "end": 872, "id": 145, "annotation": null}, {"text": "tetragonal", "start": 873, "end": 883, "id": 146, "annotation": null}, {"text": "to", "start": 884, "end": 886, "id": 147, "annotation": null}, {"text": "the", "start": 887, "end": 890, "id": 148, "annotation": null}, {"text": "monoclinic", "start": 891, "end": 901, "id": 149, "annotation": null}, {"text": "form", "start": 902, "end": 906, "id": 150, "annotation": null}, {"text": ".", "start": 907, "end": 908, "id": 151, "annotation": null}], [{"text": "The", "start": 909, "end": 912, "id": 152, "annotation": null}, {"text": "microstructural", "start": 913, "end": 928, "id": 153, "annotation": null}, {"text": "examination", "start": 929, "end": 940, "id": 154, "annotation": null}, {"text": "of", "start": 941, "end": 943, "id": 155, "annotation": null}, {"text": "specimens", "start": 944, "end": 953, "id": 156, "annotation": null}, {"text": "after", "start": 954, "end": 959, "id": 157, "annotation": null}, {"text": "annealing", "start": 960, "end": 969, "id": 158, "annotation": null}, {"text": "at", "start": 970, "end": 972, "id": 159, "annotation": null}, {"text": "1200", "start": 973, "end": 977, "id": 160, "annotation": null}, {"text": "\u00b0", "start": 978, "end": 979, "id": 161, "annotation": null}, {"text": "C", "start": 980, "end": 981, "id": 162, "annotation": null}, {"text": "revealed", "start": 982, "end": 990, "id": 163, "annotation": null}, {"text": "the", "start": 991, "end": 994, "id": 164, "annotation": null}, {"text": "development", "start": 995, "end": 1006, "id": 165, "annotation": null}, {"text": "of", "start": 1007, "end": 1009, "id": 166, "annotation": null}, {"text": "Fe", "start": 1010, "end": 1012, "id": 167, "annotation": "DOPANT"}, {"text": "-", "start": 1013, "end": 1014, "id": 168, "annotation": null}, {"text": "doped", "start": 1015, "end": 1020, "id": 169, "annotation": null}, {"text": "zircon", "start": 1021, "end": 1027, "id": 170, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 1028, "end": 1041, "id": 171, "annotation": null}, {"text": "smaller", "start": 1042, "end": 1049, "id": 172, "annotation": null}, {"text": "than", "start": 1050, "end": 1054, "id": 173, "annotation": null}, {"text": "100", "start": 1055, "end": 1058, "id": 174, "annotation": null}, {"text": "nm", "start": 1059, "end": 1061, "id": 175, "annotation": null}, {"text": ".", "start": 1062, "end": 1063, "id": 176, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The dependence of sensitivity of SnO2 gas sensors on indium concentration has been studied. Undoped and indium-doped SnO2 gas sensors have been prepared by chemical vapor deposition (CVD) using SnCl4 as precursor solution without or with InCl3 as doping solution, respectively. The response of the sensors is observed to increase significantly with 20wt.% InCl3 content towards 1000ppm hydrogen, methanol, and carbon monoxide. Indium-doped SnO2 gas sensors with sensitivity as high as 17%, four times higher than that of undoped sensor, are obtained for 1000ppm methanol. Above an amount of 20wt.% InCl3, the sensitivity of the sensors decreases drastically. A concentration of 40wt.% InCl3 decreases the response of the sensors down to the sensitivity value of the undoped sensor. Scanning electron microscopy (SEM) was used to investigate the morphology and pore structure of the undoped and indium-doped sensing films with variations in indium concentration. Further, the sensing films were characterized by X-ray diffraction (XRD) to identify the changes in their crystallographic structures. The relation between structure of the films and gas sensitivity is discussed. It is observed that structure of the sensors changes as the doping concentration increases.", "meta": {"doi": "10.1016/S0925-4005(02)00460-4"}, "_input_hash": -1395935233, "_task_hash": -169349184, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "dependence", "start": 4, "end": 14, "id": 1, "annotation": null}, {"text": "of", "start": 15, "end": 17, "id": 2, "annotation": null}, {"text": "sensitivity", "start": 18, "end": 29, "id": 3, "annotation": null}, {"text": "of", "start": 30, "end": 32, "id": 4, "annotation": null}, {"text": "SnO2", "start": 33, "end": 37, "id": 5, "annotation": null}, {"text": "gas", "start": 38, "end": 41, "id": 6, "annotation": null}, {"text": "sensors", "start": 42, "end": 49, "id": 7, "annotation": null}, {"text": "on", "start": 50, "end": 52, "id": 8, "annotation": null}, {"text": "indium", "start": 53, "end": 59, "id": 9, "annotation": null}, {"text": "concentration", "start": 60, "end": 73, "id": 10, "annotation": null}, {"text": "has", "start": 74, "end": 77, "id": 11, "annotation": null}, {"text": "been", "start": 78, "end": 82, "id": 12, "annotation": null}, {"text": "studied", "start": 83, "end": 90, "id": 13, "annotation": null}, {"text": ".", "start": 91, "end": 92, "id": 14, "annotation": null}], [{"text": "Undoped", "start": 93, "end": 100, "id": 15, "annotation": null}, {"text": "and", "start": 101, "end": 104, "id": 16, "annotation": null}, {"text": "indium", "start": 105, "end": 111, "id": 17, "annotation": "DOPANT"}, {"text": "-", "start": 112, "end": 113, "id": 18, "annotation": null}, {"text": "doped", "start": 114, "end": 119, "id": 19, "annotation": null}, {"text": "SnO2", "start": 120, "end": 124, "id": 20, "annotation": "BASEMAT"}, {"text": "gas", "start": 125, "end": 128, "id": 21, "annotation": null}, {"text": "sensors", "start": 129, "end": 136, "id": 22, "annotation": null}, {"text": "have", "start": 137, "end": 141, "id": 23, "annotation": null}, {"text": "been", "start": 142, "end": 146, "id": 24, "annotation": null}, {"text": "prepared", "start": 147, "end": 155, "id": 25, "annotation": null}, {"text": "by", "start": 156, "end": 158, "id": 26, "annotation": null}, {"text": "chemical", "start": 159, "end": 167, "id": 27, "annotation": null}, {"text": "vapor", "start": 168, "end": 173, "id": 28, "annotation": null}, {"text": "deposition", "start": 174, "end": 184, "id": 29, "annotation": null}, {"text": "(", "start": 185, "end": 186, "id": 30, "annotation": null}, {"text": "CVD", "start": 187, "end": 190, "id": 31, "annotation": null}, {"text": ")", "start": 191, "end": 192, "id": 32, "annotation": null}, {"text": "using", "start": 193, "end": 198, "id": 33, "annotation": null}, {"text": "SnCl4", "start": 199, "end": 204, "id": 34, "annotation": null}, {"text": "as", "start": 205, "end": 207, "id": 35, "annotation": null}, {"text": "precursor", "start": 208, "end": 217, "id": 36, "annotation": null}, {"text": "solution", "start": 218, "end": 226, "id": 37, "annotation": null}, {"text": "without", "start": 227, "end": 234, "id": 38, "annotation": null}, {"text": "or", "start": 235, "end": 237, "id": 39, "annotation": null}, {"text": "with", "start": 238, "end": 242, "id": 40, "annotation": null}, {"text": "InCl3", "start": 243, "end": 248, "id": 41, "annotation": null}, {"text": "as", "start": 249, "end": 251, "id": 42, "annotation": null}, {"text": "doping", "start": 252, "end": 258, "id": 43, "annotation": null}, {"text": "solution", "start": 259, "end": 267, "id": 44, "annotation": null}, {"text": ",", "start": 268, "end": 269, "id": 45, "annotation": null}, {"text": "respectively", "start": 270, "end": 282, "id": 46, "annotation": null}, {"text": ".", "start": 283, "end": 284, "id": 47, "annotation": null}], [{"text": "The", "start": 285, "end": 288, "id": 48, "annotation": null}, {"text": "response", "start": 289, "end": 297, "id": 49, "annotation": null}, {"text": "of", "start": 298, "end": 300, "id": 50, "annotation": null}, {"text": "the", "start": 301, "end": 304, "id": 51, "annotation": null}, {"text": "sensors", "start": 305, "end": 312, "id": 52, "annotation": "BASEMAT"}, {"text": "is", "start": 313, "end": 315, "id": 53, "annotation": null}, {"text": "observed", "start": 316, "end": 324, "id": 54, "annotation": null}, {"text": "to", "start": 325, "end": 327, "id": 55, "annotation": null}, {"text": "increase", "start": 328, "end": 336, "id": 56, "annotation": null}, {"text": "significantly", "start": 337, "end": 350, "id": 57, "annotation": null}, {"text": "with", "start": 351, "end": 355, "id": 58, "annotation": null}, {"text": "20wt.%", "start": 356, "end": 362, "id": 59, "annotation": "DOPMODQ"}, {"text": "InCl3", "start": 363, "end": 368, "id": 60, "annotation": "DOPANT"}, {"text": "content", "start": 369, "end": 376, "id": 61, "annotation": null}, {"text": "towards", "start": 377, "end": 384, "id": 62, "annotation": null}, {"text": "1000ppm", "start": 385, "end": 392, "id": 63, "annotation": null}, {"text": "hydrogen", "start": 393, "end": 401, "id": 64, "annotation": null}, {"text": ",", "start": 402, "end": 403, "id": 65, "annotation": null}, {"text": "methanol", "start": 404, "end": 412, "id": 66, "annotation": null}, {"text": ",", "start": 413, "end": 414, "id": 67, "annotation": null}, {"text": "and", "start": 415, "end": 418, "id": 68, "annotation": null}, {"text": "carbon", "start": 419, "end": 425, "id": 69, "annotation": null}, {"text": "monoxide", "start": 426, "end": 434, "id": 70, "annotation": null}, {"text": ".", "start": 435, "end": 436, "id": 71, "annotation": null}], [{"text": "Indium", "start": 437, "end": 443, "id": 72, "annotation": "DOPANT"}, {"text": "-", "start": 444, "end": 445, "id": 73, "annotation": null}, {"text": "doped", "start": 446, "end": 451, "id": 74, "annotation": null}, {"text": "SnO2", "start": 452, "end": 456, "id": 75, "annotation": "BASEMAT"}, {"text": "gas", "start": 457, "end": 460, "id": 76, "annotation": null}, {"text": "sensors", "start": 461, "end": 468, "id": 77, "annotation": null}, {"text": "with", "start": 469, "end": 473, "id": 78, "annotation": null}, {"text": "sensitivity", "start": 474, "end": 485, "id": 79, "annotation": null}, {"text": "as", "start": 486, "end": 488, "id": 80, "annotation": null}, {"text": "high", "start": 489, "end": 493, "id": 81, "annotation": null}, {"text": "as", "start": 494, "end": 496, "id": 82, "annotation": null}, {"text": "17", "start": 497, "end": 499, "id": 83, "annotation": null}, {"text": "%", "start": 500, "end": 501, "id": 84, "annotation": null}, {"text": ",", "start": 502, "end": 503, "id": 85, "annotation": null}, {"text": "four", "start": 504, "end": 508, "id": 86, "annotation": null}, {"text": "times", "start": 509, "end": 514, "id": 87, "annotation": null}, {"text": "higher", "start": 515, "end": 521, "id": 88, "annotation": null}, {"text": "than", "start": 522, "end": 526, "id": 89, "annotation": null}, {"text": "that", "start": 527, "end": 531, "id": 90, "annotation": null}, {"text": "of", "start": 532, "end": 534, "id": 91, "annotation": null}, {"text": "undoped", "start": 535, "end": 542, "id": 92, "annotation": null}, {"text": "sensor", "start": 543, "end": 549, "id": 93, "annotation": null}, {"text": ",", "start": 550, "end": 551, "id": 94, "annotation": null}, {"text": "are", "start": 552, "end": 555, "id": 95, "annotation": null}, {"text": "obtained", "start": 556, "end": 564, "id": 96, "annotation": null}, {"text": "for", "start": 565, "end": 568, "id": 97, "annotation": null}, {"text": "1000ppm", "start": 569, "end": 576, "id": 98, "annotation": null}, {"text": "methanol", "start": 577, "end": 585, "id": 99, "annotation": null}, {"text": ".", "start": 586, "end": 587, "id": 100, "annotation": null}], [{"text": "Above", "start": 588, "end": 593, "id": 101, "annotation": null}, {"text": "an", "start": 594, "end": 596, "id": 102, "annotation": null}, {"text": "amount", "start": 597, "end": 603, "id": 103, "annotation": null}, {"text": "of", "start": 604, "end": 606, "id": 104, "annotation": null}, {"text": "20wt.%", "start": 607, "end": 613, "id": 105, "annotation": "DOPMODQ"}, {"text": "InCl3", "start": 614, "end": 619, "id": 106, "annotation": "DOPANT"}, {"text": ",", "start": 620, "end": 621, "id": 107, "annotation": null}, {"text": "the", "start": 622, "end": 625, "id": 108, "annotation": null}, {"text": "sensitivity", "start": 626, "end": 637, "id": 109, "annotation": null}, {"text": "of", "start": 638, "end": 640, "id": 110, "annotation": null}, {"text": "the", "start": 641, "end": 644, "id": 111, "annotation": null}, {"text": "sensors", "start": 645, "end": 652, "id": 112, "annotation": "BASEMAT"}, {"text": "decreases", "start": 653, "end": 662, "id": 113, "annotation": null}, {"text": "drastically", "start": 663, "end": 674, "id": 114, "annotation": null}, {"text": ".", "start": 675, "end": 676, "id": 115, "annotation": null}], [{"text": "A", "start": 677, "end": 678, "id": 116, "annotation": null}, {"text": "concentration", "start": 679, "end": 692, "id": 117, "annotation": null}, {"text": "of", "start": 693, "end": 695, "id": 118, "annotation": null}, {"text": "40wt.%", "start": 696, "end": 702, "id": 119, "annotation": "DOPMODQ"}, {"text": "InCl3", "start": 703, "end": 708, "id": 120, "annotation": "DOPANT"}, {"text": "decreases", "start": 709, "end": 718, "id": 121, "annotation": null}, {"text": "the", "start": 719, "end": 722, "id": 122, "annotation": null}, {"text": "response", "start": 723, "end": 731, "id": 123, "annotation": null}, {"text": "of", "start": 732, "end": 734, "id": 124, "annotation": null}, {"text": "the", "start": 735, "end": 738, "id": 125, "annotation": null}, {"text": "sensors", "start": 739, "end": 746, "id": 126, "annotation": "BASEMAT"}, {"text": "down", "start": 747, "end": 751, "id": 127, "annotation": null}, {"text": "to", "start": 752, "end": 754, "id": 128, "annotation": null}, {"text": "the", "start": 755, "end": 758, "id": 129, "annotation": null}, {"text": "sensitivity", "start": 759, "end": 770, "id": 130, "annotation": null}, {"text": "value", "start": 771, "end": 776, "id": 131, "annotation": null}, {"text": "of", "start": 777, "end": 779, "id": 132, "annotation": null}, {"text": "the", "start": 780, "end": 783, "id": 133, "annotation": null}, {"text": "undoped", "start": 784, "end": 791, "id": 134, "annotation": null}, {"text": "sensor", "start": 792, "end": 798, "id": 135, "annotation": null}, {"text": ".", "start": 799, "end": 800, "id": 136, "annotation": null}], [{"text": "Scanning", "start": 801, "end": 809, "id": 137, "annotation": null}, {"text": "electron", "start": 810, "end": 818, "id": 138, "annotation": null}, {"text": "microscopy", "start": 819, "end": 829, "id": 139, "annotation": null}, {"text": "(", "start": 830, "end": 831, "id": 140, "annotation": null}, {"text": "SEM", "start": 832, "end": 835, "id": 141, "annotation": null}, {"text": ")", "start": 836, "end": 837, "id": 142, "annotation": null}, {"text": "was", "start": 838, "end": 841, "id": 143, "annotation": null}, {"text": "used", "start": 842, "end": 846, "id": 144, "annotation": null}, {"text": "to", "start": 847, "end": 849, "id": 145, "annotation": null}, {"text": "investigate", "start": 850, "end": 861, "id": 146, "annotation": null}, {"text": "the", "start": 862, "end": 865, "id": 147, "annotation": null}, {"text": "morphology", "start": 866, "end": 876, "id": 148, "annotation": null}, {"text": "and", "start": 877, "end": 880, "id": 149, "annotation": null}, {"text": "pore", "start": 881, "end": 885, "id": 150, "annotation": null}, {"text": "structure", "start": 886, "end": 895, "id": 151, "annotation": null}, {"text": "of", "start": 896, "end": 898, "id": 152, "annotation": null}, {"text": "the", "start": 899, "end": 902, "id": 153, "annotation": null}, {"text": "undoped", "start": 903, "end": 910, "id": 154, "annotation": null}, {"text": "and", "start": 911, "end": 914, "id": 155, "annotation": null}, {"text": "indium", "start": 915, "end": 921, "id": 156, "annotation": "DOPANT"}, {"text": "-", "start": 922, "end": 923, "id": 157, "annotation": null}, {"text": "doped", "start": 924, "end": 929, "id": 158, "annotation": null}, {"text": "sensing", "start": 930, "end": 937, "id": 159, "annotation": null}, {"text": "films", "start": 938, "end": 943, "id": 160, "annotation": "BASEMAT"}, {"text": "with", "start": 944, "end": 948, "id": 161, "annotation": null}, {"text": "variations", "start": 949, "end": 959, "id": 162, "annotation": null}, {"text": "in", "start": 960, "end": 962, "id": 163, "annotation": null}, {"text": "indium", "start": 963, "end": 969, "id": 164, "annotation": "DOPANT"}, {"text": "concentration", "start": 970, "end": 983, "id": 165, "annotation": null}, {"text": ".", "start": 984, "end": 985, "id": 166, "annotation": null}], [{"text": "Further", "start": 986, "end": 993, "id": 167, "annotation": null}, {"text": ",", "start": 994, "end": 995, "id": 168, "annotation": null}, {"text": "the", "start": 996, "end": 999, "id": 169, "annotation": null}, {"text": "sensing", "start": 1000, "end": 1007, "id": 170, "annotation": null}, {"text": "films", "start": 1008, "end": 1013, "id": 171, "annotation": null}, {"text": "were", "start": 1014, "end": 1018, "id": 172, "annotation": null}, {"text": "characterized", "start": 1019, "end": 1032, "id": 173, "annotation": null}, {"text": "by", "start": 1033, "end": 1035, "id": 174, "annotation": null}, {"text": "X", "start": 1036, "end": 1037, "id": 175, "annotation": null}, {"text": "-", "start": 1038, "end": 1039, "id": 176, "annotation": null}, {"text": "ray", "start": 1040, "end": 1043, "id": 177, "annotation": null}, {"text": "diffraction", "start": 1044, "end": 1055, "id": 178, "annotation": null}, {"text": "(", "start": 1056, "end": 1057, "id": 179, "annotation": null}, {"text": "XRD", "start": 1058, "end": 1061, "id": 180, "annotation": null}, {"text": ")", "start": 1062, "end": 1063, "id": 181, "annotation": null}, {"text": "to", "start": 1064, "end": 1066, "id": 182, "annotation": null}, {"text": "identify", "start": 1067, "end": 1075, "id": 183, "annotation": null}, {"text": "the", "start": 1076, "end": 1079, "id": 184, "annotation": null}, {"text": "changes", "start": 1080, "end": 1087, "id": 185, "annotation": null}, {"text": "in", "start": 1088, "end": 1090, "id": 186, "annotation": null}, {"text": "their", "start": 1091, "end": 1096, "id": 187, "annotation": null}, {"text": "crystallographic", "start": 1097, "end": 1113, "id": 188, "annotation": null}, {"text": "structures", "start": 1114, "end": 1124, "id": 189, "annotation": null}, {"text": ".", "start": 1125, "end": 1126, "id": 190, "annotation": null}], [{"text": "The", "start": 1127, "end": 1130, "id": 191, "annotation": null}, {"text": "relation", "start": 1131, "end": 1139, "id": 192, "annotation": null}, {"text": "between", "start": 1140, "end": 1147, "id": 193, "annotation": null}, {"text": "structure", "start": 1148, "end": 1157, "id": 194, "annotation": null}, {"text": "of", "start": 1158, "end": 1160, "id": 195, "annotation": null}, {"text": "the", "start": 1161, "end": 1164, "id": 196, "annotation": null}, {"text": "films", "start": 1165, "end": 1170, "id": 197, "annotation": null}, {"text": "and", "start": 1171, "end": 1174, "id": 198, "annotation": null}, {"text": "gas", "start": 1175, "end": 1178, "id": 199, "annotation": null}, {"text": "sensitivity", "start": 1179, "end": 1190, "id": 200, "annotation": null}, {"text": "is", "start": 1191, "end": 1193, "id": 201, "annotation": null}, {"text": "discussed", "start": 1194, "end": 1203, "id": 202, "annotation": null}, {"text": ".", "start": 1204, "end": 1205, "id": 203, "annotation": null}], [{"text": "It", "start": 1206, "end": 1208, "id": 204, "annotation": null}, {"text": "is", "start": 1209, "end": 1211, "id": 205, "annotation": null}, {"text": "observed", "start": 1212, "end": 1220, "id": 206, "annotation": null}, {"text": "that", "start": 1221, "end": 1225, "id": 207, "annotation": null}, {"text": "structure", "start": 1226, "end": 1235, "id": 208, "annotation": null}, {"text": "of", "start": 1236, "end": 1238, "id": 209, "annotation": null}, {"text": "the", "start": 1239, "end": 1242, "id": 210, "annotation": null}, {"text": "sensors", "start": 1243, "end": 1250, "id": 211, "annotation": "BASEMAT"}, {"text": "changes", "start": 1251, "end": 1258, "id": 212, "annotation": null}, {"text": "as", "start": 1259, "end": 1261, "id": 213, "annotation": null}, {"text": "the", "start": 1262, "end": 1265, "id": 214, "annotation": null}, {"text": "doping", "start": 1266, "end": 1272, "id": 215, "annotation": null}, {"text": "concentration", "start": 1273, "end": 1286, "id": 216, "annotation": null}, {"text": "increases", "start": 1287, "end": 1296, "id": 217, "annotation": null}, {"text": ".", "start": 1297, "end": 1298, "id": 218, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "A unique heteronetwork consisting of crystalline tin-doped zinc oxide nanorod arrays and rutile tin oxide nanowires (SZO/SnO2) was fabricated for the first time using a two-step solution immersion method at a low temperature and immersion time (2h) for humidity sensing applications. The average diameter and thickness of the SZO are approximately 95 and 730nm, respectively. The diameter of the SnO2 nanowires ranges from 60nm to 120nm, and the length of the nanowire is approximately 10\u00b5m. The SZO/SnO2-based humidity sensor exhibits high stability and superior humidity sensing performance compared with the SZO-, SnO2-, and ZnO/SnO2-based sensors with a sensitivity of 67.8. Results demonstrate that the unique architecture of SZO/SnO2 heteronetwork can enhance the humidity sensing capabilities of the nanowires.", "meta": {"doi": "10.1016/j.matlet.2017.09.040"}, "_input_hash": -179308696, "_task_hash": 671427026, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "unique", "start": 2, "end": 8, "id": 1, "annotation": null}, {"text": "heteronetwork", "start": 9, "end": 22, "id": 2, "annotation": null}, {"text": "consisting", "start": 23, "end": 33, "id": 3, "annotation": null}, {"text": "of", "start": 34, "end": 36, "id": 4, "annotation": null}, {"text": "crystalline", "start": 37, "end": 48, "id": 5, "annotation": null}, {"text": "tin", "start": 49, "end": 52, "id": 6, "annotation": "DOPANT"}, {"text": "-", "start": 53, "end": 54, "id": 7, "annotation": null}, {"text": "doped", "start": 55, "end": 60, "id": 8, "annotation": null}, {"text": "zinc", "start": 61, "end": 65, "id": 9, "annotation": "BASEMAT"}, {"text": "oxide", "start": 66, "end": 71, "id": 10, "annotation": "BASEMAT"}, {"text": "nanorod", "start": 72, "end": 79, "id": 11, "annotation": null}, {"text": "arrays", "start": 80, "end": 86, "id": 12, "annotation": null}, {"text": "and", "start": 87, "end": 90, "id": 13, "annotation": null}, {"text": "rutile", "start": 91, "end": 97, "id": 14, "annotation": null}, {"text": "tin", "start": 98, "end": 101, "id": 15, "annotation": null}, {"text": "oxide", "start": 102, "end": 107, "id": 16, "annotation": null}, {"text": "nanowires", "start": 108, "end": 117, "id": 17, "annotation": null}, {"text": "(", "start": 118, "end": 119, "id": 18, "annotation": null}, {"text": "SZO", "start": 120, "end": 123, "id": 19, "annotation": null}, {"text": "/", "start": 124, "end": 125, "id": 20, "annotation": null}, {"text": "SnO2", "start": 126, "end": 130, "id": 21, "annotation": null}, {"text": ")", "start": 131, "end": 132, "id": 22, "annotation": null}, {"text": "was", "start": 133, "end": 136, "id": 23, "annotation": null}, {"text": "fabricated", "start": 137, "end": 147, "id": 24, "annotation": null}, {"text": "for", "start": 148, "end": 151, "id": 25, "annotation": null}, {"text": "the", "start": 152, "end": 155, "id": 26, "annotation": null}, {"text": "first", "start": 156, "end": 161, "id": 27, "annotation": null}, {"text": "time", "start": 162, "end": 166, "id": 28, "annotation": null}, {"text": "using", "start": 167, "end": 172, "id": 29, "annotation": null}, {"text": "a", "start": 173, "end": 174, "id": 30, "annotation": null}, {"text": "two", "start": 175, "end": 178, "id": 31, "annotation": null}, {"text": "-", "start": 179, "end": 180, "id": 32, "annotation": null}, {"text": "step", "start": 181, "end": 185, "id": 33, "annotation": null}, {"text": "solution", "start": 186, "end": 194, "id": 34, "annotation": null}, {"text": "immersion", "start": 195, "end": 204, "id": 35, "annotation": null}, {"text": "method", "start": 205, "end": 211, "id": 36, "annotation": null}, {"text": "at", "start": 212, "end": 214, "id": 37, "annotation": null}, {"text": "a", "start": 215, "end": 216, "id": 38, "annotation": null}, {"text": "low", "start": 217, "end": 220, "id": 39, "annotation": null}, {"text": "temperature", "start": 221, "end": 232, "id": 40, "annotation": null}, {"text": "and", "start": 233, "end": 236, "id": 41, "annotation": null}, {"text": "immersion", "start": 237, "end": 246, "id": 42, "annotation": null}, {"text": "time", "start": 247, "end": 251, "id": 43, "annotation": null}, {"text": "(", "start": 252, "end": 253, "id": 44, "annotation": null}, {"text": "2h", "start": 254, "end": 256, "id": 45, "annotation": null}, {"text": ")", "start": 257, "end": 258, "id": 46, "annotation": null}, {"text": "for", "start": 259, "end": 262, "id": 47, "annotation": null}, {"text": "humidity", "start": 263, "end": 271, "id": 48, "annotation": null}, {"text": "sensing", "start": 272, "end": 279, "id": 49, "annotation": null}, {"text": "applications", "start": 280, "end": 292, "id": 50, "annotation": null}, {"text": ".", "start": 293, "end": 294, "id": 51, "annotation": null}], [{"text": "The", "start": 295, "end": 298, "id": 52, "annotation": null}, {"text": "average", "start": 299, "end": 306, "id": 53, "annotation": null}, {"text": "diameter", "start": 307, "end": 315, "id": 54, "annotation": null}, {"text": "and", "start": 316, "end": 319, "id": 55, "annotation": null}, {"text": "thickness", "start": 320, "end": 329, "id": 56, "annotation": null}, {"text": "of", "start": 330, "end": 332, "id": 57, "annotation": null}, {"text": "the", "start": 333, "end": 336, "id": 58, "annotation": null}, {"text": "SZO", "start": 337, "end": 340, "id": 59, "annotation": null}, {"text": "are", "start": 341, "end": 344, "id": 60, "annotation": null}, {"text": "approximately", "start": 345, "end": 358, "id": 61, "annotation": null}, {"text": "95", "start": 359, "end": 361, "id": 62, "annotation": null}, {"text": "and", "start": 362, "end": 365, "id": 63, "annotation": null}, {"text": "730", "start": 366, "end": 369, "id": 64, "annotation": null}, {"text": "nm", "start": 370, "end": 372, "id": 65, "annotation": null}, {"text": ",", "start": 373, "end": 374, "id": 66, "annotation": null}, {"text": "respectively", "start": 375, "end": 387, "id": 67, "annotation": null}, {"text": ".", "start": 388, "end": 389, "id": 68, "annotation": null}], [{"text": "The", "start": 390, "end": 393, "id": 69, "annotation": null}, {"text": "diameter", "start": 394, "end": 402, "id": 70, "annotation": null}, {"text": "of", "start": 403, "end": 405, "id": 71, "annotation": null}, {"text": "the", "start": 406, "end": 409, "id": 72, "annotation": null}, {"text": "SnO2", "start": 410, "end": 414, "id": 73, "annotation": null}, {"text": "nanowires", "start": 415, "end": 424, "id": 74, "annotation": null}, {"text": "ranges", "start": 425, "end": 431, "id": 75, "annotation": null}, {"text": "from", "start": 432, "end": 436, "id": 76, "annotation": null}, {"text": "60", "start": 437, "end": 439, "id": 77, "annotation": null}, {"text": "nm", "start": 440, "end": 442, "id": 78, "annotation": null}, {"text": "to", "start": 443, "end": 445, "id": 79, "annotation": null}, {"text": "120", "start": 446, "end": 449, "id": 80, "annotation": null}, {"text": "nm", "start": 450, "end": 452, "id": 81, "annotation": null}, {"text": ",", "start": 453, "end": 454, "id": 82, "annotation": null}, {"text": "and", "start": 455, "end": 458, "id": 83, "annotation": null}, {"text": "the", "start": 459, "end": 462, "id": 84, "annotation": null}, {"text": "length", "start": 463, "end": 469, "id": 85, "annotation": null}, {"text": "of", "start": 470, "end": 472, "id": 86, "annotation": null}, {"text": "the", "start": 473, "end": 476, "id": 87, "annotation": null}, {"text": "nanowire", "start": 477, "end": 485, "id": 88, "annotation": null}, {"text": "is", "start": 486, "end": 488, "id": 89, "annotation": null}, {"text": "approximately", "start": 489, "end": 502, "id": 90, "annotation": null}, {"text": "10", "start": 503, "end": 505, "id": 91, "annotation": null}, {"text": "\u00b5m", "start": 506, "end": 508, "id": 92, "annotation": null}, {"text": ".", "start": 509, "end": 510, "id": 93, "annotation": null}], [{"text": "The", "start": 511, "end": 514, "id": 94, "annotation": null}, {"text": "SZO", "start": 515, "end": 518, "id": 95, "annotation": null}, {"text": "/", "start": 519, "end": 520, "id": 96, "annotation": null}, {"text": "SnO2-based", "start": 521, "end": 531, "id": 97, "annotation": null}, {"text": "humidity", "start": 532, "end": 540, "id": 98, "annotation": null}, {"text": "sensor", "start": 541, "end": 547, "id": 99, "annotation": null}, {"text": "exhibits", "start": 548, "end": 556, "id": 100, "annotation": null}, {"text": "high", "start": 557, "end": 561, "id": 101, "annotation": null}, {"text": "stability", "start": 562, "end": 571, "id": 102, "annotation": null}, {"text": "and", "start": 572, "end": 575, "id": 103, "annotation": null}, {"text": "superior", "start": 576, "end": 584, "id": 104, "annotation": null}, {"text": "humidity", "start": 585, "end": 593, "id": 105, "annotation": null}, {"text": "sensing", "start": 594, "end": 601, "id": 106, "annotation": null}, {"text": "performance", "start": 602, "end": 613, "id": 107, "annotation": null}, {"text": "compared", "start": 614, "end": 622, "id": 108, "annotation": null}, {"text": "with", "start": 623, "end": 627, "id": 109, "annotation": null}, {"text": "the", "start": 628, "end": 631, "id": 110, "annotation": null}, {"text": "SZO-", "start": 632, "end": 636, "id": 111, "annotation": null}, {"text": ",", "start": 637, "end": 638, "id": 112, "annotation": null}, {"text": "SnO2-", "start": 639, "end": 644, "id": 113, "annotation": null}, {"text": ",", "start": 645, "end": 646, "id": 114, "annotation": null}, {"text": "and", "start": 647, "end": 650, "id": 115, "annotation": null}, {"text": "ZnO", "start": 651, "end": 654, "id": 116, "annotation": null}, {"text": "/", "start": 655, "end": 656, "id": 117, "annotation": null}, {"text": "SnO2-based", "start": 657, "end": 667, "id": 118, "annotation": null}, {"text": "sensors", "start": 668, "end": 675, "id": 119, "annotation": null}, {"text": "with", "start": 676, "end": 680, "id": 120, "annotation": null}, {"text": "a", "start": 681, "end": 682, "id": 121, "annotation": null}, {"text": "sensitivity", "start": 683, "end": 694, "id": 122, "annotation": null}, {"text": "of", "start": 695, "end": 697, "id": 123, "annotation": null}, {"text": "67.8", "start": 698, "end": 702, "id": 124, "annotation": null}, {"text": ".", "start": 703, "end": 704, "id": 125, "annotation": null}], [{"text": "Results", "start": 705, "end": 712, "id": 126, "annotation": null}, {"text": "demonstrate", "start": 713, "end": 724, "id": 127, "annotation": null}, {"text": "that", "start": 725, "end": 729, "id": 128, "annotation": null}, {"text": "the", "start": 730, "end": 733, "id": 129, "annotation": null}, {"text": "unique", "start": 734, "end": 740, "id": 130, "annotation": null}, {"text": "architecture", "start": 741, "end": 753, "id": 131, "annotation": null}, {"text": "of", "start": 754, "end": 756, "id": 132, "annotation": null}, {"text": "SZO", "start": 757, "end": 760, "id": 133, "annotation": null}, {"text": "/", "start": 761, "end": 762, "id": 134, "annotation": null}, {"text": "SnO2", "start": 763, "end": 767, "id": 135, "annotation": null}, {"text": "heteronetwork", "start": 768, "end": 781, "id": 136, "annotation": null}, {"text": "can", "start": 782, "end": 785, "id": 137, "annotation": null}, {"text": "enhance", "start": 786, "end": 793, "id": 138, "annotation": null}, {"text": "the", "start": 794, "end": 797, "id": 139, "annotation": null}, {"text": "humidity", "start": 798, "end": 806, "id": 140, "annotation": null}, {"text": "sensing", "start": 807, "end": 814, "id": 141, "annotation": null}, {"text": "capabilities", "start": 815, "end": 827, "id": 142, "annotation": null}, {"text": "of", "start": 828, "end": 830, "id": 143, "annotation": null}, {"text": "the", "start": 831, "end": 834, "id": 144, "annotation": null}, {"text": "nanowires", "start": 835, "end": 844, "id": 145, "annotation": null}, {"text": ".", "start": 845, "end": 846, "id": 146, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "Photoelectrochemical (PEC) water splitting to its constituents, hydrogen and oxygen, is a promising approach to producing chemical fuels. The preparation of metal oxides on a conductive substrate with a well-defined structure has been an important issue for improving the efficiency of PEC water splitting. In this study, we have developed a facile synthetic process for the manufacture of WO3 nanocrystals with full coverage on a fluorine-doped tin oxide (FTO) substrate. The preparation of WO3 as a continuous film on the FTO substrate is indispensable to study charge separation processes in its composite structure. Typically, various ratios of WO3/BiVO4 composite structures were prepared with the WO3 held constant to investigate charge separation processes in WO3 and BiVO4 for efficient PEC water oxidation. The photocurrent initially drops and then rises with growing BiVO4 molar ratios. We attribute this initial decrease in photocurrent to electron-hole recombination at the semiconductor-semiconductor interface. On the other hand, an improved photocurrent is attributed to enhanced charge separation of BiVO4 on the WO3 electrode. Our work reveals the important relationship between WO3 and BiVO4 in water oxidation reaction.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Photoelectrochemical", "start": 0, "end": 20, "annotation": null}, {"text": "(", "start": 21, "end": 22, "annotation": null}, {"text": "PEC", "start": 22, "end": 25, "annotation": null}, {"text": ")", "start": 25, "end": 26, "annotation": null}, {"text": "water", "start": 27, "end": 32, "annotation": null}, {"text": "splitting", "start": 33, "end": 42, "annotation": null}, {"text": "to", "start": 43, "end": 45, "annotation": null}, {"text": "its", "start": 46, "end": 49, "annotation": null}, {"text": "constituents", "start": 50, "end": 62, "annotation": null}, {"text": ",", "start": 62, "end": 63, "annotation": null}, {"text": "hydrogen", "start": 64, "end": 72, "annotation": null}, {"text": "and", "start": 73, "end": 76, "annotation": null}, {"text": "oxygen", "start": 77, "end": 83, "annotation": null}, {"text": ",", "start": 83, "end": 84, "annotation": null}, {"text": "is", "start": 85, "end": 87, "annotation": null}, {"text": "a", "start": 88, "end": 89, "annotation": null}, {"text": "promising", "start": 90, "end": 99, "annotation": null}, {"text": "approach", "start": 100, "end": 108, "annotation": null}, {"text": "to", "start": 109, "end": 111, "annotation": null}, {"text": "producing", "start": 112, "end": 121, "annotation": null}, {"text": "chemical", "start": 122, "end": 130, "annotation": null}, {"text": "fuels", "start": 131, "end": 136, "annotation": null}, {"text": ".", "start": 136, "end": 137, "annotation": null}], [{"text": "The", "start": 138, "end": 141, "annotation": null}, {"text": "preparation", "start": 142, "end": 153, "annotation": null}, {"text": "of", "start": 154, "end": 156, "annotation": null}, {"text": "metal", "start": 157, "end": 162, "annotation": null}, {"text": "oxides", "start": 163, "end": 169, "annotation": null}, {"text": "on", "start": 170, "end": 172, "annotation": null}, {"text": "a", "start": 173, "end": 174, "annotation": null}, {"text": "conductive", "start": 175, "end": 185, "annotation": null}, {"text": "substrate", "start": 186, "end": 195, "annotation": null}, {"text": "with", "start": 196, "end": 200, "annotation": null}, {"text": "a", "start": 201, "end": 202, "annotation": null}, {"text": "well", "start": 203, "end": 207, "annotation": null}, {"text": "-", "start": 207, "end": 208, "annotation": null}, {"text": "defined", "start": 208, "end": 215, "annotation": null}, {"text": "structure", "start": 216, "end": 225, "annotation": null}, {"text": "has", "start": 226, "end": 229, "annotation": null}, {"text": "been", "start": 230, "end": 234, "annotation": null}, {"text": "an", "start": 235, "end": 237, "annotation": null}, {"text": "important", "start": 238, "end": 247, "annotation": null}, {"text": "issue", "start": 248, "end": 253, "annotation": null}, {"text": "for", "start": 254, "end": 257, "annotation": null}, {"text": "improving", "start": 258, "end": 267, "annotation": null}, {"text": "the", "start": 268, "end": 271, "annotation": null}, {"text": "efficiency", "start": 272, "end": 282, "annotation": null}, {"text": "of", "start": 283, "end": 285, "annotation": null}, {"text": "PEC", "start": 286, "end": 289, "annotation": null}, {"text": "water", "start": 290, "end": 295, "annotation": null}, {"text": "splitting", "start": 296, "end": 305, "annotation": null}, {"text": ".", "start": 305, "end": 306, "annotation": null}], [{"text": "In", "start": 307, "end": 309, "annotation": null}, {"text": "this", "start": 310, "end": 314, "annotation": null}, {"text": "study", "start": 315, "end": 320, "annotation": null}, {"text": ",", "start": 320, "end": 321, "annotation": null}, {"text": "we", "start": 322, "end": 324, "annotation": null}, {"text": "have", "start": 325, "end": 329, "annotation": null}, {"text": "developed", "start": 330, "end": 339, "annotation": null}, {"text": "a", "start": 340, "end": 341, "annotation": null}, {"text": "facile", "start": 342, "end": 348, "annotation": null}, {"text": "synthetic", "start": 349, "end": 358, "annotation": null}, {"text": "process", "start": 359, "end": 366, "annotation": null}, {"text": "for", "start": 367, "end": 370, "annotation": null}, {"text": "the", "start": 371, "end": 374, "annotation": null}, {"text": "manufacture", "start": 375, "end": 386, "annotation": null}, {"text": "of", "start": 387, "end": 389, "annotation": null}, {"text": "WO3", "start": 390, "end": 393, "annotation": null}, {"text": "nanocrystals", "start": 394, "end": 406, "annotation": null}, {"text": "with", "start": 407, "end": 411, "annotation": null}, {"text": "full", "start": 412, "end": 416, "annotation": null}, {"text": "coverage", "start": 417, "end": 425, "annotation": null}, {"text": "on", "start": 426, "end": 428, "annotation": null}, {"text": "a", "start": 429, "end": 430, "annotation": null}, {"text": "fluorine", "start": 431, "end": 439, "annotation": "DOPANT"}, {"text": "-", "start": 439, "end": 440, "annotation": null}, {"text": "doped", "start": 440, "end": 445, "annotation": null}, {"text": "tin", "start": 446, "end": 449, "annotation": "BASEMAT"}, {"text": "oxide", "start": 450, "end": 455, "annotation": "BASEMAT"}, {"text": "(", "start": 456, "end": 457, "annotation": null}, {"text": "FTO", "start": 457, "end": 460, "annotation": "BASEMAT"}, {"text": ")", "start": 460, "end": 461, "annotation": null}, {"text": "substrate", "start": 462, "end": 471, "annotation": null}, {"text": ".", "start": 471, "end": 472, "annotation": null}], [{"text": "The", "start": 473, "end": 476, "annotation": null}, {"text": "preparation", "start": 477, "end": 488, "annotation": null}, {"text": "of", "start": 489, "end": 491, "annotation": null}, {"text": "WO3", "start": 492, "end": 495, "annotation": null}, {"text": "as", "start": 496, "end": 498, "annotation": null}, {"text": "a", "start": 499, "end": 500, "annotation": null}, {"text": "continuous", "start": 501, "end": 511, "annotation": null}, {"text": "film", "start": 512, "end": 516, "annotation": null}, {"text": "on", "start": 517, "end": 519, "annotation": null}, {"text": "the", "start": 520, "end": 523, "annotation": null}, {"text": "FTO", "start": 524, "end": 527, "annotation": "BASEMAT"}, {"text": "substrate", "start": 528, "end": 537, "annotation": null}, {"text": "is", "start": 538, "end": 540, "annotation": null}, {"text": "indispensable", "start": 541, "end": 554, "annotation": null}, {"text": "to", "start": 555, "end": 557, "annotation": null}, {"text": "study", "start": 558, "end": 563, "annotation": null}, {"text": "charge", "start": 564, "end": 570, "annotation": null}, {"text": "separation", "start": 571, "end": 581, "annotation": null}, {"text": "processes", "start": 582, "end": 591, "annotation": null}, {"text": "in", "start": 592, "end": 594, "annotation": null}, {"text": "its", "start": 595, "end": 598, "annotation": null}, {"text": "composite", "start": 599, "end": 608, "annotation": null}, {"text": "structure", "start": 609, "end": 618, "annotation": null}, {"text": ".", "start": 618, "end": 619, "annotation": null}], [{"text": "Typically", "start": 620, "end": 629, "annotation": null}, {"text": ",", "start": 629, "end": 630, "annotation": null}, {"text": "various", "start": 631, "end": 638, "annotation": null}, {"text": "ratios", "start": 639, "end": 645, "annotation": null}, {"text": "of", "start": 646, "end": 648, "annotation": null}, {"text": "WO3", "start": 649, "end": 652, "annotation": null}, {"text": "/", "start": 652, "end": 653, "annotation": null}, {"text": "BiVO4", "start": 653, "end": 658, "annotation": null}, {"text": "composite", "start": 659, "end": 668, "annotation": null}, {"text": "structures", "start": 669, "end": 679, "annotation": null}, {"text": "were", "start": 680, "end": 684, "annotation": null}, {"text": "prepared", "start": 685, "end": 693, "annotation": null}, {"text": "with", "start": 694, "end": 698, "annotation": null}, {"text": "the", "start": 699, "end": 702, "annotation": null}, {"text": "WO3", "start": 703, "end": 706, "annotation": null}, {"text": "held", "start": 707, "end": 711, "annotation": null}, {"text": "constant", "start": 712, "end": 720, "annotation": null}, {"text": "to", "start": 721, "end": 723, "annotation": null}, {"text": "investigate", "start": 724, "end": 735, "annotation": null}, {"text": "charge", "start": 736, "end": 742, "annotation": null}, {"text": "separation", "start": 743, "end": 753, "annotation": null}, {"text": "processes", "start": 754, "end": 763, "annotation": null}, {"text": "in", "start": 764, "end": 766, "annotation": null}, {"text": "WO3", "start": 767, "end": 770, "annotation": null}, {"text": "and", "start": 771, "end": 774, "annotation": null}, {"text": "BiVO4", "start": 775, "end": 780, "annotation": null}, {"text": "for", "start": 781, "end": 784, "annotation": null}, {"text": "efficient", "start": 785, "end": 794, "annotation": null}, {"text": "PEC", "start": 795, "end": 798, "annotation": null}, {"text": "water", "start": 799, "end": 804, "annotation": null}, {"text": "oxidation", "start": 805, "end": 814, "annotation": null}, {"text": ".", "start": 814, "end": 815, "annotation": null}], [{"text": "The", "start": 816, "end": 819, "annotation": null}, {"text": "photocurrent", "start": 820, "end": 832, "annotation": null}, {"text": "initially", "start": 833, "end": 842, "annotation": null}, {"text": "drops", "start": 843, "end": 848, "annotation": null}, {"text": "and", "start": 849, "end": 852, "annotation": null}, {"text": "then", "start": 853, "end": 857, "annotation": null}, {"text": "rises", "start": 858, "end": 863, "annotation": null}, {"text": "with", "start": 864, "end": 868, "annotation": null}, {"text": "growing", "start": 869, "end": 876, "annotation": null}, {"text": "BiVO4", "start": 877, "end": 882, "annotation": null}, {"text": "molar", "start": 883, "end": 888, "annotation": null}, {"text": "ratios", "start": 889, "end": 895, "annotation": null}, {"text": ".", "start": 895, "end": 896, "annotation": null}], [{"text": "We", "start": 897, "end": 899, "annotation": null}, {"text": "attribute", "start": 900, "end": 909, "annotation": null}, {"text": "this", "start": 910, "end": 914, "annotation": null}, {"text": "initial", "start": 915, "end": 922, "annotation": null}, {"text": "decrease", "start": 923, "end": 931, "annotation": null}, {"text": "in", "start": 932, "end": 934, "annotation": null}, {"text": "photocurrent", "start": 935, "end": 947, "annotation": null}, {"text": "to", "start": 948, "end": 950, "annotation": null}, {"text": "electron", "start": 951, "end": 959, "annotation": null}, {"text": "-", "start": 959, "end": 960, "annotation": null}, {"text": "hole", "start": 960, "end": 964, "annotation": null}, {"text": "recombination", "start": 965, "end": 978, "annotation": null}, {"text": "at", "start": 979, "end": 981, "annotation": null}, {"text": "the", "start": 982, "end": 985, "annotation": null}, {"text": "semiconductor", "start": 986, "end": 999, "annotation": null}, {"text": "-", "start": 999, "end": 1000, "annotation": null}, {"text": "semiconductor", "start": 1000, "end": 1013, "annotation": null}, {"text": "interface", "start": 1014, "end": 1023, "annotation": null}, {"text": ".", "start": 1023, "end": 1024, "annotation": null}], [{"text": "On", "start": 1025, "end": 1027, "annotation": null}, {"text": "the", "start": 1028, "end": 1031, "annotation": null}, {"text": "other", "start": 1032, "end": 1037, "annotation": null}, {"text": "hand", "start": 1038, "end": 1042, "annotation": null}, {"text": ",", "start": 1042, "end": 1043, "annotation": null}, {"text": "an", "start": 1044, "end": 1046, "annotation": null}, {"text": "improved", "start": 1047, "end": 1055, "annotation": null}, {"text": "photocurrent", "start": 1056, "end": 1068, "annotation": null}, {"text": "is", "start": 1069, "end": 1071, "annotation": null}, {"text": "attributed", "start": 1072, "end": 1082, "annotation": null}, {"text": "to", "start": 1083, "end": 1085, "annotation": null}, {"text": "enhanced", "start": 1086, "end": 1094, "annotation": null}, {"text": "charge", "start": 1095, "end": 1101, "annotation": null}, {"text": "separation", "start": 1102, "end": 1112, "annotation": null}, {"text": "of", "start": 1113, "end": 1115, "annotation": null}, {"text": "BiVO4", "start": 1116, "end": 1121, "annotation": null}, {"text": "on", "start": 1122, "end": 1124, "annotation": null}, {"text": "the", "start": 1125, "end": 1128, "annotation": null}, {"text": "WO3", "start": 1129, "end": 1132, "annotation": null}, {"text": "electrode", "start": 1133, "end": 1142, "annotation": null}, {"text": ".", "start": 1142, "end": 1143, "annotation": null}], [{"text": "Our", "start": 1144, "end": 1147, "annotation": null}, {"text": "work", "start": 1148, "end": 1152, "annotation": null}, {"text": "reveals", "start": 1153, "end": 1160, "annotation": null}, {"text": "the", "start": 1161, "end": 1164, "annotation": null}, {"text": "important", "start": 1165, "end": 1174, "annotation": null}, {"text": "relationship", "start": 1175, "end": 1187, "annotation": null}, {"text": "between", "start": 1188, "end": 1195, "annotation": null}, {"text": "WO3", "start": 1196, "end": 1199, "annotation": null}, {"text": "and", "start": 1200, "end": 1203, "annotation": null}, {"text": "BiVO4", "start": 1204, "end": 1209, "annotation": null}, {"text": "in", "start": 1210, "end": 1212, "annotation": null}, {"text": "water", "start": 1213, "end": 1218, "annotation": null}, {"text": "oxidation", "start": 1219, "end": 1228, "annotation": null}, {"text": "reaction", "start": 1229, "end": 1237, "annotation": null}, {"text": ".", "start": 1237, "end": 1238, "annotation": null}]]} +{"remark": "doping_annt2", "text": "Photoelectrochemical (PEC) water splitting to its constituents, hydrogen and oxygen, is a promising approach to producing chemical fuels. The preparation of metal oxides on a conductive substrate with a well-defined structure has been an important issue for improving the efficiency of PEC water splitting. In this study, we have developed a facile synthetic process for the manufacture of WO3 nanocrystals with full coverage on a fluorine-doped tin oxide (FTO) substrate. The preparation of WO3 as a continuous film on the FTO substrate is indispensable to study charge separation processes in its composite structure. Typically, various ratios of WO3/BiVO4 composite structures were prepared with the WO3 held constant to investigate charge separation processes in WO3 and BiVO4 for efficient PEC water oxidation. The photocurrent initially drops and then rises with growing BiVO4 molar ratios. We attribute this initial decrease in photocurrent to electron-hole recombination at the semiconductor-semiconductor interface. On the other hand, an improved photocurrent is attributed to enhanced charge separation of BiVO4 on the WO3 electrode. Our work reveals the important relationship between WO3 and BiVO4 in water oxidation reaction.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Photoelectrochemical", "start": 0, "end": 20, "annotation": null}, {"text": "(", "start": 21, "end": 22, "annotation": null}, {"text": "PEC", "start": 22, "end": 25, "annotation": null}, {"text": ")", "start": 25, "end": 26, "annotation": null}, {"text": "water", "start": 27, "end": 32, "annotation": null}, {"text": "splitting", "start": 33, "end": 42, "annotation": null}, {"text": "to", "start": 43, "end": 45, "annotation": null}, {"text": "its", "start": 46, "end": 49, "annotation": null}, {"text": "constituents", "start": 50, "end": 62, "annotation": null}, {"text": ",", "start": 62, "end": 63, "annotation": null}, {"text": "hydrogen", "start": 64, "end": 72, "annotation": null}, {"text": "and", "start": 73, "end": 76, "annotation": null}, {"text": "oxygen", "start": 77, "end": 83, "annotation": null}, {"text": ",", "start": 83, "end": 84, "annotation": null}, {"text": "is", "start": 85, "end": 87, "annotation": null}, {"text": "a", "start": 88, "end": 89, "annotation": null}, {"text": "promising", "start": 90, "end": 99, "annotation": null}, {"text": "approach", "start": 100, "end": 108, "annotation": null}, {"text": "to", "start": 109, "end": 111, "annotation": null}, {"text": "producing", "start": 112, "end": 121, "annotation": null}, {"text": "chemical", "start": 122, "end": 130, "annotation": null}, {"text": "fuels", "start": 131, "end": 136, "annotation": null}, {"text": ".", "start": 136, "end": 137, "annotation": null}], [{"text": "The", "start": 138, "end": 141, "annotation": null}, {"text": "preparation", "start": 142, "end": 153, "annotation": null}, {"text": "of", "start": 154, "end": 156, "annotation": null}, {"text": "metal", "start": 157, "end": 162, "annotation": null}, {"text": "oxides", "start": 163, "end": 169, "annotation": null}, {"text": "on", "start": 170, "end": 172, "annotation": null}, {"text": "a", "start": 173, "end": 174, "annotation": null}, {"text": "conductive", "start": 175, "end": 185, "annotation": null}, {"text": "substrate", "start": 186, "end": 195, "annotation": null}, {"text": "with", "start": 196, "end": 200, "annotation": null}, {"text": "a", "start": 201, "end": 202, "annotation": null}, {"text": "well", "start": 203, "end": 207, "annotation": null}, {"text": "-", "start": 207, "end": 208, "annotation": null}, {"text": "defined", "start": 208, "end": 215, "annotation": null}, {"text": "structure", "start": 216, "end": 225, "annotation": null}, {"text": "has", "start": 226, "end": 229, "annotation": null}, {"text": "been", "start": 230, "end": 234, "annotation": null}, {"text": "an", "start": 235, "end": 237, "annotation": null}, {"text": "important", "start": 238, "end": 247, "annotation": null}, {"text": "issue", "start": 248, "end": 253, "annotation": null}, {"text": "for", "start": 254, "end": 257, "annotation": null}, {"text": "improving", "start": 258, "end": 267, "annotation": null}, {"text": "the", "start": 268, "end": 271, "annotation": null}, {"text": "efficiency", "start": 272, "end": 282, "annotation": null}, {"text": "of", "start": 283, "end": 285, "annotation": null}, {"text": "PEC", "start": 286, "end": 289, "annotation": null}, {"text": "water", "start": 290, "end": 295, "annotation": null}, {"text": "splitting", "start": 296, "end": 305, "annotation": null}, {"text": ".", "start": 305, "end": 306, "annotation": null}], [{"text": "In", "start": 307, "end": 309, "annotation": null}, {"text": "this", "start": 310, "end": 314, "annotation": null}, {"text": "study", "start": 315, "end": 320, "annotation": null}, {"text": ",", "start": 320, "end": 321, "annotation": null}, {"text": "we", "start": 322, "end": 324, "annotation": null}, {"text": "have", "start": 325, "end": 329, "annotation": null}, {"text": "developed", "start": 330, "end": 339, "annotation": null}, {"text": "a", "start": 340, "end": 341, "annotation": null}, {"text": "facile", "start": 342, "end": 348, "annotation": null}, {"text": "synthetic", "start": 349, "end": 358, "annotation": null}, {"text": "process", "start": 359, "end": 366, "annotation": null}, {"text": "for", "start": 367, "end": 370, "annotation": null}, {"text": "the", "start": 371, "end": 374, "annotation": null}, {"text": "manufacture", "start": 375, "end": 386, "annotation": null}, {"text": "of", "start": 387, "end": 389, "annotation": null}, {"text": "WO3", "start": 390, "end": 393, "annotation": null}, {"text": "nanocrystals", "start": 394, "end": 406, "annotation": null}, {"text": "with", "start": 407, "end": 411, "annotation": null}, {"text": "full", "start": 412, "end": 416, "annotation": null}, {"text": "coverage", "start": 417, "end": 425, "annotation": null}, {"text": "on", "start": 426, "end": 428, "annotation": null}, {"text": "a", "start": 429, "end": 430, "annotation": null}, {"text": "fluorine", "start": 431, "end": 439, "annotation": "DOPANT"}, {"text": "-", "start": 439, "end": 440, "annotation": null}, {"text": "doped", "start": 440, "end": 445, "annotation": null}, {"text": "tin", "start": 446, "end": 449, "annotation": "BASEMAT"}, {"text": "oxide", "start": 450, "end": 455, "annotation": "BASEMAT"}, {"text": "(", "start": 456, "end": 457, "annotation": null}, {"text": "FTO", "start": 457, "end": 460, "annotation": "BASEMAT"}, {"text": ")", "start": 460, "end": 461, "annotation": null}, {"text": "substrate", "start": 462, "end": 471, "annotation": null}, {"text": ".", "start": 471, "end": 472, "annotation": null}], [{"text": "The", "start": 473, "end": 476, "annotation": null}, {"text": "preparation", "start": 477, "end": 488, "annotation": null}, {"text": "of", "start": 489, "end": 491, "annotation": null}, {"text": "WO3", "start": 492, "end": 495, "annotation": null}, {"text": "as", "start": 496, "end": 498, "annotation": null}, {"text": "a", "start": 499, "end": 500, "annotation": null}, {"text": "continuous", "start": 501, "end": 511, "annotation": null}, {"text": "film", "start": 512, "end": 516, "annotation": null}, {"text": "on", "start": 517, "end": 519, "annotation": null}, {"text": "the", "start": 520, "end": 523, "annotation": null}, {"text": "FTO", "start": 524, "end": 527, "annotation": "BASEMAT"}, {"text": "substrate", "start": 528, "end": 537, "annotation": null}, {"text": "is", "start": 538, "end": 540, "annotation": null}, {"text": "indispensable", "start": 541, "end": 554, "annotation": null}, {"text": "to", "start": 555, "end": 557, "annotation": null}, {"text": "study", "start": 558, "end": 563, "annotation": null}, {"text": "charge", "start": 564, "end": 570, "annotation": null}, {"text": "separation", "start": 571, "end": 581, "annotation": null}, {"text": "processes", "start": 582, "end": 591, "annotation": null}, {"text": "in", "start": 592, "end": 594, "annotation": null}, {"text": "its", "start": 595, "end": 598, "annotation": null}, {"text": "composite", "start": 599, "end": 608, "annotation": null}, {"text": "structure", "start": 609, "end": 618, "annotation": null}, {"text": ".", "start": 618, "end": 619, "annotation": null}], [{"text": "Typically", "start": 620, "end": 629, "annotation": null}, {"text": ",", "start": 629, "end": 630, "annotation": null}, {"text": "various", "start": 631, "end": 638, "annotation": null}, {"text": "ratios", "start": 639, "end": 645, "annotation": null}, {"text": "of", "start": 646, "end": 648, "annotation": null}, {"text": "WO3", "start": 649, "end": 652, "annotation": null}, {"text": "/", "start": 652, "end": 653, "annotation": null}, {"text": "BiVO4", "start": 653, "end": 658, "annotation": null}, {"text": "composite", "start": 659, "end": 668, "annotation": null}, {"text": "structures", "start": 669, "end": 679, "annotation": null}, {"text": "were", "start": 680, "end": 684, "annotation": null}, {"text": "prepared", "start": 685, "end": 693, "annotation": null}, {"text": "with", "start": 694, "end": 698, "annotation": null}, {"text": "the", "start": 699, "end": 702, "annotation": null}, {"text": "WO3", "start": 703, "end": 706, "annotation": null}, {"text": "held", "start": 707, "end": 711, "annotation": null}, {"text": "constant", "start": 712, "end": 720, "annotation": null}, {"text": "to", "start": 721, "end": 723, "annotation": null}, {"text": "investigate", "start": 724, "end": 735, "annotation": null}, {"text": "charge", "start": 736, "end": 742, "annotation": null}, {"text": "separation", "start": 743, "end": 753, "annotation": null}, {"text": "processes", "start": 754, "end": 763, "annotation": null}, {"text": "in", "start": 764, "end": 766, "annotation": null}, {"text": "WO3", "start": 767, "end": 770, "annotation": null}, {"text": "and", "start": 771, "end": 774, "annotation": null}, {"text": "BiVO4", "start": 775, "end": 780, "annotation": null}, {"text": "for", "start": 781, "end": 784, "annotation": null}, {"text": "efficient", "start": 785, "end": 794, "annotation": null}, {"text": "PEC", "start": 795, "end": 798, "annotation": null}, {"text": "water", "start": 799, "end": 804, "annotation": null}, {"text": "oxidation", "start": 805, "end": 814, "annotation": null}, {"text": ".", "start": 814, "end": 815, "annotation": null}], [{"text": "The", "start": 816, "end": 819, "annotation": null}, {"text": "photocurrent", "start": 820, "end": 832, "annotation": null}, {"text": "initially", "start": 833, "end": 842, "annotation": null}, {"text": "drops", "start": 843, "end": 848, "annotation": null}, {"text": "and", "start": 849, "end": 852, "annotation": null}, {"text": "then", "start": 853, "end": 857, "annotation": null}, {"text": "rises", "start": 858, "end": 863, "annotation": null}, {"text": "with", "start": 864, "end": 868, "annotation": null}, {"text": "growing", "start": 869, "end": 876, "annotation": null}, {"text": "BiVO4", "start": 877, "end": 882, "annotation": null}, {"text": "molar", "start": 883, "end": 888, "annotation": null}, {"text": "ratios", "start": 889, "end": 895, "annotation": null}, {"text": ".", "start": 895, "end": 896, "annotation": null}], [{"text": "We", "start": 897, "end": 899, "annotation": null}, {"text": "attribute", "start": 900, "end": 909, "annotation": null}, {"text": "this", "start": 910, "end": 914, "annotation": null}, {"text": "initial", "start": 915, "end": 922, "annotation": null}, {"text": "decrease", "start": 923, "end": 931, "annotation": null}, {"text": "in", "start": 932, "end": 934, "annotation": null}, {"text": "photocurrent", "start": 935, "end": 947, "annotation": null}, {"text": "to", "start": 948, "end": 950, "annotation": null}, {"text": "electron", "start": 951, "end": 959, "annotation": null}, {"text": "-", "start": 959, "end": 960, "annotation": null}, {"text": "hole", "start": 960, "end": 964, "annotation": null}, {"text": "recombination", "start": 965, "end": 978, "annotation": null}, {"text": "at", "start": 979, "end": 981, "annotation": null}, {"text": "the", "start": 982, "end": 985, "annotation": null}, {"text": "semiconductor", "start": 986, "end": 999, "annotation": null}, {"text": "-", "start": 999, "end": 1000, "annotation": null}, {"text": "semiconductor", "start": 1000, "end": 1013, "annotation": null}, {"text": "interface", "start": 1014, "end": 1023, "annotation": null}, {"text": ".", "start": 1023, "end": 1024, "annotation": null}], [{"text": "On", "start": 1025, "end": 1027, "annotation": null}, {"text": "the", "start": 1028, "end": 1031, "annotation": null}, {"text": "other", "start": 1032, "end": 1037, "annotation": null}, {"text": "hand", "start": 1038, "end": 1042, "annotation": null}, {"text": ",", "start": 1042, "end": 1043, "annotation": null}, {"text": "an", "start": 1044, "end": 1046, "annotation": null}, {"text": "improved", "start": 1047, "end": 1055, "annotation": null}, {"text": "photocurrent", "start": 1056, "end": 1068, "annotation": null}, {"text": "is", "start": 1069, "end": 1071, "annotation": null}, {"text": "attributed", "start": 1072, "end": 1082, "annotation": null}, {"text": "to", "start": 1083, "end": 1085, "annotation": null}, {"text": "enhanced", "start": 1086, "end": 1094, "annotation": null}, {"text": "charge", "start": 1095, "end": 1101, "annotation": null}, {"text": "separation", "start": 1102, "end": 1112, "annotation": null}, {"text": "of", "start": 1113, "end": 1115, "annotation": null}, {"text": "BiVO4", "start": 1116, "end": 1121, "annotation": null}, {"text": "on", "start": 1122, "end": 1124, "annotation": null}, {"text": "the", "start": 1125, "end": 1128, "annotation": null}, {"text": "WO3", "start": 1129, "end": 1132, "annotation": null}, {"text": "electrode", "start": 1133, "end": 1142, "annotation": null}, {"text": ".", "start": 1142, "end": 1143, "annotation": null}], [{"text": "Our", "start": 1144, "end": 1147, "annotation": null}, {"text": "work", "start": 1148, "end": 1152, "annotation": null}, {"text": "reveals", "start": 1153, "end": 1160, "annotation": null}, {"text": "the", "start": 1161, "end": 1164, "annotation": null}, {"text": "important", "start": 1165, "end": 1174, "annotation": null}, {"text": "relationship", "start": 1175, "end": 1187, "annotation": null}, {"text": "between", "start": 1188, "end": 1195, "annotation": null}, {"text": "WO3", "start": 1196, "end": 1199, "annotation": null}, {"text": "and", "start": 1200, "end": 1203, "annotation": null}, {"text": "BiVO4", "start": 1204, "end": 1209, "annotation": null}, {"text": "in", "start": 1210, "end": 1212, "annotation": null}, {"text": "water", "start": 1213, "end": 1218, "annotation": null}, {"text": "oxidation", "start": 1219, "end": 1228, "annotation": null}, {"text": "reaction", "start": 1229, "end": 1237, "annotation": null}, {"text": ".", "start": 1237, "end": 1238, "annotation": null}]], "meta": {"doi": "10.1016/j.jelechem.2017.02.021"}} {"text": "In this paper, Ag-based paste was screen-printed on the polished as well as on the textured p-type (100) single crystalline silicon wafers. Three types of baking processes were studied: the tube furnace, the belt furnace and the hot plate baking. The effective contact areas of Ag/Si system were measured with a novel method, namely metal insulator semiconductor structure measurement. The results show that after baking on the hot plate at 400\u00b0C for 5min, the size and number of pores in the Ag film layer as well as at the interface between silver layer and silicon decreases significantly, the effective contact area also increases about 20%, particularly on the textured silicon substrate.", "meta": {"doi": "10.1016/j.solmat.2004.04.012"}, "_input_hash": 177998329, "_task_hash": -2081845576, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "paper", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": ",", "start": 14, "end": 15, "id": 3, "annotation": null}, {"text": "Ag", "start": 16, "end": 18, "id": 4, "annotation": null}, {"text": "-", "start": 19, "end": 20, "id": 5, "annotation": null}, {"text": "based", "start": 21, "end": 26, "id": 6, "annotation": null}, {"text": "paste", "start": 27, "end": 32, "id": 7, "annotation": null}, {"text": "was", "start": 33, "end": 36, "id": 8, "annotation": null}, {"text": "screen", "start": 37, "end": 43, "id": 9, "annotation": null}, {"text": "-", "start": 44, "end": 45, "id": 10, "annotation": null}, {"text": "printed", "start": 46, "end": 53, "id": 11, "annotation": null}, {"text": "on", "start": 54, "end": 56, "id": 12, "annotation": null}, {"text": "the", "start": 57, "end": 60, "id": 13, "annotation": null}, {"text": "polished", "start": 61, "end": 69, "id": 14, "annotation": null}, {"text": "as", "start": 70, "end": 72, "id": 15, "annotation": null}, {"text": "well", "start": 73, "end": 77, "id": 16, "annotation": null}, {"text": "as", "start": 78, "end": 80, "id": 17, "annotation": null}, {"text": "on", "start": 81, "end": 83, "id": 18, "annotation": null}, {"text": "the", "start": 84, "end": 87, "id": 19, "annotation": null}, {"text": "textured", "start": 88, "end": 96, "id": 20, "annotation": null}, {"text": "p", "start": 97, "end": 98, "id": 21, "annotation": "DOPANT"}, {"text": "-", "start": 99, "end": 100, "id": 22, "annotation": null}, {"text": "type", "start": 101, "end": 105, "id": 23, "annotation": "DOPANT"}, {"text": "(", "start": 106, "end": 107, "id": 24, "annotation": null}, {"text": "100", "start": 108, "end": 111, "id": 25, "annotation": null}, {"text": ")", "start": 112, "end": 113, "id": 26, "annotation": null}, {"text": "single", "start": 114, "end": 120, "id": 27, "annotation": null}, {"text": "crystalline", "start": 121, "end": 132, "id": 28, "annotation": null}, {"text": "silicon", "start": 133, "end": 140, "id": 29, "annotation": "BASEMAT"}, {"text": "wafers", "start": 141, "end": 147, "id": 30, "annotation": null}, {"text": ".", "start": 148, "end": 149, "id": 31, "annotation": null}], [{"text": "Three", "start": 150, "end": 155, "id": 32, "annotation": null}, {"text": "types", "start": 156, "end": 161, "id": 33, "annotation": null}, {"text": "of", "start": 162, "end": 164, "id": 34, "annotation": null}, {"text": "baking", "start": 165, "end": 171, "id": 35, "annotation": null}, {"text": "processes", "start": 172, "end": 181, "id": 36, "annotation": null}, {"text": "were", "start": 182, "end": 186, "id": 37, "annotation": null}, {"text": "studied", "start": 187, "end": 194, "id": 38, "annotation": null}, {"text": ":", "start": 195, "end": 196, "id": 39, "annotation": null}, {"text": "the", "start": 197, "end": 200, "id": 40, "annotation": null}, {"text": "tube", "start": 201, "end": 205, "id": 41, "annotation": null}, {"text": "furnace", "start": 206, "end": 213, "id": 42, "annotation": null}, {"text": ",", "start": 214, "end": 215, "id": 43, "annotation": null}, {"text": "the", "start": 216, "end": 219, "id": 44, "annotation": null}, {"text": "belt", "start": 220, "end": 224, "id": 45, "annotation": null}, {"text": "furnace", "start": 225, "end": 232, "id": 46, "annotation": null}, {"text": "and", "start": 233, "end": 236, "id": 47, "annotation": null}, {"text": "the", "start": 237, "end": 240, "id": 48, "annotation": null}, {"text": "hot", "start": 241, "end": 244, "id": 49, "annotation": null}, {"text": "plate", "start": 245, "end": 250, "id": 50, "annotation": null}, {"text": "baking", "start": 251, "end": 257, "id": 51, "annotation": null}, {"text": ".", "start": 258, "end": 259, "id": 52, "annotation": null}], [{"text": "The", "start": 260, "end": 263, "id": 53, "annotation": null}, {"text": "effective", "start": 264, "end": 273, "id": 54, "annotation": null}, {"text": "contact", "start": 274, "end": 281, "id": 55, "annotation": null}, {"text": "areas", "start": 282, "end": 287, "id": 56, "annotation": null}, {"text": "of", "start": 288, "end": 290, "id": 57, "annotation": null}, {"text": "Ag", "start": 291, "end": 293, "id": 58, "annotation": null}, {"text": "/", "start": 294, "end": 295, "id": 59, "annotation": null}, {"text": "Si", "start": 296, "end": 298, "id": 60, "annotation": null}, {"text": "system", "start": 299, "end": 305, "id": 61, "annotation": null}, {"text": "were", "start": 306, "end": 310, "id": 62, "annotation": null}, {"text": "measured", "start": 311, "end": 319, "id": 63, "annotation": null}, {"text": "with", "start": 320, "end": 324, "id": 64, "annotation": null}, {"text": "a", "start": 325, "end": 326, "id": 65, "annotation": null}, {"text": "novel", "start": 327, "end": 332, "id": 66, "annotation": null}, {"text": "method", "start": 333, "end": 339, "id": 67, "annotation": null}, {"text": ",", "start": 340, "end": 341, "id": 68, "annotation": null}, {"text": "namely", "start": 342, "end": 348, "id": 69, "annotation": null}, {"text": "metal", "start": 349, "end": 354, "id": 70, "annotation": null}, {"text": "insulator", "start": 355, "end": 364, "id": 71, "annotation": null}, {"text": "semiconductor", "start": 365, "end": 378, "id": 72, "annotation": null}, {"text": "structure", "start": 379, "end": 388, "id": 73, "annotation": null}, {"text": "measurement", "start": 389, "end": 400, "id": 74, "annotation": null}, {"text": ".", "start": 401, "end": 402, "id": 75, "annotation": null}], [{"text": "The", "start": 403, "end": 406, "id": 76, "annotation": null}, {"text": "results", "start": 407, "end": 414, "id": 77, "annotation": null}, {"text": "show", "start": 415, "end": 419, "id": 78, "annotation": null}, {"text": "that", "start": 420, "end": 424, "id": 79, "annotation": null}, {"text": "after", "start": 425, "end": 430, "id": 80, "annotation": null}, {"text": "baking", "start": 431, "end": 437, "id": 81, "annotation": null}, {"text": "on", "start": 438, "end": 440, "id": 82, "annotation": null}, {"text": "the", "start": 441, "end": 444, "id": 83, "annotation": null}, {"text": "hot", "start": 445, "end": 448, "id": 84, "annotation": null}, {"text": "plate", "start": 449, "end": 454, "id": 85, "annotation": null}, {"text": "at", "start": 455, "end": 457, "id": 86, "annotation": null}, {"text": "400", "start": 458, "end": 461, "id": 87, "annotation": null}, {"text": "\u00b0", "start": 462, "end": 463, "id": 88, "annotation": null}, {"text": "C", "start": 464, "end": 465, "id": 89, "annotation": null}, {"text": "for", "start": 466, "end": 469, "id": 90, "annotation": null}, {"text": "5min", "start": 470, "end": 474, "id": 91, "annotation": null}, {"text": ",", "start": 475, "end": 476, "id": 92, "annotation": null}, {"text": "the", "start": 477, "end": 480, "id": 93, "annotation": null}, {"text": "size", "start": 481, "end": 485, "id": 94, "annotation": null}, {"text": "and", "start": 486, "end": 489, "id": 95, "annotation": null}, {"text": "number", "start": 490, "end": 496, "id": 96, "annotation": null}, {"text": "of", "start": 497, "end": 499, "id": 97, "annotation": null}, {"text": "pores", "start": 500, "end": 505, "id": 98, "annotation": null}, {"text": "in", "start": 506, "end": 508, "id": 99, "annotation": null}, {"text": "the", "start": 509, "end": 512, "id": 100, "annotation": null}, {"text": "Ag", "start": 513, "end": 515, "id": 101, "annotation": null}, {"text": "film", "start": 516, "end": 520, "id": 102, "annotation": null}, {"text": "layer", "start": 521, "end": 526, "id": 103, "annotation": null}, {"text": "as", "start": 527, "end": 529, "id": 104, "annotation": null}, {"text": "well", "start": 530, "end": 534, "id": 105, "annotation": null}, {"text": "as", "start": 535, "end": 537, "id": 106, "annotation": null}, {"text": "at", "start": 538, "end": 540, "id": 107, "annotation": null}, {"text": "the", "start": 541, "end": 544, "id": 108, "annotation": null}, {"text": "interface", "start": 545, "end": 554, "id": 109, "annotation": null}, {"text": "between", "start": 555, "end": 562, "id": 110, "annotation": null}, {"text": "silver", "start": 563, "end": 569, "id": 111, "annotation": null}, {"text": "layer", "start": 570, "end": 575, "id": 112, "annotation": null}, {"text": "and", "start": 576, "end": 579, "id": 113, "annotation": null}, {"text": "silicon", "start": 580, "end": 587, "id": 114, "annotation": null}, {"text": "decreases", "start": 588, "end": 597, "id": 115, "annotation": null}, {"text": "significantly", "start": 598, "end": 611, "id": 116, "annotation": null}, {"text": ",", "start": 612, "end": 613, "id": 117, "annotation": null}, {"text": "the", "start": 614, "end": 617, "id": 118, "annotation": null}, {"text": "effective", "start": 618, "end": 627, "id": 119, "annotation": null}, {"text": "contact", "start": 628, "end": 635, "id": 120, "annotation": null}, {"text": "area", "start": 636, "end": 640, "id": 121, "annotation": null}, {"text": "also", "start": 641, "end": 645, "id": 122, "annotation": null}, {"text": "increases", "start": 646, "end": 655, "id": 123, "annotation": null}, {"text": "about", "start": 656, "end": 661, "id": 124, "annotation": null}, {"text": "20", "start": 662, "end": 664, "id": 125, "annotation": null}, {"text": "%", "start": 665, "end": 666, "id": 126, "annotation": null}, {"text": ",", "start": 667, "end": 668, "id": 127, "annotation": null}, {"text": "particularly", "start": 669, "end": 681, "id": 128, "annotation": null}, {"text": "on", "start": 682, "end": 684, "id": 129, "annotation": null}, {"text": "the", "start": 685, "end": 688, "id": 130, "annotation": null}, {"text": "textured", "start": 689, "end": 697, "id": 131, "annotation": null}, {"text": "silicon", "start": 698, "end": 705, "id": 132, "annotation": null}, {"text": "substrate", "start": 706, "end": 715, "id": 133, "annotation": null}, {"text": ".", "start": 716, "end": 717, "id": 134, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "Tb3+ doped Yttrium Aluminum Garnet (Tb: YAG) is a very promising optical material. This article reports synthesis of Tb doped YAG polycrystalline powder by sol\u2013gel method. The sample was heat treated at different temperatures for characterization purpose. The powder was characterized by X-ray diffraction analysis (XRD), Scanning electron microscopy (SEM), Photoluminescence (PL) studies and Raman Spectroscopy. 5D4\u21927Fj transitions were observed due to presence of Tb3+ in the YAG structure. Phonon band and few inter manifold transitions in 7F6 and 7F5 have been observed. Raman active A1g, Eg, T2g modes have been successfully identified in the phonon band at room temperature Raman measurements.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Tb3+", "start": 0, "end": 4, "annotation": "DOPANT"}, {"text": "doped", "start": 5, "end": 10, "annotation": null}, {"text": "Yttrium", "start": 11, "end": 18, "annotation": "BASEMAT"}, {"text": "Aluminum", "start": 19, "end": 27, "annotation": "BASEMAT"}, {"text": "Garnet", "start": 28, "end": 34, "annotation": "BASEMAT"}, {"text": "(", "start": 35, "end": 36, "annotation": null}, {"text": "Tb", "start": 36, "end": 38, "annotation": "DOPANT"}, {"text": ":", "start": 38, "end": 39, "annotation": null}, {"text": "YAG", "start": 40, "end": 43, "annotation": "BASEMAT"}, {"text": ")", "start": 43, "end": 44, "annotation": null}, {"text": "is", "start": 45, "end": 47, "annotation": null}, {"text": "a", "start": 48, "end": 49, "annotation": null}, {"text": "very", "start": 50, "end": 54, "annotation": null}, {"text": "promising", "start": 55, "end": 64, "annotation": null}, {"text": "optical", "start": 65, "end": 72, "annotation": null}, {"text": "material", "start": 73, "end": 81, "annotation": null}, {"text": ".", "start": 81, "end": 82, "annotation": null}], [{"text": "This", "start": 83, "end": 87, "annotation": null}, {"text": "article", "start": 88, "end": 95, "annotation": null}, {"text": "reports", "start": 96, "end": 103, "annotation": null}, {"text": "synthesis", "start": 104, "end": 113, "annotation": null}, {"text": "of", "start": 114, "end": 116, "annotation": null}, {"text": "Tb", "start": 117, "end": 119, "annotation": "DOPANT"}, {"text": "doped", "start": 120, "end": 125, "annotation": null}, {"text": "YAG", "start": 126, "end": 129, "annotation": "BASEMAT"}, {"text": "polycrystalline", "start": 130, "end": 145, "annotation": null}, {"text": "powder", "start": 146, "end": 152, "annotation": null}, {"text": "by", "start": 153, "end": 155, "annotation": null}, {"text": "sol", "start": 156, "end": 159, "annotation": null}, {"text": "\u2013", "start": 159, "end": 160, "annotation": null}, {"text": "gel", "start": 160, "end": 163, "annotation": null}, {"text": "method", "start": 164, "end": 170, "annotation": null}, {"text": ".", "start": 170, "end": 171, "annotation": null}], [{"text": "The", "start": 172, "end": 175, "annotation": null}, {"text": "sample", "start": 176, "end": 182, "annotation": null}, {"text": "was", "start": 183, "end": 186, "annotation": null}, {"text": "heat", "start": 187, "end": 191, "annotation": null}, {"text": "treated", "start": 192, "end": 199, "annotation": null}, {"text": "at", "start": 200, "end": 202, "annotation": null}, {"text": "different", "start": 203, "end": 212, "annotation": null}, {"text": "temperatures", "start": 213, "end": 225, "annotation": null}, {"text": "for", "start": 226, "end": 229, "annotation": null}, {"text": "characterization", "start": 230, "end": 246, "annotation": null}, {"text": "purpose", "start": 247, "end": 254, "annotation": null}, {"text": ".", "start": 254, "end": 255, "annotation": null}], [{"text": "The", "start": 256, "end": 259, "annotation": null}, {"text": "powder", "start": 260, "end": 266, "annotation": null}, {"text": "was", "start": 267, "end": 270, "annotation": null}, {"text": "characterized", "start": 271, "end": 284, "annotation": null}, {"text": "by", "start": 285, "end": 287, "annotation": null}, {"text": "X-ray", "start": 288, "end": 293, "annotation": null}, {"text": "diffraction", "start": 294, "end": 305, "annotation": null}, {"text": "analysis", "start": 306, "end": 314, "annotation": null}, {"text": "(", "start": 315, "end": 316, "annotation": null}, {"text": "XRD", "start": 316, "end": 319, "annotation": null}, {"text": ")", "start": 319, "end": 320, "annotation": null}, {"text": ",", "start": 320, "end": 321, "annotation": null}, {"text": "Scanning", "start": 322, "end": 330, "annotation": null}, {"text": "electron", "start": 331, "end": 339, "annotation": null}, {"text": "microscopy", "start": 340, "end": 350, "annotation": null}, {"text": "(", "start": 351, "end": 352, "annotation": null}, {"text": "SEM", "start": 352, "end": 355, "annotation": null}, {"text": ")", "start": 355, "end": 356, "annotation": null}, {"text": ",", "start": 356, "end": 357, "annotation": null}, {"text": "Photoluminescence", "start": 358, "end": 375, "annotation": null}, {"text": "(", "start": 376, "end": 377, "annotation": null}, {"text": "PL", "start": 377, "end": 379, "annotation": null}, {"text": ")", "start": 379, "end": 380, "annotation": null}, {"text": "studies", "start": 381, "end": 388, "annotation": null}, {"text": "and", "start": 389, "end": 392, "annotation": null}, {"text": "Raman", "start": 393, "end": 398, "annotation": null}, {"text": "Spectroscopy", "start": 399, "end": 411, "annotation": null}, {"text": ".", "start": 411, "end": 412, "annotation": null}], [{"text": "5D4\u21927Fj", "start": 413, "end": 420, "annotation": null}, {"text": "transitions", "start": 421, "end": 432, "annotation": null}, {"text": "were", "start": 433, "end": 437, "annotation": null}, {"text": "observed", "start": 438, "end": 446, "annotation": null}, {"text": "due", "start": 447, "end": 450, "annotation": null}, {"text": "to", "start": 451, "end": 453, "annotation": null}, {"text": "presence", "start": 454, "end": 462, "annotation": null}, {"text": "of", "start": 463, "end": 465, "annotation": null}, {"text": "Tb3+", "start": 466, "end": 470, "annotation": "DOPANT"}, {"text": "in", "start": 471, "end": 473, "annotation": null}, {"text": "the", "start": 474, "end": 477, "annotation": null}, {"text": "YAG", "start": 478, "end": 481, "annotation": "BASEMAT"}, {"text": "structure", "start": 482, "end": 491, "annotation": null}, {"text": ".", "start": 491, "end": 492, "annotation": null}], [{"text": "Phonon", "start": 493, "end": 499, "annotation": null}, {"text": "band", "start": 500, "end": 504, "annotation": null}, {"text": "and", "start": 505, "end": 508, "annotation": null}, {"text": "few", "start": 509, "end": 512, "annotation": null}, {"text": "inter", "start": 513, "end": 518, "annotation": null}, {"text": "manifold", "start": 519, "end": 527, "annotation": null}, {"text": "transitions", "start": 528, "end": 539, "annotation": null}, {"text": "in", "start": 540, "end": 542, "annotation": null}, {"text": "7F6", "start": 543, "end": 546, "annotation": null}, {"text": "and", "start": 547, "end": 550, "annotation": null}, {"text": "7F5", "start": 551, "end": 554, "annotation": null}, {"text": "have", "start": 555, "end": 559, "annotation": null}, {"text": "been", "start": 560, "end": 564, "annotation": null}, {"text": "observed", "start": 565, "end": 573, "annotation": null}, {"text": ".", "start": 573, "end": 574, "annotation": null}], [{"text": "Raman", "start": 575, "end": 580, "annotation": null}, {"text": "active", "start": 581, "end": 587, "annotation": null}, {"text": "A1g", "start": 588, "end": 591, "annotation": null}, {"text": ",", "start": 591, "end": 592, "annotation": null}, {"text": "Eg", "start": 593, "end": 595, "annotation": null}, {"text": ",", "start": 595, "end": 596, "annotation": null}, {"text": "T2g", "start": 597, "end": 600, "annotation": null}, {"text": "modes", "start": 601, "end": 606, "annotation": null}, {"text": "have", "start": 607, "end": 611, "annotation": null}, {"text": "been", "start": 612, "end": 616, "annotation": null}, {"text": "successfully", "start": 617, "end": 629, "annotation": null}, {"text": "identified", "start": 630, "end": 640, "annotation": null}, {"text": "in", "start": 641, "end": 643, "annotation": null}, {"text": "the", "start": 644, "end": 647, "annotation": null}, {"text": "phonon", "start": 648, "end": 654, "annotation": null}, {"text": "band", "start": 655, "end": 659, "annotation": null}, {"text": "at", "start": 660, "end": 662, "annotation": null}, {"text": "room", "start": 663, "end": 667, "annotation": null}, {"text": "temperature", "start": 668, "end": 679, "annotation": null}, {"text": "Raman", "start": 680, "end": 685, "annotation": null}, {"text": "measurements", "start": 686, "end": 698, "annotation": null}, {"text": ".", "start": 698, "end": 699, "annotation": null}]]} -{"remark": "doping_annt1", "text": "The parent skeleton of BN heterocoronene with three BN units and C3 symmetry was synthesized as a model compound of BN-doped graphene. Further investigation of this graphene-type molecule revealed the important role of BN doping in opening the bandgap and modulating the electronic properties.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "parent", "start": 4, "end": 10, "annotation": null}, {"text": "skeleton", "start": 11, "end": 19, "annotation": null}, {"text": "of", "start": 20, "end": 22, "annotation": null}, {"text": "BN", "start": 23, "end": 25, "annotation": null}, {"text": "heterocoronene", "start": 26, "end": 40, "annotation": null}, {"text": "with", "start": 41, "end": 45, "annotation": null}, {"text": "three", "start": 46, "end": 51, "annotation": null}, {"text": "BN", "start": 52, "end": 54, "annotation": null}, {"text": "units", "start": 55, "end": 60, "annotation": null}, {"text": "and", "start": 61, "end": 64, "annotation": null}, {"text": "C3", "start": 65, "end": 67, "annotation": null}, {"text": "symmetry", "start": 68, "end": 76, "annotation": null}, {"text": "was", "start": 77, "end": 80, "annotation": null}, {"text": "synthesized", "start": 81, "end": 92, "annotation": null}, {"text": "as", "start": 93, "end": 95, "annotation": null}, {"text": "a", "start": 96, "end": 97, "annotation": null}, {"text": "model", "start": 98, "end": 103, "annotation": null}, {"text": "compound", "start": 104, "end": 112, "annotation": null}, {"text": "of", "start": 113, "end": 115, "annotation": null}, {"text": "BN", "start": 116, "end": 118, "annotation": "DOPANT"}, {"text": "-", "start": 118, "end": 119, "annotation": null}, {"text": "doped", "start": 119, "end": 124, "annotation": null}, {"text": "graphene", "start": 125, "end": 133, "annotation": "BASEMAT"}, {"text": ".", "start": 133, "end": 134, "annotation": null}], [{"text": "Further", "start": 135, "end": 142, "annotation": null}, {"text": "investigation", "start": 143, "end": 156, "annotation": null}, {"text": "of", "start": 157, "end": 159, "annotation": null}, {"text": "this", "start": 160, "end": 164, "annotation": null}, {"text": "graphene", "start": 165, "end": 173, "annotation": "BASEMAT"}, {"text": "-", "start": 173, "end": 174, "annotation": null}, {"text": "type", "start": 174, "end": 178, "annotation": null}, {"text": "molecule", "start": 179, "end": 187, "annotation": null}, {"text": "revealed", "start": 188, "end": 196, "annotation": null}, {"text": "the", "start": 197, "end": 200, "annotation": null}, {"text": "important", "start": 201, "end": 210, "annotation": null}, {"text": "role", "start": 211, "end": 215, "annotation": null}, {"text": "of", "start": 216, "end": 218, "annotation": null}, {"text": "BN", "start": 219, "end": 221, "annotation": "DOPANT"}, {"text": "doping", "start": 222, "end": 228, "annotation": null}, {"text": "in", "start": 229, "end": 231, "annotation": null}, {"text": "opening", "start": 232, "end": 239, "annotation": null}, {"text": "the", "start": 240, "end": 243, "annotation": null}, {"text": "bandgap", "start": 244, "end": 251, "annotation": null}, {"text": "and", "start": 252, "end": 255, "annotation": null}, {"text": "modulating", "start": 256, "end": 266, "annotation": null}, {"text": "the", "start": 267, "end": 270, "annotation": null}, {"text": "electronic", "start": 271, "end": 281, "annotation": null}, {"text": "properties", "start": 282, "end": 292, "annotation": null}, {"text": ".", "start": 292, "end": 293, "annotation": null}]]} +{"remark": "doping_annt2", "text": "Tb3+ doped Yttrium Aluminum Garnet (Tb: YAG) is a very promising optical material. This article reports synthesis of Tb doped YAG polycrystalline powder by sol\u2013gel method. The sample was heat treated at different temperatures for characterization purpose. The powder was characterized by X-ray diffraction analysis (XRD), Scanning electron microscopy (SEM), Photoluminescence (PL) studies and Raman Spectroscopy. 5D4\u21927Fj transitions were observed due to presence of Tb3+ in the YAG structure. Phonon band and few inter manifold transitions in 7F6 and 7F5 have been observed. Raman active A1g, Eg, T2g modes have been successfully identified in the phonon band at room temperature Raman measurements.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Tb3+", "start": 0, "end": 4, "annotation": "DOPANT"}, {"text": "doped", "start": 5, "end": 10, "annotation": null}, {"text": "Yttrium", "start": 11, "end": 18, "annotation": "BASEMAT"}, {"text": "Aluminum", "start": 19, "end": 27, "annotation": "BASEMAT"}, {"text": "Garnet", "start": 28, "end": 34, "annotation": "BASEMAT"}, {"text": "(", "start": 35, "end": 36, "annotation": null}, {"text": "Tb", "start": 36, "end": 38, "annotation": "DOPANT"}, {"text": ":", "start": 38, "end": 39, "annotation": null}, {"text": "YAG", "start": 40, "end": 43, "annotation": "BASEMAT"}, {"text": ")", "start": 43, "end": 44, "annotation": null}, {"text": "is", "start": 45, "end": 47, "annotation": null}, {"text": "a", "start": 48, "end": 49, "annotation": null}, {"text": "very", "start": 50, "end": 54, "annotation": null}, {"text": "promising", "start": 55, "end": 64, "annotation": null}, {"text": "optical", "start": 65, "end": 72, "annotation": null}, {"text": "material", "start": 73, "end": 81, "annotation": null}, {"text": ".", "start": 81, "end": 82, "annotation": null}], [{"text": "This", "start": 83, "end": 87, "annotation": null}, {"text": "article", "start": 88, "end": 95, "annotation": null}, {"text": "reports", "start": 96, "end": 103, "annotation": null}, {"text": "synthesis", "start": 104, "end": 113, "annotation": null}, {"text": "of", "start": 114, "end": 116, "annotation": null}, {"text": "Tb", "start": 117, "end": 119, "annotation": "DOPANT"}, {"text": "doped", "start": 120, "end": 125, "annotation": null}, {"text": "YAG", "start": 126, "end": 129, "annotation": "BASEMAT"}, {"text": "polycrystalline", "start": 130, "end": 145, "annotation": null}, {"text": "powder", "start": 146, "end": 152, "annotation": null}, {"text": "by", "start": 153, "end": 155, "annotation": null}, {"text": "sol", "start": 156, "end": 159, "annotation": null}, {"text": "\u2013", "start": 159, "end": 160, "annotation": null}, {"text": "gel", "start": 160, "end": 163, "annotation": null}, {"text": "method", "start": 164, "end": 170, "annotation": null}, {"text": ".", "start": 170, "end": 171, "annotation": null}], [{"text": "The", "start": 172, "end": 175, "annotation": null}, {"text": "sample", "start": 176, "end": 182, "annotation": null}, {"text": "was", "start": 183, "end": 186, "annotation": null}, {"text": "heat", "start": 187, "end": 191, "annotation": null}, {"text": "treated", "start": 192, "end": 199, "annotation": null}, {"text": "at", "start": 200, "end": 202, "annotation": null}, {"text": "different", "start": 203, "end": 212, "annotation": null}, {"text": "temperatures", "start": 213, "end": 225, "annotation": null}, {"text": "for", "start": 226, "end": 229, "annotation": null}, {"text": "characterization", "start": 230, "end": 246, "annotation": null}, {"text": "purpose", "start": 247, "end": 254, "annotation": null}, {"text": ".", "start": 254, "end": 255, "annotation": null}], [{"text": "The", "start": 256, "end": 259, "annotation": null}, {"text": "powder", "start": 260, "end": 266, "annotation": null}, {"text": "was", "start": 267, "end": 270, "annotation": null}, {"text": "characterized", "start": 271, "end": 284, "annotation": null}, {"text": "by", "start": 285, "end": 287, "annotation": null}, {"text": "X-ray", "start": 288, "end": 293, "annotation": null}, {"text": "diffraction", "start": 294, "end": 305, "annotation": null}, {"text": "analysis", "start": 306, "end": 314, "annotation": null}, {"text": "(", "start": 315, "end": 316, "annotation": null}, {"text": "XRD", "start": 316, "end": 319, "annotation": null}, {"text": ")", "start": 319, "end": 320, "annotation": null}, {"text": ",", "start": 320, "end": 321, "annotation": null}, {"text": "Scanning", "start": 322, "end": 330, "annotation": null}, {"text": "electron", "start": 331, "end": 339, "annotation": null}, {"text": "microscopy", "start": 340, "end": 350, "annotation": null}, {"text": "(", "start": 351, "end": 352, "annotation": null}, {"text": "SEM", "start": 352, "end": 355, "annotation": null}, {"text": ")", "start": 355, "end": 356, "annotation": null}, {"text": ",", "start": 356, "end": 357, "annotation": null}, {"text": "Photoluminescence", "start": 358, "end": 375, "annotation": null}, {"text": "(", "start": 376, "end": 377, "annotation": null}, {"text": "PL", "start": 377, "end": 379, "annotation": null}, {"text": ")", "start": 379, "end": 380, "annotation": null}, {"text": "studies", "start": 381, "end": 388, "annotation": null}, {"text": "and", "start": 389, "end": 392, "annotation": null}, {"text": "Raman", "start": 393, "end": 398, "annotation": null}, {"text": "Spectroscopy", "start": 399, "end": 411, "annotation": null}, {"text": ".", "start": 411, "end": 412, "annotation": null}], [{"text": "5D4\u21927Fj", "start": 413, "end": 420, "annotation": null}, {"text": "transitions", "start": 421, "end": 432, "annotation": null}, {"text": "were", "start": 433, "end": 437, "annotation": null}, {"text": "observed", "start": 438, "end": 446, "annotation": null}, {"text": "due", "start": 447, "end": 450, "annotation": null}, {"text": "to", "start": 451, "end": 453, "annotation": null}, {"text": "presence", "start": 454, "end": 462, "annotation": null}, {"text": "of", "start": 463, "end": 465, "annotation": null}, {"text": "Tb3+", "start": 466, "end": 470, "annotation": "DOPANT"}, {"text": "in", "start": 471, "end": 473, "annotation": null}, {"text": "the", "start": 474, "end": 477, "annotation": null}, {"text": "YAG", "start": 478, "end": 481, "annotation": "BASEMAT"}, {"text": "structure", "start": 482, "end": 491, "annotation": null}, {"text": ".", "start": 491, "end": 492, "annotation": null}], [{"text": "Phonon", "start": 493, "end": 499, "annotation": null}, {"text": "band", "start": 500, "end": 504, "annotation": null}, {"text": "and", "start": 505, "end": 508, "annotation": null}, {"text": "few", "start": 509, "end": 512, "annotation": null}, {"text": "inter", "start": 513, "end": 518, "annotation": null}, {"text": "manifold", "start": 519, "end": 527, "annotation": null}, {"text": "transitions", "start": 528, "end": 539, "annotation": null}, {"text": "in", "start": 540, "end": 542, "annotation": null}, {"text": "7F6", "start": 543, "end": 546, "annotation": null}, {"text": "and", "start": 547, "end": 550, "annotation": null}, {"text": "7F5", "start": 551, "end": 554, "annotation": null}, {"text": "have", "start": 555, "end": 559, "annotation": null}, {"text": "been", "start": 560, "end": 564, "annotation": null}, {"text": "observed", "start": 565, "end": 573, "annotation": null}, {"text": ".", "start": 573, "end": 574, "annotation": null}], [{"text": "Raman", "start": 575, "end": 580, "annotation": null}, {"text": "active", "start": 581, "end": 587, "annotation": null}, {"text": "A1g", "start": 588, "end": 591, "annotation": null}, {"text": ",", "start": 591, "end": 592, "annotation": null}, {"text": "Eg", "start": 593, "end": 595, "annotation": null}, {"text": ",", "start": 595, "end": 596, "annotation": null}, {"text": "T2g", "start": 597, "end": 600, "annotation": null}, {"text": "modes", "start": 601, "end": 606, "annotation": null}, {"text": "have", "start": 607, "end": 611, "annotation": null}, {"text": "been", "start": 612, "end": 616, "annotation": null}, {"text": "successfully", "start": 617, "end": 629, "annotation": null}, {"text": "identified", "start": 630, "end": 640, "annotation": null}, {"text": "in", "start": 641, "end": 643, "annotation": null}, {"text": "the", "start": 644, "end": 647, "annotation": null}, {"text": "phonon", "start": 648, "end": 654, "annotation": null}, {"text": "band", "start": 655, "end": 659, "annotation": null}, {"text": "at", "start": 660, "end": 662, "annotation": null}, {"text": "room", "start": 663, "end": 667, "annotation": null}, {"text": "temperature", "start": 668, "end": 679, "annotation": null}, {"text": "Raman", "start": 680, "end": 685, "annotation": null}, {"text": "measurements", "start": 686, "end": 698, "annotation": null}, {"text": ".", "start": 698, "end": 699, "annotation": null}]], "meta": {"doi": "10.1016/j.matlet.2005.11.006"}} +{"remark": "doping_annt1", "text": "The parent skeleton of BN heterocoronene with three BN units and C3 symmetry was synthesized as a model compound of BN-doped graphene. Further investigation of this graphene-type molecule revealed the important role of BN doping in opening the bandgap and modulating the electronic properties.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "parent", "start": 4, "end": 10, "annotation": null}, {"text": "skeleton", "start": 11, "end": 19, "annotation": null}, {"text": "of", "start": 20, "end": 22, "annotation": null}, {"text": "BN", "start": 23, "end": 25, "annotation": null}, {"text": "heterocoronene", "start": 26, "end": 40, "annotation": null}, {"text": "with", "start": 41, "end": 45, "annotation": null}, {"text": "three", "start": 46, "end": 51, "annotation": null}, {"text": "BN", "start": 52, "end": 54, "annotation": null}, {"text": "units", "start": 55, "end": 60, "annotation": null}, {"text": "and", "start": 61, "end": 64, "annotation": null}, {"text": "C3", "start": 65, "end": 67, "annotation": null}, {"text": "symmetry", "start": 68, "end": 76, "annotation": null}, {"text": "was", "start": 77, "end": 80, "annotation": null}, {"text": "synthesized", "start": 81, "end": 92, "annotation": null}, {"text": "as", "start": 93, "end": 95, "annotation": null}, {"text": "a", "start": 96, "end": 97, "annotation": null}, {"text": "model", "start": 98, "end": 103, "annotation": null}, {"text": "compound", "start": 104, "end": 112, "annotation": null}, {"text": "of", "start": 113, "end": 115, "annotation": null}, {"text": "BN", "start": 116, "end": 118, "annotation": "DOPANT"}, {"text": "-", "start": 118, "end": 119, "annotation": null}, {"text": "doped", "start": 119, "end": 124, "annotation": null}, {"text": "graphene", "start": 125, "end": 133, "annotation": "BASEMAT"}, {"text": ".", "start": 133, "end": 134, "annotation": null}], [{"text": "Further", "start": 135, "end": 142, "annotation": null}, {"text": "investigation", "start": 143, "end": 156, "annotation": null}, {"text": "of", "start": 157, "end": 159, "annotation": null}, {"text": "this", "start": 160, "end": 164, "annotation": null}, {"text": "graphene", "start": 165, "end": 173, "annotation": "BASEMAT"}, {"text": "-", "start": 173, "end": 174, "annotation": null}, {"text": "type", "start": 174, "end": 178, "annotation": null}, {"text": "molecule", "start": 179, "end": 187, "annotation": null}, {"text": "revealed", "start": 188, "end": 196, "annotation": null}, {"text": "the", "start": 197, "end": 200, "annotation": null}, {"text": "important", "start": 201, "end": 210, "annotation": null}, {"text": "role", "start": 211, "end": 215, "annotation": null}, {"text": "of", "start": 216, "end": 218, "annotation": null}, {"text": "BN", "start": 219, "end": 221, "annotation": "DOPANT"}, {"text": "doping", "start": 222, "end": 228, "annotation": null}, {"text": "in", "start": 229, "end": 231, "annotation": null}, {"text": "opening", "start": 232, "end": 239, "annotation": null}, {"text": "the", "start": 240, "end": 243, "annotation": null}, {"text": "bandgap", "start": 244, "end": 251, "annotation": null}, {"text": "and", "start": 252, "end": 255, "annotation": null}, {"text": "modulating", "start": 256, "end": 266, "annotation": null}, {"text": "the", "start": 267, "end": 270, "annotation": null}, {"text": "electronic", "start": 271, "end": 281, "annotation": null}, {"text": "properties", "start": 282, "end": 292, "annotation": null}, {"text": ".", "start": 292, "end": 293, "annotation": null}]], "meta": {"doi": "10.1039/C4CC10105G"}} {"text": "The garnet-type Nb-doped cubic lithium ion-conducting solid Li6.75-xLa3Zr1.75Nb0.25O12\u20130.5x (LLZ-Nb) was prepared with 0.46 wt% Al2O3 using a sol-gel precursor. LLZ-Nb sintered at 1,150\u00b0C for 36 h exhibited a bulk conductivity of 6.13 \u00d7 10\u22124 S cm\u22121 and a grain boundary conductivity of 7.76 \u00d7 10\u22123 S cm\u22121 at 25\u00b0C. The cell resistance of Li/LLZ-Nb/Li was gradually increased with storage time over 5 months. The increase in cell resistance was attributed to both the grain boundary and interfacial resistance between LLZ-Nb and the lithium electrode. The Li/LLZ-Nb/Li cell showed a short-circuit for 280 s polarization at 0.5 mA cm\u22122 and no short-circuit for 41 h polarization at 0.1 mA cm\u22122. LLZ-Nb was stable in saturated LiOH and LiCl aqueous solution.", "meta": {"doi": "10.1149/2.036310jes"}, "_input_hash": 1350900040, "_task_hash": 1156751378, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "garnet", "start": 4, "end": 10, "id": 1, "annotation": null}, {"text": "-", "start": 11, "end": 12, "id": 2, "annotation": null}, {"text": "type", "start": 13, "end": 17, "id": 3, "annotation": null}, {"text": "Nb", "start": 18, "end": 20, "id": 4, "annotation": "DOPANT"}, {"text": "-", "start": 21, "end": 22, "id": 5, "annotation": null}, {"text": "doped", "start": 23, "end": 28, "id": 6, "annotation": null}, {"text": "cubic", "start": 29, "end": 34, "id": 7, "annotation": null}, {"text": "lithium", "start": 35, "end": 42, "id": 8, "annotation": null}, {"text": "ion", "start": 43, "end": 46, "id": 9, "annotation": null}, {"text": "-", "start": 47, "end": 48, "id": 10, "annotation": null}, {"text": "conducting", "start": 49, "end": 59, "id": 11, "annotation": null}, {"text": "solid", "start": 60, "end": 65, "id": 12, "annotation": null}, {"text": "Li6.75-xLa3Zr1.75Nb0.25O12\u20130.5x", "start": 66, "end": 97, "id": 13, "annotation": "BASEMAT"}, {"text": "(", "start": 98, "end": 99, "id": 14, "annotation": null}, {"text": "LLZ", "start": 100, "end": 103, "id": 15, "annotation": "BASEMAT"}, {"text": "-", "start": 104, "end": 105, "id": 16, "annotation": null}, {"text": "Nb", "start": 106, "end": 108, "id": 17, "annotation": "DOPANT"}, {"text": ")", "start": 109, "end": 110, "id": 18, "annotation": null}, {"text": "was", "start": 111, "end": 114, "id": 19, "annotation": null}, {"text": "prepared", "start": 115, "end": 123, "id": 20, "annotation": null}, {"text": "with", "start": 124, "end": 128, "id": 21, "annotation": null}, {"text": "0.46", "start": 129, "end": 133, "id": 22, "annotation": null}, {"text": "wt%", "start": 134, "end": 137, "id": 23, "annotation": null}, {"text": "Al2O3", "start": 138, "end": 143, "id": 24, "annotation": null}, {"text": "using", "start": 144, "end": 149, "id": 25, "annotation": null}, {"text": "a", "start": 150, "end": 151, "id": 26, "annotation": null}, {"text": "sol", "start": 152, "end": 155, "id": 27, "annotation": null}, {"text": "-", "start": 156, "end": 157, "id": 28, "annotation": null}, {"text": "gel", "start": 158, "end": 161, "id": 29, "annotation": null}, {"text": "precursor", "start": 162, "end": 171, "id": 30, "annotation": null}, {"text": ".", "start": 172, "end": 173, "id": 31, "annotation": null}], [{"text": "LLZ", "start": 174, "end": 177, "id": 32, "annotation": "BASEMAT"}, {"text": "-", "start": 178, "end": 179, "id": 33, "annotation": null}, {"text": "Nb", "start": 180, "end": 182, "id": 34, "annotation": "DOPANT"}, {"text": "sintered", "start": 183, "end": 191, "id": 35, "annotation": null}, {"text": "at", "start": 192, "end": 194, "id": 36, "annotation": null}, {"text": "1,150", "start": 195, "end": 200, "id": 37, "annotation": null}, {"text": "\u00b0", "start": 201, "end": 202, "id": 38, "annotation": null}, {"text": "C", "start": 203, "end": 204, "id": 39, "annotation": null}, {"text": "for", "start": 205, "end": 208, "id": 40, "annotation": null}, {"text": "36", "start": 209, "end": 211, "id": 41, "annotation": null}, {"text": "h", "start": 212, "end": 213, "id": 42, "annotation": null}, {"text": "exhibited", "start": 214, "end": 223, "id": 43, "annotation": null}, {"text": "a", "start": 224, "end": 225, "id": 44, "annotation": null}, {"text": "bulk", "start": 226, "end": 230, "id": 45, "annotation": null}, {"text": "conductivity", "start": 231, "end": 243, "id": 46, "annotation": null}, {"text": "of", "start": 244, "end": 246, "id": 47, "annotation": null}, {"text": "6.13", "start": 247, "end": 251, "id": 48, "annotation": null}, {"text": "\u00d7", "start": 252, "end": 253, "id": 49, "annotation": null}, {"text": "10\u22124", "start": 254, "end": 258, "id": 50, "annotation": null}, {"text": "S", "start": 259, "end": 260, "id": 51, "annotation": null}, {"text": "cm\u22121", "start": 261, "end": 265, "id": 52, "annotation": null}, {"text": "and", "start": 266, "end": 269, "id": 53, "annotation": null}, {"text": "a", "start": 270, "end": 271, "id": 54, "annotation": null}, {"text": "grain", "start": 272, "end": 277, "id": 55, "annotation": null}, {"text": "boundary", "start": 278, "end": 286, "id": 56, "annotation": null}, {"text": "conductivity", "start": 287, "end": 299, "id": 57, "annotation": null}, {"text": "of", "start": 300, "end": 302, "id": 58, "annotation": null}, {"text": "7.76", "start": 303, "end": 307, "id": 59, "annotation": null}, {"text": "\u00d7", "start": 308, "end": 309, "id": 60, "annotation": null}, {"text": "10\u22123", "start": 310, "end": 314, "id": 61, "annotation": null}, {"text": "S", "start": 315, "end": 316, "id": 62, "annotation": null}, {"text": "cm\u22121", "start": 317, "end": 321, "id": 63, "annotation": null}, {"text": "at", "start": 322, "end": 324, "id": 64, "annotation": null}, {"text": "25", "start": 325, "end": 327, "id": 65, "annotation": null}, {"text": "\u00b0", "start": 328, "end": 329, "id": 66, "annotation": null}, {"text": "C", "start": 330, "end": 331, "id": 67, "annotation": null}, {"text": ".", "start": 332, "end": 333, "id": 68, "annotation": null}], [{"text": "The", "start": 334, "end": 337, "id": 69, "annotation": null}, {"text": "cell", "start": 338, "end": 342, "id": 70, "annotation": null}, {"text": "resistance", "start": 343, "end": 353, "id": 71, "annotation": null}, {"text": "of", "start": 354, "end": 356, "id": 72, "annotation": null}, {"text": "Li", "start": 357, "end": 359, "id": 73, "annotation": null}, {"text": "/", "start": 360, "end": 361, "id": 74, "annotation": null}, {"text": "LLZ", "start": 362, "end": 365, "id": 75, "annotation": "BASEMAT"}, {"text": "-", "start": 366, "end": 367, "id": 76, "annotation": null}, {"text": "Nb", "start": 368, "end": 370, "id": 77, "annotation": "DOPANT"}, {"text": "/", "start": 371, "end": 372, "id": 78, "annotation": null}, {"text": "Li", "start": 373, "end": 375, "id": 79, "annotation": null}, {"text": "was", "start": 376, "end": 379, "id": 80, "annotation": null}, {"text": "gradually", "start": 380, "end": 389, "id": 81, "annotation": null}, {"text": "increased", "start": 390, "end": 399, "id": 82, "annotation": null}, {"text": "with", "start": 400, "end": 404, "id": 83, "annotation": null}, {"text": "storage", "start": 405, "end": 412, "id": 84, "annotation": null}, {"text": "time", "start": 413, "end": 417, "id": 85, "annotation": null}, {"text": "over", "start": 418, "end": 422, "id": 86, "annotation": null}, {"text": "5", "start": 423, "end": 424, "id": 87, "annotation": null}, {"text": "months", "start": 425, "end": 431, "id": 88, "annotation": null}, {"text": ".", "start": 432, "end": 433, "id": 89, "annotation": null}], [{"text": "The", "start": 434, "end": 437, "id": 90, "annotation": null}, {"text": "increase", "start": 438, "end": 446, "id": 91, "annotation": null}, {"text": "in", "start": 447, "end": 449, "id": 92, "annotation": null}, {"text": "cell", "start": 450, "end": 454, "id": 93, "annotation": null}, {"text": "resistance", "start": 455, "end": 465, "id": 94, "annotation": null}, {"text": "was", "start": 466, "end": 469, "id": 95, "annotation": null}, {"text": "attributed", "start": 470, "end": 480, "id": 96, "annotation": null}, {"text": "to", "start": 481, "end": 483, "id": 97, "annotation": null}, {"text": "both", "start": 484, "end": 488, "id": 98, "annotation": null}, {"text": "the", "start": 489, "end": 492, "id": 99, "annotation": null}, {"text": "grain", "start": 493, "end": 498, "id": 100, "annotation": null}, {"text": "boundary", "start": 499, "end": 507, "id": 101, "annotation": null}, {"text": "and", "start": 508, "end": 511, "id": 102, "annotation": null}, {"text": "interfacial", "start": 512, "end": 523, "id": 103, "annotation": null}, {"text": "resistance", "start": 524, "end": 534, "id": 104, "annotation": null}, {"text": "between", "start": 535, "end": 542, "id": 105, "annotation": null}, {"text": "LLZ", "start": 543, "end": 546, "id": 106, "annotation": null}, {"text": "-", "start": 547, "end": 548, "id": 107, "annotation": null}, {"text": "Nb", "start": 549, "end": 551, "id": 108, "annotation": null}, {"text": "and", "start": 552, "end": 555, "id": 109, "annotation": null}, {"text": "the", "start": 556, "end": 559, "id": 110, "annotation": null}, {"text": "lithium", "start": 560, "end": 567, "id": 111, "annotation": null}, {"text": "electrode", "start": 568, "end": 577, "id": 112, "annotation": null}, {"text": ".", "start": 578, "end": 579, "id": 113, "annotation": null}], [{"text": "The", "start": 580, "end": 583, "id": 114, "annotation": null}, {"text": "Li", "start": 584, "end": 586, "id": 115, "annotation": null}, {"text": "/", "start": 587, "end": 588, "id": 116, "annotation": null}, {"text": "LLZ", "start": 589, "end": 592, "id": 117, "annotation": "BASEMAT"}, {"text": "-", "start": 593, "end": 594, "id": 118, "annotation": null}, {"text": "Nb", "start": 595, "end": 597, "id": 119, "annotation": "DOPANT"}, {"text": "/", "start": 598, "end": 599, "id": 120, "annotation": null}, {"text": "Li", "start": 600, "end": 602, "id": 121, "annotation": null}, {"text": "cell", "start": 603, "end": 607, "id": 122, "annotation": null}, {"text": "showed", "start": 608, "end": 614, "id": 123, "annotation": null}, {"text": "a", "start": 615, "end": 616, "id": 124, "annotation": null}, {"text": "short", "start": 617, "end": 622, "id": 125, "annotation": null}, {"text": "-", "start": 623, "end": 624, "id": 126, "annotation": null}, {"text": "circuit", "start": 625, "end": 632, "id": 127, "annotation": null}, {"text": "for", "start": 633, "end": 636, "id": 128, "annotation": null}, {"text": "280", "start": 637, "end": 640, "id": 129, "annotation": null}, {"text": "s", "start": 641, "end": 642, "id": 130, "annotation": null}, {"text": "polarization", "start": 643, "end": 655, "id": 131, "annotation": null}, {"text": "at", "start": 656, "end": 658, "id": 132, "annotation": null}, {"text": "0.5", "start": 659, "end": 662, "id": 133, "annotation": null}, {"text": "mA", "start": 663, "end": 665, "id": 134, "annotation": null}, {"text": "cm\u22122", "start": 666, "end": 670, "id": 135, "annotation": null}, {"text": "and", "start": 671, "end": 674, "id": 136, "annotation": null}, {"text": "no", "start": 675, "end": 677, "id": 137, "annotation": null}, {"text": "short", "start": 678, "end": 683, "id": 138, "annotation": null}, {"text": "-", "start": 684, "end": 685, "id": 139, "annotation": null}, {"text": "circuit", "start": 686, "end": 693, "id": 140, "annotation": null}, {"text": "for", "start": 694, "end": 697, "id": 141, "annotation": null}, {"text": "41", "start": 698, "end": 700, "id": 142, "annotation": null}, {"text": "h", "start": 701, "end": 702, "id": 143, "annotation": null}, {"text": "polarization", "start": 703, "end": 715, "id": 144, "annotation": null}, {"text": "at", "start": 716, "end": 718, "id": 145, "annotation": null}, {"text": "0.1", "start": 719, "end": 722, "id": 146, "annotation": null}, {"text": "mA", "start": 723, "end": 725, "id": 147, "annotation": null}, {"text": "cm\u22122", "start": 726, "end": 730, "id": 148, "annotation": null}, {"text": ".", "start": 731, "end": 732, "id": 149, "annotation": null}], [{"text": "LLZ", "start": 733, "end": 736, "id": 150, "annotation": "BASEMAT"}, {"text": "-", "start": 737, "end": 738, "id": 151, "annotation": null}, {"text": "Nb", "start": 739, "end": 741, "id": 152, "annotation": "DOPANT"}, {"text": "was", "start": 742, "end": 745, "id": 153, "annotation": null}, {"text": "stable", "start": 746, "end": 752, "id": 154, "annotation": null}, {"text": "in", "start": 753, "end": 755, "id": 155, "annotation": null}, {"text": "saturated", "start": 756, "end": 765, "id": 156, "annotation": null}, {"text": "LiOH", "start": 766, "end": 770, "id": 157, "annotation": null}, {"text": "and", "start": 771, "end": 774, "id": 158, "annotation": null}, {"text": "LiCl", "start": 775, "end": 779, "id": 159, "annotation": null}, {"text": "aqueous", "start": 780, "end": 787, "id": 160, "annotation": null}, {"text": "solution", "start": 788, "end": 796, "id": 161, "annotation": null}, {"text": ".", "start": 797, "end": 798, "id": 162, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Design parameters for the heterojunction-based strained layer superlattice (SLS) long-wave infrared (LWIR) detector are investigated so that it operates at a lower bias voltage with lower dark current and higher photo response. At typical operating temperatures (T\u223c77K), the dark current of GaSb/InAs SLS LWIR detectors is dominated by the Shockley\u2013Read\u2013Hall (SRH) generation\u2013recombination (g\u2013r) process in the space-charge (depletion) region. In order to suppress this dark current, a wide bandgap region next to the absorber layer has been included in recent SLS designs. A series of heterojunction-based LWIR SLS detectors with various doping and barrier profiles have been designed and characterized. The significance of the doping profile and thickness of the wide-bandgap layer in optimization of the heterojunction-based SLS detector performance are exhibited from the modeling and experimental results of these devices.", "meta": {"doi": "10.1016/j.infrared.2012.12.003"}, "_input_hash": -541598246, "_task_hash": 1851928, "tokens": [[{"text": "Design", "start": 0, "end": 6, "id": 0, "annotation": null}, {"text": "parameters", "start": 7, "end": 17, "id": 1, "annotation": null}, {"text": "for", "start": 18, "end": 21, "id": 2, "annotation": null}, {"text": "the", "start": 22, "end": 25, "id": 3, "annotation": null}, {"text": "heterojunction", "start": 26, "end": 40, "id": 4, "annotation": null}, {"text": "-", "start": 41, "end": 42, "id": 5, "annotation": null}, {"text": "based", "start": 43, "end": 48, "id": 6, "annotation": null}, {"text": "strained", "start": 49, "end": 57, "id": 7, "annotation": null}, {"text": "layer", "start": 58, "end": 63, "id": 8, "annotation": null}, {"text": "superlattice", "start": 64, "end": 76, "id": 9, "annotation": null}, {"text": "(", "start": 77, "end": 78, "id": 10, "annotation": null}, {"text": "SLS", "start": 79, "end": 82, "id": 11, "annotation": null}, {"text": ")", "start": 83, "end": 84, "id": 12, "annotation": null}, {"text": "long", "start": 85, "end": 89, "id": 13, "annotation": null}, {"text": "-", "start": 90, "end": 91, "id": 14, "annotation": null}, {"text": "wave", "start": 92, "end": 96, "id": 15, "annotation": null}, {"text": "infrared", "start": 97, "end": 105, "id": 16, "annotation": null}, {"text": "(", "start": 106, "end": 107, "id": 17, "annotation": null}, {"text": "LWIR", "start": 108, "end": 112, "id": 18, "annotation": null}, {"text": ")", "start": 113, "end": 114, "id": 19, "annotation": null}, {"text": "detector", "start": 115, "end": 123, "id": 20, "annotation": null}, {"text": "are", "start": 124, "end": 127, "id": 21, "annotation": null}, {"text": "investigated", "start": 128, "end": 140, "id": 22, "annotation": null}, {"text": "so", "start": 141, "end": 143, "id": 23, "annotation": null}, {"text": "that", "start": 144, "end": 148, "id": 24, "annotation": null}, {"text": "it", "start": 149, "end": 151, "id": 25, "annotation": null}, {"text": "operates", "start": 152, "end": 160, "id": 26, "annotation": null}, {"text": "at", "start": 161, "end": 163, "id": 27, "annotation": null}, {"text": "a", "start": 164, "end": 165, "id": 28, "annotation": null}, {"text": "lower", "start": 166, "end": 171, "id": 29, "annotation": null}, {"text": "bias", "start": 172, "end": 176, "id": 30, "annotation": null}, {"text": "voltage", "start": 177, "end": 184, "id": 31, "annotation": null}, {"text": "with", "start": 185, "end": 189, "id": 32, "annotation": null}, {"text": "lower", "start": 190, "end": 195, "id": 33, "annotation": null}, {"text": "dark", "start": 196, "end": 200, "id": 34, "annotation": null}, {"text": "current", "start": 201, "end": 208, "id": 35, "annotation": null}, {"text": "and", "start": 209, "end": 212, "id": 36, "annotation": null}, {"text": "higher", "start": 213, "end": 219, "id": 37, "annotation": null}, {"text": "photo", "start": 220, "end": 225, "id": 38, "annotation": null}, {"text": "response", "start": 226, "end": 234, "id": 39, "annotation": null}, {"text": ".", "start": 235, "end": 236, "id": 40, "annotation": null}], [{"text": "At", "start": 237, "end": 239, "id": 41, "annotation": null}, {"text": "typical", "start": 240, "end": 247, "id": 42, "annotation": null}, {"text": "operating", "start": 248, "end": 257, "id": 43, "annotation": null}, {"text": "temperatures", "start": 258, "end": 270, "id": 44, "annotation": null}, {"text": "(", "start": 271, "end": 272, "id": 45, "annotation": null}, {"text": "T\u223c77", "start": 273, "end": 277, "id": 46, "annotation": null}, {"text": "K", "start": 278, "end": 279, "id": 47, "annotation": null}, {"text": ")", "start": 280, "end": 281, "id": 48, "annotation": null}, {"text": ",", "start": 282, "end": 283, "id": 49, "annotation": null}, {"text": "the", "start": 284, "end": 287, "id": 50, "annotation": null}, {"text": "dark", "start": 288, "end": 292, "id": 51, "annotation": null}, {"text": "current", "start": 293, "end": 300, "id": 52, "annotation": null}, {"text": "of", "start": 301, "end": 303, "id": 53, "annotation": null}, {"text": "GaSb", "start": 304, "end": 308, "id": 54, "annotation": null}, {"text": "/", "start": 309, "end": 310, "id": 55, "annotation": null}, {"text": "InAs", "start": 311, "end": 315, "id": 56, "annotation": null}, {"text": "SLS", "start": 316, "end": 319, "id": 57, "annotation": null}, {"text": "LWIR", "start": 320, "end": 324, "id": 58, "annotation": null}, {"text": "detectors", "start": 325, "end": 334, "id": 59, "annotation": null}, {"text": "is", "start": 335, "end": 337, "id": 60, "annotation": null}, {"text": "dominated", "start": 338, "end": 347, "id": 61, "annotation": null}, {"text": "by", "start": 348, "end": 350, "id": 62, "annotation": null}, {"text": "the", "start": 351, "end": 354, "id": 63, "annotation": null}, {"text": "Shockley", "start": 355, "end": 363, "id": 64, "annotation": null}, {"text": "\u2013", "start": 364, "end": 365, "id": 65, "annotation": null}, {"text": "Read", "start": 366, "end": 370, "id": 66, "annotation": null}, {"text": "\u2013", "start": 371, "end": 372, "id": 67, "annotation": null}, {"text": "Hall", "start": 373, "end": 377, "id": 68, "annotation": null}, {"text": "(", "start": 378, "end": 379, "id": 69, "annotation": null}, {"text": "SRH", "start": 380, "end": 383, "id": 70, "annotation": null}, {"text": ")", "start": 384, "end": 385, "id": 71, "annotation": null}, {"text": "generation", "start": 386, "end": 396, "id": 72, "annotation": null}, {"text": "\u2013", "start": 397, "end": 398, "id": 73, "annotation": null}, {"text": "recombination", "start": 399, "end": 412, "id": 74, "annotation": null}, {"text": "(", "start": 413, "end": 414, "id": 75, "annotation": null}, {"text": "g", "start": 415, "end": 416, "id": 76, "annotation": null}, {"text": "\u2013", "start": 417, "end": 418, "id": 77, "annotation": null}, {"text": "r", "start": 419, "end": 420, "id": 78, "annotation": null}, {"text": ")", "start": 421, "end": 422, "id": 79, "annotation": null}, {"text": "process", "start": 423, "end": 430, "id": 80, "annotation": null}, {"text": "in", "start": 431, "end": 433, "id": 81, "annotation": null}, {"text": "the", "start": 434, "end": 437, "id": 82, "annotation": null}, {"text": "space", "start": 438, "end": 443, "id": 83, "annotation": null}, {"text": "-", "start": 444, "end": 445, "id": 84, "annotation": null}, {"text": "charge", "start": 446, "end": 452, "id": 85, "annotation": null}, {"text": "(", "start": 453, "end": 454, "id": 86, "annotation": null}, {"text": "depletion", "start": 455, "end": 464, "id": 87, "annotation": null}, {"text": ")", "start": 465, "end": 466, "id": 88, "annotation": null}, {"text": "region", "start": 467, "end": 473, "id": 89, "annotation": null}, {"text": ".", "start": 474, "end": 475, "id": 90, "annotation": null}], [{"text": "In", "start": 476, "end": 478, "id": 91, "annotation": null}, {"text": "order", "start": 479, "end": 484, "id": 92, "annotation": null}, {"text": "to", "start": 485, "end": 487, "id": 93, "annotation": null}, {"text": "suppress", "start": 488, "end": 496, "id": 94, "annotation": null}, {"text": "this", "start": 497, "end": 501, "id": 95, "annotation": null}, {"text": "dark", "start": 502, "end": 506, "id": 96, "annotation": null}, {"text": "current", "start": 507, "end": 514, "id": 97, "annotation": null}, {"text": ",", "start": 515, "end": 516, "id": 98, "annotation": null}, {"text": "a", "start": 517, "end": 518, "id": 99, "annotation": null}, {"text": "wide", "start": 519, "end": 523, "id": 100, "annotation": null}, {"text": "bandgap", "start": 524, "end": 531, "id": 101, "annotation": null}, {"text": "region", "start": 532, "end": 538, "id": 102, "annotation": null}, {"text": "next", "start": 539, "end": 543, "id": 103, "annotation": null}, {"text": "to", "start": 544, "end": 546, "id": 104, "annotation": null}, {"text": "the", "start": 547, "end": 550, "id": 105, "annotation": null}, {"text": "absorber", "start": 551, "end": 559, "id": 106, "annotation": null}, {"text": "layer", "start": 560, "end": 565, "id": 107, "annotation": null}, {"text": "has", "start": 566, "end": 569, "id": 108, "annotation": null}, {"text": "been", "start": 570, "end": 574, "id": 109, "annotation": null}, {"text": "included", "start": 575, "end": 583, "id": 110, "annotation": null}, {"text": "in", "start": 584, "end": 586, "id": 111, "annotation": null}, {"text": "recent", "start": 587, "end": 593, "id": 112, "annotation": null}, {"text": "SLS", "start": 594, "end": 597, "id": 113, "annotation": null}, {"text": "designs", "start": 598, "end": 605, "id": 114, "annotation": null}, {"text": ".", "start": 606, "end": 607, "id": 115, "annotation": null}], [{"text": "A", "start": 608, "end": 609, "id": 116, "annotation": null}, {"text": "series", "start": 610, "end": 616, "id": 117, "annotation": null}, {"text": "of", "start": 617, "end": 619, "id": 118, "annotation": null}, {"text": "heterojunction", "start": 620, "end": 634, "id": 119, "annotation": null}, {"text": "-", "start": 635, "end": 636, "id": 120, "annotation": null}, {"text": "based", "start": 637, "end": 642, "id": 121, "annotation": null}, {"text": "LWIR", "start": 643, "end": 647, "id": 122, "annotation": null}, {"text": "SLS", "start": 648, "end": 651, "id": 123, "annotation": null}, {"text": "detectors", "start": 652, "end": 661, "id": 124, "annotation": "BASEMAT"}, {"text": "with", "start": 662, "end": 666, "id": 125, "annotation": null}, {"text": "various", "start": 667, "end": 674, "id": 126, "annotation": null}, {"text": "doping", "start": 675, "end": 681, "id": 127, "annotation": null}, {"text": "and", "start": 682, "end": 685, "id": 128, "annotation": null}, {"text": "barrier", "start": 686, "end": 693, "id": 129, "annotation": null}, {"text": "profiles", "start": 694, "end": 702, "id": 130, "annotation": null}, {"text": "have", "start": 703, "end": 707, "id": 131, "annotation": null}, {"text": "been", "start": 708, "end": 712, "id": 132, "annotation": null}, {"text": "designed", "start": 713, "end": 721, "id": 133, "annotation": null}, {"text": "and", "start": 722, "end": 725, "id": 134, "annotation": null}, {"text": "characterized", "start": 726, "end": 739, "id": 135, "annotation": null}, {"text": ".", "start": 740, "end": 741, "id": 136, "annotation": null}], [{"text": "The", "start": 742, "end": 745, "id": 137, "annotation": null}, {"text": "significance", "start": 746, "end": 758, "id": 138, "annotation": null}, {"text": "of", "start": 759, "end": 761, "id": 139, "annotation": null}, {"text": "the", "start": 762, "end": 765, "id": 140, "annotation": null}, {"text": "doping", "start": 766, "end": 772, "id": 141, "annotation": null}, {"text": "profile", "start": 773, "end": 780, "id": 142, "annotation": null}, {"text": "and", "start": 781, "end": 784, "id": 143, "annotation": null}, {"text": "thickness", "start": 785, "end": 794, "id": 144, "annotation": null}, {"text": "of", "start": 795, "end": 797, "id": 145, "annotation": null}, {"text": "the", "start": 798, "end": 801, "id": 146, "annotation": null}, {"text": "wide", "start": 802, "end": 806, "id": 147, "annotation": null}, {"text": "-", "start": 807, "end": 808, "id": 148, "annotation": null}, {"text": "bandgap", "start": 809, "end": 816, "id": 149, "annotation": null}, {"text": "layer", "start": 817, "end": 822, "id": 150, "annotation": null}, {"text": "in", "start": 823, "end": 825, "id": 151, "annotation": null}, {"text": "optimization", "start": 826, "end": 838, "id": 152, "annotation": null}, {"text": "of", "start": 839, "end": 841, "id": 153, "annotation": null}, {"text": "the", "start": 842, "end": 845, "id": 154, "annotation": null}, {"text": "heterojunction", "start": 846, "end": 860, "id": 155, "annotation": null}, {"text": "-", "start": 861, "end": 862, "id": 156, "annotation": null}, {"text": "based", "start": 863, "end": 868, "id": 157, "annotation": null}, {"text": "SLS", "start": 869, "end": 872, "id": 158, "annotation": null}, {"text": "detector", "start": 873, "end": 881, "id": 159, "annotation": "BASEMAT"}, {"text": "performance", "start": 882, "end": 893, "id": 160, "annotation": null}, {"text": "are", "start": 894, "end": 897, "id": 161, "annotation": null}, {"text": "exhibited", "start": 898, "end": 907, "id": 162, "annotation": null}, {"text": "from", "start": 908, "end": 912, "id": 163, "annotation": null}, {"text": "the", "start": 913, "end": 916, "id": 164, "annotation": null}, {"text": "modeling", "start": 917, "end": 925, "id": 165, "annotation": null}, {"text": "and", "start": 926, "end": 929, "id": 166, "annotation": null}, {"text": "experimental", "start": 930, "end": 942, "id": 167, "annotation": null}, {"text": "results", "start": 943, "end": 950, "id": 168, "annotation": null}, {"text": "of", "start": 951, "end": 953, "id": 169, "annotation": null}, {"text": "these", "start": 954, "end": 959, "id": 170, "annotation": null}, {"text": "devices", "start": 960, "end": 967, "id": 171, "annotation": null}, {"text": ".", "start": 968, "end": 969, "id": 172, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Multiferroic ceramics based on BiFeO3 and Sr-doped BiFeO3 have been processed by high energetic milling and later thermal treatments at reduced temperatures to synthesize the perovskite structure. Single phase materials are obtained at 800\u00b0C, reducing the temperature needed to complete the reaction in solid state method. Ceramics with densities higher than 94% were obtained at 1000\u00b0C, and up to 98% at 1050\u00b0C. All the ceramics were obtained in a single thermal treatment, where synthesis, grain growth and densification take place. The addition of Sr stabilizes the BiFeO3 perovskite structure, avoiding its decomposition. Ceramics with higher dielectric permittivity and conductivity than non-doped materials are obtained, due to the increase of the amount of oxygen vacancies. It is shown for the first time that the grain boundary conductivity is increased in BiFeO3 by doping with Sr.", "meta": {"doi": "10.1016/j.jallcom.2011.03.132"}, "_input_hash": -389874625, "_task_hash": -1206075725, "tokens": [[{"text": "Multiferroic", "start": 0, "end": 12, "id": 0, "annotation": null}, {"text": "ceramics", "start": 13, "end": 21, "id": 1, "annotation": null}, {"text": "based", "start": 22, "end": 27, "id": 2, "annotation": null}, {"text": "on", "start": 28, "end": 30, "id": 3, "annotation": null}, {"text": "BiFeO3", "start": 31, "end": 37, "id": 4, "annotation": null}, {"text": "and", "start": 38, "end": 41, "id": 5, "annotation": null}, {"text": "Sr", "start": 42, "end": 44, "id": 6, "annotation": "DOPANT"}, {"text": "-", "start": 45, "end": 46, "id": 7, "annotation": null}, {"text": "doped", "start": 47, "end": 52, "id": 8, "annotation": null}, {"text": "BiFeO3", "start": 53, "end": 59, "id": 9, "annotation": "BASEMAT"}, {"text": "have", "start": 60, "end": 64, "id": 10, "annotation": null}, {"text": "been", "start": 65, "end": 69, "id": 11, "annotation": null}, {"text": "processed", "start": 70, "end": 79, "id": 12, "annotation": null}, {"text": "by", "start": 80, "end": 82, "id": 13, "annotation": null}, {"text": "high", "start": 83, "end": 87, "id": 14, "annotation": null}, {"text": "energetic", "start": 88, "end": 97, "id": 15, "annotation": null}, {"text": "milling", "start": 98, "end": 105, "id": 16, "annotation": null}, {"text": "and", "start": 106, "end": 109, "id": 17, "annotation": null}, {"text": "later", "start": 110, "end": 115, "id": 18, "annotation": null}, {"text": "thermal", "start": 116, "end": 123, "id": 19, "annotation": null}, {"text": "treatments", "start": 124, "end": 134, "id": 20, "annotation": null}, {"text": "at", "start": 135, "end": 137, "id": 21, "annotation": null}, {"text": "reduced", "start": 138, "end": 145, "id": 22, "annotation": null}, {"text": "temperatures", "start": 146, "end": 158, "id": 23, "annotation": null}, {"text": "to", "start": 159, "end": 161, "id": 24, "annotation": null}, {"text": "synthesize", "start": 162, "end": 172, "id": 25, "annotation": null}, {"text": "the", "start": 173, "end": 176, "id": 26, "annotation": null}, {"text": "perovskite", "start": 177, "end": 187, "id": 27, "annotation": null}, {"text": "structure", "start": 188, "end": 197, "id": 28, "annotation": null}, {"text": ".", "start": 198, "end": 199, "id": 29, "annotation": null}], [{"text": "Single", "start": 200, "end": 206, "id": 30, "annotation": null}, {"text": "phase", "start": 207, "end": 212, "id": 31, "annotation": null}, {"text": "materials", "start": 213, "end": 222, "id": 32, "annotation": null}, {"text": "are", "start": 223, "end": 226, "id": 33, "annotation": null}, {"text": "obtained", "start": 227, "end": 235, "id": 34, "annotation": null}, {"text": "at", "start": 236, "end": 238, "id": 35, "annotation": null}, {"text": "800", "start": 239, "end": 242, "id": 36, "annotation": null}, {"text": "\u00b0", "start": 243, "end": 244, "id": 37, "annotation": null}, {"text": "C", "start": 245, "end": 246, "id": 38, "annotation": null}, {"text": ",", "start": 247, "end": 248, "id": 39, "annotation": null}, {"text": "reducing", "start": 249, "end": 257, "id": 40, "annotation": null}, {"text": "the", "start": 258, "end": 261, "id": 41, "annotation": null}, {"text": "temperature", "start": 262, "end": 273, "id": 42, "annotation": null}, {"text": "needed", "start": 274, "end": 280, "id": 43, "annotation": null}, {"text": "to", "start": 281, "end": 283, "id": 44, "annotation": null}, {"text": "complete", "start": 284, "end": 292, "id": 45, "annotation": null}, {"text": "the", "start": 293, "end": 296, "id": 46, "annotation": null}, {"text": "reaction", "start": 297, "end": 305, "id": 47, "annotation": null}, {"text": "in", "start": 306, "end": 308, "id": 48, "annotation": null}, {"text": "solid", "start": 309, "end": 314, "id": 49, "annotation": null}, {"text": "state", "start": 315, "end": 320, "id": 50, "annotation": null}, {"text": "method", "start": 321, "end": 327, "id": 51, "annotation": null}, {"text": ".", "start": 328, "end": 329, "id": 52, "annotation": null}], [{"text": "Ceramics", "start": 330, "end": 338, "id": 53, "annotation": null}, {"text": "with", "start": 339, "end": 343, "id": 54, "annotation": null}, {"text": "densities", "start": 344, "end": 353, "id": 55, "annotation": null}, {"text": "higher", "start": 354, "end": 360, "id": 56, "annotation": null}, {"text": "than", "start": 361, "end": 365, "id": 57, "annotation": null}, {"text": "94", "start": 366, "end": 368, "id": 58, "annotation": null}, {"text": "%", "start": 369, "end": 370, "id": 59, "annotation": null}, {"text": "were", "start": 371, "end": 375, "id": 60, "annotation": null}, {"text": "obtained", "start": 376, "end": 384, "id": 61, "annotation": null}, {"text": "at", "start": 385, "end": 387, "id": 62, "annotation": null}, {"text": "1000", "start": 388, "end": 392, "id": 63, "annotation": null}, {"text": "\u00b0", "start": 393, "end": 394, "id": 64, "annotation": null}, {"text": "C", "start": 395, "end": 396, "id": 65, "annotation": null}, {"text": ",", "start": 397, "end": 398, "id": 66, "annotation": null}, {"text": "and", "start": 399, "end": 402, "id": 67, "annotation": null}, {"text": "up", "start": 403, "end": 405, "id": 68, "annotation": null}, {"text": "to", "start": 406, "end": 408, "id": 69, "annotation": null}, {"text": "98", "start": 409, "end": 411, "id": 70, "annotation": null}, {"text": "%", "start": 412, "end": 413, "id": 71, "annotation": null}, {"text": "at", "start": 414, "end": 416, "id": 72, "annotation": null}, {"text": "1050", "start": 417, "end": 421, "id": 73, "annotation": null}, {"text": "\u00b0", "start": 422, "end": 423, "id": 74, "annotation": null}, {"text": "C", "start": 424, "end": 425, "id": 75, "annotation": null}, {"text": ".", "start": 426, "end": 427, "id": 76, "annotation": null}], [{"text": "All", "start": 428, "end": 431, "id": 77, "annotation": null}, {"text": "the", "start": 432, "end": 435, "id": 78, "annotation": null}, {"text": "ceramics", "start": 436, "end": 444, "id": 79, "annotation": null}, {"text": "were", "start": 445, "end": 449, "id": 80, "annotation": null}, {"text": "obtained", "start": 450, "end": 458, "id": 81, "annotation": null}, {"text": "in", "start": 459, "end": 461, "id": 82, "annotation": null}, {"text": "a", "start": 462, "end": 463, "id": 83, "annotation": null}, {"text": "single", "start": 464, "end": 470, "id": 84, "annotation": null}, {"text": "thermal", "start": 471, "end": 478, "id": 85, "annotation": null}, {"text": "treatment", "start": 479, "end": 488, "id": 86, "annotation": null}, {"text": ",", "start": 489, "end": 490, "id": 87, "annotation": null}, {"text": "where", "start": 491, "end": 496, "id": 88, "annotation": null}, {"text": "synthesis", "start": 497, "end": 506, "id": 89, "annotation": null}, {"text": ",", "start": 507, "end": 508, "id": 90, "annotation": null}, {"text": "grain", "start": 509, "end": 514, "id": 91, "annotation": null}, {"text": "growth", "start": 515, "end": 521, "id": 92, "annotation": null}, {"text": "and", "start": 522, "end": 525, "id": 93, "annotation": null}, {"text": "densification", "start": 526, "end": 539, "id": 94, "annotation": null}, {"text": "take", "start": 540, "end": 544, "id": 95, "annotation": null}, {"text": "place", "start": 545, "end": 550, "id": 96, "annotation": null}, {"text": ".", "start": 551, "end": 552, "id": 97, "annotation": null}], [{"text": "The", "start": 553, "end": 556, "id": 98, "annotation": null}, {"text": "addition", "start": 557, "end": 565, "id": 99, "annotation": null}, {"text": "of", "start": 566, "end": 568, "id": 100, "annotation": null}, {"text": "Sr", "start": 569, "end": 571, "id": 101, "annotation": null}, {"text": "stabilizes", "start": 572, "end": 582, "id": 102, "annotation": null}, {"text": "the", "start": 583, "end": 586, "id": 103, "annotation": null}, {"text": "BiFeO3", "start": 587, "end": 593, "id": 104, "annotation": null}, {"text": "perovskite", "start": 594, "end": 604, "id": 105, "annotation": null}, {"text": "structure", "start": 605, "end": 614, "id": 106, "annotation": null}, {"text": ",", "start": 615, "end": 616, "id": 107, "annotation": null}, {"text": "avoiding", "start": 617, "end": 625, "id": 108, "annotation": null}, {"text": "its", "start": 626, "end": 629, "id": 109, "annotation": null}, {"text": "decomposition", "start": 630, "end": 643, "id": 110, "annotation": null}, {"text": ".", "start": 644, "end": 645, "id": 111, "annotation": null}], [{"text": "Ceramics", "start": 646, "end": 654, "id": 112, "annotation": null}, {"text": "with", "start": 655, "end": 659, "id": 113, "annotation": null}, {"text": "higher", "start": 660, "end": 666, "id": 114, "annotation": null}, {"text": "dielectric", "start": 667, "end": 677, "id": 115, "annotation": null}, {"text": "permittivity", "start": 678, "end": 690, "id": 116, "annotation": null}, {"text": "and", "start": 691, "end": 694, "id": 117, "annotation": null}, {"text": "conductivity", "start": 695, "end": 707, "id": 118, "annotation": null}, {"text": "than", "start": 708, "end": 712, "id": 119, "annotation": null}, {"text": "non", "start": 713, "end": 716, "id": 120, "annotation": null}, {"text": "-", "start": 717, "end": 718, "id": 121, "annotation": null}, {"text": "doped", "start": 719, "end": 724, "id": 122, "annotation": null}, {"text": "materials", "start": 725, "end": 734, "id": 123, "annotation": null}, {"text": "are", "start": 735, "end": 738, "id": 124, "annotation": null}, {"text": "obtained", "start": 739, "end": 747, "id": 125, "annotation": null}, {"text": ",", "start": 748, "end": 749, "id": 126, "annotation": null}, {"text": "due", "start": 750, "end": 753, "id": 127, "annotation": null}, {"text": "to", "start": 754, "end": 756, "id": 128, "annotation": null}, {"text": "the", "start": 757, "end": 760, "id": 129, "annotation": null}, {"text": "increase", "start": 761, "end": 769, "id": 130, "annotation": null}, {"text": "of", "start": 770, "end": 772, "id": 131, "annotation": null}, {"text": "the", "start": 773, "end": 776, "id": 132, "annotation": null}, {"text": "amount", "start": 777, "end": 783, "id": 133, "annotation": null}, {"text": "of", "start": 784, "end": 786, "id": 134, "annotation": null}, {"text": "oxygen", "start": 787, "end": 793, "id": 135, "annotation": null}, {"text": "vacancies", "start": 794, "end": 803, "id": 136, "annotation": null}, {"text": ".", "start": 804, "end": 805, "id": 137, "annotation": null}], [{"text": "It", "start": 806, "end": 808, "id": 138, "annotation": null}, {"text": "is", "start": 809, "end": 811, "id": 139, "annotation": null}, {"text": "shown", "start": 812, "end": 817, "id": 140, "annotation": null}, {"text": "for", "start": 818, "end": 821, "id": 141, "annotation": null}, {"text": "the", "start": 822, "end": 825, "id": 142, "annotation": null}, {"text": "first", "start": 826, "end": 831, "id": 143, "annotation": null}, {"text": "time", "start": 832, "end": 836, "id": 144, "annotation": null}, {"text": "that", "start": 837, "end": 841, "id": 145, "annotation": null}, {"text": "the", "start": 842, "end": 845, "id": 146, "annotation": null}, {"text": "grain", "start": 846, "end": 851, "id": 147, "annotation": null}, {"text": "boundary", "start": 852, "end": 860, "id": 148, "annotation": null}, {"text": "conductivity", "start": 861, "end": 873, "id": 149, "annotation": null}, {"text": "is", "start": 874, "end": 876, "id": 150, "annotation": null}, {"text": "increased", "start": 877, "end": 886, "id": 151, "annotation": null}, {"text": "in", "start": 887, "end": 889, "id": 152, "annotation": null}, {"text": "BiFeO3", "start": 890, "end": 896, "id": 153, "annotation": "BASEMAT"}, {"text": "by", "start": 897, "end": 899, "id": 154, "annotation": null}, {"text": "doping", "start": 900, "end": 906, "id": 155, "annotation": null}, {"text": "with", "start": 907, "end": 911, "id": 156, "annotation": null}, {"text": "Sr", "start": 912, "end": 914, "id": 157, "annotation": "DOPANT"}, {"text": ".", "start": 915, "end": 916, "id": 158, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "ZnS:Gd, ZnS: Cu, Gd and ZnS: Mn, Gd phosphors have been prepared by firing the samples in argon atmosphere. Spectral distributions in these phosphors are discussed with appropriate mechanism. ZnS:Cu, Gd and ZnS:Mn, Gd are found to be examples of multiple band phosphors. Enhancement and quenching of the emission band intensities of all these phosphors have been studied in pel emission. It is observed that Gd3+ ions play an important role in transferring their excitation energy to other centres. The voltage and frequency variation of el brightness are in agreement with collision excitation mechanism in Schottky barrier at the metal semiconductor interface. Studies in phosphorescence and thermoluminescence of these phosphors have also been carried out. It is observed that trap-depth changes slowly with temperature and dopant concentration. The values of trapping parameters have been evaluated. The irregular variation of the life-time of electrons in the traps. with temperature shows the existence of retrapping in these phosphors.", "meta": {"doi": "10.1007/BF02847209"}, "_input_hash": 703971832, "_task_hash": 789535302, "tokens": [[{"text": "ZnS", "start": 0, "end": 3, "id": 0, "annotation": "BASEMAT"}, {"text": ":", "start": 4, "end": 5, "id": 1, "annotation": null}, {"text": "Gd", "start": 6, "end": 8, "id": 2, "annotation": "DOPANT"}, {"text": ",", "start": 9, "end": 10, "id": 3, "annotation": null}, {"text": "ZnS", "start": 11, "end": 14, "id": 4, "annotation": "BASEMAT"}, {"text": ":", "start": 15, "end": 16, "id": 5, "annotation": null}, {"text": "Cu", "start": 17, "end": 19, "id": 6, "annotation": "DOPANT"}, {"text": ",", "start": 20, "end": 21, "id": 7, "annotation": null}, {"text": "Gd", "start": 22, "end": 24, "id": 8, "annotation": "DOPANT"}, {"text": "and", "start": 25, "end": 28, "id": 9, "annotation": null}, {"text": "ZnS", "start": 29, "end": 32, "id": 10, "annotation": "BASEMAT"}, {"text": ":", "start": 33, "end": 34, "id": 11, "annotation": null}, {"text": "Mn", "start": 35, "end": 37, "id": 12, "annotation": "DOPANT"}, {"text": ",", "start": 38, "end": 39, "id": 13, "annotation": null}, {"text": "Gd", "start": 40, "end": 42, "id": 14, "annotation": "DOPANT"}, {"text": "phosphors", "start": 43, "end": 52, "id": 15, "annotation": null}, {"text": "have", "start": 53, "end": 57, "id": 16, "annotation": null}, {"text": "been", "start": 58, "end": 62, "id": 17, "annotation": null}, {"text": "prepared", "start": 63, "end": 71, "id": 18, "annotation": null}, {"text": "by", "start": 72, "end": 74, "id": 19, "annotation": null}, {"text": "firing", "start": 75, "end": 81, "id": 20, "annotation": null}, {"text": "the", "start": 82, "end": 85, "id": 21, "annotation": null}, {"text": "samples", "start": 86, "end": 93, "id": 22, "annotation": null}, {"text": "in", "start": 94, "end": 96, "id": 23, "annotation": null}, {"text": "argon", "start": 97, "end": 102, "id": 24, "annotation": null}, {"text": "atmosphere", "start": 103, "end": 113, "id": 25, "annotation": null}, {"text": ".", "start": 114, "end": 115, "id": 26, "annotation": null}], [{"text": "Spectral", "start": 116, "end": 124, "id": 27, "annotation": null}, {"text": "distributions", "start": 125, "end": 138, "id": 28, "annotation": null}, {"text": "in", "start": 139, "end": 141, "id": 29, "annotation": null}, {"text": "these", "start": 142, "end": 147, "id": 30, "annotation": null}, {"text": "phosphors", "start": 148, "end": 157, "id": 31, "annotation": null}, {"text": "are", "start": 158, "end": 161, "id": 32, "annotation": null}, {"text": "discussed", "start": 162, "end": 171, "id": 33, "annotation": null}, {"text": "with", "start": 172, "end": 176, "id": 34, "annotation": null}, {"text": "appropriate", "start": 177, "end": 188, "id": 35, "annotation": null}, {"text": "mechanism", "start": 189, "end": 198, "id": 36, "annotation": null}, {"text": ".", "start": 199, "end": 200, "id": 37, "annotation": null}], [{"text": "ZnS", "start": 201, "end": 204, "id": 38, "annotation": "BASEMAT"}, {"text": ":", "start": 205, "end": 206, "id": 39, "annotation": null}, {"text": "Cu", "start": 207, "end": 209, "id": 40, "annotation": "DOPANT"}, {"text": ",", "start": 210, "end": 211, "id": 41, "annotation": null}, {"text": "Gd", "start": 212, "end": 214, "id": 42, "annotation": "DOPANT"}, {"text": "and", "start": 215, "end": 218, "id": 43, "annotation": null}, {"text": "ZnS", "start": 219, "end": 222, "id": 44, "annotation": "BASEMAT"}, {"text": ":", "start": 223, "end": 224, "id": 45, "annotation": null}, {"text": "Mn", "start": 225, "end": 227, "id": 46, "annotation": "DOPANT"}, {"text": ",", "start": 228, "end": 229, "id": 47, "annotation": null}, {"text": "Gd", "start": 230, "end": 232, "id": 48, "annotation": "DOPANT"}, {"text": "are", "start": 233, "end": 236, "id": 49, "annotation": null}, {"text": "found", "start": 237, "end": 242, "id": 50, "annotation": null}, {"text": "to", "start": 243, "end": 245, "id": 51, "annotation": null}, {"text": "be", "start": 246, "end": 248, "id": 52, "annotation": null}, {"text": "examples", "start": 249, "end": 257, "id": 53, "annotation": null}, {"text": "of", "start": 258, "end": 260, "id": 54, "annotation": null}, {"text": "multiple", "start": 261, "end": 269, "id": 55, "annotation": null}, {"text": "band", "start": 270, "end": 274, "id": 56, "annotation": null}, {"text": "phosphors", "start": 275, "end": 284, "id": 57, "annotation": null}, {"text": ".", "start": 285, "end": 286, "id": 58, "annotation": null}], [{"text": "Enhancement", "start": 287, "end": 298, "id": 59, "annotation": null}, {"text": "and", "start": 299, "end": 302, "id": 60, "annotation": null}, {"text": "quenching", "start": 303, "end": 312, "id": 61, "annotation": null}, {"text": "of", "start": 313, "end": 315, "id": 62, "annotation": null}, {"text": "the", "start": 316, "end": 319, "id": 63, "annotation": null}, {"text": "emission", "start": 320, "end": 328, "id": 64, "annotation": null}, {"text": "band", "start": 329, "end": 333, "id": 65, "annotation": null}, {"text": "intensities", "start": 334, "end": 345, "id": 66, "annotation": null}, {"text": "of", "start": 346, "end": 348, "id": 67, "annotation": null}, {"text": "all", "start": 349, "end": 352, "id": 68, "annotation": null}, {"text": "these", "start": 353, "end": 358, "id": 69, "annotation": null}, {"text": "phosphors", "start": 359, "end": 368, "id": 70, "annotation": null}, {"text": "have", "start": 369, "end": 373, "id": 71, "annotation": null}, {"text": "been", "start": 374, "end": 378, "id": 72, "annotation": null}, {"text": "studied", "start": 379, "end": 386, "id": 73, "annotation": null}, {"text": "in", "start": 387, "end": 389, "id": 74, "annotation": null}, {"text": "pel", "start": 390, "end": 393, "id": 75, "annotation": null}, {"text": "emission", "start": 394, "end": 402, "id": 76, "annotation": null}, {"text": ".", "start": 403, "end": 404, "id": 77, "annotation": null}], [{"text": "It", "start": 405, "end": 407, "id": 78, "annotation": null}, {"text": "is", "start": 408, "end": 410, "id": 79, "annotation": null}, {"text": "observed", "start": 411, "end": 419, "id": 80, "annotation": null}, {"text": "that", "start": 420, "end": 424, "id": 81, "annotation": null}, {"text": "Gd3", "start": 425, "end": 428, "id": 82, "annotation": null}, {"text": "+", "start": 429, "end": 430, "id": 83, "annotation": null}, {"text": "ions", "start": 431, "end": 435, "id": 84, "annotation": null}, {"text": "play", "start": 436, "end": 440, "id": 85, "annotation": null}, {"text": "an", "start": 441, "end": 443, "id": 86, "annotation": null}, {"text": "important", "start": 444, "end": 453, "id": 87, "annotation": null}, {"text": "role", "start": 454, "end": 458, "id": 88, "annotation": null}, {"text": "in", "start": 459, "end": 461, "id": 89, "annotation": null}, {"text": "transferring", "start": 462, "end": 474, "id": 90, "annotation": null}, {"text": "their", "start": 475, "end": 480, "id": 91, "annotation": null}, {"text": "excitation", "start": 481, "end": 491, "id": 92, "annotation": null}, {"text": "energy", "start": 492, "end": 498, "id": 93, "annotation": null}, {"text": "to", "start": 499, "end": 501, "id": 94, "annotation": null}, {"text": "other", "start": 502, "end": 507, "id": 95, "annotation": null}, {"text": "centres", "start": 508, "end": 515, "id": 96, "annotation": null}, {"text": ".", "start": 516, "end": 517, "id": 97, "annotation": null}], [{"text": "The", "start": 518, "end": 521, "id": 98, "annotation": null}, {"text": "voltage", "start": 522, "end": 529, "id": 99, "annotation": null}, {"text": "and", "start": 530, "end": 533, "id": 100, "annotation": null}, {"text": "frequency", "start": 534, "end": 543, "id": 101, "annotation": null}, {"text": "variation", "start": 544, "end": 553, "id": 102, "annotation": null}, {"text": "of", "start": 554, "end": 556, "id": 103, "annotation": null}, {"text": "el", "start": 557, "end": 559, "id": 104, "annotation": null}, {"text": "brightness", "start": 560, "end": 570, "id": 105, "annotation": null}, {"text": "are", "start": 571, "end": 574, "id": 106, "annotation": null}, {"text": "in", "start": 575, "end": 577, "id": 107, "annotation": null}, {"text": "agreement", "start": 578, "end": 587, "id": 108, "annotation": null}, {"text": "with", "start": 588, "end": 592, "id": 109, "annotation": null}, {"text": "collision", "start": 593, "end": 602, "id": 110, "annotation": null}, {"text": "excitation", "start": 603, "end": 613, "id": 111, "annotation": null}, {"text": "mechanism", "start": 614, "end": 623, "id": 112, "annotation": null}, {"text": "in", "start": 624, "end": 626, "id": 113, "annotation": null}, {"text": "Schottky", "start": 627, "end": 635, "id": 114, "annotation": null}, {"text": "barrier", "start": 636, "end": 643, "id": 115, "annotation": null}, {"text": "at", "start": 644, "end": 646, "id": 116, "annotation": null}, {"text": "the", "start": 647, "end": 650, "id": 117, "annotation": null}, {"text": "metal", "start": 651, "end": 656, "id": 118, "annotation": null}, {"text": "semiconductor", "start": 657, "end": 670, "id": 119, "annotation": null}, {"text": "interface", "start": 671, "end": 680, "id": 120, "annotation": null}, {"text": ".", "start": 681, "end": 682, "id": 121, "annotation": null}], [{"text": "Studies", "start": 683, "end": 690, "id": 122, "annotation": null}, {"text": "in", "start": 691, "end": 693, "id": 123, "annotation": null}, {"text": "phosphorescence", "start": 694, "end": 709, "id": 124, "annotation": null}, {"text": "and", "start": 710, "end": 713, "id": 125, "annotation": null}, {"text": "thermoluminescence", "start": 714, "end": 732, "id": 126, "annotation": null}, {"text": "of", "start": 733, "end": 735, "id": 127, "annotation": null}, {"text": "these", "start": 736, "end": 741, "id": 128, "annotation": null}, {"text": "phosphors", "start": 742, "end": 751, "id": 129, "annotation": null}, {"text": "have", "start": 752, "end": 756, "id": 130, "annotation": null}, {"text": "also", "start": 757, "end": 761, "id": 131, "annotation": null}, {"text": "been", "start": 762, "end": 766, "id": 132, "annotation": null}, {"text": "carried", "start": 767, "end": 774, "id": 133, "annotation": null}, {"text": "out", "start": 775, "end": 778, "id": 134, "annotation": null}, {"text": ".", "start": 779, "end": 780, "id": 135, "annotation": null}], [{"text": "It", "start": 781, "end": 783, "id": 136, "annotation": null}, {"text": "is", "start": 784, "end": 786, "id": 137, "annotation": null}, {"text": "observed", "start": 787, "end": 795, "id": 138, "annotation": null}, {"text": "that", "start": 796, "end": 800, "id": 139, "annotation": null}, {"text": "trap", "start": 801, "end": 805, "id": 140, "annotation": null}, {"text": "-", "start": 806, "end": 807, "id": 141, "annotation": null}, {"text": "depth", "start": 808, "end": 813, "id": 142, "annotation": null}, {"text": "changes", "start": 814, "end": 821, "id": 143, "annotation": null}, {"text": "slowly", "start": 822, "end": 828, "id": 144, "annotation": null}, {"text": "with", "start": 829, "end": 833, "id": 145, "annotation": null}, {"text": "temperature", "start": 834, "end": 845, "id": 146, "annotation": null}, {"text": "and", "start": 846, "end": 849, "id": 147, "annotation": null}, {"text": "dopant", "start": 850, "end": 856, "id": 148, "annotation": null}, {"text": "concentration", "start": 857, "end": 870, "id": 149, "annotation": null}, {"text": ".", "start": 871, "end": 872, "id": 150, "annotation": null}], [{"text": "The", "start": 873, "end": 876, "id": 151, "annotation": null}, {"text": "values", "start": 877, "end": 883, "id": 152, "annotation": null}, {"text": "of", "start": 884, "end": 886, "id": 153, "annotation": null}, {"text": "trapping", "start": 887, "end": 895, "id": 154, "annotation": null}, {"text": "parameters", "start": 896, "end": 906, "id": 155, "annotation": null}, {"text": "have", "start": 907, "end": 911, "id": 156, "annotation": null}, {"text": "been", "start": 912, "end": 916, "id": 157, "annotation": null}, {"text": "evaluated", "start": 917, "end": 926, "id": 158, "annotation": null}, {"text": ".", "start": 927, "end": 928, "id": 159, "annotation": null}], [{"text": "The", "start": 929, "end": 932, "id": 160, "annotation": null}, {"text": "irregular", "start": 933, "end": 942, "id": 161, "annotation": null}, {"text": "variation", "start": 943, "end": 952, "id": 162, "annotation": null}, {"text": "of", "start": 953, "end": 955, "id": 163, "annotation": null}, {"text": "the", "start": 956, "end": 959, "id": 164, "annotation": null}, {"text": "life", "start": 960, "end": 964, "id": 165, "annotation": null}, {"text": "-", "start": 965, "end": 966, "id": 166, "annotation": null}, {"text": "time", "start": 967, "end": 971, "id": 167, "annotation": null}, {"text": "of", "start": 972, "end": 974, "id": 168, "annotation": null}, {"text": "electrons", "start": 975, "end": 984, "id": 169, "annotation": null}, {"text": "in", "start": 985, "end": 987, "id": 170, "annotation": null}, {"text": "the", "start": 988, "end": 991, "id": 171, "annotation": null}, {"text": "traps", "start": 992, "end": 997, "id": 172, "annotation": null}, {"text": ".", "start": 998, "end": 999, "id": 173, "annotation": null}], [{"text": "with", "start": 1000, "end": 1004, "id": 174, "annotation": null}, {"text": "temperature", "start": 1005, "end": 1016, "id": 175, "annotation": null}, {"text": "shows", "start": 1017, "end": 1022, "id": 176, "annotation": null}, {"text": "the", "start": 1023, "end": 1026, "id": 177, "annotation": null}, {"text": "existence", "start": 1027, "end": 1036, "id": 178, "annotation": null}, {"text": "of", "start": 1037, "end": 1039, "id": 179, "annotation": null}, {"text": "retrapping", "start": 1040, "end": 1050, "id": 180, "annotation": null}, {"text": "in", "start": 1051, "end": 1053, "id": 181, "annotation": null}, {"text": "these", "start": 1054, "end": 1059, "id": 182, "annotation": null}, {"text": "phosphors", "start": 1060, "end": 1069, "id": 183, "annotation": null}, {"text": ".", "start": 1070, "end": 1071, "id": 184, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "N-doped TiO2 nanoparticles were prepared by using 1\u00b0 and 2\u00b0 alkyl and alcohol amines [n-propylamine (nPRYL), ethanolamine (ETOH), propanolamine (PROH), diethylamine (DETYL), dipropylamine (DPRYL), diethanolamine (DETOH), and ammonium hydroxide (NH4OH)] as nitrogen sources through microwave and hydrothermal growth (HT) methods. Characterization of the nanoparticles was done by X-ray diffraction, scanning electron microscopy, ultraviolet\u2013visible absorption spectra, X-ray photoelectron spectroscopy, fourier transform infrared spectroscopy and BET analysis techniques. Nitrogen species in TiO2 lattice were interstitial impurities. Nitrogen content of the particles depended on the preparation conditions and structural differences of nitrogen sources. Photocatalytic degradation of methylene blue was carried out under Xenon lamp irradiation. N-doped TiO2 nanoparticles exhibited higher photocatalytic activity, compared to undoped ones. Acidity differences of amine sources and irradiation differences of synthetic conditions had an effect on photocatalytic activity. Although N doping into TiO2 lattice was the least effective in the particle prepared by the use of nPRYL as the amine source and HT as the synthetic condition, its photocatalytic activity was slightly better compared to others.", "meta": {"doi": "10.1016/j.energy.2010.11.020"}, "_input_hash": 42789780, "_task_hash": -1009744101, "tokens": [[{"text": "N", "start": 0, "end": 1, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 2, "end": 3, "id": 1, "annotation": null}, {"text": "doped", "start": 4, "end": 9, "id": 2, "annotation": null}, {"text": "TiO2", "start": 10, "end": 14, "id": 3, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 15, "end": 28, "id": 4, "annotation": null}, {"text": "were", "start": 29, "end": 33, "id": 5, "annotation": null}, {"text": "prepared", "start": 34, "end": 42, "id": 6, "annotation": null}, {"text": "by", "start": 43, "end": 45, "id": 7, "annotation": null}, {"text": "using", "start": 46, "end": 51, "id": 8, "annotation": null}, {"text": "1", "start": 52, "end": 53, "id": 9, "annotation": null}, {"text": "\u00b0", "start": 54, "end": 55, "id": 10, "annotation": null}, {"text": "and", "start": 56, "end": 59, "id": 11, "annotation": null}, {"text": "2", "start": 60, "end": 61, "id": 12, "annotation": null}, {"text": "\u00b0", "start": 62, "end": 63, "id": 13, "annotation": null}, {"text": "alkyl", "start": 64, "end": 69, "id": 14, "annotation": null}, {"text": "and", "start": 70, "end": 73, "id": 15, "annotation": null}, {"text": "alcohol", "start": 74, "end": 81, "id": 16, "annotation": null}, {"text": "amines", "start": 82, "end": 88, "id": 17, "annotation": null}, {"text": "[", "start": 89, "end": 90, "id": 18, "annotation": null}, {"text": "n", "start": 91, "end": 92, "id": 19, "annotation": null}, {"text": "-", "start": 93, "end": 94, "id": 20, "annotation": null}, {"text": "propylamine", "start": 95, "end": 106, "id": 21, "annotation": null}, {"text": "(", "start": 107, "end": 108, "id": 22, "annotation": null}, {"text": "nPRYL", "start": 109, "end": 114, "id": 23, "annotation": null}, {"text": ")", "start": 115, "end": 116, "id": 24, "annotation": null}, {"text": ",", "start": 117, "end": 118, "id": 25, "annotation": null}, {"text": "ethanolamine", "start": 119, "end": 131, "id": 26, "annotation": null}, {"text": "(", "start": 132, "end": 133, "id": 27, "annotation": null}, {"text": "ETOH", "start": 134, "end": 138, "id": 28, "annotation": null}, {"text": ")", "start": 139, "end": 140, "id": 29, "annotation": null}, {"text": ",", "start": 141, "end": 142, "id": 30, "annotation": null}, {"text": "propanolamine", "start": 143, "end": 156, "id": 31, "annotation": null}, {"text": "(", "start": 157, "end": 158, "id": 32, "annotation": null}, {"text": "PROH", "start": 159, "end": 163, "id": 33, "annotation": null}, {"text": ")", "start": 164, "end": 165, "id": 34, "annotation": null}, {"text": ",", "start": 166, "end": 167, "id": 35, "annotation": null}, {"text": "diethylamine", "start": 168, "end": 180, "id": 36, "annotation": null}, {"text": "(", "start": 181, "end": 182, "id": 37, "annotation": null}, {"text": "DETYL", "start": 183, "end": 188, "id": 38, "annotation": null}, {"text": ")", "start": 189, "end": 190, "id": 39, "annotation": null}, {"text": ",", "start": 191, "end": 192, "id": 40, "annotation": null}, {"text": "dipropylamine", "start": 193, "end": 206, "id": 41, "annotation": null}, {"text": "(", "start": 207, "end": 208, "id": 42, "annotation": null}, {"text": "DPRYL", "start": 209, "end": 214, "id": 43, "annotation": null}, {"text": ")", "start": 215, "end": 216, "id": 44, "annotation": null}, {"text": ",", "start": 217, "end": 218, "id": 45, "annotation": null}, {"text": "diethanolamine", "start": 219, "end": 233, "id": 46, "annotation": null}, {"text": "(", "start": 234, "end": 235, "id": 47, "annotation": null}, {"text": "DETOH", "start": 236, "end": 241, "id": 48, "annotation": null}, {"text": ")", "start": 242, "end": 243, "id": 49, "annotation": null}, {"text": ",", "start": 244, "end": 245, "id": 50, "annotation": null}, {"text": "and", "start": 246, "end": 249, "id": 51, "annotation": null}, {"text": "ammonium", "start": 250, "end": 258, "id": 52, "annotation": null}, {"text": "hydroxide", "start": 259, "end": 268, "id": 53, "annotation": null}, {"text": "(", "start": 269, "end": 270, "id": 54, "annotation": null}, {"text": "NH4OH", "start": 271, "end": 276, "id": 55, "annotation": null}, {"text": ")", "start": 277, "end": 278, "id": 56, "annotation": null}, {"text": "]", "start": 279, "end": 280, "id": 57, "annotation": null}, {"text": "as", "start": 281, "end": 283, "id": 58, "annotation": null}, {"text": "nitrogen", "start": 284, "end": 292, "id": 59, "annotation": null}, {"text": "sources", "start": 293, "end": 300, "id": 60, "annotation": null}, {"text": "through", "start": 301, "end": 308, "id": 61, "annotation": null}, {"text": "microwave", "start": 309, "end": 318, "id": 62, "annotation": null}, {"text": "and", "start": 319, "end": 322, "id": 63, "annotation": null}, {"text": "hydrothermal", "start": 323, "end": 335, "id": 64, "annotation": null}, {"text": "growth", "start": 336, "end": 342, "id": 65, "annotation": null}, {"text": "(", "start": 343, "end": 344, "id": 66, "annotation": null}, {"text": "HT", "start": 345, "end": 347, "id": 67, "annotation": null}, {"text": ")", "start": 348, "end": 349, "id": 68, "annotation": null}, {"text": "methods", "start": 350, "end": 357, "id": 69, "annotation": null}, {"text": ".", "start": 358, "end": 359, "id": 70, "annotation": null}], [{"text": "Characterization", "start": 360, "end": 376, "id": 71, "annotation": null}, {"text": "of", "start": 377, "end": 379, "id": 72, "annotation": null}, {"text": "the", "start": 380, "end": 383, "id": 73, "annotation": null}, {"text": "nanoparticles", "start": 384, "end": 397, "id": 74, "annotation": null}, {"text": "was", "start": 398, "end": 401, "id": 75, "annotation": null}, {"text": "done", "start": 402, "end": 406, "id": 76, "annotation": null}, {"text": "by", "start": 407, "end": 409, "id": 77, "annotation": null}, {"text": "X", "start": 410, "end": 411, "id": 78, "annotation": null}, {"text": "-", "start": 412, "end": 413, "id": 79, "annotation": null}, {"text": "ray", "start": 414, "end": 417, "id": 80, "annotation": null}, {"text": "diffraction", "start": 418, "end": 429, "id": 81, "annotation": null}, {"text": ",", "start": 430, "end": 431, "id": 82, "annotation": null}, {"text": "scanning", "start": 432, "end": 440, "id": 83, "annotation": null}, {"text": "electron", "start": 441, "end": 449, "id": 84, "annotation": null}, {"text": "microscopy", "start": 450, "end": 460, "id": 85, "annotation": null}, {"text": ",", "start": 461, "end": 462, "id": 86, "annotation": null}, {"text": "ultraviolet", "start": 463, "end": 474, "id": 87, "annotation": null}, {"text": "\u2013", "start": 475, "end": 476, "id": 88, "annotation": null}, {"text": "visible", "start": 477, "end": 484, "id": 89, "annotation": null}, {"text": "absorption", "start": 485, "end": 495, "id": 90, "annotation": null}, {"text": "spectra", "start": 496, "end": 503, "id": 91, "annotation": null}, {"text": ",", "start": 504, "end": 505, "id": 92, "annotation": null}, {"text": "X", "start": 506, "end": 507, "id": 93, "annotation": null}, {"text": "-", "start": 508, "end": 509, "id": 94, "annotation": null}, {"text": "ray", "start": 510, "end": 513, "id": 95, "annotation": null}, {"text": "photoelectron", "start": 514, "end": 527, "id": 96, "annotation": null}, {"text": "spectroscopy", "start": 528, "end": 540, "id": 97, "annotation": null}, {"text": ",", "start": 541, "end": 542, "id": 98, "annotation": null}, {"text": "fourier", "start": 543, "end": 550, "id": 99, "annotation": null}, {"text": "transform", "start": 551, "end": 560, "id": 100, "annotation": null}, {"text": "infrared", "start": 561, "end": 569, "id": 101, "annotation": null}, {"text": "spectroscopy", "start": 570, "end": 582, "id": 102, "annotation": null}, {"text": "and", "start": 583, "end": 586, "id": 103, "annotation": null}, {"text": "BET", "start": 587, "end": 590, "id": 104, "annotation": null}, {"text": "analysis", "start": 591, "end": 599, "id": 105, "annotation": null}, {"text": "techniques", "start": 600, "end": 610, "id": 106, "annotation": null}, {"text": ".", "start": 611, "end": 612, "id": 107, "annotation": null}], [{"text": "Nitrogen", "start": 613, "end": 621, "id": 108, "annotation": null}, {"text": "species", "start": 622, "end": 629, "id": 109, "annotation": null}, {"text": "in", "start": 630, "end": 632, "id": 110, "annotation": null}, {"text": "TiO2", "start": 633, "end": 637, "id": 111, "annotation": null}, {"text": "lattice", "start": 638, "end": 645, "id": 112, "annotation": null}, {"text": "were", "start": 646, "end": 650, "id": 113, "annotation": null}, {"text": "interstitial", "start": 651, "end": 663, "id": 114, "annotation": null}, {"text": "impurities", "start": 664, "end": 674, "id": 115, "annotation": null}, {"text": ".", "start": 675, "end": 676, "id": 116, "annotation": null}], [{"text": "Nitrogen", "start": 677, "end": 685, "id": 117, "annotation": null}, {"text": "content", "start": 686, "end": 693, "id": 118, "annotation": null}, {"text": "of", "start": 694, "end": 696, "id": 119, "annotation": null}, {"text": "the", "start": 697, "end": 700, "id": 120, "annotation": null}, {"text": "particles", "start": 701, "end": 710, "id": 121, "annotation": null}, {"text": "depended", "start": 711, "end": 719, "id": 122, "annotation": null}, {"text": "on", "start": 720, "end": 722, "id": 123, "annotation": null}, {"text": "the", "start": 723, "end": 726, "id": 124, "annotation": null}, {"text": "preparation", "start": 727, "end": 738, "id": 125, "annotation": null}, {"text": "conditions", "start": 739, "end": 749, "id": 126, "annotation": null}, {"text": "and", "start": 750, "end": 753, "id": 127, "annotation": null}, {"text": "structural", "start": 754, "end": 764, "id": 128, "annotation": null}, {"text": "differences", "start": 765, "end": 776, "id": 129, "annotation": null}, {"text": "of", "start": 777, "end": 779, "id": 130, "annotation": null}, {"text": "nitrogen", "start": 780, "end": 788, "id": 131, "annotation": null}, {"text": "sources", "start": 789, "end": 796, "id": 132, "annotation": null}, {"text": ".", "start": 797, "end": 798, "id": 133, "annotation": null}], [{"text": "Photocatalytic", "start": 799, "end": 813, "id": 134, "annotation": null}, {"text": "degradation", "start": 814, "end": 825, "id": 135, "annotation": null}, {"text": "of", "start": 826, "end": 828, "id": 136, "annotation": null}, {"text": "methylene", "start": 829, "end": 838, "id": 137, "annotation": null}, {"text": "blue", "start": 839, "end": 843, "id": 138, "annotation": null}, {"text": "was", "start": 844, "end": 847, "id": 139, "annotation": null}, {"text": "carried", "start": 848, "end": 855, "id": 140, "annotation": null}, {"text": "out", "start": 856, "end": 859, "id": 141, "annotation": null}, {"text": "under", "start": 860, "end": 865, "id": 142, "annotation": null}, {"text": "Xenon", "start": 866, "end": 871, "id": 143, "annotation": null}, {"text": "lamp", "start": 872, "end": 876, "id": 144, "annotation": null}, {"text": "irradiation", "start": 877, "end": 888, "id": 145, "annotation": null}, {"text": ".", "start": 889, "end": 890, "id": 146, "annotation": null}], [{"text": "N", "start": 891, "end": 892, "id": 147, "annotation": "DOPANT"}, {"text": "-", "start": 893, "end": 894, "id": 148, "annotation": null}, {"text": "doped", "start": 895, "end": 900, "id": 149, "annotation": null}, {"text": "TiO2", "start": 901, "end": 905, "id": 150, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 906, "end": 919, "id": 151, "annotation": null}, {"text": "exhibited", "start": 920, "end": 929, "id": 152, "annotation": null}, {"text": "higher", "start": 930, "end": 936, "id": 153, "annotation": null}, {"text": "photocatalytic", "start": 937, "end": 951, "id": 154, "annotation": null}, {"text": "activity", "start": 952, "end": 960, "id": 155, "annotation": null}, {"text": ",", "start": 961, "end": 962, "id": 156, "annotation": null}, {"text": "compared", "start": 963, "end": 971, "id": 157, "annotation": null}, {"text": "to", "start": 972, "end": 974, "id": 158, "annotation": null}, {"text": "undoped", "start": 975, "end": 982, "id": 159, "annotation": null}, {"text": "ones", "start": 983, "end": 987, "id": 160, "annotation": null}, {"text": ".", "start": 988, "end": 989, "id": 161, "annotation": null}], [{"text": "Acidity", "start": 990, "end": 997, "id": 162, "annotation": null}, {"text": "differences", "start": 998, "end": 1009, "id": 163, "annotation": null}, {"text": "of", "start": 1010, "end": 1012, "id": 164, "annotation": null}, {"text": "amine", "start": 1013, "end": 1018, "id": 165, "annotation": null}, {"text": "sources", "start": 1019, "end": 1026, "id": 166, "annotation": null}, {"text": "and", "start": 1027, "end": 1030, "id": 167, "annotation": null}, {"text": "irradiation", "start": 1031, "end": 1042, "id": 168, "annotation": null}, {"text": "differences", "start": 1043, "end": 1054, "id": 169, "annotation": null}, {"text": "of", "start": 1055, "end": 1057, "id": 170, "annotation": null}, {"text": "synthetic", "start": 1058, "end": 1067, "id": 171, "annotation": null}, {"text": "conditions", "start": 1068, "end": 1078, "id": 172, "annotation": null}, {"text": "had", "start": 1079, "end": 1082, "id": 173, "annotation": null}, {"text": "an", "start": 1083, "end": 1085, "id": 174, "annotation": null}, {"text": "effect", "start": 1086, "end": 1092, "id": 175, "annotation": null}, {"text": "on", "start": 1093, "end": 1095, "id": 176, "annotation": null}, {"text": "photocatalytic", "start": 1096, "end": 1110, "id": 177, "annotation": null}, {"text": "activity", "start": 1111, "end": 1119, "id": 178, "annotation": null}, {"text": ".", "start": 1120, "end": 1121, "id": 179, "annotation": null}], [{"text": "Although", "start": 1122, "end": 1130, "id": 180, "annotation": null}, {"text": "N", "start": 1131, "end": 1132, "id": 181, "annotation": "DOPANT"}, {"text": "doping", "start": 1133, "end": 1139, "id": 182, "annotation": null}, {"text": "into", "start": 1140, "end": 1144, "id": 183, "annotation": null}, {"text": "TiO2", "start": 1145, "end": 1149, "id": 184, "annotation": "BASEMAT"}, {"text": "lattice", "start": 1150, "end": 1157, "id": 185, "annotation": null}, {"text": "was", "start": 1158, "end": 1161, "id": 186, "annotation": null}, {"text": "the", "start": 1162, "end": 1165, "id": 187, "annotation": null}, {"text": "least", "start": 1166, "end": 1171, "id": 188, "annotation": null}, {"text": "effective", "start": 1172, "end": 1181, "id": 189, "annotation": null}, {"text": "in", "start": 1182, "end": 1184, "id": 190, "annotation": null}, {"text": "the", "start": 1185, "end": 1188, "id": 191, "annotation": null}, {"text": "particle", "start": 1189, "end": 1197, "id": 192, "annotation": null}, {"text": "prepared", "start": 1198, "end": 1206, "id": 193, "annotation": null}, {"text": "by", "start": 1207, "end": 1209, "id": 194, "annotation": null}, {"text": "the", "start": 1210, "end": 1213, "id": 195, "annotation": null}, {"text": "use", "start": 1214, "end": 1217, "id": 196, "annotation": null}, {"text": "of", "start": 1218, "end": 1220, "id": 197, "annotation": null}, {"text": "nPRYL", "start": 1221, "end": 1226, "id": 198, "annotation": null}, {"text": "as", "start": 1227, "end": 1229, "id": 199, "annotation": null}, {"text": "the", "start": 1230, "end": 1233, "id": 200, "annotation": null}, {"text": "amine", "start": 1234, "end": 1239, "id": 201, "annotation": null}, {"text": "source", "start": 1240, "end": 1246, "id": 202, "annotation": null}, {"text": "and", "start": 1247, "end": 1250, "id": 203, "annotation": null}, {"text": "HT", "start": 1251, "end": 1253, "id": 204, "annotation": null}, {"text": "as", "start": 1254, "end": 1256, "id": 205, "annotation": null}, {"text": "the", "start": 1257, "end": 1260, "id": 206, "annotation": null}, {"text": "synthetic", "start": 1261, "end": 1270, "id": 207, "annotation": null}, {"text": "condition", "start": 1271, "end": 1280, "id": 208, "annotation": null}, {"text": ",", "start": 1281, "end": 1282, "id": 209, "annotation": null}, {"text": "its", "start": 1283, "end": 1286, "id": 210, "annotation": null}, {"text": "photocatalytic", "start": 1287, "end": 1301, "id": 211, "annotation": null}, {"text": "activity", "start": 1302, "end": 1310, "id": 212, "annotation": null}, {"text": "was", "start": 1311, "end": 1314, "id": 213, "annotation": null}, {"text": "slightly", "start": 1315, "end": 1323, "id": 214, "annotation": null}, {"text": "better", "start": 1324, "end": 1330, "id": 215, "annotation": null}, {"text": "compared", "start": 1331, "end": 1339, "id": 216, "annotation": null}, {"text": "to", "start": 1340, "end": 1342, "id": 217, "annotation": null}, {"text": "others", "start": 1343, "end": 1349, "id": 218, "annotation": null}, {"text": ".", "start": 1350, "end": 1351, "id": 219, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "The feasibility of optical amplification solutions for extended reach next generation access networks in C + L bands is studied. Amplification schemes based on Raman fiber amplifier and their combination with remotely pumped erbium-doped fiber amplifiers are assessed and optimized. The results concerning a ring with 80 km for rural scenario demonstrate gain equalization over a bandwidth of 50 nm. The survey was complemented with experimental results. \u00a9 2011 Wiley Periodicals, Inc.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "feasibility", "start": 4, "end": 15, "annotation": null}, {"text": "of", "start": 16, "end": 18, "annotation": null}, {"text": "optical", "start": 19, "end": 26, "annotation": null}, {"text": "amplification", "start": 27, "end": 40, "annotation": null}, {"text": "solutions", "start": 41, "end": 50, "annotation": null}, {"text": "for", "start": 51, "end": 54, "annotation": null}, {"text": "extended", "start": 55, "end": 63, "annotation": null}, {"text": "reach", "start": 64, "end": 69, "annotation": null}, {"text": "next", "start": 70, "end": 74, "annotation": null}, {"text": "generation", "start": 75, "end": 85, "annotation": null}, {"text": "access", "start": 86, "end": 92, "annotation": null}, {"text": "networks", "start": 93, "end": 101, "annotation": null}, {"text": "in", "start": 102, "end": 104, "annotation": null}, {"text": "C", "start": 105, "end": 106, "annotation": null}, {"text": "+", "start": 107, "end": 108, "annotation": null}, {"text": "L", "start": 109, "end": 110, "annotation": null}, {"text": "bands", "start": 111, "end": 116, "annotation": null}, {"text": "is", "start": 117, "end": 119, "annotation": null}, {"text": "studied", "start": 120, "end": 127, "annotation": null}, {"text": ".", "start": 127, "end": 128, "annotation": null}], [{"text": "Amplification", "start": 129, "end": 142, "annotation": null}, {"text": "schemes", "start": 143, "end": 150, "annotation": null}, {"text": "based", "start": 151, "end": 156, "annotation": null}, {"text": "on", "start": 157, "end": 159, "annotation": null}, {"text": "Raman", "start": 160, "end": 165, "annotation": null}, {"text": "fiber", "start": 166, "end": 171, "annotation": null}, {"text": "amplifier", "start": 172, "end": 181, "annotation": null}, {"text": "and", "start": 182, "end": 185, "annotation": null}, {"text": "their", "start": 186, "end": 191, "annotation": null}, {"text": "combination", "start": 192, "end": 203, "annotation": null}, {"text": "with", "start": 204, "end": 208, "annotation": null}, {"text": "remotely", "start": 209, "end": 217, "annotation": null}, {"text": "pumped", "start": 218, "end": 224, "annotation": null}, {"text": "erbium", "start": 225, "end": 231, "annotation": "DOPANT"}, {"text": "-", "start": 231, "end": 232, "annotation": null}, {"text": "doped", "start": 232, "end": 237, "annotation": null}, {"text": "fiber", "start": 238, "end": 243, "annotation": "BASEMAT"}, {"text": "amplifiers", "start": 244, "end": 254, "annotation": "BASEMAT"}, {"text": "are", "start": 255, "end": 258, "annotation": null}, {"text": "assessed", "start": 259, "end": 267, "annotation": null}, {"text": "and", "start": 268, "end": 271, "annotation": null}, {"text": "optimized", "start": 272, "end": 281, "annotation": null}, {"text": ".", "start": 281, "end": 282, "annotation": null}], [{"text": "The", "start": 283, "end": 286, "annotation": null}, {"text": "results", "start": 287, "end": 294, "annotation": null}, {"text": "concerning", "start": 295, "end": 305, "annotation": null}, {"text": "a", "start": 306, "end": 307, "annotation": null}, {"text": "ring", "start": 308, "end": 312, "annotation": null}, {"text": "with", "start": 313, "end": 317, "annotation": null}, {"text": "80", "start": 318, "end": 320, "annotation": null}, {"text": "km", "start": 321, "end": 323, "annotation": null}, {"text": "for", "start": 324, "end": 327, "annotation": null}, {"text": "rural", "start": 328, "end": 333, "annotation": null}, {"text": "scenario", "start": 334, "end": 342, "annotation": null}, {"text": "demonstrate", "start": 343, "end": 354, "annotation": null}, {"text": "gain", "start": 355, "end": 359, "annotation": null}, {"text": "equalization", "start": 360, "end": 372, "annotation": null}, {"text": "over", "start": 373, "end": 377, "annotation": null}, {"text": "a", "start": 378, "end": 379, "annotation": null}, {"text": "bandwidth", "start": 380, "end": 389, "annotation": null}, {"text": "of", "start": 390, "end": 392, "annotation": null}, {"text": "50", "start": 393, "end": 395, "annotation": null}, {"text": "nm", "start": 396, "end": 398, "annotation": null}, {"text": ".", "start": 398, "end": 399, "annotation": null}], [{"text": "The", "start": 400, "end": 403, "annotation": null}, {"text": "survey", "start": 404, "end": 410, "annotation": null}, {"text": "was", "start": 411, "end": 414, "annotation": null}, {"text": "complemented", "start": 415, "end": 427, "annotation": null}, {"text": "with", "start": 428, "end": 432, "annotation": null}, {"text": "experimental", "start": 433, "end": 445, "annotation": null}, {"text": "results", "start": 446, "end": 453, "annotation": null}, {"text": ".", "start": 453, "end": 454, "annotation": null}]]} -{"text": "Ferroelectric properties of Bi doped (Ba1\u2212xCax)0.925Bi0.05TiO3 (Bi\u2013BCT, 0.10 1 \u03bcm) were formed near the areas of high sublimation. Besides the doping species (boron, titanium) these materials sublime various (metallic) impurities at elevated temperatures. No significant increase of the emitted carbon flux has been observed below surface temperatures of 2000\u00b0C showing that radiation enhanced sublimation (RES) is significantly reduced under these conditions compared with expected values extrapolated from beam experiments.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Boron", "start": 0, "end": 5, "annotation": "DOPANT"}, {"text": "-", "start": 5, "end": 6, "annotation": null}, {"text": "doped", "start": 6, "end": 11, "annotation": null}, {"text": "graphite", "start": 12, "end": 20, "annotation": "BASEMAT"}, {"text": "(", "start": 21, "end": 22, "annotation": null}, {"text": "3.5", "start": 22, "end": 25, "annotation": "DOPMODQ"}, {"text": "%", "start": 25, "end": 26, "annotation": "DOPMODQ"}, {"text": "B", "start": 27, "end": 28, "annotation": "DOPANT"}, {"text": "in", "start": 29, "end": 31, "annotation": null}, {"text": "C", "start": 32, "end": 33, "annotation": "BASEMAT"}, {"text": "(", "start": 34, "end": 35, "annotation": null}, {"text": "S2508", "start": 35, "end": 40, "annotation": null}, {"text": ",", "start": 40, "end": 41, "annotation": null}, {"text": "Carbon", "start": 42, "end": 48, "annotation": null}, {"text": "Lorraine", "start": 49, "end": 57, "annotation": null}, {"text": ")", "start": 57, "end": 58, "annotation": null}, {"text": ",", "start": 58, "end": 59, "annotation": null}, {"text": "20", "start": 60, "end": 62, "annotation": "DOPMODQ"}, {"text": "%", "start": 62, "end": 63, "annotation": "DOPMODQ"}, {"text": "B", "start": 64, "end": 65, "annotation": "DOPANT"}, {"text": "in", "start": 66, "end": 68, "annotation": null}, {"text": "C", "start": 69, "end": 70, "annotation": "BASEMAT"}, {"text": "(", "start": 71, "end": 72, "annotation": null}, {"text": "GB120", "start": 72, "end": 77, "annotation": null}, {"text": ",", "start": 77, "end": 78, "annotation": null}, {"text": "Toyo", "start": 79, "end": 83, "annotation": null}, {"text": "Tanso", "start": 84, "end": 89, "annotation": null}, {"text": ")", "start": 89, "end": 90, "annotation": null}, {"text": ")", "start": 90, "end": 91, "annotation": null}, {"text": "and", "start": 92, "end": 95, "annotation": null}, {"text": "titanium", "start": 96, "end": 104, "annotation": "DOPANT"}, {"text": "-", "start": 104, "end": 105, "annotation": null}, {"text": "doped", "start": 105, "end": 110, "annotation": null}, {"text": "graphite", "start": 111, "end": 119, "annotation": "BASEMAT"}, {"text": "(", "start": 120, "end": 121, "annotation": null}, {"text": "2.1", "start": 121, "end": 124, "annotation": "DOPMODQ"}, {"text": "%", "start": 124, "end": 125, "annotation": "DOPMODQ"}, {"text": "Ti", "start": 126, "end": 128, "annotation": "DOPANT"}, {"text": "in", "start": 129, "end": 131, "annotation": null}, {"text": "C", "start": 132, "end": 133, "annotation": "BASEMAT"}, {"text": "(", "start": 134, "end": 135, "annotation": null}, {"text": "RGTi", "start": 135, "end": 139, "annotation": null}, {"text": ",", "start": 139, "end": 140, "annotation": null}, {"text": "supplied", "start": 141, "end": 149, "annotation": null}, {"text": "by", "start": 150, "end": 152, "annotation": null}, {"text": "Efremov", "start": 153, "end": 160, "annotation": null}, {"text": "Institute", "start": 161, "end": 170, "annotation": null}, {"text": ",", "start": 170, "end": 171, "annotation": null}, {"text": "St.", "start": 172, "end": 175, "annotation": null}, {"text": "Petersburg", "start": 176, "end": 186, "annotation": null}, {"text": ")", "start": 186, "end": 187, "annotation": null}, {"text": ")", "start": 187, "end": 188, "annotation": null}, {"text": "have", "start": 189, "end": 193, "annotation": null}, {"text": "been", "start": 194, "end": 198, "annotation": null}, {"text": "tested", "start": 199, "end": 205, "annotation": null}, {"text": "in", "start": 206, "end": 208, "annotation": null}, {"text": "TEXTOR", "start": 209, "end": 215, "annotation": null}, {"text": "as", "start": 216, "end": 218, "annotation": null}, {"text": "a", "start": 219, "end": 220, "annotation": null}, {"text": "single", "start": 221, "end": 227, "annotation": null}, {"text": "main", "start": 228, "end": 232, "annotation": null}, {"text": "limiter", "start": 233, "end": 240, "annotation": null}, {"text": "for", "start": 241, "end": 244, "annotation": null}, {"text": "typically", "start": 245, "end": 254, "annotation": null}, {"text": "20", "start": 255, "end": 257, "annotation": null}, {"text": "\u2013", "start": 257, "end": 258, "annotation": null}, {"text": "40", "start": 258, "end": 260, "annotation": null}, {"text": "discharges", "start": 261, "end": 271, "annotation": null}, {"text": ".", "start": 271, "end": 272, "annotation": null}], [{"text": "Convective", "start": 273, "end": 283, "annotation": null}, {"text": "power", "start": 284, "end": 289, "annotation": null}, {"text": "loads", "start": 290, "end": 295, "annotation": null}, {"text": "up", "start": 296, "end": 298, "annotation": null}, {"text": "to", "start": 299, "end": 301, "annotation": null}, {"text": "about", "start": 302, "end": 307, "annotation": null}, {"text": "30", "start": 308, "end": 310, "annotation": null}, {"text": "MW", "start": 311, "end": 313, "annotation": null}, {"text": "/", "start": 313, "end": 314, "annotation": null}, {"text": "m2", "start": 314, "end": 316, "annotation": null}, {"text": "led", "start": 317, "end": 320, "annotation": null}, {"text": "to", "start": 321, "end": 323, "annotation": null}, {"text": "maximum", "start": 324, "end": 331, "annotation": null}, {"text": "surface", "start": 332, "end": 339, "annotation": null}, {"text": "temperatures", "start": 340, "end": 352, "annotation": null}, {"text": "between", "start": 353, "end": 360, "annotation": null}, {"text": "2400", "start": 361, "end": 365, "annotation": null}, {"text": "\u2013", "start": 365, "end": 366, "annotation": null}, {"text": "2800", "start": 366, "end": 370, "annotation": null}, {"text": "\u00b0", "start": 370, "end": 371, "annotation": null}, {"text": "C", "start": 371, "end": 372, "annotation": null}, {"text": ".", "start": 372, "end": 373, "annotation": null}], [{"text": "Severe", "start": 374, "end": 380, "annotation": null}, {"text": "cracking", "start": 381, "end": 389, "annotation": null}, {"text": "has", "start": 390, "end": 393, "annotation": null}, {"text": "occurred", "start": 394, "end": 402, "annotation": null}, {"text": "on", "start": 403, "end": 405, "annotation": null}, {"text": "the", "start": 406, "end": 409, "annotation": null}, {"text": "20", "start": 410, "end": 412, "annotation": "DOPMODQ"}, {"text": "%", "start": 412, "end": 413, "annotation": "DOPMODQ"}, {"text": "boron", "start": 414, "end": 419, "annotation": "DOPANT"}, {"text": "-", "start": 419, "end": 420, "annotation": null}, {"text": "doped", "start": 420, "end": 425, "annotation": null}, {"text": "graphite", "start": 426, "end": 434, "annotation": "BASEMAT"}, {"text": "material", "start": 435, "end": 443, "annotation": null}, {"text": "showing", "start": 444, "end": 451, "annotation": null}, {"text": "that", "start": 452, "end": 456, "annotation": null}, {"text": "it", "start": 457, "end": 459, "annotation": null}, {"text": "is", "start": 460, "end": 462, "annotation": null}, {"text": "not", "start": 463, "end": 466, "annotation": null}, {"text": "applicable", "start": 467, "end": 477, "annotation": null}, {"text": "as", "start": 478, "end": 480, "annotation": null}, {"text": "plasma", "start": 481, "end": 487, "annotation": null}, {"text": "facing", "start": 488, "end": 494, "annotation": null}, {"text": "material", "start": 495, "end": 503, "annotation": null}, {"text": "under", "start": 504, "end": 509, "annotation": null}, {"text": "high", "start": 510, "end": 514, "annotation": null}, {"text": "heat", "start": 515, "end": 519, "annotation": null}, {"text": "loads", "start": 520, "end": 525, "annotation": null}, {"text": ".", "start": 525, "end": 526, "annotation": null}], [{"text": "Some", "start": 527, "end": 531, "annotation": null}, {"text": "large", "start": 532, "end": 537, "annotation": null}, {"text": "cracks", "start": 538, "end": 544, "annotation": null}, {"text": "have", "start": 545, "end": 549, "annotation": null}, {"text": "also", "start": 550, "end": 554, "annotation": null}, {"text": "been", "start": 555, "end": 559, "annotation": null}, {"text": "observed", "start": 560, "end": 568, "annotation": null}, {"text": "on", "start": 569, "end": 571, "annotation": null}, {"text": "the", "start": 572, "end": 575, "annotation": null}, {"text": "RGTi", "start": 576, "end": 580, "annotation": null}, {"text": "limiter", "start": 581, "end": 588, "annotation": null}, {"text": ",", "start": 588, "end": 589, "annotation": null}, {"text": "probably", "start": 590, "end": 598, "annotation": null}, {"text": "caused", "start": 599, "end": 605, "annotation": null}, {"text": "by", "start": 606, "end": 608, "annotation": null}, {"text": "the", "start": 609, "end": 612, "annotation": null}, {"text": "strong", "start": 613, "end": 619, "annotation": null}, {"text": "anisotropy", "start": 620, "end": 630, "annotation": null}, {"text": "of", "start": 631, "end": 633, "annotation": null}, {"text": "the", "start": 634, "end": 637, "annotation": null}, {"text": "material", "start": 638, "end": 646, "annotation": null}, {"text": ".", "start": 646, "end": 647, "annotation": null}], [{"text": "The", "start": 648, "end": 651, "annotation": null}, {"text": "3.5", "start": 652, "end": 655, "annotation": "DOPMODQ"}, {"text": "%", "start": 655, "end": 656, "annotation": "DOPMODQ"}, {"text": "boron", "start": 657, "end": 662, "annotation": "DOPANT"}, {"text": "-", "start": 662, "end": 663, "annotation": null}, {"text": "doped", "start": 663, "end": 668, "annotation": null}, {"text": "material", "start": 669, "end": 677, "annotation": "BASEMAT"}, {"text": "shows", "start": 678, "end": 683, "annotation": null}, {"text": "similar", "start": 684, "end": 691, "annotation": null}, {"text": "thermomechanical", "start": 692, "end": 708, "annotation": null}, {"text": "properties", "start": 709, "end": 719, "annotation": null}, {"text": "as", "start": 720, "end": 722, "annotation": null}, {"text": "a", "start": 723, "end": 724, "annotation": null}, {"text": "usual", "start": 725, "end": 730, "annotation": null}, {"text": "fine", "start": 731, "end": 735, "annotation": null}, {"text": "-", "start": 735, "end": 736, "annotation": null}, {"text": "grain", "start": 736, "end": 741, "annotation": null}, {"text": "graphite", "start": 742, "end": 750, "annotation": null}, {"text": "(", "start": 751, "end": 752, "annotation": null}, {"text": "EK98", "start": 752, "end": 756, "annotation": null}, {"text": ")", "start": 756, "end": 757, "annotation": null}, {"text": ".", "start": 757, "end": 758, "annotation": null}], [{"text": "Large", "start": 759, "end": 764, "annotation": null}, {"text": "thermal", "start": 765, "end": 772, "annotation": null}, {"text": "sublimation", "start": 773, "end": 784, "annotation": null}, {"text": "of", "start": 785, "end": 787, "annotation": null}, {"text": "boron", "start": 788, "end": 793, "annotation": "DOPANT"}, {"text": "and", "start": 794, "end": 797, "annotation": null}, {"text": "titanium", "start": 798, "end": 806, "annotation": "DOPANT"}, {"text": "has", "start": 807, "end": 810, "annotation": null}, {"text": "been", "start": 811, "end": 815, "annotation": null}, {"text": "observed", "start": 816, "end": 824, "annotation": null}, {"text": "starting", "start": 825, "end": 833, "annotation": null}, {"text": "at", "start": 834, "end": 836, "annotation": null}, {"text": "surface", "start": 837, "end": 844, "annotation": null}, {"text": "temperatures", "start": 845, "end": 857, "annotation": null}, {"text": "of", "start": 858, "end": 860, "annotation": null}, {"text": "about", "start": 861, "end": 866, "annotation": null}, {"text": "2000", "start": 867, "end": 871, "annotation": null}, {"text": "\u00b0", "start": 871, "end": 872, "annotation": null}, {"text": "C", "start": 872, "end": 873, "annotation": null}, {"text": "and", "start": 874, "end": 877, "annotation": null}, {"text": "1800", "start": 878, "end": 882, "annotation": null}, {"text": "\u00b0", "start": 882, "end": 883, "annotation": null}, {"text": "C", "start": 883, "end": 884, "annotation": null}, {"text": ",", "start": 884, "end": 885, "annotation": null}, {"text": "respectively", "start": 886, "end": 898, "annotation": null}, {"text": ".", "start": 898, "end": 899, "annotation": null}], [{"text": "Very", "start": 900, "end": 904, "annotation": null}, {"text": "thick", "start": 905, "end": 910, "annotation": null}, {"text": "layers", "start": 911, "end": 917, "annotation": null}, {"text": "of", "start": 918, "end": 920, "annotation": null}, {"text": "redeposited", "start": 921, "end": 932, "annotation": null}, {"text": "boron", "start": 933, "end": 938, "annotation": null}, {"text": "or", "start": 939, "end": 941, "annotation": null}, {"text": "titanium", "start": 942, "end": 950, "annotation": null}, {"text": "(", "start": 951, "end": 952, "annotation": null}, {"text": ">", "start": 952, "end": 953, "annotation": null}, {"text": "1", "start": 954, "end": 955, "annotation": null}, {"text": "\u03bcm", "start": 956, "end": 958, "annotation": null}, {"text": ")", "start": 958, "end": 959, "annotation": null}, {"text": "were", "start": 960, "end": 964, "annotation": null}, {"text": "formed", "start": 965, "end": 971, "annotation": null}, {"text": "near", "start": 972, "end": 976, "annotation": null}, {"text": "the", "start": 977, "end": 980, "annotation": null}, {"text": "areas", "start": 981, "end": 986, "annotation": null}, {"text": "of", "start": 987, "end": 989, "annotation": null}, {"text": "high", "start": 990, "end": 994, "annotation": null}, {"text": "sublimation", "start": 995, "end": 1006, "annotation": null}, {"text": ".", "start": 1006, "end": 1007, "annotation": null}], [{"text": "Besides", "start": 1008, "end": 1015, "annotation": null}, {"text": "the", "start": 1016, "end": 1019, "annotation": null}, {"text": "doping", "start": 1020, "end": 1026, "annotation": null}, {"text": "species", "start": 1027, "end": 1034, "annotation": null}, {"text": "(", "start": 1035, "end": 1036, "annotation": null}, {"text": "boron", "start": 1036, "end": 1041, "annotation": "DOPANT"}, {"text": ",", "start": 1041, "end": 1042, "annotation": null}, {"text": "titanium", "start": 1043, "end": 1051, "annotation": "DOPANT"}, {"text": ")", "start": 1051, "end": 1052, "annotation": null}, {"text": "these", "start": 1053, "end": 1058, "annotation": null}, {"text": "materials", "start": 1059, "end": 1068, "annotation": null}, {"text": "sublime", "start": 1069, "end": 1076, "annotation": null}, {"text": "various", "start": 1077, "end": 1084, "annotation": null}, {"text": "(", "start": 1085, "end": 1086, "annotation": null}, {"text": "metallic", "start": 1086, "end": 1094, "annotation": null}, {"text": ")", "start": 1094, "end": 1095, "annotation": null}, {"text": "impurities", "start": 1096, "end": 1106, "annotation": null}, {"text": "at", "start": 1107, "end": 1109, "annotation": null}, {"text": "elevated", "start": 1110, "end": 1118, "annotation": null}, {"text": "temperatures", "start": 1119, "end": 1131, "annotation": null}, {"text": ".", "start": 1131, "end": 1132, "annotation": null}], [{"text": "No", "start": 1133, "end": 1135, "annotation": null}, {"text": "significant", "start": 1136, "end": 1147, "annotation": null}, {"text": "increase", "start": 1148, "end": 1156, "annotation": null}, {"text": "of", "start": 1157, "end": 1159, "annotation": null}, {"text": "the", "start": 1160, "end": 1163, "annotation": null}, {"text": "emitted", "start": 1164, "end": 1171, "annotation": null}, {"text": "carbon", "start": 1172, "end": 1178, "annotation": null}, {"text": "flux", "start": 1179, "end": 1183, "annotation": null}, {"text": "has", "start": 1184, "end": 1187, "annotation": null}, {"text": "been", "start": 1188, "end": 1192, "annotation": null}, {"text": "observed", "start": 1193, "end": 1201, "annotation": null}, {"text": "below", "start": 1202, "end": 1207, "annotation": null}, {"text": "surface", "start": 1208, "end": 1215, "annotation": null}, {"text": "temperatures", "start": 1216, "end": 1228, "annotation": null}, {"text": "of", "start": 1229, "end": 1231, "annotation": null}, {"text": "2000", "start": 1232, "end": 1236, "annotation": null}, {"text": "\u00b0", "start": 1236, "end": 1237, "annotation": null}, {"text": "C", "start": 1237, "end": 1238, "annotation": null}, {"text": "showing", "start": 1239, "end": 1246, "annotation": null}, {"text": "that", "start": 1247, "end": 1251, "annotation": null}, {"text": "radiation", "start": 1252, "end": 1261, "annotation": null}, {"text": "enhanced", "start": 1262, "end": 1270, "annotation": null}, {"text": "sublimation", "start": 1271, "end": 1282, "annotation": null}, {"text": "(", "start": 1283, "end": 1284, "annotation": null}, {"text": "RES", "start": 1284, "end": 1287, "annotation": null}, {"text": ")", "start": 1287, "end": 1288, "annotation": null}, {"text": "is", "start": 1289, "end": 1291, "annotation": null}, {"text": "significantly", "start": 1292, "end": 1305, "annotation": null}, {"text": "reduced", "start": 1306, "end": 1313, "annotation": null}, {"text": "under", "start": 1314, "end": 1319, "annotation": null}, {"text": "these", "start": 1320, "end": 1325, "annotation": null}, {"text": "conditions", "start": 1326, "end": 1336, "annotation": null}, {"text": "compared", "start": 1337, "end": 1345, "annotation": null}, {"text": "with", "start": 1346, "end": 1350, "annotation": null}, {"text": "expected", "start": 1351, "end": 1359, "annotation": null}, {"text": "values", "start": 1360, "end": 1366, "annotation": null}, {"text": "extrapolated", "start": 1367, "end": 1379, "annotation": null}, {"text": "from", "start": 1380, "end": 1384, "annotation": null}, {"text": "beam", "start": 1385, "end": 1389, "annotation": null}, {"text": "experiments", "start": 1390, "end": 1401, "annotation": null}, {"text": ".", "start": 1401, "end": 1402, "annotation": null}]]} -{"text": "A series of Pr3+/Yb3+ co-doped transparent tellurate glass samples were prepared by high-temperature melting method. The optical properties and energy transfer process from Pr3+ to Yb3+ were investigated. On excitation of Pr3+ ions with a blue visible photon at 449nm, a near infrared emission at 1001nm were observed in the Pr3+/Yb3+ co-doped tellurate glass, which is attributed to 2 F 2 / 5 \u2192 2 F 2 / 7 transition of Yb3+ ions. The feeding of Yb3+ ions is shown to be two step energy transfer from Pr3+ through 1 G 4 multiplet by excitation and emission spectra. The maximum total quantum efficiency reaches 136.7% when the co-doped Yb3+ mole concentration is 5%. The efficient down-conversion near infrared emission of Pr3+/Yb3+ co-doped tellurate glass has potential application in enhancing the conversion efficiency of crystalline silicon based solar cells.", "meta": {"doi": "10.1016/j.optmat.2012.10.012"}, "_input_hash": -1874277177, "_task_hash": -1866424394, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "series", "start": 2, "end": 8, "id": 1, "annotation": null}, {"text": "of", "start": 9, "end": 11, "id": 2, "annotation": null}, {"text": "Pr3+/Yb3", "start": 12, "end": 20, "id": 3, "annotation": "DOPANT"}, {"text": "+", "start": 21, "end": 22, "id": 4, "annotation": "DOPANT"}, {"text": "co", "start": 23, "end": 25, "id": 5, "annotation": null}, {"text": "-", "start": 26, "end": 27, "id": 6, "annotation": null}, {"text": "doped", "start": 28, "end": 33, "id": 7, "annotation": null}, {"text": "transparent", "start": 34, "end": 45, "id": 8, "annotation": null}, {"text": "tellurate", "start": 46, "end": 55, "id": 9, "annotation": "BASEMAT"}, {"text": "glass", "start": 56, "end": 61, "id": 10, "annotation": null}, {"text": "samples", "start": 62, "end": 69, "id": 11, "annotation": null}, {"text": "were", "start": 70, "end": 74, "id": 12, "annotation": null}, {"text": "prepared", "start": 75, "end": 83, "id": 13, "annotation": null}, {"text": "by", "start": 84, "end": 86, "id": 14, "annotation": null}, {"text": "high", "start": 87, "end": 91, "id": 15, "annotation": null}, {"text": "-", "start": 92, "end": 93, "id": 16, "annotation": null}, {"text": "temperature", "start": 94, "end": 105, "id": 17, "annotation": null}, {"text": "melting", "start": 106, "end": 113, "id": 18, "annotation": null}, {"text": "method", "start": 114, "end": 120, "id": 19, "annotation": null}, {"text": ".", "start": 121, "end": 122, "id": 20, "annotation": null}], [{"text": "The", "start": 123, "end": 126, "id": 21, "annotation": null}, {"text": "optical", "start": 127, "end": 134, "id": 22, "annotation": null}, {"text": "properties", "start": 135, "end": 145, "id": 23, "annotation": null}, {"text": "and", "start": 146, "end": 149, "id": 24, "annotation": null}, {"text": "energy", "start": 150, "end": 156, "id": 25, "annotation": null}, {"text": "transfer", "start": 157, "end": 165, "id": 26, "annotation": null}, {"text": "process", "start": 166, "end": 173, "id": 27, "annotation": null}, {"text": "from", "start": 174, "end": 178, "id": 28, "annotation": null}, {"text": "Pr3", "start": 179, "end": 182, "id": 29, "annotation": null}, {"text": "+", "start": 183, "end": 184, "id": 30, "annotation": null}, {"text": "to", "start": 185, "end": 187, "id": 31, "annotation": null}, {"text": "Yb3", "start": 188, "end": 191, "id": 32, "annotation": null}, {"text": "+", "start": 192, "end": 193, "id": 33, "annotation": null}, {"text": "were", "start": 194, "end": 198, "id": 34, "annotation": null}, {"text": "investigated", "start": 199, "end": 211, "id": 35, "annotation": null}, {"text": ".", "start": 212, "end": 213, "id": 36, "annotation": null}], [{"text": "On", "start": 214, "end": 216, "id": 37, "annotation": null}, {"text": "excitation", "start": 217, "end": 227, "id": 38, "annotation": null}, {"text": "of", "start": 228, "end": 230, "id": 39, "annotation": null}, {"text": "Pr3", "start": 231, "end": 234, "id": 40, "annotation": null}, {"text": "+", "start": 235, "end": 236, "id": 41, "annotation": null}, {"text": "ions", "start": 237, "end": 241, "id": 42, "annotation": null}, {"text": "with", "start": 242, "end": 246, "id": 43, "annotation": null}, {"text": "a", "start": 247, "end": 248, "id": 44, "annotation": null}, {"text": "blue", "start": 249, "end": 253, "id": 45, "annotation": null}, {"text": "visible", "start": 254, "end": 261, "id": 46, "annotation": null}, {"text": "photon", "start": 262, "end": 268, "id": 47, "annotation": null}, {"text": "at", "start": 269, "end": 271, "id": 48, "annotation": null}, {"text": "449", "start": 272, "end": 275, "id": 49, "annotation": null}, {"text": "nm", "start": 276, "end": 278, "id": 50, "annotation": null}, {"text": ",", "start": 279, "end": 280, "id": 51, "annotation": null}, {"text": "a", "start": 281, "end": 282, "id": 52, "annotation": null}, {"text": "near", "start": 283, "end": 287, "id": 53, "annotation": null}, {"text": "infrared", "start": 288, "end": 296, "id": 54, "annotation": null}, {"text": "emission", "start": 297, "end": 305, "id": 55, "annotation": null}, {"text": "at", "start": 306, "end": 308, "id": 56, "annotation": null}, {"text": "1001", "start": 309, "end": 313, "id": 57, "annotation": null}, {"text": "nm", "start": 314, "end": 316, "id": 58, "annotation": null}, {"text": "were", "start": 317, "end": 321, "id": 59, "annotation": null}, {"text": "observed", "start": 322, "end": 330, "id": 60, "annotation": null}, {"text": "in", "start": 331, "end": 333, "id": 61, "annotation": null}, {"text": "the", "start": 334, "end": 337, "id": 62, "annotation": null}, {"text": "Pr3+/Yb3", "start": 338, "end": 346, "id": 63, "annotation": "DOPANT"}, {"text": "+", "start": 347, "end": 348, "id": 64, "annotation": "DOPANT"}, {"text": "co", "start": 349, "end": 351, "id": 65, "annotation": null}, {"text": "-", "start": 352, "end": 353, "id": 66, "annotation": null}, {"text": "doped", "start": 354, "end": 359, "id": 67, "annotation": null}, {"text": "tellurate", "start": 360, "end": 369, "id": 68, "annotation": "BASEMAT"}, {"text": "glass", "start": 370, "end": 375, "id": 69, "annotation": null}, {"text": ",", "start": 376, "end": 377, "id": 70, "annotation": null}, {"text": "which", "start": 378, "end": 383, "id": 71, "annotation": null}, {"text": "is", "start": 384, "end": 386, "id": 72, "annotation": null}, {"text": "attributed", "start": 387, "end": 397, "id": 73, "annotation": null}, {"text": "to", "start": 398, "end": 400, "id": 74, "annotation": null}, {"text": "2", "start": 401, "end": 402, "id": 75, "annotation": null}, {"text": "F", "start": 403, "end": 404, "id": 76, "annotation": null}, {"text": "2", "start": 405, "end": 406, "id": 77, "annotation": null}, {"text": "/", "start": 407, "end": 408, "id": 78, "annotation": null}, {"text": "5", "start": 409, "end": 410, "id": 79, "annotation": null}, {"text": "\u2192", "start": 411, "end": 412, "id": 80, "annotation": null}, {"text": "2", "start": 413, "end": 414, "id": 81, "annotation": null}, {"text": "F", "start": 415, "end": 416, "id": 82, "annotation": null}, {"text": "2", "start": 417, "end": 418, "id": 83, "annotation": null}, {"text": "/", "start": 419, "end": 420, "id": 84, "annotation": null}, {"text": "7", "start": 421, "end": 422, "id": 85, "annotation": null}, {"text": "transition", "start": 423, "end": 433, "id": 86, "annotation": null}, {"text": "of", "start": 434, "end": 436, "id": 87, "annotation": null}, {"text": "Yb3", "start": 437, "end": 440, "id": 88, "annotation": null}, {"text": "+", "start": 441, "end": 442, "id": 89, "annotation": null}, {"text": "ions", "start": 443, "end": 447, "id": 90, "annotation": null}, {"text": ".", "start": 448, "end": 449, "id": 91, "annotation": null}], [{"text": "The", "start": 450, "end": 453, "id": 92, "annotation": null}, {"text": "feeding", "start": 454, "end": 461, "id": 93, "annotation": null}, {"text": "of", "start": 462, "end": 464, "id": 94, "annotation": null}, {"text": "Yb3", "start": 465, "end": 468, "id": 95, "annotation": null}, {"text": "+", "start": 469, "end": 470, "id": 96, "annotation": null}, {"text": "ions", "start": 471, "end": 475, "id": 97, "annotation": null}, {"text": "is", "start": 476, "end": 478, "id": 98, "annotation": null}, {"text": "shown", "start": 479, "end": 484, "id": 99, "annotation": null}, {"text": "to", "start": 485, "end": 487, "id": 100, "annotation": null}, {"text": "be", "start": 488, "end": 490, "id": 101, "annotation": null}, {"text": "two", "start": 491, "end": 494, "id": 102, "annotation": null}, {"text": "step", "start": 495, "end": 499, "id": 103, "annotation": null}, {"text": "energy", "start": 500, "end": 506, "id": 104, "annotation": null}, {"text": "transfer", "start": 507, "end": 515, "id": 105, "annotation": null}, {"text": "from", "start": 516, "end": 520, "id": 106, "annotation": null}, {"text": "Pr3", "start": 521, "end": 524, "id": 107, "annotation": null}, {"text": "+", "start": 525, "end": 526, "id": 108, "annotation": null}, {"text": "through", "start": 527, "end": 534, "id": 109, "annotation": null}, {"text": "1", "start": 535, "end": 536, "id": 110, "annotation": null}, {"text": "G", "start": 537, "end": 538, "id": 111, "annotation": null}, {"text": "4", "start": 539, "end": 540, "id": 112, "annotation": null}, {"text": "multiplet", "start": 541, "end": 550, "id": 113, "annotation": null}, {"text": "by", "start": 551, "end": 553, "id": 114, "annotation": null}, {"text": "excitation", "start": 554, "end": 564, "id": 115, "annotation": null}, {"text": "and", "start": 565, "end": 568, "id": 116, "annotation": null}, {"text": "emission", "start": 569, "end": 577, "id": 117, "annotation": null}, {"text": "spectra", "start": 578, "end": 585, "id": 118, "annotation": null}, {"text": ".", "start": 586, "end": 587, "id": 119, "annotation": null}], [{"text": "The", "start": 588, "end": 591, "id": 120, "annotation": null}, {"text": "maximum", "start": 592, "end": 599, "id": 121, "annotation": null}, {"text": "total", "start": 600, "end": 605, "id": 122, "annotation": null}, {"text": "quantum", "start": 606, "end": 613, "id": 123, "annotation": null}, {"text": "efficiency", "start": 614, "end": 624, "id": 124, "annotation": null}, {"text": "reaches", "start": 625, "end": 632, "id": 125, "annotation": null}, {"text": "136.7", "start": 633, "end": 638, "id": 126, "annotation": null}, {"text": "%", "start": 639, "end": 640, "id": 127, "annotation": null}, {"text": "when", "start": 641, "end": 645, "id": 128, "annotation": null}, {"text": "the", "start": 646, "end": 649, "id": 129, "annotation": null}, {"text": "co", "start": 650, "end": 652, "id": 130, "annotation": null}, {"text": "-", "start": 653, "end": 654, "id": 131, "annotation": null}, {"text": "doped", "start": 655, "end": 660, "id": 132, "annotation": null}, {"text": "Yb3", "start": 661, "end": 664, "id": 133, "annotation": "DOPANT"}, {"text": "+", "start": 665, "end": 666, "id": 134, "annotation": "DOPANT"}, {"text": "mole", "start": 667, "end": 671, "id": 135, "annotation": "DOPMODQ"}, {"text": "concentration", "start": 672, "end": 685, "id": 136, "annotation": null}, {"text": "is", "start": 686, "end": 688, "id": 137, "annotation": null}, {"text": "5", "start": 689, "end": 690, "id": 138, "annotation": null}, {"text": "%", "start": 691, "end": 692, "id": 139, "annotation": "DOPMODQ"}, {"text": ".", "start": 693, "end": 694, "id": 140, "annotation": null}], [{"text": "The", "start": 695, "end": 698, "id": 141, "annotation": null}, {"text": "efficient", "start": 699, "end": 708, "id": 142, "annotation": null}, {"text": "down", "start": 709, "end": 713, "id": 143, "annotation": null}, {"text": "-", "start": 714, "end": 715, "id": 144, "annotation": null}, {"text": "conversion", "start": 716, "end": 726, "id": 145, "annotation": null}, {"text": "near", "start": 727, "end": 731, "id": 146, "annotation": null}, {"text": "infrared", "start": 732, "end": 740, "id": 147, "annotation": null}, {"text": "emission", "start": 741, "end": 749, "id": 148, "annotation": null}, {"text": "of", "start": 750, "end": 752, "id": 149, "annotation": null}, {"text": "Pr3+/Yb3", "start": 753, "end": 761, "id": 150, "annotation": "DOPANT"}, {"text": "+", "start": 762, "end": 763, "id": 151, "annotation": "DOPANT"}, {"text": "co", "start": 764, "end": 766, "id": 152, "annotation": null}, {"text": "-", "start": 767, "end": 768, "id": 153, "annotation": null}, {"text": "doped", "start": 769, "end": 774, "id": 154, "annotation": null}, {"text": "tellurate", "start": 775, "end": 784, "id": 155, "annotation": "BASEMAT"}, {"text": "glass", "start": 785, "end": 790, "id": 156, "annotation": null}, {"text": "has", "start": 791, "end": 794, "id": 157, "annotation": null}, {"text": "potential", "start": 795, "end": 804, "id": 158, "annotation": null}, {"text": "application", "start": 805, "end": 816, "id": 159, "annotation": null}, {"text": "in", "start": 817, "end": 819, "id": 160, "annotation": null}, {"text": "enhancing", "start": 820, "end": 829, "id": 161, "annotation": null}, {"text": "the", "start": 830, "end": 833, "id": 162, "annotation": null}, {"text": "conversion", "start": 834, "end": 844, "id": 163, "annotation": null}, {"text": "efficiency", "start": 845, "end": 855, "id": 164, "annotation": null}, {"text": "of", "start": 856, "end": 858, "id": 165, "annotation": null}, {"text": "crystalline", "start": 859, "end": 870, "id": 166, "annotation": null}, {"text": "silicon", "start": 871, "end": 878, "id": 167, "annotation": null}, {"text": "based", "start": 879, "end": 884, "id": 168, "annotation": null}, {"text": "solar", "start": 885, "end": 890, "id": 169, "annotation": null}, {"text": "cells", "start": 891, "end": 896, "id": 170, "annotation": null}, {"text": ".", "start": 897, "end": 898, "id": 171, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt3", "text": "A microwave absorption technique based on cavity perturbation theory is shown to be applicable for electrical conductivity measurements of both a small, single-crystal particle and finely divided powder samples when\u03c3 values fall in either the low (\u03c3<0.1 \u03a9\u22121 cm\u22121) or the intermediate (0.1 \u2264\u03c3\u2264 100 \u03a9\u22121 cm\u22121) conductivity region. The results here pertain to semiconductors in the latter region. If the skin depth of the material becomes significantly smaller than the sample dimension parallel to theE-field, an appreciable error can be introduced into the calculated conductivity values; however, this discrepancy is eliminated by correcting for the field attenuation associated with the penetration depth of the microwaves. A modification of this approach utilizing the skin depth allows a first-order correction to be applied to powder samples which results in the accurate measurement of absolute\u03c3 values, and results with doped Si powders are compared to\u03c3 values obtained from one small single particle using this microwave technique as well as reported DC\u03c3 values determined with single crystals. The use of this microwave absorption technique with small particles having high surface/volume ratios, such as catalyst supports and oxide catalysts, under controlled environments can provide fundamental information about adsorption and catalytic processes on such semiconductor surfaces. An application to a ZnO powder demonstrates this capability.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "microwave", "start": 2, "end": 11, "annotation": null}, {"text": "absorption", "start": 12, "end": 22, "annotation": null}, {"text": "technique", "start": 23, "end": 32, "annotation": null}, {"text": "based", "start": 33, "end": 38, "annotation": null}, {"text": "on", "start": 39, "end": 41, "annotation": null}, {"text": "cavity", "start": 42, "end": 48, "annotation": null}, {"text": "perturbation", "start": 49, "end": 61, "annotation": null}, {"text": "theory", "start": 62, "end": 68, "annotation": null}, {"text": "is", "start": 69, "end": 71, "annotation": null}, {"text": "shown", "start": 72, "end": 77, "annotation": null}, {"text": "to", "start": 78, "end": 80, "annotation": null}, {"text": "be", "start": 81, "end": 83, "annotation": null}, {"text": "applicable", "start": 84, "end": 94, "annotation": null}, {"text": "for", "start": 95, "end": 98, "annotation": null}, {"text": "electrical", "start": 99, "end": 109, "annotation": null}, {"text": "conductivity", "start": 110, "end": 122, "annotation": null}, {"text": "measurements", "start": 123, "end": 135, "annotation": null}, {"text": "of", "start": 136, "end": 138, "annotation": null}, {"text": "both", "start": 139, "end": 143, "annotation": null}, {"text": "a", "start": 144, "end": 145, "annotation": null}, {"text": "small", "start": 146, "end": 151, "annotation": null}, {"text": ",", "start": 151, "end": 152, "annotation": null}, {"text": "single", "start": 153, "end": 159, "annotation": null}, {"text": "-", "start": 159, "end": 160, "annotation": null}, {"text": "crystal", "start": 160, "end": 167, "annotation": null}, {"text": "particle", "start": 168, "end": 176, "annotation": null}, {"text": "and", "start": 177, "end": 180, "annotation": null}, {"text": "finely", "start": 181, "end": 187, "annotation": null}, {"text": "divided", "start": 188, "end": 195, "annotation": null}, {"text": "powder", "start": 196, "end": 202, "annotation": null}, {"text": "samples", "start": 203, "end": 210, "annotation": null}, {"text": "when\u03c3", "start": 211, "end": 216, "annotation": null}, {"text": "values", "start": 217, "end": 223, "annotation": null}, {"text": "fall", "start": 224, "end": 228, "annotation": null}, {"text": "in", "start": 229, "end": 231, "annotation": null}, {"text": "either", "start": 232, "end": 238, "annotation": null}, {"text": "the", "start": 239, "end": 242, "annotation": null}, {"text": "low", "start": 243, "end": 246, "annotation": null}, {"text": "(", "start": 247, "end": 248, "annotation": null}, {"text": "\u03c3", "start": 248, "end": 249, "annotation": null}, {"text": "<", "start": 249, "end": 250, "annotation": null}, {"text": "0.1", "start": 250, "end": 253, "annotation": null}, {"text": "\u03a9\u22121", "start": 254, "end": 257, "annotation": null}, {"text": "cm\u22121", "start": 258, "end": 262, "annotation": null}, {"text": ")", "start": 262, "end": 263, "annotation": null}, {"text": "or", "start": 264, "end": 266, "annotation": null}, {"text": "the", "start": 267, "end": 270, "annotation": null}, {"text": "intermediate", "start": 271, "end": 283, "annotation": null}, {"text": "(", "start": 284, "end": 285, "annotation": null}, {"text": "0.1", "start": 285, "end": 288, "annotation": null}, {"text": "\u2264", "start": 289, "end": 290, "annotation": null}, {"text": "\u03c3", "start": 290, "end": 291, "annotation": null}, {"text": "\u2264", "start": 291, "end": 292, "annotation": null}, {"text": "100", "start": 293, "end": 296, "annotation": null}, {"text": "\u03a9\u22121", "start": 297, "end": 300, "annotation": null}, {"text": "cm\u22121", "start": 301, "end": 305, "annotation": null}, {"text": ")", "start": 305, "end": 306, "annotation": null}, {"text": "conductivity", "start": 307, "end": 319, "annotation": null}, {"text": "region", "start": 320, "end": 326, "annotation": null}, {"text": ".", "start": 326, "end": 327, "annotation": null}], [{"text": "The", "start": 328, "end": 331, "annotation": null}, {"text": "results", "start": 332, "end": 339, "annotation": null}, {"text": "here", "start": 340, "end": 344, "annotation": null}, {"text": "pertain", "start": 345, "end": 352, "annotation": null}, {"text": "to", "start": 353, "end": 355, "annotation": null}, {"text": "semiconductors", "start": 356, "end": 370, "annotation": null}, {"text": "in", "start": 371, "end": 373, "annotation": null}, {"text": "the", "start": 374, "end": 377, "annotation": null}, {"text": "latter", "start": 378, "end": 384, "annotation": null}, {"text": "region", "start": 385, "end": 391, "annotation": null}, {"text": ".", "start": 391, "end": 392, "annotation": null}], [{"text": "If", "start": 393, "end": 395, "annotation": null}, {"text": "the", "start": 396, "end": 399, "annotation": null}, {"text": "skin", "start": 400, "end": 404, "annotation": null}, {"text": "depth", "start": 405, "end": 410, "annotation": null}, {"text": "of", "start": 411, "end": 413, "annotation": null}, {"text": "the", "start": 414, "end": 417, "annotation": null}, {"text": "material", "start": 418, "end": 426, "annotation": null}, {"text": "becomes", "start": 427, "end": 434, "annotation": null}, {"text": "significantly", "start": 435, "end": 448, "annotation": null}, {"text": "smaller", "start": 449, "end": 456, "annotation": null}, {"text": "than", "start": 457, "end": 461, "annotation": null}, {"text": "the", "start": 462, "end": 465, "annotation": null}, {"text": "sample", "start": 466, "end": 472, "annotation": null}, {"text": "dimension", "start": 473, "end": 482, "annotation": null}, {"text": "parallel", "start": 483, "end": 491, "annotation": null}, {"text": "to", "start": 492, "end": 494, "annotation": null}, {"text": "theE", "start": 495, "end": 499, "annotation": null}, {"text": "-", "start": 499, "end": 500, "annotation": null}, {"text": "field", "start": 500, "end": 505, "annotation": null}, {"text": ",", "start": 505, "end": 506, "annotation": null}, {"text": "an", "start": 507, "end": 509, "annotation": null}, {"text": "appreciable", "start": 510, "end": 521, "annotation": null}, {"text": "error", "start": 522, "end": 527, "annotation": null}, {"text": "can", "start": 528, "end": 531, "annotation": null}, {"text": "be", "start": 532, "end": 534, "annotation": null}, {"text": "introduced", "start": 535, "end": 545, "annotation": null}, {"text": "into", "start": 546, "end": 550, "annotation": null}, {"text": "the", "start": 551, "end": 554, "annotation": null}, {"text": "calculated", "start": 555, "end": 565, "annotation": null}, {"text": "conductivity", "start": 566, "end": 578, "annotation": null}, {"text": "values", "start": 579, "end": 585, "annotation": null}, {"text": ";", "start": 585, "end": 586, "annotation": null}, {"text": "however", "start": 587, "end": 594, "annotation": null}, {"text": ",", "start": 594, "end": 595, "annotation": null}, {"text": "this", "start": 596, "end": 600, "annotation": null}, {"text": "discrepancy", "start": 601, "end": 612, "annotation": null}, {"text": "is", "start": 613, "end": 615, "annotation": null}, {"text": "eliminated", "start": 616, "end": 626, "annotation": null}, {"text": "by", "start": 627, "end": 629, "annotation": null}, {"text": "correcting", "start": 630, "end": 640, "annotation": null}, {"text": "for", "start": 641, "end": 644, "annotation": null}, {"text": "the", "start": 645, "end": 648, "annotation": null}, {"text": "field", "start": 649, "end": 654, "annotation": null}, {"text": "attenuation", "start": 655, "end": 666, "annotation": null}, {"text": "associated", "start": 667, "end": 677, "annotation": null}, {"text": "with", "start": 678, "end": 682, "annotation": null}, {"text": "the", "start": 683, "end": 686, "annotation": null}, {"text": "penetration", "start": 687, "end": 698, "annotation": null}, {"text": "depth", "start": 699, "end": 704, "annotation": null}, {"text": "of", "start": 705, "end": 707, "annotation": null}, {"text": "the", "start": 708, "end": 711, "annotation": null}, {"text": "microwaves", "start": 712, "end": 722, "annotation": null}, {"text": ".", "start": 722, "end": 723, "annotation": null}], [{"text": "A", "start": 724, "end": 725, "annotation": null}, {"text": "modification", "start": 726, "end": 738, "annotation": null}, {"text": "of", "start": 739, "end": 741, "annotation": null}, {"text": "this", "start": 742, "end": 746, "annotation": null}, {"text": "approach", "start": 747, "end": 755, "annotation": null}, {"text": "utilizing", "start": 756, "end": 765, "annotation": null}, {"text": "the", "start": 766, "end": 769, "annotation": null}, {"text": "skin", "start": 770, "end": 774, "annotation": null}, {"text": "depth", "start": 775, "end": 780, "annotation": null}, {"text": "allows", "start": 781, "end": 787, "annotation": null}, {"text": "a", "start": 788, "end": 789, "annotation": null}, {"text": "first", "start": 790, "end": 795, "annotation": null}, {"text": "-", "start": 795, "end": 796, "annotation": null}, {"text": "order", "start": 796, "end": 801, "annotation": null}, {"text": "correction", "start": 802, "end": 812, "annotation": null}, {"text": "to", "start": 813, "end": 815, "annotation": null}, {"text": "be", "start": 816, "end": 818, "annotation": null}, {"text": "applied", "start": 819, "end": 826, "annotation": null}, {"text": "to", "start": 827, "end": 829, "annotation": null}, {"text": "powder", "start": 830, "end": 836, "annotation": null}, {"text": "samples", "start": 837, "end": 844, "annotation": null}, {"text": "which", "start": 845, "end": 850, "annotation": null}, {"text": "results", "start": 851, "end": 858, "annotation": null}, {"text": "in", "start": 859, "end": 861, "annotation": null}, {"text": "the", "start": 862, "end": 865, "annotation": null}, {"text": "accurate", "start": 866, "end": 874, "annotation": null}, {"text": "measurement", "start": 875, "end": 886, "annotation": null}, {"text": "of", "start": 887, "end": 889, "annotation": null}, {"text": "absolute\u03c3", "start": 890, "end": 899, "annotation": null}, {"text": "values", "start": 900, "end": 906, "annotation": null}, {"text": ",", "start": 906, "end": 907, "annotation": null}, {"text": "and", "start": 908, "end": 911, "annotation": null}, {"text": "results", "start": 912, "end": 919, "annotation": null}, {"text": "with", "start": 920, "end": 924, "annotation": null}, {"text": "doped", "start": 925, "end": 930, "annotation": null}, {"text": "Si", "start": 931, "end": 933, "annotation": "BASEMAT"}, {"text": "powders", "start": 934, "end": 941, "annotation": "BASEMAT"}, {"text": "are", "start": 942, "end": 945, "annotation": null}, {"text": "compared", "start": 946, "end": 954, "annotation": null}, {"text": "to\u03c3", "start": 955, "end": 958, "annotation": null}, {"text": "values", "start": 959, "end": 965, "annotation": null}, {"text": "obtained", "start": 966, "end": 974, "annotation": null}, {"text": "from", "start": 975, "end": 979, "annotation": null}, {"text": "one", "start": 980, "end": 983, "annotation": null}, {"text": "small", "start": 984, "end": 989, "annotation": null}, {"text": "single", "start": 990, "end": 996, "annotation": null}, {"text": "particle", "start": 997, "end": 1005, "annotation": null}, {"text": "using", "start": 1006, "end": 1011, "annotation": null}, {"text": "this", "start": 1012, "end": 1016, "annotation": null}, {"text": "microwave", "start": 1017, "end": 1026, "annotation": null}, {"text": "technique", "start": 1027, "end": 1036, "annotation": null}, {"text": "as", "start": 1037, "end": 1039, "annotation": null}, {"text": "well", "start": 1040, "end": 1044, "annotation": null}, {"text": "as", "start": 1045, "end": 1047, "annotation": null}, {"text": "reported", "start": 1048, "end": 1056, "annotation": null}, {"text": "DC\u03c3", "start": 1057, "end": 1060, "annotation": null}, {"text": "values", "start": 1061, "end": 1067, "annotation": null}, {"text": "determined", "start": 1068, "end": 1078, "annotation": null}, {"text": "with", "start": 1079, "end": 1083, "annotation": null}, {"text": "single", "start": 1084, "end": 1090, "annotation": null}, {"text": "crystals", "start": 1091, "end": 1099, "annotation": null}, {"text": ".", "start": 1099, "end": 1100, "annotation": null}], [{"text": "The", "start": 1101, "end": 1104, "annotation": null}, {"text": "use", "start": 1105, "end": 1108, "annotation": null}, {"text": "of", "start": 1109, "end": 1111, "annotation": null}, {"text": "this", "start": 1112, "end": 1116, "annotation": null}, {"text": "microwave", "start": 1117, "end": 1126, "annotation": null}, {"text": "absorption", "start": 1127, "end": 1137, "annotation": null}, {"text": "technique", "start": 1138, "end": 1147, "annotation": null}, {"text": "with", "start": 1148, "end": 1152, "annotation": null}, {"text": "small", "start": 1153, "end": 1158, "annotation": null}, {"text": "particles", "start": 1159, "end": 1168, "annotation": null}, {"text": "having", "start": 1169, "end": 1175, "annotation": null}, {"text": "high", "start": 1176, "end": 1180, "annotation": null}, {"text": "surface", "start": 1181, "end": 1188, "annotation": null}, {"text": "/", "start": 1188, "end": 1189, "annotation": null}, {"text": "volume", "start": 1189, "end": 1195, "annotation": null}, {"text": "ratios", "start": 1196, "end": 1202, "annotation": null}, {"text": ",", "start": 1202, "end": 1203, "annotation": null}, {"text": "such", "start": 1204, "end": 1208, "annotation": null}, {"text": "as", "start": 1209, "end": 1211, "annotation": null}, {"text": "catalyst", "start": 1212, "end": 1220, "annotation": null}, {"text": "supports", "start": 1221, "end": 1229, "annotation": null}, {"text": "and", "start": 1230, "end": 1233, "annotation": null}, {"text": "oxide", "start": 1234, "end": 1239, "annotation": null}, {"text": "catalysts", "start": 1240, "end": 1249, "annotation": null}, {"text": ",", "start": 1249, "end": 1250, "annotation": null}, {"text": "under", "start": 1251, "end": 1256, "annotation": null}, {"text": "controlled", "start": 1257, "end": 1267, "annotation": null}, {"text": "environments", "start": 1268, "end": 1280, "annotation": null}, {"text": "can", "start": 1281, "end": 1284, "annotation": null}, {"text": "provide", "start": 1285, "end": 1292, "annotation": null}, {"text": "fundamental", "start": 1293, "end": 1304, "annotation": null}, {"text": "information", "start": 1305, "end": 1316, "annotation": null}, {"text": "about", "start": 1317, "end": 1322, "annotation": null}, {"text": "adsorption", "start": 1323, "end": 1333, "annotation": null}, {"text": "and", "start": 1334, "end": 1337, "annotation": null}, {"text": "catalytic", "start": 1338, "end": 1347, "annotation": null}, {"text": "processes", "start": 1348, "end": 1357, "annotation": null}, {"text": "on", "start": 1358, "end": 1360, "annotation": null}, {"text": "such", "start": 1361, "end": 1365, "annotation": null}, {"text": "semiconductor", "start": 1366, "end": 1379, "annotation": null}, {"text": "surfaces", "start": 1380, "end": 1388, "annotation": null}, {"text": ".", "start": 1388, "end": 1389, "annotation": null}], [{"text": "An", "start": 1390, "end": 1392, "annotation": null}, {"text": "application", "start": 1393, "end": 1404, "annotation": null}, {"text": "to", "start": 1405, "end": 1407, "annotation": null}, {"text": "a", "start": 1408, "end": 1409, "annotation": null}, {"text": "ZnO", "start": 1410, "end": 1413, "annotation": null}, {"text": "powder", "start": 1414, "end": 1420, "annotation": null}, {"text": "demonstrates", "start": 1421, "end": 1433, "annotation": null}, {"text": "this", "start": 1434, "end": 1438, "annotation": null}, {"text": "capability", "start": 1439, "end": 1449, "annotation": null}, {"text": ".", "start": 1449, "end": 1450, "annotation": null}]]} +{"remark": "doping_annt1", "text": "The thermoelectric properties of perovskite-type Sr1\u2212xLaxSnO3 ceramics with x=0.01\u20130.05 were evaluated from the Seebeck coefficient S, electrical conductivity \u03c3, and thermal conductivity \u03ba measured at high temperatures. The La-doped ceramics were n-type semiconductors exhibiting thermally activated electrical conduction behaviors in the temperature range of 473\u20131073K. Eelectron carriers were introduced into the conduction band from doped La atoms up to x=0.03, which was the solubility limit of La at Sr site. The temperature dependence of the \u03ba values for the ceramics was unaffected by both the La content and the microstructures. Estimations of the electronic thermal conductivities by the Wiedemann-Franz law revealed that the phonon thermal conductivities were dominant for all ceramics. The dimensionless figure of merit ZT increased with increasing temperature for all ceramics and reached 0.02\u20130.05 at 1073K. In contrast to cubic Ba1\u2212xLaxSnO3 ceramics, bending of the Sn\u2013O\u2013Sn bonds due to octahedral tilting distortion in Sr1\u2212xLaxSnO3 lowered the electron mobility, decreasing the power factor S2\u03c3 and ZT values, although it effectively reduced the phonon mean free path, decreasing the \u03ba values.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "The", "start": 0, "end": 3, "annotation": null}, {"text": "thermoelectric", "start": 4, "end": 18, "annotation": null}, {"text": "properties", "start": 19, "end": 29, "annotation": null}, {"text": "of", "start": 30, "end": 32, "annotation": null}, {"text": "perovskite", "start": 33, "end": 43, "annotation": null}, {"text": "-", "start": 43, "end": 44, "annotation": null}, {"text": "type", "start": 44, "end": 48, "annotation": null}, {"text": "Sr1\u2212xLaxSnO3", "start": 49, "end": 61, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 62, "end": 70, "annotation": null}, {"text": "with", "start": 71, "end": 75, "annotation": null}, {"text": "x", "start": 76, "end": 77, "annotation": null}, {"text": "=", "start": 77, "end": 78, "annotation": null}, {"text": "0.01", "start": 78, "end": 82, "annotation": null}, {"text": "\u2013", "start": 82, "end": 83, "annotation": null}, {"text": "0.05", "start": 83, "end": 87, "annotation": null}, {"text": "were", "start": 88, "end": 92, "annotation": null}, {"text": "evaluated", "start": 93, "end": 102, "annotation": null}, {"text": "from", "start": 103, "end": 107, "annotation": null}, {"text": "the", "start": 108, "end": 111, "annotation": null}, {"text": "Seebeck", "start": 112, "end": 119, "annotation": null}, {"text": "coefficient", "start": 120, "end": 131, "annotation": null}, {"text": "S", "start": 132, "end": 133, "annotation": null}, {"text": ",", "start": 133, "end": 134, "annotation": null}, {"text": "electrical", "start": 135, "end": 145, "annotation": null}, {"text": "conductivity", "start": 146, "end": 158, "annotation": null}, {"text": "\u03c3", "start": 159, "end": 160, "annotation": null}, {"text": ",", "start": 160, "end": 161, "annotation": null}, {"text": "and", "start": 162, "end": 165, "annotation": null}, {"text": "thermal", "start": 166, "end": 173, "annotation": null}, {"text": "conductivity", "start": 174, "end": 186, "annotation": null}, {"text": "\u03ba", "start": 187, "end": 188, "annotation": null}, {"text": "measured", "start": 189, "end": 197, "annotation": null}, {"text": "at", "start": 198, "end": 200, "annotation": null}, {"text": "high", "start": 201, "end": 205, "annotation": null}, {"text": "temperatures", "start": 206, "end": 218, "annotation": null}, {"text": ".", "start": 218, "end": 219, "annotation": null}], [{"text": "The", "start": 220, "end": 223, "annotation": null}, {"text": "La", "start": 224, "end": 226, "annotation": "DOPANT"}, {"text": "-", "start": 226, "end": 227, "annotation": null}, {"text": "doped", "start": 227, "end": 232, "annotation": null}, {"text": "ceramics", "start": 233, "end": 241, "annotation": "BASEMAT"}, {"text": "were", "start": 242, "end": 246, "annotation": null}, {"text": "n", "start": 247, "end": 248, "annotation": null}, {"text": "-", "start": 248, "end": 249, "annotation": null}, {"text": "type", "start": 249, "end": 253, "annotation": null}, {"text": "semiconductors", "start": 254, "end": 268, "annotation": null}, {"text": "exhibiting", "start": 269, "end": 279, "annotation": null}, {"text": "thermally", "start": 280, "end": 289, "annotation": null}, {"text": "activated", "start": 290, "end": 299, "annotation": null}, {"text": "electrical", "start": 300, "end": 310, "annotation": null}, {"text": "conduction", "start": 311, "end": 321, "annotation": null}, {"text": "behaviors", "start": 322, "end": 331, "annotation": null}, {"text": "in", "start": 332, "end": 334, "annotation": null}, {"text": "the", "start": 335, "end": 338, "annotation": null}, {"text": "temperature", "start": 339, "end": 350, "annotation": null}, {"text": "range", "start": 351, "end": 356, "annotation": null}, {"text": "of", "start": 357, "end": 359, "annotation": null}, {"text": "473", "start": 360, "end": 363, "annotation": null}, {"text": "\u2013", "start": 363, "end": 364, "annotation": null}, {"text": "1073K", "start": 364, "end": 369, "annotation": null}, {"text": ".", "start": 369, "end": 370, "annotation": null}], [{"text": "Eelectron", "start": 371, "end": 380, "annotation": null}, {"text": "carriers", "start": 381, "end": 389, "annotation": null}, {"text": "were", "start": 390, "end": 394, "annotation": null}, {"text": "introduced", "start": 395, "end": 405, "annotation": null}, {"text": "into", "start": 406, "end": 410, "annotation": null}, {"text": "the", "start": 411, "end": 414, "annotation": null}, {"text": "conduction", "start": 415, "end": 425, "annotation": null}, {"text": "band", "start": 426, "end": 430, "annotation": null}, {"text": "from", "start": 431, "end": 435, "annotation": null}, {"text": "doped", "start": 436, "end": 441, "annotation": null}, {"text": "La", "start": 442, "end": 444, "annotation": "DOPANT"}, {"text": "atoms", "start": 445, "end": 450, "annotation": null}, {"text": "up", "start": 451, "end": 453, "annotation": null}, {"text": "to", "start": 454, "end": 456, "annotation": null}, {"text": "x", "start": 457, "end": 458, "annotation": null}, {"text": "=", "start": 458, "end": 459, "annotation": null}, {"text": "0.03", "start": 459, "end": 463, "annotation": null}, {"text": ",", "start": 463, "end": 464, "annotation": null}, {"text": "which", "start": 465, "end": 470, "annotation": null}, {"text": "was", "start": 471, "end": 474, "annotation": null}, {"text": "the", "start": 475, "end": 478, "annotation": null}, {"text": "solubility", "start": 479, "end": 489, "annotation": null}, {"text": "limit", "start": 490, "end": 495, "annotation": null}, {"text": "of", "start": 496, "end": 498, "annotation": null}, {"text": "La", "start": 499, "end": 501, "annotation": null}, {"text": "at", "start": 502, "end": 504, "annotation": null}, {"text": "Sr", "start": 505, "end": 507, "annotation": null}, {"text": "site", "start": 508, "end": 512, "annotation": null}, {"text": ".", "start": 512, "end": 513, "annotation": null}], [{"text": "The", "start": 514, "end": 517, "annotation": null}, {"text": "temperature", "start": 518, "end": 529, "annotation": null}, {"text": "dependence", "start": 530, "end": 540, "annotation": null}, {"text": "of", "start": 541, "end": 543, "annotation": null}, {"text": "the", "start": 544, "end": 547, "annotation": null}, {"text": "\u03ba", "start": 548, "end": 549, "annotation": null}, {"text": "values", "start": 550, "end": 556, "annotation": null}, {"text": "for", "start": 557, "end": 560, "annotation": null}, {"text": "the", "start": 561, "end": 564, "annotation": null}, {"text": "ceramics", "start": 565, "end": 573, "annotation": "BASEMAT"}, {"text": "was", "start": 574, "end": 577, "annotation": null}, {"text": "unaffected", "start": 578, "end": 588, "annotation": null}, {"text": "by", "start": 589, "end": 591, "annotation": null}, {"text": "both", "start": 592, "end": 596, "annotation": null}, {"text": "the", "start": 597, "end": 600, "annotation": null}, {"text": "La", "start": 601, "end": 603, "annotation": "DOPANT"}, {"text": "content", "start": 604, "end": 611, "annotation": null}, {"text": "and", "start": 612, "end": 615, "annotation": null}, {"text": "the", "start": 616, "end": 619, "annotation": null}, {"text": "microstructures", "start": 620, "end": 635, "annotation": null}, {"text": ".", "start": 635, "end": 636, "annotation": null}], [{"text": "Estimations", "start": 637, "end": 648, "annotation": null}, {"text": "of", "start": 649, "end": 651, "annotation": null}, {"text": "the", "start": 652, "end": 655, "annotation": null}, {"text": "electronic", "start": 656, "end": 666, "annotation": null}, {"text": "thermal", "start": 667, "end": 674, "annotation": null}, {"text": "conductivities", "start": 675, "end": 689, "annotation": null}, {"text": "by", "start": 690, "end": 692, "annotation": null}, {"text": "the", "start": 693, "end": 696, "annotation": null}, {"text": "Wiedemann", "start": 697, "end": 706, "annotation": null}, {"text": "-", "start": 706, "end": 707, "annotation": null}, {"text": "Franz", "start": 707, "end": 712, "annotation": null}, {"text": "law", "start": 713, "end": 716, "annotation": null}, {"text": "revealed", "start": 717, "end": 725, "annotation": null}, {"text": "that", "start": 726, "end": 730, "annotation": null}, {"text": "the", "start": 731, "end": 734, "annotation": null}, {"text": "phonon", "start": 735, "end": 741, "annotation": null}, {"text": "thermal", "start": 742, "end": 749, "annotation": null}, {"text": "conductivities", "start": 750, "end": 764, "annotation": null}, {"text": "were", "start": 765, "end": 769, "annotation": null}, {"text": "dominant", "start": 770, "end": 778, "annotation": null}, {"text": "for", "start": 779, "end": 782, "annotation": null}, {"text": "all", "start": 783, "end": 786, "annotation": null}, {"text": "ceramics", "start": 787, "end": 795, "annotation": null}, {"text": ".", "start": 795, "end": 796, "annotation": null}], [{"text": "The", "start": 797, "end": 800, "annotation": null}, {"text": "dimensionless", "start": 801, "end": 814, "annotation": null}, {"text": "figure", "start": 815, "end": 821, "annotation": null}, {"text": "of", "start": 822, "end": 824, "annotation": null}, {"text": "merit", "start": 825, "end": 830, "annotation": null}, {"text": "ZT", "start": 831, "end": 833, "annotation": null}, {"text": "increased", "start": 834, "end": 843, "annotation": null}, {"text": "with", "start": 844, "end": 848, "annotation": null}, {"text": "increasing", "start": 849, "end": 859, "annotation": null}, {"text": "temperature", "start": 860, "end": 871, "annotation": null}, {"text": "for", "start": 872, "end": 875, "annotation": null}, {"text": "all", "start": 876, "end": 879, "annotation": null}, {"text": "ceramics", "start": 880, "end": 888, "annotation": null}, {"text": "and", "start": 889, "end": 892, "annotation": null}, {"text": "reached", "start": 893, "end": 900, "annotation": null}, {"text": "0.02", "start": 901, "end": 905, "annotation": null}, {"text": "\u2013", "start": 905, "end": 906, "annotation": null}, {"text": "0.05", "start": 906, "end": 910, "annotation": null}, {"text": "at", "start": 911, "end": 913, "annotation": null}, {"text": "1073K", "start": 914, "end": 919, "annotation": null}, {"text": ".", "start": 919, "end": 920, "annotation": null}], [{"text": "In", "start": 921, "end": 923, "annotation": null}, {"text": "contrast", "start": 924, "end": 932, "annotation": null}, {"text": "to", "start": 933, "end": 935, "annotation": null}, {"text": "cubic", "start": 936, "end": 941, "annotation": null}, {"text": "Ba1\u2212xLaxSnO3", "start": 942, "end": 954, "annotation": null}, {"text": "ceramics", "start": 955, "end": 963, "annotation": null}, {"text": ",", "start": 963, "end": 964, "annotation": null}, {"text": "bending", "start": 965, "end": 972, "annotation": null}, {"text": "of", "start": 973, "end": 975, "annotation": null}, {"text": "the", "start": 976, "end": 979, "annotation": null}, {"text": "Sn", "start": 980, "end": 982, "annotation": null}, {"text": "\u2013", "start": 982, "end": 983, "annotation": null}, {"text": "O", "start": 983, "end": 984, "annotation": null}, {"text": "\u2013", "start": 984, "end": 985, "annotation": null}, {"text": "Sn", "start": 985, "end": 987, "annotation": null}, {"text": "bonds", "start": 988, "end": 993, "annotation": null}, {"text": "due", "start": 994, "end": 997, "annotation": null}, {"text": "to", "start": 998, "end": 1000, "annotation": null}, {"text": "octahedral", "start": 1001, "end": 1011, "annotation": null}, {"text": "tilting", "start": 1012, "end": 1019, "annotation": null}, {"text": "distortion", "start": 1020, "end": 1030, "annotation": null}, {"text": "in", "start": 1031, "end": 1033, "annotation": null}, {"text": "Sr1\u2212xLaxSnO3", "start": 1034, "end": 1046, "annotation": null}, {"text": "lowered", "start": 1047, "end": 1054, "annotation": null}, {"text": "the", "start": 1055, "end": 1058, "annotation": null}, {"text": "electron", "start": 1059, "end": 1067, "annotation": null}, {"text": "mobility", "start": 1068, "end": 1076, "annotation": null}, {"text": ",", "start": 1076, "end": 1077, "annotation": null}, {"text": "decreasing", "start": 1078, "end": 1088, "annotation": null}, {"text": "the", "start": 1089, "end": 1092, "annotation": null}, {"text": "power", "start": 1093, "end": 1098, "annotation": null}, {"text": "factor", "start": 1099, "end": 1105, "annotation": null}, {"text": "S2\u03c3", "start": 1106, "end": 1109, "annotation": null}, {"text": "and", "start": 1110, "end": 1113, "annotation": null}, {"text": "ZT", "start": 1114, "end": 1116, "annotation": null}, {"text": "values", "start": 1117, "end": 1123, "annotation": null}, {"text": ",", "start": 1123, "end": 1124, "annotation": null}, {"text": "although", "start": 1125, "end": 1133, "annotation": null}, {"text": "it", "start": 1134, "end": 1136, "annotation": null}, {"text": "effectively", "start": 1137, "end": 1148, "annotation": null}, {"text": "reduced", "start": 1149, "end": 1156, "annotation": null}, {"text": "the", "start": 1157, "end": 1160, "annotation": null}, {"text": "phonon", "start": 1161, "end": 1167, "annotation": null}, {"text": "mean", "start": 1168, "end": 1172, "annotation": null}, {"text": "free", "start": 1173, "end": 1177, "annotation": null}, {"text": "path", "start": 1178, "end": 1182, "annotation": null}, {"text": ",", "start": 1182, "end": 1183, "annotation": null}, {"text": "decreasing", "start": 1184, "end": 1194, "annotation": null}, {"text": "the", "start": 1195, "end": 1198, "annotation": null}, {"text": "\u03ba", "start": 1199, "end": 1200, "annotation": null}, {"text": "values", "start": 1201, "end": 1207, "annotation": null}, {"text": ".", "start": 1207, "end": 1208, "annotation": null}]], "meta": {"doi": "10.1016/j.ceramint.2017.04.136"}} +{"remark": "doping_annt2", "text": "Boron-doped graphite (3.5% B in C (S2508, Carbon Lorraine), 20% B in C (GB120, Toyo Tanso)) and titanium-doped graphite (2.1% Ti in C (RGTi, supplied by Efremov Institute, St. Petersburg)) have been tested in TEXTOR as a single main limiter for typically 20\u201340 discharges. Convective power loads up to about 30 MW/m2 led to maximum surface temperatures between 2400\u20132800\u00b0C. Severe cracking has occurred on the 20% boron-doped graphite material showing that it is not applicable as plasma facing material under high heat loads. Some large cracks have also been observed on the RGTi limiter, probably caused by the strong anisotropy of the material. The 3.5% boron-doped material shows similar thermomechanical properties as a usual fine-grain graphite (EK98). Large thermal sublimation of boron and titanium has been observed starting at surface temperatures of about 2000\u00b0C and 1800\u00b0C, respectively. Very thick layers of redeposited boron or titanium (> 1 \u03bcm) were formed near the areas of high sublimation. Besides the doping species (boron, titanium) these materials sublime various (metallic) impurities at elevated temperatures. No significant increase of the emitted carbon flux has been observed below surface temperatures of 2000\u00b0C showing that radiation enhanced sublimation (RES) is significantly reduced under these conditions compared with expected values extrapolated from beam experiments.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Boron", "start": 0, "end": 5, "annotation": "DOPANT"}, {"text": "-", "start": 5, "end": 6, "annotation": null}, {"text": "doped", "start": 6, "end": 11, "annotation": null}, {"text": "graphite", "start": 12, "end": 20, "annotation": "BASEMAT"}, {"text": "(", "start": 21, "end": 22, "annotation": null}, {"text": "3.5", "start": 22, "end": 25, "annotation": "DOPMODQ"}, {"text": "%", "start": 25, "end": 26, "annotation": "DOPMODQ"}, {"text": "B", "start": 27, "end": 28, "annotation": "DOPANT"}, {"text": "in", "start": 29, "end": 31, "annotation": null}, {"text": "C", "start": 32, "end": 33, "annotation": "BASEMAT"}, {"text": "(", "start": 34, "end": 35, "annotation": null}, {"text": "S2508", "start": 35, "end": 40, "annotation": null}, {"text": ",", "start": 40, "end": 41, "annotation": null}, {"text": "Carbon", "start": 42, "end": 48, "annotation": null}, {"text": "Lorraine", "start": 49, "end": 57, "annotation": null}, {"text": ")", "start": 57, "end": 58, "annotation": null}, {"text": ",", "start": 58, "end": 59, "annotation": null}, {"text": "20", "start": 60, "end": 62, "annotation": "DOPMODQ"}, {"text": "%", "start": 62, "end": 63, "annotation": "DOPMODQ"}, {"text": "B", "start": 64, "end": 65, "annotation": "DOPANT"}, {"text": "in", "start": 66, "end": 68, "annotation": null}, {"text": "C", "start": 69, "end": 70, "annotation": "BASEMAT"}, {"text": "(", "start": 71, "end": 72, "annotation": null}, {"text": "GB120", "start": 72, "end": 77, "annotation": null}, {"text": ",", "start": 77, "end": 78, "annotation": null}, {"text": "Toyo", "start": 79, "end": 83, "annotation": null}, {"text": "Tanso", "start": 84, "end": 89, "annotation": null}, {"text": ")", "start": 89, "end": 90, "annotation": null}, {"text": ")", "start": 90, "end": 91, "annotation": null}, {"text": "and", "start": 92, "end": 95, "annotation": null}, {"text": "titanium", "start": 96, "end": 104, "annotation": "DOPANT"}, {"text": "-", "start": 104, "end": 105, "annotation": null}, {"text": "doped", "start": 105, "end": 110, "annotation": null}, {"text": "graphite", "start": 111, "end": 119, "annotation": "BASEMAT"}, {"text": "(", "start": 120, "end": 121, "annotation": null}, {"text": "2.1", "start": 121, "end": 124, "annotation": "DOPMODQ"}, {"text": "%", "start": 124, "end": 125, "annotation": "DOPMODQ"}, {"text": "Ti", "start": 126, "end": 128, "annotation": "DOPANT"}, {"text": "in", "start": 129, "end": 131, "annotation": null}, {"text": "C", "start": 132, "end": 133, "annotation": "BASEMAT"}, {"text": "(", "start": 134, "end": 135, "annotation": null}, {"text": "RGTi", "start": 135, "end": 139, "annotation": null}, {"text": ",", "start": 139, "end": 140, "annotation": null}, {"text": "supplied", "start": 141, "end": 149, "annotation": null}, {"text": "by", "start": 150, "end": 152, "annotation": null}, {"text": "Efremov", "start": 153, "end": 160, "annotation": null}, {"text": "Institute", "start": 161, "end": 170, "annotation": null}, {"text": ",", "start": 170, "end": 171, "annotation": null}, {"text": "St.", "start": 172, "end": 175, "annotation": null}, {"text": "Petersburg", "start": 176, "end": 186, "annotation": null}, {"text": ")", "start": 186, "end": 187, "annotation": null}, {"text": ")", "start": 187, "end": 188, "annotation": null}, {"text": "have", "start": 189, "end": 193, "annotation": null}, {"text": "been", "start": 194, "end": 198, "annotation": null}, {"text": "tested", "start": 199, "end": 205, "annotation": null}, {"text": "in", "start": 206, "end": 208, "annotation": null}, {"text": "TEXTOR", "start": 209, "end": 215, "annotation": null}, {"text": "as", "start": 216, "end": 218, "annotation": null}, {"text": "a", "start": 219, "end": 220, "annotation": null}, {"text": "single", "start": 221, "end": 227, "annotation": null}, {"text": "main", "start": 228, "end": 232, "annotation": null}, {"text": "limiter", "start": 233, "end": 240, "annotation": null}, {"text": "for", "start": 241, "end": 244, "annotation": null}, {"text": "typically", "start": 245, "end": 254, "annotation": null}, {"text": "20", "start": 255, "end": 257, "annotation": null}, {"text": "\u2013", "start": 257, "end": 258, "annotation": null}, {"text": "40", "start": 258, "end": 260, "annotation": null}, {"text": "discharges", "start": 261, "end": 271, "annotation": null}, {"text": ".", "start": 271, "end": 272, "annotation": null}], [{"text": "Convective", "start": 273, "end": 283, "annotation": null}, {"text": "power", "start": 284, "end": 289, "annotation": null}, {"text": "loads", "start": 290, "end": 295, "annotation": null}, {"text": "up", "start": 296, "end": 298, "annotation": null}, {"text": "to", "start": 299, "end": 301, "annotation": null}, {"text": "about", "start": 302, "end": 307, "annotation": null}, {"text": "30", "start": 308, "end": 310, "annotation": null}, {"text": "MW", "start": 311, "end": 313, "annotation": null}, {"text": "/", "start": 313, "end": 314, "annotation": null}, {"text": "m2", "start": 314, "end": 316, "annotation": null}, {"text": "led", "start": 317, "end": 320, "annotation": null}, {"text": "to", "start": 321, "end": 323, "annotation": null}, {"text": "maximum", "start": 324, "end": 331, "annotation": null}, {"text": "surface", "start": 332, "end": 339, "annotation": null}, {"text": "temperatures", "start": 340, "end": 352, "annotation": null}, {"text": "between", "start": 353, "end": 360, "annotation": null}, {"text": "2400", "start": 361, "end": 365, "annotation": null}, {"text": "\u2013", "start": 365, "end": 366, "annotation": null}, {"text": "2800", "start": 366, "end": 370, "annotation": null}, {"text": "\u00b0", "start": 370, "end": 371, "annotation": null}, {"text": "C", "start": 371, "end": 372, "annotation": null}, {"text": ".", "start": 372, "end": 373, "annotation": null}], [{"text": "Severe", "start": 374, "end": 380, "annotation": null}, {"text": "cracking", "start": 381, "end": 389, "annotation": null}, {"text": "has", "start": 390, "end": 393, "annotation": null}, {"text": "occurred", "start": 394, "end": 402, "annotation": null}, {"text": "on", "start": 403, "end": 405, "annotation": null}, {"text": "the", "start": 406, "end": 409, "annotation": null}, {"text": "20", "start": 410, "end": 412, "annotation": "DOPMODQ"}, {"text": "%", "start": 412, "end": 413, "annotation": "DOPMODQ"}, {"text": "boron", "start": 414, "end": 419, "annotation": "DOPANT"}, {"text": "-", "start": 419, "end": 420, "annotation": null}, {"text": "doped", "start": 420, "end": 425, "annotation": null}, {"text": "graphite", "start": 426, "end": 434, "annotation": "BASEMAT"}, {"text": "material", "start": 435, "end": 443, "annotation": null}, {"text": "showing", "start": 444, "end": 451, "annotation": null}, {"text": "that", "start": 452, "end": 456, "annotation": null}, {"text": "it", "start": 457, "end": 459, "annotation": null}, {"text": "is", "start": 460, "end": 462, "annotation": null}, {"text": "not", "start": 463, "end": 466, "annotation": null}, {"text": "applicable", "start": 467, "end": 477, "annotation": null}, {"text": "as", "start": 478, "end": 480, "annotation": null}, {"text": "plasma", "start": 481, "end": 487, "annotation": null}, {"text": "facing", "start": 488, "end": 494, "annotation": null}, {"text": "material", "start": 495, "end": 503, "annotation": null}, {"text": "under", "start": 504, "end": 509, "annotation": null}, {"text": "high", "start": 510, "end": 514, "annotation": null}, {"text": "heat", "start": 515, "end": 519, "annotation": null}, {"text": "loads", "start": 520, "end": 525, "annotation": null}, {"text": ".", "start": 525, "end": 526, "annotation": null}], [{"text": "Some", "start": 527, "end": 531, "annotation": null}, {"text": "large", "start": 532, "end": 537, "annotation": null}, {"text": "cracks", "start": 538, "end": 544, "annotation": null}, {"text": "have", "start": 545, "end": 549, "annotation": null}, {"text": "also", "start": 550, "end": 554, "annotation": null}, {"text": "been", "start": 555, "end": 559, "annotation": null}, {"text": "observed", "start": 560, "end": 568, "annotation": null}, {"text": "on", "start": 569, "end": 571, "annotation": null}, {"text": "the", "start": 572, "end": 575, "annotation": null}, {"text": "RGTi", "start": 576, "end": 580, "annotation": null}, {"text": "limiter", "start": 581, "end": 588, "annotation": null}, {"text": ",", "start": 588, "end": 589, "annotation": null}, {"text": "probably", "start": 590, "end": 598, "annotation": null}, {"text": "caused", "start": 599, "end": 605, "annotation": null}, {"text": "by", "start": 606, "end": 608, "annotation": null}, {"text": "the", "start": 609, "end": 612, "annotation": null}, {"text": "strong", "start": 613, "end": 619, "annotation": null}, {"text": "anisotropy", "start": 620, "end": 630, "annotation": null}, {"text": "of", "start": 631, "end": 633, "annotation": null}, {"text": "the", "start": 634, "end": 637, "annotation": null}, {"text": "material", "start": 638, "end": 646, "annotation": null}, {"text": ".", "start": 646, "end": 647, "annotation": null}], [{"text": "The", "start": 648, "end": 651, "annotation": null}, {"text": "3.5", "start": 652, "end": 655, "annotation": "DOPMODQ"}, {"text": "%", "start": 655, "end": 656, "annotation": "DOPMODQ"}, {"text": "boron", "start": 657, "end": 662, "annotation": "DOPANT"}, {"text": "-", "start": 662, "end": 663, "annotation": null}, {"text": "doped", "start": 663, "end": 668, "annotation": null}, {"text": "material", "start": 669, "end": 677, "annotation": "BASEMAT"}, {"text": "shows", "start": 678, "end": 683, "annotation": null}, {"text": "similar", "start": 684, "end": 691, "annotation": null}, {"text": "thermomechanical", "start": 692, "end": 708, "annotation": null}, {"text": "properties", "start": 709, "end": 719, "annotation": null}, {"text": "as", "start": 720, "end": 722, "annotation": null}, {"text": "a", "start": 723, "end": 724, "annotation": null}, {"text": "usual", "start": 725, "end": 730, "annotation": null}, {"text": "fine", "start": 731, "end": 735, "annotation": null}, {"text": "-", "start": 735, "end": 736, "annotation": null}, {"text": "grain", "start": 736, "end": 741, "annotation": null}, {"text": "graphite", "start": 742, "end": 750, "annotation": null}, {"text": "(", "start": 751, "end": 752, "annotation": null}, {"text": "EK98", "start": 752, "end": 756, "annotation": null}, {"text": ")", "start": 756, "end": 757, "annotation": null}, {"text": ".", "start": 757, "end": 758, "annotation": null}], [{"text": "Large", "start": 759, "end": 764, "annotation": null}, {"text": "thermal", "start": 765, "end": 772, "annotation": null}, {"text": "sublimation", "start": 773, "end": 784, "annotation": null}, {"text": "of", "start": 785, "end": 787, "annotation": null}, {"text": "boron", "start": 788, "end": 793, "annotation": "DOPANT"}, {"text": "and", "start": 794, "end": 797, "annotation": null}, {"text": "titanium", "start": 798, "end": 806, "annotation": "DOPANT"}, {"text": "has", "start": 807, "end": 810, "annotation": null}, {"text": "been", "start": 811, "end": 815, "annotation": null}, {"text": "observed", "start": 816, "end": 824, "annotation": null}, {"text": "starting", "start": 825, "end": 833, "annotation": null}, {"text": "at", "start": 834, "end": 836, "annotation": null}, {"text": "surface", "start": 837, "end": 844, "annotation": null}, {"text": "temperatures", "start": 845, "end": 857, "annotation": null}, {"text": "of", "start": 858, "end": 860, "annotation": null}, {"text": "about", "start": 861, "end": 866, "annotation": null}, {"text": "2000", "start": 867, "end": 871, "annotation": null}, {"text": "\u00b0", "start": 871, "end": 872, "annotation": null}, {"text": "C", "start": 872, "end": 873, "annotation": null}, {"text": "and", "start": 874, "end": 877, "annotation": null}, {"text": "1800", "start": 878, "end": 882, "annotation": null}, {"text": "\u00b0", "start": 882, "end": 883, "annotation": null}, {"text": "C", "start": 883, "end": 884, "annotation": null}, {"text": ",", "start": 884, "end": 885, "annotation": null}, {"text": "respectively", "start": 886, "end": 898, "annotation": null}, {"text": ".", "start": 898, "end": 899, "annotation": null}], [{"text": "Very", "start": 900, "end": 904, "annotation": null}, {"text": "thick", "start": 905, "end": 910, "annotation": null}, {"text": "layers", "start": 911, "end": 917, "annotation": null}, {"text": "of", "start": 918, "end": 920, "annotation": null}, {"text": "redeposited", "start": 921, "end": 932, "annotation": null}, {"text": "boron", "start": 933, "end": 938, "annotation": null}, {"text": "or", "start": 939, "end": 941, "annotation": null}, {"text": "titanium", "start": 942, "end": 950, "annotation": null}, {"text": "(", "start": 951, "end": 952, "annotation": null}, {"text": ">", "start": 952, "end": 953, "annotation": null}, {"text": "1", "start": 954, "end": 955, "annotation": null}, {"text": "\u03bcm", "start": 956, "end": 958, "annotation": null}, {"text": ")", "start": 958, "end": 959, "annotation": null}, {"text": "were", "start": 960, "end": 964, "annotation": null}, {"text": "formed", "start": 965, "end": 971, "annotation": null}, {"text": "near", "start": 972, "end": 976, "annotation": null}, {"text": "the", "start": 977, "end": 980, "annotation": null}, {"text": "areas", "start": 981, "end": 986, "annotation": null}, {"text": "of", "start": 987, "end": 989, "annotation": null}, {"text": "high", "start": 990, "end": 994, "annotation": null}, {"text": "sublimation", "start": 995, "end": 1006, "annotation": null}, {"text": ".", "start": 1006, "end": 1007, "annotation": null}], [{"text": "Besides", "start": 1008, "end": 1015, "annotation": null}, {"text": "the", "start": 1016, "end": 1019, "annotation": null}, {"text": "doping", "start": 1020, "end": 1026, "annotation": null}, {"text": "species", "start": 1027, "end": 1034, "annotation": null}, {"text": "(", "start": 1035, "end": 1036, "annotation": null}, {"text": "boron", "start": 1036, "end": 1041, "annotation": "DOPANT"}, {"text": ",", "start": 1041, "end": 1042, "annotation": null}, {"text": "titanium", "start": 1043, "end": 1051, "annotation": "DOPANT"}, {"text": ")", "start": 1051, "end": 1052, "annotation": null}, {"text": "these", "start": 1053, "end": 1058, "annotation": null}, {"text": "materials", "start": 1059, "end": 1068, "annotation": null}, {"text": "sublime", "start": 1069, "end": 1076, "annotation": null}, {"text": "various", "start": 1077, "end": 1084, "annotation": null}, {"text": "(", "start": 1085, "end": 1086, "annotation": null}, {"text": "metallic", "start": 1086, "end": 1094, "annotation": null}, {"text": ")", "start": 1094, "end": 1095, "annotation": null}, {"text": "impurities", "start": 1096, "end": 1106, "annotation": null}, {"text": "at", "start": 1107, "end": 1109, "annotation": null}, {"text": "elevated", "start": 1110, "end": 1118, "annotation": null}, {"text": "temperatures", "start": 1119, "end": 1131, "annotation": null}, {"text": ".", "start": 1131, "end": 1132, "annotation": null}], [{"text": "No", "start": 1133, "end": 1135, "annotation": null}, {"text": "significant", "start": 1136, "end": 1147, "annotation": null}, {"text": "increase", "start": 1148, "end": 1156, "annotation": null}, {"text": "of", "start": 1157, "end": 1159, "annotation": null}, {"text": "the", "start": 1160, "end": 1163, "annotation": null}, {"text": "emitted", "start": 1164, "end": 1171, "annotation": null}, {"text": "carbon", "start": 1172, "end": 1178, "annotation": null}, {"text": "flux", "start": 1179, "end": 1183, "annotation": null}, {"text": "has", "start": 1184, "end": 1187, "annotation": null}, {"text": "been", "start": 1188, "end": 1192, "annotation": null}, {"text": "observed", "start": 1193, "end": 1201, "annotation": null}, {"text": "below", "start": 1202, "end": 1207, "annotation": null}, {"text": "surface", "start": 1208, "end": 1215, "annotation": null}, {"text": "temperatures", "start": 1216, "end": 1228, "annotation": null}, {"text": "of", "start": 1229, "end": 1231, "annotation": null}, {"text": "2000", "start": 1232, "end": 1236, "annotation": null}, {"text": "\u00b0", "start": 1236, "end": 1237, "annotation": null}, {"text": "C", "start": 1237, "end": 1238, "annotation": null}, {"text": "showing", "start": 1239, "end": 1246, "annotation": null}, {"text": "that", "start": 1247, "end": 1251, "annotation": null}, {"text": "radiation", "start": 1252, "end": 1261, "annotation": null}, {"text": "enhanced", "start": 1262, "end": 1270, "annotation": null}, {"text": "sublimation", "start": 1271, "end": 1282, "annotation": null}, {"text": "(", "start": 1283, "end": 1284, "annotation": null}, {"text": "RES", "start": 1284, "end": 1287, "annotation": null}, {"text": ")", "start": 1287, "end": 1288, "annotation": null}, {"text": "is", "start": 1289, "end": 1291, "annotation": null}, {"text": "significantly", "start": 1292, "end": 1305, "annotation": null}, {"text": "reduced", "start": 1306, "end": 1313, "annotation": null}, {"text": "under", "start": 1314, "end": 1319, "annotation": null}, {"text": "these", "start": 1320, "end": 1325, "annotation": null}, {"text": "conditions", "start": 1326, "end": 1336, "annotation": null}, {"text": "compared", "start": 1337, "end": 1345, "annotation": null}, {"text": "with", "start": 1346, "end": 1350, "annotation": null}, {"text": "expected", "start": 1351, "end": 1359, "annotation": null}, {"text": "values", "start": 1360, "end": 1366, "annotation": null}, {"text": "extrapolated", "start": 1367, "end": 1379, "annotation": null}, {"text": "from", "start": 1380, "end": 1384, "annotation": null}, {"text": "beam", "start": 1385, "end": 1389, "annotation": null}, {"text": "experiments", "start": 1390, "end": 1401, "annotation": null}, {"text": ".", "start": 1401, "end": 1402, "annotation": null}]], "meta": {"doi": "10.1016/0022-3115(94)91019-7"}} +{"text": "A series of Pr3+/Yb3+ co-doped transparent tellurate glass samples were prepared by high-temperature melting method. The optical properties and energy transfer process from Pr3+ to Yb3+ were investigated. On excitation of Pr3+ ions with a blue visible photon at 449nm, a near infrared emission at 1001nm were observed in the Pr3+/Yb3+ co-doped tellurate glass, which is attributed to 2 F 2 / 5 \u2192 2 F 2 / 7 transition of Yb3+ ions. The feeding of Yb3+ ions is shown to be two step energy transfer from Pr3+ through 1 G 4 multiplet by excitation and emission spectra. The maximum total quantum efficiency reaches 136.7% when the co-doped Yb3+ mole concentration is 5%. The efficient down-conversion near infrared emission of Pr3+/Yb3+ co-doped tellurate glass has potential application in enhancing the conversion efficiency of crystalline silicon based solar cells.", "meta": {"doi": "10.1016/j.optmat.2012.10.012"}, "_input_hash": -1874277177, "_task_hash": -1866424394, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "series", "start": 2, "end": 8, "id": 1, "annotation": null}, {"text": "of", "start": 9, "end": 11, "id": 2, "annotation": null}, {"text": "Pr3+/Yb3", "start": 12, "end": 20, "id": 3, "annotation": "DOPANT"}, {"text": "+", "start": 21, "end": 22, "id": 4, "annotation": "DOPANT"}, {"text": "co", "start": 23, "end": 25, "id": 5, "annotation": null}, {"text": "-", "start": 26, "end": 27, "id": 6, "annotation": null}, {"text": "doped", "start": 28, "end": 33, "id": 7, "annotation": null}, {"text": "transparent", "start": 34, "end": 45, "id": 8, "annotation": null}, {"text": "tellurate", "start": 46, "end": 55, "id": 9, "annotation": "BASEMAT"}, {"text": "glass", "start": 56, "end": 61, "id": 10, "annotation": null}, {"text": "samples", "start": 62, "end": 69, "id": 11, "annotation": null}, {"text": "were", "start": 70, "end": 74, "id": 12, "annotation": null}, {"text": "prepared", "start": 75, "end": 83, "id": 13, "annotation": null}, {"text": "by", "start": 84, "end": 86, "id": 14, "annotation": null}, {"text": "high", "start": 87, "end": 91, "id": 15, "annotation": null}, {"text": "-", "start": 92, "end": 93, "id": 16, "annotation": null}, {"text": "temperature", "start": 94, "end": 105, "id": 17, "annotation": null}, {"text": "melting", "start": 106, "end": 113, "id": 18, "annotation": null}, {"text": "method", "start": 114, "end": 120, "id": 19, "annotation": null}, {"text": ".", "start": 121, "end": 122, "id": 20, "annotation": null}], [{"text": "The", "start": 123, "end": 126, "id": 21, "annotation": null}, {"text": "optical", "start": 127, "end": 134, "id": 22, "annotation": null}, {"text": "properties", "start": 135, "end": 145, "id": 23, "annotation": null}, {"text": "and", "start": 146, "end": 149, "id": 24, "annotation": null}, {"text": "energy", "start": 150, "end": 156, "id": 25, "annotation": null}, {"text": "transfer", "start": 157, "end": 165, "id": 26, "annotation": null}, {"text": "process", "start": 166, "end": 173, "id": 27, "annotation": null}, {"text": "from", "start": 174, "end": 178, "id": 28, "annotation": null}, {"text": "Pr3", "start": 179, "end": 182, "id": 29, "annotation": null}, {"text": "+", "start": 183, "end": 184, "id": 30, "annotation": null}, {"text": "to", "start": 185, "end": 187, "id": 31, "annotation": null}, {"text": "Yb3", "start": 188, "end": 191, "id": 32, "annotation": null}, {"text": "+", "start": 192, "end": 193, "id": 33, "annotation": null}, {"text": "were", "start": 194, "end": 198, "id": 34, "annotation": null}, {"text": "investigated", "start": 199, "end": 211, "id": 35, "annotation": null}, {"text": ".", "start": 212, "end": 213, "id": 36, "annotation": null}], [{"text": "On", "start": 214, "end": 216, "id": 37, "annotation": null}, {"text": "excitation", "start": 217, "end": 227, "id": 38, "annotation": null}, {"text": "of", "start": 228, "end": 230, "id": 39, "annotation": null}, {"text": "Pr3", "start": 231, "end": 234, "id": 40, "annotation": null}, {"text": "+", "start": 235, "end": 236, "id": 41, "annotation": null}, {"text": "ions", "start": 237, "end": 241, "id": 42, "annotation": null}, {"text": "with", "start": 242, "end": 246, "id": 43, "annotation": null}, {"text": "a", "start": 247, "end": 248, "id": 44, "annotation": null}, {"text": "blue", "start": 249, "end": 253, "id": 45, "annotation": null}, {"text": "visible", "start": 254, "end": 261, "id": 46, "annotation": null}, {"text": "photon", "start": 262, "end": 268, "id": 47, "annotation": null}, {"text": "at", "start": 269, "end": 271, "id": 48, "annotation": null}, {"text": "449", "start": 272, "end": 275, "id": 49, "annotation": null}, {"text": "nm", "start": 276, "end": 278, "id": 50, "annotation": null}, {"text": ",", "start": 279, "end": 280, "id": 51, "annotation": null}, {"text": "a", "start": 281, "end": 282, "id": 52, "annotation": null}, {"text": "near", "start": 283, "end": 287, "id": 53, "annotation": null}, {"text": "infrared", "start": 288, "end": 296, "id": 54, "annotation": null}, {"text": "emission", "start": 297, "end": 305, "id": 55, "annotation": null}, {"text": "at", "start": 306, "end": 308, "id": 56, "annotation": null}, {"text": "1001", "start": 309, "end": 313, "id": 57, "annotation": null}, {"text": "nm", "start": 314, "end": 316, "id": 58, "annotation": null}, {"text": "were", "start": 317, "end": 321, "id": 59, "annotation": null}, {"text": "observed", "start": 322, "end": 330, "id": 60, "annotation": null}, {"text": "in", "start": 331, "end": 333, "id": 61, "annotation": null}, {"text": "the", "start": 334, "end": 337, "id": 62, "annotation": null}, {"text": "Pr3+/Yb3", "start": 338, "end": 346, "id": 63, "annotation": "DOPANT"}, {"text": "+", "start": 347, "end": 348, "id": 64, "annotation": "DOPANT"}, {"text": "co", "start": 349, "end": 351, "id": 65, "annotation": null}, {"text": "-", "start": 352, "end": 353, "id": 66, "annotation": null}, {"text": "doped", "start": 354, "end": 359, "id": 67, "annotation": null}, {"text": "tellurate", "start": 360, "end": 369, "id": 68, "annotation": "BASEMAT"}, {"text": "glass", "start": 370, "end": 375, "id": 69, "annotation": null}, {"text": ",", "start": 376, "end": 377, "id": 70, "annotation": null}, {"text": "which", "start": 378, "end": 383, "id": 71, "annotation": null}, {"text": "is", "start": 384, "end": 386, "id": 72, "annotation": null}, {"text": "attributed", "start": 387, "end": 397, "id": 73, "annotation": null}, {"text": "to", "start": 398, "end": 400, "id": 74, "annotation": null}, {"text": "2", "start": 401, "end": 402, "id": 75, "annotation": null}, {"text": "F", "start": 403, "end": 404, "id": 76, "annotation": null}, {"text": "2", "start": 405, "end": 406, "id": 77, "annotation": null}, {"text": "/", "start": 407, "end": 408, "id": 78, "annotation": null}, {"text": "5", "start": 409, "end": 410, "id": 79, "annotation": null}, {"text": "\u2192", "start": 411, "end": 412, "id": 80, "annotation": null}, {"text": "2", "start": 413, "end": 414, "id": 81, "annotation": null}, {"text": "F", "start": 415, "end": 416, "id": 82, "annotation": null}, {"text": "2", "start": 417, "end": 418, "id": 83, "annotation": null}, {"text": "/", "start": 419, "end": 420, "id": 84, "annotation": null}, {"text": "7", "start": 421, "end": 422, "id": 85, "annotation": null}, {"text": "transition", "start": 423, "end": 433, "id": 86, "annotation": null}, {"text": "of", "start": 434, "end": 436, "id": 87, "annotation": null}, {"text": "Yb3", "start": 437, "end": 440, "id": 88, "annotation": null}, {"text": "+", "start": 441, "end": 442, "id": 89, "annotation": null}, {"text": "ions", "start": 443, "end": 447, "id": 90, "annotation": null}, {"text": ".", "start": 448, "end": 449, "id": 91, "annotation": null}], [{"text": "The", "start": 450, "end": 453, "id": 92, "annotation": null}, {"text": "feeding", "start": 454, "end": 461, "id": 93, "annotation": null}, {"text": "of", "start": 462, "end": 464, "id": 94, "annotation": null}, {"text": "Yb3", "start": 465, "end": 468, "id": 95, "annotation": null}, {"text": "+", "start": 469, "end": 470, "id": 96, "annotation": null}, {"text": "ions", "start": 471, "end": 475, "id": 97, "annotation": null}, {"text": "is", "start": 476, "end": 478, "id": 98, "annotation": null}, {"text": "shown", "start": 479, "end": 484, "id": 99, "annotation": null}, {"text": "to", "start": 485, "end": 487, "id": 100, "annotation": null}, {"text": "be", "start": 488, "end": 490, "id": 101, "annotation": null}, {"text": "two", "start": 491, "end": 494, "id": 102, "annotation": null}, {"text": "step", "start": 495, "end": 499, "id": 103, "annotation": null}, {"text": "energy", "start": 500, "end": 506, "id": 104, "annotation": null}, {"text": "transfer", "start": 507, "end": 515, "id": 105, "annotation": null}, {"text": "from", "start": 516, "end": 520, "id": 106, "annotation": null}, {"text": "Pr3", "start": 521, "end": 524, "id": 107, "annotation": null}, {"text": "+", "start": 525, "end": 526, "id": 108, "annotation": null}, {"text": "through", "start": 527, "end": 534, "id": 109, "annotation": null}, {"text": "1", "start": 535, "end": 536, "id": 110, "annotation": null}, {"text": "G", "start": 537, "end": 538, "id": 111, "annotation": null}, {"text": "4", "start": 539, "end": 540, "id": 112, "annotation": null}, {"text": "multiplet", "start": 541, "end": 550, "id": 113, "annotation": null}, {"text": "by", "start": 551, "end": 553, "id": 114, "annotation": null}, {"text": "excitation", "start": 554, "end": 564, "id": 115, "annotation": null}, {"text": "and", "start": 565, "end": 568, "id": 116, "annotation": null}, {"text": "emission", "start": 569, "end": 577, "id": 117, "annotation": null}, {"text": "spectra", "start": 578, "end": 585, "id": 118, "annotation": null}, {"text": ".", "start": 586, "end": 587, "id": 119, "annotation": null}], [{"text": "The", "start": 588, "end": 591, "id": 120, "annotation": null}, {"text": "maximum", "start": 592, "end": 599, "id": 121, "annotation": null}, {"text": "total", "start": 600, "end": 605, "id": 122, "annotation": null}, {"text": "quantum", "start": 606, "end": 613, "id": 123, "annotation": null}, {"text": "efficiency", "start": 614, "end": 624, "id": 124, "annotation": null}, {"text": "reaches", "start": 625, "end": 632, "id": 125, "annotation": null}, {"text": "136.7", "start": 633, "end": 638, "id": 126, "annotation": null}, {"text": "%", "start": 639, "end": 640, "id": 127, "annotation": null}, {"text": "when", "start": 641, "end": 645, "id": 128, "annotation": null}, {"text": "the", "start": 646, "end": 649, "id": 129, "annotation": null}, {"text": "co", "start": 650, "end": 652, "id": 130, "annotation": null}, {"text": "-", "start": 653, "end": 654, "id": 131, "annotation": null}, {"text": "doped", "start": 655, "end": 660, "id": 132, "annotation": null}, {"text": "Yb3", "start": 661, "end": 664, "id": 133, "annotation": "DOPANT"}, {"text": "+", "start": 665, "end": 666, "id": 134, "annotation": "DOPANT"}, {"text": "mole", "start": 667, "end": 671, "id": 135, "annotation": "DOPMODQ"}, {"text": "concentration", "start": 672, "end": 685, "id": 136, "annotation": "DOPMODQ"}, {"text": "is", "start": 686, "end": 688, "id": 137, "annotation": "DOPMODQ"}, {"text": "5", "start": 689, "end": 690, "id": 138, "annotation": "DOPMODQ"}, {"text": "%", "start": 691, "end": 692, "id": 139, "annotation": "DOPMODQ"}, {"text": ".", "start": 693, "end": 694, "id": 140, "annotation": null}], [{"text": "The", "start": 695, "end": 698, "id": 141, "annotation": null}, {"text": "efficient", "start": 699, "end": 708, "id": 142, "annotation": null}, {"text": "down", "start": 709, "end": 713, "id": 143, "annotation": null}, {"text": "-", "start": 714, "end": 715, "id": 144, "annotation": null}, {"text": "conversion", "start": 716, "end": 726, "id": 145, "annotation": null}, {"text": "near", "start": 727, "end": 731, "id": 146, "annotation": null}, {"text": "infrared", "start": 732, "end": 740, "id": 147, "annotation": null}, {"text": "emission", "start": 741, "end": 749, "id": 148, "annotation": null}, {"text": "of", "start": 750, "end": 752, "id": 149, "annotation": null}, {"text": "Pr3+/Yb3", "start": 753, "end": 761, "id": 150, "annotation": "DOPANT"}, {"text": "+", "start": 762, "end": 763, "id": 151, "annotation": "DOPANT"}, {"text": "co", "start": 764, "end": 766, "id": 152, "annotation": null}, {"text": "-", "start": 767, "end": 768, "id": 153, "annotation": null}, {"text": "doped", "start": 769, "end": 774, "id": 154, "annotation": null}, {"text": "tellurate", "start": 775, "end": 784, "id": 155, "annotation": "BASEMAT"}, {"text": "glass", "start": 785, "end": 790, "id": 156, "annotation": null}, {"text": "has", "start": 791, "end": 794, "id": 157, "annotation": null}, {"text": "potential", "start": 795, "end": 804, "id": 158, "annotation": null}, {"text": "application", "start": 805, "end": 816, "id": 159, "annotation": null}, {"text": "in", "start": 817, "end": 819, "id": 160, "annotation": null}, {"text": "enhancing", "start": 820, "end": 829, "id": 161, "annotation": null}, {"text": "the", "start": 830, "end": 833, "id": 162, "annotation": null}, {"text": "conversion", "start": 834, "end": 844, "id": 163, "annotation": null}, {"text": "efficiency", "start": 845, "end": 855, "id": 164, "annotation": null}, {"text": "of", "start": 856, "end": 858, "id": 165, "annotation": null}, {"text": "crystalline", "start": 859, "end": 870, "id": 166, "annotation": null}, {"text": "silicon", "start": 871, "end": 878, "id": 167, "annotation": null}, {"text": "based", "start": 879, "end": 884, "id": 168, "annotation": null}, {"text": "solar", "start": 885, "end": 890, "id": 169, "annotation": null}, {"text": "cells", "start": 891, "end": 896, "id": 170, "annotation": null}, {"text": ".", "start": 897, "end": 898, "id": 171, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt3", "text": "A microwave absorption technique based on cavity perturbation theory is shown to be applicable for electrical conductivity measurements of both a small, single-crystal particle and finely divided powder samples when\u03c3 values fall in either the low (\u03c3<0.1 \u03a9\u22121 cm\u22121) or the intermediate (0.1 \u2264\u03c3\u2264 100 \u03a9\u22121 cm\u22121) conductivity region. The results here pertain to semiconductors in the latter region. If the skin depth of the material becomes significantly smaller than the sample dimension parallel to theE-field, an appreciable error can be introduced into the calculated conductivity values; however, this discrepancy is eliminated by correcting for the field attenuation associated with the penetration depth of the microwaves. A modification of this approach utilizing the skin depth allows a first-order correction to be applied to powder samples which results in the accurate measurement of absolute\u03c3 values, and results with doped Si powders are compared to\u03c3 values obtained from one small single particle using this microwave technique as well as reported DC\u03c3 values determined with single crystals. The use of this microwave absorption technique with small particles having high surface/volume ratios, such as catalyst supports and oxide catalysts, under controlled environments can provide fundamental information about adsorption and catalytic processes on such semiconductor surfaces. An application to a ZnO powder demonstrates this capability.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "A", "start": 0, "end": 1, "annotation": null}, {"text": "microwave", "start": 2, "end": 11, "annotation": null}, {"text": "absorption", "start": 12, "end": 22, "annotation": null}, {"text": "technique", "start": 23, "end": 32, "annotation": null}, {"text": "based", "start": 33, "end": 38, "annotation": null}, {"text": "on", "start": 39, "end": 41, "annotation": null}, {"text": "cavity", "start": 42, "end": 48, "annotation": null}, {"text": "perturbation", "start": 49, "end": 61, "annotation": null}, {"text": "theory", "start": 62, "end": 68, "annotation": null}, {"text": "is", "start": 69, "end": 71, "annotation": null}, {"text": "shown", "start": 72, "end": 77, "annotation": null}, {"text": "to", "start": 78, "end": 80, "annotation": null}, {"text": "be", "start": 81, "end": 83, "annotation": null}, {"text": "applicable", "start": 84, "end": 94, "annotation": null}, {"text": "for", "start": 95, "end": 98, "annotation": null}, {"text": "electrical", "start": 99, "end": 109, "annotation": null}, {"text": "conductivity", "start": 110, "end": 122, "annotation": null}, {"text": "measurements", "start": 123, "end": 135, "annotation": null}, {"text": "of", "start": 136, "end": 138, "annotation": null}, {"text": "both", "start": 139, "end": 143, "annotation": null}, {"text": "a", "start": 144, "end": 145, "annotation": null}, {"text": "small", "start": 146, "end": 151, "annotation": null}, {"text": ",", "start": 151, "end": 152, "annotation": null}, {"text": "single", "start": 153, "end": 159, "annotation": null}, {"text": "-", "start": 159, "end": 160, "annotation": null}, {"text": "crystal", "start": 160, "end": 167, "annotation": null}, {"text": "particle", "start": 168, "end": 176, "annotation": null}, {"text": "and", "start": 177, "end": 180, "annotation": null}, {"text": "finely", "start": 181, "end": 187, "annotation": null}, {"text": "divided", "start": 188, "end": 195, "annotation": null}, {"text": "powder", "start": 196, "end": 202, "annotation": null}, {"text": "samples", "start": 203, "end": 210, "annotation": null}, {"text": "when\u03c3", "start": 211, "end": 216, "annotation": null}, {"text": "values", "start": 217, "end": 223, "annotation": null}, {"text": "fall", "start": 224, "end": 228, "annotation": null}, {"text": "in", "start": 229, "end": 231, "annotation": null}, {"text": "either", "start": 232, "end": 238, "annotation": null}, {"text": "the", "start": 239, "end": 242, "annotation": null}, {"text": "low", "start": 243, "end": 246, "annotation": null}, {"text": "(", "start": 247, "end": 248, "annotation": null}, {"text": "\u03c3", "start": 248, "end": 249, "annotation": null}, {"text": "<", "start": 249, "end": 250, "annotation": null}, {"text": "0.1", "start": 250, "end": 253, "annotation": null}, {"text": "\u03a9\u22121", "start": 254, "end": 257, "annotation": null}, {"text": "cm\u22121", "start": 258, "end": 262, "annotation": null}, {"text": ")", "start": 262, "end": 263, "annotation": null}, {"text": "or", "start": 264, "end": 266, "annotation": null}, {"text": "the", "start": 267, "end": 270, "annotation": null}, {"text": "intermediate", "start": 271, "end": 283, "annotation": null}, {"text": "(", "start": 284, "end": 285, "annotation": null}, {"text": "0.1", "start": 285, "end": 288, "annotation": null}, {"text": "\u2264", "start": 289, "end": 290, "annotation": null}, {"text": "\u03c3", "start": 290, "end": 291, "annotation": null}, {"text": "\u2264", "start": 291, "end": 292, "annotation": null}, {"text": "100", "start": 293, "end": 296, "annotation": null}, {"text": "\u03a9\u22121", "start": 297, "end": 300, "annotation": null}, {"text": "cm\u22121", "start": 301, "end": 305, "annotation": null}, {"text": ")", "start": 305, "end": 306, "annotation": null}, {"text": "conductivity", "start": 307, "end": 319, "annotation": null}, {"text": "region", "start": 320, "end": 326, "annotation": null}, {"text": ".", "start": 326, "end": 327, "annotation": null}], [{"text": "The", "start": 328, "end": 331, "annotation": null}, {"text": "results", "start": 332, "end": 339, "annotation": null}, {"text": "here", "start": 340, "end": 344, "annotation": null}, {"text": "pertain", "start": 345, "end": 352, "annotation": null}, {"text": "to", "start": 353, "end": 355, "annotation": null}, {"text": "semiconductors", "start": 356, "end": 370, "annotation": null}, {"text": "in", "start": 371, "end": 373, "annotation": null}, {"text": "the", "start": 374, "end": 377, "annotation": null}, {"text": "latter", "start": 378, "end": 384, "annotation": null}, {"text": "region", "start": 385, "end": 391, "annotation": null}, {"text": ".", "start": 391, "end": 392, "annotation": null}], [{"text": "If", "start": 393, "end": 395, "annotation": null}, {"text": "the", "start": 396, "end": 399, "annotation": null}, {"text": "skin", "start": 400, "end": 404, "annotation": null}, {"text": "depth", "start": 405, "end": 410, "annotation": null}, {"text": "of", "start": 411, "end": 413, "annotation": null}, {"text": "the", "start": 414, "end": 417, "annotation": null}, {"text": "material", "start": 418, "end": 426, "annotation": null}, {"text": "becomes", "start": 427, "end": 434, "annotation": null}, {"text": "significantly", "start": 435, "end": 448, "annotation": null}, {"text": "smaller", "start": 449, "end": 456, "annotation": null}, {"text": "than", "start": 457, "end": 461, "annotation": null}, {"text": "the", "start": 462, "end": 465, "annotation": null}, {"text": "sample", "start": 466, "end": 472, "annotation": null}, {"text": "dimension", "start": 473, "end": 482, "annotation": null}, {"text": "parallel", "start": 483, "end": 491, "annotation": null}, {"text": "to", "start": 492, "end": 494, "annotation": null}, {"text": "theE", "start": 495, "end": 499, "annotation": null}, {"text": "-", "start": 499, "end": 500, "annotation": null}, {"text": "field", "start": 500, "end": 505, "annotation": null}, {"text": ",", "start": 505, "end": 506, "annotation": null}, {"text": "an", "start": 507, "end": 509, "annotation": null}, {"text": "appreciable", "start": 510, "end": 521, "annotation": null}, {"text": "error", "start": 522, "end": 527, "annotation": null}, {"text": "can", "start": 528, "end": 531, "annotation": null}, {"text": "be", "start": 532, "end": 534, "annotation": null}, {"text": "introduced", "start": 535, "end": 545, "annotation": null}, {"text": "into", "start": 546, "end": 550, "annotation": null}, {"text": "the", "start": 551, "end": 554, "annotation": null}, {"text": "calculated", "start": 555, "end": 565, "annotation": null}, {"text": "conductivity", "start": 566, "end": 578, "annotation": null}, {"text": "values", "start": 579, "end": 585, "annotation": null}, {"text": ";", "start": 585, "end": 586, "annotation": null}, {"text": "however", "start": 587, "end": 594, "annotation": null}, {"text": ",", "start": 594, "end": 595, "annotation": null}, {"text": "this", "start": 596, "end": 600, "annotation": null}, {"text": "discrepancy", "start": 601, "end": 612, "annotation": null}, {"text": "is", "start": 613, "end": 615, "annotation": null}, {"text": "eliminated", "start": 616, "end": 626, "annotation": null}, {"text": "by", "start": 627, "end": 629, "annotation": null}, {"text": "correcting", "start": 630, "end": 640, "annotation": null}, {"text": "for", "start": 641, "end": 644, "annotation": null}, {"text": "the", "start": 645, "end": 648, "annotation": null}, {"text": "field", "start": 649, "end": 654, "annotation": null}, {"text": "attenuation", "start": 655, "end": 666, "annotation": null}, {"text": "associated", "start": 667, "end": 677, "annotation": null}, {"text": "with", "start": 678, "end": 682, "annotation": null}, {"text": "the", "start": 683, "end": 686, "annotation": null}, {"text": "penetration", "start": 687, "end": 698, "annotation": null}, {"text": "depth", "start": 699, "end": 704, "annotation": null}, {"text": "of", "start": 705, "end": 707, "annotation": null}, {"text": "the", "start": 708, "end": 711, "annotation": null}, {"text": "microwaves", "start": 712, "end": 722, "annotation": null}, {"text": ".", "start": 722, "end": 723, "annotation": null}], [{"text": "A", "start": 724, "end": 725, "annotation": null}, {"text": "modification", "start": 726, "end": 738, "annotation": null}, {"text": "of", "start": 739, "end": 741, "annotation": null}, {"text": "this", "start": 742, "end": 746, "annotation": null}, {"text": "approach", "start": 747, "end": 755, "annotation": null}, {"text": "utilizing", "start": 756, "end": 765, "annotation": null}, {"text": "the", "start": 766, "end": 769, "annotation": null}, {"text": "skin", "start": 770, "end": 774, "annotation": null}, {"text": "depth", "start": 775, "end": 780, "annotation": null}, {"text": "allows", "start": 781, "end": 787, "annotation": null}, {"text": "a", "start": 788, "end": 789, "annotation": null}, {"text": "first", "start": 790, "end": 795, "annotation": null}, {"text": "-", "start": 795, "end": 796, "annotation": null}, {"text": "order", "start": 796, "end": 801, "annotation": null}, {"text": "correction", "start": 802, "end": 812, "annotation": null}, {"text": "to", "start": 813, "end": 815, "annotation": null}, {"text": "be", "start": 816, "end": 818, "annotation": null}, {"text": "applied", "start": 819, "end": 826, "annotation": null}, {"text": "to", "start": 827, "end": 829, "annotation": null}, {"text": "powder", "start": 830, "end": 836, "annotation": null}, {"text": "samples", "start": 837, "end": 844, "annotation": null}, {"text": "which", "start": 845, "end": 850, "annotation": null}, {"text": "results", "start": 851, "end": 858, "annotation": null}, {"text": "in", "start": 859, "end": 861, "annotation": null}, {"text": "the", "start": 862, "end": 865, "annotation": null}, {"text": "accurate", "start": 866, "end": 874, "annotation": null}, {"text": "measurement", "start": 875, "end": 886, "annotation": null}, {"text": "of", "start": 887, "end": 889, "annotation": null}, {"text": "absolute\u03c3", "start": 890, "end": 899, "annotation": null}, {"text": "values", "start": 900, "end": 906, "annotation": null}, {"text": ",", "start": 906, "end": 907, "annotation": null}, {"text": "and", "start": 908, "end": 911, "annotation": null}, {"text": "results", "start": 912, "end": 919, "annotation": null}, {"text": "with", "start": 920, "end": 924, "annotation": null}, {"text": "doped", "start": 925, "end": 930, "annotation": null}, {"text": "Si", "start": 931, "end": 933, "annotation": "BASEMAT"}, {"text": "powders", "start": 934, "end": 941, "annotation": "BASEMAT"}, {"text": "are", "start": 942, "end": 945, "annotation": null}, {"text": "compared", "start": 946, "end": 954, "annotation": null}, {"text": "to\u03c3", "start": 955, "end": 958, "annotation": null}, {"text": "values", "start": 959, "end": 965, "annotation": null}, {"text": "obtained", "start": 966, "end": 974, "annotation": null}, {"text": "from", "start": 975, "end": 979, "annotation": null}, {"text": "one", "start": 980, "end": 983, "annotation": null}, {"text": "small", "start": 984, "end": 989, "annotation": null}, {"text": "single", "start": 990, "end": 996, "annotation": null}, {"text": "particle", "start": 997, "end": 1005, "annotation": null}, {"text": "using", "start": 1006, "end": 1011, "annotation": null}, {"text": "this", "start": 1012, "end": 1016, "annotation": null}, {"text": "microwave", "start": 1017, "end": 1026, "annotation": null}, {"text": "technique", "start": 1027, "end": 1036, "annotation": null}, {"text": "as", "start": 1037, "end": 1039, "annotation": null}, {"text": "well", "start": 1040, "end": 1044, "annotation": null}, {"text": "as", "start": 1045, "end": 1047, "annotation": null}, {"text": "reported", "start": 1048, "end": 1056, "annotation": null}, {"text": "DC\u03c3", "start": 1057, "end": 1060, "annotation": null}, {"text": "values", "start": 1061, "end": 1067, "annotation": null}, {"text": "determined", "start": 1068, "end": 1078, "annotation": null}, {"text": "with", "start": 1079, "end": 1083, "annotation": null}, {"text": "single", "start": 1084, "end": 1090, "annotation": null}, {"text": "crystals", "start": 1091, "end": 1099, "annotation": null}, {"text": ".", "start": 1099, "end": 1100, "annotation": null}], [{"text": "The", "start": 1101, "end": 1104, "annotation": null}, {"text": "use", "start": 1105, "end": 1108, "annotation": null}, {"text": "of", "start": 1109, "end": 1111, "annotation": null}, {"text": "this", "start": 1112, "end": 1116, "annotation": null}, {"text": "microwave", "start": 1117, "end": 1126, "annotation": null}, {"text": "absorption", "start": 1127, "end": 1137, "annotation": null}, {"text": "technique", "start": 1138, "end": 1147, "annotation": null}, {"text": "with", "start": 1148, "end": 1152, "annotation": null}, {"text": "small", "start": 1153, "end": 1158, "annotation": null}, {"text": "particles", "start": 1159, "end": 1168, "annotation": null}, {"text": "having", "start": 1169, "end": 1175, "annotation": null}, {"text": "high", "start": 1176, "end": 1180, "annotation": null}, {"text": "surface", "start": 1181, "end": 1188, "annotation": null}, {"text": "/", "start": 1188, "end": 1189, "annotation": null}, {"text": "volume", "start": 1189, "end": 1195, "annotation": null}, {"text": "ratios", "start": 1196, "end": 1202, "annotation": null}, {"text": ",", "start": 1202, "end": 1203, "annotation": null}, {"text": "such", "start": 1204, "end": 1208, "annotation": null}, {"text": "as", "start": 1209, "end": 1211, "annotation": null}, {"text": "catalyst", "start": 1212, "end": 1220, "annotation": null}, {"text": "supports", "start": 1221, "end": 1229, "annotation": null}, {"text": "and", "start": 1230, "end": 1233, "annotation": null}, {"text": "oxide", "start": 1234, "end": 1239, "annotation": null}, {"text": "catalysts", "start": 1240, "end": 1249, "annotation": null}, {"text": ",", "start": 1249, "end": 1250, "annotation": null}, {"text": "under", "start": 1251, "end": 1256, "annotation": null}, {"text": "controlled", "start": 1257, "end": 1267, "annotation": null}, {"text": "environments", "start": 1268, "end": 1280, "annotation": null}, {"text": "can", "start": 1281, "end": 1284, "annotation": null}, {"text": "provide", "start": 1285, "end": 1292, "annotation": null}, {"text": "fundamental", "start": 1293, "end": 1304, "annotation": null}, {"text": "information", "start": 1305, "end": 1316, "annotation": null}, {"text": "about", "start": 1317, "end": 1322, "annotation": null}, {"text": "adsorption", "start": 1323, "end": 1333, "annotation": null}, {"text": "and", "start": 1334, "end": 1337, "annotation": null}, {"text": "catalytic", "start": 1338, "end": 1347, "annotation": null}, {"text": "processes", "start": 1348, "end": 1357, "annotation": null}, {"text": "on", "start": 1358, "end": 1360, "annotation": null}, {"text": "such", "start": 1361, "end": 1365, "annotation": null}, {"text": "semiconductor", "start": 1366, "end": 1379, "annotation": null}, {"text": "surfaces", "start": 1380, "end": 1388, "annotation": null}, {"text": ".", "start": 1388, "end": 1389, "annotation": null}], [{"text": "An", "start": 1390, "end": 1392, "annotation": null}, {"text": "application", "start": 1393, "end": 1404, "annotation": null}, {"text": "to", "start": 1405, "end": 1407, "annotation": null}, {"text": "a", "start": 1408, "end": 1409, "annotation": null}, {"text": "ZnO", "start": 1410, "end": 1413, "annotation": null}, {"text": "powder", "start": 1414, "end": 1420, "annotation": null}, {"text": "demonstrates", "start": 1421, "end": 1433, "annotation": null}, {"text": "this", "start": 1434, "end": 1438, "annotation": null}, {"text": "capability", "start": 1439, "end": 1449, "annotation": null}, {"text": ".", "start": 1449, "end": 1450, "annotation": null}]], "meta": {"doi": "10.1007/BF00824028"}} {"text": "Manganese doped ZnS nanoparticles were synthesized via a simple chemical reaction method at room temperature and annealed at four different temperatures. The nanostructures of the prepared Mn2+ doped ZnS nanoparticles have been analyzed using X-ray diffraction (XRD), Transmission Electron Microscope (TEM), Fourier Transform Infra-Red Spectroscopy (FTIR) and Photoluminescence (PL) studies. The phase transformation from cubic to wurtzite structure has been studied and the size of the particles is found to increase from 14nm to 31nm with increasing annealing temperature whereas the strain values were found to decrease. From the room-temperature photoluminescence spectrum of as prepared samples, it is seen that Mn2+ doped ZnS emit in the yellow-orange region at 585nm due to Mn2+ 4T1\u20136A1 transition under excitation of a UV light at 345nm. PLE intensity significantly increases with the increase of annealing temperature and shows a maximum when temperature is 600\u00b0C. If temperature continued to increase, namely more than 600\u00b0C, the PLE intensity would decrease.", "meta": {"doi": "10.1016/j.matlet.2013.06.004"}, "_input_hash": 720606229, "_task_hash": -252860540, "tokens": [[{"text": "Manganese", "start": 0, "end": 9, "id": 0, "annotation": "DOPANT"}, {"text": "doped", "start": 10, "end": 15, "id": 1, "annotation": null}, {"text": "ZnS", "start": 16, "end": 19, "id": 2, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 20, "end": 33, "id": 3, "annotation": null}, {"text": "were", "start": 34, "end": 38, "id": 4, "annotation": null}, {"text": "synthesized", "start": 39, "end": 50, "id": 5, "annotation": null}, {"text": "via", "start": 51, "end": 54, "id": 6, "annotation": null}, {"text": "a", "start": 55, "end": 56, "id": 7, "annotation": null}, {"text": "simple", "start": 57, "end": 63, "id": 8, "annotation": null}, {"text": "chemical", "start": 64, "end": 72, "id": 9, "annotation": null}, {"text": "reaction", "start": 73, "end": 81, "id": 10, "annotation": null}, {"text": "method", "start": 82, "end": 88, "id": 11, "annotation": null}, {"text": "at", "start": 89, "end": 91, "id": 12, "annotation": null}, {"text": "room", "start": 92, "end": 96, "id": 13, "annotation": null}, {"text": "temperature", "start": 97, "end": 108, "id": 14, "annotation": null}, {"text": "and", "start": 109, "end": 112, "id": 15, "annotation": null}, {"text": "annealed", "start": 113, "end": 121, "id": 16, "annotation": null}, {"text": "at", "start": 122, "end": 124, "id": 17, "annotation": null}, {"text": "four", "start": 125, "end": 129, "id": 18, "annotation": null}, {"text": "different", "start": 130, "end": 139, "id": 19, "annotation": null}, {"text": "temperatures", "start": 140, "end": 152, "id": 20, "annotation": null}, {"text": ".", "start": 153, "end": 154, "id": 21, "annotation": null}], [{"text": "The", "start": 155, "end": 158, "id": 22, "annotation": null}, {"text": "nanostructures", "start": 159, "end": 173, "id": 23, "annotation": null}, {"text": "of", "start": 174, "end": 176, "id": 24, "annotation": null}, {"text": "the", "start": 177, "end": 180, "id": 25, "annotation": null}, {"text": "prepared", "start": 181, "end": 189, "id": 26, "annotation": null}, {"text": "Mn2", "start": 190, "end": 193, "id": 27, "annotation": "DOPANT"}, {"text": "+", "start": 194, "end": 195, "id": 28, "annotation": "DOPANT"}, {"text": "doped", "start": 196, "end": 201, "id": 29, "annotation": null}, {"text": "ZnS", "start": 202, "end": 205, "id": 30, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 206, "end": 219, "id": 31, "annotation": null}, {"text": "have", "start": 220, "end": 224, "id": 32, "annotation": null}, {"text": "been", "start": 225, "end": 229, "id": 33, "annotation": null}, {"text": "analyzed", "start": 230, "end": 238, "id": 34, "annotation": null}, {"text": "using", "start": 239, "end": 244, "id": 35, "annotation": null}, {"text": "X", "start": 245, "end": 246, "id": 36, "annotation": null}, {"text": "-", "start": 247, "end": 248, "id": 37, "annotation": null}, {"text": "ray", "start": 249, "end": 252, "id": 38, "annotation": null}, {"text": "diffraction", "start": 253, "end": 264, "id": 39, "annotation": null}, {"text": "(", "start": 265, "end": 266, "id": 40, "annotation": null}, {"text": "XRD", "start": 267, "end": 270, "id": 41, "annotation": null}, {"text": ")", "start": 271, "end": 272, "id": 42, "annotation": null}, {"text": ",", "start": 273, "end": 274, "id": 43, "annotation": null}, {"text": "Transmission", "start": 275, "end": 287, "id": 44, "annotation": null}, {"text": "Electron", "start": 288, "end": 296, "id": 45, "annotation": null}, {"text": "Microscope", "start": 297, "end": 307, "id": 46, "annotation": null}, {"text": "(", "start": 308, "end": 309, "id": 47, "annotation": null}, {"text": "TEM", "start": 310, "end": 313, "id": 48, "annotation": null}, {"text": ")", "start": 314, "end": 315, "id": 49, "annotation": null}, {"text": ",", "start": 316, "end": 317, "id": 50, "annotation": null}, {"text": "Fourier", "start": 318, "end": 325, "id": 51, "annotation": null}, {"text": "Transform", "start": 326, "end": 335, "id": 52, "annotation": null}, {"text": "Infra", "start": 336, "end": 341, "id": 53, "annotation": null}, {"text": "-", "start": 342, "end": 343, "id": 54, "annotation": null}, {"text": "Red", "start": 344, "end": 347, "id": 55, "annotation": null}, {"text": "Spectroscopy", "start": 348, "end": 360, "id": 56, "annotation": null}, {"text": "(", "start": 361, "end": 362, "id": 57, "annotation": null}, {"text": "FTIR", "start": 363, "end": 367, "id": 58, "annotation": null}, {"text": ")", "start": 368, "end": 369, "id": 59, "annotation": null}, {"text": "and", "start": 370, "end": 373, "id": 60, "annotation": null}, {"text": "Photoluminescence", "start": 374, "end": 391, "id": 61, "annotation": null}, {"text": "(", "start": 392, "end": 393, "id": 62, "annotation": null}, {"text": "PL", "start": 394, "end": 396, "id": 63, "annotation": null}, {"text": ")", "start": 397, "end": 398, "id": 64, "annotation": null}, {"text": "studies", "start": 399, "end": 406, "id": 65, "annotation": null}, {"text": ".", "start": 407, "end": 408, "id": 66, "annotation": null}], [{"text": "The", "start": 409, "end": 412, "id": 67, "annotation": null}, {"text": "phase", "start": 413, "end": 418, "id": 68, "annotation": null}, {"text": "transformation", "start": 419, "end": 433, "id": 69, "annotation": null}, {"text": "from", "start": 434, "end": 438, "id": 70, "annotation": null}, {"text": "cubic", "start": 439, "end": 444, "id": 71, "annotation": null}, {"text": "to", "start": 445, "end": 447, "id": 72, "annotation": null}, {"text": "wurtzite", "start": 448, "end": 456, "id": 73, "annotation": null}, {"text": "structure", "start": 457, "end": 466, "id": 74, "annotation": null}, {"text": "has", "start": 467, "end": 470, "id": 75, "annotation": null}, {"text": "been", "start": 471, "end": 475, "id": 76, "annotation": null}, {"text": "studied", "start": 476, "end": 483, "id": 77, "annotation": null}, {"text": "and", "start": 484, "end": 487, "id": 78, "annotation": null}, {"text": "the", "start": 488, "end": 491, "id": 79, "annotation": null}, {"text": "size", "start": 492, "end": 496, "id": 80, "annotation": null}, {"text": "of", "start": 497, "end": 499, "id": 81, "annotation": null}, {"text": "the", "start": 500, "end": 503, "id": 82, "annotation": null}, {"text": "particles", "start": 504, "end": 513, "id": 83, "annotation": null}, {"text": "is", "start": 514, "end": 516, "id": 84, "annotation": null}, {"text": "found", "start": 517, "end": 522, "id": 85, "annotation": null}, {"text": "to", "start": 523, "end": 525, "id": 86, "annotation": null}, {"text": "increase", "start": 526, "end": 534, "id": 87, "annotation": null}, {"text": "from", "start": 535, "end": 539, "id": 88, "annotation": null}, {"text": "14", "start": 540, "end": 542, "id": 89, "annotation": null}, {"text": "nm", "start": 543, "end": 545, "id": 90, "annotation": null}, {"text": "to", "start": 546, "end": 548, "id": 91, "annotation": null}, {"text": "31", "start": 549, "end": 551, "id": 92, "annotation": null}, {"text": "nm", "start": 552, "end": 554, "id": 93, "annotation": null}, {"text": "with", "start": 555, "end": 559, "id": 94, "annotation": null}, {"text": "increasing", "start": 560, "end": 570, "id": 95, "annotation": null}, {"text": "annealing", "start": 571, "end": 580, "id": 96, "annotation": null}, {"text": "temperature", "start": 581, "end": 592, "id": 97, "annotation": null}, {"text": "whereas", "start": 593, "end": 600, "id": 98, "annotation": null}, {"text": "the", "start": 601, "end": 604, "id": 99, "annotation": null}, {"text": "strain", "start": 605, "end": 611, "id": 100, "annotation": null}, {"text": "values", "start": 612, "end": 618, "id": 101, "annotation": null}, {"text": "were", "start": 619, "end": 623, "id": 102, "annotation": null}, {"text": "found", "start": 624, "end": 629, "id": 103, "annotation": null}, {"text": "to", "start": 630, "end": 632, "id": 104, "annotation": null}, {"text": "decrease", "start": 633, "end": 641, "id": 105, "annotation": null}, {"text": ".", "start": 642, "end": 643, "id": 106, "annotation": null}], [{"text": "From", "start": 644, "end": 648, "id": 107, "annotation": null}, {"text": "the", "start": 649, "end": 652, "id": 108, "annotation": null}, {"text": "room", "start": 653, "end": 657, "id": 109, "annotation": null}, {"text": "-", "start": 658, "end": 659, "id": 110, "annotation": null}, {"text": "temperature", "start": 660, "end": 671, "id": 111, "annotation": null}, {"text": "photoluminescence", "start": 672, "end": 689, "id": 112, "annotation": null}, {"text": "spectrum", "start": 690, "end": 698, "id": 113, "annotation": null}, {"text": "of", "start": 699, "end": 701, "id": 114, "annotation": null}, {"text": "as", "start": 702, "end": 704, "id": 115, "annotation": null}, {"text": "prepared", "start": 705, "end": 713, "id": 116, "annotation": null}, {"text": "samples", "start": 714, "end": 721, "id": 117, "annotation": null}, {"text": ",", "start": 722, "end": 723, "id": 118, "annotation": null}, {"text": "it", "start": 724, "end": 726, "id": 119, "annotation": null}, {"text": "is", "start": 727, "end": 729, "id": 120, "annotation": null}, {"text": "seen", "start": 730, "end": 734, "id": 121, "annotation": null}, {"text": "that", "start": 735, "end": 739, "id": 122, "annotation": null}, {"text": "Mn2", "start": 740, "end": 743, "id": 123, "annotation": "DOPANT"}, {"text": "+", "start": 744, "end": 745, "id": 124, "annotation": "DOPANT"}, {"text": "doped", "start": 746, "end": 751, "id": 125, "annotation": null}, {"text": "ZnS", "start": 752, "end": 755, "id": 126, "annotation": "BASEMAT"}, {"text": "emit", "start": 756, "end": 760, "id": 127, "annotation": null}, {"text": "in", "start": 761, "end": 763, "id": 128, "annotation": null}, {"text": "the", "start": 764, "end": 767, "id": 129, "annotation": null}, {"text": "yellow", "start": 768, "end": 774, "id": 130, "annotation": null}, {"text": "-", "start": 775, "end": 776, "id": 131, "annotation": null}, {"text": "orange", "start": 777, "end": 783, "id": 132, "annotation": null}, {"text": "region", "start": 784, "end": 790, "id": 133, "annotation": null}, {"text": "at", "start": 791, "end": 793, "id": 134, "annotation": null}, {"text": "585", "start": 794, "end": 797, "id": 135, "annotation": null}, {"text": "nm", "start": 798, "end": 800, "id": 136, "annotation": null}, {"text": "due", "start": 801, "end": 804, "id": 137, "annotation": null}, {"text": "to", "start": 805, "end": 807, "id": 138, "annotation": null}, {"text": "Mn2", "start": 808, "end": 811, "id": 139, "annotation": null}, {"text": "+", "start": 812, "end": 813, "id": 140, "annotation": null}, {"text": "4T1\u20136A1", "start": 814, "end": 821, "id": 141, "annotation": null}, {"text": "transition", "start": 822, "end": 832, "id": 142, "annotation": null}, {"text": "under", "start": 833, "end": 838, "id": 143, "annotation": null}, {"text": "excitation", "start": 839, "end": 849, "id": 144, "annotation": null}, {"text": "of", "start": 850, "end": 852, "id": 145, "annotation": null}, {"text": "a", "start": 853, "end": 854, "id": 146, "annotation": null}, {"text": "UV", "start": 855, "end": 857, "id": 147, "annotation": null}, {"text": "light", "start": 858, "end": 863, "id": 148, "annotation": null}, {"text": "at", "start": 864, "end": 866, "id": 149, "annotation": null}, {"text": "345", "start": 867, "end": 870, "id": 150, "annotation": null}, {"text": "nm", "start": 871, "end": 873, "id": 151, "annotation": null}, {"text": ".", "start": 874, "end": 875, "id": 152, "annotation": null}], [{"text": "PLE", "start": 876, "end": 879, "id": 153, "annotation": null}, {"text": "intensity", "start": 880, "end": 889, "id": 154, "annotation": null}, {"text": "significantly", "start": 890, "end": 903, "id": 155, "annotation": null}, {"text": "increases", "start": 904, "end": 913, "id": 156, "annotation": null}, {"text": "with", "start": 914, "end": 918, "id": 157, "annotation": null}, {"text": "the", "start": 919, "end": 922, "id": 158, "annotation": null}, {"text": "increase", "start": 923, "end": 931, "id": 159, "annotation": null}, {"text": "of", "start": 932, "end": 934, "id": 160, "annotation": null}, {"text": "annealing", "start": 935, "end": 944, "id": 161, "annotation": null}, {"text": "temperature", "start": 945, "end": 956, "id": 162, "annotation": null}, {"text": "and", "start": 957, "end": 960, "id": 163, "annotation": null}, {"text": "shows", "start": 961, "end": 966, "id": 164, "annotation": null}, {"text": "a", "start": 967, "end": 968, "id": 165, "annotation": null}, {"text": "maximum", "start": 969, "end": 976, "id": 166, "annotation": null}, {"text": "when", "start": 977, "end": 981, "id": 167, "annotation": null}, {"text": "temperature", "start": 982, "end": 993, "id": 168, "annotation": null}, {"text": "is", "start": 994, "end": 996, "id": 169, "annotation": null}, {"text": "600", "start": 997, "end": 1000, "id": 170, "annotation": null}, {"text": "\u00b0", "start": 1001, "end": 1002, "id": 171, "annotation": null}, {"text": "C", "start": 1003, "end": 1004, "id": 172, "annotation": null}, {"text": ".", "start": 1005, "end": 1006, "id": 173, "annotation": null}], [{"text": "If", "start": 1007, "end": 1009, "id": 174, "annotation": null}, {"text": "temperature", "start": 1010, "end": 1021, "id": 175, "annotation": null}, {"text": "continued", "start": 1022, "end": 1031, "id": 176, "annotation": null}, {"text": "to", "start": 1032, "end": 1034, "id": 177, "annotation": null}, {"text": "increase", "start": 1035, "end": 1043, "id": 178, "annotation": null}, {"text": ",", "start": 1044, "end": 1045, "id": 179, "annotation": null}, {"text": "namely", "start": 1046, "end": 1052, "id": 180, "annotation": null}, {"text": "more", "start": 1053, "end": 1057, "id": 181, "annotation": null}, {"text": "than", "start": 1058, "end": 1062, "id": 182, "annotation": null}, {"text": "600", "start": 1063, "end": 1066, "id": 183, "annotation": null}, {"text": "\u00b0", "start": 1067, "end": 1068, "id": 184, "annotation": null}, {"text": "C", "start": 1069, "end": 1070, "id": 185, "annotation": null}, {"text": ",", "start": 1071, "end": 1072, "id": 186, "annotation": null}, {"text": "the", "start": 1073, "end": 1076, "id": 187, "annotation": null}, {"text": "PLE", "start": 1077, "end": 1080, "id": 188, "annotation": null}, {"text": "intensity", "start": 1081, "end": 1090, "id": 189, "annotation": null}, {"text": "would", "start": 1091, "end": 1096, "id": 190, "annotation": null}, {"text": "decrease", "start": 1097, "end": 1105, "id": 191, "annotation": null}, {"text": ".", "start": 1106, "end": 1107, "id": 192, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The magnetic response expected from a state characterized by rotating antiferromagnetism in a neutron-scattering experiment is calculated. We predict the occurrence of a peak at the frequency of the rotation of the rotating antiferromagnetic order parameter. The doping dependence trends of this frequency are very similar to those of the frequency of the magnetic resonance observed in neutron-scattering experiments for the hole-doped high- T C cuprates. This leads us to propose the rotating antiferromagnetism as a possible mechanism for this magnetic resonance. Also, the interpretation of the rotating order parameter as a probability for a spin flip process to occur allows us to argue that the unusual zero momentum antiferromagnetic order observed by Fauqu\u00e9 et al. is equivalent to the rotating antiferromagnetism phenomenon. We conclude that while the magnitude of the rotating antiferromagnetic order parameter was previously proposed to be responsible for the pseudogap and the unusual thermodynamic and transport properties, the phase of the rotating order parameter is proposed here to be responsible for the unusual magnetic properties of the high- T C cuprate superconductors.", "meta": {"doi": "10.1016/j.physc.2014.11.001"}, "_input_hash": -591947155, "_task_hash": 831683661, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "magnetic", "start": 4, "end": 12, "id": 1, "annotation": null}, {"text": "response", "start": 13, "end": 21, "id": 2, "annotation": null}, {"text": "expected", "start": 22, "end": 30, "id": 3, "annotation": null}, {"text": "from", "start": 31, "end": 35, "id": 4, "annotation": null}, {"text": "a", "start": 36, "end": 37, "id": 5, "annotation": null}, {"text": "state", "start": 38, "end": 43, "id": 6, "annotation": null}, {"text": "characterized", "start": 44, "end": 57, "id": 7, "annotation": null}, {"text": "by", "start": 58, "end": 60, "id": 8, "annotation": null}, {"text": "rotating", "start": 61, "end": 69, "id": 9, "annotation": null}, {"text": "antiferromagnetism", "start": 70, "end": 88, "id": 10, "annotation": null}, {"text": "in", "start": 89, "end": 91, "id": 11, "annotation": null}, {"text": "a", "start": 92, "end": 93, "id": 12, "annotation": null}, {"text": "neutron", "start": 94, "end": 101, "id": 13, "annotation": null}, {"text": "-", "start": 102, "end": 103, "id": 14, "annotation": null}, {"text": "scattering", "start": 104, "end": 114, "id": 15, "annotation": null}, {"text": "experiment", "start": 115, "end": 125, "id": 16, "annotation": null}, {"text": "is", "start": 126, "end": 128, "id": 17, "annotation": null}, {"text": "calculated", "start": 129, "end": 139, "id": 18, "annotation": null}, {"text": ".", "start": 140, "end": 141, "id": 19, "annotation": null}], [{"text": "We", "start": 142, "end": 144, "id": 20, "annotation": null}, {"text": "predict", "start": 145, "end": 152, "id": 21, "annotation": null}, {"text": "the", "start": 153, "end": 156, "id": 22, "annotation": null}, {"text": "occurrence", "start": 157, "end": 167, "id": 23, "annotation": null}, {"text": "of", "start": 168, "end": 170, "id": 24, "annotation": null}, {"text": "a", "start": 171, "end": 172, "id": 25, "annotation": null}, {"text": "peak", "start": 173, "end": 177, "id": 26, "annotation": null}, {"text": "at", "start": 178, "end": 180, "id": 27, "annotation": null}, {"text": "the", "start": 181, "end": 184, "id": 28, "annotation": null}, {"text": "frequency", "start": 185, "end": 194, "id": 29, "annotation": null}, {"text": "of", "start": 195, "end": 197, "id": 30, "annotation": null}, {"text": "the", "start": 198, "end": 201, "id": 31, "annotation": null}, {"text": "rotation", "start": 202, "end": 210, "id": 32, "annotation": null}, {"text": "of", "start": 211, "end": 213, "id": 33, "annotation": null}, {"text": "the", "start": 214, "end": 217, "id": 34, "annotation": null}, {"text": "rotating", "start": 218, "end": 226, "id": 35, "annotation": null}, {"text": "antiferromagnetic", "start": 227, "end": 244, "id": 36, "annotation": null}, {"text": "order", "start": 245, "end": 250, "id": 37, "annotation": null}, {"text": "parameter", "start": 251, "end": 260, "id": 38, "annotation": null}, {"text": ".", "start": 261, "end": 262, "id": 39, "annotation": null}], [{"text": "The", "start": 263, "end": 266, "id": 40, "annotation": null}, {"text": "doping", "start": 267, "end": 273, "id": 41, "annotation": null}, {"text": "dependence", "start": 274, "end": 284, "id": 42, "annotation": null}, {"text": "trends", "start": 285, "end": 291, "id": 43, "annotation": null}, {"text": "of", "start": 292, "end": 294, "id": 44, "annotation": null}, {"text": "this", "start": 295, "end": 299, "id": 45, "annotation": null}, {"text": "frequency", "start": 300, "end": 309, "id": 46, "annotation": null}, {"text": "are", "start": 310, "end": 313, "id": 47, "annotation": null}, {"text": "very", "start": 314, "end": 318, "id": 48, "annotation": null}, {"text": "similar", "start": 319, "end": 326, "id": 49, "annotation": null}, {"text": "to", "start": 327, "end": 329, "id": 50, "annotation": null}, {"text": "those", "start": 330, "end": 335, "id": 51, "annotation": null}, {"text": "of", "start": 336, "end": 338, "id": 52, "annotation": null}, {"text": "the", "start": 339, "end": 342, "id": 53, "annotation": null}, {"text": "frequency", "start": 343, "end": 352, "id": 54, "annotation": null}, {"text": "of", "start": 353, "end": 355, "id": 55, "annotation": null}, {"text": "the", "start": 356, "end": 359, "id": 56, "annotation": null}, {"text": "magnetic", "start": 360, "end": 368, "id": 57, "annotation": null}, {"text": "resonance", "start": 369, "end": 378, "id": 58, "annotation": null}, {"text": "observed", "start": 379, "end": 387, "id": 59, "annotation": null}, {"text": "in", "start": 388, "end": 390, "id": 60, "annotation": null}, {"text": "neutron", "start": 391, "end": 398, "id": 61, "annotation": null}, {"text": "-", "start": 399, "end": 400, "id": 62, "annotation": null}, {"text": "scattering", "start": 401, "end": 411, "id": 63, "annotation": null}, {"text": "experiments", "start": 412, "end": 423, "id": 64, "annotation": null}, {"text": "for", "start": 424, "end": 427, "id": 65, "annotation": null}, {"text": "the", "start": 428, "end": 431, "id": 66, "annotation": null}, {"text": "hole", "start": 432, "end": 436, "id": 67, "annotation": "DOPANT"}, {"text": "-", "start": 437, "end": 438, "id": 68, "annotation": null}, {"text": "doped", "start": 439, "end": 444, "id": 69, "annotation": null}, {"text": "high-", "start": 445, "end": 450, "id": 70, "annotation": null}, {"text": "T", "start": 451, "end": 452, "id": 71, "annotation": null}, {"text": "C", "start": 453, "end": 454, "id": 72, "annotation": null}, {"text": "cuprates", "start": 455, "end": 463, "id": 73, "annotation": "BASEMAT"}, {"text": ".", "start": 464, "end": 465, "id": 74, "annotation": null}], [{"text": "This", "start": 466, "end": 470, "id": 75, "annotation": null}, {"text": "leads", "start": 471, "end": 476, "id": 76, "annotation": null}, {"text": "us", "start": 477, "end": 479, "id": 77, "annotation": null}, {"text": "to", "start": 480, "end": 482, "id": 78, "annotation": null}, {"text": "propose", "start": 483, "end": 490, "id": 79, "annotation": null}, {"text": "the", "start": 491, "end": 494, "id": 80, "annotation": null}, {"text": "rotating", "start": 495, "end": 503, "id": 81, "annotation": null}, {"text": "antiferromagnetism", "start": 504, "end": 522, "id": 82, "annotation": null}, {"text": "as", "start": 523, "end": 525, "id": 83, "annotation": null}, {"text": "a", "start": 526, "end": 527, "id": 84, "annotation": null}, {"text": "possible", "start": 528, "end": 536, "id": 85, "annotation": null}, {"text": "mechanism", "start": 537, "end": 546, "id": 86, "annotation": null}, {"text": "for", "start": 547, "end": 550, "id": 87, "annotation": null}, {"text": "this", "start": 551, "end": 555, "id": 88, "annotation": null}, {"text": "magnetic", "start": 556, "end": 564, "id": 89, "annotation": null}, {"text": "resonance", "start": 565, "end": 574, "id": 90, "annotation": null}, {"text": ".", "start": 575, "end": 576, "id": 91, "annotation": null}], [{"text": "Also", "start": 577, "end": 581, "id": 92, "annotation": null}, {"text": ",", "start": 582, "end": 583, "id": 93, "annotation": null}, {"text": "the", "start": 584, "end": 587, "id": 94, "annotation": null}, {"text": "interpretation", "start": 588, "end": 602, "id": 95, "annotation": null}, {"text": "of", "start": 603, "end": 605, "id": 96, "annotation": null}, {"text": "the", "start": 606, "end": 609, "id": 97, "annotation": null}, {"text": "rotating", "start": 610, "end": 618, "id": 98, "annotation": null}, {"text": "order", "start": 619, "end": 624, "id": 99, "annotation": null}, {"text": "parameter", "start": 625, "end": 634, "id": 100, "annotation": null}, {"text": "as", "start": 635, "end": 637, "id": 101, "annotation": null}, {"text": "a", "start": 638, "end": 639, "id": 102, "annotation": null}, {"text": "probability", "start": 640, "end": 651, "id": 103, "annotation": null}, {"text": "for", "start": 652, "end": 655, "id": 104, "annotation": null}, {"text": "a", "start": 656, "end": 657, "id": 105, "annotation": null}, {"text": "spin", "start": 658, "end": 662, "id": 106, "annotation": null}, {"text": "flip", "start": 663, "end": 667, "id": 107, "annotation": null}, {"text": "process", "start": 668, "end": 675, "id": 108, "annotation": null}, {"text": "to", "start": 676, "end": 678, "id": 109, "annotation": null}, {"text": "occur", "start": 679, "end": 684, "id": 110, "annotation": null}, {"text": "allows", "start": 685, "end": 691, "id": 111, "annotation": null}, {"text": "us", "start": 692, "end": 694, "id": 112, "annotation": null}, {"text": "to", "start": 695, "end": 697, "id": 113, "annotation": null}, {"text": "argue", "start": 698, "end": 703, "id": 114, "annotation": null}, {"text": "that", "start": 704, "end": 708, "id": 115, "annotation": null}, {"text": "the", "start": 709, "end": 712, "id": 116, "annotation": null}, {"text": "unusual", "start": 713, "end": 720, "id": 117, "annotation": null}, {"text": "zero", "start": 721, "end": 725, "id": 118, "annotation": null}, {"text": "momentum", "start": 726, "end": 734, "id": 119, "annotation": null}, {"text": "antiferromagnetic", "start": 735, "end": 752, "id": 120, "annotation": null}, {"text": "order", "start": 753, "end": 758, "id": 121, "annotation": null}, {"text": "observed", "start": 759, "end": 767, "id": 122, "annotation": null}, {"text": "by", "start": 768, "end": 770, "id": 123, "annotation": null}, {"text": "Fauqu\u00e9", "start": 771, "end": 777, "id": 124, "annotation": null}, {"text": "et", "start": 778, "end": 780, "id": 125, "annotation": null}, {"text": "al", "start": 781, "end": 783, "id": 126, "annotation": null}, {"text": ".", "start": 784, "end": 785, "id": 127, "annotation": null}], [{"text": "is", "start": 786, "end": 788, "id": 128, "annotation": null}, {"text": "equivalent", "start": 789, "end": 799, "id": 129, "annotation": null}, {"text": "to", "start": 800, "end": 802, "id": 130, "annotation": null}, {"text": "the", "start": 803, "end": 806, "id": 131, "annotation": null}, {"text": "rotating", "start": 807, "end": 815, "id": 132, "annotation": null}, {"text": "antiferromagnetism", "start": 816, "end": 834, "id": 133, "annotation": null}, {"text": "phenomenon", "start": 835, "end": 845, "id": 134, "annotation": null}, {"text": ".", "start": 846, "end": 847, "id": 135, "annotation": null}], [{"text": "We", "start": 848, "end": 850, "id": 136, "annotation": null}, {"text": "conclude", "start": 851, "end": 859, "id": 137, "annotation": null}, {"text": "that", "start": 860, "end": 864, "id": 138, "annotation": null}, {"text": "while", "start": 865, "end": 870, "id": 139, "annotation": null}, {"text": "the", "start": 871, "end": 874, "id": 140, "annotation": null}, {"text": "magnitude", "start": 875, "end": 884, "id": 141, "annotation": null}, {"text": "of", "start": 885, "end": 887, "id": 142, "annotation": null}, {"text": "the", "start": 888, "end": 891, "id": 143, "annotation": null}, {"text": "rotating", "start": 892, "end": 900, "id": 144, "annotation": null}, {"text": "antiferromagnetic", "start": 901, "end": 918, "id": 145, "annotation": null}, {"text": "order", "start": 919, "end": 924, "id": 146, "annotation": null}, {"text": "parameter", "start": 925, "end": 934, "id": 147, "annotation": null}, {"text": "was", "start": 935, "end": 938, "id": 148, "annotation": null}, {"text": "previously", "start": 939, "end": 949, "id": 149, "annotation": null}, {"text": "proposed", "start": 950, "end": 958, "id": 150, "annotation": null}, {"text": "to", "start": 959, "end": 961, "id": 151, "annotation": null}, {"text": "be", "start": 962, "end": 964, "id": 152, "annotation": null}, {"text": "responsible", "start": 965, "end": 976, "id": 153, "annotation": null}, {"text": "for", "start": 977, "end": 980, "id": 154, "annotation": null}, {"text": "the", "start": 981, "end": 984, "id": 155, "annotation": null}, {"text": "pseudogap", "start": 985, "end": 994, "id": 156, "annotation": null}, {"text": "and", "start": 995, "end": 998, "id": 157, "annotation": null}, {"text": "the", "start": 999, "end": 1002, "id": 158, "annotation": null}, {"text": "unusual", "start": 1003, "end": 1010, "id": 159, "annotation": null}, {"text": "thermodynamic", "start": 1011, "end": 1024, "id": 160, "annotation": null}, {"text": "and", "start": 1025, "end": 1028, "id": 161, "annotation": null}, {"text": "transport", "start": 1029, "end": 1038, "id": 162, "annotation": null}, {"text": "properties", "start": 1039, "end": 1049, "id": 163, "annotation": null}, {"text": ",", "start": 1050, "end": 1051, "id": 164, "annotation": null}, {"text": "the", "start": 1052, "end": 1055, "id": 165, "annotation": null}, {"text": "phase", "start": 1056, "end": 1061, "id": 166, "annotation": null}, {"text": "of", "start": 1062, "end": 1064, "id": 167, "annotation": null}, {"text": "the", "start": 1065, "end": 1068, "id": 168, "annotation": null}, {"text": "rotating", "start": 1069, "end": 1077, "id": 169, "annotation": null}, {"text": "order", "start": 1078, "end": 1083, "id": 170, "annotation": null}, {"text": "parameter", "start": 1084, "end": 1093, "id": 171, "annotation": null}, {"text": "is", "start": 1094, "end": 1096, "id": 172, "annotation": null}, {"text": "proposed", "start": 1097, "end": 1105, "id": 173, "annotation": null}, {"text": "here", "start": 1106, "end": 1110, "id": 174, "annotation": null}, {"text": "to", "start": 1111, "end": 1113, "id": 175, "annotation": null}, {"text": "be", "start": 1114, "end": 1116, "id": 176, "annotation": null}, {"text": "responsible", "start": 1117, "end": 1128, "id": 177, "annotation": null}, {"text": "for", "start": 1129, "end": 1132, "id": 178, "annotation": null}, {"text": "the", "start": 1133, "end": 1136, "id": 179, "annotation": null}, {"text": "unusual", "start": 1137, "end": 1144, "id": 180, "annotation": null}, {"text": "magnetic", "start": 1145, "end": 1153, "id": 181, "annotation": null}, {"text": "properties", "start": 1154, "end": 1164, "id": 182, "annotation": null}, {"text": "of", "start": 1165, "end": 1167, "id": 183, "annotation": null}, {"text": "the", "start": 1168, "end": 1171, "id": 184, "annotation": null}, {"text": "high-", "start": 1172, "end": 1177, "id": 185, "annotation": null}, {"text": "T", "start": 1178, "end": 1179, "id": 186, "annotation": null}, {"text": "C", "start": 1180, "end": 1181, "id": 187, "annotation": null}, {"text": "cuprate", "start": 1182, "end": 1189, "id": 188, "annotation": null}, {"text": "superconductors", "start": 1190, "end": 1205, "id": 189, "annotation": null}, {"text": ".", "start": 1206, "end": 1207, "id": 190, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt2", "text": "Pore growth on n-type InP(100) can be electrochemically initiated in HCl and HF solutions by polarizing the material anodic to a critical potential value\u2014the pore formation potential (PFP). At surface defects however, the PFP is significantly lower (shifted cathodically). This is evident from simple scratch experiments as well as experiments using focused ion beam (FIB) implantation of Si2+ to write defined surface damage/implant patterns into n-type InP(100) substrates. These implant sites represent initiation sites for the onset of dissolution processes. Selective pore formation within the implant patterns is achieved if polarization of the n-type material is carried out anodic to the PFP corresponding to defects but cathodic to the PFP of the unimplanted surface. Furthermore, it is shown that the pore morphology depends strongly on the type of halogen acid present in the electrolyte. Scanning AES images show that the composition of the porous layers is strongly altered from the bulk composition.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Pore", "start": 0, "end": 4, "annotation": null}, {"text": "growth", "start": 5, "end": 11, "annotation": null}, {"text": "on", "start": 12, "end": 14, "annotation": null}, {"text": "n", "start": 15, "end": 16, "annotation": "DOPANT"}, {"text": "-", "start": 16, "end": 17, "annotation": "DOPANT"}, {"text": "type", "start": 17, "end": 21, "annotation": "DOPANT"}, {"text": "InP(100)", "start": 22, "end": 30, "annotation": "BASEMAT"}, {"text": "can", "start": 31, "end": 34, "annotation": null}, {"text": "be", "start": 35, "end": 37, "annotation": null}, {"text": "electrochemically", "start": 38, "end": 55, "annotation": null}, {"text": "initiated", "start": 56, "end": 65, "annotation": null}, {"text": "in", "start": 66, "end": 68, "annotation": null}, {"text": "HCl", "start": 69, "end": 72, "annotation": null}, {"text": "and", "start": 73, "end": 76, "annotation": null}, {"text": "HF", "start": 77, "end": 79, "annotation": null}, {"text": "solutions", "start": 80, "end": 89, "annotation": null}, {"text": "by", "start": 90, "end": 92, "annotation": null}, {"text": "polarizing", "start": 93, "end": 103, "annotation": null}, {"text": "the", "start": 104, "end": 107, "annotation": null}, {"text": "material", "start": 108, "end": 116, "annotation": null}, {"text": "anodic", "start": 117, "end": 123, "annotation": null}, {"text": "to", "start": 124, "end": 126, "annotation": null}, {"text": "a", "start": 127, "end": 128, "annotation": null}, {"text": "critical", "start": 129, "end": 137, "annotation": null}, {"text": "potential", "start": 138, "end": 147, "annotation": null}, {"text": "value", "start": 148, "end": 153, "annotation": null}, {"text": "\u2014", "start": 153, "end": 154, "annotation": null}, {"text": "the", "start": 154, "end": 157, "annotation": null}, {"text": "pore", "start": 158, "end": 162, "annotation": null}, {"text": "formation", "start": 163, "end": 172, "annotation": null}, {"text": "potential", "start": 173, "end": 182, "annotation": null}, {"text": "(", "start": 183, "end": 184, "annotation": null}, {"text": "PFP", "start": 184, "end": 187, "annotation": null}, {"text": ")", "start": 187, "end": 188, "annotation": null}, {"text": ".", "start": 188, "end": 189, "annotation": null}], [{"text": "At", "start": 190, "end": 192, "annotation": null}, {"text": "surface", "start": 193, "end": 200, "annotation": null}, {"text": "defects", "start": 201, "end": 208, "annotation": null}, {"text": "however", "start": 209, "end": 216, "annotation": null}, {"text": ",", "start": 216, "end": 217, "annotation": null}, {"text": "the", "start": 218, "end": 221, "annotation": null}, {"text": "PFP", "start": 222, "end": 225, "annotation": null}, {"text": "is", "start": 226, "end": 228, "annotation": null}, {"text": "significantly", "start": 229, "end": 242, "annotation": null}, {"text": "lower", "start": 243, "end": 248, "annotation": null}, {"text": "(", "start": 249, "end": 250, "annotation": null}, {"text": "shifted", "start": 250, "end": 257, "annotation": null}, {"text": "cathodically", "start": 258, "end": 270, "annotation": null}, {"text": ")", "start": 270, "end": 271, "annotation": null}, {"text": ".", "start": 271, "end": 272, "annotation": null}], [{"text": "This", "start": 273, "end": 277, "annotation": null}, {"text": "is", "start": 278, "end": 280, "annotation": null}, {"text": "evident", "start": 281, "end": 288, "annotation": null}, {"text": "from", "start": 289, "end": 293, "annotation": null}, {"text": "simple", "start": 294, "end": 300, "annotation": null}, {"text": "scratch", "start": 301, "end": 308, "annotation": null}, {"text": "experiments", "start": 309, "end": 320, "annotation": null}, {"text": "as", "start": 321, "end": 323, "annotation": null}, {"text": "well", "start": 324, "end": 328, "annotation": null}, {"text": "as", "start": 329, "end": 331, "annotation": null}, {"text": "experiments", "start": 332, "end": 343, "annotation": null}, {"text": "using", "start": 344, "end": 349, "annotation": null}, {"text": "focused", "start": 350, "end": 357, "annotation": null}, {"text": "ion", "start": 358, "end": 361, "annotation": null}, {"text": "beam", "start": 362, "end": 366, "annotation": null}, {"text": "(", "start": 367, "end": 368, "annotation": null}, {"text": "FIB", "start": 368, "end": 371, "annotation": null}, {"text": ")", "start": 371, "end": 372, "annotation": null}, {"text": "implantation", "start": 373, "end": 385, "annotation": null}, {"text": "of", "start": 386, "end": 388, "annotation": null}, {"text": "Si2+", "start": 389, "end": 393, "annotation": "DOPANT"}, {"text": "to", "start": 394, "end": 396, "annotation": null}, {"text": "write", "start": 397, "end": 402, "annotation": null}, {"text": "defined", "start": 403, "end": 410, "annotation": null}, {"text": "surface", "start": 411, "end": 418, "annotation": null}, {"text": "damage", "start": 419, "end": 425, "annotation": null}, {"text": "/", "start": 425, "end": 426, "annotation": null}, {"text": "implant", "start": 426, "end": 433, "annotation": null}, {"text": "patterns", "start": 434, "end": 442, "annotation": null}, {"text": "into", "start": 443, "end": 447, "annotation": null}, {"text": "n", "start": 448, "end": 449, "annotation": "DOPANT"}, {"text": "-", "start": 449, "end": 450, "annotation": "DOPANT"}, {"text": "type", "start": 450, "end": 454, "annotation": "DOPANT"}, {"text": "InP(100)", "start": 455, "end": 463, "annotation": "BASEMAT"}, {"text": "substrates", "start": 464, "end": 474, "annotation": null}, {"text": ".", "start": 474, "end": 475, "annotation": null}], [{"text": "These", "start": 476, "end": 481, "annotation": null}, {"text": "implant", "start": 482, "end": 489, "annotation": null}, {"text": "sites", "start": 490, "end": 495, "annotation": null}, {"text": "represent", "start": 496, "end": 505, "annotation": null}, {"text": "initiation", "start": 506, "end": 516, "annotation": null}, {"text": "sites", "start": 517, "end": 522, "annotation": null}, {"text": "for", "start": 523, "end": 526, "annotation": null}, {"text": "the", "start": 527, "end": 530, "annotation": null}, {"text": "onset", "start": 531, "end": 536, "annotation": null}, {"text": "of", "start": 537, "end": 539, "annotation": null}, {"text": "dissolution", "start": 540, "end": 551, "annotation": null}, {"text": "processes", "start": 552, "end": 561, "annotation": null}, {"text": ".", "start": 561, "end": 562, "annotation": null}], [{"text": "Selective", "start": 563, "end": 572, "annotation": null}, {"text": "pore", "start": 573, "end": 577, "annotation": null}, {"text": "formation", "start": 578, "end": 587, "annotation": null}, {"text": "within", "start": 588, "end": 594, "annotation": null}, {"text": "the", "start": 595, "end": 598, "annotation": null}, {"text": "implant", "start": 599, "end": 606, "annotation": null}, {"text": "patterns", "start": 607, "end": 615, "annotation": null}, {"text": "is", "start": 616, "end": 618, "annotation": null}, {"text": "achieved", "start": 619, "end": 627, "annotation": null}, {"text": "if", "start": 628, "end": 630, "annotation": null}, {"text": "polarization", "start": 631, "end": 643, "annotation": null}, {"text": "of", "start": 644, "end": 646, "annotation": null}, {"text": "the", "start": 647, "end": 650, "annotation": null}, {"text": "n", "start": 651, "end": 652, "annotation": "DOPANT"}, {"text": "-", "start": 652, "end": 653, "annotation": "DOPANT"}, {"text": "type", "start": 653, "end": 657, "annotation": "DOPANT"}, {"text": "material", "start": 658, "end": 666, "annotation": "BASEMAT"}, {"text": "is", "start": 667, "end": 669, "annotation": null}, {"text": "carried", "start": 670, "end": 677, "annotation": null}, {"text": "out", "start": 678, "end": 681, "annotation": null}, {"text": "anodic", "start": 682, "end": 688, "annotation": null}, {"text": "to", "start": 689, "end": 691, "annotation": null}, {"text": "the", "start": 692, "end": 695, "annotation": null}, {"text": "PFP", "start": 696, "end": 699, "annotation": null}, {"text": "corresponding", "start": 700, "end": 713, "annotation": null}, {"text": "to", "start": 714, "end": 716, "annotation": null}, {"text": "defects", "start": 717, "end": 724, "annotation": null}, {"text": "but", "start": 725, "end": 728, "annotation": null}, {"text": "cathodic", "start": 729, "end": 737, "annotation": null}, {"text": "to", "start": 738, "end": 740, "annotation": null}, {"text": "the", "start": 741, "end": 744, "annotation": null}, {"text": "PFP", "start": 745, "end": 748, "annotation": null}, {"text": "of", "start": 749, "end": 751, "annotation": null}, {"text": "the", "start": 752, "end": 755, "annotation": null}, {"text": "unimplanted", "start": 756, "end": 767, "annotation": null}, {"text": "surface", "start": 768, "end": 775, "annotation": null}, {"text": ".", "start": 775, "end": 776, "annotation": null}], [{"text": "Furthermore", "start": 777, "end": 788, "annotation": null}, {"text": ",", "start": 788, "end": 789, "annotation": null}, {"text": "it", "start": 790, "end": 792, "annotation": null}, {"text": "is", "start": 793, "end": 795, "annotation": null}, {"text": "shown", "start": 796, "end": 801, "annotation": null}, {"text": "that", "start": 802, "end": 806, "annotation": null}, {"text": "the", "start": 807, "end": 810, "annotation": null}, {"text": "pore", "start": 811, "end": 815, "annotation": null}, {"text": "morphology", "start": 816, "end": 826, "annotation": null}, {"text": "depends", "start": 827, "end": 834, "annotation": null}, {"text": "strongly", "start": 835, "end": 843, "annotation": null}, {"text": "on", "start": 844, "end": 846, "annotation": null}, {"text": "the", "start": 847, "end": 850, "annotation": null}, {"text": "type", "start": 851, "end": 855, "annotation": null}, {"text": "of", "start": 856, "end": 858, "annotation": null}, {"text": "halogen", "start": 859, "end": 866, "annotation": null}, {"text": "acid", "start": 867, "end": 871, "annotation": null}, {"text": "present", "start": 872, "end": 879, "annotation": null}, {"text": "in", "start": 880, "end": 882, "annotation": null}, {"text": "the", "start": 883, "end": 886, "annotation": null}, {"text": "electrolyte", "start": 887, "end": 898, "annotation": null}, {"text": ".", "start": 898, "end": 899, "annotation": null}], [{"text": "Scanning", "start": 900, "end": 908, "annotation": null}, {"text": "AES", "start": 909, "end": 912, "annotation": null}, {"text": "images", "start": 913, "end": 919, "annotation": null}, {"text": "show", "start": 920, "end": 924, "annotation": null}, {"text": "that", "start": 925, "end": 929, "annotation": null}, {"text": "the", "start": 930, "end": 933, "annotation": null}, {"text": "composition", "start": 934, "end": 945, "annotation": null}, {"text": "of", "start": 946, "end": 948, "annotation": null}, {"text": "the", "start": 949, "end": 952, "annotation": null}, {"text": "porous", "start": 953, "end": 959, "annotation": null}, {"text": "layers", "start": 960, "end": 966, "annotation": null}, {"text": "is", "start": 967, "end": 969, "annotation": null}, {"text": "strongly", "start": 970, "end": 978, "annotation": null}, {"text": "altered", "start": 979, "end": 986, "annotation": null}, {"text": "from", "start": 987, "end": 991, "annotation": null}, {"text": "the", "start": 992, "end": 995, "annotation": null}, {"text": "bulk", "start": 996, "end": 1000, "annotation": null}, {"text": "composition", "start": 1001, "end": 1012, "annotation": null}, {"text": ".", "start": 1012, "end": 1013, "annotation": null}]]} -{"remark": "doping_annt1", "text": "Coulometric determination of arsenic was made to evaluate the stoichiometry of undoped semi-insulating GaAs crystals grown by liquid-encapsulated Czochralski technique. The measurement was made by using the stoichiometric reaction of arsenious acid with electrogenerated iodine. The pretreatment procedures such as the reduction to As(III) and the improvement in recovery were investigated in detail. The typical standard deviation based on this work is about 0.001 in terms of arsenic atom fraction. The measured value of As atom fraction was found to increase with increase in the As atom fraction in the melts depending on the melt composition. It was also found that standard deviation \u00f8f the measured values in each crystal increases as the melt composition becomes Ga-rich. This fact suggests that the scatter in the measured values reflects an actual inhomogeneity in GaAs such as Ga precipitates. \u00a9 1987, The Electrochemical Society, Inc. All rights reserved.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Coulometric", "start": 0, "end": 11, "annotation": null}, {"text": "determination", "start": 12, "end": 25, "annotation": null}, {"text": "of", "start": 26, "end": 28, "annotation": null}, {"text": "arsenic", "start": 29, "end": 36, "annotation": null}, {"text": "was", "start": 37, "end": 40, "annotation": null}, {"text": "made", "start": 41, "end": 45, "annotation": null}, {"text": "to", "start": 46, "end": 48, "annotation": null}, {"text": "evaluate", "start": 49, "end": 57, "annotation": null}, {"text": "the", "start": 58, "end": 61, "annotation": null}, {"text": "stoichiometry", "start": 62, "end": 75, "annotation": null}, {"text": "of", "start": 76, "end": 78, "annotation": null}, {"text": "undoped", "start": 79, "end": 86, "annotation": "DOPANT"}, {"text": "semi-insulating", "start": 87, "end": 102, "annotation": null}, {"text": "GaAs", "start": 103, "end": 107, "annotation": "BASEMAT"}, {"text": "crystals", "start": 108, "end": 116, "annotation": null}, {"text": "grown", "start": 117, "end": 122, "annotation": null}, {"text": "by", "start": 123, "end": 125, "annotation": null}, {"text": "liquid", "start": 126, "end": 132, "annotation": null}, {"text": "-", "start": 132, "end": 133, "annotation": null}, {"text": "encapsulated", "start": 133, "end": 145, "annotation": null}, {"text": "Czochralski", "start": 146, "end": 157, "annotation": null}, {"text": "technique", "start": 158, "end": 167, "annotation": null}, {"text": ".", "start": 167, "end": 168, "annotation": null}], [{"text": "The", "start": 169, "end": 172, "annotation": null}, {"text": "measurement", "start": 173, "end": 184, "annotation": null}, {"text": "was", "start": 185, "end": 188, "annotation": null}, {"text": "made", "start": 189, "end": 193, "annotation": null}, {"text": "by", "start": 194, "end": 196, "annotation": null}, {"text": "using", "start": 197, "end": 202, "annotation": null}, {"text": "the", "start": 203, "end": 206, "annotation": null}, {"text": "stoichiometric", "start": 207, "end": 221, "annotation": null}, {"text": "reaction", "start": 222, "end": 230, "annotation": null}, {"text": "of", "start": 231, "end": 233, "annotation": null}, {"text": "arsenious", "start": 234, "end": 243, "annotation": null}, {"text": "acid", "start": 244, "end": 248, "annotation": null}, {"text": "with", "start": 249, "end": 253, "annotation": null}, {"text": "electrogenerated", "start": 254, "end": 270, "annotation": null}, {"text": "iodine", "start": 271, "end": 277, "annotation": null}, {"text": ".", "start": 277, "end": 278, "annotation": null}], [{"text": "The", "start": 279, "end": 282, "annotation": null}, {"text": "pretreatment", "start": 283, "end": 295, "annotation": null}, {"text": "procedures", "start": 296, "end": 306, "annotation": null}, {"text": "such", "start": 307, "end": 311, "annotation": null}, {"text": "as", "start": 312, "end": 314, "annotation": null}, {"text": "the", "start": 315, "end": 318, "annotation": null}, {"text": "reduction", "start": 319, "end": 328, "annotation": null}, {"text": "to", "start": 329, "end": 331, "annotation": null}, {"text": "As(III)", "start": 332, "end": 339, "annotation": null}, {"text": "and", "start": 340, "end": 343, "annotation": null}, {"text": "the", "start": 344, "end": 347, "annotation": null}, {"text": "improvement", "start": 348, "end": 359, "annotation": null}, {"text": "in", "start": 360, "end": 362, "annotation": null}, {"text": "recovery", "start": 363, "end": 371, "annotation": null}, {"text": "were", "start": 372, "end": 376, "annotation": null}, {"text": "investigated", "start": 377, "end": 389, "annotation": null}, {"text": "in", "start": 390, "end": 392, "annotation": null}, {"text": "detail", "start": 393, "end": 399, "annotation": null}, {"text": ".", "start": 399, "end": 400, "annotation": null}], [{"text": "The", "start": 401, "end": 404, "annotation": null}, {"text": "typical", "start": 405, "end": 412, "annotation": null}, {"text": "standard", "start": 413, "end": 421, "annotation": null}, {"text": "deviation", "start": 422, "end": 431, "annotation": null}, {"text": "based", "start": 432, "end": 437, "annotation": null}, {"text": "on", "start": 438, "end": 440, "annotation": null}, {"text": "this", "start": 441, "end": 445, "annotation": null}, {"text": "work", "start": 446, "end": 450, "annotation": null}, {"text": "is", "start": 451, "end": 453, "annotation": null}, {"text": "about", "start": 454, "end": 459, "annotation": null}, {"text": "0.001", "start": 460, "end": 465, "annotation": null}, {"text": "in", "start": 466, "end": 468, "annotation": null}, {"text": "terms", "start": 469, "end": 474, "annotation": null}, {"text": "of", "start": 475, "end": 477, "annotation": null}, {"text": "arsenic", "start": 478, "end": 485, "annotation": null}, {"text": "atom", "start": 486, "end": 490, "annotation": null}, {"text": "fraction", "start": 491, "end": 499, "annotation": null}, {"text": ".", "start": 499, "end": 500, "annotation": null}], [{"text": "The", "start": 501, "end": 504, "annotation": null}, {"text": "measured", "start": 505, "end": 513, "annotation": null}, {"text": "value", "start": 514, "end": 519, "annotation": null}, {"text": "of", "start": 520, "end": 522, "annotation": null}, {"text": "As", "start": 523, "end": 525, "annotation": null}, {"text": "atom", "start": 526, "end": 530, "annotation": null}, {"text": "fraction", "start": 531, "end": 539, "annotation": null}, {"text": "was", "start": 540, "end": 543, "annotation": null}, {"text": "found", "start": 544, "end": 549, "annotation": null}, {"text": "to", "start": 550, "end": 552, "annotation": null}, {"text": "increase", "start": 553, "end": 561, "annotation": null}, {"text": "with", "start": 562, "end": 566, "annotation": null}, {"text": "increase", "start": 567, "end": 575, "annotation": null}, {"text": "in", "start": 576, "end": 578, "annotation": null}, {"text": "the", "start": 579, "end": 582, "annotation": null}, {"text": "As", "start": 583, "end": 585, "annotation": null}, {"text": "atom", "start": 586, "end": 590, "annotation": null}, {"text": "fraction", "start": 591, "end": 599, "annotation": null}, {"text": "in", "start": 600, "end": 602, "annotation": null}, {"text": "the", "start": 603, "end": 606, "annotation": null}, {"text": "melts", "start": 607, "end": 612, "annotation": null}, {"text": "depending", "start": 613, "end": 622, "annotation": null}, {"text": "on", "start": 623, "end": 625, "annotation": null}, {"text": "the", "start": 626, "end": 629, "annotation": null}, {"text": "melt", "start": 630, "end": 634, "annotation": null}, {"text": "composition", "start": 635, "end": 646, "annotation": null}, {"text": ".", "start": 646, "end": 647, "annotation": null}], [{"text": "It", "start": 648, "end": 650, "annotation": null}, {"text": "was", "start": 651, "end": 654, "annotation": null}, {"text": "also", "start": 655, "end": 659, "annotation": null}, {"text": "found", "start": 660, "end": 665, "annotation": null}, {"text": "that", "start": 666, "end": 670, "annotation": null}, {"text": "standard", "start": 671, "end": 679, "annotation": null}, {"text": "deviation", "start": 680, "end": 689, "annotation": null}, {"text": "\u00f8f", "start": 690, "end": 692, "annotation": null}, {"text": "the", "start": 693, "end": 696, "annotation": null}, {"text": "measured", "start": 697, "end": 705, "annotation": null}, {"text": "values", "start": 706, "end": 712, "annotation": null}, {"text": "in", "start": 713, "end": 715, "annotation": null}, {"text": "each", "start": 716, "end": 720, "annotation": null}, {"text": "crystal", "start": 721, "end": 728, "annotation": null}, {"text": "increases", "start": 729, "end": 738, "annotation": null}, {"text": "as", "start": 739, "end": 741, "annotation": null}, {"text": "the", "start": 742, "end": 745, "annotation": null}, {"text": "melt", "start": 746, "end": 750, "annotation": null}, {"text": "composition", "start": 751, "end": 762, "annotation": null}, {"text": "becomes", "start": 763, "end": 770, "annotation": null}, {"text": "Ga", "start": 771, "end": 773, "annotation": null}, {"text": "-", "start": 773, "end": 774, "annotation": null}, {"text": "rich", "start": 774, "end": 778, "annotation": null}, {"text": ".", "start": 778, "end": 779, "annotation": null}], [{"text": "This", "start": 780, "end": 784, "annotation": null}, {"text": "fact", "start": 785, "end": 789, "annotation": null}, {"text": "suggests", "start": 790, "end": 798, "annotation": null}, {"text": "that", "start": 799, "end": 803, "annotation": null}, {"text": "the", "start": 804, "end": 807, "annotation": null}, {"text": "scatter", "start": 808, "end": 815, "annotation": null}, {"text": "in", "start": 816, "end": 818, "annotation": null}, {"text": "the", "start": 819, "end": 822, "annotation": null}, {"text": "measured", "start": 823, "end": 831, "annotation": null}, {"text": "values", "start": 832, "end": 838, "annotation": null}, {"text": "reflects", "start": 839, "end": 847, "annotation": null}, {"text": "an", "start": 848, "end": 850, "annotation": null}, {"text": "actual", "start": 851, "end": 857, "annotation": null}, {"text": "inhomogeneity", "start": 858, "end": 871, "annotation": null}, {"text": "in", "start": 872, "end": 874, "annotation": null}, {"text": "GaAs", "start": 875, "end": 879, "annotation": null}, {"text": "such", "start": 880, "end": 884, "annotation": null}, {"text": "as", "start": 885, "end": 887, "annotation": null}, {"text": "Ga", "start": 888, "end": 890, "annotation": null}, {"text": "precipitates", "start": 891, "end": 903, "annotation": null}, {"text": ".", "start": 903, "end": 904, "annotation": null}], [{"text": "All", "start": 947, "end": 950, "annotation": null}, {"text": "rights", "start": 951, "end": 957, "annotation": null}, {"text": "reserved", "start": 958, "end": 966, "annotation": null}, {"text": ".", "start": 966, "end": 967, "annotation": null}]]} +{"remark": "doping_annt2", "text": "Pore growth on n-type InP(100) can be electrochemically initiated in HCl and HF solutions by polarizing the material anodic to a critical potential value\u2014the pore formation potential (PFP). At surface defects however, the PFP is significantly lower (shifted cathodically). This is evident from simple scratch experiments as well as experiments using focused ion beam (FIB) implantation of Si2+ to write defined surface damage/implant patterns into n-type InP(100) substrates. These implant sites represent initiation sites for the onset of dissolution processes. Selective pore formation within the implant patterns is achieved if polarization of the n-type material is carried out anodic to the PFP corresponding to defects but cathodic to the PFP of the unimplanted surface. Furthermore, it is shown that the pore morphology depends strongly on the type of halogen acid present in the electrolyte. Scanning AES images show that the composition of the porous layers is strongly altered from the bulk composition.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Pore", "start": 0, "end": 4, "annotation": null}, {"text": "growth", "start": 5, "end": 11, "annotation": null}, {"text": "on", "start": 12, "end": 14, "annotation": null}, {"text": "n", "start": 15, "end": 16, "annotation": "DOPANT"}, {"text": "-", "start": 16, "end": 17, "annotation": "DOPANT"}, {"text": "type", "start": 17, "end": 21, "annotation": "DOPANT"}, {"text": "InP(100)", "start": 22, "end": 30, "annotation": "BASEMAT"}, {"text": "can", "start": 31, "end": 34, "annotation": null}, {"text": "be", "start": 35, "end": 37, "annotation": null}, {"text": "electrochemically", "start": 38, "end": 55, "annotation": null}, {"text": "initiated", "start": 56, "end": 65, "annotation": null}, {"text": "in", "start": 66, "end": 68, "annotation": null}, {"text": "HCl", "start": 69, "end": 72, "annotation": null}, {"text": "and", "start": 73, "end": 76, "annotation": null}, {"text": "HF", "start": 77, "end": 79, "annotation": null}, {"text": "solutions", "start": 80, "end": 89, "annotation": null}, {"text": "by", "start": 90, "end": 92, "annotation": null}, {"text": "polarizing", "start": 93, "end": 103, "annotation": null}, {"text": "the", "start": 104, "end": 107, "annotation": null}, {"text": "material", "start": 108, "end": 116, "annotation": null}, {"text": "anodic", "start": 117, "end": 123, "annotation": null}, {"text": "to", "start": 124, "end": 126, "annotation": null}, {"text": "a", "start": 127, "end": 128, "annotation": null}, {"text": "critical", "start": 129, "end": 137, "annotation": null}, {"text": "potential", "start": 138, "end": 147, "annotation": null}, {"text": "value", "start": 148, "end": 153, "annotation": null}, {"text": "\u2014", "start": 153, "end": 154, "annotation": null}, {"text": "the", "start": 154, "end": 157, "annotation": null}, {"text": "pore", "start": 158, "end": 162, "annotation": null}, {"text": "formation", "start": 163, "end": 172, "annotation": null}, {"text": "potential", "start": 173, "end": 182, "annotation": null}, {"text": "(", "start": 183, "end": 184, "annotation": null}, {"text": "PFP", "start": 184, "end": 187, "annotation": null}, {"text": ")", "start": 187, "end": 188, "annotation": null}, {"text": ".", "start": 188, "end": 189, "annotation": null}], [{"text": "At", "start": 190, "end": 192, "annotation": null}, {"text": "surface", "start": 193, "end": 200, "annotation": null}, {"text": "defects", "start": 201, "end": 208, "annotation": null}, {"text": "however", "start": 209, "end": 216, "annotation": null}, {"text": ",", "start": 216, "end": 217, "annotation": null}, {"text": "the", "start": 218, "end": 221, "annotation": null}, {"text": "PFP", "start": 222, "end": 225, "annotation": null}, {"text": "is", "start": 226, "end": 228, "annotation": null}, {"text": "significantly", "start": 229, "end": 242, "annotation": null}, {"text": "lower", "start": 243, "end": 248, "annotation": null}, {"text": "(", "start": 249, "end": 250, "annotation": null}, {"text": "shifted", "start": 250, "end": 257, "annotation": null}, {"text": "cathodically", "start": 258, "end": 270, "annotation": null}, {"text": ")", "start": 270, "end": 271, "annotation": null}, {"text": ".", "start": 271, "end": 272, "annotation": null}], [{"text": "This", "start": 273, "end": 277, "annotation": null}, {"text": "is", "start": 278, "end": 280, "annotation": null}, {"text": "evident", "start": 281, "end": 288, "annotation": null}, {"text": "from", "start": 289, "end": 293, "annotation": null}, {"text": "simple", "start": 294, "end": 300, "annotation": null}, {"text": "scratch", "start": 301, "end": 308, "annotation": null}, {"text": "experiments", "start": 309, "end": 320, "annotation": null}, {"text": "as", "start": 321, "end": 323, "annotation": null}, {"text": "well", "start": 324, "end": 328, "annotation": null}, {"text": "as", "start": 329, "end": 331, "annotation": null}, {"text": "experiments", "start": 332, "end": 343, "annotation": null}, {"text": "using", "start": 344, "end": 349, "annotation": null}, {"text": "focused", "start": 350, "end": 357, "annotation": null}, {"text": "ion", "start": 358, "end": 361, "annotation": null}, {"text": "beam", "start": 362, "end": 366, "annotation": null}, {"text": "(", "start": 367, "end": 368, "annotation": null}, {"text": "FIB", "start": 368, "end": 371, "annotation": null}, {"text": ")", "start": 371, "end": 372, "annotation": null}, {"text": "implantation", "start": 373, "end": 385, "annotation": null}, {"text": "of", "start": 386, "end": 388, "annotation": null}, {"text": "Si2+", "start": 389, "end": 393, "annotation": "DOPANT"}, {"text": "to", "start": 394, "end": 396, "annotation": null}, {"text": "write", "start": 397, "end": 402, "annotation": null}, {"text": "defined", "start": 403, "end": 410, "annotation": null}, {"text": "surface", "start": 411, "end": 418, "annotation": null}, {"text": "damage", "start": 419, "end": 425, "annotation": null}, {"text": "/", "start": 425, "end": 426, "annotation": null}, {"text": "implant", "start": 426, "end": 433, "annotation": null}, {"text": "patterns", "start": 434, "end": 442, "annotation": null}, {"text": "into", "start": 443, "end": 447, "annotation": null}, {"text": "n", "start": 448, "end": 449, "annotation": "DOPANT"}, {"text": "-", "start": 449, "end": 450, "annotation": "DOPANT"}, {"text": "type", "start": 450, "end": 454, "annotation": "DOPANT"}, {"text": "InP(100)", "start": 455, "end": 463, "annotation": "BASEMAT"}, {"text": "substrates", "start": 464, "end": 474, "annotation": null}, {"text": ".", "start": 474, "end": 475, "annotation": null}], [{"text": "These", "start": 476, "end": 481, "annotation": null}, {"text": "implant", "start": 482, "end": 489, "annotation": null}, {"text": "sites", "start": 490, "end": 495, "annotation": null}, {"text": "represent", "start": 496, "end": 505, "annotation": null}, {"text": "initiation", "start": 506, "end": 516, "annotation": null}, {"text": "sites", "start": 517, "end": 522, "annotation": null}, {"text": "for", "start": 523, "end": 526, "annotation": null}, {"text": "the", "start": 527, "end": 530, "annotation": null}, {"text": "onset", "start": 531, "end": 536, "annotation": null}, {"text": "of", "start": 537, "end": 539, "annotation": null}, {"text": "dissolution", "start": 540, "end": 551, "annotation": null}, {"text": "processes", "start": 552, "end": 561, "annotation": null}, {"text": ".", "start": 561, "end": 562, "annotation": null}], [{"text": "Selective", "start": 563, "end": 572, "annotation": null}, {"text": "pore", "start": 573, "end": 577, "annotation": null}, {"text": "formation", "start": 578, "end": 587, "annotation": null}, {"text": "within", "start": 588, "end": 594, "annotation": null}, {"text": "the", "start": 595, "end": 598, "annotation": null}, {"text": "implant", "start": 599, "end": 606, "annotation": null}, {"text": "patterns", "start": 607, "end": 615, "annotation": null}, {"text": "is", "start": 616, "end": 618, "annotation": null}, {"text": "achieved", "start": 619, "end": 627, "annotation": null}, {"text": "if", "start": 628, "end": 630, "annotation": null}, {"text": "polarization", "start": 631, "end": 643, "annotation": null}, {"text": "of", "start": 644, "end": 646, "annotation": null}, {"text": "the", "start": 647, "end": 650, "annotation": null}, {"text": "n", "start": 651, "end": 652, "annotation": "DOPANT"}, {"text": "-", "start": 652, "end": 653, "annotation": "DOPANT"}, {"text": "type", "start": 653, "end": 657, "annotation": "DOPANT"}, {"text": "material", "start": 658, "end": 666, "annotation": "BASEMAT"}, {"text": "is", "start": 667, "end": 669, "annotation": null}, {"text": "carried", "start": 670, "end": 677, "annotation": null}, {"text": "out", "start": 678, "end": 681, "annotation": null}, {"text": "anodic", "start": 682, "end": 688, "annotation": null}, {"text": "to", "start": 689, "end": 691, "annotation": null}, {"text": "the", "start": 692, "end": 695, "annotation": null}, {"text": "PFP", "start": 696, "end": 699, "annotation": null}, {"text": "corresponding", "start": 700, "end": 713, "annotation": null}, {"text": "to", "start": 714, "end": 716, "annotation": null}, {"text": "defects", "start": 717, "end": 724, "annotation": null}, {"text": "but", "start": 725, "end": 728, "annotation": null}, {"text": "cathodic", "start": 729, "end": 737, "annotation": null}, {"text": "to", "start": 738, "end": 740, "annotation": null}, {"text": "the", "start": 741, "end": 744, "annotation": null}, {"text": "PFP", "start": 745, "end": 748, "annotation": null}, {"text": "of", "start": 749, "end": 751, "annotation": null}, {"text": "the", "start": 752, "end": 755, "annotation": null}, {"text": "unimplanted", "start": 756, "end": 767, "annotation": null}, {"text": "surface", "start": 768, "end": 775, "annotation": null}, {"text": ".", "start": 775, "end": 776, "annotation": null}], [{"text": "Furthermore", "start": 777, "end": 788, "annotation": null}, {"text": ",", "start": 788, "end": 789, "annotation": null}, {"text": "it", "start": 790, "end": 792, "annotation": null}, {"text": "is", "start": 793, "end": 795, "annotation": null}, {"text": "shown", "start": 796, "end": 801, "annotation": null}, {"text": "that", "start": 802, "end": 806, "annotation": null}, {"text": "the", "start": 807, "end": 810, "annotation": null}, {"text": "pore", "start": 811, "end": 815, "annotation": null}, {"text": "morphology", "start": 816, "end": 826, "annotation": null}, {"text": "depends", "start": 827, "end": 834, "annotation": null}, {"text": "strongly", "start": 835, "end": 843, "annotation": null}, {"text": "on", "start": 844, "end": 846, "annotation": null}, {"text": "the", "start": 847, "end": 850, "annotation": null}, {"text": "type", "start": 851, "end": 855, "annotation": null}, {"text": "of", "start": 856, "end": 858, "annotation": null}, {"text": "halogen", "start": 859, "end": 866, "annotation": null}, {"text": "acid", "start": 867, "end": 871, "annotation": null}, {"text": "present", "start": 872, "end": 879, "annotation": null}, {"text": "in", "start": 880, "end": 882, "annotation": null}, {"text": "the", "start": 883, "end": 886, "annotation": null}, {"text": "electrolyte", "start": 887, "end": 898, "annotation": null}, {"text": ".", "start": 898, "end": 899, "annotation": null}], [{"text": "Scanning", "start": 900, "end": 908, "annotation": null}, {"text": "AES", "start": 909, "end": 912, "annotation": null}, {"text": "images", "start": 913, "end": 919, "annotation": null}, {"text": "show", "start": 920, "end": 924, "annotation": null}, {"text": "that", "start": 925, "end": 929, "annotation": null}, {"text": "the", "start": 930, "end": 933, "annotation": null}, {"text": "composition", "start": 934, "end": 945, "annotation": null}, {"text": "of", "start": 946, "end": 948, "annotation": null}, {"text": "the", "start": 949, "end": 952, "annotation": null}, {"text": "porous", "start": 953, "end": 959, "annotation": null}, {"text": "layers", "start": 960, "end": 966, "annotation": null}, {"text": "is", "start": 967, "end": 969, "annotation": null}, {"text": "strongly", "start": 970, "end": 978, "annotation": null}, {"text": "altered", "start": 979, "end": 986, "annotation": null}, {"text": "from", "start": 987, "end": 991, "annotation": null}, {"text": "the", "start": 992, "end": 995, "annotation": null}, {"text": "bulk", "start": 996, "end": 1000, "annotation": null}, {"text": "composition", "start": 1001, "end": 1012, "annotation": null}, {"text": ".", "start": 1012, "end": 1013, "annotation": null}]], "meta": {"doi": "10.1016/S0013-4686(02)00839-3"}} +{"remark": "doping_annt1", "text": "Coulometric determination of arsenic was made to evaluate the stoichiometry of undoped semi-insulating GaAs crystals grown by liquid-encapsulated Czochralski technique. The measurement was made by using the stoichiometric reaction of arsenious acid with electrogenerated iodine. The pretreatment procedures such as the reduction to As(III) and the improvement in recovery were investigated in detail. The typical standard deviation based on this work is about 0.001 in terms of arsenic atom fraction. The measured value of As atom fraction was found to increase with increase in the As atom fraction in the melts depending on the melt composition. It was also found that standard deviation \u00f8f the measured values in each crystal increases as the melt composition becomes Ga-rich. This fact suggests that the scatter in the measured values reflects an actual inhomogeneity in GaAs such as Ga precipitates. \u00a9 1987, The Electrochemical Society, Inc. All rights reserved.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Coulometric", "start": 0, "end": 11, "annotation": null}, {"text": "determination", "start": 12, "end": 25, "annotation": null}, {"text": "of", "start": 26, "end": 28, "annotation": null}, {"text": "arsenic", "start": 29, "end": 36, "annotation": null}, {"text": "was", "start": 37, "end": 40, "annotation": null}, {"text": "made", "start": 41, "end": 45, "annotation": null}, {"text": "to", "start": 46, "end": 48, "annotation": null}, {"text": "evaluate", "start": 49, "end": 57, "annotation": null}, {"text": "the", "start": 58, "end": 61, "annotation": null}, {"text": "stoichiometry", "start": 62, "end": 75, "annotation": null}, {"text": "of", "start": 76, "end": 78, "annotation": null}, {"text": "undoped", "start": 79, "end": 86, "annotation": "DOPANT"}, {"text": "semi-insulating", "start": 87, "end": 102, "annotation": null}, {"text": "GaAs", "start": 103, "end": 107, "annotation": "BASEMAT"}, {"text": "crystals", "start": 108, "end": 116, "annotation": null}, {"text": "grown", "start": 117, "end": 122, "annotation": null}, {"text": "by", "start": 123, "end": 125, "annotation": null}, {"text": "liquid", "start": 126, "end": 132, "annotation": null}, {"text": "-", "start": 132, "end": 133, "annotation": null}, {"text": "encapsulated", "start": 133, "end": 145, "annotation": null}, {"text": "Czochralski", "start": 146, "end": 157, "annotation": null}, {"text": "technique", "start": 158, "end": 167, "annotation": null}, {"text": ".", "start": 167, "end": 168, "annotation": null}], [{"text": "The", "start": 169, "end": 172, "annotation": null}, {"text": "measurement", "start": 173, "end": 184, "annotation": null}, {"text": "was", "start": 185, "end": 188, "annotation": null}, {"text": "made", "start": 189, "end": 193, "annotation": null}, {"text": "by", "start": 194, "end": 196, "annotation": null}, {"text": "using", "start": 197, "end": 202, "annotation": null}, {"text": "the", "start": 203, "end": 206, "annotation": null}, {"text": "stoichiometric", "start": 207, "end": 221, "annotation": null}, {"text": "reaction", "start": 222, "end": 230, "annotation": null}, {"text": "of", "start": 231, "end": 233, "annotation": null}, {"text": "arsenious", "start": 234, "end": 243, "annotation": null}, {"text": "acid", "start": 244, "end": 248, "annotation": null}, {"text": "with", "start": 249, "end": 253, "annotation": null}, {"text": "electrogenerated", "start": 254, "end": 270, "annotation": null}, {"text": "iodine", "start": 271, "end": 277, "annotation": null}, {"text": ".", "start": 277, "end": 278, "annotation": null}], [{"text": "The", "start": 279, "end": 282, "annotation": null}, {"text": "pretreatment", "start": 283, "end": 295, "annotation": null}, {"text": "procedures", "start": 296, "end": 306, "annotation": null}, {"text": "such", "start": 307, "end": 311, "annotation": null}, {"text": "as", "start": 312, "end": 314, "annotation": null}, {"text": "the", "start": 315, "end": 318, "annotation": null}, {"text": "reduction", "start": 319, "end": 328, "annotation": null}, {"text": "to", "start": 329, "end": 331, "annotation": null}, {"text": "As(III)", "start": 332, "end": 339, "annotation": null}, {"text": "and", "start": 340, "end": 343, "annotation": null}, {"text": "the", "start": 344, "end": 347, "annotation": null}, {"text": "improvement", "start": 348, "end": 359, "annotation": null}, {"text": "in", "start": 360, "end": 362, "annotation": null}, {"text": "recovery", "start": 363, "end": 371, "annotation": null}, {"text": "were", "start": 372, "end": 376, "annotation": null}, {"text": "investigated", "start": 377, "end": 389, "annotation": null}, {"text": "in", "start": 390, "end": 392, "annotation": null}, {"text": "detail", "start": 393, "end": 399, "annotation": null}, {"text": ".", "start": 399, "end": 400, "annotation": null}], [{"text": "The", "start": 401, "end": 404, "annotation": null}, {"text": "typical", "start": 405, "end": 412, "annotation": null}, {"text": "standard", "start": 413, "end": 421, "annotation": null}, {"text": "deviation", "start": 422, "end": 431, "annotation": null}, {"text": "based", "start": 432, "end": 437, "annotation": null}, {"text": "on", "start": 438, "end": 440, "annotation": null}, {"text": "this", "start": 441, "end": 445, "annotation": null}, {"text": "work", "start": 446, "end": 450, "annotation": null}, {"text": "is", "start": 451, "end": 453, "annotation": null}, {"text": "about", "start": 454, "end": 459, "annotation": null}, {"text": "0.001", "start": 460, "end": 465, "annotation": null}, {"text": "in", "start": 466, "end": 468, "annotation": null}, {"text": "terms", "start": 469, "end": 474, "annotation": null}, {"text": "of", "start": 475, "end": 477, "annotation": null}, {"text": "arsenic", "start": 478, "end": 485, "annotation": null}, {"text": "atom", "start": 486, "end": 490, "annotation": null}, {"text": "fraction", "start": 491, "end": 499, "annotation": null}, {"text": ".", "start": 499, "end": 500, "annotation": null}], [{"text": "The", "start": 501, "end": 504, "annotation": null}, {"text": "measured", "start": 505, "end": 513, "annotation": null}, {"text": "value", "start": 514, "end": 519, "annotation": null}, {"text": "of", "start": 520, "end": 522, "annotation": null}, {"text": "As", "start": 523, "end": 525, "annotation": null}, {"text": "atom", "start": 526, "end": 530, "annotation": null}, {"text": "fraction", "start": 531, "end": 539, "annotation": null}, {"text": "was", "start": 540, "end": 543, "annotation": null}, {"text": "found", "start": 544, "end": 549, "annotation": null}, {"text": "to", "start": 550, "end": 552, "annotation": null}, {"text": "increase", "start": 553, "end": 561, "annotation": null}, {"text": "with", "start": 562, "end": 566, "annotation": null}, {"text": "increase", "start": 567, "end": 575, "annotation": null}, {"text": "in", "start": 576, "end": 578, "annotation": null}, {"text": "the", "start": 579, "end": 582, "annotation": null}, {"text": "As", "start": 583, "end": 585, "annotation": null}, {"text": "atom", "start": 586, "end": 590, "annotation": null}, {"text": "fraction", "start": 591, "end": 599, "annotation": null}, {"text": "in", "start": 600, "end": 602, "annotation": null}, {"text": "the", "start": 603, "end": 606, "annotation": null}, {"text": "melts", "start": 607, "end": 612, "annotation": null}, {"text": "depending", "start": 613, "end": 622, "annotation": null}, {"text": "on", "start": 623, "end": 625, "annotation": null}, {"text": "the", "start": 626, "end": 629, "annotation": null}, {"text": "melt", "start": 630, "end": 634, "annotation": null}, {"text": "composition", "start": 635, "end": 646, "annotation": null}, {"text": ".", "start": 646, "end": 647, "annotation": null}], [{"text": "It", "start": 648, "end": 650, "annotation": null}, {"text": "was", "start": 651, "end": 654, "annotation": null}, {"text": "also", "start": 655, "end": 659, "annotation": null}, {"text": "found", "start": 660, "end": 665, "annotation": null}, {"text": "that", "start": 666, "end": 670, "annotation": null}, {"text": "standard", "start": 671, "end": 679, "annotation": null}, {"text": "deviation", "start": 680, "end": 689, "annotation": null}, {"text": "\u00f8f", "start": 690, "end": 692, "annotation": null}, {"text": "the", "start": 693, "end": 696, "annotation": null}, {"text": "measured", "start": 697, "end": 705, "annotation": null}, {"text": "values", "start": 706, "end": 712, "annotation": null}, {"text": "in", "start": 713, "end": 715, "annotation": null}, {"text": "each", "start": 716, "end": 720, "annotation": null}, {"text": "crystal", "start": 721, "end": 728, "annotation": null}, {"text": "increases", "start": 729, "end": 738, "annotation": null}, {"text": "as", "start": 739, "end": 741, "annotation": null}, {"text": "the", "start": 742, "end": 745, "annotation": null}, {"text": "melt", "start": 746, "end": 750, "annotation": null}, {"text": "composition", "start": 751, "end": 762, "annotation": null}, {"text": "becomes", "start": 763, "end": 770, "annotation": null}, {"text": "Ga", "start": 771, "end": 773, "annotation": null}, {"text": "-", "start": 773, "end": 774, "annotation": null}, {"text": "rich", "start": 774, "end": 778, "annotation": null}, {"text": ".", "start": 778, "end": 779, "annotation": null}], [{"text": "This", "start": 780, "end": 784, "annotation": null}, {"text": "fact", "start": 785, "end": 789, "annotation": null}, {"text": "suggests", "start": 790, "end": 798, "annotation": null}, {"text": "that", "start": 799, "end": 803, "annotation": null}, {"text": "the", "start": 804, "end": 807, "annotation": null}, {"text": "scatter", "start": 808, "end": 815, "annotation": null}, {"text": "in", "start": 816, "end": 818, "annotation": null}, {"text": "the", "start": 819, "end": 822, "annotation": null}, {"text": "measured", "start": 823, "end": 831, "annotation": null}, {"text": "values", "start": 832, "end": 838, "annotation": null}, {"text": "reflects", "start": 839, "end": 847, "annotation": null}, {"text": "an", "start": 848, "end": 850, "annotation": null}, {"text": "actual", "start": 851, "end": 857, "annotation": null}, {"text": "inhomogeneity", "start": 858, "end": 871, "annotation": null}, {"text": "in", "start": 872, "end": 874, "annotation": null}, {"text": "GaAs", "start": 875, "end": 879, "annotation": null}, {"text": "such", "start": 880, "end": 884, "annotation": null}, {"text": "as", "start": 885, "end": 887, "annotation": null}, {"text": "Ga", "start": 888, "end": 890, "annotation": null}, {"text": "precipitates", "start": 891, "end": 903, "annotation": null}, {"text": ".", "start": 903, "end": 904, "annotation": null}], [{"text": "All", "start": 947, "end": 950, "annotation": null}, {"text": "rights", "start": 951, "end": 957, "annotation": null}, {"text": "reserved", "start": 958, "end": 966, "annotation": null}, {"text": ".", "start": 966, "end": 967, "annotation": null}]], "meta": {"doi": "10.1149/1.2100659"}} {"text": "Zn0.98Cu0.02O and Zn0.95Cu0.02Co0.03O powders were synthesized by sol\u2013gel method, and the effects of Co codoping on the structure, optical and magnetic properties of the Zn0.98Cu0.02O powders were studied in detail. The X-ray diffraction (XRD) and X-ray photoelectron spectroscopy (XPS) measurement shows the Zn0.98Cu0.02O and Zn0.95Cu0.02Co0.03O powders were single phase with the ZnO wurtzite structure, and there was no ferromagnetic-related secondary phase in these powders. Moreover, these powders exhibited ferromagnetism at the room temperature investigated by the magnetic measurement, and the ferromagnetism of the Zn0.98Cu0.02O and Zn0.95Cu0.02Co0.03O samples were originated from the fact that the Cu ions and Co, Cu ions doped into the ZnO lattices, respectively. In addition, the saturation magnetization (Ms) was significantly increased with Co codoping due to the increased density of oxygen vacancies.", "meta": {"doi": "10.1016/j.jallcom.2013.07.024"}, "_input_hash": 1908651346, "_task_hash": -35223020, "tokens": [[{"text": "Zn0.98Cu0.02O", "start": 0, "end": 13, "id": 0, "annotation": null}, {"text": "and", "start": 14, "end": 17, "id": 1, "annotation": null}, {"text": "Zn0.95Cu0.02Co0.03O", "start": 18, "end": 37, "id": 2, "annotation": null}, {"text": "powders", "start": 38, "end": 45, "id": 3, "annotation": null}, {"text": "were", "start": 46, "end": 50, "id": 4, "annotation": null}, {"text": "synthesized", "start": 51, "end": 62, "id": 5, "annotation": null}, {"text": "by", "start": 63, "end": 65, "id": 6, "annotation": null}, {"text": "sol", "start": 66, "end": 69, "id": 7, "annotation": null}, {"text": "\u2013", "start": 70, "end": 71, "id": 8, "annotation": null}, {"text": "gel", "start": 72, "end": 75, "id": 9, "annotation": null}, {"text": "method", "start": 76, "end": 82, "id": 10, "annotation": null}, {"text": ",", "start": 83, "end": 84, "id": 11, "annotation": null}, {"text": "and", "start": 85, "end": 88, "id": 12, "annotation": null}, {"text": "the", "start": 89, "end": 92, "id": 13, "annotation": null}, {"text": "effects", "start": 93, "end": 100, "id": 14, "annotation": null}, {"text": "of", "start": 101, "end": 103, "id": 15, "annotation": null}, {"text": "Co", "start": 104, "end": 106, "id": 16, "annotation": "DOPANT"}, {"text": "codoping", "start": 107, "end": 115, "id": 17, "annotation": null}, {"text": "on", "start": 116, "end": 118, "id": 18, "annotation": null}, {"text": "the", "start": 119, "end": 122, "id": 19, "annotation": "BASEMAT"}, {"text": "structure", "start": 123, "end": 132, "id": 20, "annotation": "BASEMAT"}, {"text": ",", "start": 133, "end": 134, "id": 21, "annotation": null}, {"text": "optical", "start": 135, "end": 142, "id": 22, "annotation": null}, {"text": "and", "start": 143, "end": 146, "id": 23, "annotation": null}, {"text": "magnetic", "start": 147, "end": 155, "id": 24, "annotation": null}, {"text": "properties", "start": 156, "end": 166, "id": 25, "annotation": null}, {"text": "of", "start": 167, "end": 169, "id": 26, "annotation": null}, {"text": "the", "start": 170, "end": 173, "id": 27, "annotation": null}, {"text": "Zn0.98Cu0.02O", "start": 174, "end": 187, "id": 28, "annotation": null}, {"text": "powders", "start": 188, "end": 195, "id": 29, "annotation": null}, {"text": "were", "start": 196, "end": 200, "id": 30, "annotation": null}, {"text": "studied", "start": 201, "end": 208, "id": 31, "annotation": null}, {"text": "in", "start": 209, "end": 211, "id": 32, "annotation": null}, {"text": "detail", "start": 212, "end": 218, "id": 33, "annotation": null}, {"text": ".", "start": 219, "end": 220, "id": 34, "annotation": null}], [{"text": "The", "start": 221, "end": 224, "id": 35, "annotation": null}, {"text": "X", "start": 225, "end": 226, "id": 36, "annotation": null}, {"text": "-", "start": 227, "end": 228, "id": 37, "annotation": null}, {"text": "ray", "start": 229, "end": 232, "id": 38, "annotation": null}, {"text": "diffraction", "start": 233, "end": 244, "id": 39, "annotation": null}, {"text": "(", "start": 245, "end": 246, "id": 40, "annotation": null}, {"text": "XRD", "start": 247, "end": 250, "id": 41, "annotation": null}, {"text": ")", "start": 251, "end": 252, "id": 42, "annotation": null}, {"text": "and", "start": 253, "end": 256, "id": 43, "annotation": null}, {"text": "X", "start": 257, "end": 258, "id": 44, "annotation": null}, {"text": "-", "start": 259, "end": 260, "id": 45, "annotation": null}, {"text": "ray", "start": 261, "end": 264, "id": 46, "annotation": null}, {"text": "photoelectron", "start": 265, "end": 278, "id": 47, "annotation": null}, {"text": "spectroscopy", "start": 279, "end": 291, "id": 48, "annotation": null}, {"text": "(", "start": 292, "end": 293, "id": 49, "annotation": null}, {"text": "XPS", "start": 294, "end": 297, "id": 50, "annotation": null}, {"text": ")", "start": 298, "end": 299, "id": 51, "annotation": null}, {"text": "measurement", "start": 300, "end": 311, "id": 52, "annotation": null}, {"text": "shows", "start": 312, "end": 317, "id": 53, "annotation": null}, {"text": "the", "start": 318, "end": 321, "id": 54, "annotation": null}, {"text": "Zn0.98Cu0.02O", "start": 322, "end": 335, "id": 55, "annotation": null}, {"text": "and", "start": 336, "end": 339, "id": 56, "annotation": null}, {"text": "Zn0.95Cu0.02Co0.03O", "start": 340, "end": 359, "id": 57, "annotation": null}, {"text": "powders", "start": 360, "end": 367, "id": 58, "annotation": null}, {"text": "were", "start": 368, "end": 372, "id": 59, "annotation": null}, {"text": "single", "start": 373, "end": 379, "id": 60, "annotation": null}, {"text": "phase", "start": 380, "end": 385, "id": 61, "annotation": null}, {"text": "with", "start": 386, "end": 390, "id": 62, "annotation": null}, {"text": "the", "start": 391, "end": 394, "id": 63, "annotation": null}, {"text": "ZnO", "start": 395, "end": 398, "id": 64, "annotation": null}, {"text": "wurtzite", "start": 399, "end": 407, "id": 65, "annotation": null}, {"text": "structure", "start": 408, "end": 417, "id": 66, "annotation": null}, {"text": ",", "start": 418, "end": 419, "id": 67, "annotation": null}, {"text": "and", "start": 420, "end": 423, "id": 68, "annotation": null}, {"text": "there", "start": 424, "end": 429, "id": 69, "annotation": null}, {"text": "was", "start": 430, "end": 433, "id": 70, "annotation": null}, {"text": "no", "start": 434, "end": 436, "id": 71, "annotation": null}, {"text": "ferromagnetic", "start": 437, "end": 450, "id": 72, "annotation": null}, {"text": "-", "start": 451, "end": 452, "id": 73, "annotation": null}, {"text": "related", "start": 453, "end": 460, "id": 74, "annotation": null}, {"text": "secondary", "start": 461, "end": 470, "id": 75, "annotation": null}, {"text": "phase", "start": 471, "end": 476, "id": 76, "annotation": null}, {"text": "in", "start": 477, "end": 479, "id": 77, "annotation": null}, {"text": "these", "start": 480, "end": 485, "id": 78, "annotation": null}, {"text": "powders", "start": 486, "end": 493, "id": 79, "annotation": null}, {"text": ".", "start": 494, "end": 495, "id": 80, "annotation": null}], [{"text": "Moreover", "start": 496, "end": 504, "id": 81, "annotation": null}, {"text": ",", "start": 505, "end": 506, "id": 82, "annotation": null}, {"text": "these", "start": 507, "end": 512, "id": 83, "annotation": null}, {"text": "powders", "start": 513, "end": 520, "id": 84, "annotation": null}, {"text": "exhibited", "start": 521, "end": 530, "id": 85, "annotation": null}, {"text": "ferromagnetism", "start": 531, "end": 545, "id": 86, "annotation": null}, {"text": "at", "start": 546, "end": 548, "id": 87, "annotation": null}, {"text": "the", "start": 549, "end": 552, "id": 88, "annotation": null}, {"text": "room", "start": 553, "end": 557, "id": 89, "annotation": null}, {"text": "temperature", "start": 558, "end": 569, "id": 90, "annotation": null}, {"text": "investigated", "start": 570, "end": 582, "id": 91, "annotation": null}, {"text": "by", "start": 583, "end": 585, "id": 92, "annotation": null}, {"text": "the", "start": 586, "end": 589, "id": 93, "annotation": null}, {"text": "magnetic", "start": 590, "end": 598, "id": 94, "annotation": null}, {"text": "measurement", "start": 599, "end": 610, "id": 95, "annotation": null}, {"text": ",", "start": 611, "end": 612, "id": 96, "annotation": null}, {"text": "and", "start": 613, "end": 616, "id": 97, "annotation": null}, {"text": "the", "start": 617, "end": 620, "id": 98, "annotation": null}, {"text": "ferromagnetism", "start": 621, "end": 635, "id": 99, "annotation": null}, {"text": "of", "start": 636, "end": 638, "id": 100, "annotation": null}, {"text": "the", "start": 639, "end": 642, "id": 101, "annotation": null}, {"text": "Zn0.98Cu0.02O", "start": 643, "end": 656, "id": 102, "annotation": null}, {"text": "and", "start": 657, "end": 660, "id": 103, "annotation": null}, {"text": "Zn0.95Cu0.02Co0.03O", "start": 661, "end": 680, "id": 104, "annotation": null}, {"text": "samples", "start": 681, "end": 688, "id": 105, "annotation": null}, {"text": "were", "start": 689, "end": 693, "id": 106, "annotation": null}, {"text": "originated", "start": 694, "end": 704, "id": 107, "annotation": null}, {"text": "from", "start": 705, "end": 709, "id": 108, "annotation": null}, {"text": "the", "start": 710, "end": 713, "id": 109, "annotation": null}, {"text": "fact", "start": 714, "end": 718, "id": 110, "annotation": null}, {"text": "that", "start": 719, "end": 723, "id": 111, "annotation": null}, {"text": "the", "start": 724, "end": 727, "id": 112, "annotation": null}, {"text": "Cu", "start": 728, "end": 730, "id": 113, "annotation": "DOPANT"}, {"text": "ions", "start": 731, "end": 735, "id": 114, "annotation": null}, {"text": "and", "start": 736, "end": 739, "id": 115, "annotation": null}, {"text": "Co", "start": 740, "end": 742, "id": 116, "annotation": "DOPANT"}, {"text": ",", "start": 743, "end": 744, "id": 117, "annotation": null}, {"text": "Cu", "start": 745, "end": 747, "id": 118, "annotation": "DOPANT"}, {"text": "ions", "start": 748, "end": 752, "id": 119, "annotation": null}, {"text": "doped", "start": 753, "end": 758, "id": 120, "annotation": null}, {"text": "into", "start": 759, "end": 763, "id": 121, "annotation": null}, {"text": "the", "start": 764, "end": 767, "id": 122, "annotation": null}, {"text": "ZnO", "start": 768, "end": 771, "id": 123, "annotation": "BASEMAT"}, {"text": "lattices", "start": 772, "end": 780, "id": 124, "annotation": null}, {"text": ",", "start": 781, "end": 782, "id": 125, "annotation": null}, {"text": "respectively", "start": 783, "end": 795, "id": 126, "annotation": null}, {"text": ".", "start": 796, "end": 797, "id": 127, "annotation": null}], [{"text": "In", "start": 798, "end": 800, "id": 128, "annotation": null}, {"text": "addition", "start": 801, "end": 809, "id": 129, "annotation": null}, {"text": ",", "start": 810, "end": 811, "id": 130, "annotation": null}, {"text": "the", "start": 812, "end": 815, "id": 131, "annotation": null}, {"text": "saturation", "start": 816, "end": 826, "id": 132, "annotation": null}, {"text": "magnetization", "start": 827, "end": 840, "id": 133, "annotation": null}, {"text": "(", "start": 841, "end": 842, "id": 134, "annotation": null}, {"text": "Ms", "start": 843, "end": 845, "id": 135, "annotation": null}, {"text": ")", "start": 846, "end": 847, "id": 136, "annotation": null}, {"text": "was", "start": 848, "end": 851, "id": 137, "annotation": null}, {"text": "significantly", "start": 852, "end": 865, "id": 138, "annotation": null}, {"text": "increased", "start": 866, "end": 875, "id": 139, "annotation": null}, {"text": "with", "start": 876, "end": 880, "id": 140, "annotation": null}, {"text": "Co", "start": 881, "end": 883, "id": 141, "annotation": "DOPANT"}, {"text": "codoping", "start": 884, "end": 892, "id": 142, "annotation": null}, {"text": "due", "start": 893, "end": 896, "id": 143, "annotation": null}, {"text": "to", "start": 897, "end": 899, "id": 144, "annotation": null}, {"text": "the", "start": 900, "end": 903, "id": 145, "annotation": null}, {"text": "increased", "start": 904, "end": 913, "id": 146, "annotation": null}, {"text": "density", "start": 914, "end": 921, "id": 147, "annotation": null}, {"text": "of", "start": 922, "end": 924, "id": 148, "annotation": null}, {"text": "oxygen", "start": 925, "end": 931, "id": 149, "annotation": null}, {"text": "vacancies", "start": 932, "end": 941, "id": 150, "annotation": null}, {"text": ".", "start": 942, "end": 943, "id": 151, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Europium-doped barium and strontium iodide crystals are high light yield scintillator materials with excellent energy resolution. In this communication, BaI2:Eu and SrI2:Eu single crystals with space groups of Pnma ( D 2 h 16 ) and Pbca ( D 2 h 15 ) respectively were grown from the vertical Bridgman method. The crystals were investigated with polarized Raman spectroscopy at temperatures varied from 77 to 300 K. The observed Raman-active modes for each crystal were assigned with the help of group theory analysis. It is found that the absence of the site symmetry leads to splitting of a spectral line in Pnma structure into two lines in the Pbca structure. Structural defects including dark spots formed during crystal growth and new species produced from hydration were characterized.", "meta": {"doi": "10.1016/j.ssc.2010.12.041"}, "_input_hash": 1909617294, "_task_hash": 760261153, "tokens": [[{"text": "Europium", "start": 0, "end": 8, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 9, "end": 10, "id": 1, "annotation": null}, {"text": "doped", "start": 11, "end": 16, "id": 2, "annotation": null}, {"text": "barium", "start": 17, "end": 23, "id": 3, "annotation": "BASEMAT"}, {"text": "and", "start": 24, "end": 27, "id": 4, "annotation": null}, {"text": "strontium", "start": 28, "end": 37, "id": 5, "annotation": "BASEMAT"}, {"text": "iodide", "start": 38, "end": 44, "id": 6, "annotation": "BASEMAT"}, {"text": "crystals", "start": 45, "end": 53, "id": 7, "annotation": null}, {"text": "are", "start": 54, "end": 57, "id": 8, "annotation": null}, {"text": "high", "start": 58, "end": 62, "id": 9, "annotation": null}, {"text": "light", "start": 63, "end": 68, "id": 10, "annotation": null}, {"text": "yield", "start": 69, "end": 74, "id": 11, "annotation": null}, {"text": "scintillator", "start": 75, "end": 87, "id": 12, "annotation": null}, {"text": "materials", "start": 88, "end": 97, "id": 13, "annotation": null}, {"text": "with", "start": 98, "end": 102, "id": 14, "annotation": null}, {"text": "excellent", "start": 103, "end": 112, "id": 15, "annotation": null}, {"text": "energy", "start": 113, "end": 119, "id": 16, "annotation": null}, {"text": "resolution", "start": 120, "end": 130, "id": 17, "annotation": null}, {"text": ".", "start": 131, "end": 132, "id": 18, "annotation": null}], [{"text": "In", "start": 133, "end": 135, "id": 19, "annotation": null}, {"text": "this", "start": 136, "end": 140, "id": 20, "annotation": null}, {"text": "communication", "start": 141, "end": 154, "id": 21, "annotation": null}, {"text": ",", "start": 155, "end": 156, "id": 22, "annotation": null}, {"text": "BaI2", "start": 157, "end": 161, "id": 23, "annotation": "BASEMAT"}, {"text": ":", "start": 162, "end": 163, "id": 24, "annotation": null}, {"text": "Eu", "start": 164, "end": 166, "id": 25, "annotation": "DOPANT"}, {"text": "and", "start": 167, "end": 170, "id": 26, "annotation": null}, {"text": "SrI2", "start": 171, "end": 175, "id": 27, "annotation": "BASEMAT"}, {"text": ":", "start": 176, "end": 177, "id": 28, "annotation": null}, {"text": "Eu", "start": 178, "end": 180, "id": 29, "annotation": "DOPANT"}, {"text": "single", "start": 181, "end": 187, "id": 30, "annotation": null}, {"text": "crystals", "start": 188, "end": 196, "id": 31, "annotation": null}, {"text": "with", "start": 197, "end": 201, "id": 32, "annotation": null}, {"text": "space", "start": 202, "end": 207, "id": 33, "annotation": null}, {"text": "groups", "start": 208, "end": 214, "id": 34, "annotation": null}, {"text": "of", "start": 215, "end": 217, "id": 35, "annotation": null}, {"text": "Pnma", "start": 218, "end": 222, "id": 36, "annotation": null}, {"text": "(", "start": 223, "end": 224, "id": 37, "annotation": null}, {"text": "D", "start": 225, "end": 226, "id": 38, "annotation": null}, {"text": "2", "start": 227, "end": 228, "id": 39, "annotation": null}, {"text": "h", "start": 229, "end": 230, "id": 40, "annotation": null}, {"text": "16", "start": 231, "end": 233, "id": 41, "annotation": null}, {"text": ")", "start": 234, "end": 235, "id": 42, "annotation": null}, {"text": "and", "start": 236, "end": 239, "id": 43, "annotation": null}, {"text": "Pbca", "start": 240, "end": 244, "id": 44, "annotation": null}, {"text": "(", "start": 245, "end": 246, "id": 45, "annotation": null}, {"text": "D", "start": 247, "end": 248, "id": 46, "annotation": null}, {"text": "2", "start": 249, "end": 250, "id": 47, "annotation": null}, {"text": "h", "start": 251, "end": 252, "id": 48, "annotation": null}, {"text": "15", "start": 253, "end": 255, "id": 49, "annotation": null}, {"text": ")", "start": 256, "end": 257, "id": 50, "annotation": null}, {"text": "respectively", "start": 258, "end": 270, "id": 51, "annotation": null}, {"text": "were", "start": 271, "end": 275, "id": 52, "annotation": null}, {"text": "grown", "start": 276, "end": 281, "id": 53, "annotation": null}, {"text": "from", "start": 282, "end": 286, "id": 54, "annotation": null}, {"text": "the", "start": 287, "end": 290, "id": 55, "annotation": null}, {"text": "vertical", "start": 291, "end": 299, "id": 56, "annotation": null}, {"text": "Bridgman", "start": 300, "end": 308, "id": 57, "annotation": null}, {"text": "method", "start": 309, "end": 315, "id": 58, "annotation": null}, {"text": ".", "start": 316, "end": 317, "id": 59, "annotation": null}], [{"text": "The", "start": 318, "end": 321, "id": 60, "annotation": null}, {"text": "crystals", "start": 322, "end": 330, "id": 61, "annotation": null}, {"text": "were", "start": 331, "end": 335, "id": 62, "annotation": null}, {"text": "investigated", "start": 336, "end": 348, "id": 63, "annotation": null}, {"text": "with", "start": 349, "end": 353, "id": 64, "annotation": null}, {"text": "polarized", "start": 354, "end": 363, "id": 65, "annotation": null}, {"text": "Raman", "start": 364, "end": 369, "id": 66, "annotation": null}, {"text": "spectroscopy", "start": 370, "end": 382, "id": 67, "annotation": null}, {"text": "at", "start": 383, "end": 385, "id": 68, "annotation": null}, {"text": "temperatures", "start": 386, "end": 398, "id": 69, "annotation": null}, {"text": "varied", "start": 399, "end": 405, "id": 70, "annotation": null}, {"text": "from", "start": 406, "end": 410, "id": 71, "annotation": null}, {"text": "77", "start": 411, "end": 413, "id": 72, "annotation": null}, {"text": "to", "start": 414, "end": 416, "id": 73, "annotation": null}, {"text": "300", "start": 417, "end": 420, "id": 74, "annotation": null}, {"text": "K.", "start": 421, "end": 423, "id": 75, "annotation": null}], [{"text": "The", "start": 424, "end": 427, "id": 76, "annotation": null}, {"text": "observed", "start": 428, "end": 436, "id": 77, "annotation": null}, {"text": "Raman", "start": 437, "end": 442, "id": 78, "annotation": null}, {"text": "-", "start": 443, "end": 444, "id": 79, "annotation": null}, {"text": "active", "start": 445, "end": 451, "id": 80, "annotation": null}, {"text": "modes", "start": 452, "end": 457, "id": 81, "annotation": null}, {"text": "for", "start": 458, "end": 461, "id": 82, "annotation": null}, {"text": "each", "start": 462, "end": 466, "id": 83, "annotation": null}, {"text": "crystal", "start": 467, "end": 474, "id": 84, "annotation": null}, {"text": "were", "start": 475, "end": 479, "id": 85, "annotation": null}, {"text": "assigned", "start": 480, "end": 488, "id": 86, "annotation": null}, {"text": "with", "start": 489, "end": 493, "id": 87, "annotation": null}, {"text": "the", "start": 494, "end": 497, "id": 88, "annotation": null}, {"text": "help", "start": 498, "end": 502, "id": 89, "annotation": null}, {"text": "of", "start": 503, "end": 505, "id": 90, "annotation": null}, {"text": "group", "start": 506, "end": 511, "id": 91, "annotation": null}, {"text": "theory", "start": 512, "end": 518, "id": 92, "annotation": null}, {"text": "analysis", "start": 519, "end": 527, "id": 93, "annotation": null}, {"text": ".", "start": 528, "end": 529, "id": 94, "annotation": null}], [{"text": "It", "start": 530, "end": 532, "id": 95, "annotation": null}, {"text": "is", "start": 533, "end": 535, "id": 96, "annotation": null}, {"text": "found", "start": 536, "end": 541, "id": 97, "annotation": null}, {"text": "that", "start": 542, "end": 546, "id": 98, "annotation": null}, {"text": "the", "start": 547, "end": 550, "id": 99, "annotation": null}, {"text": "absence", "start": 551, "end": 558, "id": 100, "annotation": null}, {"text": "of", "start": 559, "end": 561, "id": 101, "annotation": null}, {"text": "the", "start": 562, "end": 565, "id": 102, "annotation": null}, {"text": "site", "start": 566, "end": 570, "id": 103, "annotation": null}, {"text": "symmetry", "start": 571, "end": 579, "id": 104, "annotation": null}, {"text": "leads", "start": 580, "end": 585, "id": 105, "annotation": null}, {"text": "to", "start": 586, "end": 588, "id": 106, "annotation": null}, {"text": "splitting", "start": 589, "end": 598, "id": 107, "annotation": null}, {"text": "of", "start": 599, "end": 601, "id": 108, "annotation": null}, {"text": "a", "start": 602, "end": 603, "id": 109, "annotation": null}, {"text": "spectral", "start": 604, "end": 612, "id": 110, "annotation": null}, {"text": "line", "start": 613, "end": 617, "id": 111, "annotation": null}, {"text": "in", "start": 618, "end": 620, "id": 112, "annotation": null}, {"text": "Pnma", "start": 621, "end": 625, "id": 113, "annotation": null}, {"text": "structure", "start": 626, "end": 635, "id": 114, "annotation": null}, {"text": "into", "start": 636, "end": 640, "id": 115, "annotation": null}, {"text": "two", "start": 641, "end": 644, "id": 116, "annotation": null}, {"text": "lines", "start": 645, "end": 650, "id": 117, "annotation": null}, {"text": "in", "start": 651, "end": 653, "id": 118, "annotation": null}, {"text": "the", "start": 654, "end": 657, "id": 119, "annotation": null}, {"text": "Pbca", "start": 658, "end": 662, "id": 120, "annotation": null}, {"text": "structure", "start": 663, "end": 672, "id": 121, "annotation": null}, {"text": ".", "start": 673, "end": 674, "id": 122, "annotation": null}], [{"text": "Structural", "start": 675, "end": 685, "id": 123, "annotation": null}, {"text": "defects", "start": 686, "end": 693, "id": 124, "annotation": null}, {"text": "including", "start": 694, "end": 703, "id": 125, "annotation": null}, {"text": "dark", "start": 704, "end": 708, "id": 126, "annotation": null}, {"text": "spots", "start": 709, "end": 714, "id": 127, "annotation": null}, {"text": "formed", "start": 715, "end": 721, "id": 128, "annotation": null}, {"text": "during", "start": 722, "end": 728, "id": 129, "annotation": null}, {"text": "crystal", "start": 729, "end": 736, "id": 130, "annotation": null}, {"text": "growth", "start": 737, "end": 743, "id": 131, "annotation": null}, {"text": "and", "start": 744, "end": 747, "id": 132, "annotation": null}, {"text": "new", "start": 748, "end": 751, "id": 133, "annotation": null}, {"text": "species", "start": 752, "end": 759, "id": 134, "annotation": null}, {"text": "produced", "start": 760, "end": 768, "id": 135, "annotation": null}, {"text": "from", "start": 769, "end": 773, "id": 136, "annotation": null}, {"text": "hydration", "start": 774, "end": 783, "id": 137, "annotation": null}, {"text": "were", "start": 784, "end": 788, "id": 138, "annotation": null}, {"text": "characterized", "start": 789, "end": 802, "id": 139, "annotation": null}, {"text": ".", "start": 803, "end": 804, "id": 140, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Zinc oxide (ZnO) thin films with co-doped Ga and F were deposited using atomic layer deposition. Structural, electrical, and optical properties of the ZnO thin films were analyzed for different F doping amounts under the condition that the Ga doping amount remained fixed. From the X-ray diffraction analysis results, it was confirmed that the preferred orientation changed from (002) to (100) with changing F amounts. The electrical properties, i.e., carrier concentration and mobility of these co-doped ZnO thin films improved with the F doping amount, resulting in a decrease in the electrical resistivity. The reason for this improved resistivity is that Ga and F atoms replace Zn and O in the lattice sites, respectively, despite a slight decrease in the mobility. An increase in the carrier concentration widened the optical bandgap of ZnO thin films by the Moss-Burstein effect.", "meta": {"doi": "10.1016/j.tsf.2018.02.030"}, "_input_hash": 375548441, "_task_hash": -2044623921, "tokens": [[{"text": "Zinc", "start": 0, "end": 4, "id": 0, "annotation": "BASEMAT"}, {"text": "oxide", "start": 5, "end": 10, "id": 1, "annotation": "BASEMAT"}, {"text": "(", "start": 11, "end": 12, "id": 2, "annotation": null}, {"text": "ZnO", "start": 13, "end": 16, "id": 3, "annotation": "BASEMAT"}, {"text": ")", "start": 17, "end": 18, "id": 4, "annotation": null}, {"text": "thin", "start": 19, "end": 23, "id": 5, "annotation": null}, {"text": "films", "start": 24, "end": 29, "id": 6, "annotation": null}, {"text": "with", "start": 30, "end": 34, "id": 7, "annotation": null}, {"text": "co", "start": 35, "end": 37, "id": 8, "annotation": null}, {"text": "-", "start": 38, "end": 39, "id": 9, "annotation": null}, {"text": "doped", "start": 40, "end": 45, "id": 10, "annotation": null}, {"text": "Ga", "start": 46, "end": 48, "id": 11, "annotation": "DOPANT"}, {"text": "and", "start": 49, "end": 52, "id": 12, "annotation": null}, {"text": "F", "start": 53, "end": 54, "id": 13, "annotation": "DOPANT"}, {"text": "were", "start": 55, "end": 59, "id": 14, "annotation": null}, {"text": "deposited", "start": 60, "end": 69, "id": 15, "annotation": null}, {"text": "using", "start": 70, "end": 75, "id": 16, "annotation": null}, {"text": "atomic", "start": 76, "end": 82, "id": 17, "annotation": null}, {"text": "layer", "start": 83, "end": 88, "id": 18, "annotation": null}, {"text": "deposition", "start": 89, "end": 99, "id": 19, "annotation": null}, {"text": ".", "start": 100, "end": 101, "id": 20, "annotation": null}], [{"text": "Structural", "start": 102, "end": 112, "id": 21, "annotation": null}, {"text": ",", "start": 113, "end": 114, "id": 22, "annotation": null}, {"text": "electrical", "start": 115, "end": 125, "id": 23, "annotation": null}, {"text": ",", "start": 126, "end": 127, "id": 24, "annotation": null}, {"text": "and", "start": 128, "end": 131, "id": 25, "annotation": null}, {"text": "optical", "start": 132, "end": 139, "id": 26, "annotation": null}, {"text": "properties", "start": 140, "end": 150, "id": 27, "annotation": null}, {"text": "of", "start": 151, "end": 153, "id": 28, "annotation": null}, {"text": "the", "start": 154, "end": 157, "id": 29, "annotation": null}, {"text": "ZnO", "start": 158, "end": 161, "id": 30, "annotation": "BASEMAT"}, {"text": "thin", "start": 162, "end": 166, "id": 31, "annotation": null}, {"text": "films", "start": 167, "end": 172, "id": 32, "annotation": null}, {"text": "were", "start": 173, "end": 177, "id": 33, "annotation": null}, {"text": "analyzed", "start": 178, "end": 186, "id": 34, "annotation": null}, {"text": "for", "start": 187, "end": 190, "id": 35, "annotation": null}, {"text": "different", "start": 191, "end": 200, "id": 36, "annotation": null}, {"text": "F", "start": 201, "end": 202, "id": 37, "annotation": "DOPANT"}, {"text": "doping", "start": 203, "end": 209, "id": 38, "annotation": null}, {"text": "amounts", "start": 210, "end": 217, "id": 39, "annotation": null}, {"text": "under", "start": 218, "end": 223, "id": 40, "annotation": null}, {"text": "the", "start": 224, "end": 227, "id": 41, "annotation": null}, {"text": "condition", "start": 228, "end": 237, "id": 42, "annotation": null}, {"text": "that", "start": 238, "end": 242, "id": 43, "annotation": null}, {"text": "the", "start": 243, "end": 246, "id": 44, "annotation": null}, {"text": "Ga", "start": 247, "end": 249, "id": 45, "annotation": "DOPANT"}, {"text": "doping", "start": 250, "end": 256, "id": 46, "annotation": null}, {"text": "amount", "start": 257, "end": 263, "id": 47, "annotation": null}, {"text": "remained", "start": 264, "end": 272, "id": 48, "annotation": null}, {"text": "fixed", "start": 273, "end": 278, "id": 49, "annotation": null}, {"text": ".", "start": 279, "end": 280, "id": 50, "annotation": null}], [{"text": "From", "start": 281, "end": 285, "id": 51, "annotation": null}, {"text": "the", "start": 286, "end": 289, "id": 52, "annotation": null}, {"text": "X", "start": 290, "end": 291, "id": 53, "annotation": null}, {"text": "-", "start": 292, "end": 293, "id": 54, "annotation": null}, {"text": "ray", "start": 294, "end": 297, "id": 55, "annotation": null}, {"text": "diffraction", "start": 298, "end": 309, "id": 56, "annotation": null}, {"text": "analysis", "start": 310, "end": 318, "id": 57, "annotation": null}, {"text": "results", "start": 319, "end": 326, "id": 58, "annotation": null}, {"text": ",", "start": 327, "end": 328, "id": 59, "annotation": null}, {"text": "it", "start": 329, "end": 331, "id": 60, "annotation": null}, {"text": "was", "start": 332, "end": 335, "id": 61, "annotation": null}, {"text": "confirmed", "start": 336, "end": 345, "id": 62, "annotation": null}, {"text": "that", "start": 346, "end": 350, "id": 63, "annotation": null}, {"text": "the", "start": 351, "end": 354, "id": 64, "annotation": null}, {"text": "preferred", "start": 355, "end": 364, "id": 65, "annotation": null}, {"text": "orientation", "start": 365, "end": 376, "id": 66, "annotation": null}, {"text": "changed", "start": 377, "end": 384, "id": 67, "annotation": null}, {"text": "from", "start": 385, "end": 389, "id": 68, "annotation": null}, {"text": "(", "start": 390, "end": 391, "id": 69, "annotation": null}, {"text": "002", "start": 392, "end": 395, "id": 70, "annotation": null}, {"text": ")", "start": 396, "end": 397, "id": 71, "annotation": null}, {"text": "to", "start": 398, "end": 400, "id": 72, "annotation": null}, {"text": "(", "start": 401, "end": 402, "id": 73, "annotation": null}, {"text": "100", "start": 403, "end": 406, "id": 74, "annotation": null}, {"text": ")", "start": 407, "end": 408, "id": 75, "annotation": null}, {"text": "with", "start": 409, "end": 413, "id": 76, "annotation": null}, {"text": "changing", "start": 414, "end": 422, "id": 77, "annotation": null}, {"text": "F", "start": 423, "end": 424, "id": 78, "annotation": null}, {"text": "amounts", "start": 425, "end": 432, "id": 79, "annotation": null}, {"text": ".", "start": 433, "end": 434, "id": 80, "annotation": null}], [{"text": "The", "start": 435, "end": 438, "id": 81, "annotation": null}, {"text": "electrical", "start": 439, "end": 449, "id": 82, "annotation": null}, {"text": "properties", "start": 450, "end": 460, "id": 83, "annotation": null}, {"text": ",", "start": 461, "end": 462, "id": 84, "annotation": null}, {"text": "i.e.", "start": 463, "end": 467, "id": 85, "annotation": null}, {"text": ",", "start": 468, "end": 469, "id": 86, "annotation": null}, {"text": "carrier", "start": 470, "end": 477, "id": 87, "annotation": null}, {"text": "concentration", "start": 478, "end": 491, "id": 88, "annotation": null}, {"text": "and", "start": 492, "end": 495, "id": 89, "annotation": null}, {"text": "mobility", "start": 496, "end": 504, "id": 90, "annotation": null}, {"text": "of", "start": 505, "end": 507, "id": 91, "annotation": null}, {"text": "these", "start": 508, "end": 513, "id": 92, "annotation": null}, {"text": "co", "start": 514, "end": 516, "id": 93, "annotation": null}, {"text": "-", "start": 517, "end": 518, "id": 94, "annotation": null}, {"text": "doped", "start": 519, "end": 524, "id": 95, "annotation": null}, {"text": "ZnO", "start": 525, "end": 528, "id": 96, "annotation": "BASEMAT"}, {"text": "thin", "start": 529, "end": 533, "id": 97, "annotation": null}, {"text": "films", "start": 534, "end": 539, "id": 98, "annotation": null}, {"text": "improved", "start": 540, "end": 548, "id": 99, "annotation": null}, {"text": "with", "start": 549, "end": 553, "id": 100, "annotation": null}, {"text": "the", "start": 554, "end": 557, "id": 101, "annotation": null}, {"text": "F", "start": 558, "end": 559, "id": 102, "annotation": "DOPANT"}, {"text": "doping", "start": 560, "end": 566, "id": 103, "annotation": null}, {"text": "amount", "start": 567, "end": 573, "id": 104, "annotation": null}, {"text": ",", "start": 574, "end": 575, "id": 105, "annotation": null}, {"text": "resulting", "start": 576, "end": 585, "id": 106, "annotation": null}, {"text": "in", "start": 586, "end": 588, "id": 107, "annotation": null}, {"text": "a", "start": 589, "end": 590, "id": 108, "annotation": null}, {"text": "decrease", "start": 591, "end": 599, "id": 109, "annotation": null}, {"text": "in", "start": 600, "end": 602, "id": 110, "annotation": null}, {"text": "the", "start": 603, "end": 606, "id": 111, "annotation": null}, {"text": "electrical", "start": 607, "end": 617, "id": 112, "annotation": null}, {"text": "resistivity", "start": 618, "end": 629, "id": 113, "annotation": null}, {"text": ".", "start": 630, "end": 631, "id": 114, "annotation": null}], [{"text": "The", "start": 632, "end": 635, "id": 115, "annotation": null}, {"text": "reason", "start": 636, "end": 642, "id": 116, "annotation": null}, {"text": "for", "start": 643, "end": 646, "id": 117, "annotation": null}, {"text": "this", "start": 647, "end": 651, "id": 118, "annotation": null}, {"text": "improved", "start": 652, "end": 660, "id": 119, "annotation": null}, {"text": "resistivity", "start": 661, "end": 672, "id": 120, "annotation": null}, {"text": "is", "start": 673, "end": 675, "id": 121, "annotation": null}, {"text": "that", "start": 676, "end": 680, "id": 122, "annotation": null}, {"text": "Ga", "start": 681, "end": 683, "id": 123, "annotation": null}, {"text": "and", "start": 684, "end": 687, "id": 124, "annotation": null}, {"text": "F", "start": 688, "end": 689, "id": 125, "annotation": null}, {"text": "atoms", "start": 690, "end": 695, "id": 126, "annotation": null}, {"text": "replace", "start": 696, "end": 703, "id": 127, "annotation": null}, {"text": "Zn", "start": 704, "end": 706, "id": 128, "annotation": null}, {"text": "and", "start": 707, "end": 710, "id": 129, "annotation": null}, {"text": "O", "start": 711, "end": 712, "id": 130, "annotation": null}, {"text": "in", "start": 713, "end": 715, "id": 131, "annotation": null}, {"text": "the", "start": 716, "end": 719, "id": 132, "annotation": null}, {"text": "lattice", "start": 720, "end": 727, "id": 133, "annotation": null}, {"text": "sites", "start": 728, "end": 733, "id": 134, "annotation": null}, {"text": ",", "start": 734, "end": 735, "id": 135, "annotation": null}, {"text": "respectively", "start": 736, "end": 748, "id": 136, "annotation": null}, {"text": ",", "start": 749, "end": 750, "id": 137, "annotation": null}, {"text": "despite", "start": 751, "end": 758, "id": 138, "annotation": null}, {"text": "a", "start": 759, "end": 760, "id": 139, "annotation": null}, {"text": "slight", "start": 761, "end": 767, "id": 140, "annotation": null}, {"text": "decrease", "start": 768, "end": 776, "id": 141, "annotation": null}, {"text": "in", "start": 777, "end": 779, "id": 142, "annotation": null}, {"text": "the", "start": 780, "end": 783, "id": 143, "annotation": null}, {"text": "mobility", "start": 784, "end": 792, "id": 144, "annotation": null}, {"text": ".", "start": 793, "end": 794, "id": 145, "annotation": null}], [{"text": "An", "start": 795, "end": 797, "id": 146, "annotation": null}, {"text": "increase", "start": 798, "end": 806, "id": 147, "annotation": null}, {"text": "in", "start": 807, "end": 809, "id": 148, "annotation": null}, {"text": "the", "start": 810, "end": 813, "id": 149, "annotation": null}, {"text": "carrier", "start": 814, "end": 821, "id": 150, "annotation": null}, {"text": "concentration", "start": 822, "end": 835, "id": 151, "annotation": null}, {"text": "widened", "start": 836, "end": 843, "id": 152, "annotation": null}, {"text": "the", "start": 844, "end": 847, "id": 153, "annotation": null}, {"text": "optical", "start": 848, "end": 855, "id": 154, "annotation": null}, {"text": "bandgap", "start": 856, "end": 863, "id": 155, "annotation": null}, {"text": "of", "start": 864, "end": 866, "id": 156, "annotation": null}, {"text": "ZnO", "start": 867, "end": 870, "id": 157, "annotation": null}, {"text": "thin", "start": 871, "end": 875, "id": 158, "annotation": null}, {"text": "films", "start": 876, "end": 881, "id": 159, "annotation": null}, {"text": "by", "start": 882, "end": 884, "id": 160, "annotation": null}, {"text": "the", "start": 885, "end": 888, "id": 161, "annotation": null}, {"text": "Moss", "start": 889, "end": 893, "id": 162, "annotation": null}, {"text": "-", "start": 894, "end": 895, "id": 163, "annotation": null}, {"text": "Burstein", "start": 896, "end": 904, "id": 164, "annotation": null}, {"text": "effect", "start": 905, "end": 911, "id": 165, "annotation": null}, {"text": ".", "start": 912, "end": 913, "id": 166, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"remark": "doping_annt1", "text": "Molecular organic light-emitting devices (MOLED) and polymer devices (POLED) were fabricated using a novel iridium complex bis[2-(4\u2032-tert-butylphenyl)-1-phenyl-1H-benzoimidazole-N,C2\u2032] iridium (III) (acetylacetonate) phosphor as an emissive dye doped in two different host materials. Electroluminescent (EL) property, current density\u2013voltage\u2013luminance, and current efficiency characteristics of two kinds of devices were measured. The results showed that MOLED has a maximum current efficiency of 22.9cd/A at a luminance of 163cd/m2, which is higher than that of 7.6cd/A at 371cd/m2 for POLED. MOLED and POLED exhibited a maximum luminance of 13,500 and 4181cd/m2, respectively, with a full width at half-maximum of MOLED spectra is 68nm, which is much narrower than 116nm of POLED spectra.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Molecular", "start": 0, "end": 9, "annotation": null}, {"text": "organic", "start": 10, "end": 17, "annotation": null}, {"text": "light", "start": 18, "end": 23, "annotation": null}, {"text": "-", "start": 23, "end": 24, "annotation": null}, {"text": "emitting", "start": 24, "end": 32, "annotation": null}, {"text": "devices", "start": 33, "end": 40, "annotation": null}, {"text": "(", "start": 41, "end": 42, "annotation": null}, {"text": "MOLED", "start": 42, "end": 47, "annotation": null}, {"text": ")", "start": 47, "end": 48, "annotation": null}, {"text": "and", "start": 49, "end": 52, "annotation": null}, {"text": "polymer", "start": 53, "end": 60, "annotation": null}, {"text": "devices", "start": 61, "end": 68, "annotation": null}, {"text": "(", "start": 69, "end": 70, "annotation": null}, {"text": "POLED", "start": 70, "end": 75, "annotation": null}, {"text": ")", "start": 75, "end": 76, "annotation": null}, {"text": "were", "start": 77, "end": 81, "annotation": null}, {"text": "fabricated", "start": 82, "end": 92, "annotation": null}, {"text": "using", "start": 93, "end": 98, "annotation": null}, {"text": "a", "start": 99, "end": 100, "annotation": null}, {"text": "novel", "start": 101, "end": 106, "annotation": null}, {"text": "iridium", "start": 107, "end": 114, "annotation": null}, {"text": "complex", "start": 115, "end": 122, "annotation": null}, {"text": "bis[2-(4\u2032-tert-butylphenyl)-1-phenyl-1H-benzoimidazole-N,C2\u2032]", "start": 123, "end": 184, "annotation": null}, {"text": "iridium", "start": 185, "end": 192, "annotation": "DOPANT"}, {"text": "(", "start": 193, "end": 194, "annotation": "DOPANT"}, {"text": "III", "start": 194, "end": 197, "annotation": "DOPANT"}, {"text": ")", "start": 197, "end": 198, "annotation": "DOPANT"}, {"text": "(", "start": 199, "end": 200, "annotation": "DOPANT"}, {"text": "acetylacetonate", "start": 200, "end": 215, "annotation": "DOPANT"}, {"text": ")", "start": 215, "end": 216, "annotation": "DOPANT"}, {"text": "phosphor", "start": 217, "end": 225, "annotation": "DOPANT"}, {"text": "as", "start": 226, "end": 228, "annotation": null}, {"text": "an", "start": 229, "end": 231, "annotation": null}, {"text": "emissive", "start": 232, "end": 240, "annotation": null}, {"text": "dye", "start": 241, "end": 244, "annotation": null}, {"text": "doped", "start": 245, "end": 250, "annotation": null}, {"text": "in", "start": 251, "end": 253, "annotation": null}, {"text": "two", "start": 254, "end": 257, "annotation": null}, {"text": "different", "start": 258, "end": 267, "annotation": null}, {"text": "host", "start": 268, "end": 272, "annotation": "BASEMAT"}, {"text": "materials", "start": 273, "end": 282, "annotation": "BASEMAT"}, {"text": ".", "start": 282, "end": 283, "annotation": null}], [{"text": "Electroluminescent", "start": 284, "end": 302, "annotation": null}, {"text": "(", "start": 303, "end": 304, "annotation": null}, {"text": "EL", "start": 304, "end": 306, "annotation": null}, {"text": ")", "start": 306, "end": 307, "annotation": null}, {"text": "property", "start": 308, "end": 316, "annotation": null}, {"text": ",", "start": 316, "end": 317, "annotation": null}, {"text": "current", "start": 318, "end": 325, "annotation": null}, {"text": "density", "start": 326, "end": 333, "annotation": null}, {"text": "\u2013", "start": 333, "end": 334, "annotation": null}, {"text": "voltage", "start": 334, "end": 341, "annotation": null}, {"text": "\u2013", "start": 341, "end": 342, "annotation": null}, {"text": "luminance", "start": 342, "end": 351, "annotation": null}, {"text": ",", "start": 351, "end": 352, "annotation": null}, {"text": "and", "start": 353, "end": 356, "annotation": null}, {"text": "current", "start": 357, "end": 364, "annotation": null}, {"text": "efficiency", "start": 365, "end": 375, "annotation": null}, {"text": "characteristics", "start": 376, "end": 391, "annotation": null}, {"text": "of", "start": 392, "end": 394, "annotation": null}, {"text": "two", "start": 395, "end": 398, "annotation": null}, {"text": "kinds", "start": 399, "end": 404, "annotation": null}, {"text": "of", "start": 405, "end": 407, "annotation": null}, {"text": "devices", "start": 408, "end": 415, "annotation": null}, {"text": "were", "start": 416, "end": 420, "annotation": null}, {"text": "measured", "start": 421, "end": 429, "annotation": null}, {"text": ".", "start": 429, "end": 430, "annotation": null}], [{"text": "The", "start": 431, "end": 434, "annotation": null}, {"text": "results", "start": 435, "end": 442, "annotation": null}, {"text": "showed", "start": 443, "end": 449, "annotation": null}, {"text": "that", "start": 450, "end": 454, "annotation": null}, {"text": "MOLED", "start": 455, "end": 460, "annotation": null}, {"text": "has", "start": 461, "end": 464, "annotation": null}, {"text": "a", "start": 465, "end": 466, "annotation": null}, {"text": "maximum", "start": 467, "end": 474, "annotation": null}, {"text": "current", "start": 475, "end": 482, "annotation": null}, {"text": "efficiency", "start": 483, "end": 493, "annotation": null}, {"text": "of", "start": 494, "end": 496, "annotation": null}, {"text": "22.9cd", "start": 497, "end": 503, "annotation": null}, {"text": "/", "start": 503, "end": 504, "annotation": null}, {"text": "A", "start": 504, "end": 505, "annotation": null}, {"text": "at", "start": 506, "end": 508, "annotation": null}, {"text": "a", "start": 509, "end": 510, "annotation": null}, {"text": "luminance", "start": 511, "end": 520, "annotation": null}, {"text": "of", "start": 521, "end": 523, "annotation": null}, {"text": "163cd", "start": 524, "end": 529, "annotation": null}, {"text": "/", "start": 529, "end": 530, "annotation": null}, {"text": "m2", "start": 530, "end": 532, "annotation": null}, {"text": ",", "start": 532, "end": 533, "annotation": null}, {"text": "which", "start": 534, "end": 539, "annotation": null}, {"text": "is", "start": 540, "end": 542, "annotation": null}, {"text": "higher", "start": 543, "end": 549, "annotation": null}, {"text": "than", "start": 550, "end": 554, "annotation": null}, {"text": "that", "start": 555, "end": 559, "annotation": null}, {"text": "of", "start": 560, "end": 562, "annotation": null}, {"text": "7.6cd", "start": 563, "end": 568, "annotation": null}, {"text": "/", "start": 568, "end": 569, "annotation": null}, {"text": "A", "start": 569, "end": 570, "annotation": null}, {"text": "at", "start": 571, "end": 573, "annotation": null}, {"text": "371cd", "start": 574, "end": 579, "annotation": null}, {"text": "/", "start": 579, "end": 580, "annotation": null}, {"text": "m2", "start": 580, "end": 582, "annotation": null}, {"text": "for", "start": 583, "end": 586, "annotation": null}, {"text": "POLED", "start": 587, "end": 592, "annotation": null}, {"text": ".", "start": 592, "end": 593, "annotation": null}], [{"text": "MOLED", "start": 594, "end": 599, "annotation": null}, {"text": "and", "start": 600, "end": 603, "annotation": null}, {"text": "POLED", "start": 604, "end": 609, "annotation": null}, {"text": "exhibited", "start": 610, "end": 619, "annotation": null}, {"text": "a", "start": 620, "end": 621, "annotation": null}, {"text": "maximum", "start": 622, "end": 629, "annotation": null}, {"text": "luminance", "start": 630, "end": 639, "annotation": null}, {"text": "of", "start": 640, "end": 642, "annotation": null}, {"text": "13,500", "start": 643, "end": 649, "annotation": null}, {"text": "and", "start": 650, "end": 653, "annotation": null}, {"text": "4181cd", "start": 654, "end": 660, "annotation": null}, {"text": "/", "start": 660, "end": 661, "annotation": null}, {"text": "m2", "start": 661, "end": 663, "annotation": null}, {"text": ",", "start": 663, "end": 664, "annotation": null}, {"text": "respectively", "start": 665, "end": 677, "annotation": null}, {"text": ",", "start": 677, "end": 678, "annotation": null}, {"text": "with", "start": 679, "end": 683, "annotation": null}, {"text": "a", "start": 684, "end": 685, "annotation": null}, {"text": "full", "start": 686, "end": 690, "annotation": null}, {"text": "width", "start": 691, "end": 696, "annotation": null}, {"text": "at", "start": 697, "end": 699, "annotation": null}, {"text": "half", "start": 700, "end": 704, "annotation": null}, {"text": "-", "start": 704, "end": 705, "annotation": null}, {"text": "maximum", "start": 705, "end": 712, "annotation": null}, {"text": "of", "start": 713, "end": 715, "annotation": null}, {"text": "MOLED", "start": 716, "end": 721, "annotation": null}, {"text": "spectra", "start": 722, "end": 729, "annotation": null}, {"text": "is", "start": 730, "end": 732, "annotation": null}, {"text": "68", "start": 733, "end": 735, "annotation": null}, {"text": "nm", "start": 735, "end": 737, "annotation": null}, {"text": ",", "start": 737, "end": 738, "annotation": null}, {"text": "which", "start": 739, "end": 744, "annotation": null}, {"text": "is", "start": 745, "end": 747, "annotation": null}, {"text": "much", "start": 748, "end": 752, "annotation": null}, {"text": "narrower", "start": 753, "end": 761, "annotation": null}, {"text": "than", "start": 762, "end": 766, "annotation": null}, {"text": "116", "start": 767, "end": 770, "annotation": null}, {"text": "nm", "start": 770, "end": 772, "annotation": null}, {"text": "of", "start": 773, "end": 775, "annotation": null}, {"text": "POLED", "start": 776, "end": 781, "annotation": null}, {"text": "spectra", "start": 782, "end": 789, "annotation": null}, {"text": ".", "start": 789, "end": 790, "annotation": null}]]} -{"text": "The steady-state photoelectrochemical responses of p-GaP photoelectrodes immersed in aqueous electrolytes and sensitized separately by six triphenylmethane dyes (rose bengal, rhodamine B, crystal violet, ethyl violet, fast green fcf, and brilliant green) have been analyzed. Impedance measurements indicated that these p-GaP(100) photoelectrodes operated under depletion conditions with an electric field of \u223c8.5 \u00d7 10 5 V cm -1 at the p-GaP/solution interface. The set of collected wavelength-dependent quantum yield responses were consistent with sensitization occurring specifically from adsorbed triphenylmethane dyes. At high concentrations of dissolved dye, the measured steady-state photocurrent- potential responses collected at sub-bandgap wavelengths suggested unexpectedly high (>0.1) net internal quantum yields for sensitized hole injection. Separate measurements performed with rose bengal adsorbed on p-GaP surfaces pretreated with (NH 4 ) 2 S verified efficient sensitized hole injection. A modified version of wxAMPS, a finite-difference software package, was utilized to assess key operational features of the sensitized p-GaP photocathodes. The net analysis showed that the high internal quantum yield values inferred from the experimental data were most likely afforded by the internal electric field present within p-GaP, effectively sweeping injected holes away from the interface and minimizing their participation in deleterious pathways that could limit the net collection yield. These simulations defined effective threshold values for the charge carrier mobilities (\u226510 -6 cm 2 V -1 s -1 and \u226510 -1 cm 2 V -1 s -1 at dopant densities of 10 18 and 10 13 cm -3 , respectively), hole injection rate constants (\u226510 12 s -1 ), and surface trap densities (10 12 cm -2 ) needed to attain efficient hole collection with the quality of p-GaP materials used here. The cumulative experimental and modeling data thus provide insight on design strategies for assembling new types of dye-sensitized photocathodes that operate under depletion conditions.", "meta": {"doi": "10.1021/ja304019n"}, "_input_hash": 183975697, "_task_hash": 1851337495, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "steady", "start": 4, "end": 10, "id": 1, "annotation": null}, {"text": "-", "start": 11, "end": 12, "id": 2, "annotation": null}, {"text": "state", "start": 13, "end": 18, "id": 3, "annotation": null}, {"text": "photoelectrochemical", "start": 19, "end": 39, "id": 4, "annotation": null}, {"text": "responses", "start": 40, "end": 49, "id": 5, "annotation": null}, {"text": "of", "start": 50, "end": 52, "id": 6, "annotation": null}, {"text": "p", "start": 53, "end": 54, "id": 7, "annotation": "DOPANT"}, {"text": "-", "start": 55, "end": 56, "id": 8, "annotation": null}, {"text": "GaP", "start": 57, "end": 60, "id": 9, "annotation": "BASEMAT"}, {"text": "photoelectrodes", "start": 61, "end": 76, "id": 10, "annotation": null}, {"text": "immersed", "start": 77, "end": 85, "id": 11, "annotation": null}, {"text": "in", "start": 86, "end": 88, "id": 12, "annotation": null}, {"text": "aqueous", "start": 89, "end": 96, "id": 13, "annotation": null}, {"text": "electrolytes", "start": 97, "end": 109, "id": 14, "annotation": null}, {"text": "and", "start": 110, "end": 113, "id": 15, "annotation": null}, {"text": "sensitized", "start": 114, "end": 124, "id": 16, "annotation": null}, {"text": "separately", "start": 125, "end": 135, "id": 17, "annotation": null}, {"text": "by", "start": 136, "end": 138, "id": 18, "annotation": null}, {"text": "six", "start": 139, "end": 142, "id": 19, "annotation": null}, {"text": "triphenylmethane", "start": 143, "end": 159, "id": 20, "annotation": null}, {"text": "dyes", "start": 160, "end": 164, "id": 21, "annotation": null}, {"text": "(", "start": 165, "end": 166, "id": 22, "annotation": null}, {"text": "rose", "start": 167, "end": 171, "id": 23, "annotation": null}, {"text": "bengal", "start": 172, "end": 178, "id": 24, "annotation": null}, {"text": ",", "start": 179, "end": 180, "id": 25, "annotation": null}, {"text": "rhodamine", "start": 181, "end": 190, "id": 26, "annotation": null}, {"text": "B", "start": 191, "end": 192, "id": 27, "annotation": null}, {"text": ",", "start": 193, "end": 194, "id": 28, "annotation": null}, {"text": "crystal", "start": 195, "end": 202, "id": 29, "annotation": null}, {"text": "violet", "start": 203, "end": 209, "id": 30, "annotation": null}, {"text": ",", "start": 210, "end": 211, "id": 31, "annotation": null}, {"text": "ethyl", "start": 212, "end": 217, "id": 32, "annotation": null}, {"text": "violet", "start": 218, "end": 224, "id": 33, "annotation": null}, {"text": ",", "start": 225, "end": 226, "id": 34, "annotation": null}, {"text": "fast", "start": 227, "end": 231, "id": 35, "annotation": null}, {"text": "green", "start": 232, "end": 237, "id": 36, "annotation": null}, {"text": "fcf", "start": 238, "end": 241, "id": 37, "annotation": null}, {"text": ",", "start": 242, "end": 243, "id": 38, "annotation": null}, {"text": "and", "start": 244, "end": 247, "id": 39, "annotation": null}, {"text": "brilliant", "start": 248, "end": 257, "id": 40, "annotation": null}, {"text": "green", "start": 258, "end": 263, "id": 41, "annotation": null}, {"text": ")", "start": 264, "end": 265, "id": 42, "annotation": null}, {"text": "have", "start": 266, "end": 270, "id": 43, "annotation": null}, {"text": "been", "start": 271, "end": 275, "id": 44, "annotation": null}, {"text": "analyzed", "start": 276, "end": 284, "id": 45, "annotation": null}, {"text": ".", "start": 285, "end": 286, "id": 46, "annotation": null}], [{"text": "Impedance", "start": 287, "end": 296, "id": 47, "annotation": null}, {"text": "measurements", "start": 297, "end": 309, "id": 48, "annotation": null}, {"text": "indicated", "start": 310, "end": 319, "id": 49, "annotation": null}, {"text": "that", "start": 320, "end": 324, "id": 50, "annotation": null}, {"text": "these", "start": 325, "end": 330, "id": 51, "annotation": null}, {"text": "p", "start": 331, "end": 332, "id": 52, "annotation": "DOPANT"}, {"text": "-", "start": 333, "end": 334, "id": 53, "annotation": null}, {"text": "GaP(100", "start": 335, "end": 342, "id": 54, "annotation": "BASEMAT"}, {"text": ")", "start": 343, "end": 344, "id": 55, "annotation": "BASEMAT"}, {"text": "photoelectrodes", "start": 345, "end": 360, "id": 56, "annotation": null}, {"text": "operated", "start": 361, "end": 369, "id": 57, "annotation": null}, {"text": "under", "start": 370, "end": 375, "id": 58, "annotation": null}, {"text": "depletion", "start": 376, "end": 385, "id": 59, "annotation": null}, {"text": "conditions", "start": 386, "end": 396, "id": 60, "annotation": null}, {"text": "with", "start": 397, "end": 401, "id": 61, "annotation": null}, {"text": "an", "start": 402, "end": 404, "id": 62, "annotation": null}, {"text": "electric", "start": 405, "end": 413, "id": 63, "annotation": null}, {"text": "field", "start": 414, "end": 419, "id": 64, "annotation": null}, {"text": "of", "start": 420, "end": 422, "id": 65, "annotation": null}, {"text": "\u223c8.5", "start": 423, "end": 427, "id": 66, "annotation": null}, {"text": "\u00d7", "start": 428, "end": 429, "id": 67, "annotation": null}, {"text": "10", "start": 430, "end": 432, "id": 68, "annotation": null}, {"text": "5", "start": 433, "end": 434, "id": 69, "annotation": null}, {"text": "V", "start": 435, "end": 436, "id": 70, "annotation": null}, {"text": "cm", "start": 437, "end": 439, "id": 71, "annotation": null}, {"text": "-1", "start": 440, "end": 442, "id": 72, "annotation": null}, {"text": "at", "start": 443, "end": 445, "id": 73, "annotation": null}, {"text": "the", "start": 446, "end": 449, "id": 74, "annotation": null}, {"text": "p", "start": 450, "end": 451, "id": 75, "annotation": "DOPANT"}, {"text": "-", "start": 452, "end": 453, "id": 76, "annotation": null}, {"text": "GaP", "start": 454, "end": 457, "id": 77, "annotation": "BASEMAT"}, {"text": "/", "start": 458, "end": 459, "id": 78, "annotation": null}, {"text": "solution", "start": 460, "end": 468, "id": 79, "annotation": null}, {"text": "interface", "start": 469, "end": 478, "id": 80, "annotation": null}, {"text": ".", "start": 479, "end": 480, "id": 81, "annotation": null}], [{"text": "The", "start": 481, "end": 484, "id": 82, "annotation": null}, {"text": "set", "start": 485, "end": 488, "id": 83, "annotation": null}, {"text": "of", "start": 489, "end": 491, "id": 84, "annotation": null}, {"text": "collected", "start": 492, "end": 501, "id": 85, "annotation": null}, {"text": "wavelength", "start": 502, "end": 512, "id": 86, "annotation": null}, {"text": "-", "start": 513, "end": 514, "id": 87, "annotation": null}, {"text": "dependent", "start": 515, "end": 524, "id": 88, "annotation": null}, {"text": "quantum", "start": 525, "end": 532, "id": 89, "annotation": null}, {"text": "yield", "start": 533, "end": 538, "id": 90, "annotation": null}, {"text": "responses", "start": 539, "end": 548, "id": 91, "annotation": null}, {"text": "were", "start": 549, "end": 553, "id": 92, "annotation": null}, {"text": "consistent", "start": 554, "end": 564, "id": 93, "annotation": null}, {"text": "with", "start": 565, "end": 569, "id": 94, "annotation": null}, {"text": "sensitization", "start": 570, "end": 583, "id": 95, "annotation": null}, {"text": "occurring", "start": 584, "end": 593, "id": 96, "annotation": null}, {"text": "specifically", "start": 594, "end": 606, "id": 97, "annotation": null}, {"text": "from", "start": 607, "end": 611, "id": 98, "annotation": null}, {"text": "adsorbed", "start": 612, "end": 620, "id": 99, "annotation": null}, {"text": "triphenylmethane", "start": 621, "end": 637, "id": 100, "annotation": null}, {"text": "dyes", "start": 638, "end": 642, "id": 101, "annotation": null}, {"text": ".", "start": 643, "end": 644, "id": 102, "annotation": null}], [{"text": "At", "start": 645, "end": 647, "id": 103, "annotation": null}, {"text": "high", "start": 648, "end": 652, "id": 104, "annotation": null}, {"text": "concentrations", "start": 653, "end": 667, "id": 105, "annotation": null}, {"text": "of", "start": 668, "end": 670, "id": 106, "annotation": null}, {"text": "dissolved", "start": 671, "end": 680, "id": 107, "annotation": null}, {"text": "dye", "start": 681, "end": 684, "id": 108, "annotation": null}, {"text": ",", "start": 685, "end": 686, "id": 109, "annotation": null}, {"text": "the", "start": 687, "end": 690, "id": 110, "annotation": null}, {"text": "measured", "start": 691, "end": 699, "id": 111, "annotation": null}, {"text": "steady", "start": 700, "end": 706, "id": 112, "annotation": null}, {"text": "-", "start": 707, "end": 708, "id": 113, "annotation": null}, {"text": "state", "start": 709, "end": 714, "id": 114, "annotation": null}, {"text": "photocurrent-", "start": 715, "end": 728, "id": 115, "annotation": null}, {"text": "potential", "start": 729, "end": 738, "id": 116, "annotation": null}, {"text": "responses", "start": 739, "end": 748, "id": 117, "annotation": null}, {"text": "collected", "start": 749, "end": 758, "id": 118, "annotation": null}, {"text": "at", "start": 759, "end": 761, "id": 119, "annotation": null}, {"text": "sub", "start": 762, "end": 765, "id": 120, "annotation": null}, {"text": "-", "start": 766, "end": 767, "id": 121, "annotation": null}, {"text": "bandgap", "start": 768, "end": 775, "id": 122, "annotation": null}, {"text": "wavelengths", "start": 776, "end": 787, "id": 123, "annotation": null}, {"text": "suggested", "start": 788, "end": 797, "id": 124, "annotation": null}, {"text": "unexpectedly", "start": 798, "end": 810, "id": 125, "annotation": null}, {"text": "high", "start": 811, "end": 815, "id": 126, "annotation": null}, {"text": "(", "start": 816, "end": 817, "id": 127, "annotation": null}, {"text": ">", "start": 818, "end": 819, "id": 128, "annotation": null}, {"text": "0.1", "start": 820, "end": 823, "id": 129, "annotation": null}, {"text": ")", "start": 824, "end": 825, "id": 130, "annotation": null}, {"text": "net", "start": 826, "end": 829, "id": 131, "annotation": null}, {"text": "internal", "start": 830, "end": 838, "id": 132, "annotation": null}, {"text": "quantum", "start": 839, "end": 846, "id": 133, "annotation": null}, {"text": "yields", "start": 847, "end": 853, "id": 134, "annotation": null}, {"text": "for", "start": 854, "end": 857, "id": 135, "annotation": null}, {"text": "sensitized", "start": 858, "end": 868, "id": 136, "annotation": null}, {"text": "hole", "start": 869, "end": 873, "id": 137, "annotation": null}, {"text": "injection", "start": 874, "end": 883, "id": 138, "annotation": null}, {"text": ".", "start": 884, "end": 885, "id": 139, "annotation": null}], [{"text": "Separate", "start": 886, "end": 894, "id": 140, "annotation": null}, {"text": "measurements", "start": 895, "end": 907, "id": 141, "annotation": null}, {"text": "performed", "start": 908, "end": 917, "id": 142, "annotation": null}, {"text": "with", "start": 918, "end": 922, "id": 143, "annotation": null}, {"text": "rose", "start": 923, "end": 927, "id": 144, "annotation": null}, {"text": "bengal", "start": 928, "end": 934, "id": 145, "annotation": null}, {"text": "adsorbed", "start": 935, "end": 943, "id": 146, "annotation": null}, {"text": "on", "start": 944, "end": 946, "id": 147, "annotation": null}, {"text": "p", "start": 947, "end": 948, "id": 148, "annotation": "DOPANT"}, {"text": "-", "start": 949, "end": 950, "id": 149, "annotation": null}, {"text": "GaP", "start": 951, "end": 954, "id": 150, "annotation": "BASEMAT"}, {"text": "surfaces", "start": 955, "end": 963, "id": 151, "annotation": null}, {"text": "pretreated", "start": 964, "end": 974, "id": 152, "annotation": null}, {"text": "with", "start": 975, "end": 979, "id": 153, "annotation": null}, {"text": "(", "start": 980, "end": 981, "id": 154, "annotation": null}, {"text": "NH", "start": 982, "end": 984, "id": 155, "annotation": null}, {"text": "4", "start": 985, "end": 986, "id": 156, "annotation": null}, {"text": ")", "start": 987, "end": 988, "id": 157, "annotation": null}, {"text": "2", "start": 989, "end": 990, "id": 158, "annotation": null}, {"text": "S", "start": 991, "end": 992, "id": 159, "annotation": null}, {"text": "verified", "start": 993, "end": 1001, "id": 160, "annotation": null}, {"text": "efficient", "start": 1002, "end": 1011, "id": 161, "annotation": null}, {"text": "sensitized", "start": 1012, "end": 1022, "id": 162, "annotation": null}, {"text": "hole", "start": 1023, "end": 1027, "id": 163, "annotation": null}, {"text": "injection", "start": 1028, "end": 1037, "id": 164, "annotation": null}, {"text": ".", "start": 1038, "end": 1039, "id": 165, "annotation": null}], [{"text": "A", "start": 1040, "end": 1041, "id": 166, "annotation": null}, {"text": "modified", "start": 1042, "end": 1050, "id": 167, "annotation": null}, {"text": "version", "start": 1051, "end": 1058, "id": 168, "annotation": null}, {"text": "of", "start": 1059, "end": 1061, "id": 169, "annotation": null}, {"text": "wxAMPS", "start": 1062, "end": 1068, "id": 170, "annotation": null}, {"text": ",", "start": 1069, "end": 1070, "id": 171, "annotation": null}, {"text": "a", "start": 1071, "end": 1072, "id": 172, "annotation": null}, {"text": "finite", "start": 1073, "end": 1079, "id": 173, "annotation": null}, {"text": "-", "start": 1080, "end": 1081, "id": 174, "annotation": null}, {"text": "difference", "start": 1082, "end": 1092, "id": 175, "annotation": null}, {"text": "software", "start": 1093, "end": 1101, "id": 176, "annotation": null}, {"text": "package", "start": 1102, "end": 1109, "id": 177, "annotation": null}, {"text": ",", "start": 1110, "end": 1111, "id": 178, "annotation": null}, {"text": "was", "start": 1112, "end": 1115, "id": 179, "annotation": null}, {"text": "utilized", "start": 1116, "end": 1124, "id": 180, "annotation": null}, {"text": "to", "start": 1125, "end": 1127, "id": 181, "annotation": null}, {"text": "assess", "start": 1128, "end": 1134, "id": 182, "annotation": null}, {"text": "key", "start": 1135, "end": 1138, "id": 183, "annotation": null}, {"text": "operational", "start": 1139, "end": 1150, "id": 184, "annotation": null}, {"text": "features", "start": 1151, "end": 1159, "id": 185, "annotation": null}, {"text": "of", "start": 1160, "end": 1162, "id": 186, "annotation": null}, {"text": "the", "start": 1163, "end": 1166, "id": 187, "annotation": null}, {"text": "sensitized", "start": 1167, "end": 1177, "id": 188, "annotation": null}, {"text": "p", "start": 1178, "end": 1179, "id": 189, "annotation": "DOPANT"}, {"text": "-", "start": 1180, "end": 1181, "id": 190, "annotation": null}, {"text": "GaP", "start": 1182, "end": 1185, "id": 191, "annotation": "BASEMAT"}, {"text": "photocathodes", "start": 1186, "end": 1199, "id": 192, "annotation": null}, {"text": ".", "start": 1200, "end": 1201, "id": 193, "annotation": null}], [{"text": "The", "start": 1202, "end": 1205, "id": 194, "annotation": null}, {"text": "net", "start": 1206, "end": 1209, "id": 195, "annotation": null}, {"text": "analysis", "start": 1210, "end": 1218, "id": 196, "annotation": null}, {"text": "showed", "start": 1219, "end": 1225, "id": 197, "annotation": null}, {"text": "that", "start": 1226, "end": 1230, "id": 198, "annotation": null}, {"text": "the", "start": 1231, "end": 1234, "id": 199, "annotation": null}, {"text": "high", "start": 1235, "end": 1239, "id": 200, "annotation": null}, {"text": "internal", "start": 1240, "end": 1248, "id": 201, "annotation": null}, {"text": "quantum", "start": 1249, "end": 1256, "id": 202, "annotation": null}, {"text": "yield", "start": 1257, "end": 1262, "id": 203, "annotation": null}, {"text": "values", "start": 1263, "end": 1269, "id": 204, "annotation": null}, {"text": "inferred", "start": 1270, "end": 1278, "id": 205, "annotation": null}, {"text": "from", "start": 1279, "end": 1283, "id": 206, "annotation": null}, {"text": "the", "start": 1284, "end": 1287, "id": 207, "annotation": null}, {"text": "experimental", "start": 1288, "end": 1300, "id": 208, "annotation": null}, {"text": "data", "start": 1301, "end": 1305, "id": 209, "annotation": null}, {"text": "were", "start": 1306, "end": 1310, "id": 210, "annotation": null}, {"text": "most", "start": 1311, "end": 1315, "id": 211, "annotation": null}, {"text": "likely", "start": 1316, "end": 1322, "id": 212, "annotation": null}, {"text": "afforded", "start": 1323, "end": 1331, "id": 213, "annotation": null}, {"text": "by", "start": 1332, "end": 1334, "id": 214, "annotation": null}, {"text": "the", "start": 1335, "end": 1338, "id": 215, "annotation": null}, {"text": "internal", "start": 1339, "end": 1347, "id": 216, "annotation": null}, {"text": "electric", "start": 1348, "end": 1356, "id": 217, "annotation": null}, {"text": "field", "start": 1357, "end": 1362, "id": 218, "annotation": null}, {"text": "present", "start": 1363, "end": 1370, "id": 219, "annotation": null}, {"text": "within", "start": 1371, "end": 1377, "id": 220, "annotation": null}, {"text": "p", "start": 1378, "end": 1379, "id": 221, "annotation": "DOPANT"}, {"text": "-", "start": 1380, "end": 1381, "id": 222, "annotation": null}, {"text": "GaP", "start": 1382, "end": 1385, "id": 223, "annotation": "BASEMAT"}, {"text": ",", "start": 1386, "end": 1387, "id": 224, "annotation": null}, {"text": "effectively", "start": 1388, "end": 1399, "id": 225, "annotation": null}, {"text": "sweeping", "start": 1400, "end": 1408, "id": 226, "annotation": null}, {"text": "injected", "start": 1409, "end": 1417, "id": 227, "annotation": null}, {"text": "holes", "start": 1418, "end": 1423, "id": 228, "annotation": null}, {"text": "away", "start": 1424, "end": 1428, "id": 229, "annotation": null}, {"text": "from", "start": 1429, "end": 1433, "id": 230, "annotation": null}, {"text": "the", "start": 1434, "end": 1437, "id": 231, "annotation": null}, {"text": "interface", "start": 1438, "end": 1447, "id": 232, "annotation": null}, {"text": "and", "start": 1448, "end": 1451, "id": 233, "annotation": null}, {"text": "minimizing", "start": 1452, "end": 1462, "id": 234, "annotation": null}, {"text": "their", "start": 1463, "end": 1468, "id": 235, "annotation": null}, {"text": "participation", "start": 1469, "end": 1482, "id": 236, "annotation": null}, {"text": "in", "start": 1483, "end": 1485, "id": 237, "annotation": null}, {"text": "deleterious", "start": 1486, "end": 1497, "id": 238, "annotation": null}, {"text": "pathways", "start": 1498, "end": 1506, "id": 239, "annotation": null}, {"text": "that", "start": 1507, "end": 1511, "id": 240, "annotation": null}, {"text": "could", "start": 1512, "end": 1517, "id": 241, "annotation": null}, {"text": "limit", "start": 1518, "end": 1523, "id": 242, "annotation": null}, {"text": "the", "start": 1524, "end": 1527, "id": 243, "annotation": null}, {"text": "net", "start": 1528, "end": 1531, "id": 244, "annotation": null}, {"text": "collection", "start": 1532, "end": 1542, "id": 245, "annotation": null}, {"text": "yield", "start": 1543, "end": 1548, "id": 246, "annotation": null}, {"text": ".", "start": 1549, "end": 1550, "id": 247, "annotation": null}], [{"text": "These", "start": 1551, "end": 1556, "id": 248, "annotation": null}, {"text": "simulations", "start": 1557, "end": 1568, "id": 249, "annotation": null}, {"text": "defined", "start": 1569, "end": 1576, "id": 250, "annotation": null}, {"text": "effective", "start": 1577, "end": 1586, "id": 251, "annotation": null}, {"text": "threshold", "start": 1587, "end": 1596, "id": 252, "annotation": null}, {"text": "values", "start": 1597, "end": 1603, "id": 253, "annotation": null}, {"text": "for", "start": 1604, "end": 1607, "id": 254, "annotation": null}, {"text": "the", "start": 1608, "end": 1611, "id": 255, "annotation": null}, {"text": "charge", "start": 1612, "end": 1618, "id": 256, "annotation": null}, {"text": "carrier", "start": 1619, "end": 1626, "id": 257, "annotation": null}, {"text": "mobilities", "start": 1627, "end": 1637, "id": 258, "annotation": null}, {"text": "(", "start": 1638, "end": 1639, "id": 259, "annotation": null}, {"text": "\u226510", "start": 1640, "end": 1643, "id": 260, "annotation": null}, {"text": "-6", "start": 1644, "end": 1646, "id": 261, "annotation": null}, {"text": "cm", "start": 1647, "end": 1649, "id": 262, "annotation": null}, {"text": "2", "start": 1650, "end": 1651, "id": 263, "annotation": null}, {"text": "V", "start": 1652, "end": 1653, "id": 264, "annotation": null}, {"text": "-1", "start": 1654, "end": 1656, "id": 265, "annotation": null}, {"text": "s", "start": 1657, "end": 1658, "id": 266, "annotation": null}, {"text": "-1", "start": 1659, "end": 1661, "id": 267, "annotation": null}, {"text": "and", "start": 1662, "end": 1665, "id": 268, "annotation": null}, {"text": "\u226510", "start": 1666, "end": 1669, "id": 269, "annotation": null}, {"text": "-1", "start": 1670, "end": 1672, "id": 270, "annotation": null}, {"text": "cm", "start": 1673, "end": 1675, "id": 271, "annotation": null}, {"text": "2", "start": 1676, "end": 1677, "id": 272, "annotation": null}, {"text": "V", "start": 1678, "end": 1679, "id": 273, "annotation": null}, {"text": "-1", "start": 1680, "end": 1682, "id": 274, "annotation": null}, {"text": "s", "start": 1683, "end": 1684, "id": 275, "annotation": null}, {"text": "-1", "start": 1685, "end": 1687, "id": 276, "annotation": null}, {"text": "at", "start": 1688, "end": 1690, "id": 277, "annotation": null}, {"text": "dopant", "start": 1691, "end": 1697, "id": 278, "annotation": null}, {"text": "densities", "start": 1698, "end": 1707, "id": 279, "annotation": null}, {"text": "of", "start": 1708, "end": 1710, "id": 280, "annotation": null}, {"text": "10", "start": 1711, "end": 1713, "id": 281, "annotation": "DOPMODQ"}, {"text": "18", "start": 1714, "end": 1716, "id": 282, "annotation": "DOPMODQ"}, {"text": "and", "start": 1717, "end": 1720, "id": 283, "annotation": null}, {"text": "10", "start": 1721, "end": 1723, "id": 284, "annotation": "DOPMODQ"}, {"text": "13", "start": 1724, "end": 1726, "id": 285, "annotation": null}, {"text": "cm", "start": 1727, "end": 1729, "id": 286, "annotation": null}, {"text": "-3", "start": 1730, "end": 1732, "id": 287, "annotation": "DOPMODQ"}, {"text": ",", "start": 1733, "end": 1734, "id": 288, "annotation": null}, {"text": "respectively", "start": 1735, "end": 1747, "id": 289, "annotation": null}, {"text": ")", "start": 1748, "end": 1749, "id": 290, "annotation": null}, {"text": ",", "start": 1750, "end": 1751, "id": 291, "annotation": null}, {"text": "hole", "start": 1752, "end": 1756, "id": 292, "annotation": null}, {"text": "injection", "start": 1757, "end": 1766, "id": 293, "annotation": null}, {"text": "rate", "start": 1767, "end": 1771, "id": 294, "annotation": null}, {"text": "constants", "start": 1772, "end": 1781, "id": 295, "annotation": null}, {"text": "(", "start": 1782, "end": 1783, "id": 296, "annotation": null}, {"text": "\u226510", "start": 1784, "end": 1787, "id": 297, "annotation": null}, {"text": "12", "start": 1788, "end": 1790, "id": 298, "annotation": null}, {"text": "s", "start": 1791, "end": 1792, "id": 299, "annotation": null}, {"text": "-1", "start": 1793, "end": 1795, "id": 300, "annotation": null}, {"text": ")", "start": 1796, "end": 1797, "id": 301, "annotation": null}, {"text": ",", "start": 1798, "end": 1799, "id": 302, "annotation": null}, {"text": "and", "start": 1800, "end": 1803, "id": 303, "annotation": null}, {"text": "surface", "start": 1804, "end": 1811, "id": 304, "annotation": null}, {"text": "trap", "start": 1812, "end": 1816, "id": 305, "annotation": null}, {"text": "densities", "start": 1817, "end": 1826, "id": 306, "annotation": null}, {"text": "(", "start": 1827, "end": 1828, "id": 307, "annotation": null}, {"text": "10", "start": 1829, "end": 1831, "id": 308, "annotation": null}, {"text": "12", "start": 1832, "end": 1834, "id": 309, "annotation": null}, {"text": "cm", "start": 1835, "end": 1837, "id": 310, "annotation": null}, {"text": "-2", "start": 1838, "end": 1840, "id": 311, "annotation": null}, {"text": ")", "start": 1841, "end": 1842, "id": 312, "annotation": null}, {"text": "needed", "start": 1843, "end": 1849, "id": 313, "annotation": null}, {"text": "to", "start": 1850, "end": 1852, "id": 314, "annotation": null}, {"text": "attain", "start": 1853, "end": 1859, "id": 315, "annotation": null}, {"text": "efficient", "start": 1860, "end": 1869, "id": 316, "annotation": null}, {"text": "hole", "start": 1870, "end": 1874, "id": 317, "annotation": null}, {"text": "collection", "start": 1875, "end": 1885, "id": 318, "annotation": null}, {"text": "with", "start": 1886, "end": 1890, "id": 319, "annotation": null}, {"text": "the", "start": 1891, "end": 1894, "id": 320, "annotation": null}, {"text": "quality", "start": 1895, "end": 1902, "id": 321, "annotation": null}, {"text": "of", "start": 1903, "end": 1905, "id": 322, "annotation": null}, {"text": "p", "start": 1906, "end": 1907, "id": 323, "annotation": "DOPANT"}, {"text": "-", "start": 1908, "end": 1909, "id": 324, "annotation": null}, {"text": "GaP", "start": 1910, "end": 1913, "id": 325, "annotation": "BASEMAT"}, {"text": "materials", "start": 1914, "end": 1923, "id": 326, "annotation": null}, {"text": "used", "start": 1924, "end": 1928, "id": 327, "annotation": null}, {"text": "here", "start": 1929, "end": 1933, "id": 328, "annotation": null}, {"text": ".", "start": 1934, "end": 1935, "id": 329, "annotation": null}], [{"text": "The", "start": 1936, "end": 1939, "id": 330, "annotation": null}, {"text": "cumulative", "start": 1940, "end": 1950, "id": 331, "annotation": null}, {"text": "experimental", "start": 1951, "end": 1963, "id": 332, "annotation": null}, {"text": "and", "start": 1964, "end": 1967, "id": 333, "annotation": null}, {"text": "modeling", "start": 1968, "end": 1976, "id": 334, "annotation": null}, {"text": "data", "start": 1977, "end": 1981, "id": 335, "annotation": null}, {"text": "thus", "start": 1982, "end": 1986, "id": 336, "annotation": null}, {"text": "provide", "start": 1987, "end": 1994, "id": 337, "annotation": null}, {"text": "insight", "start": 1995, "end": 2002, "id": 338, "annotation": null}, {"text": "on", "start": 2003, "end": 2005, "id": 339, "annotation": null}, {"text": "design", "start": 2006, "end": 2012, "id": 340, "annotation": null}, {"text": "strategies", "start": 2013, "end": 2023, "id": 341, "annotation": null}, {"text": "for", "start": 2024, "end": 2027, "id": 342, "annotation": null}, {"text": "assembling", "start": 2028, "end": 2038, "id": 343, "annotation": null}, {"text": "new", "start": 2039, "end": 2042, "id": 344, "annotation": null}, {"text": "types", "start": 2043, "end": 2048, "id": 345, "annotation": null}, {"text": "of", "start": 2049, "end": 2051, "id": 346, "annotation": null}, {"text": "dye", "start": 2052, "end": 2055, "id": 347, "annotation": null}, {"text": "-", "start": 2056, "end": 2057, "id": 348, "annotation": null}, {"text": "sensitized", "start": 2058, "end": 2068, "id": 349, "annotation": null}, {"text": "photocathodes", "start": 2069, "end": 2082, "id": 350, "annotation": null}, {"text": "that", "start": 2083, "end": 2087, "id": 351, "annotation": null}, {"text": "operate", "start": 2088, "end": 2095, "id": 352, "annotation": null}, {"text": "under", "start": 2096, "end": 2101, "id": 353, "annotation": null}, {"text": "depletion", "start": 2102, "end": 2111, "id": 354, "annotation": null}, {"text": "conditions", "start": 2112, "end": 2122, "id": 355, "annotation": null}, {"text": ".", "start": 2123, "end": 2124, "id": 356, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"remark": "doping_annt1", "text": "Molecular organic light-emitting devices (MOLED) and polymer devices (POLED) were fabricated using a novel iridium complex bis[2-(4\u2032-tert-butylphenyl)-1-phenyl-1H-benzoimidazole-N,C2\u2032] iridium (III) (acetylacetonate) phosphor as an emissive dye doped in two different host materials. Electroluminescent (EL) property, current density\u2013voltage\u2013luminance, and current efficiency characteristics of two kinds of devices were measured. The results showed that MOLED has a maximum current efficiency of 22.9cd/A at a luminance of 163cd/m2, which is higher than that of 7.6cd/A at 371cd/m2 for POLED. MOLED and POLED exhibited a maximum luminance of 13,500 and 4181cd/m2, respectively, with a full width at half-maximum of MOLED spectra is 68nm, which is much narrower than 116nm of POLED spectra.", "labels": ["BASEMAT", "DOPMODQ", "DOPANT"], "tokens": [[{"text": "Molecular", "start": 0, "end": 9, "annotation": null}, {"text": "organic", "start": 10, "end": 17, "annotation": null}, {"text": "light", "start": 18, "end": 23, "annotation": null}, {"text": "-", "start": 23, "end": 24, "annotation": null}, {"text": "emitting", "start": 24, "end": 32, "annotation": null}, {"text": "devices", "start": 33, "end": 40, "annotation": null}, {"text": "(", "start": 41, "end": 42, "annotation": null}, {"text": "MOLED", "start": 42, "end": 47, "annotation": null}, {"text": ")", "start": 47, "end": 48, "annotation": null}, {"text": "and", "start": 49, "end": 52, "annotation": null}, {"text": "polymer", "start": 53, "end": 60, "annotation": null}, {"text": "devices", "start": 61, "end": 68, "annotation": null}, {"text": "(", "start": 69, "end": 70, "annotation": null}, {"text": "POLED", "start": 70, "end": 75, "annotation": null}, {"text": ")", "start": 75, "end": 76, "annotation": null}, {"text": "were", "start": 77, "end": 81, "annotation": null}, {"text": "fabricated", "start": 82, "end": 92, "annotation": null}, {"text": "using", "start": 93, "end": 98, "annotation": null}, {"text": "a", "start": 99, "end": 100, "annotation": null}, {"text": "novel", "start": 101, "end": 106, "annotation": null}, {"text": "iridium", "start": 107, "end": 114, "annotation": null}, {"text": "complex", "start": 115, "end": 122, "annotation": null}, {"text": "bis[2-(4\u2032-tert-butylphenyl)-1-phenyl-1H-benzoimidazole-N,C2\u2032]", "start": 123, "end": 184, "annotation": null}, {"text": "iridium", "start": 185, "end": 192, "annotation": "DOPANT"}, {"text": "(", "start": 193, "end": 194, "annotation": "DOPANT"}, {"text": "III", "start": 194, "end": 197, "annotation": "DOPANT"}, {"text": ")", "start": 197, "end": 198, "annotation": "DOPANT"}, {"text": "(", "start": 199, "end": 200, "annotation": "DOPANT"}, {"text": "acetylacetonate", "start": 200, "end": 215, "annotation": "DOPANT"}, {"text": ")", "start": 215, "end": 216, "annotation": "DOPANT"}, {"text": "phosphor", "start": 217, "end": 225, "annotation": "DOPANT"}, {"text": "as", "start": 226, "end": 228, "annotation": null}, {"text": "an", "start": 229, "end": 231, "annotation": null}, {"text": "emissive", "start": 232, "end": 240, "annotation": null}, {"text": "dye", "start": 241, "end": 244, "annotation": null}, {"text": "doped", "start": 245, "end": 250, "annotation": null}, {"text": "in", "start": 251, "end": 253, "annotation": null}, {"text": "two", "start": 254, "end": 257, "annotation": null}, {"text": "different", "start": 258, "end": 267, "annotation": null}, {"text": "host", "start": 268, "end": 272, "annotation": "BASEMAT"}, {"text": "materials", "start": 273, "end": 282, "annotation": "BASEMAT"}, {"text": ".", "start": 282, "end": 283, "annotation": null}], [{"text": "Electroluminescent", "start": 284, "end": 302, "annotation": null}, {"text": "(", "start": 303, "end": 304, "annotation": null}, {"text": "EL", "start": 304, "end": 306, "annotation": null}, {"text": ")", "start": 306, "end": 307, "annotation": null}, {"text": "property", "start": 308, "end": 316, "annotation": null}, {"text": ",", "start": 316, "end": 317, "annotation": null}, {"text": "current", "start": 318, "end": 325, "annotation": null}, {"text": "density", "start": 326, "end": 333, "annotation": null}, {"text": "\u2013", "start": 333, "end": 334, "annotation": null}, {"text": "voltage", "start": 334, "end": 341, "annotation": null}, {"text": "\u2013", "start": 341, "end": 342, "annotation": null}, {"text": "luminance", "start": 342, "end": 351, "annotation": null}, {"text": ",", "start": 351, "end": 352, "annotation": null}, {"text": "and", "start": 353, "end": 356, "annotation": null}, {"text": "current", "start": 357, "end": 364, "annotation": null}, {"text": "efficiency", "start": 365, "end": 375, "annotation": null}, {"text": "characteristics", "start": 376, "end": 391, "annotation": null}, {"text": "of", "start": 392, "end": 394, "annotation": null}, {"text": "two", "start": 395, "end": 398, "annotation": null}, {"text": "kinds", "start": 399, "end": 404, "annotation": null}, {"text": "of", "start": 405, "end": 407, "annotation": null}, {"text": "devices", "start": 408, "end": 415, "annotation": null}, {"text": "were", "start": 416, "end": 420, "annotation": null}, {"text": "measured", "start": 421, "end": 429, "annotation": null}, {"text": ".", "start": 429, "end": 430, "annotation": null}], [{"text": "The", "start": 431, "end": 434, "annotation": null}, {"text": "results", "start": 435, "end": 442, "annotation": null}, {"text": "showed", "start": 443, "end": 449, "annotation": null}, {"text": "that", "start": 450, "end": 454, "annotation": null}, {"text": "MOLED", "start": 455, "end": 460, "annotation": null}, {"text": "has", "start": 461, "end": 464, "annotation": null}, {"text": "a", "start": 465, "end": 466, "annotation": null}, {"text": "maximum", "start": 467, "end": 474, "annotation": null}, {"text": "current", "start": 475, "end": 482, "annotation": null}, {"text": "efficiency", "start": 483, "end": 493, "annotation": null}, {"text": "of", "start": 494, "end": 496, "annotation": null}, {"text": "22.9cd", "start": 497, "end": 503, "annotation": null}, {"text": "/", "start": 503, "end": 504, "annotation": null}, {"text": "A", "start": 504, "end": 505, "annotation": null}, {"text": "at", "start": 506, "end": 508, "annotation": null}, {"text": "a", "start": 509, "end": 510, "annotation": null}, {"text": "luminance", "start": 511, "end": 520, "annotation": null}, {"text": "of", "start": 521, "end": 523, "annotation": null}, {"text": "163cd", "start": 524, "end": 529, "annotation": null}, {"text": "/", "start": 529, "end": 530, "annotation": null}, {"text": "m2", "start": 530, "end": 532, "annotation": null}, {"text": ",", "start": 532, "end": 533, "annotation": null}, {"text": "which", "start": 534, "end": 539, "annotation": null}, {"text": "is", "start": 540, "end": 542, "annotation": null}, {"text": "higher", "start": 543, "end": 549, "annotation": null}, {"text": "than", "start": 550, "end": 554, "annotation": null}, {"text": "that", "start": 555, "end": 559, "annotation": null}, {"text": "of", "start": 560, "end": 562, "annotation": null}, {"text": "7.6cd", "start": 563, "end": 568, "annotation": null}, {"text": "/", "start": 568, "end": 569, "annotation": null}, {"text": "A", "start": 569, "end": 570, "annotation": null}, {"text": "at", "start": 571, "end": 573, "annotation": null}, {"text": "371cd", "start": 574, "end": 579, "annotation": null}, {"text": "/", "start": 579, "end": 580, "annotation": null}, {"text": "m2", "start": 580, "end": 582, "annotation": null}, {"text": "for", "start": 583, "end": 586, "annotation": null}, {"text": "POLED", "start": 587, "end": 592, "annotation": null}, {"text": ".", "start": 592, "end": 593, "annotation": null}], [{"text": "MOLED", "start": 594, "end": 599, "annotation": null}, {"text": "and", "start": 600, "end": 603, "annotation": null}, {"text": "POLED", "start": 604, "end": 609, "annotation": null}, {"text": "exhibited", "start": 610, "end": 619, "annotation": null}, {"text": "a", "start": 620, "end": 621, "annotation": null}, {"text": "maximum", "start": 622, "end": 629, "annotation": null}, {"text": "luminance", "start": 630, "end": 639, "annotation": null}, {"text": "of", "start": 640, "end": 642, "annotation": null}, {"text": "13,500", "start": 643, "end": 649, "annotation": null}, {"text": "and", "start": 650, "end": 653, "annotation": null}, {"text": "4181cd", "start": 654, "end": 660, "annotation": null}, {"text": "/", "start": 660, "end": 661, "annotation": null}, {"text": "m2", "start": 661, "end": 663, "annotation": null}, {"text": ",", "start": 663, "end": 664, "annotation": null}, {"text": "respectively", "start": 665, "end": 677, "annotation": null}, {"text": ",", "start": 677, "end": 678, "annotation": null}, {"text": "with", "start": 679, "end": 683, "annotation": null}, {"text": "a", "start": 684, "end": 685, "annotation": null}, {"text": "full", "start": 686, "end": 690, "annotation": null}, {"text": "width", "start": 691, "end": 696, "annotation": null}, {"text": "at", "start": 697, "end": 699, "annotation": null}, {"text": "half", "start": 700, "end": 704, "annotation": null}, {"text": "-", "start": 704, "end": 705, "annotation": null}, {"text": "maximum", "start": 705, "end": 712, "annotation": null}, {"text": "of", "start": 713, "end": 715, "annotation": null}, {"text": "MOLED", "start": 716, "end": 721, "annotation": null}, {"text": "spectra", "start": 722, "end": 729, "annotation": null}, {"text": "is", "start": 730, "end": 732, "annotation": null}, {"text": "68", "start": 733, "end": 735, "annotation": null}, {"text": "nm", "start": 735, "end": 737, "annotation": null}, {"text": ",", "start": 737, "end": 738, "annotation": null}, {"text": "which", "start": 739, "end": 744, "annotation": null}, {"text": "is", "start": 745, "end": 747, "annotation": null}, {"text": "much", "start": 748, "end": 752, "annotation": null}, {"text": "narrower", "start": 753, "end": 761, "annotation": null}, {"text": "than", "start": 762, "end": 766, "annotation": null}, {"text": "116", "start": 767, "end": 770, "annotation": null}, {"text": "nm", "start": 770, "end": 772, "annotation": null}, {"text": "of", "start": 773, "end": 775, "annotation": null}, {"text": "POLED", "start": 776, "end": 781, "annotation": null}, {"text": "spectra", "start": 782, "end": 789, "annotation": null}, {"text": ".", "start": 789, "end": 790, "annotation": null}]], "meta": {"doi": "10.1016/j.displa.2008.04.004"}} +{"text": "The steady-state photoelectrochemical responses of p-GaP photoelectrodes immersed in aqueous electrolytes and sensitized separately by six triphenylmethane dyes (rose bengal, rhodamine B, crystal violet, ethyl violet, fast green fcf, and brilliant green) have been analyzed. Impedance measurements indicated that these p-GaP(100) photoelectrodes operated under depletion conditions with an electric field of \u223c8.5 \u00d7 10 5 V cm -1 at the p-GaP/solution interface. The set of collected wavelength-dependent quantum yield responses were consistent with sensitization occurring specifically from adsorbed triphenylmethane dyes. At high concentrations of dissolved dye, the measured steady-state photocurrent- potential responses collected at sub-bandgap wavelengths suggested unexpectedly high (>0.1) net internal quantum yields for sensitized hole injection. Separate measurements performed with rose bengal adsorbed on p-GaP surfaces pretreated with (NH 4 ) 2 S verified efficient sensitized hole injection. A modified version of wxAMPS, a finite-difference software package, was utilized to assess key operational features of the sensitized p-GaP photocathodes. The net analysis showed that the high internal quantum yield values inferred from the experimental data were most likely afforded by the internal electric field present within p-GaP, effectively sweeping injected holes away from the interface and minimizing their participation in deleterious pathways that could limit the net collection yield. These simulations defined effective threshold values for the charge carrier mobilities (\u226510 -6 cm 2 V -1 s -1 and \u226510 -1 cm 2 V -1 s -1 at dopant densities of 10 18 and 10 13 cm -3 , respectively), hole injection rate constants (\u226510 12 s -1 ), and surface trap densities (10 12 cm -2 ) needed to attain efficient hole collection with the quality of p-GaP materials used here. The cumulative experimental and modeling data thus provide insight on design strategies for assembling new types of dye-sensitized photocathodes that operate under depletion conditions.", "meta": {"doi": "10.1021/ja304019n"}, "_input_hash": 183975697, "_task_hash": 1851337495, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "steady", "start": 4, "end": 10, "id": 1, "annotation": null}, {"text": "-", "start": 11, "end": 12, "id": 2, "annotation": null}, {"text": "state", "start": 13, "end": 18, "id": 3, "annotation": null}, {"text": "photoelectrochemical", "start": 19, "end": 39, "id": 4, "annotation": null}, {"text": "responses", "start": 40, "end": 49, "id": 5, "annotation": null}, {"text": "of", "start": 50, "end": 52, "id": 6, "annotation": null}, {"text": "p", "start": 53, "end": 54, "id": 7, "annotation": "DOPANT"}, {"text": "-", "start": 55, "end": 56, "id": 8, "annotation": null}, {"text": "GaP", "start": 57, "end": 60, "id": 9, "annotation": "BASEMAT"}, {"text": "photoelectrodes", "start": 61, "end": 76, "id": 10, "annotation": null}, {"text": "immersed", "start": 77, "end": 85, "id": 11, "annotation": null}, {"text": "in", "start": 86, "end": 88, "id": 12, "annotation": null}, {"text": "aqueous", "start": 89, "end": 96, "id": 13, "annotation": null}, {"text": "electrolytes", "start": 97, "end": 109, "id": 14, "annotation": null}, {"text": "and", "start": 110, "end": 113, "id": 15, "annotation": null}, {"text": "sensitized", "start": 114, "end": 124, "id": 16, "annotation": null}, {"text": "separately", "start": 125, "end": 135, "id": 17, "annotation": null}, {"text": "by", "start": 136, "end": 138, "id": 18, "annotation": null}, {"text": "six", "start": 139, "end": 142, "id": 19, "annotation": null}, {"text": "triphenylmethane", "start": 143, "end": 159, "id": 20, "annotation": null}, {"text": "dyes", "start": 160, "end": 164, "id": 21, "annotation": null}, {"text": "(", "start": 165, "end": 166, "id": 22, "annotation": null}, {"text": "rose", "start": 167, "end": 171, "id": 23, "annotation": null}, {"text": "bengal", "start": 172, "end": 178, "id": 24, "annotation": null}, {"text": ",", "start": 179, "end": 180, "id": 25, "annotation": null}, {"text": "rhodamine", "start": 181, "end": 190, "id": 26, "annotation": null}, {"text": "B", "start": 191, "end": 192, "id": 27, "annotation": null}, {"text": ",", "start": 193, "end": 194, "id": 28, "annotation": null}, {"text": "crystal", "start": 195, "end": 202, "id": 29, "annotation": null}, {"text": "violet", "start": 203, "end": 209, "id": 30, "annotation": null}, {"text": ",", "start": 210, "end": 211, "id": 31, "annotation": null}, {"text": "ethyl", "start": 212, "end": 217, "id": 32, "annotation": null}, {"text": "violet", "start": 218, "end": 224, "id": 33, "annotation": null}, {"text": ",", "start": 225, "end": 226, "id": 34, "annotation": null}, {"text": "fast", "start": 227, "end": 231, "id": 35, "annotation": null}, {"text": "green", "start": 232, "end": 237, "id": 36, "annotation": null}, {"text": "fcf", "start": 238, "end": 241, "id": 37, "annotation": null}, {"text": ",", "start": 242, "end": 243, "id": 38, "annotation": null}, {"text": "and", "start": 244, "end": 247, "id": 39, "annotation": null}, {"text": "brilliant", "start": 248, "end": 257, "id": 40, "annotation": null}, {"text": "green", "start": 258, "end": 263, "id": 41, "annotation": null}, {"text": ")", "start": 264, "end": 265, "id": 42, "annotation": null}, {"text": "have", "start": 266, "end": 270, "id": 43, "annotation": null}, {"text": "been", "start": 271, "end": 275, "id": 44, "annotation": null}, {"text": "analyzed", "start": 276, "end": 284, "id": 45, "annotation": null}, {"text": ".", "start": 285, "end": 286, "id": 46, "annotation": null}], [{"text": "Impedance", "start": 287, "end": 296, "id": 47, "annotation": null}, {"text": "measurements", "start": 297, "end": 309, "id": 48, "annotation": null}, {"text": "indicated", "start": 310, "end": 319, "id": 49, "annotation": null}, {"text": "that", "start": 320, "end": 324, "id": 50, "annotation": null}, {"text": "these", "start": 325, "end": 330, "id": 51, "annotation": null}, {"text": "p", "start": 331, "end": 332, "id": 52, "annotation": "DOPANT"}, {"text": "-", "start": 333, "end": 334, "id": 53, "annotation": null}, {"text": "GaP(100", "start": 335, "end": 342, "id": 54, "annotation": "BASEMAT"}, {"text": ")", "start": 343, "end": 344, "id": 55, "annotation": "BASEMAT"}, {"text": "photoelectrodes", "start": 345, "end": 360, "id": 56, "annotation": null}, {"text": "operated", "start": 361, "end": 369, "id": 57, "annotation": null}, {"text": "under", "start": 370, "end": 375, "id": 58, "annotation": null}, {"text": "depletion", "start": 376, "end": 385, "id": 59, "annotation": null}, {"text": "conditions", "start": 386, "end": 396, "id": 60, "annotation": null}, {"text": "with", "start": 397, "end": 401, "id": 61, "annotation": null}, {"text": "an", "start": 402, "end": 404, "id": 62, "annotation": null}, {"text": "electric", "start": 405, "end": 413, "id": 63, "annotation": null}, {"text": "field", "start": 414, "end": 419, "id": 64, "annotation": null}, {"text": "of", "start": 420, "end": 422, "id": 65, "annotation": null}, {"text": "\u223c8.5", "start": 423, "end": 427, "id": 66, "annotation": null}, {"text": "\u00d7", "start": 428, "end": 429, "id": 67, "annotation": null}, {"text": "10", "start": 430, "end": 432, "id": 68, "annotation": null}, {"text": "5", "start": 433, "end": 434, "id": 69, "annotation": null}, {"text": "V", "start": 435, "end": 436, "id": 70, "annotation": null}, {"text": "cm", "start": 437, "end": 439, "id": 71, "annotation": null}, {"text": "-1", "start": 440, "end": 442, "id": 72, "annotation": null}, {"text": "at", "start": 443, "end": 445, "id": 73, "annotation": null}, {"text": "the", "start": 446, "end": 449, "id": 74, "annotation": null}, {"text": "p", "start": 450, "end": 451, "id": 75, "annotation": "DOPANT"}, {"text": "-", "start": 452, "end": 453, "id": 76, "annotation": null}, {"text": "GaP", "start": 454, "end": 457, "id": 77, "annotation": "BASEMAT"}, {"text": "/", "start": 458, "end": 459, "id": 78, "annotation": null}, {"text": "solution", "start": 460, "end": 468, "id": 79, "annotation": null}, {"text": "interface", "start": 469, "end": 478, "id": 80, "annotation": null}, {"text": ".", "start": 479, "end": 480, "id": 81, "annotation": null}], [{"text": "The", "start": 481, "end": 484, "id": 82, "annotation": null}, {"text": "set", "start": 485, "end": 488, "id": 83, "annotation": null}, {"text": "of", "start": 489, "end": 491, "id": 84, "annotation": null}, {"text": "collected", "start": 492, "end": 501, "id": 85, "annotation": null}, {"text": "wavelength", "start": 502, "end": 512, "id": 86, "annotation": null}, {"text": "-", "start": 513, "end": 514, "id": 87, "annotation": null}, {"text": "dependent", "start": 515, "end": 524, "id": 88, "annotation": null}, {"text": "quantum", "start": 525, "end": 532, "id": 89, "annotation": null}, {"text": "yield", "start": 533, "end": 538, "id": 90, "annotation": null}, {"text": "responses", "start": 539, "end": 548, "id": 91, "annotation": null}, {"text": "were", "start": 549, "end": 553, "id": 92, "annotation": null}, {"text": "consistent", "start": 554, "end": 564, "id": 93, "annotation": null}, {"text": "with", "start": 565, "end": 569, "id": 94, "annotation": null}, {"text": "sensitization", "start": 570, "end": 583, "id": 95, "annotation": null}, {"text": "occurring", "start": 584, "end": 593, "id": 96, "annotation": null}, {"text": "specifically", "start": 594, "end": 606, "id": 97, "annotation": null}, {"text": "from", "start": 607, "end": 611, "id": 98, "annotation": null}, {"text": "adsorbed", "start": 612, "end": 620, "id": 99, "annotation": null}, {"text": "triphenylmethane", "start": 621, "end": 637, "id": 100, "annotation": null}, {"text": "dyes", "start": 638, "end": 642, "id": 101, "annotation": null}, {"text": ".", "start": 643, "end": 644, "id": 102, "annotation": null}], [{"text": "At", "start": 645, "end": 647, "id": 103, "annotation": null}, {"text": "high", "start": 648, "end": 652, "id": 104, "annotation": null}, {"text": "concentrations", "start": 653, "end": 667, "id": 105, "annotation": null}, {"text": "of", "start": 668, "end": 670, "id": 106, "annotation": null}, {"text": "dissolved", "start": 671, "end": 680, "id": 107, "annotation": null}, {"text": "dye", "start": 681, "end": 684, "id": 108, "annotation": null}, {"text": ",", "start": 685, "end": 686, "id": 109, "annotation": null}, {"text": "the", "start": 687, "end": 690, "id": 110, "annotation": null}, {"text": "measured", "start": 691, "end": 699, "id": 111, "annotation": null}, {"text": "steady", "start": 700, "end": 706, "id": 112, "annotation": null}, {"text": "-", "start": 707, "end": 708, "id": 113, "annotation": null}, {"text": "state", "start": 709, "end": 714, "id": 114, "annotation": null}, {"text": "photocurrent-", "start": 715, "end": 728, "id": 115, "annotation": null}, {"text": "potential", "start": 729, "end": 738, "id": 116, "annotation": null}, {"text": "responses", "start": 739, "end": 748, "id": 117, "annotation": null}, {"text": "collected", "start": 749, "end": 758, "id": 118, "annotation": null}, {"text": "at", "start": 759, "end": 761, "id": 119, "annotation": null}, {"text": "sub", "start": 762, "end": 765, "id": 120, "annotation": null}, {"text": "-", "start": 766, "end": 767, "id": 121, "annotation": null}, {"text": "bandgap", "start": 768, "end": 775, "id": 122, "annotation": null}, {"text": "wavelengths", "start": 776, "end": 787, "id": 123, "annotation": null}, {"text": "suggested", "start": 788, "end": 797, "id": 124, "annotation": null}, {"text": "unexpectedly", "start": 798, "end": 810, "id": 125, "annotation": null}, {"text": "high", "start": 811, "end": 815, "id": 126, "annotation": null}, {"text": "(", "start": 816, "end": 817, "id": 127, "annotation": null}, {"text": ">", "start": 818, "end": 819, "id": 128, "annotation": null}, {"text": "0.1", "start": 820, "end": 823, "id": 129, "annotation": null}, {"text": ")", "start": 824, "end": 825, "id": 130, "annotation": null}, {"text": "net", "start": 826, "end": 829, "id": 131, "annotation": null}, {"text": "internal", "start": 830, "end": 838, "id": 132, "annotation": null}, {"text": "quantum", "start": 839, "end": 846, "id": 133, "annotation": null}, {"text": "yields", "start": 847, "end": 853, "id": 134, "annotation": null}, {"text": "for", "start": 854, "end": 857, "id": 135, "annotation": null}, {"text": "sensitized", "start": 858, "end": 868, "id": 136, "annotation": null}, {"text": "hole", "start": 869, "end": 873, "id": 137, "annotation": null}, {"text": "injection", "start": 874, "end": 883, "id": 138, "annotation": null}, {"text": ".", "start": 884, "end": 885, "id": 139, "annotation": null}], [{"text": "Separate", "start": 886, "end": 894, "id": 140, "annotation": null}, {"text": "measurements", "start": 895, "end": 907, "id": 141, "annotation": null}, {"text": "performed", "start": 908, "end": 917, "id": 142, "annotation": null}, {"text": "with", "start": 918, "end": 922, "id": 143, "annotation": null}, {"text": "rose", "start": 923, "end": 927, "id": 144, "annotation": null}, {"text": "bengal", "start": 928, "end": 934, "id": 145, "annotation": null}, {"text": "adsorbed", "start": 935, "end": 943, "id": 146, "annotation": null}, {"text": "on", "start": 944, "end": 946, "id": 147, "annotation": null}, {"text": "p", "start": 947, "end": 948, "id": 148, "annotation": "DOPANT"}, {"text": "-", "start": 949, "end": 950, "id": 149, "annotation": null}, {"text": "GaP", "start": 951, "end": 954, "id": 150, "annotation": "BASEMAT"}, {"text": "surfaces", "start": 955, "end": 963, "id": 151, "annotation": null}, {"text": "pretreated", "start": 964, "end": 974, "id": 152, "annotation": null}, {"text": "with", "start": 975, "end": 979, "id": 153, "annotation": null}, {"text": "(", "start": 980, "end": 981, "id": 154, "annotation": null}, {"text": "NH", "start": 982, "end": 984, "id": 155, "annotation": null}, {"text": "4", "start": 985, "end": 986, "id": 156, "annotation": null}, {"text": ")", "start": 987, "end": 988, "id": 157, "annotation": null}, {"text": "2", "start": 989, "end": 990, "id": 158, "annotation": null}, {"text": "S", "start": 991, "end": 992, "id": 159, "annotation": null}, {"text": "verified", "start": 993, "end": 1001, "id": 160, "annotation": null}, {"text": "efficient", "start": 1002, "end": 1011, "id": 161, "annotation": null}, {"text": "sensitized", "start": 1012, "end": 1022, "id": 162, "annotation": null}, {"text": "hole", "start": 1023, "end": 1027, "id": 163, "annotation": null}, {"text": "injection", "start": 1028, "end": 1037, "id": 164, "annotation": null}, {"text": ".", "start": 1038, "end": 1039, "id": 165, "annotation": null}], [{"text": "A", "start": 1040, "end": 1041, "id": 166, "annotation": null}, {"text": "modified", "start": 1042, "end": 1050, "id": 167, "annotation": null}, {"text": "version", "start": 1051, "end": 1058, "id": 168, "annotation": null}, {"text": "of", "start": 1059, "end": 1061, "id": 169, "annotation": null}, {"text": "wxAMPS", "start": 1062, "end": 1068, "id": 170, "annotation": null}, {"text": ",", "start": 1069, "end": 1070, "id": 171, "annotation": null}, {"text": "a", "start": 1071, "end": 1072, "id": 172, "annotation": null}, {"text": "finite", "start": 1073, "end": 1079, "id": 173, "annotation": null}, {"text": "-", "start": 1080, "end": 1081, "id": 174, "annotation": null}, {"text": "difference", "start": 1082, "end": 1092, "id": 175, "annotation": null}, {"text": "software", "start": 1093, "end": 1101, "id": 176, "annotation": null}, {"text": "package", "start": 1102, "end": 1109, "id": 177, "annotation": null}, {"text": ",", "start": 1110, "end": 1111, "id": 178, "annotation": null}, {"text": "was", "start": 1112, "end": 1115, "id": 179, "annotation": null}, {"text": "utilized", "start": 1116, "end": 1124, "id": 180, "annotation": null}, {"text": "to", "start": 1125, "end": 1127, "id": 181, "annotation": null}, {"text": "assess", "start": 1128, "end": 1134, "id": 182, "annotation": null}, {"text": "key", "start": 1135, "end": 1138, "id": 183, "annotation": null}, {"text": "operational", "start": 1139, "end": 1150, "id": 184, "annotation": null}, {"text": "features", "start": 1151, "end": 1159, "id": 185, "annotation": null}, {"text": "of", "start": 1160, "end": 1162, "id": 186, "annotation": null}, {"text": "the", "start": 1163, "end": 1166, "id": 187, "annotation": null}, {"text": "sensitized", "start": 1167, "end": 1177, "id": 188, "annotation": null}, {"text": "p", "start": 1178, "end": 1179, "id": 189, "annotation": "DOPANT"}, {"text": "-", "start": 1180, "end": 1181, "id": 190, "annotation": null}, {"text": "GaP", "start": 1182, "end": 1185, "id": 191, "annotation": "BASEMAT"}, {"text": "photocathodes", "start": 1186, "end": 1199, "id": 192, "annotation": null}, {"text": ".", "start": 1200, "end": 1201, "id": 193, "annotation": null}], [{"text": "The", "start": 1202, "end": 1205, "id": 194, "annotation": null}, {"text": "net", "start": 1206, "end": 1209, "id": 195, "annotation": null}, {"text": "analysis", "start": 1210, "end": 1218, "id": 196, "annotation": null}, {"text": "showed", "start": 1219, "end": 1225, "id": 197, "annotation": null}, {"text": "that", "start": 1226, "end": 1230, "id": 198, "annotation": null}, {"text": "the", "start": 1231, "end": 1234, "id": 199, "annotation": null}, {"text": "high", "start": 1235, "end": 1239, "id": 200, "annotation": null}, {"text": "internal", "start": 1240, "end": 1248, "id": 201, "annotation": null}, {"text": "quantum", "start": 1249, "end": 1256, "id": 202, "annotation": null}, {"text": "yield", "start": 1257, "end": 1262, "id": 203, "annotation": null}, {"text": "values", "start": 1263, "end": 1269, "id": 204, "annotation": null}, {"text": "inferred", "start": 1270, "end": 1278, "id": 205, "annotation": null}, {"text": "from", "start": 1279, "end": 1283, "id": 206, "annotation": null}, {"text": "the", "start": 1284, "end": 1287, "id": 207, "annotation": null}, {"text": "experimental", "start": 1288, "end": 1300, "id": 208, "annotation": null}, {"text": "data", "start": 1301, "end": 1305, "id": 209, "annotation": null}, {"text": "were", "start": 1306, "end": 1310, "id": 210, "annotation": null}, {"text": "most", "start": 1311, "end": 1315, "id": 211, "annotation": null}, {"text": "likely", "start": 1316, "end": 1322, "id": 212, "annotation": null}, {"text": "afforded", "start": 1323, "end": 1331, "id": 213, "annotation": null}, {"text": "by", "start": 1332, "end": 1334, "id": 214, "annotation": null}, {"text": "the", "start": 1335, "end": 1338, "id": 215, "annotation": null}, {"text": "internal", "start": 1339, "end": 1347, "id": 216, "annotation": null}, {"text": "electric", "start": 1348, "end": 1356, "id": 217, "annotation": null}, {"text": "field", "start": 1357, "end": 1362, "id": 218, "annotation": null}, {"text": "present", "start": 1363, "end": 1370, "id": 219, "annotation": null}, {"text": "within", "start": 1371, "end": 1377, "id": 220, "annotation": null}, {"text": "p", "start": 1378, "end": 1379, "id": 221, "annotation": "DOPANT"}, {"text": "-", "start": 1380, "end": 1381, "id": 222, "annotation": null}, {"text": "GaP", "start": 1382, "end": 1385, "id": 223, "annotation": "BASEMAT"}, {"text": ",", "start": 1386, "end": 1387, "id": 224, "annotation": null}, {"text": "effectively", "start": 1388, "end": 1399, "id": 225, "annotation": null}, {"text": "sweeping", "start": 1400, "end": 1408, "id": 226, "annotation": null}, {"text": "injected", "start": 1409, "end": 1417, "id": 227, "annotation": null}, {"text": "holes", "start": 1418, "end": 1423, "id": 228, "annotation": null}, {"text": "away", "start": 1424, "end": 1428, "id": 229, "annotation": null}, {"text": "from", "start": 1429, "end": 1433, "id": 230, "annotation": null}, {"text": "the", "start": 1434, "end": 1437, "id": 231, "annotation": null}, {"text": "interface", "start": 1438, "end": 1447, "id": 232, "annotation": null}, {"text": "and", "start": 1448, "end": 1451, "id": 233, "annotation": null}, {"text": "minimizing", "start": 1452, "end": 1462, "id": 234, "annotation": null}, {"text": "their", "start": 1463, "end": 1468, "id": 235, "annotation": null}, {"text": "participation", "start": 1469, "end": 1482, "id": 236, "annotation": null}, {"text": "in", "start": 1483, "end": 1485, "id": 237, "annotation": null}, {"text": "deleterious", "start": 1486, "end": 1497, "id": 238, "annotation": null}, {"text": "pathways", "start": 1498, "end": 1506, "id": 239, "annotation": null}, {"text": "that", "start": 1507, "end": 1511, "id": 240, "annotation": null}, {"text": "could", "start": 1512, "end": 1517, "id": 241, "annotation": null}, {"text": "limit", "start": 1518, "end": 1523, "id": 242, "annotation": null}, {"text": "the", "start": 1524, "end": 1527, "id": 243, "annotation": null}, {"text": "net", "start": 1528, "end": 1531, "id": 244, "annotation": null}, {"text": "collection", "start": 1532, "end": 1542, "id": 245, "annotation": null}, {"text": "yield", "start": 1543, "end": 1548, "id": 246, "annotation": null}, {"text": ".", "start": 1549, "end": 1550, "id": 247, "annotation": null}], [{"text": "These", "start": 1551, "end": 1556, "id": 248, "annotation": null}, {"text": "simulations", "start": 1557, "end": 1568, "id": 249, "annotation": null}, {"text": "defined", "start": 1569, "end": 1576, "id": 250, "annotation": null}, {"text": "effective", "start": 1577, "end": 1586, "id": 251, "annotation": null}, {"text": "threshold", "start": 1587, "end": 1596, "id": 252, "annotation": null}, {"text": "values", "start": 1597, "end": 1603, "id": 253, "annotation": null}, {"text": "for", "start": 1604, "end": 1607, "id": 254, "annotation": null}, {"text": "the", "start": 1608, "end": 1611, "id": 255, "annotation": null}, {"text": "charge", "start": 1612, "end": 1618, "id": 256, "annotation": null}, {"text": "carrier", "start": 1619, "end": 1626, "id": 257, "annotation": null}, {"text": "mobilities", "start": 1627, "end": 1637, "id": 258, "annotation": null}, {"text": "(", "start": 1638, "end": 1639, "id": 259, "annotation": null}, {"text": "\u226510", "start": 1640, "end": 1643, "id": 260, "annotation": null}, {"text": "-6", "start": 1644, "end": 1646, "id": 261, "annotation": null}, {"text": "cm", "start": 1647, "end": 1649, "id": 262, "annotation": null}, {"text": "2", "start": 1650, "end": 1651, "id": 263, "annotation": null}, {"text": "V", "start": 1652, "end": 1653, "id": 264, "annotation": null}, {"text": "-1", "start": 1654, "end": 1656, "id": 265, "annotation": null}, {"text": "s", "start": 1657, "end": 1658, "id": 266, "annotation": null}, {"text": "-1", "start": 1659, "end": 1661, "id": 267, "annotation": null}, {"text": "and", "start": 1662, "end": 1665, "id": 268, "annotation": null}, {"text": "\u226510", "start": 1666, "end": 1669, "id": 269, "annotation": null}, {"text": "-1", "start": 1670, "end": 1672, "id": 270, "annotation": null}, {"text": "cm", "start": 1673, "end": 1675, "id": 271, "annotation": null}, {"text": "2", "start": 1676, "end": 1677, "id": 272, "annotation": null}, {"text": "V", "start": 1678, "end": 1679, "id": 273, "annotation": null}, {"text": "-1", "start": 1680, "end": 1682, "id": 274, "annotation": null}, {"text": "s", "start": 1683, "end": 1684, "id": 275, "annotation": null}, {"text": "-1", "start": 1685, "end": 1687, "id": 276, "annotation": null}, {"text": "at", "start": 1688, "end": 1690, "id": 277, "annotation": null}, {"text": "dopant", "start": 1691, "end": 1697, "id": 278, "annotation": null}, {"text": "densities", "start": 1698, "end": 1707, "id": 279, "annotation": null}, {"text": "of", "start": 1708, "end": 1710, "id": 280, "annotation": null}, {"text": "10", "start": 1711, "end": 1713, "id": 281, "annotation": "DOPMODQ"}, {"text": "18", "start": 1714, "end": 1716, "id": 282, "annotation": "DOPMODQ"}, {"text": "and", "start": 1717, "end": 1720, "id": 283, "annotation": "DOPMODQ"}, {"text": "10", "start": 1721, "end": 1723, "id": 284, "annotation": "DOPMODQ"}, {"text": "13", "start": 1724, "end": 1726, "id": 285, "annotation": "DOPMODQ"}, {"text": "cm", "start": 1727, "end": 1729, "id": 286, "annotation": "DOPMODQ"}, {"text": "-3", "start": 1730, "end": 1732, "id": 287, "annotation": "DOPMODQ"}, {"text": ",", "start": 1733, "end": 1734, "id": 288, "annotation": null}, {"text": "respectively", "start": 1735, "end": 1747, "id": 289, "annotation": null}, {"text": ")", "start": 1748, "end": 1749, "id": 290, "annotation": null}, {"text": ",", "start": 1750, "end": 1751, "id": 291, "annotation": null}, {"text": "hole", "start": 1752, "end": 1756, "id": 292, "annotation": null}, {"text": "injection", "start": 1757, "end": 1766, "id": 293, "annotation": null}, {"text": "rate", "start": 1767, "end": 1771, "id": 294, "annotation": null}, {"text": "constants", "start": 1772, "end": 1781, "id": 295, "annotation": null}, {"text": "(", "start": 1782, "end": 1783, "id": 296, "annotation": null}, {"text": "\u226510", "start": 1784, "end": 1787, "id": 297, "annotation": null}, {"text": "12", "start": 1788, "end": 1790, "id": 298, "annotation": null}, {"text": "s", "start": 1791, "end": 1792, "id": 299, "annotation": null}, {"text": "-1", "start": 1793, "end": 1795, "id": 300, "annotation": null}, {"text": ")", "start": 1796, "end": 1797, "id": 301, "annotation": null}, {"text": ",", "start": 1798, "end": 1799, "id": 302, "annotation": null}, {"text": "and", "start": 1800, "end": 1803, "id": 303, "annotation": null}, {"text": "surface", "start": 1804, "end": 1811, "id": 304, "annotation": null}, {"text": "trap", "start": 1812, "end": 1816, "id": 305, "annotation": null}, {"text": "densities", "start": 1817, "end": 1826, "id": 306, "annotation": null}, {"text": "(", "start": 1827, "end": 1828, "id": 307, "annotation": null}, {"text": "10", "start": 1829, "end": 1831, "id": 308, "annotation": null}, {"text": "12", "start": 1832, "end": 1834, "id": 309, "annotation": null}, {"text": "cm", "start": 1835, "end": 1837, "id": 310, "annotation": null}, {"text": "-2", "start": 1838, "end": 1840, "id": 311, "annotation": null}, {"text": ")", "start": 1841, "end": 1842, "id": 312, "annotation": null}, {"text": "needed", "start": 1843, "end": 1849, "id": 313, "annotation": null}, {"text": "to", "start": 1850, "end": 1852, "id": 314, "annotation": null}, {"text": "attain", "start": 1853, "end": 1859, "id": 315, "annotation": null}, {"text": "efficient", "start": 1860, "end": 1869, "id": 316, "annotation": null}, {"text": "hole", "start": 1870, "end": 1874, "id": 317, "annotation": null}, {"text": "collection", "start": 1875, "end": 1885, "id": 318, "annotation": null}, {"text": "with", "start": 1886, "end": 1890, "id": 319, "annotation": null}, {"text": "the", "start": 1891, "end": 1894, "id": 320, "annotation": null}, {"text": "quality", "start": 1895, "end": 1902, "id": 321, "annotation": null}, {"text": "of", "start": 1903, "end": 1905, "id": 322, "annotation": null}, {"text": "p", "start": 1906, "end": 1907, "id": 323, "annotation": "DOPANT"}, {"text": "-", "start": 1908, "end": 1909, "id": 324, "annotation": null}, {"text": "GaP", "start": 1910, "end": 1913, "id": 325, "annotation": "BASEMAT"}, {"text": "materials", "start": 1914, "end": 1923, "id": 326, "annotation": null}, {"text": "used", "start": 1924, "end": 1928, "id": 327, "annotation": null}, {"text": "here", "start": 1929, "end": 1933, "id": 328, "annotation": null}, {"text": ".", "start": 1934, "end": 1935, "id": 329, "annotation": null}], [{"text": "The", "start": 1936, "end": 1939, "id": 330, "annotation": null}, {"text": "cumulative", "start": 1940, "end": 1950, "id": 331, "annotation": null}, {"text": "experimental", "start": 1951, "end": 1963, "id": 332, "annotation": null}, {"text": "and", "start": 1964, "end": 1967, "id": 333, "annotation": null}, {"text": "modeling", "start": 1968, "end": 1976, "id": 334, "annotation": null}, {"text": "data", "start": 1977, "end": 1981, "id": 335, "annotation": null}, {"text": "thus", "start": 1982, "end": 1986, "id": 336, "annotation": null}, {"text": "provide", "start": 1987, "end": 1994, "id": 337, "annotation": null}, {"text": "insight", "start": 1995, "end": 2002, "id": 338, "annotation": null}, {"text": "on", "start": 2003, "end": 2005, "id": 339, "annotation": null}, {"text": "design", "start": 2006, "end": 2012, "id": 340, "annotation": null}, {"text": "strategies", "start": 2013, "end": 2023, "id": 341, "annotation": null}, {"text": "for", "start": 2024, "end": 2027, "id": 342, "annotation": null}, {"text": "assembling", "start": 2028, "end": 2038, "id": 343, "annotation": null}, {"text": "new", "start": 2039, "end": 2042, "id": 344, "annotation": null}, {"text": "types", "start": 2043, "end": 2048, "id": 345, "annotation": null}, {"text": "of", "start": 2049, "end": 2051, "id": 346, "annotation": null}, {"text": "dye", "start": 2052, "end": 2055, "id": 347, "annotation": null}, {"text": "-", "start": 2056, "end": 2057, "id": 348, "annotation": null}, {"text": "sensitized", "start": 2058, "end": 2068, "id": 349, "annotation": null}, {"text": "photocathodes", "start": 2069, "end": 2082, "id": 350, "annotation": null}, {"text": "that", "start": 2083, "end": 2087, "id": 351, "annotation": null}, {"text": "operate", "start": 2088, "end": 2095, "id": 352, "annotation": null}, {"text": "under", "start": 2096, "end": 2101, "id": 353, "annotation": null}, {"text": "depletion", "start": 2102, "end": 2111, "id": 354, "annotation": null}, {"text": "conditions", "start": 2112, "end": 2122, "id": 355, "annotation": null}, {"text": ".", "start": 2123, "end": 2124, "id": 356, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "ZnSe nanocrystals (NCs) were synthesized using a microwave activated method. Synthesized NCs were characterized by means of X-ray diffraction (XRD), UV\u2013visible (UV\u2013vis) optical spectroscopy and photoluminescence (PL). XRD analysis demonstrated cubic zinc blende NCs. TEM image indicated round shape NCs and most of the particles had diameters of about 3nm. Band gap of the NCs was obtained about 3.15eV and PL spectra indicates a broad emission with two peaks located about 415 and 500nm related to band edge and trap state respectively. For ZnSe:Cu NCs, PL intensity of band gap emission of ZnSe NCs at 415nm decreased gradually with the increase in the concentration of Cu dopant ions and for precursor ratio of Cu:Zn 1% band gap emission at 415nm disappeared completely. At the same conditions, PL QY was obtained about 2% and 8% for ZnSe and ZnSe:Cu (1%) NCs, respectively.", "meta": {"doi": "10.1016/j.apsusc.2014.08.091"}, "_input_hash": -41883280, "_task_hash": 1574098374, "tokens": [[{"text": "ZnSe", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "nanocrystals", "start": 5, "end": 17, "id": 1, "annotation": null}, {"text": "(", "start": 18, "end": 19, "id": 2, "annotation": null}, {"text": "NCs", "start": 20, "end": 23, "id": 3, "annotation": null}, {"text": ")", "start": 24, "end": 25, "id": 4, "annotation": null}, {"text": "were", "start": 26, "end": 30, "id": 5, "annotation": null}, {"text": "synthesized", "start": 31, "end": 42, "id": 6, "annotation": null}, {"text": "using", "start": 43, "end": 48, "id": 7, "annotation": null}, {"text": "a", "start": 49, "end": 50, "id": 8, "annotation": null}, {"text": "microwave", "start": 51, "end": 60, "id": 9, "annotation": null}, {"text": "activated", "start": 61, "end": 70, "id": 10, "annotation": null}, {"text": "method", "start": 71, "end": 77, "id": 11, "annotation": null}, {"text": ".", "start": 78, "end": 79, "id": 12, "annotation": null}], [{"text": "Synthesized", "start": 80, "end": 91, "id": 13, "annotation": null}, {"text": "NCs", "start": 92, "end": 95, "id": 14, "annotation": null}, {"text": "were", "start": 96, "end": 100, "id": 15, "annotation": null}, {"text": "characterized", "start": 101, "end": 114, "id": 16, "annotation": null}, {"text": "by", "start": 115, "end": 117, "id": 17, "annotation": null}, {"text": "means", "start": 118, "end": 123, "id": 18, "annotation": null}, {"text": "of", "start": 124, "end": 126, "id": 19, "annotation": null}, {"text": "X", "start": 127, "end": 128, "id": 20, "annotation": null}, {"text": "-", "start": 129, "end": 130, "id": 21, "annotation": null}, {"text": "ray", "start": 131, "end": 134, "id": 22, "annotation": null}, {"text": "diffraction", "start": 135, "end": 146, "id": 23, "annotation": null}, {"text": "(", "start": 147, "end": 148, "id": 24, "annotation": null}, {"text": "XRD", "start": 149, "end": 152, "id": 25, "annotation": null}, {"text": ")", "start": 153, "end": 154, "id": 26, "annotation": null}, {"text": ",", "start": 155, "end": 156, "id": 27, "annotation": null}, {"text": "UV", "start": 157, "end": 159, "id": 28, "annotation": null}, {"text": "\u2013", "start": 160, "end": 161, "id": 29, "annotation": null}, {"text": "visible", "start": 162, "end": 169, "id": 30, "annotation": null}, {"text": "(", "start": 170, "end": 171, "id": 31, "annotation": null}, {"text": "UV", "start": 172, "end": 174, "id": 32, "annotation": null}, {"text": "\u2013", "start": 175, "end": 176, "id": 33, "annotation": null}, {"text": "vis", "start": 177, "end": 180, "id": 34, "annotation": null}, {"text": ")", "start": 181, "end": 182, "id": 35, "annotation": null}, {"text": "optical", "start": 183, "end": 190, "id": 36, "annotation": null}, {"text": "spectroscopy", "start": 191, "end": 203, "id": 37, "annotation": null}, {"text": "and", "start": 204, "end": 207, "id": 38, "annotation": null}, {"text": "photoluminescence", "start": 208, "end": 225, "id": 39, "annotation": null}, {"text": "(", "start": 226, "end": 227, "id": 40, "annotation": null}, {"text": "PL", "start": 228, "end": 230, "id": 41, "annotation": null}, {"text": ")", "start": 231, "end": 232, "id": 42, "annotation": null}, {"text": ".", "start": 233, "end": 234, "id": 43, "annotation": null}], [{"text": "XRD", "start": 235, "end": 238, "id": 44, "annotation": null}, {"text": "analysis", "start": 239, "end": 247, "id": 45, "annotation": null}, {"text": "demonstrated", "start": 248, "end": 260, "id": 46, "annotation": null}, {"text": "cubic", "start": 261, "end": 266, "id": 47, "annotation": null}, {"text": "zinc", "start": 267, "end": 271, "id": 48, "annotation": null}, {"text": "blende", "start": 272, "end": 278, "id": 49, "annotation": null}, {"text": "NCs", "start": 279, "end": 282, "id": 50, "annotation": null}, {"text": ".", "start": 283, "end": 284, "id": 51, "annotation": null}], [{"text": "TEM", "start": 285, "end": 288, "id": 52, "annotation": null}, {"text": "image", "start": 289, "end": 294, "id": 53, "annotation": null}, {"text": "indicated", "start": 295, "end": 304, "id": 54, "annotation": null}, {"text": "round", "start": 305, "end": 310, "id": 55, "annotation": null}, {"text": "shape", "start": 311, "end": 316, "id": 56, "annotation": null}, {"text": "NCs", "start": 317, "end": 320, "id": 57, "annotation": null}, {"text": "and", "start": 321, "end": 324, "id": 58, "annotation": null}, {"text": "most", "start": 325, "end": 329, "id": 59, "annotation": null}, {"text": "of", "start": 330, "end": 332, "id": 60, "annotation": null}, {"text": "the", "start": 333, "end": 336, "id": 61, "annotation": null}, {"text": "particles", "start": 337, "end": 346, "id": 62, "annotation": null}, {"text": "had", "start": 347, "end": 350, "id": 63, "annotation": null}, {"text": "diameters", "start": 351, "end": 360, "id": 64, "annotation": null}, {"text": "of", "start": 361, "end": 363, "id": 65, "annotation": null}, {"text": "about", "start": 364, "end": 369, "id": 66, "annotation": null}, {"text": "3", "start": 370, "end": 371, "id": 67, "annotation": null}, {"text": "nm", "start": 372, "end": 374, "id": 68, "annotation": null}, {"text": ".", "start": 375, "end": 376, "id": 69, "annotation": null}], [{"text": "Band", "start": 377, "end": 381, "id": 70, "annotation": null}, {"text": "gap", "start": 382, "end": 385, "id": 71, "annotation": null}, {"text": "of", "start": 386, "end": 388, "id": 72, "annotation": null}, {"text": "the", "start": 389, "end": 392, "id": 73, "annotation": null}, {"text": "NCs", "start": 393, "end": 396, "id": 74, "annotation": null}, {"text": "was", "start": 397, "end": 400, "id": 75, "annotation": null}, {"text": "obtained", "start": 401, "end": 409, "id": 76, "annotation": null}, {"text": "about", "start": 410, "end": 415, "id": 77, "annotation": null}, {"text": "3.15eV", "start": 416, "end": 422, "id": 78, "annotation": null}, {"text": "and", "start": 423, "end": 426, "id": 79, "annotation": null}, {"text": "PL", "start": 427, "end": 429, "id": 80, "annotation": null}, {"text": "spectra", "start": 430, "end": 437, "id": 81, "annotation": null}, {"text": "indicates", "start": 438, "end": 447, "id": 82, "annotation": null}, {"text": "a", "start": 448, "end": 449, "id": 83, "annotation": null}, {"text": "broad", "start": 450, "end": 455, "id": 84, "annotation": null}, {"text": "emission", "start": 456, "end": 464, "id": 85, "annotation": null}, {"text": "with", "start": 465, "end": 469, "id": 86, "annotation": null}, {"text": "two", "start": 470, "end": 473, "id": 87, "annotation": null}, {"text": "peaks", "start": 474, "end": 479, "id": 88, "annotation": null}, {"text": "located", "start": 480, "end": 487, "id": 89, "annotation": null}, {"text": "about", "start": 488, "end": 493, "id": 90, "annotation": null}, {"text": "415", "start": 494, "end": 497, "id": 91, "annotation": null}, {"text": "and", "start": 498, "end": 501, "id": 92, "annotation": null}, {"text": "500", "start": 502, "end": 505, "id": 93, "annotation": null}, {"text": "nm", "start": 506, "end": 508, "id": 94, "annotation": null}, {"text": "related", "start": 509, "end": 516, "id": 95, "annotation": null}, {"text": "to", "start": 517, "end": 519, "id": 96, "annotation": null}, {"text": "band", "start": 520, "end": 524, "id": 97, "annotation": null}, {"text": "edge", "start": 525, "end": 529, "id": 98, "annotation": null}, {"text": "and", "start": 530, "end": 533, "id": 99, "annotation": null}, {"text": "trap", "start": 534, "end": 538, "id": 100, "annotation": null}, {"text": "state", "start": 539, "end": 544, "id": 101, "annotation": null}, {"text": "respectively", "start": 545, "end": 557, "id": 102, "annotation": null}, {"text": ".", "start": 558, "end": 559, "id": 103, "annotation": null}], [{"text": "For", "start": 560, "end": 563, "id": 104, "annotation": null}, {"text": "ZnSe", "start": 564, "end": 568, "id": 105, "annotation": "BASEMAT"}, {"text": ":", "start": 569, "end": 570, "id": 106, "annotation": null}, {"text": "Cu", "start": 571, "end": 573, "id": 107, "annotation": "DOPANT"}, {"text": "NCs", "start": 574, "end": 577, "id": 108, "annotation": null}, {"text": ",", "start": 578, "end": 579, "id": 109, "annotation": null}, {"text": "PL", "start": 580, "end": 582, "id": 110, "annotation": null}, {"text": "intensity", "start": 583, "end": 592, "id": 111, "annotation": null}, {"text": "of", "start": 593, "end": 595, "id": 112, "annotation": null}, {"text": "band", "start": 596, "end": 600, "id": 113, "annotation": null}, {"text": "gap", "start": 601, "end": 604, "id": 114, "annotation": null}, {"text": "emission", "start": 605, "end": 613, "id": 115, "annotation": null}, {"text": "of", "start": 614, "end": 616, "id": 116, "annotation": null}, {"text": "ZnSe", "start": 617, "end": 621, "id": 117, "annotation": "BASEMAT"}, {"text": "NCs", "start": 622, "end": 625, "id": 118, "annotation": null}, {"text": "at", "start": 626, "end": 628, "id": 119, "annotation": null}, {"text": "415", "start": 629, "end": 632, "id": 120, "annotation": null}, {"text": "nm", "start": 633, "end": 635, "id": 121, "annotation": null}, {"text": "decreased", "start": 636, "end": 645, "id": 122, "annotation": null}, {"text": "gradually", "start": 646, "end": 655, "id": 123, "annotation": null}, {"text": "with", "start": 656, "end": 660, "id": 124, "annotation": null}, {"text": "the", "start": 661, "end": 664, "id": 125, "annotation": null}, {"text": "increase", "start": 665, "end": 673, "id": 126, "annotation": null}, {"text": "in", "start": 674, "end": 676, "id": 127, "annotation": null}, {"text": "the", "start": 677, "end": 680, "id": 128, "annotation": null}, {"text": "concentration", "start": 681, "end": 694, "id": 129, "annotation": null}, {"text": "of", "start": 695, "end": 697, "id": 130, "annotation": null}, {"text": "Cu", "start": 698, "end": 700, "id": 131, "annotation": "DOPANT"}, {"text": "dopant", "start": 701, "end": 707, "id": 132, "annotation": null}, {"text": "ions", "start": 708, "end": 712, "id": 133, "annotation": null}, {"text": "and", "start": 713, "end": 716, "id": 134, "annotation": null}, {"text": "for", "start": 717, "end": 720, "id": 135, "annotation": null}, {"text": "precursor", "start": 721, "end": 730, "id": 136, "annotation": null}, {"text": "ratio", "start": 731, "end": 736, "id": 137, "annotation": null}, {"text": "of", "start": 737, "end": 739, "id": 138, "annotation": null}, {"text": "Cu", "start": 740, "end": 742, "id": 139, "annotation": null}, {"text": ":", "start": 743, "end": 744, "id": 140, "annotation": null}, {"text": "Zn", "start": 745, "end": 747, "id": 141, "annotation": null}, {"text": "1", "start": 748, "end": 749, "id": 142, "annotation": null}, {"text": "%", "start": 750, "end": 751, "id": 143, "annotation": null}, {"text": "band", "start": 752, "end": 756, "id": 144, "annotation": null}, {"text": "gap", "start": 757, "end": 760, "id": 145, "annotation": null}, {"text": "emission", "start": 761, "end": 769, "id": 146, "annotation": null}, {"text": "at", "start": 770, "end": 772, "id": 147, "annotation": null}, {"text": "415", "start": 773, "end": 776, "id": 148, "annotation": null}, {"text": "nm", "start": 777, "end": 779, "id": 149, "annotation": null}, {"text": "disappeared", "start": 780, "end": 791, "id": 150, "annotation": null}, {"text": "completely", "start": 792, "end": 802, "id": 151, "annotation": null}, {"text": ".", "start": 803, "end": 804, "id": 152, "annotation": null}], [{"text": "At", "start": 805, "end": 807, "id": 153, "annotation": null}, {"text": "the", "start": 808, "end": 811, "id": 154, "annotation": null}, {"text": "same", "start": 812, "end": 816, "id": 155, "annotation": null}, {"text": "conditions", "start": 817, "end": 827, "id": 156, "annotation": null}, {"text": ",", "start": 828, "end": 829, "id": 157, "annotation": null}, {"text": "PL", "start": 830, "end": 832, "id": 158, "annotation": null}, {"text": "QY", "start": 833, "end": 835, "id": 159, "annotation": null}, {"text": "was", "start": 836, "end": 839, "id": 160, "annotation": null}, {"text": "obtained", "start": 840, "end": 848, "id": 161, "annotation": null}, {"text": "about", "start": 849, "end": 854, "id": 162, "annotation": null}, {"text": "2", "start": 855, "end": 856, "id": 163, "annotation": null}, {"text": "%", "start": 857, "end": 858, "id": 164, "annotation": null}, {"text": "and", "start": 859, "end": 862, "id": 165, "annotation": null}, {"text": "8", "start": 863, "end": 864, "id": 166, "annotation": null}, {"text": "%", "start": 865, "end": 866, "id": 167, "annotation": null}, {"text": "for", "start": 867, "end": 870, "id": 168, "annotation": null}, {"text": "ZnSe", "start": 871, "end": 875, "id": 169, "annotation": null}, {"text": "and", "start": 876, "end": 879, "id": 170, "annotation": null}, {"text": "ZnSe", "start": 880, "end": 884, "id": 171, "annotation": "BASEMAT"}, {"text": ":", "start": 885, "end": 886, "id": 172, "annotation": null}, {"text": "Cu", "start": 887, "end": 889, "id": 173, "annotation": "DOPANT"}, {"text": "(", "start": 890, "end": 891, "id": 174, "annotation": null}, {"text": "1", "start": 892, "end": 893, "id": 175, "annotation": "DOPMODQ"}, {"text": "%", "start": 894, "end": 895, "id": 176, "annotation": "DOPMODQ"}, {"text": ")", "start": 896, "end": 897, "id": 177, "annotation": null}, {"text": "NCs", "start": 898, "end": 901, "id": 178, "annotation": null}, {"text": ",", "start": 902, "end": 903, "id": 179, "annotation": null}, {"text": "respectively", "start": 904, "end": 916, "id": 180, "annotation": null}, {"text": ".", "start": 917, "end": 918, "id": 181, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Two chemically inequivalent V4+ ions with unequal populations were detected by electron paramagnetic resonance (EPR) in vanadium-doped KTiOPO4 crystals grown by a flux method. The EPR spectra of these two kinds of V4+ ions exhibit axial symmetry, with the symmetry axis almost coincident with the direction of the shortest Ti-O bond, namely, the Ti to a titanyl oxygen bond. These results allow one to identify the occupation sites of the doped V4+ ions and to conclude that the doped V4+ ions form two kinds of covalent bonds with the two chemically inequivalent titanyl oxygens, resulting in two chemically inequivalent VO2+ ions. The EPR linewidths of these two VO2+ ions doped into KTiOPO4 are narrow at room temperature. Moreover, superhyperfine structures due to phosphorus nuclei can be detected at room temperature. These characteristics make the VO2+ ions an excellent EPR spin probe for quality control of KTiOPO4 single crystals.", "meta": {"doi": "10.1016/0022-3697(94)90202-X"}, "_input_hash": 1032327304, "_task_hash": 1267433474, "tokens": [[{"text": "Two", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "chemically", "start": 4, "end": 14, "id": 1, "annotation": null}, {"text": "inequivalent", "start": 15, "end": 27, "id": 2, "annotation": null}, {"text": "V4", "start": 28, "end": 30, "id": 3, "annotation": null}, {"text": "+", "start": 31, "end": 32, "id": 4, "annotation": null}, {"text": "ions", "start": 33, "end": 37, "id": 5, "annotation": null}, {"text": "with", "start": 38, "end": 42, "id": 6, "annotation": null}, {"text": "unequal", "start": 43, "end": 50, "id": 7, "annotation": null}, {"text": "populations", "start": 51, "end": 62, "id": 8, "annotation": null}, {"text": "were", "start": 63, "end": 67, "id": 9, "annotation": null}, {"text": "detected", "start": 68, "end": 76, "id": 10, "annotation": null}, {"text": "by", "start": 77, "end": 79, "id": 11, "annotation": null}, {"text": "electron", "start": 80, "end": 88, "id": 12, "annotation": null}, {"text": "paramagnetic", "start": 89, "end": 101, "id": 13, "annotation": null}, {"text": "resonance", "start": 102, "end": 111, "id": 14, "annotation": null}, {"text": "(", "start": 112, "end": 113, "id": 15, "annotation": null}, {"text": "EPR", "start": 114, "end": 117, "id": 16, "annotation": null}, {"text": ")", "start": 118, "end": 119, "id": 17, "annotation": null}, {"text": "in", "start": 120, "end": 122, "id": 18, "annotation": null}, {"text": "vanadium", "start": 123, "end": 131, "id": 19, "annotation": "DOPANT"}, {"text": "-", "start": 132, "end": 133, "id": 20, "annotation": null}, {"text": "doped", "start": 134, "end": 139, "id": 21, "annotation": null}, {"text": "KTiOPO4", "start": 140, "end": 147, "id": 22, "annotation": "BASEMAT"}, {"text": "crystals", "start": 148, "end": 156, "id": 23, "annotation": null}, {"text": "grown", "start": 157, "end": 162, "id": 24, "annotation": null}, {"text": "by", "start": 163, "end": 165, "id": 25, "annotation": null}, {"text": "a", "start": 166, "end": 167, "id": 26, "annotation": null}, {"text": "flux", "start": 168, "end": 172, "id": 27, "annotation": null}, {"text": "method", "start": 173, "end": 179, "id": 28, "annotation": null}, {"text": ".", "start": 180, "end": 181, "id": 29, "annotation": null}], [{"text": "The", "start": 182, "end": 185, "id": 30, "annotation": null}, {"text": "EPR", "start": 186, "end": 189, "id": 31, "annotation": null}, {"text": "spectra", "start": 190, "end": 197, "id": 32, "annotation": null}, {"text": "of", "start": 198, "end": 200, "id": 33, "annotation": null}, {"text": "these", "start": 201, "end": 206, "id": 34, "annotation": null}, {"text": "two", "start": 207, "end": 210, "id": 35, "annotation": null}, {"text": "kinds", "start": 211, "end": 216, "id": 36, "annotation": null}, {"text": "of", "start": 217, "end": 219, "id": 37, "annotation": null}, {"text": "V4", "start": 220, "end": 222, "id": 38, "annotation": null}, {"text": "+", "start": 223, "end": 224, "id": 39, "annotation": null}, {"text": "ions", "start": 225, "end": 229, "id": 40, "annotation": null}, {"text": "exhibit", "start": 230, "end": 237, "id": 41, "annotation": null}, {"text": "axial", "start": 238, "end": 243, "id": 42, "annotation": null}, {"text": "symmetry", "start": 244, "end": 252, "id": 43, "annotation": null}, {"text": ",", "start": 253, "end": 254, "id": 44, "annotation": null}, {"text": "with", "start": 255, "end": 259, "id": 45, "annotation": null}, {"text": "the", "start": 260, "end": 263, "id": 46, "annotation": null}, {"text": "symmetry", "start": 264, "end": 272, "id": 47, "annotation": null}, {"text": "axis", "start": 273, "end": 277, "id": 48, "annotation": null}, {"text": "almost", "start": 278, "end": 284, "id": 49, "annotation": null}, {"text": "coincident", "start": 285, "end": 295, "id": 50, "annotation": null}, {"text": "with", "start": 296, "end": 300, "id": 51, "annotation": null}, {"text": "the", "start": 301, "end": 304, "id": 52, "annotation": null}, {"text": "direction", "start": 305, "end": 314, "id": 53, "annotation": null}, {"text": "of", "start": 315, "end": 317, "id": 54, "annotation": null}, {"text": "the", "start": 318, "end": 321, "id": 55, "annotation": null}, {"text": "shortest", "start": 322, "end": 330, "id": 56, "annotation": null}, {"text": "Ti", "start": 331, "end": 333, "id": 57, "annotation": null}, {"text": "-", "start": 334, "end": 335, "id": 58, "annotation": null}, {"text": "O", "start": 336, "end": 337, "id": 59, "annotation": null}, {"text": "bond", "start": 338, "end": 342, "id": 60, "annotation": null}, {"text": ",", "start": 343, "end": 344, "id": 61, "annotation": null}, {"text": "namely", "start": 345, "end": 351, "id": 62, "annotation": null}, {"text": ",", "start": 352, "end": 353, "id": 63, "annotation": null}, {"text": "the", "start": 354, "end": 357, "id": 64, "annotation": null}, {"text": "Ti", "start": 358, "end": 360, "id": 65, "annotation": null}, {"text": "to", "start": 361, "end": 363, "id": 66, "annotation": null}, {"text": "a", "start": 364, "end": 365, "id": 67, "annotation": null}, {"text": "titanyl", "start": 366, "end": 373, "id": 68, "annotation": null}, {"text": "oxygen", "start": 374, "end": 380, "id": 69, "annotation": null}, {"text": "bond", "start": 381, "end": 385, "id": 70, "annotation": null}, {"text": ".", "start": 386, "end": 387, "id": 71, "annotation": null}], [{"text": "These", "start": 388, "end": 393, "id": 72, "annotation": null}, {"text": "results", "start": 394, "end": 401, "id": 73, "annotation": null}, {"text": "allow", "start": 402, "end": 407, "id": 74, "annotation": null}, {"text": "one", "start": 408, "end": 411, "id": 75, "annotation": null}, {"text": "to", "start": 412, "end": 414, "id": 76, "annotation": null}, {"text": "identify", "start": 415, "end": 423, "id": 77, "annotation": null}, {"text": "the", "start": 424, "end": 427, "id": 78, "annotation": null}, {"text": "occupation", "start": 428, "end": 438, "id": 79, "annotation": null}, {"text": "sites", "start": 439, "end": 444, "id": 80, "annotation": null}, {"text": "of", "start": 445, "end": 447, "id": 81, "annotation": null}, {"text": "the", "start": 448, "end": 451, "id": 82, "annotation": null}, {"text": "doped", "start": 452, "end": 457, "id": 83, "annotation": null}, {"text": "V4", "start": 458, "end": 460, "id": 84, "annotation": "DOPANT"}, {"text": "+", "start": 461, "end": 462, "id": 85, "annotation": "DOPANT"}, {"text": "ions", "start": 463, "end": 467, "id": 86, "annotation": null}, {"text": "and", "start": 468, "end": 471, "id": 87, "annotation": null}, {"text": "to", "start": 472, "end": 474, "id": 88, "annotation": null}, {"text": "conclude", "start": 475, "end": 483, "id": 89, "annotation": null}, {"text": "that", "start": 484, "end": 488, "id": 90, "annotation": null}, {"text": "the", "start": 489, "end": 492, "id": 91, "annotation": null}, {"text": "doped", "start": 493, "end": 498, "id": 92, "annotation": null}, {"text": "V4", "start": 499, "end": 501, "id": 93, "annotation": "DOPANT"}, {"text": "+", "start": 502, "end": 503, "id": 94, "annotation": "DOPANT"}, {"text": "ions", "start": 504, "end": 508, "id": 95, "annotation": null}, {"text": "form", "start": 509, "end": 513, "id": 96, "annotation": null}, {"text": "two", "start": 514, "end": 517, "id": 97, "annotation": null}, {"text": "kinds", "start": 518, "end": 523, "id": 98, "annotation": null}, {"text": "of", "start": 524, "end": 526, "id": 99, "annotation": null}, {"text": "covalent", "start": 527, "end": 535, "id": 100, "annotation": null}, {"text": "bonds", "start": 536, "end": 541, "id": 101, "annotation": null}, {"text": "with", "start": 542, "end": 546, "id": 102, "annotation": null}, {"text": "the", "start": 547, "end": 550, "id": 103, "annotation": null}, {"text": "two", "start": 551, "end": 554, "id": 104, "annotation": null}, {"text": "chemically", "start": 555, "end": 565, "id": 105, "annotation": null}, {"text": "inequivalent", "start": 566, "end": 578, "id": 106, "annotation": null}, {"text": "titanyl", "start": 579, "end": 586, "id": 107, "annotation": null}, {"text": "oxygens", "start": 587, "end": 594, "id": 108, "annotation": null}, {"text": ",", "start": 595, "end": 596, "id": 109, "annotation": null}, {"text": "resulting", "start": 597, "end": 606, "id": 110, "annotation": null}, {"text": "in", "start": 607, "end": 609, "id": 111, "annotation": null}, {"text": "two", "start": 610, "end": 613, "id": 112, "annotation": null}, {"text": "chemically", "start": 614, "end": 624, "id": 113, "annotation": null}, {"text": "inequivalent", "start": 625, "end": 637, "id": 114, "annotation": null}, {"text": "VO2", "start": 638, "end": 641, "id": 115, "annotation": null}, {"text": "+", "start": 642, "end": 643, "id": 116, "annotation": null}, {"text": "ions", "start": 644, "end": 648, "id": 117, "annotation": null}, {"text": ".", "start": 649, "end": 650, "id": 118, "annotation": null}], [{"text": "The", "start": 651, "end": 654, "id": 119, "annotation": null}, {"text": "EPR", "start": 655, "end": 658, "id": 120, "annotation": null}, {"text": "linewidths", "start": 659, "end": 669, "id": 121, "annotation": null}, {"text": "of", "start": 670, "end": 672, "id": 122, "annotation": null}, {"text": "these", "start": 673, "end": 678, "id": 123, "annotation": null}, {"text": "two", "start": 679, "end": 682, "id": 124, "annotation": null}, {"text": "VO2", "start": 683, "end": 686, "id": 125, "annotation": "DOPANT"}, {"text": "+", "start": 687, "end": 688, "id": 126, "annotation": "DOPANT"}, {"text": "ions", "start": 689, "end": 693, "id": 127, "annotation": null}, {"text": "doped", "start": 694, "end": 699, "id": 128, "annotation": null}, {"text": "into", "start": 700, "end": 704, "id": 129, "annotation": null}, {"text": "KTiOPO4", "start": 705, "end": 712, "id": 130, "annotation": "BASEMAT"}, {"text": "are", "start": 713, "end": 716, "id": 131, "annotation": null}, {"text": "narrow", "start": 717, "end": 723, "id": 132, "annotation": null}, {"text": "at", "start": 724, "end": 726, "id": 133, "annotation": null}, {"text": "room", "start": 727, "end": 731, "id": 134, "annotation": null}, {"text": "temperature", "start": 732, "end": 743, "id": 135, "annotation": null}, {"text": ".", "start": 744, "end": 745, "id": 136, "annotation": null}], [{"text": "Moreover", "start": 746, "end": 754, "id": 137, "annotation": null}, {"text": ",", "start": 755, "end": 756, "id": 138, "annotation": null}, {"text": "superhyperfine", "start": 757, "end": 771, "id": 139, "annotation": null}, {"text": "structures", "start": 772, "end": 782, "id": 140, "annotation": null}, {"text": "due", "start": 783, "end": 786, "id": 141, "annotation": null}, {"text": "to", "start": 787, "end": 789, "id": 142, "annotation": null}, {"text": "phosphorus", "start": 790, "end": 800, "id": 143, "annotation": null}, {"text": "nuclei", "start": 801, "end": 807, "id": 144, "annotation": null}, {"text": "can", "start": 808, "end": 811, "id": 145, "annotation": null}, {"text": "be", "start": 812, "end": 814, "id": 146, "annotation": null}, {"text": "detected", "start": 815, "end": 823, "id": 147, "annotation": null}, {"text": "at", "start": 824, "end": 826, "id": 148, "annotation": null}, {"text": "room", "start": 827, "end": 831, "id": 149, "annotation": null}, {"text": "temperature", "start": 832, "end": 843, "id": 150, "annotation": null}, {"text": ".", "start": 844, "end": 845, "id": 151, "annotation": null}], [{"text": "These", "start": 846, "end": 851, "id": 152, "annotation": null}, {"text": "characteristics", "start": 852, "end": 867, "id": 153, "annotation": null}, {"text": "make", "start": 868, "end": 872, "id": 154, "annotation": null}, {"text": "the", "start": 873, "end": 876, "id": 155, "annotation": null}, {"text": "VO2", "start": 877, "end": 880, "id": 156, "annotation": null}, {"text": "+", "start": 881, "end": 882, "id": 157, "annotation": null}, {"text": "ions", "start": 883, "end": 887, "id": 158, "annotation": null}, {"text": "an", "start": 888, "end": 890, "id": 159, "annotation": null}, {"text": "excellent", "start": 891, "end": 900, "id": 160, "annotation": null}, {"text": "EPR", "start": 901, "end": 904, "id": 161, "annotation": null}, {"text": "spin", "start": 905, "end": 909, "id": 162, "annotation": null}, {"text": "probe", "start": 910, "end": 915, "id": 163, "annotation": null}, {"text": "for", "start": 916, "end": 919, "id": 164, "annotation": null}, {"text": "quality", "start": 920, "end": 927, "id": 165, "annotation": null}, {"text": "control", "start": 928, "end": 935, "id": 166, "annotation": null}, {"text": "of", "start": 936, "end": 938, "id": 167, "annotation": null}, {"text": "KTiOPO4", "start": 939, "end": 946, "id": 168, "annotation": null}, {"text": "single", "start": 947, "end": 953, "id": 169, "annotation": null}, {"text": "crystals", "start": 954, "end": 962, "id": 170, "annotation": null}, {"text": ".", "start": 963, "end": 964, "id": 171, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Rare earth doped pervoskites, such as Yb\u2013SrCeO3, show remarkable electrical conducting properties, depending upon the temperature and the surrounding gaseous atmosphere. These materials are well known for their protonic conduction within a certain intermediate temperature range, provided they are subjected to an atmosphere containing sufficient amounts of hydrogen or water vapour. At a temperature, which is relatively lower, in an atmosphere containing water vapour and sufficient oxygen, these perovskites acquire hydroxyl ionic conduction. At elevated temperatures when the partial pressure of oxygen is very low, even in the presence of hydrogen and/or water vapour, the mode of conduction is purely by oxygen ions. On the other hand, when the partial pressure of hydrogen is low but that of oxygen is high, electronic conduction is observed. Experimental results to demonstrate the various modes of conduction, including mixed mode conductions at the boundaries are presented.", "meta": {"doi": "10.1016/j.jallcom.2004.12.081"}, "_input_hash": -364655088, "_task_hash": -175105288, "tokens": [[{"text": "Rare", "start": 0, "end": 4, "id": 0, "annotation": "DOPANT"}, {"text": "earth", "start": 5, "end": 10, "id": 1, "annotation": "DOPANT"}, {"text": "doped", "start": 11, "end": 16, "id": 2, "annotation": null}, {"text": "pervoskites", "start": 17, "end": 28, "id": 3, "annotation": "BASEMAT"}, {"text": ",", "start": 29, "end": 30, "id": 4, "annotation": null}, {"text": "such", "start": 31, "end": 35, "id": 5, "annotation": null}, {"text": "as", "start": 36, "end": 38, "id": 6, "annotation": null}, {"text": "Yb", "start": 39, "end": 41, "id": 7, "annotation": "DOPANT"}, {"text": "\u2013", "start": 42, "end": 43, "id": 8, "annotation": null}, {"text": "SrCeO3", "start": 44, "end": 50, "id": 9, "annotation": "BASEMAT"}, {"text": ",", "start": 51, "end": 52, "id": 10, "annotation": null}, {"text": "show", "start": 53, "end": 57, "id": 11, "annotation": null}, {"text": "remarkable", "start": 58, "end": 68, "id": 12, "annotation": null}, {"text": "electrical", "start": 69, "end": 79, "id": 13, "annotation": null}, {"text": "conducting", "start": 80, "end": 90, "id": 14, "annotation": null}, {"text": "properties", "start": 91, "end": 101, "id": 15, "annotation": null}, {"text": ",", "start": 102, "end": 103, "id": 16, "annotation": null}, {"text": "depending", "start": 104, "end": 113, "id": 17, "annotation": null}, {"text": "upon", "start": 114, "end": 118, "id": 18, "annotation": null}, {"text": "the", "start": 119, "end": 122, "id": 19, "annotation": null}, {"text": "temperature", "start": 123, "end": 134, "id": 20, "annotation": null}, {"text": "and", "start": 135, "end": 138, "id": 21, "annotation": null}, {"text": "the", "start": 139, "end": 142, "id": 22, "annotation": null}, {"text": "surrounding", "start": 143, "end": 154, "id": 23, "annotation": null}, {"text": "gaseous", "start": 155, "end": 162, "id": 24, "annotation": null}, {"text": "atmosphere", "start": 163, "end": 173, "id": 25, "annotation": null}, {"text": ".", "start": 174, "end": 175, "id": 26, "annotation": null}], [{"text": "These", "start": 176, "end": 181, "id": 27, "annotation": null}, {"text": "materials", "start": 182, "end": 191, "id": 28, "annotation": null}, {"text": "are", "start": 192, "end": 195, "id": 29, "annotation": null}, {"text": "well", "start": 196, "end": 200, "id": 30, "annotation": null}, {"text": "known", "start": 201, "end": 206, "id": 31, "annotation": null}, {"text": "for", "start": 207, "end": 210, "id": 32, "annotation": null}, {"text": "their", "start": 211, "end": 216, "id": 33, "annotation": null}, {"text": "protonic", "start": 217, "end": 225, "id": 34, "annotation": null}, {"text": "conduction", "start": 226, "end": 236, "id": 35, "annotation": null}, {"text": "within", "start": 237, "end": 243, "id": 36, "annotation": null}, {"text": "a", "start": 244, "end": 245, "id": 37, "annotation": null}, {"text": "certain", "start": 246, "end": 253, "id": 38, "annotation": null}, {"text": "intermediate", "start": 254, "end": 266, "id": 39, "annotation": null}, {"text": "temperature", "start": 267, "end": 278, "id": 40, "annotation": null}, {"text": "range", "start": 279, "end": 284, "id": 41, "annotation": null}, {"text": ",", "start": 285, "end": 286, "id": 42, "annotation": null}, {"text": "provided", "start": 287, "end": 295, "id": 43, "annotation": null}, {"text": "they", "start": 296, "end": 300, "id": 44, "annotation": null}, {"text": "are", "start": 301, "end": 304, "id": 45, "annotation": null}, {"text": "subjected", "start": 305, "end": 314, "id": 46, "annotation": null}, {"text": "to", "start": 315, "end": 317, "id": 47, "annotation": null}, {"text": "an", "start": 318, "end": 320, "id": 48, "annotation": null}, {"text": "atmosphere", "start": 321, "end": 331, "id": 49, "annotation": null}, {"text": "containing", "start": 332, "end": 342, "id": 50, "annotation": null}, {"text": "sufficient", "start": 343, "end": 353, "id": 51, "annotation": null}, {"text": "amounts", "start": 354, "end": 361, "id": 52, "annotation": null}, {"text": "of", "start": 362, "end": 364, "id": 53, "annotation": null}, {"text": "hydrogen", "start": 365, "end": 373, "id": 54, "annotation": null}, {"text": "or", "start": 374, "end": 376, "id": 55, "annotation": null}, {"text": "water", "start": 377, "end": 382, "id": 56, "annotation": null}, {"text": "vapour", "start": 383, "end": 389, "id": 57, "annotation": null}, {"text": ".", "start": 390, "end": 391, "id": 58, "annotation": null}], [{"text": "At", "start": 392, "end": 394, "id": 59, "annotation": null}, {"text": "a", "start": 395, "end": 396, "id": 60, "annotation": null}, {"text": "temperature", "start": 397, "end": 408, "id": 61, "annotation": null}, {"text": ",", "start": 409, "end": 410, "id": 62, "annotation": null}, {"text": "which", "start": 411, "end": 416, "id": 63, "annotation": null}, {"text": "is", "start": 417, "end": 419, "id": 64, "annotation": null}, {"text": "relatively", "start": 420, "end": 430, "id": 65, "annotation": null}, {"text": "lower", "start": 431, "end": 436, "id": 66, "annotation": null}, {"text": ",", "start": 437, "end": 438, "id": 67, "annotation": null}, {"text": "in", "start": 439, "end": 441, "id": 68, "annotation": null}, {"text": "an", "start": 442, "end": 444, "id": 69, "annotation": null}, {"text": "atmosphere", "start": 445, "end": 455, "id": 70, "annotation": null}, {"text": "containing", "start": 456, "end": 466, "id": 71, "annotation": null}, {"text": "water", "start": 467, "end": 472, "id": 72, "annotation": null}, {"text": "vapour", "start": 473, "end": 479, "id": 73, "annotation": null}, {"text": "and", "start": 480, "end": 483, "id": 74, "annotation": null}, {"text": "sufficient", "start": 484, "end": 494, "id": 75, "annotation": null}, {"text": "oxygen", "start": 495, "end": 501, "id": 76, "annotation": null}, {"text": ",", "start": 502, "end": 503, "id": 77, "annotation": null}, {"text": "these", "start": 504, "end": 509, "id": 78, "annotation": null}, {"text": "perovskites", "start": 510, "end": 521, "id": 79, "annotation": null}, {"text": "acquire", "start": 522, "end": 529, "id": 80, "annotation": null}, {"text": "hydroxyl", "start": 530, "end": 538, "id": 81, "annotation": null}, {"text": "ionic", "start": 539, "end": 544, "id": 82, "annotation": null}, {"text": "conduction", "start": 545, "end": 555, "id": 83, "annotation": null}, {"text": ".", "start": 556, "end": 557, "id": 84, "annotation": null}], [{"text": "At", "start": 558, "end": 560, "id": 85, "annotation": null}, {"text": "elevated", "start": 561, "end": 569, "id": 86, "annotation": null}, {"text": "temperatures", "start": 570, "end": 582, "id": 87, "annotation": null}, {"text": "when", "start": 583, "end": 587, "id": 88, "annotation": null}, {"text": "the", "start": 588, "end": 591, "id": 89, "annotation": null}, {"text": "partial", "start": 592, "end": 599, "id": 90, "annotation": null}, {"text": "pressure", "start": 600, "end": 608, "id": 91, "annotation": null}, {"text": "of", "start": 609, "end": 611, "id": 92, "annotation": null}, {"text": "oxygen", "start": 612, "end": 618, "id": 93, "annotation": null}, {"text": "is", "start": 619, "end": 621, "id": 94, "annotation": null}, {"text": "very", "start": 622, "end": 626, "id": 95, "annotation": null}, {"text": "low", "start": 627, "end": 630, "id": 96, "annotation": null}, {"text": ",", "start": 631, "end": 632, "id": 97, "annotation": null}, {"text": "even", "start": 633, "end": 637, "id": 98, "annotation": null}, {"text": "in", "start": 638, "end": 640, "id": 99, "annotation": null}, {"text": "the", "start": 641, "end": 644, "id": 100, "annotation": null}, {"text": "presence", "start": 645, "end": 653, "id": 101, "annotation": null}, {"text": "of", "start": 654, "end": 656, "id": 102, "annotation": null}, {"text": "hydrogen", "start": 657, "end": 665, "id": 103, "annotation": null}, {"text": "and/or", "start": 666, "end": 672, "id": 104, "annotation": null}, {"text": "water", "start": 673, "end": 678, "id": 105, "annotation": null}, {"text": "vapour", "start": 679, "end": 685, "id": 106, "annotation": null}, {"text": ",", "start": 686, "end": 687, "id": 107, "annotation": null}, {"text": "the", "start": 688, "end": 691, "id": 108, "annotation": null}, {"text": "mode", "start": 692, "end": 696, "id": 109, "annotation": null}, {"text": "of", "start": 697, "end": 699, "id": 110, "annotation": null}, {"text": "conduction", "start": 700, "end": 710, "id": 111, "annotation": null}, {"text": "is", "start": 711, "end": 713, "id": 112, "annotation": null}, {"text": "purely", "start": 714, "end": 720, "id": 113, "annotation": null}, {"text": "by", "start": 721, "end": 723, "id": 114, "annotation": null}, {"text": "oxygen", "start": 724, "end": 730, "id": 115, "annotation": null}, {"text": "ions", "start": 731, "end": 735, "id": 116, "annotation": null}, {"text": ".", "start": 736, "end": 737, "id": 117, "annotation": null}], [{"text": "On", "start": 738, "end": 740, "id": 118, "annotation": null}, {"text": "the", "start": 741, "end": 744, "id": 119, "annotation": null}, {"text": "other", "start": 745, "end": 750, "id": 120, "annotation": null}, {"text": "hand", "start": 751, "end": 755, "id": 121, "annotation": null}, {"text": ",", "start": 756, "end": 757, "id": 122, "annotation": null}, {"text": "when", "start": 758, "end": 762, "id": 123, "annotation": null}, {"text": "the", "start": 763, "end": 766, "id": 124, "annotation": null}, {"text": "partial", "start": 767, "end": 774, "id": 125, "annotation": null}, {"text": "pressure", "start": 775, "end": 783, "id": 126, "annotation": null}, {"text": "of", "start": 784, "end": 786, "id": 127, "annotation": null}, {"text": "hydrogen", "start": 787, "end": 795, "id": 128, "annotation": null}, {"text": "is", "start": 796, "end": 798, "id": 129, "annotation": null}, {"text": "low", "start": 799, "end": 802, "id": 130, "annotation": null}, {"text": "but", "start": 803, "end": 806, "id": 131, "annotation": null}, {"text": "that", "start": 807, "end": 811, "id": 132, "annotation": null}, {"text": "of", "start": 812, "end": 814, "id": 133, "annotation": null}, {"text": "oxygen", "start": 815, "end": 821, "id": 134, "annotation": null}, {"text": "is", "start": 822, "end": 824, "id": 135, "annotation": null}, {"text": "high", "start": 825, "end": 829, "id": 136, "annotation": null}, {"text": ",", "start": 830, "end": 831, "id": 137, "annotation": null}, {"text": "electronic", "start": 832, "end": 842, "id": 138, "annotation": null}, {"text": "conduction", "start": 843, "end": 853, "id": 139, "annotation": null}, {"text": "is", "start": 854, "end": 856, "id": 140, "annotation": null}, {"text": "observed", "start": 857, "end": 865, "id": 141, "annotation": null}, {"text": ".", "start": 866, "end": 867, "id": 142, "annotation": null}], [{"text": "Experimental", "start": 868, "end": 880, "id": 143, "annotation": null}, {"text": "results", "start": 881, "end": 888, "id": 144, "annotation": null}, {"text": "to", "start": 889, "end": 891, "id": 145, "annotation": null}, {"text": "demonstrate", "start": 892, "end": 903, "id": 146, "annotation": null}, {"text": "the", "start": 904, "end": 907, "id": 147, "annotation": null}, {"text": "various", "start": 908, "end": 915, "id": 148, "annotation": null}, {"text": "modes", "start": 916, "end": 921, "id": 149, "annotation": null}, {"text": "of", "start": 922, "end": 924, "id": 150, "annotation": null}, {"text": "conduction", "start": 925, "end": 935, "id": 151, "annotation": null}, {"text": ",", "start": 936, "end": 937, "id": 152, "annotation": null}, {"text": "including", "start": 938, "end": 947, "id": 153, "annotation": null}, {"text": "mixed", "start": 948, "end": 953, "id": 154, "annotation": null}, {"text": "mode", "start": 954, "end": 958, "id": 155, "annotation": null}, {"text": "conductions", "start": 959, "end": 970, "id": 156, "annotation": null}, {"text": "at", "start": 971, "end": 973, "id": 157, "annotation": null}, {"text": "the", "start": 974, "end": 977, "id": 158, "annotation": null}, {"text": "boundaries", "start": 978, "end": 988, "id": 159, "annotation": null}, {"text": "are", "start": 989, "end": 992, "id": 160, "annotation": null}, {"text": "presented", "start": 993, "end": 1002, "id": 161, "annotation": null}, {"text": ".", "start": 1003, "end": 1004, "id": 162, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "TiO2 (rutile and anatase) thin films was first prepared using reactive sputtering, in an Ar+O2 plasma. In the 2nd stage of the experiment, various amounts (3, 7, and 10 at. %) of Ag was doped into the rutile film in order to form TiO2-Ag thin films. These films were annealed for one hour in Ar atmosphere, at 300, 400, and 500 \u00b0C. The films' structures were then examined using X-ray diffractometry. FESEM (field-emission scaning electron microscopy) was used to investigate the surface emergence of Ag particles. As for the examination of optical band gaps and absorption of these films, UV-Vis-NIR photometer was used. The results show that, in as-deposited condition, the addition of Ag might disrupt the growth of crystalline structure and cause the formation of amorphous films. After annealing, it is found that the structure tends to become anatase phase which is a metastable phase between amorphous titanium oxide and rutile. More importantly, the absorption of the Ag-doped films would be enhanced in the visible-light range. Some of the enhancement is clearly due to plasmon resonance effect. The Ag-doped samples have shown some antibacterial effect in dark. When irradiated with light, the samples show a synergistic behavior combining the bactericidal effect of Ag ions and photocatalytic effect of TiO2.", "meta": {"doi": "10.1088/1742-6596/339/1/012012"}, "_input_hash": -2084153193, "_task_hash": 950580147, "tokens": [[{"text": "TiO2", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "(", "start": 5, "end": 6, "id": 1, "annotation": null}, {"text": "rutile", "start": 7, "end": 13, "id": 2, "annotation": null}, {"text": "and", "start": 14, "end": 17, "id": 3, "annotation": null}, {"text": "anatase", "start": 18, "end": 25, "id": 4, "annotation": null}, {"text": ")", "start": 26, "end": 27, "id": 5, "annotation": null}, {"text": "thin", "start": 28, "end": 32, "id": 6, "annotation": null}, {"text": "films", "start": 33, "end": 38, "id": 7, "annotation": null}, {"text": "was", "start": 39, "end": 42, "id": 8, "annotation": null}, {"text": "first", "start": 43, "end": 48, "id": 9, "annotation": null}, {"text": "prepared", "start": 49, "end": 57, "id": 10, "annotation": null}, {"text": "using", "start": 58, "end": 63, "id": 11, "annotation": null}, {"text": "reactive", "start": 64, "end": 72, "id": 12, "annotation": null}, {"text": "sputtering", "start": 73, "end": 83, "id": 13, "annotation": null}, {"text": ",", "start": 84, "end": 85, "id": 14, "annotation": null}, {"text": "in", "start": 86, "end": 88, "id": 15, "annotation": null}, {"text": "an", "start": 89, "end": 91, "id": 16, "annotation": null}, {"text": "Ar+O2", "start": 92, "end": 97, "id": 17, "annotation": null}, {"text": "plasma", "start": 98, "end": 104, "id": 18, "annotation": null}, {"text": ".", "start": 105, "end": 106, "id": 19, "annotation": null}], [{"text": "In", "start": 107, "end": 109, "id": 20, "annotation": null}, {"text": "the", "start": 110, "end": 113, "id": 21, "annotation": null}, {"text": "2nd", "start": 114, "end": 117, "id": 22, "annotation": null}, {"text": "stage", "start": 118, "end": 123, "id": 23, "annotation": null}, {"text": "of", "start": 124, "end": 126, "id": 24, "annotation": null}, {"text": "the", "start": 127, "end": 130, "id": 25, "annotation": null}, {"text": "experiment", "start": 131, "end": 141, "id": 26, "annotation": null}, {"text": ",", "start": 142, "end": 143, "id": 27, "annotation": null}, {"text": "various", "start": 144, "end": 151, "id": 28, "annotation": null}, {"text": "amounts", "start": 152, "end": 159, "id": 29, "annotation": null}, {"text": "(", "start": 160, "end": 161, "id": 30, "annotation": null}, {"text": "3", "start": 162, "end": 163, "id": 31, "annotation": "DOPMODQ"}, {"text": ",", "start": 164, "end": 165, "id": 32, "annotation": null}, {"text": "7", "start": 166, "end": 167, "id": 33, "annotation": "DOPMODQ"}, {"text": ",", "start": 168, "end": 169, "id": 34, "annotation": null}, {"text": "and", "start": 170, "end": 173, "id": 35, "annotation": null}, {"text": "10", "start": 174, "end": 176, "id": 36, "annotation": "DOPMODQ"}, {"text": "at", "start": 177, "end": 179, "id": 37, "annotation": null}, {"text": ".", "start": 180, "end": 181, "id": 38, "annotation": null}], [{"text": "%", "start": 182, "end": 183, "id": 39, "annotation": "DOPMODQ"}, {"text": ")", "start": 184, "end": 185, "id": 40, "annotation": null}, {"text": "of", "start": 186, "end": 188, "id": 41, "annotation": null}, {"text": "Ag", "start": 189, "end": 191, "id": 42, "annotation": "DOPANT"}, {"text": "was", "start": 192, "end": 195, "id": 43, "annotation": null}, {"text": "doped", "start": 196, "end": 201, "id": 44, "annotation": null}, {"text": "into", "start": 202, "end": 206, "id": 45, "annotation": null}, {"text": "the", "start": 207, "end": 210, "id": 46, "annotation": null}, {"text": "rutile", "start": 211, "end": 217, "id": 47, "annotation": "BASEMAT"}, {"text": "film", "start": 218, "end": 222, "id": 48, "annotation": null}, {"text": "in", "start": 223, "end": 225, "id": 49, "annotation": null}, {"text": "order", "start": 226, "end": 231, "id": 50, "annotation": null}, {"text": "to", "start": 232, "end": 234, "id": 51, "annotation": null}, {"text": "form", "start": 235, "end": 239, "id": 52, "annotation": null}, {"text": "TiO2-Ag", "start": 240, "end": 247, "id": 53, "annotation": null}, {"text": "thin", "start": 248, "end": 252, "id": 54, "annotation": null}, {"text": "films", "start": 253, "end": 258, "id": 55, "annotation": null}, {"text": ".", "start": 259, "end": 260, "id": 56, "annotation": null}], [{"text": "These", "start": 261, "end": 266, "id": 57, "annotation": null}, {"text": "films", "start": 267, "end": 272, "id": 58, "annotation": null}, {"text": "were", "start": 273, "end": 277, "id": 59, "annotation": null}, {"text": "annealed", "start": 278, "end": 286, "id": 60, "annotation": null}, {"text": "for", "start": 287, "end": 290, "id": 61, "annotation": null}, {"text": "one", "start": 291, "end": 294, "id": 62, "annotation": null}, {"text": "hour", "start": 295, "end": 299, "id": 63, "annotation": null}, {"text": "in", "start": 300, "end": 302, "id": 64, "annotation": null}, {"text": "Ar", "start": 303, "end": 305, "id": 65, "annotation": null}, {"text": "atmosphere", "start": 306, "end": 316, "id": 66, "annotation": null}, {"text": ",", "start": 317, "end": 318, "id": 67, "annotation": null}, {"text": "at", "start": 319, "end": 321, "id": 68, "annotation": null}, {"text": "300", "start": 322, "end": 325, "id": 69, "annotation": null}, {"text": ",", "start": 326, "end": 327, "id": 70, "annotation": null}, {"text": "400", "start": 328, "end": 331, "id": 71, "annotation": null}, {"text": ",", "start": 332, "end": 333, "id": 72, "annotation": null}, {"text": "and", "start": 334, "end": 337, "id": 73, "annotation": null}, {"text": "500", "start": 338, "end": 341, "id": 74, "annotation": null}, {"text": "\u00b0", "start": 342, "end": 343, "id": 75, "annotation": null}, {"text": "C", "start": 344, "end": 345, "id": 76, "annotation": null}, {"text": ".", "start": 346, "end": 347, "id": 77, "annotation": null}], [{"text": "The", "start": 348, "end": 351, "id": 78, "annotation": null}, {"text": "films", "start": 352, "end": 357, "id": 79, "annotation": null}, {"text": "'", "start": 358, "end": 359, "id": 80, "annotation": null}, {"text": "structures", "start": 360, "end": 370, "id": 81, "annotation": null}, {"text": "were", "start": 371, "end": 375, "id": 82, "annotation": null}, {"text": "then", "start": 376, "end": 380, "id": 83, "annotation": null}, {"text": "examined", "start": 381, "end": 389, "id": 84, "annotation": null}, {"text": "using", "start": 390, "end": 395, "id": 85, "annotation": null}, {"text": "X", "start": 396, "end": 397, "id": 86, "annotation": null}, {"text": "-", "start": 398, "end": 399, "id": 87, "annotation": null}, {"text": "ray", "start": 400, "end": 403, "id": 88, "annotation": null}, {"text": "diffractometry", "start": 404, "end": 418, "id": 89, "annotation": null}, {"text": ".", "start": 419, "end": 420, "id": 90, "annotation": null}], [{"text": "FESEM", "start": 421, "end": 426, "id": 91, "annotation": null}, {"text": "(", "start": 427, "end": 428, "id": 92, "annotation": null}, {"text": "field", "start": 429, "end": 434, "id": 93, "annotation": null}, {"text": "-", "start": 435, "end": 436, "id": 94, "annotation": null}, {"text": "emission", "start": 437, "end": 445, "id": 95, "annotation": null}, {"text": "scaning", "start": 446, "end": 453, "id": 96, "annotation": null}, {"text": "electron", "start": 454, "end": 462, "id": 97, "annotation": null}, {"text": "microscopy", "start": 463, "end": 473, "id": 98, "annotation": null}, {"text": ")", "start": 474, "end": 475, "id": 99, "annotation": null}, {"text": "was", "start": 476, "end": 479, "id": 100, "annotation": null}, {"text": "used", "start": 480, "end": 484, "id": 101, "annotation": null}, {"text": "to", "start": 485, "end": 487, "id": 102, "annotation": null}, {"text": "investigate", "start": 488, "end": 499, "id": 103, "annotation": null}, {"text": "the", "start": 500, "end": 503, "id": 104, "annotation": null}, {"text": "surface", "start": 504, "end": 511, "id": 105, "annotation": null}, {"text": "emergence", "start": 512, "end": 521, "id": 106, "annotation": null}, {"text": "of", "start": 522, "end": 524, "id": 107, "annotation": null}, {"text": "Ag", "start": 525, "end": 527, "id": 108, "annotation": null}, {"text": "particles", "start": 528, "end": 537, "id": 109, "annotation": null}, {"text": ".", "start": 538, "end": 539, "id": 110, "annotation": null}], [{"text": "As", "start": 540, "end": 542, "id": 111, "annotation": null}, {"text": "for", "start": 543, "end": 546, "id": 112, "annotation": null}, {"text": "the", "start": 547, "end": 550, "id": 113, "annotation": null}, {"text": "examination", "start": 551, "end": 562, "id": 114, "annotation": null}, {"text": "of", "start": 563, "end": 565, "id": 115, "annotation": null}, {"text": "optical", "start": 566, "end": 573, "id": 116, "annotation": null}, {"text": "band", "start": 574, "end": 578, "id": 117, "annotation": null}, {"text": "gaps", "start": 579, "end": 583, "id": 118, "annotation": null}, {"text": "and", "start": 584, "end": 587, "id": 119, "annotation": null}, {"text": "absorption", "start": 588, "end": 598, "id": 120, "annotation": null}, {"text": "of", "start": 599, "end": 601, "id": 121, "annotation": null}, {"text": "these", "start": 602, "end": 607, "id": 122, "annotation": null}, {"text": "films", "start": 608, "end": 613, "id": 123, "annotation": null}, {"text": ",", "start": 614, "end": 615, "id": 124, "annotation": null}, {"text": "UV", "start": 616, "end": 618, "id": 125, "annotation": null}, {"text": "-", "start": 619, "end": 620, "id": 126, "annotation": null}, {"text": "Vis", "start": 621, "end": 624, "id": 127, "annotation": null}, {"text": "-", "start": 625, "end": 626, "id": 128, "annotation": null}, {"text": "NIR", "start": 627, "end": 630, "id": 129, "annotation": null}, {"text": "photometer", "start": 631, "end": 641, "id": 130, "annotation": null}, {"text": "was", "start": 642, "end": 645, "id": 131, "annotation": null}, {"text": "used", "start": 646, "end": 650, "id": 132, "annotation": null}, {"text": ".", "start": 651, "end": 652, "id": 133, "annotation": null}], [{"text": "The", "start": 653, "end": 656, "id": 134, "annotation": null}, {"text": "results", "start": 657, "end": 664, "id": 135, "annotation": null}, {"text": "show", "start": 665, "end": 669, "id": 136, "annotation": null}, {"text": "that", "start": 670, "end": 674, "id": 137, "annotation": null}, {"text": ",", "start": 675, "end": 676, "id": 138, "annotation": null}, {"text": "in", "start": 677, "end": 679, "id": 139, "annotation": null}, {"text": "as", "start": 680, "end": 682, "id": 140, "annotation": null}, {"text": "-", "start": 683, "end": 684, "id": 141, "annotation": null}, {"text": "deposited", "start": 685, "end": 694, "id": 142, "annotation": null}, {"text": "condition", "start": 695, "end": 704, "id": 143, "annotation": null}, {"text": ",", "start": 705, "end": 706, "id": 144, "annotation": null}, {"text": "the", "start": 707, "end": 710, "id": 145, "annotation": null}, {"text": "addition", "start": 711, "end": 719, "id": 146, "annotation": null}, {"text": "of", "start": 720, "end": 722, "id": 147, "annotation": null}, {"text": "Ag", "start": 723, "end": 725, "id": 148, "annotation": null}, {"text": "might", "start": 726, "end": 731, "id": 149, "annotation": null}, {"text": "disrupt", "start": 732, "end": 739, "id": 150, "annotation": null}, {"text": "the", "start": 740, "end": 743, "id": 151, "annotation": null}, {"text": "growth", "start": 744, "end": 750, "id": 152, "annotation": null}, {"text": "of", "start": 751, "end": 753, "id": 153, "annotation": null}, {"text": "crystalline", "start": 754, "end": 765, "id": 154, "annotation": null}, {"text": "structure", "start": 766, "end": 775, "id": 155, "annotation": null}, {"text": "and", "start": 776, "end": 779, "id": 156, "annotation": null}, {"text": "cause", "start": 780, "end": 785, "id": 157, "annotation": null}, {"text": "the", "start": 786, "end": 789, "id": 158, "annotation": null}, {"text": "formation", "start": 790, "end": 799, "id": 159, "annotation": null}, {"text": "of", "start": 800, "end": 802, "id": 160, "annotation": null}, {"text": "amorphous", "start": 803, "end": 812, "id": 161, "annotation": null}, {"text": "films", "start": 813, "end": 818, "id": 162, "annotation": null}, {"text": ".", "start": 819, "end": 820, "id": 163, "annotation": null}], [{"text": "After", "start": 821, "end": 826, "id": 164, "annotation": null}, {"text": "annealing", "start": 827, "end": 836, "id": 165, "annotation": null}, {"text": ",", "start": 837, "end": 838, "id": 166, "annotation": null}, {"text": "it", "start": 839, "end": 841, "id": 167, "annotation": null}, {"text": "is", "start": 842, "end": 844, "id": 168, "annotation": null}, {"text": "found", "start": 845, "end": 850, "id": 169, "annotation": null}, {"text": "that", "start": 851, "end": 855, "id": 170, "annotation": null}, {"text": "the", "start": 856, "end": 859, "id": 171, "annotation": null}, {"text": "structure", "start": 860, "end": 869, "id": 172, "annotation": null}, {"text": "tends", "start": 870, "end": 875, "id": 173, "annotation": null}, {"text": "to", "start": 876, "end": 878, "id": 174, "annotation": null}, {"text": "become", "start": 879, "end": 885, "id": 175, "annotation": null}, {"text": "anatase", "start": 886, "end": 893, "id": 176, "annotation": null}, {"text": "phase", "start": 894, "end": 899, "id": 177, "annotation": null}, {"text": "which", "start": 900, "end": 905, "id": 178, "annotation": null}, {"text": "is", "start": 906, "end": 908, "id": 179, "annotation": null}, {"text": "a", "start": 909, "end": 910, "id": 180, "annotation": null}, {"text": "metastable", "start": 911, "end": 921, "id": 181, "annotation": null}, {"text": "phase", "start": 922, "end": 927, "id": 182, "annotation": null}, {"text": "between", "start": 928, "end": 935, "id": 183, "annotation": null}, {"text": "amorphous", "start": 936, "end": 945, "id": 184, "annotation": null}, {"text": "titanium", "start": 946, "end": 954, "id": 185, "annotation": null}, {"text": "oxide", "start": 955, "end": 960, "id": 186, "annotation": null}, {"text": "and", "start": 961, "end": 964, "id": 187, "annotation": null}, {"text": "rutile", "start": 965, "end": 971, "id": 188, "annotation": null}, {"text": ".", "start": 972, "end": 973, "id": 189, "annotation": null}], [{"text": "More", "start": 974, "end": 978, "id": 190, "annotation": null}, {"text": "importantly", "start": 979, "end": 990, "id": 191, "annotation": null}, {"text": ",", "start": 991, "end": 992, "id": 192, "annotation": null}, {"text": "the", "start": 993, "end": 996, "id": 193, "annotation": null}, {"text": "absorption", "start": 997, "end": 1007, "id": 194, "annotation": null}, {"text": "of", "start": 1008, "end": 1010, "id": 195, "annotation": null}, {"text": "the", "start": 1011, "end": 1014, "id": 196, "annotation": null}, {"text": "Ag", "start": 1015, "end": 1017, "id": 197, "annotation": "DOPANT"}, {"text": "-", "start": 1018, "end": 1019, "id": 198, "annotation": null}, {"text": "doped", "start": 1020, "end": 1025, "id": 199, "annotation": null}, {"text": "films", "start": 1026, "end": 1031, "id": 200, "annotation": "BASEMAT"}, {"text": "would", "start": 1032, "end": 1037, "id": 201, "annotation": null}, {"text": "be", "start": 1038, "end": 1040, "id": 202, "annotation": null}, {"text": "enhanced", "start": 1041, "end": 1049, "id": 203, "annotation": null}, {"text": "in", "start": 1050, "end": 1052, "id": 204, "annotation": null}, {"text": "the", "start": 1053, "end": 1056, "id": 205, "annotation": null}, {"text": "visible", "start": 1057, "end": 1064, "id": 206, "annotation": null}, {"text": "-", "start": 1065, "end": 1066, "id": 207, "annotation": null}, {"text": "light", "start": 1067, "end": 1072, "id": 208, "annotation": null}, {"text": "range", "start": 1073, "end": 1078, "id": 209, "annotation": null}, {"text": ".", "start": 1079, "end": 1080, "id": 210, "annotation": null}], [{"text": "Some", "start": 1081, "end": 1085, "id": 211, "annotation": null}, {"text": "of", "start": 1086, "end": 1088, "id": 212, "annotation": null}, {"text": "the", "start": 1089, "end": 1092, "id": 213, "annotation": null}, {"text": "enhancement", "start": 1093, "end": 1104, "id": 214, "annotation": null}, {"text": "is", "start": 1105, "end": 1107, "id": 215, "annotation": null}, {"text": "clearly", "start": 1108, "end": 1115, "id": 216, "annotation": null}, {"text": "due", "start": 1116, "end": 1119, "id": 217, "annotation": null}, {"text": "to", "start": 1120, "end": 1122, "id": 218, "annotation": null}, {"text": "plasmon", "start": 1123, "end": 1130, "id": 219, "annotation": null}, {"text": "resonance", "start": 1131, "end": 1140, "id": 220, "annotation": null}, {"text": "effect", "start": 1141, "end": 1147, "id": 221, "annotation": null}, {"text": ".", "start": 1148, "end": 1149, "id": 222, "annotation": null}], [{"text": "The", "start": 1150, "end": 1153, "id": 223, "annotation": null}, {"text": "Ag", "start": 1154, "end": 1156, "id": 224, "annotation": "DOPANT"}, {"text": "-", "start": 1157, "end": 1158, "id": 225, "annotation": null}, {"text": "doped", "start": 1159, "end": 1164, "id": 226, "annotation": null}, {"text": "samples", "start": 1165, "end": 1172, "id": 227, "annotation": "BASEMAT"}, {"text": "have", "start": 1173, "end": 1177, "id": 228, "annotation": null}, {"text": "shown", "start": 1178, "end": 1183, "id": 229, "annotation": null}, {"text": "some", "start": 1184, "end": 1188, "id": 230, "annotation": null}, {"text": "antibacterial", "start": 1189, "end": 1202, "id": 231, "annotation": null}, {"text": "effect", "start": 1203, "end": 1209, "id": 232, "annotation": null}, {"text": "in", "start": 1210, "end": 1212, "id": 233, "annotation": null}, {"text": "dark", "start": 1213, "end": 1217, "id": 234, "annotation": null}, {"text": ".", "start": 1218, "end": 1219, "id": 235, "annotation": null}], [{"text": "When", "start": 1220, "end": 1224, "id": 236, "annotation": null}, {"text": "irradiated", "start": 1225, "end": 1235, "id": 237, "annotation": null}, {"text": "with", "start": 1236, "end": 1240, "id": 238, "annotation": null}, {"text": "light", "start": 1241, "end": 1246, "id": 239, "annotation": null}, {"text": ",", "start": 1247, "end": 1248, "id": 240, "annotation": null}, {"text": "the", "start": 1249, "end": 1252, "id": 241, "annotation": null}, {"text": "samples", "start": 1253, "end": 1260, "id": 242, "annotation": null}, {"text": "show", "start": 1261, "end": 1265, "id": 243, "annotation": null}, {"text": "a", "start": 1266, "end": 1267, "id": 244, "annotation": null}, {"text": "synergistic", "start": 1268, "end": 1279, "id": 245, "annotation": null}, {"text": "behavior", "start": 1280, "end": 1288, "id": 246, "annotation": null}, {"text": "combining", "start": 1289, "end": 1298, "id": 247, "annotation": null}, {"text": "the", "start": 1299, "end": 1302, "id": 248, "annotation": null}, {"text": "bactericidal", "start": 1303, "end": 1315, "id": 249, "annotation": null}, {"text": "effect", "start": 1316, "end": 1322, "id": 250, "annotation": null}, {"text": "of", "start": 1323, "end": 1325, "id": 251, "annotation": null}, {"text": "Ag", "start": 1326, "end": 1328, "id": 252, "annotation": null}, {"text": "ions", "start": 1329, "end": 1333, "id": 253, "annotation": null}, {"text": "and", "start": 1334, "end": 1337, "id": 254, "annotation": null}, {"text": "photocatalytic", "start": 1338, "end": 1352, "id": 255, "annotation": null}, {"text": "effect", "start": 1353, "end": 1359, "id": 256, "annotation": null}, {"text": "of", "start": 1360, "end": 1362, "id": 257, "annotation": null}, {"text": "TiO2", "start": 1363, "end": 1367, "id": 258, "annotation": null}, {"text": ".", "start": 1368, "end": 1369, "id": 259, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "TiO2 (rutile and anatase) thin films was first prepared using reactive sputtering, in an Ar+O2 plasma. In the 2nd stage of the experiment, various amounts (3, 7, and 10 at. %) of Ag was doped into the rutile film in order to form TiO2-Ag thin films. These films were annealed for one hour in Ar atmosphere, at 300, 400, and 500 \u00b0C. The films' structures were then examined using X-ray diffractometry. FESEM (field-emission scaning electron microscopy) was used to investigate the surface emergence of Ag particles. As for the examination of optical band gaps and absorption of these films, UV-Vis-NIR photometer was used. The results show that, in as-deposited condition, the addition of Ag might disrupt the growth of crystalline structure and cause the formation of amorphous films. After annealing, it is found that the structure tends to become anatase phase which is a metastable phase between amorphous titanium oxide and rutile. More importantly, the absorption of the Ag-doped films would be enhanced in the visible-light range. Some of the enhancement is clearly due to plasmon resonance effect. The Ag-doped samples have shown some antibacterial effect in dark. When irradiated with light, the samples show a synergistic behavior combining the bactericidal effect of Ag ions and photocatalytic effect of TiO2.", "meta": {"doi": "10.1088/1742-6596/339/1/012012"}, "_input_hash": -2084153193, "_task_hash": 950580147, "tokens": [[{"text": "TiO2", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "(", "start": 5, "end": 6, "id": 1, "annotation": null}, {"text": "rutile", "start": 7, "end": 13, "id": 2, "annotation": null}, {"text": "and", "start": 14, "end": 17, "id": 3, "annotation": null}, {"text": "anatase", "start": 18, "end": 25, "id": 4, "annotation": null}, {"text": ")", "start": 26, "end": 27, "id": 5, "annotation": null}, {"text": "thin", "start": 28, "end": 32, "id": 6, "annotation": null}, {"text": "films", "start": 33, "end": 38, "id": 7, "annotation": null}, {"text": "was", "start": 39, "end": 42, "id": 8, "annotation": null}, {"text": "first", "start": 43, "end": 48, "id": 9, "annotation": null}, {"text": "prepared", "start": 49, "end": 57, "id": 10, "annotation": null}, {"text": "using", "start": 58, "end": 63, "id": 11, "annotation": null}, {"text": "reactive", "start": 64, "end": 72, "id": 12, "annotation": null}, {"text": "sputtering", "start": 73, "end": 83, "id": 13, "annotation": null}, {"text": ",", "start": 84, "end": 85, "id": 14, "annotation": null}, {"text": "in", "start": 86, "end": 88, "id": 15, "annotation": null}, {"text": "an", "start": 89, "end": 91, "id": 16, "annotation": null}, {"text": "Ar+O2", "start": 92, "end": 97, "id": 17, "annotation": null}, {"text": "plasma", "start": 98, "end": 104, "id": 18, "annotation": null}, {"text": ".", "start": 105, "end": 106, "id": 19, "annotation": null}], [{"text": "In", "start": 107, "end": 109, "id": 20, "annotation": null}, {"text": "the", "start": 110, "end": 113, "id": 21, "annotation": null}, {"text": "2nd", "start": 114, "end": 117, "id": 22, "annotation": null}, {"text": "stage", "start": 118, "end": 123, "id": 23, "annotation": null}, {"text": "of", "start": 124, "end": 126, "id": 24, "annotation": null}, {"text": "the", "start": 127, "end": 130, "id": 25, "annotation": null}, {"text": "experiment", "start": 131, "end": 141, "id": 26, "annotation": null}, {"text": ",", "start": 142, "end": 143, "id": 27, "annotation": null}, {"text": "various", "start": 144, "end": 151, "id": 28, "annotation": null}, {"text": "amounts", "start": 152, "end": 159, "id": 29, "annotation": null}, {"text": "(", "start": 160, "end": 161, "id": 30, "annotation": null}, {"text": "3", "start": 162, "end": 163, "id": 31, "annotation": "DOPMODQ"}, {"text": ",", "start": 164, "end": 165, "id": 32, "annotation": "DOPMODQ"}, {"text": "7", "start": 166, "end": 167, "id": 33, "annotation": "DOPMODQ"}, {"text": ",", "start": 168, "end": 169, "id": 34, "annotation": "DOPMODQ"}, {"text": "and", "start": 170, "end": 173, "id": 35, "annotation": "DOPMODQ"}, {"text": "10", "start": 174, "end": 176, "id": 36, "annotation": "DOPMODQ"}, {"text": "at", "start": 177, "end": 179, "id": 37, "annotation": "DOPMODQ"}, {"text": ".", "start": 180, "end": 181, "id": 38, "annotation": "DOPMODQ"}], [{"text": "%", "start": 182, "end": 183, "id": 39, "annotation": "DOPMODQ"}, {"text": ")", "start": 184, "end": 185, "id": 40, "annotation": null}, {"text": "of", "start": 186, "end": 188, "id": 41, "annotation": null}, {"text": "Ag", "start": 189, "end": 191, "id": 42, "annotation": "DOPANT"}, {"text": "was", "start": 192, "end": 195, "id": 43, "annotation": null}, {"text": "doped", "start": 196, "end": 201, "id": 44, "annotation": null}, {"text": "into", "start": 202, "end": 206, "id": 45, "annotation": null}, {"text": "the", "start": 207, "end": 210, "id": 46, "annotation": null}, {"text": "rutile", "start": 211, "end": 217, "id": 47, "annotation": "BASEMAT"}, {"text": "film", "start": 218, "end": 222, "id": 48, "annotation": null}, {"text": "in", "start": 223, "end": 225, "id": 49, "annotation": null}, {"text": "order", "start": 226, "end": 231, "id": 50, "annotation": null}, {"text": "to", "start": 232, "end": 234, "id": 51, "annotation": null}, {"text": "form", "start": 235, "end": 239, "id": 52, "annotation": null}, {"text": "TiO2-Ag", "start": 240, "end": 247, "id": 53, "annotation": null}, {"text": "thin", "start": 248, "end": 252, "id": 54, "annotation": null}, {"text": "films", "start": 253, "end": 258, "id": 55, "annotation": null}, {"text": ".", "start": 259, "end": 260, "id": 56, "annotation": null}], [{"text": "These", "start": 261, "end": 266, "id": 57, "annotation": null}, {"text": "films", "start": 267, "end": 272, "id": 58, "annotation": null}, {"text": "were", "start": 273, "end": 277, "id": 59, "annotation": null}, {"text": "annealed", "start": 278, "end": 286, "id": 60, "annotation": null}, {"text": "for", "start": 287, "end": 290, "id": 61, "annotation": null}, {"text": "one", "start": 291, "end": 294, "id": 62, "annotation": null}, {"text": "hour", "start": 295, "end": 299, "id": 63, "annotation": null}, {"text": "in", "start": 300, "end": 302, "id": 64, "annotation": null}, {"text": "Ar", "start": 303, "end": 305, "id": 65, "annotation": null}, {"text": "atmosphere", "start": 306, "end": 316, "id": 66, "annotation": null}, {"text": ",", "start": 317, "end": 318, "id": 67, "annotation": null}, {"text": "at", "start": 319, "end": 321, "id": 68, "annotation": null}, {"text": "300", "start": 322, "end": 325, "id": 69, "annotation": null}, {"text": ",", "start": 326, "end": 327, "id": 70, "annotation": null}, {"text": "400", "start": 328, "end": 331, "id": 71, "annotation": null}, {"text": ",", "start": 332, "end": 333, "id": 72, "annotation": null}, {"text": "and", "start": 334, "end": 337, "id": 73, "annotation": null}, {"text": "500", "start": 338, "end": 341, "id": 74, "annotation": null}, {"text": "\u00b0", "start": 342, "end": 343, "id": 75, "annotation": null}, {"text": "C", "start": 344, "end": 345, "id": 76, "annotation": null}, {"text": ".", "start": 346, "end": 347, "id": 77, "annotation": null}], [{"text": "The", "start": 348, "end": 351, "id": 78, "annotation": null}, {"text": "films", "start": 352, "end": 357, "id": 79, "annotation": null}, {"text": "'", "start": 358, "end": 359, "id": 80, "annotation": null}, {"text": "structures", "start": 360, "end": 370, "id": 81, "annotation": null}, {"text": "were", "start": 371, "end": 375, "id": 82, "annotation": null}, {"text": "then", "start": 376, "end": 380, "id": 83, "annotation": null}, {"text": "examined", "start": 381, "end": 389, "id": 84, "annotation": null}, {"text": "using", "start": 390, "end": 395, "id": 85, "annotation": null}, {"text": "X", "start": 396, "end": 397, "id": 86, "annotation": null}, {"text": "-", "start": 398, "end": 399, "id": 87, "annotation": null}, {"text": "ray", "start": 400, "end": 403, "id": 88, "annotation": null}, {"text": "diffractometry", "start": 404, "end": 418, "id": 89, "annotation": null}, {"text": ".", "start": 419, "end": 420, "id": 90, "annotation": null}], [{"text": "FESEM", "start": 421, "end": 426, "id": 91, "annotation": null}, {"text": "(", "start": 427, "end": 428, "id": 92, "annotation": null}, {"text": "field", "start": 429, "end": 434, "id": 93, "annotation": null}, {"text": "-", "start": 435, "end": 436, "id": 94, "annotation": null}, {"text": "emission", "start": 437, "end": 445, "id": 95, "annotation": null}, {"text": "scaning", "start": 446, "end": 453, "id": 96, "annotation": null}, {"text": "electron", "start": 454, "end": 462, "id": 97, "annotation": null}, {"text": "microscopy", "start": 463, "end": 473, "id": 98, "annotation": null}, {"text": ")", "start": 474, "end": 475, "id": 99, "annotation": null}, {"text": "was", "start": 476, "end": 479, "id": 100, "annotation": null}, {"text": "used", "start": 480, "end": 484, "id": 101, "annotation": null}, {"text": "to", "start": 485, "end": 487, "id": 102, "annotation": null}, {"text": "investigate", "start": 488, "end": 499, "id": 103, "annotation": null}, {"text": "the", "start": 500, "end": 503, "id": 104, "annotation": null}, {"text": "surface", "start": 504, "end": 511, "id": 105, "annotation": null}, {"text": "emergence", "start": 512, "end": 521, "id": 106, "annotation": null}, {"text": "of", "start": 522, "end": 524, "id": 107, "annotation": null}, {"text": "Ag", "start": 525, "end": 527, "id": 108, "annotation": null}, {"text": "particles", "start": 528, "end": 537, "id": 109, "annotation": null}, {"text": ".", "start": 538, "end": 539, "id": 110, "annotation": null}], [{"text": "As", "start": 540, "end": 542, "id": 111, "annotation": null}, {"text": "for", "start": 543, "end": 546, "id": 112, "annotation": null}, {"text": "the", "start": 547, "end": 550, "id": 113, "annotation": null}, {"text": "examination", "start": 551, "end": 562, "id": 114, "annotation": null}, {"text": "of", "start": 563, "end": 565, "id": 115, "annotation": null}, {"text": "optical", "start": 566, "end": 573, "id": 116, "annotation": null}, {"text": "band", "start": 574, "end": 578, "id": 117, "annotation": null}, {"text": "gaps", "start": 579, "end": 583, "id": 118, "annotation": null}, {"text": "and", "start": 584, "end": 587, "id": 119, "annotation": null}, {"text": "absorption", "start": 588, "end": 598, "id": 120, "annotation": null}, {"text": "of", "start": 599, "end": 601, "id": 121, "annotation": null}, {"text": "these", "start": 602, "end": 607, "id": 122, "annotation": null}, {"text": "films", "start": 608, "end": 613, "id": 123, "annotation": null}, {"text": ",", "start": 614, "end": 615, "id": 124, "annotation": null}, {"text": "UV", "start": 616, "end": 618, "id": 125, "annotation": null}, {"text": "-", "start": 619, "end": 620, "id": 126, "annotation": null}, {"text": "Vis", "start": 621, "end": 624, "id": 127, "annotation": null}, {"text": "-", "start": 625, "end": 626, "id": 128, "annotation": null}, {"text": "NIR", "start": 627, "end": 630, "id": 129, "annotation": null}, {"text": "photometer", "start": 631, "end": 641, "id": 130, "annotation": null}, {"text": "was", "start": 642, "end": 645, "id": 131, "annotation": null}, {"text": "used", "start": 646, "end": 650, "id": 132, "annotation": null}, {"text": ".", "start": 651, "end": 652, "id": 133, "annotation": null}], [{"text": "The", "start": 653, "end": 656, "id": 134, "annotation": null}, {"text": "results", "start": 657, "end": 664, "id": 135, "annotation": null}, {"text": "show", "start": 665, "end": 669, "id": 136, "annotation": null}, {"text": "that", "start": 670, "end": 674, "id": 137, "annotation": null}, {"text": ",", "start": 675, "end": 676, "id": 138, "annotation": null}, {"text": "in", "start": 677, "end": 679, "id": 139, "annotation": null}, {"text": "as", "start": 680, "end": 682, "id": 140, "annotation": null}, {"text": "-", "start": 683, "end": 684, "id": 141, "annotation": null}, {"text": "deposited", "start": 685, "end": 694, "id": 142, "annotation": null}, {"text": "condition", "start": 695, "end": 704, "id": 143, "annotation": null}, {"text": ",", "start": 705, "end": 706, "id": 144, "annotation": null}, {"text": "the", "start": 707, "end": 710, "id": 145, "annotation": null}, {"text": "addition", "start": 711, "end": 719, "id": 146, "annotation": null}, {"text": "of", "start": 720, "end": 722, "id": 147, "annotation": null}, {"text": "Ag", "start": 723, "end": 725, "id": 148, "annotation": null}, {"text": "might", "start": 726, "end": 731, "id": 149, "annotation": null}, {"text": "disrupt", "start": 732, "end": 739, "id": 150, "annotation": null}, {"text": "the", "start": 740, "end": 743, "id": 151, "annotation": null}, {"text": "growth", "start": 744, "end": 750, "id": 152, "annotation": null}, {"text": "of", "start": 751, "end": 753, "id": 153, "annotation": null}, {"text": "crystalline", "start": 754, "end": 765, "id": 154, "annotation": null}, {"text": "structure", "start": 766, "end": 775, "id": 155, "annotation": null}, {"text": "and", "start": 776, "end": 779, "id": 156, "annotation": null}, {"text": "cause", "start": 780, "end": 785, "id": 157, "annotation": null}, {"text": "the", "start": 786, "end": 789, "id": 158, "annotation": null}, {"text": "formation", "start": 790, "end": 799, "id": 159, "annotation": null}, {"text": "of", "start": 800, "end": 802, "id": 160, "annotation": null}, {"text": "amorphous", "start": 803, "end": 812, "id": 161, "annotation": null}, {"text": "films", "start": 813, "end": 818, "id": 162, "annotation": null}, {"text": ".", "start": 819, "end": 820, "id": 163, "annotation": null}], [{"text": "After", "start": 821, "end": 826, "id": 164, "annotation": null}, {"text": "annealing", "start": 827, "end": 836, "id": 165, "annotation": null}, {"text": ",", "start": 837, "end": 838, "id": 166, "annotation": null}, {"text": "it", "start": 839, "end": 841, "id": 167, "annotation": null}, {"text": "is", "start": 842, "end": 844, "id": 168, "annotation": null}, {"text": "found", "start": 845, "end": 850, "id": 169, "annotation": null}, {"text": "that", "start": 851, "end": 855, "id": 170, "annotation": null}, {"text": "the", "start": 856, "end": 859, "id": 171, "annotation": null}, {"text": "structure", "start": 860, "end": 869, "id": 172, "annotation": null}, {"text": "tends", "start": 870, "end": 875, "id": 173, "annotation": null}, {"text": "to", "start": 876, "end": 878, "id": 174, "annotation": null}, {"text": "become", "start": 879, "end": 885, "id": 175, "annotation": null}, {"text": "anatase", "start": 886, "end": 893, "id": 176, "annotation": null}, {"text": "phase", "start": 894, "end": 899, "id": 177, "annotation": null}, {"text": "which", "start": 900, "end": 905, "id": 178, "annotation": null}, {"text": "is", "start": 906, "end": 908, "id": 179, "annotation": null}, {"text": "a", "start": 909, "end": 910, "id": 180, "annotation": null}, {"text": "metastable", "start": 911, "end": 921, "id": 181, "annotation": null}, {"text": "phase", "start": 922, "end": 927, "id": 182, "annotation": null}, {"text": "between", "start": 928, "end": 935, "id": 183, "annotation": null}, {"text": "amorphous", "start": 936, "end": 945, "id": 184, "annotation": null}, {"text": "titanium", "start": 946, "end": 954, "id": 185, "annotation": null}, {"text": "oxide", "start": 955, "end": 960, "id": 186, "annotation": null}, {"text": "and", "start": 961, "end": 964, "id": 187, "annotation": null}, {"text": "rutile", "start": 965, "end": 971, "id": 188, "annotation": null}, {"text": ".", "start": 972, "end": 973, "id": 189, "annotation": null}], [{"text": "More", "start": 974, "end": 978, "id": 190, "annotation": null}, {"text": "importantly", "start": 979, "end": 990, "id": 191, "annotation": null}, {"text": ",", "start": 991, "end": 992, "id": 192, "annotation": null}, {"text": "the", "start": 993, "end": 996, "id": 193, "annotation": null}, {"text": "absorption", "start": 997, "end": 1007, "id": 194, "annotation": null}, {"text": "of", "start": 1008, "end": 1010, "id": 195, "annotation": null}, {"text": "the", "start": 1011, "end": 1014, "id": 196, "annotation": null}, {"text": "Ag", "start": 1015, "end": 1017, "id": 197, "annotation": "DOPANT"}, {"text": "-", "start": 1018, "end": 1019, "id": 198, "annotation": null}, {"text": "doped", "start": 1020, "end": 1025, "id": 199, "annotation": null}, {"text": "films", "start": 1026, "end": 1031, "id": 200, "annotation": "BASEMAT"}, {"text": "would", "start": 1032, "end": 1037, "id": 201, "annotation": null}, {"text": "be", "start": 1038, "end": 1040, "id": 202, "annotation": null}, {"text": "enhanced", "start": 1041, "end": 1049, "id": 203, "annotation": null}, {"text": "in", "start": 1050, "end": 1052, "id": 204, "annotation": null}, {"text": "the", "start": 1053, "end": 1056, "id": 205, "annotation": null}, {"text": "visible", "start": 1057, "end": 1064, "id": 206, "annotation": null}, {"text": "-", "start": 1065, "end": 1066, "id": 207, "annotation": null}, {"text": "light", "start": 1067, "end": 1072, "id": 208, "annotation": null}, {"text": "range", "start": 1073, "end": 1078, "id": 209, "annotation": null}, {"text": ".", "start": 1079, "end": 1080, "id": 210, "annotation": null}], [{"text": "Some", "start": 1081, "end": 1085, "id": 211, "annotation": null}, {"text": "of", "start": 1086, "end": 1088, "id": 212, "annotation": null}, {"text": "the", "start": 1089, "end": 1092, "id": 213, "annotation": null}, {"text": "enhancement", "start": 1093, "end": 1104, "id": 214, "annotation": null}, {"text": "is", "start": 1105, "end": 1107, "id": 215, "annotation": null}, {"text": "clearly", "start": 1108, "end": 1115, "id": 216, "annotation": null}, {"text": "due", "start": 1116, "end": 1119, "id": 217, "annotation": null}, {"text": "to", "start": 1120, "end": 1122, "id": 218, "annotation": null}, {"text": "plasmon", "start": 1123, "end": 1130, "id": 219, "annotation": null}, {"text": "resonance", "start": 1131, "end": 1140, "id": 220, "annotation": null}, {"text": "effect", "start": 1141, "end": 1147, "id": 221, "annotation": null}, {"text": ".", "start": 1148, "end": 1149, "id": 222, "annotation": null}], [{"text": "The", "start": 1150, "end": 1153, "id": 223, "annotation": null}, {"text": "Ag", "start": 1154, "end": 1156, "id": 224, "annotation": "DOPANT"}, {"text": "-", "start": 1157, "end": 1158, "id": 225, "annotation": null}, {"text": "doped", "start": 1159, "end": 1164, "id": 226, "annotation": null}, {"text": "samples", "start": 1165, "end": 1172, "id": 227, "annotation": "BASEMAT"}, {"text": "have", "start": 1173, "end": 1177, "id": 228, "annotation": null}, {"text": "shown", "start": 1178, "end": 1183, "id": 229, "annotation": null}, {"text": "some", "start": 1184, "end": 1188, "id": 230, "annotation": null}, {"text": "antibacterial", "start": 1189, "end": 1202, "id": 231, "annotation": null}, {"text": "effect", "start": 1203, "end": 1209, "id": 232, "annotation": null}, {"text": "in", "start": 1210, "end": 1212, "id": 233, "annotation": null}, {"text": "dark", "start": 1213, "end": 1217, "id": 234, "annotation": null}, {"text": ".", "start": 1218, "end": 1219, "id": 235, "annotation": null}], [{"text": "When", "start": 1220, "end": 1224, "id": 236, "annotation": null}, {"text": "irradiated", "start": 1225, "end": 1235, "id": 237, "annotation": null}, {"text": "with", "start": 1236, "end": 1240, "id": 238, "annotation": null}, {"text": "light", "start": 1241, "end": 1246, "id": 239, "annotation": null}, {"text": ",", "start": 1247, "end": 1248, "id": 240, "annotation": null}, {"text": "the", "start": 1249, "end": 1252, "id": 241, "annotation": null}, {"text": "samples", "start": 1253, "end": 1260, "id": 242, "annotation": null}, {"text": "show", "start": 1261, "end": 1265, "id": 243, "annotation": null}, {"text": "a", "start": 1266, "end": 1267, "id": 244, "annotation": null}, {"text": "synergistic", "start": 1268, "end": 1279, "id": 245, "annotation": null}, {"text": "behavior", "start": 1280, "end": 1288, "id": 246, "annotation": null}, {"text": "combining", "start": 1289, "end": 1298, "id": 247, "annotation": null}, {"text": "the", "start": 1299, "end": 1302, "id": 248, "annotation": null}, {"text": "bactericidal", "start": 1303, "end": 1315, "id": 249, "annotation": null}, {"text": "effect", "start": 1316, "end": 1322, "id": 250, "annotation": null}, {"text": "of", "start": 1323, "end": 1325, "id": 251, "annotation": null}, {"text": "Ag", "start": 1326, "end": 1328, "id": 252, "annotation": null}, {"text": "ions", "start": 1329, "end": 1333, "id": 253, "annotation": null}, {"text": "and", "start": 1334, "end": 1337, "id": 254, "annotation": null}, {"text": "photocatalytic", "start": 1338, "end": 1352, "id": 255, "annotation": null}, {"text": "effect", "start": 1353, "end": 1359, "id": 256, "annotation": null}, {"text": "of", "start": 1360, "end": 1362, "id": 257, "annotation": null}, {"text": "TiO2", "start": 1363, "end": 1367, "id": 258, "annotation": null}, {"text": ".", "start": 1368, "end": 1369, "id": 259, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "A combined treatment based on electrochemical oxidation on boron-doped diamond (BDD) anodes and UV-C irradiation was used to degrade the emerging contaminant coumarin, an ingredient of many personal care products. The efficiency of the process was assessed by monitoring the coumarin concentration decay and the total organic carbon (TOC). The effect of chloride was evaluated and the occurrence of inorganic chlorinated products was quantified. The photo-assisted electrochemical degradation resulted in a faster removal and mineralization of the pollutant, compared to the treatment without UV irradiation. The observed synergistic effect was mainly ascribed to the ability of UV light to activate the peroxides electrogenerated during the electrolysis on BDD. An additional contribution was due to the photolysis of electrogenerated hypochlorite/hypochlorous acid in the presence of chloride. UV irradiation reduced the amount of residual active chlorine but not of chlorates. TOC analysis showed that mineralization occurred together with coumarin removal from the solution, indicating that no persistent organic by-products were formed during the treatment. The possibility of reducing the energy consumption of the process by shortening the exposure time of the solution to UV light was also investigated.", "meta": {"doi": "10.1016/j.cej.2017.04.129"}, "_input_hash": -1270469061, "_task_hash": 830072929, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "combined", "start": 2, "end": 10, "id": 1, "annotation": null}, {"text": "treatment", "start": 11, "end": 20, "id": 2, "annotation": null}, {"text": "based", "start": 21, "end": 26, "id": 3, "annotation": null}, {"text": "on", "start": 27, "end": 29, "id": 4, "annotation": null}, {"text": "electrochemical", "start": 30, "end": 45, "id": 5, "annotation": null}, {"text": "oxidation", "start": 46, "end": 55, "id": 6, "annotation": null}, {"text": "on", "start": 56, "end": 58, "id": 7, "annotation": null}, {"text": "boron", "start": 59, "end": 64, "id": 8, "annotation": "DOPANT"}, {"text": "-", "start": 65, "end": 66, "id": 9, "annotation": null}, {"text": "doped", "start": 67, "end": 72, "id": 10, "annotation": null}, {"text": "diamond", "start": 73, "end": 80, "id": 11, "annotation": "BASEMAT"}, {"text": "(", "start": 81, "end": 82, "id": 12, "annotation": null}, {"text": "BDD", "start": 83, "end": 86, "id": 13, "annotation": null}, {"text": ")", "start": 87, "end": 88, "id": 14, "annotation": null}, {"text": "anodes", "start": 89, "end": 95, "id": 15, "annotation": null}, {"text": "and", "start": 96, "end": 99, "id": 16, "annotation": null}, {"text": "UV", "start": 100, "end": 102, "id": 17, "annotation": null}, {"text": "-", "start": 103, "end": 104, "id": 18, "annotation": null}, {"text": "C", "start": 105, "end": 106, "id": 19, "annotation": null}, {"text": "irradiation", "start": 107, "end": 118, "id": 20, "annotation": null}, {"text": "was", "start": 119, "end": 122, "id": 21, "annotation": null}, {"text": "used", "start": 123, "end": 127, "id": 22, "annotation": null}, {"text": "to", "start": 128, "end": 130, "id": 23, "annotation": null}, {"text": "degrade", "start": 131, "end": 138, "id": 24, "annotation": null}, {"text": "the", "start": 139, "end": 142, "id": 25, "annotation": null}, {"text": "emerging", "start": 143, "end": 151, "id": 26, "annotation": null}, {"text": "contaminant", "start": 152, "end": 163, "id": 27, "annotation": null}, {"text": "coumarin", "start": 164, "end": 172, "id": 28, "annotation": null}, {"text": ",", "start": 173, "end": 174, "id": 29, "annotation": null}, {"text": "an", "start": 175, "end": 177, "id": 30, "annotation": null}, {"text": "ingredient", "start": 178, "end": 188, "id": 31, "annotation": null}, {"text": "of", "start": 189, "end": 191, "id": 32, "annotation": null}, {"text": "many", "start": 192, "end": 196, "id": 33, "annotation": null}, {"text": "personal", "start": 197, "end": 205, "id": 34, "annotation": null}, {"text": "care", "start": 206, "end": 210, "id": 35, "annotation": null}, {"text": "products", "start": 211, "end": 219, "id": 36, "annotation": null}, {"text": ".", "start": 220, "end": 221, "id": 37, "annotation": null}], [{"text": "The", "start": 222, "end": 225, "id": 38, "annotation": null}, {"text": "efficiency", "start": 226, "end": 236, "id": 39, "annotation": null}, {"text": "of", "start": 237, "end": 239, "id": 40, "annotation": null}, {"text": "the", "start": 240, "end": 243, "id": 41, "annotation": null}, {"text": "process", "start": 244, "end": 251, "id": 42, "annotation": null}, {"text": "was", "start": 252, "end": 255, "id": 43, "annotation": null}, {"text": "assessed", "start": 256, "end": 264, "id": 44, "annotation": null}, {"text": "by", "start": 265, "end": 267, "id": 45, "annotation": null}, {"text": "monitoring", "start": 268, "end": 278, "id": 46, "annotation": null}, {"text": "the", "start": 279, "end": 282, "id": 47, "annotation": null}, {"text": "coumarin", "start": 283, "end": 291, "id": 48, "annotation": null}, {"text": "concentration", "start": 292, "end": 305, "id": 49, "annotation": null}, {"text": "decay", "start": 306, "end": 311, "id": 50, "annotation": null}, {"text": "and", "start": 312, "end": 315, "id": 51, "annotation": null}, {"text": "the", "start": 316, "end": 319, "id": 52, "annotation": null}, {"text": "total", "start": 320, "end": 325, "id": 53, "annotation": null}, {"text": "organic", "start": 326, "end": 333, "id": 54, "annotation": null}, {"text": "carbon", "start": 334, "end": 340, "id": 55, "annotation": null}, {"text": "(", "start": 341, "end": 342, "id": 56, "annotation": null}, {"text": "TOC", "start": 343, "end": 346, "id": 57, "annotation": null}, {"text": ")", "start": 347, "end": 348, "id": 58, "annotation": null}, {"text": ".", "start": 349, "end": 350, "id": 59, "annotation": null}], [{"text": "The", "start": 351, "end": 354, "id": 60, "annotation": null}, {"text": "effect", "start": 355, "end": 361, "id": 61, "annotation": null}, {"text": "of", "start": 362, "end": 364, "id": 62, "annotation": null}, {"text": "chloride", "start": 365, "end": 373, "id": 63, "annotation": null}, {"text": "was", "start": 374, "end": 377, "id": 64, "annotation": null}, {"text": "evaluated", "start": 378, "end": 387, "id": 65, "annotation": null}, {"text": "and", "start": 388, "end": 391, "id": 66, "annotation": null}, {"text": "the", "start": 392, "end": 395, "id": 67, "annotation": null}, {"text": "occurrence", "start": 396, "end": 406, "id": 68, "annotation": null}, {"text": "of", "start": 407, "end": 409, "id": 69, "annotation": null}, {"text": "inorganic", "start": 410, "end": 419, "id": 70, "annotation": null}, {"text": "chlorinated", "start": 420, "end": 431, "id": 71, "annotation": null}, {"text": "products", "start": 432, "end": 440, "id": 72, "annotation": null}, {"text": "was", "start": 441, "end": 444, "id": 73, "annotation": null}, {"text": "quantified", "start": 445, "end": 455, "id": 74, "annotation": null}, {"text": ".", "start": 456, "end": 457, "id": 75, "annotation": null}], [{"text": "The", "start": 458, "end": 461, "id": 76, "annotation": null}, {"text": "photo", "start": 462, "end": 467, "id": 77, "annotation": null}, {"text": "-", "start": 468, "end": 469, "id": 78, "annotation": null}, {"text": "assisted", "start": 470, "end": 478, "id": 79, "annotation": null}, {"text": "electrochemical", "start": 479, "end": 494, "id": 80, "annotation": null}, {"text": "degradation", "start": 495, "end": 506, "id": 81, "annotation": null}, {"text": "resulted", "start": 507, "end": 515, "id": 82, "annotation": null}, {"text": "in", "start": 516, "end": 518, "id": 83, "annotation": null}, {"text": "a", "start": 519, "end": 520, "id": 84, "annotation": null}, {"text": "faster", "start": 521, "end": 527, "id": 85, "annotation": null}, {"text": "removal", "start": 528, "end": 535, "id": 86, "annotation": null}, {"text": "and", "start": 536, "end": 539, "id": 87, "annotation": null}, {"text": "mineralization", "start": 540, "end": 554, "id": 88, "annotation": null}, {"text": "of", "start": 555, "end": 557, "id": 89, "annotation": null}, {"text": "the", "start": 558, "end": 561, "id": 90, "annotation": null}, {"text": "pollutant", "start": 562, "end": 571, "id": 91, "annotation": null}, {"text": ",", "start": 572, "end": 573, "id": 92, "annotation": null}, {"text": "compared", "start": 574, "end": 582, "id": 93, "annotation": null}, {"text": "to", "start": 583, "end": 585, "id": 94, "annotation": null}, {"text": "the", "start": 586, "end": 589, "id": 95, "annotation": null}, {"text": "treatment", "start": 590, "end": 599, "id": 96, "annotation": null}, {"text": "without", "start": 600, "end": 607, "id": 97, "annotation": null}, {"text": "UV", "start": 608, "end": 610, "id": 98, "annotation": null}, {"text": "irradiation", "start": 611, "end": 622, "id": 99, "annotation": null}, {"text": ".", "start": 623, "end": 624, "id": 100, "annotation": null}], [{"text": "The", "start": 625, "end": 628, "id": 101, "annotation": null}, {"text": "observed", "start": 629, "end": 637, "id": 102, "annotation": null}, {"text": "synergistic", "start": 638, "end": 649, "id": 103, "annotation": null}, {"text": "effect", "start": 650, "end": 656, "id": 104, "annotation": null}, {"text": "was", "start": 657, "end": 660, "id": 105, "annotation": null}, {"text": "mainly", "start": 661, "end": 667, "id": 106, "annotation": null}, {"text": "ascribed", "start": 668, "end": 676, "id": 107, "annotation": null}, {"text": "to", "start": 677, "end": 679, "id": 108, "annotation": null}, {"text": "the", "start": 680, "end": 683, "id": 109, "annotation": null}, {"text": "ability", "start": 684, "end": 691, "id": 110, "annotation": null}, {"text": "of", "start": 692, "end": 694, "id": 111, "annotation": null}, {"text": "UV", "start": 695, "end": 697, "id": 112, "annotation": null}, {"text": "light", "start": 698, "end": 703, "id": 113, "annotation": null}, {"text": "to", "start": 704, "end": 706, "id": 114, "annotation": null}, {"text": "activate", "start": 707, "end": 715, "id": 115, "annotation": null}, {"text": "the", "start": 716, "end": 719, "id": 116, "annotation": null}, {"text": "peroxides", "start": 720, "end": 729, "id": 117, "annotation": null}, {"text": "electrogenerated", "start": 730, "end": 746, "id": 118, "annotation": null}, {"text": "during", "start": 747, "end": 753, "id": 119, "annotation": null}, {"text": "the", "start": 754, "end": 757, "id": 120, "annotation": null}, {"text": "electrolysis", "start": 758, "end": 770, "id": 121, "annotation": null}, {"text": "on", "start": 771, "end": 773, "id": 122, "annotation": null}, {"text": "BDD", "start": 774, "end": 777, "id": 123, "annotation": null}, {"text": ".", "start": 778, "end": 779, "id": 124, "annotation": null}], [{"text": "An", "start": 780, "end": 782, "id": 125, "annotation": null}, {"text": "additional", "start": 783, "end": 793, "id": 126, "annotation": null}, {"text": "contribution", "start": 794, "end": 806, "id": 127, "annotation": null}, {"text": "was", "start": 807, "end": 810, "id": 128, "annotation": null}, {"text": "due", "start": 811, "end": 814, "id": 129, "annotation": null}, {"text": "to", "start": 815, "end": 817, "id": 130, "annotation": null}, {"text": "the", "start": 818, "end": 821, "id": 131, "annotation": null}, {"text": "photolysis", "start": 822, "end": 832, "id": 132, "annotation": null}, {"text": "of", "start": 833, "end": 835, "id": 133, "annotation": null}, {"text": "electrogenerated", "start": 836, "end": 852, "id": 134, "annotation": null}, {"text": "hypochlorite", "start": 853, "end": 865, "id": 135, "annotation": null}, {"text": "/", "start": 866, "end": 867, "id": 136, "annotation": null}, {"text": "hypochlorous", "start": 868, "end": 880, "id": 137, "annotation": null}, {"text": "acid", "start": 881, "end": 885, "id": 138, "annotation": null}, {"text": "in", "start": 886, "end": 888, "id": 139, "annotation": null}, {"text": "the", "start": 889, "end": 892, "id": 140, "annotation": null}, {"text": "presence", "start": 893, "end": 901, "id": 141, "annotation": null}, {"text": "of", "start": 902, "end": 904, "id": 142, "annotation": null}, {"text": "chloride", "start": 905, "end": 913, "id": 143, "annotation": null}, {"text": ".", "start": 914, "end": 915, "id": 144, "annotation": null}], [{"text": "UV", "start": 916, "end": 918, "id": 145, "annotation": null}, {"text": "irradiation", "start": 919, "end": 930, "id": 146, "annotation": null}, {"text": "reduced", "start": 931, "end": 938, "id": 147, "annotation": null}, {"text": "the", "start": 939, "end": 942, "id": 148, "annotation": null}, {"text": "amount", "start": 943, "end": 949, "id": 149, "annotation": null}, {"text": "of", "start": 950, "end": 952, "id": 150, "annotation": null}, {"text": "residual", "start": 953, "end": 961, "id": 151, "annotation": null}, {"text": "active", "start": 962, "end": 968, "id": 152, "annotation": null}, {"text": "chlorine", "start": 969, "end": 977, "id": 153, "annotation": null}, {"text": "but", "start": 978, "end": 981, "id": 154, "annotation": null}, {"text": "not", "start": 982, "end": 985, "id": 155, "annotation": null}, {"text": "of", "start": 986, "end": 988, "id": 156, "annotation": null}, {"text": "chlorates", "start": 989, "end": 998, "id": 157, "annotation": null}, {"text": ".", "start": 999, "end": 1000, "id": 158, "annotation": null}], [{"text": "TOC", "start": 1001, "end": 1004, "id": 159, "annotation": null}, {"text": "analysis", "start": 1005, "end": 1013, "id": 160, "annotation": null}, {"text": "showed", "start": 1014, "end": 1020, "id": 161, "annotation": null}, {"text": "that", "start": 1021, "end": 1025, "id": 162, "annotation": null}, {"text": "mineralization", "start": 1026, "end": 1040, "id": 163, "annotation": null}, {"text": "occurred", "start": 1041, "end": 1049, "id": 164, "annotation": null}, {"text": "together", "start": 1050, "end": 1058, "id": 165, "annotation": null}, {"text": "with", "start": 1059, "end": 1063, "id": 166, "annotation": null}, {"text": "coumarin", "start": 1064, "end": 1072, "id": 167, "annotation": null}, {"text": "removal", "start": 1073, "end": 1080, "id": 168, "annotation": null}, {"text": "from", "start": 1081, "end": 1085, "id": 169, "annotation": null}, {"text": "the", "start": 1086, "end": 1089, "id": 170, "annotation": null}, {"text": "solution", "start": 1090, "end": 1098, "id": 171, "annotation": null}, {"text": ",", "start": 1099, "end": 1100, "id": 172, "annotation": null}, {"text": "indicating", "start": 1101, "end": 1111, "id": 173, "annotation": null}, {"text": "that", "start": 1112, "end": 1116, "id": 174, "annotation": null}, {"text": "no", "start": 1117, "end": 1119, "id": 175, "annotation": null}, {"text": "persistent", "start": 1120, "end": 1130, "id": 176, "annotation": null}, {"text": "organic", "start": 1131, "end": 1138, "id": 177, "annotation": null}, {"text": "by", "start": 1139, "end": 1141, "id": 178, "annotation": null}, {"text": "-", "start": 1142, "end": 1143, "id": 179, "annotation": null}, {"text": "products", "start": 1144, "end": 1152, "id": 180, "annotation": null}, {"text": "were", "start": 1153, "end": 1157, "id": 181, "annotation": null}, {"text": "formed", "start": 1158, "end": 1164, "id": 182, "annotation": null}, {"text": "during", "start": 1165, "end": 1171, "id": 183, "annotation": null}, {"text": "the", "start": 1172, "end": 1175, "id": 184, "annotation": null}, {"text": "treatment", "start": 1176, "end": 1185, "id": 185, "annotation": null}, {"text": ".", "start": 1186, "end": 1187, "id": 186, "annotation": null}], [{"text": "The", "start": 1188, "end": 1191, "id": 187, "annotation": null}, {"text": "possibility", "start": 1192, "end": 1203, "id": 188, "annotation": null}, {"text": "of", "start": 1204, "end": 1206, "id": 189, "annotation": null}, {"text": "reducing", "start": 1207, "end": 1215, "id": 190, "annotation": null}, {"text": "the", "start": 1216, "end": 1219, "id": 191, "annotation": null}, {"text": "energy", "start": 1220, "end": 1226, "id": 192, "annotation": null}, {"text": "consumption", "start": 1227, "end": 1238, "id": 193, "annotation": null}, {"text": "of", "start": 1239, "end": 1241, "id": 194, "annotation": null}, {"text": "the", "start": 1242, "end": 1245, "id": 195, "annotation": null}, {"text": "process", "start": 1246, "end": 1253, "id": 196, "annotation": null}, {"text": "by", "start": 1254, "end": 1256, "id": 197, "annotation": null}, {"text": "shortening", "start": 1257, "end": 1267, "id": 198, "annotation": null}, {"text": "the", "start": 1268, "end": 1271, "id": 199, "annotation": null}, {"text": "exposure", "start": 1272, "end": 1280, "id": 200, "annotation": null}, {"text": "time", "start": 1281, "end": 1285, "id": 201, "annotation": null}, {"text": "of", "start": 1286, "end": 1288, "id": 202, "annotation": null}, {"text": "the", "start": 1289, "end": 1292, "id": 203, "annotation": null}, {"text": "solution", "start": 1293, "end": 1301, "id": 204, "annotation": null}, {"text": "to", "start": 1302, "end": 1304, "id": 205, "annotation": null}, {"text": "UV", "start": 1305, "end": 1307, "id": 206, "annotation": null}, {"text": "light", "start": 1308, "end": 1313, "id": 207, "annotation": null}, {"text": "was", "start": 1314, "end": 1317, "id": 208, "annotation": null}, {"text": "also", "start": 1318, "end": 1322, "id": 209, "annotation": null}, {"text": "investigated", "start": 1323, "end": 1335, "id": 210, "annotation": null}, {"text": ".", "start": 1336, "end": 1337, "id": 211, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The structural, electronic and magnetic properties of Li, Be, B and F-doped carbon nitrides with \u03b2-C3N4, defect zinc-blende and tetragonal structure are studied by using first-principle's method. The investigation was done using the (FPLAPW) method where the exchange-correlation potential was calculated with the frame of GGA by Perdew et\u00a0al. (Phys. Rev. Lett. 77 (1996) 3865). The possibility of half-metallic ferromagnetism in Li, Be, B and F-doped C3N4 were analyzed by electronic band structure and density of states calculations. We found that FC5N8 monoclinic and BeC5N8 tetragonal phase exhibits a complete half-metallic characteristic with a total spin moment of 1.00\u03bc B and 3.00\u03bc B, and energy band gap of (Eg \u2193\u00a0=\u00a00.5eV) and (Eg \u2191\u00a0=\u00a02.6\u00a0eV), respectively. These results may be of interest for spintronic applications.", "meta": {"doi": "10.1016/j.cocom.2017.08.004"}, "_input_hash": 911901082, "_task_hash": -1701282055, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "structural", "start": 4, "end": 14, "id": 1, "annotation": null}, {"text": ",", "start": 15, "end": 16, "id": 2, "annotation": null}, {"text": "electronic", "start": 17, "end": 27, "id": 3, "annotation": null}, {"text": "and", "start": 28, "end": 31, "id": 4, "annotation": null}, {"text": "magnetic", "start": 32, "end": 40, "id": 5, "annotation": null}, {"text": "properties", "start": 41, "end": 51, "id": 6, "annotation": null}, {"text": "of", "start": 52, "end": 54, "id": 7, "annotation": null}, {"text": "Li", "start": 55, "end": 57, "id": 8, "annotation": "DOPANT"}, {"text": ",", "start": 58, "end": 59, "id": 9, "annotation": null}, {"text": "Be", "start": 60, "end": 62, "id": 10, "annotation": "DOPANT"}, {"text": ",", "start": 63, "end": 64, "id": 11, "annotation": null}, {"text": "B", "start": 65, "end": 66, "id": 12, "annotation": "DOPANT"}, {"text": "and", "start": 67, "end": 70, "id": 13, "annotation": null}, {"text": "F", "start": 71, "end": 72, "id": 14, "annotation": "DOPANT"}, {"text": "-", "start": 73, "end": 74, "id": 15, "annotation": null}, {"text": "doped", "start": 75, "end": 80, "id": 16, "annotation": null}, {"text": "carbon", "start": 81, "end": 87, "id": 17, "annotation": "BASEMAT"}, {"text": "nitrides", "start": 88, "end": 96, "id": 18, "annotation": "BASEMAT"}, {"text": "with", "start": 97, "end": 101, "id": 19, "annotation": null}, {"text": "\u03b2", "start": 102, "end": 103, "id": 20, "annotation": null}, {"text": "-", "start": 104, "end": 105, "id": 21, "annotation": null}, {"text": "C3N4", "start": 106, "end": 110, "id": 22, "annotation": "BASEMAT"}, {"text": ",", "start": 111, "end": 112, "id": 23, "annotation": null}, {"text": "defect", "start": 113, "end": 119, "id": 24, "annotation": null}, {"text": "zinc", "start": 120, "end": 124, "id": 25, "annotation": null}, {"text": "-", "start": 125, "end": 126, "id": 26, "annotation": null}, {"text": "blende", "start": 127, "end": 133, "id": 27, "annotation": null}, {"text": "and", "start": 134, "end": 137, "id": 28, "annotation": null}, {"text": "tetragonal", "start": 138, "end": 148, "id": 29, "annotation": null}, {"text": "structure", "start": 149, "end": 158, "id": 30, "annotation": null}, {"text": "are", "start": 159, "end": 162, "id": 31, "annotation": null}, {"text": "studied", "start": 163, "end": 170, "id": 32, "annotation": null}, {"text": "by", "start": 171, "end": 173, "id": 33, "annotation": null}, {"text": "using", "start": 174, "end": 179, "id": 34, "annotation": null}, {"text": "first", "start": 180, "end": 185, "id": 35, "annotation": null}, {"text": "-", "start": 186, "end": 187, "id": 36, "annotation": null}, {"text": "principle", "start": 188, "end": 197, "id": 37, "annotation": null}, {"text": "'s", "start": 198, "end": 200, "id": 38, "annotation": null}, {"text": "method", "start": 201, "end": 207, "id": 39, "annotation": null}, {"text": ".", "start": 208, "end": 209, "id": 40, "annotation": null}], [{"text": "The", "start": 210, "end": 213, "id": 41, "annotation": null}, {"text": "investigation", "start": 214, "end": 227, "id": 42, "annotation": null}, {"text": "was", "start": 228, "end": 231, "id": 43, "annotation": null}, {"text": "done", "start": 232, "end": 236, "id": 44, "annotation": null}, {"text": "using", "start": 237, "end": 242, "id": 45, "annotation": null}, {"text": "the", "start": 243, "end": 246, "id": 46, "annotation": null}, {"text": "(", "start": 247, "end": 248, "id": 47, "annotation": null}, {"text": "FPLAPW", "start": 249, "end": 255, "id": 48, "annotation": null}, {"text": ")", "start": 256, "end": 257, "id": 49, "annotation": null}, {"text": "method", "start": 258, "end": 264, "id": 50, "annotation": null}, {"text": "where", "start": 265, "end": 270, "id": 51, "annotation": null}, {"text": "the", "start": 271, "end": 274, "id": 52, "annotation": null}, {"text": "exchange", "start": 275, "end": 283, "id": 53, "annotation": null}, {"text": "-", "start": 284, "end": 285, "id": 54, "annotation": null}, {"text": "correlation", "start": 286, "end": 297, "id": 55, "annotation": null}, {"text": "potential", "start": 298, "end": 307, "id": 56, "annotation": null}, {"text": "was", "start": 308, "end": 311, "id": 57, "annotation": null}, {"text": "calculated", "start": 312, "end": 322, "id": 58, "annotation": null}, {"text": "with", "start": 323, "end": 327, "id": 59, "annotation": null}, {"text": "the", "start": 328, "end": 331, "id": 60, "annotation": null}, {"text": "frame", "start": 332, "end": 337, "id": 61, "annotation": null}, {"text": "of", "start": 338, "end": 340, "id": 62, "annotation": null}, {"text": "GGA", "start": 341, "end": 344, "id": 63, "annotation": null}, {"text": "by", "start": 345, "end": 347, "id": 64, "annotation": null}, {"text": "Perdew", "start": 348, "end": 354, "id": 65, "annotation": null}, {"text": "et", "start": 355, "end": 357, "id": 66, "annotation": null}, {"text": "al", "start": 358, "end": 360, "id": 68, "annotation": null}, {"text": ".", "start": 361, "end": 362, "id": 69, "annotation": null}], [{"text": "(", "start": 363, "end": 364, "id": 70, "annotation": null}, {"text": "Phys", "start": 365, "end": 369, "id": 71, "annotation": null}, {"text": ".", "start": 370, "end": 371, "id": 72, "annotation": null}], [{"text": "Rev.", "start": 372, "end": 376, "id": 73, "annotation": null}], [{"text": "Lett", "start": 377, "end": 381, "id": 74, "annotation": null}, {"text": ".", "start": 382, "end": 383, "id": 75, "annotation": null}], [{"text": "77", "start": 384, "end": 386, "id": 76, "annotation": null}, {"text": "(", "start": 387, "end": 388, "id": 77, "annotation": null}, {"text": "1996", "start": 389, "end": 393, "id": 78, "annotation": null}, {"text": ")", "start": 394, "end": 395, "id": 79, "annotation": null}, {"text": "3865", "start": 396, "end": 400, "id": 80, "annotation": null}, {"text": ")", "start": 401, "end": 402, "id": 81, "annotation": null}, {"text": ".", "start": 403, "end": 404, "id": 82, "annotation": null}], [{"text": "The", "start": 405, "end": 408, "id": 83, "annotation": null}, {"text": "possibility", "start": 409, "end": 420, "id": 84, "annotation": null}, {"text": "of", "start": 421, "end": 423, "id": 85, "annotation": null}, {"text": "half", "start": 424, "end": 428, "id": 86, "annotation": null}, {"text": "-", "start": 429, "end": 430, "id": 87, "annotation": null}, {"text": "metallic", "start": 431, "end": 439, "id": 88, "annotation": null}, {"text": "ferromagnetism", "start": 440, "end": 454, "id": 89, "annotation": null}, {"text": "in", "start": 455, "end": 457, "id": 90, "annotation": null}, {"text": "Li", "start": 458, "end": 460, "id": 91, "annotation": "DOPANT"}, {"text": ",", "start": 461, "end": 462, "id": 92, "annotation": null}, {"text": "Be", "start": 463, "end": 465, "id": 93, "annotation": "DOPANT"}, {"text": ",", "start": 466, "end": 467, "id": 94, "annotation": null}, {"text": "B", "start": 468, "end": 469, "id": 95, "annotation": "DOPANT"}, {"text": "and", "start": 470, "end": 473, "id": 96, "annotation": null}, {"text": "F", "start": 474, "end": 475, "id": 97, "annotation": "DOPANT"}, {"text": "-", "start": 476, "end": 477, "id": 98, "annotation": null}, {"text": "doped", "start": 478, "end": 483, "id": 99, "annotation": null}, {"text": "C3N4", "start": 484, "end": 488, "id": 100, "annotation": "BASEMAT"}, {"text": "were", "start": 489, "end": 493, "id": 101, "annotation": null}, {"text": "analyzed", "start": 494, "end": 502, "id": 102, "annotation": null}, {"text": "by", "start": 503, "end": 505, "id": 103, "annotation": null}, {"text": "electronic", "start": 506, "end": 516, "id": 104, "annotation": null}, {"text": "band", "start": 517, "end": 521, "id": 105, "annotation": null}, {"text": "structure", "start": 522, "end": 531, "id": 106, "annotation": null}, {"text": "and", "start": 532, "end": 535, "id": 107, "annotation": null}, {"text": "density", "start": 536, "end": 543, "id": 108, "annotation": null}, {"text": "of", "start": 544, "end": 546, "id": 109, "annotation": null}, {"text": "states", "start": 547, "end": 553, "id": 110, "annotation": null}, {"text": "calculations", "start": 554, "end": 566, "id": 111, "annotation": null}, {"text": ".", "start": 567, "end": 568, "id": 112, "annotation": null}], [{"text": "We", "start": 569, "end": 571, "id": 113, "annotation": null}, {"text": "found", "start": 572, "end": 577, "id": 114, "annotation": null}, {"text": "that", "start": 578, "end": 582, "id": 115, "annotation": null}, {"text": "FC5N8", "start": 583, "end": 588, "id": 116, "annotation": null}, {"text": "monoclinic", "start": 589, "end": 599, "id": 117, "annotation": null}, {"text": "and", "start": 600, "end": 603, "id": 118, "annotation": null}, {"text": "BeC5N8", "start": 604, "end": 610, "id": 119, "annotation": null}, {"text": "tetragonal", "start": 611, "end": 621, "id": 120, "annotation": null}, {"text": "phase", "start": 622, "end": 627, "id": 121, "annotation": null}, {"text": "exhibits", "start": 628, "end": 636, "id": 122, "annotation": null}, {"text": "a", "start": 637, "end": 638, "id": 123, "annotation": null}, {"text": "complete", "start": 639, "end": 647, "id": 124, "annotation": null}, {"text": "half", "start": 648, "end": 652, "id": 125, "annotation": null}, {"text": "-", "start": 653, "end": 654, "id": 126, "annotation": null}, {"text": "metallic", "start": 655, "end": 663, "id": 127, "annotation": null}, {"text": "characteristic", "start": 664, "end": 678, "id": 128, "annotation": null}, {"text": "with", "start": 679, "end": 683, "id": 129, "annotation": null}, {"text": "a", "start": 684, "end": 685, "id": 130, "annotation": null}, {"text": "total", "start": 686, "end": 691, "id": 131, "annotation": null}, {"text": "spin", "start": 692, "end": 696, "id": 132, "annotation": null}, {"text": "moment", "start": 697, "end": 703, "id": 133, "annotation": null}, {"text": "of", "start": 704, "end": 706, "id": 134, "annotation": null}, {"text": "1.00\u03bc", "start": 707, "end": 712, "id": 135, "annotation": null}, {"text": "B", "start": 713, "end": 714, "id": 136, "annotation": null}, {"text": "and", "start": 715, "end": 718, "id": 137, "annotation": null}, {"text": "3.00\u03bc", "start": 719, "end": 724, "id": 138, "annotation": null}, {"text": "B", "start": 725, "end": 726, "id": 139, "annotation": null}, {"text": ",", "start": 727, "end": 728, "id": 140, "annotation": null}, {"text": "and", "start": 729, "end": 732, "id": 141, "annotation": null}, {"text": "energy", "start": 733, "end": 739, "id": 142, "annotation": null}, {"text": "band", "start": 740, "end": 744, "id": 143, "annotation": null}, {"text": "gap", "start": 745, "end": 748, "id": 144, "annotation": null}, {"text": "of", "start": 749, "end": 751, "id": 145, "annotation": null}, {"text": "(", "start": 752, "end": 753, "id": 146, "annotation": null}, {"text": "Eg", "start": 754, "end": 756, "id": 147, "annotation": null}, {"text": "\u2193", "start": 757, "end": 758, "id": 148, "annotation": null}, {"text": "=", "start": 759, "end": 760, "id": 150, "annotation": null}, {"text": "0.5eV", "start": 761, "end": 766, "id": 152, "annotation": null}, {"text": ")", "start": 767, "end": 768, "id": 153, "annotation": null}, {"text": "and", "start": 769, "end": 772, "id": 154, "annotation": null}, {"text": "(", "start": 773, "end": 774, "id": 155, "annotation": null}, {"text": "Eg", "start": 775, "end": 777, "id": 156, "annotation": null}, {"text": "\u2191", "start": 778, "end": 779, "id": 157, "annotation": null}, {"text": "=", "start": 780, "end": 781, "id": 159, "annotation": null}, {"text": "2.6", "start": 782, "end": 785, "id": 161, "annotation": null}, {"text": "eV", "start": 786, "end": 788, "id": 163, "annotation": null}, {"text": ")", "start": 789, "end": 790, "id": 164, "annotation": null}, {"text": ",", "start": 791, "end": 792, "id": 165, "annotation": null}, {"text": "respectively", "start": 793, "end": 805, "id": 166, "annotation": null}, {"text": ".", "start": 806, "end": 807, "id": 167, "annotation": null}], [{"text": "These", "start": 808, "end": 813, "id": 168, "annotation": null}, {"text": "results", "start": 814, "end": 821, "id": 169, "annotation": null}, {"text": "may", "start": 822, "end": 825, "id": 170, "annotation": null}, {"text": "be", "start": 826, "end": 828, "id": 171, "annotation": null}, {"text": "of", "start": 829, "end": 831, "id": 172, "annotation": null}, {"text": "interest", "start": 832, "end": 840, "id": 173, "annotation": null}, {"text": "for", "start": 841, "end": 844, "id": 174, "annotation": null}, {"text": "spintronic", "start": 845, "end": 855, "id": 175, "annotation": null}, {"text": "applications", "start": 856, "end": 868, "id": 176, "annotation": null}, {"text": ".", "start": 869, "end": 870, "id": 177, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "LaMnx V1\u2212x O4\u2212\u03b4 (0\u2264x\u22641) samples were characterized using thermogravimetry, thermo-dilatometry, high-temperature X-ray diffraction (HTXRD) and temperature-programmed reduction techniques, with an objective to explore the role of substitution on their thermo-physical properties, which may have a direct bearing on their catalytic behavior. Even though the substituted compositions (x0.8) were of a single phase, their reduction occurred in two steps, a lower temperature step corresponding to Mn4+\u2192Mn3+/Mn2+ and another higher temperature one related to V5+\u2192V3+. The dilatometric measurements gave similar values of linear thermal expansion coefficient (\u03b1 1) at temperatures up to 600\u00b0C, both for LaVO4 and substituted samples. A different behavior was, however, observed at higher temperatures, whereas thermal contraction was observed in case of LaVO4 for measurements at temperatures above 700\u00b0C, the value of \u03b1 1 remained almost constant in case of the substituted samples. Furthermore, the HTXRD data revealed expansion in cell volume for all temperatures up to 950\u00b0C, irrespective of the substitution. These results therefore point to a higher degree of sintering in LaVO4 as compared to Mn-doped samples on heating at temperatures above 700\u00b0C. It is inferred that the resistance to sintering and the lowering of the reduction temperature are both responsible to the higher catalytic activity of the substituted samples and their compositional stability during the repeated cycles of reduction\u2013reoxidation, as reported earlier [Appl. Catal. A 205 (2001) 295].", "meta": {"doi": "10.1016/S0040-6031(03)00199-0"}, "_input_hash": -1288880440, "_task_hash": -2023556742, "tokens": [[{"text": "LaMnx", "start": 0, "end": 5, "id": 0, "annotation": null}, {"text": "V1\u2212x", "start": 6, "end": 10, "id": 1, "annotation": null}, {"text": "O4\u2212\u03b4", "start": 11, "end": 15, "id": 2, "annotation": null}, {"text": "(", "start": 16, "end": 17, "id": 3, "annotation": null}, {"text": "0\u2264x\u22641", "start": 18, "end": 23, "id": 4, "annotation": null}, {"text": ")", "start": 24, "end": 25, "id": 5, "annotation": null}, {"text": "samples", "start": 26, "end": 33, "id": 6, "annotation": null}, {"text": "were", "start": 34, "end": 38, "id": 7, "annotation": null}, {"text": "characterized", "start": 39, "end": 52, "id": 8, "annotation": null}, {"text": "using", "start": 53, "end": 58, "id": 9, "annotation": null}, {"text": "thermogravimetry", "start": 59, "end": 75, "id": 10, "annotation": null}, {"text": ",", "start": 76, "end": 77, "id": 11, "annotation": null}, {"text": "thermo", "start": 78, "end": 84, "id": 12, "annotation": null}, {"text": "-", "start": 85, "end": 86, "id": 13, "annotation": null}, {"text": "dilatometry", "start": 87, "end": 98, "id": 14, "annotation": null}, {"text": ",", "start": 99, "end": 100, "id": 15, "annotation": null}, {"text": "high", "start": 101, "end": 105, "id": 16, "annotation": null}, {"text": "-", "start": 106, "end": 107, "id": 17, "annotation": null}, {"text": "temperature", "start": 108, "end": 119, "id": 18, "annotation": null}, {"text": "X", "start": 120, "end": 121, "id": 19, "annotation": null}, {"text": "-", "start": 122, "end": 123, "id": 20, "annotation": null}, {"text": "ray", "start": 124, "end": 127, "id": 21, "annotation": null}, {"text": "diffraction", "start": 128, "end": 139, "id": 22, "annotation": null}, {"text": "(", "start": 140, "end": 141, "id": 23, "annotation": null}, {"text": "HTXRD", "start": 142, "end": 147, "id": 24, "annotation": null}, {"text": ")", "start": 148, "end": 149, "id": 25, "annotation": null}, {"text": "and", "start": 150, "end": 153, "id": 26, "annotation": null}, {"text": "temperature", "start": 154, "end": 165, "id": 27, "annotation": null}, {"text": "-", "start": 166, "end": 167, "id": 28, "annotation": null}, {"text": "programmed", "start": 168, "end": 178, "id": 29, "annotation": null}, {"text": "reduction", "start": 179, "end": 188, "id": 30, "annotation": null}, {"text": "techniques", "start": 189, "end": 199, "id": 31, "annotation": null}, {"text": ",", "start": 200, "end": 201, "id": 32, "annotation": null}, {"text": "with", "start": 202, "end": 206, "id": 33, "annotation": null}, {"text": "an", "start": 207, "end": 209, "id": 34, "annotation": null}, {"text": "objective", "start": 210, "end": 219, "id": 35, "annotation": null}, {"text": "to", "start": 220, "end": 222, "id": 36, "annotation": null}, {"text": "explore", "start": 223, "end": 230, "id": 37, "annotation": null}, {"text": "the", "start": 231, "end": 234, "id": 38, "annotation": null}, {"text": "role", "start": 235, "end": 239, "id": 39, "annotation": null}, {"text": "of", "start": 240, "end": 242, "id": 40, "annotation": null}, {"text": "substitution", "start": 243, "end": 255, "id": 41, "annotation": null}, {"text": "on", "start": 256, "end": 258, "id": 42, "annotation": null}, {"text": "their", "start": 259, "end": 264, "id": 43, "annotation": null}, {"text": "thermo", "start": 265, "end": 271, "id": 44, "annotation": null}, {"text": "-", "start": 272, "end": 273, "id": 45, "annotation": null}, {"text": "physical", "start": 274, "end": 282, "id": 46, "annotation": null}, {"text": "properties", "start": 283, "end": 293, "id": 47, "annotation": null}, {"text": ",", "start": 294, "end": 295, "id": 48, "annotation": null}, {"text": "which", "start": 296, "end": 301, "id": 49, "annotation": null}, {"text": "may", "start": 302, "end": 305, "id": 50, "annotation": null}, {"text": "have", "start": 306, "end": 310, "id": 51, "annotation": null}, {"text": "a", "start": 311, "end": 312, "id": 52, "annotation": null}, {"text": "direct", "start": 313, "end": 319, "id": 53, "annotation": null}, {"text": "bearing", "start": 320, "end": 327, "id": 54, "annotation": null}, {"text": "on", "start": 328, "end": 330, "id": 55, "annotation": null}, {"text": "their", "start": 331, "end": 336, "id": 56, "annotation": null}, {"text": "catalytic", "start": 337, "end": 346, "id": 57, "annotation": null}, {"text": "behavior", "start": 347, "end": 355, "id": 58, "annotation": null}, {"text": ".", "start": 356, "end": 357, "id": 59, "annotation": null}], [{"text": "Even", "start": 358, "end": 362, "id": 60, "annotation": null}, {"text": "though", "start": 363, "end": 369, "id": 61, "annotation": null}, {"text": "the", "start": 370, "end": 373, "id": 62, "annotation": null}, {"text": "substituted", "start": 374, "end": 385, "id": 63, "annotation": null}, {"text": "compositions", "start": 386, "end": 398, "id": 64, "annotation": null}, {"text": "(", "start": 399, "end": 400, "id": 65, "annotation": null}, {"text": "x0.8", "start": 401, "end": 405, "id": 66, "annotation": null}, {"text": ")", "start": 406, "end": 407, "id": 67, "annotation": null}, {"text": "were", "start": 408, "end": 412, "id": 68, "annotation": null}, {"text": "of", "start": 413, "end": 415, "id": 69, "annotation": null}, {"text": "a", "start": 416, "end": 417, "id": 70, "annotation": null}, {"text": "single", "start": 418, "end": 424, "id": 71, "annotation": null}, {"text": "phase", "start": 425, "end": 430, "id": 72, "annotation": null}, {"text": ",", "start": 431, "end": 432, "id": 73, "annotation": null}, {"text": "their", "start": 433, "end": 438, "id": 74, "annotation": null}, {"text": "reduction", "start": 439, "end": 448, "id": 75, "annotation": null}, {"text": "occurred", "start": 449, "end": 457, "id": 76, "annotation": null}, {"text": "in", "start": 458, "end": 460, "id": 77, "annotation": null}, {"text": "two", "start": 461, "end": 464, "id": 78, "annotation": null}, {"text": "steps", "start": 465, "end": 470, "id": 79, "annotation": null}, {"text": ",", "start": 471, "end": 472, "id": 80, "annotation": null}, {"text": "a", "start": 473, "end": 474, "id": 81, "annotation": null}, {"text": "lower", "start": 475, "end": 480, "id": 82, "annotation": null}, {"text": "temperature", "start": 481, "end": 492, "id": 83, "annotation": null}, {"text": "step", "start": 493, "end": 497, "id": 84, "annotation": null}, {"text": "corresponding", "start": 498, "end": 511, "id": 85, "annotation": null}, {"text": "to", "start": 512, "end": 514, "id": 86, "annotation": null}, {"text": "Mn4+\u2192Mn3+/Mn2", "start": 515, "end": 528, "id": 87, "annotation": null}, {"text": "+", "start": 529, "end": 530, "id": 88, "annotation": null}, {"text": "and", "start": 531, "end": 534, "id": 89, "annotation": null}, {"text": "another", "start": 535, "end": 542, "id": 90, "annotation": null}, {"text": "higher", "start": 543, "end": 549, "id": 91, "annotation": null}, {"text": "temperature", "start": 550, "end": 561, "id": 92, "annotation": null}, {"text": "one", "start": 562, "end": 565, "id": 93, "annotation": null}, {"text": "related", "start": 566, "end": 573, "id": 94, "annotation": null}, {"text": "to", "start": 574, "end": 576, "id": 95, "annotation": null}, {"text": "V5+\u2192V3", "start": 577, "end": 583, "id": 96, "annotation": null}, {"text": "+", "start": 584, "end": 585, "id": 97, "annotation": null}, {"text": ".", "start": 586, "end": 587, "id": 98, "annotation": null}], [{"text": "The", "start": 588, "end": 591, "id": 99, "annotation": null}, {"text": "dilatometric", "start": 592, "end": 604, "id": 100, "annotation": null}, {"text": "measurements", "start": 605, "end": 617, "id": 101, "annotation": null}, {"text": "gave", "start": 618, "end": 622, "id": 102, "annotation": null}, {"text": "similar", "start": 623, "end": 630, "id": 103, "annotation": null}, {"text": "values", "start": 631, "end": 637, "id": 104, "annotation": null}, {"text": "of", "start": 638, "end": 640, "id": 105, "annotation": null}, {"text": "linear", "start": 641, "end": 647, "id": 106, "annotation": null}, {"text": "thermal", "start": 648, "end": 655, "id": 107, "annotation": null}, {"text": "expansion", "start": 656, "end": 665, "id": 108, "annotation": null}, {"text": "coefficient", "start": 666, "end": 677, "id": 109, "annotation": null}, {"text": "(", "start": 678, "end": 679, "id": 110, "annotation": null}, {"text": "\u03b1", "start": 680, "end": 681, "id": 111, "annotation": null}, {"text": "1", "start": 682, "end": 683, "id": 112, "annotation": null}, {"text": ")", "start": 684, "end": 685, "id": 113, "annotation": null}, {"text": "at", "start": 686, "end": 688, "id": 114, "annotation": null}, {"text": "temperatures", "start": 689, "end": 701, "id": 115, "annotation": null}, {"text": "up", "start": 702, "end": 704, "id": 116, "annotation": null}, {"text": "to", "start": 705, "end": 707, "id": 117, "annotation": null}, {"text": "600", "start": 708, "end": 711, "id": 118, "annotation": null}, {"text": "\u00b0", "start": 712, "end": 713, "id": 119, "annotation": null}, {"text": "C", "start": 714, "end": 715, "id": 120, "annotation": null}, {"text": ",", "start": 716, "end": 717, "id": 121, "annotation": null}, {"text": "both", "start": 718, "end": 722, "id": 122, "annotation": null}, {"text": "for", "start": 723, "end": 726, "id": 123, "annotation": null}, {"text": "LaVO4", "start": 727, "end": 732, "id": 124, "annotation": null}, {"text": "and", "start": 733, "end": 736, "id": 125, "annotation": null}, {"text": "substituted", "start": 737, "end": 748, "id": 126, "annotation": null}, {"text": "samples", "start": 749, "end": 756, "id": 127, "annotation": null}, {"text": ".", "start": 757, "end": 758, "id": 128, "annotation": null}], [{"text": "A", "start": 759, "end": 760, "id": 129, "annotation": null}, {"text": "different", "start": 761, "end": 770, "id": 130, "annotation": null}, {"text": "behavior", "start": 771, "end": 779, "id": 131, "annotation": null}, {"text": "was", "start": 780, "end": 783, "id": 132, "annotation": null}, {"text": ",", "start": 784, "end": 785, "id": 133, "annotation": null}, {"text": "however", "start": 786, "end": 793, "id": 134, "annotation": null}, {"text": ",", "start": 794, "end": 795, "id": 135, "annotation": null}, {"text": "observed", "start": 796, "end": 804, "id": 136, "annotation": null}, {"text": "at", "start": 805, "end": 807, "id": 137, "annotation": null}, {"text": "higher", "start": 808, "end": 814, "id": 138, "annotation": null}, {"text": "temperatures", "start": 815, "end": 827, "id": 139, "annotation": null}, {"text": ",", "start": 828, "end": 829, "id": 140, "annotation": null}, {"text": "whereas", "start": 830, "end": 837, "id": 141, "annotation": null}, {"text": "thermal", "start": 838, "end": 845, "id": 142, "annotation": null}, {"text": "contraction", "start": 846, "end": 857, "id": 143, "annotation": null}, {"text": "was", "start": 858, "end": 861, "id": 144, "annotation": null}, {"text": "observed", "start": 862, "end": 870, "id": 145, "annotation": null}, {"text": "in", "start": 871, "end": 873, "id": 146, "annotation": null}, {"text": "case", "start": 874, "end": 878, "id": 147, "annotation": null}, {"text": "of", "start": 879, "end": 881, "id": 148, "annotation": null}, {"text": "LaVO4", "start": 882, "end": 887, "id": 149, "annotation": null}, {"text": "for", "start": 888, "end": 891, "id": 150, "annotation": null}, {"text": "measurements", "start": 892, "end": 904, "id": 151, "annotation": null}, {"text": "at", "start": 905, "end": 907, "id": 152, "annotation": null}, {"text": "temperatures", "start": 908, "end": 920, "id": 153, "annotation": null}, {"text": "above", "start": 921, "end": 926, "id": 154, "annotation": null}, {"text": "700", "start": 927, "end": 930, "id": 155, "annotation": null}, {"text": "\u00b0", "start": 931, "end": 932, "id": 156, "annotation": null}, {"text": "C", "start": 933, "end": 934, "id": 157, "annotation": null}, {"text": ",", "start": 935, "end": 936, "id": 158, "annotation": null}, {"text": "the", "start": 937, "end": 940, "id": 159, "annotation": null}, {"text": "value", "start": 941, "end": 946, "id": 160, "annotation": null}, {"text": "of", "start": 947, "end": 949, "id": 161, "annotation": null}, {"text": "\u03b1", "start": 950, "end": 951, "id": 162, "annotation": null}, {"text": "1", "start": 952, "end": 953, "id": 163, "annotation": null}, {"text": "remained", "start": 954, "end": 962, "id": 164, "annotation": null}, {"text": "almost", "start": 963, "end": 969, "id": 165, "annotation": null}, {"text": "constant", "start": 970, "end": 978, "id": 166, "annotation": null}, {"text": "in", "start": 979, "end": 981, "id": 167, "annotation": null}, {"text": "case", "start": 982, "end": 986, "id": 168, "annotation": null}, {"text": "of", "start": 987, "end": 989, "id": 169, "annotation": null}, {"text": "the", "start": 990, "end": 993, "id": 170, "annotation": null}, {"text": "substituted", "start": 994, "end": 1005, "id": 171, "annotation": null}, {"text": "samples", "start": 1006, "end": 1013, "id": 172, "annotation": null}, {"text": ".", "start": 1014, "end": 1015, "id": 173, "annotation": null}], [{"text": "Furthermore", "start": 1016, "end": 1027, "id": 174, "annotation": null}, {"text": ",", "start": 1028, "end": 1029, "id": 175, "annotation": null}, {"text": "the", "start": 1030, "end": 1033, "id": 176, "annotation": null}, {"text": "HTXRD", "start": 1034, "end": 1039, "id": 177, "annotation": null}, {"text": "data", "start": 1040, "end": 1044, "id": 178, "annotation": null}, {"text": "revealed", "start": 1045, "end": 1053, "id": 179, "annotation": null}, {"text": "expansion", "start": 1054, "end": 1063, "id": 180, "annotation": null}, {"text": "in", "start": 1064, "end": 1066, "id": 181, "annotation": null}, {"text": "cell", "start": 1067, "end": 1071, "id": 182, "annotation": null}, {"text": "volume", "start": 1072, "end": 1078, "id": 183, "annotation": null}, {"text": "for", "start": 1079, "end": 1082, "id": 184, "annotation": null}, {"text": "all", "start": 1083, "end": 1086, "id": 185, "annotation": null}, {"text": "temperatures", "start": 1087, "end": 1099, "id": 186, "annotation": null}, {"text": "up", "start": 1100, "end": 1102, "id": 187, "annotation": null}, {"text": "to", "start": 1103, "end": 1105, "id": 188, "annotation": null}, {"text": "950", "start": 1106, "end": 1109, "id": 189, "annotation": null}, {"text": "\u00b0", "start": 1110, "end": 1111, "id": 190, "annotation": null}, {"text": "C", "start": 1112, "end": 1113, "id": 191, "annotation": null}, {"text": ",", "start": 1114, "end": 1115, "id": 192, "annotation": null}, {"text": "irrespective", "start": 1116, "end": 1128, "id": 193, "annotation": null}, {"text": "of", "start": 1129, "end": 1131, "id": 194, "annotation": null}, {"text": "the", "start": 1132, "end": 1135, "id": 195, "annotation": null}, {"text": "substitution", "start": 1136, "end": 1148, "id": 196, "annotation": null}, {"text": ".", "start": 1149, "end": 1150, "id": 197, "annotation": null}], [{"text": "These", "start": 1151, "end": 1156, "id": 198, "annotation": null}, {"text": "results", "start": 1157, "end": 1164, "id": 199, "annotation": null}, {"text": "therefore", "start": 1165, "end": 1174, "id": 200, "annotation": null}, {"text": "point", "start": 1175, "end": 1180, "id": 201, "annotation": null}, {"text": "to", "start": 1181, "end": 1183, "id": 202, "annotation": null}, {"text": "a", "start": 1184, "end": 1185, "id": 203, "annotation": null}, {"text": "higher", "start": 1186, "end": 1192, "id": 204, "annotation": null}, {"text": "degree", "start": 1193, "end": 1199, "id": 205, "annotation": null}, {"text": "of", "start": 1200, "end": 1202, "id": 206, "annotation": null}, {"text": "sintering", "start": 1203, "end": 1212, "id": 207, "annotation": null}, {"text": "in", "start": 1213, "end": 1215, "id": 208, "annotation": null}, {"text": "LaVO4", "start": 1216, "end": 1221, "id": 209, "annotation": null}, {"text": "as", "start": 1222, "end": 1224, "id": 210, "annotation": null}, {"text": "compared", "start": 1225, "end": 1233, "id": 211, "annotation": null}, {"text": "to", "start": 1234, "end": 1236, "id": 212, "annotation": null}, {"text": "Mn", "start": 1237, "end": 1239, "id": 213, "annotation": "DOPANT"}, {"text": "-", "start": 1240, "end": 1241, "id": 214, "annotation": null}, {"text": "doped", "start": 1242, "end": 1247, "id": 215, "annotation": null}, {"text": "samples", "start": 1248, "end": 1255, "id": 216, "annotation": "BASEMAT"}, {"text": "on", "start": 1256, "end": 1258, "id": 217, "annotation": null}, {"text": "heating", "start": 1259, "end": 1266, "id": 218, "annotation": null}, {"text": "at", "start": 1267, "end": 1269, "id": 219, "annotation": null}, {"text": "temperatures", "start": 1270, "end": 1282, "id": 220, "annotation": null}, {"text": "above", "start": 1283, "end": 1288, "id": 221, "annotation": null}, {"text": "700", "start": 1289, "end": 1292, "id": 222, "annotation": null}, {"text": "\u00b0", "start": 1293, "end": 1294, "id": 223, "annotation": null}, {"text": "C", "start": 1295, "end": 1296, "id": 224, "annotation": null}, {"text": ".", "start": 1297, "end": 1298, "id": 225, "annotation": null}], [{"text": "It", "start": 1299, "end": 1301, "id": 226, "annotation": null}, {"text": "is", "start": 1302, "end": 1304, "id": 227, "annotation": null}, {"text": "inferred", "start": 1305, "end": 1313, "id": 228, "annotation": null}, {"text": "that", "start": 1314, "end": 1318, "id": 229, "annotation": null}, {"text": "the", "start": 1319, "end": 1322, "id": 230, "annotation": null}, {"text": "resistance", "start": 1323, "end": 1333, "id": 231, "annotation": null}, {"text": "to", "start": 1334, "end": 1336, "id": 232, "annotation": null}, {"text": "sintering", "start": 1337, "end": 1346, "id": 233, "annotation": null}, {"text": "and", "start": 1347, "end": 1350, "id": 234, "annotation": null}, {"text": "the", "start": 1351, "end": 1354, "id": 235, "annotation": null}, {"text": "lowering", "start": 1355, "end": 1363, "id": 236, "annotation": null}, {"text": "of", "start": 1364, "end": 1366, "id": 237, "annotation": null}, {"text": "the", "start": 1367, "end": 1370, "id": 238, "annotation": null}, {"text": "reduction", "start": 1371, "end": 1380, "id": 239, "annotation": null}, {"text": "temperature", "start": 1381, "end": 1392, "id": 240, "annotation": null}, {"text": "are", "start": 1393, "end": 1396, "id": 241, "annotation": null}, {"text": "both", "start": 1397, "end": 1401, "id": 242, "annotation": null}, {"text": "responsible", "start": 1402, "end": 1413, "id": 243, "annotation": null}, {"text": "to", "start": 1414, "end": 1416, "id": 244, "annotation": null}, {"text": "the", "start": 1417, "end": 1420, "id": 245, "annotation": null}, {"text": "higher", "start": 1421, "end": 1427, "id": 246, "annotation": null}, {"text": "catalytic", "start": 1428, "end": 1437, "id": 247, "annotation": null}, {"text": "activity", "start": 1438, "end": 1446, "id": 248, "annotation": null}, {"text": "of", "start": 1447, "end": 1449, "id": 249, "annotation": null}, {"text": "the", "start": 1450, "end": 1453, "id": 250, "annotation": null}, {"text": "substituted", "start": 1454, "end": 1465, "id": 251, "annotation": null}, {"text": "samples", "start": 1466, "end": 1473, "id": 252, "annotation": null}, {"text": "and", "start": 1474, "end": 1477, "id": 253, "annotation": null}, {"text": "their", "start": 1478, "end": 1483, "id": 254, "annotation": null}, {"text": "compositional", "start": 1484, "end": 1497, "id": 255, "annotation": null}, {"text": "stability", "start": 1498, "end": 1507, "id": 256, "annotation": null}, {"text": "during", "start": 1508, "end": 1514, "id": 257, "annotation": null}, {"text": "the", "start": 1515, "end": 1518, "id": 258, "annotation": null}, {"text": "repeated", "start": 1519, "end": 1527, "id": 259, "annotation": null}, {"text": "cycles", "start": 1528, "end": 1534, "id": 260, "annotation": null}, {"text": "of", "start": 1535, "end": 1537, "id": 261, "annotation": null}, {"text": "reduction", "start": 1538, "end": 1547, "id": 262, "annotation": null}, {"text": "\u2013", "start": 1548, "end": 1549, "id": 263, "annotation": null}, {"text": "reoxidation", "start": 1550, "end": 1561, "id": 264, "annotation": null}, {"text": ",", "start": 1562, "end": 1563, "id": 265, "annotation": null}, {"text": "as", "start": 1564, "end": 1566, "id": 266, "annotation": null}, {"text": "reported", "start": 1567, "end": 1575, "id": 267, "annotation": null}, {"text": "earlier", "start": 1576, "end": 1583, "id": 268, "annotation": null}, {"text": "[", "start": 1584, "end": 1585, "id": 269, "annotation": null}, {"text": "Appl", "start": 1586, "end": 1590, "id": 270, "annotation": null}, {"text": ".", "start": 1591, "end": 1592, "id": 271, "annotation": null}], [{"text": "Catal", "start": 1593, "end": 1598, "id": 272, "annotation": null}, {"text": ".", "start": 1599, "end": 1600, "id": 273, "annotation": null}], [{"text": "A", "start": 1601, "end": 1602, "id": 274, "annotation": null}, {"text": "205", "start": 1603, "end": 1606, "id": 275, "annotation": null}, {"text": "(", "start": 1607, "end": 1608, "id": 276, "annotation": null}, {"text": "2001", "start": 1609, "end": 1613, "id": 277, "annotation": null}, {"text": ")", "start": 1614, "end": 1615, "id": 278, "annotation": null}, {"text": "295", "start": 1616, "end": 1619, "id": 279, "annotation": null}, {"text": "]", "start": 1620, "end": 1621, "id": 280, "annotation": null}, {"text": ".", "start": 1622, "end": 1623, "id": 281, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "X-ray diffraction (XRD), electrical resistivity (\u03c1 ) and thermal measurements of thermopower( S ) , thermal conductivity (\u03ba ), and specific heat(C P)of Pr0.7 Sr0.3 Mn1\u2212x Nbx O3( 0 \u2264 x \u2264 0.05 )manganite samples are reported here. XRD and electrical resistivity measurements have been carried out up to 5% Nb-doping whereas thermal measurements are limited up to 3% Nb-doping as higher doped sample exhibits a large value of electrical resistivity. With Nb-doping the lattice volume increases, which indicates the occupancy of Mn+4 sites by Nb+5 and eventually results in generating more Mn+3 Jahn Teller active (JT) ions. Nb doping also reflects its repercussion in the \u03c1 (T) behavior where the insulator-metal transition temperature of the pristine Pr0.7Sr0.3MnO3 shifts to lower temperatures with increasing doping content. Based on the comparison of electrical resistivity and thermopower data, we establish that the strength of electron\u2013phonon coupling increases with increasing Nb content. Thermal conductivity behavior \u03ba (T) has been viewed in terms of the scattering of phonons by spin fluctuations and such a scenario has been corroborated with the specific heat data.", "meta": {"doi": "10.1016/j.ssc.2009.11.041"}, "_input_hash": -1721899067, "_task_hash": 941851809, "tokens": [[{"text": "X", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "-", "start": 2, "end": 3, "id": 1, "annotation": null}, {"text": "ray", "start": 4, "end": 7, "id": 2, "annotation": null}, {"text": "diffraction", "start": 8, "end": 19, "id": 3, "annotation": null}, {"text": "(", "start": 20, "end": 21, "id": 4, "annotation": null}, {"text": "XRD", "start": 22, "end": 25, "id": 5, "annotation": null}, {"text": ")", "start": 26, "end": 27, "id": 6, "annotation": null}, {"text": ",", "start": 28, "end": 29, "id": 7, "annotation": null}, {"text": "electrical", "start": 30, "end": 40, "id": 8, "annotation": null}, {"text": "resistivity", "start": 41, "end": 52, "id": 9, "annotation": null}, {"text": "(", "start": 53, "end": 54, "id": 10, "annotation": null}, {"text": "\u03c1", "start": 55, "end": 56, "id": 11, "annotation": null}, {"text": ")", "start": 57, "end": 58, "id": 12, "annotation": null}, {"text": "and", "start": 59, "end": 62, "id": 13, "annotation": null}, {"text": "thermal", "start": 63, "end": 70, "id": 14, "annotation": null}, {"text": "measurements", "start": 71, "end": 83, "id": 15, "annotation": null}, {"text": "of", "start": 84, "end": 86, "id": 16, "annotation": null}, {"text": "thermopower", "start": 87, "end": 98, "id": 17, "annotation": null}, {"text": "(", "start": 99, "end": 100, "id": 18, "annotation": null}, {"text": "S", "start": 101, "end": 102, "id": 19, "annotation": null}, {"text": ")", "start": 103, "end": 104, "id": 20, "annotation": null}, {"text": ",", "start": 105, "end": 106, "id": 21, "annotation": null}, {"text": "thermal", "start": 107, "end": 114, "id": 22, "annotation": null}, {"text": "conductivity", "start": 115, "end": 127, "id": 23, "annotation": null}, {"text": "(", "start": 128, "end": 129, "id": 24, "annotation": null}, {"text": "\u03ba", "start": 130, "end": 131, "id": 25, "annotation": null}, {"text": ")", "start": 132, "end": 133, "id": 26, "annotation": null}, {"text": ",", "start": 134, "end": 135, "id": 27, "annotation": null}, {"text": "and", "start": 136, "end": 139, "id": 28, "annotation": null}, {"text": "specific", "start": 140, "end": 148, "id": 29, "annotation": null}, {"text": "heat(C", "start": 149, "end": 155, "id": 30, "annotation": null}, {"text": "P)of", "start": 156, "end": 160, "id": 31, "annotation": null}, {"text": "Pr0.7", "start": 161, "end": 166, "id": 32, "annotation": null}, {"text": "Sr0.3", "start": 167, "end": 172, "id": 33, "annotation": null}, {"text": "Mn1\u2212x", "start": 173, "end": 178, "id": 34, "annotation": null}, {"text": "Nbx", "start": 179, "end": 182, "id": 35, "annotation": null}, {"text": "O3", "start": 183, "end": 185, "id": 36, "annotation": null}, {"text": "(", "start": 186, "end": 187, "id": 37, "annotation": null}, {"text": "0", "start": 188, "end": 189, "id": 38, "annotation": null}, {"text": "\u2264", "start": 190, "end": 191, "id": 39, "annotation": null}, {"text": "x", "start": 192, "end": 193, "id": 40, "annotation": null}, {"text": "\u2264", "start": 194, "end": 195, "id": 41, "annotation": null}, {"text": "0.05", "start": 196, "end": 200, "id": 42, "annotation": null}, {"text": ")", "start": 201, "end": 202, "id": 43, "annotation": null}, {"text": "manganite", "start": 203, "end": 212, "id": 44, "annotation": null}, {"text": "samples", "start": 213, "end": 220, "id": 45, "annotation": null}, {"text": "are", "start": 221, "end": 224, "id": 46, "annotation": null}, {"text": "reported", "start": 225, "end": 233, "id": 47, "annotation": null}, {"text": "here", "start": 234, "end": 238, "id": 48, "annotation": null}, {"text": ".", "start": 239, "end": 240, "id": 49, "annotation": null}], [{"text": "XRD", "start": 241, "end": 244, "id": 50, "annotation": null}, {"text": "and", "start": 245, "end": 248, "id": 51, "annotation": null}, {"text": "electrical", "start": 249, "end": 259, "id": 52, "annotation": null}, {"text": "resistivity", "start": 260, "end": 271, "id": 53, "annotation": null}, {"text": "measurements", "start": 272, "end": 284, "id": 54, "annotation": null}, {"text": "have", "start": 285, "end": 289, "id": 55, "annotation": null}, {"text": "been", "start": 290, "end": 294, "id": 56, "annotation": null}, {"text": "carried", "start": 295, "end": 302, "id": 57, "annotation": null}, {"text": "out", "start": 303, "end": 306, "id": 58, "annotation": null}, {"text": "up", "start": 307, "end": 309, "id": 59, "annotation": null}, {"text": "to", "start": 310, "end": 312, "id": 60, "annotation": null}, {"text": "5", "start": 313, "end": 314, "id": 61, "annotation": "DOPMODQ"}, {"text": "%", "start": 315, "end": 316, "id": 62, "annotation": "DOPMODQ"}, {"text": "Nb", "start": 317, "end": 319, "id": 63, "annotation": "DOPANT"}, {"text": "-", "start": 320, "end": 321, "id": 64, "annotation": null}, {"text": "doping", "start": 322, "end": 328, "id": 65, "annotation": null}, {"text": "whereas", "start": 329, "end": 336, "id": 66, "annotation": null}, {"text": "thermal", "start": 337, "end": 344, "id": 67, "annotation": null}, {"text": "measurements", "start": 345, "end": 357, "id": 68, "annotation": null}, {"text": "are", "start": 358, "end": 361, "id": 69, "annotation": null}, {"text": "limited", "start": 362, "end": 369, "id": 70, "annotation": null}, {"text": "up", "start": 370, "end": 372, "id": 71, "annotation": null}, {"text": "to", "start": 373, "end": 375, "id": 72, "annotation": null}, {"text": "3", "start": 376, "end": 377, "id": 73, "annotation": "DOPMODQ"}, {"text": "%", "start": 378, "end": 379, "id": 74, "annotation": "DOPMODQ"}, {"text": "Nb", "start": 380, "end": 382, "id": 75, "annotation": "DOPANT"}, {"text": "-", "start": 383, "end": 384, "id": 76, "annotation": null}, {"text": "doping", "start": 385, "end": 391, "id": 77, "annotation": null}, {"text": "as", "start": 392, "end": 394, "id": 78, "annotation": null}, {"text": "higher", "start": 395, "end": 401, "id": 79, "annotation": null}, {"text": "doped", "start": 402, "end": 407, "id": 80, "annotation": null}, {"text": "sample", "start": 408, "end": 414, "id": 81, "annotation": null}, {"text": "exhibits", "start": 415, "end": 423, "id": 82, "annotation": null}, {"text": "a", "start": 424, "end": 425, "id": 83, "annotation": null}, {"text": "large", "start": 426, "end": 431, "id": 84, "annotation": null}, {"text": "value", "start": 432, "end": 437, "id": 85, "annotation": null}, {"text": "of", "start": 438, "end": 440, "id": 86, "annotation": null}, {"text": "electrical", "start": 441, "end": 451, "id": 87, "annotation": null}, {"text": "resistivity", "start": 452, "end": 463, "id": 88, "annotation": null}, {"text": ".", "start": 464, "end": 465, "id": 89, "annotation": null}], [{"text": "With", "start": 466, "end": 470, "id": 90, "annotation": null}, {"text": "Nb", "start": 471, "end": 473, "id": 91, "annotation": "DOPANT"}, {"text": "-", "start": 474, "end": 475, "id": 92, "annotation": null}, {"text": "doping", "start": 476, "end": 482, "id": 93, "annotation": null}, {"text": "the", "start": 483, "end": 486, "id": 94, "annotation": null}, {"text": "lattice", "start": 487, "end": 494, "id": 95, "annotation": null}, {"text": "volume", "start": 495, "end": 501, "id": 96, "annotation": null}, {"text": "increases", "start": 502, "end": 511, "id": 97, "annotation": null}, {"text": ",", "start": 512, "end": 513, "id": 98, "annotation": null}, {"text": "which", "start": 514, "end": 519, "id": 99, "annotation": null}, {"text": "indicates", "start": 520, "end": 529, "id": 100, "annotation": null}, {"text": "the", "start": 530, "end": 533, "id": 101, "annotation": null}, {"text": "occupancy", "start": 534, "end": 543, "id": 102, "annotation": null}, {"text": "of", "start": 544, "end": 546, "id": 103, "annotation": null}, {"text": "Mn+4", "start": 547, "end": 551, "id": 104, "annotation": null}, {"text": "sites", "start": 552, "end": 557, "id": 105, "annotation": null}, {"text": "by", "start": 558, "end": 560, "id": 106, "annotation": null}, {"text": "Nb+5", "start": 561, "end": 565, "id": 107, "annotation": null}, {"text": "and", "start": 566, "end": 569, "id": 108, "annotation": null}, {"text": "eventually", "start": 570, "end": 580, "id": 109, "annotation": null}, {"text": "results", "start": 581, "end": 588, "id": 110, "annotation": null}, {"text": "in", "start": 589, "end": 591, "id": 111, "annotation": null}, {"text": "generating", "start": 592, "end": 602, "id": 112, "annotation": null}, {"text": "more", "start": 603, "end": 607, "id": 113, "annotation": null}, {"text": "Mn+3", "start": 608, "end": 612, "id": 114, "annotation": null}, {"text": "Jahn", "start": 613, "end": 617, "id": 115, "annotation": null}, {"text": "Teller", "start": 618, "end": 624, "id": 116, "annotation": null}, {"text": "active", "start": 625, "end": 631, "id": 117, "annotation": null}, {"text": "(", "start": 632, "end": 633, "id": 118, "annotation": null}, {"text": "JT", "start": 634, "end": 636, "id": 119, "annotation": null}, {"text": ")", "start": 637, "end": 638, "id": 120, "annotation": null}, {"text": "ions", "start": 639, "end": 643, "id": 121, "annotation": null}, {"text": ".", "start": 644, "end": 645, "id": 122, "annotation": null}], [{"text": "Nb", "start": 646, "end": 648, "id": 123, "annotation": "DOPANT"}, {"text": "doping", "start": 649, "end": 655, "id": 124, "annotation": null}, {"text": "also", "start": 656, "end": 660, "id": 125, "annotation": null}, {"text": "reflects", "start": 661, "end": 669, "id": 126, "annotation": null}, {"text": "its", "start": 670, "end": 673, "id": 127, "annotation": null}, {"text": "repercussion", "start": 674, "end": 686, "id": 128, "annotation": null}, {"text": "in", "start": 687, "end": 689, "id": 129, "annotation": null}, {"text": "the", "start": 690, "end": 693, "id": 130, "annotation": null}, {"text": "\u03c1", "start": 694, "end": 695, "id": 131, "annotation": null}, {"text": "(", "start": 696, "end": 697, "id": 132, "annotation": null}, {"text": "T", "start": 698, "end": 699, "id": 133, "annotation": null}, {"text": ")", "start": 700, "end": 701, "id": 134, "annotation": null}, {"text": "behavior", "start": 702, "end": 710, "id": 135, "annotation": null}, {"text": "where", "start": 711, "end": 716, "id": 136, "annotation": null}, {"text": "the", "start": 717, "end": 720, "id": 137, "annotation": null}, {"text": "insulator", "start": 721, "end": 730, "id": 138, "annotation": null}, {"text": "-", "start": 731, "end": 732, "id": 139, "annotation": null}, {"text": "metal", "start": 733, "end": 738, "id": 140, "annotation": null}, {"text": "transition", "start": 739, "end": 749, "id": 141, "annotation": null}, {"text": "temperature", "start": 750, "end": 761, "id": 142, "annotation": null}, {"text": "of", "start": 762, "end": 764, "id": 143, "annotation": null}, {"text": "the", "start": 765, "end": 768, "id": 144, "annotation": null}, {"text": "pristine", "start": 769, "end": 777, "id": 145, "annotation": null}, {"text": "Pr0.7Sr0.3MnO3", "start": 778, "end": 792, "id": 146, "annotation": "BASEMAT"}, {"text": "shifts", "start": 793, "end": 799, "id": 147, "annotation": null}, {"text": "to", "start": 800, "end": 802, "id": 148, "annotation": null}, {"text": "lower", "start": 803, "end": 808, "id": 149, "annotation": null}, {"text": "temperatures", "start": 809, "end": 821, "id": 150, "annotation": null}, {"text": "with", "start": 822, "end": 826, "id": 151, "annotation": null}, {"text": "increasing", "start": 827, "end": 837, "id": 152, "annotation": null}, {"text": "doping", "start": 838, "end": 844, "id": 153, "annotation": null}, {"text": "content", "start": 845, "end": 852, "id": 154, "annotation": null}, {"text": ".", "start": 853, "end": 854, "id": 155, "annotation": null}], [{"text": "Based", "start": 855, "end": 860, "id": 156, "annotation": null}, {"text": "on", "start": 861, "end": 863, "id": 157, "annotation": null}, {"text": "the", "start": 864, "end": 867, "id": 158, "annotation": null}, {"text": "comparison", "start": 868, "end": 878, "id": 159, "annotation": null}, {"text": "of", "start": 879, "end": 881, "id": 160, "annotation": null}, {"text": "electrical", "start": 882, "end": 892, "id": 161, "annotation": null}, {"text": "resistivity", "start": 893, "end": 904, "id": 162, "annotation": null}, {"text": "and", "start": 905, "end": 908, "id": 163, "annotation": null}, {"text": "thermopower", "start": 909, "end": 920, "id": 164, "annotation": null}, {"text": "data", "start": 921, "end": 925, "id": 165, "annotation": null}, {"text": ",", "start": 926, "end": 927, "id": 166, "annotation": null}, {"text": "we", "start": 928, "end": 930, "id": 167, "annotation": null}, {"text": "establish", "start": 931, "end": 940, "id": 168, "annotation": null}, {"text": "that", "start": 941, "end": 945, "id": 169, "annotation": null}, {"text": "the", "start": 946, "end": 949, "id": 170, "annotation": null}, {"text": "strength", "start": 950, "end": 958, "id": 171, "annotation": null}, {"text": "of", "start": 959, "end": 961, "id": 172, "annotation": null}, {"text": "electron", "start": 962, "end": 970, "id": 173, "annotation": null}, {"text": "\u2013", "start": 971, "end": 972, "id": 174, "annotation": null}, {"text": "phonon", "start": 973, "end": 979, "id": 175, "annotation": null}, {"text": "coupling", "start": 980, "end": 988, "id": 176, "annotation": null}, {"text": "increases", "start": 989, "end": 998, "id": 177, "annotation": null}, {"text": "with", "start": 999, "end": 1003, "id": 178, "annotation": null}, {"text": "increasing", "start": 1004, "end": 1014, "id": 179, "annotation": null}, {"text": "Nb", "start": 1015, "end": 1017, "id": 180, "annotation": null}, {"text": "content", "start": 1018, "end": 1025, "id": 181, "annotation": null}, {"text": ".", "start": 1026, "end": 1027, "id": 182, "annotation": null}], [{"text": "Thermal", "start": 1028, "end": 1035, "id": 183, "annotation": null}, {"text": "conductivity", "start": 1036, "end": 1048, "id": 184, "annotation": null}, {"text": "behavior", "start": 1049, "end": 1057, "id": 185, "annotation": null}, {"text": "\u03ba", "start": 1058, "end": 1059, "id": 186, "annotation": null}, {"text": "(", "start": 1060, "end": 1061, "id": 187, "annotation": null}, {"text": "T", "start": 1062, "end": 1063, "id": 188, "annotation": null}, {"text": ")", "start": 1064, "end": 1065, "id": 189, "annotation": null}, {"text": "has", "start": 1066, "end": 1069, "id": 190, "annotation": null}, {"text": "been", "start": 1070, "end": 1074, "id": 191, "annotation": null}, {"text": "viewed", "start": 1075, "end": 1081, "id": 192, "annotation": null}, {"text": "in", "start": 1082, "end": 1084, "id": 193, "annotation": null}, {"text": "terms", "start": 1085, "end": 1090, "id": 194, "annotation": null}, {"text": "of", "start": 1091, "end": 1093, "id": 195, "annotation": null}, {"text": "the", "start": 1094, "end": 1097, "id": 196, "annotation": null}, {"text": "scattering", "start": 1098, "end": 1108, "id": 197, "annotation": null}, {"text": "of", "start": 1109, "end": 1111, "id": 198, "annotation": null}, {"text": "phonons", "start": 1112, "end": 1119, "id": 199, "annotation": null}, {"text": "by", "start": 1120, "end": 1122, "id": 200, "annotation": null}, {"text": "spin", "start": 1123, "end": 1127, "id": 201, "annotation": null}, {"text": "fluctuations", "start": 1128, "end": 1140, "id": 202, "annotation": null}, {"text": "and", "start": 1141, "end": 1144, "id": 203, "annotation": null}, {"text": "such", "start": 1145, "end": 1149, "id": 204, "annotation": null}, {"text": "a", "start": 1150, "end": 1151, "id": 205, "annotation": null}, {"text": "scenario", "start": 1152, "end": 1160, "id": 206, "annotation": null}, {"text": "has", "start": 1161, "end": 1164, "id": 207, "annotation": null}, {"text": "been", "start": 1165, "end": 1169, "id": 208, "annotation": null}, {"text": "corroborated", "start": 1170, "end": 1182, "id": 209, "annotation": null}, {"text": "with", "start": 1183, "end": 1187, "id": 210, "annotation": null}, {"text": "the", "start": 1188, "end": 1191, "id": 211, "annotation": null}, {"text": "specific", "start": 1192, "end": 1200, "id": 212, "annotation": null}, {"text": "heat", "start": 1201, "end": 1205, "id": 213, "annotation": null}, {"text": "data", "start": 1206, "end": 1210, "id": 214, "annotation": null}, {"text": ".", "start": 1211, "end": 1212, "id": 215, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Single crystal Electron Paramagnetic Resonance studies on Mn(II) doped zinc sodium sulphate hexahydrate are carried out at room temperature. The angular variation spectra of the crystal in the three orthogonal planes show that the paramagnetic impurity Mn(II) has entered the host lattice interstitially. The spin Hamiltonian parameters calculated are: gxx=1.899, gyy=1.944, gzz=2.024; Axx=9.09mT, Ayy=9.01mT, Azz=9.45mT and Dxx=15.25mT, Dyy=4.54mT, Dzz=\u221219.79mT. The probable location for the interstitial site has been identified from the position of various atoms in the lattice. The variable temperature study for polycrystalline sample has been carried out, which indicates no phase transition. The percentage covalency of Mn\u2013O bond has been estimated to be 8.5%.", "meta": {"doi": "10.1016/S0022-3697(03)00269-5"}, "_input_hash": 1725079904, "_task_hash": -1453477080, "tokens": [[{"text": "Single", "start": 0, "end": 6, "id": 0, "annotation": null}, {"text": "crystal", "start": 7, "end": 14, "id": 1, "annotation": null}, {"text": "Electron", "start": 15, "end": 23, "id": 2, "annotation": null}, {"text": "Paramagnetic", "start": 24, "end": 36, "id": 3, "annotation": null}, {"text": "Resonance", "start": 37, "end": 46, "id": 4, "annotation": null}, {"text": "studies", "start": 47, "end": 54, "id": 5, "annotation": null}, {"text": "on", "start": 55, "end": 57, "id": 6, "annotation": null}, {"text": "Mn(II", "start": 58, "end": 63, "id": 7, "annotation": "DOPANT"}, {"text": ")", "start": 64, "end": 65, "id": 8, "annotation": "DOPANT"}, {"text": "doped", "start": 66, "end": 71, "id": 9, "annotation": null}, {"text": "zinc", "start": 72, "end": 76, "id": 10, "annotation": "BASEMAT"}, {"text": "sodium", "start": 77, "end": 83, "id": 11, "annotation": null}, {"text": "sulphate", "start": 84, "end": 92, "id": 12, "annotation": null}, {"text": "hexahydrate", "start": 93, "end": 104, "id": 13, "annotation": "BASEMAT"}, {"text": "are", "start": 105, "end": 108, "id": 14, "annotation": null}, {"text": "carried", "start": 109, "end": 116, "id": 15, "annotation": null}, {"text": "out", "start": 117, "end": 120, "id": 16, "annotation": null}, {"text": "at", "start": 121, "end": 123, "id": 17, "annotation": null}, {"text": "room", "start": 124, "end": 128, "id": 18, "annotation": null}, {"text": "temperature", "start": 129, "end": 140, "id": 19, "annotation": null}, {"text": ".", "start": 141, "end": 142, "id": 20, "annotation": null}], [{"text": "The", "start": 143, "end": 146, "id": 21, "annotation": null}, {"text": "angular", "start": 147, "end": 154, "id": 22, "annotation": null}, {"text": "variation", "start": 155, "end": 164, "id": 23, "annotation": null}, {"text": "spectra", "start": 165, "end": 172, "id": 24, "annotation": null}, {"text": "of", "start": 173, "end": 175, "id": 25, "annotation": null}, {"text": "the", "start": 176, "end": 179, "id": 26, "annotation": null}, {"text": "crystal", "start": 180, "end": 187, "id": 27, "annotation": null}, {"text": "in", "start": 188, "end": 190, "id": 28, "annotation": null}, {"text": "the", "start": 191, "end": 194, "id": 29, "annotation": null}, {"text": "three", "start": 195, "end": 200, "id": 30, "annotation": null}, {"text": "orthogonal", "start": 201, "end": 211, "id": 31, "annotation": null}, {"text": "planes", "start": 212, "end": 218, "id": 32, "annotation": null}, {"text": "show", "start": 219, "end": 223, "id": 33, "annotation": null}, {"text": "that", "start": 224, "end": 228, "id": 34, "annotation": null}, {"text": "the", "start": 229, "end": 232, "id": 35, "annotation": null}, {"text": "paramagnetic", "start": 233, "end": 245, "id": 36, "annotation": null}, {"text": "impurity", "start": 246, "end": 254, "id": 37, "annotation": null}, {"text": "Mn(II", "start": 255, "end": 260, "id": 38, "annotation": null}, {"text": ")", "start": 261, "end": 262, "id": 39, "annotation": null}, {"text": "has", "start": 263, "end": 266, "id": 40, "annotation": null}, {"text": "entered", "start": 267, "end": 274, "id": 41, "annotation": null}, {"text": "the", "start": 275, "end": 278, "id": 42, "annotation": null}, {"text": "host", "start": 279, "end": 283, "id": 43, "annotation": null}, {"text": "lattice", "start": 284, "end": 291, "id": 44, "annotation": null}, {"text": "interstitially", "start": 292, "end": 306, "id": 45, "annotation": null}, {"text": ".", "start": 307, "end": 308, "id": 46, "annotation": null}], [{"text": "The", "start": 309, "end": 312, "id": 47, "annotation": null}, {"text": "spin", "start": 313, "end": 317, "id": 48, "annotation": null}, {"text": "Hamiltonian", "start": 318, "end": 329, "id": 49, "annotation": null}, {"text": "parameters", "start": 330, "end": 340, "id": 50, "annotation": null}, {"text": "calculated", "start": 341, "end": 351, "id": 51, "annotation": null}, {"text": "are", "start": 352, "end": 355, "id": 52, "annotation": null}, {"text": ":", "start": 356, "end": 357, "id": 53, "annotation": null}, {"text": "gxx=1.899", "start": 358, "end": 367, "id": 54, "annotation": null}, {"text": ",", "start": 368, "end": 369, "id": 55, "annotation": null}, {"text": "gyy=1.944", "start": 370, "end": 379, "id": 56, "annotation": null}, {"text": ",", "start": 380, "end": 381, "id": 57, "annotation": null}, {"text": "gzz=2.024", "start": 382, "end": 391, "id": 58, "annotation": null}, {"text": ";", "start": 392, "end": 393, "id": 59, "annotation": null}, {"text": "Axx=9.09mT", "start": 394, "end": 404, "id": 60, "annotation": null}, {"text": ",", "start": 405, "end": 406, "id": 61, "annotation": null}, {"text": "Ayy=9.01mT", "start": 407, "end": 417, "id": 62, "annotation": null}, {"text": ",", "start": 418, "end": 419, "id": 63, "annotation": null}, {"text": "Azz=9.45mT", "start": 420, "end": 430, "id": 64, "annotation": null}, {"text": "and", "start": 431, "end": 434, "id": 65, "annotation": null}, {"text": "Dxx=15.25mT", "start": 435, "end": 446, "id": 66, "annotation": null}, {"text": ",", "start": 447, "end": 448, "id": 67, "annotation": null}, {"text": "Dyy=4.54mT", "start": 449, "end": 459, "id": 68, "annotation": null}, {"text": ",", "start": 460, "end": 461, "id": 69, "annotation": null}, {"text": "Dzz=\u221219.79mT.", "start": 462, "end": 475, "id": 70, "annotation": null}], [{"text": "The", "start": 476, "end": 479, "id": 71, "annotation": null}, {"text": "probable", "start": 480, "end": 488, "id": 72, "annotation": null}, {"text": "location", "start": 489, "end": 497, "id": 73, "annotation": null}, {"text": "for", "start": 498, "end": 501, "id": 74, "annotation": null}, {"text": "the", "start": 502, "end": 505, "id": 75, "annotation": null}, {"text": "interstitial", "start": 506, "end": 518, "id": 76, "annotation": null}, {"text": "site", "start": 519, "end": 523, "id": 77, "annotation": null}, {"text": "has", "start": 524, "end": 527, "id": 78, "annotation": null}, {"text": "been", "start": 528, "end": 532, "id": 79, "annotation": null}, {"text": "identified", "start": 533, "end": 543, "id": 80, "annotation": null}, {"text": "from", "start": 544, "end": 548, "id": 81, "annotation": null}, {"text": "the", "start": 549, "end": 552, "id": 82, "annotation": null}, {"text": "position", "start": 553, "end": 561, "id": 83, "annotation": null}, {"text": "of", "start": 562, "end": 564, "id": 84, "annotation": null}, {"text": "various", "start": 565, "end": 572, "id": 85, "annotation": null}, {"text": "atoms", "start": 573, "end": 578, "id": 86, "annotation": null}, {"text": "in", "start": 579, "end": 581, "id": 87, "annotation": null}, {"text": "the", "start": 582, "end": 585, "id": 88, "annotation": null}, {"text": "lattice", "start": 586, "end": 593, "id": 89, "annotation": null}, {"text": ".", "start": 594, "end": 595, "id": 90, "annotation": null}], [{"text": "The", "start": 596, "end": 599, "id": 91, "annotation": null}, {"text": "variable", "start": 600, "end": 608, "id": 92, "annotation": null}, {"text": "temperature", "start": 609, "end": 620, "id": 93, "annotation": null}, {"text": "study", "start": 621, "end": 626, "id": 94, "annotation": null}, {"text": "for", "start": 627, "end": 630, "id": 95, "annotation": null}, {"text": "polycrystalline", "start": 631, "end": 646, "id": 96, "annotation": null}, {"text": "sample", "start": 647, "end": 653, "id": 97, "annotation": null}, {"text": "has", "start": 654, "end": 657, "id": 98, "annotation": null}, {"text": "been", "start": 658, "end": 662, "id": 99, "annotation": null}, {"text": "carried", "start": 663, "end": 670, "id": 100, "annotation": null}, {"text": "out", "start": 671, "end": 674, "id": 101, "annotation": null}, {"text": ",", "start": 675, "end": 676, "id": 102, "annotation": null}, {"text": "which", "start": 677, "end": 682, "id": 103, "annotation": null}, {"text": "indicates", "start": 683, "end": 692, "id": 104, "annotation": null}, {"text": "no", "start": 693, "end": 695, "id": 105, "annotation": null}, {"text": "phase", "start": 696, "end": 701, "id": 106, "annotation": null}, {"text": "transition", "start": 702, "end": 712, "id": 107, "annotation": null}, {"text": ".", "start": 713, "end": 714, "id": 108, "annotation": null}], [{"text": "The", "start": 715, "end": 718, "id": 109, "annotation": null}, {"text": "percentage", "start": 719, "end": 729, "id": 110, "annotation": null}, {"text": "covalency", "start": 730, "end": 739, "id": 111, "annotation": null}, {"text": "of", "start": 740, "end": 742, "id": 112, "annotation": null}, {"text": "Mn", "start": 743, "end": 745, "id": 113, "annotation": null}, {"text": "\u2013", "start": 746, "end": 747, "id": 114, "annotation": null}, {"text": "O", "start": 748, "end": 749, "id": 115, "annotation": null}, {"text": "bond", "start": 750, "end": 754, "id": 116, "annotation": null}, {"text": "has", "start": 755, "end": 758, "id": 117, "annotation": null}, {"text": "been", "start": 759, "end": 763, "id": 118, "annotation": null}, {"text": "estimated", "start": 764, "end": 773, "id": 119, "annotation": null}, {"text": "to", "start": 774, "end": 776, "id": 120, "annotation": null}, {"text": "be", "start": 777, "end": 779, "id": 121, "annotation": null}, {"text": "8.5", "start": 780, "end": 783, "id": 122, "annotation": null}, {"text": "%", "start": 784, "end": 785, "id": 123, "annotation": null}, {"text": ".", "start": 786, "end": 787, "id": 124, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "A suspension stabilizer-coating technique was employed to prepare x mol% Yb2O3 or Gd2O3 (x=1.0, 2.0, 3.0 and 4.0) co-stabilized 1.0 or 2.0 mol% Y2O3 doped ZrO2 nanopowders (xYb1Y, xYb2Y, xGd1Y). Fully dense Yb2O3/Gd2O3 and Y2O3 co-doped ZrO2 ceramics were obtained by means of pressureless sintering in air at 1450 \u00b0C. Phase assemblage, microstructure measurements indicated that polycrystalline tetragonal ZrO2 (TZP) was achieved in the 1Yb1\u20132Y and 1Gd1\u20132Y grades, whereas the 4Yb1\u20132Y ceramic was almost fully stabilized cubic ZrO2 (FSZ) and all other investigated stabilizer combinations resulted in partially stabilized zirconia (PSZ). Complex impedance analysis showed that the conductivity of the xGd1Y and xYb1\u20132Y co-doped zirconia ceramics increased with increasing Gd2O3 and Yb2O3 content. The xGd1Y grade had a lower conductivity than the xYb1Y and xYb2Y ceramics. The conductivity behaviour was assessed and explained in terms of the cubic phase content and dopant ionic radius.", "meta": {"doi": "10.1016/j.ssi.2008.03.003"}, "_input_hash": 2049536323, "_task_hash": -765663923, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "suspension", "start": 2, "end": 12, "id": 1, "annotation": null}, {"text": "stabilizer", "start": 13, "end": 23, "id": 2, "annotation": null}, {"text": "-", "start": 24, "end": 25, "id": 3, "annotation": null}, {"text": "coating", "start": 26, "end": 33, "id": 4, "annotation": null}, {"text": "technique", "start": 34, "end": 43, "id": 5, "annotation": null}, {"text": "was", "start": 44, "end": 47, "id": 6, "annotation": null}, {"text": "employed", "start": 48, "end": 56, "id": 7, "annotation": null}, {"text": "to", "start": 57, "end": 59, "id": 8, "annotation": null}, {"text": "prepare", "start": 60, "end": 67, "id": 9, "annotation": null}, {"text": "x", "start": 68, "end": 69, "id": 10, "annotation": "DOPMODQ"}, {"text": "mol%", "start": 70, "end": 74, "id": 11, "annotation": "DOPMODQ"}, {"text": "Yb2O3", "start": 75, "end": 80, "id": 12, "annotation": "DOPANT"}, {"text": "or", "start": 81, "end": 83, "id": 13, "annotation": null}, {"text": "Gd2O3", "start": 84, "end": 89, "id": 14, "annotation": "DOPANT"}, {"text": "(", "start": 90, "end": 91, "id": 15, "annotation": null}, {"text": "x=1.0", "start": 92, "end": 97, "id": 16, "annotation": "DOPMODQ"}, {"text": ",", "start": 98, "end": 99, "id": 17, "annotation": null}, {"text": "2.0", "start": 100, "end": 103, "id": 18, "annotation": "DOPMODQ"}, {"text": ",", "start": 104, "end": 105, "id": 19, "annotation": null}, {"text": "3.0", "start": 106, "end": 109, "id": 20, "annotation": "DOPMODQ"}, {"text": "and", "start": 110, "end": 113, "id": 21, "annotation": null}, {"text": "4.0", "start": 114, "end": 117, "id": 22, "annotation": "DOPMODQ"}, {"text": ")", "start": 118, "end": 119, "id": 23, "annotation": null}, {"text": "co", "start": 120, "end": 122, "id": 24, "annotation": null}, {"text": "-", "start": 123, "end": 124, "id": 25, "annotation": null}, {"text": "stabilized", "start": 125, "end": 135, "id": 26, "annotation": null}, {"text": "1.0", "start": 136, "end": 139, "id": 27, "annotation": "DOPMODQ"}, {"text": "or", "start": 140, "end": 142, "id": 28, "annotation": null}, {"text": "2.0", "start": 143, "end": 146, "id": 29, "annotation": null}, {"text": "mol%", "start": 147, "end": 151, "id": 30, "annotation": "DOPMODQ"}, {"text": "Y2O3", "start": 152, "end": 156, "id": 31, "annotation": "DOPANT"}, {"text": "doped", "start": 157, "end": 162, "id": 32, "annotation": null}, {"text": "ZrO2", "start": 163, "end": 167, "id": 33, "annotation": "BASEMAT"}, {"text": "nanopowders", "start": 168, "end": 179, "id": 34, "annotation": null}, {"text": "(", "start": 180, "end": 181, "id": 35, "annotation": null}, {"text": "xYb1Y", "start": 182, "end": 187, "id": 36, "annotation": null}, {"text": ",", "start": 188, "end": 189, "id": 37, "annotation": null}, {"text": "xYb2Y", "start": 190, "end": 195, "id": 38, "annotation": null}, {"text": ",", "start": 196, "end": 197, "id": 39, "annotation": null}, {"text": "xGd1Y", "start": 198, "end": 203, "id": 40, "annotation": null}, {"text": ")", "start": 204, "end": 205, "id": 41, "annotation": null}, {"text": ".", "start": 206, "end": 207, "id": 42, "annotation": null}], [{"text": "Fully", "start": 208, "end": 213, "id": 43, "annotation": null}, {"text": "dense", "start": 214, "end": 219, "id": 44, "annotation": null}, {"text": "Yb2O3", "start": 220, "end": 225, "id": 45, "annotation": "DOPANT"}, {"text": "/", "start": 226, "end": 227, "id": 46, "annotation": null}, {"text": "Gd2O3", "start": 228, "end": 233, "id": 47, "annotation": "DOPANT"}, {"text": "and", "start": 234, "end": 237, "id": 48, "annotation": null}, {"text": "Y2O3", "start": 238, "end": 242, "id": 49, "annotation": "DOPANT"}, {"text": "co", "start": 243, "end": 245, "id": 50, "annotation": null}, {"text": "-", "start": 246, "end": 247, "id": 51, "annotation": null}, {"text": "doped", "start": 248, "end": 253, "id": 52, "annotation": null}, {"text": "ZrO2", "start": 254, "end": 258, "id": 53, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 259, "end": 267, "id": 54, "annotation": null}, {"text": "were", "start": 268, "end": 272, "id": 55, "annotation": null}, {"text": "obtained", "start": 273, "end": 281, "id": 56, "annotation": null}, {"text": "by", "start": 282, "end": 284, "id": 57, "annotation": null}, {"text": "means", "start": 285, "end": 290, "id": 58, "annotation": null}, {"text": "of", "start": 291, "end": 293, "id": 59, "annotation": null}, {"text": "pressureless", "start": 294, "end": 306, "id": 60, "annotation": null}, {"text": "sintering", "start": 307, "end": 316, "id": 61, "annotation": null}, {"text": "in", "start": 317, "end": 319, "id": 62, "annotation": null}, {"text": "air", "start": 320, "end": 323, "id": 63, "annotation": null}, {"text": "at", "start": 324, "end": 326, "id": 64, "annotation": null}, {"text": "1450", "start": 327, "end": 331, "id": 65, "annotation": null}, {"text": "\u00b0", "start": 332, "end": 333, "id": 66, "annotation": null}, {"text": "C", "start": 334, "end": 335, "id": 67, "annotation": null}, {"text": ".", "start": 336, "end": 337, "id": 68, "annotation": null}], [{"text": "Phase", "start": 338, "end": 343, "id": 69, "annotation": null}, {"text": "assemblage", "start": 344, "end": 354, "id": 70, "annotation": null}, {"text": ",", "start": 355, "end": 356, "id": 71, "annotation": null}, {"text": "microstructure", "start": 357, "end": 371, "id": 72, "annotation": null}, {"text": "measurements", "start": 372, "end": 384, "id": 73, "annotation": null}, {"text": "indicated", "start": 385, "end": 394, "id": 74, "annotation": null}, {"text": "that", "start": 395, "end": 399, "id": 75, "annotation": null}, {"text": "polycrystalline", "start": 400, "end": 415, "id": 76, "annotation": null}, {"text": "tetragonal", "start": 416, "end": 426, "id": 77, "annotation": null}, {"text": "ZrO2", "start": 427, "end": 431, "id": 78, "annotation": null}, {"text": "(", "start": 432, "end": 433, "id": 79, "annotation": null}, {"text": "TZP", "start": 434, "end": 437, "id": 80, "annotation": null}, {"text": ")", "start": 438, "end": 439, "id": 81, "annotation": null}, {"text": "was", "start": 440, "end": 443, "id": 82, "annotation": null}, {"text": "achieved", "start": 444, "end": 452, "id": 83, "annotation": null}, {"text": "in", "start": 453, "end": 455, "id": 84, "annotation": null}, {"text": "the", "start": 456, "end": 459, "id": 85, "annotation": null}, {"text": "1Yb1\u20132Y", "start": 460, "end": 467, "id": 86, "annotation": null}, {"text": "and", "start": 468, "end": 471, "id": 87, "annotation": null}, {"text": "1Gd1\u20132Y", "start": 472, "end": 479, "id": 88, "annotation": null}, {"text": "grades", "start": 480, "end": 486, "id": 89, "annotation": null}, {"text": ",", "start": 487, "end": 488, "id": 90, "annotation": null}, {"text": "whereas", "start": 489, "end": 496, "id": 91, "annotation": null}, {"text": "the", "start": 497, "end": 500, "id": 92, "annotation": null}, {"text": "4Yb1\u20132Y", "start": 501, "end": 508, "id": 93, "annotation": null}, {"text": "ceramic", "start": 509, "end": 516, "id": 94, "annotation": null}, {"text": "was", "start": 517, "end": 520, "id": 95, "annotation": null}, {"text": "almost", "start": 521, "end": 527, "id": 96, "annotation": null}, {"text": "fully", "start": 528, "end": 533, "id": 97, "annotation": null}, {"text": "stabilized", "start": 534, "end": 544, "id": 98, "annotation": null}, {"text": "cubic", "start": 545, "end": 550, "id": 99, "annotation": null}, {"text": "ZrO2", "start": 551, "end": 555, "id": 100, "annotation": null}, {"text": "(", "start": 556, "end": 557, "id": 101, "annotation": null}, {"text": "FSZ", "start": 558, "end": 561, "id": 102, "annotation": null}, {"text": ")", "start": 562, "end": 563, "id": 103, "annotation": null}, {"text": "and", "start": 564, "end": 567, "id": 104, "annotation": null}, {"text": "all", "start": 568, "end": 571, "id": 105, "annotation": null}, {"text": "other", "start": 572, "end": 577, "id": 106, "annotation": null}, {"text": "investigated", "start": 578, "end": 590, "id": 107, "annotation": null}, {"text": "stabilizer", "start": 591, "end": 601, "id": 108, "annotation": null}, {"text": "combinations", "start": 602, "end": 614, "id": 109, "annotation": null}, {"text": "resulted", "start": 615, "end": 623, "id": 110, "annotation": null}, {"text": "in", "start": 624, "end": 626, "id": 111, "annotation": null}, {"text": "partially", "start": 627, "end": 636, "id": 112, "annotation": null}, {"text": "stabilized", "start": 637, "end": 647, "id": 113, "annotation": null}, {"text": "zirconia", "start": 648, "end": 656, "id": 114, "annotation": null}, {"text": "(", "start": 657, "end": 658, "id": 115, "annotation": null}, {"text": "PSZ", "start": 659, "end": 662, "id": 116, "annotation": null}, {"text": ")", "start": 663, "end": 664, "id": 117, "annotation": null}, {"text": ".", "start": 665, "end": 666, "id": 118, "annotation": null}], [{"text": "Complex", "start": 667, "end": 674, "id": 119, "annotation": null}, {"text": "impedance", "start": 675, "end": 684, "id": 120, "annotation": null}, {"text": "analysis", "start": 685, "end": 693, "id": 121, "annotation": null}, {"text": "showed", "start": 694, "end": 700, "id": 122, "annotation": null}, {"text": "that", "start": 701, "end": 705, "id": 123, "annotation": null}, {"text": "the", "start": 706, "end": 709, "id": 124, "annotation": null}, {"text": "conductivity", "start": 710, "end": 722, "id": 125, "annotation": null}, {"text": "of", "start": 723, "end": 725, "id": 126, "annotation": null}, {"text": "the", "start": 726, "end": 729, "id": 127, "annotation": null}, {"text": "xGd1Y", "start": 730, "end": 735, "id": 128, "annotation": "DOPANT"}, {"text": "and", "start": 736, "end": 739, "id": 129, "annotation": null}, {"text": "xYb1\u20132Y", "start": 740, "end": 747, "id": 130, "annotation": "DOPANT"}, {"text": "co", "start": 748, "end": 750, "id": 131, "annotation": null}, {"text": "-", "start": 751, "end": 752, "id": 132, "annotation": null}, {"text": "doped", "start": 753, "end": 758, "id": 133, "annotation": null}, {"text": "zirconia", "start": 759, "end": 767, "id": 134, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 768, "end": 776, "id": 135, "annotation": null}, {"text": "increased", "start": 777, "end": 786, "id": 136, "annotation": null}, {"text": "with", "start": 787, "end": 791, "id": 137, "annotation": null}, {"text": "increasing", "start": 792, "end": 802, "id": 138, "annotation": null}, {"text": "Gd2O3", "start": 803, "end": 808, "id": 139, "annotation": "DOPANT"}, {"text": "and", "start": 809, "end": 812, "id": 140, "annotation": null}, {"text": "Yb2O3", "start": 813, "end": 818, "id": 141, "annotation": "DOPANT"}, {"text": "content", "start": 819, "end": 826, "id": 142, "annotation": null}, {"text": ".", "start": 827, "end": 828, "id": 143, "annotation": null}], [{"text": "The", "start": 829, "end": 832, "id": 144, "annotation": null}, {"text": "xGd1Y", "start": 833, "end": 838, "id": 145, "annotation": null}, {"text": "grade", "start": 839, "end": 844, "id": 146, "annotation": null}, {"text": "had", "start": 845, "end": 848, "id": 147, "annotation": null}, {"text": "a", "start": 849, "end": 850, "id": 148, "annotation": null}, {"text": "lower", "start": 851, "end": 856, "id": 149, "annotation": null}, {"text": "conductivity", "start": 857, "end": 869, "id": 150, "annotation": null}, {"text": "than", "start": 870, "end": 874, "id": 151, "annotation": null}, {"text": "the", "start": 875, "end": 878, "id": 152, "annotation": null}, {"text": "xYb1Y", "start": 879, "end": 884, "id": 153, "annotation": null}, {"text": "and", "start": 885, "end": 888, "id": 154, "annotation": null}, {"text": "xYb2Y", "start": 889, "end": 894, "id": 155, "annotation": null}, {"text": "ceramics", "start": 895, "end": 903, "id": 156, "annotation": null}, {"text": ".", "start": 904, "end": 905, "id": 157, "annotation": null}], [{"text": "The", "start": 906, "end": 909, "id": 158, "annotation": null}, {"text": "conductivity", "start": 910, "end": 922, "id": 159, "annotation": null}, {"text": "behaviour", "start": 923, "end": 932, "id": 160, "annotation": null}, {"text": "was", "start": 933, "end": 936, "id": 161, "annotation": null}, {"text": "assessed", "start": 937, "end": 945, "id": 162, "annotation": null}, {"text": "and", "start": 946, "end": 949, "id": 163, "annotation": null}, {"text": "explained", "start": 950, "end": 959, "id": 164, "annotation": null}, {"text": "in", "start": 960, "end": 962, "id": 165, "annotation": null}, {"text": "terms", "start": 963, "end": 968, "id": 166, "annotation": null}, {"text": "of", "start": 969, "end": 971, "id": 167, "annotation": null}, {"text": "the", "start": 972, "end": 975, "id": 168, "annotation": null}, {"text": "cubic", "start": 976, "end": 981, "id": 169, "annotation": null}, {"text": "phase", "start": 982, "end": 987, "id": 170, "annotation": null}, {"text": "content", "start": 988, "end": 995, "id": 171, "annotation": null}, {"text": "and", "start": 996, "end": 999, "id": 172, "annotation": null}, {"text": "dopant", "start": 1000, "end": 1006, "id": 173, "annotation": null}, {"text": "ionic", "start": 1007, "end": 1012, "id": 174, "annotation": null}, {"text": "radius", "start": 1013, "end": 1019, "id": 175, "annotation": null}, {"text": ".", "start": 1020, "end": 1021, "id": 176, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Ho3+- and Yb3+-codoped Sr4La2Ti4Nb6O30 (Sr4La1.94\u2013xHo0.06YbxTi4Nb6O30, abbreviated as SLTN: Ho-Ybx) ceramics have been synthesized, and their structural, up-conversion (UC) photoluminescence, and dielectric properties have been carefully investigated. Through Rietveld structural refinement, SLTN: Ho-Ybx samples are determined as single tetragonal tungsten bronze (TTB) phase with space group P4/mbm in which larger Sr2+ ions fill the A2-sites, relative smaller La3+, Ho3+, and Yb3+ ions occupy the A1-sites, while Ti4+ and Nb4+ ions fill the B-sites. Under 980nm near infrared (NIR) excitation, bright UC green emission, relatively weak red and near-infrared (NIR) emissions, originating from 5F4/5S2\u21925I8, 5F5\u21925I8, and 5F4/5S2\u21925I7 transitions of Ho3+ ions, are confirmed for SLTN: Ho-Ybx. Two-photon energy transfer process is proved through pumping laser power dependence of emission intensity measurement. Furthermore, the influence of Ho3+- and Yb3+- ions on the dielectric properties of SLTN: Ho-Ybx is also investigated and the temperature stability of dielectric permittivity is improved.", "meta": {"doi": "10.1016/j.materresbull.2014.12.067"}, "_input_hash": -859735792, "_task_hash": 1414728057, "tokens": [[{"text": "Ho3", "start": 0, "end": 3, "id": 0, "annotation": "DOPANT"}, {"text": "+", "start": 4, "end": 5, "id": 1, "annotation": "DOPANT"}, {"text": "-", "start": 6, "end": 7, "id": 2, "annotation": null}, {"text": "and", "start": 8, "end": 11, "id": 3, "annotation": null}, {"text": "Yb3", "start": 12, "end": 15, "id": 4, "annotation": "DOPANT"}, {"text": "+", "start": 16, "end": 17, "id": 5, "annotation": "DOPANT"}, {"text": "-codoped", "start": 18, "end": 26, "id": 6, "annotation": null}, {"text": "Sr4La2Ti4Nb6O30", "start": 27, "end": 42, "id": 7, "annotation": "DOPMODQ"}, {"text": "(", "start": 43, "end": 44, "id": 8, "annotation": null}, {"text": "Sr4La1.94\u2013xHo0.06YbxTi4Nb6O30", "start": 45, "end": 74, "id": 9, "annotation": null}, {"text": ",", "start": 75, "end": 76, "id": 10, "annotation": null}, {"text": "abbreviated", "start": 77, "end": 88, "id": 11, "annotation": null}, {"text": "as", "start": 89, "end": 91, "id": 12, "annotation": null}, {"text": "SLTN", "start": 92, "end": 96, "id": 13, "annotation": "BASEMAT"}, {"text": ":", "start": 97, "end": 98, "id": 14, "annotation": null}, {"text": "Ho", "start": 99, "end": 101, "id": 15, "annotation": "DOPANT"}, {"text": "-", "start": 102, "end": 103, "id": 16, "annotation": null}, {"text": "Ybx", "start": 104, "end": 107, "id": 17, "annotation": "DOPANT"}, {"text": ")", "start": 108, "end": 109, "id": 18, "annotation": null}, {"text": "ceramics", "start": 110, "end": 118, "id": 19, "annotation": null}, {"text": "have", "start": 119, "end": 123, "id": 20, "annotation": null}, {"text": "been", "start": 124, "end": 128, "id": 21, "annotation": null}, {"text": "synthesized", "start": 129, "end": 140, "id": 22, "annotation": null}, {"text": ",", "start": 141, "end": 142, "id": 23, "annotation": null}, {"text": "and", "start": 143, "end": 146, "id": 24, "annotation": null}, {"text": "their", "start": 147, "end": 152, "id": 25, "annotation": null}, {"text": "structural", "start": 153, "end": 163, "id": 26, "annotation": null}, {"text": ",", "start": 164, "end": 165, "id": 27, "annotation": null}, {"text": "up", "start": 166, "end": 168, "id": 28, "annotation": null}, {"text": "-", "start": 169, "end": 170, "id": 29, "annotation": null}, {"text": "conversion", "start": 171, "end": 181, "id": 30, "annotation": null}, {"text": "(", "start": 182, "end": 183, "id": 31, "annotation": null}, {"text": "UC", "start": 184, "end": 186, "id": 32, "annotation": null}, {"text": ")", "start": 187, "end": 188, "id": 33, "annotation": null}, {"text": "photoluminescence", "start": 189, "end": 206, "id": 34, "annotation": null}, {"text": ",", "start": 207, "end": 208, "id": 35, "annotation": null}, {"text": "and", "start": 209, "end": 212, "id": 36, "annotation": null}, {"text": "dielectric", "start": 213, "end": 223, "id": 37, "annotation": null}, {"text": "properties", "start": 224, "end": 234, "id": 38, "annotation": null}, {"text": "have", "start": 235, "end": 239, "id": 39, "annotation": null}, {"text": "been", "start": 240, "end": 244, "id": 40, "annotation": null}, {"text": "carefully", "start": 245, "end": 254, "id": 41, "annotation": null}, {"text": "investigated", "start": 255, "end": 267, "id": 42, "annotation": null}, {"text": ".", "start": 268, "end": 269, "id": 43, "annotation": null}], [{"text": "Through", "start": 270, "end": 277, "id": 44, "annotation": null}, {"text": "Rietveld", "start": 278, "end": 286, "id": 45, "annotation": null}, {"text": "structural", "start": 287, "end": 297, "id": 46, "annotation": null}, {"text": "refinement", "start": 298, "end": 308, "id": 47, "annotation": null}, {"text": ",", "start": 309, "end": 310, "id": 48, "annotation": null}, {"text": "SLTN", "start": 311, "end": 315, "id": 49, "annotation": "BASEMAT"}, {"text": ":", "start": 316, "end": 317, "id": 50, "annotation": null}, {"text": "Ho", "start": 318, "end": 320, "id": 51, "annotation": "DOPANT"}, {"text": "-", "start": 321, "end": 322, "id": 52, "annotation": null}, {"text": "Ybx", "start": 323, "end": 326, "id": 53, "annotation": "DOPANT"}, {"text": "samples", "start": 327, "end": 334, "id": 54, "annotation": null}, {"text": "are", "start": 335, "end": 338, "id": 55, "annotation": null}, {"text": "determined", "start": 339, "end": 349, "id": 56, "annotation": null}, {"text": "as", "start": 350, "end": 352, "id": 57, "annotation": null}, {"text": "single", "start": 353, "end": 359, "id": 58, "annotation": null}, {"text": "tetragonal", "start": 360, "end": 370, "id": 59, "annotation": null}, {"text": "tungsten", "start": 371, "end": 379, "id": 60, "annotation": null}, {"text": "bronze", "start": 380, "end": 386, "id": 61, "annotation": null}, {"text": "(", "start": 387, "end": 388, "id": 62, "annotation": null}, {"text": "TTB", "start": 389, "end": 392, "id": 63, "annotation": null}, {"text": ")", "start": 393, "end": 394, "id": 64, "annotation": null}, {"text": "phase", "start": 395, "end": 400, "id": 65, "annotation": null}, {"text": "with", "start": 401, "end": 405, "id": 66, "annotation": null}, {"text": "space", "start": 406, "end": 411, "id": 67, "annotation": null}, {"text": "group", "start": 412, "end": 417, "id": 68, "annotation": null}, {"text": "P4", "start": 418, "end": 420, "id": 69, "annotation": null}, {"text": "/", "start": 421, "end": 422, "id": 70, "annotation": null}, {"text": "mbm", "start": 423, "end": 426, "id": 71, "annotation": null}, {"text": "in", "start": 427, "end": 429, "id": 72, "annotation": null}, {"text": "which", "start": 430, "end": 435, "id": 73, "annotation": null}, {"text": "larger", "start": 436, "end": 442, "id": 74, "annotation": null}, {"text": "Sr2", "start": 443, "end": 446, "id": 75, "annotation": null}, {"text": "+", "start": 447, "end": 448, "id": 76, "annotation": null}, {"text": "ions", "start": 449, "end": 453, "id": 77, "annotation": null}, {"text": "fill", "start": 454, "end": 458, "id": 78, "annotation": null}, {"text": "the", "start": 459, "end": 462, "id": 79, "annotation": null}, {"text": "A2-sites", "start": 463, "end": 471, "id": 80, "annotation": null}, {"text": ",", "start": 472, "end": 473, "id": 81, "annotation": null}, {"text": "relative", "start": 474, "end": 482, "id": 82, "annotation": null}, {"text": "smaller", "start": 483, "end": 490, "id": 83, "annotation": null}, {"text": "La3", "start": 491, "end": 494, "id": 84, "annotation": null}, {"text": "+", "start": 495, "end": 496, "id": 85, "annotation": null}, {"text": ",", "start": 497, "end": 498, "id": 86, "annotation": null}, {"text": "Ho3", "start": 499, "end": 502, "id": 87, "annotation": null}, {"text": "+", "start": 503, "end": 504, "id": 88, "annotation": null}, {"text": ",", "start": 505, "end": 506, "id": 89, "annotation": null}, {"text": "and", "start": 507, "end": 510, "id": 90, "annotation": null}, {"text": "Yb3", "start": 511, "end": 514, "id": 91, "annotation": null}, {"text": "+", "start": 515, "end": 516, "id": 92, "annotation": null}, {"text": "ions", "start": 517, "end": 521, "id": 93, "annotation": null}, {"text": "occupy", "start": 522, "end": 528, "id": 94, "annotation": null}, {"text": "the", "start": 529, "end": 532, "id": 95, "annotation": null}, {"text": "A1-sites", "start": 533, "end": 541, "id": 96, "annotation": null}, {"text": ",", "start": 542, "end": 543, "id": 97, "annotation": null}, {"text": "while", "start": 544, "end": 549, "id": 98, "annotation": null}, {"text": "Ti4", "start": 550, "end": 553, "id": 99, "annotation": null}, {"text": "+", "start": 554, "end": 555, "id": 100, "annotation": null}, {"text": "and", "start": 556, "end": 559, "id": 101, "annotation": null}, {"text": "Nb4", "start": 560, "end": 563, "id": 102, "annotation": null}, {"text": "+", "start": 564, "end": 565, "id": 103, "annotation": null}, {"text": "ions", "start": 566, "end": 570, "id": 104, "annotation": null}, {"text": "fill", "start": 571, "end": 575, "id": 105, "annotation": null}, {"text": "the", "start": 576, "end": 579, "id": 106, "annotation": null}, {"text": "B", "start": 580, "end": 581, "id": 107, "annotation": null}, {"text": "-", "start": 582, "end": 583, "id": 108, "annotation": null}, {"text": "sites", "start": 584, "end": 589, "id": 109, "annotation": null}, {"text": ".", "start": 590, "end": 591, "id": 110, "annotation": null}], [{"text": "Under", "start": 592, "end": 597, "id": 111, "annotation": null}, {"text": "980", "start": 598, "end": 601, "id": 112, "annotation": null}, {"text": "nm", "start": 602, "end": 604, "id": 113, "annotation": null}, {"text": "near", "start": 605, "end": 609, "id": 114, "annotation": null}, {"text": "infrared", "start": 610, "end": 618, "id": 115, "annotation": null}, {"text": "(", "start": 619, "end": 620, "id": 116, "annotation": null}, {"text": "NIR", "start": 621, "end": 624, "id": 117, "annotation": null}, {"text": ")", "start": 625, "end": 626, "id": 118, "annotation": null}, {"text": "excitation", "start": 627, "end": 637, "id": 119, "annotation": null}, {"text": ",", "start": 638, "end": 639, "id": 120, "annotation": null}, {"text": "bright", "start": 640, "end": 646, "id": 121, "annotation": null}, {"text": "UC", "start": 647, "end": 649, "id": 122, "annotation": null}, {"text": "green", "start": 650, "end": 655, "id": 123, "annotation": null}, {"text": "emission", "start": 656, "end": 664, "id": 124, "annotation": null}, {"text": ",", "start": 665, "end": 666, "id": 125, "annotation": null}, {"text": "relatively", "start": 667, "end": 677, "id": 126, "annotation": null}, {"text": "weak", "start": 678, "end": 682, "id": 127, "annotation": null}, {"text": "red", "start": 683, "end": 686, "id": 128, "annotation": null}, {"text": "and", "start": 687, "end": 690, "id": 129, "annotation": null}, {"text": "near", "start": 691, "end": 695, "id": 130, "annotation": null}, {"text": "-", "start": 696, "end": 697, "id": 131, "annotation": null}, {"text": "infrared", "start": 698, "end": 706, "id": 132, "annotation": null}, {"text": "(", "start": 707, "end": 708, "id": 133, "annotation": null}, {"text": "NIR", "start": 709, "end": 712, "id": 134, "annotation": null}, {"text": ")", "start": 713, "end": 714, "id": 135, "annotation": null}, {"text": "emissions", "start": 715, "end": 724, "id": 136, "annotation": null}, {"text": ",", "start": 725, "end": 726, "id": 137, "annotation": null}, {"text": "originating", "start": 727, "end": 738, "id": 138, "annotation": null}, {"text": "from", "start": 739, "end": 743, "id": 139, "annotation": null}, {"text": "5F4/5S2\u21925I8", "start": 744, "end": 755, "id": 140, "annotation": null}, {"text": ",", "start": 756, "end": 757, "id": 141, "annotation": null}, {"text": "5F5\u21925I8", "start": 758, "end": 765, "id": 142, "annotation": null}, {"text": ",", "start": 766, "end": 767, "id": 143, "annotation": null}, {"text": "and", "start": 768, "end": 771, "id": 144, "annotation": null}, {"text": "5F4/5S2\u21925I7", "start": 772, "end": 783, "id": 145, "annotation": null}, {"text": "transitions", "start": 784, "end": 795, "id": 146, "annotation": null}, {"text": "of", "start": 796, "end": 798, "id": 147, "annotation": null}, {"text": "Ho3", "start": 799, "end": 802, "id": 148, "annotation": null}, {"text": "+", "start": 803, "end": 804, "id": 149, "annotation": null}, {"text": "ions", "start": 805, "end": 809, "id": 150, "annotation": null}, {"text": ",", "start": 810, "end": 811, "id": 151, "annotation": null}, {"text": "are", "start": 812, "end": 815, "id": 152, "annotation": null}, {"text": "confirmed", "start": 816, "end": 825, "id": 153, "annotation": null}, {"text": "for", "start": 826, "end": 829, "id": 154, "annotation": null}, {"text": "SLTN", "start": 830, "end": 834, "id": 155, "annotation": "BASEMAT"}, {"text": ":", "start": 835, "end": 836, "id": 156, "annotation": null}, {"text": "Ho", "start": 837, "end": 839, "id": 157, "annotation": "DOPANT"}, {"text": "-", "start": 840, "end": 841, "id": 158, "annotation": null}, {"text": "Ybx", "start": 842, "end": 845, "id": 159, "annotation": "DOPANT"}, {"text": ".", "start": 846, "end": 847, "id": 160, "annotation": null}], [{"text": "Two", "start": 848, "end": 851, "id": 161, "annotation": null}, {"text": "-", "start": 852, "end": 853, "id": 162, "annotation": null}, {"text": "photon", "start": 854, "end": 860, "id": 163, "annotation": null}, {"text": "energy", "start": 861, "end": 867, "id": 164, "annotation": null}, {"text": "transfer", "start": 868, "end": 876, "id": 165, "annotation": null}, {"text": "process", "start": 877, "end": 884, "id": 166, "annotation": null}, {"text": "is", "start": 885, "end": 887, "id": 167, "annotation": null}, {"text": "proved", "start": 888, "end": 894, "id": 168, "annotation": null}, {"text": "through", "start": 895, "end": 902, "id": 169, "annotation": null}, {"text": "pumping", "start": 903, "end": 910, "id": 170, "annotation": null}, {"text": "laser", "start": 911, "end": 916, "id": 171, "annotation": null}, {"text": "power", "start": 917, "end": 922, "id": 172, "annotation": null}, {"text": "dependence", "start": 923, "end": 933, "id": 173, "annotation": null}, {"text": "of", "start": 934, "end": 936, "id": 174, "annotation": null}, {"text": "emission", "start": 937, "end": 945, "id": 175, "annotation": null}, {"text": "intensity", "start": 946, "end": 955, "id": 176, "annotation": null}, {"text": "measurement", "start": 956, "end": 967, "id": 177, "annotation": null}, {"text": ".", "start": 968, "end": 969, "id": 178, "annotation": null}], [{"text": "Furthermore", "start": 970, "end": 981, "id": 179, "annotation": null}, {"text": ",", "start": 982, "end": 983, "id": 180, "annotation": null}, {"text": "the", "start": 984, "end": 987, "id": 181, "annotation": null}, {"text": "influence", "start": 988, "end": 997, "id": 182, "annotation": null}, {"text": "of", "start": 998, "end": 1000, "id": 183, "annotation": null}, {"text": "Ho3", "start": 1001, "end": 1004, "id": 184, "annotation": null}, {"text": "+", "start": 1005, "end": 1006, "id": 185, "annotation": null}, {"text": "-", "start": 1007, "end": 1008, "id": 186, "annotation": null}, {"text": "and", "start": 1009, "end": 1012, "id": 187, "annotation": null}, {"text": "Yb3", "start": 1013, "end": 1016, "id": 188, "annotation": null}, {"text": "+", "start": 1017, "end": 1018, "id": 189, "annotation": null}, {"text": "-", "start": 1019, "end": 1020, "id": 190, "annotation": null}, {"text": "ions", "start": 1021, "end": 1025, "id": 191, "annotation": null}, {"text": "on", "start": 1026, "end": 1028, "id": 192, "annotation": null}, {"text": "the", "start": 1029, "end": 1032, "id": 193, "annotation": null}, {"text": "dielectric", "start": 1033, "end": 1043, "id": 194, "annotation": null}, {"text": "properties", "start": 1044, "end": 1054, "id": 195, "annotation": null}, {"text": "of", "start": 1055, "end": 1057, "id": 196, "annotation": null}, {"text": "SLTN", "start": 1058, "end": 1062, "id": 197, "annotation": "BASEMAT"}, {"text": ":", "start": 1063, "end": 1064, "id": 198, "annotation": null}, {"text": "Ho", "start": 1065, "end": 1067, "id": 199, "annotation": "DOPANT"}, {"text": "-", "start": 1068, "end": 1069, "id": 200, "annotation": null}, {"text": "Ybx", "start": 1070, "end": 1073, "id": 201, "annotation": "DOPANT"}, {"text": "is", "start": 1074, "end": 1076, "id": 202, "annotation": null}, {"text": "also", "start": 1077, "end": 1081, "id": 203, "annotation": null}, {"text": "investigated", "start": 1082, "end": 1094, "id": 204, "annotation": null}, {"text": "and", "start": 1095, "end": 1098, "id": 205, "annotation": null}, {"text": "the", "start": 1099, "end": 1102, "id": 206, "annotation": null}, {"text": "temperature", "start": 1103, "end": 1114, "id": 207, "annotation": null}, {"text": "stability", "start": 1115, "end": 1124, "id": 208, "annotation": null}, {"text": "of", "start": 1125, "end": 1127, "id": 209, "annotation": null}, {"text": "dielectric", "start": 1128, "end": 1138, "id": 210, "annotation": null}, {"text": "permittivity", "start": 1139, "end": 1151, "id": 211, "annotation": null}, {"text": "is", "start": 1152, "end": 1154, "id": 212, "annotation": null}, {"text": "improved", "start": 1155, "end": 1163, "id": 213, "annotation": null}, {"text": ".", "start": 1164, "end": 1165, "id": 214, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "We have investigated the photoluminescence (PL), scintillation and thermally-stimulated luminescence (TSL) dosimeter properties of MgO ceramic doped with C ions (0.001, 0.01 and 0.1%). The samples were synthesized by a Spark Plasma Sintering (SPS) technique. The PL emission peaks appeared around 400 and 750\u00a0nm in all the samples. The PL decay time constants at 400\u00a0nm were \u223c10 and \u223c100 ns which were on the typical order of F+ center in the undoped MgO. The scintillation emission peaks were detected at 330, 400 and 750\u00a0nm under X-ray irradiation. The TSL glow curves showed the \u223c250\u00a0\u00b0C peak in 0.1% C-doped sample. The TSL response was confirmed to be linear to the irradiation dose over the dose range from 0.1 to 1000\u00a0mGy. As a result, the sensitivity of MgO was improved by C-doping.", "meta": {"doi": "10.1016/j.radmeas.2016.07.004"}, "_input_hash": -1907143485, "_task_hash": 1960784501, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "have", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "investigated", "start": 8, "end": 20, "id": 2, "annotation": null}, {"text": "the", "start": 21, "end": 24, "id": 3, "annotation": null}, {"text": "photoluminescence", "start": 25, "end": 42, "id": 4, "annotation": null}, {"text": "(", "start": 43, "end": 44, "id": 5, "annotation": null}, {"text": "PL", "start": 45, "end": 47, "id": 6, "annotation": null}, {"text": ")", "start": 48, "end": 49, "id": 7, "annotation": null}, {"text": ",", "start": 50, "end": 51, "id": 8, "annotation": null}, {"text": "scintillation", "start": 52, "end": 65, "id": 9, "annotation": null}, {"text": "and", "start": 66, "end": 69, "id": 10, "annotation": null}, {"text": "thermally", "start": 70, "end": 79, "id": 11, "annotation": null}, {"text": "-", "start": 80, "end": 81, "id": 12, "annotation": null}, {"text": "stimulated", "start": 82, "end": 92, "id": 13, "annotation": null}, {"text": "luminescence", "start": 93, "end": 105, "id": 14, "annotation": null}, {"text": "(", "start": 106, "end": 107, "id": 15, "annotation": null}, {"text": "TSL", "start": 108, "end": 111, "id": 16, "annotation": null}, {"text": ")", "start": 112, "end": 113, "id": 17, "annotation": null}, {"text": "dosimeter", "start": 114, "end": 123, "id": 18, "annotation": null}, {"text": "properties", "start": 124, "end": 134, "id": 19, "annotation": null}, {"text": "of", "start": 135, "end": 137, "id": 20, "annotation": null}, {"text": "MgO", "start": 138, "end": 141, "id": 21, "annotation": "BASEMAT"}, {"text": "ceramic", "start": 142, "end": 149, "id": 22, "annotation": null}, {"text": "doped", "start": 150, "end": 155, "id": 23, "annotation": null}, {"text": "with", "start": 156, "end": 160, "id": 24, "annotation": null}, {"text": "C", "start": 161, "end": 162, "id": 25, "annotation": "DOPANT"}, {"text": "ions", "start": 163, "end": 167, "id": 26, "annotation": null}, {"text": "(", "start": 168, "end": 169, "id": 27, "annotation": null}, {"text": "0.001", "start": 170, "end": 175, "id": 28, "annotation": "DOPMODQ"}, {"text": ",", "start": 176, "end": 177, "id": 29, "annotation": null}, {"text": "0.01", "start": 178, "end": 182, "id": 30, "annotation": null}, {"text": "and", "start": 183, "end": 186, "id": 31, "annotation": null}, {"text": "0.1", "start": 187, "end": 190, "id": 32, "annotation": null}, {"text": "%", "start": 191, "end": 192, "id": 33, "annotation": "DOPMODQ"}, {"text": ")", "start": 193, "end": 194, "id": 34, "annotation": null}, {"text": ".", "start": 195, "end": 196, "id": 35, "annotation": null}], [{"text": "The", "start": 197, "end": 200, "id": 36, "annotation": null}, {"text": "samples", "start": 201, "end": 208, "id": 37, "annotation": null}, {"text": "were", "start": 209, "end": 213, "id": 38, "annotation": null}, {"text": "synthesized", "start": 214, "end": 225, "id": 39, "annotation": null}, {"text": "by", "start": 226, "end": 228, "id": 40, "annotation": null}, {"text": "a", "start": 229, "end": 230, "id": 41, "annotation": null}, {"text": "Spark", "start": 231, "end": 236, "id": 42, "annotation": null}, {"text": "Plasma", "start": 237, "end": 243, "id": 43, "annotation": null}, {"text": "Sintering", "start": 244, "end": 253, "id": 44, "annotation": null}, {"text": "(", "start": 254, "end": 255, "id": 45, "annotation": null}, {"text": "SPS", "start": 256, "end": 259, "id": 46, "annotation": null}, {"text": ")", "start": 260, "end": 261, "id": 47, "annotation": null}, {"text": "technique", "start": 262, "end": 271, "id": 48, "annotation": null}, {"text": ".", "start": 272, "end": 273, "id": 49, "annotation": null}], [{"text": "The", "start": 274, "end": 277, "id": 50, "annotation": null}, {"text": "PL", "start": 278, "end": 280, "id": 51, "annotation": null}, {"text": "emission", "start": 281, "end": 289, "id": 52, "annotation": null}, {"text": "peaks", "start": 290, "end": 295, "id": 53, "annotation": null}, {"text": "appeared", "start": 296, "end": 304, "id": 54, "annotation": null}, {"text": "around", "start": 305, "end": 311, "id": 55, "annotation": null}, {"text": "400", "start": 312, "end": 315, "id": 56, "annotation": null}, {"text": "and", "start": 316, "end": 319, "id": 57, "annotation": null}, {"text": "750", "start": 320, "end": 323, "id": 58, "annotation": null}, {"text": "nm", "start": 324, "end": 326, "id": 60, "annotation": null}, {"text": "in", "start": 327, "end": 329, "id": 61, "annotation": null}, {"text": "all", "start": 330, "end": 333, "id": 62, "annotation": null}, {"text": "the", "start": 334, "end": 337, "id": 63, "annotation": null}, {"text": "samples", "start": 338, "end": 345, "id": 64, "annotation": null}, {"text": ".", "start": 346, "end": 347, "id": 65, "annotation": null}], [{"text": "The", "start": 348, "end": 351, "id": 66, "annotation": null}, {"text": "PL", "start": 352, "end": 354, "id": 67, "annotation": null}, {"text": "decay", "start": 355, "end": 360, "id": 68, "annotation": null}, {"text": "time", "start": 361, "end": 365, "id": 69, "annotation": null}, {"text": "constants", "start": 366, "end": 375, "id": 70, "annotation": null}, {"text": "at", "start": 376, "end": 378, "id": 71, "annotation": null}, {"text": "400", "start": 379, "end": 382, "id": 72, "annotation": null}, {"text": "nm", "start": 383, "end": 385, "id": 74, "annotation": null}, {"text": "were", "start": 386, "end": 390, "id": 75, "annotation": null}, {"text": "\u223c10", "start": 391, "end": 394, "id": 76, "annotation": null}, {"text": "and", "start": 395, "end": 398, "id": 77, "annotation": null}, {"text": "\u223c100", "start": 399, "end": 403, "id": 78, "annotation": null}, {"text": "ns", "start": 404, "end": 406, "id": 79, "annotation": null}, {"text": "which", "start": 407, "end": 412, "id": 80, "annotation": null}, {"text": "were", "start": 413, "end": 417, "id": 81, "annotation": null}, {"text": "on", "start": 418, "end": 420, "id": 82, "annotation": null}, {"text": "the", "start": 421, "end": 424, "id": 83, "annotation": null}, {"text": "typical", "start": 425, "end": 432, "id": 84, "annotation": null}, {"text": "order", "start": 433, "end": 438, "id": 85, "annotation": null}, {"text": "of", "start": 439, "end": 441, "id": 86, "annotation": null}, {"text": "F+", "start": 442, "end": 444, "id": 87, "annotation": null}, {"text": "center", "start": 445, "end": 451, "id": 88, "annotation": null}, {"text": "in", "start": 452, "end": 454, "id": 89, "annotation": null}, {"text": "the", "start": 455, "end": 458, "id": 90, "annotation": null}, {"text": "undoped", "start": 459, "end": 466, "id": 91, "annotation": null}, {"text": "MgO.", "start": 467, "end": 471, "id": 92, "annotation": null}], [{"text": "The", "start": 472, "end": 475, "id": 93, "annotation": null}, {"text": "scintillation", "start": 476, "end": 489, "id": 94, "annotation": null}, {"text": "emission", "start": 490, "end": 498, "id": 95, "annotation": null}, {"text": "peaks", "start": 499, "end": 504, "id": 96, "annotation": null}, {"text": "were", "start": 505, "end": 509, "id": 97, "annotation": null}, {"text": "detected", "start": 510, "end": 518, "id": 98, "annotation": null}, {"text": "at", "start": 519, "end": 521, "id": 99, "annotation": null}, {"text": "330", "start": 522, "end": 525, "id": 100, "annotation": null}, {"text": ",", "start": 526, "end": 527, "id": 101, "annotation": null}, {"text": "400", "start": 528, "end": 531, "id": 102, "annotation": null}, {"text": "and", "start": 532, "end": 535, "id": 103, "annotation": null}, {"text": "750", "start": 536, "end": 539, "id": 104, "annotation": null}, {"text": "nm", "start": 540, "end": 542, "id": 106, "annotation": null}, {"text": "under", "start": 543, "end": 548, "id": 107, "annotation": null}, {"text": "X", "start": 549, "end": 550, "id": 108, "annotation": null}, {"text": "-", "start": 551, "end": 552, "id": 109, "annotation": null}, {"text": "ray", "start": 553, "end": 556, "id": 110, "annotation": null}, {"text": "irradiation", "start": 557, "end": 568, "id": 111, "annotation": null}, {"text": ".", "start": 569, "end": 570, "id": 112, "annotation": null}], [{"text": "The", "start": 571, "end": 574, "id": 113, "annotation": null}, {"text": "TSL", "start": 575, "end": 578, "id": 114, "annotation": null}, {"text": "glow", "start": 579, "end": 583, "id": 115, "annotation": null}, {"text": "curves", "start": 584, "end": 590, "id": 116, "annotation": null}, {"text": "showed", "start": 591, "end": 597, "id": 117, "annotation": null}, {"text": "the", "start": 598, "end": 601, "id": 118, "annotation": null}, {"text": "\u223c250", "start": 602, "end": 606, "id": 119, "annotation": null}, {"text": "\u00b0", "start": 607, "end": 608, "id": 121, "annotation": null}, {"text": "C", "start": 609, "end": 610, "id": 122, "annotation": null}, {"text": "peak", "start": 611, "end": 615, "id": 123, "annotation": null}, {"text": "in", "start": 616, "end": 618, "id": 124, "annotation": null}, {"text": "0.1", "start": 619, "end": 622, "id": 125, "annotation": "DOPMODQ"}, {"text": "%", "start": 623, "end": 624, "id": 126, "annotation": "DOPMODQ"}, {"text": "C", "start": 625, "end": 626, "id": 127, "annotation": "DOPANT"}, {"text": "-", "start": 627, "end": 628, "id": 128, "annotation": null}, {"text": "doped", "start": 629, "end": 634, "id": 129, "annotation": null}, {"text": "sample", "start": 635, "end": 641, "id": 130, "annotation": "BASEMAT"}, {"text": ".", "start": 642, "end": 643, "id": 131, "annotation": null}], [{"text": "The", "start": 644, "end": 647, "id": 132, "annotation": null}, {"text": "TSL", "start": 648, "end": 651, "id": 133, "annotation": null}, {"text": "response", "start": 652, "end": 660, "id": 134, "annotation": null}, {"text": "was", "start": 661, "end": 664, "id": 135, "annotation": null}, {"text": "confirmed", "start": 665, "end": 674, "id": 136, "annotation": null}, {"text": "to", "start": 675, "end": 677, "id": 137, "annotation": null}, {"text": "be", "start": 678, "end": 680, "id": 138, "annotation": null}, {"text": "linear", "start": 681, "end": 687, "id": 139, "annotation": null}, {"text": "to", "start": 688, "end": 690, "id": 140, "annotation": null}, {"text": "the", "start": 691, "end": 694, "id": 141, "annotation": null}, {"text": "irradiation", "start": 695, "end": 706, "id": 142, "annotation": null}, {"text": "dose", "start": 707, "end": 711, "id": 143, "annotation": null}, {"text": "over", "start": 712, "end": 716, "id": 144, "annotation": null}, {"text": "the", "start": 717, "end": 720, "id": 145, "annotation": null}, {"text": "dose", "start": 721, "end": 725, "id": 146, "annotation": null}, {"text": "range", "start": 726, "end": 731, "id": 147, "annotation": null}, {"text": "from", "start": 732, "end": 736, "id": 148, "annotation": null}, {"text": "0.1", "start": 737, "end": 740, "id": 149, "annotation": null}, {"text": "to", "start": 741, "end": 743, "id": 150, "annotation": null}, {"text": "1000", "start": 744, "end": 748, "id": 151, "annotation": null}, {"text": "mGy", "start": 749, "end": 752, "id": 153, "annotation": null}, {"text": ".", "start": 753, "end": 754, "id": 154, "annotation": null}], [{"text": "As", "start": 755, "end": 757, "id": 155, "annotation": null}, {"text": "a", "start": 758, "end": 759, "id": 156, "annotation": null}, {"text": "result", "start": 760, "end": 766, "id": 157, "annotation": null}, {"text": ",", "start": 767, "end": 768, "id": 158, "annotation": null}, {"text": "the", "start": 769, "end": 772, "id": 159, "annotation": null}, {"text": "sensitivity", "start": 773, "end": 784, "id": 160, "annotation": null}, {"text": "of", "start": 785, "end": 787, "id": 161, "annotation": null}, {"text": "MgO", "start": 788, "end": 791, "id": 162, "annotation": "BASEMAT"}, {"text": "was", "start": 792, "end": 795, "id": 163, "annotation": null}, {"text": "improved", "start": 796, "end": 804, "id": 164, "annotation": null}, {"text": "by", "start": 805, "end": 807, "id": 165, "annotation": null}, {"text": "C", "start": 808, "end": 809, "id": 166, "annotation": "DOPANT"}, {"text": "-", "start": 810, "end": 811, "id": 167, "annotation": null}, {"text": "doping", "start": 812, "end": 818, "id": 168, "annotation": null}, {"text": ".", "start": 819, "end": 820, "id": 169, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "A suspension stabilizer-coating technique was employed to prepare x mol% Yb2O3 or Gd2O3 (x=1.0, 2.0, 3.0 and 4.0) co-stabilized 1.0 or 2.0 mol% Y2O3 doped ZrO2 nanopowders (xYb1Y, xYb2Y, xGd1Y). Fully dense Yb2O3/Gd2O3 and Y2O3 co-doped ZrO2 ceramics were obtained by means of pressureless sintering in air at 1450 \u00b0C. Phase assemblage, microstructure measurements indicated that polycrystalline tetragonal ZrO2 (TZP) was achieved in the 1Yb1\u20132Y and 1Gd1\u20132Y grades, whereas the 4Yb1\u20132Y ceramic was almost fully stabilized cubic ZrO2 (FSZ) and all other investigated stabilizer combinations resulted in partially stabilized zirconia (PSZ). Complex impedance analysis showed that the conductivity of the xGd1Y and xYb1\u20132Y co-doped zirconia ceramics increased with increasing Gd2O3 and Yb2O3 content. The xGd1Y grade had a lower conductivity than the xYb1Y and xYb2Y ceramics. The conductivity behaviour was assessed and explained in terms of the cubic phase content and dopant ionic radius.", "meta": {"doi": "10.1016/j.ssi.2008.03.003"}, "_input_hash": 2049536323, "_task_hash": -765663923, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "suspension", "start": 2, "end": 12, "id": 1, "annotation": null}, {"text": "stabilizer", "start": 13, "end": 23, "id": 2, "annotation": null}, {"text": "-", "start": 24, "end": 25, "id": 3, "annotation": null}, {"text": "coating", "start": 26, "end": 33, "id": 4, "annotation": null}, {"text": "technique", "start": 34, "end": 43, "id": 5, "annotation": null}, {"text": "was", "start": 44, "end": 47, "id": 6, "annotation": null}, {"text": "employed", "start": 48, "end": 56, "id": 7, "annotation": null}, {"text": "to", "start": 57, "end": 59, "id": 8, "annotation": null}, {"text": "prepare", "start": 60, "end": 67, "id": 9, "annotation": null}, {"text": "x", "start": 68, "end": 69, "id": 10, "annotation": "DOPMODQ"}, {"text": "mol%", "start": 70, "end": 74, "id": 11, "annotation": "DOPMODQ"}, {"text": "Yb2O3", "start": 75, "end": 80, "id": 12, "annotation": "DOPANT"}, {"text": "or", "start": 81, "end": 83, "id": 13, "annotation": null}, {"text": "Gd2O3", "start": 84, "end": 89, "id": 14, "annotation": "DOPANT"}, {"text": "(", "start": 90, "end": 91, "id": 15, "annotation": null}, {"text": "x=1.0", "start": 92, "end": 97, "id": 16, "annotation": "DOPMODQ"}, {"text": ",", "start": 98, "end": 99, "id": 17, "annotation": "DOPMODQ"}, {"text": "2.0", "start": 100, "end": 103, "id": 18, "annotation": "DOPMODQ"}, {"text": ",", "start": 104, "end": 105, "id": 19, "annotation": "DOPMODQ"}, {"text": "3.0", "start": 106, "end": 109, "id": 20, "annotation": "DOPMODQ"}, {"text": "and", "start": 110, "end": 113, "id": 21, "annotation": "DOPMODQ"}, {"text": "4.0", "start": 114, "end": 117, "id": 22, "annotation": "DOPMODQ"}, {"text": ")", "start": 118, "end": 119, "id": 23, "annotation": null}, {"text": "co", "start": 120, "end": 122, "id": 24, "annotation": null}, {"text": "-", "start": 123, "end": 124, "id": 25, "annotation": null}, {"text": "stabilized", "start": 125, "end": 135, "id": 26, "annotation": null}, {"text": "1.0", "start": 136, "end": 139, "id": 27, "annotation": "DOPMODQ"}, {"text": "or", "start": 140, "end": 142, "id": 28, "annotation": "DOPMODQ"}, {"text": "2.0", "start": 143, "end": 146, "id": 29, "annotation": "DOPMODQ"}, {"text": "mol%", "start": 147, "end": 151, "id": 30, "annotation": "DOPMODQ"}, {"text": "Y2O3", "start": 152, "end": 156, "id": 31, "annotation": "DOPANT"}, {"text": "doped", "start": 157, "end": 162, "id": 32, "annotation": null}, {"text": "ZrO2", "start": 163, "end": 167, "id": 33, "annotation": "BASEMAT"}, {"text": "nanopowders", "start": 168, "end": 179, "id": 34, "annotation": null}, {"text": "(", "start": 180, "end": 181, "id": 35, "annotation": null}, {"text": "xYb1Y", "start": 182, "end": 187, "id": 36, "annotation": null}, {"text": ",", "start": 188, "end": 189, "id": 37, "annotation": null}, {"text": "xYb2Y", "start": 190, "end": 195, "id": 38, "annotation": null}, {"text": ",", "start": 196, "end": 197, "id": 39, "annotation": null}, {"text": "xGd1Y", "start": 198, "end": 203, "id": 40, "annotation": null}, {"text": ")", "start": 204, "end": 205, "id": 41, "annotation": null}, {"text": ".", "start": 206, "end": 207, "id": 42, "annotation": null}], [{"text": "Fully", "start": 208, "end": 213, "id": 43, "annotation": null}, {"text": "dense", "start": 214, "end": 219, "id": 44, "annotation": null}, {"text": "Yb2O3", "start": 220, "end": 225, "id": 45, "annotation": "DOPANT"}, {"text": "/", "start": 226, "end": 227, "id": 46, "annotation": null}, {"text": "Gd2O3", "start": 228, "end": 233, "id": 47, "annotation": "DOPANT"}, {"text": "and", "start": 234, "end": 237, "id": 48, "annotation": null}, {"text": "Y2O3", "start": 238, "end": 242, "id": 49, "annotation": "DOPANT"}, {"text": "co", "start": 243, "end": 245, "id": 50, "annotation": null}, {"text": "-", "start": 246, "end": 247, "id": 51, "annotation": null}, {"text": "doped", "start": 248, "end": 253, "id": 52, "annotation": null}, {"text": "ZrO2", "start": 254, "end": 258, "id": 53, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 259, "end": 267, "id": 54, "annotation": null}, {"text": "were", "start": 268, "end": 272, "id": 55, "annotation": null}, {"text": "obtained", "start": 273, "end": 281, "id": 56, "annotation": null}, {"text": "by", "start": 282, "end": 284, "id": 57, "annotation": null}, {"text": "means", "start": 285, "end": 290, "id": 58, "annotation": null}, {"text": "of", "start": 291, "end": 293, "id": 59, "annotation": null}, {"text": "pressureless", "start": 294, "end": 306, "id": 60, "annotation": null}, {"text": "sintering", "start": 307, "end": 316, "id": 61, "annotation": null}, {"text": "in", "start": 317, "end": 319, "id": 62, "annotation": null}, {"text": "air", "start": 320, "end": 323, "id": 63, "annotation": null}, {"text": "at", "start": 324, "end": 326, "id": 64, "annotation": null}, {"text": "1450", "start": 327, "end": 331, "id": 65, "annotation": null}, {"text": "\u00b0", "start": 332, "end": 333, "id": 66, "annotation": null}, {"text": "C", "start": 334, "end": 335, "id": 67, "annotation": null}, {"text": ".", "start": 336, "end": 337, "id": 68, "annotation": null}], [{"text": "Phase", "start": 338, "end": 343, "id": 69, "annotation": null}, {"text": "assemblage", "start": 344, "end": 354, "id": 70, "annotation": null}, {"text": ",", "start": 355, "end": 356, "id": 71, "annotation": null}, {"text": "microstructure", "start": 357, "end": 371, "id": 72, "annotation": null}, {"text": "measurements", "start": 372, "end": 384, "id": 73, "annotation": null}, {"text": "indicated", "start": 385, "end": 394, "id": 74, "annotation": null}, {"text": "that", "start": 395, "end": 399, "id": 75, "annotation": null}, {"text": "polycrystalline", "start": 400, "end": 415, "id": 76, "annotation": null}, {"text": "tetragonal", "start": 416, "end": 426, "id": 77, "annotation": null}, {"text": "ZrO2", "start": 427, "end": 431, "id": 78, "annotation": null}, {"text": "(", "start": 432, "end": 433, "id": 79, "annotation": null}, {"text": "TZP", "start": 434, "end": 437, "id": 80, "annotation": null}, {"text": ")", "start": 438, "end": 439, "id": 81, "annotation": null}, {"text": "was", "start": 440, "end": 443, "id": 82, "annotation": null}, {"text": "achieved", "start": 444, "end": 452, "id": 83, "annotation": null}, {"text": "in", "start": 453, "end": 455, "id": 84, "annotation": null}, {"text": "the", "start": 456, "end": 459, "id": 85, "annotation": null}, {"text": "1Yb1\u20132Y", "start": 460, "end": 467, "id": 86, "annotation": null}, {"text": "and", "start": 468, "end": 471, "id": 87, "annotation": null}, {"text": "1Gd1\u20132Y", "start": 472, "end": 479, "id": 88, "annotation": null}, {"text": "grades", "start": 480, "end": 486, "id": 89, "annotation": null}, {"text": ",", "start": 487, "end": 488, "id": 90, "annotation": null}, {"text": "whereas", "start": 489, "end": 496, "id": 91, "annotation": null}, {"text": "the", "start": 497, "end": 500, "id": 92, "annotation": null}, {"text": "4Yb1\u20132Y", "start": 501, "end": 508, "id": 93, "annotation": null}, {"text": "ceramic", "start": 509, "end": 516, "id": 94, "annotation": null}, {"text": "was", "start": 517, "end": 520, "id": 95, "annotation": null}, {"text": "almost", "start": 521, "end": 527, "id": 96, "annotation": null}, {"text": "fully", "start": 528, "end": 533, "id": 97, "annotation": null}, {"text": "stabilized", "start": 534, "end": 544, "id": 98, "annotation": null}, {"text": "cubic", "start": 545, "end": 550, "id": 99, "annotation": null}, {"text": "ZrO2", "start": 551, "end": 555, "id": 100, "annotation": null}, {"text": "(", "start": 556, "end": 557, "id": 101, "annotation": null}, {"text": "FSZ", "start": 558, "end": 561, "id": 102, "annotation": null}, {"text": ")", "start": 562, "end": 563, "id": 103, "annotation": null}, {"text": "and", "start": 564, "end": 567, "id": 104, "annotation": null}, {"text": "all", "start": 568, "end": 571, "id": 105, "annotation": null}, {"text": "other", "start": 572, "end": 577, "id": 106, "annotation": null}, {"text": "investigated", "start": 578, "end": 590, "id": 107, "annotation": null}, {"text": "stabilizer", "start": 591, "end": 601, "id": 108, "annotation": null}, {"text": "combinations", "start": 602, "end": 614, "id": 109, "annotation": null}, {"text": "resulted", "start": 615, "end": 623, "id": 110, "annotation": null}, {"text": "in", "start": 624, "end": 626, "id": 111, "annotation": null}, {"text": "partially", "start": 627, "end": 636, "id": 112, "annotation": null}, {"text": "stabilized", "start": 637, "end": 647, "id": 113, "annotation": null}, {"text": "zirconia", "start": 648, "end": 656, "id": 114, "annotation": null}, {"text": "(", "start": 657, "end": 658, "id": 115, "annotation": null}, {"text": "PSZ", "start": 659, "end": 662, "id": 116, "annotation": null}, {"text": ")", "start": 663, "end": 664, "id": 117, "annotation": null}, {"text": ".", "start": 665, "end": 666, "id": 118, "annotation": null}], [{"text": "Complex", "start": 667, "end": 674, "id": 119, "annotation": null}, {"text": "impedance", "start": 675, "end": 684, "id": 120, "annotation": null}, {"text": "analysis", "start": 685, "end": 693, "id": 121, "annotation": null}, {"text": "showed", "start": 694, "end": 700, "id": 122, "annotation": null}, {"text": "that", "start": 701, "end": 705, "id": 123, "annotation": null}, {"text": "the", "start": 706, "end": 709, "id": 124, "annotation": null}, {"text": "conductivity", "start": 710, "end": 722, "id": 125, "annotation": null}, {"text": "of", "start": 723, "end": 725, "id": 126, "annotation": null}, {"text": "the", "start": 726, "end": 729, "id": 127, "annotation": null}, {"text": "xGd1Y", "start": 730, "end": 735, "id": 128, "annotation": "DOPANT"}, {"text": "and", "start": 736, "end": 739, "id": 129, "annotation": null}, {"text": "xYb1\u20132Y", "start": 740, "end": 747, "id": 130, "annotation": "DOPANT"}, {"text": "co", "start": 748, "end": 750, "id": 131, "annotation": null}, {"text": "-", "start": 751, "end": 752, "id": 132, "annotation": null}, {"text": "doped", "start": 753, "end": 758, "id": 133, "annotation": null}, {"text": "zirconia", "start": 759, "end": 767, "id": 134, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 768, "end": 776, "id": 135, "annotation": null}, {"text": "increased", "start": 777, "end": 786, "id": 136, "annotation": null}, {"text": "with", "start": 787, "end": 791, "id": 137, "annotation": null}, {"text": "increasing", "start": 792, "end": 802, "id": 138, "annotation": null}, {"text": "Gd2O3", "start": 803, "end": 808, "id": 139, "annotation": "DOPANT"}, {"text": "and", "start": 809, "end": 812, "id": 140, "annotation": null}, {"text": "Yb2O3", "start": 813, "end": 818, "id": 141, "annotation": "DOPANT"}, {"text": "content", "start": 819, "end": 826, "id": 142, "annotation": null}, {"text": ".", "start": 827, "end": 828, "id": 143, "annotation": null}], [{"text": "The", "start": 829, "end": 832, "id": 144, "annotation": null}, {"text": "xGd1Y", "start": 833, "end": 838, "id": 145, "annotation": null}, {"text": "grade", "start": 839, "end": 844, "id": 146, "annotation": null}, {"text": "had", "start": 845, "end": 848, "id": 147, "annotation": null}, {"text": "a", "start": 849, "end": 850, "id": 148, "annotation": null}, {"text": "lower", "start": 851, "end": 856, "id": 149, "annotation": null}, {"text": "conductivity", "start": 857, "end": 869, "id": 150, "annotation": null}, {"text": "than", "start": 870, "end": 874, "id": 151, "annotation": null}, {"text": "the", "start": 875, "end": 878, "id": 152, "annotation": null}, {"text": "xYb1Y", "start": 879, "end": 884, "id": 153, "annotation": null}, {"text": "and", "start": 885, "end": 888, "id": 154, "annotation": null}, {"text": "xYb2Y", "start": 889, "end": 894, "id": 155, "annotation": null}, {"text": "ceramics", "start": 895, "end": 903, "id": 156, "annotation": null}, {"text": ".", "start": 904, "end": 905, "id": 157, "annotation": null}], [{"text": "The", "start": 906, "end": 909, "id": 158, "annotation": null}, {"text": "conductivity", "start": 910, "end": 922, "id": 159, "annotation": null}, {"text": "behaviour", "start": 923, "end": 932, "id": 160, "annotation": null}, {"text": "was", "start": 933, "end": 936, "id": 161, "annotation": null}, {"text": "assessed", "start": 937, "end": 945, "id": 162, "annotation": null}, {"text": "and", "start": 946, "end": 949, "id": 163, "annotation": null}, {"text": "explained", "start": 950, "end": 959, "id": 164, "annotation": null}, {"text": "in", "start": 960, "end": 962, "id": 165, "annotation": null}, {"text": "terms", "start": 963, "end": 968, "id": 166, "annotation": null}, {"text": "of", "start": 969, "end": 971, "id": 167, "annotation": null}, {"text": "the", "start": 972, "end": 975, "id": 168, "annotation": null}, {"text": "cubic", "start": 976, "end": 981, "id": 169, "annotation": null}, {"text": "phase", "start": 982, "end": 987, "id": 170, "annotation": null}, {"text": "content", "start": 988, "end": 995, "id": 171, "annotation": null}, {"text": "and", "start": 996, "end": 999, "id": 172, "annotation": null}, {"text": "dopant", "start": 1000, "end": 1006, "id": 173, "annotation": null}, {"text": "ionic", "start": 1007, "end": 1012, "id": 174, "annotation": null}, {"text": "radius", "start": 1013, "end": 1019, "id": 175, "annotation": null}, {"text": ".", "start": 1020, "end": 1021, "id": 176, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Ho3+- and Yb3+-codoped Sr4La2Ti4Nb6O30 (Sr4La1.94\u2013xHo0.06YbxTi4Nb6O30, abbreviated as SLTN: Ho-Ybx) ceramics have been synthesized, and their structural, up-conversion (UC) photoluminescence, and dielectric properties have been carefully investigated. Through Rietveld structural refinement, SLTN: Ho-Ybx samples are determined as single tetragonal tungsten bronze (TTB) phase with space group P4/mbm in which larger Sr2+ ions fill the A2-sites, relative smaller La3+, Ho3+, and Yb3+ ions occupy the A1-sites, while Ti4+ and Nb4+ ions fill the B-sites. Under 980nm near infrared (NIR) excitation, bright UC green emission, relatively weak red and near-infrared (NIR) emissions, originating from 5F4/5S2\u21925I8, 5F5\u21925I8, and 5F4/5S2\u21925I7 transitions of Ho3+ ions, are confirmed for SLTN: Ho-Ybx. Two-photon energy transfer process is proved through pumping laser power dependence of emission intensity measurement. Furthermore, the influence of Ho3+- and Yb3+- ions on the dielectric properties of SLTN: Ho-Ybx is also investigated and the temperature stability of dielectric permittivity is improved.", "meta": {"doi": "10.1016/j.materresbull.2014.12.067"}, "_input_hash": -859735792, "_task_hash": 1414728057, "tokens": [[{"text": "Ho3", "start": 0, "end": 3, "id": 0, "annotation": "DOPANT"}, {"text": "+", "start": 4, "end": 5, "id": 1, "annotation": "DOPANT"}, {"text": "-", "start": 6, "end": 7, "id": 2, "annotation": null}, {"text": "and", "start": 8, "end": 11, "id": 3, "annotation": null}, {"text": "Yb3", "start": 12, "end": 15, "id": 4, "annotation": "DOPANT"}, {"text": "+", "start": 16, "end": 17, "id": 5, "annotation": "DOPANT"}, {"text": "-codoped", "start": 18, "end": 26, "id": 6, "annotation": null}, {"text": "Sr4La2Ti4Nb6O30", "start": 27, "end": 42, "id": 7, "annotation": "BASEMAT"}, {"text": "(", "start": 43, "end": 44, "id": 8, "annotation": null}, {"text": "Sr4La1.94\u2013xHo0.06YbxTi4Nb6O30", "start": 45, "end": 74, "id": 9, "annotation": null}, {"text": ",", "start": 75, "end": 76, "id": 10, "annotation": null}, {"text": "abbreviated", "start": 77, "end": 88, "id": 11, "annotation": null}, {"text": "as", "start": 89, "end": 91, "id": 12, "annotation": null}, {"text": "SLTN", "start": 92, "end": 96, "id": 13, "annotation": "BASEMAT"}, {"text": ":", "start": 97, "end": 98, "id": 14, "annotation": null}, {"text": "Ho", "start": 99, "end": 101, "id": 15, "annotation": "DOPANT"}, {"text": "-", "start": 102, "end": 103, "id": 16, "annotation": null}, {"text": "Ybx", "start": 104, "end": 107, "id": 17, "annotation": "DOPANT"}, {"text": ")", "start": 108, "end": 109, "id": 18, "annotation": null}, {"text": "ceramics", "start": 110, "end": 118, "id": 19, "annotation": null}, {"text": "have", "start": 119, "end": 123, "id": 20, "annotation": null}, {"text": "been", "start": 124, "end": 128, "id": 21, "annotation": null}, {"text": "synthesized", "start": 129, "end": 140, "id": 22, "annotation": null}, {"text": ",", "start": 141, "end": 142, "id": 23, "annotation": null}, {"text": "and", "start": 143, "end": 146, "id": 24, "annotation": null}, {"text": "their", "start": 147, "end": 152, "id": 25, "annotation": null}, {"text": "structural", "start": 153, "end": 163, "id": 26, "annotation": null}, {"text": ",", "start": 164, "end": 165, "id": 27, "annotation": null}, {"text": "up", "start": 166, "end": 168, "id": 28, "annotation": null}, {"text": "-", "start": 169, "end": 170, "id": 29, "annotation": null}, {"text": "conversion", "start": 171, "end": 181, "id": 30, "annotation": null}, {"text": "(", "start": 182, "end": 183, "id": 31, "annotation": null}, {"text": "UC", "start": 184, "end": 186, "id": 32, "annotation": null}, {"text": ")", "start": 187, "end": 188, "id": 33, "annotation": null}, {"text": "photoluminescence", "start": 189, "end": 206, "id": 34, "annotation": null}, {"text": ",", "start": 207, "end": 208, "id": 35, "annotation": null}, {"text": "and", "start": 209, "end": 212, "id": 36, "annotation": null}, {"text": "dielectric", "start": 213, "end": 223, "id": 37, "annotation": null}, {"text": "properties", "start": 224, "end": 234, "id": 38, "annotation": null}, {"text": "have", "start": 235, "end": 239, "id": 39, "annotation": null}, {"text": "been", "start": 240, "end": 244, "id": 40, "annotation": null}, {"text": "carefully", "start": 245, "end": 254, "id": 41, "annotation": null}, {"text": "investigated", "start": 255, "end": 267, "id": 42, "annotation": null}, {"text": ".", "start": 268, "end": 269, "id": 43, "annotation": null}], [{"text": "Through", "start": 270, "end": 277, "id": 44, "annotation": null}, {"text": "Rietveld", "start": 278, "end": 286, "id": 45, "annotation": null}, {"text": "structural", "start": 287, "end": 297, "id": 46, "annotation": null}, {"text": "refinement", "start": 298, "end": 308, "id": 47, "annotation": null}, {"text": ",", "start": 309, "end": 310, "id": 48, "annotation": null}, {"text": "SLTN", "start": 311, "end": 315, "id": 49, "annotation": "BASEMAT"}, {"text": ":", "start": 316, "end": 317, "id": 50, "annotation": null}, {"text": "Ho", "start": 318, "end": 320, "id": 51, "annotation": "DOPANT"}, {"text": "-", "start": 321, "end": 322, "id": 52, "annotation": null}, {"text": "Ybx", "start": 323, "end": 326, "id": 53, "annotation": "DOPANT"}, {"text": "samples", "start": 327, "end": 334, "id": 54, "annotation": null}, {"text": "are", "start": 335, "end": 338, "id": 55, "annotation": null}, {"text": "determined", "start": 339, "end": 349, "id": 56, "annotation": null}, {"text": "as", "start": 350, "end": 352, "id": 57, "annotation": null}, {"text": "single", "start": 353, "end": 359, "id": 58, "annotation": null}, {"text": "tetragonal", "start": 360, "end": 370, "id": 59, "annotation": null}, {"text": "tungsten", "start": 371, "end": 379, "id": 60, "annotation": null}, {"text": "bronze", "start": 380, "end": 386, "id": 61, "annotation": null}, {"text": "(", "start": 387, "end": 388, "id": 62, "annotation": null}, {"text": "TTB", "start": 389, "end": 392, "id": 63, "annotation": null}, {"text": ")", "start": 393, "end": 394, "id": 64, "annotation": null}, {"text": "phase", "start": 395, "end": 400, "id": 65, "annotation": null}, {"text": "with", "start": 401, "end": 405, "id": 66, "annotation": null}, {"text": "space", "start": 406, "end": 411, "id": 67, "annotation": null}, {"text": "group", "start": 412, "end": 417, "id": 68, "annotation": null}, {"text": "P4", "start": 418, "end": 420, "id": 69, "annotation": null}, {"text": "/", "start": 421, "end": 422, "id": 70, "annotation": null}, {"text": "mbm", "start": 423, "end": 426, "id": 71, "annotation": null}, {"text": "in", "start": 427, "end": 429, "id": 72, "annotation": null}, {"text": "which", "start": 430, "end": 435, "id": 73, "annotation": null}, {"text": "larger", "start": 436, "end": 442, "id": 74, "annotation": null}, {"text": "Sr2", "start": 443, "end": 446, "id": 75, "annotation": null}, {"text": "+", "start": 447, "end": 448, "id": 76, "annotation": null}, {"text": "ions", "start": 449, "end": 453, "id": 77, "annotation": null}, {"text": "fill", "start": 454, "end": 458, "id": 78, "annotation": null}, {"text": "the", "start": 459, "end": 462, "id": 79, "annotation": null}, {"text": "A2-sites", "start": 463, "end": 471, "id": 80, "annotation": null}, {"text": ",", "start": 472, "end": 473, "id": 81, "annotation": null}, {"text": "relative", "start": 474, "end": 482, "id": 82, "annotation": null}, {"text": "smaller", "start": 483, "end": 490, "id": 83, "annotation": null}, {"text": "La3", "start": 491, "end": 494, "id": 84, "annotation": null}, {"text": "+", "start": 495, "end": 496, "id": 85, "annotation": null}, {"text": ",", "start": 497, "end": 498, "id": 86, "annotation": null}, {"text": "Ho3", "start": 499, "end": 502, "id": 87, "annotation": null}, {"text": "+", "start": 503, "end": 504, "id": 88, "annotation": null}, {"text": ",", "start": 505, "end": 506, "id": 89, "annotation": null}, {"text": "and", "start": 507, "end": 510, "id": 90, "annotation": null}, {"text": "Yb3", "start": 511, "end": 514, "id": 91, "annotation": null}, {"text": "+", "start": 515, "end": 516, "id": 92, "annotation": null}, {"text": "ions", "start": 517, "end": 521, "id": 93, "annotation": null}, {"text": "occupy", "start": 522, "end": 528, "id": 94, "annotation": null}, {"text": "the", "start": 529, "end": 532, "id": 95, "annotation": null}, {"text": "A1-sites", "start": 533, "end": 541, "id": 96, "annotation": null}, {"text": ",", "start": 542, "end": 543, "id": 97, "annotation": null}, {"text": "while", "start": 544, "end": 549, "id": 98, "annotation": null}, {"text": "Ti4", "start": 550, "end": 553, "id": 99, "annotation": null}, {"text": "+", "start": 554, "end": 555, "id": 100, "annotation": null}, {"text": "and", "start": 556, "end": 559, "id": 101, "annotation": null}, {"text": "Nb4", "start": 560, "end": 563, "id": 102, "annotation": null}, {"text": "+", "start": 564, "end": 565, "id": 103, "annotation": null}, {"text": "ions", "start": 566, "end": 570, "id": 104, "annotation": null}, {"text": "fill", "start": 571, "end": 575, "id": 105, "annotation": null}, {"text": "the", "start": 576, "end": 579, "id": 106, "annotation": null}, {"text": "B", "start": 580, "end": 581, "id": 107, "annotation": null}, {"text": "-", "start": 582, "end": 583, "id": 108, "annotation": null}, {"text": "sites", "start": 584, "end": 589, "id": 109, "annotation": null}, {"text": ".", "start": 590, "end": 591, "id": 110, "annotation": null}], [{"text": "Under", "start": 592, "end": 597, "id": 111, "annotation": null}, {"text": "980", "start": 598, "end": 601, "id": 112, "annotation": null}, {"text": "nm", "start": 602, "end": 604, "id": 113, "annotation": null}, {"text": "near", "start": 605, "end": 609, "id": 114, "annotation": null}, {"text": "infrared", "start": 610, "end": 618, "id": 115, "annotation": null}, {"text": "(", "start": 619, "end": 620, "id": 116, "annotation": null}, {"text": "NIR", "start": 621, "end": 624, "id": 117, "annotation": null}, {"text": ")", "start": 625, "end": 626, "id": 118, "annotation": null}, {"text": "excitation", "start": 627, "end": 637, "id": 119, "annotation": null}, {"text": ",", "start": 638, "end": 639, "id": 120, "annotation": null}, {"text": "bright", "start": 640, "end": 646, "id": 121, "annotation": null}, {"text": "UC", "start": 647, "end": 649, "id": 122, "annotation": null}, {"text": "green", "start": 650, "end": 655, "id": 123, "annotation": null}, {"text": "emission", "start": 656, "end": 664, "id": 124, "annotation": null}, {"text": ",", "start": 665, "end": 666, "id": 125, "annotation": null}, {"text": "relatively", "start": 667, "end": 677, "id": 126, "annotation": null}, {"text": "weak", "start": 678, "end": 682, "id": 127, "annotation": null}, {"text": "red", "start": 683, "end": 686, "id": 128, "annotation": null}, {"text": "and", "start": 687, "end": 690, "id": 129, "annotation": null}, {"text": "near", "start": 691, "end": 695, "id": 130, "annotation": null}, {"text": "-", "start": 696, "end": 697, "id": 131, "annotation": null}, {"text": "infrared", "start": 698, "end": 706, "id": 132, "annotation": null}, {"text": "(", "start": 707, "end": 708, "id": 133, "annotation": null}, {"text": "NIR", "start": 709, "end": 712, "id": 134, "annotation": null}, {"text": ")", "start": 713, "end": 714, "id": 135, "annotation": null}, {"text": "emissions", "start": 715, "end": 724, "id": 136, "annotation": null}, {"text": ",", "start": 725, "end": 726, "id": 137, "annotation": null}, {"text": "originating", "start": 727, "end": 738, "id": 138, "annotation": null}, {"text": "from", "start": 739, "end": 743, "id": 139, "annotation": null}, {"text": "5F4/5S2\u21925I8", "start": 744, "end": 755, "id": 140, "annotation": null}, {"text": ",", "start": 756, "end": 757, "id": 141, "annotation": null}, {"text": "5F5\u21925I8", "start": 758, "end": 765, "id": 142, "annotation": null}, {"text": ",", "start": 766, "end": 767, "id": 143, "annotation": null}, {"text": "and", "start": 768, "end": 771, "id": 144, "annotation": null}, {"text": "5F4/5S2\u21925I7", "start": 772, "end": 783, "id": 145, "annotation": null}, {"text": "transitions", "start": 784, "end": 795, "id": 146, "annotation": null}, {"text": "of", "start": 796, "end": 798, "id": 147, "annotation": null}, {"text": "Ho3", "start": 799, "end": 802, "id": 148, "annotation": null}, {"text": "+", "start": 803, "end": 804, "id": 149, "annotation": null}, {"text": "ions", "start": 805, "end": 809, "id": 150, "annotation": null}, {"text": ",", "start": 810, "end": 811, "id": 151, "annotation": null}, {"text": "are", "start": 812, "end": 815, "id": 152, "annotation": null}, {"text": "confirmed", "start": 816, "end": 825, "id": 153, "annotation": null}, {"text": "for", "start": 826, "end": 829, "id": 154, "annotation": null}, {"text": "SLTN", "start": 830, "end": 834, "id": 155, "annotation": "BASEMAT"}, {"text": ":", "start": 835, "end": 836, "id": 156, "annotation": null}, {"text": "Ho", "start": 837, "end": 839, "id": 157, "annotation": "DOPANT"}, {"text": "-", "start": 840, "end": 841, "id": 158, "annotation": null}, {"text": "Ybx", "start": 842, "end": 845, "id": 159, "annotation": "DOPANT"}, {"text": ".", "start": 846, "end": 847, "id": 160, "annotation": null}], [{"text": "Two", "start": 848, "end": 851, "id": 161, "annotation": null}, {"text": "-", "start": 852, "end": 853, "id": 162, "annotation": null}, {"text": "photon", "start": 854, "end": 860, "id": 163, "annotation": null}, {"text": "energy", "start": 861, "end": 867, "id": 164, "annotation": null}, {"text": "transfer", "start": 868, "end": 876, "id": 165, "annotation": null}, {"text": "process", "start": 877, "end": 884, "id": 166, "annotation": null}, {"text": "is", "start": 885, "end": 887, "id": 167, "annotation": null}, {"text": "proved", "start": 888, "end": 894, "id": 168, "annotation": null}, {"text": "through", "start": 895, "end": 902, "id": 169, "annotation": null}, {"text": "pumping", "start": 903, "end": 910, "id": 170, "annotation": null}, {"text": "laser", "start": 911, "end": 916, "id": 171, "annotation": null}, {"text": "power", "start": 917, "end": 922, "id": 172, "annotation": null}, {"text": "dependence", "start": 923, "end": 933, "id": 173, "annotation": null}, {"text": "of", "start": 934, "end": 936, "id": 174, "annotation": null}, {"text": "emission", "start": 937, "end": 945, "id": 175, "annotation": null}, {"text": "intensity", "start": 946, "end": 955, "id": 176, "annotation": null}, {"text": "measurement", "start": 956, "end": 967, "id": 177, "annotation": null}, {"text": ".", "start": 968, "end": 969, "id": 178, "annotation": null}], [{"text": "Furthermore", "start": 970, "end": 981, "id": 179, "annotation": null}, {"text": ",", "start": 982, "end": 983, "id": 180, "annotation": null}, {"text": "the", "start": 984, "end": 987, "id": 181, "annotation": null}, {"text": "influence", "start": 988, "end": 997, "id": 182, "annotation": null}, {"text": "of", "start": 998, "end": 1000, "id": 183, "annotation": null}, {"text": "Ho3", "start": 1001, "end": 1004, "id": 184, "annotation": null}, {"text": "+", "start": 1005, "end": 1006, "id": 185, "annotation": null}, {"text": "-", "start": 1007, "end": 1008, "id": 186, "annotation": null}, {"text": "and", "start": 1009, "end": 1012, "id": 187, "annotation": null}, {"text": "Yb3", "start": 1013, "end": 1016, "id": 188, "annotation": null}, {"text": "+", "start": 1017, "end": 1018, "id": 189, "annotation": null}, {"text": "-", "start": 1019, "end": 1020, "id": 190, "annotation": null}, {"text": "ions", "start": 1021, "end": 1025, "id": 191, "annotation": null}, {"text": "on", "start": 1026, "end": 1028, "id": 192, "annotation": null}, {"text": "the", "start": 1029, "end": 1032, "id": 193, "annotation": null}, {"text": "dielectric", "start": 1033, "end": 1043, "id": 194, "annotation": null}, {"text": "properties", "start": 1044, "end": 1054, "id": 195, "annotation": null}, {"text": "of", "start": 1055, "end": 1057, "id": 196, "annotation": null}, {"text": "SLTN", "start": 1058, "end": 1062, "id": 197, "annotation": "BASEMAT"}, {"text": ":", "start": 1063, "end": 1064, "id": 198, "annotation": null}, {"text": "Ho", "start": 1065, "end": 1067, "id": 199, "annotation": "DOPANT"}, {"text": "-", "start": 1068, "end": 1069, "id": 200, "annotation": null}, {"text": "Ybx", "start": 1070, "end": 1073, "id": 201, "annotation": "DOPANT"}, {"text": "is", "start": 1074, "end": 1076, "id": 202, "annotation": null}, {"text": "also", "start": 1077, "end": 1081, "id": 203, "annotation": null}, {"text": "investigated", "start": 1082, "end": 1094, "id": 204, "annotation": null}, {"text": "and", "start": 1095, "end": 1098, "id": 205, "annotation": null}, {"text": "the", "start": 1099, "end": 1102, "id": 206, "annotation": null}, {"text": "temperature", "start": 1103, "end": 1114, "id": 207, "annotation": null}, {"text": "stability", "start": 1115, "end": 1124, "id": 208, "annotation": null}, {"text": "of", "start": 1125, "end": 1127, "id": 209, "annotation": null}, {"text": "dielectric", "start": 1128, "end": 1138, "id": 210, "annotation": null}, {"text": "permittivity", "start": 1139, "end": 1151, "id": 211, "annotation": null}, {"text": "is", "start": 1152, "end": 1154, "id": 212, "annotation": null}, {"text": "improved", "start": 1155, "end": 1163, "id": 213, "annotation": null}, {"text": ".", "start": 1164, "end": 1165, "id": 214, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "We have investigated the photoluminescence (PL), scintillation and thermally-stimulated luminescence (TSL) dosimeter properties of MgO ceramic doped with C ions (0.001, 0.01 and 0.1%). The samples were synthesized by a Spark Plasma Sintering (SPS) technique. The PL emission peaks appeared around 400 and 750\u00a0nm in all the samples. The PL decay time constants at 400\u00a0nm were \u223c10 and \u223c100 ns which were on the typical order of F+ center in the undoped MgO. The scintillation emission peaks were detected at 330, 400 and 750\u00a0nm under X-ray irradiation. The TSL glow curves showed the \u223c250\u00a0\u00b0C peak in 0.1% C-doped sample. The TSL response was confirmed to be linear to the irradiation dose over the dose range from 0.1 to 1000\u00a0mGy. As a result, the sensitivity of MgO was improved by C-doping.", "meta": {"doi": "10.1016/j.radmeas.2016.07.004"}, "_input_hash": -1907143485, "_task_hash": 1960784501, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "have", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "investigated", "start": 8, "end": 20, "id": 2, "annotation": null}, {"text": "the", "start": 21, "end": 24, "id": 3, "annotation": null}, {"text": "photoluminescence", "start": 25, "end": 42, "id": 4, "annotation": null}, {"text": "(", "start": 43, "end": 44, "id": 5, "annotation": null}, {"text": "PL", "start": 45, "end": 47, "id": 6, "annotation": null}, {"text": ")", "start": 48, "end": 49, "id": 7, "annotation": null}, {"text": ",", "start": 50, "end": 51, "id": 8, "annotation": null}, {"text": "scintillation", "start": 52, "end": 65, "id": 9, "annotation": null}, {"text": "and", "start": 66, "end": 69, "id": 10, "annotation": null}, {"text": "thermally", "start": 70, "end": 79, "id": 11, "annotation": null}, {"text": "-", "start": 80, "end": 81, "id": 12, "annotation": null}, {"text": "stimulated", "start": 82, "end": 92, "id": 13, "annotation": null}, {"text": "luminescence", "start": 93, "end": 105, "id": 14, "annotation": null}, {"text": "(", "start": 106, "end": 107, "id": 15, "annotation": null}, {"text": "TSL", "start": 108, "end": 111, "id": 16, "annotation": null}, {"text": ")", "start": 112, "end": 113, "id": 17, "annotation": null}, {"text": "dosimeter", "start": 114, "end": 123, "id": 18, "annotation": null}, {"text": "properties", "start": 124, "end": 134, "id": 19, "annotation": null}, {"text": "of", "start": 135, "end": 137, "id": 20, "annotation": null}, {"text": "MgO", "start": 138, "end": 141, "id": 21, "annotation": "BASEMAT"}, {"text": "ceramic", "start": 142, "end": 149, "id": 22, "annotation": null}, {"text": "doped", "start": 150, "end": 155, "id": 23, "annotation": null}, {"text": "with", "start": 156, "end": 160, "id": 24, "annotation": null}, {"text": "C", "start": 161, "end": 162, "id": 25, "annotation": "DOPANT"}, {"text": "ions", "start": 163, "end": 167, "id": 26, "annotation": null}, {"text": "(", "start": 168, "end": 169, "id": 27, "annotation": null}, {"text": "0.001", "start": 170, "end": 175, "id": 28, "annotation": "DOPMODQ"}, {"text": ",", "start": 176, "end": 177, "id": 29, "annotation": "DOPMODQ"}, {"text": "0.01", "start": 178, "end": 182, "id": 30, "annotation": "DOPMODQ"}, {"text": "and", "start": 183, "end": 186, "id": 31, "annotation": "DOPMODQ"}, {"text": "0.1", "start": 187, "end": 190, "id": 32, "annotation": "DOPMODQ"}, {"text": "%", "start": 191, "end": 192, "id": 33, "annotation": "DOPMODQ"}, {"text": ")", "start": 193, "end": 194, "id": 34, "annotation": null}, {"text": ".", "start": 195, "end": 196, "id": 35, "annotation": null}], [{"text": "The", "start": 197, "end": 200, "id": 36, "annotation": null}, {"text": "samples", "start": 201, "end": 208, "id": 37, "annotation": null}, {"text": "were", "start": 209, "end": 213, "id": 38, "annotation": null}, {"text": "synthesized", "start": 214, "end": 225, "id": 39, "annotation": null}, {"text": "by", "start": 226, "end": 228, "id": 40, "annotation": null}, {"text": "a", "start": 229, "end": 230, "id": 41, "annotation": null}, {"text": "Spark", "start": 231, "end": 236, "id": 42, "annotation": null}, {"text": "Plasma", "start": 237, "end": 243, "id": 43, "annotation": null}, {"text": "Sintering", "start": 244, "end": 253, "id": 44, "annotation": null}, {"text": "(", "start": 254, "end": 255, "id": 45, "annotation": null}, {"text": "SPS", "start": 256, "end": 259, "id": 46, "annotation": null}, {"text": ")", "start": 260, "end": 261, "id": 47, "annotation": null}, {"text": "technique", "start": 262, "end": 271, "id": 48, "annotation": null}, {"text": ".", "start": 272, "end": 273, "id": 49, "annotation": null}], [{"text": "The", "start": 274, "end": 277, "id": 50, "annotation": null}, {"text": "PL", "start": 278, "end": 280, "id": 51, "annotation": null}, {"text": "emission", "start": 281, "end": 289, "id": 52, "annotation": null}, {"text": "peaks", "start": 290, "end": 295, "id": 53, "annotation": null}, {"text": "appeared", "start": 296, "end": 304, "id": 54, "annotation": null}, {"text": "around", "start": 305, "end": 311, "id": 55, "annotation": null}, {"text": "400", "start": 312, "end": 315, "id": 56, "annotation": null}, {"text": "and", "start": 316, "end": 319, "id": 57, "annotation": null}, {"text": "750", "start": 320, "end": 323, "id": 58, "annotation": null}, {"text": "nm", "start": 324, "end": 326, "id": 60, "annotation": null}, {"text": "in", "start": 327, "end": 329, "id": 61, "annotation": null}, {"text": "all", "start": 330, "end": 333, "id": 62, "annotation": null}, {"text": "the", "start": 334, "end": 337, "id": 63, "annotation": null}, {"text": "samples", "start": 338, "end": 345, "id": 64, "annotation": null}, {"text": ".", "start": 346, "end": 347, "id": 65, "annotation": null}], [{"text": "The", "start": 348, "end": 351, "id": 66, "annotation": null}, {"text": "PL", "start": 352, "end": 354, "id": 67, "annotation": null}, {"text": "decay", "start": 355, "end": 360, "id": 68, "annotation": null}, {"text": "time", "start": 361, "end": 365, "id": 69, "annotation": null}, {"text": "constants", "start": 366, "end": 375, "id": 70, "annotation": null}, {"text": "at", "start": 376, "end": 378, "id": 71, "annotation": null}, {"text": "400", "start": 379, "end": 382, "id": 72, "annotation": null}, {"text": "nm", "start": 383, "end": 385, "id": 74, "annotation": null}, {"text": "were", "start": 386, "end": 390, "id": 75, "annotation": null}, {"text": "\u223c10", "start": 391, "end": 394, "id": 76, "annotation": null}, {"text": "and", "start": 395, "end": 398, "id": 77, "annotation": null}, {"text": "\u223c100", "start": 399, "end": 403, "id": 78, "annotation": null}, {"text": "ns", "start": 404, "end": 406, "id": 79, "annotation": null}, {"text": "which", "start": 407, "end": 412, "id": 80, "annotation": null}, {"text": "were", "start": 413, "end": 417, "id": 81, "annotation": null}, {"text": "on", "start": 418, "end": 420, "id": 82, "annotation": null}, {"text": "the", "start": 421, "end": 424, "id": 83, "annotation": null}, {"text": "typical", "start": 425, "end": 432, "id": 84, "annotation": null}, {"text": "order", "start": 433, "end": 438, "id": 85, "annotation": null}, {"text": "of", "start": 439, "end": 441, "id": 86, "annotation": null}, {"text": "F+", "start": 442, "end": 444, "id": 87, "annotation": null}, {"text": "center", "start": 445, "end": 451, "id": 88, "annotation": null}, {"text": "in", "start": 452, "end": 454, "id": 89, "annotation": null}, {"text": "the", "start": 455, "end": 458, "id": 90, "annotation": null}, {"text": "undoped", "start": 459, "end": 466, "id": 91, "annotation": null}, {"text": "MgO.", "start": 467, "end": 471, "id": 92, "annotation": null}], [{"text": "The", "start": 472, "end": 475, "id": 93, "annotation": null}, {"text": "scintillation", "start": 476, "end": 489, "id": 94, "annotation": null}, {"text": "emission", "start": 490, "end": 498, "id": 95, "annotation": null}, {"text": "peaks", "start": 499, "end": 504, "id": 96, "annotation": null}, {"text": "were", "start": 505, "end": 509, "id": 97, "annotation": null}, {"text": "detected", "start": 510, "end": 518, "id": 98, "annotation": null}, {"text": "at", "start": 519, "end": 521, "id": 99, "annotation": null}, {"text": "330", "start": 522, "end": 525, "id": 100, "annotation": null}, {"text": ",", "start": 526, "end": 527, "id": 101, "annotation": null}, {"text": "400", "start": 528, "end": 531, "id": 102, "annotation": null}, {"text": "and", "start": 532, "end": 535, "id": 103, "annotation": null}, {"text": "750", "start": 536, "end": 539, "id": 104, "annotation": null}, {"text": "nm", "start": 540, "end": 542, "id": 106, "annotation": null}, {"text": "under", "start": 543, "end": 548, "id": 107, "annotation": null}, {"text": "X", "start": 549, "end": 550, "id": 108, "annotation": null}, {"text": "-", "start": 551, "end": 552, "id": 109, "annotation": null}, {"text": "ray", "start": 553, "end": 556, "id": 110, "annotation": null}, {"text": "irradiation", "start": 557, "end": 568, "id": 111, "annotation": null}, {"text": ".", "start": 569, "end": 570, "id": 112, "annotation": null}], [{"text": "The", "start": 571, "end": 574, "id": 113, "annotation": null}, {"text": "TSL", "start": 575, "end": 578, "id": 114, "annotation": null}, {"text": "glow", "start": 579, "end": 583, "id": 115, "annotation": null}, {"text": "curves", "start": 584, "end": 590, "id": 116, "annotation": null}, {"text": "showed", "start": 591, "end": 597, "id": 117, "annotation": null}, {"text": "the", "start": 598, "end": 601, "id": 118, "annotation": null}, {"text": "\u223c250", "start": 602, "end": 606, "id": 119, "annotation": null}, {"text": "\u00b0", "start": 607, "end": 608, "id": 121, "annotation": null}, {"text": "C", "start": 609, "end": 610, "id": 122, "annotation": null}, {"text": "peak", "start": 611, "end": 615, "id": 123, "annotation": null}, {"text": "in", "start": 616, "end": 618, "id": 124, "annotation": null}, {"text": "0.1", "start": 619, "end": 622, "id": 125, "annotation": "DOPMODQ"}, {"text": "%", "start": 623, "end": 624, "id": 126, "annotation": "DOPMODQ"}, {"text": "C", "start": 625, "end": 626, "id": 127, "annotation": "DOPANT"}, {"text": "-", "start": 627, "end": 628, "id": 128, "annotation": null}, {"text": "doped", "start": 629, "end": 634, "id": 129, "annotation": null}, {"text": "sample", "start": 635, "end": 641, "id": 130, "annotation": "BASEMAT"}, {"text": ".", "start": 642, "end": 643, "id": 131, "annotation": null}], [{"text": "The", "start": 644, "end": 647, "id": 132, "annotation": null}, {"text": "TSL", "start": 648, "end": 651, "id": 133, "annotation": null}, {"text": "response", "start": 652, "end": 660, "id": 134, "annotation": null}, {"text": "was", "start": 661, "end": 664, "id": 135, "annotation": null}, {"text": "confirmed", "start": 665, "end": 674, "id": 136, "annotation": null}, {"text": "to", "start": 675, "end": 677, "id": 137, "annotation": null}, {"text": "be", "start": 678, "end": 680, "id": 138, "annotation": null}, {"text": "linear", "start": 681, "end": 687, "id": 139, "annotation": null}, {"text": "to", "start": 688, "end": 690, "id": 140, "annotation": null}, {"text": "the", "start": 691, "end": 694, "id": 141, "annotation": null}, {"text": "irradiation", "start": 695, "end": 706, "id": 142, "annotation": null}, {"text": "dose", "start": 707, "end": 711, "id": 143, "annotation": null}, {"text": "over", "start": 712, "end": 716, "id": 144, "annotation": null}, {"text": "the", "start": 717, "end": 720, "id": 145, "annotation": null}, {"text": "dose", "start": 721, "end": 725, "id": 146, "annotation": null}, {"text": "range", "start": 726, "end": 731, "id": 147, "annotation": null}, {"text": "from", "start": 732, "end": 736, "id": 148, "annotation": null}, {"text": "0.1", "start": 737, "end": 740, "id": 149, "annotation": null}, {"text": "to", "start": 741, "end": 743, "id": 150, "annotation": null}, {"text": "1000", "start": 744, "end": 748, "id": 151, "annotation": null}, {"text": "mGy", "start": 749, "end": 752, "id": 153, "annotation": null}, {"text": ".", "start": 753, "end": 754, "id": 154, "annotation": null}], [{"text": "As", "start": 755, "end": 757, "id": 155, "annotation": null}, {"text": "a", "start": 758, "end": 759, "id": 156, "annotation": null}, {"text": "result", "start": 760, "end": 766, "id": 157, "annotation": null}, {"text": ",", "start": 767, "end": 768, "id": 158, "annotation": null}, {"text": "the", "start": 769, "end": 772, "id": 159, "annotation": null}, {"text": "sensitivity", "start": 773, "end": 784, "id": 160, "annotation": null}, {"text": "of", "start": 785, "end": 787, "id": 161, "annotation": null}, {"text": "MgO", "start": 788, "end": 791, "id": 162, "annotation": "BASEMAT"}, {"text": "was", "start": 792, "end": 795, "id": 163, "annotation": null}, {"text": "improved", "start": 796, "end": 804, "id": 164, "annotation": null}, {"text": "by", "start": 805, "end": 807, "id": 165, "annotation": null}, {"text": "C", "start": 808, "end": 809, "id": 166, "annotation": "DOPANT"}, {"text": "-", "start": 810, "end": 811, "id": 167, "annotation": null}, {"text": "doping", "start": 812, "end": 818, "id": 168, "annotation": null}, {"text": ".", "start": 819, "end": 820, "id": 169, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "We investigate the growth mechanism of In-doped \u03b2\u2013Ga2O3 nanowires (NWs) deposited using radio frequency powder sputtering. Although the growth sequence of the doped NWs is similar to that of the undoped \u03b2\u2013Ga2O3 NWs, the formation of self-assembled In clusters is more favorable compared to Ga clusters. Clusters of In act as seeds for initiating the growth of In-doped \u03b2\u2013Ga2O3 NWs through a self-catalytic vapor-liquid-solid mechanism, while Ga seeds initiate the growth of undoped \u03b2\u2013Ga2O3 NWs by the same mechanism. We also observed zigzag NWs formed by alternating NW growth directions.", "meta": {"doi": "10.1016/j.matlet.2016.04.116"}, "_input_hash": -1209962512, "_task_hash": 1901656387, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "investigate", "start": 3, "end": 14, "id": 1, "annotation": null}, {"text": "the", "start": 15, "end": 18, "id": 2, "annotation": null}, {"text": "growth", "start": 19, "end": 25, "id": 3, "annotation": null}, {"text": "mechanism", "start": 26, "end": 35, "id": 4, "annotation": null}, {"text": "of", "start": 36, "end": 38, "id": 5, "annotation": null}, {"text": "In", "start": 39, "end": 41, "id": 6, "annotation": "DOPANT"}, {"text": "-", "start": 42, "end": 43, "id": 7, "annotation": null}, {"text": "doped", "start": 44, "end": 49, "id": 8, "annotation": null}, {"text": "\u03b2", "start": 50, "end": 51, "id": 9, "annotation": null}, {"text": "\u2013", "start": 52, "end": 53, "id": 10, "annotation": null}, {"text": "Ga2O3", "start": 54, "end": 59, "id": 11, "annotation": "BASEMAT"}, {"text": "nanowires", "start": 60, "end": 69, "id": 12, "annotation": null}, {"text": "(", "start": 70, "end": 71, "id": 13, "annotation": null}, {"text": "NWs", "start": 72, "end": 75, "id": 14, "annotation": null}, {"text": ")", "start": 76, "end": 77, "id": 15, "annotation": null}, {"text": "deposited", "start": 78, "end": 87, "id": 16, "annotation": null}, {"text": "using", "start": 88, "end": 93, "id": 17, "annotation": null}, {"text": "radio", "start": 94, "end": 99, "id": 18, "annotation": null}, {"text": "frequency", "start": 100, "end": 109, "id": 19, "annotation": null}, {"text": "powder", "start": 110, "end": 116, "id": 20, "annotation": null}, {"text": "sputtering", "start": 117, "end": 127, "id": 21, "annotation": null}, {"text": ".", "start": 128, "end": 129, "id": 22, "annotation": null}], [{"text": "Although", "start": 130, "end": 138, "id": 23, "annotation": null}, {"text": "the", "start": 139, "end": 142, "id": 24, "annotation": null}, {"text": "growth", "start": 143, "end": 149, "id": 25, "annotation": null}, {"text": "sequence", "start": 150, "end": 158, "id": 26, "annotation": null}, {"text": "of", "start": 159, "end": 161, "id": 27, "annotation": null}, {"text": "the", "start": 162, "end": 165, "id": 28, "annotation": null}, {"text": "doped", "start": 166, "end": 171, "id": 29, "annotation": null}, {"text": "NWs", "start": 172, "end": 175, "id": 30, "annotation": "BASEMAT"}, {"text": "is", "start": 176, "end": 178, "id": 31, "annotation": null}, {"text": "similar", "start": 179, "end": 186, "id": 32, "annotation": null}, {"text": "to", "start": 187, "end": 189, "id": 33, "annotation": null}, {"text": "that", "start": 190, "end": 194, "id": 34, "annotation": null}, {"text": "of", "start": 195, "end": 197, "id": 35, "annotation": null}, {"text": "the", "start": 198, "end": 201, "id": 36, "annotation": null}, {"text": "undoped", "start": 202, "end": 209, "id": 37, "annotation": null}, {"text": "\u03b2", "start": 210, "end": 211, "id": 38, "annotation": null}, {"text": "\u2013", "start": 212, "end": 213, "id": 39, "annotation": null}, {"text": "Ga2O3", "start": 214, "end": 219, "id": 40, "annotation": null}, {"text": "NWs", "start": 220, "end": 223, "id": 41, "annotation": null}, {"text": ",", "start": 224, "end": 225, "id": 42, "annotation": null}, {"text": "the", "start": 226, "end": 229, "id": 43, "annotation": null}, {"text": "formation", "start": 230, "end": 239, "id": 44, "annotation": null}, {"text": "of", "start": 240, "end": 242, "id": 45, "annotation": null}, {"text": "self", "start": 243, "end": 247, "id": 46, "annotation": null}, {"text": "-", "start": 248, "end": 249, "id": 47, "annotation": null}, {"text": "assembled", "start": 250, "end": 259, "id": 48, "annotation": null}, {"text": "In", "start": 260, "end": 262, "id": 49, "annotation": null}, {"text": "clusters", "start": 263, "end": 271, "id": 50, "annotation": null}, {"text": "is", "start": 272, "end": 274, "id": 51, "annotation": null}, {"text": "more", "start": 275, "end": 279, "id": 52, "annotation": null}, {"text": "favorable", "start": 280, "end": 289, "id": 53, "annotation": null}, {"text": "compared", "start": 290, "end": 298, "id": 54, "annotation": null}, {"text": "to", "start": 299, "end": 301, "id": 55, "annotation": null}, {"text": "Ga", "start": 302, "end": 304, "id": 56, "annotation": null}, {"text": "clusters", "start": 305, "end": 313, "id": 57, "annotation": null}, {"text": ".", "start": 314, "end": 315, "id": 58, "annotation": null}], [{"text": "Clusters", "start": 316, "end": 324, "id": 59, "annotation": null}, {"text": "of", "start": 325, "end": 327, "id": 60, "annotation": null}, {"text": "In", "start": 328, "end": 330, "id": 61, "annotation": null}, {"text": "act", "start": 331, "end": 334, "id": 62, "annotation": null}, {"text": "as", "start": 335, "end": 337, "id": 63, "annotation": null}, {"text": "seeds", "start": 338, "end": 343, "id": 64, "annotation": null}, {"text": "for", "start": 344, "end": 347, "id": 65, "annotation": null}, {"text": "initiating", "start": 348, "end": 358, "id": 66, "annotation": null}, {"text": "the", "start": 359, "end": 362, "id": 67, "annotation": null}, {"text": "growth", "start": 363, "end": 369, "id": 68, "annotation": null}, {"text": "of", "start": 370, "end": 372, "id": 69, "annotation": null}, {"text": "In", "start": 373, "end": 375, "id": 70, "annotation": "DOPANT"}, {"text": "-", "start": 376, "end": 377, "id": 71, "annotation": null}, {"text": "doped", "start": 378, "end": 383, "id": 72, "annotation": null}, {"text": "\u03b2", "start": 384, "end": 385, "id": 73, "annotation": null}, {"text": "\u2013", "start": 386, "end": 387, "id": 74, "annotation": null}, {"text": "Ga2O3", "start": 388, "end": 393, "id": 75, "annotation": "BASEMAT"}, {"text": "NWs", "start": 394, "end": 397, "id": 76, "annotation": null}, {"text": "through", "start": 398, "end": 405, "id": 77, "annotation": null}, {"text": "a", "start": 406, "end": 407, "id": 78, "annotation": null}, {"text": "self", "start": 408, "end": 412, "id": 79, "annotation": null}, {"text": "-", "start": 413, "end": 414, "id": 80, "annotation": null}, {"text": "catalytic", "start": 415, "end": 424, "id": 81, "annotation": null}, {"text": "vapor", "start": 425, "end": 430, "id": 82, "annotation": null}, {"text": "-", "start": 431, "end": 432, "id": 83, "annotation": null}, {"text": "liquid", "start": 433, "end": 439, "id": 84, "annotation": null}, {"text": "-", "start": 440, "end": 441, "id": 85, "annotation": null}, {"text": "solid", "start": 442, "end": 447, "id": 86, "annotation": null}, {"text": "mechanism", "start": 448, "end": 457, "id": 87, "annotation": null}, {"text": ",", "start": 458, "end": 459, "id": 88, "annotation": null}, {"text": "while", "start": 460, "end": 465, "id": 89, "annotation": null}, {"text": "Ga", "start": 466, "end": 468, "id": 90, "annotation": null}, {"text": "seeds", "start": 469, "end": 474, "id": 91, "annotation": null}, {"text": "initiate", "start": 475, "end": 483, "id": 92, "annotation": null}, {"text": "the", "start": 484, "end": 487, "id": 93, "annotation": null}, {"text": "growth", "start": 488, "end": 494, "id": 94, "annotation": null}, {"text": "of", "start": 495, "end": 497, "id": 95, "annotation": null}, {"text": "undoped", "start": 498, "end": 505, "id": 96, "annotation": null}, {"text": "\u03b2", "start": 506, "end": 507, "id": 97, "annotation": null}, {"text": "\u2013", "start": 508, "end": 509, "id": 98, "annotation": null}, {"text": "Ga2O3", "start": 510, "end": 515, "id": 99, "annotation": null}, {"text": "NWs", "start": 516, "end": 519, "id": 100, "annotation": null}, {"text": "by", "start": 520, "end": 522, "id": 101, "annotation": null}, {"text": "the", "start": 523, "end": 526, "id": 102, "annotation": null}, {"text": "same", "start": 527, "end": 531, "id": 103, "annotation": null}, {"text": "mechanism", "start": 532, "end": 541, "id": 104, "annotation": null}, {"text": ".", "start": 542, "end": 543, "id": 105, "annotation": null}], [{"text": "We", "start": 544, "end": 546, "id": 106, "annotation": null}, {"text": "also", "start": 547, "end": 551, "id": 107, "annotation": null}, {"text": "observed", "start": 552, "end": 560, "id": 108, "annotation": null}, {"text": "zigzag", "start": 561, "end": 567, "id": 109, "annotation": null}, {"text": "NWs", "start": 568, "end": 571, "id": 110, "annotation": null}, {"text": "formed", "start": 572, "end": 578, "id": 111, "annotation": null}, {"text": "by", "start": 579, "end": 581, "id": 112, "annotation": null}, {"text": "alternating", "start": 582, "end": 593, "id": 113, "annotation": null}, {"text": "NW", "start": 594, "end": 596, "id": 114, "annotation": null}, {"text": "growth", "start": 597, "end": 603, "id": 115, "annotation": null}, {"text": "directions", "start": 604, "end": 614, "id": 116, "annotation": null}, {"text": ".", "start": 615, "end": 616, "id": 117, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The Ti-doped ZnO (ZnO:Ti) thin films have been deposited on glass substrates by radio frequency (RF) reactive magnetron sputtering technique with different Ti doping concentrations. The effect of Ti contents on the crystalline structure and optical properties of the as-deposited ZnO:Ti films was systematically investigated by X-ray diffraction (XRD), scanning electronic microscopy (SEM) and fluorescence spectrophotometer. The XRD measurements revealed that all the films had hexagonal wurtzite type structure with a strong (100) preferential orientation and relatively weak (002), (101), and (110) peaks. It was found that the intensity of the (100) diffraction peaks was strongly dependent on the Ti doping concentration. And the full width at half-maximum (FWHM) of (002) diffraction peaks constantly changed at various Ti contents, which decreased first and then increased, reaching a minimum of about 0.378\u00b0 at 1.43 at.% Ti. The morphologies of ZnO:Ti films with 1.43 at.% Ti showed a denser texture and better smooth surface. All the films were found to be highly transparent in the visible wavelength region with an average transmittance over 90%. Compared with Eg=3.219eV for pure ZnO film, all the doping samples exhibited a blue-shift of Eg. It can be attributed to the incorporation of Ti atoms and raising the concentration of carriers. Five emission peaks located at 412, 448, 486, 520, and 550nm were observed from the photoluminescence spectra measured at room temperature and the origin of these emissions was discussed.", "meta": {"doi": "10.1016/j.spmi.2012.06.021"}, "_input_hash": 292398991, "_task_hash": -989076376, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "Ti", "start": 4, "end": 6, "id": 1, "annotation": "DOPANT"}, {"text": "-", "start": 7, "end": 8, "id": 2, "annotation": null}, {"text": "doped", "start": 9, "end": 14, "id": 3, "annotation": null}, {"text": "ZnO", "start": 15, "end": 18, "id": 4, "annotation": "BASEMAT"}, {"text": "(", "start": 19, "end": 20, "id": 5, "annotation": null}, {"text": "ZnO", "start": 21, "end": 24, "id": 6, "annotation": "BASEMAT"}, {"text": ":", "start": 25, "end": 26, "id": 7, "annotation": null}, {"text": "Ti", "start": 27, "end": 29, "id": 8, "annotation": "DOPANT"}, {"text": ")", "start": 30, "end": 31, "id": 9, "annotation": null}, {"text": "thin", "start": 32, "end": 36, "id": 10, "annotation": null}, {"text": "films", "start": 37, "end": 42, "id": 11, "annotation": null}, {"text": "have", "start": 43, "end": 47, "id": 12, "annotation": null}, {"text": "been", "start": 48, "end": 52, "id": 13, "annotation": null}, {"text": "deposited", "start": 53, "end": 62, "id": 14, "annotation": null}, {"text": "on", "start": 63, "end": 65, "id": 15, "annotation": null}, {"text": "glass", "start": 66, "end": 71, "id": 16, "annotation": null}, {"text": "substrates", "start": 72, "end": 82, "id": 17, "annotation": null}, {"text": "by", "start": 83, "end": 85, "id": 18, "annotation": null}, {"text": "radio", "start": 86, "end": 91, "id": 19, "annotation": null}, {"text": "frequency", "start": 92, "end": 101, "id": 20, "annotation": null}, {"text": "(", "start": 102, "end": 103, "id": 21, "annotation": null}, {"text": "RF", "start": 104, "end": 106, "id": 22, "annotation": null}, {"text": ")", "start": 107, "end": 108, "id": 23, "annotation": null}, {"text": "reactive", "start": 109, "end": 117, "id": 24, "annotation": null}, {"text": "magnetron", "start": 118, "end": 127, "id": 25, "annotation": null}, {"text": "sputtering", "start": 128, "end": 138, "id": 26, "annotation": null}, {"text": "technique", "start": 139, "end": 148, "id": 27, "annotation": null}, {"text": "with", "start": 149, "end": 153, "id": 28, "annotation": null}, {"text": "different", "start": 154, "end": 163, "id": 29, "annotation": null}, {"text": "Ti", "start": 164, "end": 166, "id": 30, "annotation": "DOPANT"}, {"text": "doping", "start": 167, "end": 173, "id": 31, "annotation": null}, {"text": "concentrations", "start": 174, "end": 188, "id": 32, "annotation": null}, {"text": ".", "start": 189, "end": 190, "id": 33, "annotation": null}], [{"text": "The", "start": 191, "end": 194, "id": 34, "annotation": null}, {"text": "effect", "start": 195, "end": 201, "id": 35, "annotation": null}, {"text": "of", "start": 202, "end": 204, "id": 36, "annotation": null}, {"text": "Ti", "start": 205, "end": 207, "id": 37, "annotation": null}, {"text": "contents", "start": 208, "end": 216, "id": 38, "annotation": null}, {"text": "on", "start": 217, "end": 219, "id": 39, "annotation": null}, {"text": "the", "start": 220, "end": 223, "id": 40, "annotation": null}, {"text": "crystalline", "start": 224, "end": 235, "id": 41, "annotation": null}, {"text": "structure", "start": 236, "end": 245, "id": 42, "annotation": null}, {"text": "and", "start": 246, "end": 249, "id": 43, "annotation": null}, {"text": "optical", "start": 250, "end": 257, "id": 44, "annotation": null}, {"text": "properties", "start": 258, "end": 268, "id": 45, "annotation": null}, {"text": "of", "start": 269, "end": 271, "id": 46, "annotation": null}, {"text": "the", "start": 272, "end": 275, "id": 47, "annotation": null}, {"text": "as", "start": 276, "end": 278, "id": 48, "annotation": null}, {"text": "-", "start": 279, "end": 280, "id": 49, "annotation": null}, {"text": "deposited", "start": 281, "end": 290, "id": 50, "annotation": null}, {"text": "ZnO", "start": 291, "end": 294, "id": 51, "annotation": "BASEMAT"}, {"text": ":", "start": 295, "end": 296, "id": 52, "annotation": null}, {"text": "Ti", "start": 297, "end": 299, "id": 53, "annotation": "DOPANT"}, {"text": "films", "start": 300, "end": 305, "id": 54, "annotation": null}, {"text": "was", "start": 306, "end": 309, "id": 55, "annotation": null}, {"text": "systematically", "start": 310, "end": 324, "id": 56, "annotation": null}, {"text": "investigated", "start": 325, "end": 337, "id": 57, "annotation": null}, {"text": "by", "start": 338, "end": 340, "id": 58, "annotation": null}, {"text": "X", "start": 341, "end": 342, "id": 59, "annotation": null}, {"text": "-", "start": 343, "end": 344, "id": 60, "annotation": null}, {"text": "ray", "start": 345, "end": 348, "id": 61, "annotation": null}, {"text": "diffraction", "start": 349, "end": 360, "id": 62, "annotation": null}, {"text": "(", "start": 361, "end": 362, "id": 63, "annotation": null}, {"text": "XRD", "start": 363, "end": 366, "id": 64, "annotation": null}, {"text": ")", "start": 367, "end": 368, "id": 65, "annotation": null}, {"text": ",", "start": 369, "end": 370, "id": 66, "annotation": null}, {"text": "scanning", "start": 371, "end": 379, "id": 67, "annotation": null}, {"text": "electronic", "start": 380, "end": 390, "id": 68, "annotation": null}, {"text": "microscopy", "start": 391, "end": 401, "id": 69, "annotation": null}, {"text": "(", "start": 402, "end": 403, "id": 70, "annotation": null}, {"text": "SEM", "start": 404, "end": 407, "id": 71, "annotation": null}, {"text": ")", "start": 408, "end": 409, "id": 72, "annotation": null}, {"text": "and", "start": 410, "end": 413, "id": 73, "annotation": null}, {"text": "fluorescence", "start": 414, "end": 426, "id": 74, "annotation": null}, {"text": "spectrophotometer", "start": 427, "end": 444, "id": 75, "annotation": null}, {"text": ".", "start": 445, "end": 446, "id": 76, "annotation": null}], [{"text": "The", "start": 447, "end": 450, "id": 77, "annotation": null}, {"text": "XRD", "start": 451, "end": 454, "id": 78, "annotation": null}, {"text": "measurements", "start": 455, "end": 467, "id": 79, "annotation": null}, {"text": "revealed", "start": 468, "end": 476, "id": 80, "annotation": null}, {"text": "that", "start": 477, "end": 481, "id": 81, "annotation": null}, {"text": "all", "start": 482, "end": 485, "id": 82, "annotation": null}, {"text": "the", "start": 486, "end": 489, "id": 83, "annotation": null}, {"text": "films", "start": 490, "end": 495, "id": 84, "annotation": null}, {"text": "had", "start": 496, "end": 499, "id": 85, "annotation": null}, {"text": "hexagonal", "start": 500, "end": 509, "id": 86, "annotation": null}, {"text": "wurtzite", "start": 510, "end": 518, "id": 87, "annotation": null}, {"text": "type", "start": 519, "end": 523, "id": 88, "annotation": null}, {"text": "structure", "start": 524, "end": 533, "id": 89, "annotation": null}, {"text": "with", "start": 534, "end": 538, "id": 90, "annotation": null}, {"text": "a", "start": 539, "end": 540, "id": 91, "annotation": null}, {"text": "strong", "start": 541, "end": 547, "id": 92, "annotation": null}, {"text": "(", "start": 548, "end": 549, "id": 93, "annotation": null}, {"text": "100", "start": 550, "end": 553, "id": 94, "annotation": null}, {"text": ")", "start": 554, "end": 555, "id": 95, "annotation": null}, {"text": "preferential", "start": 556, "end": 568, "id": 96, "annotation": null}, {"text": "orientation", "start": 569, "end": 580, "id": 97, "annotation": null}, {"text": "and", "start": 581, "end": 584, "id": 98, "annotation": null}, {"text": "relatively", "start": 585, "end": 595, "id": 99, "annotation": null}, {"text": "weak", "start": 596, "end": 600, "id": 100, "annotation": null}, {"text": "(", "start": 601, "end": 602, "id": 101, "annotation": null}, {"text": "002", "start": 603, "end": 606, "id": 102, "annotation": null}, {"text": ")", "start": 607, "end": 608, "id": 103, "annotation": null}, {"text": ",", "start": 609, "end": 610, "id": 104, "annotation": null}, {"text": "(", "start": 611, "end": 612, "id": 105, "annotation": null}, {"text": "101", "start": 613, "end": 616, "id": 106, "annotation": null}, {"text": ")", "start": 617, "end": 618, "id": 107, "annotation": null}, {"text": ",", "start": 619, "end": 620, "id": 108, "annotation": null}, {"text": "and", "start": 621, "end": 624, "id": 109, "annotation": null}, {"text": "(", "start": 625, "end": 626, "id": 110, "annotation": null}, {"text": "110", "start": 627, "end": 630, "id": 111, "annotation": null}, {"text": ")", "start": 631, "end": 632, "id": 112, "annotation": null}, {"text": "peaks", "start": 633, "end": 638, "id": 113, "annotation": null}, {"text": ".", "start": 639, "end": 640, "id": 114, "annotation": null}], [{"text": "It", "start": 641, "end": 643, "id": 115, "annotation": null}, {"text": "was", "start": 644, "end": 647, "id": 116, "annotation": null}, {"text": "found", "start": 648, "end": 653, "id": 117, "annotation": null}, {"text": "that", "start": 654, "end": 658, "id": 118, "annotation": null}, {"text": "the", "start": 659, "end": 662, "id": 119, "annotation": null}, {"text": "intensity", "start": 663, "end": 672, "id": 120, "annotation": null}, {"text": "of", "start": 673, "end": 675, "id": 121, "annotation": null}, {"text": "the", "start": 676, "end": 679, "id": 122, "annotation": null}, {"text": "(", "start": 680, "end": 681, "id": 123, "annotation": null}, {"text": "100", "start": 682, "end": 685, "id": 124, "annotation": null}, {"text": ")", "start": 686, "end": 687, "id": 125, "annotation": null}, {"text": "diffraction", "start": 688, "end": 699, "id": 126, "annotation": null}, {"text": "peaks", "start": 700, "end": 705, "id": 127, "annotation": null}, {"text": "was", "start": 706, "end": 709, "id": 128, "annotation": null}, {"text": "strongly", "start": 710, "end": 718, "id": 129, "annotation": null}, {"text": "dependent", "start": 719, "end": 728, "id": 130, "annotation": null}, {"text": "on", "start": 729, "end": 731, "id": 131, "annotation": null}, {"text": "the", "start": 732, "end": 735, "id": 132, "annotation": null}, {"text": "Ti", "start": 736, "end": 738, "id": 133, "annotation": "DOPANT"}, {"text": "doping", "start": 739, "end": 745, "id": 134, "annotation": null}, {"text": "concentration", "start": 746, "end": 759, "id": 135, "annotation": null}, {"text": ".", "start": 760, "end": 761, "id": 136, "annotation": null}], [{"text": "And", "start": 762, "end": 765, "id": 137, "annotation": null}, {"text": "the", "start": 766, "end": 769, "id": 138, "annotation": null}, {"text": "full", "start": 770, "end": 774, "id": 139, "annotation": null}, {"text": "width", "start": 775, "end": 780, "id": 140, "annotation": null}, {"text": "at", "start": 781, "end": 783, "id": 141, "annotation": null}, {"text": "half", "start": 784, "end": 788, "id": 142, "annotation": null}, {"text": "-", "start": 789, "end": 790, "id": 143, "annotation": null}, {"text": "maximum", "start": 791, "end": 798, "id": 144, "annotation": null}, {"text": "(", "start": 799, "end": 800, "id": 145, "annotation": null}, {"text": "FWHM", "start": 801, "end": 805, "id": 146, "annotation": null}, {"text": ")", "start": 806, "end": 807, "id": 147, "annotation": null}, {"text": "of", "start": 808, "end": 810, "id": 148, "annotation": null}, {"text": "(", "start": 811, "end": 812, "id": 149, "annotation": null}, {"text": "002", "start": 813, "end": 816, "id": 150, "annotation": null}, {"text": ")", "start": 817, "end": 818, "id": 151, "annotation": null}, {"text": "diffraction", "start": 819, "end": 830, "id": 152, "annotation": null}, {"text": "peaks", "start": 831, "end": 836, "id": 153, "annotation": null}, {"text": "constantly", "start": 837, "end": 847, "id": 154, "annotation": null}, {"text": "changed", "start": 848, "end": 855, "id": 155, "annotation": null}, {"text": "at", "start": 856, "end": 858, "id": 156, "annotation": null}, {"text": "various", "start": 859, "end": 866, "id": 157, "annotation": null}, {"text": "Ti", "start": 867, "end": 869, "id": 158, "annotation": "DOPANT"}, {"text": "contents", "start": 870, "end": 878, "id": 159, "annotation": null}, {"text": ",", "start": 879, "end": 880, "id": 160, "annotation": null}, {"text": "which", "start": 881, "end": 886, "id": 161, "annotation": null}, {"text": "decreased", "start": 887, "end": 896, "id": 162, "annotation": null}, {"text": "first", "start": 897, "end": 902, "id": 163, "annotation": null}, {"text": "and", "start": 903, "end": 906, "id": 164, "annotation": null}, {"text": "then", "start": 907, "end": 911, "id": 165, "annotation": null}, {"text": "increased", "start": 912, "end": 921, "id": 166, "annotation": null}, {"text": ",", "start": 922, "end": 923, "id": 167, "annotation": null}, {"text": "reaching", "start": 924, "end": 932, "id": 168, "annotation": null}, {"text": "a", "start": 933, "end": 934, "id": 169, "annotation": null}, {"text": "minimum", "start": 935, "end": 942, "id": 170, "annotation": null}, {"text": "of", "start": 943, "end": 945, "id": 171, "annotation": null}, {"text": "about", "start": 946, "end": 951, "id": 172, "annotation": null}, {"text": "0.378", "start": 952, "end": 957, "id": 173, "annotation": null}, {"text": "\u00b0", "start": 958, "end": 959, "id": 174, "annotation": null}, {"text": "at", "start": 960, "end": 962, "id": 175, "annotation": null}, {"text": "1.43", "start": 963, "end": 967, "id": 176, "annotation": "DOPMODQ"}, {"text": "at.%", "start": 968, "end": 972, "id": 177, "annotation": "DOPMODQ"}, {"text": "Ti", "start": 973, "end": 975, "id": 178, "annotation": "DOPANT"}, {"text": ".", "start": 976, "end": 977, "id": 179, "annotation": null}], [{"text": "The", "start": 978, "end": 981, "id": 180, "annotation": null}, {"text": "morphologies", "start": 982, "end": 994, "id": 181, "annotation": null}, {"text": "of", "start": 995, "end": 997, "id": 182, "annotation": null}, {"text": "ZnO", "start": 998, "end": 1001, "id": 183, "annotation": "BASEMAT"}, {"text": ":", "start": 1002, "end": 1003, "id": 184, "annotation": null}, {"text": "Ti", "start": 1004, "end": 1006, "id": 185, "annotation": "DOPANT"}, {"text": "films", "start": 1007, "end": 1012, "id": 186, "annotation": null}, {"text": "with", "start": 1013, "end": 1017, "id": 187, "annotation": null}, {"text": "1.43", "start": 1018, "end": 1022, "id": 188, "annotation": "DOPMODQ"}, {"text": "at.%", "start": 1023, "end": 1027, "id": 189, "annotation": "DOPMODQ"}, {"text": "Ti", "start": 1028, "end": 1030, "id": 190, "annotation": "DOPANT"}, {"text": "showed", "start": 1031, "end": 1037, "id": 191, "annotation": null}, {"text": "a", "start": 1038, "end": 1039, "id": 192, "annotation": null}, {"text": "denser", "start": 1040, "end": 1046, "id": 193, "annotation": null}, {"text": "texture", "start": 1047, "end": 1054, "id": 194, "annotation": null}, {"text": "and", "start": 1055, "end": 1058, "id": 195, "annotation": null}, {"text": "better", "start": 1059, "end": 1065, "id": 196, "annotation": null}, {"text": "smooth", "start": 1066, "end": 1072, "id": 197, "annotation": null}, {"text": "surface", "start": 1073, "end": 1080, "id": 198, "annotation": null}, {"text": ".", "start": 1081, "end": 1082, "id": 199, "annotation": null}], [{"text": "All", "start": 1083, "end": 1086, "id": 200, "annotation": null}, {"text": "the", "start": 1087, "end": 1090, "id": 201, "annotation": null}, {"text": "films", "start": 1091, "end": 1096, "id": 202, "annotation": null}, {"text": "were", "start": 1097, "end": 1101, "id": 203, "annotation": null}, {"text": "found", "start": 1102, "end": 1107, "id": 204, "annotation": null}, {"text": "to", "start": 1108, "end": 1110, "id": 205, "annotation": null}, {"text": "be", "start": 1111, "end": 1113, "id": 206, "annotation": null}, {"text": "highly", "start": 1114, "end": 1120, "id": 207, "annotation": null}, {"text": "transparent", "start": 1121, "end": 1132, "id": 208, "annotation": null}, {"text": "in", "start": 1133, "end": 1135, "id": 209, "annotation": null}, {"text": "the", "start": 1136, "end": 1139, "id": 210, "annotation": null}, {"text": "visible", "start": 1140, "end": 1147, "id": 211, "annotation": null}, {"text": "wavelength", "start": 1148, "end": 1158, "id": 212, "annotation": null}, {"text": "region", "start": 1159, "end": 1165, "id": 213, "annotation": null}, {"text": "with", "start": 1166, "end": 1170, "id": 214, "annotation": null}, {"text": "an", "start": 1171, "end": 1173, "id": 215, "annotation": null}, {"text": "average", "start": 1174, "end": 1181, "id": 216, "annotation": null}, {"text": "transmittance", "start": 1182, "end": 1195, "id": 217, "annotation": null}, {"text": "over", "start": 1196, "end": 1200, "id": 218, "annotation": null}, {"text": "90", "start": 1201, "end": 1203, "id": 219, "annotation": null}, {"text": "%", "start": 1204, "end": 1205, "id": 220, "annotation": null}, {"text": ".", "start": 1206, "end": 1207, "id": 221, "annotation": null}], [{"text": "Compared", "start": 1208, "end": 1216, "id": 222, "annotation": null}, {"text": "with", "start": 1217, "end": 1221, "id": 223, "annotation": null}, {"text": "Eg=3.219eV", "start": 1222, "end": 1232, "id": 224, "annotation": null}, {"text": "for", "start": 1233, "end": 1236, "id": 225, "annotation": null}, {"text": "pure", "start": 1237, "end": 1241, "id": 226, "annotation": null}, {"text": "ZnO", "start": 1242, "end": 1245, "id": 227, "annotation": null}, {"text": "film", "start": 1246, "end": 1250, "id": 228, "annotation": null}, {"text": ",", "start": 1251, "end": 1252, "id": 229, "annotation": null}, {"text": "all", "start": 1253, "end": 1256, "id": 230, "annotation": null}, {"text": "the", "start": 1257, "end": 1260, "id": 231, "annotation": null}, {"text": "doping", "start": 1261, "end": 1267, "id": 232, "annotation": null}, {"text": "samples", "start": 1268, "end": 1275, "id": 233, "annotation": null}, {"text": "exhibited", "start": 1276, "end": 1285, "id": 234, "annotation": null}, {"text": "a", "start": 1286, "end": 1287, "id": 235, "annotation": null}, {"text": "blue", "start": 1288, "end": 1292, "id": 236, "annotation": null}, {"text": "-", "start": 1293, "end": 1294, "id": 237, "annotation": null}, {"text": "shift", "start": 1295, "end": 1300, "id": 238, "annotation": null}, {"text": "of", "start": 1301, "end": 1303, "id": 239, "annotation": null}, {"text": "Eg", "start": 1304, "end": 1306, "id": 240, "annotation": null}, {"text": ".", "start": 1307, "end": 1308, "id": 241, "annotation": null}], [{"text": "It", "start": 1309, "end": 1311, "id": 242, "annotation": null}, {"text": "can", "start": 1312, "end": 1315, "id": 243, "annotation": null}, {"text": "be", "start": 1316, "end": 1318, "id": 244, "annotation": null}, {"text": "attributed", "start": 1319, "end": 1329, "id": 245, "annotation": null}, {"text": "to", "start": 1330, "end": 1332, "id": 246, "annotation": null}, {"text": "the", "start": 1333, "end": 1336, "id": 247, "annotation": null}, {"text": "incorporation", "start": 1337, "end": 1350, "id": 248, "annotation": null}, {"text": "of", "start": 1351, "end": 1353, "id": 249, "annotation": null}, {"text": "Ti", "start": 1354, "end": 1356, "id": 250, "annotation": null}, {"text": "atoms", "start": 1357, "end": 1362, "id": 251, "annotation": null}, {"text": "and", "start": 1363, "end": 1366, "id": 252, "annotation": null}, {"text": "raising", "start": 1367, "end": 1374, "id": 253, "annotation": null}, {"text": "the", "start": 1375, "end": 1378, "id": 254, "annotation": null}, {"text": "concentration", "start": 1379, "end": 1392, "id": 255, "annotation": null}, {"text": "of", "start": 1393, "end": 1395, "id": 256, "annotation": null}, {"text": "carriers", "start": 1396, "end": 1404, "id": 257, "annotation": null}, {"text": ".", "start": 1405, "end": 1406, "id": 258, "annotation": null}], [{"text": "Five", "start": 1407, "end": 1411, "id": 259, "annotation": null}, {"text": "emission", "start": 1412, "end": 1420, "id": 260, "annotation": null}, {"text": "peaks", "start": 1421, "end": 1426, "id": 261, "annotation": null}, {"text": "located", "start": 1427, "end": 1434, "id": 262, "annotation": null}, {"text": "at", "start": 1435, "end": 1437, "id": 263, "annotation": null}, {"text": "412", "start": 1438, "end": 1441, "id": 264, "annotation": null}, {"text": ",", "start": 1442, "end": 1443, "id": 265, "annotation": null}, {"text": "448", "start": 1444, "end": 1447, "id": 266, "annotation": null}, {"text": ",", "start": 1448, "end": 1449, "id": 267, "annotation": null}, {"text": "486", "start": 1450, "end": 1453, "id": 268, "annotation": null}, {"text": ",", "start": 1454, "end": 1455, "id": 269, "annotation": null}, {"text": "520", "start": 1456, "end": 1459, "id": 270, "annotation": null}, {"text": ",", "start": 1460, "end": 1461, "id": 271, "annotation": null}, {"text": "and", "start": 1462, "end": 1465, "id": 272, "annotation": null}, {"text": "550", "start": 1466, "end": 1469, "id": 273, "annotation": null}, {"text": "nm", "start": 1470, "end": 1472, "id": 274, "annotation": null}, {"text": "were", "start": 1473, "end": 1477, "id": 275, "annotation": null}, {"text": "observed", "start": 1478, "end": 1486, "id": 276, "annotation": null}, {"text": "from", "start": 1487, "end": 1491, "id": 277, "annotation": null}, {"text": "the", "start": 1492, "end": 1495, "id": 278, "annotation": null}, {"text": "photoluminescence", "start": 1496, "end": 1513, "id": 279, "annotation": null}, {"text": "spectra", "start": 1514, "end": 1521, "id": 280, "annotation": null}, {"text": "measured", "start": 1522, "end": 1530, "id": 281, "annotation": null}, {"text": "at", "start": 1531, "end": 1533, "id": 282, "annotation": null}, {"text": "room", "start": 1534, "end": 1538, "id": 283, "annotation": null}, {"text": "temperature", "start": 1539, "end": 1550, "id": 284, "annotation": null}, {"text": "and", "start": 1551, "end": 1554, "id": 285, "annotation": null}, {"text": "the", "start": 1555, "end": 1558, "id": 286, "annotation": null}, {"text": "origin", "start": 1559, "end": 1565, "id": 287, "annotation": null}, {"text": "of", "start": 1566, "end": 1568, "id": 288, "annotation": null}, {"text": "these", "start": 1569, "end": 1574, "id": 289, "annotation": null}, {"text": "emissions", "start": 1575, "end": 1584, "id": 290, "annotation": null}, {"text": "was", "start": 1585, "end": 1588, "id": 291, "annotation": null}, {"text": "discussed", "start": 1589, "end": 1598, "id": 292, "annotation": null}, {"text": ".", "start": 1599, "end": 1600, "id": 293, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Catalytic properties of Pd-Ni catalysts were studied to clarify the mechanism of suppression of carbon deposition on a Pd-Ni catalyst supported on a composite of Ce(Sm)O2 and La(Sr)CrO3, which is a promising anode material for direct oxidation of dry CH4 in solid oxide fuel cells (SOFCs). The catalytic activity of Pd-Ni catalysts for the carbon formation in the decomposition of CH4 was found to be strongly dependent on the support materials. Carbon deposition was remarkably suppressed on Pd-Ni/Ce(Sm)O2 and Pd-Ni/ La(Sr)CrO3 catalysts, whereas Pd-Ni/SiO2 and Pd-Ni/carbon catalysts were very active for the formation of carbon nanofibers. TEM analysis showed the morphology of the Pd-Ni particles and carbon deposit on the Pd-Ni/Ce(Sm)O2 catalyst was quite different from that on the Pd-Ni/C catalyst. XRD and TEM-EDS analysis indicate that Ce and Sm were doped into the Pd-Ni alloy from the Ce(Sm)O 2 supports. High catalytic activity of the Pd-NiVCe(Sm)O2 catalyst for steam reforming indicates that the Pd-Ni catalysts modified with Ce still have high catalytic activity for the activation of CH4. A model for the mechanism of the suppression of the carbon deposition on the Pd-Ni catalyst is proposed focusing on the formation mechanism of the carbon deposit. The high catalytic activity of the Pd-Ni alloy for the activation of CH 4 and the high tolerance to carbon deposition deriving from the doping are suitable for direct utilization of dry CH4 over SOFC anodes.", "meta": {"doi": "10.1021/jp801496v"}, "_input_hash": 929152043, "_task_hash": 324517055, "tokens": [[{"text": "Catalytic", "start": 0, "end": 9, "id": 0, "annotation": null}, {"text": "properties", "start": 10, "end": 20, "id": 1, "annotation": null}, {"text": "of", "start": 21, "end": 23, "id": 2, "annotation": null}, {"text": "Pd", "start": 24, "end": 26, "id": 3, "annotation": null}, {"text": "-", "start": 27, "end": 28, "id": 4, "annotation": null}, {"text": "Ni", "start": 29, "end": 31, "id": 5, "annotation": null}, {"text": "catalysts", "start": 32, "end": 41, "id": 6, "annotation": null}, {"text": "were", "start": 42, "end": 46, "id": 7, "annotation": null}, {"text": "studied", "start": 47, "end": 54, "id": 8, "annotation": null}, {"text": "to", "start": 55, "end": 57, "id": 9, "annotation": null}, {"text": "clarify", "start": 58, "end": 65, "id": 10, "annotation": null}, {"text": "the", "start": 66, "end": 69, "id": 11, "annotation": null}, {"text": "mechanism", "start": 70, "end": 79, "id": 12, "annotation": null}, {"text": "of", "start": 80, "end": 82, "id": 13, "annotation": null}, {"text": "suppression", "start": 83, "end": 94, "id": 14, "annotation": null}, {"text": "of", "start": 95, "end": 97, "id": 15, "annotation": null}, {"text": "carbon", "start": 98, "end": 104, "id": 16, "annotation": null}, {"text": "deposition", "start": 105, "end": 115, "id": 17, "annotation": null}, {"text": "on", "start": 116, "end": 118, "id": 18, "annotation": null}, {"text": "a", "start": 119, "end": 120, "id": 19, "annotation": null}, {"text": "Pd", "start": 121, "end": 123, "id": 20, "annotation": null}, {"text": "-", "start": 124, "end": 125, "id": 21, "annotation": null}, {"text": "Ni", "start": 126, "end": 128, "id": 22, "annotation": null}, {"text": "catalyst", "start": 129, "end": 137, "id": 23, "annotation": null}, {"text": "supported", "start": 138, "end": 147, "id": 24, "annotation": null}, {"text": "on", "start": 148, "end": 150, "id": 25, "annotation": null}, {"text": "a", "start": 151, "end": 152, "id": 26, "annotation": null}, {"text": "composite", "start": 153, "end": 162, "id": 27, "annotation": null}, {"text": "of", "start": 163, "end": 165, "id": 28, "annotation": null}, {"text": "Ce(Sm)O2", "start": 166, "end": 174, "id": 29, "annotation": null}, {"text": "and", "start": 175, "end": 178, "id": 30, "annotation": null}, {"text": "La(Sr)CrO3", "start": 179, "end": 189, "id": 31, "annotation": null}, {"text": ",", "start": 190, "end": 191, "id": 32, "annotation": null}, {"text": "which", "start": 192, "end": 197, "id": 33, "annotation": null}, {"text": "is", "start": 198, "end": 200, "id": 34, "annotation": null}, {"text": "a", "start": 201, "end": 202, "id": 35, "annotation": null}, {"text": "promising", "start": 203, "end": 212, "id": 36, "annotation": null}, {"text": "anode", "start": 213, "end": 218, "id": 37, "annotation": null}, {"text": "material", "start": 219, "end": 227, "id": 38, "annotation": null}, {"text": "for", "start": 228, "end": 231, "id": 39, "annotation": null}, {"text": "direct", "start": 232, "end": 238, "id": 40, "annotation": null}, {"text": "oxidation", "start": 239, "end": 248, "id": 41, "annotation": null}, {"text": "of", "start": 249, "end": 251, "id": 42, "annotation": null}, {"text": "dry", "start": 252, "end": 255, "id": 43, "annotation": null}, {"text": "CH4", "start": 256, "end": 259, "id": 44, "annotation": null}, {"text": "in", "start": 260, "end": 262, "id": 45, "annotation": null}, {"text": "solid", "start": 263, "end": 268, "id": 46, "annotation": null}, {"text": "oxide", "start": 269, "end": 274, "id": 47, "annotation": null}, {"text": "fuel", "start": 275, "end": 279, "id": 48, "annotation": null}, {"text": "cells", "start": 280, "end": 285, "id": 49, "annotation": null}, {"text": "(", "start": 286, "end": 287, "id": 50, "annotation": null}, {"text": "SOFCs", "start": 288, "end": 293, "id": 51, "annotation": null}, {"text": ")", "start": 294, "end": 295, "id": 52, "annotation": null}, {"text": ".", "start": 296, "end": 297, "id": 53, "annotation": null}], [{"text": "The", "start": 298, "end": 301, "id": 54, "annotation": null}, {"text": "catalytic", "start": 302, "end": 311, "id": 55, "annotation": null}, {"text": "activity", "start": 312, "end": 320, "id": 56, "annotation": null}, {"text": "of", "start": 321, "end": 323, "id": 57, "annotation": null}, {"text": "Pd", "start": 324, "end": 326, "id": 58, "annotation": null}, {"text": "-", "start": 327, "end": 328, "id": 59, "annotation": null}, {"text": "Ni", "start": 329, "end": 331, "id": 60, "annotation": null}, {"text": "catalysts", "start": 332, "end": 341, "id": 61, "annotation": null}, {"text": "for", "start": 342, "end": 345, "id": 62, "annotation": null}, {"text": "the", "start": 346, "end": 349, "id": 63, "annotation": null}, {"text": "carbon", "start": 350, "end": 356, "id": 64, "annotation": null}, {"text": "formation", "start": 357, "end": 366, "id": 65, "annotation": null}, {"text": "in", "start": 367, "end": 369, "id": 66, "annotation": null}, {"text": "the", "start": 370, "end": 373, "id": 67, "annotation": null}, {"text": "decomposition", "start": 374, "end": 387, "id": 68, "annotation": null}, {"text": "of", "start": 388, "end": 390, "id": 69, "annotation": null}, {"text": "CH4", "start": 391, "end": 394, "id": 70, "annotation": null}, {"text": "was", "start": 395, "end": 398, "id": 71, "annotation": null}, {"text": "found", "start": 399, "end": 404, "id": 72, "annotation": null}, {"text": "to", "start": 405, "end": 407, "id": 73, "annotation": null}, {"text": "be", "start": 408, "end": 410, "id": 74, "annotation": null}, {"text": "strongly", "start": 411, "end": 419, "id": 75, "annotation": null}, {"text": "dependent", "start": 420, "end": 429, "id": 76, "annotation": null}, {"text": "on", "start": 430, "end": 432, "id": 77, "annotation": null}, {"text": "the", "start": 433, "end": 436, "id": 78, "annotation": null}, {"text": "support", "start": 437, "end": 444, "id": 79, "annotation": null}, {"text": "materials", "start": 445, "end": 454, "id": 80, "annotation": null}, {"text": ".", "start": 455, "end": 456, "id": 81, "annotation": null}], [{"text": "Carbon", "start": 457, "end": 463, "id": 82, "annotation": null}, {"text": "deposition", "start": 464, "end": 474, "id": 83, "annotation": null}, {"text": "was", "start": 475, "end": 478, "id": 84, "annotation": null}, {"text": "remarkably", "start": 479, "end": 489, "id": 85, "annotation": null}, {"text": "suppressed", "start": 490, "end": 500, "id": 86, "annotation": null}, {"text": "on", "start": 501, "end": 503, "id": 87, "annotation": null}, {"text": "Pd", "start": 504, "end": 506, "id": 88, "annotation": null}, {"text": "-", "start": 507, "end": 508, "id": 89, "annotation": null}, {"text": "Ni", "start": 509, "end": 511, "id": 90, "annotation": null}, {"text": "/", "start": 512, "end": 513, "id": 91, "annotation": null}, {"text": "Ce(Sm)O2", "start": 514, "end": 522, "id": 92, "annotation": null}, {"text": "and", "start": 523, "end": 526, "id": 93, "annotation": null}, {"text": "Pd", "start": 527, "end": 529, "id": 94, "annotation": null}, {"text": "-", "start": 530, "end": 531, "id": 95, "annotation": null}, {"text": "Ni/", "start": 532, "end": 535, "id": 96, "annotation": null}, {"text": "La(Sr)CrO3", "start": 536, "end": 546, "id": 97, "annotation": null}, {"text": "catalysts", "start": 547, "end": 556, "id": 98, "annotation": null}, {"text": ",", "start": 557, "end": 558, "id": 99, "annotation": null}, {"text": "whereas", "start": 559, "end": 566, "id": 100, "annotation": null}, {"text": "Pd", "start": 567, "end": 569, "id": 101, "annotation": null}, {"text": "-", "start": 570, "end": 571, "id": 102, "annotation": null}, {"text": "Ni", "start": 572, "end": 574, "id": 103, "annotation": null}, {"text": "/", "start": 575, "end": 576, "id": 104, "annotation": null}, {"text": "SiO2", "start": 577, "end": 581, "id": 105, "annotation": null}, {"text": "and", "start": 582, "end": 585, "id": 106, "annotation": null}, {"text": "Pd", "start": 586, "end": 588, "id": 107, "annotation": null}, {"text": "-", "start": 589, "end": 590, "id": 108, "annotation": null}, {"text": "Ni", "start": 591, "end": 593, "id": 109, "annotation": null}, {"text": "/", "start": 594, "end": 595, "id": 110, "annotation": null}, {"text": "carbon", "start": 596, "end": 602, "id": 111, "annotation": null}, {"text": "catalysts", "start": 603, "end": 612, "id": 112, "annotation": null}, {"text": "were", "start": 613, "end": 617, "id": 113, "annotation": null}, {"text": "very", "start": 618, "end": 622, "id": 114, "annotation": null}, {"text": "active", "start": 623, "end": 629, "id": 115, "annotation": null}, {"text": "for", "start": 630, "end": 633, "id": 116, "annotation": null}, {"text": "the", "start": 634, "end": 637, "id": 117, "annotation": null}, {"text": "formation", "start": 638, "end": 647, "id": 118, "annotation": null}, {"text": "of", "start": 648, "end": 650, "id": 119, "annotation": null}, {"text": "carbon", "start": 651, "end": 657, "id": 120, "annotation": null}, {"text": "nanofibers", "start": 658, "end": 668, "id": 121, "annotation": null}, {"text": ".", "start": 669, "end": 670, "id": 122, "annotation": null}], [{"text": "TEM", "start": 671, "end": 674, "id": 123, "annotation": null}, {"text": "analysis", "start": 675, "end": 683, "id": 124, "annotation": null}, {"text": "showed", "start": 684, "end": 690, "id": 125, "annotation": null}, {"text": "the", "start": 691, "end": 694, "id": 126, "annotation": null}, {"text": "morphology", "start": 695, "end": 705, "id": 127, "annotation": null}, {"text": "of", "start": 706, "end": 708, "id": 128, "annotation": null}, {"text": "the", "start": 709, "end": 712, "id": 129, "annotation": null}, {"text": "Pd", "start": 713, "end": 715, "id": 130, "annotation": null}, {"text": "-", "start": 716, "end": 717, "id": 131, "annotation": null}, {"text": "Ni", "start": 718, "end": 720, "id": 132, "annotation": null}, {"text": "particles", "start": 721, "end": 730, "id": 133, "annotation": null}, {"text": "and", "start": 731, "end": 734, "id": 134, "annotation": null}, {"text": "carbon", "start": 735, "end": 741, "id": 135, "annotation": null}, {"text": "deposit", "start": 742, "end": 749, "id": 136, "annotation": null}, {"text": "on", "start": 750, "end": 752, "id": 137, "annotation": null}, {"text": "the", "start": 753, "end": 756, "id": 138, "annotation": null}, {"text": "Pd", "start": 757, "end": 759, "id": 139, "annotation": null}, {"text": "-", "start": 760, "end": 761, "id": 140, "annotation": null}, {"text": "Ni", "start": 762, "end": 764, "id": 141, "annotation": null}, {"text": "/", "start": 765, "end": 766, "id": 142, "annotation": null}, {"text": "Ce(Sm)O2", "start": 767, "end": 775, "id": 143, "annotation": null}, {"text": "catalyst", "start": 776, "end": 784, "id": 144, "annotation": null}, {"text": "was", "start": 785, "end": 788, "id": 145, "annotation": null}, {"text": "quite", "start": 789, "end": 794, "id": 146, "annotation": null}, {"text": "different", "start": 795, "end": 804, "id": 147, "annotation": null}, {"text": "from", "start": 805, "end": 809, "id": 148, "annotation": null}, {"text": "that", "start": 810, "end": 814, "id": 149, "annotation": null}, {"text": "on", "start": 815, "end": 817, "id": 150, "annotation": null}, {"text": "the", "start": 818, "end": 821, "id": 151, "annotation": null}, {"text": "Pd", "start": 822, "end": 824, "id": 152, "annotation": null}, {"text": "-", "start": 825, "end": 826, "id": 153, "annotation": null}, {"text": "Ni", "start": 827, "end": 829, "id": 154, "annotation": null}, {"text": "/", "start": 830, "end": 831, "id": 155, "annotation": null}, {"text": "C", "start": 832, "end": 833, "id": 156, "annotation": null}, {"text": "catalyst", "start": 834, "end": 842, "id": 157, "annotation": null}, {"text": ".", "start": 843, "end": 844, "id": 158, "annotation": null}], [{"text": "XRD", "start": 845, "end": 848, "id": 159, "annotation": null}, {"text": "and", "start": 849, "end": 852, "id": 160, "annotation": null}, {"text": "TEM", "start": 853, "end": 856, "id": 161, "annotation": null}, {"text": "-", "start": 857, "end": 858, "id": 162, "annotation": null}, {"text": "EDS", "start": 859, "end": 862, "id": 163, "annotation": null}, {"text": "analysis", "start": 863, "end": 871, "id": 164, "annotation": null}, {"text": "indicate", "start": 872, "end": 880, "id": 165, "annotation": null}, {"text": "that", "start": 881, "end": 885, "id": 166, "annotation": null}, {"text": "Ce", "start": 886, "end": 888, "id": 167, "annotation": "DOPANT"}, {"text": "and", "start": 889, "end": 892, "id": 168, "annotation": null}, {"text": "Sm", "start": 893, "end": 895, "id": 169, "annotation": "DOPANT"}, {"text": "were", "start": 896, "end": 900, "id": 170, "annotation": null}, {"text": "doped", "start": 901, "end": 906, "id": 171, "annotation": null}, {"text": "into", "start": 907, "end": 911, "id": 172, "annotation": null}, {"text": "the", "start": 912, "end": 915, "id": 173, "annotation": null}, {"text": "Pd", "start": 916, "end": 918, "id": 174, "annotation": "BASEMAT"}, {"text": "-", "start": 919, "end": 920, "id": 175, "annotation": null}, {"text": "Ni", "start": 921, "end": 923, "id": 176, "annotation": "BASEMAT"}, {"text": "alloy", "start": 924, "end": 929, "id": 177, "annotation": null}, {"text": "from", "start": 930, "end": 934, "id": 178, "annotation": null}, {"text": "the", "start": 935, "end": 938, "id": 179, "annotation": null}, {"text": "Ce(Sm)O", "start": 939, "end": 946, "id": 180, "annotation": null}, {"text": "2", "start": 947, "end": 948, "id": 181, "annotation": null}, {"text": "supports", "start": 949, "end": 957, "id": 182, "annotation": null}, {"text": ".", "start": 958, "end": 959, "id": 183, "annotation": null}], [{"text": "High", "start": 960, "end": 964, "id": 184, "annotation": null}, {"text": "catalytic", "start": 965, "end": 974, "id": 185, "annotation": null}, {"text": "activity", "start": 975, "end": 983, "id": 186, "annotation": null}, {"text": "of", "start": 984, "end": 986, "id": 187, "annotation": null}, {"text": "the", "start": 987, "end": 990, "id": 188, "annotation": null}, {"text": "Pd", "start": 991, "end": 993, "id": 189, "annotation": null}, {"text": "-", "start": 994, "end": 995, "id": 190, "annotation": null}, {"text": "NiVCe(Sm)O2", "start": 996, "end": 1007, "id": 191, "annotation": null}, {"text": "catalyst", "start": 1008, "end": 1016, "id": 192, "annotation": null}, {"text": "for", "start": 1017, "end": 1020, "id": 193, "annotation": null}, {"text": "steam", "start": 1021, "end": 1026, "id": 194, "annotation": null}, {"text": "reforming", "start": 1027, "end": 1036, "id": 195, "annotation": null}, {"text": "indicates", "start": 1037, "end": 1046, "id": 196, "annotation": null}, {"text": "that", "start": 1047, "end": 1051, "id": 197, "annotation": null}, {"text": "the", "start": 1052, "end": 1055, "id": 198, "annotation": null}, {"text": "Pd", "start": 1056, "end": 1058, "id": 199, "annotation": null}, {"text": "-", "start": 1059, "end": 1060, "id": 200, "annotation": null}, {"text": "Ni", "start": 1061, "end": 1063, "id": 201, "annotation": null}, {"text": "catalysts", "start": 1064, "end": 1073, "id": 202, "annotation": null}, {"text": "modified", "start": 1074, "end": 1082, "id": 203, "annotation": null}, {"text": "with", "start": 1083, "end": 1087, "id": 204, "annotation": null}, {"text": "Ce", "start": 1088, "end": 1090, "id": 205, "annotation": null}, {"text": "still", "start": 1091, "end": 1096, "id": 206, "annotation": null}, {"text": "have", "start": 1097, "end": 1101, "id": 207, "annotation": null}, {"text": "high", "start": 1102, "end": 1106, "id": 208, "annotation": null}, {"text": "catalytic", "start": 1107, "end": 1116, "id": 209, "annotation": null}, {"text": "activity", "start": 1117, "end": 1125, "id": 210, "annotation": null}, {"text": "for", "start": 1126, "end": 1129, "id": 211, "annotation": null}, {"text": "the", "start": 1130, "end": 1133, "id": 212, "annotation": null}, {"text": "activation", "start": 1134, "end": 1144, "id": 213, "annotation": null}, {"text": "of", "start": 1145, "end": 1147, "id": 214, "annotation": null}, {"text": "CH4", "start": 1148, "end": 1151, "id": 215, "annotation": null}, {"text": ".", "start": 1152, "end": 1153, "id": 216, "annotation": null}], [{"text": "A", "start": 1154, "end": 1155, "id": 217, "annotation": null}, {"text": "model", "start": 1156, "end": 1161, "id": 218, "annotation": null}, {"text": "for", "start": 1162, "end": 1165, "id": 219, "annotation": null}, {"text": "the", "start": 1166, "end": 1169, "id": 220, "annotation": null}, {"text": "mechanism", "start": 1170, "end": 1179, "id": 221, "annotation": null}, {"text": "of", "start": 1180, "end": 1182, "id": 222, "annotation": null}, {"text": "the", "start": 1183, "end": 1186, "id": 223, "annotation": null}, {"text": "suppression", "start": 1187, "end": 1198, "id": 224, "annotation": null}, {"text": "of", "start": 1199, "end": 1201, "id": 225, "annotation": null}, {"text": "the", "start": 1202, "end": 1205, "id": 226, "annotation": null}, {"text": "carbon", "start": 1206, "end": 1212, "id": 227, "annotation": null}, {"text": "deposition", "start": 1213, "end": 1223, "id": 228, "annotation": null}, {"text": "on", "start": 1224, "end": 1226, "id": 229, "annotation": null}, {"text": "the", "start": 1227, "end": 1230, "id": 230, "annotation": null}, {"text": "Pd", "start": 1231, "end": 1233, "id": 231, "annotation": null}, {"text": "-", "start": 1234, "end": 1235, "id": 232, "annotation": null}, {"text": "Ni", "start": 1236, "end": 1238, "id": 233, "annotation": null}, {"text": "catalyst", "start": 1239, "end": 1247, "id": 234, "annotation": null}, {"text": "is", "start": 1248, "end": 1250, "id": 235, "annotation": null}, {"text": "proposed", "start": 1251, "end": 1259, "id": 236, "annotation": null}, {"text": "focusing", "start": 1260, "end": 1268, "id": 237, "annotation": null}, {"text": "on", "start": 1269, "end": 1271, "id": 238, "annotation": null}, {"text": "the", "start": 1272, "end": 1275, "id": 239, "annotation": null}, {"text": "formation", "start": 1276, "end": 1285, "id": 240, "annotation": null}, {"text": "mechanism", "start": 1286, "end": 1295, "id": 241, "annotation": null}, {"text": "of", "start": 1296, "end": 1298, "id": 242, "annotation": null}, {"text": "the", "start": 1299, "end": 1302, "id": 243, "annotation": null}, {"text": "carbon", "start": 1303, "end": 1309, "id": 244, "annotation": null}, {"text": "deposit", "start": 1310, "end": 1317, "id": 245, "annotation": null}, {"text": ".", "start": 1318, "end": 1319, "id": 246, "annotation": null}], [{"text": "The", "start": 1320, "end": 1323, "id": 247, "annotation": null}, {"text": "high", "start": 1324, "end": 1328, "id": 248, "annotation": null}, {"text": "catalytic", "start": 1329, "end": 1338, "id": 249, "annotation": null}, {"text": "activity", "start": 1339, "end": 1347, "id": 250, "annotation": null}, {"text": "of", "start": 1348, "end": 1350, "id": 251, "annotation": null}, {"text": "the", "start": 1351, "end": 1354, "id": 252, "annotation": null}, {"text": "Pd", "start": 1355, "end": 1357, "id": 253, "annotation": "BASEMAT"}, {"text": "-", "start": 1358, "end": 1359, "id": 254, "annotation": null}, {"text": "Ni", "start": 1360, "end": 1362, "id": 255, "annotation": "BASEMAT"}, {"text": "alloy", "start": 1363, "end": 1368, "id": 256, "annotation": null}, {"text": "for", "start": 1369, "end": 1372, "id": 257, "annotation": null}, {"text": "the", "start": 1373, "end": 1376, "id": 258, "annotation": null}, {"text": "activation", "start": 1377, "end": 1387, "id": 259, "annotation": null}, {"text": "of", "start": 1388, "end": 1390, "id": 260, "annotation": null}, {"text": "CH", "start": 1391, "end": 1393, "id": 261, "annotation": null}, {"text": "4", "start": 1394, "end": 1395, "id": 262, "annotation": null}, {"text": "and", "start": 1396, "end": 1399, "id": 263, "annotation": null}, {"text": "the", "start": 1400, "end": 1403, "id": 264, "annotation": null}, {"text": "high", "start": 1404, "end": 1408, "id": 265, "annotation": null}, {"text": "tolerance", "start": 1409, "end": 1418, "id": 266, "annotation": null}, {"text": "to", "start": 1419, "end": 1421, "id": 267, "annotation": null}, {"text": "carbon", "start": 1422, "end": 1428, "id": 268, "annotation": null}, {"text": "deposition", "start": 1429, "end": 1439, "id": 269, "annotation": null}, {"text": "deriving", "start": 1440, "end": 1448, "id": 270, "annotation": null}, {"text": "from", "start": 1449, "end": 1453, "id": 271, "annotation": null}, {"text": "the", "start": 1454, "end": 1457, "id": 272, "annotation": null}, {"text": "doping", "start": 1458, "end": 1464, "id": 273, "annotation": null}, {"text": "are", "start": 1465, "end": 1468, "id": 274, "annotation": null}, {"text": "suitable", "start": 1469, "end": 1477, "id": 275, "annotation": null}, {"text": "for", "start": 1478, "end": 1481, "id": 276, "annotation": null}, {"text": "direct", "start": 1482, "end": 1488, "id": 277, "annotation": null}, {"text": "utilization", "start": 1489, "end": 1500, "id": 278, "annotation": null}, {"text": "of", "start": 1501, "end": 1503, "id": 279, "annotation": null}, {"text": "dry", "start": 1504, "end": 1507, "id": 280, "annotation": null}, {"text": "CH4", "start": 1508, "end": 1511, "id": 281, "annotation": null}, {"text": "over", "start": 1512, "end": 1516, "id": 282, "annotation": null}, {"text": "SOFC", "start": 1517, "end": 1521, "id": 283, "annotation": null}, {"text": "anodes", "start": 1522, "end": 1528, "id": 284, "annotation": null}, {"text": ".", "start": 1529, "end": 1530, "id": 285, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "N-doped TiO2 (NDTs) were prepared by sol\u2013gel synthesis at low temperature starting from nanocolloidal TiO2 and triethylamine according to well-known procedures. Diffuse reflectance UV (DRUV) spectroscopy showed a shift of the absorption to the visible range, while diffuse reflectance IRFT (DRIFT) evidenced the presence of a chemisorbed complex involving triethylamine. Powder XRD showed the sole formation of anatase polymorph of TiO2 while XPS indicated successful incorporation of nitrogen. Our data are globally consistent with previous literature results, but emphasize the low thermal and photochemical stability of the nitrogen complex under air. Di-n-butylsulfide photo-oxidation in acetonitrile solution was successfully carried out under irradiation at 420 and 350nm. The reaction rates were slower under visible light and the product distribution was very dependent upon the wavelength. Our results are discussed in parallel with the literature data assuming the favoured formation of singlet oxygen under visible light.", "meta": {"doi": "10.1016/j.jphotochem.2010.08.004"}, "_input_hash": -148918466, "_task_hash": 821475771, "tokens": [[{"text": "N", "start": 0, "end": 1, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 2, "end": 3, "id": 1, "annotation": null}, {"text": "doped", "start": 4, "end": 9, "id": 2, "annotation": null}, {"text": "TiO2", "start": 10, "end": 14, "id": 3, "annotation": "BASEMAT"}, {"text": "(", "start": 15, "end": 16, "id": 4, "annotation": null}, {"text": "NDTs", "start": 17, "end": 21, "id": 5, "annotation": null}, {"text": ")", "start": 22, "end": 23, "id": 6, "annotation": null}, {"text": "were", "start": 24, "end": 28, "id": 7, "annotation": null}, {"text": "prepared", "start": 29, "end": 37, "id": 8, "annotation": null}, {"text": "by", "start": 38, "end": 40, "id": 9, "annotation": null}, {"text": "sol", "start": 41, "end": 44, "id": 10, "annotation": null}, {"text": "\u2013", "start": 45, "end": 46, "id": 11, "annotation": null}, {"text": "gel", "start": 47, "end": 50, "id": 12, "annotation": null}, {"text": "synthesis", "start": 51, "end": 60, "id": 13, "annotation": null}, {"text": "at", "start": 61, "end": 63, "id": 14, "annotation": null}, {"text": "low", "start": 64, "end": 67, "id": 15, "annotation": null}, {"text": "temperature", "start": 68, "end": 79, "id": 16, "annotation": null}, {"text": "starting", "start": 80, "end": 88, "id": 17, "annotation": null}, {"text": "from", "start": 89, "end": 93, "id": 18, "annotation": null}, {"text": "nanocolloidal", "start": 94, "end": 107, "id": 19, "annotation": null}, {"text": "TiO2", "start": 108, "end": 112, "id": 20, "annotation": null}, {"text": "and", "start": 113, "end": 116, "id": 21, "annotation": null}, {"text": "triethylamine", "start": 117, "end": 130, "id": 22, "annotation": null}, {"text": "according", "start": 131, "end": 140, "id": 23, "annotation": null}, {"text": "to", "start": 141, "end": 143, "id": 24, "annotation": null}, {"text": "well", "start": 144, "end": 148, "id": 25, "annotation": null}, {"text": "-", "start": 149, "end": 150, "id": 26, "annotation": null}, {"text": "known", "start": 151, "end": 156, "id": 27, "annotation": null}, {"text": "procedures", "start": 157, "end": 167, "id": 28, "annotation": null}, {"text": ".", "start": 168, "end": 169, "id": 29, "annotation": null}], [{"text": "Diffuse", "start": 170, "end": 177, "id": 30, "annotation": null}, {"text": "reflectance", "start": 178, "end": 189, "id": 31, "annotation": null}, {"text": "UV", "start": 190, "end": 192, "id": 32, "annotation": null}, {"text": "(", "start": 193, "end": 194, "id": 33, "annotation": null}, {"text": "DRUV", "start": 195, "end": 199, "id": 34, "annotation": null}, {"text": ")", "start": 200, "end": 201, "id": 35, "annotation": null}, {"text": "spectroscopy", "start": 202, "end": 214, "id": 36, "annotation": null}, {"text": "showed", "start": 215, "end": 221, "id": 37, "annotation": null}, {"text": "a", "start": 222, "end": 223, "id": 38, "annotation": null}, {"text": "shift", "start": 224, "end": 229, "id": 39, "annotation": null}, {"text": "of", "start": 230, "end": 232, "id": 40, "annotation": null}, {"text": "the", "start": 233, "end": 236, "id": 41, "annotation": null}, {"text": "absorption", "start": 237, "end": 247, "id": 42, "annotation": null}, {"text": "to", "start": 248, "end": 250, "id": 43, "annotation": null}, {"text": "the", "start": 251, "end": 254, "id": 44, "annotation": null}, {"text": "visible", "start": 255, "end": 262, "id": 45, "annotation": null}, {"text": "range", "start": 263, "end": 268, "id": 46, "annotation": null}, {"text": ",", "start": 269, "end": 270, "id": 47, "annotation": null}, {"text": "while", "start": 271, "end": 276, "id": 48, "annotation": null}, {"text": "diffuse", "start": 277, "end": 284, "id": 49, "annotation": null}, {"text": "reflectance", "start": 285, "end": 296, "id": 50, "annotation": null}, {"text": "IRFT", "start": 297, "end": 301, "id": 51, "annotation": null}, {"text": "(", "start": 302, "end": 303, "id": 52, "annotation": null}, {"text": "DRIFT", "start": 304, "end": 309, "id": 53, "annotation": null}, {"text": ")", "start": 310, "end": 311, "id": 54, "annotation": null}, {"text": "evidenced", "start": 312, "end": 321, "id": 55, "annotation": null}, {"text": "the", "start": 322, "end": 325, "id": 56, "annotation": null}, {"text": "presence", "start": 326, "end": 334, "id": 57, "annotation": null}, {"text": "of", "start": 335, "end": 337, "id": 58, "annotation": null}, {"text": "a", "start": 338, "end": 339, "id": 59, "annotation": null}, {"text": "chemisorbed", "start": 340, "end": 351, "id": 60, "annotation": null}, {"text": "complex", "start": 352, "end": 359, "id": 61, "annotation": null}, {"text": "involving", "start": 360, "end": 369, "id": 62, "annotation": null}, {"text": "triethylamine", "start": 370, "end": 383, "id": 63, "annotation": null}, {"text": ".", "start": 384, "end": 385, "id": 64, "annotation": null}], [{"text": "Powder", "start": 386, "end": 392, "id": 65, "annotation": null}, {"text": "XRD", "start": 393, "end": 396, "id": 66, "annotation": null}, {"text": "showed", "start": 397, "end": 403, "id": 67, "annotation": null}, {"text": "the", "start": 404, "end": 407, "id": 68, "annotation": null}, {"text": "sole", "start": 408, "end": 412, "id": 69, "annotation": null}, {"text": "formation", "start": 413, "end": 422, "id": 70, "annotation": null}, {"text": "of", "start": 423, "end": 425, "id": 71, "annotation": null}, {"text": "anatase", "start": 426, "end": 433, "id": 72, "annotation": null}, {"text": "polymorph", "start": 434, "end": 443, "id": 73, "annotation": null}, {"text": "of", "start": 444, "end": 446, "id": 74, "annotation": null}, {"text": "TiO2", "start": 447, "end": 451, "id": 75, "annotation": null}, {"text": "while", "start": 452, "end": 457, "id": 76, "annotation": null}, {"text": "XPS", "start": 458, "end": 461, "id": 77, "annotation": null}, {"text": "indicated", "start": 462, "end": 471, "id": 78, "annotation": null}, {"text": "successful", "start": 472, "end": 482, "id": 79, "annotation": null}, {"text": "incorporation", "start": 483, "end": 496, "id": 80, "annotation": null}, {"text": "of", "start": 497, "end": 499, "id": 81, "annotation": null}, {"text": "nitrogen", "start": 500, "end": 508, "id": 82, "annotation": null}, {"text": ".", "start": 509, "end": 510, "id": 83, "annotation": null}], [{"text": "Our", "start": 511, "end": 514, "id": 84, "annotation": null}, {"text": "data", "start": 515, "end": 519, "id": 85, "annotation": null}, {"text": "are", "start": 520, "end": 523, "id": 86, "annotation": null}, {"text": "globally", "start": 524, "end": 532, "id": 87, "annotation": null}, {"text": "consistent", "start": 533, "end": 543, "id": 88, "annotation": null}, {"text": "with", "start": 544, "end": 548, "id": 89, "annotation": null}, {"text": "previous", "start": 549, "end": 557, "id": 90, "annotation": null}, {"text": "literature", "start": 558, "end": 568, "id": 91, "annotation": null}, {"text": "results", "start": 569, "end": 576, "id": 92, "annotation": null}, {"text": ",", "start": 577, "end": 578, "id": 93, "annotation": null}, {"text": "but", "start": 579, "end": 582, "id": 94, "annotation": null}, {"text": "emphasize", "start": 583, "end": 592, "id": 95, "annotation": null}, {"text": "the", "start": 593, "end": 596, "id": 96, "annotation": null}, {"text": "low", "start": 597, "end": 600, "id": 97, "annotation": null}, {"text": "thermal", "start": 601, "end": 608, "id": 98, "annotation": null}, {"text": "and", "start": 609, "end": 612, "id": 99, "annotation": null}, {"text": "photochemical", "start": 613, "end": 626, "id": 100, "annotation": null}, {"text": "stability", "start": 627, "end": 636, "id": 101, "annotation": null}, {"text": "of", "start": 637, "end": 639, "id": 102, "annotation": null}, {"text": "the", "start": 640, "end": 643, "id": 103, "annotation": null}, {"text": "nitrogen", "start": 644, "end": 652, "id": 104, "annotation": null}, {"text": "complex", "start": 653, "end": 660, "id": 105, "annotation": null}, {"text": "under", "start": 661, "end": 666, "id": 106, "annotation": null}, {"text": "air", "start": 667, "end": 670, "id": 107, "annotation": null}, {"text": ".", "start": 671, "end": 672, "id": 108, "annotation": null}], [{"text": "Di", "start": 673, "end": 675, "id": 109, "annotation": null}, {"text": "-", "start": 676, "end": 677, "id": 110, "annotation": null}, {"text": "n", "start": 678, "end": 679, "id": 111, "annotation": null}, {"text": "-", "start": 680, "end": 681, "id": 112, "annotation": null}, {"text": "butylsulfide", "start": 682, "end": 694, "id": 113, "annotation": null}, {"text": "photo", "start": 695, "end": 700, "id": 114, "annotation": null}, {"text": "-", "start": 701, "end": 702, "id": 115, "annotation": null}, {"text": "oxidation", "start": 703, "end": 712, "id": 116, "annotation": null}, {"text": "in", "start": 713, "end": 715, "id": 117, "annotation": null}, {"text": "acetonitrile", "start": 716, "end": 728, "id": 118, "annotation": null}, {"text": "solution", "start": 729, "end": 737, "id": 119, "annotation": null}, {"text": "was", "start": 738, "end": 741, "id": 120, "annotation": null}, {"text": "successfully", "start": 742, "end": 754, "id": 121, "annotation": null}, {"text": "carried", "start": 755, "end": 762, "id": 122, "annotation": null}, {"text": "out", "start": 763, "end": 766, "id": 123, "annotation": null}, {"text": "under", "start": 767, "end": 772, "id": 124, "annotation": null}, {"text": "irradiation", "start": 773, "end": 784, "id": 125, "annotation": null}, {"text": "at", "start": 785, "end": 787, "id": 126, "annotation": null}, {"text": "420", "start": 788, "end": 791, "id": 127, "annotation": null}, {"text": "and", "start": 792, "end": 795, "id": 128, "annotation": null}, {"text": "350", "start": 796, "end": 799, "id": 129, "annotation": null}, {"text": "nm", "start": 800, "end": 802, "id": 130, "annotation": null}, {"text": ".", "start": 803, "end": 804, "id": 131, "annotation": null}], [{"text": "The", "start": 805, "end": 808, "id": 132, "annotation": null}, {"text": "reaction", "start": 809, "end": 817, "id": 133, "annotation": null}, {"text": "rates", "start": 818, "end": 823, "id": 134, "annotation": null}, {"text": "were", "start": 824, "end": 828, "id": 135, "annotation": null}, {"text": "slower", "start": 829, "end": 835, "id": 136, "annotation": null}, {"text": "under", "start": 836, "end": 841, "id": 137, "annotation": null}, {"text": "visible", "start": 842, "end": 849, "id": 138, "annotation": null}, {"text": "light", "start": 850, "end": 855, "id": 139, "annotation": null}, {"text": "and", "start": 856, "end": 859, "id": 140, "annotation": null}, {"text": "the", "start": 860, "end": 863, "id": 141, "annotation": null}, {"text": "product", "start": 864, "end": 871, "id": 142, "annotation": null}, {"text": "distribution", "start": 872, "end": 884, "id": 143, "annotation": null}, {"text": "was", "start": 885, "end": 888, "id": 144, "annotation": null}, {"text": "very", "start": 889, "end": 893, "id": 145, "annotation": null}, {"text": "dependent", "start": 894, "end": 903, "id": 146, "annotation": null}, {"text": "upon", "start": 904, "end": 908, "id": 147, "annotation": null}, {"text": "the", "start": 909, "end": 912, "id": 148, "annotation": null}, {"text": "wavelength", "start": 913, "end": 923, "id": 149, "annotation": null}, {"text": ".", "start": 924, "end": 925, "id": 150, "annotation": null}], [{"text": "Our", "start": 926, "end": 929, "id": 151, "annotation": null}, {"text": "results", "start": 930, "end": 937, "id": 152, "annotation": null}, {"text": "are", "start": 938, "end": 941, "id": 153, "annotation": null}, {"text": "discussed", "start": 942, "end": 951, "id": 154, "annotation": null}, {"text": "in", "start": 952, "end": 954, "id": 155, "annotation": null}, {"text": "parallel", "start": 955, "end": 963, "id": 156, "annotation": null}, {"text": "with", "start": 964, "end": 968, "id": 157, "annotation": null}, {"text": "the", "start": 969, "end": 972, "id": 158, "annotation": null}, {"text": "literature", "start": 973, "end": 983, "id": 159, "annotation": null}, {"text": "data", "start": 984, "end": 988, "id": 160, "annotation": null}, {"text": "assuming", "start": 989, "end": 997, "id": 161, "annotation": null}, {"text": "the", "start": 998, "end": 1001, "id": 162, "annotation": null}, {"text": "favoured", "start": 1002, "end": 1010, "id": 163, "annotation": null}, {"text": "formation", "start": 1011, "end": 1020, "id": 164, "annotation": null}, {"text": "of", "start": 1021, "end": 1023, "id": 165, "annotation": null}, {"text": "singlet", "start": 1024, "end": 1031, "id": 166, "annotation": null}, {"text": "oxygen", "start": 1032, "end": 1038, "id": 167, "annotation": null}, {"text": "under", "start": 1039, "end": 1044, "id": 168, "annotation": null}, {"text": "visible", "start": 1045, "end": 1052, "id": 169, "annotation": null}, {"text": "light", "start": 1053, "end": 1058, "id": 170, "annotation": null}, {"text": ".", "start": 1059, "end": 1060, "id": 171, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "La1-xCaxMnO3 (0\u2264x\u22640.5) with perovskite-type structure has been successfully prepared by sol-gel method as a microwave and infrared multi-functional material. The effects of Ca incorporation on the stucture, electrical conductivity, infrared emissivity and microwave-absorbing properties were investigated in detail by XRD, 4-point probes resistivity measurement system, IR-2 infrared-emissivity analyzer and vector network analyzer. XRD results show that the perovskite structure of LaMnO3 is hardly changed when the doping concentration (x) of Ca2+ is less than or equal to 0.5. The incorporation of Ca in LaMnO3 leads to the decrease of electrical conductivity, while the infrared emissivities are decreased. Moreover, microwave-absorbing properties in the frequency range of 2-18 GHz are sensitive to Ca content. The optimal reflection loss calculated from the measured permittivity and permeability is 42 dB at 10.5 GHz with a thickness of 2.0 mm when the doping amount of Ca2+ is 0.1. It is possible to make Ca-doped lanthanum manganites achieve compatible camouflage capability for radar and infrared wave-band.", "meta": {"doi": "10.4028/www.scientific.net/MSF.914.96"}, "_input_hash": 682520541, "_task_hash": -126829194, "tokens": [[{"text": "La1-xCaxMnO3", "start": 47, "end": 59, "id": 8, "annotation": null}, {"text": "(", "start": 60, "end": 61, "id": 9, "annotation": null}, {"text": "0\u2264x\u22640.5", "start": 62, "end": 69, "id": 10, "annotation": null}, {"text": ")", "start": 70, "end": 71, "id": 11, "annotation": null}, {"text": "with", "start": 72, "end": 76, "id": 12, "annotation": null}, {"text": "perovskite", "start": 77, "end": 87, "id": 13, "annotation": null}, {"text": "-", "start": 88, "end": 89, "id": 14, "annotation": null}, {"text": "type", "start": 90, "end": 94, "id": 15, "annotation": null}, {"text": "structure", "start": 95, "end": 104, "id": 16, "annotation": null}, {"text": "has", "start": 105, "end": 108, "id": 17, "annotation": null}, {"text": "been", "start": 109, "end": 113, "id": 18, "annotation": null}, {"text": "successfully", "start": 114, "end": 126, "id": 19, "annotation": null}, {"text": "prepared", "start": 127, "end": 135, "id": 20, "annotation": null}, {"text": "by", "start": 136, "end": 138, "id": 21, "annotation": null}, {"text": "sol", "start": 139, "end": 142, "id": 22, "annotation": null}, {"text": "-", "start": 143, "end": 144, "id": 23, "annotation": null}, {"text": "gel", "start": 145, "end": 148, "id": 24, "annotation": null}, {"text": "method", "start": 149, "end": 155, "id": 25, "annotation": null}, {"text": "as", "start": 156, "end": 158, "id": 26, "annotation": null}, {"text": "a", "start": 159, "end": 160, "id": 27, "annotation": null}, {"text": "microwave", "start": 161, "end": 170, "id": 28, "annotation": null}, {"text": "and", "start": 171, "end": 174, "id": 29, "annotation": null}, {"text": "infrared", "start": 175, "end": 183, "id": 30, "annotation": null}, {"text": "multi", "start": 184, "end": 189, "id": 31, "annotation": null}, {"text": "-", "start": 190, "end": 191, "id": 32, "annotation": null}, {"text": "functional", "start": 192, "end": 202, "id": 33, "annotation": null}, {"text": "material", "start": 203, "end": 211, "id": 34, "annotation": null}, {"text": ".", "start": 212, "end": 213, "id": 35, "annotation": null}], [{"text": "The", "start": 214, "end": 217, "id": 36, "annotation": null}, {"text": "effects", "start": 218, "end": 225, "id": 37, "annotation": null}, {"text": "of", "start": 226, "end": 228, "id": 38, "annotation": null}, {"text": "Ca", "start": 229, "end": 231, "id": 39, "annotation": null}, {"text": "incorporation", "start": 232, "end": 245, "id": 40, "annotation": null}, {"text": "on", "start": 246, "end": 248, "id": 41, "annotation": null}, {"text": "the", "start": 249, "end": 252, "id": 42, "annotation": null}, {"text": "stucture", "start": 253, "end": 261, "id": 43, "annotation": null}, {"text": ",", "start": 262, "end": 263, "id": 44, "annotation": null}, {"text": "electrical", "start": 264, "end": 274, "id": 45, "annotation": null}, {"text": "conductivity", "start": 275, "end": 287, "id": 46, "annotation": null}, {"text": ",", "start": 288, "end": 289, "id": 47, "annotation": null}, {"text": "infrared", "start": 290, "end": 298, "id": 48, "annotation": null}, {"text": "emissivity", "start": 299, "end": 309, "id": 49, "annotation": null}, {"text": "and", "start": 310, "end": 313, "id": 50, "annotation": null}, {"text": "microwave", "start": 314, "end": 323, "id": 51, "annotation": null}, {"text": "-", "start": 324, "end": 325, "id": 52, "annotation": null}, {"text": "absorbing", "start": 326, "end": 335, "id": 53, "annotation": null}, {"text": "properties", "start": 336, "end": 346, "id": 54, "annotation": null}, {"text": "were", "start": 347, "end": 351, "id": 55, "annotation": null}, {"text": "investigated", "start": 352, "end": 364, "id": 56, "annotation": null}, {"text": "in", "start": 365, "end": 367, "id": 57, "annotation": null}, {"text": "detail", "start": 368, "end": 374, "id": 58, "annotation": null}, {"text": "by", "start": 375, "end": 377, "id": 59, "annotation": null}, {"text": "XRD", "start": 378, "end": 381, "id": 60, "annotation": null}, {"text": ",", "start": 382, "end": 383, "id": 61, "annotation": null}, {"text": "4-point", "start": 384, "end": 391, "id": 62, "annotation": null}, {"text": "probes", "start": 392, "end": 398, "id": 63, "annotation": null}, {"text": "resistivity", "start": 399, "end": 410, "id": 64, "annotation": null}, {"text": "measurement", "start": 411, "end": 422, "id": 65, "annotation": null}, {"text": "system", "start": 423, "end": 429, "id": 66, "annotation": null}, {"text": ",", "start": 430, "end": 431, "id": 67, "annotation": null}, {"text": "IR-2", "start": 432, "end": 436, "id": 68, "annotation": null}, {"text": "infrared", "start": 437, "end": 445, "id": 69, "annotation": null}, {"text": "-", "start": 446, "end": 447, "id": 70, "annotation": null}, {"text": "emissivity", "start": 448, "end": 458, "id": 71, "annotation": null}, {"text": "analyzer", "start": 459, "end": 467, "id": 72, "annotation": null}, {"text": "and", "start": 468, "end": 471, "id": 73, "annotation": null}, {"text": "vector", "start": 472, "end": 478, "id": 74, "annotation": null}, {"text": "network", "start": 479, "end": 486, "id": 75, "annotation": null}, {"text": "analyzer", "start": 487, "end": 495, "id": 76, "annotation": null}, {"text": ".", "start": 496, "end": 497, "id": 77, "annotation": null}], [{"text": "XRD", "start": 498, "end": 501, "id": 78, "annotation": null}, {"text": "results", "start": 502, "end": 509, "id": 79, "annotation": null}, {"text": "show", "start": 510, "end": 514, "id": 80, "annotation": null}, {"text": "that", "start": 515, "end": 519, "id": 81, "annotation": null}, {"text": "the", "start": 520, "end": 523, "id": 82, "annotation": null}, {"text": "perovskite", "start": 524, "end": 534, "id": 83, "annotation": null}, {"text": "structure", "start": 535, "end": 544, "id": 84, "annotation": null}, {"text": "of", "start": 545, "end": 547, "id": 85, "annotation": null}, {"text": "LaMnO3", "start": 548, "end": 554, "id": 86, "annotation": "BASEMAT"}, {"text": "is", "start": 555, "end": 557, "id": 87, "annotation": null}, {"text": "hardly", "start": 558, "end": 564, "id": 88, "annotation": null}, {"text": "changed", "start": 565, "end": 572, "id": 89, "annotation": null}, {"text": "when", "start": 573, "end": 577, "id": 90, "annotation": null}, {"text": "the", "start": 578, "end": 581, "id": 91, "annotation": null}, {"text": "doping", "start": 582, "end": 588, "id": 92, "annotation": null}, {"text": "concentration", "start": 589, "end": 602, "id": 93, "annotation": null}, {"text": "(", "start": 603, "end": 604, "id": 94, "annotation": null}, {"text": "x", "start": 605, "end": 606, "id": 95, "annotation": null}, {"text": ")", "start": 607, "end": 608, "id": 96, "annotation": null}, {"text": "of", "start": 609, "end": 611, "id": 97, "annotation": null}, {"text": "Ca2", "start": 612, "end": 615, "id": 98, "annotation": "DOPANT"}, {"text": "+", "start": 616, "end": 617, "id": 99, "annotation": "DOPANT"}, {"text": "is", "start": 618, "end": 620, "id": 100, "annotation": null}, {"text": "less", "start": 621, "end": 625, "id": 101, "annotation": "DOPMODQ"}, {"text": "than", "start": 626, "end": 630, "id": 102, "annotation": null}, {"text": "or", "start": 631, "end": 633, "id": 103, "annotation": null}, {"text": "equal", "start": 634, "end": 639, "id": 104, "annotation": null}, {"text": "to", "start": 640, "end": 642, "id": 105, "annotation": null}, {"text": "0.5", "start": 643, "end": 646, "id": 106, "annotation": "DOPMODQ"}, {"text": ".", "start": 647, "end": 648, "id": 107, "annotation": null}], [{"text": "The", "start": 649, "end": 652, "id": 108, "annotation": null}, {"text": "incorporation", "start": 653, "end": 666, "id": 109, "annotation": null}, {"text": "of", "start": 667, "end": 669, "id": 110, "annotation": null}, {"text": "Ca", "start": 670, "end": 672, "id": 111, "annotation": null}, {"text": "in", "start": 673, "end": 675, "id": 112, "annotation": null}, {"text": "LaMnO3", "start": 676, "end": 682, "id": 113, "annotation": null}, {"text": "leads", "start": 683, "end": 688, "id": 114, "annotation": null}, {"text": "to", "start": 689, "end": 691, "id": 115, "annotation": null}, {"text": "the", "start": 692, "end": 695, "id": 116, "annotation": null}, {"text": "decrease", "start": 696, "end": 704, "id": 117, "annotation": null}, {"text": "of", "start": 705, "end": 707, "id": 118, "annotation": null}, {"text": "electrical", "start": 708, "end": 718, "id": 119, "annotation": null}, {"text": "conductivity", "start": 719, "end": 731, "id": 120, "annotation": null}, {"text": ",", "start": 732, "end": 733, "id": 121, "annotation": null}, {"text": "while", "start": 734, "end": 739, "id": 122, "annotation": null}, {"text": "the", "start": 740, "end": 743, "id": 123, "annotation": null}, {"text": "infrared", "start": 744, "end": 752, "id": 124, "annotation": null}, {"text": "emissivities", "start": 753, "end": 765, "id": 125, "annotation": null}, {"text": "are", "start": 766, "end": 769, "id": 126, "annotation": null}, {"text": "decreased", "start": 770, "end": 779, "id": 127, "annotation": null}, {"text": ".", "start": 780, "end": 781, "id": 128, "annotation": null}], [{"text": "Moreover", "start": 782, "end": 790, "id": 129, "annotation": null}, {"text": ",", "start": 791, "end": 792, "id": 130, "annotation": null}, {"text": "microwave", "start": 793, "end": 802, "id": 131, "annotation": null}, {"text": "-", "start": 803, "end": 804, "id": 132, "annotation": null}, {"text": "absorbing", "start": 805, "end": 814, "id": 133, "annotation": null}, {"text": "properties", "start": 815, "end": 825, "id": 134, "annotation": null}, {"text": "in", "start": 826, "end": 828, "id": 135, "annotation": null}, {"text": "the", "start": 829, "end": 832, "id": 136, "annotation": null}, {"text": "frequency", "start": 833, "end": 842, "id": 137, "annotation": null}, {"text": "range", "start": 843, "end": 848, "id": 138, "annotation": null}, {"text": "of", "start": 849, "end": 851, "id": 139, "annotation": null}, {"text": "2", "start": 852, "end": 853, "id": 140, "annotation": null}, {"text": "-", "start": 854, "end": 855, "id": 141, "annotation": null}, {"text": "18", "start": 856, "end": 858, "id": 142, "annotation": null}, {"text": "GHz", "start": 859, "end": 862, "id": 143, "annotation": null}, {"text": "are", "start": 863, "end": 866, "id": 144, "annotation": null}, {"text": "sensitive", "start": 867, "end": 876, "id": 145, "annotation": null}, {"text": "to", "start": 877, "end": 879, "id": 146, "annotation": null}, {"text": "Ca", "start": 880, "end": 882, "id": 147, "annotation": null}, {"text": "content", "start": 883, "end": 890, "id": 148, "annotation": null}, {"text": ".", "start": 891, "end": 892, "id": 149, "annotation": null}], [{"text": "The", "start": 893, "end": 896, "id": 150, "annotation": null}, {"text": "optimal", "start": 897, "end": 904, "id": 151, "annotation": null}, {"text": "reflection", "start": 905, "end": 915, "id": 152, "annotation": null}, {"text": "loss", "start": 916, "end": 920, "id": 153, "annotation": null}, {"text": "calculated", "start": 921, "end": 931, "id": 154, "annotation": null}, {"text": "from", "start": 932, "end": 936, "id": 155, "annotation": null}, {"text": "the", "start": 937, "end": 940, "id": 156, "annotation": null}, {"text": "measured", "start": 941, "end": 949, "id": 157, "annotation": null}, {"text": "permittivity", "start": 950, "end": 962, "id": 158, "annotation": null}, {"text": "and", "start": 963, "end": 966, "id": 159, "annotation": null}, {"text": "permeability", "start": 967, "end": 979, "id": 160, "annotation": null}, {"text": "is", "start": 980, "end": 982, "id": 161, "annotation": null}, {"text": "42", "start": 983, "end": 985, "id": 162, "annotation": null}, {"text": "dB", "start": 986, "end": 988, "id": 163, "annotation": null}, {"text": "at", "start": 989, "end": 991, "id": 164, "annotation": null}, {"text": "10.5", "start": 992, "end": 996, "id": 165, "annotation": null}, {"text": "GHz", "start": 997, "end": 1000, "id": 166, "annotation": null}, {"text": "with", "start": 1001, "end": 1005, "id": 167, "annotation": null}, {"text": "a", "start": 1006, "end": 1007, "id": 168, "annotation": null}, {"text": "thickness", "start": 1008, "end": 1017, "id": 169, "annotation": null}, {"text": "of", "start": 1018, "end": 1020, "id": 170, "annotation": null}, {"text": "2.0", "start": 1021, "end": 1024, "id": 171, "annotation": null}, {"text": "mm", "start": 1025, "end": 1027, "id": 172, "annotation": null}, {"text": "when", "start": 1028, "end": 1032, "id": 173, "annotation": null}, {"text": "the", "start": 1033, "end": 1036, "id": 174, "annotation": null}, {"text": "doping", "start": 1037, "end": 1043, "id": 175, "annotation": null}, {"text": "amount", "start": 1044, "end": 1050, "id": 176, "annotation": null}, {"text": "of", "start": 1051, "end": 1053, "id": 177, "annotation": null}, {"text": "Ca2", "start": 1054, "end": 1057, "id": 178, "annotation": "DOPANT"}, {"text": "+", "start": 1058, "end": 1059, "id": 179, "annotation": "DOPANT"}, {"text": "is", "start": 1060, "end": 1062, "id": 180, "annotation": null}, {"text": "0.1", "start": 1063, "end": 1066, "id": 181, "annotation": "DOPMODQ"}, {"text": ".", "start": 1067, "end": 1068, "id": 182, "annotation": null}], [{"text": "It", "start": 1069, "end": 1071, "id": 183, "annotation": null}, {"text": "is", "start": 1072, "end": 1074, "id": 184, "annotation": null}, {"text": "possible", "start": 1075, "end": 1083, "id": 185, "annotation": null}, {"text": "to", "start": 1084, "end": 1086, "id": 186, "annotation": null}, {"text": "make", "start": 1087, "end": 1091, "id": 187, "annotation": null}, {"text": "Ca", "start": 1092, "end": 1094, "id": 188, "annotation": "DOPANT"}, {"text": "-", "start": 1095, "end": 1096, "id": 189, "annotation": null}, {"text": "doped", "start": 1097, "end": 1102, "id": 190, "annotation": null}, {"text": "lanthanum", "start": 1103, "end": 1112, "id": 191, "annotation": "BASEMAT"}, {"text": "manganites", "start": 1113, "end": 1123, "id": 192, "annotation": "BASEMAT"}, {"text": "achieve", "start": 1124, "end": 1131, "id": 193, "annotation": null}, {"text": "compatible", "start": 1132, "end": 1142, "id": 194, "annotation": null}, {"text": "camouflage", "start": 1143, "end": 1153, "id": 195, "annotation": null}, {"text": "capability", "start": 1154, "end": 1164, "id": 196, "annotation": null}, {"text": "for", "start": 1165, "end": 1168, "id": 197, "annotation": null}, {"text": "radar", "start": 1169, "end": 1174, "id": 198, "annotation": null}, {"text": "and", "start": 1175, "end": 1178, "id": 199, "annotation": null}, {"text": "infrared", "start": 1179, "end": 1187, "id": 200, "annotation": null}, {"text": "wave", "start": 1188, "end": 1192, "id": 201, "annotation": null}, {"text": "-", "start": 1193, "end": 1194, "id": 202, "annotation": null}, {"text": "band", "start": 1195, "end": 1199, "id": 203, "annotation": null}, {"text": ".", "start": 1200, "end": 1201, "id": 204, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "La1-xCaxMnO3 (0\u2264x\u22640.5) with perovskite-type structure has been successfully prepared by sol-gel method as a microwave and infrared multi-functional material. The effects of Ca incorporation on the stucture, electrical conductivity, infrared emissivity and microwave-absorbing properties were investigated in detail by XRD, 4-point probes resistivity measurement system, IR-2 infrared-emissivity analyzer and vector network analyzer. XRD results show that the perovskite structure of LaMnO3 is hardly changed when the doping concentration (x) of Ca2+ is less than or equal to 0.5. The incorporation of Ca in LaMnO3 leads to the decrease of electrical conductivity, while the infrared emissivities are decreased. Moreover, microwave-absorbing properties in the frequency range of 2-18 GHz are sensitive to Ca content. The optimal reflection loss calculated from the measured permittivity and permeability is 42 dB at 10.5 GHz with a thickness of 2.0 mm when the doping amount of Ca2+ is 0.1. It is possible to make Ca-doped lanthanum manganites achieve compatible camouflage capability for radar and infrared wave-band.", "meta": {"doi": "10.4028/www.scientific.net/MSF.914.96"}, "_input_hash": 682520541, "_task_hash": -126829194, "tokens": [[{"text": "La1-xCaxMnO3", "start": 47, "end": 59, "id": 8, "annotation": null}, {"text": "(", "start": 60, "end": 61, "id": 9, "annotation": null}, {"text": "0\u2264x\u22640.5", "start": 62, "end": 69, "id": 10, "annotation": null}, {"text": ")", "start": 70, "end": 71, "id": 11, "annotation": null}, {"text": "with", "start": 72, "end": 76, "id": 12, "annotation": null}, {"text": "perovskite", "start": 77, "end": 87, "id": 13, "annotation": null}, {"text": "-", "start": 88, "end": 89, "id": 14, "annotation": null}, {"text": "type", "start": 90, "end": 94, "id": 15, "annotation": null}, {"text": "structure", "start": 95, "end": 104, "id": 16, "annotation": null}, {"text": "has", "start": 105, "end": 108, "id": 17, "annotation": null}, {"text": "been", "start": 109, "end": 113, "id": 18, "annotation": null}, {"text": "successfully", "start": 114, "end": 126, "id": 19, "annotation": null}, {"text": "prepared", "start": 127, "end": 135, "id": 20, "annotation": null}, {"text": "by", "start": 136, "end": 138, "id": 21, "annotation": null}, {"text": "sol", "start": 139, "end": 142, "id": 22, "annotation": null}, {"text": "-", "start": 143, "end": 144, "id": 23, "annotation": null}, {"text": "gel", "start": 145, "end": 148, "id": 24, "annotation": null}, {"text": "method", "start": 149, "end": 155, "id": 25, "annotation": null}, {"text": "as", "start": 156, "end": 158, "id": 26, "annotation": null}, {"text": "a", "start": 159, "end": 160, "id": 27, "annotation": null}, {"text": "microwave", "start": 161, "end": 170, "id": 28, "annotation": null}, {"text": "and", "start": 171, "end": 174, "id": 29, "annotation": null}, {"text": "infrared", "start": 175, "end": 183, "id": 30, "annotation": null}, {"text": "multi", "start": 184, "end": 189, "id": 31, "annotation": null}, {"text": "-", "start": 190, "end": 191, "id": 32, "annotation": null}, {"text": "functional", "start": 192, "end": 202, "id": 33, "annotation": null}, {"text": "material", "start": 203, "end": 211, "id": 34, "annotation": null}, {"text": ".", "start": 212, "end": 213, "id": 35, "annotation": null}], [{"text": "The", "start": 214, "end": 217, "id": 36, "annotation": null}, {"text": "effects", "start": 218, "end": 225, "id": 37, "annotation": null}, {"text": "of", "start": 226, "end": 228, "id": 38, "annotation": null}, {"text": "Ca", "start": 229, "end": 231, "id": 39, "annotation": null}, {"text": "incorporation", "start": 232, "end": 245, "id": 40, "annotation": null}, {"text": "on", "start": 246, "end": 248, "id": 41, "annotation": null}, {"text": "the", "start": 249, "end": 252, "id": 42, "annotation": null}, {"text": "stucture", "start": 253, "end": 261, "id": 43, "annotation": null}, {"text": ",", "start": 262, "end": 263, "id": 44, "annotation": null}, {"text": "electrical", "start": 264, "end": 274, "id": 45, "annotation": null}, {"text": "conductivity", "start": 275, "end": 287, "id": 46, "annotation": null}, {"text": ",", "start": 288, "end": 289, "id": 47, "annotation": null}, {"text": "infrared", "start": 290, "end": 298, "id": 48, "annotation": null}, {"text": "emissivity", "start": 299, "end": 309, "id": 49, "annotation": null}, {"text": "and", "start": 310, "end": 313, "id": 50, "annotation": null}, {"text": "microwave", "start": 314, "end": 323, "id": 51, "annotation": null}, {"text": "-", "start": 324, "end": 325, "id": 52, "annotation": null}, {"text": "absorbing", "start": 326, "end": 335, "id": 53, "annotation": null}, {"text": "properties", "start": 336, "end": 346, "id": 54, "annotation": null}, {"text": "were", "start": 347, "end": 351, "id": 55, "annotation": null}, {"text": "investigated", "start": 352, "end": 364, "id": 56, "annotation": null}, {"text": "in", "start": 365, "end": 367, "id": 57, "annotation": null}, {"text": "detail", "start": 368, "end": 374, "id": 58, "annotation": null}, {"text": "by", "start": 375, "end": 377, "id": 59, "annotation": null}, {"text": "XRD", "start": 378, "end": 381, "id": 60, "annotation": null}, {"text": ",", "start": 382, "end": 383, "id": 61, "annotation": null}, {"text": "4-point", "start": 384, "end": 391, "id": 62, "annotation": null}, {"text": "probes", "start": 392, "end": 398, "id": 63, "annotation": null}, {"text": "resistivity", "start": 399, "end": 410, "id": 64, "annotation": null}, {"text": "measurement", "start": 411, "end": 422, "id": 65, "annotation": null}, {"text": "system", "start": 423, "end": 429, "id": 66, "annotation": null}, {"text": ",", "start": 430, "end": 431, "id": 67, "annotation": null}, {"text": "IR-2", "start": 432, "end": 436, "id": 68, "annotation": null}, {"text": "infrared", "start": 437, "end": 445, "id": 69, "annotation": null}, {"text": "-", "start": 446, "end": 447, "id": 70, "annotation": null}, {"text": "emissivity", "start": 448, "end": 458, "id": 71, "annotation": null}, {"text": "analyzer", "start": 459, "end": 467, "id": 72, "annotation": null}, {"text": "and", "start": 468, "end": 471, "id": 73, "annotation": null}, {"text": "vector", "start": 472, "end": 478, "id": 74, "annotation": null}, {"text": "network", "start": 479, "end": 486, "id": 75, "annotation": null}, {"text": "analyzer", "start": 487, "end": 495, "id": 76, "annotation": null}, {"text": ".", "start": 496, "end": 497, "id": 77, "annotation": null}], [{"text": "XRD", "start": 498, "end": 501, "id": 78, "annotation": null}, {"text": "results", "start": 502, "end": 509, "id": 79, "annotation": null}, {"text": "show", "start": 510, "end": 514, "id": 80, "annotation": null}, {"text": "that", "start": 515, "end": 519, "id": 81, "annotation": null}, {"text": "the", "start": 520, "end": 523, "id": 82, "annotation": null}, {"text": "perovskite", "start": 524, "end": 534, "id": 83, "annotation": null}, {"text": "structure", "start": 535, "end": 544, "id": 84, "annotation": null}, {"text": "of", "start": 545, "end": 547, "id": 85, "annotation": null}, {"text": "LaMnO3", "start": 548, "end": 554, "id": 86, "annotation": "BASEMAT"}, {"text": "is", "start": 555, "end": 557, "id": 87, "annotation": null}, {"text": "hardly", "start": 558, "end": 564, "id": 88, "annotation": null}, {"text": "changed", "start": 565, "end": 572, "id": 89, "annotation": null}, {"text": "when", "start": 573, "end": 577, "id": 90, "annotation": null}, {"text": "the", "start": 578, "end": 581, "id": 91, "annotation": null}, {"text": "doping", "start": 582, "end": 588, "id": 92, "annotation": null}, {"text": "concentration", "start": 589, "end": 602, "id": 93, "annotation": null}, {"text": "(", "start": 603, "end": 604, "id": 94, "annotation": null}, {"text": "x", "start": 605, "end": 606, "id": 95, "annotation": null}, {"text": ")", "start": 607, "end": 608, "id": 96, "annotation": null}, {"text": "of", "start": 609, "end": 611, "id": 97, "annotation": null}, {"text": "Ca2", "start": 612, "end": 615, "id": 98, "annotation": "DOPANT"}, {"text": "+", "start": 616, "end": 617, "id": 99, "annotation": "DOPANT"}, {"text": "is", "start": 618, "end": 620, "id": 100, "annotation": null}, {"text": "less", "start": 621, "end": 625, "id": 101, "annotation": "DOPMODQ"}, {"text": "than", "start": 626, "end": 630, "id": 102, "annotation": "DOPMODQ"}, {"text": "or", "start": 631, "end": 633, "id": 103, "annotation": "DOPMODQ"}, {"text": "equal", "start": 634, "end": 639, "id": 104, "annotation": "DOPMODQ"}, {"text": "to", "start": 640, "end": 642, "id": 105, "annotation": "DOPMODQ"}, {"text": "0.5", "start": 643, "end": 646, "id": 106, "annotation": "DOPMODQ"}, {"text": ".", "start": 647, "end": 648, "id": 107, "annotation": null}], [{"text": "The", "start": 649, "end": 652, "id": 108, "annotation": null}, {"text": "incorporation", "start": 653, "end": 666, "id": 109, "annotation": null}, {"text": "of", "start": 667, "end": 669, "id": 110, "annotation": null}, {"text": "Ca", "start": 670, "end": 672, "id": 111, "annotation": null}, {"text": "in", "start": 673, "end": 675, "id": 112, "annotation": null}, {"text": "LaMnO3", "start": 676, "end": 682, "id": 113, "annotation": null}, {"text": "leads", "start": 683, "end": 688, "id": 114, "annotation": null}, {"text": "to", "start": 689, "end": 691, "id": 115, "annotation": null}, {"text": "the", "start": 692, "end": 695, "id": 116, "annotation": null}, {"text": "decrease", "start": 696, "end": 704, "id": 117, "annotation": null}, {"text": "of", "start": 705, "end": 707, "id": 118, "annotation": null}, {"text": "electrical", "start": 708, "end": 718, "id": 119, "annotation": null}, {"text": "conductivity", "start": 719, "end": 731, "id": 120, "annotation": null}, {"text": ",", "start": 732, "end": 733, "id": 121, "annotation": null}, {"text": "while", "start": 734, "end": 739, "id": 122, "annotation": null}, {"text": "the", "start": 740, "end": 743, "id": 123, "annotation": null}, {"text": "infrared", "start": 744, "end": 752, "id": 124, "annotation": null}, {"text": "emissivities", "start": 753, "end": 765, "id": 125, "annotation": null}, {"text": "are", "start": 766, "end": 769, "id": 126, "annotation": null}, {"text": "decreased", "start": 770, "end": 779, "id": 127, "annotation": null}, {"text": ".", "start": 780, "end": 781, "id": 128, "annotation": null}], [{"text": "Moreover", "start": 782, "end": 790, "id": 129, "annotation": null}, {"text": ",", "start": 791, "end": 792, "id": 130, "annotation": null}, {"text": "microwave", "start": 793, "end": 802, "id": 131, "annotation": null}, {"text": "-", "start": 803, "end": 804, "id": 132, "annotation": null}, {"text": "absorbing", "start": 805, "end": 814, "id": 133, "annotation": null}, {"text": "properties", "start": 815, "end": 825, "id": 134, "annotation": null}, {"text": "in", "start": 826, "end": 828, "id": 135, "annotation": null}, {"text": "the", "start": 829, "end": 832, "id": 136, "annotation": null}, {"text": "frequency", "start": 833, "end": 842, "id": 137, "annotation": null}, {"text": "range", "start": 843, "end": 848, "id": 138, "annotation": null}, {"text": "of", "start": 849, "end": 851, "id": 139, "annotation": null}, {"text": "2", "start": 852, "end": 853, "id": 140, "annotation": null}, {"text": "-", "start": 854, "end": 855, "id": 141, "annotation": null}, {"text": "18", "start": 856, "end": 858, "id": 142, "annotation": null}, {"text": "GHz", "start": 859, "end": 862, "id": 143, "annotation": null}, {"text": "are", "start": 863, "end": 866, "id": 144, "annotation": null}, {"text": "sensitive", "start": 867, "end": 876, "id": 145, "annotation": null}, {"text": "to", "start": 877, "end": 879, "id": 146, "annotation": null}, {"text": "Ca", "start": 880, "end": 882, "id": 147, "annotation": null}, {"text": "content", "start": 883, "end": 890, "id": 148, "annotation": null}, {"text": ".", "start": 891, "end": 892, "id": 149, "annotation": null}], [{"text": "The", "start": 893, "end": 896, "id": 150, "annotation": null}, {"text": "optimal", "start": 897, "end": 904, "id": 151, "annotation": null}, {"text": "reflection", "start": 905, "end": 915, "id": 152, "annotation": null}, {"text": "loss", "start": 916, "end": 920, "id": 153, "annotation": null}, {"text": "calculated", "start": 921, "end": 931, "id": 154, "annotation": null}, {"text": "from", "start": 932, "end": 936, "id": 155, "annotation": null}, {"text": "the", "start": 937, "end": 940, "id": 156, "annotation": null}, {"text": "measured", "start": 941, "end": 949, "id": 157, "annotation": null}, {"text": "permittivity", "start": 950, "end": 962, "id": 158, "annotation": null}, {"text": "and", "start": 963, "end": 966, "id": 159, "annotation": null}, {"text": "permeability", "start": 967, "end": 979, "id": 160, "annotation": null}, {"text": "is", "start": 980, "end": 982, "id": 161, "annotation": null}, {"text": "42", "start": 983, "end": 985, "id": 162, "annotation": null}, {"text": "dB", "start": 986, "end": 988, "id": 163, "annotation": null}, {"text": "at", "start": 989, "end": 991, "id": 164, "annotation": null}, {"text": "10.5", "start": 992, "end": 996, "id": 165, "annotation": null}, {"text": "GHz", "start": 997, "end": 1000, "id": 166, "annotation": null}, {"text": "with", "start": 1001, "end": 1005, "id": 167, "annotation": null}, {"text": "a", "start": 1006, "end": 1007, "id": 168, "annotation": null}, {"text": "thickness", "start": 1008, "end": 1017, "id": 169, "annotation": null}, {"text": "of", "start": 1018, "end": 1020, "id": 170, "annotation": null}, {"text": "2.0", "start": 1021, "end": 1024, "id": 171, "annotation": null}, {"text": "mm", "start": 1025, "end": 1027, "id": 172, "annotation": null}, {"text": "when", "start": 1028, "end": 1032, "id": 173, "annotation": null}, {"text": "the", "start": 1033, "end": 1036, "id": 174, "annotation": null}, {"text": "doping", "start": 1037, "end": 1043, "id": 175, "annotation": null}, {"text": "amount", "start": 1044, "end": 1050, "id": 176, "annotation": null}, {"text": "of", "start": 1051, "end": 1053, "id": 177, "annotation": null}, {"text": "Ca2", "start": 1054, "end": 1057, "id": 178, "annotation": "DOPANT"}, {"text": "+", "start": 1058, "end": 1059, "id": 179, "annotation": "DOPANT"}, {"text": "is", "start": 1060, "end": 1062, "id": 180, "annotation": null}, {"text": "0.1", "start": 1063, "end": 1066, "id": 181, "annotation": "DOPMODQ"}, {"text": ".", "start": 1067, "end": 1068, "id": 182, "annotation": null}], [{"text": "It", "start": 1069, "end": 1071, "id": 183, "annotation": null}, {"text": "is", "start": 1072, "end": 1074, "id": 184, "annotation": null}, {"text": "possible", "start": 1075, "end": 1083, "id": 185, "annotation": null}, {"text": "to", "start": 1084, "end": 1086, "id": 186, "annotation": null}, {"text": "make", "start": 1087, "end": 1091, "id": 187, "annotation": null}, {"text": "Ca", "start": 1092, "end": 1094, "id": 188, "annotation": "DOPANT"}, {"text": "-", "start": 1095, "end": 1096, "id": 189, "annotation": null}, {"text": "doped", "start": 1097, "end": 1102, "id": 190, "annotation": null}, {"text": "lanthanum", "start": 1103, "end": 1112, "id": 191, "annotation": "BASEMAT"}, {"text": "manganites", "start": 1113, "end": 1123, "id": 192, "annotation": "BASEMAT"}, {"text": "achieve", "start": 1124, "end": 1131, "id": 193, "annotation": null}, {"text": "compatible", "start": 1132, "end": 1142, "id": 194, "annotation": null}, {"text": "camouflage", "start": 1143, "end": 1153, "id": 195, "annotation": null}, {"text": "capability", "start": 1154, "end": 1164, "id": 196, "annotation": null}, {"text": "for", "start": 1165, "end": 1168, "id": 197, "annotation": null}, {"text": "radar", "start": 1169, "end": 1174, "id": 198, "annotation": null}, {"text": "and", "start": 1175, "end": 1178, "id": 199, "annotation": null}, {"text": "infrared", "start": 1179, "end": 1187, "id": 200, "annotation": null}, {"text": "wave", "start": 1188, "end": 1192, "id": 201, "annotation": null}, {"text": "-", "start": 1193, "end": 1194, "id": 202, "annotation": null}, {"text": "band", "start": 1195, "end": 1199, "id": 203, "annotation": null}, {"text": ".", "start": 1200, "end": 1201, "id": 204, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "We report the modified optical properties of Sm3+ doped magnesium zinc sulfophosphate glass system with silver nanoparticles (Ag NPs) inclusion. Three glass samples were prepared using melt quenching method and characterized. TEM images revealed the nucleation of Ag NPs with average diameter \u224812.50 nm. The UV\u2013Vis\u2013NIR spectra showed thirteen absorption bands. The surface plasmon resonance (SPR) band of Ag NPs was manifested at 446 nm. FTIR spectra disclosed the bonding vibrations for P-O bonds, P-O-P linkages, and PO2 units. Ag NPs concentration dependent bonding parameters and Judd-Ofelt (JO) intensity parameters were calculated. The JO parameter \u03a9 2 was reduced with the increase of Ag NPs contents, indicating the ionicity and symmetry enhancement between Sm3+ ions with their surrounding ligands. The emission spectra of all samples under the excitation wavelength of 402 nm exhibited four significant peaks centered at 562, 599, 644 and 702 nm which are allocated to 4G5/2\u21926H5/2, 6H7/2, 6H9/2 and 6H11/2 transitions, respectively. Inclusion of Ag NPs was discerned to augment the luminescence intensity by a factor of two, which was majorly ascribed to the local field effect of Ag NPs and subsequent energy transfer from the NPs to Sm3+ ions.", "meta": {"doi": "10.1016/j.optmat.2017.08.021"}, "_input_hash": -1078895330, "_task_hash": -421330052, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "report", "start": 3, "end": 9, "id": 1, "annotation": null}, {"text": "the", "start": 10, "end": 13, "id": 2, "annotation": null}, {"text": "modified", "start": 14, "end": 22, "id": 3, "annotation": null}, {"text": "optical", "start": 23, "end": 30, "id": 4, "annotation": null}, {"text": "properties", "start": 31, "end": 41, "id": 5, "annotation": null}, {"text": "of", "start": 42, "end": 44, "id": 6, "annotation": null}, {"text": "Sm3", "start": 45, "end": 48, "id": 7, "annotation": "DOPANT"}, {"text": "+", "start": 49, "end": 50, "id": 8, "annotation": "DOPANT"}, {"text": "doped", "start": 51, "end": 56, "id": 9, "annotation": null}, {"text": "magnesium", "start": 57, "end": 66, "id": 10, "annotation": "BASEMAT"}, {"text": "zinc", "start": 67, "end": 71, "id": 11, "annotation": null}, {"text": "sulfophosphate", "start": 72, "end": 86, "id": 12, "annotation": "BASEMAT"}, {"text": "glass", "start": 87, "end": 92, "id": 13, "annotation": null}, {"text": "system", "start": 93, "end": 99, "id": 14, "annotation": null}, {"text": "with", "start": 100, "end": 104, "id": 15, "annotation": null}, {"text": "silver", "start": 105, "end": 111, "id": 16, "annotation": null}, {"text": "nanoparticles", "start": 112, "end": 125, "id": 17, "annotation": null}, {"text": "(", "start": 126, "end": 127, "id": 18, "annotation": null}, {"text": "Ag", "start": 128, "end": 130, "id": 19, "annotation": null}, {"text": "NPs", "start": 131, "end": 134, "id": 20, "annotation": null}, {"text": ")", "start": 135, "end": 136, "id": 21, "annotation": null}, {"text": "inclusion", "start": 137, "end": 146, "id": 22, "annotation": null}, {"text": ".", "start": 147, "end": 148, "id": 23, "annotation": null}], [{"text": "Three", "start": 149, "end": 154, "id": 24, "annotation": null}, {"text": "glass", "start": 155, "end": 160, "id": 25, "annotation": null}, {"text": "samples", "start": 161, "end": 168, "id": 26, "annotation": null}, {"text": "were", "start": 169, "end": 173, "id": 27, "annotation": null}, {"text": "prepared", "start": 174, "end": 182, "id": 28, "annotation": null}, {"text": "using", "start": 183, "end": 188, "id": 29, "annotation": null}, {"text": "melt", "start": 189, "end": 193, "id": 30, "annotation": null}, {"text": "quenching", "start": 194, "end": 203, "id": 31, "annotation": null}, {"text": "method", "start": 204, "end": 210, "id": 32, "annotation": null}, {"text": "and", "start": 211, "end": 214, "id": 33, "annotation": null}, {"text": "characterized", "start": 215, "end": 228, "id": 34, "annotation": null}, {"text": ".", "start": 229, "end": 230, "id": 35, "annotation": null}], [{"text": "TEM", "start": 231, "end": 234, "id": 36, "annotation": null}, {"text": "images", "start": 235, "end": 241, "id": 37, "annotation": null}, {"text": "revealed", "start": 242, "end": 250, "id": 38, "annotation": null}, {"text": "the", "start": 251, "end": 254, "id": 39, "annotation": null}, {"text": "nucleation", "start": 255, "end": 265, "id": 40, "annotation": null}, {"text": "of", "start": 266, "end": 268, "id": 41, "annotation": null}, {"text": "Ag", "start": 269, "end": 271, "id": 42, "annotation": null}, {"text": "NPs", "start": 272, "end": 275, "id": 43, "annotation": null}, {"text": "with", "start": 276, "end": 280, "id": 44, "annotation": null}, {"text": "average", "start": 281, "end": 288, "id": 45, "annotation": null}, {"text": "diameter", "start": 289, "end": 297, "id": 46, "annotation": null}, {"text": "\u224812.50", "start": 298, "end": 304, "id": 47, "annotation": null}, {"text": "nm", "start": 305, "end": 307, "id": 48, "annotation": null}, {"text": ".", "start": 308, "end": 309, "id": 49, "annotation": null}], [{"text": "The", "start": 310, "end": 313, "id": 50, "annotation": null}, {"text": "UV", "start": 314, "end": 316, "id": 51, "annotation": null}, {"text": "\u2013", "start": 317, "end": 318, "id": 52, "annotation": null}, {"text": "Vis", "start": 319, "end": 322, "id": 53, "annotation": null}, {"text": "\u2013", "start": 323, "end": 324, "id": 54, "annotation": null}, {"text": "NIR", "start": 325, "end": 328, "id": 55, "annotation": null}, {"text": "spectra", "start": 329, "end": 336, "id": 56, "annotation": null}, {"text": "showed", "start": 337, "end": 343, "id": 57, "annotation": null}, {"text": "thirteen", "start": 344, "end": 352, "id": 58, "annotation": null}, {"text": "absorption", "start": 353, "end": 363, "id": 59, "annotation": null}, {"text": "bands", "start": 364, "end": 369, "id": 60, "annotation": null}, {"text": ".", "start": 370, "end": 371, "id": 61, "annotation": null}], [{"text": "The", "start": 372, "end": 375, "id": 62, "annotation": null}, {"text": "surface", "start": 376, "end": 383, "id": 63, "annotation": null}, {"text": "plasmon", "start": 384, "end": 391, "id": 64, "annotation": null}, {"text": "resonance", "start": 392, "end": 401, "id": 65, "annotation": null}, {"text": "(", "start": 402, "end": 403, "id": 66, "annotation": null}, {"text": "SPR", "start": 404, "end": 407, "id": 67, "annotation": null}, {"text": ")", "start": 408, "end": 409, "id": 68, "annotation": null}, {"text": "band", "start": 410, "end": 414, "id": 69, "annotation": null}, {"text": "of", "start": 415, "end": 417, "id": 70, "annotation": null}, {"text": "Ag", "start": 418, "end": 420, "id": 71, "annotation": null}, {"text": "NPs", "start": 421, "end": 424, "id": 72, "annotation": null}, {"text": "was", "start": 425, "end": 428, "id": 73, "annotation": null}, {"text": "manifested", "start": 429, "end": 439, "id": 74, "annotation": null}, {"text": "at", "start": 440, "end": 442, "id": 75, "annotation": null}, {"text": "446", "start": 443, "end": 446, "id": 76, "annotation": null}, {"text": "nm", "start": 447, "end": 449, "id": 77, "annotation": null}, {"text": ".", "start": 450, "end": 451, "id": 78, "annotation": null}], [{"text": "FTIR", "start": 452, "end": 456, "id": 79, "annotation": null}, {"text": "spectra", "start": 457, "end": 464, "id": 80, "annotation": null}, {"text": "disclosed", "start": 465, "end": 474, "id": 81, "annotation": null}, {"text": "the", "start": 475, "end": 478, "id": 82, "annotation": null}, {"text": "bonding", "start": 479, "end": 486, "id": 83, "annotation": null}, {"text": "vibrations", "start": 487, "end": 497, "id": 84, "annotation": null}, {"text": "for", "start": 498, "end": 501, "id": 85, "annotation": null}, {"text": "P", "start": 502, "end": 503, "id": 86, "annotation": null}, {"text": "-", "start": 504, "end": 505, "id": 87, "annotation": null}, {"text": "O", "start": 506, "end": 507, "id": 88, "annotation": null}, {"text": "bonds", "start": 508, "end": 513, "id": 89, "annotation": null}, {"text": ",", "start": 514, "end": 515, "id": 90, "annotation": null}, {"text": "P", "start": 516, "end": 517, "id": 91, "annotation": null}, {"text": "-", "start": 518, "end": 519, "id": 92, "annotation": null}, {"text": "O", "start": 520, "end": 521, "id": 93, "annotation": null}, {"text": "-", "start": 522, "end": 523, "id": 94, "annotation": null}, {"text": "P", "start": 524, "end": 525, "id": 95, "annotation": null}, {"text": "linkages", "start": 526, "end": 534, "id": 96, "annotation": null}, {"text": ",", "start": 535, "end": 536, "id": 97, "annotation": null}, {"text": "and", "start": 537, "end": 540, "id": 98, "annotation": null}, {"text": "PO2", "start": 541, "end": 544, "id": 99, "annotation": null}, {"text": "units", "start": 545, "end": 550, "id": 100, "annotation": null}, {"text": ".", "start": 551, "end": 552, "id": 101, "annotation": null}], [{"text": "Ag", "start": 553, "end": 555, "id": 102, "annotation": null}, {"text": "NPs", "start": 556, "end": 559, "id": 103, "annotation": null}, {"text": "concentration", "start": 560, "end": 573, "id": 104, "annotation": null}, {"text": "dependent", "start": 574, "end": 583, "id": 105, "annotation": null}, {"text": "bonding", "start": 584, "end": 591, "id": 106, "annotation": null}, {"text": "parameters", "start": 592, "end": 602, "id": 107, "annotation": null}, {"text": "and", "start": 603, "end": 606, "id": 108, "annotation": null}, {"text": "Judd", "start": 607, "end": 611, "id": 109, "annotation": null}, {"text": "-", "start": 612, "end": 613, "id": 110, "annotation": null}, {"text": "Ofelt", "start": 614, "end": 619, "id": 111, "annotation": null}, {"text": "(", "start": 620, "end": 621, "id": 112, "annotation": null}, {"text": "JO", "start": 622, "end": 624, "id": 113, "annotation": null}, {"text": ")", "start": 625, "end": 626, "id": 114, "annotation": null}, {"text": "intensity", "start": 627, "end": 636, "id": 115, "annotation": null}, {"text": "parameters", "start": 637, "end": 647, "id": 116, "annotation": null}, {"text": "were", "start": 648, "end": 652, "id": 117, "annotation": null}, {"text": "calculated", "start": 653, "end": 663, "id": 118, "annotation": null}, {"text": ".", "start": 664, "end": 665, "id": 119, "annotation": null}], [{"text": "The", "start": 666, "end": 669, "id": 120, "annotation": null}, {"text": "JO", "start": 670, "end": 672, "id": 121, "annotation": null}, {"text": "parameter", "start": 673, "end": 682, "id": 122, "annotation": null}, {"text": "\u03a9", "start": 683, "end": 684, "id": 123, "annotation": null}, {"text": "2", "start": 685, "end": 686, "id": 124, "annotation": null}, {"text": "was", "start": 687, "end": 690, "id": 125, "annotation": null}, {"text": "reduced", "start": 691, "end": 698, "id": 126, "annotation": null}, {"text": "with", "start": 699, "end": 703, "id": 127, "annotation": null}, {"text": "the", "start": 704, "end": 707, "id": 128, "annotation": null}, {"text": "increase", "start": 708, "end": 716, "id": 129, "annotation": null}, {"text": "of", "start": 717, "end": 719, "id": 130, "annotation": null}, {"text": "Ag", "start": 720, "end": 722, "id": 131, "annotation": null}, {"text": "NPs", "start": 723, "end": 726, "id": 132, "annotation": null}, {"text": "contents", "start": 727, "end": 735, "id": 133, "annotation": null}, {"text": ",", "start": 736, "end": 737, "id": 134, "annotation": null}, {"text": "indicating", "start": 738, "end": 748, "id": 135, "annotation": null}, {"text": "the", "start": 749, "end": 752, "id": 136, "annotation": null}, {"text": "ionicity", "start": 753, "end": 761, "id": 137, "annotation": null}, {"text": "and", "start": 762, "end": 765, "id": 138, "annotation": null}, {"text": "symmetry", "start": 766, "end": 774, "id": 139, "annotation": null}, {"text": "enhancement", "start": 775, "end": 786, "id": 140, "annotation": null}, {"text": "between", "start": 787, "end": 794, "id": 141, "annotation": null}, {"text": "Sm3", "start": 795, "end": 798, "id": 142, "annotation": null}, {"text": "+", "start": 799, "end": 800, "id": 143, "annotation": null}, {"text": "ions", "start": 801, "end": 805, "id": 144, "annotation": null}, {"text": "with", "start": 806, "end": 810, "id": 145, "annotation": null}, {"text": "their", "start": 811, "end": 816, "id": 146, "annotation": null}, {"text": "surrounding", "start": 817, "end": 828, "id": 147, "annotation": null}, {"text": "ligands", "start": 829, "end": 836, "id": 148, "annotation": null}, {"text": ".", "start": 837, "end": 838, "id": 149, "annotation": null}], [{"text": "The", "start": 839, "end": 842, "id": 150, "annotation": null}, {"text": "emission", "start": 843, "end": 851, "id": 151, "annotation": null}, {"text": "spectra", "start": 852, "end": 859, "id": 152, "annotation": null}, {"text": "of", "start": 860, "end": 862, "id": 153, "annotation": null}, {"text": "all", "start": 863, "end": 866, "id": 154, "annotation": null}, {"text": "samples", "start": 867, "end": 874, "id": 155, "annotation": null}, {"text": "under", "start": 875, "end": 880, "id": 156, "annotation": null}, {"text": "the", "start": 881, "end": 884, "id": 157, "annotation": null}, {"text": "excitation", "start": 885, "end": 895, "id": 158, "annotation": null}, {"text": "wavelength", "start": 896, "end": 906, "id": 159, "annotation": null}, {"text": "of", "start": 907, "end": 909, "id": 160, "annotation": null}, {"text": "402", "start": 910, "end": 913, "id": 161, "annotation": null}, {"text": "nm", "start": 914, "end": 916, "id": 162, "annotation": null}, {"text": "exhibited", "start": 917, "end": 926, "id": 163, "annotation": null}, {"text": "four", "start": 927, "end": 931, "id": 164, "annotation": null}, {"text": "significant", "start": 932, "end": 943, "id": 165, "annotation": null}, {"text": "peaks", "start": 944, "end": 949, "id": 166, "annotation": null}, {"text": "centered", "start": 950, "end": 958, "id": 167, "annotation": null}, {"text": "at", "start": 959, "end": 961, "id": 168, "annotation": null}, {"text": "562", "start": 962, "end": 965, "id": 169, "annotation": null}, {"text": ",", "start": 966, "end": 967, "id": 170, "annotation": null}, {"text": "599", "start": 968, "end": 971, "id": 171, "annotation": null}, {"text": ",", "start": 972, "end": 973, "id": 172, "annotation": null}, {"text": "644", "start": 974, "end": 977, "id": 173, "annotation": null}, {"text": "and", "start": 978, "end": 981, "id": 174, "annotation": null}, {"text": "702", "start": 982, "end": 985, "id": 175, "annotation": null}, {"text": "nm", "start": 986, "end": 988, "id": 176, "annotation": null}, {"text": "which", "start": 989, "end": 994, "id": 177, "annotation": null}, {"text": "are", "start": 995, "end": 998, "id": 178, "annotation": null}, {"text": "allocated", "start": 999, "end": 1008, "id": 179, "annotation": null}, {"text": "to", "start": 1009, "end": 1011, "id": 180, "annotation": null}, {"text": "4G5/2\u21926H5/2", "start": 1012, "end": 1023, "id": 181, "annotation": null}, {"text": ",", "start": 1024, "end": 1025, "id": 182, "annotation": null}, {"text": "6H7/2", "start": 1026, "end": 1031, "id": 183, "annotation": null}, {"text": ",", "start": 1032, "end": 1033, "id": 184, "annotation": null}, {"text": "6H9/2", "start": 1034, "end": 1039, "id": 185, "annotation": null}, {"text": "and", "start": 1040, "end": 1043, "id": 186, "annotation": null}, {"text": "6H11/2", "start": 1044, "end": 1050, "id": 187, "annotation": null}, {"text": "transitions", "start": 1051, "end": 1062, "id": 188, "annotation": null}, {"text": ",", "start": 1063, "end": 1064, "id": 189, "annotation": null}, {"text": "respectively", "start": 1065, "end": 1077, "id": 190, "annotation": null}, {"text": ".", "start": 1078, "end": 1079, "id": 191, "annotation": null}], [{"text": "Inclusion", "start": 1080, "end": 1089, "id": 192, "annotation": null}, {"text": "of", "start": 1090, "end": 1092, "id": 193, "annotation": null}, {"text": "Ag", "start": 1093, "end": 1095, "id": 194, "annotation": null}, {"text": "NPs", "start": 1096, "end": 1099, "id": 195, "annotation": null}, {"text": "was", "start": 1100, "end": 1103, "id": 196, "annotation": null}, {"text": "discerned", "start": 1104, "end": 1113, "id": 197, "annotation": null}, {"text": "to", "start": 1114, "end": 1116, "id": 198, "annotation": null}, {"text": "augment", "start": 1117, "end": 1124, "id": 199, "annotation": null}, {"text": "the", "start": 1125, "end": 1128, "id": 200, "annotation": null}, {"text": "luminescence", "start": 1129, "end": 1141, "id": 201, "annotation": null}, {"text": "intensity", "start": 1142, "end": 1151, "id": 202, "annotation": null}, {"text": "by", "start": 1152, "end": 1154, "id": 203, "annotation": null}, {"text": "a", "start": 1155, "end": 1156, "id": 204, "annotation": null}, {"text": "factor", "start": 1157, "end": 1163, "id": 205, "annotation": null}, {"text": "of", "start": 1164, "end": 1166, "id": 206, "annotation": null}, {"text": "two", "start": 1167, "end": 1170, "id": 207, "annotation": null}, {"text": ",", "start": 1171, "end": 1172, "id": 208, "annotation": null}, {"text": "which", "start": 1173, "end": 1178, "id": 209, "annotation": null}, {"text": "was", "start": 1179, "end": 1182, "id": 210, "annotation": null}, {"text": "majorly", "start": 1183, "end": 1190, "id": 211, "annotation": null}, {"text": "ascribed", "start": 1191, "end": 1199, "id": 212, "annotation": null}, {"text": "to", "start": 1200, "end": 1202, "id": 213, "annotation": null}, {"text": "the", "start": 1203, "end": 1206, "id": 214, "annotation": null}, {"text": "local", "start": 1207, "end": 1212, "id": 215, "annotation": null}, {"text": "field", "start": 1213, "end": 1218, "id": 216, "annotation": null}, {"text": "effect", "start": 1219, "end": 1225, "id": 217, "annotation": null}, {"text": "of", "start": 1226, "end": 1228, "id": 218, "annotation": null}, {"text": "Ag", "start": 1229, "end": 1231, "id": 219, "annotation": null}, {"text": "NPs", "start": 1232, "end": 1235, "id": 220, "annotation": null}, {"text": "and", "start": 1236, "end": 1239, "id": 221, "annotation": null}, {"text": "subsequent", "start": 1240, "end": 1250, "id": 222, "annotation": null}, {"text": "energy", "start": 1251, "end": 1257, "id": 223, "annotation": null}, {"text": "transfer", "start": 1258, "end": 1266, "id": 224, "annotation": null}, {"text": "from", "start": 1267, "end": 1271, "id": 225, "annotation": null}, {"text": "the", "start": 1272, "end": 1275, "id": 226, "annotation": null}, {"text": "NPs", "start": 1276, "end": 1279, "id": 227, "annotation": null}, {"text": "to", "start": 1280, "end": 1282, "id": 228, "annotation": null}, {"text": "Sm3", "start": 1283, "end": 1286, "id": 229, "annotation": null}, {"text": "+", "start": 1287, "end": 1288, "id": 230, "annotation": null}, {"text": "ions", "start": 1289, "end": 1293, "id": 231, "annotation": null}, {"text": ".", "start": 1294, "end": 1295, "id": 232, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "We investigated the structural; optical and electrical properties of ZnO thin films as the n-type semiconductor for silicon a-Si:H/Si heterojunction photodiodes. The ZnO film forms the front contact of the super-strata solar cell and has to exhibit good electrical (high conductivity) and optical (high transmittance) properties. In this paper we focused our attention on the influence of doping on device performance. The results show that the X-ray diffraction (XRD) spectra revealed a preferred orientation of the crystallites along c-axis. SEM images show that all films display a granular, polycrystalline morphology and the ZnO:Al exhibits a better grain uniformity. The transmittance of the doped films was found to be higher when compared to undoped ZnO. A low resistivity of the order of 2.8\u00d710\u22124\u03a9cm is obtained for ZnO:Al using 0.4M concentration of zinc acetate. The photoluminescence (PL) spectra exhibit a blue band with two peaks centered at 442nm (2.80eV) and 490nm (2.53eV). It is noted that after doping the ZnO films a shift of the band by 22nm (0.15eV) is recorded and a high luminescence occurs when using Al as a dopant. Dark I\u2013V curves of ZnO/a-Si:H/Si structure showed large difference, which means there is a kind of barrier to current flow between ZnO and a-Si:H layer. Doping films was applied and the turn-on voltages are around 0.6V. Under reverse bias, the current of the ZnO/a-Si:H/Si heterojunction is larger than that of ZnO:Al/a-Si:H/Si. The improvement with ZnO:Al is attributed to a higher number of generated carriers in the nanostructure (due to the higher transmittance and a higher luminescence) that increases the probability of collisions.", "meta": {"doi": "10.1016/j.spmi.2012.05.011"}, "_input_hash": 741936334, "_task_hash": 240114456, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "investigated", "start": 3, "end": 15, "id": 1, "annotation": null}, {"text": "the", "start": 16, "end": 19, "id": 2, "annotation": null}, {"text": "structural", "start": 20, "end": 30, "id": 3, "annotation": null}, {"text": ";", "start": 31, "end": 32, "id": 4, "annotation": null}, {"text": "optical", "start": 33, "end": 40, "id": 5, "annotation": null}, {"text": "and", "start": 41, "end": 44, "id": 6, "annotation": null}, {"text": "electrical", "start": 45, "end": 55, "id": 7, "annotation": null}, {"text": "properties", "start": 56, "end": 66, "id": 8, "annotation": null}, {"text": "of", "start": 67, "end": 69, "id": 9, "annotation": null}, {"text": "ZnO", "start": 70, "end": 73, "id": 10, "annotation": null}, {"text": "thin", "start": 74, "end": 78, "id": 11, "annotation": null}, {"text": "films", "start": 79, "end": 84, "id": 12, "annotation": null}, {"text": "as", "start": 85, "end": 87, "id": 13, "annotation": null}, {"text": "the", "start": 88, "end": 91, "id": 14, "annotation": null}, {"text": "n", "start": 92, "end": 93, "id": 15, "annotation": null}, {"text": "-", "start": 94, "end": 95, "id": 16, "annotation": null}, {"text": "type", "start": 96, "end": 100, "id": 17, "annotation": null}, {"text": "semiconductor", "start": 101, "end": 114, "id": 18, "annotation": null}, {"text": "for", "start": 115, "end": 118, "id": 19, "annotation": null}, {"text": "silicon", "start": 119, "end": 126, "id": 20, "annotation": null}, {"text": "a", "start": 127, "end": 128, "id": 21, "annotation": null}, {"text": "-", "start": 129, "end": 130, "id": 22, "annotation": null}, {"text": "Si", "start": 131, "end": 133, "id": 23, "annotation": "BASEMAT"}, {"text": ":", "start": 134, "end": 135, "id": 24, "annotation": null}, {"text": "H", "start": 136, "end": 137, "id": 25, "annotation": "DOPANT"}, {"text": "/", "start": 138, "end": 139, "id": 26, "annotation": null}, {"text": "Si", "start": 140, "end": 142, "id": 27, "annotation": null}, {"text": "heterojunction", "start": 143, "end": 157, "id": 28, "annotation": null}, {"text": "photodiodes", "start": 158, "end": 169, "id": 29, "annotation": null}, {"text": ".", "start": 170, "end": 171, "id": 30, "annotation": null}], [{"text": "The", "start": 172, "end": 175, "id": 31, "annotation": null}, {"text": "ZnO", "start": 176, "end": 179, "id": 32, "annotation": null}, {"text": "film", "start": 180, "end": 184, "id": 33, "annotation": null}, {"text": "forms", "start": 185, "end": 190, "id": 34, "annotation": null}, {"text": "the", "start": 191, "end": 194, "id": 35, "annotation": null}, {"text": "front", "start": 195, "end": 200, "id": 36, "annotation": null}, {"text": "contact", "start": 201, "end": 208, "id": 37, "annotation": null}, {"text": "of", "start": 209, "end": 211, "id": 38, "annotation": null}, {"text": "the", "start": 212, "end": 215, "id": 39, "annotation": null}, {"text": "super", "start": 216, "end": 221, "id": 40, "annotation": null}, {"text": "-", "start": 222, "end": 223, "id": 41, "annotation": null}, {"text": "strata", "start": 224, "end": 230, "id": 42, "annotation": null}, {"text": "solar", "start": 231, "end": 236, "id": 43, "annotation": null}, {"text": "cell", "start": 237, "end": 241, "id": 44, "annotation": null}, {"text": "and", "start": 242, "end": 245, "id": 45, "annotation": null}, {"text": "has", "start": 246, "end": 249, "id": 46, "annotation": null}, {"text": "to", "start": 250, "end": 252, "id": 47, "annotation": null}, {"text": "exhibit", "start": 253, "end": 260, "id": 48, "annotation": null}, {"text": "good", "start": 261, "end": 265, "id": 49, "annotation": null}, {"text": "electrical", "start": 266, "end": 276, "id": 50, "annotation": null}, {"text": "(", "start": 277, "end": 278, "id": 51, "annotation": null}, {"text": "high", "start": 279, "end": 283, "id": 52, "annotation": null}, {"text": "conductivity", "start": 284, "end": 296, "id": 53, "annotation": null}, {"text": ")", "start": 297, "end": 298, "id": 54, "annotation": null}, {"text": "and", "start": 299, "end": 302, "id": 55, "annotation": null}, {"text": "optical", "start": 303, "end": 310, "id": 56, "annotation": null}, {"text": "(", "start": 311, "end": 312, "id": 57, "annotation": null}, {"text": "high", "start": 313, "end": 317, "id": 58, "annotation": null}, {"text": "transmittance", "start": 318, "end": 331, "id": 59, "annotation": null}, {"text": ")", "start": 332, "end": 333, "id": 60, "annotation": null}, {"text": "properties", "start": 334, "end": 344, "id": 61, "annotation": null}, {"text": ".", "start": 345, "end": 346, "id": 62, "annotation": null}], [{"text": "In", "start": 347, "end": 349, "id": 63, "annotation": null}, {"text": "this", "start": 350, "end": 354, "id": 64, "annotation": null}, {"text": "paper", "start": 355, "end": 360, "id": 65, "annotation": null}, {"text": "we", "start": 361, "end": 363, "id": 66, "annotation": null}, {"text": "focused", "start": 364, "end": 371, "id": 67, "annotation": null}, {"text": "our", "start": 372, "end": 375, "id": 68, "annotation": null}, {"text": "attention", "start": 376, "end": 385, "id": 69, "annotation": null}, {"text": "on", "start": 386, "end": 388, "id": 70, "annotation": null}, {"text": "the", "start": 389, "end": 392, "id": 71, "annotation": null}, {"text": "influence", "start": 393, "end": 402, "id": 72, "annotation": null}, {"text": "of", "start": 403, "end": 405, "id": 73, "annotation": null}, {"text": "doping", "start": 406, "end": 412, "id": 74, "annotation": null}, {"text": "on", "start": 413, "end": 415, "id": 75, "annotation": null}, {"text": "device", "start": 416, "end": 422, "id": 76, "annotation": null}, {"text": "performance", "start": 423, "end": 434, "id": 77, "annotation": null}, {"text": ".", "start": 435, "end": 436, "id": 78, "annotation": null}], [{"text": "The", "start": 437, "end": 440, "id": 79, "annotation": null}, {"text": "results", "start": 441, "end": 448, "id": 80, "annotation": null}, {"text": "show", "start": 449, "end": 453, "id": 81, "annotation": null}, {"text": "that", "start": 454, "end": 458, "id": 82, "annotation": null}, {"text": "the", "start": 459, "end": 462, "id": 83, "annotation": null}, {"text": "X", "start": 463, "end": 464, "id": 84, "annotation": null}, {"text": "-", "start": 465, "end": 466, "id": 85, "annotation": null}, {"text": "ray", "start": 467, "end": 470, "id": 86, "annotation": null}, {"text": "diffraction", "start": 471, "end": 482, "id": 87, "annotation": null}, {"text": "(", "start": 483, "end": 484, "id": 88, "annotation": null}, {"text": "XRD", "start": 485, "end": 488, "id": 89, "annotation": null}, {"text": ")", "start": 489, "end": 490, "id": 90, "annotation": null}, {"text": "spectra", "start": 491, "end": 498, "id": 91, "annotation": null}, {"text": "revealed", "start": 499, "end": 507, "id": 92, "annotation": null}, {"text": "a", "start": 508, "end": 509, "id": 93, "annotation": null}, {"text": "preferred", "start": 510, "end": 519, "id": 94, "annotation": null}, {"text": "orientation", "start": 520, "end": 531, "id": 95, "annotation": null}, {"text": "of", "start": 532, "end": 534, "id": 96, "annotation": null}, {"text": "the", "start": 535, "end": 538, "id": 97, "annotation": null}, {"text": "crystallites", "start": 539, "end": 551, "id": 98, "annotation": null}, {"text": "along", "start": 552, "end": 557, "id": 99, "annotation": null}, {"text": "c", "start": 558, "end": 559, "id": 100, "annotation": null}, {"text": "-", "start": 560, "end": 561, "id": 101, "annotation": null}, {"text": "axis", "start": 562, "end": 566, "id": 102, "annotation": null}, {"text": ".", "start": 567, "end": 568, "id": 103, "annotation": null}], [{"text": "SEM", "start": 569, "end": 572, "id": 104, "annotation": null}, {"text": "images", "start": 573, "end": 579, "id": 105, "annotation": null}, {"text": "show", "start": 580, "end": 584, "id": 106, "annotation": null}, {"text": "that", "start": 585, "end": 589, "id": 107, "annotation": null}, {"text": "all", "start": 590, "end": 593, "id": 108, "annotation": null}, {"text": "films", "start": 594, "end": 599, "id": 109, "annotation": null}, {"text": "display", "start": 600, "end": 607, "id": 110, "annotation": null}, {"text": "a", "start": 608, "end": 609, "id": 111, "annotation": null}, {"text": "granular", "start": 610, "end": 618, "id": 112, "annotation": null}, {"text": ",", "start": 619, "end": 620, "id": 113, "annotation": null}, {"text": "polycrystalline", "start": 621, "end": 636, "id": 114, "annotation": null}, {"text": "morphology", "start": 637, "end": 647, "id": 115, "annotation": null}, {"text": "and", "start": 648, "end": 651, "id": 116, "annotation": null}, {"text": "the", "start": 652, "end": 655, "id": 117, "annotation": null}, {"text": "ZnO", "start": 656, "end": 659, "id": 118, "annotation": "BASEMAT"}, {"text": ":", "start": 660, "end": 661, "id": 119, "annotation": null}, {"text": "Al", "start": 662, "end": 664, "id": 120, "annotation": "DOPANT"}, {"text": "exhibits", "start": 665, "end": 673, "id": 121, "annotation": null}, {"text": "a", "start": 674, "end": 675, "id": 122, "annotation": null}, {"text": "better", "start": 676, "end": 682, "id": 123, "annotation": null}, {"text": "grain", "start": 683, "end": 688, "id": 124, "annotation": null}, {"text": "uniformity", "start": 689, "end": 699, "id": 125, "annotation": null}, {"text": ".", "start": 700, "end": 701, "id": 126, "annotation": null}], [{"text": "The", "start": 702, "end": 705, "id": 127, "annotation": null}, {"text": "transmittance", "start": 706, "end": 719, "id": 128, "annotation": null}, {"text": "of", "start": 720, "end": 722, "id": 129, "annotation": null}, {"text": "the", "start": 723, "end": 726, "id": 130, "annotation": null}, {"text": "doped", "start": 727, "end": 732, "id": 131, "annotation": null}, {"text": "films", "start": 733, "end": 738, "id": 132, "annotation": "BASEMAT"}, {"text": "was", "start": 739, "end": 742, "id": 133, "annotation": null}, {"text": "found", "start": 743, "end": 748, "id": 134, "annotation": null}, {"text": "to", "start": 749, "end": 751, "id": 135, "annotation": null}, {"text": "be", "start": 752, "end": 754, "id": 136, "annotation": null}, {"text": "higher", "start": 755, "end": 761, "id": 137, "annotation": null}, {"text": "when", "start": 762, "end": 766, "id": 138, "annotation": null}, {"text": "compared", "start": 767, "end": 775, "id": 139, "annotation": null}, {"text": "to", "start": 776, "end": 778, "id": 140, "annotation": null}, {"text": "undoped", "start": 779, "end": 786, "id": 141, "annotation": null}, {"text": "ZnO.", "start": 787, "end": 791, "id": 142, "annotation": null}], [{"text": "A", "start": 792, "end": 793, "id": 143, "annotation": null}, {"text": "low", "start": 794, "end": 797, "id": 144, "annotation": null}, {"text": "resistivity", "start": 798, "end": 809, "id": 145, "annotation": null}, {"text": "of", "start": 810, "end": 812, "id": 146, "annotation": null}, {"text": "the", "start": 813, "end": 816, "id": 147, "annotation": null}, {"text": "order", "start": 817, "end": 822, "id": 148, "annotation": null}, {"text": "of", "start": 823, "end": 825, "id": 149, "annotation": null}, {"text": "2.8\u00d710\u22124\u03a9cm", "start": 826, "end": 837, "id": 150, "annotation": null}, {"text": "is", "start": 838, "end": 840, "id": 151, "annotation": null}, {"text": "obtained", "start": 841, "end": 849, "id": 152, "annotation": null}, {"text": "for", "start": 850, "end": 853, "id": 153, "annotation": null}, {"text": "ZnO", "start": 854, "end": 857, "id": 154, "annotation": "BASEMAT"}, {"text": ":", "start": 858, "end": 859, "id": 155, "annotation": null}, {"text": "Al", "start": 860, "end": 862, "id": 156, "annotation": "DOPANT"}, {"text": "using", "start": 863, "end": 868, "id": 157, "annotation": null}, {"text": "0.4", "start": 869, "end": 872, "id": 158, "annotation": null}, {"text": "M", "start": 873, "end": 874, "id": 159, "annotation": null}, {"text": "concentration", "start": 875, "end": 888, "id": 160, "annotation": null}, {"text": "of", "start": 889, "end": 891, "id": 161, "annotation": null}, {"text": "zinc", "start": 892, "end": 896, "id": 162, "annotation": null}, {"text": "acetate", "start": 897, "end": 904, "id": 163, "annotation": null}, {"text": ".", "start": 905, "end": 906, "id": 164, "annotation": null}], [{"text": "The", "start": 907, "end": 910, "id": 165, "annotation": null}, {"text": "photoluminescence", "start": 911, "end": 928, "id": 166, "annotation": null}, {"text": "(", "start": 929, "end": 930, "id": 167, "annotation": null}, {"text": "PL", "start": 931, "end": 933, "id": 168, "annotation": null}, {"text": ")", "start": 934, "end": 935, "id": 169, "annotation": null}, {"text": "spectra", "start": 936, "end": 943, "id": 170, "annotation": null}, {"text": "exhibit", "start": 944, "end": 951, "id": 171, "annotation": null}, {"text": "a", "start": 952, "end": 953, "id": 172, "annotation": null}, {"text": "blue", "start": 954, "end": 958, "id": 173, "annotation": null}, {"text": "band", "start": 959, "end": 963, "id": 174, "annotation": null}, {"text": "with", "start": 964, "end": 968, "id": 175, "annotation": null}, {"text": "two", "start": 969, "end": 972, "id": 176, "annotation": null}, {"text": "peaks", "start": 973, "end": 978, "id": 177, "annotation": null}, {"text": "centered", "start": 979, "end": 987, "id": 178, "annotation": null}, {"text": "at", "start": 988, "end": 990, "id": 179, "annotation": null}, {"text": "442", "start": 991, "end": 994, "id": 180, "annotation": null}, {"text": "nm", "start": 995, "end": 997, "id": 181, "annotation": null}, {"text": "(", "start": 998, "end": 999, "id": 182, "annotation": null}, {"text": "2.80eV", "start": 1000, "end": 1006, "id": 183, "annotation": null}, {"text": ")", "start": 1007, "end": 1008, "id": 184, "annotation": null}, {"text": "and", "start": 1009, "end": 1012, "id": 185, "annotation": null}, {"text": "490", "start": 1013, "end": 1016, "id": 186, "annotation": null}, {"text": "nm", "start": 1017, "end": 1019, "id": 187, "annotation": null}, {"text": "(", "start": 1020, "end": 1021, "id": 188, "annotation": null}, {"text": "2.53eV", "start": 1022, "end": 1028, "id": 189, "annotation": null}, {"text": ")", "start": 1029, "end": 1030, "id": 190, "annotation": null}, {"text": ".", "start": 1031, "end": 1032, "id": 191, "annotation": null}], [{"text": "It", "start": 1033, "end": 1035, "id": 192, "annotation": null}, {"text": "is", "start": 1036, "end": 1038, "id": 193, "annotation": null}, {"text": "noted", "start": 1039, "end": 1044, "id": 194, "annotation": null}, {"text": "that", "start": 1045, "end": 1049, "id": 195, "annotation": null}, {"text": "after", "start": 1050, "end": 1055, "id": 196, "annotation": null}, {"text": "doping", "start": 1056, "end": 1062, "id": 197, "annotation": null}, {"text": "the", "start": 1063, "end": 1066, "id": 198, "annotation": null}, {"text": "ZnO", "start": 1067, "end": 1070, "id": 199, "annotation": "BASEMAT"}, {"text": "films", "start": 1071, "end": 1076, "id": 200, "annotation": null}, {"text": "a", "start": 1077, "end": 1078, "id": 201, "annotation": null}, {"text": "shift", "start": 1079, "end": 1084, "id": 202, "annotation": null}, {"text": "of", "start": 1085, "end": 1087, "id": 203, "annotation": null}, {"text": "the", "start": 1088, "end": 1091, "id": 204, "annotation": null}, {"text": "band", "start": 1092, "end": 1096, "id": 205, "annotation": null}, {"text": "by", "start": 1097, "end": 1099, "id": 206, "annotation": null}, {"text": "22", "start": 1100, "end": 1102, "id": 207, "annotation": null}, {"text": "nm", "start": 1103, "end": 1105, "id": 208, "annotation": null}, {"text": "(", "start": 1106, "end": 1107, "id": 209, "annotation": null}, {"text": "0.15eV", "start": 1108, "end": 1114, "id": 210, "annotation": null}, {"text": ")", "start": 1115, "end": 1116, "id": 211, "annotation": null}, {"text": "is", "start": 1117, "end": 1119, "id": 212, "annotation": null}, {"text": "recorded", "start": 1120, "end": 1128, "id": 213, "annotation": null}, {"text": "and", "start": 1129, "end": 1132, "id": 214, "annotation": null}, {"text": "a", "start": 1133, "end": 1134, "id": 215, "annotation": null}, {"text": "high", "start": 1135, "end": 1139, "id": 216, "annotation": null}, {"text": "luminescence", "start": 1140, "end": 1152, "id": 217, "annotation": null}, {"text": "occurs", "start": 1153, "end": 1159, "id": 218, "annotation": null}, {"text": "when", "start": 1160, "end": 1164, "id": 219, "annotation": null}, {"text": "using", "start": 1165, "end": 1170, "id": 220, "annotation": null}, {"text": "Al", "start": 1171, "end": 1173, "id": 221, "annotation": "DOPANT"}, {"text": "as", "start": 1174, "end": 1176, "id": 222, "annotation": null}, {"text": "a", "start": 1177, "end": 1178, "id": 223, "annotation": null}, {"text": "dopant", "start": 1179, "end": 1185, "id": 224, "annotation": null}, {"text": ".", "start": 1186, "end": 1187, "id": 225, "annotation": null}], [{"text": "Dark", "start": 1188, "end": 1192, "id": 226, "annotation": null}, {"text": "I", "start": 1193, "end": 1194, "id": 227, "annotation": null}, {"text": "\u2013", "start": 1195, "end": 1196, "id": 228, "annotation": null}, {"text": "V", "start": 1197, "end": 1198, "id": 229, "annotation": null}, {"text": "curves", "start": 1199, "end": 1205, "id": 230, "annotation": null}, {"text": "of", "start": 1206, "end": 1208, "id": 231, "annotation": null}, {"text": "ZnO", "start": 1209, "end": 1212, "id": 232, "annotation": null}, {"text": "/", "start": 1213, "end": 1214, "id": 233, "annotation": null}, {"text": "a", "start": 1215, "end": 1216, "id": 234, "annotation": null}, {"text": "-", "start": 1217, "end": 1218, "id": 235, "annotation": null}, {"text": "Si", "start": 1219, "end": 1221, "id": 236, "annotation": "BASEMAT"}, {"text": ":", "start": 1222, "end": 1223, "id": 237, "annotation": null}, {"text": "H", "start": 1224, "end": 1225, "id": 238, "annotation": "DOPANT"}, {"text": "/", "start": 1226, "end": 1227, "id": 239, "annotation": null}, {"text": "Si", "start": 1228, "end": 1230, "id": 240, "annotation": null}, {"text": "structure", "start": 1231, "end": 1240, "id": 241, "annotation": null}, {"text": "showed", "start": 1241, "end": 1247, "id": 242, "annotation": null}, {"text": "large", "start": 1248, "end": 1253, "id": 243, "annotation": null}, {"text": "difference", "start": 1254, "end": 1264, "id": 244, "annotation": null}, {"text": ",", "start": 1265, "end": 1266, "id": 245, "annotation": null}, {"text": "which", "start": 1267, "end": 1272, "id": 246, "annotation": null}, {"text": "means", "start": 1273, "end": 1278, "id": 247, "annotation": null}, {"text": "there", "start": 1279, "end": 1284, "id": 248, "annotation": null}, {"text": "is", "start": 1285, "end": 1287, "id": 249, "annotation": null}, {"text": "a", "start": 1288, "end": 1289, "id": 250, "annotation": null}, {"text": "kind", "start": 1290, "end": 1294, "id": 251, "annotation": null}, {"text": "of", "start": 1295, "end": 1297, "id": 252, "annotation": null}, {"text": "barrier", "start": 1298, "end": 1305, "id": 253, "annotation": null}, {"text": "to", "start": 1306, "end": 1308, "id": 254, "annotation": null}, {"text": "current", "start": 1309, "end": 1316, "id": 255, "annotation": null}, {"text": "flow", "start": 1317, "end": 1321, "id": 256, "annotation": null}, {"text": "between", "start": 1322, "end": 1329, "id": 257, "annotation": null}, {"text": "ZnO", "start": 1330, "end": 1333, "id": 258, "annotation": null}, {"text": "and", "start": 1334, "end": 1337, "id": 259, "annotation": null}, {"text": "a", "start": 1338, "end": 1339, "id": 260, "annotation": null}, {"text": "-", "start": 1340, "end": 1341, "id": 261, "annotation": null}, {"text": "Si", "start": 1342, "end": 1344, "id": 262, "annotation": "BASEMAT"}, {"text": ":", "start": 1345, "end": 1346, "id": 263, "annotation": null}, {"text": "H", "start": 1347, "end": 1348, "id": 264, "annotation": "DOPANT"}, {"text": "layer", "start": 1349, "end": 1354, "id": 265, "annotation": null}, {"text": ".", "start": 1355, "end": 1356, "id": 266, "annotation": null}], [{"text": "Doping", "start": 1357, "end": 1363, "id": 267, "annotation": null}, {"text": "films", "start": 1364, "end": 1369, "id": 268, "annotation": null}, {"text": "was", "start": 1370, "end": 1373, "id": 269, "annotation": null}, {"text": "applied", "start": 1374, "end": 1381, "id": 270, "annotation": null}, {"text": "and", "start": 1382, "end": 1385, "id": 271, "annotation": null}, {"text": "the", "start": 1386, "end": 1389, "id": 272, "annotation": null}, {"text": "turn", "start": 1390, "end": 1394, "id": 273, "annotation": null}, {"text": "-", "start": 1395, "end": 1396, "id": 274, "annotation": null}, {"text": "on", "start": 1397, "end": 1399, "id": 275, "annotation": null}, {"text": "voltages", "start": 1400, "end": 1408, "id": 276, "annotation": null}, {"text": "are", "start": 1409, "end": 1412, "id": 277, "annotation": null}, {"text": "around", "start": 1413, "end": 1419, "id": 278, "annotation": null}, {"text": "0.6V.", "start": 1420, "end": 1425, "id": 279, "annotation": null}], [{"text": "Under", "start": 1426, "end": 1431, "id": 280, "annotation": null}, {"text": "reverse", "start": 1432, "end": 1439, "id": 281, "annotation": null}, {"text": "bias", "start": 1440, "end": 1444, "id": 282, "annotation": null}, {"text": ",", "start": 1445, "end": 1446, "id": 283, "annotation": null}, {"text": "the", "start": 1447, "end": 1450, "id": 284, "annotation": null}, {"text": "current", "start": 1451, "end": 1458, "id": 285, "annotation": null}, {"text": "of", "start": 1459, "end": 1461, "id": 286, "annotation": null}, {"text": "the", "start": 1462, "end": 1465, "id": 287, "annotation": null}, {"text": "ZnO", "start": 1466, "end": 1469, "id": 288, "annotation": null}, {"text": "/", "start": 1470, "end": 1471, "id": 289, "annotation": null}, {"text": "a", "start": 1472, "end": 1473, "id": 290, "annotation": null}, {"text": "-", "start": 1474, "end": 1475, "id": 291, "annotation": null}, {"text": "Si", "start": 1476, "end": 1478, "id": 292, "annotation": "BASEMAT"}, {"text": ":", "start": 1479, "end": 1480, "id": 293, "annotation": null}, {"text": "H", "start": 1481, "end": 1482, "id": 294, "annotation": "DOPANT"}, {"text": "/", "start": 1483, "end": 1484, "id": 295, "annotation": null}, {"text": "Si", "start": 1485, "end": 1487, "id": 296, "annotation": null}, {"text": "heterojunction", "start": 1488, "end": 1502, "id": 297, "annotation": null}, {"text": "is", "start": 1503, "end": 1505, "id": 298, "annotation": null}, {"text": "larger", "start": 1506, "end": 1512, "id": 299, "annotation": null}, {"text": "than", "start": 1513, "end": 1517, "id": 300, "annotation": null}, {"text": "that", "start": 1518, "end": 1522, "id": 301, "annotation": null}, {"text": "of", "start": 1523, "end": 1525, "id": 302, "annotation": null}, {"text": "ZnO", "start": 1526, "end": 1529, "id": 303, "annotation": "BASEMAT"}, {"text": ":", "start": 1530, "end": 1531, "id": 304, "annotation": null}, {"text": "Al", "start": 1532, "end": 1534, "id": 305, "annotation": "DOPANT"}, {"text": "/", "start": 1535, "end": 1536, "id": 306, "annotation": null}, {"text": "a", "start": 1537, "end": 1538, "id": 307, "annotation": null}, {"text": "-", "start": 1539, "end": 1540, "id": 308, "annotation": null}, {"text": "Si", "start": 1541, "end": 1543, "id": 309, "annotation": "BASEMAT"}, {"text": ":", "start": 1544, "end": 1545, "id": 310, "annotation": null}, {"text": "H", "start": 1546, "end": 1547, "id": 311, "annotation": "DOPANT"}, {"text": "/", "start": 1548, "end": 1549, "id": 312, "annotation": null}, {"text": "Si", "start": 1550, "end": 1552, "id": 313, "annotation": null}, {"text": ".", "start": 1553, "end": 1554, "id": 314, "annotation": null}], [{"text": "The", "start": 1555, "end": 1558, "id": 315, "annotation": null}, {"text": "improvement", "start": 1559, "end": 1570, "id": 316, "annotation": null}, {"text": "with", "start": 1571, "end": 1575, "id": 317, "annotation": null}, {"text": "ZnO", "start": 1576, "end": 1579, "id": 318, "annotation": "BASEMAT"}, {"text": ":", "start": 1580, "end": 1581, "id": 319, "annotation": null}, {"text": "Al", "start": 1582, "end": 1584, "id": 320, "annotation": "DOPANT"}, {"text": "is", "start": 1585, "end": 1587, "id": 321, "annotation": null}, {"text": "attributed", "start": 1588, "end": 1598, "id": 322, "annotation": null}, {"text": "to", "start": 1599, "end": 1601, "id": 323, "annotation": null}, {"text": "a", "start": 1602, "end": 1603, "id": 324, "annotation": null}, {"text": "higher", "start": 1604, "end": 1610, "id": 325, "annotation": null}, {"text": "number", "start": 1611, "end": 1617, "id": 326, "annotation": null}, {"text": "of", "start": 1618, "end": 1620, "id": 327, "annotation": null}, {"text": "generated", "start": 1621, "end": 1630, "id": 328, "annotation": null}, {"text": "carriers", "start": 1631, "end": 1639, "id": 329, "annotation": null}, {"text": "in", "start": 1640, "end": 1642, "id": 330, "annotation": null}, {"text": "the", "start": 1643, "end": 1646, "id": 331, "annotation": null}, {"text": "nanostructure", "start": 1647, "end": 1660, "id": 332, "annotation": null}, {"text": "(", "start": 1661, "end": 1662, "id": 333, "annotation": null}, {"text": "due", "start": 1663, "end": 1666, "id": 334, "annotation": null}, {"text": "to", "start": 1667, "end": 1669, "id": 335, "annotation": null}, {"text": "the", "start": 1670, "end": 1673, "id": 336, "annotation": null}, {"text": "higher", "start": 1674, "end": 1680, "id": 337, "annotation": null}, {"text": "transmittance", "start": 1681, "end": 1694, "id": 338, "annotation": null}, {"text": "and", "start": 1695, "end": 1698, "id": 339, "annotation": null}, {"text": "a", "start": 1699, "end": 1700, "id": 340, "annotation": null}, {"text": "higher", "start": 1701, "end": 1707, "id": 341, "annotation": null}, {"text": "luminescence", "start": 1708, "end": 1720, "id": 342, "annotation": null}, {"text": ")", "start": 1721, "end": 1722, "id": 343, "annotation": null}, {"text": "that", "start": 1723, "end": 1727, "id": 344, "annotation": null}, {"text": "increases", "start": 1728, "end": 1737, "id": 345, "annotation": null}, {"text": "the", "start": 1738, "end": 1741, "id": 346, "annotation": null}, {"text": "probability", "start": 1742, "end": 1753, "id": 347, "annotation": null}, {"text": "of", "start": 1754, "end": 1756, "id": 348, "annotation": null}, {"text": "collisions", "start": 1757, "end": 1767, "id": 349, "annotation": null}, {"text": ".", "start": 1768, "end": 1769, "id": 350, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Sc-substituted La0.6Sr0.4FeO3-\u03b4 (LSFSc) has been synthesized for utilization as an integrated ceramic interconnector of tubular-solid oxide cells (SOCs). Redox stability and electric conductivity of LSFSc were improved by optimizing the scandium (Sc) doping concentration, the pH of the synthetic solutions and the calcination temperature of the organic precursors. The crystalline phases of LSFSc were stable when the pH of the synthetic solution was below 2 and the calcination temperature was over 1200\u00b0C. As the Sc concentration increased, redox stability was improved while the electrical conductivity decreased. To consider the trade-off relationship between electrical conductivity and phase stability, La0.6Sr0.4Fe0.9Sc0.1O3-\u03b4 can be considered as one of the stable compositions for an integrated ceramic interconnector of tubular-SOCs.", "meta": {"doi": "10.1016/j.ceramint.2017.03.120"}, "_input_hash": -410950871, "_task_hash": 781729314, "tokens": [[{"text": "Sc", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "-", "start": 3, "end": 4, "id": 1, "annotation": null}, {"text": "substituted", "start": 5, "end": 16, "id": 2, "annotation": null}, {"text": "La0.6Sr0.4FeO3-\u03b4", "start": 17, "end": 33, "id": 3, "annotation": null}, {"text": "(", "start": 34, "end": 35, "id": 4, "annotation": null}, {"text": "LSFSc", "start": 36, "end": 41, "id": 5, "annotation": null}, {"text": ")", "start": 42, "end": 43, "id": 6, "annotation": null}, {"text": "has", "start": 44, "end": 47, "id": 7, "annotation": null}, {"text": "been", "start": 48, "end": 52, "id": 8, "annotation": null}, {"text": "synthesized", "start": 53, "end": 64, "id": 9, "annotation": null}, {"text": "for", "start": 65, "end": 68, "id": 10, "annotation": null}, {"text": "utilization", "start": 69, "end": 80, "id": 11, "annotation": null}, {"text": "as", "start": 81, "end": 83, "id": 12, "annotation": null}, {"text": "an", "start": 84, "end": 86, "id": 13, "annotation": null}, {"text": "integrated", "start": 87, "end": 97, "id": 14, "annotation": null}, {"text": "ceramic", "start": 98, "end": 105, "id": 15, "annotation": null}, {"text": "interconnector", "start": 106, "end": 120, "id": 16, "annotation": null}, {"text": "of", "start": 121, "end": 123, "id": 17, "annotation": null}, {"text": "tubular", "start": 124, "end": 131, "id": 18, "annotation": null}, {"text": "-", "start": 132, "end": 133, "id": 19, "annotation": null}, {"text": "solid", "start": 134, "end": 139, "id": 20, "annotation": null}, {"text": "oxide", "start": 140, "end": 145, "id": 21, "annotation": null}, {"text": "cells", "start": 146, "end": 151, "id": 22, "annotation": null}, {"text": "(", "start": 152, "end": 153, "id": 23, "annotation": null}, {"text": "SOCs", "start": 154, "end": 158, "id": 24, "annotation": null}, {"text": ")", "start": 159, "end": 160, "id": 25, "annotation": null}, {"text": ".", "start": 161, "end": 162, "id": 26, "annotation": null}], [{"text": "Redox", "start": 163, "end": 168, "id": 27, "annotation": null}, {"text": "stability", "start": 169, "end": 178, "id": 28, "annotation": null}, {"text": "and", "start": 179, "end": 182, "id": 29, "annotation": null}, {"text": "electric", "start": 183, "end": 191, "id": 30, "annotation": null}, {"text": "conductivity", "start": 192, "end": 204, "id": 31, "annotation": null}, {"text": "of", "start": 205, "end": 207, "id": 32, "annotation": null}, {"text": "LSFSc", "start": 208, "end": 213, "id": 33, "annotation": "BASEMAT"}, {"text": "were", "start": 214, "end": 218, "id": 34, "annotation": null}, {"text": "improved", "start": 219, "end": 227, "id": 35, "annotation": null}, {"text": "by", "start": 228, "end": 230, "id": 36, "annotation": null}, {"text": "optimizing", "start": 231, "end": 241, "id": 37, "annotation": null}, {"text": "the", "start": 242, "end": 245, "id": 38, "annotation": null}, {"text": "scandium", "start": 246, "end": 254, "id": 39, "annotation": "DOPANT"}, {"text": "(", "start": 255, "end": 256, "id": 40, "annotation": null}, {"text": "Sc", "start": 257, "end": 259, "id": 41, "annotation": "DOPANT"}, {"text": ")", "start": 260, "end": 261, "id": 42, "annotation": null}, {"text": "doping", "start": 262, "end": 268, "id": 43, "annotation": null}, {"text": "concentration", "start": 269, "end": 282, "id": 44, "annotation": null}, {"text": ",", "start": 283, "end": 284, "id": 45, "annotation": null}, {"text": "the", "start": 285, "end": 288, "id": 46, "annotation": null}, {"text": "pH", "start": 289, "end": 291, "id": 47, "annotation": null}, {"text": "of", "start": 292, "end": 294, "id": 48, "annotation": null}, {"text": "the", "start": 295, "end": 298, "id": 49, "annotation": null}, {"text": "synthetic", "start": 299, "end": 308, "id": 50, "annotation": null}, {"text": "solutions", "start": 309, "end": 318, "id": 51, "annotation": null}, {"text": "and", "start": 319, "end": 322, "id": 52, "annotation": null}, {"text": "the", "start": 323, "end": 326, "id": 53, "annotation": null}, {"text": "calcination", "start": 327, "end": 338, "id": 54, "annotation": null}, {"text": "temperature", "start": 339, "end": 350, "id": 55, "annotation": null}, {"text": "of", "start": 351, "end": 353, "id": 56, "annotation": null}, {"text": "the", "start": 354, "end": 357, "id": 57, "annotation": null}, {"text": "organic", "start": 358, "end": 365, "id": 58, "annotation": null}, {"text": "precursors", "start": 366, "end": 376, "id": 59, "annotation": null}, {"text": ".", "start": 377, "end": 378, "id": 60, "annotation": null}], [{"text": "The", "start": 379, "end": 382, "id": 61, "annotation": null}, {"text": "crystalline", "start": 383, "end": 394, "id": 62, "annotation": null}, {"text": "phases", "start": 395, "end": 401, "id": 63, "annotation": null}, {"text": "of", "start": 402, "end": 404, "id": 64, "annotation": null}, {"text": "LSFSc", "start": 405, "end": 410, "id": 65, "annotation": null}, {"text": "were", "start": 411, "end": 415, "id": 66, "annotation": null}, {"text": "stable", "start": 416, "end": 422, "id": 67, "annotation": null}, {"text": "when", "start": 423, "end": 427, "id": 68, "annotation": null}, {"text": "the", "start": 428, "end": 431, "id": 69, "annotation": null}, {"text": "pH", "start": 432, "end": 434, "id": 70, "annotation": null}, {"text": "of", "start": 435, "end": 437, "id": 71, "annotation": null}, {"text": "the", "start": 438, "end": 441, "id": 72, "annotation": null}, {"text": "synthetic", "start": 442, "end": 451, "id": 73, "annotation": null}, {"text": "solution", "start": 452, "end": 460, "id": 74, "annotation": null}, {"text": "was", "start": 461, "end": 464, "id": 75, "annotation": null}, {"text": "below", "start": 465, "end": 470, "id": 76, "annotation": null}, {"text": "2", "start": 471, "end": 472, "id": 77, "annotation": null}, {"text": "and", "start": 473, "end": 476, "id": 78, "annotation": null}, {"text": "the", "start": 477, "end": 480, "id": 79, "annotation": null}, {"text": "calcination", "start": 481, "end": 492, "id": 80, "annotation": null}, {"text": "temperature", "start": 493, "end": 504, "id": 81, "annotation": null}, {"text": "was", "start": 505, "end": 508, "id": 82, "annotation": null}, {"text": "over", "start": 509, "end": 513, "id": 83, "annotation": null}, {"text": "1200", "start": 514, "end": 518, "id": 84, "annotation": null}, {"text": "\u00b0", "start": 519, "end": 520, "id": 85, "annotation": null}, {"text": "C", "start": 521, "end": 522, "id": 86, "annotation": null}, {"text": ".", "start": 523, "end": 524, "id": 87, "annotation": null}], [{"text": "As", "start": 525, "end": 527, "id": 88, "annotation": null}, {"text": "the", "start": 528, "end": 531, "id": 89, "annotation": null}, {"text": "Sc", "start": 532, "end": 534, "id": 90, "annotation": null}, {"text": "concentration", "start": 535, "end": 548, "id": 91, "annotation": null}, {"text": "increased", "start": 549, "end": 558, "id": 92, "annotation": null}, {"text": ",", "start": 559, "end": 560, "id": 93, "annotation": null}, {"text": "redox", "start": 561, "end": 566, "id": 94, "annotation": null}, {"text": "stability", "start": 567, "end": 576, "id": 95, "annotation": null}, {"text": "was", "start": 577, "end": 580, "id": 96, "annotation": null}, {"text": "improved", "start": 581, "end": 589, "id": 97, "annotation": null}, {"text": "while", "start": 590, "end": 595, "id": 98, "annotation": null}, {"text": "the", "start": 596, "end": 599, "id": 99, "annotation": null}, {"text": "electrical", "start": 600, "end": 610, "id": 100, "annotation": null}, {"text": "conductivity", "start": 611, "end": 623, "id": 101, "annotation": null}, {"text": "decreased", "start": 624, "end": 633, "id": 102, "annotation": null}, {"text": ".", "start": 634, "end": 635, "id": 103, "annotation": null}], [{"text": "To", "start": 636, "end": 638, "id": 104, "annotation": null}, {"text": "consider", "start": 639, "end": 647, "id": 105, "annotation": null}, {"text": "the", "start": 648, "end": 651, "id": 106, "annotation": null}, {"text": "trade", "start": 652, "end": 657, "id": 107, "annotation": null}, {"text": "-", "start": 658, "end": 659, "id": 108, "annotation": null}, {"text": "off", "start": 660, "end": 663, "id": 109, "annotation": null}, {"text": "relationship", "start": 664, "end": 676, "id": 110, "annotation": null}, {"text": "between", "start": 677, "end": 684, "id": 111, "annotation": null}, {"text": "electrical", "start": 685, "end": 695, "id": 112, "annotation": null}, {"text": "conductivity", "start": 696, "end": 708, "id": 113, "annotation": null}, {"text": "and", "start": 709, "end": 712, "id": 114, "annotation": null}, {"text": "phase", "start": 713, "end": 718, "id": 115, "annotation": null}, {"text": "stability", "start": 719, "end": 728, "id": 116, "annotation": null}, {"text": ",", "start": 729, "end": 730, "id": 117, "annotation": null}, {"text": "La0.6Sr0.4Fe0.9Sc0.1O3-\u03b4", "start": 731, "end": 755, "id": 118, "annotation": null}, {"text": "can", "start": 756, "end": 759, "id": 119, "annotation": null}, {"text": "be", "start": 760, "end": 762, "id": 120, "annotation": null}, {"text": "considered", "start": 763, "end": 773, "id": 121, "annotation": null}, {"text": "as", "start": 774, "end": 776, "id": 122, "annotation": null}, {"text": "one", "start": 777, "end": 780, "id": 123, "annotation": null}, {"text": "of", "start": 781, "end": 783, "id": 124, "annotation": null}, {"text": "the", "start": 784, "end": 787, "id": 125, "annotation": null}, {"text": "stable", "start": 788, "end": 794, "id": 126, "annotation": null}, {"text": "compositions", "start": 795, "end": 807, "id": 127, "annotation": null}, {"text": "for", "start": 808, "end": 811, "id": 128, "annotation": null}, {"text": "an", "start": 812, "end": 814, "id": 129, "annotation": null}, {"text": "integrated", "start": 815, "end": 825, "id": 130, "annotation": null}, {"text": "ceramic", "start": 826, "end": 833, "id": 131, "annotation": null}, {"text": "interconnector", "start": 834, "end": 848, "id": 132, "annotation": null}, {"text": "of", "start": 849, "end": 851, "id": 133, "annotation": null}, {"text": "tubular", "start": 852, "end": 859, "id": 134, "annotation": null}, {"text": "-", "start": 860, "end": 861, "id": 135, "annotation": null}, {"text": "SOCs", "start": 862, "end": 866, "id": 136, "annotation": null}, {"text": ".", "start": 867, "end": 868, "id": 137, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Pure and Ho-doped In2O3 nanotubes (NTs) and porous nanotubes (PNTs) were successfully synthesized by conventional electrospinning process and the following calcination at different temperatures. X-ray diffractometry (XRD), thermogravimetric analysis (TGA), Raman spectrometer, energy-dispersive spectroscopy, scanning and transmission electron microscopy were carefully used to investigate the morphologies, structures and chemical compositions of these samples. Their sensing properties toward ethanol gas were studied. Compared with pure In2O3 NTs (response value is 17), pure In2O3 PNTs (response value is 20) demonstrated enhanced sensing characteristics. What\u2019s more, the response of Ho-doped In2O3 PNTs sensors to 100\u00a0ppm ethanol was up to 60 at 240\u00a0\u00b0C, which increased three times more than that of the pure In2O3 PNTs. Additionally, the minimum concentration for ethanol was 200\u00a0ppb (response value is 2). The increased gas-sensing ability was attributed not only to the hollow and porous structure, but to the Ho dopant. Furthermore, Ho-doped In2O3 PNTs enable sensor to discriminate between ethanol and the other gas distinctly, particularly acetone that is usually indistinguishable from ethanol. Also, by analyzing XRD, TGA and Raman spectrometer, a possible formation mechanism of porous nanotubes and sensing mechanism were put forward.", "meta": {"doi": "10.1007/s10853-017-1796-9"}, "_input_hash": -1580562034, "_task_hash": -327640240, "tokens": [[{"text": "Pure", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "and", "start": 5, "end": 8, "id": 1, "annotation": null}, {"text": "Ho", "start": 9, "end": 11, "id": 2, "annotation": "DOPANT"}, {"text": "-", "start": 12, "end": 13, "id": 3, "annotation": null}, {"text": "doped", "start": 14, "end": 19, "id": 4, "annotation": null}, {"text": "In2O3", "start": 20, "end": 25, "id": 5, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 26, "end": 35, "id": 6, "annotation": null}, {"text": "(", "start": 36, "end": 37, "id": 7, "annotation": null}, {"text": "NTs", "start": 38, "end": 41, "id": 8, "annotation": null}, {"text": ")", "start": 42, "end": 43, "id": 9, "annotation": null}, {"text": "and", "start": 44, "end": 47, "id": 10, "annotation": null}, {"text": "porous", "start": 48, "end": 54, "id": 11, "annotation": null}, {"text": "nanotubes", "start": 55, "end": 64, "id": 12, "annotation": null}, {"text": "(", "start": 65, "end": 66, "id": 13, "annotation": null}, {"text": "PNTs", "start": 67, "end": 71, "id": 14, "annotation": null}, {"text": ")", "start": 72, "end": 73, "id": 15, "annotation": null}, {"text": "were", "start": 74, "end": 78, "id": 16, "annotation": null}, {"text": "successfully", "start": 79, "end": 91, "id": 17, "annotation": null}, {"text": "synthesized", "start": 92, "end": 103, "id": 18, "annotation": null}, {"text": "by", "start": 104, "end": 106, "id": 19, "annotation": null}, {"text": "conventional", "start": 107, "end": 119, "id": 20, "annotation": null}, {"text": "electrospinning", "start": 120, "end": 135, "id": 21, "annotation": null}, {"text": "process", "start": 136, "end": 143, "id": 22, "annotation": null}, {"text": "and", "start": 144, "end": 147, "id": 23, "annotation": null}, {"text": "the", "start": 148, "end": 151, "id": 24, "annotation": null}, {"text": "following", "start": 152, "end": 161, "id": 25, "annotation": null}, {"text": "calcination", "start": 162, "end": 173, "id": 26, "annotation": null}, {"text": "at", "start": 174, "end": 176, "id": 27, "annotation": null}, {"text": "different", "start": 177, "end": 186, "id": 28, "annotation": null}, {"text": "temperatures", "start": 187, "end": 199, "id": 29, "annotation": null}, {"text": ".", "start": 200, "end": 201, "id": 30, "annotation": null}], [{"text": "X", "start": 202, "end": 203, "id": 31, "annotation": null}, {"text": "-", "start": 204, "end": 205, "id": 32, "annotation": null}, {"text": "ray", "start": 206, "end": 209, "id": 33, "annotation": null}, {"text": "diffractometry", "start": 210, "end": 224, "id": 34, "annotation": null}, {"text": "(", "start": 225, "end": 226, "id": 35, "annotation": null}, {"text": "XRD", "start": 227, "end": 230, "id": 36, "annotation": null}, {"text": ")", "start": 231, "end": 232, "id": 37, "annotation": null}, {"text": ",", "start": 233, "end": 234, "id": 38, "annotation": null}, {"text": "thermogravimetric", "start": 235, "end": 252, "id": 39, "annotation": null}, {"text": "analysis", "start": 253, "end": 261, "id": 40, "annotation": null}, {"text": "(", "start": 262, "end": 263, "id": 41, "annotation": null}, {"text": "TGA", "start": 264, "end": 267, "id": 42, "annotation": null}, {"text": ")", "start": 268, "end": 269, "id": 43, "annotation": null}, {"text": ",", "start": 270, "end": 271, "id": 44, "annotation": null}, {"text": "Raman", "start": 272, "end": 277, "id": 45, "annotation": null}, {"text": "spectrometer", "start": 278, "end": 290, "id": 46, "annotation": null}, {"text": ",", "start": 291, "end": 292, "id": 47, "annotation": null}, {"text": "energy", "start": 293, "end": 299, "id": 48, "annotation": null}, {"text": "-", "start": 300, "end": 301, "id": 49, "annotation": null}, {"text": "dispersive", "start": 302, "end": 312, "id": 50, "annotation": null}, {"text": "spectroscopy", "start": 313, "end": 325, "id": 51, "annotation": null}, {"text": ",", "start": 326, "end": 327, "id": 52, "annotation": null}, {"text": "scanning", "start": 328, "end": 336, "id": 53, "annotation": null}, {"text": "and", "start": 337, "end": 340, "id": 54, "annotation": null}, {"text": "transmission", "start": 341, "end": 353, "id": 55, "annotation": null}, {"text": "electron", "start": 354, "end": 362, "id": 56, "annotation": null}, {"text": "microscopy", "start": 363, "end": 373, "id": 57, "annotation": null}, {"text": "were", "start": 374, "end": 378, "id": 58, "annotation": null}, {"text": "carefully", "start": 379, "end": 388, "id": 59, "annotation": null}, {"text": "used", "start": 389, "end": 393, "id": 60, "annotation": null}, {"text": "to", "start": 394, "end": 396, "id": 61, "annotation": null}, {"text": "investigate", "start": 397, "end": 408, "id": 62, "annotation": null}, {"text": "the", "start": 409, "end": 412, "id": 63, "annotation": null}, {"text": "morphologies", "start": 413, "end": 425, "id": 64, "annotation": null}, {"text": ",", "start": 426, "end": 427, "id": 65, "annotation": null}, {"text": "structures", "start": 428, "end": 438, "id": 66, "annotation": null}, {"text": "and", "start": 439, "end": 442, "id": 67, "annotation": null}, {"text": "chemical", "start": 443, "end": 451, "id": 68, "annotation": null}, {"text": "compositions", "start": 452, "end": 464, "id": 69, "annotation": null}, {"text": "of", "start": 465, "end": 467, "id": 70, "annotation": null}, {"text": "these", "start": 468, "end": 473, "id": 71, "annotation": null}, {"text": "samples", "start": 474, "end": 481, "id": 72, "annotation": null}, {"text": ".", "start": 482, "end": 483, "id": 73, "annotation": null}], [{"text": "Their", "start": 484, "end": 489, "id": 74, "annotation": null}, {"text": "sensing", "start": 490, "end": 497, "id": 75, "annotation": null}, {"text": "properties", "start": 498, "end": 508, "id": 76, "annotation": null}, {"text": "toward", "start": 509, "end": 515, "id": 77, "annotation": null}, {"text": "ethanol", "start": 516, "end": 523, "id": 78, "annotation": null}, {"text": "gas", "start": 524, "end": 527, "id": 79, "annotation": null}, {"text": "were", "start": 528, "end": 532, "id": 80, "annotation": null}, {"text": "studied", "start": 533, "end": 540, "id": 81, "annotation": null}, {"text": ".", "start": 541, "end": 542, "id": 82, "annotation": null}], [{"text": "Compared", "start": 543, "end": 551, "id": 83, "annotation": null}, {"text": "with", "start": 552, "end": 556, "id": 84, "annotation": null}, {"text": "pure", "start": 557, "end": 561, "id": 85, "annotation": null}, {"text": "In2O3", "start": 562, "end": 567, "id": 86, "annotation": null}, {"text": "NTs", "start": 568, "end": 571, "id": 87, "annotation": null}, {"text": "(", "start": 572, "end": 573, "id": 88, "annotation": null}, {"text": "response", "start": 574, "end": 582, "id": 89, "annotation": null}, {"text": "value", "start": 583, "end": 588, "id": 90, "annotation": null}, {"text": "is", "start": 589, "end": 591, "id": 91, "annotation": null}, {"text": "17", "start": 592, "end": 594, "id": 92, "annotation": null}, {"text": ")", "start": 595, "end": 596, "id": 93, "annotation": null}, {"text": ",", "start": 597, "end": 598, "id": 94, "annotation": null}, {"text": "pure", "start": 599, "end": 603, "id": 95, "annotation": null}, {"text": "In2O3", "start": 604, "end": 609, "id": 96, "annotation": null}, {"text": "PNTs", "start": 610, "end": 614, "id": 97, "annotation": null}, {"text": "(", "start": 615, "end": 616, "id": 98, "annotation": null}, {"text": "response", "start": 617, "end": 625, "id": 99, "annotation": null}, {"text": "value", "start": 626, "end": 631, "id": 100, "annotation": null}, {"text": "is", "start": 632, "end": 634, "id": 101, "annotation": null}, {"text": "20", "start": 635, "end": 637, "id": 102, "annotation": null}, {"text": ")", "start": 638, "end": 639, "id": 103, "annotation": null}, {"text": "demonstrated", "start": 640, "end": 652, "id": 104, "annotation": null}, {"text": "enhanced", "start": 653, "end": 661, "id": 105, "annotation": null}, {"text": "sensing", "start": 662, "end": 669, "id": 106, "annotation": null}, {"text": "characteristics", "start": 670, "end": 685, "id": 107, "annotation": null}, {"text": ".", "start": 686, "end": 687, "id": 108, "annotation": null}], [{"text": "What", "start": 688, "end": 692, "id": 109, "annotation": null}, {"text": "\u2019s", "start": 693, "end": 695, "id": 110, "annotation": null}, {"text": "more", "start": 696, "end": 700, "id": 111, "annotation": null}, {"text": ",", "start": 701, "end": 702, "id": 112, "annotation": null}, {"text": "the", "start": 703, "end": 706, "id": 113, "annotation": null}, {"text": "response", "start": 707, "end": 715, "id": 114, "annotation": null}, {"text": "of", "start": 716, "end": 718, "id": 115, "annotation": null}, {"text": "Ho", "start": 719, "end": 721, "id": 116, "annotation": "DOPANT"}, {"text": "-", "start": 722, "end": 723, "id": 117, "annotation": null}, {"text": "doped", "start": 724, "end": 729, "id": 118, "annotation": null}, {"text": "In2O3", "start": 730, "end": 735, "id": 119, "annotation": "BASEMAT"}, {"text": "PNTs", "start": 736, "end": 740, "id": 120, "annotation": null}, {"text": "sensors", "start": 741, "end": 748, "id": 121, "annotation": null}, {"text": "to", "start": 749, "end": 751, "id": 122, "annotation": null}, {"text": "100", "start": 752, "end": 755, "id": 123, "annotation": null}, {"text": "ppm", "start": 756, "end": 759, "id": 125, "annotation": null}, {"text": "ethanol", "start": 760, "end": 767, "id": 126, "annotation": null}, {"text": "was", "start": 768, "end": 771, "id": 127, "annotation": null}, {"text": "up", "start": 772, "end": 774, "id": 128, "annotation": null}, {"text": "to", "start": 775, "end": 777, "id": 129, "annotation": null}, {"text": "60", "start": 778, "end": 780, "id": 130, "annotation": null}, {"text": "at", "start": 781, "end": 783, "id": 131, "annotation": null}, {"text": "240", "start": 784, "end": 787, "id": 132, "annotation": null}, {"text": "\u00b0", "start": 788, "end": 789, "id": 134, "annotation": null}, {"text": "C", "start": 790, "end": 791, "id": 135, "annotation": null}, {"text": ",", "start": 792, "end": 793, "id": 136, "annotation": null}, {"text": "which", "start": 794, "end": 799, "id": 137, "annotation": null}, {"text": "increased", "start": 800, "end": 809, "id": 138, "annotation": null}, {"text": "three", "start": 810, "end": 815, "id": 139, "annotation": null}, {"text": "times", "start": 816, "end": 821, "id": 140, "annotation": null}, {"text": "more", "start": 822, "end": 826, "id": 141, "annotation": null}, {"text": "than", "start": 827, "end": 831, "id": 142, "annotation": null}, {"text": "that", "start": 832, "end": 836, "id": 143, "annotation": null}, {"text": "of", "start": 837, "end": 839, "id": 144, "annotation": null}, {"text": "the", "start": 840, "end": 843, "id": 145, "annotation": null}, {"text": "pure", "start": 844, "end": 848, "id": 146, "annotation": null}, {"text": "In2O3", "start": 849, "end": 854, "id": 147, "annotation": null}, {"text": "PNTs", "start": 855, "end": 859, "id": 148, "annotation": null}, {"text": ".", "start": 860, "end": 861, "id": 149, "annotation": null}], [{"text": "Additionally", "start": 862, "end": 874, "id": 150, "annotation": null}, {"text": ",", "start": 875, "end": 876, "id": 151, "annotation": null}, {"text": "the", "start": 877, "end": 880, "id": 152, "annotation": null}, {"text": "minimum", "start": 881, "end": 888, "id": 153, "annotation": null}, {"text": "concentration", "start": 889, "end": 902, "id": 154, "annotation": null}, {"text": "for", "start": 903, "end": 906, "id": 155, "annotation": null}, {"text": "ethanol", "start": 907, "end": 914, "id": 156, "annotation": null}, {"text": "was", "start": 915, "end": 918, "id": 157, "annotation": null}, {"text": "200", "start": 919, "end": 922, "id": 158, "annotation": null}, {"text": "ppb", "start": 923, "end": 926, "id": 160, "annotation": null}, {"text": "(", "start": 927, "end": 928, "id": 161, "annotation": null}, {"text": "response", "start": 929, "end": 937, "id": 162, "annotation": null}, {"text": "value", "start": 938, "end": 943, "id": 163, "annotation": null}, {"text": "is", "start": 944, "end": 946, "id": 164, "annotation": null}, {"text": "2", "start": 947, "end": 948, "id": 165, "annotation": null}, {"text": ")", "start": 949, "end": 950, "id": 166, "annotation": null}, {"text": ".", "start": 951, "end": 952, "id": 167, "annotation": null}], [{"text": "The", "start": 953, "end": 956, "id": 168, "annotation": null}, {"text": "increased", "start": 957, "end": 966, "id": 169, "annotation": null}, {"text": "gas", "start": 967, "end": 970, "id": 170, "annotation": null}, {"text": "-", "start": 971, "end": 972, "id": 171, "annotation": null}, {"text": "sensing", "start": 973, "end": 980, "id": 172, "annotation": null}, {"text": "ability", "start": 981, "end": 988, "id": 173, "annotation": null}, {"text": "was", "start": 989, "end": 992, "id": 174, "annotation": null}, {"text": "attributed", "start": 993, "end": 1003, "id": 175, "annotation": null}, {"text": "not", "start": 1004, "end": 1007, "id": 176, "annotation": null}, {"text": "only", "start": 1008, "end": 1012, "id": 177, "annotation": null}, {"text": "to", "start": 1013, "end": 1015, "id": 178, "annotation": null}, {"text": "the", "start": 1016, "end": 1019, "id": 179, "annotation": null}, {"text": "hollow", "start": 1020, "end": 1026, "id": 180, "annotation": null}, {"text": "and", "start": 1027, "end": 1030, "id": 181, "annotation": null}, {"text": "porous", "start": 1031, "end": 1037, "id": 182, "annotation": null}, {"text": "structure", "start": 1038, "end": 1047, "id": 183, "annotation": null}, {"text": ",", "start": 1048, "end": 1049, "id": 184, "annotation": null}, {"text": "but", "start": 1050, "end": 1053, "id": 185, "annotation": null}, {"text": "to", "start": 1054, "end": 1056, "id": 186, "annotation": null}, {"text": "the", "start": 1057, "end": 1060, "id": 187, "annotation": null}, {"text": "Ho", "start": 1061, "end": 1063, "id": 188, "annotation": "DOPANT"}, {"text": "dopant", "start": 1064, "end": 1070, "id": 189, "annotation": null}, {"text": ".", "start": 1071, "end": 1072, "id": 190, "annotation": null}], [{"text": "Furthermore", "start": 1073, "end": 1084, "id": 191, "annotation": null}, {"text": ",", "start": 1085, "end": 1086, "id": 192, "annotation": null}, {"text": "Ho", "start": 1087, "end": 1089, "id": 193, "annotation": "DOPANT"}, {"text": "-", "start": 1090, "end": 1091, "id": 194, "annotation": null}, {"text": "doped", "start": 1092, "end": 1097, "id": 195, "annotation": null}, {"text": "In2O3", "start": 1098, "end": 1103, "id": 196, "annotation": "BASEMAT"}, {"text": "PNTs", "start": 1104, "end": 1108, "id": 197, "annotation": null}, {"text": "enable", "start": 1109, "end": 1115, "id": 198, "annotation": null}, {"text": "sensor", "start": 1116, "end": 1122, "id": 199, "annotation": null}, {"text": "to", "start": 1123, "end": 1125, "id": 200, "annotation": null}, {"text": "discriminate", "start": 1126, "end": 1138, "id": 201, "annotation": null}, {"text": "between", "start": 1139, "end": 1146, "id": 202, "annotation": null}, {"text": "ethanol", "start": 1147, "end": 1154, "id": 203, "annotation": null}, {"text": "and", "start": 1155, "end": 1158, "id": 204, "annotation": null}, {"text": "the", "start": 1159, "end": 1162, "id": 205, "annotation": null}, {"text": "other", "start": 1163, "end": 1168, "id": 206, "annotation": null}, {"text": "gas", "start": 1169, "end": 1172, "id": 207, "annotation": null}, {"text": "distinctly", "start": 1173, "end": 1183, "id": 208, "annotation": null}, {"text": ",", "start": 1184, "end": 1185, "id": 209, "annotation": null}, {"text": "particularly", "start": 1186, "end": 1198, "id": 210, "annotation": null}, {"text": "acetone", "start": 1199, "end": 1206, "id": 211, "annotation": null}, {"text": "that", "start": 1207, "end": 1211, "id": 212, "annotation": null}, {"text": "is", "start": 1212, "end": 1214, "id": 213, "annotation": null}, {"text": "usually", "start": 1215, "end": 1222, "id": 214, "annotation": null}, {"text": "indistinguishable", "start": 1223, "end": 1240, "id": 215, "annotation": null}, {"text": "from", "start": 1241, "end": 1245, "id": 216, "annotation": null}, {"text": "ethanol", "start": 1246, "end": 1253, "id": 217, "annotation": null}, {"text": ".", "start": 1254, "end": 1255, "id": 218, "annotation": null}], [{"text": "Also", "start": 1256, "end": 1260, "id": 219, "annotation": null}, {"text": ",", "start": 1261, "end": 1262, "id": 220, "annotation": null}, {"text": "by", "start": 1263, "end": 1265, "id": 221, "annotation": null}, {"text": "analyzing", "start": 1266, "end": 1275, "id": 222, "annotation": null}, {"text": "XRD", "start": 1276, "end": 1279, "id": 223, "annotation": null}, {"text": ",", "start": 1280, "end": 1281, "id": 224, "annotation": null}, {"text": "TGA", "start": 1282, "end": 1285, "id": 225, "annotation": null}, {"text": "and", "start": 1286, "end": 1289, "id": 226, "annotation": null}, {"text": "Raman", "start": 1290, "end": 1295, "id": 227, "annotation": null}, {"text": "spectrometer", "start": 1296, "end": 1308, "id": 228, "annotation": null}, {"text": ",", "start": 1309, "end": 1310, "id": 229, "annotation": null}, {"text": "a", "start": 1311, "end": 1312, "id": 230, "annotation": null}, {"text": "possible", "start": 1313, "end": 1321, "id": 231, "annotation": null}, {"text": "formation", "start": 1322, "end": 1331, "id": 232, "annotation": null}, {"text": "mechanism", "start": 1332, "end": 1341, "id": 233, "annotation": null}, {"text": "of", "start": 1342, "end": 1344, "id": 234, "annotation": null}, {"text": "porous", "start": 1345, "end": 1351, "id": 235, "annotation": null}, {"text": "nanotubes", "start": 1352, "end": 1361, "id": 236, "annotation": null}, {"text": "and", "start": 1362, "end": 1365, "id": 237, "annotation": null}, {"text": "sensing", "start": 1366, "end": 1373, "id": 238, "annotation": null}, {"text": "mechanism", "start": 1374, "end": 1383, "id": 239, "annotation": null}, {"text": "were", "start": 1384, "end": 1388, "id": 240, "annotation": null}, {"text": "put", "start": 1389, "end": 1392, "id": 241, "annotation": null}, {"text": "forward", "start": 1393, "end": 1400, "id": 242, "annotation": null}, {"text": ".", "start": 1401, "end": 1402, "id": 243, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Single phase undoped Zn2TiO4 and Zn2TiO4 nanoparticles doped with 0.25\u20131.00mol% Pt were successfully synthesized in a single step by the flame spray pyrolysis (FSP) technique. Zinc naphthenate and titanium tetra isopropoxide (1:1mol%); and platinum (II) acetylacetonate were used as Zn, Ti and Pt precursors respectively dissolved in ethanol. The undoped Zn2TiO4 and Pt-doped Zn2TiO4 nanoparticles were characterized by X-ray diffraction (XRD), scanning electron microscopy (SEM), high resolution transmission electron microscopy (HRTEM) and energy dispersive spectroscopy (EDS). The BET surface area (SSABET) of the nanoparticles was measured by nitrogen adsorption. The average diameter of the spherical nanoparticles were in the range of 5.7\u20136.9nm under 5/5 (precursor/oxygen) flame conditions. All peaks can be confirmed to correspond to the cubic structure of Zn2TiO4 (JCPDS No. 25-1164).", "meta": {"doi": "10.1016/j.matlet.2011.10.026"}, "_input_hash": -247415335, "_task_hash": 178466135, "tokens": [[{"text": "Single", "start": 0, "end": 6, "id": 0, "annotation": null}, {"text": "phase", "start": 7, "end": 12, "id": 1, "annotation": null}, {"text": "undoped", "start": 13, "end": 20, "id": 2, "annotation": null}, {"text": "Zn2TiO4", "start": 21, "end": 28, "id": 3, "annotation": null}, {"text": "and", "start": 29, "end": 32, "id": 4, "annotation": null}, {"text": "Zn2TiO4", "start": 33, "end": 40, "id": 5, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 41, "end": 54, "id": 6, "annotation": null}, {"text": "doped", "start": 55, "end": 60, "id": 7, "annotation": null}, {"text": "with", "start": 61, "end": 65, "id": 8, "annotation": null}, {"text": "0.25\u20131.00mol%", "start": 66, "end": 79, "id": 9, "annotation": "DOPMODQ"}, {"text": "Pt", "start": 80, "end": 82, "id": 10, "annotation": "DOPANT"}, {"text": "were", "start": 83, "end": 87, "id": 11, "annotation": null}, {"text": "successfully", "start": 88, "end": 100, "id": 12, "annotation": null}, {"text": "synthesized", "start": 101, "end": 112, "id": 13, "annotation": null}, {"text": "in", "start": 113, "end": 115, "id": 14, "annotation": null}, {"text": "a", "start": 116, "end": 117, "id": 15, "annotation": null}, {"text": "single", "start": 118, "end": 124, "id": 16, "annotation": null}, {"text": "step", "start": 125, "end": 129, "id": 17, "annotation": null}, {"text": "by", "start": 130, "end": 132, "id": 18, "annotation": null}, {"text": "the", "start": 133, "end": 136, "id": 19, "annotation": null}, {"text": "flame", "start": 137, "end": 142, "id": 20, "annotation": null}, {"text": "spray", "start": 143, "end": 148, "id": 21, "annotation": null}, {"text": "pyrolysis", "start": 149, "end": 158, "id": 22, "annotation": null}, {"text": "(", "start": 159, "end": 160, "id": 23, "annotation": null}, {"text": "FSP", "start": 161, "end": 164, "id": 24, "annotation": null}, {"text": ")", "start": 165, "end": 166, "id": 25, "annotation": null}, {"text": "technique", "start": 167, "end": 176, "id": 26, "annotation": null}, {"text": ".", "start": 177, "end": 178, "id": 27, "annotation": null}], [{"text": "Zinc", "start": 179, "end": 183, "id": 28, "annotation": null}, {"text": "naphthenate", "start": 184, "end": 195, "id": 29, "annotation": null}, {"text": "and", "start": 196, "end": 199, "id": 30, "annotation": null}, {"text": "titanium", "start": 200, "end": 208, "id": 31, "annotation": null}, {"text": "tetra", "start": 209, "end": 214, "id": 32, "annotation": null}, {"text": "isopropoxide", "start": 215, "end": 227, "id": 33, "annotation": null}, {"text": "(", "start": 228, "end": 229, "id": 34, "annotation": null}, {"text": "1:1mol%", "start": 230, "end": 237, "id": 35, "annotation": null}, {"text": ")", "start": 238, "end": 239, "id": 36, "annotation": null}, {"text": ";", "start": 240, "end": 241, "id": 37, "annotation": null}, {"text": "and", "start": 242, "end": 245, "id": 38, "annotation": null}, {"text": "platinum", "start": 246, "end": 254, "id": 39, "annotation": null}, {"text": "(", "start": 255, "end": 256, "id": 40, "annotation": null}, {"text": "II", "start": 257, "end": 259, "id": 41, "annotation": null}, {"text": ")", "start": 260, "end": 261, "id": 42, "annotation": null}, {"text": "acetylacetonate", "start": 262, "end": 277, "id": 43, "annotation": null}, {"text": "were", "start": 278, "end": 282, "id": 44, "annotation": null}, {"text": "used", "start": 283, "end": 287, "id": 45, "annotation": null}, {"text": "as", "start": 288, "end": 290, "id": 46, "annotation": null}, {"text": "Zn", "start": 291, "end": 293, "id": 47, "annotation": null}, {"text": ",", "start": 294, "end": 295, "id": 48, "annotation": null}, {"text": "Ti", "start": 296, "end": 298, "id": 49, "annotation": null}, {"text": "and", "start": 299, "end": 302, "id": 50, "annotation": null}, {"text": "Pt", "start": 303, "end": 305, "id": 51, "annotation": null}, {"text": "precursors", "start": 306, "end": 316, "id": 52, "annotation": null}, {"text": "respectively", "start": 317, "end": 329, "id": 53, "annotation": null}, {"text": "dissolved", "start": 330, "end": 339, "id": 54, "annotation": null}, {"text": "in", "start": 340, "end": 342, "id": 55, "annotation": null}, {"text": "ethanol", "start": 343, "end": 350, "id": 56, "annotation": null}, {"text": ".", "start": 351, "end": 352, "id": 57, "annotation": null}], [{"text": "The", "start": 353, "end": 356, "id": 58, "annotation": null}, {"text": "undoped", "start": 357, "end": 364, "id": 59, "annotation": null}, {"text": "Zn2TiO4", "start": 365, "end": 372, "id": 60, "annotation": null}, {"text": "and", "start": 373, "end": 376, "id": 61, "annotation": null}, {"text": "Pt", "start": 377, "end": 379, "id": 62, "annotation": "DOPANT"}, {"text": "-", "start": 380, "end": 381, "id": 63, "annotation": null}, {"text": "doped", "start": 382, "end": 387, "id": 64, "annotation": null}, {"text": "Zn2TiO4", "start": 388, "end": 395, "id": 65, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 396, "end": 409, "id": 66, "annotation": null}, {"text": "were", "start": 410, "end": 414, "id": 67, "annotation": null}, {"text": "characterized", "start": 415, "end": 428, "id": 68, "annotation": null}, {"text": "by", "start": 429, "end": 431, "id": 69, "annotation": null}, {"text": "X", "start": 432, "end": 433, "id": 70, "annotation": null}, {"text": "-", "start": 434, "end": 435, "id": 71, "annotation": null}, {"text": "ray", "start": 436, "end": 439, "id": 72, "annotation": null}, {"text": "diffraction", "start": 440, "end": 451, "id": 73, "annotation": null}, {"text": "(", "start": 452, "end": 453, "id": 74, "annotation": null}, {"text": "XRD", "start": 454, "end": 457, "id": 75, "annotation": null}, {"text": ")", "start": 458, "end": 459, "id": 76, "annotation": null}, {"text": ",", "start": 460, "end": 461, "id": 77, "annotation": null}, {"text": "scanning", "start": 462, "end": 470, "id": 78, "annotation": null}, {"text": "electron", "start": 471, "end": 479, "id": 79, "annotation": null}, {"text": "microscopy", "start": 480, "end": 490, "id": 80, "annotation": null}, {"text": "(", "start": 491, "end": 492, "id": 81, "annotation": null}, {"text": "SEM", "start": 493, "end": 496, "id": 82, "annotation": null}, {"text": ")", "start": 497, "end": 498, "id": 83, "annotation": null}, {"text": ",", "start": 499, "end": 500, "id": 84, "annotation": null}, {"text": "high", "start": 501, "end": 505, "id": 85, "annotation": null}, {"text": "resolution", "start": 506, "end": 516, "id": 86, "annotation": null}, {"text": "transmission", "start": 517, "end": 529, "id": 87, "annotation": null}, {"text": "electron", "start": 530, "end": 538, "id": 88, "annotation": null}, {"text": "microscopy", "start": 539, "end": 549, "id": 89, "annotation": null}, {"text": "(", "start": 550, "end": 551, "id": 90, "annotation": null}, {"text": "HRTEM", "start": 552, "end": 557, "id": 91, "annotation": null}, {"text": ")", "start": 558, "end": 559, "id": 92, "annotation": null}, {"text": "and", "start": 560, "end": 563, "id": 93, "annotation": null}, {"text": "energy", "start": 564, "end": 570, "id": 94, "annotation": null}, {"text": "dispersive", "start": 571, "end": 581, "id": 95, "annotation": null}, {"text": "spectroscopy", "start": 582, "end": 594, "id": 96, "annotation": null}, {"text": "(", "start": 595, "end": 596, "id": 97, "annotation": null}, {"text": "EDS", "start": 597, "end": 600, "id": 98, "annotation": null}, {"text": ")", "start": 601, "end": 602, "id": 99, "annotation": null}, {"text": ".", "start": 603, "end": 604, "id": 100, "annotation": null}], [{"text": "The", "start": 605, "end": 608, "id": 101, "annotation": null}, {"text": "BET", "start": 609, "end": 612, "id": 102, "annotation": null}, {"text": "surface", "start": 613, "end": 620, "id": 103, "annotation": null}, {"text": "area", "start": 621, "end": 625, "id": 104, "annotation": null}, {"text": "(", "start": 626, "end": 627, "id": 105, "annotation": null}, {"text": "SSABET", "start": 628, "end": 634, "id": 106, "annotation": null}, {"text": ")", "start": 635, "end": 636, "id": 107, "annotation": null}, {"text": "of", "start": 637, "end": 639, "id": 108, "annotation": null}, {"text": "the", "start": 640, "end": 643, "id": 109, "annotation": null}, {"text": "nanoparticles", "start": 644, "end": 657, "id": 110, "annotation": null}, {"text": "was", "start": 658, "end": 661, "id": 111, "annotation": null}, {"text": "measured", "start": 662, "end": 670, "id": 112, "annotation": null}, {"text": "by", "start": 671, "end": 673, "id": 113, "annotation": null}, {"text": "nitrogen", "start": 674, "end": 682, "id": 114, "annotation": null}, {"text": "adsorption", "start": 683, "end": 693, "id": 115, "annotation": null}, {"text": ".", "start": 694, "end": 695, "id": 116, "annotation": null}], [{"text": "The", "start": 696, "end": 699, "id": 117, "annotation": null}, {"text": "average", "start": 700, "end": 707, "id": 118, "annotation": null}, {"text": "diameter", "start": 708, "end": 716, "id": 119, "annotation": null}, {"text": "of", "start": 717, "end": 719, "id": 120, "annotation": null}, {"text": "the", "start": 720, "end": 723, "id": 121, "annotation": null}, {"text": "spherical", "start": 724, "end": 733, "id": 122, "annotation": null}, {"text": "nanoparticles", "start": 734, "end": 747, "id": 123, "annotation": null}, {"text": "were", "start": 748, "end": 752, "id": 124, "annotation": null}, {"text": "in", "start": 753, "end": 755, "id": 125, "annotation": null}, {"text": "the", "start": 756, "end": 759, "id": 126, "annotation": null}, {"text": "range", "start": 760, "end": 765, "id": 127, "annotation": null}, {"text": "of", "start": 766, "end": 768, "id": 128, "annotation": null}, {"text": "5.7\u20136.9", "start": 769, "end": 776, "id": 129, "annotation": null}, {"text": "nm", "start": 777, "end": 779, "id": 130, "annotation": null}, {"text": "under", "start": 780, "end": 785, "id": 131, "annotation": null}, {"text": "5/5", "start": 786, "end": 789, "id": 132, "annotation": null}, {"text": "(", "start": 790, "end": 791, "id": 133, "annotation": null}, {"text": "precursor", "start": 792, "end": 801, "id": 134, "annotation": null}, {"text": "/", "start": 802, "end": 803, "id": 135, "annotation": null}, {"text": "oxygen", "start": 804, "end": 810, "id": 136, "annotation": null}, {"text": ")", "start": 811, "end": 812, "id": 137, "annotation": null}, {"text": "flame", "start": 813, "end": 818, "id": 138, "annotation": null}, {"text": "conditions", "start": 819, "end": 829, "id": 139, "annotation": null}, {"text": ".", "start": 830, "end": 831, "id": 140, "annotation": null}], [{"text": "All", "start": 832, "end": 835, "id": 141, "annotation": null}, {"text": "peaks", "start": 836, "end": 841, "id": 142, "annotation": null}, {"text": "can", "start": 842, "end": 845, "id": 143, "annotation": null}, {"text": "be", "start": 846, "end": 848, "id": 144, "annotation": null}, {"text": "confirmed", "start": 849, "end": 858, "id": 145, "annotation": null}, {"text": "to", "start": 859, "end": 861, "id": 146, "annotation": null}, {"text": "correspond", "start": 862, "end": 872, "id": 147, "annotation": null}, {"text": "to", "start": 873, "end": 875, "id": 148, "annotation": null}, {"text": "the", "start": 876, "end": 879, "id": 149, "annotation": null}, {"text": "cubic", "start": 880, "end": 885, "id": 150, "annotation": null}, {"text": "structure", "start": 886, "end": 895, "id": 151, "annotation": null}, {"text": "of", "start": 896, "end": 898, "id": 152, "annotation": null}, {"text": "Zn2TiO4", "start": 899, "end": 906, "id": 153, "annotation": null}, {"text": "(", "start": 907, "end": 908, "id": 154, "annotation": null}, {"text": "JCPDS", "start": 909, "end": 914, "id": 155, "annotation": null}, {"text": "No", "start": 915, "end": 917, "id": 156, "annotation": null}, {"text": ".", "start": 918, "end": 919, "id": 157, "annotation": null}], [{"text": "25", "start": 920, "end": 922, "id": 158, "annotation": null}, {"text": "-", "start": 923, "end": 924, "id": 159, "annotation": null}, {"text": "1164", "start": 925, "end": 929, "id": 160, "annotation": null}, {"text": ")", "start": 930, "end": 931, "id": 161, "annotation": null}, {"text": ".", "start": 932, "end": 933, "id": 162, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "We demonstrate a high solubility limit of >9 mol% for MnTe alloying in SnTe. The electrical conductivity of SnTe decreases gradually while the Seebeck coefficient increases remarkably with increasing MnTe content, leading to enhanced power factors. The room-temperature Seebeck coefficients of Mn-doped SnTe are significantly higher than those predicted by theoretical Pisarenko plots for pure SnTe, indicating a modified band structure. The high-temperature Hall data of Sn1-xMnxTe show strong temperature dependence, suggestive of a two-valence-band conduction behavior. Moreover, the peak temperature of the Hall plot of Sn1-xMnxTe shifts toward lower temperature as MnTe content is increased, which is clear evidence of decreased energy separation (band convergence) between the two valence bands. The first-principles electronic structure calculations based on density functional theory also support this point. The higher doping fraction (>9%) of Mn in comparison with \u223c3% for Cd and Hg in SnTe gives rise to a much better valence band convergence that is responsible for the observed highest Seebeck coefficient of \u223c230 \u03bcV/K at 900 K. The high doping fraction of Mn in SnTe also creates stronger point defect scattering, which when combined with ubiquitous endotaxial MnTe nanostructures when the solubility of Mn is exceeded scatters a wide spectrum of phonons for a low lattice thermal conductivity of 0.9 W m-1 K-1 at 800 K. The synergistic role that Mn plays in regulating the electron and phonon transport of SnTe yields a high thermoelectric figure of merit of 1.3 at 900 K.", "meta": {"doi": "10.1021/jacs.5b07284"}, "_input_hash": -2098268170, "_task_hash": 1160568921, "tokens": [[{"text": "We", "start": 35, "end": 37, "id": 6, "annotation": null}, {"text": "demonstrate", "start": 38, "end": 49, "id": 7, "annotation": null}, {"text": "a", "start": 50, "end": 51, "id": 8, "annotation": null}, {"text": "high", "start": 52, "end": 56, "id": 9, "annotation": null}, {"text": "solubility", "start": 57, "end": 67, "id": 10, "annotation": null}, {"text": "limit", "start": 68, "end": 73, "id": 11, "annotation": null}, {"text": "of", "start": 74, "end": 76, "id": 12, "annotation": null}, {"text": ">", "start": 77, "end": 78, "id": 13, "annotation": null}, {"text": "9", "start": 79, "end": 80, "id": 14, "annotation": null}, {"text": "mol%", "start": 81, "end": 85, "id": 15, "annotation": null}, {"text": "for", "start": 86, "end": 89, "id": 16, "annotation": null}, {"text": "MnTe", "start": 90, "end": 94, "id": 17, "annotation": null}, {"text": "alloying", "start": 95, "end": 103, "id": 18, "annotation": null}, {"text": "in", "start": 104, "end": 106, "id": 19, "annotation": null}, {"text": "SnTe", "start": 107, "end": 111, "id": 20, "annotation": null}, {"text": ".", "start": 112, "end": 113, "id": 21, "annotation": null}], [{"text": "The", "start": 114, "end": 117, "id": 22, "annotation": null}, {"text": "electrical", "start": 118, "end": 128, "id": 23, "annotation": null}, {"text": "conductivity", "start": 129, "end": 141, "id": 24, "annotation": null}, {"text": "of", "start": 142, "end": 144, "id": 25, "annotation": null}, {"text": "SnTe", "start": 145, "end": 149, "id": 26, "annotation": null}, {"text": "decreases", "start": 150, "end": 159, "id": 27, "annotation": null}, {"text": "gradually", "start": 160, "end": 169, "id": 28, "annotation": null}, {"text": "while", "start": 170, "end": 175, "id": 29, "annotation": null}, {"text": "the", "start": 176, "end": 179, "id": 30, "annotation": null}, {"text": "Seebeck", "start": 180, "end": 187, "id": 31, "annotation": null}, {"text": "coefficient", "start": 188, "end": 199, "id": 32, "annotation": null}, {"text": "increases", "start": 200, "end": 209, "id": 33, "annotation": null}, {"text": "remarkably", "start": 210, "end": 220, "id": 34, "annotation": null}, {"text": "with", "start": 221, "end": 225, "id": 35, "annotation": null}, {"text": "increasing", "start": 226, "end": 236, "id": 36, "annotation": null}, {"text": "MnTe", "start": 237, "end": 241, "id": 37, "annotation": null}, {"text": "content", "start": 242, "end": 249, "id": 38, "annotation": null}, {"text": ",", "start": 250, "end": 251, "id": 39, "annotation": null}, {"text": "leading", "start": 252, "end": 259, "id": 40, "annotation": null}, {"text": "to", "start": 260, "end": 262, "id": 41, "annotation": null}, {"text": "enhanced", "start": 263, "end": 271, "id": 42, "annotation": null}, {"text": "power", "start": 272, "end": 277, "id": 43, "annotation": null}, {"text": "factors", "start": 278, "end": 285, "id": 44, "annotation": null}, {"text": ".", "start": 286, "end": 287, "id": 45, "annotation": null}], [{"text": "The", "start": 288, "end": 291, "id": 46, "annotation": null}, {"text": "room", "start": 292, "end": 296, "id": 47, "annotation": null}, {"text": "-", "start": 297, "end": 298, "id": 48, "annotation": null}, {"text": "temperature", "start": 299, "end": 310, "id": 49, "annotation": null}, {"text": "Seebeck", "start": 311, "end": 318, "id": 50, "annotation": null}, {"text": "coefficients", "start": 319, "end": 331, "id": 51, "annotation": null}, {"text": "of", "start": 332, "end": 334, "id": 52, "annotation": null}, {"text": "Mn", "start": 335, "end": 337, "id": 53, "annotation": "DOPANT"}, {"text": "-", "start": 338, "end": 339, "id": 54, "annotation": null}, {"text": "doped", "start": 340, "end": 345, "id": 55, "annotation": null}, {"text": "SnTe", "start": 346, "end": 350, "id": 56, "annotation": "BASEMAT"}, {"text": "are", "start": 351, "end": 354, "id": 57, "annotation": null}, {"text": "significantly", "start": 355, "end": 368, "id": 58, "annotation": null}, {"text": "higher", "start": 369, "end": 375, "id": 59, "annotation": null}, {"text": "than", "start": 376, "end": 380, "id": 60, "annotation": null}, {"text": "those", "start": 381, "end": 386, "id": 61, "annotation": null}, {"text": "predicted", "start": 387, "end": 396, "id": 62, "annotation": null}, {"text": "by", "start": 397, "end": 399, "id": 63, "annotation": null}, {"text": "theoretical", "start": 400, "end": 411, "id": 64, "annotation": null}, {"text": "Pisarenko", "start": 412, "end": 421, "id": 65, "annotation": null}, {"text": "plots", "start": 422, "end": 427, "id": 66, "annotation": null}, {"text": "for", "start": 428, "end": 431, "id": 67, "annotation": null}, {"text": "pure", "start": 432, "end": 436, "id": 68, "annotation": null}, {"text": "SnTe", "start": 437, "end": 441, "id": 69, "annotation": null}, {"text": ",", "start": 442, "end": 443, "id": 70, "annotation": null}, {"text": "indicating", "start": 444, "end": 454, "id": 71, "annotation": null}, {"text": "a", "start": 455, "end": 456, "id": 72, "annotation": null}, {"text": "modified", "start": 457, "end": 465, "id": 73, "annotation": null}, {"text": "band", "start": 466, "end": 470, "id": 74, "annotation": null}, {"text": "structure", "start": 471, "end": 480, "id": 75, "annotation": null}, {"text": ".", "start": 481, "end": 482, "id": 76, "annotation": null}], [{"text": "The", "start": 483, "end": 486, "id": 77, "annotation": null}, {"text": "high", "start": 487, "end": 491, "id": 78, "annotation": null}, {"text": "-", "start": 492, "end": 493, "id": 79, "annotation": null}, {"text": "temperature", "start": 494, "end": 505, "id": 80, "annotation": null}, {"text": "Hall", "start": 506, "end": 510, "id": 81, "annotation": null}, {"text": "data", "start": 511, "end": 515, "id": 82, "annotation": null}, {"text": "of", "start": 516, "end": 518, "id": 83, "annotation": null}, {"text": "Sn", "start": 519, "end": 521, "id": 84, "annotation": null}, {"text": "<", "start": 522, "end": 523, "id": 85, "annotation": null}, {"text": "inf>1-x", "start": 537, "end": 538, "id": 87, "annotation": null}, {"text": "Mn", "start": 539, "end": 541, "id": 88, "annotation": null}, {"text": "<", "start": 542, "end": 543, "id": 89, "annotation": null}, {"text": "inf", "start": 544, "end": 547, "id": 90, "annotation": null}, {"text": ">", "start": 548, "end": 549, "id": 91, "annotation": null}, {"text": "x", "start": 557, "end": 558, "id": 93, "annotation": null}, {"text": "Te", "start": 559, "end": 561, "id": 94, "annotation": null}, {"text": "show", "start": 562, "end": 566, "id": 95, "annotation": null}, {"text": "strong", "start": 567, "end": 573, "id": 96, "annotation": null}, {"text": "temperature", "start": 574, "end": 585, "id": 97, "annotation": null}, {"text": "dependence", "start": 586, "end": 596, "id": 98, "annotation": null}, {"text": ",", "start": 597, "end": 598, "id": 99, "annotation": null}, {"text": "suggestive", "start": 599, "end": 609, "id": 100, "annotation": null}, {"text": "of", "start": 610, "end": 612, "id": 101, "annotation": null}, {"text": "a", "start": 613, "end": 614, "id": 102, "annotation": null}, {"text": "two", "start": 615, "end": 618, "id": 103, "annotation": null}, {"text": "-", "start": 619, "end": 620, "id": 104, "annotation": null}, {"text": "valence", "start": 621, "end": 628, "id": 105, "annotation": null}, {"text": "-", "start": 629, "end": 630, "id": 106, "annotation": null}, {"text": "band", "start": 631, "end": 635, "id": 107, "annotation": null}, {"text": "conduction", "start": 636, "end": 646, "id": 108, "annotation": null}, {"text": "behavior", "start": 647, "end": 655, "id": 109, "annotation": null}, {"text": ".", "start": 656, "end": 657, "id": 110, "annotation": null}], [{"text": "Moreover", "start": 658, "end": 666, "id": 111, "annotation": null}, {"text": ",", "start": 667, "end": 668, "id": 112, "annotation": null}, {"text": "the", "start": 669, "end": 672, "id": 113, "annotation": null}, {"text": "peak", "start": 673, "end": 677, "id": 114, "annotation": null}, {"text": "temperature", "start": 678, "end": 689, "id": 115, "annotation": null}, {"text": "of", "start": 690, "end": 692, "id": 116, "annotation": null}, {"text": "the", "start": 693, "end": 696, "id": 117, "annotation": null}, {"text": "Hall", "start": 697, "end": 701, "id": 118, "annotation": null}, {"text": "plot", "start": 702, "end": 706, "id": 119, "annotation": null}, {"text": "of", "start": 707, "end": 709, "id": 120, "annotation": null}, {"text": "Sn", "start": 710, "end": 712, "id": 121, "annotation": null}, {"text": "<", "start": 713, "end": 714, "id": 122, "annotation": null}, {"text": "inf>1-x", "start": 728, "end": 729, "id": 124, "annotation": null}, {"text": "Mn", "start": 730, "end": 732, "id": 125, "annotation": null}, {"text": "<", "start": 733, "end": 734, "id": 126, "annotation": null}, {"text": "inf", "start": 735, "end": 738, "id": 127, "annotation": null}, {"text": ">", "start": 739, "end": 740, "id": 128, "annotation": null}, {"text": "x", "start": 748, "end": 749, "id": 130, "annotation": null}, {"text": "Te", "start": 750, "end": 752, "id": 131, "annotation": null}, {"text": "shifts", "start": 753, "end": 759, "id": 132, "annotation": null}, {"text": "toward", "start": 760, "end": 766, "id": 133, "annotation": null}, {"text": "lower", "start": 767, "end": 772, "id": 134, "annotation": null}, {"text": "temperature", "start": 773, "end": 784, "id": 135, "annotation": null}, {"text": "as", "start": 785, "end": 787, "id": 136, "annotation": null}, {"text": "MnTe", "start": 788, "end": 792, "id": 137, "annotation": null}, {"text": "content", "start": 793, "end": 800, "id": 138, "annotation": null}, {"text": "is", "start": 801, "end": 803, "id": 139, "annotation": null}, {"text": "increased", "start": 804, "end": 813, "id": 140, "annotation": null}, {"text": ",", "start": 814, "end": 815, "id": 141, "annotation": null}, {"text": "which", "start": 816, "end": 821, "id": 142, "annotation": null}, {"text": "is", "start": 822, "end": 824, "id": 143, "annotation": null}, {"text": "clear", "start": 825, "end": 830, "id": 144, "annotation": null}, {"text": "evidence", "start": 831, "end": 839, "id": 145, "annotation": null}, {"text": "of", "start": 840, "end": 842, "id": 146, "annotation": null}, {"text": "decreased", "start": 843, "end": 852, "id": 147, "annotation": null}, {"text": "energy", "start": 853, "end": 859, "id": 148, "annotation": null}, {"text": "separation", "start": 860, "end": 870, "id": 149, "annotation": null}, {"text": "(", "start": 871, "end": 872, "id": 150, "annotation": null}, {"text": "band", "start": 873, "end": 877, "id": 151, "annotation": null}, {"text": "convergence", "start": 878, "end": 889, "id": 152, "annotation": null}, {"text": ")", "start": 890, "end": 891, "id": 153, "annotation": null}, {"text": "between", "start": 892, "end": 899, "id": 154, "annotation": null}, {"text": "the", "start": 900, "end": 903, "id": 155, "annotation": null}, {"text": "two", "start": 904, "end": 907, "id": 156, "annotation": null}, {"text": "valence", "start": 908, "end": 915, "id": 157, "annotation": null}, {"text": "bands", "start": 916, "end": 921, "id": 158, "annotation": null}, {"text": ".", "start": 922, "end": 923, "id": 159, "annotation": null}], [{"text": "The", "start": 924, "end": 927, "id": 160, "annotation": null}, {"text": "first", "start": 928, "end": 933, "id": 161, "annotation": null}, {"text": "-", "start": 934, "end": 935, "id": 162, "annotation": null}, {"text": "principles", "start": 936, "end": 946, "id": 163, "annotation": null}, {"text": "electronic", "start": 947, "end": 957, "id": 164, "annotation": null}, {"text": "structure", "start": 958, "end": 967, "id": 165, "annotation": null}, {"text": "calculations", "start": 968, "end": 980, "id": 166, "annotation": null}, {"text": "based", "start": 981, "end": 986, "id": 167, "annotation": null}, {"text": "on", "start": 987, "end": 989, "id": 168, "annotation": null}, {"text": "density", "start": 990, "end": 997, "id": 169, "annotation": null}, {"text": "functional", "start": 998, "end": 1008, "id": 170, "annotation": null}, {"text": "theory", "start": 1009, "end": 1015, "id": 171, "annotation": null}, {"text": "also", "start": 1016, "end": 1020, "id": 172, "annotation": null}, {"text": "support", "start": 1021, "end": 1028, "id": 173, "annotation": null}, {"text": "this", "start": 1029, "end": 1033, "id": 174, "annotation": null}, {"text": "point", "start": 1034, "end": 1039, "id": 175, "annotation": null}, {"text": ".", "start": 1040, "end": 1041, "id": 176, "annotation": null}], [{"text": "The", "start": 1042, "end": 1045, "id": 177, "annotation": null}, {"text": "higher", "start": 1046, "end": 1052, "id": 178, "annotation": null}, {"text": "doping", "start": 1053, "end": 1059, "id": 179, "annotation": null}, {"text": "fraction", "start": 1060, "end": 1068, "id": 180, "annotation": null}, {"text": "(", "start": 1069, "end": 1070, "id": 181, "annotation": null}, {"text": ">", "start": 1071, "end": 1072, "id": 182, "annotation": "DOPMODQ"}, {"text": "9", "start": 1073, "end": 1074, "id": 183, "annotation": null}, {"text": "%", "start": 1075, "end": 1076, "id": 184, "annotation": "DOPMODQ"}, {"text": ")", "start": 1077, "end": 1078, "id": 185, "annotation": null}, {"text": "of", "start": 1079, "end": 1081, "id": 186, "annotation": null}, {"text": "Mn", "start": 1082, "end": 1084, "id": 187, "annotation": "DOPANT"}, {"text": "in", "start": 1085, "end": 1087, "id": 188, "annotation": null}, {"text": "comparison", "start": 1088, "end": 1098, "id": 189, "annotation": null}, {"text": "with", "start": 1099, "end": 1103, "id": 190, "annotation": null}, {"text": "\u223c3", "start": 1104, "end": 1106, "id": 191, "annotation": "DOPMODQ"}, {"text": "%", "start": 1107, "end": 1108, "id": 192, "annotation": "DOPMODQ"}, {"text": "for", "start": 1109, "end": 1112, "id": 193, "annotation": null}, {"text": "Cd", "start": 1113, "end": 1115, "id": 194, "annotation": "DOPANT"}, {"text": "and", "start": 1116, "end": 1119, "id": 195, "annotation": null}, {"text": "Hg", "start": 1120, "end": 1122, "id": 196, "annotation": "DOPANT"}, {"text": "in", "start": 1123, "end": 1125, "id": 197, "annotation": null}, {"text": "SnTe", "start": 1126, "end": 1130, "id": 198, "annotation": "BASEMAT"}, {"text": "gives", "start": 1131, "end": 1136, "id": 199, "annotation": null}, {"text": "rise", "start": 1137, "end": 1141, "id": 200, "annotation": null}, {"text": "to", "start": 1142, "end": 1144, "id": 201, "annotation": null}, {"text": "a", "start": 1145, "end": 1146, "id": 202, "annotation": null}, {"text": "much", "start": 1147, "end": 1151, "id": 203, "annotation": null}, {"text": "better", "start": 1152, "end": 1158, "id": 204, "annotation": null}, {"text": "valence", "start": 1159, "end": 1166, "id": 205, "annotation": null}, {"text": "band", "start": 1167, "end": 1171, "id": 206, "annotation": null}, {"text": "convergence", "start": 1172, "end": 1183, "id": 207, "annotation": null}, {"text": "that", "start": 1184, "end": 1188, "id": 208, "annotation": null}, {"text": "is", "start": 1189, "end": 1191, "id": 209, "annotation": null}, {"text": "responsible", "start": 1192, "end": 1203, "id": 210, "annotation": null}, {"text": "for", "start": 1204, "end": 1207, "id": 211, "annotation": null}, {"text": "the", "start": 1208, "end": 1211, "id": 212, "annotation": null}, {"text": "observed", "start": 1212, "end": 1220, "id": 213, "annotation": null}, {"text": "highest", "start": 1221, "end": 1228, "id": 214, "annotation": null}, {"text": "Seebeck", "start": 1229, "end": 1236, "id": 215, "annotation": null}, {"text": "coefficient", "start": 1237, "end": 1248, "id": 216, "annotation": null}, {"text": "of", "start": 1249, "end": 1251, "id": 217, "annotation": null}, {"text": "\u223c230", "start": 1252, "end": 1256, "id": 218, "annotation": null}, {"text": "\u03bcV", "start": 1257, "end": 1259, "id": 219, "annotation": null}, {"text": "/", "start": 1260, "end": 1261, "id": 220, "annotation": null}, {"text": "K", "start": 1262, "end": 1263, "id": 221, "annotation": null}, {"text": "at", "start": 1264, "end": 1266, "id": 222, "annotation": null}, {"text": "900", "start": 1267, "end": 1270, "id": 223, "annotation": null}, {"text": "K.", "start": 1271, "end": 1273, "id": 224, "annotation": null}], [{"text": "The", "start": 1274, "end": 1277, "id": 225, "annotation": null}, {"text": "high", "start": 1278, "end": 1282, "id": 226, "annotation": null}, {"text": "doping", "start": 1283, "end": 1289, "id": 227, "annotation": null}, {"text": "fraction", "start": 1290, "end": 1298, "id": 228, "annotation": null}, {"text": "of", "start": 1299, "end": 1301, "id": 229, "annotation": null}, {"text": "Mn", "start": 1302, "end": 1304, "id": 230, "annotation": "DOPANT"}, {"text": "in", "start": 1305, "end": 1307, "id": 231, "annotation": null}, {"text": "SnTe", "start": 1308, "end": 1312, "id": 232, "annotation": "BASEMAT"}, {"text": "also", "start": 1313, "end": 1317, "id": 233, "annotation": null}, {"text": "creates", "start": 1318, "end": 1325, "id": 234, "annotation": null}, {"text": "stronger", "start": 1326, "end": 1334, "id": 235, "annotation": null}, {"text": "point", "start": 1335, "end": 1340, "id": 236, "annotation": null}, {"text": "defect", "start": 1341, "end": 1347, "id": 237, "annotation": null}, {"text": "scattering", "start": 1348, "end": 1358, "id": 238, "annotation": null}, {"text": ",", "start": 1359, "end": 1360, "id": 239, "annotation": null}, {"text": "which", "start": 1361, "end": 1366, "id": 240, "annotation": null}, {"text": "when", "start": 1367, "end": 1371, "id": 241, "annotation": null}, {"text": "combined", "start": 1372, "end": 1380, "id": 242, "annotation": null}, {"text": "with", "start": 1381, "end": 1385, "id": 243, "annotation": null}, {"text": "ubiquitous", "start": 1386, "end": 1396, "id": 244, "annotation": null}, {"text": "endotaxial", "start": 1397, "end": 1407, "id": 245, "annotation": null}, {"text": "MnTe", "start": 1408, "end": 1412, "id": 246, "annotation": null}, {"text": "nanostructures", "start": 1413, "end": 1427, "id": 247, "annotation": null}, {"text": "when", "start": 1428, "end": 1432, "id": 248, "annotation": null}, {"text": "the", "start": 1433, "end": 1436, "id": 249, "annotation": null}, {"text": "solubility", "start": 1437, "end": 1447, "id": 250, "annotation": null}, {"text": "of", "start": 1448, "end": 1450, "id": 251, "annotation": null}, {"text": "Mn", "start": 1451, "end": 1453, "id": 252, "annotation": null}, {"text": "is", "start": 1454, "end": 1456, "id": 253, "annotation": null}, {"text": "exceeded", "start": 1457, "end": 1465, "id": 254, "annotation": null}, {"text": "scatters", "start": 1466, "end": 1474, "id": 255, "annotation": null}, {"text": "a", "start": 1475, "end": 1476, "id": 256, "annotation": null}, {"text": "wide", "start": 1477, "end": 1481, "id": 257, "annotation": null}, {"text": "spectrum", "start": 1482, "end": 1490, "id": 258, "annotation": null}, {"text": "of", "start": 1491, "end": 1493, "id": 259, "annotation": null}, {"text": "phonons", "start": 1494, "end": 1501, "id": 260, "annotation": null}, {"text": "for", "start": 1502, "end": 1505, "id": 261, "annotation": null}, {"text": "a", "start": 1506, "end": 1507, "id": 262, "annotation": null}, {"text": "low", "start": 1508, "end": 1511, "id": 263, "annotation": null}, {"text": "lattice", "start": 1512, "end": 1519, "id": 264, "annotation": null}, {"text": "thermal", "start": 1520, "end": 1527, "id": 265, "annotation": null}, {"text": "conductivity", "start": 1528, "end": 1540, "id": 266, "annotation": null}, {"text": "of", "start": 1541, "end": 1543, "id": 267, "annotation": null}, {"text": "0.9", "start": 1544, "end": 1547, "id": 268, "annotation": null}, {"text": "W", "start": 1548, "end": 1549, "id": 269, "annotation": null}, {"text": "m", "start": 1550, "end": 1551, "id": 270, "annotation": null}, {"text": "<", "start": 1552, "end": 1553, "id": 271, "annotation": null}, {"text": "sup>-1", "start": 1566, "end": 1567, "id": 273, "annotation": null}, {"text": "K", "start": 1568, "end": 1569, "id": 274, "annotation": null}, {"text": "<", "start": 1570, "end": 1571, "id": 275, "annotation": null}, {"text": "sup>-1", "start": 1584, "end": 1585, "id": 277, "annotation": null}, {"text": "at", "start": 1586, "end": 1588, "id": 278, "annotation": null}, {"text": "800", "start": 1589, "end": 1592, "id": 279, "annotation": null}, {"text": "K.", "start": 1593, "end": 1595, "id": 280, "annotation": null}], [{"text": "The", "start": 1596, "end": 1599, "id": 281, "annotation": null}, {"text": "synergistic", "start": 1600, "end": 1611, "id": 282, "annotation": null}, {"text": "role", "start": 1612, "end": 1616, "id": 283, "annotation": null}, {"text": "that", "start": 1617, "end": 1621, "id": 284, "annotation": null}, {"text": "Mn", "start": 1622, "end": 1624, "id": 285, "annotation": null}, {"text": "plays", "start": 1625, "end": 1630, "id": 286, "annotation": null}, {"text": "in", "start": 1631, "end": 1633, "id": 287, "annotation": null}, {"text": "regulating", "start": 1634, "end": 1644, "id": 288, "annotation": null}, {"text": "the", "start": 1645, "end": 1648, "id": 289, "annotation": null}, {"text": "electron", "start": 1649, "end": 1657, "id": 290, "annotation": null}, {"text": "and", "start": 1658, "end": 1661, "id": 291, "annotation": null}, {"text": "phonon", "start": 1662, "end": 1668, "id": 292, "annotation": null}, {"text": "transport", "start": 1669, "end": 1678, "id": 293, "annotation": null}, {"text": "of", "start": 1679, "end": 1681, "id": 294, "annotation": null}, {"text": "SnTe", "start": 1682, "end": 1686, "id": 295, "annotation": null}, {"text": "yields", "start": 1687, "end": 1693, "id": 296, "annotation": null}, {"text": "a", "start": 1694, "end": 1695, "id": 297, "annotation": null}, {"text": "high", "start": 1696, "end": 1700, "id": 298, "annotation": null}, {"text": "thermoelectric", "start": 1701, "end": 1715, "id": 299, "annotation": null}, {"text": "figure", "start": 1716, "end": 1722, "id": 300, "annotation": null}, {"text": "of", "start": 1723, "end": 1725, "id": 301, "annotation": null}, {"text": "merit", "start": 1726, "end": 1731, "id": 302, "annotation": null}, {"text": "of", "start": 1732, "end": 1734, "id": 303, "annotation": null}, {"text": "1.3", "start": 1735, "end": 1738, "id": 304, "annotation": null}, {"text": "at", "start": 1739, "end": 1741, "id": 305, "annotation": null}, {"text": "900", "start": 1742, "end": 1745, "id": 306, "annotation": null}, {"text": "K.", "start": 1746, "end": 1748, "id": 307, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "We demonstrate a high solubility limit of >9 mol% for MnTe alloying in SnTe. The electrical conductivity of SnTe decreases gradually while the Seebeck coefficient increases remarkably with increasing MnTe content, leading to enhanced power factors. The room-temperature Seebeck coefficients of Mn-doped SnTe are significantly higher than those predicted by theoretical Pisarenko plots for pure SnTe, indicating a modified band structure. The high-temperature Hall data of Sn1-xMnxTe show strong temperature dependence, suggestive of a two-valence-band conduction behavior. Moreover, the peak temperature of the Hall plot of Sn1-xMnxTe shifts toward lower temperature as MnTe content is increased, which is clear evidence of decreased energy separation (band convergence) between the two valence bands. The first-principles electronic structure calculations based on density functional theory also support this point. The higher doping fraction (>9%) of Mn in comparison with \u223c3% for Cd and Hg in SnTe gives rise to a much better valence band convergence that is responsible for the observed highest Seebeck coefficient of \u223c230 \u03bcV/K at 900 K. The high doping fraction of Mn in SnTe also creates stronger point defect scattering, which when combined with ubiquitous endotaxial MnTe nanostructures when the solubility of Mn is exceeded scatters a wide spectrum of phonons for a low lattice thermal conductivity of 0.9 W m-1 K-1 at 800 K. The synergistic role that Mn plays in regulating the electron and phonon transport of SnTe yields a high thermoelectric figure of merit of 1.3 at 900 K.", "meta": {"doi": "10.1021/jacs.5b07284"}, "_input_hash": -2098268170, "_task_hash": 1160568921, "tokens": [[{"text": "We", "start": 35, "end": 37, "id": 6, "annotation": null}, {"text": "demonstrate", "start": 38, "end": 49, "id": 7, "annotation": null}, {"text": "a", "start": 50, "end": 51, "id": 8, "annotation": null}, {"text": "high", "start": 52, "end": 56, "id": 9, "annotation": null}, {"text": "solubility", "start": 57, "end": 67, "id": 10, "annotation": null}, {"text": "limit", "start": 68, "end": 73, "id": 11, "annotation": null}, {"text": "of", "start": 74, "end": 76, "id": 12, "annotation": null}, {"text": ">", "start": 77, "end": 78, "id": 13, "annotation": null}, {"text": "9", "start": 79, "end": 80, "id": 14, "annotation": null}, {"text": "mol%", "start": 81, "end": 85, "id": 15, "annotation": null}, {"text": "for", "start": 86, "end": 89, "id": 16, "annotation": null}, {"text": "MnTe", "start": 90, "end": 94, "id": 17, "annotation": null}, {"text": "alloying", "start": 95, "end": 103, "id": 18, "annotation": null}, {"text": "in", "start": 104, "end": 106, "id": 19, "annotation": null}, {"text": "SnTe", "start": 107, "end": 111, "id": 20, "annotation": null}, {"text": ".", "start": 112, "end": 113, "id": 21, "annotation": null}], [{"text": "The", "start": 114, "end": 117, "id": 22, "annotation": null}, {"text": "electrical", "start": 118, "end": 128, "id": 23, "annotation": null}, {"text": "conductivity", "start": 129, "end": 141, "id": 24, "annotation": null}, {"text": "of", "start": 142, "end": 144, "id": 25, "annotation": null}, {"text": "SnTe", "start": 145, "end": 149, "id": 26, "annotation": null}, {"text": "decreases", "start": 150, "end": 159, "id": 27, "annotation": null}, {"text": "gradually", "start": 160, "end": 169, "id": 28, "annotation": null}, {"text": "while", "start": 170, "end": 175, "id": 29, "annotation": null}, {"text": "the", "start": 176, "end": 179, "id": 30, "annotation": null}, {"text": "Seebeck", "start": 180, "end": 187, "id": 31, "annotation": null}, {"text": "coefficient", "start": 188, "end": 199, "id": 32, "annotation": null}, {"text": "increases", "start": 200, "end": 209, "id": 33, "annotation": null}, {"text": "remarkably", "start": 210, "end": 220, "id": 34, "annotation": null}, {"text": "with", "start": 221, "end": 225, "id": 35, "annotation": null}, {"text": "increasing", "start": 226, "end": 236, "id": 36, "annotation": null}, {"text": "MnTe", "start": 237, "end": 241, "id": 37, "annotation": null}, {"text": "content", "start": 242, "end": 249, "id": 38, "annotation": null}, {"text": ",", "start": 250, "end": 251, "id": 39, "annotation": null}, {"text": "leading", "start": 252, "end": 259, "id": 40, "annotation": null}, {"text": "to", "start": 260, "end": 262, "id": 41, "annotation": null}, {"text": "enhanced", "start": 263, "end": 271, "id": 42, "annotation": null}, {"text": "power", "start": 272, "end": 277, "id": 43, "annotation": null}, {"text": "factors", "start": 278, "end": 285, "id": 44, "annotation": null}, {"text": ".", "start": 286, "end": 287, "id": 45, "annotation": null}], [{"text": "The", "start": 288, "end": 291, "id": 46, "annotation": null}, {"text": "room", "start": 292, "end": 296, "id": 47, "annotation": null}, {"text": "-", "start": 297, "end": 298, "id": 48, "annotation": null}, {"text": "temperature", "start": 299, "end": 310, "id": 49, "annotation": null}, {"text": "Seebeck", "start": 311, "end": 318, "id": 50, "annotation": null}, {"text": "coefficients", "start": 319, "end": 331, "id": 51, "annotation": null}, {"text": "of", "start": 332, "end": 334, "id": 52, "annotation": null}, {"text": "Mn", "start": 335, "end": 337, "id": 53, "annotation": "DOPANT"}, {"text": "-", "start": 338, "end": 339, "id": 54, "annotation": null}, {"text": "doped", "start": 340, "end": 345, "id": 55, "annotation": null}, {"text": "SnTe", "start": 346, "end": 350, "id": 56, "annotation": "BASEMAT"}, {"text": "are", "start": 351, "end": 354, "id": 57, "annotation": null}, {"text": "significantly", "start": 355, "end": 368, "id": 58, "annotation": null}, {"text": "higher", "start": 369, "end": 375, "id": 59, "annotation": null}, {"text": "than", "start": 376, "end": 380, "id": 60, "annotation": null}, {"text": "those", "start": 381, "end": 386, "id": 61, "annotation": null}, {"text": "predicted", "start": 387, "end": 396, "id": 62, "annotation": null}, {"text": "by", "start": 397, "end": 399, "id": 63, "annotation": null}, {"text": "theoretical", "start": 400, "end": 411, "id": 64, "annotation": null}, {"text": "Pisarenko", "start": 412, "end": 421, "id": 65, "annotation": null}, {"text": "plots", "start": 422, "end": 427, "id": 66, "annotation": null}, {"text": "for", "start": 428, "end": 431, "id": 67, "annotation": null}, {"text": "pure", "start": 432, "end": 436, "id": 68, "annotation": null}, {"text": "SnTe", "start": 437, "end": 441, "id": 69, "annotation": null}, {"text": ",", "start": 442, "end": 443, "id": 70, "annotation": null}, {"text": "indicating", "start": 444, "end": 454, "id": 71, "annotation": null}, {"text": "a", "start": 455, "end": 456, "id": 72, "annotation": null}, {"text": "modified", "start": 457, "end": 465, "id": 73, "annotation": null}, {"text": "band", "start": 466, "end": 470, "id": 74, "annotation": null}, {"text": "structure", "start": 471, "end": 480, "id": 75, "annotation": null}, {"text": ".", "start": 481, "end": 482, "id": 76, "annotation": null}], [{"text": "The", "start": 483, "end": 486, "id": 77, "annotation": null}, {"text": "high", "start": 487, "end": 491, "id": 78, "annotation": null}, {"text": "-", "start": 492, "end": 493, "id": 79, "annotation": null}, {"text": "temperature", "start": 494, "end": 505, "id": 80, "annotation": null}, {"text": "Hall", "start": 506, "end": 510, "id": 81, "annotation": null}, {"text": "data", "start": 511, "end": 515, "id": 82, "annotation": null}, {"text": "of", "start": 516, "end": 518, "id": 83, "annotation": null}, {"text": "Sn", "start": 519, "end": 521, "id": 84, "annotation": null}, {"text": "<", "start": 522, "end": 523, "id": 85, "annotation": null}, {"text": "inf>1-x", "start": 537, "end": 538, "id": 87, "annotation": null}, {"text": "Mn", "start": 539, "end": 541, "id": 88, "annotation": null}, {"text": "<", "start": 542, "end": 543, "id": 89, "annotation": null}, {"text": "inf", "start": 544, "end": 547, "id": 90, "annotation": null}, {"text": ">", "start": 548, "end": 549, "id": 91, "annotation": null}, {"text": "x", "start": 557, "end": 558, "id": 93, "annotation": null}, {"text": "Te", "start": 559, "end": 561, "id": 94, "annotation": null}, {"text": "show", "start": 562, "end": 566, "id": 95, "annotation": null}, {"text": "strong", "start": 567, "end": 573, "id": 96, "annotation": null}, {"text": "temperature", "start": 574, "end": 585, "id": 97, "annotation": null}, {"text": "dependence", "start": 586, "end": 596, "id": 98, "annotation": null}, {"text": ",", "start": 597, "end": 598, "id": 99, "annotation": null}, {"text": "suggestive", "start": 599, "end": 609, "id": 100, "annotation": null}, {"text": "of", "start": 610, "end": 612, "id": 101, "annotation": null}, {"text": "a", "start": 613, "end": 614, "id": 102, "annotation": null}, {"text": "two", "start": 615, "end": 618, "id": 103, "annotation": null}, {"text": "-", "start": 619, "end": 620, "id": 104, "annotation": null}, {"text": "valence", "start": 621, "end": 628, "id": 105, "annotation": null}, {"text": "-", "start": 629, "end": 630, "id": 106, "annotation": null}, {"text": "band", "start": 631, "end": 635, "id": 107, "annotation": null}, {"text": "conduction", "start": 636, "end": 646, "id": 108, "annotation": null}, {"text": "behavior", "start": 647, "end": 655, "id": 109, "annotation": null}, {"text": ".", "start": 656, "end": 657, "id": 110, "annotation": null}], [{"text": "Moreover", "start": 658, "end": 666, "id": 111, "annotation": null}, {"text": ",", "start": 667, "end": 668, "id": 112, "annotation": null}, {"text": "the", "start": 669, "end": 672, "id": 113, "annotation": null}, {"text": "peak", "start": 673, "end": 677, "id": 114, "annotation": null}, {"text": "temperature", "start": 678, "end": 689, "id": 115, "annotation": null}, {"text": "of", "start": 690, "end": 692, "id": 116, "annotation": null}, {"text": "the", "start": 693, "end": 696, "id": 117, "annotation": null}, {"text": "Hall", "start": 697, "end": 701, "id": 118, "annotation": null}, {"text": "plot", "start": 702, "end": 706, "id": 119, "annotation": null}, {"text": "of", "start": 707, "end": 709, "id": 120, "annotation": null}, {"text": "Sn", "start": 710, "end": 712, "id": 121, "annotation": null}, {"text": "<", "start": 713, "end": 714, "id": 122, "annotation": null}, {"text": "inf>1-x", "start": 728, "end": 729, "id": 124, "annotation": null}, {"text": "Mn", "start": 730, "end": 732, "id": 125, "annotation": null}, {"text": "<", "start": 733, "end": 734, "id": 126, "annotation": null}, {"text": "inf", "start": 735, "end": 738, "id": 127, "annotation": null}, {"text": ">", "start": 739, "end": 740, "id": 128, "annotation": null}, {"text": "x", "start": 748, "end": 749, "id": 130, "annotation": null}, {"text": "Te", "start": 750, "end": 752, "id": 131, "annotation": null}, {"text": "shifts", "start": 753, "end": 759, "id": 132, "annotation": null}, {"text": "toward", "start": 760, "end": 766, "id": 133, "annotation": null}, {"text": "lower", "start": 767, "end": 772, "id": 134, "annotation": null}, {"text": "temperature", "start": 773, "end": 784, "id": 135, "annotation": null}, {"text": "as", "start": 785, "end": 787, "id": 136, "annotation": null}, {"text": "MnTe", "start": 788, "end": 792, "id": 137, "annotation": null}, {"text": "content", "start": 793, "end": 800, "id": 138, "annotation": null}, {"text": "is", "start": 801, "end": 803, "id": 139, "annotation": null}, {"text": "increased", "start": 804, "end": 813, "id": 140, "annotation": null}, {"text": ",", "start": 814, "end": 815, "id": 141, "annotation": null}, {"text": "which", "start": 816, "end": 821, "id": 142, "annotation": null}, {"text": "is", "start": 822, "end": 824, "id": 143, "annotation": null}, {"text": "clear", "start": 825, "end": 830, "id": 144, "annotation": null}, {"text": "evidence", "start": 831, "end": 839, "id": 145, "annotation": null}, {"text": "of", "start": 840, "end": 842, "id": 146, "annotation": null}, {"text": "decreased", "start": 843, "end": 852, "id": 147, "annotation": null}, {"text": "energy", "start": 853, "end": 859, "id": 148, "annotation": null}, {"text": "separation", "start": 860, "end": 870, "id": 149, "annotation": null}, {"text": "(", "start": 871, "end": 872, "id": 150, "annotation": null}, {"text": "band", "start": 873, "end": 877, "id": 151, "annotation": null}, {"text": "convergence", "start": 878, "end": 889, "id": 152, "annotation": null}, {"text": ")", "start": 890, "end": 891, "id": 153, "annotation": null}, {"text": "between", "start": 892, "end": 899, "id": 154, "annotation": null}, {"text": "the", "start": 900, "end": 903, "id": 155, "annotation": null}, {"text": "two", "start": 904, "end": 907, "id": 156, "annotation": null}, {"text": "valence", "start": 908, "end": 915, "id": 157, "annotation": null}, {"text": "bands", "start": 916, "end": 921, "id": 158, "annotation": null}, {"text": ".", "start": 922, "end": 923, "id": 159, "annotation": null}], [{"text": "The", "start": 924, "end": 927, "id": 160, "annotation": null}, {"text": "first", "start": 928, "end": 933, "id": 161, "annotation": null}, {"text": "-", "start": 934, "end": 935, "id": 162, "annotation": null}, {"text": "principles", "start": 936, "end": 946, "id": 163, "annotation": null}, {"text": "electronic", "start": 947, "end": 957, "id": 164, "annotation": null}, {"text": "structure", "start": 958, "end": 967, "id": 165, "annotation": null}, {"text": "calculations", "start": 968, "end": 980, "id": 166, "annotation": null}, {"text": "based", "start": 981, "end": 986, "id": 167, "annotation": null}, {"text": "on", "start": 987, "end": 989, "id": 168, "annotation": null}, {"text": "density", "start": 990, "end": 997, "id": 169, "annotation": null}, {"text": "functional", "start": 998, "end": 1008, "id": 170, "annotation": null}, {"text": "theory", "start": 1009, "end": 1015, "id": 171, "annotation": null}, {"text": "also", "start": 1016, "end": 1020, "id": 172, "annotation": null}, {"text": "support", "start": 1021, "end": 1028, "id": 173, "annotation": null}, {"text": "this", "start": 1029, "end": 1033, "id": 174, "annotation": null}, {"text": "point", "start": 1034, "end": 1039, "id": 175, "annotation": null}, {"text": ".", "start": 1040, "end": 1041, "id": 176, "annotation": null}], [{"text": "The", "start": 1042, "end": 1045, "id": 177, "annotation": null}, {"text": "higher", "start": 1046, "end": 1052, "id": 178, "annotation": null}, {"text": "doping", "start": 1053, "end": 1059, "id": 179, "annotation": null}, {"text": "fraction", "start": 1060, "end": 1068, "id": 180, "annotation": null}, {"text": "(", "start": 1069, "end": 1070, "id": 181, "annotation": null}, {"text": ">", "start": 1071, "end": 1072, "id": 182, "annotation": "DOPMODQ"}, {"text": "9", "start": 1073, "end": 1074, "id": 183, "annotation": "DOPMODQ"}, {"text": "%", "start": 1075, "end": 1076, "id": 184, "annotation": "DOPMODQ"}, {"text": ")", "start": 1077, "end": 1078, "id": 185, "annotation": null}, {"text": "of", "start": 1079, "end": 1081, "id": 186, "annotation": null}, {"text": "Mn", "start": 1082, "end": 1084, "id": 187, "annotation": "DOPANT"}, {"text": "in", "start": 1085, "end": 1087, "id": 188, "annotation": null}, {"text": "comparison", "start": 1088, "end": 1098, "id": 189, "annotation": null}, {"text": "with", "start": 1099, "end": 1103, "id": 190, "annotation": null}, {"text": "\u223c3", "start": 1104, "end": 1106, "id": 191, "annotation": "DOPMODQ"}, {"text": "%", "start": 1107, "end": 1108, "id": 192, "annotation": "DOPMODQ"}, {"text": "for", "start": 1109, "end": 1112, "id": 193, "annotation": null}, {"text": "Cd", "start": 1113, "end": 1115, "id": 194, "annotation": "DOPANT"}, {"text": "and", "start": 1116, "end": 1119, "id": 195, "annotation": null}, {"text": "Hg", "start": 1120, "end": 1122, "id": 196, "annotation": "DOPANT"}, {"text": "in", "start": 1123, "end": 1125, "id": 197, "annotation": null}, {"text": "SnTe", "start": 1126, "end": 1130, "id": 198, "annotation": "BASEMAT"}, {"text": "gives", "start": 1131, "end": 1136, "id": 199, "annotation": null}, {"text": "rise", "start": 1137, "end": 1141, "id": 200, "annotation": null}, {"text": "to", "start": 1142, "end": 1144, "id": 201, "annotation": null}, {"text": "a", "start": 1145, "end": 1146, "id": 202, "annotation": null}, {"text": "much", "start": 1147, "end": 1151, "id": 203, "annotation": null}, {"text": "better", "start": 1152, "end": 1158, "id": 204, "annotation": null}, {"text": "valence", "start": 1159, "end": 1166, "id": 205, "annotation": null}, {"text": "band", "start": 1167, "end": 1171, "id": 206, "annotation": null}, {"text": "convergence", "start": 1172, "end": 1183, "id": 207, "annotation": null}, {"text": "that", "start": 1184, "end": 1188, "id": 208, "annotation": null}, {"text": "is", "start": 1189, "end": 1191, "id": 209, "annotation": null}, {"text": "responsible", "start": 1192, "end": 1203, "id": 210, "annotation": null}, {"text": "for", "start": 1204, "end": 1207, "id": 211, "annotation": null}, {"text": "the", "start": 1208, "end": 1211, "id": 212, "annotation": null}, {"text": "observed", "start": 1212, "end": 1220, "id": 213, "annotation": null}, {"text": "highest", "start": 1221, "end": 1228, "id": 214, "annotation": null}, {"text": "Seebeck", "start": 1229, "end": 1236, "id": 215, "annotation": null}, {"text": "coefficient", "start": 1237, "end": 1248, "id": 216, "annotation": null}, {"text": "of", "start": 1249, "end": 1251, "id": 217, "annotation": null}, {"text": "\u223c230", "start": 1252, "end": 1256, "id": 218, "annotation": null}, {"text": "\u03bcV", "start": 1257, "end": 1259, "id": 219, "annotation": null}, {"text": "/", "start": 1260, "end": 1261, "id": 220, "annotation": null}, {"text": "K", "start": 1262, "end": 1263, "id": 221, "annotation": null}, {"text": "at", "start": 1264, "end": 1266, "id": 222, "annotation": null}, {"text": "900", "start": 1267, "end": 1270, "id": 223, "annotation": null}, {"text": "K.", "start": 1271, "end": 1273, "id": 224, "annotation": null}], [{"text": "The", "start": 1274, "end": 1277, "id": 225, "annotation": null}, {"text": "high", "start": 1278, "end": 1282, "id": 226, "annotation": null}, {"text": "doping", "start": 1283, "end": 1289, "id": 227, "annotation": null}, {"text": "fraction", "start": 1290, "end": 1298, "id": 228, "annotation": null}, {"text": "of", "start": 1299, "end": 1301, "id": 229, "annotation": null}, {"text": "Mn", "start": 1302, "end": 1304, "id": 230, "annotation": "DOPANT"}, {"text": "in", "start": 1305, "end": 1307, "id": 231, "annotation": null}, {"text": "SnTe", "start": 1308, "end": 1312, "id": 232, "annotation": "BASEMAT"}, {"text": "also", "start": 1313, "end": 1317, "id": 233, "annotation": null}, {"text": "creates", "start": 1318, "end": 1325, "id": 234, "annotation": null}, {"text": "stronger", "start": 1326, "end": 1334, "id": 235, "annotation": null}, {"text": "point", "start": 1335, "end": 1340, "id": 236, "annotation": null}, {"text": "defect", "start": 1341, "end": 1347, "id": 237, "annotation": null}, {"text": "scattering", "start": 1348, "end": 1358, "id": 238, "annotation": null}, {"text": ",", "start": 1359, "end": 1360, "id": 239, "annotation": null}, {"text": "which", "start": 1361, "end": 1366, "id": 240, "annotation": null}, {"text": "when", "start": 1367, "end": 1371, "id": 241, "annotation": null}, {"text": "combined", "start": 1372, "end": 1380, "id": 242, "annotation": null}, {"text": "with", "start": 1381, "end": 1385, "id": 243, "annotation": null}, {"text": "ubiquitous", "start": 1386, "end": 1396, "id": 244, "annotation": null}, {"text": "endotaxial", "start": 1397, "end": 1407, "id": 245, "annotation": null}, {"text": "MnTe", "start": 1408, "end": 1412, "id": 246, "annotation": null}, {"text": "nanostructures", "start": 1413, "end": 1427, "id": 247, "annotation": null}, {"text": "when", "start": 1428, "end": 1432, "id": 248, "annotation": null}, {"text": "the", "start": 1433, "end": 1436, "id": 249, "annotation": null}, {"text": "solubility", "start": 1437, "end": 1447, "id": 250, "annotation": null}, {"text": "of", "start": 1448, "end": 1450, "id": 251, "annotation": null}, {"text": "Mn", "start": 1451, "end": 1453, "id": 252, "annotation": null}, {"text": "is", "start": 1454, "end": 1456, "id": 253, "annotation": null}, {"text": "exceeded", "start": 1457, "end": 1465, "id": 254, "annotation": null}, {"text": "scatters", "start": 1466, "end": 1474, "id": 255, "annotation": null}, {"text": "a", "start": 1475, "end": 1476, "id": 256, "annotation": null}, {"text": "wide", "start": 1477, "end": 1481, "id": 257, "annotation": null}, {"text": "spectrum", "start": 1482, "end": 1490, "id": 258, "annotation": null}, {"text": "of", "start": 1491, "end": 1493, "id": 259, "annotation": null}, {"text": "phonons", "start": 1494, "end": 1501, "id": 260, "annotation": null}, {"text": "for", "start": 1502, "end": 1505, "id": 261, "annotation": null}, {"text": "a", "start": 1506, "end": 1507, "id": 262, "annotation": null}, {"text": "low", "start": 1508, "end": 1511, "id": 263, "annotation": null}, {"text": "lattice", "start": 1512, "end": 1519, "id": 264, "annotation": null}, {"text": "thermal", "start": 1520, "end": 1527, "id": 265, "annotation": null}, {"text": "conductivity", "start": 1528, "end": 1540, "id": 266, "annotation": null}, {"text": "of", "start": 1541, "end": 1543, "id": 267, "annotation": null}, {"text": "0.9", "start": 1544, "end": 1547, "id": 268, "annotation": null}, {"text": "W", "start": 1548, "end": 1549, "id": 269, "annotation": null}, {"text": "m", "start": 1550, "end": 1551, "id": 270, "annotation": null}, {"text": "<", "start": 1552, "end": 1553, "id": 271, "annotation": null}, {"text": "sup>-1", "start": 1566, "end": 1567, "id": 273, "annotation": null}, {"text": "K", "start": 1568, "end": 1569, "id": 274, "annotation": null}, {"text": "<", "start": 1570, "end": 1571, "id": 275, "annotation": null}, {"text": "sup>-1", "start": 1584, "end": 1585, "id": 277, "annotation": null}, {"text": "at", "start": 1586, "end": 1588, "id": 278, "annotation": null}, {"text": "800", "start": 1589, "end": 1592, "id": 279, "annotation": null}, {"text": "K.", "start": 1593, "end": 1595, "id": 280, "annotation": null}], [{"text": "The", "start": 1596, "end": 1599, "id": 281, "annotation": null}, {"text": "synergistic", "start": 1600, "end": 1611, "id": 282, "annotation": null}, {"text": "role", "start": 1612, "end": 1616, "id": 283, "annotation": null}, {"text": "that", "start": 1617, "end": 1621, "id": 284, "annotation": null}, {"text": "Mn", "start": 1622, "end": 1624, "id": 285, "annotation": null}, {"text": "plays", "start": 1625, "end": 1630, "id": 286, "annotation": null}, {"text": "in", "start": 1631, "end": 1633, "id": 287, "annotation": null}, {"text": "regulating", "start": 1634, "end": 1644, "id": 288, "annotation": null}, {"text": "the", "start": 1645, "end": 1648, "id": 289, "annotation": null}, {"text": "electron", "start": 1649, "end": 1657, "id": 290, "annotation": null}, {"text": "and", "start": 1658, "end": 1661, "id": 291, "annotation": null}, {"text": "phonon", "start": 1662, "end": 1668, "id": 292, "annotation": null}, {"text": "transport", "start": 1669, "end": 1678, "id": 293, "annotation": null}, {"text": "of", "start": 1679, "end": 1681, "id": 294, "annotation": null}, {"text": "SnTe", "start": 1682, "end": 1686, "id": 295, "annotation": null}, {"text": "yields", "start": 1687, "end": 1693, "id": 296, "annotation": null}, {"text": "a", "start": 1694, "end": 1695, "id": 297, "annotation": null}, {"text": "high", "start": 1696, "end": 1700, "id": 298, "annotation": null}, {"text": "thermoelectric", "start": 1701, "end": 1715, "id": 299, "annotation": null}, {"text": "figure", "start": 1716, "end": 1722, "id": 300, "annotation": null}, {"text": "of", "start": 1723, "end": 1725, "id": 301, "annotation": null}, {"text": "merit", "start": 1726, "end": 1731, "id": 302, "annotation": null}, {"text": "of", "start": 1732, "end": 1734, "id": 303, "annotation": null}, {"text": "1.3", "start": 1735, "end": 1738, "id": 304, "annotation": null}, {"text": "at", "start": 1739, "end": 1741, "id": 305, "annotation": null}, {"text": "900", "start": 1742, "end": 1745, "id": 306, "annotation": null}, {"text": "K.", "start": 1746, "end": 1748, "id": 307, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Nitrogen-doped mesoporous carbon (NMC) has been synthesized by sol\u2013gel process using a mixture of phenol and formaldehyde as source of carbon, and melamine as source of nitrogen. The Ludox-AS40 (40wt% SiO2) is employed, for the first time, as hard template to obtain polymeric gel by prolonged heat treatment at 80\u00b0C. The wt% of nitrogen is tuned by varying the weight ratio of melamine to phenol. Stable mesoporous carbon frameworks are obtained by pyrolysis of the dry gel at 800\u00b0C in nitrogen atmosphere and treated with alkali to remove silica. One of the carbon framework samples has 11wt% nitrogen doping and shows pore volume of 0.5cm3g\u22121 and surface area 609m2g\u22121. The other carbon frame work sample has 6wt% nitrogen doping and shows higher pore volume of 1.1cm3g\u22121 and surface area 736m2g\u22121. The later sample exhibits highest electrochemical capacitance of 196Fg\u22121 at 0.5Ag\u22121 while the former shows only 146Fg\u22121 at 0.5Ag\u22121. However, both the NMC electrodes show good cyclic performance (91% of the initial capacitance after 1000 cycles) in an aqueous KOH electrolyte. This study demonstrates that there is an optimum level of nitrogen doping required to keep the meso-structure of carbon network intact, simultaneously maintaining high surface area and sufficient electrical conductivity for electrochemical applications.", "meta": {"doi": "10.1016/j.apsusc.2016.11.181"}, "_input_hash": 2087898507, "_task_hash": 176462911, "tokens": [[{"text": "Nitrogen", "start": 0, "end": 8, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 9, "end": 10, "id": 1, "annotation": null}, {"text": "doped", "start": 11, "end": 16, "id": 2, "annotation": null}, {"text": "mesoporous", "start": 17, "end": 27, "id": 3, "annotation": null}, {"text": "carbon", "start": 28, "end": 34, "id": 4, "annotation": "BASEMAT"}, {"text": "(", "start": 35, "end": 36, "id": 5, "annotation": null}, {"text": "NMC", "start": 37, "end": 40, "id": 6, "annotation": null}, {"text": ")", "start": 41, "end": 42, "id": 7, "annotation": null}, {"text": "has", "start": 43, "end": 46, "id": 8, "annotation": null}, {"text": "been", "start": 47, "end": 51, "id": 9, "annotation": null}, {"text": "synthesized", "start": 52, "end": 63, "id": 10, "annotation": null}, {"text": "by", "start": 64, "end": 66, "id": 11, "annotation": null}, {"text": "sol", "start": 67, "end": 70, "id": 12, "annotation": null}, {"text": "\u2013", "start": 71, "end": 72, "id": 13, "annotation": null}, {"text": "gel", "start": 73, "end": 76, "id": 14, "annotation": null}, {"text": "process", "start": 77, "end": 84, "id": 15, "annotation": null}, {"text": "using", "start": 85, "end": 90, "id": 16, "annotation": null}, {"text": "a", "start": 91, "end": 92, "id": 17, "annotation": null}, {"text": "mixture", "start": 93, "end": 100, "id": 18, "annotation": null}, {"text": "of", "start": 101, "end": 103, "id": 19, "annotation": null}, {"text": "phenol", "start": 104, "end": 110, "id": 20, "annotation": null}, {"text": "and", "start": 111, "end": 114, "id": 21, "annotation": null}, {"text": "formaldehyde", "start": 115, "end": 127, "id": 22, "annotation": null}, {"text": "as", "start": 128, "end": 130, "id": 23, "annotation": null}, {"text": "source", "start": 131, "end": 137, "id": 24, "annotation": null}, {"text": "of", "start": 138, "end": 140, "id": 25, "annotation": null}, {"text": "carbon", "start": 141, "end": 147, "id": 26, "annotation": null}, {"text": ",", "start": 148, "end": 149, "id": 27, "annotation": null}, {"text": "and", "start": 150, "end": 153, "id": 28, "annotation": null}, {"text": "melamine", "start": 154, "end": 162, "id": 29, "annotation": null}, {"text": "as", "start": 163, "end": 165, "id": 30, "annotation": null}, {"text": "source", "start": 166, "end": 172, "id": 31, "annotation": null}, {"text": "of", "start": 173, "end": 175, "id": 32, "annotation": null}, {"text": "nitrogen", "start": 176, "end": 184, "id": 33, "annotation": null}, {"text": ".", "start": 185, "end": 186, "id": 34, "annotation": null}], [{"text": "The", "start": 187, "end": 190, "id": 35, "annotation": null}, {"text": "Ludox", "start": 191, "end": 196, "id": 36, "annotation": null}, {"text": "-", "start": 197, "end": 198, "id": 37, "annotation": null}, {"text": "AS40", "start": 199, "end": 203, "id": 38, "annotation": null}, {"text": "(", "start": 204, "end": 205, "id": 39, "annotation": null}, {"text": "40wt%", "start": 206, "end": 211, "id": 40, "annotation": null}, {"text": "SiO2", "start": 212, "end": 216, "id": 41, "annotation": null}, {"text": ")", "start": 217, "end": 218, "id": 42, "annotation": null}, {"text": "is", "start": 219, "end": 221, "id": 43, "annotation": null}, {"text": "employed", "start": 222, "end": 230, "id": 44, "annotation": null}, {"text": ",", "start": 231, "end": 232, "id": 45, "annotation": null}, {"text": "for", "start": 233, "end": 236, "id": 46, "annotation": null}, {"text": "the", "start": 237, "end": 240, "id": 47, "annotation": null}, {"text": "first", "start": 241, "end": 246, "id": 48, "annotation": null}, {"text": "time", "start": 247, "end": 251, "id": 49, "annotation": null}, {"text": ",", "start": 252, "end": 253, "id": 50, "annotation": null}, {"text": "as", "start": 254, "end": 256, "id": 51, "annotation": null}, {"text": "hard", "start": 257, "end": 261, "id": 52, "annotation": null}, {"text": "template", "start": 262, "end": 270, "id": 53, "annotation": null}, {"text": "to", "start": 271, "end": 273, "id": 54, "annotation": null}, {"text": "obtain", "start": 274, "end": 280, "id": 55, "annotation": null}, {"text": "polymeric", "start": 281, "end": 290, "id": 56, "annotation": null}, {"text": "gel", "start": 291, "end": 294, "id": 57, "annotation": null}, {"text": "by", "start": 295, "end": 297, "id": 58, "annotation": null}, {"text": "prolonged", "start": 298, "end": 307, "id": 59, "annotation": null}, {"text": "heat", "start": 308, "end": 312, "id": 60, "annotation": null}, {"text": "treatment", "start": 313, "end": 322, "id": 61, "annotation": null}, {"text": "at", "start": 323, "end": 325, "id": 62, "annotation": null}, {"text": "80", "start": 326, "end": 328, "id": 63, "annotation": null}, {"text": "\u00b0", "start": 329, "end": 330, "id": 64, "annotation": null}, {"text": "C", "start": 331, "end": 332, "id": 65, "annotation": null}, {"text": ".", "start": 333, "end": 334, "id": 66, "annotation": null}], [{"text": "The", "start": 335, "end": 338, "id": 67, "annotation": null}, {"text": "wt%", "start": 339, "end": 342, "id": 68, "annotation": null}, {"text": "of", "start": 343, "end": 345, "id": 69, "annotation": null}, {"text": "nitrogen", "start": 346, "end": 354, "id": 70, "annotation": null}, {"text": "is", "start": 355, "end": 357, "id": 71, "annotation": null}, {"text": "tuned", "start": 358, "end": 363, "id": 72, "annotation": null}, {"text": "by", "start": 364, "end": 366, "id": 73, "annotation": null}, {"text": "varying", "start": 367, "end": 374, "id": 74, "annotation": null}, {"text": "the", "start": 375, "end": 378, "id": 75, "annotation": null}, {"text": "weight", "start": 379, "end": 385, "id": 76, "annotation": null}, {"text": "ratio", "start": 386, "end": 391, "id": 77, "annotation": null}, {"text": "of", "start": 392, "end": 394, "id": 78, "annotation": null}, {"text": "melamine", "start": 395, "end": 403, "id": 79, "annotation": null}, {"text": "to", "start": 404, "end": 406, "id": 80, "annotation": null}, {"text": "phenol", "start": 407, "end": 413, "id": 81, "annotation": null}, {"text": ".", "start": 414, "end": 415, "id": 82, "annotation": null}], [{"text": "Stable", "start": 416, "end": 422, "id": 83, "annotation": null}, {"text": "mesoporous", "start": 423, "end": 433, "id": 84, "annotation": null}, {"text": "carbon", "start": 434, "end": 440, "id": 85, "annotation": null}, {"text": "frameworks", "start": 441, "end": 451, "id": 86, "annotation": null}, {"text": "are", "start": 452, "end": 455, "id": 87, "annotation": null}, {"text": "obtained", "start": 456, "end": 464, "id": 88, "annotation": null}, {"text": "by", "start": 465, "end": 467, "id": 89, "annotation": null}, {"text": "pyrolysis", "start": 468, "end": 477, "id": 90, "annotation": null}, {"text": "of", "start": 478, "end": 480, "id": 91, "annotation": null}, {"text": "the", "start": 481, "end": 484, "id": 92, "annotation": null}, {"text": "dry", "start": 485, "end": 488, "id": 93, "annotation": null}, {"text": "gel", "start": 489, "end": 492, "id": 94, "annotation": null}, {"text": "at", "start": 493, "end": 495, "id": 95, "annotation": null}, {"text": "800", "start": 496, "end": 499, "id": 96, "annotation": null}, {"text": "\u00b0", "start": 500, "end": 501, "id": 97, "annotation": null}, {"text": "C", "start": 502, "end": 503, "id": 98, "annotation": null}, {"text": "in", "start": 504, "end": 506, "id": 99, "annotation": null}, {"text": "nitrogen", "start": 507, "end": 515, "id": 100, "annotation": null}, {"text": "atmosphere", "start": 516, "end": 526, "id": 101, "annotation": null}, {"text": "and", "start": 527, "end": 530, "id": 102, "annotation": null}, {"text": "treated", "start": 531, "end": 538, "id": 103, "annotation": null}, {"text": "with", "start": 539, "end": 543, "id": 104, "annotation": null}, {"text": "alkali", "start": 544, "end": 550, "id": 105, "annotation": null}, {"text": "to", "start": 551, "end": 553, "id": 106, "annotation": null}, {"text": "remove", "start": 554, "end": 560, "id": 107, "annotation": null}, {"text": "silica", "start": 561, "end": 567, "id": 108, "annotation": null}, {"text": ".", "start": 568, "end": 569, "id": 109, "annotation": null}], [{"text": "One", "start": 570, "end": 573, "id": 110, "annotation": null}, {"text": "of", "start": 574, "end": 576, "id": 111, "annotation": null}, {"text": "the", "start": 577, "end": 580, "id": 112, "annotation": null}, {"text": "carbon", "start": 581, "end": 587, "id": 113, "annotation": null}, {"text": "framework", "start": 588, "end": 597, "id": 114, "annotation": null}, {"text": "samples", "start": 598, "end": 605, "id": 115, "annotation": null}, {"text": "has", "start": 606, "end": 609, "id": 116, "annotation": null}, {"text": "11wt%", "start": 610, "end": 615, "id": 117, "annotation": "DOPMODQ"}, {"text": "nitrogen", "start": 616, "end": 624, "id": 118, "annotation": "DOPANT"}, {"text": "doping", "start": 625, "end": 631, "id": 119, "annotation": null}, {"text": "and", "start": 632, "end": 635, "id": 120, "annotation": null}, {"text": "shows", "start": 636, "end": 641, "id": 121, "annotation": null}, {"text": "pore", "start": 642, "end": 646, "id": 122, "annotation": null}, {"text": "volume", "start": 647, "end": 653, "id": 123, "annotation": null}, {"text": "of", "start": 654, "end": 656, "id": 124, "annotation": null}, {"text": "0.5cm3g\u22121", "start": 657, "end": 666, "id": 125, "annotation": null}, {"text": "and", "start": 667, "end": 670, "id": 126, "annotation": null}, {"text": "surface", "start": 671, "end": 678, "id": 127, "annotation": null}, {"text": "area", "start": 679, "end": 683, "id": 128, "annotation": null}, {"text": "609m2g\u22121", "start": 684, "end": 692, "id": 129, "annotation": null}, {"text": ".", "start": 693, "end": 694, "id": 130, "annotation": null}], [{"text": "The", "start": 695, "end": 698, "id": 131, "annotation": null}, {"text": "other", "start": 699, "end": 704, "id": 132, "annotation": null}, {"text": "carbon", "start": 705, "end": 711, "id": 133, "annotation": "BASEMAT"}, {"text": "frame", "start": 712, "end": 717, "id": 134, "annotation": null}, {"text": "work", "start": 718, "end": 722, "id": 135, "annotation": null}, {"text": "sample", "start": 723, "end": 729, "id": 136, "annotation": null}, {"text": "has", "start": 730, "end": 733, "id": 137, "annotation": null}, {"text": "6wt%", "start": 734, "end": 738, "id": 138, "annotation": "DOPMODQ"}, {"text": "nitrogen", "start": 739, "end": 747, "id": 139, "annotation": "DOPANT"}, {"text": "doping", "start": 748, "end": 754, "id": 140, "annotation": null}, {"text": "and", "start": 755, "end": 758, "id": 141, "annotation": null}, {"text": "shows", "start": 759, "end": 764, "id": 142, "annotation": null}, {"text": "higher", "start": 765, "end": 771, "id": 143, "annotation": null}, {"text": "pore", "start": 772, "end": 776, "id": 144, "annotation": null}, {"text": "volume", "start": 777, "end": 783, "id": 145, "annotation": null}, {"text": "of", "start": 784, "end": 786, "id": 146, "annotation": null}, {"text": "1.1cm3g\u22121", "start": 787, "end": 796, "id": 147, "annotation": null}, {"text": "and", "start": 797, "end": 800, "id": 148, "annotation": null}, {"text": "surface", "start": 801, "end": 808, "id": 149, "annotation": null}, {"text": "area", "start": 809, "end": 813, "id": 150, "annotation": null}, {"text": "736m2g\u22121", "start": 814, "end": 822, "id": 151, "annotation": null}, {"text": ".", "start": 823, "end": 824, "id": 152, "annotation": null}], [{"text": "The", "start": 825, "end": 828, "id": 153, "annotation": null}, {"text": "later", "start": 829, "end": 834, "id": 154, "annotation": null}, {"text": "sample", "start": 835, "end": 841, "id": 155, "annotation": null}, {"text": "exhibits", "start": 842, "end": 850, "id": 156, "annotation": null}, {"text": "highest", "start": 851, "end": 858, "id": 157, "annotation": null}, {"text": "electrochemical", "start": 859, "end": 874, "id": 158, "annotation": null}, {"text": "capacitance", "start": 875, "end": 886, "id": 159, "annotation": null}, {"text": "of", "start": 887, "end": 889, "id": 160, "annotation": null}, {"text": "196Fg\u22121", "start": 890, "end": 897, "id": 161, "annotation": null}, {"text": "at", "start": 898, "end": 900, "id": 162, "annotation": null}, {"text": "0.5Ag\u22121", "start": 901, "end": 908, "id": 163, "annotation": null}, {"text": "while", "start": 909, "end": 914, "id": 164, "annotation": null}, {"text": "the", "start": 915, "end": 918, "id": 165, "annotation": null}, {"text": "former", "start": 919, "end": 925, "id": 166, "annotation": null}, {"text": "shows", "start": 926, "end": 931, "id": 167, "annotation": null}, {"text": "only", "start": 932, "end": 936, "id": 168, "annotation": null}, {"text": "146Fg\u22121", "start": 937, "end": 944, "id": 169, "annotation": null}, {"text": "at", "start": 945, "end": 947, "id": 170, "annotation": null}, {"text": "0.5Ag\u22121", "start": 948, "end": 955, "id": 171, "annotation": null}, {"text": ".", "start": 956, "end": 957, "id": 172, "annotation": null}], [{"text": "However", "start": 958, "end": 965, "id": 173, "annotation": null}, {"text": ",", "start": 966, "end": 967, "id": 174, "annotation": null}, {"text": "both", "start": 968, "end": 972, "id": 175, "annotation": null}, {"text": "the", "start": 973, "end": 976, "id": 176, "annotation": null}, {"text": "NMC", "start": 977, "end": 980, "id": 177, "annotation": null}, {"text": "electrodes", "start": 981, "end": 991, "id": 178, "annotation": null}, {"text": "show", "start": 992, "end": 996, "id": 179, "annotation": null}, {"text": "good", "start": 997, "end": 1001, "id": 180, "annotation": null}, {"text": "cyclic", "start": 1002, "end": 1008, "id": 181, "annotation": null}, {"text": "performance", "start": 1009, "end": 1020, "id": 182, "annotation": null}, {"text": "(", "start": 1021, "end": 1022, "id": 183, "annotation": null}, {"text": "91", "start": 1023, "end": 1025, "id": 184, "annotation": null}, {"text": "%", "start": 1026, "end": 1027, "id": 185, "annotation": null}, {"text": "of", "start": 1028, "end": 1030, "id": 186, "annotation": null}, {"text": "the", "start": 1031, "end": 1034, "id": 187, "annotation": null}, {"text": "initial", "start": 1035, "end": 1042, "id": 188, "annotation": null}, {"text": "capacitance", "start": 1043, "end": 1054, "id": 189, "annotation": null}, {"text": "after", "start": 1055, "end": 1060, "id": 190, "annotation": null}, {"text": "1000", "start": 1061, "end": 1065, "id": 191, "annotation": null}, {"text": "cycles", "start": 1066, "end": 1072, "id": 192, "annotation": null}, {"text": ")", "start": 1073, "end": 1074, "id": 193, "annotation": null}, {"text": "in", "start": 1075, "end": 1077, "id": 194, "annotation": null}, {"text": "an", "start": 1078, "end": 1080, "id": 195, "annotation": null}, {"text": "aqueous", "start": 1081, "end": 1088, "id": 196, "annotation": null}, {"text": "KOH", "start": 1089, "end": 1092, "id": 197, "annotation": null}, {"text": "electrolyte", "start": 1093, "end": 1104, "id": 198, "annotation": null}, {"text": ".", "start": 1105, "end": 1106, "id": 199, "annotation": null}], [{"text": "This", "start": 1107, "end": 1111, "id": 200, "annotation": null}, {"text": "study", "start": 1112, "end": 1117, "id": 201, "annotation": null}, {"text": "demonstrates", "start": 1118, "end": 1130, "id": 202, "annotation": null}, {"text": "that", "start": 1131, "end": 1135, "id": 203, "annotation": null}, {"text": "there", "start": 1136, "end": 1141, "id": 204, "annotation": null}, {"text": "is", "start": 1142, "end": 1144, "id": 205, "annotation": null}, {"text": "an", "start": 1145, "end": 1147, "id": 206, "annotation": null}, {"text": "optimum", "start": 1148, "end": 1155, "id": 207, "annotation": null}, {"text": "level", "start": 1156, "end": 1161, "id": 208, "annotation": null}, {"text": "of", "start": 1162, "end": 1164, "id": 209, "annotation": null}, {"text": "nitrogen", "start": 1165, "end": 1173, "id": 210, "annotation": "DOPANT"}, {"text": "doping", "start": 1174, "end": 1180, "id": 211, "annotation": null}, {"text": "required", "start": 1181, "end": 1189, "id": 212, "annotation": null}, {"text": "to", "start": 1190, "end": 1192, "id": 213, "annotation": null}, {"text": "keep", "start": 1193, "end": 1197, "id": 214, "annotation": null}, {"text": "the", "start": 1198, "end": 1201, "id": 215, "annotation": null}, {"text": "meso", "start": 1202, "end": 1206, "id": 216, "annotation": null}, {"text": "-", "start": 1207, "end": 1208, "id": 217, "annotation": null}, {"text": "structure", "start": 1209, "end": 1218, "id": 218, "annotation": null}, {"text": "of", "start": 1219, "end": 1221, "id": 219, "annotation": null}, {"text": "carbon", "start": 1222, "end": 1228, "id": 220, "annotation": "BASEMAT"}, {"text": "network", "start": 1229, "end": 1236, "id": 221, "annotation": null}, {"text": "intact", "start": 1237, "end": 1243, "id": 222, "annotation": null}, {"text": ",", "start": 1244, "end": 1245, "id": 223, "annotation": null}, {"text": "simultaneously", "start": 1246, "end": 1260, "id": 224, "annotation": null}, {"text": "maintaining", "start": 1261, "end": 1272, "id": 225, "annotation": null}, {"text": "high", "start": 1273, "end": 1277, "id": 226, "annotation": null}, {"text": "surface", "start": 1278, "end": 1285, "id": 227, "annotation": null}, {"text": "area", "start": 1286, "end": 1290, "id": 228, "annotation": null}, {"text": "and", "start": 1291, "end": 1294, "id": 229, "annotation": null}, {"text": "sufficient", "start": 1295, "end": 1305, "id": 230, "annotation": null}, {"text": "electrical", "start": 1306, "end": 1316, "id": 231, "annotation": null}, {"text": "conductivity", "start": 1317, "end": 1329, "id": 232, "annotation": null}, {"text": "for", "start": 1330, "end": 1333, "id": 233, "annotation": null}, {"text": "electrochemical", "start": 1334, "end": 1349, "id": 234, "annotation": null}, {"text": "applications", "start": 1350, "end": 1362, "id": 235, "annotation": null}, {"text": ".", "start": 1363, "end": 1364, "id": 236, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Undoped and aluminium-doped zinc oxide films have been prepared by thermal evaporation of zinc acetate [Zn(CH3COO)2 2H2O] and aluminium chloride [AlCl3] onto a heated glass substrate. The structural and optoelectrical properties of the films have been studied. The effects of heat treatment for the as-deposited films in air and vaccum are investigated. Highly transparent films with conductivity as low as 2\u00d710\u22123\u03a9cm can be produced by controlling the deposition parameters. The electron carrier densities are in the range 0.2\u20137\u00d71019cm\u22123 with mobilities of 22\u201358cm2V\u22121s\u22121.", "meta": {"doi": "10.1016/S0927-0248(99)00076-8"}, "_input_hash": -1960756067, "_task_hash": -507615521, "tokens": [[{"text": "Undoped", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "and", "start": 8, "end": 11, "id": 1, "annotation": null}, {"text": "aluminium", "start": 12, "end": 21, "id": 2, "annotation": "DOPANT"}, {"text": "-", "start": 22, "end": 23, "id": 3, "annotation": null}, {"text": "doped", "start": 24, "end": 29, "id": 4, "annotation": null}, {"text": "zinc", "start": 30, "end": 34, "id": 5, "annotation": "BASEMAT"}, {"text": "oxide", "start": 35, "end": 40, "id": 6, "annotation": "BASEMAT"}, {"text": "films", "start": 41, "end": 46, "id": 7, "annotation": null}, {"text": "have", "start": 47, "end": 51, "id": 8, "annotation": null}, {"text": "been", "start": 52, "end": 56, "id": 9, "annotation": null}, {"text": "prepared", "start": 57, "end": 65, "id": 10, "annotation": null}, {"text": "by", "start": 66, "end": 68, "id": 11, "annotation": null}, {"text": "thermal", "start": 69, "end": 76, "id": 12, "annotation": null}, {"text": "evaporation", "start": 77, "end": 88, "id": 13, "annotation": null}, {"text": "of", "start": 89, "end": 91, "id": 14, "annotation": null}, {"text": "zinc", "start": 92, "end": 96, "id": 15, "annotation": null}, {"text": "acetate", "start": 97, "end": 104, "id": 16, "annotation": null}, {"text": "[", "start": 105, "end": 106, "id": 17, "annotation": null}, {"text": "Zn(CH3COO)2", "start": 107, "end": 118, "id": 18, "annotation": null}, {"text": "2H2O", "start": 119, "end": 123, "id": 19, "annotation": null}, {"text": "]", "start": 124, "end": 125, "id": 20, "annotation": null}, {"text": "and", "start": 126, "end": 129, "id": 21, "annotation": null}, {"text": "aluminium", "start": 130, "end": 139, "id": 22, "annotation": null}, {"text": "chloride", "start": 140, "end": 148, "id": 23, "annotation": null}, {"text": "[", "start": 149, "end": 150, "id": 24, "annotation": null}, {"text": "AlCl3", "start": 151, "end": 156, "id": 25, "annotation": null}, {"text": "]", "start": 157, "end": 158, "id": 26, "annotation": null}, {"text": "onto", "start": 159, "end": 163, "id": 27, "annotation": null}, {"text": "a", "start": 164, "end": 165, "id": 28, "annotation": null}, {"text": "heated", "start": 166, "end": 172, "id": 29, "annotation": null}, {"text": "glass", "start": 173, "end": 178, "id": 30, "annotation": null}, {"text": "substrate", "start": 179, "end": 188, "id": 31, "annotation": null}, {"text": ".", "start": 189, "end": 190, "id": 32, "annotation": null}], [{"text": "The", "start": 191, "end": 194, "id": 33, "annotation": null}, {"text": "structural", "start": 195, "end": 205, "id": 34, "annotation": null}, {"text": "and", "start": 206, "end": 209, "id": 35, "annotation": null}, {"text": "optoelectrical", "start": 210, "end": 224, "id": 36, "annotation": null}, {"text": "properties", "start": 225, "end": 235, "id": 37, "annotation": null}, {"text": "of", "start": 236, "end": 238, "id": 38, "annotation": null}, {"text": "the", "start": 239, "end": 242, "id": 39, "annotation": null}, {"text": "films", "start": 243, "end": 248, "id": 40, "annotation": null}, {"text": "have", "start": 249, "end": 253, "id": 41, "annotation": null}, {"text": "been", "start": 254, "end": 258, "id": 42, "annotation": null}, {"text": "studied", "start": 259, "end": 266, "id": 43, "annotation": null}, {"text": ".", "start": 267, "end": 268, "id": 44, "annotation": null}], [{"text": "The", "start": 269, "end": 272, "id": 45, "annotation": null}, {"text": "effects", "start": 273, "end": 280, "id": 46, "annotation": null}, {"text": "of", "start": 281, "end": 283, "id": 47, "annotation": null}, {"text": "heat", "start": 284, "end": 288, "id": 48, "annotation": null}, {"text": "treatment", "start": 289, "end": 298, "id": 49, "annotation": null}, {"text": "for", "start": 299, "end": 302, "id": 50, "annotation": null}, {"text": "the", "start": 303, "end": 306, "id": 51, "annotation": null}, {"text": "as", "start": 307, "end": 309, "id": 52, "annotation": null}, {"text": "-", "start": 310, "end": 311, "id": 53, "annotation": null}, {"text": "deposited", "start": 312, "end": 321, "id": 54, "annotation": null}, {"text": "films", "start": 322, "end": 327, "id": 55, "annotation": null}, {"text": "in", "start": 328, "end": 330, "id": 56, "annotation": null}, {"text": "air", "start": 331, "end": 334, "id": 57, "annotation": null}, {"text": "and", "start": 335, "end": 338, "id": 58, "annotation": null}, {"text": "vaccum", "start": 339, "end": 345, "id": 59, "annotation": null}, {"text": "are", "start": 346, "end": 349, "id": 60, "annotation": null}, {"text": "investigated", "start": 350, "end": 362, "id": 61, "annotation": null}, {"text": ".", "start": 363, "end": 364, "id": 62, "annotation": null}], [{"text": "Highly", "start": 365, "end": 371, "id": 63, "annotation": null}, {"text": "transparent", "start": 372, "end": 383, "id": 64, "annotation": null}, {"text": "films", "start": 384, "end": 389, "id": 65, "annotation": null}, {"text": "with", "start": 390, "end": 394, "id": 66, "annotation": null}, {"text": "conductivity", "start": 395, "end": 407, "id": 67, "annotation": null}, {"text": "as", "start": 408, "end": 410, "id": 68, "annotation": null}, {"text": "low", "start": 411, "end": 414, "id": 69, "annotation": null}, {"text": "as", "start": 415, "end": 417, "id": 70, "annotation": null}, {"text": "2\u00d710\u22123\u03a9cm", "start": 418, "end": 427, "id": 71, "annotation": null}, {"text": "can", "start": 428, "end": 431, "id": 72, "annotation": null}, {"text": "be", "start": 432, "end": 434, "id": 73, "annotation": null}, {"text": "produced", "start": 435, "end": 443, "id": 74, "annotation": null}, {"text": "by", "start": 444, "end": 446, "id": 75, "annotation": null}, {"text": "controlling", "start": 447, "end": 458, "id": 76, "annotation": null}, {"text": "the", "start": 459, "end": 462, "id": 77, "annotation": null}, {"text": "deposition", "start": 463, "end": 473, "id": 78, "annotation": null}, {"text": "parameters", "start": 474, "end": 484, "id": 79, "annotation": null}, {"text": ".", "start": 485, "end": 486, "id": 80, "annotation": null}], [{"text": "The", "start": 487, "end": 490, "id": 81, "annotation": null}, {"text": "electron", "start": 491, "end": 499, "id": 82, "annotation": null}, {"text": "carrier", "start": 500, "end": 507, "id": 83, "annotation": null}, {"text": "densities", "start": 508, "end": 517, "id": 84, "annotation": null}, {"text": "are", "start": 518, "end": 521, "id": 85, "annotation": null}, {"text": "in", "start": 522, "end": 524, "id": 86, "annotation": "DOPMODQ"}, {"text": "the", "start": 525, "end": 528, "id": 87, "annotation": null}, {"text": "range", "start": 529, "end": 534, "id": 88, "annotation": null}, {"text": "0.2\u20137\u00d71019cm\u22123", "start": 535, "end": 549, "id": 89, "annotation": "DOPMODQ"}, {"text": "with", "start": 550, "end": 554, "id": 90, "annotation": null}, {"text": "mobilities", "start": 555, "end": 565, "id": 91, "annotation": null}, {"text": "of", "start": 566, "end": 568, "id": 92, "annotation": null}, {"text": "22\u201358cm2V\u22121s\u22121", "start": 569, "end": 583, "id": 93, "annotation": null}, {"text": ".", "start": 584, "end": 585, "id": 94, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Undoped and aluminium-doped zinc oxide films have been prepared by thermal evaporation of zinc acetate [Zn(CH3COO)2 2H2O] and aluminium chloride [AlCl3] onto a heated glass substrate. The structural and optoelectrical properties of the films have been studied. The effects of heat treatment for the as-deposited films in air and vaccum are investigated. Highly transparent films with conductivity as low as 2\u00d710\u22123\u03a9cm can be produced by controlling the deposition parameters. The electron carrier densities are in the range 0.2\u20137\u00d71019cm\u22123 with mobilities of 22\u201358cm2V\u22121s\u22121.", "meta": {"doi": "10.1016/S0927-0248(99)00076-8"}, "_input_hash": -1960756067, "_task_hash": -507615521, "tokens": [[{"text": "Undoped", "start": 0, "end": 7, "id": 0, "annotation": null}, {"text": "and", "start": 8, "end": 11, "id": 1, "annotation": null}, {"text": "aluminium", "start": 12, "end": 21, "id": 2, "annotation": "DOPANT"}, {"text": "-", "start": 22, "end": 23, "id": 3, "annotation": null}, {"text": "doped", "start": 24, "end": 29, "id": 4, "annotation": null}, {"text": "zinc", "start": 30, "end": 34, "id": 5, "annotation": "BASEMAT"}, {"text": "oxide", "start": 35, "end": 40, "id": 6, "annotation": "BASEMAT"}, {"text": "films", "start": 41, "end": 46, "id": 7, "annotation": null}, {"text": "have", "start": 47, "end": 51, "id": 8, "annotation": null}, {"text": "been", "start": 52, "end": 56, "id": 9, "annotation": null}, {"text": "prepared", "start": 57, "end": 65, "id": 10, "annotation": null}, {"text": "by", "start": 66, "end": 68, "id": 11, "annotation": null}, {"text": "thermal", "start": 69, "end": 76, "id": 12, "annotation": null}, {"text": "evaporation", "start": 77, "end": 88, "id": 13, "annotation": null}, {"text": "of", "start": 89, "end": 91, "id": 14, "annotation": null}, {"text": "zinc", "start": 92, "end": 96, "id": 15, "annotation": null}, {"text": "acetate", "start": 97, "end": 104, "id": 16, "annotation": null}, {"text": "[", "start": 105, "end": 106, "id": 17, "annotation": null}, {"text": "Zn(CH3COO)2", "start": 107, "end": 118, "id": 18, "annotation": null}, {"text": "2H2O", "start": 119, "end": 123, "id": 19, "annotation": null}, {"text": "]", "start": 124, "end": 125, "id": 20, "annotation": null}, {"text": "and", "start": 126, "end": 129, "id": 21, "annotation": null}, {"text": "aluminium", "start": 130, "end": 139, "id": 22, "annotation": null}, {"text": "chloride", "start": 140, "end": 148, "id": 23, "annotation": null}, {"text": "[", "start": 149, "end": 150, "id": 24, "annotation": null}, {"text": "AlCl3", "start": 151, "end": 156, "id": 25, "annotation": null}, {"text": "]", "start": 157, "end": 158, "id": 26, "annotation": null}, {"text": "onto", "start": 159, "end": 163, "id": 27, "annotation": null}, {"text": "a", "start": 164, "end": 165, "id": 28, "annotation": null}, {"text": "heated", "start": 166, "end": 172, "id": 29, "annotation": null}, {"text": "glass", "start": 173, "end": 178, "id": 30, "annotation": null}, {"text": "substrate", "start": 179, "end": 188, "id": 31, "annotation": null}, {"text": ".", "start": 189, "end": 190, "id": 32, "annotation": null}], [{"text": "The", "start": 191, "end": 194, "id": 33, "annotation": null}, {"text": "structural", "start": 195, "end": 205, "id": 34, "annotation": null}, {"text": "and", "start": 206, "end": 209, "id": 35, "annotation": null}, {"text": "optoelectrical", "start": 210, "end": 224, "id": 36, "annotation": null}, {"text": "properties", "start": 225, "end": 235, "id": 37, "annotation": null}, {"text": "of", "start": 236, "end": 238, "id": 38, "annotation": null}, {"text": "the", "start": 239, "end": 242, "id": 39, "annotation": null}, {"text": "films", "start": 243, "end": 248, "id": 40, "annotation": null}, {"text": "have", "start": 249, "end": 253, "id": 41, "annotation": null}, {"text": "been", "start": 254, "end": 258, "id": 42, "annotation": null}, {"text": "studied", "start": 259, "end": 266, "id": 43, "annotation": null}, {"text": ".", "start": 267, "end": 268, "id": 44, "annotation": null}], [{"text": "The", "start": 269, "end": 272, "id": 45, "annotation": null}, {"text": "effects", "start": 273, "end": 280, "id": 46, "annotation": null}, {"text": "of", "start": 281, "end": 283, "id": 47, "annotation": null}, {"text": "heat", "start": 284, "end": 288, "id": 48, "annotation": null}, {"text": "treatment", "start": 289, "end": 298, "id": 49, "annotation": null}, {"text": "for", "start": 299, "end": 302, "id": 50, "annotation": null}, {"text": "the", "start": 303, "end": 306, "id": 51, "annotation": null}, {"text": "as", "start": 307, "end": 309, "id": 52, "annotation": null}, {"text": "-", "start": 310, "end": 311, "id": 53, "annotation": null}, {"text": "deposited", "start": 312, "end": 321, "id": 54, "annotation": null}, {"text": "films", "start": 322, "end": 327, "id": 55, "annotation": null}, {"text": "in", "start": 328, "end": 330, "id": 56, "annotation": null}, {"text": "air", "start": 331, "end": 334, "id": 57, "annotation": null}, {"text": "and", "start": 335, "end": 338, "id": 58, "annotation": null}, {"text": "vaccum", "start": 339, "end": 345, "id": 59, "annotation": null}, {"text": "are", "start": 346, "end": 349, "id": 60, "annotation": null}, {"text": "investigated", "start": 350, "end": 362, "id": 61, "annotation": null}, {"text": ".", "start": 363, "end": 364, "id": 62, "annotation": null}], [{"text": "Highly", "start": 365, "end": 371, "id": 63, "annotation": null}, {"text": "transparent", "start": 372, "end": 383, "id": 64, "annotation": null}, {"text": "films", "start": 384, "end": 389, "id": 65, "annotation": null}, {"text": "with", "start": 390, "end": 394, "id": 66, "annotation": null}, {"text": "conductivity", "start": 395, "end": 407, "id": 67, "annotation": null}, {"text": "as", "start": 408, "end": 410, "id": 68, "annotation": null}, {"text": "low", "start": 411, "end": 414, "id": 69, "annotation": null}, {"text": "as", "start": 415, "end": 417, "id": 70, "annotation": null}, {"text": "2\u00d710\u22123\u03a9cm", "start": 418, "end": 427, "id": 71, "annotation": null}, {"text": "can", "start": 428, "end": 431, "id": 72, "annotation": null}, {"text": "be", "start": 432, "end": 434, "id": 73, "annotation": null}, {"text": "produced", "start": 435, "end": 443, "id": 74, "annotation": null}, {"text": "by", "start": 444, "end": 446, "id": 75, "annotation": null}, {"text": "controlling", "start": 447, "end": 458, "id": 76, "annotation": null}, {"text": "the", "start": 459, "end": 462, "id": 77, "annotation": null}, {"text": "deposition", "start": 463, "end": 473, "id": 78, "annotation": null}, {"text": "parameters", "start": 474, "end": 484, "id": 79, "annotation": null}, {"text": ".", "start": 485, "end": 486, "id": 80, "annotation": null}], [{"text": "The", "start": 487, "end": 490, "id": 81, "annotation": null}, {"text": "electron", "start": 491, "end": 499, "id": 82, "annotation": null}, {"text": "carrier", "start": 500, "end": 507, "id": 83, "annotation": null}, {"text": "densities", "start": 508, "end": 517, "id": 84, "annotation": null}, {"text": "are", "start": 518, "end": 521, "id": 85, "annotation": null}, {"text": "in", "start": 522, "end": 524, "id": 86, "annotation": null}, {"text": "the", "start": 525, "end": 528, "id": 87, "annotation": null}, {"text": "range", "start": 529, "end": 534, "id": 88, "annotation": null}, {"text": "0.2\u20137\u00d71019cm\u22123", "start": 535, "end": 549, "id": 89, "annotation": "DOPMODQ"}, {"text": "with", "start": 550, "end": 554, "id": 90, "annotation": null}, {"text": "mobilities", "start": 555, "end": 565, "id": 91, "annotation": null}, {"text": "of", "start": 566, "end": 568, "id": 92, "annotation": null}, {"text": "22\u201358cm2V\u22121s\u22121", "start": 569, "end": 583, "id": 93, "annotation": null}, {"text": ".", "start": 584, "end": 585, "id": 94, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "To improve thermoelectric properties, we attempt to dope Ti into SiC-based composite by transient plastic phase process (TPPP) method. The final result is composed of the functional phase SiC and the reinforcement phases TiC(\u03c7) and TiSi2. The process of doping is the diffusion of Ti in TiC(\u03c7) solid-solution into SiC grain at high temperature. When the initial SiC is \u03b1-type of 5 \u03bcm size, the Seebeck coefficient S is less than 10 \u03bcV/K at room temperature. SEM photograph shows the reason being that doping is very weak. We change the initial SiC to the \u03b2-type of 90 nm size to aid doping. It is observed that S can be significantly improved to 46.3 \u03bcV/K at room temperature. When the temperature rises, the improvement is even greater. Measurements of the lattice parameter of \u03b2-SiC show that the parameter parallel to the Si-C layer is almost unchanged and the parameter perpendicular to the Si-C layer increases by about 0.48%, which demonstrated that Ti has been successfully doped into the SiC grain and exists as interstitial impurities.", "meta": {"doi": "10.1016/S0217-9849(00)00019-7"}, "_input_hash": 728810207, "_task_hash": -1015183230, "tokens": [[{"text": "To", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "improve", "start": 3, "end": 10, "id": 1, "annotation": null}, {"text": "thermoelectric", "start": 11, "end": 25, "id": 2, "annotation": null}, {"text": "properties", "start": 26, "end": 36, "id": 3, "annotation": null}, {"text": ",", "start": 37, "end": 38, "id": 4, "annotation": null}, {"text": "we", "start": 39, "end": 41, "id": 5, "annotation": null}, {"text": "attempt", "start": 42, "end": 49, "id": 6, "annotation": null}, {"text": "to", "start": 50, "end": 52, "id": 7, "annotation": null}, {"text": "dope", "start": 53, "end": 57, "id": 8, "annotation": null}, {"text": "Ti", "start": 58, "end": 60, "id": 9, "annotation": "DOPANT"}, {"text": "into", "start": 61, "end": 65, "id": 10, "annotation": null}, {"text": "SiC", "start": 66, "end": 69, "id": 11, "annotation": "BASEMAT"}, {"text": "-", "start": 70, "end": 71, "id": 12, "annotation": null}, {"text": "based", "start": 72, "end": 77, "id": 13, "annotation": null}, {"text": "composite", "start": 78, "end": 87, "id": 14, "annotation": null}, {"text": "by", "start": 88, "end": 90, "id": 15, "annotation": null}, {"text": "transient", "start": 91, "end": 100, "id": 16, "annotation": null}, {"text": "plastic", "start": 101, "end": 108, "id": 17, "annotation": null}, {"text": "phase", "start": 109, "end": 114, "id": 18, "annotation": null}, {"text": "process", "start": 115, "end": 122, "id": 19, "annotation": null}, {"text": "(", "start": 123, "end": 124, "id": 20, "annotation": null}, {"text": "TPPP", "start": 125, "end": 129, "id": 21, "annotation": null}, {"text": ")", "start": 130, "end": 131, "id": 22, "annotation": null}, {"text": "method", "start": 132, "end": 138, "id": 23, "annotation": null}, {"text": ".", "start": 139, "end": 140, "id": 24, "annotation": null}], [{"text": "The", "start": 141, "end": 144, "id": 25, "annotation": null}, {"text": "final", "start": 145, "end": 150, "id": 26, "annotation": null}, {"text": "result", "start": 151, "end": 157, "id": 27, "annotation": null}, {"text": "is", "start": 158, "end": 160, "id": 28, "annotation": null}, {"text": "composed", "start": 161, "end": 169, "id": 29, "annotation": null}, {"text": "of", "start": 170, "end": 172, "id": 30, "annotation": null}, {"text": "the", "start": 173, "end": 176, "id": 31, "annotation": null}, {"text": "functional", "start": 177, "end": 187, "id": 32, "annotation": null}, {"text": "phase", "start": 188, "end": 193, "id": 33, "annotation": null}, {"text": "SiC", "start": 194, "end": 197, "id": 34, "annotation": null}, {"text": "and", "start": 198, "end": 201, "id": 35, "annotation": null}, {"text": "the", "start": 202, "end": 205, "id": 36, "annotation": null}, {"text": "reinforcement", "start": 206, "end": 219, "id": 37, "annotation": null}, {"text": "phases", "start": 220, "end": 226, "id": 38, "annotation": null}, {"text": "TiC(\u03c7", "start": 227, "end": 232, "id": 39, "annotation": null}, {"text": ")", "start": 233, "end": 234, "id": 40, "annotation": null}, {"text": "and", "start": 235, "end": 238, "id": 41, "annotation": null}, {"text": "TiSi2", "start": 239, "end": 244, "id": 42, "annotation": null}, {"text": ".", "start": 245, "end": 246, "id": 43, "annotation": null}], [{"text": "The", "start": 247, "end": 250, "id": 44, "annotation": null}, {"text": "process", "start": 251, "end": 258, "id": 45, "annotation": null}, {"text": "of", "start": 259, "end": 261, "id": 46, "annotation": null}, {"text": "doping", "start": 262, "end": 268, "id": 47, "annotation": null}, {"text": "is", "start": 269, "end": 271, "id": 48, "annotation": null}, {"text": "the", "start": 272, "end": 275, "id": 49, "annotation": null}, {"text": "diffusion", "start": 276, "end": 285, "id": 50, "annotation": null}, {"text": "of", "start": 286, "end": 288, "id": 51, "annotation": null}, {"text": "Ti", "start": 289, "end": 291, "id": 52, "annotation": null}, {"text": "in", "start": 292, "end": 294, "id": 53, "annotation": null}, {"text": "TiC(\u03c7", "start": 295, "end": 300, "id": 54, "annotation": null}, {"text": ")", "start": 301, "end": 302, "id": 55, "annotation": null}, {"text": "solid", "start": 303, "end": 308, "id": 56, "annotation": null}, {"text": "-", "start": 309, "end": 310, "id": 57, "annotation": null}, {"text": "solution", "start": 311, "end": 319, "id": 58, "annotation": null}, {"text": "into", "start": 320, "end": 324, "id": 59, "annotation": null}, {"text": "SiC", "start": 325, "end": 328, "id": 60, "annotation": null}, {"text": "grain", "start": 329, "end": 334, "id": 61, "annotation": null}, {"text": "at", "start": 335, "end": 337, "id": 62, "annotation": null}, {"text": "high", "start": 338, "end": 342, "id": 63, "annotation": null}, {"text": "temperature", "start": 343, "end": 354, "id": 64, "annotation": null}, {"text": ".", "start": 355, "end": 356, "id": 65, "annotation": null}], [{"text": "When", "start": 357, "end": 361, "id": 66, "annotation": null}, {"text": "the", "start": 362, "end": 365, "id": 67, "annotation": null}, {"text": "initial", "start": 366, "end": 373, "id": 68, "annotation": null}, {"text": "SiC", "start": 374, "end": 377, "id": 69, "annotation": null}, {"text": "is", "start": 378, "end": 380, "id": 70, "annotation": null}, {"text": "\u03b1", "start": 381, "end": 382, "id": 71, "annotation": null}, {"text": "-", "start": 383, "end": 384, "id": 72, "annotation": null}, {"text": "type", "start": 385, "end": 389, "id": 73, "annotation": null}, {"text": "of", "start": 390, "end": 392, "id": 74, "annotation": null}, {"text": "5", "start": 393, "end": 394, "id": 75, "annotation": null}, {"text": "\u03bcm", "start": 395, "end": 397, "id": 76, "annotation": null}, {"text": "size", "start": 398, "end": 402, "id": 77, "annotation": null}, {"text": ",", "start": 403, "end": 404, "id": 78, "annotation": null}, {"text": "the", "start": 405, "end": 408, "id": 79, "annotation": null}, {"text": "Seebeck", "start": 409, "end": 416, "id": 80, "annotation": null}, {"text": "coefficient", "start": 417, "end": 428, "id": 81, "annotation": null}, {"text": "S", "start": 429, "end": 430, "id": 82, "annotation": null}, {"text": "is", "start": 431, "end": 433, "id": 83, "annotation": null}, {"text": "less", "start": 434, "end": 438, "id": 84, "annotation": null}, {"text": "than", "start": 439, "end": 443, "id": 85, "annotation": null}, {"text": "10", "start": 444, "end": 446, "id": 86, "annotation": null}, {"text": "\u03bcV", "start": 447, "end": 449, "id": 87, "annotation": null}, {"text": "/", "start": 450, "end": 451, "id": 88, "annotation": null}, {"text": "K", "start": 452, "end": 453, "id": 89, "annotation": null}, {"text": "at", "start": 454, "end": 456, "id": 90, "annotation": null}, {"text": "room", "start": 457, "end": 461, "id": 91, "annotation": null}, {"text": "temperature", "start": 462, "end": 473, "id": 92, "annotation": null}, {"text": ".", "start": 474, "end": 475, "id": 93, "annotation": null}], [{"text": "SEM", "start": 476, "end": 479, "id": 94, "annotation": null}, {"text": "photograph", "start": 480, "end": 490, "id": 95, "annotation": null}, {"text": "shows", "start": 491, "end": 496, "id": 96, "annotation": null}, {"text": "the", "start": 497, "end": 500, "id": 97, "annotation": null}, {"text": "reason", "start": 501, "end": 507, "id": 98, "annotation": null}, {"text": "being", "start": 508, "end": 513, "id": 99, "annotation": null}, {"text": "that", "start": 514, "end": 518, "id": 100, "annotation": null}, {"text": "doping", "start": 519, "end": 525, "id": 101, "annotation": null}, {"text": "is", "start": 526, "end": 528, "id": 102, "annotation": null}, {"text": "very", "start": 529, "end": 533, "id": 103, "annotation": null}, {"text": "weak", "start": 534, "end": 538, "id": 104, "annotation": null}, {"text": ".", "start": 539, "end": 540, "id": 105, "annotation": null}], [{"text": "We", "start": 541, "end": 543, "id": 106, "annotation": null}, {"text": "change", "start": 544, "end": 550, "id": 107, "annotation": null}, {"text": "the", "start": 551, "end": 554, "id": 108, "annotation": null}, {"text": "initial", "start": 555, "end": 562, "id": 109, "annotation": null}, {"text": "SiC", "start": 563, "end": 566, "id": 110, "annotation": null}, {"text": "to", "start": 567, "end": 569, "id": 111, "annotation": null}, {"text": "the", "start": 570, "end": 573, "id": 112, "annotation": null}, {"text": "\u03b2", "start": 574, "end": 575, "id": 113, "annotation": null}, {"text": "-", "start": 576, "end": 577, "id": 114, "annotation": null}, {"text": "type", "start": 578, "end": 582, "id": 115, "annotation": null}, {"text": "of", "start": 583, "end": 585, "id": 116, "annotation": null}, {"text": "90", "start": 586, "end": 588, "id": 117, "annotation": null}, {"text": "nm", "start": 589, "end": 591, "id": 118, "annotation": null}, {"text": "size", "start": 592, "end": 596, "id": 119, "annotation": null}, {"text": "to", "start": 597, "end": 599, "id": 120, "annotation": null}, {"text": "aid", "start": 600, "end": 603, "id": 121, "annotation": null}, {"text": "doping", "start": 604, "end": 610, "id": 122, "annotation": null}, {"text": ".", "start": 611, "end": 612, "id": 123, "annotation": null}], [{"text": "It", "start": 613, "end": 615, "id": 124, "annotation": null}, {"text": "is", "start": 616, "end": 618, "id": 125, "annotation": null}, {"text": "observed", "start": 619, "end": 627, "id": 126, "annotation": null}, {"text": "that", "start": 628, "end": 632, "id": 127, "annotation": null}, {"text": "S", "start": 633, "end": 634, "id": 128, "annotation": null}, {"text": "can", "start": 635, "end": 638, "id": 129, "annotation": null}, {"text": "be", "start": 639, "end": 641, "id": 130, "annotation": null}, {"text": "significantly", "start": 642, "end": 655, "id": 131, "annotation": null}, {"text": "improved", "start": 656, "end": 664, "id": 132, "annotation": null}, {"text": "to", "start": 665, "end": 667, "id": 133, "annotation": null}, {"text": "46.3", "start": 668, "end": 672, "id": 134, "annotation": null}, {"text": "\u03bcV", "start": 673, "end": 675, "id": 135, "annotation": null}, {"text": "/", "start": 676, "end": 677, "id": 136, "annotation": null}, {"text": "K", "start": 678, "end": 679, "id": 137, "annotation": null}, {"text": "at", "start": 680, "end": 682, "id": 138, "annotation": null}, {"text": "room", "start": 683, "end": 687, "id": 139, "annotation": null}, {"text": "temperature", "start": 688, "end": 699, "id": 140, "annotation": null}, {"text": ".", "start": 700, "end": 701, "id": 141, "annotation": null}], [{"text": "When", "start": 702, "end": 706, "id": 142, "annotation": null}, {"text": "the", "start": 707, "end": 710, "id": 143, "annotation": null}, {"text": "temperature", "start": 711, "end": 722, "id": 144, "annotation": null}, {"text": "rises", "start": 723, "end": 728, "id": 145, "annotation": null}, {"text": ",", "start": 729, "end": 730, "id": 146, "annotation": null}, {"text": "the", "start": 731, "end": 734, "id": 147, "annotation": null}, {"text": "improvement", "start": 735, "end": 746, "id": 148, "annotation": null}, {"text": "is", "start": 747, "end": 749, "id": 149, "annotation": null}, {"text": "even", "start": 750, "end": 754, "id": 150, "annotation": null}, {"text": "greater", "start": 755, "end": 762, "id": 151, "annotation": null}, {"text": ".", "start": 763, "end": 764, "id": 152, "annotation": null}], [{"text": "Measurements", "start": 765, "end": 777, "id": 153, "annotation": null}, {"text": "of", "start": 778, "end": 780, "id": 154, "annotation": null}, {"text": "the", "start": 781, "end": 784, "id": 155, "annotation": null}, {"text": "lattice", "start": 785, "end": 792, "id": 156, "annotation": null}, {"text": "parameter", "start": 793, "end": 802, "id": 157, "annotation": null}, {"text": "of", "start": 803, "end": 805, "id": 158, "annotation": null}, {"text": "\u03b2", "start": 806, "end": 807, "id": 159, "annotation": null}, {"text": "-", "start": 808, "end": 809, "id": 160, "annotation": null}, {"text": "SiC", "start": 810, "end": 813, "id": 161, "annotation": null}, {"text": "show", "start": 814, "end": 818, "id": 162, "annotation": null}, {"text": "that", "start": 819, "end": 823, "id": 163, "annotation": null}, {"text": "the", "start": 824, "end": 827, "id": 164, "annotation": null}, {"text": "parameter", "start": 828, "end": 837, "id": 165, "annotation": null}, {"text": "parallel", "start": 838, "end": 846, "id": 166, "annotation": null}, {"text": "to", "start": 847, "end": 849, "id": 167, "annotation": null}, {"text": "the", "start": 850, "end": 853, "id": 168, "annotation": null}, {"text": "Si", "start": 854, "end": 856, "id": 169, "annotation": null}, {"text": "-", "start": 857, "end": 858, "id": 170, "annotation": null}, {"text": "C", "start": 859, "end": 860, "id": 171, "annotation": null}, {"text": "layer", "start": 861, "end": 866, "id": 172, "annotation": null}, {"text": "is", "start": 867, "end": 869, "id": 173, "annotation": null}, {"text": "almost", "start": 870, "end": 876, "id": 174, "annotation": null}, {"text": "unchanged", "start": 877, "end": 886, "id": 175, "annotation": null}, {"text": "and", "start": 887, "end": 890, "id": 176, "annotation": null}, {"text": "the", "start": 891, "end": 894, "id": 177, "annotation": null}, {"text": "parameter", "start": 895, "end": 904, "id": 178, "annotation": null}, {"text": "perpendicular", "start": 905, "end": 918, "id": 179, "annotation": null}, {"text": "to", "start": 919, "end": 921, "id": 180, "annotation": null}, {"text": "the", "start": 922, "end": 925, "id": 181, "annotation": null}, {"text": "Si", "start": 926, "end": 928, "id": 182, "annotation": null}, {"text": "-", "start": 929, "end": 930, "id": 183, "annotation": null}, {"text": "C", "start": 931, "end": 932, "id": 184, "annotation": null}, {"text": "layer", "start": 933, "end": 938, "id": 185, "annotation": null}, {"text": "increases", "start": 939, "end": 948, "id": 186, "annotation": null}, {"text": "by", "start": 949, "end": 951, "id": 187, "annotation": null}, {"text": "about", "start": 952, "end": 957, "id": 188, "annotation": null}, {"text": "0.48", "start": 958, "end": 962, "id": 189, "annotation": null}, {"text": "%", "start": 963, "end": 964, "id": 190, "annotation": null}, {"text": ",", "start": 965, "end": 966, "id": 191, "annotation": null}, {"text": "which", "start": 967, "end": 972, "id": 192, "annotation": null}, {"text": "demonstrated", "start": 973, "end": 985, "id": 193, "annotation": null}, {"text": "that", "start": 986, "end": 990, "id": 194, "annotation": null}, {"text": "Ti", "start": 991, "end": 993, "id": 195, "annotation": "DOPANT"}, {"text": "has", "start": 994, "end": 997, "id": 196, "annotation": null}, {"text": "been", "start": 998, "end": 1002, "id": 197, "annotation": null}, {"text": "successfully", "start": 1003, "end": 1015, "id": 198, "annotation": null}, {"text": "doped", "start": 1016, "end": 1021, "id": 199, "annotation": null}, {"text": "into", "start": 1022, "end": 1026, "id": 200, "annotation": null}, {"text": "the", "start": 1027, "end": 1030, "id": 201, "annotation": null}, {"text": "SiC", "start": 1031, "end": 1034, "id": 202, "annotation": "BASEMAT"}, {"text": "grain", "start": 1035, "end": 1040, "id": 203, "annotation": null}, {"text": "and", "start": 1041, "end": 1044, "id": 204, "annotation": null}, {"text": "exists", "start": 1045, "end": 1051, "id": 205, "annotation": null}, {"text": "as", "start": 1052, "end": 1054, "id": 206, "annotation": null}, {"text": "interstitial", "start": 1055, "end": 1067, "id": 207, "annotation": null}, {"text": "impurities", "start": 1068, "end": 1078, "id": 208, "annotation": null}, {"text": ".", "start": 1079, "end": 1080, "id": 209, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "An original selective and quantitative detection method for direct access to reactive oxygen species (ROS) generated in near-neutral aqueous solutions during transient electrochemical experiments is described herein. Several chemiluminescent probes, which were selected for their high selectivity toward ROS were used and the selective electrogenerated chemiluminescence (SECL) method was validated on several electrocatalytic materials known to exhibit different behaviors toward the oxygen reduction reaction (ORR); the examined electrodes consisted of platinum, Au(111), glassy carbon and boron-doped diamond (BDD). We first selected appropriate molecular probes that are suitable for use under electrochemical polarization conditions and that are chemiluminescent in the chosen aqueous solutions. The roles of the concentration, solubility and possible activation of the molecular probes were identified. Then, the information obtained by the simultaneous recording of the amperometric signal was correlated with the chemiluminescence intensity, which was measured with a highly sensitive photomultiplier tube (PMT). The experimental results were interpreted by constructing a potential vs. pH diagram for the oxygenated species. The complementary nature of the information about the mechanistic path of the ongoing mechanism of ORR on the different electrode materials allowed us to propose a unified scheme. A coupled proton electron transfer (CPET) mechanism can be invoked to explain the major differences observed from the identified reactive intermediates in relation to the electrocatalytic activity of the electrode materials.", "meta": {"doi": "10.1016/j.electacta.2013.03.190"}, "_input_hash": -501704022, "_task_hash": -1969573332, "tokens": [[{"text": "An", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "original", "start": 3, "end": 11, "id": 1, "annotation": null}, {"text": "selective", "start": 12, "end": 21, "id": 2, "annotation": null}, {"text": "and", "start": 22, "end": 25, "id": 3, "annotation": null}, {"text": "quantitative", "start": 26, "end": 38, "id": 4, "annotation": null}, {"text": "detection", "start": 39, "end": 48, "id": 5, "annotation": null}, {"text": "method", "start": 49, "end": 55, "id": 6, "annotation": null}, {"text": "for", "start": 56, "end": 59, "id": 7, "annotation": null}, {"text": "direct", "start": 60, "end": 66, "id": 8, "annotation": null}, {"text": "access", "start": 67, "end": 73, "id": 9, "annotation": null}, {"text": "to", "start": 74, "end": 76, "id": 10, "annotation": null}, {"text": "reactive", "start": 77, "end": 85, "id": 11, "annotation": null}, {"text": "oxygen", "start": 86, "end": 92, "id": 12, "annotation": null}, {"text": "species", "start": 93, "end": 100, "id": 13, "annotation": null}, {"text": "(", "start": 101, "end": 102, "id": 14, "annotation": null}, {"text": "ROS", "start": 103, "end": 106, "id": 15, "annotation": null}, {"text": ")", "start": 107, "end": 108, "id": 16, "annotation": null}, {"text": "generated", "start": 109, "end": 118, "id": 17, "annotation": null}, {"text": "in", "start": 119, "end": 121, "id": 18, "annotation": null}, {"text": "near", "start": 122, "end": 126, "id": 19, "annotation": null}, {"text": "-", "start": 127, "end": 128, "id": 20, "annotation": null}, {"text": "neutral", "start": 129, "end": 136, "id": 21, "annotation": null}, {"text": "aqueous", "start": 137, "end": 144, "id": 22, "annotation": null}, {"text": "solutions", "start": 145, "end": 154, "id": 23, "annotation": null}, {"text": "during", "start": 155, "end": 161, "id": 24, "annotation": null}, {"text": "transient", "start": 162, "end": 171, "id": 25, "annotation": null}, {"text": "electrochemical", "start": 172, "end": 187, "id": 26, "annotation": null}, {"text": "experiments", "start": 188, "end": 199, "id": 27, "annotation": null}, {"text": "is", "start": 200, "end": 202, "id": 28, "annotation": null}, {"text": "described", "start": 203, "end": 212, "id": 29, "annotation": null}, {"text": "herein", "start": 213, "end": 219, "id": 30, "annotation": null}, {"text": ".", "start": 220, "end": 221, "id": 31, "annotation": null}], [{"text": "Several", "start": 222, "end": 229, "id": 32, "annotation": null}, {"text": "chemiluminescent", "start": 230, "end": 246, "id": 33, "annotation": null}, {"text": "probes", "start": 247, "end": 253, "id": 34, "annotation": null}, {"text": ",", "start": 254, "end": 255, "id": 35, "annotation": null}, {"text": "which", "start": 256, "end": 261, "id": 36, "annotation": null}, {"text": "were", "start": 262, "end": 266, "id": 37, "annotation": null}, {"text": "selected", "start": 267, "end": 275, "id": 38, "annotation": null}, {"text": "for", "start": 276, "end": 279, "id": 39, "annotation": null}, {"text": "their", "start": 280, "end": 285, "id": 40, "annotation": null}, {"text": "high", "start": 286, "end": 290, "id": 41, "annotation": null}, {"text": "selectivity", "start": 291, "end": 302, "id": 42, "annotation": null}, {"text": "toward", "start": 303, "end": 309, "id": 43, "annotation": null}, {"text": "ROS", "start": 310, "end": 313, "id": 44, "annotation": null}, {"text": "were", "start": 314, "end": 318, "id": 45, "annotation": null}, {"text": "used", "start": 319, "end": 323, "id": 46, "annotation": null}, {"text": "and", "start": 324, "end": 327, "id": 47, "annotation": null}, {"text": "the", "start": 328, "end": 331, "id": 48, "annotation": null}, {"text": "selective", "start": 332, "end": 341, "id": 49, "annotation": null}, {"text": "electrogenerated", "start": 342, "end": 358, "id": 50, "annotation": null}, {"text": "chemiluminescence", "start": 359, "end": 376, "id": 51, "annotation": null}, {"text": "(", "start": 377, "end": 378, "id": 52, "annotation": null}, {"text": "SECL", "start": 379, "end": 383, "id": 53, "annotation": null}, {"text": ")", "start": 384, "end": 385, "id": 54, "annotation": null}, {"text": "method", "start": 386, "end": 392, "id": 55, "annotation": null}, {"text": "was", "start": 393, "end": 396, "id": 56, "annotation": null}, {"text": "validated", "start": 397, "end": 406, "id": 57, "annotation": null}, {"text": "on", "start": 407, "end": 409, "id": 58, "annotation": null}, {"text": "several", "start": 410, "end": 417, "id": 59, "annotation": null}, {"text": "electrocatalytic", "start": 418, "end": 434, "id": 60, "annotation": null}, {"text": "materials", "start": 435, "end": 444, "id": 61, "annotation": null}, {"text": "known", "start": 445, "end": 450, "id": 62, "annotation": null}, {"text": "to", "start": 451, "end": 453, "id": 63, "annotation": null}, {"text": "exhibit", "start": 454, "end": 461, "id": 64, "annotation": null}, {"text": "different", "start": 462, "end": 471, "id": 65, "annotation": null}, {"text": "behaviors", "start": 472, "end": 481, "id": 66, "annotation": null}, {"text": "toward", "start": 482, "end": 488, "id": 67, "annotation": null}, {"text": "the", "start": 489, "end": 492, "id": 68, "annotation": null}, {"text": "oxygen", "start": 493, "end": 499, "id": 69, "annotation": null}, {"text": "reduction", "start": 500, "end": 509, "id": 70, "annotation": null}, {"text": "reaction", "start": 510, "end": 518, "id": 71, "annotation": null}, {"text": "(", "start": 519, "end": 520, "id": 72, "annotation": null}, {"text": "ORR", "start": 521, "end": 524, "id": 73, "annotation": null}, {"text": ")", "start": 525, "end": 526, "id": 74, "annotation": null}, {"text": ";", "start": 527, "end": 528, "id": 75, "annotation": null}, {"text": "the", "start": 529, "end": 532, "id": 76, "annotation": null}, {"text": "examined", "start": 533, "end": 541, "id": 77, "annotation": null}, {"text": "electrodes", "start": 542, "end": 552, "id": 78, "annotation": null}, {"text": "consisted", "start": 553, "end": 562, "id": 79, "annotation": null}, {"text": "of", "start": 563, "end": 565, "id": 80, "annotation": null}, {"text": "platinum", "start": 566, "end": 574, "id": 81, "annotation": null}, {"text": ",", "start": 575, "end": 576, "id": 82, "annotation": null}, {"text": "Au(111", "start": 577, "end": 583, "id": 83, "annotation": null}, {"text": ")", "start": 584, "end": 585, "id": 84, "annotation": null}, {"text": ",", "start": 586, "end": 587, "id": 85, "annotation": null}, {"text": "glassy", "start": 588, "end": 594, "id": 86, "annotation": null}, {"text": "carbon", "start": 595, "end": 601, "id": 87, "annotation": null}, {"text": "and", "start": 602, "end": 605, "id": 88, "annotation": null}, {"text": "boron", "start": 606, "end": 611, "id": 89, "annotation": "DOPANT"}, {"text": "-", "start": 612, "end": 613, "id": 90, "annotation": null}, {"text": "doped", "start": 614, "end": 619, "id": 91, "annotation": null}, {"text": "diamond", "start": 620, "end": 627, "id": 92, "annotation": "BASEMAT"}, {"text": "(", "start": 628, "end": 629, "id": 93, "annotation": null}, {"text": "BDD", "start": 630, "end": 633, "id": 94, "annotation": null}, {"text": ")", "start": 634, "end": 635, "id": 95, "annotation": null}, {"text": ".", "start": 636, "end": 637, "id": 96, "annotation": null}], [{"text": "We", "start": 638, "end": 640, "id": 97, "annotation": null}, {"text": "first", "start": 641, "end": 646, "id": 98, "annotation": null}, {"text": "selected", "start": 647, "end": 655, "id": 99, "annotation": null}, {"text": "appropriate", "start": 656, "end": 667, "id": 100, "annotation": null}, {"text": "molecular", "start": 668, "end": 677, "id": 101, "annotation": null}, {"text": "probes", "start": 678, "end": 684, "id": 102, "annotation": null}, {"text": "that", "start": 685, "end": 689, "id": 103, "annotation": null}, {"text": "are", "start": 690, "end": 693, "id": 104, "annotation": null}, {"text": "suitable", "start": 694, "end": 702, "id": 105, "annotation": null}, {"text": "for", "start": 703, "end": 706, "id": 106, "annotation": null}, {"text": "use", "start": 707, "end": 710, "id": 107, "annotation": null}, {"text": "under", "start": 711, "end": 716, "id": 108, "annotation": null}, {"text": "electrochemical", "start": 717, "end": 732, "id": 109, "annotation": null}, {"text": "polarization", "start": 733, "end": 745, "id": 110, "annotation": null}, {"text": "conditions", "start": 746, "end": 756, "id": 111, "annotation": null}, {"text": "and", "start": 757, "end": 760, "id": 112, "annotation": null}, {"text": "that", "start": 761, "end": 765, "id": 113, "annotation": null}, {"text": "are", "start": 766, "end": 769, "id": 114, "annotation": null}, {"text": "chemiluminescent", "start": 770, "end": 786, "id": 115, "annotation": null}, {"text": "in", "start": 787, "end": 789, "id": 116, "annotation": null}, {"text": "the", "start": 790, "end": 793, "id": 117, "annotation": null}, {"text": "chosen", "start": 794, "end": 800, "id": 118, "annotation": null}, {"text": "aqueous", "start": 801, "end": 808, "id": 119, "annotation": null}, {"text": "solutions", "start": 809, "end": 818, "id": 120, "annotation": null}, {"text": ".", "start": 819, "end": 820, "id": 121, "annotation": null}], [{"text": "The", "start": 821, "end": 824, "id": 122, "annotation": null}, {"text": "roles", "start": 825, "end": 830, "id": 123, "annotation": null}, {"text": "of", "start": 831, "end": 833, "id": 124, "annotation": null}, {"text": "the", "start": 834, "end": 837, "id": 125, "annotation": null}, {"text": "concentration", "start": 838, "end": 851, "id": 126, "annotation": null}, {"text": ",", "start": 852, "end": 853, "id": 127, "annotation": null}, {"text": "solubility", "start": 854, "end": 864, "id": 128, "annotation": null}, {"text": "and", "start": 865, "end": 868, "id": 129, "annotation": null}, {"text": "possible", "start": 869, "end": 877, "id": 130, "annotation": null}, {"text": "activation", "start": 878, "end": 888, "id": 131, "annotation": null}, {"text": "of", "start": 889, "end": 891, "id": 132, "annotation": null}, {"text": "the", "start": 892, "end": 895, "id": 133, "annotation": null}, {"text": "molecular", "start": 896, "end": 905, "id": 134, "annotation": null}, {"text": "probes", "start": 906, "end": 912, "id": 135, "annotation": null}, {"text": "were", "start": 913, "end": 917, "id": 136, "annotation": null}, {"text": "identified", "start": 918, "end": 928, "id": 137, "annotation": null}, {"text": ".", "start": 929, "end": 930, "id": 138, "annotation": null}], [{"text": "Then", "start": 931, "end": 935, "id": 139, "annotation": null}, {"text": ",", "start": 936, "end": 937, "id": 140, "annotation": null}, {"text": "the", "start": 938, "end": 941, "id": 141, "annotation": null}, {"text": "information", "start": 942, "end": 953, "id": 142, "annotation": null}, {"text": "obtained", "start": 954, "end": 962, "id": 143, "annotation": null}, {"text": "by", "start": 963, "end": 965, "id": 144, "annotation": null}, {"text": "the", "start": 966, "end": 969, "id": 145, "annotation": null}, {"text": "simultaneous", "start": 970, "end": 982, "id": 146, "annotation": null}, {"text": "recording", "start": 983, "end": 992, "id": 147, "annotation": null}, {"text": "of", "start": 993, "end": 995, "id": 148, "annotation": null}, {"text": "the", "start": 996, "end": 999, "id": 149, "annotation": null}, {"text": "amperometric", "start": 1000, "end": 1012, "id": 150, "annotation": null}, {"text": "signal", "start": 1013, "end": 1019, "id": 151, "annotation": null}, {"text": "was", "start": 1020, "end": 1023, "id": 152, "annotation": null}, {"text": "correlated", "start": 1024, "end": 1034, "id": 153, "annotation": null}, {"text": "with", "start": 1035, "end": 1039, "id": 154, "annotation": null}, {"text": "the", "start": 1040, "end": 1043, "id": 155, "annotation": null}, {"text": "chemiluminescence", "start": 1044, "end": 1061, "id": 156, "annotation": null}, {"text": "intensity", "start": 1062, "end": 1071, "id": 157, "annotation": null}, {"text": ",", "start": 1072, "end": 1073, "id": 158, "annotation": null}, {"text": "which", "start": 1074, "end": 1079, "id": 159, "annotation": null}, {"text": "was", "start": 1080, "end": 1083, "id": 160, "annotation": null}, {"text": "measured", "start": 1084, "end": 1092, "id": 161, "annotation": null}, {"text": "with", "start": 1093, "end": 1097, "id": 162, "annotation": null}, {"text": "a", "start": 1098, "end": 1099, "id": 163, "annotation": null}, {"text": "highly", "start": 1100, "end": 1106, "id": 164, "annotation": null}, {"text": "sensitive", "start": 1107, "end": 1116, "id": 165, "annotation": null}, {"text": "photomultiplier", "start": 1117, "end": 1132, "id": 166, "annotation": null}, {"text": "tube", "start": 1133, "end": 1137, "id": 167, "annotation": null}, {"text": "(", "start": 1138, "end": 1139, "id": 168, "annotation": null}, {"text": "PMT", "start": 1140, "end": 1143, "id": 169, "annotation": null}, {"text": ")", "start": 1144, "end": 1145, "id": 170, "annotation": null}, {"text": ".", "start": 1146, "end": 1147, "id": 171, "annotation": null}], [{"text": "The", "start": 1148, "end": 1151, "id": 172, "annotation": null}, {"text": "experimental", "start": 1152, "end": 1164, "id": 173, "annotation": null}, {"text": "results", "start": 1165, "end": 1172, "id": 174, "annotation": null}, {"text": "were", "start": 1173, "end": 1177, "id": 175, "annotation": null}, {"text": "interpreted", "start": 1178, "end": 1189, "id": 176, "annotation": null}, {"text": "by", "start": 1190, "end": 1192, "id": 177, "annotation": null}, {"text": "constructing", "start": 1193, "end": 1205, "id": 178, "annotation": null}, {"text": "a", "start": 1206, "end": 1207, "id": 179, "annotation": null}, {"text": "potential", "start": 1208, "end": 1217, "id": 180, "annotation": null}, {"text": "vs.", "start": 1218, "end": 1221, "id": 181, "annotation": null}, {"text": "pH", "start": 1222, "end": 1224, "id": 182, "annotation": null}, {"text": "diagram", "start": 1225, "end": 1232, "id": 183, "annotation": null}, {"text": "for", "start": 1233, "end": 1236, "id": 184, "annotation": null}, {"text": "the", "start": 1237, "end": 1240, "id": 185, "annotation": null}, {"text": "oxygenated", "start": 1241, "end": 1251, "id": 186, "annotation": null}, {"text": "species", "start": 1252, "end": 1259, "id": 187, "annotation": null}, {"text": ".", "start": 1260, "end": 1261, "id": 188, "annotation": null}], [{"text": "The", "start": 1262, "end": 1265, "id": 189, "annotation": null}, {"text": "complementary", "start": 1266, "end": 1279, "id": 190, "annotation": null}, {"text": "nature", "start": 1280, "end": 1286, "id": 191, "annotation": null}, {"text": "of", "start": 1287, "end": 1289, "id": 192, "annotation": null}, {"text": "the", "start": 1290, "end": 1293, "id": 193, "annotation": null}, {"text": "information", "start": 1294, "end": 1305, "id": 194, "annotation": null}, {"text": "about", "start": 1306, "end": 1311, "id": 195, "annotation": null}, {"text": "the", "start": 1312, "end": 1315, "id": 196, "annotation": null}, {"text": "mechanistic", "start": 1316, "end": 1327, "id": 197, "annotation": null}, {"text": "path", "start": 1328, "end": 1332, "id": 198, "annotation": null}, {"text": "of", "start": 1333, "end": 1335, "id": 199, "annotation": null}, {"text": "the", "start": 1336, "end": 1339, "id": 200, "annotation": null}, {"text": "ongoing", "start": 1340, "end": 1347, "id": 201, "annotation": null}, {"text": "mechanism", "start": 1348, "end": 1357, "id": 202, "annotation": null}, {"text": "of", "start": 1358, "end": 1360, "id": 203, "annotation": null}, {"text": "ORR", "start": 1361, "end": 1364, "id": 204, "annotation": null}, {"text": "on", "start": 1365, "end": 1367, "id": 205, "annotation": null}, {"text": "the", "start": 1368, "end": 1371, "id": 206, "annotation": null}, {"text": "different", "start": 1372, "end": 1381, "id": 207, "annotation": null}, {"text": "electrode", "start": 1382, "end": 1391, "id": 208, "annotation": null}, {"text": "materials", "start": 1392, "end": 1401, "id": 209, "annotation": null}, {"text": "allowed", "start": 1402, "end": 1409, "id": 210, "annotation": null}, {"text": "us", "start": 1410, "end": 1412, "id": 211, "annotation": null}, {"text": "to", "start": 1413, "end": 1415, "id": 212, "annotation": null}, {"text": "propose", "start": 1416, "end": 1423, "id": 213, "annotation": null}, {"text": "a", "start": 1424, "end": 1425, "id": 214, "annotation": null}, {"text": "unified", "start": 1426, "end": 1433, "id": 215, "annotation": null}, {"text": "scheme", "start": 1434, "end": 1440, "id": 216, "annotation": null}, {"text": ".", "start": 1441, "end": 1442, "id": 217, "annotation": null}], [{"text": "A", "start": 1443, "end": 1444, "id": 218, "annotation": null}, {"text": "coupled", "start": 1445, "end": 1452, "id": 219, "annotation": null}, {"text": "proton", "start": 1453, "end": 1459, "id": 220, "annotation": null}, {"text": "electron", "start": 1460, "end": 1468, "id": 221, "annotation": null}, {"text": "transfer", "start": 1469, "end": 1477, "id": 222, "annotation": null}, {"text": "(", "start": 1478, "end": 1479, "id": 223, "annotation": null}, {"text": "CPET", "start": 1480, "end": 1484, "id": 224, "annotation": null}, {"text": ")", "start": 1485, "end": 1486, "id": 225, "annotation": null}, {"text": "mechanism", "start": 1487, "end": 1496, "id": 226, "annotation": null}, {"text": "can", "start": 1497, "end": 1500, "id": 227, "annotation": null}, {"text": "be", "start": 1501, "end": 1503, "id": 228, "annotation": null}, {"text": "invoked", "start": 1504, "end": 1511, "id": 229, "annotation": null}, {"text": "to", "start": 1512, "end": 1514, "id": 230, "annotation": null}, {"text": "explain", "start": 1515, "end": 1522, "id": 231, "annotation": null}, {"text": "the", "start": 1523, "end": 1526, "id": 232, "annotation": null}, {"text": "major", "start": 1527, "end": 1532, "id": 233, "annotation": null}, {"text": "differences", "start": 1533, "end": 1544, "id": 234, "annotation": null}, {"text": "observed", "start": 1545, "end": 1553, "id": 235, "annotation": null}, {"text": "from", "start": 1554, "end": 1558, "id": 236, "annotation": null}, {"text": "the", "start": 1559, "end": 1562, "id": 237, "annotation": null}, {"text": "identified", "start": 1563, "end": 1573, "id": 238, "annotation": null}, {"text": "reactive", "start": 1574, "end": 1582, "id": 239, "annotation": null}, {"text": "intermediates", "start": 1583, "end": 1596, "id": 240, "annotation": null}, {"text": "in", "start": 1597, "end": 1599, "id": 241, "annotation": null}, {"text": "relation", "start": 1600, "end": 1608, "id": 242, "annotation": null}, {"text": "to", "start": 1609, "end": 1611, "id": 243, "annotation": null}, {"text": "the", "start": 1612, "end": 1615, "id": 244, "annotation": null}, {"text": "electrocatalytic", "start": 1616, "end": 1632, "id": 245, "annotation": null}, {"text": "activity", "start": 1633, "end": 1641, "id": 246, "annotation": null}, {"text": "of", "start": 1642, "end": 1644, "id": 247, "annotation": null}, {"text": "the", "start": 1645, "end": 1648, "id": 248, "annotation": null}, {"text": "electrode", "start": 1649, "end": 1658, "id": 249, "annotation": null}, {"text": "materials", "start": 1659, "end": 1668, "id": 250, "annotation": null}, {"text": ".", "start": 1669, "end": 1670, "id": 251, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The effect of annealing temperature on the structural, optical and electrical properties of transparent and conducting Bi doped ZnO (BZO) films deposited on glass substrate by spray pyrolysis technique was investigated. The BZO thin films were annealed in the temperature range from 450\u00b0C to 550\u00b0C for 4h in air atmosphere. The grain size of the BZO films increased with increasing annealing temperature. The annealed BZO films were electrically stable and there was a drastic change in the electrical conductivity after annealing. The films annealed at 500\u00b0C showed better conductivity and optical transmittance.", "meta": {"doi": "10.1016/j.spmi.2014.07.019"}, "_input_hash": 1287320413, "_task_hash": 549298435, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "effect", "start": 4, "end": 10, "id": 1, "annotation": null}, {"text": "of", "start": 11, "end": 13, "id": 2, "annotation": null}, {"text": "annealing", "start": 14, "end": 23, "id": 3, "annotation": null}, {"text": "temperature", "start": 24, "end": 35, "id": 4, "annotation": null}, {"text": "on", "start": 36, "end": 38, "id": 5, "annotation": null}, {"text": "the", "start": 39, "end": 42, "id": 6, "annotation": null}, {"text": "structural", "start": 43, "end": 53, "id": 7, "annotation": null}, {"text": ",", "start": 54, "end": 55, "id": 8, "annotation": null}, {"text": "optical", "start": 56, "end": 63, "id": 9, "annotation": null}, {"text": "and", "start": 64, "end": 67, "id": 10, "annotation": null}, {"text": "electrical", "start": 68, "end": 78, "id": 11, "annotation": null}, {"text": "properties", "start": 79, "end": 89, "id": 12, "annotation": null}, {"text": "of", "start": 90, "end": 92, "id": 13, "annotation": null}, {"text": "transparent", "start": 93, "end": 104, "id": 14, "annotation": null}, {"text": "and", "start": 105, "end": 108, "id": 15, "annotation": null}, {"text": "conducting", "start": 109, "end": 119, "id": 16, "annotation": null}, {"text": "Bi", "start": 120, "end": 122, "id": 17, "annotation": "DOPANT"}, {"text": "doped", "start": 123, "end": 128, "id": 18, "annotation": null}, {"text": "ZnO", "start": 129, "end": 132, "id": 19, "annotation": "BASEMAT"}, {"text": "(", "start": 133, "end": 134, "id": 20, "annotation": null}, {"text": "BZO", "start": 135, "end": 138, "id": 21, "annotation": null}, {"text": ")", "start": 139, "end": 140, "id": 22, "annotation": null}, {"text": "films", "start": 141, "end": 146, "id": 23, "annotation": null}, {"text": "deposited", "start": 147, "end": 156, "id": 24, "annotation": null}, {"text": "on", "start": 157, "end": 159, "id": 25, "annotation": null}, {"text": "glass", "start": 160, "end": 165, "id": 26, "annotation": null}, {"text": "substrate", "start": 166, "end": 175, "id": 27, "annotation": null}, {"text": "by", "start": 176, "end": 178, "id": 28, "annotation": null}, {"text": "spray", "start": 179, "end": 184, "id": 29, "annotation": null}, {"text": "pyrolysis", "start": 185, "end": 194, "id": 30, "annotation": null}, {"text": "technique", "start": 195, "end": 204, "id": 31, "annotation": null}, {"text": "was", "start": 205, "end": 208, "id": 32, "annotation": null}, {"text": "investigated", "start": 209, "end": 221, "id": 33, "annotation": null}, {"text": ".", "start": 222, "end": 223, "id": 34, "annotation": null}], [{"text": "The", "start": 224, "end": 227, "id": 35, "annotation": null}, {"text": "BZO", "start": 228, "end": 231, "id": 36, "annotation": null}, {"text": "thin", "start": 232, "end": 236, "id": 37, "annotation": null}, {"text": "films", "start": 237, "end": 242, "id": 38, "annotation": null}, {"text": "were", "start": 243, "end": 247, "id": 39, "annotation": null}, {"text": "annealed", "start": 248, "end": 256, "id": 40, "annotation": null}, {"text": "in", "start": 257, "end": 259, "id": 41, "annotation": null}, {"text": "the", "start": 260, "end": 263, "id": 42, "annotation": null}, {"text": "temperature", "start": 264, "end": 275, "id": 43, "annotation": null}, {"text": "range", "start": 276, "end": 281, "id": 44, "annotation": null}, {"text": "from", "start": 282, "end": 286, "id": 45, "annotation": null}, {"text": "450", "start": 287, "end": 290, "id": 46, "annotation": null}, {"text": "\u00b0", "start": 291, "end": 292, "id": 47, "annotation": null}, {"text": "C", "start": 293, "end": 294, "id": 48, "annotation": null}, {"text": "to", "start": 295, "end": 297, "id": 49, "annotation": null}, {"text": "550", "start": 298, "end": 301, "id": 50, "annotation": null}, {"text": "\u00b0", "start": 302, "end": 303, "id": 51, "annotation": null}, {"text": "C", "start": 304, "end": 305, "id": 52, "annotation": null}, {"text": "for", "start": 306, "end": 309, "id": 53, "annotation": null}, {"text": "4h", "start": 310, "end": 312, "id": 54, "annotation": null}, {"text": "in", "start": 313, "end": 315, "id": 55, "annotation": null}, {"text": "air", "start": 316, "end": 319, "id": 56, "annotation": null}, {"text": "atmosphere", "start": 320, "end": 330, "id": 57, "annotation": null}, {"text": ".", "start": 331, "end": 332, "id": 58, "annotation": null}], [{"text": "The", "start": 333, "end": 336, "id": 59, "annotation": null}, {"text": "grain", "start": 337, "end": 342, "id": 60, "annotation": null}, {"text": "size", "start": 343, "end": 347, "id": 61, "annotation": null}, {"text": "of", "start": 348, "end": 350, "id": 62, "annotation": null}, {"text": "the", "start": 351, "end": 354, "id": 63, "annotation": null}, {"text": "BZO", "start": 355, "end": 358, "id": 64, "annotation": null}, {"text": "films", "start": 359, "end": 364, "id": 65, "annotation": null}, {"text": "increased", "start": 365, "end": 374, "id": 66, "annotation": null}, {"text": "with", "start": 375, "end": 379, "id": 67, "annotation": null}, {"text": "increasing", "start": 380, "end": 390, "id": 68, "annotation": null}, {"text": "annealing", "start": 391, "end": 400, "id": 69, "annotation": null}, {"text": "temperature", "start": 401, "end": 412, "id": 70, "annotation": null}, {"text": ".", "start": 413, "end": 414, "id": 71, "annotation": null}], [{"text": "The", "start": 415, "end": 418, "id": 72, "annotation": null}, {"text": "annealed", "start": 419, "end": 427, "id": 73, "annotation": null}, {"text": "BZO", "start": 428, "end": 431, "id": 74, "annotation": null}, {"text": "films", "start": 432, "end": 437, "id": 75, "annotation": null}, {"text": "were", "start": 438, "end": 442, "id": 76, "annotation": null}, {"text": "electrically", "start": 443, "end": 455, "id": 77, "annotation": null}, {"text": "stable", "start": 456, "end": 462, "id": 78, "annotation": null}, {"text": "and", "start": 463, "end": 466, "id": 79, "annotation": null}, {"text": "there", "start": 467, "end": 472, "id": 80, "annotation": null}, {"text": "was", "start": 473, "end": 476, "id": 81, "annotation": null}, {"text": "a", "start": 477, "end": 478, "id": 82, "annotation": null}, {"text": "drastic", "start": 479, "end": 486, "id": 83, "annotation": null}, {"text": "change", "start": 487, "end": 493, "id": 84, "annotation": null}, {"text": "in", "start": 494, "end": 496, "id": 85, "annotation": null}, {"text": "the", "start": 497, "end": 500, "id": 86, "annotation": null}, {"text": "electrical", "start": 501, "end": 511, "id": 87, "annotation": null}, {"text": "conductivity", "start": 512, "end": 524, "id": 88, "annotation": null}, {"text": "after", "start": 525, "end": 530, "id": 89, "annotation": null}, {"text": "annealing", "start": 531, "end": 540, "id": 90, "annotation": null}, {"text": ".", "start": 541, "end": 542, "id": 91, "annotation": null}], [{"text": "The", "start": 543, "end": 546, "id": 92, "annotation": null}, {"text": "films", "start": 547, "end": 552, "id": 93, "annotation": null}, {"text": "annealed", "start": 553, "end": 561, "id": 94, "annotation": null}, {"text": "at", "start": 562, "end": 564, "id": 95, "annotation": null}, {"text": "500", "start": 565, "end": 568, "id": 96, "annotation": null}, {"text": "\u00b0", "start": 569, "end": 570, "id": 97, "annotation": null}, {"text": "C", "start": 571, "end": 572, "id": 98, "annotation": null}, {"text": "showed", "start": 573, "end": 579, "id": 99, "annotation": null}, {"text": "better", "start": 580, "end": 586, "id": 100, "annotation": null}, {"text": "conductivity", "start": 587, "end": 599, "id": 101, "annotation": null}, {"text": "and", "start": 600, "end": 603, "id": 102, "annotation": null}, {"text": "optical", "start": 604, "end": 611, "id": 103, "annotation": null}, {"text": "transmittance", "start": 612, "end": 625, "id": 104, "annotation": null}, {"text": ".", "start": 626, "end": 627, "id": 105, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The thermoluminescence (TL) response of Dy and Li doped 20CaB4O7\u201380CaB2O4 (wt%) glass\u2013ceramic irradiated with ultraviolet (UV) radiation was studied. In order to act as TL activator ions, the Dy and Li ions were included in the matrix during the melting process to increase its TL efficiency. A single crystalline CaB2O4 phase was present in the glass\u2013ceramic as determined by X-ray diffraction (XRD). The glass\u2013ceramic 20CaB4O7\u201380CaB2O4:Dy,Li wt% (named 20CBO7:Dy,Li) is a newly prepared TL material. Its thermoluminescent dosimetric characteristics have shown a linear response under UV radiation exposure and a good TL signal reproducibility, thus proving to be a promising material for using as an ultraviolet radiation dosimeter.", "meta": {"doi": "10.1016/j.nimb.2007.11.002"}, "_input_hash": -484705914, "_task_hash": 803577508, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "thermoluminescence", "start": 4, "end": 22, "id": 1, "annotation": null}, {"text": "(", "start": 23, "end": 24, "id": 2, "annotation": null}, {"text": "TL", "start": 25, "end": 27, "id": 3, "annotation": null}, {"text": ")", "start": 28, "end": 29, "id": 4, "annotation": null}, {"text": "response", "start": 30, "end": 38, "id": 5, "annotation": null}, {"text": "of", "start": 39, "end": 41, "id": 6, "annotation": null}, {"text": "Dy", "start": 42, "end": 44, "id": 7, "annotation": "DOPANT"}, {"text": "and", "start": 45, "end": 48, "id": 8, "annotation": null}, {"text": "Li", "start": 49, "end": 51, "id": 9, "annotation": "DOPANT"}, {"text": "doped", "start": 52, "end": 57, "id": 10, "annotation": null}, {"text": "20CaB4O7\u201380CaB2O4", "start": 58, "end": 75, "id": 11, "annotation": "BASEMAT"}, {"text": "(", "start": 76, "end": 77, "id": 12, "annotation": null}, {"text": "wt%", "start": 78, "end": 81, "id": 13, "annotation": null}, {"text": ")", "start": 82, "end": 83, "id": 14, "annotation": null}, {"text": "glass", "start": 84, "end": 89, "id": 15, "annotation": null}, {"text": "\u2013", "start": 90, "end": 91, "id": 16, "annotation": null}, {"text": "ceramic", "start": 92, "end": 99, "id": 17, "annotation": null}, {"text": "irradiated", "start": 100, "end": 110, "id": 18, "annotation": null}, {"text": "with", "start": 111, "end": 115, "id": 19, "annotation": null}, {"text": "ultraviolet", "start": 116, "end": 127, "id": 20, "annotation": null}, {"text": "(", "start": 128, "end": 129, "id": 21, "annotation": null}, {"text": "UV", "start": 130, "end": 132, "id": 22, "annotation": null}, {"text": ")", "start": 133, "end": 134, "id": 23, "annotation": null}, {"text": "radiation", "start": 135, "end": 144, "id": 24, "annotation": null}, {"text": "was", "start": 145, "end": 148, "id": 25, "annotation": null}, {"text": "studied", "start": 149, "end": 156, "id": 26, "annotation": null}, {"text": ".", "start": 157, "end": 158, "id": 27, "annotation": null}], [{"text": "In", "start": 159, "end": 161, "id": 28, "annotation": null}, {"text": "order", "start": 162, "end": 167, "id": 29, "annotation": null}, {"text": "to", "start": 168, "end": 170, "id": 30, "annotation": null}, {"text": "act", "start": 171, "end": 174, "id": 31, "annotation": null}, {"text": "as", "start": 175, "end": 177, "id": 32, "annotation": null}, {"text": "TL", "start": 178, "end": 180, "id": 33, "annotation": null}, {"text": "activator", "start": 181, "end": 190, "id": 34, "annotation": null}, {"text": "ions", "start": 191, "end": 195, "id": 35, "annotation": null}, {"text": ",", "start": 196, "end": 197, "id": 36, "annotation": null}, {"text": "the", "start": 198, "end": 201, "id": 37, "annotation": null}, {"text": "Dy", "start": 202, "end": 204, "id": 38, "annotation": null}, {"text": "and", "start": 205, "end": 208, "id": 39, "annotation": null}, {"text": "Li", "start": 209, "end": 211, "id": 40, "annotation": null}, {"text": "ions", "start": 212, "end": 216, "id": 41, "annotation": null}, {"text": "were", "start": 217, "end": 221, "id": 42, "annotation": null}, {"text": "included", "start": 222, "end": 230, "id": 43, "annotation": null}, {"text": "in", "start": 231, "end": 233, "id": 44, "annotation": null}, {"text": "the", "start": 234, "end": 237, "id": 45, "annotation": null}, {"text": "matrix", "start": 238, "end": 244, "id": 46, "annotation": null}, {"text": "during", "start": 245, "end": 251, "id": 47, "annotation": null}, {"text": "the", "start": 252, "end": 255, "id": 48, "annotation": null}, {"text": "melting", "start": 256, "end": 263, "id": 49, "annotation": null}, {"text": "process", "start": 264, "end": 271, "id": 50, "annotation": null}, {"text": "to", "start": 272, "end": 274, "id": 51, "annotation": null}, {"text": "increase", "start": 275, "end": 283, "id": 52, "annotation": null}, {"text": "its", "start": 284, "end": 287, "id": 53, "annotation": null}, {"text": "TL", "start": 288, "end": 290, "id": 54, "annotation": null}, {"text": "efficiency", "start": 291, "end": 301, "id": 55, "annotation": null}, {"text": ".", "start": 302, "end": 303, "id": 56, "annotation": null}], [{"text": "A", "start": 304, "end": 305, "id": 57, "annotation": null}, {"text": "single", "start": 306, "end": 312, "id": 58, "annotation": null}, {"text": "crystalline", "start": 313, "end": 324, "id": 59, "annotation": null}, {"text": "CaB2O4", "start": 325, "end": 331, "id": 60, "annotation": null}, {"text": "phase", "start": 332, "end": 337, "id": 61, "annotation": null}, {"text": "was", "start": 338, "end": 341, "id": 62, "annotation": null}, {"text": "present", "start": 342, "end": 349, "id": 63, "annotation": null}, {"text": "in", "start": 350, "end": 352, "id": 64, "annotation": null}, {"text": "the", "start": 353, "end": 356, "id": 65, "annotation": null}, {"text": "glass", "start": 357, "end": 362, "id": 66, "annotation": null}, {"text": "\u2013", "start": 363, "end": 364, "id": 67, "annotation": null}, {"text": "ceramic", "start": 365, "end": 372, "id": 68, "annotation": null}, {"text": "as", "start": 373, "end": 375, "id": 69, "annotation": null}, {"text": "determined", "start": 376, "end": 386, "id": 70, "annotation": null}, {"text": "by", "start": 387, "end": 389, "id": 71, "annotation": null}, {"text": "X", "start": 390, "end": 391, "id": 72, "annotation": null}, {"text": "-", "start": 392, "end": 393, "id": 73, "annotation": null}, {"text": "ray", "start": 394, "end": 397, "id": 74, "annotation": null}, {"text": "diffraction", "start": 398, "end": 409, "id": 75, "annotation": null}, {"text": "(", "start": 410, "end": 411, "id": 76, "annotation": null}, {"text": "XRD", "start": 412, "end": 415, "id": 77, "annotation": null}, {"text": ")", "start": 416, "end": 417, "id": 78, "annotation": null}, {"text": ".", "start": 418, "end": 419, "id": 79, "annotation": null}], [{"text": "The", "start": 420, "end": 423, "id": 80, "annotation": null}, {"text": "glass", "start": 424, "end": 429, "id": 81, "annotation": null}, {"text": "\u2013", "start": 430, "end": 431, "id": 82, "annotation": null}, {"text": "ceramic", "start": 432, "end": 439, "id": 83, "annotation": null}, {"text": "20CaB4O7\u201380CaB2O4", "start": 440, "end": 457, "id": 84, "annotation": "BASEMAT"}, {"text": ":", "start": 458, "end": 459, "id": 85, "annotation": null}, {"text": "Dy", "start": 460, "end": 462, "id": 86, "annotation": "DOPANT"}, {"text": ",", "start": 463, "end": 464, "id": 87, "annotation": null}, {"text": "Li", "start": 465, "end": 467, "id": 88, "annotation": "DOPANT"}, {"text": "wt%", "start": 468, "end": 471, "id": 89, "annotation": null}, {"text": "(", "start": 472, "end": 473, "id": 90, "annotation": null}, {"text": "named", "start": 474, "end": 479, "id": 91, "annotation": null}, {"text": "20CBO7", "start": 480, "end": 486, "id": 92, "annotation": "BASEMAT"}, {"text": ":", "start": 487, "end": 488, "id": 93, "annotation": null}, {"text": "Dy", "start": 489, "end": 491, "id": 94, "annotation": "DOPANT"}, {"text": ",", "start": 492, "end": 493, "id": 95, "annotation": null}, {"text": "Li", "start": 494, "end": 496, "id": 96, "annotation": "DOPANT"}, {"text": ")", "start": 497, "end": 498, "id": 97, "annotation": null}, {"text": "is", "start": 499, "end": 501, "id": 98, "annotation": null}, {"text": "a", "start": 502, "end": 503, "id": 99, "annotation": null}, {"text": "newly", "start": 504, "end": 509, "id": 100, "annotation": null}, {"text": "prepared", "start": 510, "end": 518, "id": 101, "annotation": null}, {"text": "TL", "start": 519, "end": 521, "id": 102, "annotation": null}, {"text": "material", "start": 522, "end": 530, "id": 103, "annotation": null}, {"text": ".", "start": 531, "end": 532, "id": 104, "annotation": null}], [{"text": "Its", "start": 533, "end": 536, "id": 105, "annotation": null}, {"text": "thermoluminescent", "start": 537, "end": 554, "id": 106, "annotation": null}, {"text": "dosimetric", "start": 555, "end": 565, "id": 107, "annotation": null}, {"text": "characteristics", "start": 566, "end": 581, "id": 108, "annotation": null}, {"text": "have", "start": 582, "end": 586, "id": 109, "annotation": null}, {"text": "shown", "start": 587, "end": 592, "id": 110, "annotation": null}, {"text": "a", "start": 593, "end": 594, "id": 111, "annotation": null}, {"text": "linear", "start": 595, "end": 601, "id": 112, "annotation": null}, {"text": "response", "start": 602, "end": 610, "id": 113, "annotation": null}, {"text": "under", "start": 611, "end": 616, "id": 114, "annotation": null}, {"text": "UV", "start": 617, "end": 619, "id": 115, "annotation": null}, {"text": "radiation", "start": 620, "end": 629, "id": 116, "annotation": null}, {"text": "exposure", "start": 630, "end": 638, "id": 117, "annotation": null}, {"text": "and", "start": 639, "end": 642, "id": 118, "annotation": null}, {"text": "a", "start": 643, "end": 644, "id": 119, "annotation": null}, {"text": "good", "start": 645, "end": 649, "id": 120, "annotation": null}, {"text": "TL", "start": 650, "end": 652, "id": 121, "annotation": null}, {"text": "signal", "start": 653, "end": 659, "id": 122, "annotation": null}, {"text": "reproducibility", "start": 660, "end": 675, "id": 123, "annotation": null}, {"text": ",", "start": 676, "end": 677, "id": 124, "annotation": null}, {"text": "thus", "start": 678, "end": 682, "id": 125, "annotation": null}, {"text": "proving", "start": 683, "end": 690, "id": 126, "annotation": null}, {"text": "to", "start": 691, "end": 693, "id": 127, "annotation": null}, {"text": "be", "start": 694, "end": 696, "id": 128, "annotation": null}, {"text": "a", "start": 697, "end": 698, "id": 129, "annotation": null}, {"text": "promising", "start": 699, "end": 708, "id": 130, "annotation": null}, {"text": "material", "start": 709, "end": 717, "id": 131, "annotation": null}, {"text": "for", "start": 718, "end": 721, "id": 132, "annotation": null}, {"text": "using", "start": 722, "end": 727, "id": 133, "annotation": null}, {"text": "as", "start": 728, "end": 730, "id": 134, "annotation": null}, {"text": "an", "start": 731, "end": 733, "id": 135, "annotation": null}, {"text": "ultraviolet", "start": 734, "end": 745, "id": 136, "annotation": null}, {"text": "radiation", "start": 746, "end": 755, "id": 137, "annotation": null}, {"text": "dosimeter", "start": 756, "end": 765, "id": 138, "annotation": null}, {"text": ".", "start": 766, "end": 767, "id": 139, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "The thermoluminescence (TL) behaviour of solid solutions of lead doped KCl1-xBrx (X = 0.02, 0.35, 0.50, 0.65, 0.85, 1) mixed crystals exposed to gamma radiation at different doses from 60Co is reported. The TL glow curves of KCl1-x Brx:Pb2+ crystal exposed in the range of 0-140 Gy is strongly dependent on composition X. The maximum temperature of the main TL glow peak was found to shift towards lower temperatures as composition X increased and a significant enhancement of the TL efficiency in KCl1-xBrx:Pb2+ was found for X = 0.50 which is attributed to an increase in the vacancy concentration of the mixed halides at middle composition. The participation of the F-centre in the TL phenomenon particularly related to the main TL glow peak observed in mixed samples was also confirmed.", "meta": {"doi": "10.1093/rpd/nci575"}, "_input_hash": -479563399, "_task_hash": -898485444, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "thermoluminescence", "start": 4, "end": 22, "id": 1, "annotation": null}, {"text": "(", "start": 23, "end": 24, "id": 2, "annotation": null}, {"text": "TL", "start": 25, "end": 27, "id": 3, "annotation": null}, {"text": ")", "start": 28, "end": 29, "id": 4, "annotation": null}, {"text": "behaviour", "start": 30, "end": 39, "id": 5, "annotation": null}, {"text": "of", "start": 40, "end": 42, "id": 6, "annotation": null}, {"text": "solid", "start": 43, "end": 48, "id": 7, "annotation": null}, {"text": "solutions", "start": 49, "end": 58, "id": 8, "annotation": null}, {"text": "of", "start": 59, "end": 61, "id": 9, "annotation": null}, {"text": "lead", "start": 62, "end": 66, "id": 10, "annotation": "DOPANT"}, {"text": "doped", "start": 67, "end": 72, "id": 11, "annotation": null}, {"text": "KCl1-xBrx", "start": 73, "end": 82, "id": 12, "annotation": "BASEMAT"}, {"text": "(", "start": 83, "end": 84, "id": 13, "annotation": null}, {"text": "X", "start": 85, "end": 86, "id": 14, "annotation": null}, {"text": "=", "start": 87, "end": 88, "id": 15, "annotation": null}, {"text": "0.02", "start": 89, "end": 93, "id": 16, "annotation": null}, {"text": ",", "start": 94, "end": 95, "id": 17, "annotation": null}, {"text": "0.35", "start": 96, "end": 100, "id": 18, "annotation": null}, {"text": ",", "start": 101, "end": 102, "id": 19, "annotation": null}, {"text": "0.50", "start": 103, "end": 107, "id": 20, "annotation": null}, {"text": ",", "start": 108, "end": 109, "id": 21, "annotation": null}, {"text": "0.65", "start": 110, "end": 114, "id": 22, "annotation": null}, {"text": ",", "start": 115, "end": 116, "id": 23, "annotation": null}, {"text": "0.85", "start": 117, "end": 121, "id": 24, "annotation": null}, {"text": ",", "start": 122, "end": 123, "id": 25, "annotation": null}, {"text": "1", "start": 124, "end": 125, "id": 26, "annotation": null}, {"text": ")", "start": 126, "end": 127, "id": 27, "annotation": "BASEMAT"}, {"text": "mixed", "start": 128, "end": 133, "id": 28, "annotation": null}, {"text": "crystals", "start": 134, "end": 142, "id": 29, "annotation": null}, {"text": "exposed", "start": 143, "end": 150, "id": 30, "annotation": null}, {"text": "to", "start": 151, "end": 153, "id": 31, "annotation": null}, {"text": "gamma", "start": 154, "end": 159, "id": 32, "annotation": null}, {"text": "radiation", "start": 160, "end": 169, "id": 33, "annotation": null}, {"text": "at", "start": 170, "end": 172, "id": 34, "annotation": null}, {"text": "different", "start": 173, "end": 182, "id": 35, "annotation": null}, {"text": "doses", "start": 183, "end": 188, "id": 36, "annotation": null}, {"text": "from", "start": 189, "end": 193, "id": 37, "annotation": null}, {"text": "60Co", "start": 194, "end": 198, "id": 38, "annotation": null}, {"text": "is", "start": 199, "end": 201, "id": 39, "annotation": null}, {"text": "reported", "start": 202, "end": 210, "id": 40, "annotation": null}, {"text": ".", "start": 211, "end": 212, "id": 41, "annotation": null}], [{"text": "The", "start": 213, "end": 216, "id": 42, "annotation": null}, {"text": "TL", "start": 217, "end": 219, "id": 43, "annotation": null}, {"text": "glow", "start": 220, "end": 224, "id": 44, "annotation": null}, {"text": "curves", "start": 225, "end": 231, "id": 45, "annotation": null}, {"text": "of", "start": 232, "end": 234, "id": 46, "annotation": null}, {"text": "KCl1-x", "start": 235, "end": 241, "id": 47, "annotation": "BASEMAT"}, {"text": "Brx", "start": 242, "end": 245, "id": 48, "annotation": "BASEMAT"}, {"text": ":", "start": 246, "end": 247, "id": 49, "annotation": null}, {"text": "Pb2", "start": 248, "end": 251, "id": 50, "annotation": "DOPANT"}, {"text": "+", "start": 252, "end": 253, "id": 51, "annotation": "DOPANT"}, {"text": "crystal", "start": 254, "end": 261, "id": 52, "annotation": null}, {"text": "exposed", "start": 262, "end": 269, "id": 53, "annotation": null}, {"text": "in", "start": 270, "end": 272, "id": 54, "annotation": null}, {"text": "the", "start": 273, "end": 276, "id": 55, "annotation": null}, {"text": "range", "start": 277, "end": 282, "id": 56, "annotation": null}, {"text": "of", "start": 283, "end": 285, "id": 57, "annotation": null}, {"text": "0", "start": 286, "end": 287, "id": 58, "annotation": null}, {"text": "-", "start": 288, "end": 289, "id": 59, "annotation": null}, {"text": "140", "start": 290, "end": 293, "id": 60, "annotation": null}, {"text": "Gy", "start": 294, "end": 296, "id": 61, "annotation": null}, {"text": "is", "start": 297, "end": 299, "id": 62, "annotation": null}, {"text": "strongly", "start": 300, "end": 308, "id": 63, "annotation": null}, {"text": "dependent", "start": 309, "end": 318, "id": 64, "annotation": null}, {"text": "on", "start": 319, "end": 321, "id": 65, "annotation": null}, {"text": "composition", "start": 322, "end": 333, "id": 66, "annotation": null}, {"text": "X.", "start": 334, "end": 336, "id": 67, "annotation": null}], [{"text": "The", "start": 337, "end": 340, "id": 68, "annotation": null}, {"text": "maximum", "start": 341, "end": 348, "id": 69, "annotation": null}, {"text": "temperature", "start": 349, "end": 360, "id": 70, "annotation": null}, {"text": "of", "start": 361, "end": 363, "id": 71, "annotation": null}, {"text": "the", "start": 364, "end": 367, "id": 72, "annotation": null}, {"text": "main", "start": 368, "end": 372, "id": 73, "annotation": null}, {"text": "TL", "start": 373, "end": 375, "id": 74, "annotation": null}, {"text": "glow", "start": 376, "end": 380, "id": 75, "annotation": null}, {"text": "peak", "start": 381, "end": 385, "id": 76, "annotation": null}, {"text": "was", "start": 386, "end": 389, "id": 77, "annotation": null}, {"text": "found", "start": 390, "end": 395, "id": 78, "annotation": null}, {"text": "to", "start": 396, "end": 398, "id": 79, "annotation": null}, {"text": "shift", "start": 399, "end": 404, "id": 80, "annotation": null}, {"text": "towards", "start": 405, "end": 412, "id": 81, "annotation": null}, {"text": "lower", "start": 413, "end": 418, "id": 82, "annotation": null}, {"text": "temperatures", "start": 419, "end": 431, "id": 83, "annotation": null}, {"text": "as", "start": 432, "end": 434, "id": 84, "annotation": null}, {"text": "composition", "start": 435, "end": 446, "id": 85, "annotation": null}, {"text": "X", "start": 447, "end": 448, "id": 86, "annotation": null}, {"text": "increased", "start": 449, "end": 458, "id": 87, "annotation": null}, {"text": "and", "start": 459, "end": 462, "id": 88, "annotation": null}, {"text": "a", "start": 463, "end": 464, "id": 89, "annotation": null}, {"text": "significant", "start": 465, "end": 476, "id": 90, "annotation": null}, {"text": "enhancement", "start": 477, "end": 488, "id": 91, "annotation": null}, {"text": "of", "start": 489, "end": 491, "id": 92, "annotation": null}, {"text": "the", "start": 492, "end": 495, "id": 93, "annotation": null}, {"text": "TL", "start": 496, "end": 498, "id": 94, "annotation": null}, {"text": "efficiency", "start": 499, "end": 509, "id": 95, "annotation": null}, {"text": "in", "start": 510, "end": 512, "id": 96, "annotation": null}, {"text": "KCl1-xBrx", "start": 513, "end": 522, "id": 97, "annotation": "BASEMAT"}, {"text": ":", "start": 523, "end": 524, "id": 98, "annotation": null}, {"text": "Pb2", "start": 525, "end": 528, "id": 99, "annotation": "DOPANT"}, {"text": "+", "start": 529, "end": 530, "id": 100, "annotation": "DOPANT"}, {"text": "was", "start": 531, "end": 534, "id": 101, "annotation": null}, {"text": "found", "start": 535, "end": 540, "id": 102, "annotation": null}, {"text": "for", "start": 541, "end": 544, "id": 103, "annotation": null}, {"text": "X", "start": 545, "end": 546, "id": 104, "annotation": null}, {"text": "=", "start": 547, "end": 548, "id": 105, "annotation": null}, {"text": "0.50", "start": 549, "end": 553, "id": 106, "annotation": null}, {"text": "which", "start": 554, "end": 559, "id": 107, "annotation": null}, {"text": "is", "start": 560, "end": 562, "id": 108, "annotation": null}, {"text": "attributed", "start": 563, "end": 573, "id": 109, "annotation": null}, {"text": "to", "start": 574, "end": 576, "id": 110, "annotation": null}, {"text": "an", "start": 577, "end": 579, "id": 111, "annotation": null}, {"text": "increase", "start": 580, "end": 588, "id": 112, "annotation": null}, {"text": "in", "start": 589, "end": 591, "id": 113, "annotation": null}, {"text": "the", "start": 592, "end": 595, "id": 114, "annotation": null}, {"text": "vacancy", "start": 596, "end": 603, "id": 115, "annotation": null}, {"text": "concentration", "start": 604, "end": 617, "id": 116, "annotation": null}, {"text": "of", "start": 618, "end": 620, "id": 117, "annotation": null}, {"text": "the", "start": 621, "end": 624, "id": 118, "annotation": null}, {"text": "mixed", "start": 625, "end": 630, "id": 119, "annotation": null}, {"text": "halides", "start": 631, "end": 638, "id": 120, "annotation": null}, {"text": "at", "start": 639, "end": 641, "id": 121, "annotation": null}, {"text": "middle", "start": 642, "end": 648, "id": 122, "annotation": null}, {"text": "composition", "start": 649, "end": 660, "id": 123, "annotation": null}, {"text": ".", "start": 661, "end": 662, "id": 124, "annotation": null}], [{"text": "The", "start": 663, "end": 666, "id": 125, "annotation": null}, {"text": "participation", "start": 667, "end": 680, "id": 126, "annotation": null}, {"text": "of", "start": 681, "end": 683, "id": 127, "annotation": null}, {"text": "the", "start": 684, "end": 687, "id": 128, "annotation": null}, {"text": "F", "start": 688, "end": 689, "id": 129, "annotation": null}, {"text": "-", "start": 690, "end": 691, "id": 130, "annotation": null}, {"text": "centre", "start": 692, "end": 698, "id": 131, "annotation": null}, {"text": "in", "start": 699, "end": 701, "id": 132, "annotation": null}, {"text": "the", "start": 702, "end": 705, "id": 133, "annotation": null}, {"text": "TL", "start": 706, "end": 708, "id": 134, "annotation": null}, {"text": "phenomenon", "start": 709, "end": 719, "id": 135, "annotation": null}, {"text": "particularly", "start": 720, "end": 732, "id": 136, "annotation": null}, {"text": "related", "start": 733, "end": 740, "id": 137, "annotation": null}, {"text": "to", "start": 741, "end": 743, "id": 138, "annotation": null}, {"text": "the", "start": 744, "end": 747, "id": 139, "annotation": null}, {"text": "main", "start": 748, "end": 752, "id": 140, "annotation": null}, {"text": "TL", "start": 753, "end": 755, "id": 141, "annotation": null}, {"text": "glow", "start": 756, "end": 760, "id": 142, "annotation": null}, {"text": "peak", "start": 761, "end": 765, "id": 143, "annotation": null}, {"text": "observed", "start": 766, "end": 774, "id": 144, "annotation": null}, {"text": "in", "start": 775, "end": 777, "id": 145, "annotation": null}, {"text": "mixed", "start": 778, "end": 783, "id": 146, "annotation": null}, {"text": "samples", "start": 784, "end": 791, "id": 147, "annotation": null}, {"text": "was", "start": 792, "end": 795, "id": 148, "annotation": null}, {"text": "also", "start": 796, "end": 800, "id": 149, "annotation": null}, {"text": "confirmed", "start": 801, "end": 810, "id": 150, "annotation": null}, {"text": ".", "start": 811, "end": 812, "id": 151, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "The thermoluminescence (TL) behaviour of solid solutions of lead doped KCl1-xBrx (X = 0.02, 0.35, 0.50, 0.65, 0.85, 1) mixed crystals exposed to gamma radiation at different doses from 60Co is reported. The TL glow curves of KCl1-x Brx:Pb2+ crystal exposed in the range of 0-140 Gy is strongly dependent on composition X. The maximum temperature of the main TL glow peak was found to shift towards lower temperatures as composition X increased and a significant enhancement of the TL efficiency in KCl1-xBrx:Pb2+ was found for X = 0.50 which is attributed to an increase in the vacancy concentration of the mixed halides at middle composition. The participation of the F-centre in the TL phenomenon particularly related to the main TL glow peak observed in mixed samples was also confirmed.", "meta": {"doi": "10.1093/rpd/nci575"}, "_input_hash": -479563399, "_task_hash": -898485444, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "thermoluminescence", "start": 4, "end": 22, "id": 1, "annotation": null}, {"text": "(", "start": 23, "end": 24, "id": 2, "annotation": null}, {"text": "TL", "start": 25, "end": 27, "id": 3, "annotation": null}, {"text": ")", "start": 28, "end": 29, "id": 4, "annotation": null}, {"text": "behaviour", "start": 30, "end": 39, "id": 5, "annotation": null}, {"text": "of", "start": 40, "end": 42, "id": 6, "annotation": null}, {"text": "solid", "start": 43, "end": 48, "id": 7, "annotation": null}, {"text": "solutions", "start": 49, "end": 58, "id": 8, "annotation": null}, {"text": "of", "start": 59, "end": 61, "id": 9, "annotation": null}, {"text": "lead", "start": 62, "end": 66, "id": 10, "annotation": "DOPANT"}, {"text": "doped", "start": 67, "end": 72, "id": 11, "annotation": null}, {"text": "KCl1-xBrx", "start": 73, "end": 82, "id": 12, "annotation": "BASEMAT"}, {"text": "(", "start": 83, "end": 84, "id": 13, "annotation": "BASEMAT"}, {"text": "X", "start": 85, "end": 86, "id": 14, "annotation": "BASEMAT"}, {"text": "=", "start": 87, "end": 88, "id": 15, "annotation": "BASEMAT"}, {"text": "0.02", "start": 89, "end": 93, "id": 16, "annotation": "BASEMAT"}, {"text": ",", "start": 94, "end": 95, "id": 17, "annotation": "BASEMAT"}, {"text": "0.35", "start": 96, "end": 100, "id": 18, "annotation": "BASEMAT"}, {"text": ",", "start": 101, "end": 102, "id": 19, "annotation": "BASEMAT"}, {"text": "0.50", "start": 103, "end": 107, "id": 20, "annotation": "BASEMAT"}, {"text": ",", "start": 108, "end": 109, "id": 21, "annotation": "BASEMAT"}, {"text": "0.65", "start": 110, "end": 114, "id": 22, "annotation": "BASEMAT"}, {"text": ",", "start": 115, "end": 116, "id": 23, "annotation": "BASEMAT"}, {"text": "0.85", "start": 117, "end": 121, "id": 24, "annotation": "BASEMAT"}, {"text": ",", "start": 122, "end": 123, "id": 25, "annotation": "BASEMAT"}, {"text": "1", "start": 124, "end": 125, "id": 26, "annotation": "BASEMAT"}, {"text": ")", "start": 126, "end": 127, "id": 27, "annotation": "BASEMAT"}, {"text": "mixed", "start": 128, "end": 133, "id": 28, "annotation": null}, {"text": "crystals", "start": 134, "end": 142, "id": 29, "annotation": null}, {"text": "exposed", "start": 143, "end": 150, "id": 30, "annotation": null}, {"text": "to", "start": 151, "end": 153, "id": 31, "annotation": null}, {"text": "gamma", "start": 154, "end": 159, "id": 32, "annotation": null}, {"text": "radiation", "start": 160, "end": 169, "id": 33, "annotation": null}, {"text": "at", "start": 170, "end": 172, "id": 34, "annotation": null}, {"text": "different", "start": 173, "end": 182, "id": 35, "annotation": null}, {"text": "doses", "start": 183, "end": 188, "id": 36, "annotation": null}, {"text": "from", "start": 189, "end": 193, "id": 37, "annotation": null}, {"text": "60Co", "start": 194, "end": 198, "id": 38, "annotation": null}, {"text": "is", "start": 199, "end": 201, "id": 39, "annotation": null}, {"text": "reported", "start": 202, "end": 210, "id": 40, "annotation": null}, {"text": ".", "start": 211, "end": 212, "id": 41, "annotation": null}], [{"text": "The", "start": 213, "end": 216, "id": 42, "annotation": null}, {"text": "TL", "start": 217, "end": 219, "id": 43, "annotation": null}, {"text": "glow", "start": 220, "end": 224, "id": 44, "annotation": null}, {"text": "curves", "start": 225, "end": 231, "id": 45, "annotation": null}, {"text": "of", "start": 232, "end": 234, "id": 46, "annotation": null}, {"text": "KCl1-x", "start": 235, "end": 241, "id": 47, "annotation": "BASEMAT"}, {"text": "Brx", "start": 242, "end": 245, "id": 48, "annotation": "BASEMAT"}, {"text": ":", "start": 246, "end": 247, "id": 49, "annotation": null}, {"text": "Pb2", "start": 248, "end": 251, "id": 50, "annotation": "DOPANT"}, {"text": "+", "start": 252, "end": 253, "id": 51, "annotation": "DOPANT"}, {"text": "crystal", "start": 254, "end": 261, "id": 52, "annotation": null}, {"text": "exposed", "start": 262, "end": 269, "id": 53, "annotation": null}, {"text": "in", "start": 270, "end": 272, "id": 54, "annotation": null}, {"text": "the", "start": 273, "end": 276, "id": 55, "annotation": null}, {"text": "range", "start": 277, "end": 282, "id": 56, "annotation": null}, {"text": "of", "start": 283, "end": 285, "id": 57, "annotation": null}, {"text": "0", "start": 286, "end": 287, "id": 58, "annotation": null}, {"text": "-", "start": 288, "end": 289, "id": 59, "annotation": null}, {"text": "140", "start": 290, "end": 293, "id": 60, "annotation": null}, {"text": "Gy", "start": 294, "end": 296, "id": 61, "annotation": null}, {"text": "is", "start": 297, "end": 299, "id": 62, "annotation": null}, {"text": "strongly", "start": 300, "end": 308, "id": 63, "annotation": null}, {"text": "dependent", "start": 309, "end": 318, "id": 64, "annotation": null}, {"text": "on", "start": 319, "end": 321, "id": 65, "annotation": null}, {"text": "composition", "start": 322, "end": 333, "id": 66, "annotation": null}, {"text": "X.", "start": 334, "end": 336, "id": 67, "annotation": null}], [{"text": "The", "start": 337, "end": 340, "id": 68, "annotation": null}, {"text": "maximum", "start": 341, "end": 348, "id": 69, "annotation": null}, {"text": "temperature", "start": 349, "end": 360, "id": 70, "annotation": null}, {"text": "of", "start": 361, "end": 363, "id": 71, "annotation": null}, {"text": "the", "start": 364, "end": 367, "id": 72, "annotation": null}, {"text": "main", "start": 368, "end": 372, "id": 73, "annotation": null}, {"text": "TL", "start": 373, "end": 375, "id": 74, "annotation": null}, {"text": "glow", "start": 376, "end": 380, "id": 75, "annotation": null}, {"text": "peak", "start": 381, "end": 385, "id": 76, "annotation": null}, {"text": "was", "start": 386, "end": 389, "id": 77, "annotation": null}, {"text": "found", "start": 390, "end": 395, "id": 78, "annotation": null}, {"text": "to", "start": 396, "end": 398, "id": 79, "annotation": null}, {"text": "shift", "start": 399, "end": 404, "id": 80, "annotation": null}, {"text": "towards", "start": 405, "end": 412, "id": 81, "annotation": null}, {"text": "lower", "start": 413, "end": 418, "id": 82, "annotation": null}, {"text": "temperatures", "start": 419, "end": 431, "id": 83, "annotation": null}, {"text": "as", "start": 432, "end": 434, "id": 84, "annotation": null}, {"text": "composition", "start": 435, "end": 446, "id": 85, "annotation": null}, {"text": "X", "start": 447, "end": 448, "id": 86, "annotation": null}, {"text": "increased", "start": 449, "end": 458, "id": 87, "annotation": null}, {"text": "and", "start": 459, "end": 462, "id": 88, "annotation": null}, {"text": "a", "start": 463, "end": 464, "id": 89, "annotation": null}, {"text": "significant", "start": 465, "end": 476, "id": 90, "annotation": null}, {"text": "enhancement", "start": 477, "end": 488, "id": 91, "annotation": null}, {"text": "of", "start": 489, "end": 491, "id": 92, "annotation": null}, {"text": "the", "start": 492, "end": 495, "id": 93, "annotation": null}, {"text": "TL", "start": 496, "end": 498, "id": 94, "annotation": null}, {"text": "efficiency", "start": 499, "end": 509, "id": 95, "annotation": null}, {"text": "in", "start": 510, "end": 512, "id": 96, "annotation": null}, {"text": "KCl1-xBrx", "start": 513, "end": 522, "id": 97, "annotation": "BASEMAT"}, {"text": ":", "start": 523, "end": 524, "id": 98, "annotation": null}, {"text": "Pb2", "start": 525, "end": 528, "id": 99, "annotation": "DOPANT"}, {"text": "+", "start": 529, "end": 530, "id": 100, "annotation": "DOPANT"}, {"text": "was", "start": 531, "end": 534, "id": 101, "annotation": null}, {"text": "found", "start": 535, "end": 540, "id": 102, "annotation": null}, {"text": "for", "start": 541, "end": 544, "id": 103, "annotation": null}, {"text": "X", "start": 545, "end": 546, "id": 104, "annotation": null}, {"text": "=", "start": 547, "end": 548, "id": 105, "annotation": null}, {"text": "0.50", "start": 549, "end": 553, "id": 106, "annotation": null}, {"text": "which", "start": 554, "end": 559, "id": 107, "annotation": null}, {"text": "is", "start": 560, "end": 562, "id": 108, "annotation": null}, {"text": "attributed", "start": 563, "end": 573, "id": 109, "annotation": null}, {"text": "to", "start": 574, "end": 576, "id": 110, "annotation": null}, {"text": "an", "start": 577, "end": 579, "id": 111, "annotation": null}, {"text": "increase", "start": 580, "end": 588, "id": 112, "annotation": null}, {"text": "in", "start": 589, "end": 591, "id": 113, "annotation": null}, {"text": "the", "start": 592, "end": 595, "id": 114, "annotation": null}, {"text": "vacancy", "start": 596, "end": 603, "id": 115, "annotation": null}, {"text": "concentration", "start": 604, "end": 617, "id": 116, "annotation": null}, {"text": "of", "start": 618, "end": 620, "id": 117, "annotation": null}, {"text": "the", "start": 621, "end": 624, "id": 118, "annotation": null}, {"text": "mixed", "start": 625, "end": 630, "id": 119, "annotation": null}, {"text": "halides", "start": 631, "end": 638, "id": 120, "annotation": null}, {"text": "at", "start": 639, "end": 641, "id": 121, "annotation": null}, {"text": "middle", "start": 642, "end": 648, "id": 122, "annotation": null}, {"text": "composition", "start": 649, "end": 660, "id": 123, "annotation": null}, {"text": ".", "start": 661, "end": 662, "id": 124, "annotation": null}], [{"text": "The", "start": 663, "end": 666, "id": 125, "annotation": null}, {"text": "participation", "start": 667, "end": 680, "id": 126, "annotation": null}, {"text": "of", "start": 681, "end": 683, "id": 127, "annotation": null}, {"text": "the", "start": 684, "end": 687, "id": 128, "annotation": null}, {"text": "F", "start": 688, "end": 689, "id": 129, "annotation": null}, {"text": "-", "start": 690, "end": 691, "id": 130, "annotation": null}, {"text": "centre", "start": 692, "end": 698, "id": 131, "annotation": null}, {"text": "in", "start": 699, "end": 701, "id": 132, "annotation": null}, {"text": "the", "start": 702, "end": 705, "id": 133, "annotation": null}, {"text": "TL", "start": 706, "end": 708, "id": 134, "annotation": null}, {"text": "phenomenon", "start": 709, "end": 719, "id": 135, "annotation": null}, {"text": "particularly", "start": 720, "end": 732, "id": 136, "annotation": null}, {"text": "related", "start": 733, "end": 740, "id": 137, "annotation": null}, {"text": "to", "start": 741, "end": 743, "id": 138, "annotation": null}, {"text": "the", "start": 744, "end": 747, "id": 139, "annotation": null}, {"text": "main", "start": 748, "end": 752, "id": 140, "annotation": null}, {"text": "TL", "start": 753, "end": 755, "id": 141, "annotation": null}, {"text": "glow", "start": 756, "end": 760, "id": 142, "annotation": null}, {"text": "peak", "start": 761, "end": 765, "id": 143, "annotation": null}, {"text": "observed", "start": 766, "end": 774, "id": 144, "annotation": null}, {"text": "in", "start": 775, "end": 777, "id": 145, "annotation": null}, {"text": "mixed", "start": 778, "end": 783, "id": 146, "annotation": null}, {"text": "samples", "start": 784, "end": 791, "id": 147, "annotation": null}, {"text": "was", "start": 792, "end": 795, "id": 148, "annotation": null}, {"text": "also", "start": 796, "end": 800, "id": 149, "annotation": null}, {"text": "confirmed", "start": 801, "end": 810, "id": 150, "annotation": null}, {"text": ".", "start": 811, "end": 812, "id": 151, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Using the augmented spherical wave method, the electronic structure and magnetic properties of the rutile SnO2 doped with single and double impurities: Sn1\u2212xMnxO2, Sn1\u2212xWxO2, and Sn1\u22122xMnxWxO2 with x=0.0625, have been studied. The scalar-relativistic implementation with a generalized gradient approximation functional has been used for treating the effects of exchange and correlation. The ground state of Mn-, and W-doped SnO2 systems have a total magnetic moments of 3 and 2\u03bcB, respectively. The half-metallic nature appears in Sn1\u22122xMnxWxO2, which makes them suitable as spintronic systems with total magnetic moment of 5\u03bcB. The advantages of doping SnO2 with double impurities are investigated in this work. The total moment of the system, the local magnetic moments of the impurities, and their oxidation states are also discussed. Since there are two possible couplings between the impurities, we studied both configurations (ferromagnetic and antiferromagnetic) for double-impurities-doped SnO2. Magnetic properties and interatomic exchange have been computed for various distances between Mn and W. The indirect exchange between double impurities has similarities with the Zener mechanism in transition metal oxides. Based on the interaction between localized moments, via hybridization between impurities orbitals with the host oxygen, a double exchange mechanism is proposed to explain the ferromagnetism of our system.", "meta": {"doi": "10.1016/j.jmmm.2011.06.021"}, "_input_hash": 390328675, "_task_hash": 925084578, "tokens": [[{"text": "Using", "start": 0, "end": 5, "id": 0, "annotation": null}, {"text": "the", "start": 6, "end": 9, "id": 1, "annotation": null}, {"text": "augmented", "start": 10, "end": 19, "id": 2, "annotation": null}, {"text": "spherical", "start": 20, "end": 29, "id": 3, "annotation": null}, {"text": "wave", "start": 30, "end": 34, "id": 4, "annotation": null}, {"text": "method", "start": 35, "end": 41, "id": 5, "annotation": null}, {"text": ",", "start": 42, "end": 43, "id": 6, "annotation": null}, {"text": "the", "start": 44, "end": 47, "id": 7, "annotation": null}, {"text": "electronic", "start": 48, "end": 58, "id": 8, "annotation": null}, {"text": "structure", "start": 59, "end": 68, "id": 9, "annotation": null}, {"text": "and", "start": 69, "end": 72, "id": 10, "annotation": null}, {"text": "magnetic", "start": 73, "end": 81, "id": 11, "annotation": null}, {"text": "properties", "start": 82, "end": 92, "id": 12, "annotation": null}, {"text": "of", "start": 93, "end": 95, "id": 13, "annotation": null}, {"text": "the", "start": 96, "end": 99, "id": 14, "annotation": null}, {"text": "rutile", "start": 100, "end": 106, "id": 15, "annotation": null}, {"text": "SnO2", "start": 107, "end": 111, "id": 16, "annotation": "BASEMAT"}, {"text": "doped", "start": 112, "end": 117, "id": 17, "annotation": null}, {"text": "with", "start": 118, "end": 122, "id": 18, "annotation": null}, {"text": "single", "start": 123, "end": 129, "id": 19, "annotation": "DOPANT"}, {"text": "and", "start": 130, "end": 133, "id": 20, "annotation": null}, {"text": "double", "start": 134, "end": 140, "id": 21, "annotation": "DOPANT"}, {"text": "impurities", "start": 141, "end": 151, "id": 22, "annotation": "DOPANT"}, {"text": ":", "start": 152, "end": 153, "id": 23, "annotation": null}, {"text": "Sn1\u2212xMnxO2", "start": 154, "end": 164, "id": 24, "annotation": null}, {"text": ",", "start": 165, "end": 166, "id": 25, "annotation": null}, {"text": "Sn1\u2212xWxO2", "start": 167, "end": 176, "id": 26, "annotation": null}, {"text": ",", "start": 177, "end": 178, "id": 27, "annotation": null}, {"text": "and", "start": 179, "end": 182, "id": 28, "annotation": null}, {"text": "Sn1\u22122xMnxWxO2", "start": 183, "end": 196, "id": 29, "annotation": null}, {"text": "with", "start": 197, "end": 201, "id": 30, "annotation": null}, {"text": "x=0.0625", "start": 202, "end": 210, "id": 31, "annotation": "DOPMODQ"}, {"text": ",", "start": 211, "end": 212, "id": 32, "annotation": null}, {"text": "have", "start": 213, "end": 217, "id": 33, "annotation": null}, {"text": "been", "start": 218, "end": 222, "id": 34, "annotation": null}, {"text": "studied", "start": 223, "end": 230, "id": 35, "annotation": null}, {"text": ".", "start": 231, "end": 232, "id": 36, "annotation": null}], [{"text": "The", "start": 233, "end": 236, "id": 37, "annotation": null}, {"text": "scalar", "start": 237, "end": 243, "id": 38, "annotation": null}, {"text": "-", "start": 244, "end": 245, "id": 39, "annotation": null}, {"text": "relativistic", "start": 246, "end": 258, "id": 40, "annotation": null}, {"text": "implementation", "start": 259, "end": 273, "id": 41, "annotation": null}, {"text": "with", "start": 274, "end": 278, "id": 42, "annotation": null}, {"text": "a", "start": 279, "end": 280, "id": 43, "annotation": null}, {"text": "generalized", "start": 281, "end": 292, "id": 44, "annotation": null}, {"text": "gradient", "start": 293, "end": 301, "id": 45, "annotation": null}, {"text": "approximation", "start": 302, "end": 315, "id": 46, "annotation": null}, {"text": "functional", "start": 316, "end": 326, "id": 47, "annotation": null}, {"text": "has", "start": 327, "end": 330, "id": 48, "annotation": null}, {"text": "been", "start": 331, "end": 335, "id": 49, "annotation": null}, {"text": "used", "start": 336, "end": 340, "id": 50, "annotation": null}, {"text": "for", "start": 341, "end": 344, "id": 51, "annotation": null}, {"text": "treating", "start": 345, "end": 353, "id": 52, "annotation": null}, {"text": "the", "start": 354, "end": 357, "id": 53, "annotation": null}, {"text": "effects", "start": 358, "end": 365, "id": 54, "annotation": null}, {"text": "of", "start": 366, "end": 368, "id": 55, "annotation": null}, {"text": "exchange", "start": 369, "end": 377, "id": 56, "annotation": null}, {"text": "and", "start": 378, "end": 381, "id": 57, "annotation": null}, {"text": "correlation", "start": 382, "end": 393, "id": 58, "annotation": null}, {"text": ".", "start": 394, "end": 395, "id": 59, "annotation": null}], [{"text": "The", "start": 396, "end": 399, "id": 60, "annotation": null}, {"text": "ground", "start": 400, "end": 406, "id": 61, "annotation": null}, {"text": "state", "start": 407, "end": 412, "id": 62, "annotation": null}, {"text": "of", "start": 413, "end": 415, "id": 63, "annotation": null}, {"text": "Mn-", "start": 416, "end": 419, "id": 64, "annotation": "DOPANT"}, {"text": ",", "start": 420, "end": 421, "id": 65, "annotation": null}, {"text": "and", "start": 422, "end": 425, "id": 66, "annotation": null}, {"text": "W", "start": 426, "end": 427, "id": 67, "annotation": "DOPANT"}, {"text": "-", "start": 428, "end": 429, "id": 68, "annotation": null}, {"text": "doped", "start": 430, "end": 435, "id": 69, "annotation": null}, {"text": "SnO2", "start": 436, "end": 440, "id": 70, "annotation": "BASEMAT"}, {"text": "systems", "start": 441, "end": 448, "id": 71, "annotation": null}, {"text": "have", "start": 449, "end": 453, "id": 72, "annotation": null}, {"text": "a", "start": 454, "end": 455, "id": 73, "annotation": null}, {"text": "total", "start": 456, "end": 461, "id": 74, "annotation": null}, {"text": "magnetic", "start": 462, "end": 470, "id": 75, "annotation": null}, {"text": "moments", "start": 471, "end": 478, "id": 76, "annotation": null}, {"text": "of", "start": 479, "end": 481, "id": 77, "annotation": null}, {"text": "3", "start": 482, "end": 483, "id": 78, "annotation": null}, {"text": "and", "start": 484, "end": 487, "id": 79, "annotation": null}, {"text": "2\u03bcB", "start": 488, "end": 491, "id": 80, "annotation": null}, {"text": ",", "start": 492, "end": 493, "id": 81, "annotation": null}, {"text": "respectively", "start": 494, "end": 506, "id": 82, "annotation": null}, {"text": ".", "start": 507, "end": 508, "id": 83, "annotation": null}], [{"text": "The", "start": 509, "end": 512, "id": 84, "annotation": null}, {"text": "half", "start": 513, "end": 517, "id": 85, "annotation": null}, {"text": "-", "start": 518, "end": 519, "id": 86, "annotation": null}, {"text": "metallic", "start": 520, "end": 528, "id": 87, "annotation": null}, {"text": "nature", "start": 529, "end": 535, "id": 88, "annotation": null}, {"text": "appears", "start": 536, "end": 543, "id": 89, "annotation": null}, {"text": "in", "start": 544, "end": 546, "id": 90, "annotation": null}, {"text": "Sn1\u22122xMnxWxO2", "start": 547, "end": 560, "id": 91, "annotation": null}, {"text": ",", "start": 561, "end": 562, "id": 92, "annotation": null}, {"text": "which", "start": 563, "end": 568, "id": 93, "annotation": null}, {"text": "makes", "start": 569, "end": 574, "id": 94, "annotation": null}, {"text": "them", "start": 575, "end": 579, "id": 95, "annotation": null}, {"text": "suitable", "start": 580, "end": 588, "id": 96, "annotation": null}, {"text": "as", "start": 589, "end": 591, "id": 97, "annotation": null}, {"text": "spintronic", "start": 592, "end": 602, "id": 98, "annotation": null}, {"text": "systems", "start": 603, "end": 610, "id": 99, "annotation": null}, {"text": "with", "start": 611, "end": 615, "id": 100, "annotation": null}, {"text": "total", "start": 616, "end": 621, "id": 101, "annotation": null}, {"text": "magnetic", "start": 622, "end": 630, "id": 102, "annotation": null}, {"text": "moment", "start": 631, "end": 637, "id": 103, "annotation": null}, {"text": "of", "start": 638, "end": 640, "id": 104, "annotation": null}, {"text": "5\u03bcB.", "start": 641, "end": 645, "id": 105, "annotation": null}], [{"text": "The", "start": 646, "end": 649, "id": 106, "annotation": null}, {"text": "advantages", "start": 650, "end": 660, "id": 107, "annotation": null}, {"text": "of", "start": 661, "end": 663, "id": 108, "annotation": null}, {"text": "doping", "start": 664, "end": 670, "id": 109, "annotation": null}, {"text": "SnO2", "start": 671, "end": 675, "id": 110, "annotation": "BASEMAT"}, {"text": "with", "start": 676, "end": 680, "id": 111, "annotation": null}, {"text": "double", "start": 681, "end": 687, "id": 112, "annotation": "DOPANT"}, {"text": "impurities", "start": 688, "end": 698, "id": 113, "annotation": "DOPANT"}, {"text": "are", "start": 699, "end": 702, "id": 114, "annotation": null}, {"text": "investigated", "start": 703, "end": 715, "id": 115, "annotation": null}, {"text": "in", "start": 716, "end": 718, "id": 116, "annotation": null}, {"text": "this", "start": 719, "end": 723, "id": 117, "annotation": null}, {"text": "work", "start": 724, "end": 728, "id": 118, "annotation": null}, {"text": ".", "start": 729, "end": 730, "id": 119, "annotation": null}], [{"text": "The", "start": 731, "end": 734, "id": 120, "annotation": null}, {"text": "total", "start": 735, "end": 740, "id": 121, "annotation": null}, {"text": "moment", "start": 741, "end": 747, "id": 122, "annotation": null}, {"text": "of", "start": 748, "end": 750, "id": 123, "annotation": null}, {"text": "the", "start": 751, "end": 754, "id": 124, "annotation": null}, {"text": "system", "start": 755, "end": 761, "id": 125, "annotation": null}, {"text": ",", "start": 762, "end": 763, "id": 126, "annotation": null}, {"text": "the", "start": 764, "end": 767, "id": 127, "annotation": null}, {"text": "local", "start": 768, "end": 773, "id": 128, "annotation": null}, {"text": "magnetic", "start": 774, "end": 782, "id": 129, "annotation": null}, {"text": "moments", "start": 783, "end": 790, "id": 130, "annotation": null}, {"text": "of", "start": 791, "end": 793, "id": 131, "annotation": null}, {"text": "the", "start": 794, "end": 797, "id": 132, "annotation": null}, {"text": "impurities", "start": 798, "end": 808, "id": 133, "annotation": null}, {"text": ",", "start": 809, "end": 810, "id": 134, "annotation": null}, {"text": "and", "start": 811, "end": 814, "id": 135, "annotation": null}, {"text": "their", "start": 815, "end": 820, "id": 136, "annotation": null}, {"text": "oxidation", "start": 821, "end": 830, "id": 137, "annotation": null}, {"text": "states", "start": 831, "end": 837, "id": 138, "annotation": null}, {"text": "are", "start": 838, "end": 841, "id": 139, "annotation": null}, {"text": "also", "start": 842, "end": 846, "id": 140, "annotation": null}, {"text": "discussed", "start": 847, "end": 856, "id": 141, "annotation": null}, {"text": ".", "start": 857, "end": 858, "id": 142, "annotation": null}], [{"text": "Since", "start": 859, "end": 864, "id": 143, "annotation": null}, {"text": "there", "start": 865, "end": 870, "id": 144, "annotation": null}, {"text": "are", "start": 871, "end": 874, "id": 145, "annotation": null}, {"text": "two", "start": 875, "end": 878, "id": 146, "annotation": null}, {"text": "possible", "start": 879, "end": 887, "id": 147, "annotation": null}, {"text": "couplings", "start": 888, "end": 897, "id": 148, "annotation": null}, {"text": "between", "start": 898, "end": 905, "id": 149, "annotation": null}, {"text": "the", "start": 906, "end": 909, "id": 150, "annotation": null}, {"text": "impurities", "start": 910, "end": 920, "id": 151, "annotation": null}, {"text": ",", "start": 921, "end": 922, "id": 152, "annotation": null}, {"text": "we", "start": 923, "end": 925, "id": 153, "annotation": null}, {"text": "studied", "start": 926, "end": 933, "id": 154, "annotation": null}, {"text": "both", "start": 934, "end": 938, "id": 155, "annotation": null}, {"text": "configurations", "start": 939, "end": 953, "id": 156, "annotation": null}, {"text": "(", "start": 954, "end": 955, "id": 157, "annotation": null}, {"text": "ferromagnetic", "start": 956, "end": 969, "id": 158, "annotation": null}, {"text": "and", "start": 970, "end": 973, "id": 159, "annotation": null}, {"text": "antiferromagnetic", "start": 974, "end": 991, "id": 160, "annotation": null}, {"text": ")", "start": 992, "end": 993, "id": 161, "annotation": null}, {"text": "for", "start": 994, "end": 997, "id": 162, "annotation": null}, {"text": "double", "start": 998, "end": 1004, "id": 163, "annotation": "DOPANT"}, {"text": "-", "start": 1005, "end": 1006, "id": 164, "annotation": null}, {"text": "impurities", "start": 1007, "end": 1017, "id": 165, "annotation": "DOPANT"}, {"text": "-", "start": 1018, "end": 1019, "id": 166, "annotation": null}, {"text": "doped", "start": 1020, "end": 1025, "id": 167, "annotation": null}, {"text": "SnO2", "start": 1026, "end": 1030, "id": 168, "annotation": "BASEMAT"}, {"text": ".", "start": 1031, "end": 1032, "id": 169, "annotation": null}], [{"text": "Magnetic", "start": 1033, "end": 1041, "id": 170, "annotation": null}, {"text": "properties", "start": 1042, "end": 1052, "id": 171, "annotation": null}, {"text": "and", "start": 1053, "end": 1056, "id": 172, "annotation": null}, {"text": "interatomic", "start": 1057, "end": 1068, "id": 173, "annotation": null}, {"text": "exchange", "start": 1069, "end": 1077, "id": 174, "annotation": null}, {"text": "have", "start": 1078, "end": 1082, "id": 175, "annotation": null}, {"text": "been", "start": 1083, "end": 1087, "id": 176, "annotation": null}, {"text": "computed", "start": 1088, "end": 1096, "id": 177, "annotation": null}, {"text": "for", "start": 1097, "end": 1100, "id": 178, "annotation": null}, {"text": "various", "start": 1101, "end": 1108, "id": 179, "annotation": null}, {"text": "distances", "start": 1109, "end": 1118, "id": 180, "annotation": null}, {"text": "between", "start": 1119, "end": 1126, "id": 181, "annotation": null}, {"text": "Mn", "start": 1127, "end": 1129, "id": 182, "annotation": null}, {"text": "and", "start": 1130, "end": 1133, "id": 183, "annotation": null}, {"text": "W.", "start": 1134, "end": 1136, "id": 184, "annotation": null}], [{"text": "The", "start": 1137, "end": 1140, "id": 185, "annotation": null}, {"text": "indirect", "start": 1141, "end": 1149, "id": 186, "annotation": null}, {"text": "exchange", "start": 1150, "end": 1158, "id": 187, "annotation": null}, {"text": "between", "start": 1159, "end": 1166, "id": 188, "annotation": null}, {"text": "double", "start": 1167, "end": 1173, "id": 189, "annotation": null}, {"text": "impurities", "start": 1174, "end": 1184, "id": 190, "annotation": null}, {"text": "has", "start": 1185, "end": 1188, "id": 191, "annotation": null}, {"text": "similarities", "start": 1189, "end": 1201, "id": 192, "annotation": null}, {"text": "with", "start": 1202, "end": 1206, "id": 193, "annotation": null}, {"text": "the", "start": 1207, "end": 1210, "id": 194, "annotation": null}, {"text": "Zener", "start": 1211, "end": 1216, "id": 195, "annotation": null}, {"text": "mechanism", "start": 1217, "end": 1226, "id": 196, "annotation": null}, {"text": "in", "start": 1227, "end": 1229, "id": 197, "annotation": null}, {"text": "transition", "start": 1230, "end": 1240, "id": 198, "annotation": null}, {"text": "metal", "start": 1241, "end": 1246, "id": 199, "annotation": null}, {"text": "oxides", "start": 1247, "end": 1253, "id": 200, "annotation": null}, {"text": ".", "start": 1254, "end": 1255, "id": 201, "annotation": null}], [{"text": "Based", "start": 1256, "end": 1261, "id": 202, "annotation": null}, {"text": "on", "start": 1262, "end": 1264, "id": 203, "annotation": null}, {"text": "the", "start": 1265, "end": 1268, "id": 204, "annotation": null}, {"text": "interaction", "start": 1269, "end": 1280, "id": 205, "annotation": null}, {"text": "between", "start": 1281, "end": 1288, "id": 206, "annotation": null}, {"text": "localized", "start": 1289, "end": 1298, "id": 207, "annotation": null}, {"text": "moments", "start": 1299, "end": 1306, "id": 208, "annotation": null}, {"text": ",", "start": 1307, "end": 1308, "id": 209, "annotation": null}, {"text": "via", "start": 1309, "end": 1312, "id": 210, "annotation": null}, {"text": "hybridization", "start": 1313, "end": 1326, "id": 211, "annotation": null}, {"text": "between", "start": 1327, "end": 1334, "id": 212, "annotation": null}, {"text": "impurities", "start": 1335, "end": 1345, "id": 213, "annotation": null}, {"text": "orbitals", "start": 1346, "end": 1354, "id": 214, "annotation": null}, {"text": "with", "start": 1355, "end": 1359, "id": 215, "annotation": null}, {"text": "the", "start": 1360, "end": 1363, "id": 216, "annotation": null}, {"text": "host", "start": 1364, "end": 1368, "id": 217, "annotation": null}, {"text": "oxygen", "start": 1369, "end": 1375, "id": 218, "annotation": null}, {"text": ",", "start": 1376, "end": 1377, "id": 219, "annotation": null}, {"text": "a", "start": 1378, "end": 1379, "id": 220, "annotation": null}, {"text": "double", "start": 1380, "end": 1386, "id": 221, "annotation": null}, {"text": "exchange", "start": 1387, "end": 1395, "id": 222, "annotation": null}, {"text": "mechanism", "start": 1396, "end": 1405, "id": 223, "annotation": null}, {"text": "is", "start": 1406, "end": 1408, "id": 224, "annotation": null}, {"text": "proposed", "start": 1409, "end": 1417, "id": 225, "annotation": null}, {"text": "to", "start": 1418, "end": 1420, "id": 226, "annotation": null}, {"text": "explain", "start": 1421, "end": 1428, "id": 227, "annotation": null}, {"text": "the", "start": 1429, "end": 1432, "id": 228, "annotation": null}, {"text": "ferromagnetism", "start": 1433, "end": 1447, "id": 229, "annotation": null}, {"text": "of", "start": 1448, "end": 1450, "id": 230, "annotation": null}, {"text": "our", "start": 1451, "end": 1454, "id": 231, "annotation": null}, {"text": "system", "start": 1455, "end": 1461, "id": 232, "annotation": null}, {"text": ".", "start": 1462, "end": 1463, "id": 233, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "In this study we present our preliminary report on the scintillation properties of new Ce-doped Tl2LaBr5 single crystal. Two zones vertical Bridgman technique is used for the growth of this compound. Pure and Ce-doped samples showed maximum emission peaks at 435nm and 415nm, respectively. Best light yield of 43,000\u00b14300ph/MeV with 6.3% (FWHM) energy resolution is obtained for 5% Ce-doped sample under \u03b3-ray excitation. Single exponential decay time constant of 25ns is observed for 5% Ce doped sample. Effective Z-number is found to be 67, therefore efficient detection of X- and \u03b3-ray will be possible. Preliminary results revealed that this compound will be an ideal candidate for the medical imaging techniques. Further investigations are under way for the determination of optimized conditions of this compound.", "meta": {"doi": "10.1016/j.nima.2017.01.012"}, "_input_hash": 1176047817, "_task_hash": -694451008, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "study", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": "we", "start": 14, "end": 16, "id": 3, "annotation": null}, {"text": "present", "start": 17, "end": 24, "id": 4, "annotation": null}, {"text": "our", "start": 25, "end": 28, "id": 5, "annotation": null}, {"text": "preliminary", "start": 29, "end": 40, "id": 6, "annotation": null}, {"text": "report", "start": 41, "end": 47, "id": 7, "annotation": null}, {"text": "on", "start": 48, "end": 50, "id": 8, "annotation": null}, {"text": "the", "start": 51, "end": 54, "id": 9, "annotation": null}, {"text": "scintillation", "start": 55, "end": 68, "id": 10, "annotation": null}, {"text": "properties", "start": 69, "end": 79, "id": 11, "annotation": null}, {"text": "of", "start": 80, "end": 82, "id": 12, "annotation": null}, {"text": "new", "start": 83, "end": 86, "id": 13, "annotation": null}, {"text": "Ce", "start": 87, "end": 89, "id": 14, "annotation": "DOPANT"}, {"text": "-", "start": 90, "end": 91, "id": 15, "annotation": null}, {"text": "doped", "start": 92, "end": 97, "id": 16, "annotation": null}, {"text": "Tl2LaBr5", "start": 98, "end": 106, "id": 17, "annotation": "BASEMAT"}, {"text": "single", "start": 107, "end": 113, "id": 18, "annotation": null}, {"text": "crystal", "start": 114, "end": 121, "id": 19, "annotation": null}, {"text": ".", "start": 122, "end": 123, "id": 20, "annotation": null}], [{"text": "Two", "start": 124, "end": 127, "id": 21, "annotation": null}, {"text": "zones", "start": 128, "end": 133, "id": 22, "annotation": null}, {"text": "vertical", "start": 134, "end": 142, "id": 23, "annotation": null}, {"text": "Bridgman", "start": 143, "end": 151, "id": 24, "annotation": null}, {"text": "technique", "start": 152, "end": 161, "id": 25, "annotation": null}, {"text": "is", "start": 162, "end": 164, "id": 26, "annotation": null}, {"text": "used", "start": 165, "end": 169, "id": 27, "annotation": null}, {"text": "for", "start": 170, "end": 173, "id": 28, "annotation": null}, {"text": "the", "start": 174, "end": 177, "id": 29, "annotation": null}, {"text": "growth", "start": 178, "end": 184, "id": 30, "annotation": null}, {"text": "of", "start": 185, "end": 187, "id": 31, "annotation": null}, {"text": "this", "start": 188, "end": 192, "id": 32, "annotation": null}, {"text": "compound", "start": 193, "end": 201, "id": 33, "annotation": null}, {"text": ".", "start": 202, "end": 203, "id": 34, "annotation": null}], [{"text": "Pure", "start": 204, "end": 208, "id": 35, "annotation": null}, {"text": "and", "start": 209, "end": 212, "id": 36, "annotation": null}, {"text": "Ce", "start": 213, "end": 215, "id": 37, "annotation": "DOPANT"}, {"text": "-", "start": 216, "end": 217, "id": 38, "annotation": null}, {"text": "doped", "start": 218, "end": 223, "id": 39, "annotation": null}, {"text": "samples", "start": 224, "end": 231, "id": 40, "annotation": "BASEMAT"}, {"text": "showed", "start": 232, "end": 238, "id": 41, "annotation": null}, {"text": "maximum", "start": 239, "end": 246, "id": 42, "annotation": null}, {"text": "emission", "start": 247, "end": 255, "id": 43, "annotation": null}, {"text": "peaks", "start": 256, "end": 261, "id": 44, "annotation": null}, {"text": "at", "start": 262, "end": 264, "id": 45, "annotation": null}, {"text": "435", "start": 265, "end": 268, "id": 46, "annotation": null}, {"text": "nm", "start": 269, "end": 271, "id": 47, "annotation": null}, {"text": "and", "start": 272, "end": 275, "id": 48, "annotation": null}, {"text": "415", "start": 276, "end": 279, "id": 49, "annotation": null}, {"text": "nm", "start": 280, "end": 282, "id": 50, "annotation": null}, {"text": ",", "start": 283, "end": 284, "id": 51, "annotation": null}, {"text": "respectively", "start": 285, "end": 297, "id": 52, "annotation": null}, {"text": ".", "start": 298, "end": 299, "id": 53, "annotation": null}], [{"text": "Best", "start": 300, "end": 304, "id": 54, "annotation": null}, {"text": "light", "start": 305, "end": 310, "id": 55, "annotation": null}, {"text": "yield", "start": 311, "end": 316, "id": 56, "annotation": null}, {"text": "of", "start": 317, "end": 319, "id": 57, "annotation": null}, {"text": "43,000\u00b14300ph", "start": 320, "end": 333, "id": 58, "annotation": null}, {"text": "/", "start": 334, "end": 335, "id": 59, "annotation": null}, {"text": "MeV", "start": 336, "end": 339, "id": 60, "annotation": null}, {"text": "with", "start": 340, "end": 344, "id": 61, "annotation": null}, {"text": "6.3", "start": 345, "end": 348, "id": 62, "annotation": null}, {"text": "%", "start": 349, "end": 350, "id": 63, "annotation": null}, {"text": "(", "start": 351, "end": 352, "id": 64, "annotation": null}, {"text": "FWHM", "start": 353, "end": 357, "id": 65, "annotation": null}, {"text": ")", "start": 358, "end": 359, "id": 66, "annotation": null}, {"text": "energy", "start": 360, "end": 366, "id": 67, "annotation": null}, {"text": "resolution", "start": 367, "end": 377, "id": 68, "annotation": null}, {"text": "is", "start": 378, "end": 380, "id": 69, "annotation": null}, {"text": "obtained", "start": 381, "end": 389, "id": 70, "annotation": null}, {"text": "for", "start": 390, "end": 393, "id": 71, "annotation": null}, {"text": "5", "start": 394, "end": 395, "id": 72, "annotation": "DOPMODQ"}, {"text": "%", "start": 396, "end": 397, "id": 73, "annotation": "DOPMODQ"}, {"text": "Ce", "start": 398, "end": 400, "id": 74, "annotation": "DOPANT"}, {"text": "-", "start": 401, "end": 402, "id": 75, "annotation": null}, {"text": "doped", "start": 403, "end": 408, "id": 76, "annotation": null}, {"text": "sample", "start": 409, "end": 415, "id": 77, "annotation": "BASEMAT"}, {"text": "under", "start": 416, "end": 421, "id": 78, "annotation": null}, {"text": "\u03b3", "start": 422, "end": 423, "id": 79, "annotation": null}, {"text": "-", "start": 424, "end": 425, "id": 80, "annotation": null}, {"text": "ray", "start": 426, "end": 429, "id": 81, "annotation": null}, {"text": "excitation", "start": 430, "end": 440, "id": 82, "annotation": null}, {"text": ".", "start": 441, "end": 442, "id": 83, "annotation": null}], [{"text": "Single", "start": 443, "end": 449, "id": 84, "annotation": null}, {"text": "exponential", "start": 450, "end": 461, "id": 85, "annotation": null}, {"text": "decay", "start": 462, "end": 467, "id": 86, "annotation": null}, {"text": "time", "start": 468, "end": 472, "id": 87, "annotation": null}, {"text": "constant", "start": 473, "end": 481, "id": 88, "annotation": null}, {"text": "of", "start": 482, "end": 484, "id": 89, "annotation": null}, {"text": "25ns", "start": 485, "end": 489, "id": 90, "annotation": null}, {"text": "is", "start": 490, "end": 492, "id": 91, "annotation": null}, {"text": "observed", "start": 493, "end": 501, "id": 92, "annotation": null}, {"text": "for", "start": 502, "end": 505, "id": 93, "annotation": null}, {"text": "5", "start": 506, "end": 507, "id": 94, "annotation": "DOPMODQ"}, {"text": "%", "start": 508, "end": 509, "id": 95, "annotation": "DOPMODQ"}, {"text": "Ce", "start": 510, "end": 512, "id": 96, "annotation": "DOPANT"}, {"text": "doped", "start": 513, "end": 518, "id": 97, "annotation": null}, {"text": "sample", "start": 519, "end": 525, "id": 98, "annotation": "BASEMAT"}, {"text": ".", "start": 526, "end": 527, "id": 99, "annotation": null}], [{"text": "Effective", "start": 528, "end": 537, "id": 100, "annotation": null}, {"text": "Z", "start": 538, "end": 539, "id": 101, "annotation": null}, {"text": "-", "start": 540, "end": 541, "id": 102, "annotation": null}, {"text": "number", "start": 542, "end": 548, "id": 103, "annotation": null}, {"text": "is", "start": 549, "end": 551, "id": 104, "annotation": null}, {"text": "found", "start": 552, "end": 557, "id": 105, "annotation": null}, {"text": "to", "start": 558, "end": 560, "id": 106, "annotation": null}, {"text": "be", "start": 561, "end": 563, "id": 107, "annotation": null}, {"text": "67", "start": 564, "end": 566, "id": 108, "annotation": null}, {"text": ",", "start": 567, "end": 568, "id": 109, "annotation": null}, {"text": "therefore", "start": 569, "end": 578, "id": 110, "annotation": null}, {"text": "efficient", "start": 579, "end": 588, "id": 111, "annotation": null}, {"text": "detection", "start": 589, "end": 598, "id": 112, "annotation": null}, {"text": "of", "start": 599, "end": 601, "id": 113, "annotation": null}, {"text": "X-", "start": 602, "end": 604, "id": 114, "annotation": null}, {"text": "and", "start": 605, "end": 608, "id": 115, "annotation": null}, {"text": "\u03b3", "start": 609, "end": 610, "id": 116, "annotation": null}, {"text": "-", "start": 611, "end": 612, "id": 117, "annotation": null}, {"text": "ray", "start": 613, "end": 616, "id": 118, "annotation": null}, {"text": "will", "start": 617, "end": 621, "id": 119, "annotation": null}, {"text": "be", "start": 622, "end": 624, "id": 120, "annotation": null}, {"text": "possible", "start": 625, "end": 633, "id": 121, "annotation": null}, {"text": ".", "start": 634, "end": 635, "id": 122, "annotation": null}], [{"text": "Preliminary", "start": 636, "end": 647, "id": 123, "annotation": null}, {"text": "results", "start": 648, "end": 655, "id": 124, "annotation": null}, {"text": "revealed", "start": 656, "end": 664, "id": 125, "annotation": null}, {"text": "that", "start": 665, "end": 669, "id": 126, "annotation": null}, {"text": "this", "start": 670, "end": 674, "id": 127, "annotation": null}, {"text": "compound", "start": 675, "end": 683, "id": 128, "annotation": null}, {"text": "will", "start": 684, "end": 688, "id": 129, "annotation": null}, {"text": "be", "start": 689, "end": 691, "id": 130, "annotation": null}, {"text": "an", "start": 692, "end": 694, "id": 131, "annotation": null}, {"text": "ideal", "start": 695, "end": 700, "id": 132, "annotation": null}, {"text": "candidate", "start": 701, "end": 710, "id": 133, "annotation": null}, {"text": "for", "start": 711, "end": 714, "id": 134, "annotation": null}, {"text": "the", "start": 715, "end": 718, "id": 135, "annotation": null}, {"text": "medical", "start": 719, "end": 726, "id": 136, "annotation": null}, {"text": "imaging", "start": 727, "end": 734, "id": 137, "annotation": null}, {"text": "techniques", "start": 735, "end": 745, "id": 138, "annotation": null}, {"text": ".", "start": 746, "end": 747, "id": 139, "annotation": null}], [{"text": "Further", "start": 748, "end": 755, "id": 140, "annotation": null}, {"text": "investigations", "start": 756, "end": 770, "id": 141, "annotation": null}, {"text": "are", "start": 771, "end": 774, "id": 142, "annotation": null}, {"text": "under", "start": 775, "end": 780, "id": 143, "annotation": null}, {"text": "way", "start": 781, "end": 784, "id": 144, "annotation": null}, {"text": "for", "start": 785, "end": 788, "id": 145, "annotation": null}, {"text": "the", "start": 789, "end": 792, "id": 146, "annotation": null}, {"text": "determination", "start": 793, "end": 806, "id": 147, "annotation": null}, {"text": "of", "start": 807, "end": 809, "id": 148, "annotation": null}, {"text": "optimized", "start": 810, "end": 819, "id": 149, "annotation": null}, {"text": "conditions", "start": 820, "end": 830, "id": 150, "annotation": null}, {"text": "of", "start": 831, "end": 833, "id": 151, "annotation": null}, {"text": "this", "start": 834, "end": 838, "id": 152, "annotation": null}, {"text": "compound", "start": 839, "end": 847, "id": 153, "annotation": null}, {"text": ".", "start": 848, "end": 849, "id": 154, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "We report on the luminescence and scintillation characterizations of cerium doped Cs2LiGdBr6 (CLGB) single crystal. This is a new scintillation material and belongs to elpasolite family. Single crystals of CLGB: Ce3+ with dimensions up to \u220510\u00d75mm3 are successfully grown by the Bridgman technique. Under X-ray excitation, broad emission band between 370 to 478nm wavelengths is obtained. Such emission is attributed to the cerium ion. At 662keV \u03b3-rays CLGB: Ce3+ shows energy resolutions of 7.1%, 9.4%, and 8.6% (FWHM) at 1%, 5%, and 10% Ce-concentrations, respectively. Light yield of CLGB depends on cerium concentration and maximum light yield of ~30,500ph/MeV is measured for 10% Ce sample crystal. Under \u03b3-ray excitation, CLGB: Ce3+ crystals showed three exponential decay time components.", "meta": {"doi": "10.1016/j.jlumin.2013.09.047"}, "_input_hash": 1978927496, "_task_hash": -632362730, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "report", "start": 3, "end": 9, "id": 1, "annotation": null}, {"text": "on", "start": 10, "end": 12, "id": 2, "annotation": null}, {"text": "the", "start": 13, "end": 16, "id": 3, "annotation": null}, {"text": "luminescence", "start": 17, "end": 29, "id": 4, "annotation": null}, {"text": "and", "start": 30, "end": 33, "id": 5, "annotation": null}, {"text": "scintillation", "start": 34, "end": 47, "id": 6, "annotation": null}, {"text": "characterizations", "start": 48, "end": 65, "id": 7, "annotation": null}, {"text": "of", "start": 66, "end": 68, "id": 8, "annotation": null}, {"text": "cerium", "start": 69, "end": 75, "id": 9, "annotation": "DOPANT"}, {"text": "doped", "start": 76, "end": 81, "id": 10, "annotation": null}, {"text": "Cs2LiGdBr6", "start": 82, "end": 92, "id": 11, "annotation": "BASEMAT"}, {"text": "(", "start": 93, "end": 94, "id": 12, "annotation": null}, {"text": "CLGB", "start": 95, "end": 99, "id": 13, "annotation": "BASEMAT"}, {"text": ")", "start": 100, "end": 101, "id": 14, "annotation": null}, {"text": "single", "start": 102, "end": 108, "id": 15, "annotation": null}, {"text": "crystal", "start": 109, "end": 116, "id": 16, "annotation": null}, {"text": ".", "start": 117, "end": 118, "id": 17, "annotation": null}], [{"text": "This", "start": 119, "end": 123, "id": 18, "annotation": null}, {"text": "is", "start": 124, "end": 126, "id": 19, "annotation": null}, {"text": "a", "start": 127, "end": 128, "id": 20, "annotation": null}, {"text": "new", "start": 129, "end": 132, "id": 21, "annotation": null}, {"text": "scintillation", "start": 133, "end": 146, "id": 22, "annotation": null}, {"text": "material", "start": 147, "end": 155, "id": 23, "annotation": null}, {"text": "and", "start": 156, "end": 159, "id": 24, "annotation": null}, {"text": "belongs", "start": 160, "end": 167, "id": 25, "annotation": null}, {"text": "to", "start": 168, "end": 170, "id": 26, "annotation": null}, {"text": "elpasolite", "start": 171, "end": 181, "id": 27, "annotation": null}, {"text": "family", "start": 182, "end": 188, "id": 28, "annotation": null}, {"text": ".", "start": 189, "end": 190, "id": 29, "annotation": null}], [{"text": "Single", "start": 191, "end": 197, "id": 30, "annotation": null}, {"text": "crystals", "start": 198, "end": 206, "id": 31, "annotation": null}, {"text": "of", "start": 207, "end": 209, "id": 32, "annotation": null}, {"text": "CLGB", "start": 210, "end": 214, "id": 33, "annotation": "BASEMAT"}, {"text": ":", "start": 215, "end": 216, "id": 34, "annotation": null}, {"text": "Ce3", "start": 217, "end": 220, "id": 35, "annotation": "DOPANT"}, {"text": "+", "start": 221, "end": 222, "id": 36, "annotation": "DOPANT"}, {"text": "with", "start": 223, "end": 227, "id": 37, "annotation": null}, {"text": "dimensions", "start": 228, "end": 238, "id": 38, "annotation": null}, {"text": "up", "start": 239, "end": 241, "id": 39, "annotation": null}, {"text": "to", "start": 242, "end": 244, "id": 40, "annotation": null}, {"text": "\u220510\u00d75mm3", "start": 245, "end": 253, "id": 41, "annotation": null}, {"text": "are", "start": 254, "end": 257, "id": 42, "annotation": null}, {"text": "successfully", "start": 258, "end": 270, "id": 43, "annotation": null}, {"text": "grown", "start": 271, "end": 276, "id": 44, "annotation": null}, {"text": "by", "start": 277, "end": 279, "id": 45, "annotation": null}, {"text": "the", "start": 280, "end": 283, "id": 46, "annotation": null}, {"text": "Bridgman", "start": 284, "end": 292, "id": 47, "annotation": null}, {"text": "technique", "start": 293, "end": 302, "id": 48, "annotation": null}, {"text": ".", "start": 303, "end": 304, "id": 49, "annotation": null}], [{"text": "Under", "start": 305, "end": 310, "id": 50, "annotation": null}, {"text": "X", "start": 311, "end": 312, "id": 51, "annotation": null}, {"text": "-", "start": 313, "end": 314, "id": 52, "annotation": null}, {"text": "ray", "start": 315, "end": 318, "id": 53, "annotation": null}, {"text": "excitation", "start": 319, "end": 329, "id": 54, "annotation": null}, {"text": ",", "start": 330, "end": 331, "id": 55, "annotation": null}, {"text": "broad", "start": 332, "end": 337, "id": 56, "annotation": null}, {"text": "emission", "start": 338, "end": 346, "id": 57, "annotation": null}, {"text": "band", "start": 347, "end": 351, "id": 58, "annotation": null}, {"text": "between", "start": 352, "end": 359, "id": 59, "annotation": null}, {"text": "370", "start": 360, "end": 363, "id": 60, "annotation": null}, {"text": "to", "start": 364, "end": 366, "id": 61, "annotation": null}, {"text": "478", "start": 367, "end": 370, "id": 62, "annotation": null}, {"text": "nm", "start": 371, "end": 373, "id": 63, "annotation": null}, {"text": "wavelengths", "start": 374, "end": 385, "id": 64, "annotation": null}, {"text": "is", "start": 386, "end": 388, "id": 65, "annotation": null}, {"text": "obtained", "start": 389, "end": 397, "id": 66, "annotation": null}, {"text": ".", "start": 398, "end": 399, "id": 67, "annotation": null}], [{"text": "Such", "start": 400, "end": 404, "id": 68, "annotation": null}, {"text": "emission", "start": 405, "end": 413, "id": 69, "annotation": null}, {"text": "is", "start": 414, "end": 416, "id": 70, "annotation": null}, {"text": "attributed", "start": 417, "end": 427, "id": 71, "annotation": null}, {"text": "to", "start": 428, "end": 430, "id": 72, "annotation": null}, {"text": "the", "start": 431, "end": 434, "id": 73, "annotation": null}, {"text": "cerium", "start": 435, "end": 441, "id": 74, "annotation": null}, {"text": "ion", "start": 442, "end": 445, "id": 75, "annotation": null}, {"text": ".", "start": 446, "end": 447, "id": 76, "annotation": null}], [{"text": "At", "start": 448, "end": 450, "id": 77, "annotation": null}, {"text": "662keV", "start": 451, "end": 457, "id": 78, "annotation": null}, {"text": "\u03b3", "start": 458, "end": 459, "id": 79, "annotation": null}, {"text": "-", "start": 460, "end": 461, "id": 80, "annotation": null}, {"text": "rays", "start": 462, "end": 466, "id": 81, "annotation": null}, {"text": "CLGB", "start": 467, "end": 471, "id": 82, "annotation": "BASEMAT"}, {"text": ":", "start": 472, "end": 473, "id": 83, "annotation": null}, {"text": "Ce3", "start": 474, "end": 477, "id": 84, "annotation": "DOPANT"}, {"text": "+", "start": 478, "end": 479, "id": 85, "annotation": "DOPANT"}, {"text": "shows", "start": 480, "end": 485, "id": 86, "annotation": null}, {"text": "energy", "start": 486, "end": 492, "id": 87, "annotation": null}, {"text": "resolutions", "start": 493, "end": 504, "id": 88, "annotation": null}, {"text": "of", "start": 505, "end": 507, "id": 89, "annotation": null}, {"text": "7.1", "start": 508, "end": 511, "id": 90, "annotation": null}, {"text": "%", "start": 512, "end": 513, "id": 91, "annotation": null}, {"text": ",", "start": 514, "end": 515, "id": 92, "annotation": null}, {"text": "9.4", "start": 516, "end": 519, "id": 93, "annotation": null}, {"text": "%", "start": 520, "end": 521, "id": 94, "annotation": null}, {"text": ",", "start": 522, "end": 523, "id": 95, "annotation": null}, {"text": "and", "start": 524, "end": 527, "id": 96, "annotation": null}, {"text": "8.6", "start": 528, "end": 531, "id": 97, "annotation": null}, {"text": "%", "start": 532, "end": 533, "id": 98, "annotation": null}, {"text": "(", "start": 534, "end": 535, "id": 99, "annotation": null}, {"text": "FWHM", "start": 536, "end": 540, "id": 100, "annotation": null}, {"text": ")", "start": 541, "end": 542, "id": 101, "annotation": null}, {"text": "at", "start": 543, "end": 545, "id": 102, "annotation": null}, {"text": "1", "start": 546, "end": 547, "id": 103, "annotation": "DOPMODQ"}, {"text": "%", "start": 548, "end": 549, "id": 104, "annotation": "DOPMODQ"}, {"text": ",", "start": 550, "end": 551, "id": 105, "annotation": null}, {"text": "5", "start": 552, "end": 553, "id": 106, "annotation": "DOPMODQ"}, {"text": "%", "start": 554, "end": 555, "id": 107, "annotation": "DOPMODQ"}, {"text": ",", "start": 556, "end": 557, "id": 108, "annotation": null}, {"text": "and", "start": 558, "end": 561, "id": 109, "annotation": null}, {"text": "10", "start": 562, "end": 564, "id": 110, "annotation": "DOPMODQ"}, {"text": "%", "start": 565, "end": 566, "id": 111, "annotation": "DOPMODQ"}, {"text": "Ce", "start": 567, "end": 569, "id": 112, "annotation": "DOPANT"}, {"text": "-", "start": 570, "end": 571, "id": 113, "annotation": null}, {"text": "concentrations", "start": 572, "end": 586, "id": 114, "annotation": null}, {"text": ",", "start": 587, "end": 588, "id": 115, "annotation": null}, {"text": "respectively", "start": 589, "end": 601, "id": 116, "annotation": null}, {"text": ".", "start": 602, "end": 603, "id": 117, "annotation": null}], [{"text": "Light", "start": 604, "end": 609, "id": 118, "annotation": null}, {"text": "yield", "start": 610, "end": 615, "id": 119, "annotation": null}, {"text": "of", "start": 616, "end": 618, "id": 120, "annotation": null}, {"text": "CLGB", "start": 619, "end": 623, "id": 121, "annotation": "BASEMAT"}, {"text": "depends", "start": 624, "end": 631, "id": 122, "annotation": null}, {"text": "on", "start": 632, "end": 634, "id": 123, "annotation": null}, {"text": "cerium", "start": 635, "end": 641, "id": 124, "annotation": "DOPANT"}, {"text": "concentration", "start": 642, "end": 655, "id": 125, "annotation": null}, {"text": "and", "start": 656, "end": 659, "id": 126, "annotation": null}, {"text": "maximum", "start": 660, "end": 667, "id": 127, "annotation": null}, {"text": "light", "start": 668, "end": 673, "id": 128, "annotation": null}, {"text": "yield", "start": 674, "end": 679, "id": 129, "annotation": null}, {"text": "of", "start": 680, "end": 682, "id": 130, "annotation": null}, {"text": "~30,500ph", "start": 683, "end": 692, "id": 131, "annotation": null}, {"text": "/", "start": 693, "end": 694, "id": 132, "annotation": null}, {"text": "MeV", "start": 695, "end": 698, "id": 133, "annotation": null}, {"text": "is", "start": 699, "end": 701, "id": 134, "annotation": null}, {"text": "measured", "start": 702, "end": 710, "id": 135, "annotation": null}, {"text": "for", "start": 711, "end": 714, "id": 136, "annotation": null}, {"text": "10", "start": 715, "end": 717, "id": 137, "annotation": "DOPMODQ"}, {"text": "%", "start": 718, "end": 719, "id": 138, "annotation": "DOPMODQ"}, {"text": "Ce", "start": 720, "end": 722, "id": 139, "annotation": "DOPANT"}, {"text": "sample", "start": 723, "end": 729, "id": 140, "annotation": null}, {"text": "crystal", "start": 730, "end": 737, "id": 141, "annotation": null}, {"text": ".", "start": 738, "end": 739, "id": 142, "annotation": null}], [{"text": "Under", "start": 740, "end": 745, "id": 143, "annotation": null}, {"text": "\u03b3", "start": 746, "end": 747, "id": 144, "annotation": null}, {"text": "-", "start": 748, "end": 749, "id": 145, "annotation": null}, {"text": "ray", "start": 750, "end": 753, "id": 146, "annotation": null}, {"text": "excitation", "start": 754, "end": 764, "id": 147, "annotation": null}, {"text": ",", "start": 765, "end": 766, "id": 148, "annotation": null}, {"text": "CLGB", "start": 767, "end": 771, "id": 149, "annotation": "BASEMAT"}, {"text": ":", "start": 772, "end": 773, "id": 150, "annotation": null}, {"text": "Ce3", "start": 774, "end": 777, "id": 151, "annotation": "DOPANT"}, {"text": "+", "start": 778, "end": 779, "id": 152, "annotation": "DOPANT"}, {"text": "crystals", "start": 780, "end": 788, "id": 153, "annotation": null}, {"text": "showed", "start": 789, "end": 795, "id": 154, "annotation": null}, {"text": "three", "start": 796, "end": 801, "id": 155, "annotation": null}, {"text": "exponential", "start": 802, "end": 813, "id": 156, "annotation": null}, {"text": "decay", "start": 814, "end": 819, "id": 157, "annotation": null}, {"text": "time", "start": 820, "end": 824, "id": 158, "annotation": null}, {"text": "components", "start": 825, "end": 835, "id": 159, "annotation": null}, {"text": ".", "start": 836, "end": 837, "id": 160, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "The recent progress in making blue-green semiconductor double-heterostructure (DH) injection lasers has come about directly from advances in p-type doping of ZnSe and related compounds, initially with Li, and more recently with N. This paper focuses on techniques we have used for characterizing these p-type II\u2013VI epilayers. The main electrical characterization technique employed is a small-signal AC admittance measurement as a function of both voltage and frequency. We use this to extract the net doping (NA \u2212 ND) and also to determine the epilayer conductivity as a function of temperature (\u03c3(T)). We use this and the general physical form of the mobility vs temperature to extract information about both the mobility and the compensation for our specific samples. The technique is shown to work well for p-type ZnSe : Li. We obtain the result that all such samples are substantially uncompensated, regardless of the ratio (NA \u2212 ND)/[Li]. From this we conclude that excess Li does not cause compensation, but rather passivation by the formation of Li substitutional- interstitial complexes. We measure the dissociation energy of the complex, which is about 0.7 eV, in good agreement with theory. For ZnSe : Li samples with few complexes, the maximum room-temperature hole mobility was about 36 cm2/V s and the peak mobility was about 155 cm2/V s at about 125 K; for samples with a high concentration of complexes, the transport was degraded. In the case of p-type ZnSe : N, transport results were similar to ZnSe : Li with a high concentration of complexes. This may be due to either complexes or other point defects in the epilayers and offers an explanation of the high turn-on voltage of DH lasers.", "meta": {"doi": "10.1016/0921-4526(93)90275-B"}, "_input_hash": 1336468911, "_task_hash": 1282802750, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "recent", "start": 4, "end": 10, "id": 1, "annotation": null}, {"text": "progress", "start": 11, "end": 19, "id": 2, "annotation": null}, {"text": "in", "start": 20, "end": 22, "id": 3, "annotation": null}, {"text": "making", "start": 23, "end": 29, "id": 4, "annotation": null}, {"text": "blue", "start": 30, "end": 34, "id": 5, "annotation": null}, {"text": "-", "start": 35, "end": 36, "id": 6, "annotation": null}, {"text": "green", "start": 37, "end": 42, "id": 7, "annotation": null}, {"text": "semiconductor", "start": 43, "end": 56, "id": 8, "annotation": null}, {"text": "double", "start": 57, "end": 63, "id": 9, "annotation": null}, {"text": "-", "start": 64, "end": 65, "id": 10, "annotation": null}, {"text": "heterostructure", "start": 66, "end": 81, "id": 11, "annotation": null}, {"text": "(", "start": 82, "end": 83, "id": 12, "annotation": null}, {"text": "DH", "start": 84, "end": 86, "id": 13, "annotation": null}, {"text": ")", "start": 87, "end": 88, "id": 14, "annotation": null}, {"text": "injection", "start": 89, "end": 98, "id": 15, "annotation": null}, {"text": "lasers", "start": 99, "end": 105, "id": 16, "annotation": null}, {"text": "has", "start": 106, "end": 109, "id": 17, "annotation": null}, {"text": "come", "start": 110, "end": 114, "id": 18, "annotation": null}, {"text": "about", "start": 115, "end": 120, "id": 19, "annotation": null}, {"text": "directly", "start": 121, "end": 129, "id": 20, "annotation": null}, {"text": "from", "start": 130, "end": 134, "id": 21, "annotation": null}, {"text": "advances", "start": 135, "end": 143, "id": 22, "annotation": null}, {"text": "in", "start": 144, "end": 146, "id": 23, "annotation": null}, {"text": "p", "start": 147, "end": 148, "id": 24, "annotation": "DOPANT"}, {"text": "-", "start": 149, "end": 150, "id": 25, "annotation": null}, {"text": "type", "start": 151, "end": 155, "id": 26, "annotation": "DOPANT"}, {"text": "doping", "start": 156, "end": 162, "id": 27, "annotation": null}, {"text": "of", "start": 163, "end": 165, "id": 28, "annotation": null}, {"text": "ZnSe", "start": 166, "end": 170, "id": 29, "annotation": "BASEMAT"}, {"text": "and", "start": 171, "end": 174, "id": 30, "annotation": null}, {"text": "related", "start": 175, "end": 182, "id": 31, "annotation": null}, {"text": "compounds", "start": 183, "end": 192, "id": 32, "annotation": null}, {"text": ",", "start": 193, "end": 194, "id": 33, "annotation": null}, {"text": "initially", "start": 195, "end": 204, "id": 34, "annotation": null}, {"text": "with", "start": 205, "end": 209, "id": 35, "annotation": null}, {"text": "Li", "start": 210, "end": 212, "id": 36, "annotation": "DOPANT"}, {"text": ",", "start": 213, "end": 214, "id": 37, "annotation": null}, {"text": "and", "start": 215, "end": 218, "id": 38, "annotation": null}, {"text": "more", "start": 219, "end": 223, "id": 39, "annotation": null}, {"text": "recently", "start": 224, "end": 232, "id": 40, "annotation": null}, {"text": "with", "start": 233, "end": 237, "id": 41, "annotation": null}, {"text": "N.", "start": 238, "end": 240, "id": 42, "annotation": "DOPANT"}], [{"text": "This", "start": 241, "end": 245, "id": 43, "annotation": null}, {"text": "paper", "start": 246, "end": 251, "id": 44, "annotation": null}, {"text": "focuses", "start": 252, "end": 259, "id": 45, "annotation": null}, {"text": "on", "start": 260, "end": 262, "id": 46, "annotation": null}, {"text": "techniques", "start": 263, "end": 273, "id": 47, "annotation": null}, {"text": "we", "start": 274, "end": 276, "id": 48, "annotation": null}, {"text": "have", "start": 277, "end": 281, "id": 49, "annotation": null}, {"text": "used", "start": 282, "end": 286, "id": 50, "annotation": null}, {"text": "for", "start": 287, "end": 290, "id": 51, "annotation": null}, {"text": "characterizing", "start": 291, "end": 305, "id": 52, "annotation": null}, {"text": "these", "start": 306, "end": 311, "id": 53, "annotation": null}, {"text": "p", "start": 312, "end": 313, "id": 54, "annotation": null}, {"text": "-", "start": 314, "end": 315, "id": 55, "annotation": null}, {"text": "type", "start": 316, "end": 320, "id": 56, "annotation": null}, {"text": "II", "start": 321, "end": 323, "id": 57, "annotation": null}, {"text": "\u2013", "start": 324, "end": 325, "id": 58, "annotation": null}, {"text": "VI", "start": 326, "end": 328, "id": 59, "annotation": null}, {"text": "epilayers", "start": 329, "end": 338, "id": 60, "annotation": null}, {"text": ".", "start": 339, "end": 340, "id": 61, "annotation": null}], [{"text": "The", "start": 341, "end": 344, "id": 62, "annotation": null}, {"text": "main", "start": 345, "end": 349, "id": 63, "annotation": null}, {"text": "electrical", "start": 350, "end": 360, "id": 64, "annotation": null}, {"text": "characterization", "start": 361, "end": 377, "id": 65, "annotation": null}, {"text": "technique", "start": 378, "end": 387, "id": 66, "annotation": null}, {"text": "employed", "start": 388, "end": 396, "id": 67, "annotation": null}, {"text": "is", "start": 397, "end": 399, "id": 68, "annotation": null}, {"text": "a", "start": 400, "end": 401, "id": 69, "annotation": null}, {"text": "small", "start": 402, "end": 407, "id": 70, "annotation": null}, {"text": "-", "start": 408, "end": 409, "id": 71, "annotation": null}, {"text": "signal", "start": 410, "end": 416, "id": 72, "annotation": null}, {"text": "AC", "start": 417, "end": 419, "id": 73, "annotation": null}, {"text": "admittance", "start": 420, "end": 430, "id": 74, "annotation": null}, {"text": "measurement", "start": 431, "end": 442, "id": 75, "annotation": null}, {"text": "as", "start": 443, "end": 445, "id": 76, "annotation": null}, {"text": "a", "start": 446, "end": 447, "id": 77, "annotation": null}, {"text": "function", "start": 448, "end": 456, "id": 78, "annotation": null}, {"text": "of", "start": 457, "end": 459, "id": 79, "annotation": null}, {"text": "both", "start": 460, "end": 464, "id": 80, "annotation": null}, {"text": "voltage", "start": 465, "end": 472, "id": 81, "annotation": null}, {"text": "and", "start": 473, "end": 476, "id": 82, "annotation": null}, {"text": "frequency", "start": 477, "end": 486, "id": 83, "annotation": null}, {"text": ".", "start": 487, "end": 488, "id": 84, "annotation": null}], [{"text": "We", "start": 489, "end": 491, "id": 85, "annotation": null}, {"text": "use", "start": 492, "end": 495, "id": 86, "annotation": null}, {"text": "this", "start": 496, "end": 500, "id": 87, "annotation": null}, {"text": "to", "start": 501, "end": 503, "id": 88, "annotation": null}, {"text": "extract", "start": 504, "end": 511, "id": 89, "annotation": null}, {"text": "the", "start": 512, "end": 515, "id": 90, "annotation": null}, {"text": "net", "start": 516, "end": 519, "id": 91, "annotation": null}, {"text": "doping", "start": 520, "end": 526, "id": 92, "annotation": null}, {"text": "(", "start": 527, "end": 528, "id": 93, "annotation": null}, {"text": "NA", "start": 529, "end": 531, "id": 94, "annotation": null}, {"text": "\u2212", "start": 532, "end": 533, "id": 95, "annotation": null}, {"text": "ND", "start": 534, "end": 536, "id": 96, "annotation": null}, {"text": ")", "start": 537, "end": 538, "id": 97, "annotation": null}, {"text": "and", "start": 539, "end": 542, "id": 98, "annotation": null}, {"text": "also", "start": 543, "end": 547, "id": 99, "annotation": null}, {"text": "to", "start": 548, "end": 550, "id": 100, "annotation": null}, {"text": "determine", "start": 551, "end": 560, "id": 101, "annotation": null}, {"text": "the", "start": 561, "end": 564, "id": 102, "annotation": null}, {"text": "epilayer", "start": 565, "end": 573, "id": 103, "annotation": null}, {"text": "conductivity", "start": 574, "end": 586, "id": 104, "annotation": null}, {"text": "as", "start": 587, "end": 589, "id": 105, "annotation": null}, {"text": "a", "start": 590, "end": 591, "id": 106, "annotation": null}, {"text": "function", "start": 592, "end": 600, "id": 107, "annotation": null}, {"text": "of", "start": 601, "end": 603, "id": 108, "annotation": null}, {"text": "temperature", "start": 604, "end": 615, "id": 109, "annotation": null}, {"text": "(", "start": 616, "end": 617, "id": 110, "annotation": null}, {"text": "\u03c3(T", "start": 618, "end": 621, "id": 111, "annotation": null}, {"text": ")", "start": 622, "end": 623, "id": 112, "annotation": null}, {"text": ")", "start": 624, "end": 625, "id": 113, "annotation": null}, {"text": ".", "start": 626, "end": 627, "id": 114, "annotation": null}], [{"text": "We", "start": 628, "end": 630, "id": 115, "annotation": null}, {"text": "use", "start": 631, "end": 634, "id": 116, "annotation": null}, {"text": "this", "start": 635, "end": 639, "id": 117, "annotation": null}, {"text": "and", "start": 640, "end": 643, "id": 118, "annotation": null}, {"text": "the", "start": 644, "end": 647, "id": 119, "annotation": null}, {"text": "general", "start": 648, "end": 655, "id": 120, "annotation": null}, {"text": "physical", "start": 656, "end": 664, "id": 121, "annotation": null}, {"text": "form", "start": 665, "end": 669, "id": 122, "annotation": null}, {"text": "of", "start": 670, "end": 672, "id": 123, "annotation": null}, {"text": "the", "start": 673, "end": 676, "id": 124, "annotation": null}, {"text": "mobility", "start": 677, "end": 685, "id": 125, "annotation": null}, {"text": "vs", "start": 686, "end": 688, "id": 126, "annotation": null}, {"text": "temperature", "start": 689, "end": 700, "id": 127, "annotation": null}, {"text": "to", "start": 701, "end": 703, "id": 128, "annotation": null}, {"text": "extract", "start": 704, "end": 711, "id": 129, "annotation": null}, {"text": "information", "start": 712, "end": 723, "id": 130, "annotation": null}, {"text": "about", "start": 724, "end": 729, "id": 131, "annotation": null}, {"text": "both", "start": 730, "end": 734, "id": 132, "annotation": null}, {"text": "the", "start": 735, "end": 738, "id": 133, "annotation": null}, {"text": "mobility", "start": 739, "end": 747, "id": 134, "annotation": null}, {"text": "and", "start": 748, "end": 751, "id": 135, "annotation": null}, {"text": "the", "start": 752, "end": 755, "id": 136, "annotation": null}, {"text": "compensation", "start": 756, "end": 768, "id": 137, "annotation": null}, {"text": "for", "start": 769, "end": 772, "id": 138, "annotation": null}, {"text": "our", "start": 773, "end": 776, "id": 139, "annotation": null}, {"text": "specific", "start": 777, "end": 785, "id": 140, "annotation": null}, {"text": "samples", "start": 786, "end": 793, "id": 141, "annotation": null}, {"text": ".", "start": 794, "end": 795, "id": 142, "annotation": null}], [{"text": "The", "start": 796, "end": 799, "id": 143, "annotation": null}, {"text": "technique", "start": 800, "end": 809, "id": 144, "annotation": null}, {"text": "is", "start": 810, "end": 812, "id": 145, "annotation": null}, {"text": "shown", "start": 813, "end": 818, "id": 146, "annotation": null}, {"text": "to", "start": 819, "end": 821, "id": 147, "annotation": null}, {"text": "work", "start": 822, "end": 826, "id": 148, "annotation": null}, {"text": "well", "start": 827, "end": 831, "id": 149, "annotation": null}, {"text": "for", "start": 832, "end": 835, "id": 150, "annotation": null}, {"text": "p", "start": 836, "end": 837, "id": 151, "annotation": "DOPANT"}, {"text": "-", "start": 838, "end": 839, "id": 152, "annotation": null}, {"text": "type", "start": 840, "end": 844, "id": 153, "annotation": "DOPANT"}, {"text": "ZnSe", "start": 845, "end": 849, "id": 154, "annotation": "BASEMAT"}, {"text": ":", "start": 850, "end": 851, "id": 155, "annotation": null}, {"text": "Li", "start": 852, "end": 854, "id": 156, "annotation": "DOPANT"}, {"text": ".", "start": 855, "end": 856, "id": 157, "annotation": null}], [{"text": "We", "start": 857, "end": 859, "id": 158, "annotation": null}, {"text": "obtain", "start": 860, "end": 866, "id": 159, "annotation": null}, {"text": "the", "start": 867, "end": 870, "id": 160, "annotation": null}, {"text": "result", "start": 871, "end": 877, "id": 161, "annotation": null}, {"text": "that", "start": 878, "end": 882, "id": 162, "annotation": null}, {"text": "all", "start": 883, "end": 886, "id": 163, "annotation": null}, {"text": "such", "start": 887, "end": 891, "id": 164, "annotation": null}, {"text": "samples", "start": 892, "end": 899, "id": 165, "annotation": null}, {"text": "are", "start": 900, "end": 903, "id": 166, "annotation": null}, {"text": "substantially", "start": 904, "end": 917, "id": 167, "annotation": null}, {"text": "uncompensated", "start": 918, "end": 931, "id": 168, "annotation": null}, {"text": ",", "start": 932, "end": 933, "id": 169, "annotation": null}, {"text": "regardless", "start": 934, "end": 944, "id": 170, "annotation": null}, {"text": "of", "start": 945, "end": 947, "id": 171, "annotation": null}, {"text": "the", "start": 948, "end": 951, "id": 172, "annotation": null}, {"text": "ratio", "start": 952, "end": 957, "id": 173, "annotation": null}, {"text": "(", "start": 958, "end": 959, "id": 174, "annotation": null}, {"text": "NA", "start": 960, "end": 962, "id": 175, "annotation": null}, {"text": "\u2212", "start": 963, "end": 964, "id": 176, "annotation": null}, {"text": "ND)/[Li", "start": 965, "end": 972, "id": 177, "annotation": null}, {"text": "]", "start": 973, "end": 974, "id": 178, "annotation": null}, {"text": ".", "start": 975, "end": 976, "id": 179, "annotation": null}], [{"text": "From", "start": 977, "end": 981, "id": 180, "annotation": null}, {"text": "this", "start": 982, "end": 986, "id": 181, "annotation": null}, {"text": "we", "start": 987, "end": 989, "id": 182, "annotation": null}, {"text": "conclude", "start": 990, "end": 998, "id": 183, "annotation": null}, {"text": "that", "start": 999, "end": 1003, "id": 184, "annotation": null}, {"text": "excess", "start": 1004, "end": 1010, "id": 185, "annotation": null}, {"text": "Li", "start": 1011, "end": 1013, "id": 186, "annotation": null}, {"text": "does", "start": 1014, "end": 1018, "id": 187, "annotation": null}, {"text": "not", "start": 1019, "end": 1022, "id": 188, "annotation": null}, {"text": "cause", "start": 1023, "end": 1028, "id": 189, "annotation": null}, {"text": "compensation", "start": 1029, "end": 1041, "id": 190, "annotation": null}, {"text": ",", "start": 1042, "end": 1043, "id": 191, "annotation": null}, {"text": "but", "start": 1044, "end": 1047, "id": 192, "annotation": null}, {"text": "rather", "start": 1048, "end": 1054, "id": 193, "annotation": null}, {"text": "passivation", "start": 1055, "end": 1066, "id": 194, "annotation": null}, {"text": "by", "start": 1067, "end": 1069, "id": 195, "annotation": null}, {"text": "the", "start": 1070, "end": 1073, "id": 196, "annotation": null}, {"text": "formation", "start": 1074, "end": 1083, "id": 197, "annotation": null}, {"text": "of", "start": 1084, "end": 1086, "id": 198, "annotation": null}, {"text": "Li", "start": 1087, "end": 1089, "id": 199, "annotation": null}, {"text": "substitutional-", "start": 1090, "end": 1105, "id": 200, "annotation": null}, {"text": "interstitial", "start": 1106, "end": 1118, "id": 201, "annotation": null}, {"text": "complexes", "start": 1119, "end": 1128, "id": 202, "annotation": null}, {"text": ".", "start": 1129, "end": 1130, "id": 203, "annotation": null}], [{"text": "We", "start": 1131, "end": 1133, "id": 204, "annotation": null}, {"text": "measure", "start": 1134, "end": 1141, "id": 205, "annotation": null}, {"text": "the", "start": 1142, "end": 1145, "id": 206, "annotation": null}, {"text": "dissociation", "start": 1146, "end": 1158, "id": 207, "annotation": null}, {"text": "energy", "start": 1159, "end": 1165, "id": 208, "annotation": null}, {"text": "of", "start": 1166, "end": 1168, "id": 209, "annotation": null}, {"text": "the", "start": 1169, "end": 1172, "id": 210, "annotation": null}, {"text": "complex", "start": 1173, "end": 1180, "id": 211, "annotation": null}, {"text": ",", "start": 1181, "end": 1182, "id": 212, "annotation": null}, {"text": "which", "start": 1183, "end": 1188, "id": 213, "annotation": null}, {"text": "is", "start": 1189, "end": 1191, "id": 214, "annotation": null}, {"text": "about", "start": 1192, "end": 1197, "id": 215, "annotation": null}, {"text": "0.7", "start": 1198, "end": 1201, "id": 216, "annotation": null}, {"text": "eV", "start": 1202, "end": 1204, "id": 217, "annotation": null}, {"text": ",", "start": 1205, "end": 1206, "id": 218, "annotation": null}, {"text": "in", "start": 1207, "end": 1209, "id": 219, "annotation": null}, {"text": "good", "start": 1210, "end": 1214, "id": 220, "annotation": null}, {"text": "agreement", "start": 1215, "end": 1224, "id": 221, "annotation": null}, {"text": "with", "start": 1225, "end": 1229, "id": 222, "annotation": null}, {"text": "theory", "start": 1230, "end": 1236, "id": 223, "annotation": null}, {"text": ".", "start": 1237, "end": 1238, "id": 224, "annotation": null}], [{"text": "For", "start": 1239, "end": 1242, "id": 225, "annotation": null}, {"text": "ZnSe", "start": 1243, "end": 1247, "id": 226, "annotation": "BASEMAT"}, {"text": ":", "start": 1248, "end": 1249, "id": 227, "annotation": null}, {"text": "Li", "start": 1250, "end": 1252, "id": 228, "annotation": "DOPANT"}, {"text": "samples", "start": 1253, "end": 1260, "id": 229, "annotation": null}, {"text": "with", "start": 1261, "end": 1265, "id": 230, "annotation": null}, {"text": "few", "start": 1266, "end": 1269, "id": 231, "annotation": null}, {"text": "complexes", "start": 1270, "end": 1279, "id": 232, "annotation": null}, {"text": ",", "start": 1280, "end": 1281, "id": 233, "annotation": null}, {"text": "the", "start": 1282, "end": 1285, "id": 234, "annotation": null}, {"text": "maximum", "start": 1286, "end": 1293, "id": 235, "annotation": null}, {"text": "room", "start": 1294, "end": 1298, "id": 236, "annotation": null}, {"text": "-", "start": 1299, "end": 1300, "id": 237, "annotation": null}, {"text": "temperature", "start": 1301, "end": 1312, "id": 238, "annotation": null}, {"text": "hole", "start": 1313, "end": 1317, "id": 239, "annotation": null}, {"text": "mobility", "start": 1318, "end": 1326, "id": 240, "annotation": null}, {"text": "was", "start": 1327, "end": 1330, "id": 241, "annotation": null}, {"text": "about", "start": 1331, "end": 1336, "id": 242, "annotation": null}, {"text": "36", "start": 1337, "end": 1339, "id": 243, "annotation": null}, {"text": "cm2", "start": 1340, "end": 1343, "id": 244, "annotation": null}, {"text": "/", "start": 1344, "end": 1345, "id": 245, "annotation": null}, {"text": "V", "start": 1346, "end": 1347, "id": 246, "annotation": null}, {"text": "s", "start": 1348, "end": 1349, "id": 247, "annotation": null}, {"text": "and", "start": 1350, "end": 1353, "id": 248, "annotation": null}, {"text": "the", "start": 1354, "end": 1357, "id": 249, "annotation": null}, {"text": "peak", "start": 1358, "end": 1362, "id": 250, "annotation": null}, {"text": "mobility", "start": 1363, "end": 1371, "id": 251, "annotation": null}, {"text": "was", "start": 1372, "end": 1375, "id": 252, "annotation": null}, {"text": "about", "start": 1376, "end": 1381, "id": 253, "annotation": null}, {"text": "155", "start": 1382, "end": 1385, "id": 254, "annotation": null}, {"text": "cm2", "start": 1386, "end": 1389, "id": 255, "annotation": null}, {"text": "/", "start": 1390, "end": 1391, "id": 256, "annotation": null}, {"text": "V", "start": 1392, "end": 1393, "id": 257, "annotation": null}, {"text": "s", "start": 1394, "end": 1395, "id": 258, "annotation": null}, {"text": "at", "start": 1396, "end": 1398, "id": 259, "annotation": null}, {"text": "about", "start": 1399, "end": 1404, "id": 260, "annotation": null}, {"text": "125", "start": 1405, "end": 1408, "id": 261, "annotation": null}, {"text": "K", "start": 1409, "end": 1410, "id": 262, "annotation": null}, {"text": ";", "start": 1411, "end": 1412, "id": 263, "annotation": null}, {"text": "for", "start": 1413, "end": 1416, "id": 264, "annotation": null}, {"text": "samples", "start": 1417, "end": 1424, "id": 265, "annotation": null}, {"text": "with", "start": 1425, "end": 1429, "id": 266, "annotation": null}, {"text": "a", "start": 1430, "end": 1431, "id": 267, "annotation": null}, {"text": "high", "start": 1432, "end": 1436, "id": 268, "annotation": null}, {"text": "concentration", "start": 1437, "end": 1450, "id": 269, "annotation": null}, {"text": "of", "start": 1451, "end": 1453, "id": 270, "annotation": null}, {"text": "complexes", "start": 1454, "end": 1463, "id": 271, "annotation": null}, {"text": ",", "start": 1464, "end": 1465, "id": 272, "annotation": null}, {"text": "the", "start": 1466, "end": 1469, "id": 273, "annotation": null}, {"text": "transport", "start": 1470, "end": 1479, "id": 274, "annotation": null}, {"text": "was", "start": 1480, "end": 1483, "id": 275, "annotation": null}, {"text": "degraded", "start": 1484, "end": 1492, "id": 276, "annotation": null}, {"text": ".", "start": 1493, "end": 1494, "id": 277, "annotation": null}], [{"text": "In", "start": 1495, "end": 1497, "id": 278, "annotation": null}, {"text": "the", "start": 1498, "end": 1501, "id": 279, "annotation": null}, {"text": "case", "start": 1502, "end": 1506, "id": 280, "annotation": null}, {"text": "of", "start": 1507, "end": 1509, "id": 281, "annotation": null}, {"text": "p", "start": 1510, "end": 1511, "id": 282, "annotation": "DOPANT"}, {"text": "-", "start": 1512, "end": 1513, "id": 283, "annotation": null}, {"text": "type", "start": 1514, "end": 1518, "id": 284, "annotation": "DOPANT"}, {"text": "ZnSe", "start": 1519, "end": 1523, "id": 285, "annotation": "BASEMAT"}, {"text": ":", "start": 1524, "end": 1525, "id": 286, "annotation": null}, {"text": "N", "start": 1526, "end": 1527, "id": 287, "annotation": "DOPANT"}, {"text": ",", "start": 1528, "end": 1529, "id": 288, "annotation": null}, {"text": "transport", "start": 1530, "end": 1539, "id": 289, "annotation": null}, {"text": "results", "start": 1540, "end": 1547, "id": 290, "annotation": null}, {"text": "were", "start": 1548, "end": 1552, "id": 291, "annotation": null}, {"text": "similar", "start": 1553, "end": 1560, "id": 292, "annotation": null}, {"text": "to", "start": 1561, "end": 1563, "id": 293, "annotation": null}, {"text": "ZnSe", "start": 1564, "end": 1568, "id": 294, "annotation": "BASEMAT"}, {"text": ":", "start": 1569, "end": 1570, "id": 295, "annotation": null}, {"text": "Li", "start": 1571, "end": 1573, "id": 296, "annotation": "DOPANT"}, {"text": "with", "start": 1574, "end": 1578, "id": 297, "annotation": null}, {"text": "a", "start": 1579, "end": 1580, "id": 298, "annotation": null}, {"text": "high", "start": 1581, "end": 1585, "id": 299, "annotation": null}, {"text": "concentration", "start": 1586, "end": 1599, "id": 300, "annotation": null}, {"text": "of", "start": 1600, "end": 1602, "id": 301, "annotation": null}, {"text": "complexes", "start": 1603, "end": 1612, "id": 302, "annotation": null}, {"text": ".", "start": 1613, "end": 1614, "id": 303, "annotation": null}], [{"text": "This", "start": 1615, "end": 1619, "id": 304, "annotation": null}, {"text": "may", "start": 1620, "end": 1623, "id": 305, "annotation": null}, {"text": "be", "start": 1624, "end": 1626, "id": 306, "annotation": null}, {"text": "due", "start": 1627, "end": 1630, "id": 307, "annotation": null}, {"text": "to", "start": 1631, "end": 1633, "id": 308, "annotation": null}, {"text": "either", "start": 1634, "end": 1640, "id": 309, "annotation": null}, {"text": "complexes", "start": 1641, "end": 1650, "id": 310, "annotation": null}, {"text": "or", "start": 1651, "end": 1653, "id": 311, "annotation": null}, {"text": "other", "start": 1654, "end": 1659, "id": 312, "annotation": null}, {"text": "point", "start": 1660, "end": 1665, "id": 313, "annotation": null}, {"text": "defects", "start": 1666, "end": 1673, "id": 314, "annotation": null}, {"text": "in", "start": 1674, "end": 1676, "id": 315, "annotation": null}, {"text": "the", "start": 1677, "end": 1680, "id": 316, "annotation": null}, {"text": "epilayers", "start": 1681, "end": 1690, "id": 317, "annotation": null}, {"text": "and", "start": 1691, "end": 1694, "id": 318, "annotation": null}, {"text": "offers", "start": 1695, "end": 1701, "id": 319, "annotation": null}, {"text": "an", "start": 1702, "end": 1704, "id": 320, "annotation": null}, {"text": "explanation", "start": 1705, "end": 1716, "id": 321, "annotation": null}, {"text": "of", "start": 1717, "end": 1719, "id": 322, "annotation": null}, {"text": "the", "start": 1720, "end": 1723, "id": 323, "annotation": null}, {"text": "high", "start": 1724, "end": 1728, "id": 324, "annotation": null}, {"text": "turn", "start": 1729, "end": 1733, "id": 325, "annotation": null}, {"text": "-", "start": 1734, "end": 1735, "id": 326, "annotation": null}, {"text": "on", "start": 1736, "end": 1738, "id": 327, "annotation": null}, {"text": "voltage", "start": 1739, "end": 1746, "id": 328, "annotation": null}, {"text": "of", "start": 1747, "end": 1749, "id": 329, "annotation": null}, {"text": "DH", "start": 1750, "end": 1752, "id": 330, "annotation": null}, {"text": "lasers", "start": 1753, "end": 1759, "id": 331, "annotation": null}, {"text": ".", "start": 1760, "end": 1761, "id": 332, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "The recent progress in making blue-green semiconductor double-heterostructure (DH) injection lasers has come about directly from advances in p-type doping of ZnSe and related compounds, initially with Li, and more recently with N. This paper focuses on techniques we have used for characterizing these p-type II\u2013VI epilayers. The main electrical characterization technique employed is a small-signal AC admittance measurement as a function of both voltage and frequency. We use this to extract the net doping (NA \u2212 ND) and also to determine the epilayer conductivity as a function of temperature (\u03c3(T)). We use this and the general physical form of the mobility vs temperature to extract information about both the mobility and the compensation for our specific samples. The technique is shown to work well for p-type ZnSe : Li. We obtain the result that all such samples are substantially uncompensated, regardless of the ratio (NA \u2212 ND)/[Li]. From this we conclude that excess Li does not cause compensation, but rather passivation by the formation of Li substitutional- interstitial complexes. We measure the dissociation energy of the complex, which is about 0.7 eV, in good agreement with theory. For ZnSe : Li samples with few complexes, the maximum room-temperature hole mobility was about 36 cm2/V s and the peak mobility was about 155 cm2/V s at about 125 K; for samples with a high concentration of complexes, the transport was degraded. In the case of p-type ZnSe : N, transport results were similar to ZnSe : Li with a high concentration of complexes. This may be due to either complexes or other point defects in the epilayers and offers an explanation of the high turn-on voltage of DH lasers.", "meta": {"doi": "10.1016/0921-4526(93)90275-B"}, "_input_hash": 1336468911, "_task_hash": 1282802750, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "recent", "start": 4, "end": 10, "id": 1, "annotation": null}, {"text": "progress", "start": 11, "end": 19, "id": 2, "annotation": null}, {"text": "in", "start": 20, "end": 22, "id": 3, "annotation": null}, {"text": "making", "start": 23, "end": 29, "id": 4, "annotation": null}, {"text": "blue", "start": 30, "end": 34, "id": 5, "annotation": null}, {"text": "-", "start": 35, "end": 36, "id": 6, "annotation": null}, {"text": "green", "start": 37, "end": 42, "id": 7, "annotation": null}, {"text": "semiconductor", "start": 43, "end": 56, "id": 8, "annotation": null}, {"text": "double", "start": 57, "end": 63, "id": 9, "annotation": null}, {"text": "-", "start": 64, "end": 65, "id": 10, "annotation": null}, {"text": "heterostructure", "start": 66, "end": 81, "id": 11, "annotation": null}, {"text": "(", "start": 82, "end": 83, "id": 12, "annotation": null}, {"text": "DH", "start": 84, "end": 86, "id": 13, "annotation": null}, {"text": ")", "start": 87, "end": 88, "id": 14, "annotation": null}, {"text": "injection", "start": 89, "end": 98, "id": 15, "annotation": null}, {"text": "lasers", "start": 99, "end": 105, "id": 16, "annotation": null}, {"text": "has", "start": 106, "end": 109, "id": 17, "annotation": null}, {"text": "come", "start": 110, "end": 114, "id": 18, "annotation": null}, {"text": "about", "start": 115, "end": 120, "id": 19, "annotation": null}, {"text": "directly", "start": 121, "end": 129, "id": 20, "annotation": null}, {"text": "from", "start": 130, "end": 134, "id": 21, "annotation": null}, {"text": "advances", "start": 135, "end": 143, "id": 22, "annotation": null}, {"text": "in", "start": 144, "end": 146, "id": 23, "annotation": null}, {"text": "p", "start": 147, "end": 148, "id": 24, "annotation": "DOPANT"}, {"text": "-", "start": 149, "end": 150, "id": 25, "annotation": "DOPANT"}, {"text": "type", "start": 151, "end": 155, "id": 26, "annotation": "DOPANT"}, {"text": "doping", "start": 156, "end": 162, "id": 27, "annotation": null}, {"text": "of", "start": 163, "end": 165, "id": 28, "annotation": null}, {"text": "ZnSe", "start": 166, "end": 170, "id": 29, "annotation": "BASEMAT"}, {"text": "and", "start": 171, "end": 174, "id": 30, "annotation": null}, {"text": "related", "start": 175, "end": 182, "id": 31, "annotation": null}, {"text": "compounds", "start": 183, "end": 192, "id": 32, "annotation": null}, {"text": ",", "start": 193, "end": 194, "id": 33, "annotation": null}, {"text": "initially", "start": 195, "end": 204, "id": 34, "annotation": null}, {"text": "with", "start": 205, "end": 209, "id": 35, "annotation": null}, {"text": "Li", "start": 210, "end": 212, "id": 36, "annotation": "DOPANT"}, {"text": ",", "start": 213, "end": 214, "id": 37, "annotation": null}, {"text": "and", "start": 215, "end": 218, "id": 38, "annotation": null}, {"text": "more", "start": 219, "end": 223, "id": 39, "annotation": null}, {"text": "recently", "start": 224, "end": 232, "id": 40, "annotation": null}, {"text": "with", "start": 233, "end": 237, "id": 41, "annotation": null}, {"text": "N.", "start": 238, "end": 240, "id": 42, "annotation": "DOPANT"}], [{"text": "This", "start": 241, "end": 245, "id": 43, "annotation": null}, {"text": "paper", "start": 246, "end": 251, "id": 44, "annotation": null}, {"text": "focuses", "start": 252, "end": 259, "id": 45, "annotation": null}, {"text": "on", "start": 260, "end": 262, "id": 46, "annotation": null}, {"text": "techniques", "start": 263, "end": 273, "id": 47, "annotation": null}, {"text": "we", "start": 274, "end": 276, "id": 48, "annotation": null}, {"text": "have", "start": 277, "end": 281, "id": 49, "annotation": null}, {"text": "used", "start": 282, "end": 286, "id": 50, "annotation": null}, {"text": "for", "start": 287, "end": 290, "id": 51, "annotation": null}, {"text": "characterizing", "start": 291, "end": 305, "id": 52, "annotation": null}, {"text": "these", "start": 306, "end": 311, "id": 53, "annotation": null}, {"text": "p", "start": 312, "end": 313, "id": 54, "annotation": null}, {"text": "-", "start": 314, "end": 315, "id": 55, "annotation": null}, {"text": "type", "start": 316, "end": 320, "id": 56, "annotation": null}, {"text": "II", "start": 321, "end": 323, "id": 57, "annotation": null}, {"text": "\u2013", "start": 324, "end": 325, "id": 58, "annotation": null}, {"text": "VI", "start": 326, "end": 328, "id": 59, "annotation": null}, {"text": "epilayers", "start": 329, "end": 338, "id": 60, "annotation": null}, {"text": ".", "start": 339, "end": 340, "id": 61, "annotation": null}], [{"text": "The", "start": 341, "end": 344, "id": 62, "annotation": null}, {"text": "main", "start": 345, "end": 349, "id": 63, "annotation": null}, {"text": "electrical", "start": 350, "end": 360, "id": 64, "annotation": null}, {"text": "characterization", "start": 361, "end": 377, "id": 65, "annotation": null}, {"text": "technique", "start": 378, "end": 387, "id": 66, "annotation": null}, {"text": "employed", "start": 388, "end": 396, "id": 67, "annotation": null}, {"text": "is", "start": 397, "end": 399, "id": 68, "annotation": null}, {"text": "a", "start": 400, "end": 401, "id": 69, "annotation": null}, {"text": "small", "start": 402, "end": 407, "id": 70, "annotation": null}, {"text": "-", "start": 408, "end": 409, "id": 71, "annotation": null}, {"text": "signal", "start": 410, "end": 416, "id": 72, "annotation": null}, {"text": "AC", "start": 417, "end": 419, "id": 73, "annotation": null}, {"text": "admittance", "start": 420, "end": 430, "id": 74, "annotation": null}, {"text": "measurement", "start": 431, "end": 442, "id": 75, "annotation": null}, {"text": "as", "start": 443, "end": 445, "id": 76, "annotation": null}, {"text": "a", "start": 446, "end": 447, "id": 77, "annotation": null}, {"text": "function", "start": 448, "end": 456, "id": 78, "annotation": null}, {"text": "of", "start": 457, "end": 459, "id": 79, "annotation": null}, {"text": "both", "start": 460, "end": 464, "id": 80, "annotation": null}, {"text": "voltage", "start": 465, "end": 472, "id": 81, "annotation": null}, {"text": "and", "start": 473, "end": 476, "id": 82, "annotation": null}, {"text": "frequency", "start": 477, "end": 486, "id": 83, "annotation": null}, {"text": ".", "start": 487, "end": 488, "id": 84, "annotation": null}], [{"text": "We", "start": 489, "end": 491, "id": 85, "annotation": null}, {"text": "use", "start": 492, "end": 495, "id": 86, "annotation": null}, {"text": "this", "start": 496, "end": 500, "id": 87, "annotation": null}, {"text": "to", "start": 501, "end": 503, "id": 88, "annotation": null}, {"text": "extract", "start": 504, "end": 511, "id": 89, "annotation": null}, {"text": "the", "start": 512, "end": 515, "id": 90, "annotation": null}, {"text": "net", "start": 516, "end": 519, "id": 91, "annotation": null}, {"text": "doping", "start": 520, "end": 526, "id": 92, "annotation": null}, {"text": "(", "start": 527, "end": 528, "id": 93, "annotation": null}, {"text": "NA", "start": 529, "end": 531, "id": 94, "annotation": null}, {"text": "\u2212", "start": 532, "end": 533, "id": 95, "annotation": null}, {"text": "ND", "start": 534, "end": 536, "id": 96, "annotation": null}, {"text": ")", "start": 537, "end": 538, "id": 97, "annotation": null}, {"text": "and", "start": 539, "end": 542, "id": 98, "annotation": null}, {"text": "also", "start": 543, "end": 547, "id": 99, "annotation": null}, {"text": "to", "start": 548, "end": 550, "id": 100, "annotation": null}, {"text": "determine", "start": 551, "end": 560, "id": 101, "annotation": null}, {"text": "the", "start": 561, "end": 564, "id": 102, "annotation": null}, {"text": "epilayer", "start": 565, "end": 573, "id": 103, "annotation": null}, {"text": "conductivity", "start": 574, "end": 586, "id": 104, "annotation": null}, {"text": "as", "start": 587, "end": 589, "id": 105, "annotation": null}, {"text": "a", "start": 590, "end": 591, "id": 106, "annotation": null}, {"text": "function", "start": 592, "end": 600, "id": 107, "annotation": null}, {"text": "of", "start": 601, "end": 603, "id": 108, "annotation": null}, {"text": "temperature", "start": 604, "end": 615, "id": 109, "annotation": null}, {"text": "(", "start": 616, "end": 617, "id": 110, "annotation": null}, {"text": "\u03c3(T", "start": 618, "end": 621, "id": 111, "annotation": null}, {"text": ")", "start": 622, "end": 623, "id": 112, "annotation": null}, {"text": ")", "start": 624, "end": 625, "id": 113, "annotation": null}, {"text": ".", "start": 626, "end": 627, "id": 114, "annotation": null}], [{"text": "We", "start": 628, "end": 630, "id": 115, "annotation": null}, {"text": "use", "start": 631, "end": 634, "id": 116, "annotation": null}, {"text": "this", "start": 635, "end": 639, "id": 117, "annotation": null}, {"text": "and", "start": 640, "end": 643, "id": 118, "annotation": null}, {"text": "the", "start": 644, "end": 647, "id": 119, "annotation": null}, {"text": "general", "start": 648, "end": 655, "id": 120, "annotation": null}, {"text": "physical", "start": 656, "end": 664, "id": 121, "annotation": null}, {"text": "form", "start": 665, "end": 669, "id": 122, "annotation": null}, {"text": "of", "start": 670, "end": 672, "id": 123, "annotation": null}, {"text": "the", "start": 673, "end": 676, "id": 124, "annotation": null}, {"text": "mobility", "start": 677, "end": 685, "id": 125, "annotation": null}, {"text": "vs", "start": 686, "end": 688, "id": 126, "annotation": null}, {"text": "temperature", "start": 689, "end": 700, "id": 127, "annotation": null}, {"text": "to", "start": 701, "end": 703, "id": 128, "annotation": null}, {"text": "extract", "start": 704, "end": 711, "id": 129, "annotation": null}, {"text": "information", "start": 712, "end": 723, "id": 130, "annotation": null}, {"text": "about", "start": 724, "end": 729, "id": 131, "annotation": null}, {"text": "both", "start": 730, "end": 734, "id": 132, "annotation": null}, {"text": "the", "start": 735, "end": 738, "id": 133, "annotation": null}, {"text": "mobility", "start": 739, "end": 747, "id": 134, "annotation": null}, {"text": "and", "start": 748, "end": 751, "id": 135, "annotation": null}, {"text": "the", "start": 752, "end": 755, "id": 136, "annotation": null}, {"text": "compensation", "start": 756, "end": 768, "id": 137, "annotation": null}, {"text": "for", "start": 769, "end": 772, "id": 138, "annotation": null}, {"text": "our", "start": 773, "end": 776, "id": 139, "annotation": null}, {"text": "specific", "start": 777, "end": 785, "id": 140, "annotation": null}, {"text": "samples", "start": 786, "end": 793, "id": 141, "annotation": null}, {"text": ".", "start": 794, "end": 795, "id": 142, "annotation": null}], [{"text": "The", "start": 796, "end": 799, "id": 143, "annotation": null}, {"text": "technique", "start": 800, "end": 809, "id": 144, "annotation": null}, {"text": "is", "start": 810, "end": 812, "id": 145, "annotation": null}, {"text": "shown", "start": 813, "end": 818, "id": 146, "annotation": null}, {"text": "to", "start": 819, "end": 821, "id": 147, "annotation": null}, {"text": "work", "start": 822, "end": 826, "id": 148, "annotation": null}, {"text": "well", "start": 827, "end": 831, "id": 149, "annotation": null}, {"text": "for", "start": 832, "end": 835, "id": 150, "annotation": null}, {"text": "p", "start": 836, "end": 837, "id": 151, "annotation": "DOPANT"}, {"text": "-", "start": 838, "end": 839, "id": 152, "annotation": "DOPANT"}, {"text": "type", "start": 840, "end": 844, "id": 153, "annotation": "DOPANT"}, {"text": "ZnSe", "start": 845, "end": 849, "id": 154, "annotation": "BASEMAT"}, {"text": ":", "start": 850, "end": 851, "id": 155, "annotation": null}, {"text": "Li", "start": 852, "end": 854, "id": 156, "annotation": "DOPANT"}, {"text": ".", "start": 855, "end": 856, "id": 157, "annotation": null}], [{"text": "We", "start": 857, "end": 859, "id": 158, "annotation": null}, {"text": "obtain", "start": 860, "end": 866, "id": 159, "annotation": null}, {"text": "the", "start": 867, "end": 870, "id": 160, "annotation": null}, {"text": "result", "start": 871, "end": 877, "id": 161, "annotation": null}, {"text": "that", "start": 878, "end": 882, "id": 162, "annotation": null}, {"text": "all", "start": 883, "end": 886, "id": 163, "annotation": null}, {"text": "such", "start": 887, "end": 891, "id": 164, "annotation": null}, {"text": "samples", "start": 892, "end": 899, "id": 165, "annotation": null}, {"text": "are", "start": 900, "end": 903, "id": 166, "annotation": null}, {"text": "substantially", "start": 904, "end": 917, "id": 167, "annotation": null}, {"text": "uncompensated", "start": 918, "end": 931, "id": 168, "annotation": null}, {"text": ",", "start": 932, "end": 933, "id": 169, "annotation": null}, {"text": "regardless", "start": 934, "end": 944, "id": 170, "annotation": null}, {"text": "of", "start": 945, "end": 947, "id": 171, "annotation": null}, {"text": "the", "start": 948, "end": 951, "id": 172, "annotation": null}, {"text": "ratio", "start": 952, "end": 957, "id": 173, "annotation": null}, {"text": "(", "start": 958, "end": 959, "id": 174, "annotation": null}, {"text": "NA", "start": 960, "end": 962, "id": 175, "annotation": null}, {"text": "\u2212", "start": 963, "end": 964, "id": 176, "annotation": null}, {"text": "ND)/[Li", "start": 965, "end": 972, "id": 177, "annotation": null}, {"text": "]", "start": 973, "end": 974, "id": 178, "annotation": null}, {"text": ".", "start": 975, "end": 976, "id": 179, "annotation": null}], [{"text": "From", "start": 977, "end": 981, "id": 180, "annotation": null}, {"text": "this", "start": 982, "end": 986, "id": 181, "annotation": null}, {"text": "we", "start": 987, "end": 989, "id": 182, "annotation": null}, {"text": "conclude", "start": 990, "end": 998, "id": 183, "annotation": null}, {"text": "that", "start": 999, "end": 1003, "id": 184, "annotation": null}, {"text": "excess", "start": 1004, "end": 1010, "id": 185, "annotation": null}, {"text": "Li", "start": 1011, "end": 1013, "id": 186, "annotation": null}, {"text": "does", "start": 1014, "end": 1018, "id": 187, "annotation": null}, {"text": "not", "start": 1019, "end": 1022, "id": 188, "annotation": null}, {"text": "cause", "start": 1023, "end": 1028, "id": 189, "annotation": null}, {"text": "compensation", "start": 1029, "end": 1041, "id": 190, "annotation": null}, {"text": ",", "start": 1042, "end": 1043, "id": 191, "annotation": null}, {"text": "but", "start": 1044, "end": 1047, "id": 192, "annotation": null}, {"text": "rather", "start": 1048, "end": 1054, "id": 193, "annotation": null}, {"text": "passivation", "start": 1055, "end": 1066, "id": 194, "annotation": null}, {"text": "by", "start": 1067, "end": 1069, "id": 195, "annotation": null}, {"text": "the", "start": 1070, "end": 1073, "id": 196, "annotation": null}, {"text": "formation", "start": 1074, "end": 1083, "id": 197, "annotation": null}, {"text": "of", "start": 1084, "end": 1086, "id": 198, "annotation": null}, {"text": "Li", "start": 1087, "end": 1089, "id": 199, "annotation": null}, {"text": "substitutional-", "start": 1090, "end": 1105, "id": 200, "annotation": null}, {"text": "interstitial", "start": 1106, "end": 1118, "id": 201, "annotation": null}, {"text": "complexes", "start": 1119, "end": 1128, "id": 202, "annotation": null}, {"text": ".", "start": 1129, "end": 1130, "id": 203, "annotation": null}], [{"text": "We", "start": 1131, "end": 1133, "id": 204, "annotation": null}, {"text": "measure", "start": 1134, "end": 1141, "id": 205, "annotation": null}, {"text": "the", "start": 1142, "end": 1145, "id": 206, "annotation": null}, {"text": "dissociation", "start": 1146, "end": 1158, "id": 207, "annotation": null}, {"text": "energy", "start": 1159, "end": 1165, "id": 208, "annotation": null}, {"text": "of", "start": 1166, "end": 1168, "id": 209, "annotation": null}, {"text": "the", "start": 1169, "end": 1172, "id": 210, "annotation": null}, {"text": "complex", "start": 1173, "end": 1180, "id": 211, "annotation": null}, {"text": ",", "start": 1181, "end": 1182, "id": 212, "annotation": null}, {"text": "which", "start": 1183, "end": 1188, "id": 213, "annotation": null}, {"text": "is", "start": 1189, "end": 1191, "id": 214, "annotation": null}, {"text": "about", "start": 1192, "end": 1197, "id": 215, "annotation": null}, {"text": "0.7", "start": 1198, "end": 1201, "id": 216, "annotation": null}, {"text": "eV", "start": 1202, "end": 1204, "id": 217, "annotation": null}, {"text": ",", "start": 1205, "end": 1206, "id": 218, "annotation": null}, {"text": "in", "start": 1207, "end": 1209, "id": 219, "annotation": null}, {"text": "good", "start": 1210, "end": 1214, "id": 220, "annotation": null}, {"text": "agreement", "start": 1215, "end": 1224, "id": 221, "annotation": null}, {"text": "with", "start": 1225, "end": 1229, "id": 222, "annotation": null}, {"text": "theory", "start": 1230, "end": 1236, "id": 223, "annotation": null}, {"text": ".", "start": 1237, "end": 1238, "id": 224, "annotation": null}], [{"text": "For", "start": 1239, "end": 1242, "id": 225, "annotation": null}, {"text": "ZnSe", "start": 1243, "end": 1247, "id": 226, "annotation": "BASEMAT"}, {"text": ":", "start": 1248, "end": 1249, "id": 227, "annotation": null}, {"text": "Li", "start": 1250, "end": 1252, "id": 228, "annotation": "DOPANT"}, {"text": "samples", "start": 1253, "end": 1260, "id": 229, "annotation": null}, {"text": "with", "start": 1261, "end": 1265, "id": 230, "annotation": null}, {"text": "few", "start": 1266, "end": 1269, "id": 231, "annotation": null}, {"text": "complexes", "start": 1270, "end": 1279, "id": 232, "annotation": null}, {"text": ",", "start": 1280, "end": 1281, "id": 233, "annotation": null}, {"text": "the", "start": 1282, "end": 1285, "id": 234, "annotation": null}, {"text": "maximum", "start": 1286, "end": 1293, "id": 235, "annotation": null}, {"text": "room", "start": 1294, "end": 1298, "id": 236, "annotation": null}, {"text": "-", "start": 1299, "end": 1300, "id": 237, "annotation": null}, {"text": "temperature", "start": 1301, "end": 1312, "id": 238, "annotation": null}, {"text": "hole", "start": 1313, "end": 1317, "id": 239, "annotation": null}, {"text": "mobility", "start": 1318, "end": 1326, "id": 240, "annotation": null}, {"text": "was", "start": 1327, "end": 1330, "id": 241, "annotation": null}, {"text": "about", "start": 1331, "end": 1336, "id": 242, "annotation": null}, {"text": "36", "start": 1337, "end": 1339, "id": 243, "annotation": null}, {"text": "cm2", "start": 1340, "end": 1343, "id": 244, "annotation": null}, {"text": "/", "start": 1344, "end": 1345, "id": 245, "annotation": null}, {"text": "V", "start": 1346, "end": 1347, "id": 246, "annotation": null}, {"text": "s", "start": 1348, "end": 1349, "id": 247, "annotation": null}, {"text": "and", "start": 1350, "end": 1353, "id": 248, "annotation": null}, {"text": "the", "start": 1354, "end": 1357, "id": 249, "annotation": null}, {"text": "peak", "start": 1358, "end": 1362, "id": 250, "annotation": null}, {"text": "mobility", "start": 1363, "end": 1371, "id": 251, "annotation": null}, {"text": "was", "start": 1372, "end": 1375, "id": 252, "annotation": null}, {"text": "about", "start": 1376, "end": 1381, "id": 253, "annotation": null}, {"text": "155", "start": 1382, "end": 1385, "id": 254, "annotation": null}, {"text": "cm2", "start": 1386, "end": 1389, "id": 255, "annotation": null}, {"text": "/", "start": 1390, "end": 1391, "id": 256, "annotation": null}, {"text": "V", "start": 1392, "end": 1393, "id": 257, "annotation": null}, {"text": "s", "start": 1394, "end": 1395, "id": 258, "annotation": null}, {"text": "at", "start": 1396, "end": 1398, "id": 259, "annotation": null}, {"text": "about", "start": 1399, "end": 1404, "id": 260, "annotation": null}, {"text": "125", "start": 1405, "end": 1408, "id": 261, "annotation": null}, {"text": "K", "start": 1409, "end": 1410, "id": 262, "annotation": null}, {"text": ";", "start": 1411, "end": 1412, "id": 263, "annotation": null}, {"text": "for", "start": 1413, "end": 1416, "id": 264, "annotation": null}, {"text": "samples", "start": 1417, "end": 1424, "id": 265, "annotation": null}, {"text": "with", "start": 1425, "end": 1429, "id": 266, "annotation": null}, {"text": "a", "start": 1430, "end": 1431, "id": 267, "annotation": null}, {"text": "high", "start": 1432, "end": 1436, "id": 268, "annotation": null}, {"text": "concentration", "start": 1437, "end": 1450, "id": 269, "annotation": null}, {"text": "of", "start": 1451, "end": 1453, "id": 270, "annotation": null}, {"text": "complexes", "start": 1454, "end": 1463, "id": 271, "annotation": null}, {"text": ",", "start": 1464, "end": 1465, "id": 272, "annotation": null}, {"text": "the", "start": 1466, "end": 1469, "id": 273, "annotation": null}, {"text": "transport", "start": 1470, "end": 1479, "id": 274, "annotation": null}, {"text": "was", "start": 1480, "end": 1483, "id": 275, "annotation": null}, {"text": "degraded", "start": 1484, "end": 1492, "id": 276, "annotation": null}, {"text": ".", "start": 1493, "end": 1494, "id": 277, "annotation": null}], [{"text": "In", "start": 1495, "end": 1497, "id": 278, "annotation": null}, {"text": "the", "start": 1498, "end": 1501, "id": 279, "annotation": null}, {"text": "case", "start": 1502, "end": 1506, "id": 280, "annotation": null}, {"text": "of", "start": 1507, "end": 1509, "id": 281, "annotation": null}, {"text": "p", "start": 1510, "end": 1511, "id": 282, "annotation": "DOPANT"}, {"text": "-", "start": 1512, "end": 1513, "id": 283, "annotation": "DOPANT"}, {"text": "type", "start": 1514, "end": 1518, "id": 284, "annotation": "DOPANT"}, {"text": "ZnSe", "start": 1519, "end": 1523, "id": 285, "annotation": "BASEMAT"}, {"text": ":", "start": 1524, "end": 1525, "id": 286, "annotation": null}, {"text": "N", "start": 1526, "end": 1527, "id": 287, "annotation": "DOPANT"}, {"text": ",", "start": 1528, "end": 1529, "id": 288, "annotation": null}, {"text": "transport", "start": 1530, "end": 1539, "id": 289, "annotation": null}, {"text": "results", "start": 1540, "end": 1547, "id": 290, "annotation": null}, {"text": "were", "start": 1548, "end": 1552, "id": 291, "annotation": null}, {"text": "similar", "start": 1553, "end": 1560, "id": 292, "annotation": null}, {"text": "to", "start": 1561, "end": 1563, "id": 293, "annotation": null}, {"text": "ZnSe", "start": 1564, "end": 1568, "id": 294, "annotation": "BASEMAT"}, {"text": ":", "start": 1569, "end": 1570, "id": 295, "annotation": null}, {"text": "Li", "start": 1571, "end": 1573, "id": 296, "annotation": "DOPANT"}, {"text": "with", "start": 1574, "end": 1578, "id": 297, "annotation": null}, {"text": "a", "start": 1579, "end": 1580, "id": 298, "annotation": null}, {"text": "high", "start": 1581, "end": 1585, "id": 299, "annotation": null}, {"text": "concentration", "start": 1586, "end": 1599, "id": 300, "annotation": null}, {"text": "of", "start": 1600, "end": 1602, "id": 301, "annotation": null}, {"text": "complexes", "start": 1603, "end": 1612, "id": 302, "annotation": null}, {"text": ".", "start": 1613, "end": 1614, "id": 303, "annotation": null}], [{"text": "This", "start": 1615, "end": 1619, "id": 304, "annotation": null}, {"text": "may", "start": 1620, "end": 1623, "id": 305, "annotation": null}, {"text": "be", "start": 1624, "end": 1626, "id": 306, "annotation": null}, {"text": "due", "start": 1627, "end": 1630, "id": 307, "annotation": null}, {"text": "to", "start": 1631, "end": 1633, "id": 308, "annotation": null}, {"text": "either", "start": 1634, "end": 1640, "id": 309, "annotation": null}, {"text": "complexes", "start": 1641, "end": 1650, "id": 310, "annotation": null}, {"text": "or", "start": 1651, "end": 1653, "id": 311, "annotation": null}, {"text": "other", "start": 1654, "end": 1659, "id": 312, "annotation": null}, {"text": "point", "start": 1660, "end": 1665, "id": 313, "annotation": null}, {"text": "defects", "start": 1666, "end": 1673, "id": 314, "annotation": null}, {"text": "in", "start": 1674, "end": 1676, "id": 315, "annotation": null}, {"text": "the", "start": 1677, "end": 1680, "id": 316, "annotation": null}, {"text": "epilayers", "start": 1681, "end": 1690, "id": 317, "annotation": null}, {"text": "and", "start": 1691, "end": 1694, "id": 318, "annotation": null}, {"text": "offers", "start": 1695, "end": 1701, "id": 319, "annotation": null}, {"text": "an", "start": 1702, "end": 1704, "id": 320, "annotation": null}, {"text": "explanation", "start": 1705, "end": 1716, "id": 321, "annotation": null}, {"text": "of", "start": 1717, "end": 1719, "id": 322, "annotation": null}, {"text": "the", "start": 1720, "end": 1723, "id": 323, "annotation": null}, {"text": "high", "start": 1724, "end": 1728, "id": 324, "annotation": null}, {"text": "turn", "start": 1729, "end": 1733, "id": 325, "annotation": null}, {"text": "-", "start": 1734, "end": 1735, "id": 326, "annotation": null}, {"text": "on", "start": 1736, "end": 1738, "id": 327, "annotation": null}, {"text": "voltage", "start": 1739, "end": 1746, "id": 328, "annotation": null}, {"text": "of", "start": 1747, "end": 1749, "id": 329, "annotation": null}, {"text": "DH", "start": 1750, "end": 1752, "id": 330, "annotation": null}, {"text": "lasers", "start": 1753, "end": 1759, "id": 331, "annotation": null}, {"text": ".", "start": 1760, "end": 1761, "id": 332, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Temperature quenching (TQ) curves in the temperature range of 80\u2013500\u00a0K have been studied for both the undoped, and doped with RE 3+-ions (RE\u00a0=\u00a0Ce, Eu, Er, Pr, Nd) lanthanum beryllate (BLO) single crystals. Photoluminescence spectra and TQ-curves were recorded upon excitation in the absorption bands of the lattice defects. The reaction rate model has been developed to describe the experimental results. The model includes two competing processes with characteristic temperatures: thermal quenching of intracenter PL (T 1) and thermally stimulated migration of electronic excitations (T 2). The competition between these two processes leads to the observed non-monotonic TQ-curves. The rationalized formulas using three parameters (intensity, activation energy, characteristic temperature), were developed to describe each of these processes. Within the framework of the unified model, all the experimental results were described and the best fit parameters were obtained. Classification of the investigated lanthanum beryllate crystals was carried out in line with the best fit parameters obtained for the TQ-curves.", "meta": {"doi": "10.1016/j.radmeas.2015.08.004"}, "_input_hash": -2117867340, "_task_hash": -107865925, "tokens": [[{"text": "Temperature", "start": 0, "end": 11, "id": 0, "annotation": null}, {"text": "quenching", "start": 12, "end": 21, "id": 1, "annotation": null}, {"text": "(", "start": 22, "end": 23, "id": 2, "annotation": null}, {"text": "TQ", "start": 24, "end": 26, "id": 3, "annotation": null}, {"text": ")", "start": 27, "end": 28, "id": 4, "annotation": null}, {"text": "curves", "start": 29, "end": 35, "id": 5, "annotation": null}, {"text": "in", "start": 36, "end": 38, "id": 6, "annotation": null}, {"text": "the", "start": 39, "end": 42, "id": 7, "annotation": null}, {"text": "temperature", "start": 43, "end": 54, "id": 8, "annotation": null}, {"text": "range", "start": 55, "end": 60, "id": 9, "annotation": null}, {"text": "of", "start": 61, "end": 63, "id": 10, "annotation": null}, {"text": "80\u2013500", "start": 64, "end": 70, "id": 11, "annotation": null}, {"text": "K", "start": 71, "end": 72, "id": 13, "annotation": null}, {"text": "have", "start": 73, "end": 77, "id": 14, "annotation": null}, {"text": "been", "start": 78, "end": 82, "id": 15, "annotation": null}, {"text": "studied", "start": 83, "end": 90, "id": 16, "annotation": null}, {"text": "for", "start": 91, "end": 94, "id": 17, "annotation": null}, {"text": "both", "start": 95, "end": 99, "id": 18, "annotation": null}, {"text": "the", "start": 100, "end": 103, "id": 19, "annotation": null}, {"text": "undoped", "start": 104, "end": 111, "id": 20, "annotation": null}, {"text": ",", "start": 112, "end": 113, "id": 21, "annotation": null}, {"text": "and", "start": 114, "end": 117, "id": 22, "annotation": null}, {"text": "doped", "start": 118, "end": 123, "id": 23, "annotation": null}, {"text": "with", "start": 124, "end": 128, "id": 24, "annotation": null}, {"text": "RE", "start": 129, "end": 131, "id": 25, "annotation": "DOPANT"}, {"text": "3", "start": 132, "end": 133, "id": 26, "annotation": null}, {"text": "+", "start": 134, "end": 135, "id": 27, "annotation": "DOPANT"}, {"text": "-ions", "start": 136, "end": 141, "id": 28, "annotation": null}, {"text": "(", "start": 142, "end": 143, "id": 29, "annotation": null}, {"text": "RE", "start": 144, "end": 146, "id": 30, "annotation": "DOPANT"}, {"text": "=", "start": 147, "end": 148, "id": 32, "annotation": null}, {"text": "Ce", "start": 149, "end": 151, "id": 34, "annotation": "DOPANT"}, {"text": ",", "start": 152, "end": 153, "id": 35, "annotation": null}, {"text": "Eu", "start": 154, "end": 156, "id": 36, "annotation": "DOPANT"}, {"text": ",", "start": 157, "end": 158, "id": 37, "annotation": null}, {"text": "Er", "start": 159, "end": 161, "id": 38, "annotation": "DOPANT"}, {"text": ",", "start": 162, "end": 163, "id": 39, "annotation": null}, {"text": "Pr", "start": 164, "end": 166, "id": 40, "annotation": "DOPANT"}, {"text": ",", "start": 167, "end": 168, "id": 41, "annotation": null}, {"text": "Nd", "start": 169, "end": 171, "id": 42, "annotation": "DOPANT"}, {"text": ")", "start": 172, "end": 173, "id": 43, "annotation": null}, {"text": "lanthanum", "start": 174, "end": 183, "id": 44, "annotation": "BASEMAT"}, {"text": "beryllate", "start": 184, "end": 193, "id": 45, "annotation": "BASEMAT"}, {"text": "(", "start": 194, "end": 195, "id": 46, "annotation": null}, {"text": "BLO", "start": 196, "end": 199, "id": 47, "annotation": "BASEMAT"}, {"text": ")", "start": 200, "end": 201, "id": 48, "annotation": null}, {"text": "single", "start": 202, "end": 208, "id": 49, "annotation": null}, {"text": "crystals", "start": 209, "end": 217, "id": 50, "annotation": null}, {"text": ".", "start": 218, "end": 219, "id": 51, "annotation": null}], [{"text": "Photoluminescence", "start": 220, "end": 237, "id": 52, "annotation": null}, {"text": "spectra", "start": 238, "end": 245, "id": 53, "annotation": null}, {"text": "and", "start": 246, "end": 249, "id": 54, "annotation": null}, {"text": "TQ", "start": 250, "end": 252, "id": 55, "annotation": null}, {"text": "-", "start": 253, "end": 254, "id": 56, "annotation": null}, {"text": "curves", "start": 255, "end": 261, "id": 57, "annotation": null}, {"text": "were", "start": 262, "end": 266, "id": 58, "annotation": null}, {"text": "recorded", "start": 267, "end": 275, "id": 59, "annotation": null}, {"text": "upon", "start": 276, "end": 280, "id": 60, "annotation": null}, {"text": "excitation", "start": 281, "end": 291, "id": 61, "annotation": null}, {"text": "in", "start": 292, "end": 294, "id": 62, "annotation": null}, {"text": "the", "start": 295, "end": 298, "id": 63, "annotation": null}, {"text": "absorption", "start": 299, "end": 309, "id": 64, "annotation": null}, {"text": "bands", "start": 310, "end": 315, "id": 65, "annotation": null}, {"text": "of", "start": 316, "end": 318, "id": 66, "annotation": null}, {"text": "the", "start": 319, "end": 322, "id": 67, "annotation": null}, {"text": "lattice", "start": 323, "end": 330, "id": 68, "annotation": null}, {"text": "defects", "start": 331, "end": 338, "id": 69, "annotation": null}, {"text": ".", "start": 339, "end": 340, "id": 70, "annotation": null}], [{"text": "The", "start": 341, "end": 344, "id": 71, "annotation": null}, {"text": "reaction", "start": 345, "end": 353, "id": 72, "annotation": null}, {"text": "rate", "start": 354, "end": 358, "id": 73, "annotation": null}, {"text": "model", "start": 359, "end": 364, "id": 74, "annotation": null}, {"text": "has", "start": 365, "end": 368, "id": 75, "annotation": null}, {"text": "been", "start": 369, "end": 373, "id": 76, "annotation": null}, {"text": "developed", "start": 374, "end": 383, "id": 77, "annotation": null}, {"text": "to", "start": 384, "end": 386, "id": 78, "annotation": null}, {"text": "describe", "start": 387, "end": 395, "id": 79, "annotation": null}, {"text": "the", "start": 396, "end": 399, "id": 80, "annotation": null}, {"text": "experimental", "start": 400, "end": 412, "id": 81, "annotation": null}, {"text": "results", "start": 413, "end": 420, "id": 82, "annotation": null}, {"text": ".", "start": 421, "end": 422, "id": 83, "annotation": null}], [{"text": "The", "start": 423, "end": 426, "id": 84, "annotation": null}, {"text": "model", "start": 427, "end": 432, "id": 85, "annotation": null}, {"text": "includes", "start": 433, "end": 441, "id": 86, "annotation": null}, {"text": "two", "start": 442, "end": 445, "id": 87, "annotation": null}, {"text": "competing", "start": 446, "end": 455, "id": 88, "annotation": null}, {"text": "processes", "start": 456, "end": 465, "id": 89, "annotation": null}, {"text": "with", "start": 466, "end": 470, "id": 90, "annotation": null}, {"text": "characteristic", "start": 471, "end": 485, "id": 91, "annotation": null}, {"text": "temperatures", "start": 486, "end": 498, "id": 92, "annotation": null}, {"text": ":", "start": 499, "end": 500, "id": 93, "annotation": null}, {"text": "thermal", "start": 501, "end": 508, "id": 94, "annotation": null}, {"text": "quenching", "start": 509, "end": 518, "id": 95, "annotation": null}, {"text": "of", "start": 519, "end": 521, "id": 96, "annotation": null}, {"text": "intracenter", "start": 522, "end": 533, "id": 97, "annotation": null}, {"text": "PL", "start": 534, "end": 536, "id": 98, "annotation": null}, {"text": "(", "start": 537, "end": 538, "id": 99, "annotation": null}, {"text": "T", "start": 539, "end": 540, "id": 100, "annotation": null}, {"text": "1", "start": 541, "end": 542, "id": 101, "annotation": null}, {"text": ")", "start": 543, "end": 544, "id": 102, "annotation": null}, {"text": "and", "start": 545, "end": 548, "id": 103, "annotation": null}, {"text": "thermally", "start": 549, "end": 558, "id": 104, "annotation": null}, {"text": "stimulated", "start": 559, "end": 569, "id": 105, "annotation": null}, {"text": "migration", "start": 570, "end": 579, "id": 106, "annotation": null}, {"text": "of", "start": 580, "end": 582, "id": 107, "annotation": null}, {"text": "electronic", "start": 583, "end": 593, "id": 108, "annotation": null}, {"text": "excitations", "start": 594, "end": 605, "id": 109, "annotation": null}, {"text": "(", "start": 606, "end": 607, "id": 110, "annotation": null}, {"text": "T", "start": 608, "end": 609, "id": 111, "annotation": null}, {"text": "2", "start": 610, "end": 611, "id": 112, "annotation": null}, {"text": ")", "start": 612, "end": 613, "id": 113, "annotation": null}, {"text": ".", "start": 614, "end": 615, "id": 114, "annotation": null}], [{"text": "The", "start": 616, "end": 619, "id": 115, "annotation": null}, {"text": "competition", "start": 620, "end": 631, "id": 116, "annotation": null}, {"text": "between", "start": 632, "end": 639, "id": 117, "annotation": null}, {"text": "these", "start": 640, "end": 645, "id": 118, "annotation": null}, {"text": "two", "start": 646, "end": 649, "id": 119, "annotation": null}, {"text": "processes", "start": 650, "end": 659, "id": 120, "annotation": null}, {"text": "leads", "start": 660, "end": 665, "id": 121, "annotation": null}, {"text": "to", "start": 666, "end": 668, "id": 122, "annotation": null}, {"text": "the", "start": 669, "end": 672, "id": 123, "annotation": null}, {"text": "observed", "start": 673, "end": 681, "id": 124, "annotation": null}, {"text": "non", "start": 682, "end": 685, "id": 125, "annotation": null}, {"text": "-", "start": 686, "end": 687, "id": 126, "annotation": null}, {"text": "monotonic", "start": 688, "end": 697, "id": 127, "annotation": null}, {"text": "TQ", "start": 698, "end": 700, "id": 128, "annotation": null}, {"text": "-", "start": 701, "end": 702, "id": 129, "annotation": null}, {"text": "curves", "start": 703, "end": 709, "id": 130, "annotation": null}, {"text": ".", "start": 710, "end": 711, "id": 131, "annotation": null}], [{"text": "The", "start": 712, "end": 715, "id": 132, "annotation": null}, {"text": "rationalized", "start": 716, "end": 728, "id": 133, "annotation": null}, {"text": "formulas", "start": 729, "end": 737, "id": 134, "annotation": null}, {"text": "using", "start": 738, "end": 743, "id": 135, "annotation": null}, {"text": "three", "start": 744, "end": 749, "id": 136, "annotation": null}, {"text": "parameters", "start": 750, "end": 760, "id": 137, "annotation": null}, {"text": "(", "start": 761, "end": 762, "id": 138, "annotation": null}, {"text": "intensity", "start": 763, "end": 772, "id": 139, "annotation": null}, {"text": ",", "start": 773, "end": 774, "id": 140, "annotation": null}, {"text": "activation", "start": 775, "end": 785, "id": 141, "annotation": null}, {"text": "energy", "start": 786, "end": 792, "id": 142, "annotation": null}, {"text": ",", "start": 793, "end": 794, "id": 143, "annotation": null}, {"text": "characteristic", "start": 795, "end": 809, "id": 144, "annotation": null}, {"text": "temperature", "start": 810, "end": 821, "id": 145, "annotation": null}, {"text": ")", "start": 822, "end": 823, "id": 146, "annotation": null}, {"text": ",", "start": 824, "end": 825, "id": 147, "annotation": null}, {"text": "were", "start": 826, "end": 830, "id": 148, "annotation": null}, {"text": "developed", "start": 831, "end": 840, "id": 149, "annotation": null}, {"text": "to", "start": 841, "end": 843, "id": 150, "annotation": null}, {"text": "describe", "start": 844, "end": 852, "id": 151, "annotation": null}, {"text": "each", "start": 853, "end": 857, "id": 152, "annotation": null}, {"text": "of", "start": 858, "end": 860, "id": 153, "annotation": null}, {"text": "these", "start": 861, "end": 866, "id": 154, "annotation": null}, {"text": "processes", "start": 867, "end": 876, "id": 155, "annotation": null}, {"text": ".", "start": 877, "end": 878, "id": 156, "annotation": null}], [{"text": "Within", "start": 879, "end": 885, "id": 157, "annotation": null}, {"text": "the", "start": 886, "end": 889, "id": 158, "annotation": null}, {"text": "framework", "start": 890, "end": 899, "id": 159, "annotation": null}, {"text": "of", "start": 900, "end": 902, "id": 160, "annotation": null}, {"text": "the", "start": 903, "end": 906, "id": 161, "annotation": null}, {"text": "unified", "start": 907, "end": 914, "id": 162, "annotation": null}, {"text": "model", "start": 915, "end": 920, "id": 163, "annotation": null}, {"text": ",", "start": 921, "end": 922, "id": 164, "annotation": null}, {"text": "all", "start": 923, "end": 926, "id": 165, "annotation": null}, {"text": "the", "start": 927, "end": 930, "id": 166, "annotation": null}, {"text": "experimental", "start": 931, "end": 943, "id": 167, "annotation": null}, {"text": "results", "start": 944, "end": 951, "id": 168, "annotation": null}, {"text": "were", "start": 952, "end": 956, "id": 169, "annotation": null}, {"text": "described", "start": 957, "end": 966, "id": 170, "annotation": null}, {"text": "and", "start": 967, "end": 970, "id": 171, "annotation": null}, {"text": "the", "start": 971, "end": 974, "id": 172, "annotation": null}, {"text": "best", "start": 975, "end": 979, "id": 173, "annotation": null}, {"text": "fit", "start": 980, "end": 983, "id": 174, "annotation": null}, {"text": "parameters", "start": 984, "end": 994, "id": 175, "annotation": null}, {"text": "were", "start": 995, "end": 999, "id": 176, "annotation": null}, {"text": "obtained", "start": 1000, "end": 1008, "id": 177, "annotation": null}, {"text": ".", "start": 1009, "end": 1010, "id": 178, "annotation": null}], [{"text": "Classification", "start": 1011, "end": 1025, "id": 179, "annotation": null}, {"text": "of", "start": 1026, "end": 1028, "id": 180, "annotation": null}, {"text": "the", "start": 1029, "end": 1032, "id": 181, "annotation": null}, {"text": "investigated", "start": 1033, "end": 1045, "id": 182, "annotation": null}, {"text": "lanthanum", "start": 1046, "end": 1055, "id": 183, "annotation": null}, {"text": "beryllate", "start": 1056, "end": 1065, "id": 184, "annotation": null}, {"text": "crystals", "start": 1066, "end": 1074, "id": 185, "annotation": null}, {"text": "was", "start": 1075, "end": 1078, "id": 186, "annotation": null}, {"text": "carried", "start": 1079, "end": 1086, "id": 187, "annotation": null}, {"text": "out", "start": 1087, "end": 1090, "id": 188, "annotation": null}, {"text": "in", "start": 1091, "end": 1093, "id": 189, "annotation": null}, {"text": "line", "start": 1094, "end": 1098, "id": 190, "annotation": null}, {"text": "with", "start": 1099, "end": 1103, "id": 191, "annotation": null}, {"text": "the", "start": 1104, "end": 1107, "id": 192, "annotation": null}, {"text": "best", "start": 1108, "end": 1112, "id": 193, "annotation": null}, {"text": "fit", "start": 1113, "end": 1116, "id": 194, "annotation": null}, {"text": "parameters", "start": 1117, "end": 1127, "id": 195, "annotation": null}, {"text": "obtained", "start": 1128, "end": 1136, "id": 196, "annotation": null}, {"text": "for", "start": 1137, "end": 1140, "id": 197, "annotation": null}, {"text": "the", "start": 1141, "end": 1144, "id": 198, "annotation": null}, {"text": "TQ", "start": 1145, "end": 1147, "id": 199, "annotation": null}, {"text": "-", "start": 1148, "end": 1149, "id": 200, "annotation": null}, {"text": "curves", "start": 1150, "end": 1156, "id": 201, "annotation": null}, {"text": ".", "start": 1157, "end": 1158, "id": 202, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Tungsten-doped tin oxide (SnO2:W) transparent conductive films were prepared on quartz substrates by pulsed plasma deposition method with a post-annealing. The structure, chemical states, electrical and optical properties of the films have been investigated with tungsten-doping content and annealing temperature. The lowest resistivity of 6.67\u00d710\u22124\u03a9 cm was obtained, with carrier mobility of 65cm2 V\u22121 s\u22121 and carrier concentration of 1.44\u00d71020cm\u22123 in 3wt.% tungsten-doping films annealed at 800\u00b0C in air. The average optical transmittance achieves 86% in the visible region, and approximately 85% in near-infrared region, with the optical band gap ranging from 4.05eV to 4.22eV.", "meta": {"doi": "10.1016/j.tsf.2009.07.119"}, "_input_hash": 1704797954, "_task_hash": 496128891, "tokens": [[{"text": "Tungsten", "start": 0, "end": 8, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 9, "end": 10, "id": 1, "annotation": null}, {"text": "doped", "start": 11, "end": 16, "id": 2, "annotation": null}, {"text": "tin", "start": 17, "end": 20, "id": 3, "annotation": "BASEMAT"}, {"text": "oxide", "start": 21, "end": 26, "id": 4, "annotation": "BASEMAT"}, {"text": "(", "start": 27, "end": 28, "id": 5, "annotation": null}, {"text": "SnO2", "start": 29, "end": 33, "id": 6, "annotation": "BASEMAT"}, {"text": ":", "start": 34, "end": 35, "id": 7, "annotation": null}, {"text": "W", "start": 36, "end": 37, "id": 8, "annotation": "DOPANT"}, {"text": ")", "start": 38, "end": 39, "id": 9, "annotation": null}, {"text": "transparent", "start": 40, "end": 51, "id": 10, "annotation": null}, {"text": "conductive", "start": 52, "end": 62, "id": 11, "annotation": null}, {"text": "films", "start": 63, "end": 68, "id": 12, "annotation": null}, {"text": "were", "start": 69, "end": 73, "id": 13, "annotation": null}, {"text": "prepared", "start": 74, "end": 82, "id": 14, "annotation": null}, {"text": "on", "start": 83, "end": 85, "id": 15, "annotation": null}, {"text": "quartz", "start": 86, "end": 92, "id": 16, "annotation": null}, {"text": "substrates", "start": 93, "end": 103, "id": 17, "annotation": null}, {"text": "by", "start": 104, "end": 106, "id": 18, "annotation": null}, {"text": "pulsed", "start": 107, "end": 113, "id": 19, "annotation": null}, {"text": "plasma", "start": 114, "end": 120, "id": 20, "annotation": null}, {"text": "deposition", "start": 121, "end": 131, "id": 21, "annotation": null}, {"text": "method", "start": 132, "end": 138, "id": 22, "annotation": null}, {"text": "with", "start": 139, "end": 143, "id": 23, "annotation": null}, {"text": "a", "start": 144, "end": 145, "id": 24, "annotation": null}, {"text": "post", "start": 146, "end": 150, "id": 25, "annotation": null}, {"text": "-", "start": 151, "end": 152, "id": 26, "annotation": null}, {"text": "annealing", "start": 153, "end": 162, "id": 27, "annotation": null}, {"text": ".", "start": 163, "end": 164, "id": 28, "annotation": null}], [{"text": "The", "start": 165, "end": 168, "id": 29, "annotation": null}, {"text": "structure", "start": 169, "end": 178, "id": 30, "annotation": null}, {"text": ",", "start": 179, "end": 180, "id": 31, "annotation": null}, {"text": "chemical", "start": 181, "end": 189, "id": 32, "annotation": null}, {"text": "states", "start": 190, "end": 196, "id": 33, "annotation": null}, {"text": ",", "start": 197, "end": 198, "id": 34, "annotation": null}, {"text": "electrical", "start": 199, "end": 209, "id": 35, "annotation": null}, {"text": "and", "start": 210, "end": 213, "id": 36, "annotation": null}, {"text": "optical", "start": 214, "end": 221, "id": 37, "annotation": null}, {"text": "properties", "start": 222, "end": 232, "id": 38, "annotation": null}, {"text": "of", "start": 233, "end": 235, "id": 39, "annotation": null}, {"text": "the", "start": 236, "end": 239, "id": 40, "annotation": null}, {"text": "films", "start": 240, "end": 245, "id": 41, "annotation": "BASEMAT"}, {"text": "have", "start": 246, "end": 250, "id": 42, "annotation": null}, {"text": "been", "start": 251, "end": 255, "id": 43, "annotation": null}, {"text": "investigated", "start": 256, "end": 268, "id": 44, "annotation": null}, {"text": "with", "start": 269, "end": 273, "id": 45, "annotation": null}, {"text": "tungsten", "start": 274, "end": 282, "id": 46, "annotation": "DOPANT"}, {"text": "-", "start": 283, "end": 284, "id": 47, "annotation": null}, {"text": "doping", "start": 285, "end": 291, "id": 48, "annotation": null}, {"text": "content", "start": 292, "end": 299, "id": 49, "annotation": null}, {"text": "and", "start": 300, "end": 303, "id": 50, "annotation": null}, {"text": "annealing", "start": 304, "end": 313, "id": 51, "annotation": null}, {"text": "temperature", "start": 314, "end": 325, "id": 52, "annotation": null}, {"text": ".", "start": 326, "end": 327, "id": 53, "annotation": null}], [{"text": "The", "start": 328, "end": 331, "id": 54, "annotation": null}, {"text": "lowest", "start": 332, "end": 338, "id": 55, "annotation": null}, {"text": "resistivity", "start": 339, "end": 350, "id": 56, "annotation": null}, {"text": "of", "start": 351, "end": 353, "id": 57, "annotation": null}, {"text": "6.67\u00d710\u22124\u03a9", "start": 354, "end": 364, "id": 58, "annotation": null}, {"text": "cm", "start": 365, "end": 367, "id": 59, "annotation": null}, {"text": "was", "start": 368, "end": 371, "id": 60, "annotation": null}, {"text": "obtained", "start": 372, "end": 380, "id": 61, "annotation": null}, {"text": ",", "start": 381, "end": 382, "id": 62, "annotation": null}, {"text": "with", "start": 383, "end": 387, "id": 63, "annotation": null}, {"text": "carrier", "start": 388, "end": 395, "id": 64, "annotation": null}, {"text": "mobility", "start": 396, "end": 404, "id": 65, "annotation": null}, {"text": "of", "start": 405, "end": 407, "id": 66, "annotation": null}, {"text": "65cm2", "start": 408, "end": 413, "id": 67, "annotation": null}, {"text": "V\u22121", "start": 414, "end": 417, "id": 68, "annotation": null}, {"text": "s\u22121", "start": 418, "end": 421, "id": 69, "annotation": null}, {"text": "and", "start": 422, "end": 425, "id": 70, "annotation": null}, {"text": "carrier", "start": 426, "end": 433, "id": 71, "annotation": null}, {"text": "concentration", "start": 434, "end": 447, "id": 72, "annotation": null}, {"text": "of", "start": 448, "end": 450, "id": 73, "annotation": null}, {"text": "1.44\u00d71020cm\u22123", "start": 451, "end": 464, "id": 74, "annotation": "DOPMODQ"}, {"text": "in", "start": 465, "end": 467, "id": 75, "annotation": null}, {"text": "3wt.%", "start": 468, "end": 473, "id": 76, "annotation": "DOPMODQ"}, {"text": "tungsten", "start": 474, "end": 482, "id": 77, "annotation": "DOPANT"}, {"text": "-", "start": 483, "end": 484, "id": 78, "annotation": null}, {"text": "doping", "start": 485, "end": 491, "id": 79, "annotation": null}, {"text": "films", "start": 492, "end": 497, "id": 80, "annotation": "BASEMAT"}, {"text": "annealed", "start": 498, "end": 506, "id": 81, "annotation": null}, {"text": "at", "start": 507, "end": 509, "id": 82, "annotation": null}, {"text": "800", "start": 510, "end": 513, "id": 83, "annotation": null}, {"text": "\u00b0", "start": 514, "end": 515, "id": 84, "annotation": null}, {"text": "C", "start": 516, "end": 517, "id": 85, "annotation": null}, {"text": "in", "start": 518, "end": 520, "id": 86, "annotation": null}, {"text": "air", "start": 521, "end": 524, "id": 87, "annotation": null}, {"text": ".", "start": 525, "end": 526, "id": 88, "annotation": null}], [{"text": "The", "start": 527, "end": 530, "id": 89, "annotation": null}, {"text": "average", "start": 531, "end": 538, "id": 90, "annotation": null}, {"text": "optical", "start": 539, "end": 546, "id": 91, "annotation": null}, {"text": "transmittance", "start": 547, "end": 560, "id": 92, "annotation": null}, {"text": "achieves", "start": 561, "end": 569, "id": 93, "annotation": null}, {"text": "86", "start": 570, "end": 572, "id": 94, "annotation": null}, {"text": "%", "start": 573, "end": 574, "id": 95, "annotation": null}, {"text": "in", "start": 575, "end": 577, "id": 96, "annotation": null}, {"text": "the", "start": 578, "end": 581, "id": 97, "annotation": null}, {"text": "visible", "start": 582, "end": 589, "id": 98, "annotation": null}, {"text": "region", "start": 590, "end": 596, "id": 99, "annotation": null}, {"text": ",", "start": 597, "end": 598, "id": 100, "annotation": null}, {"text": "and", "start": 599, "end": 602, "id": 101, "annotation": null}, {"text": "approximately", "start": 603, "end": 616, "id": 102, "annotation": null}, {"text": "85", "start": 617, "end": 619, "id": 103, "annotation": null}, {"text": "%", "start": 620, "end": 621, "id": 104, "annotation": null}, {"text": "in", "start": 622, "end": 624, "id": 105, "annotation": null}, {"text": "near", "start": 625, "end": 629, "id": 106, "annotation": null}, {"text": "-", "start": 630, "end": 631, "id": 107, "annotation": null}, {"text": "infrared", "start": 632, "end": 640, "id": 108, "annotation": null}, {"text": "region", "start": 641, "end": 647, "id": 109, "annotation": null}, {"text": ",", "start": 648, "end": 649, "id": 110, "annotation": null}, {"text": "with", "start": 650, "end": 654, "id": 111, "annotation": null}, {"text": "the", "start": 655, "end": 658, "id": 112, "annotation": null}, {"text": "optical", "start": 659, "end": 666, "id": 113, "annotation": null}, {"text": "band", "start": 667, "end": 671, "id": 114, "annotation": null}, {"text": "gap", "start": 672, "end": 675, "id": 115, "annotation": null}, {"text": "ranging", "start": 676, "end": 683, "id": 116, "annotation": null}, {"text": "from", "start": 684, "end": 688, "id": 117, "annotation": null}, {"text": "4.05eV", "start": 689, "end": 695, "id": 118, "annotation": null}, {"text": "to", "start": 696, "end": 698, "id": 119, "annotation": null}, {"text": "4.22eV.", "start": 699, "end": 706, "id": 120, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The critical current for the breakdown of the quantum Hall effect at fixed filling factors has been observed to drop by more than a factor of ten when a GaAs/AlGaAs heterostructure is subjected to thermal cycling after exposure to a light pulse. Concurrent changes in the transport parameters suggest that the metastable, charged deep defect states in the doped AlGaAs layer, which are also responsible for the persistent photoconductivity effect, tend to increase inhomogeneities of the carrier density with thermal cycling and reduce the effective width for the current path in the quantum Hall regime.", "meta": {"doi": "10.1016/0038-1098(89)90434-1"}, "_input_hash": 772501034, "_task_hash": 1515289569, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "critical", "start": 4, "end": 12, "id": 1, "annotation": null}, {"text": "current", "start": 13, "end": 20, "id": 2, "annotation": null}, {"text": "for", "start": 21, "end": 24, "id": 3, "annotation": null}, {"text": "the", "start": 25, "end": 28, "id": 4, "annotation": null}, {"text": "breakdown", "start": 29, "end": 38, "id": 5, "annotation": null}, {"text": "of", "start": 39, "end": 41, "id": 6, "annotation": null}, {"text": "the", "start": 42, "end": 45, "id": 7, "annotation": null}, {"text": "quantum", "start": 46, "end": 53, "id": 8, "annotation": null}, {"text": "Hall", "start": 54, "end": 58, "id": 9, "annotation": null}, {"text": "effect", "start": 59, "end": 65, "id": 10, "annotation": null}, {"text": "at", "start": 66, "end": 68, "id": 11, "annotation": null}, {"text": "fixed", "start": 69, "end": 74, "id": 12, "annotation": null}, {"text": "filling", "start": 75, "end": 82, "id": 13, "annotation": null}, {"text": "factors", "start": 83, "end": 90, "id": 14, "annotation": null}, {"text": "has", "start": 91, "end": 94, "id": 15, "annotation": null}, {"text": "been", "start": 95, "end": 99, "id": 16, "annotation": null}, {"text": "observed", "start": 100, "end": 108, "id": 17, "annotation": null}, {"text": "to", "start": 109, "end": 111, "id": 18, "annotation": null}, {"text": "drop", "start": 112, "end": 116, "id": 19, "annotation": null}, {"text": "by", "start": 117, "end": 119, "id": 20, "annotation": null}, {"text": "more", "start": 120, "end": 124, "id": 21, "annotation": null}, {"text": "than", "start": 125, "end": 129, "id": 22, "annotation": null}, {"text": "a", "start": 130, "end": 131, "id": 23, "annotation": null}, {"text": "factor", "start": 132, "end": 138, "id": 24, "annotation": null}, {"text": "of", "start": 139, "end": 141, "id": 25, "annotation": null}, {"text": "ten", "start": 142, "end": 145, "id": 26, "annotation": null}, {"text": "when", "start": 146, "end": 150, "id": 27, "annotation": null}, {"text": "a", "start": 151, "end": 152, "id": 28, "annotation": null}, {"text": "GaAs", "start": 153, "end": 157, "id": 29, "annotation": null}, {"text": "/", "start": 158, "end": 159, "id": 30, "annotation": null}, {"text": "AlGaAs", "start": 160, "end": 166, "id": 31, "annotation": null}, {"text": "heterostructure", "start": 167, "end": 182, "id": 32, "annotation": null}, {"text": "is", "start": 183, "end": 185, "id": 33, "annotation": null}, {"text": "subjected", "start": 186, "end": 195, "id": 34, "annotation": null}, {"text": "to", "start": 196, "end": 198, "id": 35, "annotation": null}, {"text": "thermal", "start": 199, "end": 206, "id": 36, "annotation": null}, {"text": "cycling", "start": 207, "end": 214, "id": 37, "annotation": null}, {"text": "after", "start": 215, "end": 220, "id": 38, "annotation": null}, {"text": "exposure", "start": 221, "end": 229, "id": 39, "annotation": null}, {"text": "to", "start": 230, "end": 232, "id": 40, "annotation": null}, {"text": "a", "start": 233, "end": 234, "id": 41, "annotation": null}, {"text": "light", "start": 235, "end": 240, "id": 42, "annotation": null}, {"text": "pulse", "start": 241, "end": 246, "id": 43, "annotation": null}, {"text": ".", "start": 247, "end": 248, "id": 44, "annotation": null}], [{"text": "Concurrent", "start": 249, "end": 259, "id": 45, "annotation": null}, {"text": "changes", "start": 260, "end": 267, "id": 46, "annotation": null}, {"text": "in", "start": 268, "end": 270, "id": 47, "annotation": null}, {"text": "the", "start": 271, "end": 274, "id": 48, "annotation": null}, {"text": "transport", "start": 275, "end": 284, "id": 49, "annotation": null}, {"text": "parameters", "start": 285, "end": 295, "id": 50, "annotation": null}, {"text": "suggest", "start": 296, "end": 303, "id": 51, "annotation": null}, {"text": "that", "start": 304, "end": 308, "id": 52, "annotation": null}, {"text": "the", "start": 309, "end": 312, "id": 53, "annotation": null}, {"text": "metastable", "start": 313, "end": 323, "id": 54, "annotation": null}, {"text": ",", "start": 324, "end": 325, "id": 55, "annotation": null}, {"text": "charged", "start": 326, "end": 333, "id": 56, "annotation": null}, {"text": "deep", "start": 334, "end": 338, "id": 57, "annotation": null}, {"text": "defect", "start": 339, "end": 345, "id": 58, "annotation": null}, {"text": "states", "start": 346, "end": 352, "id": 59, "annotation": null}, {"text": "in", "start": 353, "end": 355, "id": 60, "annotation": null}, {"text": "the", "start": 356, "end": 359, "id": 61, "annotation": null}, {"text": "doped", "start": 360, "end": 365, "id": 62, "annotation": null}, {"text": "AlGaAs", "start": 366, "end": 372, "id": 63, "annotation": "BASEMAT"}, {"text": "layer", "start": 373, "end": 378, "id": 64, "annotation": null}, {"text": ",", "start": 379, "end": 380, "id": 65, "annotation": null}, {"text": "which", "start": 381, "end": 386, "id": 66, "annotation": null}, {"text": "are", "start": 387, "end": 390, "id": 67, "annotation": null}, {"text": "also", "start": 391, "end": 395, "id": 68, "annotation": null}, {"text": "responsible", "start": 396, "end": 407, "id": 69, "annotation": null}, {"text": "for", "start": 408, "end": 411, "id": 70, "annotation": null}, {"text": "the", "start": 412, "end": 415, "id": 71, "annotation": null}, {"text": "persistent", "start": 416, "end": 426, "id": 72, "annotation": null}, {"text": "photoconductivity", "start": 427, "end": 444, "id": 73, "annotation": null}, {"text": "effect", "start": 445, "end": 451, "id": 74, "annotation": null}, {"text": ",", "start": 452, "end": 453, "id": 75, "annotation": null}, {"text": "tend", "start": 454, "end": 458, "id": 76, "annotation": null}, {"text": "to", "start": 459, "end": 461, "id": 77, "annotation": null}, {"text": "increase", "start": 462, "end": 470, "id": 78, "annotation": null}, {"text": "inhomogeneities", "start": 471, "end": 486, "id": 79, "annotation": null}, {"text": "of", "start": 487, "end": 489, "id": 80, "annotation": null}, {"text": "the", "start": 490, "end": 493, "id": 81, "annotation": null}, {"text": "carrier", "start": 494, "end": 501, "id": 82, "annotation": null}, {"text": "density", "start": 502, "end": 509, "id": 83, "annotation": null}, {"text": "with", "start": 510, "end": 514, "id": 84, "annotation": null}, {"text": "thermal", "start": 515, "end": 522, "id": 85, "annotation": null}, {"text": "cycling", "start": 523, "end": 530, "id": 86, "annotation": null}, {"text": "and", "start": 531, "end": 534, "id": 87, "annotation": null}, {"text": "reduce", "start": 535, "end": 541, "id": 88, "annotation": null}, {"text": "the", "start": 542, "end": 545, "id": 89, "annotation": null}, {"text": "effective", "start": 546, "end": 555, "id": 90, "annotation": null}, {"text": "width", "start": 556, "end": 561, "id": 91, "annotation": null}, {"text": "for", "start": 562, "end": 565, "id": 92, "annotation": null}, {"text": "the", "start": 566, "end": 569, "id": 93, "annotation": null}, {"text": "current", "start": 570, "end": 577, "id": 94, "annotation": null}, {"text": "path", "start": 578, "end": 582, "id": 95, "annotation": null}, {"text": "in", "start": 583, "end": 585, "id": 96, "annotation": null}, {"text": "the", "start": 586, "end": 589, "id": 97, "annotation": null}, {"text": "quantum", "start": 590, "end": 597, "id": 98, "annotation": null}, {"text": "Hall", "start": 598, "end": 602, "id": 99, "annotation": null}, {"text": "regime", "start": 603, "end": 609, "id": 100, "annotation": null}, {"text": ".", "start": 610, "end": 611, "id": 101, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} @@ -398,41 +398,41 @@ {"text": "The effect of Nb substitution on the crystal structure, ferroelectric, and electric field induced strain properties of Bi0.5(Na82K0.18)0.5TiO3 (BNKT) ceramics has been investigated. The coexistence of rhombohedral and tetragonal phases was found in undoped BNKT ceramics, however, Nb doping induced a phase transition to a pseudocubic phase with high electrostriction coefficients. When 3mol% Nb was substituted on Ti ions, the electric field induced strain was markedly enhanced up to Smax/Emax=641pm/V, which is higher than those previously reported on non-textured lead-free electromechanical ceramics.", "meta": {"doi": "10.1016/j.matlet.2010.07.048"}, "_input_hash": -994156741, "_task_hash": 1692262443, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "effect", "start": 4, "end": 10, "id": 1, "annotation": null}, {"text": "of", "start": 11, "end": 13, "id": 2, "annotation": null}, {"text": "Nb", "start": 14, "end": 16, "id": 3, "annotation": null}, {"text": "substitution", "start": 17, "end": 29, "id": 4, "annotation": null}, {"text": "on", "start": 30, "end": 32, "id": 5, "annotation": null}, {"text": "the", "start": 33, "end": 36, "id": 6, "annotation": null}, {"text": "crystal", "start": 37, "end": 44, "id": 7, "annotation": null}, {"text": "structure", "start": 45, "end": 54, "id": 8, "annotation": null}, {"text": ",", "start": 55, "end": 56, "id": 9, "annotation": null}, {"text": "ferroelectric", "start": 57, "end": 70, "id": 10, "annotation": null}, {"text": ",", "start": 71, "end": 72, "id": 11, "annotation": null}, {"text": "and", "start": 73, "end": 76, "id": 12, "annotation": null}, {"text": "electric", "start": 77, "end": 85, "id": 13, "annotation": null}, {"text": "field", "start": 86, "end": 91, "id": 14, "annotation": null}, {"text": "induced", "start": 92, "end": 99, "id": 15, "annotation": null}, {"text": "strain", "start": 100, "end": 106, "id": 16, "annotation": null}, {"text": "properties", "start": 107, "end": 117, "id": 17, "annotation": null}, {"text": "of", "start": 118, "end": 120, "id": 18, "annotation": null}, {"text": "Bi0.5(Na82K0.18)0.5TiO3", "start": 121, "end": 144, "id": 19, "annotation": null}, {"text": "(", "start": 145, "end": 146, "id": 20, "annotation": null}, {"text": "BNKT", "start": 147, "end": 151, "id": 21, "annotation": null}, {"text": ")", "start": 152, "end": 153, "id": 22, "annotation": null}, {"text": "ceramics", "start": 154, "end": 162, "id": 23, "annotation": null}, {"text": "has", "start": 163, "end": 166, "id": 24, "annotation": null}, {"text": "been", "start": 167, "end": 171, "id": 25, "annotation": null}, {"text": "investigated", "start": 172, "end": 184, "id": 26, "annotation": null}, {"text": ".", "start": 185, "end": 186, "id": 27, "annotation": null}], [{"text": "The", "start": 187, "end": 190, "id": 28, "annotation": null}, {"text": "coexistence", "start": 191, "end": 202, "id": 29, "annotation": null}, {"text": "of", "start": 203, "end": 205, "id": 30, "annotation": null}, {"text": "rhombohedral", "start": 206, "end": 218, "id": 31, "annotation": null}, {"text": "and", "start": 219, "end": 222, "id": 32, "annotation": null}, {"text": "tetragonal", "start": 223, "end": 233, "id": 33, "annotation": null}, {"text": "phases", "start": 234, "end": 240, "id": 34, "annotation": null}, {"text": "was", "start": 241, "end": 244, "id": 35, "annotation": null}, {"text": "found", "start": 245, "end": 250, "id": 36, "annotation": null}, {"text": "in", "start": 251, "end": 253, "id": 37, "annotation": null}, {"text": "undoped", "start": 254, "end": 261, "id": 38, "annotation": null}, {"text": "BNKT", "start": 262, "end": 266, "id": 39, "annotation": "BASEMAT"}, {"text": "ceramics", "start": 267, "end": 275, "id": 40, "annotation": null}, {"text": ",", "start": 276, "end": 277, "id": 41, "annotation": null}, {"text": "however", "start": 278, "end": 285, "id": 42, "annotation": null}, {"text": ",", "start": 286, "end": 287, "id": 43, "annotation": null}, {"text": "Nb", "start": 288, "end": 290, "id": 44, "annotation": "DOPANT"}, {"text": "doping", "start": 291, "end": 297, "id": 45, "annotation": null}, {"text": "induced", "start": 298, "end": 305, "id": 46, "annotation": null}, {"text": "a", "start": 306, "end": 307, "id": 47, "annotation": null}, {"text": "phase", "start": 308, "end": 313, "id": 48, "annotation": null}, {"text": "transition", "start": 314, "end": 324, "id": 49, "annotation": null}, {"text": "to", "start": 325, "end": 327, "id": 50, "annotation": null}, {"text": "a", "start": 328, "end": 329, "id": 51, "annotation": null}, {"text": "pseudocubic", "start": 330, "end": 341, "id": 52, "annotation": null}, {"text": "phase", "start": 342, "end": 347, "id": 53, "annotation": null}, {"text": "with", "start": 348, "end": 352, "id": 54, "annotation": null}, {"text": "high", "start": 353, "end": 357, "id": 55, "annotation": null}, {"text": "electrostriction", "start": 358, "end": 374, "id": 56, "annotation": null}, {"text": "coefficients", "start": 375, "end": 387, "id": 57, "annotation": null}, {"text": ".", "start": 388, "end": 389, "id": 58, "annotation": null}], [{"text": "When", "start": 390, "end": 394, "id": 59, "annotation": null}, {"text": "3mol%", "start": 395, "end": 400, "id": 60, "annotation": "DOPMODQ"}, {"text": "Nb", "start": 401, "end": 403, "id": 61, "annotation": "DOPANT"}, {"text": "was", "start": 404, "end": 407, "id": 62, "annotation": null}, {"text": "substituted", "start": 408, "end": 419, "id": 63, "annotation": null}, {"text": "on", "start": 420, "end": 422, "id": 64, "annotation": null}, {"text": "Ti", "start": 423, "end": 425, "id": 65, "annotation": null}, {"text": "ions", "start": 426, "end": 430, "id": 66, "annotation": null}, {"text": ",", "start": 431, "end": 432, "id": 67, "annotation": null}, {"text": "the", "start": 433, "end": 436, "id": 68, "annotation": null}, {"text": "electric", "start": 437, "end": 445, "id": 69, "annotation": null}, {"text": "field", "start": 446, "end": 451, "id": 70, "annotation": null}, {"text": "induced", "start": 452, "end": 459, "id": 71, "annotation": null}, {"text": "strain", "start": 460, "end": 466, "id": 72, "annotation": null}, {"text": "was", "start": 467, "end": 470, "id": 73, "annotation": null}, {"text": "markedly", "start": 471, "end": 479, "id": 74, "annotation": null}, {"text": "enhanced", "start": 480, "end": 488, "id": 75, "annotation": null}, {"text": "up", "start": 489, "end": 491, "id": 76, "annotation": null}, {"text": "to", "start": 492, "end": 494, "id": 77, "annotation": null}, {"text": "Smax", "start": 495, "end": 499, "id": 78, "annotation": null}, {"text": "/", "start": 500, "end": 501, "id": 79, "annotation": null}, {"text": "Emax=641pm", "start": 502, "end": 512, "id": 80, "annotation": null}, {"text": "/", "start": 513, "end": 514, "id": 81, "annotation": null}, {"text": "V", "start": 515, "end": 516, "id": 82, "annotation": null}, {"text": ",", "start": 517, "end": 518, "id": 83, "annotation": null}, {"text": "which", "start": 519, "end": 524, "id": 84, "annotation": null}, {"text": "is", "start": 525, "end": 527, "id": 85, "annotation": null}, {"text": "higher", "start": 528, "end": 534, "id": 86, "annotation": null}, {"text": "than", "start": 535, "end": 539, "id": 87, "annotation": null}, {"text": "those", "start": 540, "end": 545, "id": 88, "annotation": null}, {"text": "previously", "start": 546, "end": 556, "id": 89, "annotation": null}, {"text": "reported", "start": 557, "end": 565, "id": 90, "annotation": null}, {"text": "on", "start": 566, "end": 568, "id": 91, "annotation": null}, {"text": "non", "start": 569, "end": 572, "id": 92, "annotation": null}, {"text": "-", "start": 573, "end": 574, "id": 93, "annotation": null}, {"text": "textured", "start": 575, "end": 583, "id": 94, "annotation": null}, {"text": "lead", "start": 584, "end": 588, "id": 95, "annotation": null}, {"text": "-", "start": 589, "end": 590, "id": 96, "annotation": null}, {"text": "free", "start": 591, "end": 595, "id": 97, "annotation": null}, {"text": "electromechanical", "start": 596, "end": 613, "id": 98, "annotation": null}, {"text": "ceramics", "start": 614, "end": 622, "id": 99, "annotation": null}, {"text": ".", "start": 623, "end": 624, "id": 100, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "A systematic investigation on doped barium cerate perovskites on conductivity was performed by means of ac electrochemical impedance spectroscopy technique. BaCe0.85\u2212xZrxY0.15O3\u2212\u03b4 powders (x\u00a0=\u00a00, 0.1, 0.2, 0.3, 0.4) were prepared by a modified sol-gel Pechini method and sintered at 1,250\u00a0\u00b0C\u20131,450\u00a0\u00b0C, depending on Zr content, to obtain good densities (93\u201397% of the theoretical ones). The measured total conductivities for these solid solutions in three different atmospheres were reported: in dry oxygen, in dry nitrogen and wet (0.5\u00a0bar H2O) hydrogen (5%H2/Ar) atmospheres. Arrhenius plots recorded in dry oxygen as well as in dry nitrogen showed some residual hydration which remained in the specimens upon initial heating. The compositions with x\u00a0=\u00a00.3 and 0.4 gave conductivities close to 10\u22122\u00a0S/cm in 5%H2/Ar/H2O atmosphere at 600\u00a0\u00b0C. The isothermal conductivities values showed a little variation for x from 0.2 to 0.4 between 500 and 800\u00a0\u00b0C.", "meta": {"doi": "10.1007/s10800-009-9932-0"}, "_input_hash": -1017043686, "_task_hash": -2134796850, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "systematic", "start": 2, "end": 12, "id": 1, "annotation": null}, {"text": "investigation", "start": 13, "end": 26, "id": 2, "annotation": null}, {"text": "on", "start": 27, "end": 29, "id": 3, "annotation": null}, {"text": "doped", "start": 30, "end": 35, "id": 4, "annotation": null}, {"text": "barium", "start": 36, "end": 42, "id": 5, "annotation": "BASEMAT"}, {"text": "cerate", "start": 43, "end": 49, "id": 6, "annotation": "BASEMAT"}, {"text": "perovskites", "start": 50, "end": 61, "id": 7, "annotation": null}, {"text": "on", "start": 62, "end": 64, "id": 8, "annotation": null}, {"text": "conductivity", "start": 65, "end": 77, "id": 9, "annotation": null}, {"text": "was", "start": 78, "end": 81, "id": 10, "annotation": null}, {"text": "performed", "start": 82, "end": 91, "id": 11, "annotation": null}, {"text": "by", "start": 92, "end": 94, "id": 12, "annotation": null}, {"text": "means", "start": 95, "end": 100, "id": 13, "annotation": null}, {"text": "of", "start": 101, "end": 103, "id": 14, "annotation": null}, {"text": "ac", "start": 104, "end": 106, "id": 15, "annotation": null}, {"text": "electrochemical", "start": 107, "end": 122, "id": 16, "annotation": null}, {"text": "impedance", "start": 123, "end": 132, "id": 17, "annotation": null}, {"text": "spectroscopy", "start": 133, "end": 145, "id": 18, "annotation": null}, {"text": "technique", "start": 146, "end": 155, "id": 19, "annotation": null}, {"text": ".", "start": 156, "end": 157, "id": 20, "annotation": null}], [{"text": "BaCe0.85\u2212xZrxY0.15O3\u2212\u03b4", "start": 158, "end": 180, "id": 21, "annotation": null}, {"text": "powders", "start": 181, "end": 188, "id": 22, "annotation": null}, {"text": "(", "start": 189, "end": 190, "id": 23, "annotation": null}, {"text": "x", "start": 191, "end": 192, "id": 24, "annotation": null}, {"text": "=", "start": 193, "end": 194, "id": 26, "annotation": null}, {"text": "0", "start": 195, "end": 196, "id": 28, "annotation": null}, {"text": ",", "start": 197, "end": 198, "id": 29, "annotation": null}, {"text": "0.1", "start": 199, "end": 202, "id": 30, "annotation": null}, {"text": ",", "start": 203, "end": 204, "id": 31, "annotation": null}, {"text": "0.2", "start": 205, "end": 208, "id": 32, "annotation": null}, {"text": ",", "start": 209, "end": 210, "id": 33, "annotation": null}, {"text": "0.3", "start": 211, "end": 214, "id": 34, "annotation": null}, {"text": ",", "start": 215, "end": 216, "id": 35, "annotation": null}, {"text": "0.4", "start": 217, "end": 220, "id": 36, "annotation": null}, {"text": ")", "start": 221, "end": 222, "id": 37, "annotation": null}, {"text": "were", "start": 223, "end": 227, "id": 38, "annotation": null}, {"text": "prepared", "start": 228, "end": 236, "id": 39, "annotation": null}, {"text": "by", "start": 237, "end": 239, "id": 40, "annotation": null}, {"text": "a", "start": 240, "end": 241, "id": 41, "annotation": null}, {"text": "modified", "start": 242, "end": 250, "id": 42, "annotation": null}, {"text": "sol", "start": 251, "end": 254, "id": 43, "annotation": null}, {"text": "-", "start": 255, "end": 256, "id": 44, "annotation": null}, {"text": "gel", "start": 257, "end": 260, "id": 45, "annotation": null}, {"text": "Pechini", "start": 261, "end": 268, "id": 46, "annotation": null}, {"text": "method", "start": 269, "end": 275, "id": 47, "annotation": null}, {"text": "and", "start": 276, "end": 279, "id": 48, "annotation": null}, {"text": "sintered", "start": 280, "end": 288, "id": 49, "annotation": null}, {"text": "at", "start": 289, "end": 291, "id": 50, "annotation": null}, {"text": "1,250", "start": 292, "end": 297, "id": 51, "annotation": null}, {"text": "\u00b0", "start": 298, "end": 299, "id": 53, "annotation": null}, {"text": "C\u20131,450", "start": 300, "end": 307, "id": 54, "annotation": null}, {"text": "\u00b0", "start": 308, "end": 309, "id": 56, "annotation": null}, {"text": "C", "start": 310, "end": 311, "id": 57, "annotation": null}, {"text": ",", "start": 312, "end": 313, "id": 58, "annotation": null}, {"text": "depending", "start": 314, "end": 323, "id": 59, "annotation": null}, {"text": "on", "start": 324, "end": 326, "id": 60, "annotation": null}, {"text": "Zr", "start": 327, "end": 329, "id": 61, "annotation": null}, {"text": "content", "start": 330, "end": 337, "id": 62, "annotation": null}, {"text": ",", "start": 338, "end": 339, "id": 63, "annotation": null}, {"text": "to", "start": 340, "end": 342, "id": 64, "annotation": null}, {"text": "obtain", "start": 343, "end": 349, "id": 65, "annotation": null}, {"text": "good", "start": 350, "end": 354, "id": 66, "annotation": null}, {"text": "densities", "start": 355, "end": 364, "id": 67, "annotation": null}, {"text": "(", "start": 365, "end": 366, "id": 68, "annotation": null}, {"text": "93\u201397", "start": 367, "end": 372, "id": 69, "annotation": null}, {"text": "%", "start": 373, "end": 374, "id": 70, "annotation": null}, {"text": "of", "start": 375, "end": 377, "id": 71, "annotation": null}, {"text": "the", "start": 378, "end": 381, "id": 72, "annotation": null}, {"text": "theoretical", "start": 382, "end": 393, "id": 73, "annotation": null}, {"text": "ones", "start": 394, "end": 398, "id": 74, "annotation": null}, {"text": ")", "start": 399, "end": 400, "id": 75, "annotation": null}, {"text": ".", "start": 401, "end": 402, "id": 76, "annotation": null}], [{"text": "The", "start": 403, "end": 406, "id": 77, "annotation": null}, {"text": "measured", "start": 407, "end": 415, "id": 78, "annotation": null}, {"text": "total", "start": 416, "end": 421, "id": 79, "annotation": null}, {"text": "conductivities", "start": 422, "end": 436, "id": 80, "annotation": null}, {"text": "for", "start": 437, "end": 440, "id": 81, "annotation": null}, {"text": "these", "start": 441, "end": 446, "id": 82, "annotation": null}, {"text": "solid", "start": 447, "end": 452, "id": 83, "annotation": null}, {"text": "solutions", "start": 453, "end": 462, "id": 84, "annotation": null}, {"text": "in", "start": 463, "end": 465, "id": 85, "annotation": null}, {"text": "three", "start": 466, "end": 471, "id": 86, "annotation": null}, {"text": "different", "start": 472, "end": 481, "id": 87, "annotation": null}, {"text": "atmospheres", "start": 482, "end": 493, "id": 88, "annotation": null}, {"text": "were", "start": 494, "end": 498, "id": 89, "annotation": null}, {"text": "reported", "start": 499, "end": 507, "id": 90, "annotation": null}, {"text": ":", "start": 508, "end": 509, "id": 91, "annotation": null}, {"text": "in", "start": 510, "end": 512, "id": 92, "annotation": null}, {"text": "dry", "start": 513, "end": 516, "id": 93, "annotation": null}, {"text": "oxygen", "start": 517, "end": 523, "id": 94, "annotation": null}, {"text": ",", "start": 524, "end": 525, "id": 95, "annotation": null}, {"text": "in", "start": 526, "end": 528, "id": 96, "annotation": null}, {"text": "dry", "start": 529, "end": 532, "id": 97, "annotation": null}, {"text": "nitrogen", "start": 533, "end": 541, "id": 98, "annotation": null}, {"text": "and", "start": 542, "end": 545, "id": 99, "annotation": null}, {"text": "wet", "start": 546, "end": 549, "id": 100, "annotation": null}, {"text": "(", "start": 550, "end": 551, "id": 101, "annotation": null}, {"text": "0.5", "start": 552, "end": 555, "id": 102, "annotation": null}, {"text": "bar", "start": 556, "end": 559, "id": 104, "annotation": null}, {"text": "H2O", "start": 560, "end": 563, "id": 105, "annotation": null}, {"text": ")", "start": 564, "end": 565, "id": 106, "annotation": null}, {"text": "hydrogen", "start": 566, "end": 574, "id": 107, "annotation": null}, {"text": "(", "start": 575, "end": 576, "id": 108, "annotation": null}, {"text": "5%H2", "start": 577, "end": 581, "id": 109, "annotation": null}, {"text": "/", "start": 582, "end": 583, "id": 110, "annotation": null}, {"text": "Ar", "start": 584, "end": 586, "id": 111, "annotation": null}, {"text": ")", "start": 587, "end": 588, "id": 112, "annotation": null}, {"text": "atmospheres", "start": 589, "end": 600, "id": 113, "annotation": null}, {"text": ".", "start": 601, "end": 602, "id": 114, "annotation": null}], [{"text": "Arrhenius", "start": 603, "end": 612, "id": 115, "annotation": null}, {"text": "plots", "start": 613, "end": 618, "id": 116, "annotation": null}, {"text": "recorded", "start": 619, "end": 627, "id": 117, "annotation": null}, {"text": "in", "start": 628, "end": 630, "id": 118, "annotation": null}, {"text": "dry", "start": 631, "end": 634, "id": 119, "annotation": null}, {"text": "oxygen", "start": 635, "end": 641, "id": 120, "annotation": null}, {"text": "as", "start": 642, "end": 644, "id": 121, "annotation": null}, {"text": "well", "start": 645, "end": 649, "id": 122, "annotation": null}, {"text": "as", "start": 650, "end": 652, "id": 123, "annotation": null}, {"text": "in", "start": 653, "end": 655, "id": 124, "annotation": null}, {"text": "dry", "start": 656, "end": 659, "id": 125, "annotation": null}, {"text": "nitrogen", "start": 660, "end": 668, "id": 126, "annotation": null}, {"text": "showed", "start": 669, "end": 675, "id": 127, "annotation": null}, {"text": "some", "start": 676, "end": 680, "id": 128, "annotation": null}, {"text": "residual", "start": 681, "end": 689, "id": 129, "annotation": null}, {"text": "hydration", "start": 690, "end": 699, "id": 130, "annotation": null}, {"text": "which", "start": 700, "end": 705, "id": 131, "annotation": null}, {"text": "remained", "start": 706, "end": 714, "id": 132, "annotation": null}, {"text": "in", "start": 715, "end": 717, "id": 133, "annotation": null}, {"text": "the", "start": 718, "end": 721, "id": 134, "annotation": null}, {"text": "specimens", "start": 722, "end": 731, "id": 135, "annotation": null}, {"text": "upon", "start": 732, "end": 736, "id": 136, "annotation": null}, {"text": "initial", "start": 737, "end": 744, "id": 137, "annotation": null}, {"text": "heating", "start": 745, "end": 752, "id": 138, "annotation": null}, {"text": ".", "start": 753, "end": 754, "id": 139, "annotation": null}], [{"text": "The", "start": 755, "end": 758, "id": 140, "annotation": null}, {"text": "compositions", "start": 759, "end": 771, "id": 141, "annotation": null}, {"text": "with", "start": 772, "end": 776, "id": 142, "annotation": null}, {"text": "x", "start": 777, "end": 778, "id": 143, "annotation": null}, {"text": "=", "start": 779, "end": 780, "id": 145, "annotation": null}, {"text": "0.3", "start": 781, "end": 784, "id": 147, "annotation": null}, {"text": "and", "start": 785, "end": 788, "id": 148, "annotation": null}, {"text": "0.4", "start": 789, "end": 792, "id": 149, "annotation": null}, {"text": "gave", "start": 793, "end": 797, "id": 150, "annotation": null}, {"text": "conductivities", "start": 798, "end": 812, "id": 151, "annotation": null}, {"text": "close", "start": 813, "end": 818, "id": 152, "annotation": null}, {"text": "to", "start": 819, "end": 821, "id": 153, "annotation": null}, {"text": "10\u22122", "start": 822, "end": 826, "id": 154, "annotation": null}, {"text": "S", "start": 827, "end": 828, "id": 156, "annotation": null}, {"text": "/", "start": 829, "end": 830, "id": 157, "annotation": null}, {"text": "cm", "start": 831, "end": 833, "id": 158, "annotation": null}, {"text": "in", "start": 834, "end": 836, "id": 159, "annotation": null}, {"text": "5%H2", "start": 837, "end": 841, "id": 160, "annotation": null}, {"text": "/", "start": 842, "end": 843, "id": 161, "annotation": null}, {"text": "Ar", "start": 844, "end": 846, "id": 162, "annotation": null}, {"text": "/", "start": 847, "end": 848, "id": 163, "annotation": null}, {"text": "H2O", "start": 849, "end": 852, "id": 164, "annotation": null}, {"text": "atmosphere", "start": 853, "end": 863, "id": 165, "annotation": null}, {"text": "at", "start": 864, "end": 866, "id": 166, "annotation": null}, {"text": "600", "start": 867, "end": 870, "id": 167, "annotation": null}, {"text": "\u00b0", "start": 871, "end": 872, "id": 169, "annotation": null}, {"text": "C", "start": 873, "end": 874, "id": 170, "annotation": null}, {"text": ".", "start": 875, "end": 876, "id": 171, "annotation": null}], [{"text": "The", "start": 877, "end": 880, "id": 172, "annotation": null}, {"text": "isothermal", "start": 881, "end": 891, "id": 173, "annotation": null}, {"text": "conductivities", "start": 892, "end": 906, "id": 174, "annotation": null}, {"text": "values", "start": 907, "end": 913, "id": 175, "annotation": null}, {"text": "showed", "start": 914, "end": 920, "id": 176, "annotation": null}, {"text": "a", "start": 921, "end": 922, "id": 177, "annotation": null}, {"text": "little", "start": 923, "end": 929, "id": 178, "annotation": null}, {"text": "variation", "start": 930, "end": 939, "id": 179, "annotation": null}, {"text": "for", "start": 940, "end": 943, "id": 180, "annotation": null}, {"text": "x", "start": 944, "end": 945, "id": 181, "annotation": null}, {"text": "from", "start": 946, "end": 950, "id": 182, "annotation": null}, {"text": "0.2", "start": 951, "end": 954, "id": 183, "annotation": null}, {"text": "to", "start": 955, "end": 957, "id": 184, "annotation": null}, {"text": "0.4", "start": 958, "end": 961, "id": 185, "annotation": null}, {"text": "between", "start": 962, "end": 969, "id": 186, "annotation": null}, {"text": "500", "start": 970, "end": 973, "id": 187, "annotation": null}, {"text": "and", "start": 974, "end": 977, "id": 188, "annotation": null}, {"text": "800", "start": 978, "end": 981, "id": 189, "annotation": null}, {"text": "\u00b0", "start": 982, "end": 983, "id": 191, "annotation": null}, {"text": "C", "start": 984, "end": 985, "id": 192, "annotation": null}, {"text": ".", "start": 986, "end": 987, "id": 193, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Lead-free ferroelectric Na0.5Bi0.5TiO3 (NBT) and NBT-doped Ln (Ln = Er and Ho) in both bulk and thin films forms were processed via solid-state reaction and solution deposition respectively. SEM investigations showed dense samples with fine-grained and smooth microstructure for thin films. A pure perovskite structure was observed by the X-ray diffraction for all specimens. The frequency dependences of the dielectric constant and loss tangent were investigated at room temperature and revealed a decrease in the dielectric losses with the introduction of the lanthanide element. The energy storage density (W rec ) was calculated using the obtained P\u2013E loops. The stored and delivered energies were found depending on the form and composition of the sample.", "meta": {"doi": "10.1016/j.spmi.2018.03.041"}, "_input_hash": 1624995634, "_task_hash": -2081115660, "tokens": [[{"text": "Lead", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "-", "start": 5, "end": 6, "id": 1, "annotation": null}, {"text": "free", "start": 7, "end": 11, "id": 2, "annotation": null}, {"text": "ferroelectric", "start": 12, "end": 25, "id": 3, "annotation": null}, {"text": "Na0.5Bi0.5TiO3", "start": 26, "end": 40, "id": 4, "annotation": null}, {"text": "(", "start": 41, "end": 42, "id": 5, "annotation": null}, {"text": "NBT", "start": 43, "end": 46, "id": 6, "annotation": null}, {"text": ")", "start": 47, "end": 48, "id": 7, "annotation": null}, {"text": "and", "start": 49, "end": 52, "id": 8, "annotation": null}, {"text": "NBT", "start": 53, "end": 56, "id": 9, "annotation": "DOPANT"}, {"text": "-", "start": 57, "end": 58, "id": 10, "annotation": null}, {"text": "doped", "start": 59, "end": 64, "id": 11, "annotation": null}, {"text": "Ln", "start": 65, "end": 67, "id": 12, "annotation": "BASEMAT"}, {"text": "(", "start": 68, "end": 69, "id": 13, "annotation": null}, {"text": "Ln", "start": 70, "end": 72, "id": 14, "annotation": "BASEMAT"}, {"text": "=", "start": 73, "end": 74, "id": 15, "annotation": null}, {"text": "Er", "start": 75, "end": 77, "id": 16, "annotation": "BASEMAT"}, {"text": "and", "start": 78, "end": 81, "id": 17, "annotation": null}, {"text": "Ho", "start": 82, "end": 84, "id": 18, "annotation": "BASEMAT"}, {"text": ")", "start": 85, "end": 86, "id": 19, "annotation": null}, {"text": "in", "start": 87, "end": 89, "id": 20, "annotation": null}, {"text": "both", "start": 90, "end": 94, "id": 21, "annotation": null}, {"text": "bulk", "start": 95, "end": 99, "id": 22, "annotation": null}, {"text": "and", "start": 100, "end": 103, "id": 23, "annotation": null}, {"text": "thin", "start": 104, "end": 108, "id": 24, "annotation": null}, {"text": "films", "start": 109, "end": 114, "id": 25, "annotation": null}, {"text": "forms", "start": 115, "end": 120, "id": 26, "annotation": null}, {"text": "were", "start": 121, "end": 125, "id": 27, "annotation": null}, {"text": "processed", "start": 126, "end": 135, "id": 28, "annotation": null}, {"text": "via", "start": 136, "end": 139, "id": 29, "annotation": null}, {"text": "solid", "start": 140, "end": 145, "id": 30, "annotation": null}, {"text": "-", "start": 146, "end": 147, "id": 31, "annotation": null}, {"text": "state", "start": 148, "end": 153, "id": 32, "annotation": null}, {"text": "reaction", "start": 154, "end": 162, "id": 33, "annotation": null}, {"text": "and", "start": 163, "end": 166, "id": 34, "annotation": null}, {"text": "solution", "start": 167, "end": 175, "id": 35, "annotation": null}, {"text": "deposition", "start": 176, "end": 186, "id": 36, "annotation": null}, {"text": "respectively", "start": 187, "end": 199, "id": 37, "annotation": null}, {"text": ".", "start": 200, "end": 201, "id": 38, "annotation": null}], [{"text": "SEM", "start": 202, "end": 205, "id": 39, "annotation": null}, {"text": "investigations", "start": 206, "end": 220, "id": 40, "annotation": null}, {"text": "showed", "start": 221, "end": 227, "id": 41, "annotation": null}, {"text": "dense", "start": 228, "end": 233, "id": 42, "annotation": null}, {"text": "samples", "start": 234, "end": 241, "id": 43, "annotation": null}, {"text": "with", "start": 242, "end": 246, "id": 44, "annotation": null}, {"text": "fine", "start": 247, "end": 251, "id": 45, "annotation": null}, {"text": "-", "start": 252, "end": 253, "id": 46, "annotation": null}, {"text": "grained", "start": 254, "end": 261, "id": 47, "annotation": null}, {"text": "and", "start": 262, "end": 265, "id": 48, "annotation": null}, {"text": "smooth", "start": 266, "end": 272, "id": 49, "annotation": null}, {"text": "microstructure", "start": 273, "end": 287, "id": 50, "annotation": null}, {"text": "for", "start": 288, "end": 291, "id": 51, "annotation": null}, {"text": "thin", "start": 292, "end": 296, "id": 52, "annotation": null}, {"text": "films", "start": 297, "end": 302, "id": 53, "annotation": null}, {"text": ".", "start": 303, "end": 304, "id": 54, "annotation": null}], [{"text": "A", "start": 305, "end": 306, "id": 55, "annotation": null}, {"text": "pure", "start": 307, "end": 311, "id": 56, "annotation": null}, {"text": "perovskite", "start": 312, "end": 322, "id": 57, "annotation": null}, {"text": "structure", "start": 323, "end": 332, "id": 58, "annotation": null}, {"text": "was", "start": 333, "end": 336, "id": 59, "annotation": null}, {"text": "observed", "start": 337, "end": 345, "id": 60, "annotation": null}, {"text": "by", "start": 346, "end": 348, "id": 61, "annotation": null}, {"text": "the", "start": 349, "end": 352, "id": 62, "annotation": null}, {"text": "X", "start": 353, "end": 354, "id": 63, "annotation": null}, {"text": "-", "start": 355, "end": 356, "id": 64, "annotation": null}, {"text": "ray", "start": 357, "end": 360, "id": 65, "annotation": null}, {"text": "diffraction", "start": 361, "end": 372, "id": 66, "annotation": null}, {"text": "for", "start": 373, "end": 376, "id": 67, "annotation": null}, {"text": "all", "start": 377, "end": 380, "id": 68, "annotation": null}, {"text": "specimens", "start": 381, "end": 390, "id": 69, "annotation": null}, {"text": ".", "start": 391, "end": 392, "id": 70, "annotation": null}], [{"text": "The", "start": 393, "end": 396, "id": 71, "annotation": null}, {"text": "frequency", "start": 397, "end": 406, "id": 72, "annotation": null}, {"text": "dependences", "start": 407, "end": 418, "id": 73, "annotation": null}, {"text": "of", "start": 419, "end": 421, "id": 74, "annotation": null}, {"text": "the", "start": 422, "end": 425, "id": 75, "annotation": null}, {"text": "dielectric", "start": 426, "end": 436, "id": 76, "annotation": null}, {"text": "constant", "start": 437, "end": 445, "id": 77, "annotation": null}, {"text": "and", "start": 446, "end": 449, "id": 78, "annotation": null}, {"text": "loss", "start": 450, "end": 454, "id": 79, "annotation": null}, {"text": "tangent", "start": 455, "end": 462, "id": 80, "annotation": null}, {"text": "were", "start": 463, "end": 467, "id": 81, "annotation": null}, {"text": "investigated", "start": 468, "end": 480, "id": 82, "annotation": null}, {"text": "at", "start": 481, "end": 483, "id": 83, "annotation": null}, {"text": "room", "start": 484, "end": 488, "id": 84, "annotation": null}, {"text": "temperature", "start": 489, "end": 500, "id": 85, "annotation": null}, {"text": "and", "start": 501, "end": 504, "id": 86, "annotation": null}, {"text": "revealed", "start": 505, "end": 513, "id": 87, "annotation": null}, {"text": "a", "start": 514, "end": 515, "id": 88, "annotation": null}, {"text": "decrease", "start": 516, "end": 524, "id": 89, "annotation": null}, {"text": "in", "start": 525, "end": 527, "id": 90, "annotation": null}, {"text": "the", "start": 528, "end": 531, "id": 91, "annotation": null}, {"text": "dielectric", "start": 532, "end": 542, "id": 92, "annotation": null}, {"text": "losses", "start": 543, "end": 549, "id": 93, "annotation": null}, {"text": "with", "start": 550, "end": 554, "id": 94, "annotation": null}, {"text": "the", "start": 555, "end": 558, "id": 95, "annotation": null}, {"text": "introduction", "start": 559, "end": 571, "id": 96, "annotation": null}, {"text": "of", "start": 572, "end": 574, "id": 97, "annotation": null}, {"text": "the", "start": 575, "end": 578, "id": 98, "annotation": null}, {"text": "lanthanide", "start": 579, "end": 589, "id": 99, "annotation": null}, {"text": "element", "start": 590, "end": 597, "id": 100, "annotation": null}, {"text": ".", "start": 598, "end": 599, "id": 101, "annotation": null}], [{"text": "The", "start": 600, "end": 603, "id": 102, "annotation": null}, {"text": "energy", "start": 604, "end": 610, "id": 103, "annotation": null}, {"text": "storage", "start": 611, "end": 618, "id": 104, "annotation": null}, {"text": "density", "start": 619, "end": 626, "id": 105, "annotation": null}, {"text": "(", "start": 627, "end": 628, "id": 106, "annotation": null}, {"text": "W", "start": 629, "end": 630, "id": 107, "annotation": null}, {"text": "rec", "start": 631, "end": 634, "id": 108, "annotation": null}, {"text": ")", "start": 635, "end": 636, "id": 109, "annotation": null}, {"text": "was", "start": 637, "end": 640, "id": 110, "annotation": null}, {"text": "calculated", "start": 641, "end": 651, "id": 111, "annotation": null}, {"text": "using", "start": 652, "end": 657, "id": 112, "annotation": null}, {"text": "the", "start": 658, "end": 661, "id": 113, "annotation": null}, {"text": "obtained", "start": 662, "end": 670, "id": 114, "annotation": null}, {"text": "P", "start": 671, "end": 672, "id": 115, "annotation": null}, {"text": "\u2013", "start": 673, "end": 674, "id": 116, "annotation": null}, {"text": "E", "start": 675, "end": 676, "id": 117, "annotation": null}, {"text": "loops", "start": 677, "end": 682, "id": 118, "annotation": null}, {"text": ".", "start": 683, "end": 684, "id": 119, "annotation": null}], [{"text": "The", "start": 685, "end": 688, "id": 120, "annotation": null}, {"text": "stored", "start": 689, "end": 695, "id": 121, "annotation": null}, {"text": "and", "start": 696, "end": 699, "id": 122, "annotation": null}, {"text": "delivered", "start": 700, "end": 709, "id": 123, "annotation": null}, {"text": "energies", "start": 710, "end": 718, "id": 124, "annotation": null}, {"text": "were", "start": 719, "end": 723, "id": 125, "annotation": null}, {"text": "found", "start": 724, "end": 729, "id": 126, "annotation": null}, {"text": "depending", "start": 730, "end": 739, "id": 127, "annotation": null}, {"text": "on", "start": 740, "end": 742, "id": 128, "annotation": null}, {"text": "the", "start": 743, "end": 746, "id": 129, "annotation": null}, {"text": "form", "start": 747, "end": 751, "id": 130, "annotation": null}, {"text": "and", "start": 752, "end": 755, "id": 131, "annotation": null}, {"text": "composition", "start": 756, "end": 767, "id": 132, "annotation": null}, {"text": "of", "start": 768, "end": 770, "id": 133, "annotation": null}, {"text": "the", "start": 771, "end": 774, "id": 134, "annotation": null}, {"text": "sample", "start": 775, "end": 781, "id": 135, "annotation": null}, {"text": ".", "start": 782, "end": 783, "id": 136, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Herein, for the first time we report the synthesis of a series of compositionally tunable Zr-doped novel KNb(Zr)O3 perovskites using green and facile methodology and their superior photocatalytic activities toward photoinduced hydrogen production and dye degradation. The substitutional doping of Zr(IV) in place of Nb(V) leads to a decrease in the electronic band gap by inclusion of a new acceptor level near the valence band. The results on the optimally doped perovskite for the photocatalytic hydrogen evolution reaction reveal that the 20 mol % Zr-doped KNb(Zr)O3 is 13 times more efficient as compared to the pristine KNbO3 in terms of rate of H2 evolution. The same nanocomposite is shown to exhibit 12-fold greater photocatalytic efficiency for degradation of Rhodamine B (RhB) (up to 83% after 210 min) than pure KNbO3. Density functional theory calculations are carried out to understand the Zr doping effect on the electronic structure as well as the surface hydrogen evolution reaction. Overall, an optimized combination of morphology vs photophysical features synergizes the photocatalytic activity of these newly developed perovskites.", "meta": {"doi": "10.1021/acs.jpcc.6b11754"}, "_input_hash": -1353356205, "_task_hash": -1001093386, "tokens": [[{"text": "Herein", "start": 35, "end": 41, "id": 6, "annotation": null}, {"text": ",", "start": 42, "end": 43, "id": 7, "annotation": null}, {"text": "for", "start": 44, "end": 47, "id": 8, "annotation": null}, {"text": "the", "start": 48, "end": 51, "id": 9, "annotation": null}, {"text": "first", "start": 52, "end": 57, "id": 10, "annotation": null}, {"text": "time", "start": 58, "end": 62, "id": 11, "annotation": null}, {"text": "we", "start": 63, "end": 65, "id": 12, "annotation": null}, {"text": "report", "start": 66, "end": 72, "id": 13, "annotation": null}, {"text": "the", "start": 73, "end": 76, "id": 14, "annotation": null}, {"text": "synthesis", "start": 77, "end": 86, "id": 15, "annotation": null}, {"text": "of", "start": 87, "end": 89, "id": 16, "annotation": null}, {"text": "a", "start": 90, "end": 91, "id": 17, "annotation": null}, {"text": "series", "start": 92, "end": 98, "id": 18, "annotation": null}, {"text": "of", "start": 99, "end": 101, "id": 19, "annotation": null}, {"text": "compositionally", "start": 102, "end": 117, "id": 20, "annotation": null}, {"text": "tunable", "start": 118, "end": 125, "id": 21, "annotation": null}, {"text": "Zr", "start": 126, "end": 128, "id": 22, "annotation": "DOPANT"}, {"text": "-", "start": 129, "end": 130, "id": 23, "annotation": null}, {"text": "doped", "start": 131, "end": 136, "id": 24, "annotation": null}, {"text": "novel", "start": 137, "end": 142, "id": 25, "annotation": null}, {"text": "KNb(Zr)O3", "start": 143, "end": 152, "id": 26, "annotation": "BASEMAT"}, {"text": "perovskites", "start": 153, "end": 164, "id": 27, "annotation": null}, {"text": "using", "start": 165, "end": 170, "id": 28, "annotation": null}, {"text": "green", "start": 171, "end": 176, "id": 29, "annotation": null}, {"text": "and", "start": 177, "end": 180, "id": 30, "annotation": null}, {"text": "facile", "start": 181, "end": 187, "id": 31, "annotation": null}, {"text": "methodology", "start": 188, "end": 199, "id": 32, "annotation": null}, {"text": "and", "start": 200, "end": 203, "id": 33, "annotation": null}, {"text": "their", "start": 204, "end": 209, "id": 34, "annotation": null}, {"text": "superior", "start": 210, "end": 218, "id": 35, "annotation": null}, {"text": "photocatalytic", "start": 219, "end": 233, "id": 36, "annotation": null}, {"text": "activities", "start": 234, "end": 244, "id": 37, "annotation": null}, {"text": "toward", "start": 245, "end": 251, "id": 38, "annotation": null}, {"text": "photoinduced", "start": 252, "end": 264, "id": 39, "annotation": null}, {"text": "hydrogen", "start": 265, "end": 273, "id": 40, "annotation": null}, {"text": "production", "start": 274, "end": 284, "id": 41, "annotation": null}, {"text": "and", "start": 285, "end": 288, "id": 42, "annotation": null}, {"text": "dye", "start": 289, "end": 292, "id": 43, "annotation": null}, {"text": "degradation", "start": 293, "end": 304, "id": 44, "annotation": null}, {"text": ".", "start": 305, "end": 306, "id": 45, "annotation": null}], [{"text": "The", "start": 307, "end": 310, "id": 46, "annotation": null}, {"text": "substitutional", "start": 311, "end": 325, "id": 47, "annotation": null}, {"text": "doping", "start": 326, "end": 332, "id": 48, "annotation": null}, {"text": "of", "start": 333, "end": 335, "id": 49, "annotation": null}, {"text": "Zr(IV", "start": 336, "end": 341, "id": 50, "annotation": "DOPANT"}, {"text": ")", "start": 342, "end": 343, "id": 51, "annotation": "DOPANT"}, {"text": "in", "start": 344, "end": 346, "id": 52, "annotation": null}, {"text": "place", "start": 347, "end": 352, "id": 53, "annotation": null}, {"text": "of", "start": 353, "end": 355, "id": 54, "annotation": null}, {"text": "Nb(V", "start": 356, "end": 360, "id": 55, "annotation": null}, {"text": ")", "start": 361, "end": 362, "id": 56, "annotation": null}, {"text": "leads", "start": 363, "end": 368, "id": 57, "annotation": null}, {"text": "to", "start": 369, "end": 371, "id": 58, "annotation": null}, {"text": "a", "start": 372, "end": 373, "id": 59, "annotation": null}, {"text": "decrease", "start": 374, "end": 382, "id": 60, "annotation": null}, {"text": "in", "start": 383, "end": 385, "id": 61, "annotation": null}, {"text": "the", "start": 386, "end": 389, "id": 62, "annotation": null}, {"text": "electronic", "start": 390, "end": 400, "id": 63, "annotation": null}, {"text": "band", "start": 401, "end": 405, "id": 64, "annotation": null}, {"text": "gap", "start": 406, "end": 409, "id": 65, "annotation": null}, {"text": "by", "start": 410, "end": 412, "id": 66, "annotation": null}, {"text": "inclusion", "start": 413, "end": 422, "id": 67, "annotation": null}, {"text": "of", "start": 423, "end": 425, "id": 68, "annotation": null}, {"text": "a", "start": 426, "end": 427, "id": 69, "annotation": null}, {"text": "new", "start": 428, "end": 431, "id": 70, "annotation": null}, {"text": "acceptor", "start": 432, "end": 440, "id": 71, "annotation": null}, {"text": "level", "start": 441, "end": 446, "id": 72, "annotation": null}, {"text": "near", "start": 447, "end": 451, "id": 73, "annotation": null}, {"text": "the", "start": 452, "end": 455, "id": 74, "annotation": null}, {"text": "valence", "start": 456, "end": 463, "id": 75, "annotation": null}, {"text": "band", "start": 464, "end": 468, "id": 76, "annotation": null}, {"text": ".", "start": 469, "end": 470, "id": 77, "annotation": null}], [{"text": "The", "start": 471, "end": 474, "id": 78, "annotation": null}, {"text": "results", "start": 475, "end": 482, "id": 79, "annotation": null}, {"text": "on", "start": 483, "end": 485, "id": 80, "annotation": null}, {"text": "the", "start": 486, "end": 489, "id": 81, "annotation": null}, {"text": "optimally", "start": 490, "end": 499, "id": 82, "annotation": null}, {"text": "doped", "start": 500, "end": 505, "id": 83, "annotation": null}, {"text": "perovskite", "start": 506, "end": 516, "id": 84, "annotation": "BASEMAT"}, {"text": "for", "start": 517, "end": 520, "id": 85, "annotation": null}, {"text": "the", "start": 521, "end": 524, "id": 86, "annotation": null}, {"text": "photocatalytic", "start": 525, "end": 539, "id": 87, "annotation": null}, {"text": "hydrogen", "start": 540, "end": 548, "id": 88, "annotation": null}, {"text": "evolution", "start": 549, "end": 558, "id": 89, "annotation": null}, {"text": "reaction", "start": 559, "end": 567, "id": 90, "annotation": null}, {"text": "reveal", "start": 568, "end": 574, "id": 91, "annotation": null}, {"text": "that", "start": 575, "end": 579, "id": 92, "annotation": null}, {"text": "the", "start": 580, "end": 583, "id": 93, "annotation": null}, {"text": "20", "start": 584, "end": 586, "id": 94, "annotation": "DOPMODQ"}, {"text": "mol", "start": 587, "end": 590, "id": 95, "annotation": null}, {"text": "%", "start": 591, "end": 592, "id": 96, "annotation": "DOPMODQ"}, {"text": "Zr", "start": 593, "end": 595, "id": 97, "annotation": "DOPANT"}, {"text": "-", "start": 596, "end": 597, "id": 98, "annotation": null}, {"text": "doped", "start": 598, "end": 603, "id": 99, "annotation": null}, {"text": "KNb(Zr)O3", "start": 604, "end": 613, "id": 100, "annotation": "BASEMAT"}, {"text": "is", "start": 614, "end": 616, "id": 101, "annotation": null}, {"text": "13", "start": 617, "end": 619, "id": 102, "annotation": null}, {"text": "times", "start": 620, "end": 625, "id": 103, "annotation": null}, {"text": "more", "start": 626, "end": 630, "id": 104, "annotation": null}, {"text": "efficient", "start": 631, "end": 640, "id": 105, "annotation": null}, {"text": "as", "start": 641, "end": 643, "id": 106, "annotation": null}, {"text": "compared", "start": 644, "end": 652, "id": 107, "annotation": null}, {"text": "to", "start": 653, "end": 655, "id": 108, "annotation": null}, {"text": "the", "start": 656, "end": 659, "id": 109, "annotation": null}, {"text": "pristine", "start": 660, "end": 668, "id": 110, "annotation": null}, {"text": "KNbO3", "start": 669, "end": 674, "id": 111, "annotation": null}, {"text": "in", "start": 675, "end": 677, "id": 112, "annotation": null}, {"text": "terms", "start": 678, "end": 683, "id": 113, "annotation": null}, {"text": "of", "start": 684, "end": 686, "id": 114, "annotation": null}, {"text": "rate", "start": 687, "end": 691, "id": 115, "annotation": null}, {"text": "of", "start": 692, "end": 694, "id": 116, "annotation": null}, {"text": "H2", "start": 695, "end": 697, "id": 117, "annotation": null}, {"text": "evolution", "start": 698, "end": 707, "id": 118, "annotation": null}, {"text": ".", "start": 708, "end": 709, "id": 119, "annotation": null}], [{"text": "The", "start": 710, "end": 713, "id": 120, "annotation": null}, {"text": "same", "start": 714, "end": 718, "id": 121, "annotation": null}, {"text": "nanocomposite", "start": 719, "end": 732, "id": 122, "annotation": null}, {"text": "is", "start": 733, "end": 735, "id": 123, "annotation": null}, {"text": "shown", "start": 736, "end": 741, "id": 124, "annotation": null}, {"text": "to", "start": 742, "end": 744, "id": 125, "annotation": null}, {"text": "exhibit", "start": 745, "end": 752, "id": 126, "annotation": null}, {"text": "12-fold", "start": 753, "end": 760, "id": 127, "annotation": null}, {"text": "greater", "start": 761, "end": 768, "id": 128, "annotation": null}, {"text": "photocatalytic", "start": 769, "end": 783, "id": 129, "annotation": null}, {"text": "efficiency", "start": 784, "end": 794, "id": 130, "annotation": null}, {"text": "for", "start": 795, "end": 798, "id": 131, "annotation": null}, {"text": "degradation", "start": 799, "end": 810, "id": 132, "annotation": null}, {"text": "of", "start": 811, "end": 813, "id": 133, "annotation": null}, {"text": "Rhodamine", "start": 814, "end": 823, "id": 134, "annotation": null}, {"text": "B", "start": 824, "end": 825, "id": 135, "annotation": null}, {"text": "(", "start": 826, "end": 827, "id": 136, "annotation": null}, {"text": "RhB", "start": 828, "end": 831, "id": 137, "annotation": null}, {"text": ")", "start": 832, "end": 833, "id": 138, "annotation": null}, {"text": "(", "start": 834, "end": 835, "id": 139, "annotation": null}, {"text": "up", "start": 836, "end": 838, "id": 140, "annotation": null}, {"text": "to", "start": 839, "end": 841, "id": 141, "annotation": null}, {"text": "83", "start": 842, "end": 844, "id": 142, "annotation": null}, {"text": "%", "start": 845, "end": 846, "id": 143, "annotation": null}, {"text": "after", "start": 847, "end": 852, "id": 144, "annotation": null}, {"text": "210", "start": 853, "end": 856, "id": 145, "annotation": null}, {"text": "min", "start": 857, "end": 860, "id": 146, "annotation": null}, {"text": ")", "start": 861, "end": 862, "id": 147, "annotation": null}, {"text": "than", "start": 863, "end": 867, "id": 148, "annotation": null}, {"text": "pure", "start": 868, "end": 872, "id": 149, "annotation": null}, {"text": "KNbO3", "start": 873, "end": 878, "id": 150, "annotation": null}, {"text": ".", "start": 879, "end": 880, "id": 151, "annotation": null}], [{"text": "Density", "start": 881, "end": 888, "id": 152, "annotation": null}, {"text": "functional", "start": 889, "end": 899, "id": 153, "annotation": null}, {"text": "theory", "start": 900, "end": 906, "id": 154, "annotation": null}, {"text": "calculations", "start": 907, "end": 919, "id": 155, "annotation": null}, {"text": "are", "start": 920, "end": 923, "id": 156, "annotation": null}, {"text": "carried", "start": 924, "end": 931, "id": 157, "annotation": null}, {"text": "out", "start": 932, "end": 935, "id": 158, "annotation": null}, {"text": "to", "start": 936, "end": 938, "id": 159, "annotation": null}, {"text": "understand", "start": 939, "end": 949, "id": 160, "annotation": null}, {"text": "the", "start": 950, "end": 953, "id": 161, "annotation": null}, {"text": "Zr", "start": 954, "end": 956, "id": 162, "annotation": "DOPANT"}, {"text": "doping", "start": 957, "end": 963, "id": 163, "annotation": null}, {"text": "effect", "start": 964, "end": 970, "id": 164, "annotation": null}, {"text": "on", "start": 971, "end": 973, "id": 165, "annotation": null}, {"text": "the", "start": 974, "end": 977, "id": 166, "annotation": null}, {"text": "electronic", "start": 978, "end": 988, "id": 167, "annotation": null}, {"text": "structure", "start": 989, "end": 998, "id": 168, "annotation": null}, {"text": "as", "start": 999, "end": 1001, "id": 169, "annotation": null}, {"text": "well", "start": 1002, "end": 1006, "id": 170, "annotation": null}, {"text": "as", "start": 1007, "end": 1009, "id": 171, "annotation": null}, {"text": "the", "start": 1010, "end": 1013, "id": 172, "annotation": null}, {"text": "surface", "start": 1014, "end": 1021, "id": 173, "annotation": null}, {"text": "hydrogen", "start": 1022, "end": 1030, "id": 174, "annotation": null}, {"text": "evolution", "start": 1031, "end": 1040, "id": 175, "annotation": null}, {"text": "reaction", "start": 1041, "end": 1049, "id": 176, "annotation": null}, {"text": ".", "start": 1050, "end": 1051, "id": 177, "annotation": null}], [{"text": "Overall", "start": 1052, "end": 1059, "id": 178, "annotation": null}, {"text": ",", "start": 1060, "end": 1061, "id": 179, "annotation": null}, {"text": "an", "start": 1062, "end": 1064, "id": 180, "annotation": null}, {"text": "optimized", "start": 1065, "end": 1074, "id": 181, "annotation": null}, {"text": "combination", "start": 1075, "end": 1086, "id": 182, "annotation": null}, {"text": "of", "start": 1087, "end": 1089, "id": 183, "annotation": null}, {"text": "morphology", "start": 1090, "end": 1100, "id": 184, "annotation": null}, {"text": "vs", "start": 1101, "end": 1103, "id": 185, "annotation": null}, {"text": "photophysical", "start": 1104, "end": 1117, "id": 186, "annotation": null}, {"text": "features", "start": 1118, "end": 1126, "id": 187, "annotation": null}, {"text": "synergizes", "start": 1127, "end": 1137, "id": 188, "annotation": null}, {"text": "the", "start": 1138, "end": 1141, "id": 189, "annotation": null}, {"text": "photocatalytic", "start": 1142, "end": 1156, "id": 190, "annotation": null}, {"text": "activity", "start": 1157, "end": 1165, "id": 191, "annotation": null}, {"text": "of", "start": 1166, "end": 1168, "id": 192, "annotation": null}, {"text": "these", "start": 1169, "end": 1174, "id": 193, "annotation": null}, {"text": "newly", "start": 1175, "end": 1180, "id": 194, "annotation": null}, {"text": "developed", "start": 1181, "end": 1190, "id": 195, "annotation": null}, {"text": "perovskites", "start": 1191, "end": 1202, "id": 196, "annotation": null}, {"text": ".", "start": 1203, "end": 1204, "id": 197, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Herein, for the first time we report the synthesis of a series of compositionally tunable Zr-doped novel KNb(Zr)O3 perovskites using green and facile methodology and their superior photocatalytic activities toward photoinduced hydrogen production and dye degradation. The substitutional doping of Zr(IV) in place of Nb(V) leads to a decrease in the electronic band gap by inclusion of a new acceptor level near the valence band. The results on the optimally doped perovskite for the photocatalytic hydrogen evolution reaction reveal that the 20 mol % Zr-doped KNb(Zr)O3 is 13 times more efficient as compared to the pristine KNbO3 in terms of rate of H2 evolution. The same nanocomposite is shown to exhibit 12-fold greater photocatalytic efficiency for degradation of Rhodamine B (RhB) (up to 83% after 210 min) than pure KNbO3. Density functional theory calculations are carried out to understand the Zr doping effect on the electronic structure as well as the surface hydrogen evolution reaction. Overall, an optimized combination of morphology vs photophysical features synergizes the photocatalytic activity of these newly developed perovskites.", "meta": {"doi": "10.1021/acs.jpcc.6b11754"}, "_input_hash": -1353356205, "_task_hash": -1001093386, "tokens": [[{"text": "Herein", "start": 35, "end": 41, "id": 6, "annotation": null}, {"text": ",", "start": 42, "end": 43, "id": 7, "annotation": null}, {"text": "for", "start": 44, "end": 47, "id": 8, "annotation": null}, {"text": "the", "start": 48, "end": 51, "id": 9, "annotation": null}, {"text": "first", "start": 52, "end": 57, "id": 10, "annotation": null}, {"text": "time", "start": 58, "end": 62, "id": 11, "annotation": null}, {"text": "we", "start": 63, "end": 65, "id": 12, "annotation": null}, {"text": "report", "start": 66, "end": 72, "id": 13, "annotation": null}, {"text": "the", "start": 73, "end": 76, "id": 14, "annotation": null}, {"text": "synthesis", "start": 77, "end": 86, "id": 15, "annotation": null}, {"text": "of", "start": 87, "end": 89, "id": 16, "annotation": null}, {"text": "a", "start": 90, "end": 91, "id": 17, "annotation": null}, {"text": "series", "start": 92, "end": 98, "id": 18, "annotation": null}, {"text": "of", "start": 99, "end": 101, "id": 19, "annotation": null}, {"text": "compositionally", "start": 102, "end": 117, "id": 20, "annotation": null}, {"text": "tunable", "start": 118, "end": 125, "id": 21, "annotation": null}, {"text": "Zr", "start": 126, "end": 128, "id": 22, "annotation": "DOPANT"}, {"text": "-", "start": 129, "end": 130, "id": 23, "annotation": null}, {"text": "doped", "start": 131, "end": 136, "id": 24, "annotation": null}, {"text": "novel", "start": 137, "end": 142, "id": 25, "annotation": null}, {"text": "KNb(Zr)O3", "start": 143, "end": 152, "id": 26, "annotation": "BASEMAT"}, {"text": "perovskites", "start": 153, "end": 164, "id": 27, "annotation": null}, {"text": "using", "start": 165, "end": 170, "id": 28, "annotation": null}, {"text": "green", "start": 171, "end": 176, "id": 29, "annotation": null}, {"text": "and", "start": 177, "end": 180, "id": 30, "annotation": null}, {"text": "facile", "start": 181, "end": 187, "id": 31, "annotation": null}, {"text": "methodology", "start": 188, "end": 199, "id": 32, "annotation": null}, {"text": "and", "start": 200, "end": 203, "id": 33, "annotation": null}, {"text": "their", "start": 204, "end": 209, "id": 34, "annotation": null}, {"text": "superior", "start": 210, "end": 218, "id": 35, "annotation": null}, {"text": "photocatalytic", "start": 219, "end": 233, "id": 36, "annotation": null}, {"text": "activities", "start": 234, "end": 244, "id": 37, "annotation": null}, {"text": "toward", "start": 245, "end": 251, "id": 38, "annotation": null}, {"text": "photoinduced", "start": 252, "end": 264, "id": 39, "annotation": null}, {"text": "hydrogen", "start": 265, "end": 273, "id": 40, "annotation": null}, {"text": "production", "start": 274, "end": 284, "id": 41, "annotation": null}, {"text": "and", "start": 285, "end": 288, "id": 42, "annotation": null}, {"text": "dye", "start": 289, "end": 292, "id": 43, "annotation": null}, {"text": "degradation", "start": 293, "end": 304, "id": 44, "annotation": null}, {"text": ".", "start": 305, "end": 306, "id": 45, "annotation": null}], [{"text": "The", "start": 307, "end": 310, "id": 46, "annotation": null}, {"text": "substitutional", "start": 311, "end": 325, "id": 47, "annotation": null}, {"text": "doping", "start": 326, "end": 332, "id": 48, "annotation": null}, {"text": "of", "start": 333, "end": 335, "id": 49, "annotation": null}, {"text": "Zr(IV", "start": 336, "end": 341, "id": 50, "annotation": "DOPANT"}, {"text": ")", "start": 342, "end": 343, "id": 51, "annotation": "DOPANT"}, {"text": "in", "start": 344, "end": 346, "id": 52, "annotation": null}, {"text": "place", "start": 347, "end": 352, "id": 53, "annotation": null}, {"text": "of", "start": 353, "end": 355, "id": 54, "annotation": null}, {"text": "Nb(V", "start": 356, "end": 360, "id": 55, "annotation": null}, {"text": ")", "start": 361, "end": 362, "id": 56, "annotation": null}, {"text": "leads", "start": 363, "end": 368, "id": 57, "annotation": null}, {"text": "to", "start": 369, "end": 371, "id": 58, "annotation": null}, {"text": "a", "start": 372, "end": 373, "id": 59, "annotation": null}, {"text": "decrease", "start": 374, "end": 382, "id": 60, "annotation": null}, {"text": "in", "start": 383, "end": 385, "id": 61, "annotation": null}, {"text": "the", "start": 386, "end": 389, "id": 62, "annotation": null}, {"text": "electronic", "start": 390, "end": 400, "id": 63, "annotation": null}, {"text": "band", "start": 401, "end": 405, "id": 64, "annotation": null}, {"text": "gap", "start": 406, "end": 409, "id": 65, "annotation": null}, {"text": "by", "start": 410, "end": 412, "id": 66, "annotation": null}, {"text": "inclusion", "start": 413, "end": 422, "id": 67, "annotation": null}, {"text": "of", "start": 423, "end": 425, "id": 68, "annotation": null}, {"text": "a", "start": 426, "end": 427, "id": 69, "annotation": null}, {"text": "new", "start": 428, "end": 431, "id": 70, "annotation": null}, {"text": "acceptor", "start": 432, "end": 440, "id": 71, "annotation": null}, {"text": "level", "start": 441, "end": 446, "id": 72, "annotation": null}, {"text": "near", "start": 447, "end": 451, "id": 73, "annotation": null}, {"text": "the", "start": 452, "end": 455, "id": 74, "annotation": null}, {"text": "valence", "start": 456, "end": 463, "id": 75, "annotation": null}, {"text": "band", "start": 464, "end": 468, "id": 76, "annotation": null}, {"text": ".", "start": 469, "end": 470, "id": 77, "annotation": null}], [{"text": "The", "start": 471, "end": 474, "id": 78, "annotation": null}, {"text": "results", "start": 475, "end": 482, "id": 79, "annotation": null}, {"text": "on", "start": 483, "end": 485, "id": 80, "annotation": null}, {"text": "the", "start": 486, "end": 489, "id": 81, "annotation": null}, {"text": "optimally", "start": 490, "end": 499, "id": 82, "annotation": null}, {"text": "doped", "start": 500, "end": 505, "id": 83, "annotation": null}, {"text": "perovskite", "start": 506, "end": 516, "id": 84, "annotation": "BASEMAT"}, {"text": "for", "start": 517, "end": 520, "id": 85, "annotation": null}, {"text": "the", "start": 521, "end": 524, "id": 86, "annotation": null}, {"text": "photocatalytic", "start": 525, "end": 539, "id": 87, "annotation": null}, {"text": "hydrogen", "start": 540, "end": 548, "id": 88, "annotation": null}, {"text": "evolution", "start": 549, "end": 558, "id": 89, "annotation": null}, {"text": "reaction", "start": 559, "end": 567, "id": 90, "annotation": null}, {"text": "reveal", "start": 568, "end": 574, "id": 91, "annotation": null}, {"text": "that", "start": 575, "end": 579, "id": 92, "annotation": null}, {"text": "the", "start": 580, "end": 583, "id": 93, "annotation": null}, {"text": "20", "start": 584, "end": 586, "id": 94, "annotation": "DOPMODQ"}, {"text": "mol", "start": 587, "end": 590, "id": 95, "annotation": "DOPMODQ"}, {"text": "%", "start": 591, "end": 592, "id": 96, "annotation": "DOPMODQ"}, {"text": "Zr", "start": 593, "end": 595, "id": 97, "annotation": "DOPANT"}, {"text": "-", "start": 596, "end": 597, "id": 98, "annotation": null}, {"text": "doped", "start": 598, "end": 603, "id": 99, "annotation": null}, {"text": "KNb(Zr)O3", "start": 604, "end": 613, "id": 100, "annotation": "BASEMAT"}, {"text": "is", "start": 614, "end": 616, "id": 101, "annotation": null}, {"text": "13", "start": 617, "end": 619, "id": 102, "annotation": null}, {"text": "times", "start": 620, "end": 625, "id": 103, "annotation": null}, {"text": "more", "start": 626, "end": 630, "id": 104, "annotation": null}, {"text": "efficient", "start": 631, "end": 640, "id": 105, "annotation": null}, {"text": "as", "start": 641, "end": 643, "id": 106, "annotation": null}, {"text": "compared", "start": 644, "end": 652, "id": 107, "annotation": null}, {"text": "to", "start": 653, "end": 655, "id": 108, "annotation": null}, {"text": "the", "start": 656, "end": 659, "id": 109, "annotation": null}, {"text": "pristine", "start": 660, "end": 668, "id": 110, "annotation": null}, {"text": "KNbO3", "start": 669, "end": 674, "id": 111, "annotation": null}, {"text": "in", "start": 675, "end": 677, "id": 112, "annotation": null}, {"text": "terms", "start": 678, "end": 683, "id": 113, "annotation": null}, {"text": "of", "start": 684, "end": 686, "id": 114, "annotation": null}, {"text": "rate", "start": 687, "end": 691, "id": 115, "annotation": null}, {"text": "of", "start": 692, "end": 694, "id": 116, "annotation": null}, {"text": "H2", "start": 695, "end": 697, "id": 117, "annotation": null}, {"text": "evolution", "start": 698, "end": 707, "id": 118, "annotation": null}, {"text": ".", "start": 708, "end": 709, "id": 119, "annotation": null}], [{"text": "The", "start": 710, "end": 713, "id": 120, "annotation": null}, {"text": "same", "start": 714, "end": 718, "id": 121, "annotation": null}, {"text": "nanocomposite", "start": 719, "end": 732, "id": 122, "annotation": null}, {"text": "is", "start": 733, "end": 735, "id": 123, "annotation": null}, {"text": "shown", "start": 736, "end": 741, "id": 124, "annotation": null}, {"text": "to", "start": 742, "end": 744, "id": 125, "annotation": null}, {"text": "exhibit", "start": 745, "end": 752, "id": 126, "annotation": null}, {"text": "12-fold", "start": 753, "end": 760, "id": 127, "annotation": null}, {"text": "greater", "start": 761, "end": 768, "id": 128, "annotation": null}, {"text": "photocatalytic", "start": 769, "end": 783, "id": 129, "annotation": null}, {"text": "efficiency", "start": 784, "end": 794, "id": 130, "annotation": null}, {"text": "for", "start": 795, "end": 798, "id": 131, "annotation": null}, {"text": "degradation", "start": 799, "end": 810, "id": 132, "annotation": null}, {"text": "of", "start": 811, "end": 813, "id": 133, "annotation": null}, {"text": "Rhodamine", "start": 814, "end": 823, "id": 134, "annotation": null}, {"text": "B", "start": 824, "end": 825, "id": 135, "annotation": null}, {"text": "(", "start": 826, "end": 827, "id": 136, "annotation": null}, {"text": "RhB", "start": 828, "end": 831, "id": 137, "annotation": null}, {"text": ")", "start": 832, "end": 833, "id": 138, "annotation": null}, {"text": "(", "start": 834, "end": 835, "id": 139, "annotation": null}, {"text": "up", "start": 836, "end": 838, "id": 140, "annotation": null}, {"text": "to", "start": 839, "end": 841, "id": 141, "annotation": null}, {"text": "83", "start": 842, "end": 844, "id": 142, "annotation": null}, {"text": "%", "start": 845, "end": 846, "id": 143, "annotation": null}, {"text": "after", "start": 847, "end": 852, "id": 144, "annotation": null}, {"text": "210", "start": 853, "end": 856, "id": 145, "annotation": null}, {"text": "min", "start": 857, "end": 860, "id": 146, "annotation": null}, {"text": ")", "start": 861, "end": 862, "id": 147, "annotation": null}, {"text": "than", "start": 863, "end": 867, "id": 148, "annotation": null}, {"text": "pure", "start": 868, "end": 872, "id": 149, "annotation": null}, {"text": "KNbO3", "start": 873, "end": 878, "id": 150, "annotation": null}, {"text": ".", "start": 879, "end": 880, "id": 151, "annotation": null}], [{"text": "Density", "start": 881, "end": 888, "id": 152, "annotation": null}, {"text": "functional", "start": 889, "end": 899, "id": 153, "annotation": null}, {"text": "theory", "start": 900, "end": 906, "id": 154, "annotation": null}, {"text": "calculations", "start": 907, "end": 919, "id": 155, "annotation": null}, {"text": "are", "start": 920, "end": 923, "id": 156, "annotation": null}, {"text": "carried", "start": 924, "end": 931, "id": 157, "annotation": null}, {"text": "out", "start": 932, "end": 935, "id": 158, "annotation": null}, {"text": "to", "start": 936, "end": 938, "id": 159, "annotation": null}, {"text": "understand", "start": 939, "end": 949, "id": 160, "annotation": null}, {"text": "the", "start": 950, "end": 953, "id": 161, "annotation": null}, {"text": "Zr", "start": 954, "end": 956, "id": 162, "annotation": "DOPANT"}, {"text": "doping", "start": 957, "end": 963, "id": 163, "annotation": null}, {"text": "effect", "start": 964, "end": 970, "id": 164, "annotation": null}, {"text": "on", "start": 971, "end": 973, "id": 165, "annotation": null}, {"text": "the", "start": 974, "end": 977, "id": 166, "annotation": null}, {"text": "electronic", "start": 978, "end": 988, "id": 167, "annotation": null}, {"text": "structure", "start": 989, "end": 998, "id": 168, "annotation": null}, {"text": "as", "start": 999, "end": 1001, "id": 169, "annotation": null}, {"text": "well", "start": 1002, "end": 1006, "id": 170, "annotation": null}, {"text": "as", "start": 1007, "end": 1009, "id": 171, "annotation": null}, {"text": "the", "start": 1010, "end": 1013, "id": 172, "annotation": null}, {"text": "surface", "start": 1014, "end": 1021, "id": 173, "annotation": null}, {"text": "hydrogen", "start": 1022, "end": 1030, "id": 174, "annotation": null}, {"text": "evolution", "start": 1031, "end": 1040, "id": 175, "annotation": null}, {"text": "reaction", "start": 1041, "end": 1049, "id": 176, "annotation": null}, {"text": ".", "start": 1050, "end": 1051, "id": 177, "annotation": null}], [{"text": "Overall", "start": 1052, "end": 1059, "id": 178, "annotation": null}, {"text": ",", "start": 1060, "end": 1061, "id": 179, "annotation": null}, {"text": "an", "start": 1062, "end": 1064, "id": 180, "annotation": null}, {"text": "optimized", "start": 1065, "end": 1074, "id": 181, "annotation": null}, {"text": "combination", "start": 1075, "end": 1086, "id": 182, "annotation": null}, {"text": "of", "start": 1087, "end": 1089, "id": 183, "annotation": null}, {"text": "morphology", "start": 1090, "end": 1100, "id": 184, "annotation": null}, {"text": "vs", "start": 1101, "end": 1103, "id": 185, "annotation": null}, {"text": "photophysical", "start": 1104, "end": 1117, "id": 186, "annotation": null}, {"text": "features", "start": 1118, "end": 1126, "id": 187, "annotation": null}, {"text": "synergizes", "start": 1127, "end": 1137, "id": 188, "annotation": null}, {"text": "the", "start": 1138, "end": 1141, "id": 189, "annotation": null}, {"text": "photocatalytic", "start": 1142, "end": 1156, "id": 190, "annotation": null}, {"text": "activity", "start": 1157, "end": 1165, "id": 191, "annotation": null}, {"text": "of", "start": 1166, "end": 1168, "id": 192, "annotation": null}, {"text": "these", "start": 1169, "end": 1174, "id": 193, "annotation": null}, {"text": "newly", "start": 1175, "end": 1180, "id": 194, "annotation": null}, {"text": "developed", "start": 1181, "end": 1190, "id": 195, "annotation": null}, {"text": "perovskites", "start": 1191, "end": 1202, "id": 196, "annotation": null}, {"text": ".", "start": 1203, "end": 1204, "id": 197, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Novel iron-doped aluminogermanate nanotubes were obtained using a single step, aqueous phase synthesis protocol. These nanotubes are isostructural with imogolite, a natural occurring nanofiber, but are obtained by-product free in substantially larger quantities with aluminum substitution levels around 1%. Increasing the Fe concentrations led to higher substitution levels but also to the co-precipitation of Fe (oxy)hydroxides.", "meta": {"doi": "10.1039/c4ra08840a"}, "_input_hash": 1065852413, "_task_hash": -25452772, "tokens": [[{"text": "Novel", "start": 35, "end": 40, "id": 6, "annotation": null}, {"text": "iron", "start": 41, "end": 45, "id": 7, "annotation": "DOPANT"}, {"text": "-", "start": 46, "end": 47, "id": 8, "annotation": null}, {"text": "doped", "start": 48, "end": 53, "id": 9, "annotation": null}, {"text": "aluminogermanate", "start": 54, "end": 70, "id": 10, "annotation": "BASEMAT"}, {"text": "nanotubes", "start": 71, "end": 80, "id": 11, "annotation": null}, {"text": "were", "start": 81, "end": 85, "id": 12, "annotation": null}, {"text": "obtained", "start": 86, "end": 94, "id": 13, "annotation": null}, {"text": "using", "start": 95, "end": 100, "id": 14, "annotation": null}, {"text": "a", "start": 101, "end": 102, "id": 15, "annotation": null}, {"text": "single", "start": 103, "end": 109, "id": 16, "annotation": null}, {"text": "step", "start": 110, "end": 114, "id": 17, "annotation": null}, {"text": ",", "start": 115, "end": 116, "id": 18, "annotation": null}, {"text": "aqueous", "start": 117, "end": 124, "id": 19, "annotation": null}, {"text": "phase", "start": 125, "end": 130, "id": 20, "annotation": null}, {"text": "synthesis", "start": 131, "end": 140, "id": 21, "annotation": null}, {"text": "protocol", "start": 141, "end": 149, "id": 22, "annotation": null}, {"text": ".", "start": 150, "end": 151, "id": 23, "annotation": null}], [{"text": "These", "start": 152, "end": 157, "id": 24, "annotation": null}, {"text": "nanotubes", "start": 158, "end": 167, "id": 25, "annotation": null}, {"text": "are", "start": 168, "end": 171, "id": 26, "annotation": null}, {"text": "isostructural", "start": 172, "end": 185, "id": 27, "annotation": null}, {"text": "with", "start": 186, "end": 190, "id": 28, "annotation": null}, {"text": "imogolite", "start": 191, "end": 200, "id": 29, "annotation": null}, {"text": ",", "start": 201, "end": 202, "id": 30, "annotation": null}, {"text": "a", "start": 203, "end": 204, "id": 31, "annotation": null}, {"text": "natural", "start": 205, "end": 212, "id": 32, "annotation": null}, {"text": "occurring", "start": 213, "end": 222, "id": 33, "annotation": null}, {"text": "nanofiber", "start": 223, "end": 232, "id": 34, "annotation": null}, {"text": ",", "start": 233, "end": 234, "id": 35, "annotation": null}, {"text": "but", "start": 235, "end": 238, "id": 36, "annotation": null}, {"text": "are", "start": 239, "end": 242, "id": 37, "annotation": null}, {"text": "obtained", "start": 243, "end": 251, "id": 38, "annotation": null}, {"text": "by", "start": 252, "end": 254, "id": 39, "annotation": null}, {"text": "-", "start": 255, "end": 256, "id": 40, "annotation": null}, {"text": "product", "start": 257, "end": 264, "id": 41, "annotation": null}, {"text": "free", "start": 265, "end": 269, "id": 42, "annotation": null}, {"text": "in", "start": 270, "end": 272, "id": 43, "annotation": null}, {"text": "substantially", "start": 273, "end": 286, "id": 44, "annotation": null}, {"text": "larger", "start": 287, "end": 293, "id": 45, "annotation": null}, {"text": "quantities", "start": 294, "end": 304, "id": 46, "annotation": null}, {"text": "with", "start": 305, "end": 309, "id": 47, "annotation": null}, {"text": "aluminum", "start": 310, "end": 318, "id": 48, "annotation": null}, {"text": "substitution", "start": 319, "end": 331, "id": 49, "annotation": null}, {"text": "levels", "start": 332, "end": 338, "id": 50, "annotation": null}, {"text": "around", "start": 339, "end": 345, "id": 51, "annotation": null}, {"text": "1", "start": 346, "end": 347, "id": 52, "annotation": null}, {"text": "%", "start": 348, "end": 349, "id": 53, "annotation": null}, {"text": ".", "start": 350, "end": 351, "id": 54, "annotation": null}], [{"text": "Increasing", "start": 352, "end": 362, "id": 55, "annotation": null}, {"text": "the", "start": 363, "end": 366, "id": 56, "annotation": null}, {"text": "Fe", "start": 367, "end": 369, "id": 57, "annotation": null}, {"text": "concentrations", "start": 370, "end": 384, "id": 58, "annotation": null}, {"text": "led", "start": 385, "end": 388, "id": 59, "annotation": null}, {"text": "to", "start": 389, "end": 391, "id": 60, "annotation": null}, {"text": "higher", "start": 392, "end": 398, "id": 61, "annotation": null}, {"text": "substitution", "start": 399, "end": 411, "id": 62, "annotation": null}, {"text": "levels", "start": 412, "end": 418, "id": 63, "annotation": null}, {"text": "but", "start": 419, "end": 422, "id": 64, "annotation": null}, {"text": "also", "start": 423, "end": 427, "id": 65, "annotation": null}, {"text": "to", "start": 428, "end": 430, "id": 66, "annotation": null}, {"text": "the", "start": 431, "end": 434, "id": 67, "annotation": null}, {"text": "co", "start": 435, "end": 437, "id": 68, "annotation": null}, {"text": "-", "start": 438, "end": 439, "id": 69, "annotation": null}, {"text": "precipitation", "start": 440, "end": 453, "id": 70, "annotation": null}, {"text": "of", "start": 454, "end": 456, "id": 71, "annotation": null}, {"text": "Fe", "start": 457, "end": 459, "id": 72, "annotation": null}, {"text": "(", "start": 460, "end": 461, "id": 73, "annotation": null}, {"text": "oxy)hydroxides", "start": 462, "end": 476, "id": 74, "annotation": null}, {"text": ".", "start": 477, "end": 478, "id": 75, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The emission and excitation spectra of Fe-doped Zn2SiO4 (willemite) crystals were measured at temperatures ranging from 10 to 298 K. The luminescence consists of two contributions, both of broadband type: an emission due to the 4T1 (4G) \u2192 6A1 (6S) interconfigurational transition of the d5 Fe3+ ions in sites having approximate tetrahedral coordination and a second emission probably due to lattice defects induced by the requirement of charge compensation. The excitation spectrum of Fe3+ has been assigned on the basis of the ligand field theory, and the energies of the bands have been fitted with the following values of the ligand field parameters: Dq = 743 cm-1, B = 535 cm-1, and C = 3155 cm-1. From these data, it is reasonable to suppose that the Fe3+ ions responsible for the emission are located at the Si4+ distorted tetrahedral sites.", "meta": {"doi": "10.1006/jssc.1995.1240"}, "_input_hash": 1308513887, "_task_hash": -195172984, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "emission", "start": 4, "end": 12, "id": 1, "annotation": null}, {"text": "and", "start": 13, "end": 16, "id": 2, "annotation": null}, {"text": "excitation", "start": 17, "end": 27, "id": 3, "annotation": null}, {"text": "spectra", "start": 28, "end": 35, "id": 4, "annotation": null}, {"text": "of", "start": 36, "end": 38, "id": 5, "annotation": null}, {"text": "Fe", "start": 39, "end": 41, "id": 6, "annotation": "DOPANT"}, {"text": "-", "start": 42, "end": 43, "id": 7, "annotation": null}, {"text": "doped", "start": 44, "end": 49, "id": 8, "annotation": null}, {"text": "Zn2SiO4", "start": 50, "end": 57, "id": 9, "annotation": "BASEMAT"}, {"text": "(", "start": 58, "end": 59, "id": 10, "annotation": null}, {"text": "willemite", "start": 60, "end": 69, "id": 11, "annotation": "BASEMAT"}, {"text": ")", "start": 70, "end": 71, "id": 12, "annotation": null}, {"text": "crystals", "start": 72, "end": 80, "id": 13, "annotation": null}, {"text": "were", "start": 81, "end": 85, "id": 14, "annotation": null}, {"text": "measured", "start": 86, "end": 94, "id": 15, "annotation": null}, {"text": "at", "start": 95, "end": 97, "id": 16, "annotation": null}, {"text": "temperatures", "start": 98, "end": 110, "id": 17, "annotation": null}, {"text": "ranging", "start": 111, "end": 118, "id": 18, "annotation": null}, {"text": "from", "start": 119, "end": 123, "id": 19, "annotation": null}, {"text": "10", "start": 124, "end": 126, "id": 20, "annotation": null}, {"text": "to", "start": 127, "end": 129, "id": 21, "annotation": null}, {"text": "298", "start": 130, "end": 133, "id": 22, "annotation": null}, {"text": "K.", "start": 134, "end": 136, "id": 23, "annotation": null}], [{"text": "The", "start": 137, "end": 140, "id": 24, "annotation": null}, {"text": "luminescence", "start": 141, "end": 153, "id": 25, "annotation": null}, {"text": "consists", "start": 154, "end": 162, "id": 26, "annotation": null}, {"text": "of", "start": 163, "end": 165, "id": 27, "annotation": null}, {"text": "two", "start": 166, "end": 169, "id": 28, "annotation": null}, {"text": "contributions", "start": 170, "end": 183, "id": 29, "annotation": null}, {"text": ",", "start": 184, "end": 185, "id": 30, "annotation": null}, {"text": "both", "start": 186, "end": 190, "id": 31, "annotation": null}, {"text": "of", "start": 191, "end": 193, "id": 32, "annotation": null}, {"text": "broadband", "start": 194, "end": 203, "id": 33, "annotation": null}, {"text": "type", "start": 204, "end": 208, "id": 34, "annotation": null}, {"text": ":", "start": 209, "end": 210, "id": 35, "annotation": null}, {"text": "an", "start": 211, "end": 213, "id": 36, "annotation": null}, {"text": "emission", "start": 214, "end": 222, "id": 37, "annotation": null}, {"text": "due", "start": 223, "end": 226, "id": 38, "annotation": null}, {"text": "to", "start": 227, "end": 229, "id": 39, "annotation": null}, {"text": "the", "start": 230, "end": 233, "id": 40, "annotation": null}, {"text": "4T1", "start": 234, "end": 237, "id": 41, "annotation": null}, {"text": "(", "start": 238, "end": 239, "id": 42, "annotation": null}, {"text": "4", "start": 240, "end": 241, "id": 43, "annotation": null}, {"text": "G", "start": 242, "end": 243, "id": 44, "annotation": null}, {"text": ")", "start": 244, "end": 245, "id": 45, "annotation": null}, {"text": "\u2192", "start": 246, "end": 247, "id": 46, "annotation": null}, {"text": "6A1", "start": 248, "end": 251, "id": 47, "annotation": null}, {"text": "(", "start": 252, "end": 253, "id": 48, "annotation": null}, {"text": "6S", "start": 254, "end": 256, "id": 49, "annotation": null}, {"text": ")", "start": 257, "end": 258, "id": 50, "annotation": null}, {"text": "interconfigurational", "start": 259, "end": 279, "id": 51, "annotation": null}, {"text": "transition", "start": 280, "end": 290, "id": 52, "annotation": null}, {"text": "of", "start": 291, "end": 293, "id": 53, "annotation": null}, {"text": "the", "start": 294, "end": 297, "id": 54, "annotation": null}, {"text": "d5", "start": 298, "end": 300, "id": 55, "annotation": null}, {"text": "Fe3", "start": 301, "end": 304, "id": 56, "annotation": null}, {"text": "+", "start": 305, "end": 306, "id": 57, "annotation": null}, {"text": "ions", "start": 307, "end": 311, "id": 58, "annotation": null}, {"text": "in", "start": 312, "end": 314, "id": 59, "annotation": null}, {"text": "sites", "start": 315, "end": 320, "id": 60, "annotation": null}, {"text": "having", "start": 321, "end": 327, "id": 61, "annotation": null}, {"text": "approximate", "start": 328, "end": 339, "id": 62, "annotation": null}, {"text": "tetrahedral", "start": 340, "end": 351, "id": 63, "annotation": null}, {"text": "coordination", "start": 352, "end": 364, "id": 64, "annotation": null}, {"text": "and", "start": 365, "end": 368, "id": 65, "annotation": null}, {"text": "a", "start": 369, "end": 370, "id": 66, "annotation": null}, {"text": "second", "start": 371, "end": 377, "id": 67, "annotation": null}, {"text": "emission", "start": 378, "end": 386, "id": 68, "annotation": null}, {"text": "probably", "start": 387, "end": 395, "id": 69, "annotation": null}, {"text": "due", "start": 396, "end": 399, "id": 70, "annotation": null}, {"text": "to", "start": 400, "end": 402, "id": 71, "annotation": null}, {"text": "lattice", "start": 403, "end": 410, "id": 72, "annotation": null}, {"text": "defects", "start": 411, "end": 418, "id": 73, "annotation": null}, {"text": "induced", "start": 419, "end": 426, "id": 74, "annotation": null}, {"text": "by", "start": 427, "end": 429, "id": 75, "annotation": null}, {"text": "the", "start": 430, "end": 433, "id": 76, "annotation": null}, {"text": "requirement", "start": 434, "end": 445, "id": 77, "annotation": null}, {"text": "of", "start": 446, "end": 448, "id": 78, "annotation": null}, {"text": "charge", "start": 449, "end": 455, "id": 79, "annotation": null}, {"text": "compensation", "start": 456, "end": 468, "id": 80, "annotation": null}, {"text": ".", "start": 469, "end": 470, "id": 81, "annotation": null}], [{"text": "The", "start": 471, "end": 474, "id": 82, "annotation": null}, {"text": "excitation", "start": 475, "end": 485, "id": 83, "annotation": null}, {"text": "spectrum", "start": 486, "end": 494, "id": 84, "annotation": null}, {"text": "of", "start": 495, "end": 497, "id": 85, "annotation": null}, {"text": "Fe3", "start": 498, "end": 501, "id": 86, "annotation": null}, {"text": "+", "start": 502, "end": 503, "id": 87, "annotation": null}, {"text": "has", "start": 504, "end": 507, "id": 88, "annotation": null}, {"text": "been", "start": 508, "end": 512, "id": 89, "annotation": null}, {"text": "assigned", "start": 513, "end": 521, "id": 90, "annotation": null}, {"text": "on", "start": 522, "end": 524, "id": 91, "annotation": null}, {"text": "the", "start": 525, "end": 528, "id": 92, "annotation": null}, {"text": "basis", "start": 529, "end": 534, "id": 93, "annotation": null}, {"text": "of", "start": 535, "end": 537, "id": 94, "annotation": null}, {"text": "the", "start": 538, "end": 541, "id": 95, "annotation": null}, {"text": "ligand", "start": 542, "end": 548, "id": 96, "annotation": null}, {"text": "field", "start": 549, "end": 554, "id": 97, "annotation": null}, {"text": "theory", "start": 555, "end": 561, "id": 98, "annotation": null}, {"text": ",", "start": 562, "end": 563, "id": 99, "annotation": null}, {"text": "and", "start": 564, "end": 567, "id": 100, "annotation": null}, {"text": "the", "start": 568, "end": 571, "id": 101, "annotation": null}, {"text": "energies", "start": 572, "end": 580, "id": 102, "annotation": null}, {"text": "of", "start": 581, "end": 583, "id": 103, "annotation": null}, {"text": "the", "start": 584, "end": 587, "id": 104, "annotation": null}, {"text": "bands", "start": 588, "end": 593, "id": 105, "annotation": null}, {"text": "have", "start": 594, "end": 598, "id": 106, "annotation": null}, {"text": "been", "start": 599, "end": 603, "id": 107, "annotation": null}, {"text": "fitted", "start": 604, "end": 610, "id": 108, "annotation": null}, {"text": "with", "start": 611, "end": 615, "id": 109, "annotation": null}, {"text": "the", "start": 616, "end": 619, "id": 110, "annotation": null}, {"text": "following", "start": 620, "end": 629, "id": 111, "annotation": null}, {"text": "values", "start": 630, "end": 636, "id": 112, "annotation": null}, {"text": "of", "start": 637, "end": 639, "id": 113, "annotation": null}, {"text": "the", "start": 640, "end": 643, "id": 114, "annotation": null}, {"text": "ligand", "start": 644, "end": 650, "id": 115, "annotation": null}, {"text": "field", "start": 651, "end": 656, "id": 116, "annotation": null}, {"text": "parameters", "start": 657, "end": 667, "id": 117, "annotation": null}, {"text": ":", "start": 668, "end": 669, "id": 118, "annotation": null}, {"text": "Dq", "start": 670, "end": 672, "id": 119, "annotation": null}, {"text": "=", "start": 673, "end": 674, "id": 120, "annotation": null}, {"text": "743", "start": 675, "end": 678, "id": 121, "annotation": null}, {"text": "cm-1", "start": 679, "end": 683, "id": 122, "annotation": null}, {"text": ",", "start": 684, "end": 685, "id": 123, "annotation": null}, {"text": "B", "start": 686, "end": 687, "id": 124, "annotation": null}, {"text": "=", "start": 688, "end": 689, "id": 125, "annotation": null}, {"text": "535", "start": 690, "end": 693, "id": 126, "annotation": null}, {"text": "cm-1", "start": 694, "end": 698, "id": 127, "annotation": null}, {"text": ",", "start": 699, "end": 700, "id": 128, "annotation": null}, {"text": "and", "start": 701, "end": 704, "id": 129, "annotation": null}, {"text": "C", "start": 705, "end": 706, "id": 130, "annotation": null}, {"text": "=", "start": 707, "end": 708, "id": 131, "annotation": null}, {"text": "3155", "start": 709, "end": 713, "id": 132, "annotation": null}, {"text": "cm-1", "start": 714, "end": 718, "id": 133, "annotation": null}, {"text": ".", "start": 719, "end": 720, "id": 134, "annotation": null}], [{"text": "From", "start": 721, "end": 725, "id": 135, "annotation": null}, {"text": "these", "start": 726, "end": 731, "id": 136, "annotation": null}, {"text": "data", "start": 732, "end": 736, "id": 137, "annotation": null}, {"text": ",", "start": 737, "end": 738, "id": 138, "annotation": null}, {"text": "it", "start": 739, "end": 741, "id": 139, "annotation": null}, {"text": "is", "start": 742, "end": 744, "id": 140, "annotation": null}, {"text": "reasonable", "start": 745, "end": 755, "id": 141, "annotation": null}, {"text": "to", "start": 756, "end": 758, "id": 142, "annotation": null}, {"text": "suppose", "start": 759, "end": 766, "id": 143, "annotation": null}, {"text": "that", "start": 767, "end": 771, "id": 144, "annotation": null}, {"text": "the", "start": 772, "end": 775, "id": 145, "annotation": null}, {"text": "Fe3", "start": 776, "end": 779, "id": 146, "annotation": null}, {"text": "+", "start": 780, "end": 781, "id": 147, "annotation": null}, {"text": "ions", "start": 782, "end": 786, "id": 148, "annotation": null}, {"text": "responsible", "start": 787, "end": 798, "id": 149, "annotation": null}, {"text": "for", "start": 799, "end": 802, "id": 150, "annotation": null}, {"text": "the", "start": 803, "end": 806, "id": 151, "annotation": null}, {"text": "emission", "start": 807, "end": 815, "id": 152, "annotation": null}, {"text": "are", "start": 816, "end": 819, "id": 153, "annotation": null}, {"text": "located", "start": 820, "end": 827, "id": 154, "annotation": null}, {"text": "at", "start": 828, "end": 830, "id": 155, "annotation": null}, {"text": "the", "start": 831, "end": 834, "id": 156, "annotation": null}, {"text": "Si4", "start": 835, "end": 838, "id": 157, "annotation": null}, {"text": "+", "start": 839, "end": 840, "id": 158, "annotation": null}, {"text": "distorted", "start": 841, "end": 850, "id": 159, "annotation": null}, {"text": "tetrahedral", "start": 851, "end": 862, "id": 160, "annotation": null}, {"text": "sites", "start": 863, "end": 868, "id": 161, "annotation": null}, {"text": ".", "start": 869, "end": 870, "id": 162, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "A series of Hf:Ho:LiNbO3 crystals with various levels of HfO2 doping were grown by the conventional Czochraski technique. The measurement of the Hf and Ho concentrations in the crystals was carried out with an inductively coupled plasma atomic emission spectrometer (ICP-OE/MS). The infrared (IR) spectrum was measured in order to analyze the defect structure of the crystals. The light-induced scattering was characterized quantitatively via the incident exposure energy. The results showed that the ability to resist the light-induced scattering was improved considerably with the increase in concentration of Hf4+, however, light-induced scattering resistance ability weakened as the concentration of Hf4+ surpasses the concentration to 8mol%. The relationship between the defect structures and the light-induced scattering was discussed.", "meta": {"doi": "10.1016/j.optlastec.2012.06.003"}, "_input_hash": -1141481999, "_task_hash": -1478063614, "tokens": [[{"text": "A", "start": 0, "end": 1, "id": 0, "annotation": null}, {"text": "series", "start": 2, "end": 8, "id": 1, "annotation": null}, {"text": "of", "start": 9, "end": 11, "id": 2, "annotation": null}, {"text": "Hf", "start": 12, "end": 14, "id": 3, "annotation": "DOPANT"}, {"text": ":", "start": 15, "end": 16, "id": 4, "annotation": null}, {"text": "Ho", "start": 17, "end": 19, "id": 5, "annotation": "DOPANT"}, {"text": ":", "start": 20, "end": 21, "id": 6, "annotation": null}, {"text": "LiNbO3", "start": 22, "end": 28, "id": 7, "annotation": "BASEMAT"}, {"text": "crystals", "start": 29, "end": 37, "id": 8, "annotation": null}, {"text": "with", "start": 38, "end": 42, "id": 9, "annotation": null}, {"text": "various", "start": 43, "end": 50, "id": 10, "annotation": null}, {"text": "levels", "start": 51, "end": 57, "id": 11, "annotation": null}, {"text": "of", "start": 58, "end": 60, "id": 12, "annotation": null}, {"text": "HfO2", "start": 61, "end": 65, "id": 13, "annotation": "DOPANT"}, {"text": "doping", "start": 66, "end": 72, "id": 14, "annotation": null}, {"text": "were", "start": 73, "end": 77, "id": 15, "annotation": null}, {"text": "grown", "start": 78, "end": 83, "id": 16, "annotation": null}, {"text": "by", "start": 84, "end": 86, "id": 17, "annotation": null}, {"text": "the", "start": 87, "end": 90, "id": 18, "annotation": null}, {"text": "conventional", "start": 91, "end": 103, "id": 19, "annotation": null}, {"text": "Czochraski", "start": 104, "end": 114, "id": 20, "annotation": null}, {"text": "technique", "start": 115, "end": 124, "id": 21, "annotation": null}, {"text": ".", "start": 125, "end": 126, "id": 22, "annotation": null}], [{"text": "The", "start": 127, "end": 130, "id": 23, "annotation": null}, {"text": "measurement", "start": 131, "end": 142, "id": 24, "annotation": null}, {"text": "of", "start": 143, "end": 145, "id": 25, "annotation": null}, {"text": "the", "start": 146, "end": 149, "id": 26, "annotation": null}, {"text": "Hf", "start": 150, "end": 152, "id": 27, "annotation": null}, {"text": "and", "start": 153, "end": 156, "id": 28, "annotation": null}, {"text": "Ho", "start": 157, "end": 159, "id": 29, "annotation": null}, {"text": "concentrations", "start": 160, "end": 174, "id": 30, "annotation": null}, {"text": "in", "start": 175, "end": 177, "id": 31, "annotation": null}, {"text": "the", "start": 178, "end": 181, "id": 32, "annotation": null}, {"text": "crystals", "start": 182, "end": 190, "id": 33, "annotation": null}, {"text": "was", "start": 191, "end": 194, "id": 34, "annotation": null}, {"text": "carried", "start": 195, "end": 202, "id": 35, "annotation": null}, {"text": "out", "start": 203, "end": 206, "id": 36, "annotation": null}, {"text": "with", "start": 207, "end": 211, "id": 37, "annotation": null}, {"text": "an", "start": 212, "end": 214, "id": 38, "annotation": null}, {"text": "inductively", "start": 215, "end": 226, "id": 39, "annotation": null}, {"text": "coupled", "start": 227, "end": 234, "id": 40, "annotation": null}, {"text": "plasma", "start": 235, "end": 241, "id": 41, "annotation": null}, {"text": "atomic", "start": 242, "end": 248, "id": 42, "annotation": null}, {"text": "emission", "start": 249, "end": 257, "id": 43, "annotation": null}, {"text": "spectrometer", "start": 258, "end": 270, "id": 44, "annotation": null}, {"text": "(", "start": 271, "end": 272, "id": 45, "annotation": null}, {"text": "ICP", "start": 273, "end": 276, "id": 46, "annotation": null}, {"text": "-", "start": 277, "end": 278, "id": 47, "annotation": null}, {"text": "OE", "start": 279, "end": 281, "id": 48, "annotation": null}, {"text": "/", "start": 282, "end": 283, "id": 49, "annotation": null}, {"text": "MS", "start": 284, "end": 286, "id": 50, "annotation": null}, {"text": ")", "start": 287, "end": 288, "id": 51, "annotation": null}, {"text": ".", "start": 289, "end": 290, "id": 52, "annotation": null}], [{"text": "The", "start": 291, "end": 294, "id": 53, "annotation": null}, {"text": "infrared", "start": 295, "end": 303, "id": 54, "annotation": null}, {"text": "(", "start": 304, "end": 305, "id": 55, "annotation": null}, {"text": "IR", "start": 306, "end": 308, "id": 56, "annotation": null}, {"text": ")", "start": 309, "end": 310, "id": 57, "annotation": null}, {"text": "spectrum", "start": 311, "end": 319, "id": 58, "annotation": null}, {"text": "was", "start": 320, "end": 323, "id": 59, "annotation": null}, {"text": "measured", "start": 324, "end": 332, "id": 60, "annotation": null}, {"text": "in", "start": 333, "end": 335, "id": 61, "annotation": null}, {"text": "order", "start": 336, "end": 341, "id": 62, "annotation": null}, {"text": "to", "start": 342, "end": 344, "id": 63, "annotation": null}, {"text": "analyze", "start": 345, "end": 352, "id": 64, "annotation": null}, {"text": "the", "start": 353, "end": 356, "id": 65, "annotation": null}, {"text": "defect", "start": 357, "end": 363, "id": 66, "annotation": null}, {"text": "structure", "start": 364, "end": 373, "id": 67, "annotation": null}, {"text": "of", "start": 374, "end": 376, "id": 68, "annotation": null}, {"text": "the", "start": 377, "end": 380, "id": 69, "annotation": null}, {"text": "crystals", "start": 381, "end": 389, "id": 70, "annotation": null}, {"text": ".", "start": 390, "end": 391, "id": 71, "annotation": null}], [{"text": "The", "start": 392, "end": 395, "id": 72, "annotation": null}, {"text": "light", "start": 396, "end": 401, "id": 73, "annotation": null}, {"text": "-", "start": 402, "end": 403, "id": 74, "annotation": null}, {"text": "induced", "start": 404, "end": 411, "id": 75, "annotation": null}, {"text": "scattering", "start": 412, "end": 422, "id": 76, "annotation": null}, {"text": "was", "start": 423, "end": 426, "id": 77, "annotation": null}, {"text": "characterized", "start": 427, "end": 440, "id": 78, "annotation": null}, {"text": "quantitatively", "start": 441, "end": 455, "id": 79, "annotation": null}, {"text": "via", "start": 456, "end": 459, "id": 80, "annotation": null}, {"text": "the", "start": 460, "end": 463, "id": 81, "annotation": null}, {"text": "incident", "start": 464, "end": 472, "id": 82, "annotation": null}, {"text": "exposure", "start": 473, "end": 481, "id": 83, "annotation": null}, {"text": "energy", "start": 482, "end": 488, "id": 84, "annotation": null}, {"text": ".", "start": 489, "end": 490, "id": 85, "annotation": null}], [{"text": "The", "start": 491, "end": 494, "id": 86, "annotation": null}, {"text": "results", "start": 495, "end": 502, "id": 87, "annotation": null}, {"text": "showed", "start": 503, "end": 509, "id": 88, "annotation": null}, {"text": "that", "start": 510, "end": 514, "id": 89, "annotation": null}, {"text": "the", "start": 515, "end": 518, "id": 90, "annotation": null}, {"text": "ability", "start": 519, "end": 526, "id": 91, "annotation": null}, {"text": "to", "start": 527, "end": 529, "id": 92, "annotation": null}, {"text": "resist", "start": 530, "end": 536, "id": 93, "annotation": null}, {"text": "the", "start": 537, "end": 540, "id": 94, "annotation": null}, {"text": "light", "start": 541, "end": 546, "id": 95, "annotation": null}, {"text": "-", "start": 547, "end": 548, "id": 96, "annotation": null}, {"text": "induced", "start": 549, "end": 556, "id": 97, "annotation": null}, {"text": "scattering", "start": 557, "end": 567, "id": 98, "annotation": null}, {"text": "was", "start": 568, "end": 571, "id": 99, "annotation": null}, {"text": "improved", "start": 572, "end": 580, "id": 100, "annotation": null}, {"text": "considerably", "start": 581, "end": 593, "id": 101, "annotation": null}, {"text": "with", "start": 594, "end": 598, "id": 102, "annotation": null}, {"text": "the", "start": 599, "end": 602, "id": 103, "annotation": null}, {"text": "increase", "start": 603, "end": 611, "id": 104, "annotation": null}, {"text": "in", "start": 612, "end": 614, "id": 105, "annotation": null}, {"text": "concentration", "start": 615, "end": 628, "id": 106, "annotation": null}, {"text": "of", "start": 629, "end": 631, "id": 107, "annotation": null}, {"text": "Hf4", "start": 632, "end": 635, "id": 108, "annotation": "DOPANT"}, {"text": "+", "start": 636, "end": 637, "id": 109, "annotation": "DOPANT"}, {"text": ",", "start": 638, "end": 639, "id": 110, "annotation": null}, {"text": "however", "start": 640, "end": 647, "id": 111, "annotation": null}, {"text": ",", "start": 648, "end": 649, "id": 112, "annotation": null}, {"text": "light", "start": 650, "end": 655, "id": 113, "annotation": null}, {"text": "-", "start": 656, "end": 657, "id": 114, "annotation": null}, {"text": "induced", "start": 658, "end": 665, "id": 115, "annotation": null}, {"text": "scattering", "start": 666, "end": 676, "id": 116, "annotation": null}, {"text": "resistance", "start": 677, "end": 687, "id": 117, "annotation": null}, {"text": "ability", "start": 688, "end": 695, "id": 118, "annotation": null}, {"text": "weakened", "start": 696, "end": 704, "id": 119, "annotation": null}, {"text": "as", "start": 705, "end": 707, "id": 120, "annotation": null}, {"text": "the", "start": 708, "end": 711, "id": 121, "annotation": null}, {"text": "concentration", "start": 712, "end": 725, "id": 122, "annotation": null}, {"text": "of", "start": 726, "end": 728, "id": 123, "annotation": null}, {"text": "Hf4", "start": 729, "end": 732, "id": 124, "annotation": "DOPANT"}, {"text": "+", "start": 733, "end": 734, "id": 125, "annotation": "DOPANT"}, {"text": "surpasses", "start": 735, "end": 744, "id": 126, "annotation": null}, {"text": "the", "start": 745, "end": 748, "id": 127, "annotation": null}, {"text": "concentration", "start": 749, "end": 762, "id": 128, "annotation": null}, {"text": "to", "start": 763, "end": 765, "id": 129, "annotation": null}, {"text": "8mol%", "start": 766, "end": 771, "id": 130, "annotation": "DOPMODQ"}, {"text": ".", "start": 772, "end": 773, "id": 131, "annotation": null}], [{"text": "The", "start": 774, "end": 777, "id": 132, "annotation": null}, {"text": "relationship", "start": 778, "end": 790, "id": 133, "annotation": null}, {"text": "between", "start": 791, "end": 798, "id": 134, "annotation": null}, {"text": "the", "start": 799, "end": 802, "id": 135, "annotation": null}, {"text": "defect", "start": 803, "end": 809, "id": 136, "annotation": null}, {"text": "structures", "start": 810, "end": 820, "id": 137, "annotation": null}, {"text": "and", "start": 821, "end": 824, "id": 138, "annotation": null}, {"text": "the", "start": 825, "end": 828, "id": 139, "annotation": null}, {"text": "light", "start": 829, "end": 834, "id": 140, "annotation": null}, {"text": "-", "start": 835, "end": 836, "id": 141, "annotation": null}, {"text": "induced", "start": 837, "end": 844, "id": 142, "annotation": null}, {"text": "scattering", "start": 845, "end": 855, "id": 143, "annotation": null}, {"text": "was", "start": 856, "end": 859, "id": 144, "annotation": null}, {"text": "discussed", "start": 860, "end": 869, "id": 145, "annotation": null}, {"text": ".", "start": 870, "end": 871, "id": 146, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "The electrocatalytic activity of nitrogen-doped carbons towards the oxygen reduction reaction is largely determined by the concentration of active nitrogen dopants and the electrochemically accessible surface area. Herein we report a novel, facile route for the preparation of N-doped carbons based on direct pyrolysis of polypyrrole nanosheet precursors synthesized by confining the polymerization on the surface of NaCl crystals using FeCl3 as both the initiator and dopant. In the heating-up process of pyrolysis, a large amount of homogeneously distributed FeCl3 dopant and its derivatives gradually evolved into volatile nanoparticles which helped to generate abundant hierarchical macro- and meso-pores, resulting in honeycomb-like porous carbons with a high content of nitrogen dopants ranging from 7 to 18 at%, a large surface area, and an ORR activity superior to that of commercial Pt/C in alkaline electrolytes. Significantly, by using the best sample that was prepared at 800 \u00b0C (HPC-800) as the air electrode, a Zn\u2013air battery was found to display a specific capacity of 647 mA h g\u22121 at 10 mA cm\u22122 and a negligible loss of voltage even after continuous operation for 110 h, a performance markedly better than that with Pt/C as the air cathode. The results not only highlight the significance of precursor engineering in the synthesis of highly efficient nitrogen-doped carbon catalysts for oxygen electroreduction, but also suggest the high potential of the interfacially confined polymerization method in the scalable preparation of cost-effective, highly porous carbons for electrochemical energy storage and conversion devices.", "meta": {"doi": "10.1039/C6TA03570A"}, "_input_hash": -1108979612, "_task_hash": 339191698, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "electrocatalytic", "start": 4, "end": 20, "id": 1, "annotation": null}, {"text": "activity", "start": 21, "end": 29, "id": 2, "annotation": null}, {"text": "of", "start": 30, "end": 32, "id": 3, "annotation": null}, {"text": "nitrogen", "start": 33, "end": 41, "id": 4, "annotation": "DOPANT"}, {"text": "-", "start": 42, "end": 43, "id": 5, "annotation": null}, {"text": "doped", "start": 44, "end": 49, "id": 6, "annotation": null}, {"text": "carbons", "start": 50, "end": 57, "id": 7, "annotation": "BASEMAT"}, {"text": "towards", "start": 58, "end": 65, "id": 8, "annotation": null}, {"text": "the", "start": 66, "end": 69, "id": 9, "annotation": null}, {"text": "oxygen", "start": 70, "end": 76, "id": 10, "annotation": null}, {"text": "reduction", "start": 77, "end": 86, "id": 11, "annotation": null}, {"text": "reaction", "start": 87, "end": 95, "id": 12, "annotation": null}, {"text": "is", "start": 96, "end": 98, "id": 13, "annotation": null}, {"text": "largely", "start": 99, "end": 106, "id": 14, "annotation": null}, {"text": "determined", "start": 107, "end": 117, "id": 15, "annotation": null}, {"text": "by", "start": 118, "end": 120, "id": 16, "annotation": null}, {"text": "the", "start": 121, "end": 124, "id": 17, "annotation": null}, {"text": "concentration", "start": 125, "end": 138, "id": 18, "annotation": null}, {"text": "of", "start": 139, "end": 141, "id": 19, "annotation": null}, {"text": "active", "start": 142, "end": 148, "id": 20, "annotation": null}, {"text": "nitrogen", "start": 149, "end": 157, "id": 21, "annotation": "DOPANT"}, {"text": "dopants", "start": 158, "end": 165, "id": 22, "annotation": null}, {"text": "and", "start": 166, "end": 169, "id": 23, "annotation": null}, {"text": "the", "start": 170, "end": 173, "id": 24, "annotation": null}, {"text": "electrochemically", "start": 174, "end": 191, "id": 25, "annotation": null}, {"text": "accessible", "start": 192, "end": 202, "id": 26, "annotation": null}, {"text": "surface", "start": 203, "end": 210, "id": 27, "annotation": null}, {"text": "area", "start": 211, "end": 215, "id": 28, "annotation": null}, {"text": ".", "start": 216, "end": 217, "id": 29, "annotation": null}], [{"text": "Herein", "start": 218, "end": 224, "id": 30, "annotation": null}, {"text": "we", "start": 225, "end": 227, "id": 31, "annotation": null}, {"text": "report", "start": 228, "end": 234, "id": 32, "annotation": null}, {"text": "a", "start": 235, "end": 236, "id": 33, "annotation": null}, {"text": "novel", "start": 237, "end": 242, "id": 34, "annotation": null}, {"text": ",", "start": 243, "end": 244, "id": 35, "annotation": null}, {"text": "facile", "start": 245, "end": 251, "id": 36, "annotation": null}, {"text": "route", "start": 252, "end": 257, "id": 37, "annotation": null}, {"text": "for", "start": 258, "end": 261, "id": 38, "annotation": null}, {"text": "the", "start": 262, "end": 265, "id": 39, "annotation": null}, {"text": "preparation", "start": 266, "end": 277, "id": 40, "annotation": null}, {"text": "of", "start": 278, "end": 280, "id": 41, "annotation": null}, {"text": "N", "start": 281, "end": 282, "id": 42, "annotation": "DOPANT"}, {"text": "-", "start": 283, "end": 284, "id": 43, "annotation": null}, {"text": "doped", "start": 285, "end": 290, "id": 44, "annotation": null}, {"text": "carbons", "start": 291, "end": 298, "id": 45, "annotation": "BASEMAT"}, {"text": "based", "start": 299, "end": 304, "id": 46, "annotation": null}, {"text": "on", "start": 305, "end": 307, "id": 47, "annotation": null}, {"text": "direct", "start": 308, "end": 314, "id": 48, "annotation": null}, {"text": "pyrolysis", "start": 315, "end": 324, "id": 49, "annotation": null}, {"text": "of", "start": 325, "end": 327, "id": 50, "annotation": null}, {"text": "polypyrrole", "start": 328, "end": 339, "id": 51, "annotation": null}, {"text": "nanosheet", "start": 340, "end": 349, "id": 52, "annotation": null}, {"text": "precursors", "start": 350, "end": 360, "id": 53, "annotation": null}, {"text": "synthesized", "start": 361, "end": 372, "id": 54, "annotation": null}, {"text": "by", "start": 373, "end": 375, "id": 55, "annotation": null}, {"text": "confining", "start": 376, "end": 385, "id": 56, "annotation": null}, {"text": "the", "start": 386, "end": 389, "id": 57, "annotation": null}, {"text": "polymerization", "start": 390, "end": 404, "id": 58, "annotation": null}, {"text": "on", "start": 405, "end": 407, "id": 59, "annotation": null}, {"text": "the", "start": 408, "end": 411, "id": 60, "annotation": null}, {"text": "surface", "start": 412, "end": 419, "id": 61, "annotation": null}, {"text": "of", "start": 420, "end": 422, "id": 62, "annotation": null}, {"text": "NaCl", "start": 423, "end": 427, "id": 63, "annotation": null}, {"text": "crystals", "start": 428, "end": 436, "id": 64, "annotation": null}, {"text": "using", "start": 437, "end": 442, "id": 65, "annotation": null}, {"text": "FeCl3", "start": 443, "end": 448, "id": 66, "annotation": "DOPANT"}, {"text": "as", "start": 449, "end": 451, "id": 67, "annotation": null}, {"text": "both", "start": 452, "end": 456, "id": 68, "annotation": null}, {"text": "the", "start": 457, "end": 460, "id": 69, "annotation": null}, {"text": "initiator", "start": 461, "end": 470, "id": 70, "annotation": null}, {"text": "and", "start": 471, "end": 474, "id": 71, "annotation": null}, {"text": "dopant", "start": 475, "end": 481, "id": 72, "annotation": null}, {"text": ".", "start": 482, "end": 483, "id": 73, "annotation": null}], [{"text": "In", "start": 484, "end": 486, "id": 74, "annotation": null}, {"text": "the", "start": 487, "end": 490, "id": 75, "annotation": null}, {"text": "heating", "start": 491, "end": 498, "id": 76, "annotation": null}, {"text": "-", "start": 499, "end": 500, "id": 77, "annotation": null}, {"text": "up", "start": 501, "end": 503, "id": 78, "annotation": null}, {"text": "process", "start": 504, "end": 511, "id": 79, "annotation": null}, {"text": "of", "start": 512, "end": 514, "id": 80, "annotation": null}, {"text": "pyrolysis", "start": 515, "end": 524, "id": 81, "annotation": null}, {"text": ",", "start": 525, "end": 526, "id": 82, "annotation": null}, {"text": "a", "start": 527, "end": 528, "id": 83, "annotation": null}, {"text": "large", "start": 529, "end": 534, "id": 84, "annotation": null}, {"text": "amount", "start": 535, "end": 541, "id": 85, "annotation": null}, {"text": "of", "start": 542, "end": 544, "id": 86, "annotation": null}, {"text": "homogeneously", "start": 545, "end": 558, "id": 87, "annotation": null}, {"text": "distributed", "start": 559, "end": 570, "id": 88, "annotation": null}, {"text": "FeCl3", "start": 571, "end": 576, "id": 89, "annotation": "DOPANT"}, {"text": "dopant", "start": 577, "end": 583, "id": 90, "annotation": null}, {"text": "and", "start": 584, "end": 587, "id": 91, "annotation": null}, {"text": "its", "start": 588, "end": 591, "id": 92, "annotation": null}, {"text": "derivatives", "start": 592, "end": 603, "id": 93, "annotation": null}, {"text": "gradually", "start": 604, "end": 613, "id": 94, "annotation": null}, {"text": "evolved", "start": 614, "end": 621, "id": 95, "annotation": null}, {"text": "into", "start": 622, "end": 626, "id": 96, "annotation": null}, {"text": "volatile", "start": 627, "end": 635, "id": 97, "annotation": null}, {"text": "nanoparticles", "start": 636, "end": 649, "id": 98, "annotation": null}, {"text": "which", "start": 650, "end": 655, "id": 99, "annotation": null}, {"text": "helped", "start": 656, "end": 662, "id": 100, "annotation": null}, {"text": "to", "start": 663, "end": 665, "id": 101, "annotation": null}, {"text": "generate", "start": 666, "end": 674, "id": 102, "annotation": null}, {"text": "abundant", "start": 675, "end": 683, "id": 103, "annotation": null}, {"text": "hierarchical", "start": 684, "end": 696, "id": 104, "annotation": null}, {"text": "macro-", "start": 697, "end": 703, "id": 105, "annotation": null}, {"text": "and", "start": 704, "end": 707, "id": 106, "annotation": null}, {"text": "meso", "start": 708, "end": 712, "id": 107, "annotation": null}, {"text": "-", "start": 713, "end": 714, "id": 108, "annotation": null}, {"text": "pores", "start": 715, "end": 720, "id": 109, "annotation": null}, {"text": ",", "start": 721, "end": 722, "id": 110, "annotation": null}, {"text": "resulting", "start": 723, "end": 732, "id": 111, "annotation": null}, {"text": "in", "start": 733, "end": 735, "id": 112, "annotation": null}, {"text": "honeycomb", "start": 736, "end": 745, "id": 113, "annotation": null}, {"text": "-", "start": 746, "end": 747, "id": 114, "annotation": null}, {"text": "like", "start": 748, "end": 752, "id": 115, "annotation": null}, {"text": "porous", "start": 753, "end": 759, "id": 116, "annotation": null}, {"text": "carbons", "start": 760, "end": 767, "id": 117, "annotation": null}, {"text": "with", "start": 768, "end": 772, "id": 118, "annotation": null}, {"text": "a", "start": 773, "end": 774, "id": 119, "annotation": null}, {"text": "high", "start": 775, "end": 779, "id": 120, "annotation": null}, {"text": "content", "start": 780, "end": 787, "id": 121, "annotation": null}, {"text": "of", "start": 788, "end": 790, "id": 122, "annotation": null}, {"text": "nitrogen", "start": 791, "end": 799, "id": 123, "annotation": "DOPANT"}, {"text": "dopants", "start": 800, "end": 807, "id": 124, "annotation": null}, {"text": "ranging", "start": 808, "end": 815, "id": 125, "annotation": null}, {"text": "from", "start": 816, "end": 820, "id": 126, "annotation": null}, {"text": "7", "start": 821, "end": 822, "id": 127, "annotation": "DOPMODQ"}, {"text": "to", "start": 823, "end": 825, "id": 128, "annotation": null}, {"text": "18", "start": 826, "end": 828, "id": 129, "annotation": null}, {"text": "at%", "start": 829, "end": 832, "id": 130, "annotation": "DOPMODQ"}, {"text": ",", "start": 833, "end": 834, "id": 131, "annotation": null}, {"text": "a", "start": 835, "end": 836, "id": 132, "annotation": null}, {"text": "large", "start": 837, "end": 842, "id": 133, "annotation": null}, {"text": "surface", "start": 843, "end": 850, "id": 134, "annotation": null}, {"text": "area", "start": 851, "end": 855, "id": 135, "annotation": null}, {"text": ",", "start": 856, "end": 857, "id": 136, "annotation": null}, {"text": "and", "start": 858, "end": 861, "id": 137, "annotation": null}, {"text": "an", "start": 862, "end": 864, "id": 138, "annotation": null}, {"text": "ORR", "start": 865, "end": 868, "id": 139, "annotation": null}, {"text": "activity", "start": 869, "end": 877, "id": 140, "annotation": null}, {"text": "superior", "start": 878, "end": 886, "id": 141, "annotation": null}, {"text": "to", "start": 887, "end": 889, "id": 142, "annotation": null}, {"text": "that", "start": 890, "end": 894, "id": 143, "annotation": null}, {"text": "of", "start": 895, "end": 897, "id": 144, "annotation": null}, {"text": "commercial", "start": 898, "end": 908, "id": 145, "annotation": null}, {"text": "Pt", "start": 909, "end": 911, "id": 146, "annotation": null}, {"text": "/", "start": 912, "end": 913, "id": 147, "annotation": null}, {"text": "C", "start": 914, "end": 915, "id": 148, "annotation": null}, {"text": "in", "start": 916, "end": 918, "id": 149, "annotation": null}, {"text": "alkaline", "start": 919, "end": 927, "id": 150, "annotation": null}, {"text": "electrolytes", "start": 928, "end": 940, "id": 151, "annotation": null}, {"text": ".", "start": 941, "end": 942, "id": 152, "annotation": null}], [{"text": "Significantly", "start": 943, "end": 956, "id": 153, "annotation": null}, {"text": ",", "start": 957, "end": 958, "id": 154, "annotation": null}, {"text": "by", "start": 959, "end": 961, "id": 155, "annotation": null}, {"text": "using", "start": 962, "end": 967, "id": 156, "annotation": null}, {"text": "the", "start": 968, "end": 971, "id": 157, "annotation": null}, {"text": "best", "start": 972, "end": 976, "id": 158, "annotation": null}, {"text": "sample", "start": 977, "end": 983, "id": 159, "annotation": null}, {"text": "that", "start": 984, "end": 988, "id": 160, "annotation": null}, {"text": "was", "start": 989, "end": 992, "id": 161, "annotation": null}, {"text": "prepared", "start": 993, "end": 1001, "id": 162, "annotation": null}, {"text": "at", "start": 1002, "end": 1004, "id": 163, "annotation": null}, {"text": "800", "start": 1005, "end": 1008, "id": 164, "annotation": null}, {"text": "\u00b0", "start": 1009, "end": 1010, "id": 165, "annotation": null}, {"text": "C", "start": 1011, "end": 1012, "id": 166, "annotation": null}, {"text": "(", "start": 1013, "end": 1014, "id": 167, "annotation": null}, {"text": "HPC-800", "start": 1015, "end": 1022, "id": 168, "annotation": null}, {"text": ")", "start": 1023, "end": 1024, "id": 169, "annotation": null}, {"text": "as", "start": 1025, "end": 1027, "id": 170, "annotation": null}, {"text": "the", "start": 1028, "end": 1031, "id": 171, "annotation": null}, {"text": "air", "start": 1032, "end": 1035, "id": 172, "annotation": null}, {"text": "electrode", "start": 1036, "end": 1045, "id": 173, "annotation": null}, {"text": ",", "start": 1046, "end": 1047, "id": 174, "annotation": null}, {"text": "a", "start": 1048, "end": 1049, "id": 175, "annotation": null}, {"text": "Zn", "start": 1050, "end": 1052, "id": 176, "annotation": null}, {"text": "\u2013", "start": 1053, "end": 1054, "id": 177, "annotation": null}, {"text": "air", "start": 1055, "end": 1058, "id": 178, "annotation": null}, {"text": "battery", "start": 1059, "end": 1066, "id": 179, "annotation": null}, {"text": "was", "start": 1067, "end": 1070, "id": 180, "annotation": null}, {"text": "found", "start": 1071, "end": 1076, "id": 181, "annotation": null}, {"text": "to", "start": 1077, "end": 1079, "id": 182, "annotation": null}, {"text": "display", "start": 1080, "end": 1087, "id": 183, "annotation": null}, {"text": "a", "start": 1088, "end": 1089, "id": 184, "annotation": null}, {"text": "specific", "start": 1090, "end": 1098, "id": 185, "annotation": null}, {"text": "capacity", "start": 1099, "end": 1107, "id": 186, "annotation": null}, {"text": "of", "start": 1108, "end": 1110, "id": 187, "annotation": null}, {"text": "647", "start": 1111, "end": 1114, "id": 188, "annotation": null}, {"text": "mA", "start": 1115, "end": 1117, "id": 189, "annotation": null}, {"text": "h", "start": 1118, "end": 1119, "id": 190, "annotation": null}, {"text": "g\u22121", "start": 1120, "end": 1123, "id": 191, "annotation": null}, {"text": "at", "start": 1124, "end": 1126, "id": 192, "annotation": null}, {"text": "10", "start": 1127, "end": 1129, "id": 193, "annotation": null}, {"text": "mA", "start": 1130, "end": 1132, "id": 194, "annotation": null}, {"text": "cm\u22122", "start": 1133, "end": 1137, "id": 195, "annotation": null}, {"text": "and", "start": 1138, "end": 1141, "id": 196, "annotation": null}, {"text": "a", "start": 1142, "end": 1143, "id": 197, "annotation": null}, {"text": "negligible", "start": 1144, "end": 1154, "id": 198, "annotation": null}, {"text": "loss", "start": 1155, "end": 1159, "id": 199, "annotation": null}, {"text": "of", "start": 1160, "end": 1162, "id": 200, "annotation": null}, {"text": "voltage", "start": 1163, "end": 1170, "id": 201, "annotation": null}, {"text": "even", "start": 1171, "end": 1175, "id": 202, "annotation": null}, {"text": "after", "start": 1176, "end": 1181, "id": 203, "annotation": null}, {"text": "continuous", "start": 1182, "end": 1192, "id": 204, "annotation": null}, {"text": "operation", "start": 1193, "end": 1202, "id": 205, "annotation": null}, {"text": "for", "start": 1203, "end": 1206, "id": 206, "annotation": null}, {"text": "110", "start": 1207, "end": 1210, "id": 207, "annotation": null}, {"text": "h", "start": 1211, "end": 1212, "id": 208, "annotation": null}, {"text": ",", "start": 1213, "end": 1214, "id": 209, "annotation": null}, {"text": "a", "start": 1215, "end": 1216, "id": 210, "annotation": null}, {"text": "performance", "start": 1217, "end": 1228, "id": 211, "annotation": null}, {"text": "markedly", "start": 1229, "end": 1237, "id": 212, "annotation": null}, {"text": "better", "start": 1238, "end": 1244, "id": 213, "annotation": null}, {"text": "than", "start": 1245, "end": 1249, "id": 214, "annotation": null}, {"text": "that", "start": 1250, "end": 1254, "id": 215, "annotation": null}, {"text": "with", "start": 1255, "end": 1259, "id": 216, "annotation": null}, {"text": "Pt", "start": 1260, "end": 1262, "id": 217, "annotation": null}, {"text": "/", "start": 1263, "end": 1264, "id": 218, "annotation": null}, {"text": "C", "start": 1265, "end": 1266, "id": 219, "annotation": null}, {"text": "as", "start": 1267, "end": 1269, "id": 220, "annotation": null}, {"text": "the", "start": 1270, "end": 1273, "id": 221, "annotation": null}, {"text": "air", "start": 1274, "end": 1277, "id": 222, "annotation": null}, {"text": "cathode", "start": 1278, "end": 1285, "id": 223, "annotation": null}, {"text": ".", "start": 1286, "end": 1287, "id": 224, "annotation": null}], [{"text": "The", "start": 1288, "end": 1291, "id": 225, "annotation": null}, {"text": "results", "start": 1292, "end": 1299, "id": 226, "annotation": null}, {"text": "not", "start": 1300, "end": 1303, "id": 227, "annotation": null}, {"text": "only", "start": 1304, "end": 1308, "id": 228, "annotation": null}, {"text": "highlight", "start": 1309, "end": 1318, "id": 229, "annotation": null}, {"text": "the", "start": 1319, "end": 1322, "id": 230, "annotation": null}, {"text": "significance", "start": 1323, "end": 1335, "id": 231, "annotation": null}, {"text": "of", "start": 1336, "end": 1338, "id": 232, "annotation": null}, {"text": "precursor", "start": 1339, "end": 1348, "id": 233, "annotation": null}, {"text": "engineering", "start": 1349, "end": 1360, "id": 234, "annotation": null}, {"text": "in", "start": 1361, "end": 1363, "id": 235, "annotation": null}, {"text": "the", "start": 1364, "end": 1367, "id": 236, "annotation": null}, {"text": "synthesis", "start": 1368, "end": 1377, "id": 237, "annotation": null}, {"text": "of", "start": 1378, "end": 1380, "id": 238, "annotation": null}, {"text": "highly", "start": 1381, "end": 1387, "id": 239, "annotation": null}, {"text": "efficient", "start": 1388, "end": 1397, "id": 240, "annotation": null}, {"text": "nitrogen", "start": 1398, "end": 1406, "id": 241, "annotation": "DOPANT"}, {"text": "-", "start": 1407, "end": 1408, "id": 242, "annotation": null}, {"text": "doped", "start": 1409, "end": 1414, "id": 243, "annotation": null}, {"text": "carbon", "start": 1415, "end": 1421, "id": 244, "annotation": "BASEMAT"}, {"text": "catalysts", "start": 1422, "end": 1431, "id": 245, "annotation": null}, {"text": "for", "start": 1432, "end": 1435, "id": 246, "annotation": null}, {"text": "oxygen", "start": 1436, "end": 1442, "id": 247, "annotation": null}, {"text": "electroreduction", "start": 1443, "end": 1459, "id": 248, "annotation": null}, {"text": ",", "start": 1460, "end": 1461, "id": 249, "annotation": null}, {"text": "but", "start": 1462, "end": 1465, "id": 250, "annotation": null}, {"text": "also", "start": 1466, "end": 1470, "id": 251, "annotation": null}, {"text": "suggest", "start": 1471, "end": 1478, "id": 252, "annotation": null}, {"text": "the", "start": 1479, "end": 1482, "id": 253, "annotation": null}, {"text": "high", "start": 1483, "end": 1487, "id": 254, "annotation": null}, {"text": "potential", "start": 1488, "end": 1497, "id": 255, "annotation": null}, {"text": "of", "start": 1498, "end": 1500, "id": 256, "annotation": null}, {"text": "the", "start": 1501, "end": 1504, "id": 257, "annotation": null}, {"text": "interfacially", "start": 1505, "end": 1518, "id": 258, "annotation": null}, {"text": "confined", "start": 1519, "end": 1527, "id": 259, "annotation": null}, {"text": "polymerization", "start": 1528, "end": 1542, "id": 260, "annotation": null}, {"text": "method", "start": 1543, "end": 1549, "id": 261, "annotation": null}, {"text": "in", "start": 1550, "end": 1552, "id": 262, "annotation": null}, {"text": "the", "start": 1553, "end": 1556, "id": 263, "annotation": null}, {"text": "scalable", "start": 1557, "end": 1565, "id": 264, "annotation": null}, {"text": "preparation", "start": 1566, "end": 1577, "id": 265, "annotation": null}, {"text": "of", "start": 1578, "end": 1580, "id": 266, "annotation": null}, {"text": "cost", "start": 1581, "end": 1585, "id": 267, "annotation": null}, {"text": "-", "start": 1586, "end": 1587, "id": 268, "annotation": null}, {"text": "effective", "start": 1588, "end": 1597, "id": 269, "annotation": null}, {"text": ",", "start": 1598, "end": 1599, "id": 270, "annotation": null}, {"text": "highly", "start": 1600, "end": 1606, "id": 271, "annotation": null}, {"text": "porous", "start": 1607, "end": 1613, "id": 272, "annotation": null}, {"text": "carbons", "start": 1614, "end": 1621, "id": 273, "annotation": null}, {"text": "for", "start": 1622, "end": 1625, "id": 274, "annotation": null}, {"text": "electrochemical", "start": 1626, "end": 1641, "id": 275, "annotation": null}, {"text": "energy", "start": 1642, "end": 1648, "id": 276, "annotation": null}, {"text": "storage", "start": 1649, "end": 1656, "id": 277, "annotation": null}, {"text": "and", "start": 1657, "end": 1660, "id": 278, "annotation": null}, {"text": "conversion", "start": 1661, "end": 1671, "id": 279, "annotation": null}, {"text": "devices", "start": 1672, "end": 1679, "id": 280, "annotation": null}, {"text": ".", "start": 1680, "end": 1681, "id": 281, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "In this work, we report the high temperature solid-state synthesis of red phosphors Sr2MgSi2O7: Eu3+ with various Eu3+ concentrations. Their luminescent properties at room temperature are investigated. The X-ray diffraction patterns indicate that the red phosphors powder conforms to the tetragonal Sr2MgSi2O7. Impurity structure appears when more than 20% Eu3+ is doped. The samples show a strong emission line at 615nm and the intensity increases with the increase of Eu3+ concentration until concentration quenching occurs. Charge compensation assists in the reduction of the impurity structure and vacancies; hence the luminescent intensity is enhanced. The decay measurement indicates that the lifetime of Eu3+ emission is about 2\u20133ms. Some of the Eu3+ can be reduced to Eu2+; this is also discussed.", "meta": {"doi": "10.1016/j.optlastec.2011.02.006"}, "_input_hash": -602082859, "_task_hash": -1213916914, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "work", "start": 8, "end": 12, "id": 2, "annotation": null}, {"text": ",", "start": 13, "end": 14, "id": 3, "annotation": null}, {"text": "we", "start": 15, "end": 17, "id": 4, "annotation": null}, {"text": "report", "start": 18, "end": 24, "id": 5, "annotation": null}, {"text": "the", "start": 25, "end": 28, "id": 6, "annotation": null}, {"text": "high", "start": 29, "end": 33, "id": 7, "annotation": null}, {"text": "temperature", "start": 34, "end": 45, "id": 8, "annotation": null}, {"text": "solid", "start": 46, "end": 51, "id": 9, "annotation": null}, {"text": "-", "start": 52, "end": 53, "id": 10, "annotation": null}, {"text": "state", "start": 54, "end": 59, "id": 11, "annotation": null}, {"text": "synthesis", "start": 60, "end": 69, "id": 12, "annotation": null}, {"text": "of", "start": 70, "end": 72, "id": 13, "annotation": null}, {"text": "red", "start": 73, "end": 76, "id": 14, "annotation": null}, {"text": "phosphors", "start": 77, "end": 86, "id": 15, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 87, "end": 97, "id": 16, "annotation": "BASEMAT"}, {"text": ":", "start": 98, "end": 99, "id": 17, "annotation": null}, {"text": "Eu3", "start": 100, "end": 103, "id": 18, "annotation": "DOPANT"}, {"text": "+", "start": 104, "end": 105, "id": 19, "annotation": "DOPANT"}, {"text": "with", "start": 106, "end": 110, "id": 20, "annotation": null}, {"text": "various", "start": 111, "end": 118, "id": 21, "annotation": null}, {"text": "Eu3", "start": 119, "end": 122, "id": 22, "annotation": "DOPANT"}, {"text": "+", "start": 123, "end": 124, "id": 23, "annotation": "DOPANT"}, {"text": "concentrations", "start": 125, "end": 139, "id": 24, "annotation": null}, {"text": ".", "start": 140, "end": 141, "id": 25, "annotation": null}], [{"text": "Their", "start": 142, "end": 147, "id": 26, "annotation": null}, {"text": "luminescent", "start": 148, "end": 159, "id": 27, "annotation": null}, {"text": "properties", "start": 160, "end": 170, "id": 28, "annotation": null}, {"text": "at", "start": 171, "end": 173, "id": 29, "annotation": null}, {"text": "room", "start": 174, "end": 178, "id": 30, "annotation": null}, {"text": "temperature", "start": 179, "end": 190, "id": 31, "annotation": null}, {"text": "are", "start": 191, "end": 194, "id": 32, "annotation": null}, {"text": "investigated", "start": 195, "end": 207, "id": 33, "annotation": null}, {"text": ".", "start": 208, "end": 209, "id": 34, "annotation": null}], [{"text": "The", "start": 210, "end": 213, "id": 35, "annotation": null}, {"text": "X", "start": 214, "end": 215, "id": 36, "annotation": null}, {"text": "-", "start": 216, "end": 217, "id": 37, "annotation": null}, {"text": "ray", "start": 218, "end": 221, "id": 38, "annotation": null}, {"text": "diffraction", "start": 222, "end": 233, "id": 39, "annotation": null}, {"text": "patterns", "start": 234, "end": 242, "id": 40, "annotation": null}, {"text": "indicate", "start": 243, "end": 251, "id": 41, "annotation": null}, {"text": "that", "start": 252, "end": 256, "id": 42, "annotation": null}, {"text": "the", "start": 257, "end": 260, "id": 43, "annotation": null}, {"text": "red", "start": 261, "end": 264, "id": 44, "annotation": null}, {"text": "phosphors", "start": 265, "end": 274, "id": 45, "annotation": null}, {"text": "powder", "start": 275, "end": 281, "id": 46, "annotation": null}, {"text": "conforms", "start": 282, "end": 290, "id": 47, "annotation": null}, {"text": "to", "start": 291, "end": 293, "id": 48, "annotation": null}, {"text": "the", "start": 294, "end": 297, "id": 49, "annotation": null}, {"text": "tetragonal", "start": 298, "end": 308, "id": 50, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 309, "end": 319, "id": 51, "annotation": null}, {"text": ".", "start": 320, "end": 321, "id": 52, "annotation": null}], [{"text": "Impurity", "start": 322, "end": 330, "id": 53, "annotation": null}, {"text": "structure", "start": 331, "end": 340, "id": 54, "annotation": null}, {"text": "appears", "start": 341, "end": 348, "id": 55, "annotation": null}, {"text": "when", "start": 349, "end": 353, "id": 56, "annotation": null}, {"text": "more", "start": 354, "end": 358, "id": 57, "annotation": "DOPMODQ"}, {"text": "than", "start": 359, "end": 363, "id": 58, "annotation": null}, {"text": "20", "start": 364, "end": 366, "id": 59, "annotation": null}, {"text": "%", "start": 367, "end": 368, "id": 60, "annotation": "DOPMODQ"}, {"text": "Eu3", "start": 369, "end": 372, "id": 61, "annotation": "DOPANT"}, {"text": "+", "start": 373, "end": 374, "id": 62, "annotation": "DOPANT"}, {"text": "is", "start": 375, "end": 377, "id": 63, "annotation": null}, {"text": "doped", "start": 378, "end": 383, "id": 64, "annotation": null}, {"text": ".", "start": 384, "end": 385, "id": 65, "annotation": null}], [{"text": "The", "start": 386, "end": 389, "id": 66, "annotation": null}, {"text": "samples", "start": 390, "end": 397, "id": 67, "annotation": null}, {"text": "show", "start": 398, "end": 402, "id": 68, "annotation": null}, {"text": "a", "start": 403, "end": 404, "id": 69, "annotation": null}, {"text": "strong", "start": 405, "end": 411, "id": 70, "annotation": null}, {"text": "emission", "start": 412, "end": 420, "id": 71, "annotation": null}, {"text": "line", "start": 421, "end": 425, "id": 72, "annotation": null}, {"text": "at", "start": 426, "end": 428, "id": 73, "annotation": null}, {"text": "615", "start": 429, "end": 432, "id": 74, "annotation": null}, {"text": "nm", "start": 433, "end": 435, "id": 75, "annotation": null}, {"text": "and", "start": 436, "end": 439, "id": 76, "annotation": null}, {"text": "the", "start": 440, "end": 443, "id": 77, "annotation": null}, {"text": "intensity", "start": 444, "end": 453, "id": 78, "annotation": null}, {"text": "increases", "start": 454, "end": 463, "id": 79, "annotation": null}, {"text": "with", "start": 464, "end": 468, "id": 80, "annotation": null}, {"text": "the", "start": 469, "end": 472, "id": 81, "annotation": null}, {"text": "increase", "start": 473, "end": 481, "id": 82, "annotation": null}, {"text": "of", "start": 482, "end": 484, "id": 83, "annotation": null}, {"text": "Eu3", "start": 485, "end": 488, "id": 84, "annotation": null}, {"text": "+", "start": 489, "end": 490, "id": 85, "annotation": null}, {"text": "concentration", "start": 491, "end": 504, "id": 86, "annotation": null}, {"text": "until", "start": 505, "end": 510, "id": 87, "annotation": null}, {"text": "concentration", "start": 511, "end": 524, "id": 88, "annotation": null}, {"text": "quenching", "start": 525, "end": 534, "id": 89, "annotation": null}, {"text": "occurs", "start": 535, "end": 541, "id": 90, "annotation": null}, {"text": ".", "start": 542, "end": 543, "id": 91, "annotation": null}], [{"text": "Charge", "start": 544, "end": 550, "id": 92, "annotation": null}, {"text": "compensation", "start": 551, "end": 563, "id": 93, "annotation": null}, {"text": "assists", "start": 564, "end": 571, "id": 94, "annotation": null}, {"text": "in", "start": 572, "end": 574, "id": 95, "annotation": null}, {"text": "the", "start": 575, "end": 578, "id": 96, "annotation": null}, {"text": "reduction", "start": 579, "end": 588, "id": 97, "annotation": null}, {"text": "of", "start": 589, "end": 591, "id": 98, "annotation": null}, {"text": "the", "start": 592, "end": 595, "id": 99, "annotation": null}, {"text": "impurity", "start": 596, "end": 604, "id": 100, "annotation": null}, {"text": "structure", "start": 605, "end": 614, "id": 101, "annotation": null}, {"text": "and", "start": 615, "end": 618, "id": 102, "annotation": null}, {"text": "vacancies", "start": 619, "end": 628, "id": 103, "annotation": null}, {"text": ";", "start": 629, "end": 630, "id": 104, "annotation": null}, {"text": "hence", "start": 631, "end": 636, "id": 105, "annotation": null}, {"text": "the", "start": 637, "end": 640, "id": 106, "annotation": null}, {"text": "luminescent", "start": 641, "end": 652, "id": 107, "annotation": null}, {"text": "intensity", "start": 653, "end": 662, "id": 108, "annotation": null}, {"text": "is", "start": 663, "end": 665, "id": 109, "annotation": null}, {"text": "enhanced", "start": 666, "end": 674, "id": 110, "annotation": null}, {"text": ".", "start": 675, "end": 676, "id": 111, "annotation": null}], [{"text": "The", "start": 677, "end": 680, "id": 112, "annotation": null}, {"text": "decay", "start": 681, "end": 686, "id": 113, "annotation": null}, {"text": "measurement", "start": 687, "end": 698, "id": 114, "annotation": null}, {"text": "indicates", "start": 699, "end": 708, "id": 115, "annotation": null}, {"text": "that", "start": 709, "end": 713, "id": 116, "annotation": null}, {"text": "the", "start": 714, "end": 717, "id": 117, "annotation": null}, {"text": "lifetime", "start": 718, "end": 726, "id": 118, "annotation": null}, {"text": "of", "start": 727, "end": 729, "id": 119, "annotation": null}, {"text": "Eu3", "start": 730, "end": 733, "id": 120, "annotation": null}, {"text": "+", "start": 734, "end": 735, "id": 121, "annotation": null}, {"text": "emission", "start": 736, "end": 744, "id": 122, "annotation": null}, {"text": "is", "start": 745, "end": 747, "id": 123, "annotation": null}, {"text": "about", "start": 748, "end": 753, "id": 124, "annotation": null}, {"text": "2\u20133ms", "start": 754, "end": 759, "id": 125, "annotation": null}, {"text": ".", "start": 760, "end": 761, "id": 126, "annotation": null}], [{"text": "Some", "start": 762, "end": 766, "id": 127, "annotation": null}, {"text": "of", "start": 767, "end": 769, "id": 128, "annotation": null}, {"text": "the", "start": 770, "end": 773, "id": 129, "annotation": null}, {"text": "Eu3", "start": 774, "end": 777, "id": 130, "annotation": null}, {"text": "+", "start": 778, "end": 779, "id": 131, "annotation": null}, {"text": "can", "start": 780, "end": 783, "id": 132, "annotation": null}, {"text": "be", "start": 784, "end": 786, "id": 133, "annotation": null}, {"text": "reduced", "start": 787, "end": 794, "id": 134, "annotation": null}, {"text": "to", "start": 795, "end": 797, "id": 135, "annotation": null}, {"text": "Eu2", "start": 798, "end": 801, "id": 136, "annotation": null}, {"text": "+", "start": 802, "end": 803, "id": 137, "annotation": null}, {"text": ";", "start": 804, "end": 805, "id": 138, "annotation": null}, {"text": "this", "start": 806, "end": 810, "id": 139, "annotation": null}, {"text": "is", "start": 811, "end": 813, "id": 140, "annotation": null}, {"text": "also", "start": 814, "end": 818, "id": 141, "annotation": null}, {"text": "discussed", "start": 819, "end": 828, "id": 142, "annotation": null}, {"text": ".", "start": 829, "end": 830, "id": 143, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "The electrocatalytic activity of nitrogen-doped carbons towards the oxygen reduction reaction is largely determined by the concentration of active nitrogen dopants and the electrochemically accessible surface area. Herein we report a novel, facile route for the preparation of N-doped carbons based on direct pyrolysis of polypyrrole nanosheet precursors synthesized by confining the polymerization on the surface of NaCl crystals using FeCl3 as both the initiator and dopant. In the heating-up process of pyrolysis, a large amount of homogeneously distributed FeCl3 dopant and its derivatives gradually evolved into volatile nanoparticles which helped to generate abundant hierarchical macro- and meso-pores, resulting in honeycomb-like porous carbons with a high content of nitrogen dopants ranging from 7 to 18 at%, a large surface area, and an ORR activity superior to that of commercial Pt/C in alkaline electrolytes. Significantly, by using the best sample that was prepared at 800 \u00b0C (HPC-800) as the air electrode, a Zn\u2013air battery was found to display a specific capacity of 647 mA h g\u22121 at 10 mA cm\u22122 and a negligible loss of voltage even after continuous operation for 110 h, a performance markedly better than that with Pt/C as the air cathode. The results not only highlight the significance of precursor engineering in the synthesis of highly efficient nitrogen-doped carbon catalysts for oxygen electroreduction, but also suggest the high potential of the interfacially confined polymerization method in the scalable preparation of cost-effective, highly porous carbons for electrochemical energy storage and conversion devices.", "meta": {"doi": "10.1039/C6TA03570A"}, "_input_hash": -1108979612, "_task_hash": 339191698, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "electrocatalytic", "start": 4, "end": 20, "id": 1, "annotation": null}, {"text": "activity", "start": 21, "end": 29, "id": 2, "annotation": null}, {"text": "of", "start": 30, "end": 32, "id": 3, "annotation": null}, {"text": "nitrogen", "start": 33, "end": 41, "id": 4, "annotation": "DOPANT"}, {"text": "-", "start": 42, "end": 43, "id": 5, "annotation": null}, {"text": "doped", "start": 44, "end": 49, "id": 6, "annotation": null}, {"text": "carbons", "start": 50, "end": 57, "id": 7, "annotation": "BASEMAT"}, {"text": "towards", "start": 58, "end": 65, "id": 8, "annotation": null}, {"text": "the", "start": 66, "end": 69, "id": 9, "annotation": null}, {"text": "oxygen", "start": 70, "end": 76, "id": 10, "annotation": null}, {"text": "reduction", "start": 77, "end": 86, "id": 11, "annotation": null}, {"text": "reaction", "start": 87, "end": 95, "id": 12, "annotation": null}, {"text": "is", "start": 96, "end": 98, "id": 13, "annotation": null}, {"text": "largely", "start": 99, "end": 106, "id": 14, "annotation": null}, {"text": "determined", "start": 107, "end": 117, "id": 15, "annotation": null}, {"text": "by", "start": 118, "end": 120, "id": 16, "annotation": null}, {"text": "the", "start": 121, "end": 124, "id": 17, "annotation": null}, {"text": "concentration", "start": 125, "end": 138, "id": 18, "annotation": null}, {"text": "of", "start": 139, "end": 141, "id": 19, "annotation": null}, {"text": "active", "start": 142, "end": 148, "id": 20, "annotation": null}, {"text": "nitrogen", "start": 149, "end": 157, "id": 21, "annotation": "DOPANT"}, {"text": "dopants", "start": 158, "end": 165, "id": 22, "annotation": null}, {"text": "and", "start": 166, "end": 169, "id": 23, "annotation": null}, {"text": "the", "start": 170, "end": 173, "id": 24, "annotation": null}, {"text": "electrochemically", "start": 174, "end": 191, "id": 25, "annotation": null}, {"text": "accessible", "start": 192, "end": 202, "id": 26, "annotation": null}, {"text": "surface", "start": 203, "end": 210, "id": 27, "annotation": null}, {"text": "area", "start": 211, "end": 215, "id": 28, "annotation": null}, {"text": ".", "start": 216, "end": 217, "id": 29, "annotation": null}], [{"text": "Herein", "start": 218, "end": 224, "id": 30, "annotation": null}, {"text": "we", "start": 225, "end": 227, "id": 31, "annotation": null}, {"text": "report", "start": 228, "end": 234, "id": 32, "annotation": null}, {"text": "a", "start": 235, "end": 236, "id": 33, "annotation": null}, {"text": "novel", "start": 237, "end": 242, "id": 34, "annotation": null}, {"text": ",", "start": 243, "end": 244, "id": 35, "annotation": null}, {"text": "facile", "start": 245, "end": 251, "id": 36, "annotation": null}, {"text": "route", "start": 252, "end": 257, "id": 37, "annotation": null}, {"text": "for", "start": 258, "end": 261, "id": 38, "annotation": null}, {"text": "the", "start": 262, "end": 265, "id": 39, "annotation": null}, {"text": "preparation", "start": 266, "end": 277, "id": 40, "annotation": null}, {"text": "of", "start": 278, "end": 280, "id": 41, "annotation": null}, {"text": "N", "start": 281, "end": 282, "id": 42, "annotation": "DOPANT"}, {"text": "-", "start": 283, "end": 284, "id": 43, "annotation": null}, {"text": "doped", "start": 285, "end": 290, "id": 44, "annotation": null}, {"text": "carbons", "start": 291, "end": 298, "id": 45, "annotation": "BASEMAT"}, {"text": "based", "start": 299, "end": 304, "id": 46, "annotation": null}, {"text": "on", "start": 305, "end": 307, "id": 47, "annotation": null}, {"text": "direct", "start": 308, "end": 314, "id": 48, "annotation": null}, {"text": "pyrolysis", "start": 315, "end": 324, "id": 49, "annotation": null}, {"text": "of", "start": 325, "end": 327, "id": 50, "annotation": null}, {"text": "polypyrrole", "start": 328, "end": 339, "id": 51, "annotation": null}, {"text": "nanosheet", "start": 340, "end": 349, "id": 52, "annotation": null}, {"text": "precursors", "start": 350, "end": 360, "id": 53, "annotation": null}, {"text": "synthesized", "start": 361, "end": 372, "id": 54, "annotation": null}, {"text": "by", "start": 373, "end": 375, "id": 55, "annotation": null}, {"text": "confining", "start": 376, "end": 385, "id": 56, "annotation": null}, {"text": "the", "start": 386, "end": 389, "id": 57, "annotation": null}, {"text": "polymerization", "start": 390, "end": 404, "id": 58, "annotation": null}, {"text": "on", "start": 405, "end": 407, "id": 59, "annotation": null}, {"text": "the", "start": 408, "end": 411, "id": 60, "annotation": null}, {"text": "surface", "start": 412, "end": 419, "id": 61, "annotation": null}, {"text": "of", "start": 420, "end": 422, "id": 62, "annotation": null}, {"text": "NaCl", "start": 423, "end": 427, "id": 63, "annotation": null}, {"text": "crystals", "start": 428, "end": 436, "id": 64, "annotation": null}, {"text": "using", "start": 437, "end": 442, "id": 65, "annotation": null}, {"text": "FeCl3", "start": 443, "end": 448, "id": 66, "annotation": "DOPANT"}, {"text": "as", "start": 449, "end": 451, "id": 67, "annotation": null}, {"text": "both", "start": 452, "end": 456, "id": 68, "annotation": null}, {"text": "the", "start": 457, "end": 460, "id": 69, "annotation": null}, {"text": "initiator", "start": 461, "end": 470, "id": 70, "annotation": null}, {"text": "and", "start": 471, "end": 474, "id": 71, "annotation": null}, {"text": "dopant", "start": 475, "end": 481, "id": 72, "annotation": null}, {"text": ".", "start": 482, "end": 483, "id": 73, "annotation": null}], [{"text": "In", "start": 484, "end": 486, "id": 74, "annotation": null}, {"text": "the", "start": 487, "end": 490, "id": 75, "annotation": null}, {"text": "heating", "start": 491, "end": 498, "id": 76, "annotation": null}, {"text": "-", "start": 499, "end": 500, "id": 77, "annotation": null}, {"text": "up", "start": 501, "end": 503, "id": 78, "annotation": null}, {"text": "process", "start": 504, "end": 511, "id": 79, "annotation": null}, {"text": "of", "start": 512, "end": 514, "id": 80, "annotation": null}, {"text": "pyrolysis", "start": 515, "end": 524, "id": 81, "annotation": null}, {"text": ",", "start": 525, "end": 526, "id": 82, "annotation": null}, {"text": "a", "start": 527, "end": 528, "id": 83, "annotation": null}, {"text": "large", "start": 529, "end": 534, "id": 84, "annotation": null}, {"text": "amount", "start": 535, "end": 541, "id": 85, "annotation": null}, {"text": "of", "start": 542, "end": 544, "id": 86, "annotation": null}, {"text": "homogeneously", "start": 545, "end": 558, "id": 87, "annotation": null}, {"text": "distributed", "start": 559, "end": 570, "id": 88, "annotation": null}, {"text": "FeCl3", "start": 571, "end": 576, "id": 89, "annotation": "DOPANT"}, {"text": "dopant", "start": 577, "end": 583, "id": 90, "annotation": null}, {"text": "and", "start": 584, "end": 587, "id": 91, "annotation": null}, {"text": "its", "start": 588, "end": 591, "id": 92, "annotation": null}, {"text": "derivatives", "start": 592, "end": 603, "id": 93, "annotation": null}, {"text": "gradually", "start": 604, "end": 613, "id": 94, "annotation": null}, {"text": "evolved", "start": 614, "end": 621, "id": 95, "annotation": null}, {"text": "into", "start": 622, "end": 626, "id": 96, "annotation": null}, {"text": "volatile", "start": 627, "end": 635, "id": 97, "annotation": null}, {"text": "nanoparticles", "start": 636, "end": 649, "id": 98, "annotation": null}, {"text": "which", "start": 650, "end": 655, "id": 99, "annotation": null}, {"text": "helped", "start": 656, "end": 662, "id": 100, "annotation": null}, {"text": "to", "start": 663, "end": 665, "id": 101, "annotation": null}, {"text": "generate", "start": 666, "end": 674, "id": 102, "annotation": null}, {"text": "abundant", "start": 675, "end": 683, "id": 103, "annotation": null}, {"text": "hierarchical", "start": 684, "end": 696, "id": 104, "annotation": null}, {"text": "macro-", "start": 697, "end": 703, "id": 105, "annotation": null}, {"text": "and", "start": 704, "end": 707, "id": 106, "annotation": null}, {"text": "meso", "start": 708, "end": 712, "id": 107, "annotation": null}, {"text": "-", "start": 713, "end": 714, "id": 108, "annotation": null}, {"text": "pores", "start": 715, "end": 720, "id": 109, "annotation": null}, {"text": ",", "start": 721, "end": 722, "id": 110, "annotation": null}, {"text": "resulting", "start": 723, "end": 732, "id": 111, "annotation": null}, {"text": "in", "start": 733, "end": 735, "id": 112, "annotation": null}, {"text": "honeycomb", "start": 736, "end": 745, "id": 113, "annotation": null}, {"text": "-", "start": 746, "end": 747, "id": 114, "annotation": null}, {"text": "like", "start": 748, "end": 752, "id": 115, "annotation": null}, {"text": "porous", "start": 753, "end": 759, "id": 116, "annotation": null}, {"text": "carbons", "start": 760, "end": 767, "id": 117, "annotation": null}, {"text": "with", "start": 768, "end": 772, "id": 118, "annotation": null}, {"text": "a", "start": 773, "end": 774, "id": 119, "annotation": null}, {"text": "high", "start": 775, "end": 779, "id": 120, "annotation": null}, {"text": "content", "start": 780, "end": 787, "id": 121, "annotation": null}, {"text": "of", "start": 788, "end": 790, "id": 122, "annotation": null}, {"text": "nitrogen", "start": 791, "end": 799, "id": 123, "annotation": "DOPANT"}, {"text": "dopants", "start": 800, "end": 807, "id": 124, "annotation": null}, {"text": "ranging", "start": 808, "end": 815, "id": 125, "annotation": null}, {"text": "from", "start": 816, "end": 820, "id": 126, "annotation": null}, {"text": "7", "start": 821, "end": 822, "id": 127, "annotation": "DOPMODQ"}, {"text": "to", "start": 823, "end": 825, "id": 128, "annotation": "DOPMODQ"}, {"text": "18", "start": 826, "end": 828, "id": 129, "annotation": "DOPMODQ"}, {"text": "at%", "start": 829, "end": 832, "id": 130, "annotation": "DOPMODQ"}, {"text": ",", "start": 833, "end": 834, "id": 131, "annotation": null}, {"text": "a", "start": 835, "end": 836, "id": 132, "annotation": null}, {"text": "large", "start": 837, "end": 842, "id": 133, "annotation": null}, {"text": "surface", "start": 843, "end": 850, "id": 134, "annotation": null}, {"text": "area", "start": 851, "end": 855, "id": 135, "annotation": null}, {"text": ",", "start": 856, "end": 857, "id": 136, "annotation": null}, {"text": "and", "start": 858, "end": 861, "id": 137, "annotation": null}, {"text": "an", "start": 862, "end": 864, "id": 138, "annotation": null}, {"text": "ORR", "start": 865, "end": 868, "id": 139, "annotation": null}, {"text": "activity", "start": 869, "end": 877, "id": 140, "annotation": null}, {"text": "superior", "start": 878, "end": 886, "id": 141, "annotation": null}, {"text": "to", "start": 887, "end": 889, "id": 142, "annotation": null}, {"text": "that", "start": 890, "end": 894, "id": 143, "annotation": null}, {"text": "of", "start": 895, "end": 897, "id": 144, "annotation": null}, {"text": "commercial", "start": 898, "end": 908, "id": 145, "annotation": null}, {"text": "Pt", "start": 909, "end": 911, "id": 146, "annotation": null}, {"text": "/", "start": 912, "end": 913, "id": 147, "annotation": null}, {"text": "C", "start": 914, "end": 915, "id": 148, "annotation": null}, {"text": "in", "start": 916, "end": 918, "id": 149, "annotation": null}, {"text": "alkaline", "start": 919, "end": 927, "id": 150, "annotation": null}, {"text": "electrolytes", "start": 928, "end": 940, "id": 151, "annotation": null}, {"text": ".", "start": 941, "end": 942, "id": 152, "annotation": null}], [{"text": "Significantly", "start": 943, "end": 956, "id": 153, "annotation": null}, {"text": ",", "start": 957, "end": 958, "id": 154, "annotation": null}, {"text": "by", "start": 959, "end": 961, "id": 155, "annotation": null}, {"text": "using", "start": 962, "end": 967, "id": 156, "annotation": null}, {"text": "the", "start": 968, "end": 971, "id": 157, "annotation": null}, {"text": "best", "start": 972, "end": 976, "id": 158, "annotation": null}, {"text": "sample", "start": 977, "end": 983, "id": 159, "annotation": null}, {"text": "that", "start": 984, "end": 988, "id": 160, "annotation": null}, {"text": "was", "start": 989, "end": 992, "id": 161, "annotation": null}, {"text": "prepared", "start": 993, "end": 1001, "id": 162, "annotation": null}, {"text": "at", "start": 1002, "end": 1004, "id": 163, "annotation": null}, {"text": "800", "start": 1005, "end": 1008, "id": 164, "annotation": null}, {"text": "\u00b0", "start": 1009, "end": 1010, "id": 165, "annotation": null}, {"text": "C", "start": 1011, "end": 1012, "id": 166, "annotation": null}, {"text": "(", "start": 1013, "end": 1014, "id": 167, "annotation": null}, {"text": "HPC-800", "start": 1015, "end": 1022, "id": 168, "annotation": null}, {"text": ")", "start": 1023, "end": 1024, "id": 169, "annotation": null}, {"text": "as", "start": 1025, "end": 1027, "id": 170, "annotation": null}, {"text": "the", "start": 1028, "end": 1031, "id": 171, "annotation": null}, {"text": "air", "start": 1032, "end": 1035, "id": 172, "annotation": null}, {"text": "electrode", "start": 1036, "end": 1045, "id": 173, "annotation": null}, {"text": ",", "start": 1046, "end": 1047, "id": 174, "annotation": null}, {"text": "a", "start": 1048, "end": 1049, "id": 175, "annotation": null}, {"text": "Zn", "start": 1050, "end": 1052, "id": 176, "annotation": null}, {"text": "\u2013", "start": 1053, "end": 1054, "id": 177, "annotation": null}, {"text": "air", "start": 1055, "end": 1058, "id": 178, "annotation": null}, {"text": "battery", "start": 1059, "end": 1066, "id": 179, "annotation": null}, {"text": "was", "start": 1067, "end": 1070, "id": 180, "annotation": null}, {"text": "found", "start": 1071, "end": 1076, "id": 181, "annotation": null}, {"text": "to", "start": 1077, "end": 1079, "id": 182, "annotation": null}, {"text": "display", "start": 1080, "end": 1087, "id": 183, "annotation": null}, {"text": "a", "start": 1088, "end": 1089, "id": 184, "annotation": null}, {"text": "specific", "start": 1090, "end": 1098, "id": 185, "annotation": null}, {"text": "capacity", "start": 1099, "end": 1107, "id": 186, "annotation": null}, {"text": "of", "start": 1108, "end": 1110, "id": 187, "annotation": null}, {"text": "647", "start": 1111, "end": 1114, "id": 188, "annotation": null}, {"text": "mA", "start": 1115, "end": 1117, "id": 189, "annotation": null}, {"text": "h", "start": 1118, "end": 1119, "id": 190, "annotation": null}, {"text": "g\u22121", "start": 1120, "end": 1123, "id": 191, "annotation": null}, {"text": "at", "start": 1124, "end": 1126, "id": 192, "annotation": null}, {"text": "10", "start": 1127, "end": 1129, "id": 193, "annotation": null}, {"text": "mA", "start": 1130, "end": 1132, "id": 194, "annotation": null}, {"text": "cm\u22122", "start": 1133, "end": 1137, "id": 195, "annotation": null}, {"text": "and", "start": 1138, "end": 1141, "id": 196, "annotation": null}, {"text": "a", "start": 1142, "end": 1143, "id": 197, "annotation": null}, {"text": "negligible", "start": 1144, "end": 1154, "id": 198, "annotation": null}, {"text": "loss", "start": 1155, "end": 1159, "id": 199, "annotation": null}, {"text": "of", "start": 1160, "end": 1162, "id": 200, "annotation": null}, {"text": "voltage", "start": 1163, "end": 1170, "id": 201, "annotation": null}, {"text": "even", "start": 1171, "end": 1175, "id": 202, "annotation": null}, {"text": "after", "start": 1176, "end": 1181, "id": 203, "annotation": null}, {"text": "continuous", "start": 1182, "end": 1192, "id": 204, "annotation": null}, {"text": "operation", "start": 1193, "end": 1202, "id": 205, "annotation": null}, {"text": "for", "start": 1203, "end": 1206, "id": 206, "annotation": null}, {"text": "110", "start": 1207, "end": 1210, "id": 207, "annotation": null}, {"text": "h", "start": 1211, "end": 1212, "id": 208, "annotation": null}, {"text": ",", "start": 1213, "end": 1214, "id": 209, "annotation": null}, {"text": "a", "start": 1215, "end": 1216, "id": 210, "annotation": null}, {"text": "performance", "start": 1217, "end": 1228, "id": 211, "annotation": null}, {"text": "markedly", "start": 1229, "end": 1237, "id": 212, "annotation": null}, {"text": "better", "start": 1238, "end": 1244, "id": 213, "annotation": null}, {"text": "than", "start": 1245, "end": 1249, "id": 214, "annotation": null}, {"text": "that", "start": 1250, "end": 1254, "id": 215, "annotation": null}, {"text": "with", "start": 1255, "end": 1259, "id": 216, "annotation": null}, {"text": "Pt", "start": 1260, "end": 1262, "id": 217, "annotation": null}, {"text": "/", "start": 1263, "end": 1264, "id": 218, "annotation": null}, {"text": "C", "start": 1265, "end": 1266, "id": 219, "annotation": null}, {"text": "as", "start": 1267, "end": 1269, "id": 220, "annotation": null}, {"text": "the", "start": 1270, "end": 1273, "id": 221, "annotation": null}, {"text": "air", "start": 1274, "end": 1277, "id": 222, "annotation": null}, {"text": "cathode", "start": 1278, "end": 1285, "id": 223, "annotation": null}, {"text": ".", "start": 1286, "end": 1287, "id": 224, "annotation": null}], [{"text": "The", "start": 1288, "end": 1291, "id": 225, "annotation": null}, {"text": "results", "start": 1292, "end": 1299, "id": 226, "annotation": null}, {"text": "not", "start": 1300, "end": 1303, "id": 227, "annotation": null}, {"text": "only", "start": 1304, "end": 1308, "id": 228, "annotation": null}, {"text": "highlight", "start": 1309, "end": 1318, "id": 229, "annotation": null}, {"text": "the", "start": 1319, "end": 1322, "id": 230, "annotation": null}, {"text": "significance", "start": 1323, "end": 1335, "id": 231, "annotation": null}, {"text": "of", "start": 1336, "end": 1338, "id": 232, "annotation": null}, {"text": "precursor", "start": 1339, "end": 1348, "id": 233, "annotation": null}, {"text": "engineering", "start": 1349, "end": 1360, "id": 234, "annotation": null}, {"text": "in", "start": 1361, "end": 1363, "id": 235, "annotation": null}, {"text": "the", "start": 1364, "end": 1367, "id": 236, "annotation": null}, {"text": "synthesis", "start": 1368, "end": 1377, "id": 237, "annotation": null}, {"text": "of", "start": 1378, "end": 1380, "id": 238, "annotation": null}, {"text": "highly", "start": 1381, "end": 1387, "id": 239, "annotation": null}, {"text": "efficient", "start": 1388, "end": 1397, "id": 240, "annotation": null}, {"text": "nitrogen", "start": 1398, "end": 1406, "id": 241, "annotation": "DOPANT"}, {"text": "-", "start": 1407, "end": 1408, "id": 242, "annotation": null}, {"text": "doped", "start": 1409, "end": 1414, "id": 243, "annotation": null}, {"text": "carbon", "start": 1415, "end": 1421, "id": 244, "annotation": "BASEMAT"}, {"text": "catalysts", "start": 1422, "end": 1431, "id": 245, "annotation": null}, {"text": "for", "start": 1432, "end": 1435, "id": 246, "annotation": null}, {"text": "oxygen", "start": 1436, "end": 1442, "id": 247, "annotation": null}, {"text": "electroreduction", "start": 1443, "end": 1459, "id": 248, "annotation": null}, {"text": ",", "start": 1460, "end": 1461, "id": 249, "annotation": null}, {"text": "but", "start": 1462, "end": 1465, "id": 250, "annotation": null}, {"text": "also", "start": 1466, "end": 1470, "id": 251, "annotation": null}, {"text": "suggest", "start": 1471, "end": 1478, "id": 252, "annotation": null}, {"text": "the", "start": 1479, "end": 1482, "id": 253, "annotation": null}, {"text": "high", "start": 1483, "end": 1487, "id": 254, "annotation": null}, {"text": "potential", "start": 1488, "end": 1497, "id": 255, "annotation": null}, {"text": "of", "start": 1498, "end": 1500, "id": 256, "annotation": null}, {"text": "the", "start": 1501, "end": 1504, "id": 257, "annotation": null}, {"text": "interfacially", "start": 1505, "end": 1518, "id": 258, "annotation": null}, {"text": "confined", "start": 1519, "end": 1527, "id": 259, "annotation": null}, {"text": "polymerization", "start": 1528, "end": 1542, "id": 260, "annotation": null}, {"text": "method", "start": 1543, "end": 1549, "id": 261, "annotation": null}, {"text": "in", "start": 1550, "end": 1552, "id": 262, "annotation": null}, {"text": "the", "start": 1553, "end": 1556, "id": 263, "annotation": null}, {"text": "scalable", "start": 1557, "end": 1565, "id": 264, "annotation": null}, {"text": "preparation", "start": 1566, "end": 1577, "id": 265, "annotation": null}, {"text": "of", "start": 1578, "end": 1580, "id": 266, "annotation": null}, {"text": "cost", "start": 1581, "end": 1585, "id": 267, "annotation": null}, {"text": "-", "start": 1586, "end": 1587, "id": 268, "annotation": null}, {"text": "effective", "start": 1588, "end": 1597, "id": 269, "annotation": null}, {"text": ",", "start": 1598, "end": 1599, "id": 270, "annotation": null}, {"text": "highly", "start": 1600, "end": 1606, "id": 271, "annotation": null}, {"text": "porous", "start": 1607, "end": 1613, "id": 272, "annotation": null}, {"text": "carbons", "start": 1614, "end": 1621, "id": 273, "annotation": null}, {"text": "for", "start": 1622, "end": 1625, "id": 274, "annotation": null}, {"text": "electrochemical", "start": 1626, "end": 1641, "id": 275, "annotation": null}, {"text": "energy", "start": 1642, "end": 1648, "id": 276, "annotation": null}, {"text": "storage", "start": 1649, "end": 1656, "id": 277, "annotation": null}, {"text": "and", "start": 1657, "end": 1660, "id": 278, "annotation": null}, {"text": "conversion", "start": 1661, "end": 1671, "id": 279, "annotation": null}, {"text": "devices", "start": 1672, "end": 1679, "id": 280, "annotation": null}, {"text": ".", "start": 1680, "end": 1681, "id": 281, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "In this work, we report the high temperature solid-state synthesis of red phosphors Sr2MgSi2O7: Eu3+ with various Eu3+ concentrations. Their luminescent properties at room temperature are investigated. The X-ray diffraction patterns indicate that the red phosphors powder conforms to the tetragonal Sr2MgSi2O7. Impurity structure appears when more than 20% Eu3+ is doped. The samples show a strong emission line at 615nm and the intensity increases with the increase of Eu3+ concentration until concentration quenching occurs. Charge compensation assists in the reduction of the impurity structure and vacancies; hence the luminescent intensity is enhanced. The decay measurement indicates that the lifetime of Eu3+ emission is about 2\u20133ms. Some of the Eu3+ can be reduced to Eu2+; this is also discussed.", "meta": {"doi": "10.1016/j.optlastec.2011.02.006"}, "_input_hash": -602082859, "_task_hash": -1213916914, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "work", "start": 8, "end": 12, "id": 2, "annotation": null}, {"text": ",", "start": 13, "end": 14, "id": 3, "annotation": null}, {"text": "we", "start": 15, "end": 17, "id": 4, "annotation": null}, {"text": "report", "start": 18, "end": 24, "id": 5, "annotation": null}, {"text": "the", "start": 25, "end": 28, "id": 6, "annotation": null}, {"text": "high", "start": 29, "end": 33, "id": 7, "annotation": null}, {"text": "temperature", "start": 34, "end": 45, "id": 8, "annotation": null}, {"text": "solid", "start": 46, "end": 51, "id": 9, "annotation": null}, {"text": "-", "start": 52, "end": 53, "id": 10, "annotation": null}, {"text": "state", "start": 54, "end": 59, "id": 11, "annotation": null}, {"text": "synthesis", "start": 60, "end": 69, "id": 12, "annotation": null}, {"text": "of", "start": 70, "end": 72, "id": 13, "annotation": null}, {"text": "red", "start": 73, "end": 76, "id": 14, "annotation": null}, {"text": "phosphors", "start": 77, "end": 86, "id": 15, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 87, "end": 97, "id": 16, "annotation": "BASEMAT"}, {"text": ":", "start": 98, "end": 99, "id": 17, "annotation": null}, {"text": "Eu3", "start": 100, "end": 103, "id": 18, "annotation": "DOPANT"}, {"text": "+", "start": 104, "end": 105, "id": 19, "annotation": "DOPANT"}, {"text": "with", "start": 106, "end": 110, "id": 20, "annotation": null}, {"text": "various", "start": 111, "end": 118, "id": 21, "annotation": null}, {"text": "Eu3", "start": 119, "end": 122, "id": 22, "annotation": "DOPANT"}, {"text": "+", "start": 123, "end": 124, "id": 23, "annotation": "DOPANT"}, {"text": "concentrations", "start": 125, "end": 139, "id": 24, "annotation": null}, {"text": ".", "start": 140, "end": 141, "id": 25, "annotation": null}], [{"text": "Their", "start": 142, "end": 147, "id": 26, "annotation": null}, {"text": "luminescent", "start": 148, "end": 159, "id": 27, "annotation": null}, {"text": "properties", "start": 160, "end": 170, "id": 28, "annotation": null}, {"text": "at", "start": 171, "end": 173, "id": 29, "annotation": null}, {"text": "room", "start": 174, "end": 178, "id": 30, "annotation": null}, {"text": "temperature", "start": 179, "end": 190, "id": 31, "annotation": null}, {"text": "are", "start": 191, "end": 194, "id": 32, "annotation": null}, {"text": "investigated", "start": 195, "end": 207, "id": 33, "annotation": null}, {"text": ".", "start": 208, "end": 209, "id": 34, "annotation": null}], [{"text": "The", "start": 210, "end": 213, "id": 35, "annotation": null}, {"text": "X", "start": 214, "end": 215, "id": 36, "annotation": null}, {"text": "-", "start": 216, "end": 217, "id": 37, "annotation": null}, {"text": "ray", "start": 218, "end": 221, "id": 38, "annotation": null}, {"text": "diffraction", "start": 222, "end": 233, "id": 39, "annotation": null}, {"text": "patterns", "start": 234, "end": 242, "id": 40, "annotation": null}, {"text": "indicate", "start": 243, "end": 251, "id": 41, "annotation": null}, {"text": "that", "start": 252, "end": 256, "id": 42, "annotation": null}, {"text": "the", "start": 257, "end": 260, "id": 43, "annotation": null}, {"text": "red", "start": 261, "end": 264, "id": 44, "annotation": null}, {"text": "phosphors", "start": 265, "end": 274, "id": 45, "annotation": null}, {"text": "powder", "start": 275, "end": 281, "id": 46, "annotation": null}, {"text": "conforms", "start": 282, "end": 290, "id": 47, "annotation": null}, {"text": "to", "start": 291, "end": 293, "id": 48, "annotation": null}, {"text": "the", "start": 294, "end": 297, "id": 49, "annotation": null}, {"text": "tetragonal", "start": 298, "end": 308, "id": 50, "annotation": null}, {"text": "Sr2MgSi2O7", "start": 309, "end": 319, "id": 51, "annotation": null}, {"text": ".", "start": 320, "end": 321, "id": 52, "annotation": null}], [{"text": "Impurity", "start": 322, "end": 330, "id": 53, "annotation": null}, {"text": "structure", "start": 331, "end": 340, "id": 54, "annotation": null}, {"text": "appears", "start": 341, "end": 348, "id": 55, "annotation": null}, {"text": "when", "start": 349, "end": 353, "id": 56, "annotation": null}, {"text": "more", "start": 354, "end": 358, "id": 57, "annotation": "DOPMODQ"}, {"text": "than", "start": 359, "end": 363, "id": 58, "annotation": "DOPMODQ"}, {"text": "20", "start": 364, "end": 366, "id": 59, "annotation": "DOPMODQ"}, {"text": "%", "start": 367, "end": 368, "id": 60, "annotation": "DOPMODQ"}, {"text": "Eu3", "start": 369, "end": 372, "id": 61, "annotation": "DOPANT"}, {"text": "+", "start": 373, "end": 374, "id": 62, "annotation": "DOPANT"}, {"text": "is", "start": 375, "end": 377, "id": 63, "annotation": null}, {"text": "doped", "start": 378, "end": 383, "id": 64, "annotation": null}, {"text": ".", "start": 384, "end": 385, "id": 65, "annotation": null}], [{"text": "The", "start": 386, "end": 389, "id": 66, "annotation": null}, {"text": "samples", "start": 390, "end": 397, "id": 67, "annotation": null}, {"text": "show", "start": 398, "end": 402, "id": 68, "annotation": null}, {"text": "a", "start": 403, "end": 404, "id": 69, "annotation": null}, {"text": "strong", "start": 405, "end": 411, "id": 70, "annotation": null}, {"text": "emission", "start": 412, "end": 420, "id": 71, "annotation": null}, {"text": "line", "start": 421, "end": 425, "id": 72, "annotation": null}, {"text": "at", "start": 426, "end": 428, "id": 73, "annotation": null}, {"text": "615", "start": 429, "end": 432, "id": 74, "annotation": null}, {"text": "nm", "start": 433, "end": 435, "id": 75, "annotation": null}, {"text": "and", "start": 436, "end": 439, "id": 76, "annotation": null}, {"text": "the", "start": 440, "end": 443, "id": 77, "annotation": null}, {"text": "intensity", "start": 444, "end": 453, "id": 78, "annotation": null}, {"text": "increases", "start": 454, "end": 463, "id": 79, "annotation": null}, {"text": "with", "start": 464, "end": 468, "id": 80, "annotation": null}, {"text": "the", "start": 469, "end": 472, "id": 81, "annotation": null}, {"text": "increase", "start": 473, "end": 481, "id": 82, "annotation": null}, {"text": "of", "start": 482, "end": 484, "id": 83, "annotation": null}, {"text": "Eu3", "start": 485, "end": 488, "id": 84, "annotation": null}, {"text": "+", "start": 489, "end": 490, "id": 85, "annotation": null}, {"text": "concentration", "start": 491, "end": 504, "id": 86, "annotation": null}, {"text": "until", "start": 505, "end": 510, "id": 87, "annotation": null}, {"text": "concentration", "start": 511, "end": 524, "id": 88, "annotation": null}, {"text": "quenching", "start": 525, "end": 534, "id": 89, "annotation": null}, {"text": "occurs", "start": 535, "end": 541, "id": 90, "annotation": null}, {"text": ".", "start": 542, "end": 543, "id": 91, "annotation": null}], [{"text": "Charge", "start": 544, "end": 550, "id": 92, "annotation": null}, {"text": "compensation", "start": 551, "end": 563, "id": 93, "annotation": null}, {"text": "assists", "start": 564, "end": 571, "id": 94, "annotation": null}, {"text": "in", "start": 572, "end": 574, "id": 95, "annotation": null}, {"text": "the", "start": 575, "end": 578, "id": 96, "annotation": null}, {"text": "reduction", "start": 579, "end": 588, "id": 97, "annotation": null}, {"text": "of", "start": 589, "end": 591, "id": 98, "annotation": null}, {"text": "the", "start": 592, "end": 595, "id": 99, "annotation": null}, {"text": "impurity", "start": 596, "end": 604, "id": 100, "annotation": null}, {"text": "structure", "start": 605, "end": 614, "id": 101, "annotation": null}, {"text": "and", "start": 615, "end": 618, "id": 102, "annotation": null}, {"text": "vacancies", "start": 619, "end": 628, "id": 103, "annotation": null}, {"text": ";", "start": 629, "end": 630, "id": 104, "annotation": null}, {"text": "hence", "start": 631, "end": 636, "id": 105, "annotation": null}, {"text": "the", "start": 637, "end": 640, "id": 106, "annotation": null}, {"text": "luminescent", "start": 641, "end": 652, "id": 107, "annotation": null}, {"text": "intensity", "start": 653, "end": 662, "id": 108, "annotation": null}, {"text": "is", "start": 663, "end": 665, "id": 109, "annotation": null}, {"text": "enhanced", "start": 666, "end": 674, "id": 110, "annotation": null}, {"text": ".", "start": 675, "end": 676, "id": 111, "annotation": null}], [{"text": "The", "start": 677, "end": 680, "id": 112, "annotation": null}, {"text": "decay", "start": 681, "end": 686, "id": 113, "annotation": null}, {"text": "measurement", "start": 687, "end": 698, "id": 114, "annotation": null}, {"text": "indicates", "start": 699, "end": 708, "id": 115, "annotation": null}, {"text": "that", "start": 709, "end": 713, "id": 116, "annotation": null}, {"text": "the", "start": 714, "end": 717, "id": 117, "annotation": null}, {"text": "lifetime", "start": 718, "end": 726, "id": 118, "annotation": null}, {"text": "of", "start": 727, "end": 729, "id": 119, "annotation": null}, {"text": "Eu3", "start": 730, "end": 733, "id": 120, "annotation": null}, {"text": "+", "start": 734, "end": 735, "id": 121, "annotation": null}, {"text": "emission", "start": 736, "end": 744, "id": 122, "annotation": null}, {"text": "is", "start": 745, "end": 747, "id": 123, "annotation": null}, {"text": "about", "start": 748, "end": 753, "id": 124, "annotation": null}, {"text": "2\u20133ms", "start": 754, "end": 759, "id": 125, "annotation": null}, {"text": ".", "start": 760, "end": 761, "id": 126, "annotation": null}], [{"text": "Some", "start": 762, "end": 766, "id": 127, "annotation": null}, {"text": "of", "start": 767, "end": 769, "id": 128, "annotation": null}, {"text": "the", "start": 770, "end": 773, "id": 129, "annotation": null}, {"text": "Eu3", "start": 774, "end": 777, "id": 130, "annotation": null}, {"text": "+", "start": 778, "end": 779, "id": 131, "annotation": null}, {"text": "can", "start": 780, "end": 783, "id": 132, "annotation": null}, {"text": "be", "start": 784, "end": 786, "id": 133, "annotation": null}, {"text": "reduced", "start": 787, "end": 794, "id": 134, "annotation": null}, {"text": "to", "start": 795, "end": 797, "id": 135, "annotation": null}, {"text": "Eu2", "start": 798, "end": 801, "id": 136, "annotation": null}, {"text": "+", "start": 802, "end": 803, "id": 137, "annotation": null}, {"text": ";", "start": 804, "end": 805, "id": 138, "annotation": null}, {"text": "this", "start": 806, "end": 810, "id": 139, "annotation": null}, {"text": "is", "start": 811, "end": 813, "id": 140, "annotation": null}, {"text": "also", "start": 814, "end": 818, "id": 141, "annotation": null}, {"text": "discussed", "start": 819, "end": 828, "id": 142, "annotation": null}, {"text": ".", "start": 829, "end": 830, "id": 143, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Nb-doped ZnO (NZO) films were prepared on glass substrates at various deposition temperatures by using the radio-frequency magnetron sputtering method. All the NZO films showed a significant dependence on the growth temperature. The optimum growth temperature, which was determined from the figure of merit, for depositing high-quality NZO films was found to be 300 \u00b0C; the NZO thin film formed at this temperature showed a highly-preferential c-axis orientation with a thickness of 1040 nm, a grain size of 65 nm, a bandgap energy of 3.26 eV, an average optical transmittance of 87.9%, and an electrical resistivity of 6.6 \u00d7 10-3 \u03a9\u00b7cm. These results indicate that the growth temperature plays an important role in the fabrication of NZO films and devices.", "meta": {"doi": "10.3938/jkps.64.722"}, "_input_hash": -34923991, "_task_hash": -379818437, "tokens": [[{"text": "Nb", "start": 0, "end": 2, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 3, "end": 4, "id": 1, "annotation": null}, {"text": "doped", "start": 5, "end": 10, "id": 2, "annotation": null}, {"text": "ZnO", "start": 11, "end": 14, "id": 3, "annotation": "BASEMAT"}, {"text": "(", "start": 15, "end": 16, "id": 4, "annotation": null}, {"text": "NZO", "start": 17, "end": 20, "id": 5, "annotation": null}, {"text": ")", "start": 21, "end": 22, "id": 6, "annotation": null}, {"text": "films", "start": 23, "end": 28, "id": 7, "annotation": null}, {"text": "were", "start": 29, "end": 33, "id": 8, "annotation": null}, {"text": "prepared", "start": 34, "end": 42, "id": 9, "annotation": null}, {"text": "on", "start": 43, "end": 45, "id": 10, "annotation": null}, {"text": "glass", "start": 46, "end": 51, "id": 11, "annotation": null}, {"text": "substrates", "start": 52, "end": 62, "id": 12, "annotation": null}, {"text": "at", "start": 63, "end": 65, "id": 13, "annotation": null}, {"text": "various", "start": 66, "end": 73, "id": 14, "annotation": null}, {"text": "deposition", "start": 74, "end": 84, "id": 15, "annotation": null}, {"text": "temperatures", "start": 85, "end": 97, "id": 16, "annotation": null}, {"text": "by", "start": 98, "end": 100, "id": 17, "annotation": null}, {"text": "using", "start": 101, "end": 106, "id": 18, "annotation": null}, {"text": "the", "start": 107, "end": 110, "id": 19, "annotation": null}, {"text": "radio", "start": 111, "end": 116, "id": 20, "annotation": null}, {"text": "-", "start": 117, "end": 118, "id": 21, "annotation": null}, {"text": "frequency", "start": 119, "end": 128, "id": 22, "annotation": null}, {"text": "magnetron", "start": 129, "end": 138, "id": 23, "annotation": null}, {"text": "sputtering", "start": 139, "end": 149, "id": 24, "annotation": null}, {"text": "method", "start": 150, "end": 156, "id": 25, "annotation": null}, {"text": ".", "start": 157, "end": 158, "id": 26, "annotation": null}], [{"text": "All", "start": 159, "end": 162, "id": 27, "annotation": null}, {"text": "the", "start": 163, "end": 166, "id": 28, "annotation": null}, {"text": "NZO", "start": 167, "end": 170, "id": 29, "annotation": null}, {"text": "films", "start": 171, "end": 176, "id": 30, "annotation": null}, {"text": "showed", "start": 177, "end": 183, "id": 31, "annotation": null}, {"text": "a", "start": 184, "end": 185, "id": 32, "annotation": null}, {"text": "significant", "start": 186, "end": 197, "id": 33, "annotation": null}, {"text": "dependence", "start": 198, "end": 208, "id": 34, "annotation": null}, {"text": "on", "start": 209, "end": 211, "id": 35, "annotation": null}, {"text": "the", "start": 212, "end": 215, "id": 36, "annotation": null}, {"text": "growth", "start": 216, "end": 222, "id": 37, "annotation": null}, {"text": "temperature", "start": 223, "end": 234, "id": 38, "annotation": null}, {"text": ".", "start": 235, "end": 236, "id": 39, "annotation": null}], [{"text": "The", "start": 237, "end": 240, "id": 40, "annotation": null}, {"text": "optimum", "start": 241, "end": 248, "id": 41, "annotation": null}, {"text": "growth", "start": 249, "end": 255, "id": 42, "annotation": null}, {"text": "temperature", "start": 256, "end": 267, "id": 43, "annotation": null}, {"text": ",", "start": 268, "end": 269, "id": 44, "annotation": null}, {"text": "which", "start": 270, "end": 275, "id": 45, "annotation": null}, {"text": "was", "start": 276, "end": 279, "id": 46, "annotation": null}, {"text": "determined", "start": 280, "end": 290, "id": 47, "annotation": null}, {"text": "from", "start": 291, "end": 295, "id": 48, "annotation": null}, {"text": "the", "start": 296, "end": 299, "id": 49, "annotation": null}, {"text": "figure", "start": 300, "end": 306, "id": 50, "annotation": null}, {"text": "of", "start": 307, "end": 309, "id": 51, "annotation": null}, {"text": "merit", "start": 310, "end": 315, "id": 52, "annotation": null}, {"text": ",", "start": 316, "end": 317, "id": 53, "annotation": null}, {"text": "for", "start": 318, "end": 321, "id": 54, "annotation": null}, {"text": "depositing", "start": 322, "end": 332, "id": 55, "annotation": null}, {"text": "high", "start": 333, "end": 337, "id": 56, "annotation": null}, {"text": "-", "start": 338, "end": 339, "id": 57, "annotation": null}, {"text": "quality", "start": 340, "end": 347, "id": 58, "annotation": null}, {"text": "NZO", "start": 348, "end": 351, "id": 59, "annotation": null}, {"text": "films", "start": 352, "end": 357, "id": 60, "annotation": null}, {"text": "was", "start": 358, "end": 361, "id": 61, "annotation": null}, {"text": "found", "start": 362, "end": 367, "id": 62, "annotation": null}, {"text": "to", "start": 368, "end": 370, "id": 63, "annotation": null}, {"text": "be", "start": 371, "end": 373, "id": 64, "annotation": null}, {"text": "300", "start": 374, "end": 377, "id": 65, "annotation": null}, {"text": "\u00b0", "start": 378, "end": 379, "id": 66, "annotation": null}, {"text": "C", "start": 380, "end": 381, "id": 67, "annotation": null}, {"text": ";", "start": 382, "end": 383, "id": 68, "annotation": null}, {"text": "the", "start": 384, "end": 387, "id": 69, "annotation": null}, {"text": "NZO", "start": 388, "end": 391, "id": 70, "annotation": null}, {"text": "thin", "start": 392, "end": 396, "id": 71, "annotation": null}, {"text": "film", "start": 397, "end": 401, "id": 72, "annotation": null}, {"text": "formed", "start": 402, "end": 408, "id": 73, "annotation": null}, {"text": "at", "start": 409, "end": 411, "id": 74, "annotation": null}, {"text": "this", "start": 412, "end": 416, "id": 75, "annotation": null}, {"text": "temperature", "start": 417, "end": 428, "id": 76, "annotation": null}, {"text": "showed", "start": 429, "end": 435, "id": 77, "annotation": null}, {"text": "a", "start": 436, "end": 437, "id": 78, "annotation": null}, {"text": "highly", "start": 438, "end": 444, "id": 79, "annotation": null}, {"text": "-", "start": 445, "end": 446, "id": 80, "annotation": null}, {"text": "preferential", "start": 447, "end": 459, "id": 81, "annotation": null}, {"text": "c", "start": 460, "end": 461, "id": 82, "annotation": null}, {"text": "-", "start": 462, "end": 463, "id": 83, "annotation": null}, {"text": "axis", "start": 464, "end": 468, "id": 84, "annotation": null}, {"text": "orientation", "start": 469, "end": 480, "id": 85, "annotation": null}, {"text": "with", "start": 481, "end": 485, "id": 86, "annotation": null}, {"text": "a", "start": 486, "end": 487, "id": 87, "annotation": null}, {"text": "thickness", "start": 488, "end": 497, "id": 88, "annotation": null}, {"text": "of", "start": 498, "end": 500, "id": 89, "annotation": null}, {"text": "1040", "start": 501, "end": 505, "id": 90, "annotation": null}, {"text": "nm", "start": 506, "end": 508, "id": 91, "annotation": null}, {"text": ",", "start": 509, "end": 510, "id": 92, "annotation": null}, {"text": "a", "start": 511, "end": 512, "id": 93, "annotation": null}, {"text": "grain", "start": 513, "end": 518, "id": 94, "annotation": null}, {"text": "size", "start": 519, "end": 523, "id": 95, "annotation": null}, {"text": "of", "start": 524, "end": 526, "id": 96, "annotation": null}, {"text": "65", "start": 527, "end": 529, "id": 97, "annotation": null}, {"text": "nm", "start": 530, "end": 532, "id": 98, "annotation": null}, {"text": ",", "start": 533, "end": 534, "id": 99, "annotation": null}, {"text": "a", "start": 535, "end": 536, "id": 100, "annotation": null}, {"text": "bandgap", "start": 537, "end": 544, "id": 101, "annotation": null}, {"text": "energy", "start": 545, "end": 551, "id": 102, "annotation": null}, {"text": "of", "start": 552, "end": 554, "id": 103, "annotation": null}, {"text": "3.26", "start": 555, "end": 559, "id": 104, "annotation": null}, {"text": "eV", "start": 560, "end": 562, "id": 105, "annotation": null}, {"text": ",", "start": 563, "end": 564, "id": 106, "annotation": null}, {"text": "an", "start": 565, "end": 567, "id": 107, "annotation": null}, {"text": "average", "start": 568, "end": 575, "id": 108, "annotation": null}, {"text": "optical", "start": 576, "end": 583, "id": 109, "annotation": null}, {"text": "transmittance", "start": 584, "end": 597, "id": 110, "annotation": null}, {"text": "of", "start": 598, "end": 600, "id": 111, "annotation": null}, {"text": "87.9", "start": 601, "end": 605, "id": 112, "annotation": null}, {"text": "%", "start": 606, "end": 607, "id": 113, "annotation": null}, {"text": ",", "start": 608, "end": 609, "id": 114, "annotation": null}, {"text": "and", "start": 610, "end": 613, "id": 115, "annotation": null}, {"text": "an", "start": 614, "end": 616, "id": 116, "annotation": null}, {"text": "electrical", "start": 617, "end": 627, "id": 117, "annotation": null}, {"text": "resistivity", "start": 628, "end": 639, "id": 118, "annotation": null}, {"text": "of", "start": 640, "end": 642, "id": 119, "annotation": null}, {"text": "6.6", "start": 643, "end": 646, "id": 120, "annotation": null}, {"text": "\u00d7", "start": 647, "end": 648, "id": 121, "annotation": null}, {"text": "10", "start": 649, "end": 651, "id": 122, "annotation": null}, {"text": "-", "start": 652, "end": 653, "id": 123, "annotation": null}, {"text": "3", "start": 654, "end": 655, "id": 124, "annotation": null}, {"text": "\u03a9\u00b7cm", "start": 656, "end": 660, "id": 125, "annotation": null}, {"text": ".", "start": 661, "end": 662, "id": 126, "annotation": null}], [{"text": "These", "start": 663, "end": 668, "id": 127, "annotation": null}, {"text": "results", "start": 669, "end": 676, "id": 128, "annotation": null}, {"text": "indicate", "start": 677, "end": 685, "id": 129, "annotation": null}, {"text": "that", "start": 686, "end": 690, "id": 130, "annotation": null}, {"text": "the", "start": 691, "end": 694, "id": 131, "annotation": null}, {"text": "growth", "start": 695, "end": 701, "id": 132, "annotation": null}, {"text": "temperature", "start": 702, "end": 713, "id": 133, "annotation": null}, {"text": "plays", "start": 714, "end": 719, "id": 134, "annotation": null}, {"text": "an", "start": 720, "end": 722, "id": 135, "annotation": null}, {"text": "important", "start": 723, "end": 732, "id": 136, "annotation": null}, {"text": "role", "start": 733, "end": 737, "id": 137, "annotation": null}, {"text": "in", "start": 738, "end": 740, "id": 138, "annotation": null}, {"text": "the", "start": 741, "end": 744, "id": 139, "annotation": null}, {"text": "fabrication", "start": 745, "end": 756, "id": 140, "annotation": null}, {"text": "of", "start": 757, "end": 759, "id": 141, "annotation": null}, {"text": "NZO", "start": 760, "end": 763, "id": 142, "annotation": null}, {"text": "films", "start": 764, "end": 769, "id": 143, "annotation": null}, {"text": "and", "start": 770, "end": 773, "id": 144, "annotation": null}, {"text": "devices", "start": 774, "end": 781, "id": 145, "annotation": null}, {"text": ".", "start": 782, "end": 783, "id": 146, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Photoluminescence properties of CeCl3 and DyCl3 codoped aluminium oxide films deposited by the ultrasonic spray pyrolysis technique were characterized by excitation, emission and decay time spectroscopy. When excited by ultraviolet radiation the films emit a combination of blue and yellow wavelengths through an efficient energy transfer from Ce3+ to Dy3+ ions (up to around 77%). From spectroscopic data it is inferred that such energy transfer is nonradiative in nature taking place between Ce3+ and Dy3+ clusters through a short-range interaction mechanism. In the Ce3+ doped single film the chromaticity coordinates are in the purplish blue region, whereas that in the cerium and dysprosium codoped films the coordinates move toward the white light emission region.", "meta": {"doi": "10.1016/j.optmat.2011.03.023"}, "_input_hash": -1310189726, "_task_hash": 1665539636, "tokens": [[{"text": "Photoluminescence", "start": 0, "end": 17, "id": 0, "annotation": null}, {"text": "properties", "start": 18, "end": 28, "id": 1, "annotation": null}, {"text": "of", "start": 29, "end": 31, "id": 2, "annotation": null}, {"text": "CeCl3", "start": 32, "end": 37, "id": 3, "annotation": "DOPANT"}, {"text": "and", "start": 38, "end": 41, "id": 4, "annotation": null}, {"text": "DyCl3", "start": 42, "end": 47, "id": 5, "annotation": "DOPANT"}, {"text": "codoped", "start": 48, "end": 55, "id": 6, "annotation": null}, {"text": "aluminium", "start": 56, "end": 65, "id": 7, "annotation": "BASEMAT"}, {"text": "oxide", "start": 66, "end": 71, "id": 8, "annotation": "BASEMAT"}, {"text": "films", "start": 72, "end": 77, "id": 9, "annotation": null}, {"text": "deposited", "start": 78, "end": 87, "id": 10, "annotation": null}, {"text": "by", "start": 88, "end": 90, "id": 11, "annotation": null}, {"text": "the", "start": 91, "end": 94, "id": 12, "annotation": null}, {"text": "ultrasonic", "start": 95, "end": 105, "id": 13, "annotation": null}, {"text": "spray", "start": 106, "end": 111, "id": 14, "annotation": null}, {"text": "pyrolysis", "start": 112, "end": 121, "id": 15, "annotation": null}, {"text": "technique", "start": 122, "end": 131, "id": 16, "annotation": null}, {"text": "were", "start": 132, "end": 136, "id": 17, "annotation": null}, {"text": "characterized", "start": 137, "end": 150, "id": 18, "annotation": null}, {"text": "by", "start": 151, "end": 153, "id": 19, "annotation": null}, {"text": "excitation", "start": 154, "end": 164, "id": 20, "annotation": null}, {"text": ",", "start": 165, "end": 166, "id": 21, "annotation": null}, {"text": "emission", "start": 167, "end": 175, "id": 22, "annotation": null}, {"text": "and", "start": 176, "end": 179, "id": 23, "annotation": null}, {"text": "decay", "start": 180, "end": 185, "id": 24, "annotation": null}, {"text": "time", "start": 186, "end": 190, "id": 25, "annotation": null}, {"text": "spectroscopy", "start": 191, "end": 203, "id": 26, "annotation": null}, {"text": ".", "start": 204, "end": 205, "id": 27, "annotation": null}], [{"text": "When", "start": 206, "end": 210, "id": 28, "annotation": null}, {"text": "excited", "start": 211, "end": 218, "id": 29, "annotation": null}, {"text": "by", "start": 219, "end": 221, "id": 30, "annotation": null}, {"text": "ultraviolet", "start": 222, "end": 233, "id": 31, "annotation": null}, {"text": "radiation", "start": 234, "end": 243, "id": 32, "annotation": null}, {"text": "the", "start": 244, "end": 247, "id": 33, "annotation": null}, {"text": "films", "start": 248, "end": 253, "id": 34, "annotation": null}, {"text": "emit", "start": 254, "end": 258, "id": 35, "annotation": null}, {"text": "a", "start": 259, "end": 260, "id": 36, "annotation": null}, {"text": "combination", "start": 261, "end": 272, "id": 37, "annotation": null}, {"text": "of", "start": 273, "end": 275, "id": 38, "annotation": null}, {"text": "blue", "start": 276, "end": 280, "id": 39, "annotation": null}, {"text": "and", "start": 281, "end": 284, "id": 40, "annotation": null}, {"text": "yellow", "start": 285, "end": 291, "id": 41, "annotation": null}, {"text": "wavelengths", "start": 292, "end": 303, "id": 42, "annotation": null}, {"text": "through", "start": 304, "end": 311, "id": 43, "annotation": null}, {"text": "an", "start": 312, "end": 314, "id": 44, "annotation": null}, {"text": "efficient", "start": 315, "end": 324, "id": 45, "annotation": null}, {"text": "energy", "start": 325, "end": 331, "id": 46, "annotation": null}, {"text": "transfer", "start": 332, "end": 340, "id": 47, "annotation": null}, {"text": "from", "start": 341, "end": 345, "id": 48, "annotation": null}, {"text": "Ce3", "start": 346, "end": 349, "id": 49, "annotation": null}, {"text": "+", "start": 350, "end": 351, "id": 50, "annotation": null}, {"text": "to", "start": 352, "end": 354, "id": 51, "annotation": null}, {"text": "Dy3", "start": 355, "end": 358, "id": 52, "annotation": null}, {"text": "+", "start": 359, "end": 360, "id": 53, "annotation": null}, {"text": "ions", "start": 361, "end": 365, "id": 54, "annotation": null}, {"text": "(", "start": 366, "end": 367, "id": 55, "annotation": null}, {"text": "up", "start": 368, "end": 370, "id": 56, "annotation": null}, {"text": "to", "start": 371, "end": 373, "id": 57, "annotation": null}, {"text": "around", "start": 374, "end": 380, "id": 58, "annotation": null}, {"text": "77", "start": 381, "end": 383, "id": 59, "annotation": null}, {"text": "%", "start": 384, "end": 385, "id": 60, "annotation": null}, {"text": ")", "start": 386, "end": 387, "id": 61, "annotation": null}, {"text": ".", "start": 388, "end": 389, "id": 62, "annotation": null}], [{"text": "From", "start": 390, "end": 394, "id": 63, "annotation": null}, {"text": "spectroscopic", "start": 395, "end": 408, "id": 64, "annotation": null}, {"text": "data", "start": 409, "end": 413, "id": 65, "annotation": null}, {"text": "it", "start": 414, "end": 416, "id": 66, "annotation": null}, {"text": "is", "start": 417, "end": 419, "id": 67, "annotation": null}, {"text": "inferred", "start": 420, "end": 428, "id": 68, "annotation": null}, {"text": "that", "start": 429, "end": 433, "id": 69, "annotation": null}, {"text": "such", "start": 434, "end": 438, "id": 70, "annotation": null}, {"text": "energy", "start": 439, "end": 445, "id": 71, "annotation": null}, {"text": "transfer", "start": 446, "end": 454, "id": 72, "annotation": null}, {"text": "is", "start": 455, "end": 457, "id": 73, "annotation": null}, {"text": "nonradiative", "start": 458, "end": 470, "id": 74, "annotation": null}, {"text": "in", "start": 471, "end": 473, "id": 75, "annotation": null}, {"text": "nature", "start": 474, "end": 480, "id": 76, "annotation": null}, {"text": "taking", "start": 481, "end": 487, "id": 77, "annotation": null}, {"text": "place", "start": 488, "end": 493, "id": 78, "annotation": null}, {"text": "between", "start": 494, "end": 501, "id": 79, "annotation": null}, {"text": "Ce3", "start": 502, "end": 505, "id": 80, "annotation": null}, {"text": "+", "start": 506, "end": 507, "id": 81, "annotation": null}, {"text": "and", "start": 508, "end": 511, "id": 82, "annotation": null}, {"text": "Dy3", "start": 512, "end": 515, "id": 83, "annotation": null}, {"text": "+", "start": 516, "end": 517, "id": 84, "annotation": null}, {"text": "clusters", "start": 518, "end": 526, "id": 85, "annotation": null}, {"text": "through", "start": 527, "end": 534, "id": 86, "annotation": null}, {"text": "a", "start": 535, "end": 536, "id": 87, "annotation": null}, {"text": "short", "start": 537, "end": 542, "id": 88, "annotation": null}, {"text": "-", "start": 543, "end": 544, "id": 89, "annotation": null}, {"text": "range", "start": 545, "end": 550, "id": 90, "annotation": null}, {"text": "interaction", "start": 551, "end": 562, "id": 91, "annotation": null}, {"text": "mechanism", "start": 563, "end": 572, "id": 92, "annotation": null}, {"text": ".", "start": 573, "end": 574, "id": 93, "annotation": null}], [{"text": "In", "start": 575, "end": 577, "id": 94, "annotation": null}, {"text": "the", "start": 578, "end": 581, "id": 95, "annotation": null}, {"text": "Ce3", "start": 582, "end": 585, "id": 96, "annotation": "DOPANT"}, {"text": "+", "start": 586, "end": 587, "id": 97, "annotation": "DOPANT"}, {"text": "doped", "start": 588, "end": 593, "id": 98, "annotation": null}, {"text": "single", "start": 594, "end": 600, "id": 99, "annotation": null}, {"text": "film", "start": 601, "end": 605, "id": 100, "annotation": null}, {"text": "the", "start": 606, "end": 609, "id": 101, "annotation": null}, {"text": "chromaticity", "start": 610, "end": 622, "id": 102, "annotation": null}, {"text": "coordinates", "start": 623, "end": 634, "id": 103, "annotation": null}, {"text": "are", "start": 635, "end": 638, "id": 104, "annotation": null}, {"text": "in", "start": 639, "end": 641, "id": 105, "annotation": null}, {"text": "the", "start": 642, "end": 645, "id": 106, "annotation": null}, {"text": "purplish", "start": 646, "end": 654, "id": 107, "annotation": null}, {"text": "blue", "start": 655, "end": 659, "id": 108, "annotation": null}, {"text": "region", "start": 660, "end": 666, "id": 109, "annotation": null}, {"text": ",", "start": 667, "end": 668, "id": 110, "annotation": null}, {"text": "whereas", "start": 669, "end": 676, "id": 111, "annotation": null}, {"text": "that", "start": 677, "end": 681, "id": 112, "annotation": null}, {"text": "in", "start": 682, "end": 684, "id": 113, "annotation": null}, {"text": "the", "start": 685, "end": 688, "id": 114, "annotation": null}, {"text": "cerium", "start": 689, "end": 695, "id": 115, "annotation": null}, {"text": "and", "start": 696, "end": 699, "id": 116, "annotation": null}, {"text": "dysprosium", "start": 700, "end": 710, "id": 117, "annotation": null}, {"text": "codoped", "start": 711, "end": 718, "id": 118, "annotation": null}, {"text": "films", "start": 719, "end": 724, "id": 119, "annotation": null}, {"text": "the", "start": 725, "end": 728, "id": 120, "annotation": null}, {"text": "coordinates", "start": 729, "end": 740, "id": 121, "annotation": null}, {"text": "move", "start": 741, "end": 745, "id": 122, "annotation": null}, {"text": "toward", "start": 746, "end": 752, "id": 123, "annotation": null}, {"text": "the", "start": 753, "end": 756, "id": 124, "annotation": null}, {"text": "white", "start": 757, "end": 762, "id": 125, "annotation": null}, {"text": "light", "start": 763, "end": 768, "id": 126, "annotation": null}, {"text": "emission", "start": 769, "end": 777, "id": 127, "annotation": null}, {"text": "region", "start": 778, "end": 784, "id": 128, "annotation": null}, {"text": ".", "start": 785, "end": 786, "id": 129, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "The influence of the kind and content of doped impurity on the electrical properties and their stability as well as on the light scattering characteristics and the surface texture formation obtainable by wet-chemical etching was investigated to develop transparent conducting impurity-doped ZnO thin films suitable for transparent electrode applications in thin-film solar cells. Al-, B- and Ga-doped ZnO (AZO, BZO and GZO) thin films were prepared on glass substrates at 200\u00b0C by doping each impurity at an appropriate content to achieve lower resistivity using a pulsed laser deposition and by varying the doped Al or Ga impurity content using r.f. superimposed d.c. magnetron sputtering deposition. The difference in the resulting electrical properties and their stability (air at 85% relative humidity and 85\u00b0C) among the AZO, BZO and GZO thin films is attributed to the content of each impurity rather than the kind of impurity. In evaluations of the light scattering characteristics and the surface texture formation in a 0.1% HCl solution at 25\u00b0C, the difference in the haze value obtainable among the AZO, BZO and GZO thin films is mainly attributed to the content of each impurity doped into the films. The AZO, BZO and GZO films prepared with doped impurity contents below approximately 2at.% are suitable for transparent electrode applications in thin-film solar cells, irrespective of the kind of impurity as well as the deposition method used.", "meta": {"doi": "10.1016/j.tsf.2012.07.141"}, "_input_hash": 1001006159, "_task_hash": -1407495589, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "influence", "start": 4, "end": 13, "id": 1, "annotation": null}, {"text": "of", "start": 14, "end": 16, "id": 2, "annotation": null}, {"text": "the", "start": 17, "end": 20, "id": 3, "annotation": null}, {"text": "kind", "start": 21, "end": 25, "id": 4, "annotation": null}, {"text": "and", "start": 26, "end": 29, "id": 5, "annotation": null}, {"text": "content", "start": 30, "end": 37, "id": 6, "annotation": null}, {"text": "of", "start": 38, "end": 40, "id": 7, "annotation": null}, {"text": "doped", "start": 41, "end": 46, "id": 8, "annotation": null}, {"text": "impurity", "start": 47, "end": 55, "id": 9, "annotation": "DOPANT"}, {"text": "on", "start": 56, "end": 58, "id": 10, "annotation": null}, {"text": "the", "start": 59, "end": 62, "id": 11, "annotation": null}, {"text": "electrical", "start": 63, "end": 73, "id": 12, "annotation": null}, {"text": "properties", "start": 74, "end": 84, "id": 13, "annotation": null}, {"text": "and", "start": 85, "end": 88, "id": 14, "annotation": null}, {"text": "their", "start": 89, "end": 94, "id": 15, "annotation": null}, {"text": "stability", "start": 95, "end": 104, "id": 16, "annotation": null}, {"text": "as", "start": 105, "end": 107, "id": 17, "annotation": null}, {"text": "well", "start": 108, "end": 112, "id": 18, "annotation": null}, {"text": "as", "start": 113, "end": 115, "id": 19, "annotation": null}, {"text": "on", "start": 116, "end": 118, "id": 20, "annotation": null}, {"text": "the", "start": 119, "end": 122, "id": 21, "annotation": null}, {"text": "light", "start": 123, "end": 128, "id": 22, "annotation": null}, {"text": "scattering", "start": 129, "end": 139, "id": 23, "annotation": null}, {"text": "characteristics", "start": 140, "end": 155, "id": 24, "annotation": null}, {"text": "and", "start": 156, "end": 159, "id": 25, "annotation": null}, {"text": "the", "start": 160, "end": 163, "id": 26, "annotation": null}, {"text": "surface", "start": 164, "end": 171, "id": 27, "annotation": null}, {"text": "texture", "start": 172, "end": 179, "id": 28, "annotation": null}, {"text": "formation", "start": 180, "end": 189, "id": 29, "annotation": null}, {"text": "obtainable", "start": 190, "end": 200, "id": 30, "annotation": null}, {"text": "by", "start": 201, "end": 203, "id": 31, "annotation": null}, {"text": "wet", "start": 204, "end": 207, "id": 32, "annotation": null}, {"text": "-", "start": 208, "end": 209, "id": 33, "annotation": null}, {"text": "chemical", "start": 210, "end": 218, "id": 34, "annotation": null}, {"text": "etching", "start": 219, "end": 226, "id": 35, "annotation": null}, {"text": "was", "start": 227, "end": 230, "id": 36, "annotation": null}, {"text": "investigated", "start": 231, "end": 243, "id": 37, "annotation": null}, {"text": "to", "start": 244, "end": 246, "id": 38, "annotation": null}, {"text": "develop", "start": 247, "end": 254, "id": 39, "annotation": null}, {"text": "transparent", "start": 255, "end": 266, "id": 40, "annotation": null}, {"text": "conducting", "start": 267, "end": 277, "id": 41, "annotation": null}, {"text": "impurity", "start": 278, "end": 286, "id": 42, "annotation": "DOPANT"}, {"text": "-", "start": 287, "end": 288, "id": 43, "annotation": null}, {"text": "doped", "start": 289, "end": 294, "id": 44, "annotation": null}, {"text": "ZnO", "start": 295, "end": 298, "id": 45, "annotation": "BASEMAT"}, {"text": "thin", "start": 299, "end": 303, "id": 46, "annotation": null}, {"text": "films", "start": 304, "end": 309, "id": 47, "annotation": null}, {"text": "suitable", "start": 310, "end": 318, "id": 48, "annotation": null}, {"text": "for", "start": 319, "end": 322, "id": 49, "annotation": null}, {"text": "transparent", "start": 323, "end": 334, "id": 50, "annotation": null}, {"text": "electrode", "start": 335, "end": 344, "id": 51, "annotation": null}, {"text": "applications", "start": 345, "end": 357, "id": 52, "annotation": null}, {"text": "in", "start": 358, "end": 360, "id": 53, "annotation": null}, {"text": "thin", "start": 361, "end": 365, "id": 54, "annotation": null}, {"text": "-", "start": 366, "end": 367, "id": 55, "annotation": null}, {"text": "film", "start": 368, "end": 372, "id": 56, "annotation": null}, {"text": "solar", "start": 373, "end": 378, "id": 57, "annotation": null}, {"text": "cells", "start": 379, "end": 384, "id": 58, "annotation": null}, {"text": ".", "start": 385, "end": 386, "id": 59, "annotation": null}], [{"text": "Al-", "start": 387, "end": 390, "id": 60, "annotation": "DOPANT"}, {"text": ",", "start": 391, "end": 392, "id": 61, "annotation": null}, {"text": "B-", "start": 393, "end": 395, "id": 62, "annotation": "DOPANT"}, {"text": "and", "start": 396, "end": 399, "id": 63, "annotation": null}, {"text": "Ga", "start": 400, "end": 402, "id": 64, "annotation": "DOPANT"}, {"text": "-", "start": 403, "end": 404, "id": 65, "annotation": null}, {"text": "doped", "start": 405, "end": 410, "id": 66, "annotation": null}, {"text": "ZnO", "start": 411, "end": 414, "id": 67, "annotation": "BASEMAT"}, {"text": "(", "start": 415, "end": 416, "id": 68, "annotation": null}, {"text": "AZO", "start": 417, "end": 420, "id": 69, "annotation": null}, {"text": ",", "start": 421, "end": 422, "id": 70, "annotation": null}, {"text": "BZO", "start": 423, "end": 426, "id": 71, "annotation": null}, {"text": "and", "start": 427, "end": 430, "id": 72, "annotation": null}, {"text": "GZO", "start": 431, "end": 434, "id": 73, "annotation": null}, {"text": ")", "start": 435, "end": 436, "id": 74, "annotation": null}, {"text": "thin", "start": 437, "end": 441, "id": 75, "annotation": null}, {"text": "films", "start": 442, "end": 447, "id": 76, "annotation": null}, {"text": "were", "start": 448, "end": 452, "id": 77, "annotation": null}, {"text": "prepared", "start": 453, "end": 461, "id": 78, "annotation": null}, {"text": "on", "start": 462, "end": 464, "id": 79, "annotation": null}, {"text": "glass", "start": 465, "end": 470, "id": 80, "annotation": null}, {"text": "substrates", "start": 471, "end": 481, "id": 81, "annotation": null}, {"text": "at", "start": 482, "end": 484, "id": 82, "annotation": null}, {"text": "200", "start": 485, "end": 488, "id": 83, "annotation": null}, {"text": "\u00b0", "start": 489, "end": 490, "id": 84, "annotation": null}, {"text": "C", "start": 491, "end": 492, "id": 85, "annotation": null}, {"text": "by", "start": 493, "end": 495, "id": 86, "annotation": null}, {"text": "doping", "start": 496, "end": 502, "id": 87, "annotation": null}, {"text": "each", "start": 503, "end": 507, "id": 88, "annotation": null}, {"text": "impurity", "start": 508, "end": 516, "id": 89, "annotation": "DOPANT"}, {"text": "at", "start": 517, "end": 519, "id": 90, "annotation": null}, {"text": "an", "start": 520, "end": 522, "id": 91, "annotation": null}, {"text": "appropriate", "start": 523, "end": 534, "id": 92, "annotation": null}, {"text": "content", "start": 535, "end": 542, "id": 93, "annotation": null}, {"text": "to", "start": 543, "end": 545, "id": 94, "annotation": null}, {"text": "achieve", "start": 546, "end": 553, "id": 95, "annotation": null}, {"text": "lower", "start": 554, "end": 559, "id": 96, "annotation": null}, {"text": "resistivity", "start": 560, "end": 571, "id": 97, "annotation": null}, {"text": "using", "start": 572, "end": 577, "id": 98, "annotation": null}, {"text": "a", "start": 578, "end": 579, "id": 99, "annotation": null}, {"text": "pulsed", "start": 580, "end": 586, "id": 100, "annotation": null}, {"text": "laser", "start": 587, "end": 592, "id": 101, "annotation": null}, {"text": "deposition", "start": 593, "end": 603, "id": 102, "annotation": null}, {"text": "and", "start": 604, "end": 607, "id": 103, "annotation": null}, {"text": "by", "start": 608, "end": 610, "id": 104, "annotation": null}, {"text": "varying", "start": 611, "end": 618, "id": 105, "annotation": null}, {"text": "the", "start": 619, "end": 622, "id": 106, "annotation": null}, {"text": "doped", "start": 623, "end": 628, "id": 107, "annotation": null}, {"text": "Al", "start": 629, "end": 631, "id": 108, "annotation": "DOPANT"}, {"text": "or", "start": 632, "end": 634, "id": 109, "annotation": null}, {"text": "Ga", "start": 635, "end": 637, "id": 110, "annotation": "DOPANT"}, {"text": "impurity", "start": 638, "end": 646, "id": 111, "annotation": null}, {"text": "content", "start": 647, "end": 654, "id": 112, "annotation": null}, {"text": "using", "start": 655, "end": 660, "id": 113, "annotation": null}, {"text": "r.f", "start": 661, "end": 664, "id": 114, "annotation": null}, {"text": ".", "start": 665, "end": 666, "id": 115, "annotation": null}], [{"text": "superimposed", "start": 667, "end": 679, "id": 116, "annotation": null}, {"text": "d.c", "start": 680, "end": 683, "id": 117, "annotation": null}, {"text": ".", "start": 684, "end": 685, "id": 118, "annotation": null}, {"text": "magnetron", "start": 686, "end": 695, "id": 119, "annotation": null}, {"text": "sputtering", "start": 696, "end": 706, "id": 120, "annotation": null}, {"text": "deposition", "start": 707, "end": 717, "id": 121, "annotation": null}, {"text": ".", "start": 718, "end": 719, "id": 122, "annotation": null}], [{"text": "The", "start": 720, "end": 723, "id": 123, "annotation": null}, {"text": "difference", "start": 724, "end": 734, "id": 124, "annotation": null}, {"text": "in", "start": 735, "end": 737, "id": 125, "annotation": null}, {"text": "the", "start": 738, "end": 741, "id": 126, "annotation": null}, {"text": "resulting", "start": 742, "end": 751, "id": 127, "annotation": null}, {"text": "electrical", "start": 752, "end": 762, "id": 128, "annotation": null}, {"text": "properties", "start": 763, "end": 773, "id": 129, "annotation": null}, {"text": "and", "start": 774, "end": 777, "id": 130, "annotation": null}, {"text": "their", "start": 778, "end": 783, "id": 131, "annotation": null}, {"text": "stability", "start": 784, "end": 793, "id": 132, "annotation": null}, {"text": "(", "start": 794, "end": 795, "id": 133, "annotation": null}, {"text": "air", "start": 796, "end": 799, "id": 134, "annotation": null}, {"text": "at", "start": 800, "end": 802, "id": 135, "annotation": null}, {"text": "85", "start": 803, "end": 805, "id": 136, "annotation": null}, {"text": "%", "start": 806, "end": 807, "id": 137, "annotation": null}, {"text": "relative", "start": 808, "end": 816, "id": 138, "annotation": null}, {"text": "humidity", "start": 817, "end": 825, "id": 139, "annotation": null}, {"text": "and", "start": 826, "end": 829, "id": 140, "annotation": null}, {"text": "85", "start": 830, "end": 832, "id": 141, "annotation": null}, {"text": "\u00b0", "start": 833, "end": 834, "id": 142, "annotation": null}, {"text": "C", "start": 835, "end": 836, "id": 143, "annotation": null}, {"text": ")", "start": 837, "end": 838, "id": 144, "annotation": null}, {"text": "among", "start": 839, "end": 844, "id": 145, "annotation": null}, {"text": "the", "start": 845, "end": 848, "id": 146, "annotation": null}, {"text": "AZO", "start": 849, "end": 852, "id": 147, "annotation": null}, {"text": ",", "start": 853, "end": 854, "id": 148, "annotation": null}, {"text": "BZO", "start": 855, "end": 858, "id": 149, "annotation": null}, {"text": "and", "start": 859, "end": 862, "id": 150, "annotation": null}, {"text": "GZO", "start": 863, "end": 866, "id": 151, "annotation": null}, {"text": "thin", "start": 867, "end": 871, "id": 152, "annotation": null}, {"text": "films", "start": 872, "end": 877, "id": 153, "annotation": null}, {"text": "is", "start": 878, "end": 880, "id": 154, "annotation": null}, {"text": "attributed", "start": 881, "end": 891, "id": 155, "annotation": null}, {"text": "to", "start": 892, "end": 894, "id": 156, "annotation": null}, {"text": "the", "start": 895, "end": 898, "id": 157, "annotation": null}, {"text": "content", "start": 899, "end": 906, "id": 158, "annotation": null}, {"text": "of", "start": 907, "end": 909, "id": 159, "annotation": null}, {"text": "each", "start": 910, "end": 914, "id": 160, "annotation": null}, {"text": "impurity", "start": 915, "end": 923, "id": 161, "annotation": null}, {"text": "rather", "start": 924, "end": 930, "id": 162, "annotation": null}, {"text": "than", "start": 931, "end": 935, "id": 163, "annotation": null}, {"text": "the", "start": 936, "end": 939, "id": 164, "annotation": null}, {"text": "kind", "start": 940, "end": 944, "id": 165, "annotation": null}, {"text": "of", "start": 945, "end": 947, "id": 166, "annotation": null}, {"text": "impurity", "start": 948, "end": 956, "id": 167, "annotation": null}, {"text": ".", "start": 957, "end": 958, "id": 168, "annotation": null}], [{"text": "In", "start": 959, "end": 961, "id": 169, "annotation": null}, {"text": "evaluations", "start": 962, "end": 973, "id": 170, "annotation": null}, {"text": "of", "start": 974, "end": 976, "id": 171, "annotation": null}, {"text": "the", "start": 977, "end": 980, "id": 172, "annotation": null}, {"text": "light", "start": 981, "end": 986, "id": 173, "annotation": null}, {"text": "scattering", "start": 987, "end": 997, "id": 174, "annotation": null}, {"text": "characteristics", "start": 998, "end": 1013, "id": 175, "annotation": null}, {"text": "and", "start": 1014, "end": 1017, "id": 176, "annotation": null}, {"text": "the", "start": 1018, "end": 1021, "id": 177, "annotation": null}, {"text": "surface", "start": 1022, "end": 1029, "id": 178, "annotation": null}, {"text": "texture", "start": 1030, "end": 1037, "id": 179, "annotation": null}, {"text": "formation", "start": 1038, "end": 1047, "id": 180, "annotation": null}, {"text": "in", "start": 1048, "end": 1050, "id": 181, "annotation": null}, {"text": "a", "start": 1051, "end": 1052, "id": 182, "annotation": null}, {"text": "0.1", "start": 1053, "end": 1056, "id": 183, "annotation": null}, {"text": "%", "start": 1057, "end": 1058, "id": 184, "annotation": null}, {"text": "HCl", "start": 1059, "end": 1062, "id": 185, "annotation": null}, {"text": "solution", "start": 1063, "end": 1071, "id": 186, "annotation": null}, {"text": "at", "start": 1072, "end": 1074, "id": 187, "annotation": null}, {"text": "25", "start": 1075, "end": 1077, "id": 188, "annotation": null}, {"text": "\u00b0", "start": 1078, "end": 1079, "id": 189, "annotation": null}, {"text": "C", "start": 1080, "end": 1081, "id": 190, "annotation": null}, {"text": ",", "start": 1082, "end": 1083, "id": 191, "annotation": null}, {"text": "the", "start": 1084, "end": 1087, "id": 192, "annotation": null}, {"text": "difference", "start": 1088, "end": 1098, "id": 193, "annotation": null}, {"text": "in", "start": 1099, "end": 1101, "id": 194, "annotation": null}, {"text": "the", "start": 1102, "end": 1105, "id": 195, "annotation": null}, {"text": "haze", "start": 1106, "end": 1110, "id": 196, "annotation": null}, {"text": "value", "start": 1111, "end": 1116, "id": 197, "annotation": null}, {"text": "obtainable", "start": 1117, "end": 1127, "id": 198, "annotation": null}, {"text": "among", "start": 1128, "end": 1133, "id": 199, "annotation": null}, {"text": "the", "start": 1134, "end": 1137, "id": 200, "annotation": null}, {"text": "AZO", "start": 1138, "end": 1141, "id": 201, "annotation": null}, {"text": ",", "start": 1142, "end": 1143, "id": 202, "annotation": null}, {"text": "BZO", "start": 1144, "end": 1147, "id": 203, "annotation": null}, {"text": "and", "start": 1148, "end": 1151, "id": 204, "annotation": null}, {"text": "GZO", "start": 1152, "end": 1155, "id": 205, "annotation": null}, {"text": "thin", "start": 1156, "end": 1160, "id": 206, "annotation": null}, {"text": "films", "start": 1161, "end": 1166, "id": 207, "annotation": null}, {"text": "is", "start": 1167, "end": 1169, "id": 208, "annotation": null}, {"text": "mainly", "start": 1170, "end": 1176, "id": 209, "annotation": null}, {"text": "attributed", "start": 1177, "end": 1187, "id": 210, "annotation": null}, {"text": "to", "start": 1188, "end": 1190, "id": 211, "annotation": null}, {"text": "the", "start": 1191, "end": 1194, "id": 212, "annotation": null}, {"text": "content", "start": 1195, "end": 1202, "id": 213, "annotation": null}, {"text": "of", "start": 1203, "end": 1205, "id": 214, "annotation": null}, {"text": "each", "start": 1206, "end": 1210, "id": 215, "annotation": null}, {"text": "impurity", "start": 1211, "end": 1219, "id": 216, "annotation": null}, {"text": "doped", "start": 1220, "end": 1225, "id": 217, "annotation": null}, {"text": "into", "start": 1226, "end": 1230, "id": 218, "annotation": null}, {"text": "the", "start": 1231, "end": 1234, "id": 219, "annotation": null}, {"text": "films", "start": 1235, "end": 1240, "id": 220, "annotation": null}, {"text": ".", "start": 1241, "end": 1242, "id": 221, "annotation": null}], [{"text": "The", "start": 1243, "end": 1246, "id": 222, "annotation": null}, {"text": "AZO", "start": 1247, "end": 1250, "id": 223, "annotation": null}, {"text": ",", "start": 1251, "end": 1252, "id": 224, "annotation": null}, {"text": "BZO", "start": 1253, "end": 1256, "id": 225, "annotation": null}, {"text": "and", "start": 1257, "end": 1260, "id": 226, "annotation": null}, {"text": "GZO", "start": 1261, "end": 1264, "id": 227, "annotation": null}, {"text": "films", "start": 1265, "end": 1270, "id": 228, "annotation": null}, {"text": "prepared", "start": 1271, "end": 1279, "id": 229, "annotation": null}, {"text": "with", "start": 1280, "end": 1284, "id": 230, "annotation": null}, {"text": "doped", "start": 1285, "end": 1290, "id": 231, "annotation": null}, {"text": "impurity", "start": 1291, "end": 1299, "id": 232, "annotation": "DOPANT"}, {"text": "contents", "start": 1300, "end": 1308, "id": 233, "annotation": null}, {"text": "below", "start": 1309, "end": 1314, "id": 234, "annotation": "DOPMODQ"}, {"text": "approximately", "start": 1315, "end": 1328, "id": 235, "annotation": null}, {"text": "2at.%", "start": 1329, "end": 1334, "id": 236, "annotation": "DOPMODQ"}, {"text": "are", "start": 1335, "end": 1338, "id": 237, "annotation": null}, {"text": "suitable", "start": 1339, "end": 1347, "id": 238, "annotation": null}, {"text": "for", "start": 1348, "end": 1351, "id": 239, "annotation": null}, {"text": "transparent", "start": 1352, "end": 1363, "id": 240, "annotation": null}, {"text": "electrode", "start": 1364, "end": 1373, "id": 241, "annotation": null}, {"text": "applications", "start": 1374, "end": 1386, "id": 242, "annotation": null}, {"text": "in", "start": 1387, "end": 1389, "id": 243, "annotation": null}, {"text": "thin", "start": 1390, "end": 1394, "id": 244, "annotation": null}, {"text": "-", "start": 1395, "end": 1396, "id": 245, "annotation": null}, {"text": "film", "start": 1397, "end": 1401, "id": 246, "annotation": null}, {"text": "solar", "start": 1402, "end": 1407, "id": 247, "annotation": null}, {"text": "cells", "start": 1408, "end": 1413, "id": 248, "annotation": null}, {"text": ",", "start": 1414, "end": 1415, "id": 249, "annotation": null}, {"text": "irrespective", "start": 1416, "end": 1428, "id": 250, "annotation": null}, {"text": "of", "start": 1429, "end": 1431, "id": 251, "annotation": null}, {"text": "the", "start": 1432, "end": 1435, "id": 252, "annotation": null}, {"text": "kind", "start": 1436, "end": 1440, "id": 253, "annotation": null}, {"text": "of", "start": 1441, "end": 1443, "id": 254, "annotation": null}, {"text": "impurity", "start": 1444, "end": 1452, "id": 255, "annotation": null}, {"text": "as", "start": 1453, "end": 1455, "id": 256, "annotation": null}, {"text": "well", "start": 1456, "end": 1460, "id": 257, "annotation": null}, {"text": "as", "start": 1461, "end": 1463, "id": 258, "annotation": null}, {"text": "the", "start": 1464, "end": 1467, "id": 259, "annotation": null}, {"text": "deposition", "start": 1468, "end": 1478, "id": 260, "annotation": null}, {"text": "method", "start": 1479, "end": 1485, "id": 261, "annotation": null}, {"text": "used", "start": 1486, "end": 1490, "id": 262, "annotation": null}, {"text": ".", "start": 1491, "end": 1492, "id": 263, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "The influence of the kind and content of doped impurity on the electrical properties and their stability as well as on the light scattering characteristics and the surface texture formation obtainable by wet-chemical etching was investigated to develop transparent conducting impurity-doped ZnO thin films suitable for transparent electrode applications in thin-film solar cells. Al-, B- and Ga-doped ZnO (AZO, BZO and GZO) thin films were prepared on glass substrates at 200\u00b0C by doping each impurity at an appropriate content to achieve lower resistivity using a pulsed laser deposition and by varying the doped Al or Ga impurity content using r.f. superimposed d.c. magnetron sputtering deposition. The difference in the resulting electrical properties and their stability (air at 85% relative humidity and 85\u00b0C) among the AZO, BZO and GZO thin films is attributed to the content of each impurity rather than the kind of impurity. In evaluations of the light scattering characteristics and the surface texture formation in a 0.1% HCl solution at 25\u00b0C, the difference in the haze value obtainable among the AZO, BZO and GZO thin films is mainly attributed to the content of each impurity doped into the films. The AZO, BZO and GZO films prepared with doped impurity contents below approximately 2at.% are suitable for transparent electrode applications in thin-film solar cells, irrespective of the kind of impurity as well as the deposition method used.", "meta": {"doi": "10.1016/j.tsf.2012.07.141"}, "_input_hash": 1001006159, "_task_hash": -1407495589, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "influence", "start": 4, "end": 13, "id": 1, "annotation": null}, {"text": "of", "start": 14, "end": 16, "id": 2, "annotation": null}, {"text": "the", "start": 17, "end": 20, "id": 3, "annotation": null}, {"text": "kind", "start": 21, "end": 25, "id": 4, "annotation": null}, {"text": "and", "start": 26, "end": 29, "id": 5, "annotation": null}, {"text": "content", "start": 30, "end": 37, "id": 6, "annotation": null}, {"text": "of", "start": 38, "end": 40, "id": 7, "annotation": null}, {"text": "doped", "start": 41, "end": 46, "id": 8, "annotation": null}, {"text": "impurity", "start": 47, "end": 55, "id": 9, "annotation": "DOPANT"}, {"text": "on", "start": 56, "end": 58, "id": 10, "annotation": null}, {"text": "the", "start": 59, "end": 62, "id": 11, "annotation": null}, {"text": "electrical", "start": 63, "end": 73, "id": 12, "annotation": null}, {"text": "properties", "start": 74, "end": 84, "id": 13, "annotation": null}, {"text": "and", "start": 85, "end": 88, "id": 14, "annotation": null}, {"text": "their", "start": 89, "end": 94, "id": 15, "annotation": null}, {"text": "stability", "start": 95, "end": 104, "id": 16, "annotation": null}, {"text": "as", "start": 105, "end": 107, "id": 17, "annotation": null}, {"text": "well", "start": 108, "end": 112, "id": 18, "annotation": null}, {"text": "as", "start": 113, "end": 115, "id": 19, "annotation": null}, {"text": "on", "start": 116, "end": 118, "id": 20, "annotation": null}, {"text": "the", "start": 119, "end": 122, "id": 21, "annotation": null}, {"text": "light", "start": 123, "end": 128, "id": 22, "annotation": null}, {"text": "scattering", "start": 129, "end": 139, "id": 23, "annotation": null}, {"text": "characteristics", "start": 140, "end": 155, "id": 24, "annotation": null}, {"text": "and", "start": 156, "end": 159, "id": 25, "annotation": null}, {"text": "the", "start": 160, "end": 163, "id": 26, "annotation": null}, {"text": "surface", "start": 164, "end": 171, "id": 27, "annotation": null}, {"text": "texture", "start": 172, "end": 179, "id": 28, "annotation": null}, {"text": "formation", "start": 180, "end": 189, "id": 29, "annotation": null}, {"text": "obtainable", "start": 190, "end": 200, "id": 30, "annotation": null}, {"text": "by", "start": 201, "end": 203, "id": 31, "annotation": null}, {"text": "wet", "start": 204, "end": 207, "id": 32, "annotation": null}, {"text": "-", "start": 208, "end": 209, "id": 33, "annotation": null}, {"text": "chemical", "start": 210, "end": 218, "id": 34, "annotation": null}, {"text": "etching", "start": 219, "end": 226, "id": 35, "annotation": null}, {"text": "was", "start": 227, "end": 230, "id": 36, "annotation": null}, {"text": "investigated", "start": 231, "end": 243, "id": 37, "annotation": null}, {"text": "to", "start": 244, "end": 246, "id": 38, "annotation": null}, {"text": "develop", "start": 247, "end": 254, "id": 39, "annotation": null}, {"text": "transparent", "start": 255, "end": 266, "id": 40, "annotation": null}, {"text": "conducting", "start": 267, "end": 277, "id": 41, "annotation": null}, {"text": "impurity", "start": 278, "end": 286, "id": 42, "annotation": "DOPANT"}, {"text": "-", "start": 287, "end": 288, "id": 43, "annotation": null}, {"text": "doped", "start": 289, "end": 294, "id": 44, "annotation": null}, {"text": "ZnO", "start": 295, "end": 298, "id": 45, "annotation": "BASEMAT"}, {"text": "thin", "start": 299, "end": 303, "id": 46, "annotation": null}, {"text": "films", "start": 304, "end": 309, "id": 47, "annotation": null}, {"text": "suitable", "start": 310, "end": 318, "id": 48, "annotation": null}, {"text": "for", "start": 319, "end": 322, "id": 49, "annotation": null}, {"text": "transparent", "start": 323, "end": 334, "id": 50, "annotation": null}, {"text": "electrode", "start": 335, "end": 344, "id": 51, "annotation": null}, {"text": "applications", "start": 345, "end": 357, "id": 52, "annotation": null}, {"text": "in", "start": 358, "end": 360, "id": 53, "annotation": null}, {"text": "thin", "start": 361, "end": 365, "id": 54, "annotation": null}, {"text": "-", "start": 366, "end": 367, "id": 55, "annotation": null}, {"text": "film", "start": 368, "end": 372, "id": 56, "annotation": null}, {"text": "solar", "start": 373, "end": 378, "id": 57, "annotation": null}, {"text": "cells", "start": 379, "end": 384, "id": 58, "annotation": null}, {"text": ".", "start": 385, "end": 386, "id": 59, "annotation": null}], [{"text": "Al-", "start": 387, "end": 390, "id": 60, "annotation": "DOPANT"}, {"text": ",", "start": 391, "end": 392, "id": 61, "annotation": null}, {"text": "B-", "start": 393, "end": 395, "id": 62, "annotation": "DOPANT"}, {"text": "and", "start": 396, "end": 399, "id": 63, "annotation": null}, {"text": "Ga", "start": 400, "end": 402, "id": 64, "annotation": "DOPANT"}, {"text": "-", "start": 403, "end": 404, "id": 65, "annotation": null}, {"text": "doped", "start": 405, "end": 410, "id": 66, "annotation": null}, {"text": "ZnO", "start": 411, "end": 414, "id": 67, "annotation": "BASEMAT"}, {"text": "(", "start": 415, "end": 416, "id": 68, "annotation": null}, {"text": "AZO", "start": 417, "end": 420, "id": 69, "annotation": null}, {"text": ",", "start": 421, "end": 422, "id": 70, "annotation": null}, {"text": "BZO", "start": 423, "end": 426, "id": 71, "annotation": null}, {"text": "and", "start": 427, "end": 430, "id": 72, "annotation": null}, {"text": "GZO", "start": 431, "end": 434, "id": 73, "annotation": null}, {"text": ")", "start": 435, "end": 436, "id": 74, "annotation": null}, {"text": "thin", "start": 437, "end": 441, "id": 75, "annotation": null}, {"text": "films", "start": 442, "end": 447, "id": 76, "annotation": null}, {"text": "were", "start": 448, "end": 452, "id": 77, "annotation": null}, {"text": "prepared", "start": 453, "end": 461, "id": 78, "annotation": null}, {"text": "on", "start": 462, "end": 464, "id": 79, "annotation": null}, {"text": "glass", "start": 465, "end": 470, "id": 80, "annotation": null}, {"text": "substrates", "start": 471, "end": 481, "id": 81, "annotation": null}, {"text": "at", "start": 482, "end": 484, "id": 82, "annotation": null}, {"text": "200", "start": 485, "end": 488, "id": 83, "annotation": null}, {"text": "\u00b0", "start": 489, "end": 490, "id": 84, "annotation": null}, {"text": "C", "start": 491, "end": 492, "id": 85, "annotation": null}, {"text": "by", "start": 493, "end": 495, "id": 86, "annotation": null}, {"text": "doping", "start": 496, "end": 502, "id": 87, "annotation": null}, {"text": "each", "start": 503, "end": 507, "id": 88, "annotation": null}, {"text": "impurity", "start": 508, "end": 516, "id": 89, "annotation": "DOPANT"}, {"text": "at", "start": 517, "end": 519, "id": 90, "annotation": null}, {"text": "an", "start": 520, "end": 522, "id": 91, "annotation": null}, {"text": "appropriate", "start": 523, "end": 534, "id": 92, "annotation": null}, {"text": "content", "start": 535, "end": 542, "id": 93, "annotation": null}, {"text": "to", "start": 543, "end": 545, "id": 94, "annotation": null}, {"text": "achieve", "start": 546, "end": 553, "id": 95, "annotation": null}, {"text": "lower", "start": 554, "end": 559, "id": 96, "annotation": null}, {"text": "resistivity", "start": 560, "end": 571, "id": 97, "annotation": null}, {"text": "using", "start": 572, "end": 577, "id": 98, "annotation": null}, {"text": "a", "start": 578, "end": 579, "id": 99, "annotation": null}, {"text": "pulsed", "start": 580, "end": 586, "id": 100, "annotation": null}, {"text": "laser", "start": 587, "end": 592, "id": 101, "annotation": null}, {"text": "deposition", "start": 593, "end": 603, "id": 102, "annotation": null}, {"text": "and", "start": 604, "end": 607, "id": 103, "annotation": null}, {"text": "by", "start": 608, "end": 610, "id": 104, "annotation": null}, {"text": "varying", "start": 611, "end": 618, "id": 105, "annotation": null}, {"text": "the", "start": 619, "end": 622, "id": 106, "annotation": null}, {"text": "doped", "start": 623, "end": 628, "id": 107, "annotation": null}, {"text": "Al", "start": 629, "end": 631, "id": 108, "annotation": "DOPANT"}, {"text": "or", "start": 632, "end": 634, "id": 109, "annotation": null}, {"text": "Ga", "start": 635, "end": 637, "id": 110, "annotation": "DOPANT"}, {"text": "impurity", "start": 638, "end": 646, "id": 111, "annotation": null}, {"text": "content", "start": 647, "end": 654, "id": 112, "annotation": null}, {"text": "using", "start": 655, "end": 660, "id": 113, "annotation": null}, {"text": "r.f", "start": 661, "end": 664, "id": 114, "annotation": null}, {"text": ".", "start": 665, "end": 666, "id": 115, "annotation": null}], [{"text": "superimposed", "start": 667, "end": 679, "id": 116, "annotation": null}, {"text": "d.c", "start": 680, "end": 683, "id": 117, "annotation": null}, {"text": ".", "start": 684, "end": 685, "id": 118, "annotation": null}, {"text": "magnetron", "start": 686, "end": 695, "id": 119, "annotation": null}, {"text": "sputtering", "start": 696, "end": 706, "id": 120, "annotation": null}, {"text": "deposition", "start": 707, "end": 717, "id": 121, "annotation": null}, {"text": ".", "start": 718, "end": 719, "id": 122, "annotation": null}], [{"text": "The", "start": 720, "end": 723, "id": 123, "annotation": null}, {"text": "difference", "start": 724, "end": 734, "id": 124, "annotation": null}, {"text": "in", "start": 735, "end": 737, "id": 125, "annotation": null}, {"text": "the", "start": 738, "end": 741, "id": 126, "annotation": null}, {"text": "resulting", "start": 742, "end": 751, "id": 127, "annotation": null}, {"text": "electrical", "start": 752, "end": 762, "id": 128, "annotation": null}, {"text": "properties", "start": 763, "end": 773, "id": 129, "annotation": null}, {"text": "and", "start": 774, "end": 777, "id": 130, "annotation": null}, {"text": "their", "start": 778, "end": 783, "id": 131, "annotation": null}, {"text": "stability", "start": 784, "end": 793, "id": 132, "annotation": null}, {"text": "(", "start": 794, "end": 795, "id": 133, "annotation": null}, {"text": "air", "start": 796, "end": 799, "id": 134, "annotation": null}, {"text": "at", "start": 800, "end": 802, "id": 135, "annotation": null}, {"text": "85", "start": 803, "end": 805, "id": 136, "annotation": null}, {"text": "%", "start": 806, "end": 807, "id": 137, "annotation": null}, {"text": "relative", "start": 808, "end": 816, "id": 138, "annotation": null}, {"text": "humidity", "start": 817, "end": 825, "id": 139, "annotation": null}, {"text": "and", "start": 826, "end": 829, "id": 140, "annotation": null}, {"text": "85", "start": 830, "end": 832, "id": 141, "annotation": null}, {"text": "\u00b0", "start": 833, "end": 834, "id": 142, "annotation": null}, {"text": "C", "start": 835, "end": 836, "id": 143, "annotation": null}, {"text": ")", "start": 837, "end": 838, "id": 144, "annotation": null}, {"text": "among", "start": 839, "end": 844, "id": 145, "annotation": null}, {"text": "the", "start": 845, "end": 848, "id": 146, "annotation": null}, {"text": "AZO", "start": 849, "end": 852, "id": 147, "annotation": null}, {"text": ",", "start": 853, "end": 854, "id": 148, "annotation": null}, {"text": "BZO", "start": 855, "end": 858, "id": 149, "annotation": null}, {"text": "and", "start": 859, "end": 862, "id": 150, "annotation": null}, {"text": "GZO", "start": 863, "end": 866, "id": 151, "annotation": null}, {"text": "thin", "start": 867, "end": 871, "id": 152, "annotation": null}, {"text": "films", "start": 872, "end": 877, "id": 153, "annotation": null}, {"text": "is", "start": 878, "end": 880, "id": 154, "annotation": null}, {"text": "attributed", "start": 881, "end": 891, "id": 155, "annotation": null}, {"text": "to", "start": 892, "end": 894, "id": 156, "annotation": null}, {"text": "the", "start": 895, "end": 898, "id": 157, "annotation": null}, {"text": "content", "start": 899, "end": 906, "id": 158, "annotation": null}, {"text": "of", "start": 907, "end": 909, "id": 159, "annotation": null}, {"text": "each", "start": 910, "end": 914, "id": 160, "annotation": null}, {"text": "impurity", "start": 915, "end": 923, "id": 161, "annotation": null}, {"text": "rather", "start": 924, "end": 930, "id": 162, "annotation": null}, {"text": "than", "start": 931, "end": 935, "id": 163, "annotation": null}, {"text": "the", "start": 936, "end": 939, "id": 164, "annotation": null}, {"text": "kind", "start": 940, "end": 944, "id": 165, "annotation": null}, {"text": "of", "start": 945, "end": 947, "id": 166, "annotation": null}, {"text": "impurity", "start": 948, "end": 956, "id": 167, "annotation": null}, {"text": ".", "start": 957, "end": 958, "id": 168, "annotation": null}], [{"text": "In", "start": 959, "end": 961, "id": 169, "annotation": null}, {"text": "evaluations", "start": 962, "end": 973, "id": 170, "annotation": null}, {"text": "of", "start": 974, "end": 976, "id": 171, "annotation": null}, {"text": "the", "start": 977, "end": 980, "id": 172, "annotation": null}, {"text": "light", "start": 981, "end": 986, "id": 173, "annotation": null}, {"text": "scattering", "start": 987, "end": 997, "id": 174, "annotation": null}, {"text": "characteristics", "start": 998, "end": 1013, "id": 175, "annotation": null}, {"text": "and", "start": 1014, "end": 1017, "id": 176, "annotation": null}, {"text": "the", "start": 1018, "end": 1021, "id": 177, "annotation": null}, {"text": "surface", "start": 1022, "end": 1029, "id": 178, "annotation": null}, {"text": "texture", "start": 1030, "end": 1037, "id": 179, "annotation": null}, {"text": "formation", "start": 1038, "end": 1047, "id": 180, "annotation": null}, {"text": "in", "start": 1048, "end": 1050, "id": 181, "annotation": null}, {"text": "a", "start": 1051, "end": 1052, "id": 182, "annotation": null}, {"text": "0.1", "start": 1053, "end": 1056, "id": 183, "annotation": null}, {"text": "%", "start": 1057, "end": 1058, "id": 184, "annotation": null}, {"text": "HCl", "start": 1059, "end": 1062, "id": 185, "annotation": null}, {"text": "solution", "start": 1063, "end": 1071, "id": 186, "annotation": null}, {"text": "at", "start": 1072, "end": 1074, "id": 187, "annotation": null}, {"text": "25", "start": 1075, "end": 1077, "id": 188, "annotation": null}, {"text": "\u00b0", "start": 1078, "end": 1079, "id": 189, "annotation": null}, {"text": "C", "start": 1080, "end": 1081, "id": 190, "annotation": null}, {"text": ",", "start": 1082, "end": 1083, "id": 191, "annotation": null}, {"text": "the", "start": 1084, "end": 1087, "id": 192, "annotation": null}, {"text": "difference", "start": 1088, "end": 1098, "id": 193, "annotation": null}, {"text": "in", "start": 1099, "end": 1101, "id": 194, "annotation": null}, {"text": "the", "start": 1102, "end": 1105, "id": 195, "annotation": null}, {"text": "haze", "start": 1106, "end": 1110, "id": 196, "annotation": null}, {"text": "value", "start": 1111, "end": 1116, "id": 197, "annotation": null}, {"text": "obtainable", "start": 1117, "end": 1127, "id": 198, "annotation": null}, {"text": "among", "start": 1128, "end": 1133, "id": 199, "annotation": null}, {"text": "the", "start": 1134, "end": 1137, "id": 200, "annotation": null}, {"text": "AZO", "start": 1138, "end": 1141, "id": 201, "annotation": null}, {"text": ",", "start": 1142, "end": 1143, "id": 202, "annotation": null}, {"text": "BZO", "start": 1144, "end": 1147, "id": 203, "annotation": null}, {"text": "and", "start": 1148, "end": 1151, "id": 204, "annotation": null}, {"text": "GZO", "start": 1152, "end": 1155, "id": 205, "annotation": null}, {"text": "thin", "start": 1156, "end": 1160, "id": 206, "annotation": null}, {"text": "films", "start": 1161, "end": 1166, "id": 207, "annotation": null}, {"text": "is", "start": 1167, "end": 1169, "id": 208, "annotation": null}, {"text": "mainly", "start": 1170, "end": 1176, "id": 209, "annotation": null}, {"text": "attributed", "start": 1177, "end": 1187, "id": 210, "annotation": null}, {"text": "to", "start": 1188, "end": 1190, "id": 211, "annotation": null}, {"text": "the", "start": 1191, "end": 1194, "id": 212, "annotation": null}, {"text": "content", "start": 1195, "end": 1202, "id": 213, "annotation": null}, {"text": "of", "start": 1203, "end": 1205, "id": 214, "annotation": null}, {"text": "each", "start": 1206, "end": 1210, "id": 215, "annotation": null}, {"text": "impurity", "start": 1211, "end": 1219, "id": 216, "annotation": null}, {"text": "doped", "start": 1220, "end": 1225, "id": 217, "annotation": null}, {"text": "into", "start": 1226, "end": 1230, "id": 218, "annotation": null}, {"text": "the", "start": 1231, "end": 1234, "id": 219, "annotation": null}, {"text": "films", "start": 1235, "end": 1240, "id": 220, "annotation": null}, {"text": ".", "start": 1241, "end": 1242, "id": 221, "annotation": null}], [{"text": "The", "start": 1243, "end": 1246, "id": 222, "annotation": null}, {"text": "AZO", "start": 1247, "end": 1250, "id": 223, "annotation": null}, {"text": ",", "start": 1251, "end": 1252, "id": 224, "annotation": null}, {"text": "BZO", "start": 1253, "end": 1256, "id": 225, "annotation": null}, {"text": "and", "start": 1257, "end": 1260, "id": 226, "annotation": null}, {"text": "GZO", "start": 1261, "end": 1264, "id": 227, "annotation": null}, {"text": "films", "start": 1265, "end": 1270, "id": 228, "annotation": null}, {"text": "prepared", "start": 1271, "end": 1279, "id": 229, "annotation": null}, {"text": "with", "start": 1280, "end": 1284, "id": 230, "annotation": null}, {"text": "doped", "start": 1285, "end": 1290, "id": 231, "annotation": null}, {"text": "impurity", "start": 1291, "end": 1299, "id": 232, "annotation": "DOPANT"}, {"text": "contents", "start": 1300, "end": 1308, "id": 233, "annotation": null}, {"text": "below", "start": 1309, "end": 1314, "id": 234, "annotation": "DOPMODQ"}, {"text": "approximately", "start": 1315, "end": 1328, "id": 235, "annotation": "DOPMODQ"}, {"text": "2at.%", "start": 1329, "end": 1334, "id": 236, "annotation": "DOPMODQ"}, {"text": "are", "start": 1335, "end": 1338, "id": 237, "annotation": null}, {"text": "suitable", "start": 1339, "end": 1347, "id": 238, "annotation": null}, {"text": "for", "start": 1348, "end": 1351, "id": 239, "annotation": null}, {"text": "transparent", "start": 1352, "end": 1363, "id": 240, "annotation": null}, {"text": "electrode", "start": 1364, "end": 1373, "id": 241, "annotation": null}, {"text": "applications", "start": 1374, "end": 1386, "id": 242, "annotation": null}, {"text": "in", "start": 1387, "end": 1389, "id": 243, "annotation": null}, {"text": "thin", "start": 1390, "end": 1394, "id": 244, "annotation": null}, {"text": "-", "start": 1395, "end": 1396, "id": 245, "annotation": null}, {"text": "film", "start": 1397, "end": 1401, "id": 246, "annotation": null}, {"text": "solar", "start": 1402, "end": 1407, "id": 247, "annotation": null}, {"text": "cells", "start": 1408, "end": 1413, "id": 248, "annotation": null}, {"text": ",", "start": 1414, "end": 1415, "id": 249, "annotation": null}, {"text": "irrespective", "start": 1416, "end": 1428, "id": 250, "annotation": null}, {"text": "of", "start": 1429, "end": 1431, "id": 251, "annotation": null}, {"text": "the", "start": 1432, "end": 1435, "id": 252, "annotation": null}, {"text": "kind", "start": 1436, "end": 1440, "id": 253, "annotation": null}, {"text": "of", "start": 1441, "end": 1443, "id": 254, "annotation": null}, {"text": "impurity", "start": 1444, "end": 1452, "id": 255, "annotation": null}, {"text": "as", "start": 1453, "end": 1455, "id": 256, "annotation": null}, {"text": "well", "start": 1456, "end": 1460, "id": 257, "annotation": null}, {"text": "as", "start": 1461, "end": 1463, "id": 258, "annotation": null}, {"text": "the", "start": 1464, "end": 1467, "id": 259, "annotation": null}, {"text": "deposition", "start": 1468, "end": 1478, "id": 260, "annotation": null}, {"text": "method", "start": 1479, "end": 1485, "id": 261, "annotation": null}, {"text": "used", "start": 1486, "end": 1490, "id": 262, "annotation": null}, {"text": ".", "start": 1491, "end": 1492, "id": 263, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "We present theoretical analysis of a diagnostic method for detecting core-shell mixing in laser-fusion experiments, based on measuring the emission and absorption spectrum of a Ti-doped layer embedded within the target shell. The doped target layer is placed away from the shell-fuel interface so that the Ti remains relatively cool throughout the implosion. As a result, only absorption lines are observed, of 1s-2l transitions in ions with an unfilled L shell. However, for a sufficiently strong mixing, some Ti material migrates to the interface region and emits He-and H-like lines. A particular target experiment is simulated and the expected experimental signature calculated and analyzed.", "meta": {"doi": "10.1016/0022-4073(96)00036-2"}, "_input_hash": 696977600, "_task_hash": -1789891544, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "present", "start": 3, "end": 10, "id": 1, "annotation": null}, {"text": "theoretical", "start": 11, "end": 22, "id": 2, "annotation": null}, {"text": "analysis", "start": 23, "end": 31, "id": 3, "annotation": null}, {"text": "of", "start": 32, "end": 34, "id": 4, "annotation": null}, {"text": "a", "start": 35, "end": 36, "id": 5, "annotation": null}, {"text": "diagnostic", "start": 37, "end": 47, "id": 6, "annotation": null}, {"text": "method", "start": 48, "end": 54, "id": 7, "annotation": null}, {"text": "for", "start": 55, "end": 58, "id": 8, "annotation": null}, {"text": "detecting", "start": 59, "end": 68, "id": 9, "annotation": null}, {"text": "core", "start": 69, "end": 73, "id": 10, "annotation": null}, {"text": "-", "start": 74, "end": 75, "id": 11, "annotation": null}, {"text": "shell", "start": 76, "end": 81, "id": 12, "annotation": null}, {"text": "mixing", "start": 82, "end": 88, "id": 13, "annotation": null}, {"text": "in", "start": 89, "end": 91, "id": 14, "annotation": null}, {"text": "laser", "start": 92, "end": 97, "id": 15, "annotation": null}, {"text": "-", "start": 98, "end": 99, "id": 16, "annotation": null}, {"text": "fusion", "start": 100, "end": 106, "id": 17, "annotation": null}, {"text": "experiments", "start": 107, "end": 118, "id": 18, "annotation": null}, {"text": ",", "start": 119, "end": 120, "id": 19, "annotation": null}, {"text": "based", "start": 121, "end": 126, "id": 20, "annotation": null}, {"text": "on", "start": 127, "end": 129, "id": 21, "annotation": null}, {"text": "measuring", "start": 130, "end": 139, "id": 22, "annotation": null}, {"text": "the", "start": 140, "end": 143, "id": 23, "annotation": null}, {"text": "emission", "start": 144, "end": 152, "id": 24, "annotation": null}, {"text": "and", "start": 153, "end": 156, "id": 25, "annotation": null}, {"text": "absorption", "start": 157, "end": 167, "id": 26, "annotation": null}, {"text": "spectrum", "start": 168, "end": 176, "id": 27, "annotation": null}, {"text": "of", "start": 177, "end": 179, "id": 28, "annotation": null}, {"text": "a", "start": 180, "end": 181, "id": 29, "annotation": null}, {"text": "Ti", "start": 182, "end": 184, "id": 30, "annotation": "DOPANT"}, {"text": "-", "start": 185, "end": 186, "id": 31, "annotation": null}, {"text": "doped", "start": 187, "end": 192, "id": 32, "annotation": null}, {"text": "layer", "start": 193, "end": 198, "id": 33, "annotation": "BASEMAT"}, {"text": "embedded", "start": 199, "end": 207, "id": 34, "annotation": null}, {"text": "within", "start": 208, "end": 214, "id": 35, "annotation": null}, {"text": "the", "start": 215, "end": 218, "id": 36, "annotation": null}, {"text": "target", "start": 219, "end": 225, "id": 37, "annotation": null}, {"text": "shell", "start": 226, "end": 231, "id": 38, "annotation": null}, {"text": ".", "start": 232, "end": 233, "id": 39, "annotation": null}], [{"text": "The", "start": 234, "end": 237, "id": 40, "annotation": null}, {"text": "doped", "start": 238, "end": 243, "id": 41, "annotation": null}, {"text": "target", "start": 244, "end": 250, "id": 42, "annotation": null}, {"text": "layer", "start": 251, "end": 256, "id": 43, "annotation": "BASEMAT"}, {"text": "is", "start": 257, "end": 259, "id": 44, "annotation": null}, {"text": "placed", "start": 260, "end": 266, "id": 45, "annotation": null}, {"text": "away", "start": 267, "end": 271, "id": 46, "annotation": null}, {"text": "from", "start": 272, "end": 276, "id": 47, "annotation": null}, {"text": "the", "start": 277, "end": 280, "id": 48, "annotation": null}, {"text": "shell", "start": 281, "end": 286, "id": 49, "annotation": null}, {"text": "-", "start": 287, "end": 288, "id": 50, "annotation": null}, {"text": "fuel", "start": 289, "end": 293, "id": 51, "annotation": null}, {"text": "interface", "start": 294, "end": 303, "id": 52, "annotation": null}, {"text": "so", "start": 304, "end": 306, "id": 53, "annotation": null}, {"text": "that", "start": 307, "end": 311, "id": 54, "annotation": null}, {"text": "the", "start": 312, "end": 315, "id": 55, "annotation": null}, {"text": "Ti", "start": 316, "end": 318, "id": 56, "annotation": null}, {"text": "remains", "start": 319, "end": 326, "id": 57, "annotation": null}, {"text": "relatively", "start": 327, "end": 337, "id": 58, "annotation": null}, {"text": "cool", "start": 338, "end": 342, "id": 59, "annotation": null}, {"text": "throughout", "start": 343, "end": 353, "id": 60, "annotation": null}, {"text": "the", "start": 354, "end": 357, "id": 61, "annotation": null}, {"text": "implosion", "start": 358, "end": 367, "id": 62, "annotation": null}, {"text": ".", "start": 368, "end": 369, "id": 63, "annotation": null}], [{"text": "As", "start": 370, "end": 372, "id": 64, "annotation": null}, {"text": "a", "start": 373, "end": 374, "id": 65, "annotation": null}, {"text": "result", "start": 375, "end": 381, "id": 66, "annotation": null}, {"text": ",", "start": 382, "end": 383, "id": 67, "annotation": null}, {"text": "only", "start": 384, "end": 388, "id": 68, "annotation": null}, {"text": "absorption", "start": 389, "end": 399, "id": 69, "annotation": null}, {"text": "lines", "start": 400, "end": 405, "id": 70, "annotation": null}, {"text": "are", "start": 406, "end": 409, "id": 71, "annotation": null}, {"text": "observed", "start": 410, "end": 418, "id": 72, "annotation": null}, {"text": ",", "start": 419, "end": 420, "id": 73, "annotation": null}, {"text": "of", "start": 421, "end": 423, "id": 74, "annotation": null}, {"text": "1s-2l", "start": 424, "end": 429, "id": 75, "annotation": null}, {"text": "transitions", "start": 430, "end": 441, "id": 76, "annotation": null}, {"text": "in", "start": 442, "end": 444, "id": 77, "annotation": null}, {"text": "ions", "start": 445, "end": 449, "id": 78, "annotation": null}, {"text": "with", "start": 450, "end": 454, "id": 79, "annotation": null}, {"text": "an", "start": 455, "end": 457, "id": 80, "annotation": null}, {"text": "unfilled", "start": 458, "end": 466, "id": 81, "annotation": null}, {"text": "L", "start": 467, "end": 468, "id": 82, "annotation": null}, {"text": "shell", "start": 469, "end": 474, "id": 83, "annotation": null}, {"text": ".", "start": 475, "end": 476, "id": 84, "annotation": null}], [{"text": "However", "start": 477, "end": 484, "id": 85, "annotation": null}, {"text": ",", "start": 485, "end": 486, "id": 86, "annotation": null}, {"text": "for", "start": 487, "end": 490, "id": 87, "annotation": null}, {"text": "a", "start": 491, "end": 492, "id": 88, "annotation": null}, {"text": "sufficiently", "start": 493, "end": 505, "id": 89, "annotation": null}, {"text": "strong", "start": 506, "end": 512, "id": 90, "annotation": null}, {"text": "mixing", "start": 513, "end": 519, "id": 91, "annotation": null}, {"text": ",", "start": 520, "end": 521, "id": 92, "annotation": null}, {"text": "some", "start": 522, "end": 526, "id": 93, "annotation": null}, {"text": "Ti", "start": 527, "end": 529, "id": 94, "annotation": null}, {"text": "material", "start": 530, "end": 538, "id": 95, "annotation": null}, {"text": "migrates", "start": 539, "end": 547, "id": 96, "annotation": null}, {"text": "to", "start": 548, "end": 550, "id": 97, "annotation": null}, {"text": "the", "start": 551, "end": 554, "id": 98, "annotation": null}, {"text": "interface", "start": 555, "end": 564, "id": 99, "annotation": null}, {"text": "region", "start": 565, "end": 571, "id": 100, "annotation": null}, {"text": "and", "start": 572, "end": 575, "id": 101, "annotation": null}, {"text": "emits", "start": 576, "end": 581, "id": 102, "annotation": null}, {"text": "He", "start": 582, "end": 584, "id": 103, "annotation": null}, {"text": "-", "start": 585, "end": 586, "id": 104, "annotation": null}, {"text": "and", "start": 587, "end": 590, "id": 105, "annotation": null}, {"text": "H", "start": 591, "end": 592, "id": 106, "annotation": null}, {"text": "-", "start": 593, "end": 594, "id": 107, "annotation": null}, {"text": "like", "start": 595, "end": 599, "id": 108, "annotation": null}, {"text": "lines", "start": 600, "end": 605, "id": 109, "annotation": null}, {"text": ".", "start": 606, "end": 607, "id": 110, "annotation": null}], [{"text": "A", "start": 608, "end": 609, "id": 111, "annotation": null}, {"text": "particular", "start": 610, "end": 620, "id": 112, "annotation": null}, {"text": "target", "start": 621, "end": 627, "id": 113, "annotation": null}, {"text": "experiment", "start": 628, "end": 638, "id": 114, "annotation": null}, {"text": "is", "start": 639, "end": 641, "id": 115, "annotation": null}, {"text": "simulated", "start": 642, "end": 651, "id": 116, "annotation": null}, {"text": "and", "start": 652, "end": 655, "id": 117, "annotation": null}, {"text": "the", "start": 656, "end": 659, "id": 118, "annotation": null}, {"text": "expected", "start": 660, "end": 668, "id": 119, "annotation": null}, {"text": "experimental", "start": 669, "end": 681, "id": 120, "annotation": null}, {"text": "signature", "start": 682, "end": 691, "id": 121, "annotation": null}, {"text": "calculated", "start": 692, "end": 702, "id": 122, "annotation": null}, {"text": "and", "start": 703, "end": 706, "id": 123, "annotation": null}, {"text": "analyzed", "start": 707, "end": 715, "id": 124, "annotation": null}, {"text": ".", "start": 716, "end": 717, "id": 125, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The catalytic conversion of isopropanol was carried out over pure and Li2O-doped (0.75\u20134.5mol%) cobalt ferrite prepared by heating Fe/Co mixed hydroxides at 400 and 600\u00b0C. The techniques employed were XRD, N2 adsorption at \u2212196\u00b0C and conversion of isopropanol at 200\u2013400\u00b0C using a flow method. The results showed that Li2O-doping and increasing the heating temperature of the system investigated from 400 to 600\u00b0C stimulated CoFe2O4 formation also. Pure and variously doped solids were moderately crystallized CoFe2O4 phase having a crystallite size varying between 5 and 15nm. The SBET of various solids was found to decrease by increasing their calcination temperature and also by doping with 4.5mol% Li2O. However, this treatment, resulted in a significant increase in their catalytic activities which much increased by doping. The presence of 1.5mol% Li2O brought about an increase in the catalytic activity, measured at 300\u00b0C, of 97% and 63% for the solids being calcined at 400 and 600\u00b0C, respectively. All solids investigated behaved as dehydrogenation catalysts (having selectivities to acetone formation above 95%). The doping process did not alter the mechanism of dehydrogenation of isopropanol, but increased the concentration of active sites involved in the catalyzed reaction.", "meta": {"doi": "10.1016/j.mseb.2007.07.072"}, "_input_hash": -177629494, "_task_hash": 544930139, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "catalytic", "start": 4, "end": 13, "id": 1, "annotation": null}, {"text": "conversion", "start": 14, "end": 24, "id": 2, "annotation": null}, {"text": "of", "start": 25, "end": 27, "id": 3, "annotation": null}, {"text": "isopropanol", "start": 28, "end": 39, "id": 4, "annotation": null}, {"text": "was", "start": 40, "end": 43, "id": 5, "annotation": null}, {"text": "carried", "start": 44, "end": 51, "id": 6, "annotation": null}, {"text": "out", "start": 52, "end": 55, "id": 7, "annotation": null}, {"text": "over", "start": 56, "end": 60, "id": 8, "annotation": null}, {"text": "pure", "start": 61, "end": 65, "id": 9, "annotation": null}, {"text": "and", "start": 66, "end": 69, "id": 10, "annotation": null}, {"text": "Li2O", "start": 70, "end": 74, "id": 11, "annotation": "DOPANT"}, {"text": "-", "start": 75, "end": 76, "id": 12, "annotation": null}, {"text": "doped", "start": 77, "end": 82, "id": 13, "annotation": null}, {"text": "(", "start": 83, "end": 84, "id": 14, "annotation": null}, {"text": "0.75\u20134.5mol%", "start": 85, "end": 97, "id": 15, "annotation": "DOPMODQ"}, {"text": ")", "start": 98, "end": 99, "id": 16, "annotation": null}, {"text": "cobalt", "start": 100, "end": 106, "id": 17, "annotation": "BASEMAT"}, {"text": "ferrite", "start": 107, "end": 114, "id": 18, "annotation": "BASEMAT"}, {"text": "prepared", "start": 115, "end": 123, "id": 19, "annotation": null}, {"text": "by", "start": 124, "end": 126, "id": 20, "annotation": null}, {"text": "heating", "start": 127, "end": 134, "id": 21, "annotation": null}, {"text": "Fe", "start": 135, "end": 137, "id": 22, "annotation": null}, {"text": "/", "start": 138, "end": 139, "id": 23, "annotation": null}, {"text": "Co", "start": 140, "end": 142, "id": 24, "annotation": null}, {"text": "mixed", "start": 143, "end": 148, "id": 25, "annotation": null}, {"text": "hydroxides", "start": 149, "end": 159, "id": 26, "annotation": null}, {"text": "at", "start": 160, "end": 162, "id": 27, "annotation": null}, {"text": "400", "start": 163, "end": 166, "id": 28, "annotation": null}, {"text": "and", "start": 167, "end": 170, "id": 29, "annotation": null}, {"text": "600", "start": 171, "end": 174, "id": 30, "annotation": null}, {"text": "\u00b0", "start": 175, "end": 176, "id": 31, "annotation": null}, {"text": "C", "start": 177, "end": 178, "id": 32, "annotation": null}, {"text": ".", "start": 179, "end": 180, "id": 33, "annotation": null}], [{"text": "The", "start": 181, "end": 184, "id": 34, "annotation": null}, {"text": "techniques", "start": 185, "end": 195, "id": 35, "annotation": null}, {"text": "employed", "start": 196, "end": 204, "id": 36, "annotation": null}, {"text": "were", "start": 205, "end": 209, "id": 37, "annotation": null}, {"text": "XRD", "start": 210, "end": 213, "id": 38, "annotation": null}, {"text": ",", "start": 214, "end": 215, "id": 39, "annotation": null}, {"text": "N2", "start": 216, "end": 218, "id": 40, "annotation": null}, {"text": "adsorption", "start": 219, "end": 229, "id": 41, "annotation": null}, {"text": "at", "start": 230, "end": 232, "id": 42, "annotation": null}, {"text": "\u2212196", "start": 233, "end": 237, "id": 43, "annotation": null}, {"text": "\u00b0", "start": 238, "end": 239, "id": 44, "annotation": null}, {"text": "C", "start": 240, "end": 241, "id": 45, "annotation": null}, {"text": "and", "start": 242, "end": 245, "id": 46, "annotation": null}, {"text": "conversion", "start": 246, "end": 256, "id": 47, "annotation": null}, {"text": "of", "start": 257, "end": 259, "id": 48, "annotation": null}, {"text": "isopropanol", "start": 260, "end": 271, "id": 49, "annotation": null}, {"text": "at", "start": 272, "end": 274, "id": 50, "annotation": null}, {"text": "200\u2013400", "start": 275, "end": 282, "id": 51, "annotation": null}, {"text": "\u00b0", "start": 283, "end": 284, "id": 52, "annotation": null}, {"text": "C", "start": 285, "end": 286, "id": 53, "annotation": null}, {"text": "using", "start": 287, "end": 292, "id": 54, "annotation": null}, {"text": "a", "start": 293, "end": 294, "id": 55, "annotation": null}, {"text": "flow", "start": 295, "end": 299, "id": 56, "annotation": null}, {"text": "method", "start": 300, "end": 306, "id": 57, "annotation": null}, {"text": ".", "start": 307, "end": 308, "id": 58, "annotation": null}], [{"text": "The", "start": 309, "end": 312, "id": 59, "annotation": null}, {"text": "results", "start": 313, "end": 320, "id": 60, "annotation": null}, {"text": "showed", "start": 321, "end": 327, "id": 61, "annotation": null}, {"text": "that", "start": 328, "end": 332, "id": 62, "annotation": null}, {"text": "Li2O", "start": 333, "end": 337, "id": 63, "annotation": "DOPANT"}, {"text": "-", "start": 338, "end": 339, "id": 64, "annotation": null}, {"text": "doping", "start": 340, "end": 346, "id": 65, "annotation": null}, {"text": "and", "start": 347, "end": 350, "id": 66, "annotation": null}, {"text": "increasing", "start": 351, "end": 361, "id": 67, "annotation": null}, {"text": "the", "start": 362, "end": 365, "id": 68, "annotation": null}, {"text": "heating", "start": 366, "end": 373, "id": 69, "annotation": null}, {"text": "temperature", "start": 374, "end": 385, "id": 70, "annotation": null}, {"text": "of", "start": 386, "end": 388, "id": 71, "annotation": null}, {"text": "the", "start": 389, "end": 392, "id": 72, "annotation": null}, {"text": "system", "start": 393, "end": 399, "id": 73, "annotation": null}, {"text": "investigated", "start": 400, "end": 412, "id": 74, "annotation": null}, {"text": "from", "start": 413, "end": 417, "id": 75, "annotation": null}, {"text": "400", "start": 418, "end": 421, "id": 76, "annotation": null}, {"text": "to", "start": 422, "end": 424, "id": 77, "annotation": null}, {"text": "600", "start": 425, "end": 428, "id": 78, "annotation": null}, {"text": "\u00b0", "start": 429, "end": 430, "id": 79, "annotation": null}, {"text": "C", "start": 431, "end": 432, "id": 80, "annotation": null}, {"text": "stimulated", "start": 433, "end": 443, "id": 81, "annotation": null}, {"text": "CoFe2O4", "start": 444, "end": 451, "id": 82, "annotation": null}, {"text": "formation", "start": 452, "end": 461, "id": 83, "annotation": null}, {"text": "also", "start": 462, "end": 466, "id": 84, "annotation": null}, {"text": ".", "start": 467, "end": 468, "id": 85, "annotation": null}], [{"text": "Pure", "start": 469, "end": 473, "id": 86, "annotation": null}, {"text": "and", "start": 474, "end": 477, "id": 87, "annotation": null}, {"text": "variously", "start": 478, "end": 487, "id": 88, "annotation": null}, {"text": "doped", "start": 488, "end": 493, "id": 89, "annotation": null}, {"text": "solids", "start": 494, "end": 500, "id": 90, "annotation": "BASEMAT"}, {"text": "were", "start": 501, "end": 505, "id": 91, "annotation": null}, {"text": "moderately", "start": 506, "end": 516, "id": 92, "annotation": null}, {"text": "crystallized", "start": 517, "end": 529, "id": 93, "annotation": null}, {"text": "CoFe2O4", "start": 530, "end": 537, "id": 94, "annotation": null}, {"text": "phase", "start": 538, "end": 543, "id": 95, "annotation": null}, {"text": "having", "start": 544, "end": 550, "id": 96, "annotation": null}, {"text": "a", "start": 551, "end": 552, "id": 97, "annotation": null}, {"text": "crystallite", "start": 553, "end": 564, "id": 98, "annotation": null}, {"text": "size", "start": 565, "end": 569, "id": 99, "annotation": null}, {"text": "varying", "start": 570, "end": 577, "id": 100, "annotation": null}, {"text": "between", "start": 578, "end": 585, "id": 101, "annotation": null}, {"text": "5", "start": 586, "end": 587, "id": 102, "annotation": null}, {"text": "and", "start": 588, "end": 591, "id": 103, "annotation": null}, {"text": "15", "start": 592, "end": 594, "id": 104, "annotation": null}, {"text": "nm", "start": 595, "end": 597, "id": 105, "annotation": null}, {"text": ".", "start": 598, "end": 599, "id": 106, "annotation": null}], [{"text": "The", "start": 600, "end": 603, "id": 107, "annotation": null}, {"text": "SBET", "start": 604, "end": 608, "id": 108, "annotation": null}, {"text": "of", "start": 609, "end": 611, "id": 109, "annotation": null}, {"text": "various", "start": 612, "end": 619, "id": 110, "annotation": null}, {"text": "solids", "start": 620, "end": 626, "id": 111, "annotation": "BASEMAT"}, {"text": "was", "start": 627, "end": 630, "id": 112, "annotation": null}, {"text": "found", "start": 631, "end": 636, "id": 113, "annotation": null}, {"text": "to", "start": 637, "end": 639, "id": 114, "annotation": null}, {"text": "decrease", "start": 640, "end": 648, "id": 115, "annotation": null}, {"text": "by", "start": 649, "end": 651, "id": 116, "annotation": null}, {"text": "increasing", "start": 652, "end": 662, "id": 117, "annotation": null}, {"text": "their", "start": 663, "end": 668, "id": 118, "annotation": null}, {"text": "calcination", "start": 669, "end": 680, "id": 119, "annotation": null}, {"text": "temperature", "start": 681, "end": 692, "id": 120, "annotation": null}, {"text": "and", "start": 693, "end": 696, "id": 121, "annotation": null}, {"text": "also", "start": 697, "end": 701, "id": 122, "annotation": null}, {"text": "by", "start": 702, "end": 704, "id": 123, "annotation": null}, {"text": "doping", "start": 705, "end": 711, "id": 124, "annotation": null}, {"text": "with", "start": 712, "end": 716, "id": 125, "annotation": null}, {"text": "4.5mol%", "start": 717, "end": 724, "id": 126, "annotation": "DOPMODQ"}, {"text": "Li2O.", "start": 725, "end": 730, "id": 127, "annotation": "DOPANT"}], [{"text": "However", "start": 731, "end": 738, "id": 128, "annotation": null}, {"text": ",", "start": 739, "end": 740, "id": 129, "annotation": null}, {"text": "this", "start": 741, "end": 745, "id": 130, "annotation": null}, {"text": "treatment", "start": 746, "end": 755, "id": 131, "annotation": null}, {"text": ",", "start": 756, "end": 757, "id": 132, "annotation": null}, {"text": "resulted", "start": 758, "end": 766, "id": 133, "annotation": null}, {"text": "in", "start": 767, "end": 769, "id": 134, "annotation": null}, {"text": "a", "start": 770, "end": 771, "id": 135, "annotation": null}, {"text": "significant", "start": 772, "end": 783, "id": 136, "annotation": null}, {"text": "increase", "start": 784, "end": 792, "id": 137, "annotation": null}, {"text": "in", "start": 793, "end": 795, "id": 138, "annotation": null}, {"text": "their", "start": 796, "end": 801, "id": 139, "annotation": null}, {"text": "catalytic", "start": 802, "end": 811, "id": 140, "annotation": null}, {"text": "activities", "start": 812, "end": 822, "id": 141, "annotation": null}, {"text": "which", "start": 823, "end": 828, "id": 142, "annotation": null}, {"text": "much", "start": 829, "end": 833, "id": 143, "annotation": null}, {"text": "increased", "start": 834, "end": 843, "id": 144, "annotation": null}, {"text": "by", "start": 844, "end": 846, "id": 145, "annotation": null}, {"text": "doping", "start": 847, "end": 853, "id": 146, "annotation": null}, {"text": ".", "start": 854, "end": 855, "id": 147, "annotation": null}], [{"text": "The", "start": 856, "end": 859, "id": 148, "annotation": null}, {"text": "presence", "start": 860, "end": 868, "id": 149, "annotation": null}, {"text": "of", "start": 869, "end": 871, "id": 150, "annotation": null}, {"text": "1.5mol%", "start": 872, "end": 879, "id": 151, "annotation": null}, {"text": "Li2O", "start": 880, "end": 884, "id": 152, "annotation": null}, {"text": "brought", "start": 885, "end": 892, "id": 153, "annotation": null}, {"text": "about", "start": 893, "end": 898, "id": 154, "annotation": null}, {"text": "an", "start": 899, "end": 901, "id": 155, "annotation": null}, {"text": "increase", "start": 902, "end": 910, "id": 156, "annotation": null}, {"text": "in", "start": 911, "end": 913, "id": 157, "annotation": null}, {"text": "the", "start": 914, "end": 917, "id": 158, "annotation": null}, {"text": "catalytic", "start": 918, "end": 927, "id": 159, "annotation": null}, {"text": "activity", "start": 928, "end": 936, "id": 160, "annotation": null}, {"text": ",", "start": 937, "end": 938, "id": 161, "annotation": null}, {"text": "measured", "start": 939, "end": 947, "id": 162, "annotation": null}, {"text": "at", "start": 948, "end": 950, "id": 163, "annotation": null}, {"text": "300", "start": 951, "end": 954, "id": 164, "annotation": null}, {"text": "\u00b0", "start": 955, "end": 956, "id": 165, "annotation": null}, {"text": "C", "start": 957, "end": 958, "id": 166, "annotation": null}, {"text": ",", "start": 959, "end": 960, "id": 167, "annotation": null}, {"text": "of", "start": 961, "end": 963, "id": 168, "annotation": null}, {"text": "97", "start": 964, "end": 966, "id": 169, "annotation": null}, {"text": "%", "start": 967, "end": 968, "id": 170, "annotation": null}, {"text": "and", "start": 969, "end": 972, "id": 171, "annotation": null}, {"text": "63", "start": 973, "end": 975, "id": 172, "annotation": null}, {"text": "%", "start": 976, "end": 977, "id": 173, "annotation": null}, {"text": "for", "start": 978, "end": 981, "id": 174, "annotation": null}, {"text": "the", "start": 982, "end": 985, "id": 175, "annotation": null}, {"text": "solids", "start": 986, "end": 992, "id": 176, "annotation": null}, {"text": "being", "start": 993, "end": 998, "id": 177, "annotation": null}, {"text": "calcined", "start": 999, "end": 1007, "id": 178, "annotation": null}, {"text": "at", "start": 1008, "end": 1010, "id": 179, "annotation": null}, {"text": "400", "start": 1011, "end": 1014, "id": 180, "annotation": null}, {"text": "and", "start": 1015, "end": 1018, "id": 181, "annotation": null}, {"text": "600", "start": 1019, "end": 1022, "id": 182, "annotation": null}, {"text": "\u00b0", "start": 1023, "end": 1024, "id": 183, "annotation": null}, {"text": "C", "start": 1025, "end": 1026, "id": 184, "annotation": null}, {"text": ",", "start": 1027, "end": 1028, "id": 185, "annotation": null}, {"text": "respectively", "start": 1029, "end": 1041, "id": 186, "annotation": null}, {"text": ".", "start": 1042, "end": 1043, "id": 187, "annotation": null}], [{"text": "All", "start": 1044, "end": 1047, "id": 188, "annotation": null}, {"text": "solids", "start": 1048, "end": 1054, "id": 189, "annotation": null}, {"text": "investigated", "start": 1055, "end": 1067, "id": 190, "annotation": null}, {"text": "behaved", "start": 1068, "end": 1075, "id": 191, "annotation": null}, {"text": "as", "start": 1076, "end": 1078, "id": 192, "annotation": null}, {"text": "dehydrogenation", "start": 1079, "end": 1094, "id": 193, "annotation": null}, {"text": "catalysts", "start": 1095, "end": 1104, "id": 194, "annotation": null}, {"text": "(", "start": 1105, "end": 1106, "id": 195, "annotation": null}, {"text": "having", "start": 1107, "end": 1113, "id": 196, "annotation": null}, {"text": "selectivities", "start": 1114, "end": 1127, "id": 197, "annotation": null}, {"text": "to", "start": 1128, "end": 1130, "id": 198, "annotation": null}, {"text": "acetone", "start": 1131, "end": 1138, "id": 199, "annotation": null}, {"text": "formation", "start": 1139, "end": 1148, "id": 200, "annotation": null}, {"text": "above", "start": 1149, "end": 1154, "id": 201, "annotation": null}, {"text": "95", "start": 1155, "end": 1157, "id": 202, "annotation": null}, {"text": "%", "start": 1158, "end": 1159, "id": 203, "annotation": null}, {"text": ")", "start": 1160, "end": 1161, "id": 204, "annotation": null}, {"text": ".", "start": 1162, "end": 1163, "id": 205, "annotation": null}], [{"text": "The", "start": 1164, "end": 1167, "id": 206, "annotation": null}, {"text": "doping", "start": 1168, "end": 1174, "id": 207, "annotation": null}, {"text": "process", "start": 1175, "end": 1182, "id": 208, "annotation": null}, {"text": "did", "start": 1183, "end": 1186, "id": 209, "annotation": null}, {"text": "not", "start": 1187, "end": 1190, "id": 210, "annotation": null}, {"text": "alter", "start": 1191, "end": 1196, "id": 211, "annotation": null}, {"text": "the", "start": 1197, "end": 1200, "id": 212, "annotation": null}, {"text": "mechanism", "start": 1201, "end": 1210, "id": 213, "annotation": null}, {"text": "of", "start": 1211, "end": 1213, "id": 214, "annotation": null}, {"text": "dehydrogenation", "start": 1214, "end": 1229, "id": 215, "annotation": null}, {"text": "of", "start": 1230, "end": 1232, "id": 216, "annotation": null}, {"text": "isopropanol", "start": 1233, "end": 1244, "id": 217, "annotation": null}, {"text": ",", "start": 1245, "end": 1246, "id": 218, "annotation": null}, {"text": "but", "start": 1247, "end": 1250, "id": 219, "annotation": null}, {"text": "increased", "start": 1251, "end": 1260, "id": 220, "annotation": null}, {"text": "the", "start": 1261, "end": 1264, "id": 221, "annotation": null}, {"text": "concentration", "start": 1265, "end": 1278, "id": 222, "annotation": null}, {"text": "of", "start": 1279, "end": 1281, "id": 223, "annotation": null}, {"text": "active", "start": 1282, "end": 1288, "id": 224, "annotation": null}, {"text": "sites", "start": 1289, "end": 1294, "id": 225, "annotation": null}, {"text": "involved", "start": 1295, "end": 1303, "id": 226, "annotation": null}, {"text": "in", "start": 1304, "end": 1306, "id": 227, "annotation": null}, {"text": "the", "start": 1307, "end": 1310, "id": 228, "annotation": null}, {"text": "catalyzed", "start": 1311, "end": 1320, "id": 229, "annotation": null}, {"text": "reaction", "start": 1321, "end": 1329, "id": 230, "annotation": null}, {"text": ".", "start": 1330, "end": 1331, "id": 231, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "The difficulty of achieving p-type conductance has severely limited the application of ZnO to electronic devices. In this work, we propose a simple and effective way to achieving p-type semiconducting ZnO nanowires (NWs) through density functional theory computations. Adsorption of tetrathiafulvalene (TTF) during synthetic procedures leads to lower formation energies, and accordingly higher concentration of p-type defects; after the formation of ZnO NWs and the desorption of TTF, p-type ZnO NWs can be achieved. Also, we present a facile synthesis route on basis of previous experiments, which provides some guidance for the realization of p-type ZnO NWs.", "meta": {"doi": "10.1142/S0219633613500144"}, "_input_hash": 1681283200, "_task_hash": 1690915407, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "difficulty", "start": 4, "end": 14, "id": 1, "annotation": null}, {"text": "of", "start": 15, "end": 17, "id": 2, "annotation": null}, {"text": "achieving", "start": 18, "end": 27, "id": 3, "annotation": null}, {"text": "p", "start": 28, "end": 29, "id": 4, "annotation": null}, {"text": "-", "start": 30, "end": 31, "id": 5, "annotation": null}, {"text": "type", "start": 32, "end": 36, "id": 6, "annotation": null}, {"text": "conductance", "start": 37, "end": 48, "id": 7, "annotation": null}, {"text": "has", "start": 49, "end": 52, "id": 8, "annotation": null}, {"text": "severely", "start": 53, "end": 61, "id": 9, "annotation": null}, {"text": "limited", "start": 62, "end": 69, "id": 10, "annotation": null}, {"text": "the", "start": 70, "end": 73, "id": 11, "annotation": null}, {"text": "application", "start": 74, "end": 85, "id": 12, "annotation": null}, {"text": "of", "start": 86, "end": 88, "id": 13, "annotation": null}, {"text": "ZnO", "start": 89, "end": 92, "id": 14, "annotation": null}, {"text": "to", "start": 93, "end": 95, "id": 15, "annotation": null}, {"text": "electronic", "start": 96, "end": 106, "id": 16, "annotation": null}, {"text": "devices", "start": 107, "end": 114, "id": 17, "annotation": null}, {"text": ".", "start": 115, "end": 116, "id": 18, "annotation": null}], [{"text": "In", "start": 117, "end": 119, "id": 19, "annotation": null}, {"text": "this", "start": 120, "end": 124, "id": 20, "annotation": null}, {"text": "work", "start": 125, "end": 129, "id": 21, "annotation": null}, {"text": ",", "start": 130, "end": 131, "id": 22, "annotation": null}, {"text": "we", "start": 132, "end": 134, "id": 23, "annotation": null}, {"text": "propose", "start": 135, "end": 142, "id": 24, "annotation": null}, {"text": "a", "start": 143, "end": 144, "id": 25, "annotation": null}, {"text": "simple", "start": 145, "end": 151, "id": 26, "annotation": null}, {"text": "and", "start": 152, "end": 155, "id": 27, "annotation": null}, {"text": "effective", "start": 156, "end": 165, "id": 28, "annotation": null}, {"text": "way", "start": 166, "end": 169, "id": 29, "annotation": null}, {"text": "to", "start": 170, "end": 172, "id": 30, "annotation": null}, {"text": "achieving", "start": 173, "end": 182, "id": 31, "annotation": null}, {"text": "p", "start": 183, "end": 184, "id": 32, "annotation": "DOPANT"}, {"text": "-", "start": 185, "end": 186, "id": 33, "annotation": null}, {"text": "type", "start": 187, "end": 191, "id": 34, "annotation": "DOPANT"}, {"text": "semiconducting", "start": 192, "end": 206, "id": 35, "annotation": null}, {"text": "ZnO", "start": 207, "end": 210, "id": 36, "annotation": "BASEMAT"}, {"text": "nanowires", "start": 211, "end": 220, "id": 37, "annotation": null}, {"text": "(", "start": 221, "end": 222, "id": 38, "annotation": null}, {"text": "NWs", "start": 223, "end": 226, "id": 39, "annotation": null}, {"text": ")", "start": 227, "end": 228, "id": 40, "annotation": null}, {"text": "through", "start": 229, "end": 236, "id": 41, "annotation": null}, {"text": "density", "start": 237, "end": 244, "id": 42, "annotation": null}, {"text": "functional", "start": 245, "end": 255, "id": 43, "annotation": null}, {"text": "theory", "start": 256, "end": 262, "id": 44, "annotation": null}, {"text": "computations", "start": 263, "end": 275, "id": 45, "annotation": null}, {"text": ".", "start": 276, "end": 277, "id": 46, "annotation": null}], [{"text": "Adsorption", "start": 278, "end": 288, "id": 47, "annotation": null}, {"text": "of", "start": 289, "end": 291, "id": 48, "annotation": null}, {"text": "tetrathiafulvalene", "start": 292, "end": 310, "id": 49, "annotation": null}, {"text": "(", "start": 311, "end": 312, "id": 50, "annotation": null}, {"text": "TTF", "start": 313, "end": 316, "id": 51, "annotation": null}, {"text": ")", "start": 317, "end": 318, "id": 52, "annotation": null}, {"text": "during", "start": 319, "end": 325, "id": 53, "annotation": null}, {"text": "synthetic", "start": 326, "end": 335, "id": 54, "annotation": null}, {"text": "procedures", "start": 336, "end": 346, "id": 55, "annotation": null}, {"text": "leads", "start": 347, "end": 352, "id": 56, "annotation": null}, {"text": "to", "start": 353, "end": 355, "id": 57, "annotation": null}, {"text": "lower", "start": 356, "end": 361, "id": 58, "annotation": null}, {"text": "formation", "start": 362, "end": 371, "id": 59, "annotation": null}, {"text": "energies", "start": 372, "end": 380, "id": 60, "annotation": null}, {"text": ",", "start": 381, "end": 382, "id": 61, "annotation": null}, {"text": "and", "start": 383, "end": 386, "id": 62, "annotation": null}, {"text": "accordingly", "start": 387, "end": 398, "id": 63, "annotation": null}, {"text": "higher", "start": 399, "end": 405, "id": 64, "annotation": null}, {"text": "concentration", "start": 406, "end": 419, "id": 65, "annotation": null}, {"text": "of", "start": 420, "end": 422, "id": 66, "annotation": null}, {"text": "p", "start": 423, "end": 424, "id": 67, "annotation": null}, {"text": "-", "start": 425, "end": 426, "id": 68, "annotation": null}, {"text": "type", "start": 427, "end": 431, "id": 69, "annotation": null}, {"text": "defects", "start": 432, "end": 439, "id": 70, "annotation": null}, {"text": ";", "start": 440, "end": 441, "id": 71, "annotation": null}, {"text": "after", "start": 442, "end": 447, "id": 72, "annotation": null}, {"text": "the", "start": 448, "end": 451, "id": 73, "annotation": null}, {"text": "formation", "start": 452, "end": 461, "id": 74, "annotation": null}, {"text": "of", "start": 462, "end": 464, "id": 75, "annotation": null}, {"text": "ZnO", "start": 465, "end": 468, "id": 76, "annotation": null}, {"text": "NWs", "start": 469, "end": 472, "id": 77, "annotation": null}, {"text": "and", "start": 473, "end": 476, "id": 78, "annotation": null}, {"text": "the", "start": 477, "end": 480, "id": 79, "annotation": null}, {"text": "desorption", "start": 481, "end": 491, "id": 80, "annotation": null}, {"text": "of", "start": 492, "end": 494, "id": 81, "annotation": null}, {"text": "TTF", "start": 495, "end": 498, "id": 82, "annotation": null}, {"text": ",", "start": 499, "end": 500, "id": 83, "annotation": null}, {"text": "p", "start": 501, "end": 502, "id": 84, "annotation": "DOPANT"}, {"text": "-", "start": 503, "end": 504, "id": 85, "annotation": null}, {"text": "type", "start": 505, "end": 509, "id": 86, "annotation": "DOPANT"}, {"text": "ZnO", "start": 510, "end": 513, "id": 87, "annotation": "BASEMAT"}, {"text": "NWs", "start": 514, "end": 517, "id": 88, "annotation": null}, {"text": "can", "start": 518, "end": 521, "id": 89, "annotation": null}, {"text": "be", "start": 522, "end": 524, "id": 90, "annotation": null}, {"text": "achieved", "start": 525, "end": 533, "id": 91, "annotation": null}, {"text": ".", "start": 534, "end": 535, "id": 92, "annotation": null}], [{"text": "Also", "start": 536, "end": 540, "id": 93, "annotation": null}, {"text": ",", "start": 541, "end": 542, "id": 94, "annotation": null}, {"text": "we", "start": 543, "end": 545, "id": 95, "annotation": null}, {"text": "present", "start": 546, "end": 553, "id": 96, "annotation": null}, {"text": "a", "start": 554, "end": 555, "id": 97, "annotation": null}, {"text": "facile", "start": 556, "end": 562, "id": 98, "annotation": null}, {"text": "synthesis", "start": 563, "end": 572, "id": 99, "annotation": null}, {"text": "route", "start": 573, "end": 578, "id": 100, "annotation": null}, {"text": "on", "start": 579, "end": 581, "id": 101, "annotation": null}, {"text": "basis", "start": 582, "end": 587, "id": 102, "annotation": null}, {"text": "of", "start": 588, "end": 590, "id": 103, "annotation": null}, {"text": "previous", "start": 591, "end": 599, "id": 104, "annotation": null}, {"text": "experiments", "start": 600, "end": 611, "id": 105, "annotation": null}, {"text": ",", "start": 612, "end": 613, "id": 106, "annotation": null}, {"text": "which", "start": 614, "end": 619, "id": 107, "annotation": null}, {"text": "provides", "start": 620, "end": 628, "id": 108, "annotation": null}, {"text": "some", "start": 629, "end": 633, "id": 109, "annotation": null}, {"text": "guidance", "start": 634, "end": 642, "id": 110, "annotation": null}, {"text": "for", "start": 643, "end": 646, "id": 111, "annotation": null}, {"text": "the", "start": 647, "end": 650, "id": 112, "annotation": null}, {"text": "realization", "start": 651, "end": 662, "id": 113, "annotation": null}, {"text": "of", "start": 663, "end": 665, "id": 114, "annotation": null}, {"text": "p", "start": 666, "end": 667, "id": 115, "annotation": "DOPANT"}, {"text": "-", "start": 668, "end": 669, "id": 116, "annotation": null}, {"text": "type", "start": 670, "end": 674, "id": 117, "annotation": "DOPANT"}, {"text": "ZnO", "start": 675, "end": 678, "id": 118, "annotation": "BASEMAT"}, {"text": "NWs", "start": 679, "end": 682, "id": 119, "annotation": null}, {"text": ".", "start": 683, "end": 684, "id": 120, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "The difficulty of achieving p-type conductance has severely limited the application of ZnO to electronic devices. In this work, we propose a simple and effective way to achieving p-type semiconducting ZnO nanowires (NWs) through density functional theory computations. Adsorption of tetrathiafulvalene (TTF) during synthetic procedures leads to lower formation energies, and accordingly higher concentration of p-type defects; after the formation of ZnO NWs and the desorption of TTF, p-type ZnO NWs can be achieved. Also, we present a facile synthesis route on basis of previous experiments, which provides some guidance for the realization of p-type ZnO NWs.", "meta": {"doi": "10.1142/S0219633613500144"}, "_input_hash": 1681283200, "_task_hash": 1690915407, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "difficulty", "start": 4, "end": 14, "id": 1, "annotation": null}, {"text": "of", "start": 15, "end": 17, "id": 2, "annotation": null}, {"text": "achieving", "start": 18, "end": 27, "id": 3, "annotation": null}, {"text": "p", "start": 28, "end": 29, "id": 4, "annotation": null}, {"text": "-", "start": 30, "end": 31, "id": 5, "annotation": null}, {"text": "type", "start": 32, "end": 36, "id": 6, "annotation": null}, {"text": "conductance", "start": 37, "end": 48, "id": 7, "annotation": null}, {"text": "has", "start": 49, "end": 52, "id": 8, "annotation": null}, {"text": "severely", "start": 53, "end": 61, "id": 9, "annotation": null}, {"text": "limited", "start": 62, "end": 69, "id": 10, "annotation": null}, {"text": "the", "start": 70, "end": 73, "id": 11, "annotation": null}, {"text": "application", "start": 74, "end": 85, "id": 12, "annotation": null}, {"text": "of", "start": 86, "end": 88, "id": 13, "annotation": null}, {"text": "ZnO", "start": 89, "end": 92, "id": 14, "annotation": null}, {"text": "to", "start": 93, "end": 95, "id": 15, "annotation": null}, {"text": "electronic", "start": 96, "end": 106, "id": 16, "annotation": null}, {"text": "devices", "start": 107, "end": 114, "id": 17, "annotation": null}, {"text": ".", "start": 115, "end": 116, "id": 18, "annotation": null}], [{"text": "In", "start": 117, "end": 119, "id": 19, "annotation": null}, {"text": "this", "start": 120, "end": 124, "id": 20, "annotation": null}, {"text": "work", "start": 125, "end": 129, "id": 21, "annotation": null}, {"text": ",", "start": 130, "end": 131, "id": 22, "annotation": null}, {"text": "we", "start": 132, "end": 134, "id": 23, "annotation": null}, {"text": "propose", "start": 135, "end": 142, "id": 24, "annotation": null}, {"text": "a", "start": 143, "end": 144, "id": 25, "annotation": null}, {"text": "simple", "start": 145, "end": 151, "id": 26, "annotation": null}, {"text": "and", "start": 152, "end": 155, "id": 27, "annotation": null}, {"text": "effective", "start": 156, "end": 165, "id": 28, "annotation": null}, {"text": "way", "start": 166, "end": 169, "id": 29, "annotation": null}, {"text": "to", "start": 170, "end": 172, "id": 30, "annotation": null}, {"text": "achieving", "start": 173, "end": 182, "id": 31, "annotation": null}, {"text": "p", "start": 183, "end": 184, "id": 32, "annotation": "DOPANT"}, {"text": "-", "start": 185, "end": 186, "id": 33, "annotation": "DOPANT"}, {"text": "type", "start": 187, "end": 191, "id": 34, "annotation": "DOPANT"}, {"text": "semiconducting", "start": 192, "end": 206, "id": 35, "annotation": null}, {"text": "ZnO", "start": 207, "end": 210, "id": 36, "annotation": "BASEMAT"}, {"text": "nanowires", "start": 211, "end": 220, "id": 37, "annotation": null}, {"text": "(", "start": 221, "end": 222, "id": 38, "annotation": null}, {"text": "NWs", "start": 223, "end": 226, "id": 39, "annotation": null}, {"text": ")", "start": 227, "end": 228, "id": 40, "annotation": null}, {"text": "through", "start": 229, "end": 236, "id": 41, "annotation": null}, {"text": "density", "start": 237, "end": 244, "id": 42, "annotation": null}, {"text": "functional", "start": 245, "end": 255, "id": 43, "annotation": null}, {"text": "theory", "start": 256, "end": 262, "id": 44, "annotation": null}, {"text": "computations", "start": 263, "end": 275, "id": 45, "annotation": null}, {"text": ".", "start": 276, "end": 277, "id": 46, "annotation": null}], [{"text": "Adsorption", "start": 278, "end": 288, "id": 47, "annotation": null}, {"text": "of", "start": 289, "end": 291, "id": 48, "annotation": null}, {"text": "tetrathiafulvalene", "start": 292, "end": 310, "id": 49, "annotation": null}, {"text": "(", "start": 311, "end": 312, "id": 50, "annotation": null}, {"text": "TTF", "start": 313, "end": 316, "id": 51, "annotation": null}, {"text": ")", "start": 317, "end": 318, "id": 52, "annotation": null}, {"text": "during", "start": 319, "end": 325, "id": 53, "annotation": null}, {"text": "synthetic", "start": 326, "end": 335, "id": 54, "annotation": null}, {"text": "procedures", "start": 336, "end": 346, "id": 55, "annotation": null}, {"text": "leads", "start": 347, "end": 352, "id": 56, "annotation": null}, {"text": "to", "start": 353, "end": 355, "id": 57, "annotation": null}, {"text": "lower", "start": 356, "end": 361, "id": 58, "annotation": null}, {"text": "formation", "start": 362, "end": 371, "id": 59, "annotation": null}, {"text": "energies", "start": 372, "end": 380, "id": 60, "annotation": null}, {"text": ",", "start": 381, "end": 382, "id": 61, "annotation": null}, {"text": "and", "start": 383, "end": 386, "id": 62, "annotation": null}, {"text": "accordingly", "start": 387, "end": 398, "id": 63, "annotation": null}, {"text": "higher", "start": 399, "end": 405, "id": 64, "annotation": null}, {"text": "concentration", "start": 406, "end": 419, "id": 65, "annotation": null}, {"text": "of", "start": 420, "end": 422, "id": 66, "annotation": null}, {"text": "p", "start": 423, "end": 424, "id": 67, "annotation": null}, {"text": "-", "start": 425, "end": 426, "id": 68, "annotation": null}, {"text": "type", "start": 427, "end": 431, "id": 69, "annotation": null}, {"text": "defects", "start": 432, "end": 439, "id": 70, "annotation": null}, {"text": ";", "start": 440, "end": 441, "id": 71, "annotation": null}, {"text": "after", "start": 442, "end": 447, "id": 72, "annotation": null}, {"text": "the", "start": 448, "end": 451, "id": 73, "annotation": null}, {"text": "formation", "start": 452, "end": 461, "id": 74, "annotation": null}, {"text": "of", "start": 462, "end": 464, "id": 75, "annotation": null}, {"text": "ZnO", "start": 465, "end": 468, "id": 76, "annotation": null}, {"text": "NWs", "start": 469, "end": 472, "id": 77, "annotation": null}, {"text": "and", "start": 473, "end": 476, "id": 78, "annotation": null}, {"text": "the", "start": 477, "end": 480, "id": 79, "annotation": null}, {"text": "desorption", "start": 481, "end": 491, "id": 80, "annotation": null}, {"text": "of", "start": 492, "end": 494, "id": 81, "annotation": null}, {"text": "TTF", "start": 495, "end": 498, "id": 82, "annotation": null}, {"text": ",", "start": 499, "end": 500, "id": 83, "annotation": null}, {"text": "p", "start": 501, "end": 502, "id": 84, "annotation": "DOPANT"}, {"text": "-", "start": 503, "end": 504, "id": 85, "annotation": "DOPANT"}, {"text": "type", "start": 505, "end": 509, "id": 86, "annotation": "DOPANT"}, {"text": "ZnO", "start": 510, "end": 513, "id": 87, "annotation": "BASEMAT"}, {"text": "NWs", "start": 514, "end": 517, "id": 88, "annotation": null}, {"text": "can", "start": 518, "end": 521, "id": 89, "annotation": null}, {"text": "be", "start": 522, "end": 524, "id": 90, "annotation": null}, {"text": "achieved", "start": 525, "end": 533, "id": 91, "annotation": null}, {"text": ".", "start": 534, "end": 535, "id": 92, "annotation": null}], [{"text": "Also", "start": 536, "end": 540, "id": 93, "annotation": null}, {"text": ",", "start": 541, "end": 542, "id": 94, "annotation": null}, {"text": "we", "start": 543, "end": 545, "id": 95, "annotation": null}, {"text": "present", "start": 546, "end": 553, "id": 96, "annotation": null}, {"text": "a", "start": 554, "end": 555, "id": 97, "annotation": null}, {"text": "facile", "start": 556, "end": 562, "id": 98, "annotation": null}, {"text": "synthesis", "start": 563, "end": 572, "id": 99, "annotation": null}, {"text": "route", "start": 573, "end": 578, "id": 100, "annotation": null}, {"text": "on", "start": 579, "end": 581, "id": 101, "annotation": null}, {"text": "basis", "start": 582, "end": 587, "id": 102, "annotation": null}, {"text": "of", "start": 588, "end": 590, "id": 103, "annotation": null}, {"text": "previous", "start": 591, "end": 599, "id": 104, "annotation": null}, {"text": "experiments", "start": 600, "end": 611, "id": 105, "annotation": null}, {"text": ",", "start": 612, "end": 613, "id": 106, "annotation": null}, {"text": "which", "start": 614, "end": 619, "id": 107, "annotation": null}, {"text": "provides", "start": 620, "end": 628, "id": 108, "annotation": null}, {"text": "some", "start": 629, "end": 633, "id": 109, "annotation": null}, {"text": "guidance", "start": 634, "end": 642, "id": 110, "annotation": null}, {"text": "for", "start": 643, "end": 646, "id": 111, "annotation": null}, {"text": "the", "start": 647, "end": 650, "id": 112, "annotation": null}, {"text": "realization", "start": 651, "end": 662, "id": 113, "annotation": null}, {"text": "of", "start": 663, "end": 665, "id": 114, "annotation": null}, {"text": "p", "start": 666, "end": 667, "id": 115, "annotation": "DOPANT"}, {"text": "-", "start": 668, "end": 669, "id": 116, "annotation": "DOPANT"}, {"text": "type", "start": 670, "end": 674, "id": 117, "annotation": "DOPANT"}, {"text": "ZnO", "start": 675, "end": 678, "id": 118, "annotation": "BASEMAT"}, {"text": "NWs", "start": 679, "end": 682, "id": 119, "annotation": null}, {"text": ".", "start": 683, "end": 684, "id": 120, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "A lattice-matched, 5 at.% Tm, 0.5 at.% Ho-codoped, 5.77 \u03bcm-thick KY0.58Gd0.22Lu0.20(WO4)2 active layer with optimized refractive index contrast is grown by liquid phase epitaxy on the (3 1 0) face of pure KY(WO4)2 substrate. Laser operation at 2051 nm (5I7 \u2192 5I8 transition of the Ho3+ ion) is demonstrated with this waveguide pumped at 794 nm. The maximum continuous wave output power amounts to 1.9 mW at 2051 nm corresponding to a slope efficiency of 10.5%. The laser threshold is as low as 1.5 mW of absorbed pump power. The developed structure is promising for single-transverse-mode channel holmium waveguide lasers. Laser operation in 3 at.% Tm-singly doped 4.41 \u03bcm thick layer grown on the (3 1 0)-oriented substrate is also demonstrated at 1841 nm with a slope efficiency of 31%.", "meta": {"doi": "10.1088/1612-2011/13/9/095801"}, "_input_hash": 1181624354, "_task_hash": -1052324462, "tokens": [[{"text": "A", "start": 18, "end": 19, "id": 4, "annotation": null}, {"text": "lattice", "start": 20, "end": 27, "id": 5, "annotation": null}, {"text": "-", "start": 28, "end": 29, "id": 6, "annotation": null}, {"text": "matched", "start": 30, "end": 37, "id": 7, "annotation": null}, {"text": ",", "start": 38, "end": 39, "id": 8, "annotation": null}, {"text": "5", "start": 40, "end": 41, "id": 9, "annotation": "DOPMODQ"}, {"text": "at.%", "start": 42, "end": 46, "id": 10, "annotation": "DOPMODQ"}, {"text": "Tm", "start": 47, "end": 49, "id": 11, "annotation": "DOPANT"}, {"text": ",", "start": 50, "end": 51, "id": 12, "annotation": null}, {"text": "0.5", "start": 52, "end": 55, "id": 13, "annotation": "DOPMODQ"}, {"text": "at.%", "start": 56, "end": 60, "id": 14, "annotation": "DOPMODQ"}, {"text": "Ho", "start": 61, "end": 63, "id": 15, "annotation": "DOPANT"}, {"text": "-", "start": 64, "end": 65, "id": 16, "annotation": null}, {"text": "codoped", "start": 66, "end": 73, "id": 17, "annotation": null}, {"text": ",", "start": 74, "end": 75, "id": 18, "annotation": null}, {"text": "5.77", "start": 76, "end": 80, "id": 19, "annotation": null}, {"text": "\u03bcm", "start": 81, "end": 83, "id": 20, "annotation": null}, {"text": "-", "start": 84, "end": 85, "id": 21, "annotation": null}, {"text": "thick", "start": 86, "end": 91, "id": 22, "annotation": null}, {"text": "KY0.58Gd0.22Lu0.20(WO4)2", "start": 92, "end": 116, "id": 23, "annotation": "BASEMAT"}, {"text": "active", "start": 117, "end": 123, "id": 24, "annotation": null}, {"text": "layer", "start": 124, "end": 129, "id": 25, "annotation": null}, {"text": "with", "start": 130, "end": 134, "id": 26, "annotation": null}, {"text": "optimized", "start": 135, "end": 144, "id": 27, "annotation": null}, {"text": "refractive", "start": 145, "end": 155, "id": 28, "annotation": null}, {"text": "index", "start": 156, "end": 161, "id": 29, "annotation": null}, {"text": "contrast", "start": 162, "end": 170, "id": 30, "annotation": null}, {"text": "is", "start": 171, "end": 173, "id": 31, "annotation": null}, {"text": "grown", "start": 174, "end": 179, "id": 32, "annotation": null}, {"text": "by", "start": 180, "end": 182, "id": 33, "annotation": null}, {"text": "liquid", "start": 183, "end": 189, "id": 34, "annotation": null}, {"text": "phase", "start": 190, "end": 195, "id": 35, "annotation": null}, {"text": "epitaxy", "start": 196, "end": 203, "id": 36, "annotation": null}, {"text": "on", "start": 204, "end": 206, "id": 37, "annotation": null}, {"text": "the", "start": 207, "end": 210, "id": 38, "annotation": null}, {"text": "(", "start": 211, "end": 212, "id": 39, "annotation": null}, {"text": "3", "start": 213, "end": 214, "id": 40, "annotation": null}, {"text": "1", "start": 215, "end": 216, "id": 41, "annotation": null}, {"text": "0", "start": 217, "end": 218, "id": 42, "annotation": null}, {"text": ")", "start": 219, "end": 220, "id": 43, "annotation": null}, {"text": "face", "start": 221, "end": 225, "id": 44, "annotation": null}, {"text": "of", "start": 226, "end": 228, "id": 45, "annotation": null}, {"text": "pure", "start": 229, "end": 233, "id": 46, "annotation": null}, {"text": "KY(WO4)2", "start": 234, "end": 242, "id": 47, "annotation": null}, {"text": "substrate", "start": 243, "end": 252, "id": 48, "annotation": null}, {"text": ".", "start": 253, "end": 254, "id": 49, "annotation": null}], [{"text": "Laser", "start": 255, "end": 260, "id": 50, "annotation": null}, {"text": "operation", "start": 261, "end": 270, "id": 51, "annotation": null}, {"text": "at", "start": 271, "end": 273, "id": 52, "annotation": null}, {"text": "2051", "start": 274, "end": 278, "id": 53, "annotation": null}, {"text": "nm", "start": 279, "end": 281, "id": 54, "annotation": null}, {"text": "(", "start": 282, "end": 283, "id": 55, "annotation": null}, {"text": "5I7", "start": 284, "end": 287, "id": 56, "annotation": null}, {"text": "\u2192", "start": 288, "end": 289, "id": 57, "annotation": null}, {"text": "5I8", "start": 290, "end": 293, "id": 58, "annotation": null}, {"text": "transition", "start": 294, "end": 304, "id": 59, "annotation": null}, {"text": "of", "start": 305, "end": 307, "id": 60, "annotation": null}, {"text": "the", "start": 308, "end": 311, "id": 61, "annotation": null}, {"text": "Ho3", "start": 312, "end": 315, "id": 62, "annotation": null}, {"text": "+", "start": 316, "end": 317, "id": 63, "annotation": null}, {"text": "ion", "start": 318, "end": 321, "id": 64, "annotation": null}, {"text": ")", "start": 322, "end": 323, "id": 65, "annotation": null}, {"text": "is", "start": 324, "end": 326, "id": 66, "annotation": null}, {"text": "demonstrated", "start": 327, "end": 339, "id": 67, "annotation": null}, {"text": "with", "start": 340, "end": 344, "id": 68, "annotation": null}, {"text": "this", "start": 345, "end": 349, "id": 69, "annotation": null}, {"text": "waveguide", "start": 350, "end": 359, "id": 70, "annotation": null}, {"text": "pumped", "start": 360, "end": 366, "id": 71, "annotation": null}, {"text": "at", "start": 367, "end": 369, "id": 72, "annotation": null}, {"text": "794", "start": 370, "end": 373, "id": 73, "annotation": null}, {"text": "nm", "start": 374, "end": 376, "id": 74, "annotation": null}, {"text": ".", "start": 377, "end": 378, "id": 75, "annotation": null}], [{"text": "The", "start": 379, "end": 382, "id": 76, "annotation": null}, {"text": "maximum", "start": 383, "end": 390, "id": 77, "annotation": null}, {"text": "continuous", "start": 391, "end": 401, "id": 78, "annotation": null}, {"text": "wave", "start": 402, "end": 406, "id": 79, "annotation": null}, {"text": "output", "start": 407, "end": 413, "id": 80, "annotation": null}, {"text": "power", "start": 414, "end": 419, "id": 81, "annotation": null}, {"text": "amounts", "start": 420, "end": 427, "id": 82, "annotation": null}, {"text": "to", "start": 428, "end": 430, "id": 83, "annotation": null}, {"text": "1.9", "start": 431, "end": 434, "id": 84, "annotation": null}, {"text": "mW", "start": 435, "end": 437, "id": 85, "annotation": null}, {"text": "at", "start": 438, "end": 440, "id": 86, "annotation": null}, {"text": "2051", "start": 441, "end": 445, "id": 87, "annotation": null}, {"text": "nm", "start": 446, "end": 448, "id": 88, "annotation": null}, {"text": "corresponding", "start": 449, "end": 462, "id": 89, "annotation": null}, {"text": "to", "start": 463, "end": 465, "id": 90, "annotation": null}, {"text": "a", "start": 466, "end": 467, "id": 91, "annotation": null}, {"text": "slope", "start": 468, "end": 473, "id": 92, "annotation": null}, {"text": "efficiency", "start": 474, "end": 484, "id": 93, "annotation": null}, {"text": "of", "start": 485, "end": 487, "id": 94, "annotation": null}, {"text": "10.5", "start": 488, "end": 492, "id": 95, "annotation": null}, {"text": "%", "start": 493, "end": 494, "id": 96, "annotation": null}, {"text": ".", "start": 495, "end": 496, "id": 97, "annotation": null}], [{"text": "The", "start": 497, "end": 500, "id": 98, "annotation": null}, {"text": "laser", "start": 501, "end": 506, "id": 99, "annotation": null}, {"text": "threshold", "start": 507, "end": 516, "id": 100, "annotation": null}, {"text": "is", "start": 517, "end": 519, "id": 101, "annotation": null}, {"text": "as", "start": 520, "end": 522, "id": 102, "annotation": null}, {"text": "low", "start": 523, "end": 526, "id": 103, "annotation": null}, {"text": "as", "start": 527, "end": 529, "id": 104, "annotation": null}, {"text": "1.5", "start": 530, "end": 533, "id": 105, "annotation": null}, {"text": "mW", "start": 534, "end": 536, "id": 106, "annotation": null}, {"text": "of", "start": 537, "end": 539, "id": 107, "annotation": null}, {"text": "absorbed", "start": 540, "end": 548, "id": 108, "annotation": null}, {"text": "pump", "start": 549, "end": 553, "id": 109, "annotation": null}, {"text": "power", "start": 554, "end": 559, "id": 110, "annotation": null}, {"text": ".", "start": 560, "end": 561, "id": 111, "annotation": null}], [{"text": "The", "start": 562, "end": 565, "id": 112, "annotation": null}, {"text": "developed", "start": 566, "end": 575, "id": 113, "annotation": null}, {"text": "structure", "start": 576, "end": 585, "id": 114, "annotation": null}, {"text": "is", "start": 586, "end": 588, "id": 115, "annotation": null}, {"text": "promising", "start": 589, "end": 598, "id": 116, "annotation": null}, {"text": "for", "start": 599, "end": 602, "id": 117, "annotation": null}, {"text": "single", "start": 603, "end": 609, "id": 118, "annotation": null}, {"text": "-", "start": 610, "end": 611, "id": 119, "annotation": null}, {"text": "transverse", "start": 612, "end": 622, "id": 120, "annotation": null}, {"text": "-", "start": 623, "end": 624, "id": 121, "annotation": null}, {"text": "mode", "start": 625, "end": 629, "id": 122, "annotation": null}, {"text": "channel", "start": 630, "end": 637, "id": 123, "annotation": null}, {"text": "holmium", "start": 638, "end": 645, "id": 124, "annotation": null}, {"text": "waveguide", "start": 646, "end": 655, "id": 125, "annotation": null}, {"text": "lasers", "start": 656, "end": 662, "id": 126, "annotation": null}, {"text": ".", "start": 663, "end": 664, "id": 127, "annotation": null}], [{"text": "Laser", "start": 665, "end": 670, "id": 128, "annotation": null}, {"text": "operation", "start": 671, "end": 680, "id": 129, "annotation": null}, {"text": "in", "start": 681, "end": 683, "id": 130, "annotation": null}, {"text": "3", "start": 684, "end": 685, "id": 131, "annotation": "DOPMODQ"}, {"text": "at.%", "start": 686, "end": 690, "id": 132, "annotation": "DOPMODQ"}, {"text": "Tm", "start": 691, "end": 693, "id": 133, "annotation": "DOPANT"}, {"text": "-", "start": 694, "end": 695, "id": 134, "annotation": null}, {"text": "singly", "start": 696, "end": 702, "id": 135, "annotation": null}, {"text": "doped", "start": 703, "end": 708, "id": 136, "annotation": null}, {"text": "4.41", "start": 709, "end": 713, "id": 137, "annotation": null}, {"text": "\u03bcm", "start": 714, "end": 716, "id": 138, "annotation": null}, {"text": "thick", "start": 717, "end": 722, "id": 139, "annotation": null}, {"text": "layer", "start": 723, "end": 728, "id": 140, "annotation": "BASEMAT"}, {"text": "grown", "start": 729, "end": 734, "id": 141, "annotation": null}, {"text": "on", "start": 735, "end": 737, "id": 142, "annotation": null}, {"text": "the", "start": 738, "end": 741, "id": 143, "annotation": null}, {"text": "(", "start": 742, "end": 743, "id": 144, "annotation": null}, {"text": "3", "start": 744, "end": 745, "id": 145, "annotation": null}, {"text": "1", "start": 746, "end": 747, "id": 146, "annotation": null}, {"text": "0)-oriented", "start": 748, "end": 759, "id": 147, "annotation": null}, {"text": "substrate", "start": 760, "end": 769, "id": 148, "annotation": null}, {"text": "is", "start": 770, "end": 772, "id": 149, "annotation": null}, {"text": "also", "start": 773, "end": 777, "id": 150, "annotation": null}, {"text": "demonstrated", "start": 778, "end": 790, "id": 151, "annotation": null}, {"text": "at", "start": 791, "end": 793, "id": 152, "annotation": null}, {"text": "1841", "start": 794, "end": 798, "id": 153, "annotation": null}, {"text": "nm", "start": 799, "end": 801, "id": 154, "annotation": null}, {"text": "with", "start": 802, "end": 806, "id": 155, "annotation": null}, {"text": "a", "start": 807, "end": 808, "id": 156, "annotation": null}, {"text": "slope", "start": 809, "end": 814, "id": 157, "annotation": null}, {"text": "efficiency", "start": 815, "end": 825, "id": 158, "annotation": null}, {"text": "of", "start": 826, "end": 828, "id": 159, "annotation": null}, {"text": "31", "start": 829, "end": 831, "id": 160, "annotation": null}, {"text": "%", "start": 832, "end": 833, "id": 161, "annotation": null}, {"text": ".", "start": 834, "end": 835, "id": 162, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Nd3+- and Yb3+-doped glasses and highly crystalline transparent glass-ceramics in the Na2O\u2013CaO\u2013SiO2 (NCS) system have been successfully prepared. Compared with Nd3+-doped NCS glass, the Yb3+-doped NCS glass has a stronger crystallization trend. The Nd3+- and Yb3+-doped NCS glass-ceramics contain about 84.35\u00b15vol% of Na6Ca3Si6O18 and 87.03\u00b15vol% of Na4Ca4Si6O18, respectively. The two crystal phases have the same basic structural units composed of 6-membered rings formed by 6 [SiO4] groups but the phase in the Yb3+-doped NCS glass-ceramics has a composition ratio more similar to its parent glass. The transmittance of the Yb3+-doped NCS glass-ceramics is higher than that of Nd3+-doped sample. Strong fluorescence emissions have been observed for the Nd3+-and Yb3+-doped NCS glass-ceramics, which indicates the potential of rare earth ions-doped highly crystalline transparent glass-ceramics for use as laser medium materials.", "meta": {"doi": "10.1016/j.ceramint.2013.04.049"}, "_input_hash": 676249740, "_task_hash": -1811059021, "tokens": [[{"text": "Nd3", "start": 0, "end": 3, "id": 0, "annotation": "DOPANT"}, {"text": "+", "start": 4, "end": 5, "id": 1, "annotation": "DOPANT"}, {"text": "-", "start": 6, "end": 7, "id": 2, "annotation": null}, {"text": "and", "start": 8, "end": 11, "id": 3, "annotation": null}, {"text": "Yb3", "start": 12, "end": 15, "id": 4, "annotation": "DOPANT"}, {"text": "+", "start": 16, "end": 17, "id": 5, "annotation": "DOPANT"}, {"text": "-doped", "start": 18, "end": 24, "id": 6, "annotation": null}, {"text": "glasses", "start": 25, "end": 32, "id": 7, "annotation": null}, {"text": "and", "start": 33, "end": 36, "id": 8, "annotation": null}, {"text": "highly", "start": 37, "end": 43, "id": 9, "annotation": null}, {"text": "crystalline", "start": 44, "end": 55, "id": 10, "annotation": null}, {"text": "transparent", "start": 56, "end": 67, "id": 11, "annotation": null}, {"text": "glass", "start": 68, "end": 73, "id": 12, "annotation": null}, {"text": "-", "start": 74, "end": 75, "id": 13, "annotation": null}, {"text": "ceramics", "start": 76, "end": 84, "id": 14, "annotation": null}, {"text": "in", "start": 85, "end": 87, "id": 15, "annotation": null}, {"text": "the", "start": 88, "end": 91, "id": 16, "annotation": null}, {"text": "Na2O", "start": 92, "end": 96, "id": 17, "annotation": "BASEMAT"}, {"text": "\u2013", "start": 97, "end": 98, "id": 18, "annotation": null}, {"text": "CaO", "start": 99, "end": 102, "id": 19, "annotation": null}, {"text": "\u2013", "start": 103, "end": 104, "id": 20, "annotation": null}, {"text": "SiO2", "start": 105, "end": 109, "id": 21, "annotation": "BASEMAT"}, {"text": "(", "start": 110, "end": 111, "id": 22, "annotation": null}, {"text": "NCS", "start": 112, "end": 115, "id": 23, "annotation": null}, {"text": ")", "start": 116, "end": 117, "id": 24, "annotation": null}, {"text": "system", "start": 118, "end": 124, "id": 25, "annotation": null}, {"text": "have", "start": 125, "end": 129, "id": 26, "annotation": null}, {"text": "been", "start": 130, "end": 134, "id": 27, "annotation": null}, {"text": "successfully", "start": 135, "end": 147, "id": 28, "annotation": null}, {"text": "prepared", "start": 148, "end": 156, "id": 29, "annotation": null}, {"text": ".", "start": 157, "end": 158, "id": 30, "annotation": null}], [{"text": "Compared", "start": 159, "end": 167, "id": 31, "annotation": null}, {"text": "with", "start": 168, "end": 172, "id": 32, "annotation": null}, {"text": "Nd3", "start": 173, "end": 176, "id": 33, "annotation": "DOPANT"}, {"text": "+", "start": 177, "end": 178, "id": 34, "annotation": "DOPANT"}, {"text": "-doped", "start": 179, "end": 185, "id": 35, "annotation": null}, {"text": "NCS", "start": 186, "end": 189, "id": 36, "annotation": "BASEMAT"}, {"text": "glass", "start": 190, "end": 195, "id": 37, "annotation": null}, {"text": ",", "start": 196, "end": 197, "id": 38, "annotation": null}, {"text": "the", "start": 198, "end": 201, "id": 39, "annotation": null}, {"text": "Yb3", "start": 202, "end": 205, "id": 40, "annotation": "DOPANT"}, {"text": "+", "start": 206, "end": 207, "id": 41, "annotation": "DOPANT"}, {"text": "-doped", "start": 208, "end": 214, "id": 42, "annotation": null}, {"text": "NCS", "start": 215, "end": 218, "id": 43, "annotation": "BASEMAT"}, {"text": "glass", "start": 219, "end": 224, "id": 44, "annotation": null}, {"text": "has", "start": 225, "end": 228, "id": 45, "annotation": null}, {"text": "a", "start": 229, "end": 230, "id": 46, "annotation": null}, {"text": "stronger", "start": 231, "end": 239, "id": 47, "annotation": null}, {"text": "crystallization", "start": 240, "end": 255, "id": 48, "annotation": null}, {"text": "trend", "start": 256, "end": 261, "id": 49, "annotation": null}, {"text": ".", "start": 262, "end": 263, "id": 50, "annotation": null}], [{"text": "The", "start": 264, "end": 267, "id": 51, "annotation": null}, {"text": "Nd3", "start": 268, "end": 271, "id": 52, "annotation": "DOPANT"}, {"text": "+", "start": 272, "end": 273, "id": 53, "annotation": "DOPANT"}, {"text": "-", "start": 274, "end": 275, "id": 54, "annotation": null}, {"text": "and", "start": 276, "end": 279, "id": 55, "annotation": null}, {"text": "Yb3", "start": 280, "end": 283, "id": 56, "annotation": "DOPANT"}, {"text": "+", "start": 284, "end": 285, "id": 57, "annotation": "DOPANT"}, {"text": "-doped", "start": 286, "end": 292, "id": 58, "annotation": null}, {"text": "NCS", "start": 293, "end": 296, "id": 59, "annotation": "BASEMAT"}, {"text": "glass", "start": 297, "end": 302, "id": 60, "annotation": null}, {"text": "-", "start": 303, "end": 304, "id": 61, "annotation": null}, {"text": "ceramics", "start": 305, "end": 313, "id": 62, "annotation": null}, {"text": "contain", "start": 314, "end": 321, "id": 63, "annotation": null}, {"text": "about", "start": 322, "end": 327, "id": 64, "annotation": null}, {"text": "84.35\u00b15vol%", "start": 328, "end": 339, "id": 65, "annotation": null}, {"text": "of", "start": 340, "end": 342, "id": 66, "annotation": null}, {"text": "Na6Ca3Si6O18", "start": 343, "end": 355, "id": 67, "annotation": null}, {"text": "and", "start": 356, "end": 359, "id": 68, "annotation": null}, {"text": "87.03\u00b15vol%", "start": 360, "end": 371, "id": 69, "annotation": null}, {"text": "of", "start": 372, "end": 374, "id": 70, "annotation": null}, {"text": "Na4Ca4Si6O18", "start": 375, "end": 387, "id": 71, "annotation": null}, {"text": ",", "start": 388, "end": 389, "id": 72, "annotation": null}, {"text": "respectively", "start": 390, "end": 402, "id": 73, "annotation": null}, {"text": ".", "start": 403, "end": 404, "id": 74, "annotation": null}], [{"text": "The", "start": 405, "end": 408, "id": 75, "annotation": null}, {"text": "two", "start": 409, "end": 412, "id": 76, "annotation": null}, {"text": "crystal", "start": 413, "end": 420, "id": 77, "annotation": null}, {"text": "phases", "start": 421, "end": 427, "id": 78, "annotation": null}, {"text": "have", "start": 428, "end": 432, "id": 79, "annotation": null}, {"text": "the", "start": 433, "end": 436, "id": 80, "annotation": null}, {"text": "same", "start": 437, "end": 441, "id": 81, "annotation": null}, {"text": "basic", "start": 442, "end": 447, "id": 82, "annotation": null}, {"text": "structural", "start": 448, "end": 458, "id": 83, "annotation": null}, {"text": "units", "start": 459, "end": 464, "id": 84, "annotation": null}, {"text": "composed", "start": 465, "end": 473, "id": 85, "annotation": null}, {"text": "of", "start": 474, "end": 476, "id": 86, "annotation": null}, {"text": "6-membered", "start": 477, "end": 487, "id": 87, "annotation": null}, {"text": "rings", "start": 488, "end": 493, "id": 88, "annotation": null}, {"text": "formed", "start": 494, "end": 500, "id": 89, "annotation": null}, {"text": "by", "start": 501, "end": 503, "id": 90, "annotation": null}, {"text": "6", "start": 504, "end": 505, "id": 91, "annotation": null}, {"text": "[", "start": 506, "end": 507, "id": 92, "annotation": null}, {"text": "SiO4", "start": 508, "end": 512, "id": 93, "annotation": null}, {"text": "]", "start": 513, "end": 514, "id": 94, "annotation": null}, {"text": "groups", "start": 515, "end": 521, "id": 95, "annotation": null}, {"text": "but", "start": 522, "end": 525, "id": 96, "annotation": null}, {"text": "the", "start": 526, "end": 529, "id": 97, "annotation": null}, {"text": "phase", "start": 530, "end": 535, "id": 98, "annotation": null}, {"text": "in", "start": 536, "end": 538, "id": 99, "annotation": null}, {"text": "the", "start": 539, "end": 542, "id": 100, "annotation": null}, {"text": "Yb3", "start": 543, "end": 546, "id": 101, "annotation": "DOPANT"}, {"text": "+", "start": 547, "end": 548, "id": 102, "annotation": "DOPANT"}, {"text": "-doped", "start": 549, "end": 555, "id": 103, "annotation": null}, {"text": "NCS", "start": 556, "end": 559, "id": 104, "annotation": "BASEMAT"}, {"text": "glass", "start": 560, "end": 565, "id": 105, "annotation": null}, {"text": "-", "start": 566, "end": 567, "id": 106, "annotation": null}, {"text": "ceramics", "start": 568, "end": 576, "id": 107, "annotation": null}, {"text": "has", "start": 577, "end": 580, "id": 108, "annotation": null}, {"text": "a", "start": 581, "end": 582, "id": 109, "annotation": null}, {"text": "composition", "start": 583, "end": 594, "id": 110, "annotation": null}, {"text": "ratio", "start": 595, "end": 600, "id": 111, "annotation": null}, {"text": "more", "start": 601, "end": 605, "id": 112, "annotation": null}, {"text": "similar", "start": 606, "end": 613, "id": 113, "annotation": null}, {"text": "to", "start": 614, "end": 616, "id": 114, "annotation": null}, {"text": "its", "start": 617, "end": 620, "id": 115, "annotation": null}, {"text": "parent", "start": 621, "end": 627, "id": 116, "annotation": null}, {"text": "glass", "start": 628, "end": 633, "id": 117, "annotation": null}, {"text": ".", "start": 634, "end": 635, "id": 118, "annotation": null}], [{"text": "The", "start": 636, "end": 639, "id": 119, "annotation": null}, {"text": "transmittance", "start": 640, "end": 653, "id": 120, "annotation": null}, {"text": "of", "start": 654, "end": 656, "id": 121, "annotation": null}, {"text": "the", "start": 657, "end": 660, "id": 122, "annotation": null}, {"text": "Yb3", "start": 661, "end": 664, "id": 123, "annotation": "DOPANT"}, {"text": "+", "start": 665, "end": 666, "id": 124, "annotation": "DOPANT"}, {"text": "-doped", "start": 667, "end": 673, "id": 125, "annotation": null}, {"text": "NCS", "start": 674, "end": 677, "id": 126, "annotation": "BASEMAT"}, {"text": "glass", "start": 678, "end": 683, "id": 127, "annotation": null}, {"text": "-", "start": 684, "end": 685, "id": 128, "annotation": null}, {"text": "ceramics", "start": 686, "end": 694, "id": 129, "annotation": null}, {"text": "is", "start": 695, "end": 697, "id": 130, "annotation": null}, {"text": "higher", "start": 698, "end": 704, "id": 131, "annotation": null}, {"text": "than", "start": 705, "end": 709, "id": 132, "annotation": null}, {"text": "that", "start": 710, "end": 714, "id": 133, "annotation": null}, {"text": "of", "start": 715, "end": 717, "id": 134, "annotation": null}, {"text": "Nd3", "start": 718, "end": 721, "id": 135, "annotation": "DOPANT"}, {"text": "+", "start": 722, "end": 723, "id": 136, "annotation": "DOPANT"}, {"text": "-doped", "start": 724, "end": 730, "id": 137, "annotation": null}, {"text": "sample", "start": 731, "end": 737, "id": 138, "annotation": "BASEMAT"}, {"text": ".", "start": 738, "end": 739, "id": 139, "annotation": null}], [{"text": "Strong", "start": 740, "end": 746, "id": 140, "annotation": null}, {"text": "fluorescence", "start": 747, "end": 759, "id": 141, "annotation": null}, {"text": "emissions", "start": 760, "end": 769, "id": 142, "annotation": null}, {"text": "have", "start": 770, "end": 774, "id": 143, "annotation": null}, {"text": "been", "start": 775, "end": 779, "id": 144, "annotation": null}, {"text": "observed", "start": 780, "end": 788, "id": 145, "annotation": null}, {"text": "for", "start": 789, "end": 792, "id": 146, "annotation": null}, {"text": "the", "start": 793, "end": 796, "id": 147, "annotation": null}, {"text": "Nd3", "start": 797, "end": 800, "id": 148, "annotation": "DOPANT"}, {"text": "+", "start": 801, "end": 802, "id": 149, "annotation": "DOPANT"}, {"text": "-and", "start": 803, "end": 807, "id": 150, "annotation": null}, {"text": "Yb3", "start": 808, "end": 811, "id": 151, "annotation": "DOPANT"}, {"text": "+", "start": 812, "end": 813, "id": 152, "annotation": "DOPANT"}, {"text": "-doped", "start": 814, "end": 820, "id": 153, "annotation": null}, {"text": "NCS", "start": 821, "end": 824, "id": 154, "annotation": "BASEMAT"}, {"text": "glass", "start": 825, "end": 830, "id": 155, "annotation": null}, {"text": "-", "start": 831, "end": 832, "id": 156, "annotation": null}, {"text": "ceramics", "start": 833, "end": 841, "id": 157, "annotation": null}, {"text": ",", "start": 842, "end": 843, "id": 158, "annotation": null}, {"text": "which", "start": 844, "end": 849, "id": 159, "annotation": null}, {"text": "indicates", "start": 850, "end": 859, "id": 160, "annotation": null}, {"text": "the", "start": 860, "end": 863, "id": 161, "annotation": null}, {"text": "potential", "start": 864, "end": 873, "id": 162, "annotation": null}, {"text": "of", "start": 874, "end": 876, "id": 163, "annotation": null}, {"text": "rare", "start": 877, "end": 881, "id": 164, "annotation": "DOPANT"}, {"text": "earth", "start": 882, "end": 887, "id": 165, "annotation": null}, {"text": "ions", "start": 888, "end": 892, "id": 166, "annotation": "DOPANT"}, {"text": "-", "start": 893, "end": 894, "id": 167, "annotation": null}, {"text": "doped", "start": 895, "end": 900, "id": 168, "annotation": null}, {"text": "highly", "start": 901, "end": 907, "id": 169, "annotation": null}, {"text": "crystalline", "start": 908, "end": 919, "id": 170, "annotation": null}, {"text": "transparent", "start": 920, "end": 931, "id": 171, "annotation": null}, {"text": "glass", "start": 932, "end": 937, "id": 172, "annotation": "BASEMAT"}, {"text": "-", "start": 938, "end": 939, "id": 173, "annotation": null}, {"text": "ceramics", "start": 940, "end": 948, "id": 174, "annotation": "BASEMAT"}, {"text": "for", "start": 949, "end": 952, "id": 175, "annotation": null}, {"text": "use", "start": 953, "end": 956, "id": 176, "annotation": null}, {"text": "as", "start": 957, "end": 959, "id": 177, "annotation": null}, {"text": "laser", "start": 960, "end": 965, "id": 178, "annotation": null}, {"text": "medium", "start": 966, "end": 972, "id": 179, "annotation": null}, {"text": "materials", "start": 973, "end": 982, "id": 180, "annotation": null}, {"text": ".", "start": 983, "end": 984, "id": 181, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Solid polymer electrolytes based on poly(vinyl pyrrolidone) (PVP) complexed with potassium periodide (KIO4) salt at different weight percent ratios were prepared using solution-cast technique. X-ray diffraction (XRD) results revealed that the amorphous nature of PVP polymer matrix increased with the increase of KIO4 salt concentration. The complexation of the salt with the polymer was confirmed by Fourier transform infrared (FTIR) spectroscopy studies. The ionic conductivity was found to increase with the increase of temperature as well as dopant concentration. The maximum ionic conductivity (1.421 \u00d7 10\u22124 S cm\u22121) was obtained for 15 wt% KIO4 doped polymer electrolyte at room temperature. The variation of ac conductivity with frequency obeyed Jonscher power law. The dynamical aspects of electrical transport process in the electrolyte were analyzed using complex electrical modulus. The peaks found in the electric modulus plots have been characterized in terms of the stretched exponential parameter. Optical absorption studies were performed in the wavelength range 200\u2013600 nm and the absorption band energies (direct band gap and indirect band gap) values were evaluated. Using these polymer electrolyte films electrochemical cells were fabricated and their discharge characteristics were studied.", "meta": {"doi": "10.1016/j.solidstatesciences.2013.02.006"}, "_input_hash": -1015242387, "_task_hash": -622647056, "tokens": [[{"text": "Solid", "start": 0, "end": 5, "id": 0, "annotation": null}, {"text": "polymer", "start": 6, "end": 13, "id": 1, "annotation": null}, {"text": "electrolytes", "start": 14, "end": 26, "id": 2, "annotation": null}, {"text": "based", "start": 27, "end": 32, "id": 3, "annotation": null}, {"text": "on", "start": 33, "end": 35, "id": 4, "annotation": null}, {"text": "poly(vinyl", "start": 36, "end": 46, "id": 5, "annotation": null}, {"text": "pyrrolidone", "start": 47, "end": 58, "id": 6, "annotation": null}, {"text": ")", "start": 59, "end": 60, "id": 7, "annotation": null}, {"text": "(", "start": 61, "end": 62, "id": 8, "annotation": null}, {"text": "PVP", "start": 63, "end": 66, "id": 9, "annotation": null}, {"text": ")", "start": 67, "end": 68, "id": 10, "annotation": null}, {"text": "complexed", "start": 69, "end": 78, "id": 11, "annotation": null}, {"text": "with", "start": 79, "end": 83, "id": 12, "annotation": null}, {"text": "potassium", "start": 84, "end": 93, "id": 13, "annotation": null}, {"text": "periodide", "start": 94, "end": 103, "id": 14, "annotation": null}, {"text": "(", "start": 104, "end": 105, "id": 15, "annotation": null}, {"text": "KIO4", "start": 106, "end": 110, "id": 16, "annotation": null}, {"text": ")", "start": 111, "end": 112, "id": 17, "annotation": null}, {"text": "salt", "start": 113, "end": 117, "id": 18, "annotation": null}, {"text": "at", "start": 118, "end": 120, "id": 19, "annotation": null}, {"text": "different", "start": 121, "end": 130, "id": 20, "annotation": null}, {"text": "weight", "start": 131, "end": 137, "id": 21, "annotation": null}, {"text": "percent", "start": 138, "end": 145, "id": 22, "annotation": null}, {"text": "ratios", "start": 146, "end": 152, "id": 23, "annotation": null}, {"text": "were", "start": 153, "end": 157, "id": 24, "annotation": null}, {"text": "prepared", "start": 158, "end": 166, "id": 25, "annotation": null}, {"text": "using", "start": 167, "end": 172, "id": 26, "annotation": null}, {"text": "solution", "start": 173, "end": 181, "id": 27, "annotation": null}, {"text": "-", "start": 182, "end": 183, "id": 28, "annotation": null}, {"text": "cast", "start": 184, "end": 188, "id": 29, "annotation": null}, {"text": "technique", "start": 189, "end": 198, "id": 30, "annotation": null}, {"text": ".", "start": 199, "end": 200, "id": 31, "annotation": null}], [{"text": "X", "start": 201, "end": 202, "id": 32, "annotation": null}, {"text": "-", "start": 203, "end": 204, "id": 33, "annotation": null}, {"text": "ray", "start": 205, "end": 208, "id": 34, "annotation": null}, {"text": "diffraction", "start": 209, "end": 220, "id": 35, "annotation": null}, {"text": "(", "start": 221, "end": 222, "id": 36, "annotation": null}, {"text": "XRD", "start": 223, "end": 226, "id": 37, "annotation": null}, {"text": ")", "start": 227, "end": 228, "id": 38, "annotation": null}, {"text": "results", "start": 229, "end": 236, "id": 39, "annotation": null}, {"text": "revealed", "start": 237, "end": 245, "id": 40, "annotation": null}, {"text": "that", "start": 246, "end": 250, "id": 41, "annotation": null}, {"text": "the", "start": 251, "end": 254, "id": 42, "annotation": null}, {"text": "amorphous", "start": 255, "end": 264, "id": 43, "annotation": null}, {"text": "nature", "start": 265, "end": 271, "id": 44, "annotation": null}, {"text": "of", "start": 272, "end": 274, "id": 45, "annotation": null}, {"text": "PVP", "start": 275, "end": 278, "id": 46, "annotation": null}, {"text": "polymer", "start": 279, "end": 286, "id": 47, "annotation": null}, {"text": "matrix", "start": 287, "end": 293, "id": 48, "annotation": null}, {"text": "increased", "start": 294, "end": 303, "id": 49, "annotation": null}, {"text": "with", "start": 304, "end": 308, "id": 50, "annotation": null}, {"text": "the", "start": 309, "end": 312, "id": 51, "annotation": null}, {"text": "increase", "start": 313, "end": 321, "id": 52, "annotation": null}, {"text": "of", "start": 322, "end": 324, "id": 53, "annotation": null}, {"text": "KIO4", "start": 325, "end": 329, "id": 54, "annotation": null}, {"text": "salt", "start": 330, "end": 334, "id": 55, "annotation": null}, {"text": "concentration", "start": 335, "end": 348, "id": 56, "annotation": null}, {"text": ".", "start": 349, "end": 350, "id": 57, "annotation": null}], [{"text": "The", "start": 351, "end": 354, "id": 58, "annotation": null}, {"text": "complexation", "start": 355, "end": 367, "id": 59, "annotation": null}, {"text": "of", "start": 368, "end": 370, "id": 60, "annotation": null}, {"text": "the", "start": 371, "end": 374, "id": 61, "annotation": null}, {"text": "salt", "start": 375, "end": 379, "id": 62, "annotation": null}, {"text": "with", "start": 380, "end": 384, "id": 63, "annotation": null}, {"text": "the", "start": 385, "end": 388, "id": 64, "annotation": null}, {"text": "polymer", "start": 389, "end": 396, "id": 65, "annotation": null}, {"text": "was", "start": 397, "end": 400, "id": 66, "annotation": null}, {"text": "confirmed", "start": 401, "end": 410, "id": 67, "annotation": null}, {"text": "by", "start": 411, "end": 413, "id": 68, "annotation": null}, {"text": "Fourier", "start": 414, "end": 421, "id": 69, "annotation": null}, {"text": "transform", "start": 422, "end": 431, "id": 70, "annotation": null}, {"text": "infrared", "start": 432, "end": 440, "id": 71, "annotation": null}, {"text": "(", "start": 441, "end": 442, "id": 72, "annotation": null}, {"text": "FTIR", "start": 443, "end": 447, "id": 73, "annotation": null}, {"text": ")", "start": 448, "end": 449, "id": 74, "annotation": null}, {"text": "spectroscopy", "start": 450, "end": 462, "id": 75, "annotation": null}, {"text": "studies", "start": 463, "end": 470, "id": 76, "annotation": null}, {"text": ".", "start": 471, "end": 472, "id": 77, "annotation": null}], [{"text": "The", "start": 473, "end": 476, "id": 78, "annotation": null}, {"text": "ionic", "start": 477, "end": 482, "id": 79, "annotation": null}, {"text": "conductivity", "start": 483, "end": 495, "id": 80, "annotation": null}, {"text": "was", "start": 496, "end": 499, "id": 81, "annotation": null}, {"text": "found", "start": 500, "end": 505, "id": 82, "annotation": null}, {"text": "to", "start": 506, "end": 508, "id": 83, "annotation": null}, {"text": "increase", "start": 509, "end": 517, "id": 84, "annotation": null}, {"text": "with", "start": 518, "end": 522, "id": 85, "annotation": null}, {"text": "the", "start": 523, "end": 526, "id": 86, "annotation": null}, {"text": "increase", "start": 527, "end": 535, "id": 87, "annotation": null}, {"text": "of", "start": 536, "end": 538, "id": 88, "annotation": null}, {"text": "temperature", "start": 539, "end": 550, "id": 89, "annotation": null}, {"text": "as", "start": 551, "end": 553, "id": 90, "annotation": null}, {"text": "well", "start": 554, "end": 558, "id": 91, "annotation": null}, {"text": "as", "start": 559, "end": 561, "id": 92, "annotation": null}, {"text": "dopant", "start": 562, "end": 568, "id": 93, "annotation": null}, {"text": "concentration", "start": 569, "end": 582, "id": 94, "annotation": null}, {"text": ".", "start": 583, "end": 584, "id": 95, "annotation": null}], [{"text": "The", "start": 585, "end": 588, "id": 96, "annotation": null}, {"text": "maximum", "start": 589, "end": 596, "id": 97, "annotation": null}, {"text": "ionic", "start": 597, "end": 602, "id": 98, "annotation": null}, {"text": "conductivity", "start": 603, "end": 615, "id": 99, "annotation": null}, {"text": "(", "start": 616, "end": 617, "id": 100, "annotation": null}, {"text": "1.421", "start": 618, "end": 623, "id": 101, "annotation": null}, {"text": "\u00d7", "start": 624, "end": 625, "id": 102, "annotation": null}, {"text": "10\u22124", "start": 626, "end": 630, "id": 103, "annotation": null}, {"text": "S", "start": 631, "end": 632, "id": 104, "annotation": null}, {"text": "cm\u22121", "start": 633, "end": 637, "id": 105, "annotation": null}, {"text": ")", "start": 638, "end": 639, "id": 106, "annotation": null}, {"text": "was", "start": 640, "end": 643, "id": 107, "annotation": null}, {"text": "obtained", "start": 644, "end": 652, "id": 108, "annotation": null}, {"text": "for", "start": 653, "end": 656, "id": 109, "annotation": null}, {"text": "15", "start": 657, "end": 659, "id": 110, "annotation": "DOPMODQ"}, {"text": "wt%", "start": 660, "end": 663, "id": 111, "annotation": "DOPMODQ"}, {"text": "KIO4", "start": 664, "end": 668, "id": 112, "annotation": "DOPANT"}, {"text": "doped", "start": 669, "end": 674, "id": 113, "annotation": null}, {"text": "polymer", "start": 675, "end": 682, "id": 114, "annotation": "BASEMAT"}, {"text": "electrolyte", "start": 683, "end": 694, "id": 115, "annotation": null}, {"text": "at", "start": 695, "end": 697, "id": 116, "annotation": null}, {"text": "room", "start": 698, "end": 702, "id": 117, "annotation": null}, {"text": "temperature", "start": 703, "end": 714, "id": 118, "annotation": null}, {"text": ".", "start": 715, "end": 716, "id": 119, "annotation": null}], [{"text": "The", "start": 717, "end": 720, "id": 120, "annotation": null}, {"text": "variation", "start": 721, "end": 730, "id": 121, "annotation": null}, {"text": "of", "start": 731, "end": 733, "id": 122, "annotation": null}, {"text": "ac", "start": 734, "end": 736, "id": 123, "annotation": null}, {"text": "conductivity", "start": 737, "end": 749, "id": 124, "annotation": null}, {"text": "with", "start": 750, "end": 754, "id": 125, "annotation": null}, {"text": "frequency", "start": 755, "end": 764, "id": 126, "annotation": null}, {"text": "obeyed", "start": 765, "end": 771, "id": 127, "annotation": null}, {"text": "Jonscher", "start": 772, "end": 780, "id": 128, "annotation": null}, {"text": "power", "start": 781, "end": 786, "id": 129, "annotation": null}, {"text": "law", "start": 787, "end": 790, "id": 130, "annotation": null}, {"text": ".", "start": 791, "end": 792, "id": 131, "annotation": null}], [{"text": "The", "start": 793, "end": 796, "id": 132, "annotation": null}, {"text": "dynamical", "start": 797, "end": 806, "id": 133, "annotation": null}, {"text": "aspects", "start": 807, "end": 814, "id": 134, "annotation": null}, {"text": "of", "start": 815, "end": 817, "id": 135, "annotation": null}, {"text": "electrical", "start": 818, "end": 828, "id": 136, "annotation": null}, {"text": "transport", "start": 829, "end": 838, "id": 137, "annotation": null}, {"text": "process", "start": 839, "end": 846, "id": 138, "annotation": null}, {"text": "in", "start": 847, "end": 849, "id": 139, "annotation": null}, {"text": "the", "start": 850, "end": 853, "id": 140, "annotation": null}, {"text": "electrolyte", "start": 854, "end": 865, "id": 141, "annotation": null}, {"text": "were", "start": 866, "end": 870, "id": 142, "annotation": null}, {"text": "analyzed", "start": 871, "end": 879, "id": 143, "annotation": null}, {"text": "using", "start": 880, "end": 885, "id": 144, "annotation": null}, {"text": "complex", "start": 886, "end": 893, "id": 145, "annotation": null}, {"text": "electrical", "start": 894, "end": 904, "id": 146, "annotation": null}, {"text": "modulus", "start": 905, "end": 912, "id": 147, "annotation": null}, {"text": ".", "start": 913, "end": 914, "id": 148, "annotation": null}], [{"text": "The", "start": 915, "end": 918, "id": 149, "annotation": null}, {"text": "peaks", "start": 919, "end": 924, "id": 150, "annotation": null}, {"text": "found", "start": 925, "end": 930, "id": 151, "annotation": null}, {"text": "in", "start": 931, "end": 933, "id": 152, "annotation": null}, {"text": "the", "start": 934, "end": 937, "id": 153, "annotation": null}, {"text": "electric", "start": 938, "end": 946, "id": 154, "annotation": null}, {"text": "modulus", "start": 947, "end": 954, "id": 155, "annotation": null}, {"text": "plots", "start": 955, "end": 960, "id": 156, "annotation": null}, {"text": "have", "start": 961, "end": 965, "id": 157, "annotation": null}, {"text": "been", "start": 966, "end": 970, "id": 158, "annotation": null}, {"text": "characterized", "start": 971, "end": 984, "id": 159, "annotation": null}, {"text": "in", "start": 985, "end": 987, "id": 160, "annotation": null}, {"text": "terms", "start": 988, "end": 993, "id": 161, "annotation": null}, {"text": "of", "start": 994, "end": 996, "id": 162, "annotation": null}, {"text": "the", "start": 997, "end": 1000, "id": 163, "annotation": null}, {"text": "stretched", "start": 1001, "end": 1010, "id": 164, "annotation": null}, {"text": "exponential", "start": 1011, "end": 1022, "id": 165, "annotation": null}, {"text": "parameter", "start": 1023, "end": 1032, "id": 166, "annotation": null}, {"text": ".", "start": 1033, "end": 1034, "id": 167, "annotation": null}], [{"text": "Optical", "start": 1035, "end": 1042, "id": 168, "annotation": null}, {"text": "absorption", "start": 1043, "end": 1053, "id": 169, "annotation": null}, {"text": "studies", "start": 1054, "end": 1061, "id": 170, "annotation": null}, {"text": "were", "start": 1062, "end": 1066, "id": 171, "annotation": null}, {"text": "performed", "start": 1067, "end": 1076, "id": 172, "annotation": null}, {"text": "in", "start": 1077, "end": 1079, "id": 173, "annotation": null}, {"text": "the", "start": 1080, "end": 1083, "id": 174, "annotation": null}, {"text": "wavelength", "start": 1084, "end": 1094, "id": 175, "annotation": null}, {"text": "range", "start": 1095, "end": 1100, "id": 176, "annotation": null}, {"text": "200\u2013600", "start": 1101, "end": 1108, "id": 177, "annotation": null}, {"text": "nm", "start": 1109, "end": 1111, "id": 178, "annotation": null}, {"text": "and", "start": 1112, "end": 1115, "id": 179, "annotation": null}, {"text": "the", "start": 1116, "end": 1119, "id": 180, "annotation": null}, {"text": "absorption", "start": 1120, "end": 1130, "id": 181, "annotation": null}, {"text": "band", "start": 1131, "end": 1135, "id": 182, "annotation": null}, {"text": "energies", "start": 1136, "end": 1144, "id": 183, "annotation": null}, {"text": "(", "start": 1145, "end": 1146, "id": 184, "annotation": null}, {"text": "direct", "start": 1147, "end": 1153, "id": 185, "annotation": null}, {"text": "band", "start": 1154, "end": 1158, "id": 186, "annotation": null}, {"text": "gap", "start": 1159, "end": 1162, "id": 187, "annotation": null}, {"text": "and", "start": 1163, "end": 1166, "id": 188, "annotation": null}, {"text": "indirect", "start": 1167, "end": 1175, "id": 189, "annotation": null}, {"text": "band", "start": 1176, "end": 1180, "id": 190, "annotation": null}, {"text": "gap", "start": 1181, "end": 1184, "id": 191, "annotation": null}, {"text": ")", "start": 1185, "end": 1186, "id": 192, "annotation": null}, {"text": "values", "start": 1187, "end": 1193, "id": 193, "annotation": null}, {"text": "were", "start": 1194, "end": 1198, "id": 194, "annotation": null}, {"text": "evaluated", "start": 1199, "end": 1208, "id": 195, "annotation": null}, {"text": ".", "start": 1209, "end": 1210, "id": 196, "annotation": null}], [{"text": "Using", "start": 1211, "end": 1216, "id": 197, "annotation": null}, {"text": "these", "start": 1217, "end": 1222, "id": 198, "annotation": null}, {"text": "polymer", "start": 1223, "end": 1230, "id": 199, "annotation": null}, {"text": "electrolyte", "start": 1231, "end": 1242, "id": 200, "annotation": null}, {"text": "films", "start": 1243, "end": 1248, "id": 201, "annotation": null}, {"text": "electrochemical", "start": 1249, "end": 1264, "id": 202, "annotation": null}, {"text": "cells", "start": 1265, "end": 1270, "id": 203, "annotation": null}, {"text": "were", "start": 1271, "end": 1275, "id": 204, "annotation": null}, {"text": "fabricated", "start": 1276, "end": 1286, "id": 205, "annotation": null}, {"text": "and", "start": 1287, "end": 1290, "id": 206, "annotation": null}, {"text": "their", "start": 1291, "end": 1296, "id": 207, "annotation": null}, {"text": "discharge", "start": 1297, "end": 1306, "id": 208, "annotation": null}, {"text": "characteristics", "start": 1307, "end": 1322, "id": 209, "annotation": null}, {"text": "were", "start": 1323, "end": 1327, "id": 210, "annotation": null}, {"text": "studied", "start": 1328, "end": 1335, "id": 211, "annotation": null}, {"text": ".", "start": 1336, "end": 1337, "id": 212, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Manipulating basal plane structure of graphene for advanced energy conversion materials design has been research frontier in recent years. By extending size of defects in the basal plane of graphene from atomic scale to nanoscale, graphene with in-plane holes can be synthesized by multiple steps oxidation and reduction of defective graphene oxide at low concentration. These complicated and low yield synthetic methods largely limited research and applications of holey graphene based high performance energy conversion materials. Inspired by graphene in-plane holes formation mechanism, an easy and scalable synthetic approach has been proposed in this work. By oxidizing widely available defective graphite mineral under high concentration, holey graphene oxide has been scalable synthesized. Through simple reduction of holey graphene oxide, nitrogen doped holey graphene with high volumetric capacitance of 439\u00a0F/cm3 was obtained. We believe this breakthrough can provide a feasible synthetic approach for further exploring the properties and performance of holey graphene based materials in variety of fields.", "meta": {"doi": "10.1016/j.jpowsour.2016.10.018"}, "_input_hash": 1923056679, "_task_hash": 721447612, "tokens": [[{"text": "Manipulating", "start": 0, "end": 12, "id": 0, "annotation": null}, {"text": "basal", "start": 13, "end": 18, "id": 1, "annotation": null}, {"text": "plane", "start": 19, "end": 24, "id": 2, "annotation": null}, {"text": "structure", "start": 25, "end": 34, "id": 3, "annotation": null}, {"text": "of", "start": 35, "end": 37, "id": 4, "annotation": null}, {"text": "graphene", "start": 38, "end": 46, "id": 5, "annotation": null}, {"text": "for", "start": 47, "end": 50, "id": 6, "annotation": null}, {"text": "advanced", "start": 51, "end": 59, "id": 7, "annotation": null}, {"text": "energy", "start": 60, "end": 66, "id": 8, "annotation": null}, {"text": "conversion", "start": 67, "end": 77, "id": 9, "annotation": null}, {"text": "materials", "start": 78, "end": 87, "id": 10, "annotation": null}, {"text": "design", "start": 88, "end": 94, "id": 11, "annotation": null}, {"text": "has", "start": 95, "end": 98, "id": 12, "annotation": null}, {"text": "been", "start": 99, "end": 103, "id": 13, "annotation": null}, {"text": "research", "start": 104, "end": 112, "id": 14, "annotation": null}, {"text": "frontier", "start": 113, "end": 121, "id": 15, "annotation": null}, {"text": "in", "start": 122, "end": 124, "id": 16, "annotation": null}, {"text": "recent", "start": 125, "end": 131, "id": 17, "annotation": null}, {"text": "years", "start": 132, "end": 137, "id": 18, "annotation": null}, {"text": ".", "start": 138, "end": 139, "id": 19, "annotation": null}], [{"text": "By", "start": 140, "end": 142, "id": 20, "annotation": null}, {"text": "extending", "start": 143, "end": 152, "id": 21, "annotation": null}, {"text": "size", "start": 153, "end": 157, "id": 22, "annotation": null}, {"text": "of", "start": 158, "end": 160, "id": 23, "annotation": null}, {"text": "defects", "start": 161, "end": 168, "id": 24, "annotation": null}, {"text": "in", "start": 169, "end": 171, "id": 25, "annotation": null}, {"text": "the", "start": 172, "end": 175, "id": 26, "annotation": null}, {"text": "basal", "start": 176, "end": 181, "id": 27, "annotation": null}, {"text": "plane", "start": 182, "end": 187, "id": 28, "annotation": null}, {"text": "of", "start": 188, "end": 190, "id": 29, "annotation": null}, {"text": "graphene", "start": 191, "end": 199, "id": 30, "annotation": null}, {"text": "from", "start": 200, "end": 204, "id": 31, "annotation": null}, {"text": "atomic", "start": 205, "end": 211, "id": 32, "annotation": null}, {"text": "scale", "start": 212, "end": 217, "id": 33, "annotation": null}, {"text": "to", "start": 218, "end": 220, "id": 34, "annotation": null}, {"text": "nanoscale", "start": 221, "end": 230, "id": 35, "annotation": null}, {"text": ",", "start": 231, "end": 232, "id": 36, "annotation": null}, {"text": "graphene", "start": 233, "end": 241, "id": 37, "annotation": null}, {"text": "with", "start": 242, "end": 246, "id": 38, "annotation": null}, {"text": "in", "start": 247, "end": 249, "id": 39, "annotation": null}, {"text": "-", "start": 250, "end": 251, "id": 40, "annotation": null}, {"text": "plane", "start": 252, "end": 257, "id": 41, "annotation": null}, {"text": "holes", "start": 258, "end": 263, "id": 42, "annotation": null}, {"text": "can", "start": 264, "end": 267, "id": 43, "annotation": null}, {"text": "be", "start": 268, "end": 270, "id": 44, "annotation": null}, {"text": "synthesized", "start": 271, "end": 282, "id": 45, "annotation": null}, {"text": "by", "start": 283, "end": 285, "id": 46, "annotation": null}, {"text": "multiple", "start": 286, "end": 294, "id": 47, "annotation": null}, {"text": "steps", "start": 295, "end": 300, "id": 48, "annotation": null}, {"text": "oxidation", "start": 301, "end": 310, "id": 49, "annotation": null}, {"text": "and", "start": 311, "end": 314, "id": 50, "annotation": null}, {"text": "reduction", "start": 315, "end": 324, "id": 51, "annotation": null}, {"text": "of", "start": 325, "end": 327, "id": 52, "annotation": null}, {"text": "defective", "start": 328, "end": 337, "id": 53, "annotation": null}, {"text": "graphene", "start": 338, "end": 346, "id": 54, "annotation": null}, {"text": "oxide", "start": 347, "end": 352, "id": 55, "annotation": null}, {"text": "at", "start": 353, "end": 355, "id": 56, "annotation": null}, {"text": "low", "start": 356, "end": 359, "id": 57, "annotation": null}, {"text": "concentration", "start": 360, "end": 373, "id": 58, "annotation": null}, {"text": ".", "start": 374, "end": 375, "id": 59, "annotation": null}], [{"text": "These", "start": 376, "end": 381, "id": 60, "annotation": null}, {"text": "complicated", "start": 382, "end": 393, "id": 61, "annotation": null}, {"text": "and", "start": 394, "end": 397, "id": 62, "annotation": null}, {"text": "low", "start": 398, "end": 401, "id": 63, "annotation": null}, {"text": "yield", "start": 402, "end": 407, "id": 64, "annotation": null}, {"text": "synthetic", "start": 408, "end": 417, "id": 65, "annotation": null}, {"text": "methods", "start": 418, "end": 425, "id": 66, "annotation": null}, {"text": "largely", "start": 426, "end": 433, "id": 67, "annotation": null}, {"text": "limited", "start": 434, "end": 441, "id": 68, "annotation": null}, {"text": "research", "start": 442, "end": 450, "id": 69, "annotation": null}, {"text": "and", "start": 451, "end": 454, "id": 70, "annotation": null}, {"text": "applications", "start": 455, "end": 467, "id": 71, "annotation": null}, {"text": "of", "start": 468, "end": 470, "id": 72, "annotation": null}, {"text": "holey", "start": 471, "end": 476, "id": 73, "annotation": null}, {"text": "graphene", "start": 477, "end": 485, "id": 74, "annotation": null}, {"text": "based", "start": 486, "end": 491, "id": 75, "annotation": null}, {"text": "high", "start": 492, "end": 496, "id": 76, "annotation": null}, {"text": "performance", "start": 497, "end": 508, "id": 77, "annotation": null}, {"text": "energy", "start": 509, "end": 515, "id": 78, "annotation": null}, {"text": "conversion", "start": 516, "end": 526, "id": 79, "annotation": null}, {"text": "materials", "start": 527, "end": 536, "id": 80, "annotation": null}, {"text": ".", "start": 537, "end": 538, "id": 81, "annotation": null}], [{"text": "Inspired", "start": 539, "end": 547, "id": 82, "annotation": null}, {"text": "by", "start": 548, "end": 550, "id": 83, "annotation": null}, {"text": "graphene", "start": 551, "end": 559, "id": 84, "annotation": null}, {"text": "in", "start": 560, "end": 562, "id": 85, "annotation": null}, {"text": "-", "start": 563, "end": 564, "id": 86, "annotation": null}, {"text": "plane", "start": 565, "end": 570, "id": 87, "annotation": null}, {"text": "holes", "start": 571, "end": 576, "id": 88, "annotation": null}, {"text": "formation", "start": 577, "end": 586, "id": 89, "annotation": null}, {"text": "mechanism", "start": 587, "end": 596, "id": 90, "annotation": null}, {"text": ",", "start": 597, "end": 598, "id": 91, "annotation": null}, {"text": "an", "start": 599, "end": 601, "id": 92, "annotation": null}, {"text": "easy", "start": 602, "end": 606, "id": 93, "annotation": null}, {"text": "and", "start": 607, "end": 610, "id": 94, "annotation": null}, {"text": "scalable", "start": 611, "end": 619, "id": 95, "annotation": null}, {"text": "synthetic", "start": 620, "end": 629, "id": 96, "annotation": null}, {"text": "approach", "start": 630, "end": 638, "id": 97, "annotation": null}, {"text": "has", "start": 639, "end": 642, "id": 98, "annotation": null}, {"text": "been", "start": 643, "end": 647, "id": 99, "annotation": null}, {"text": "proposed", "start": 648, "end": 656, "id": 100, "annotation": null}, {"text": "in", "start": 657, "end": 659, "id": 101, "annotation": null}, {"text": "this", "start": 660, "end": 664, "id": 102, "annotation": null}, {"text": "work", "start": 665, "end": 669, "id": 103, "annotation": null}, {"text": ".", "start": 670, "end": 671, "id": 104, "annotation": null}], [{"text": "By", "start": 672, "end": 674, "id": 105, "annotation": null}, {"text": "oxidizing", "start": 675, "end": 684, "id": 106, "annotation": null}, {"text": "widely", "start": 685, "end": 691, "id": 107, "annotation": null}, {"text": "available", "start": 692, "end": 701, "id": 108, "annotation": null}, {"text": "defective", "start": 702, "end": 711, "id": 109, "annotation": null}, {"text": "graphite", "start": 712, "end": 720, "id": 110, "annotation": null}, {"text": "mineral", "start": 721, "end": 728, "id": 111, "annotation": null}, {"text": "under", "start": 729, "end": 734, "id": 112, "annotation": null}, {"text": "high", "start": 735, "end": 739, "id": 113, "annotation": null}, {"text": "concentration", "start": 740, "end": 753, "id": 114, "annotation": null}, {"text": ",", "start": 754, "end": 755, "id": 115, "annotation": null}, {"text": "holey", "start": 756, "end": 761, "id": 116, "annotation": null}, {"text": "graphene", "start": 762, "end": 770, "id": 117, "annotation": null}, {"text": "oxide", "start": 771, "end": 776, "id": 118, "annotation": null}, {"text": "has", "start": 777, "end": 780, "id": 119, "annotation": null}, {"text": "been", "start": 781, "end": 785, "id": 120, "annotation": null}, {"text": "scalable", "start": 786, "end": 794, "id": 121, "annotation": null}, {"text": "synthesized", "start": 795, "end": 806, "id": 122, "annotation": null}, {"text": ".", "start": 807, "end": 808, "id": 123, "annotation": null}], [{"text": "Through", "start": 809, "end": 816, "id": 124, "annotation": null}, {"text": "simple", "start": 817, "end": 823, "id": 125, "annotation": null}, {"text": "reduction", "start": 824, "end": 833, "id": 126, "annotation": null}, {"text": "of", "start": 834, "end": 836, "id": 127, "annotation": null}, {"text": "holey", "start": 837, "end": 842, "id": 128, "annotation": null}, {"text": "graphene", "start": 843, "end": 851, "id": 129, "annotation": null}, {"text": "oxide", "start": 852, "end": 857, "id": 130, "annotation": null}, {"text": ",", "start": 858, "end": 859, "id": 131, "annotation": null}, {"text": "nitrogen", "start": 860, "end": 868, "id": 132, "annotation": "DOPANT"}, {"text": "doped", "start": 869, "end": 874, "id": 133, "annotation": null}, {"text": "holey", "start": 875, "end": 880, "id": 134, "annotation": null}, {"text": "graphene", "start": 881, "end": 889, "id": 135, "annotation": "BASEMAT"}, {"text": "with", "start": 890, "end": 894, "id": 136, "annotation": null}, {"text": "high", "start": 895, "end": 899, "id": 137, "annotation": null}, {"text": "volumetric", "start": 900, "end": 910, "id": 138, "annotation": null}, {"text": "capacitance", "start": 911, "end": 922, "id": 139, "annotation": null}, {"text": "of", "start": 923, "end": 925, "id": 140, "annotation": null}, {"text": "439", "start": 926, "end": 929, "id": 141, "annotation": null}, {"text": "F", "start": 930, "end": 931, "id": 143, "annotation": null}, {"text": "/", "start": 932, "end": 933, "id": 144, "annotation": null}, {"text": "cm3", "start": 934, "end": 937, "id": 145, "annotation": null}, {"text": "was", "start": 938, "end": 941, "id": 146, "annotation": null}, {"text": "obtained", "start": 942, "end": 950, "id": 147, "annotation": null}, {"text": ".", "start": 951, "end": 952, "id": 148, "annotation": null}], [{"text": "We", "start": 953, "end": 955, "id": 149, "annotation": null}, {"text": "believe", "start": 956, "end": 963, "id": 150, "annotation": null}, {"text": "this", "start": 964, "end": 968, "id": 151, "annotation": null}, {"text": "breakthrough", "start": 969, "end": 981, "id": 152, "annotation": null}, {"text": "can", "start": 982, "end": 985, "id": 153, "annotation": null}, {"text": "provide", "start": 986, "end": 993, "id": 154, "annotation": null}, {"text": "a", "start": 994, "end": 995, "id": 155, "annotation": null}, {"text": "feasible", "start": 996, "end": 1004, "id": 156, "annotation": null}, {"text": "synthetic", "start": 1005, "end": 1014, "id": 157, "annotation": null}, {"text": "approach", "start": 1015, "end": 1023, "id": 158, "annotation": null}, {"text": "for", "start": 1024, "end": 1027, "id": 159, "annotation": null}, {"text": "further", "start": 1028, "end": 1035, "id": 160, "annotation": null}, {"text": "exploring", "start": 1036, "end": 1045, "id": 161, "annotation": null}, {"text": "the", "start": 1046, "end": 1049, "id": 162, "annotation": null}, {"text": "properties", "start": 1050, "end": 1060, "id": 163, "annotation": null}, {"text": "and", "start": 1061, "end": 1064, "id": 164, "annotation": null}, {"text": "performance", "start": 1065, "end": 1076, "id": 165, "annotation": null}, {"text": "of", "start": 1077, "end": 1079, "id": 166, "annotation": null}, {"text": "holey", "start": 1080, "end": 1085, "id": 167, "annotation": null}, {"text": "graphene", "start": 1086, "end": 1094, "id": 168, "annotation": null}, {"text": "based", "start": 1095, "end": 1100, "id": 169, "annotation": null}, {"text": "materials", "start": 1101, "end": 1110, "id": 170, "annotation": null}, {"text": "in", "start": 1111, "end": 1113, "id": 171, "annotation": null}, {"text": "variety", "start": 1114, "end": 1121, "id": 172, "annotation": null}, {"text": "of", "start": 1122, "end": 1124, "id": 173, "annotation": null}, {"text": "fields", "start": 1125, "end": 1131, "id": 174, "annotation": null}, {"text": ".", "start": 1132, "end": 1133, "id": 175, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Adsorptions of CO on pristine, Fe-, Ru-, Os-, Co-, Rh-, Ir-, Ni-, Pd-, and Pt-doped graphene were investigated, using density functional theory calculation at B3LYP/LanL2DZ theoretical level. This work revealed that the transition metal doped graphenes were more highly sensitive to CO adsorption than that of pristine graphene. The Os- and Fe-doped graphenes displayed the strongest interaction with C and O atoms of CO molecule, respectively.", "meta": {"doi": "10.1016/j.spmi.2013.12.025"}, "_input_hash": 117559906, "_task_hash": -1237883147, "tokens": [[{"text": "Adsorptions", "start": 0, "end": 11, "id": 0, "annotation": null}, {"text": "of", "start": 12, "end": 14, "id": 1, "annotation": null}, {"text": "CO", "start": 15, "end": 17, "id": 2, "annotation": null}, {"text": "on", "start": 18, "end": 20, "id": 3, "annotation": null}, {"text": "pristine", "start": 21, "end": 29, "id": 4, "annotation": null}, {"text": ",", "start": 30, "end": 31, "id": 5, "annotation": null}, {"text": "Fe-", "start": 32, "end": 35, "id": 6, "annotation": "DOPANT"}, {"text": ",", "start": 36, "end": 37, "id": 7, "annotation": null}, {"text": "Ru-", "start": 38, "end": 41, "id": 8, "annotation": "DOPANT"}, {"text": ",", "start": 42, "end": 43, "id": 9, "annotation": null}, {"text": "Os-", "start": 44, "end": 47, "id": 10, "annotation": "DOPANT"}, {"text": ",", "start": 48, "end": 49, "id": 11, "annotation": null}, {"text": "Co-", "start": 50, "end": 53, "id": 12, "annotation": "DOPANT"}, {"text": ",", "start": 54, "end": 55, "id": 13, "annotation": null}, {"text": "Rh-", "start": 56, "end": 59, "id": 14, "annotation": "DOPANT"}, {"text": ",", "start": 60, "end": 61, "id": 15, "annotation": null}, {"text": "Ir-", "start": 62, "end": 65, "id": 16, "annotation": "DOPANT"}, {"text": ",", "start": 66, "end": 67, "id": 17, "annotation": null}, {"text": "Ni-", "start": 68, "end": 71, "id": 18, "annotation": "DOPANT"}, {"text": ",", "start": 72, "end": 73, "id": 19, "annotation": null}, {"text": "Pd-", "start": 74, "end": 77, "id": 20, "annotation": "DOPANT"}, {"text": ",", "start": 78, "end": 79, "id": 21, "annotation": null}, {"text": "and", "start": 80, "end": 83, "id": 22, "annotation": null}, {"text": "Pt", "start": 84, "end": 86, "id": 23, "annotation": "DOPANT"}, {"text": "-", "start": 87, "end": 88, "id": 24, "annotation": null}, {"text": "doped", "start": 89, "end": 94, "id": 25, "annotation": null}, {"text": "graphene", "start": 95, "end": 103, "id": 26, "annotation": "BASEMAT"}, {"text": "were", "start": 104, "end": 108, "id": 27, "annotation": null}, {"text": "investigated", "start": 109, "end": 121, "id": 28, "annotation": null}, {"text": ",", "start": 122, "end": 123, "id": 29, "annotation": null}, {"text": "using", "start": 124, "end": 129, "id": 30, "annotation": null}, {"text": "density", "start": 130, "end": 137, "id": 31, "annotation": null}, {"text": "functional", "start": 138, "end": 148, "id": 32, "annotation": null}, {"text": "theory", "start": 149, "end": 155, "id": 33, "annotation": null}, {"text": "calculation", "start": 156, "end": 167, "id": 34, "annotation": null}, {"text": "at", "start": 168, "end": 170, "id": 35, "annotation": null}, {"text": "B3LYP", "start": 171, "end": 176, "id": 36, "annotation": null}, {"text": "/", "start": 177, "end": 178, "id": 37, "annotation": null}, {"text": "LanL2DZ", "start": 179, "end": 186, "id": 38, "annotation": null}, {"text": "theoretical", "start": 187, "end": 198, "id": 39, "annotation": null}, {"text": "level", "start": 199, "end": 204, "id": 40, "annotation": null}, {"text": ".", "start": 205, "end": 206, "id": 41, "annotation": null}], [{"text": "This", "start": 207, "end": 211, "id": 42, "annotation": null}, {"text": "work", "start": 212, "end": 216, "id": 43, "annotation": null}, {"text": "revealed", "start": 217, "end": 225, "id": 44, "annotation": null}, {"text": "that", "start": 226, "end": 230, "id": 45, "annotation": null}, {"text": "the", "start": 231, "end": 234, "id": 46, "annotation": null}, {"text": "transition", "start": 235, "end": 245, "id": 47, "annotation": null}, {"text": "metal", "start": 246, "end": 251, "id": 48, "annotation": null}, {"text": "doped", "start": 252, "end": 257, "id": 49, "annotation": null}, {"text": "graphenes", "start": 258, "end": 267, "id": 50, "annotation": null}, {"text": "were", "start": 268, "end": 272, "id": 51, "annotation": null}, {"text": "more", "start": 273, "end": 277, "id": 52, "annotation": null}, {"text": "highly", "start": 278, "end": 284, "id": 53, "annotation": null}, {"text": "sensitive", "start": 285, "end": 294, "id": 54, "annotation": null}, {"text": "to", "start": 295, "end": 297, "id": 55, "annotation": null}, {"text": "CO", "start": 298, "end": 300, "id": 56, "annotation": null}, {"text": "adsorption", "start": 301, "end": 311, "id": 57, "annotation": null}, {"text": "than", "start": 312, "end": 316, "id": 58, "annotation": null}, {"text": "that", "start": 317, "end": 321, "id": 59, "annotation": null}, {"text": "of", "start": 322, "end": 324, "id": 60, "annotation": null}, {"text": "pristine", "start": 325, "end": 333, "id": 61, "annotation": null}, {"text": "graphene", "start": 334, "end": 342, "id": 62, "annotation": null}, {"text": ".", "start": 343, "end": 344, "id": 63, "annotation": null}], [{"text": "The", "start": 345, "end": 348, "id": 64, "annotation": null}, {"text": "Os-", "start": 349, "end": 352, "id": 65, "annotation": "DOPANT"}, {"text": "and", "start": 353, "end": 356, "id": 66, "annotation": null}, {"text": "Fe", "start": 357, "end": 359, "id": 67, "annotation": "DOPANT"}, {"text": "-", "start": 360, "end": 361, "id": 68, "annotation": null}, {"text": "doped", "start": 362, "end": 367, "id": 69, "annotation": null}, {"text": "graphenes", "start": 368, "end": 377, "id": 70, "annotation": "BASEMAT"}, {"text": "displayed", "start": 378, "end": 387, "id": 71, "annotation": null}, {"text": "the", "start": 388, "end": 391, "id": 72, "annotation": null}, {"text": "strongest", "start": 392, "end": 401, "id": 73, "annotation": null}, {"text": "interaction", "start": 402, "end": 413, "id": 74, "annotation": null}, {"text": "with", "start": 414, "end": 418, "id": 75, "annotation": null}, {"text": "C", "start": 419, "end": 420, "id": 76, "annotation": null}, {"text": "and", "start": 421, "end": 424, "id": 77, "annotation": null}, {"text": "O", "start": 425, "end": 426, "id": 78, "annotation": null}, {"text": "atoms", "start": 427, "end": 432, "id": 79, "annotation": null}, {"text": "of", "start": 433, "end": 435, "id": 80, "annotation": null}, {"text": "CO", "start": 436, "end": 438, "id": 81, "annotation": null}, {"text": "molecule", "start": 439, "end": 447, "id": 82, "annotation": null}, {"text": ",", "start": 448, "end": 449, "id": 83, "annotation": null}, {"text": "respectively", "start": 450, "end": 462, "id": 84, "annotation": null}, {"text": ".", "start": 463, "end": 464, "id": 85, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "We report measurements of electrical resistivity, thermopower and thermal conductivity for a series of high-textured Ag-doped and Ag-added Ca 3Co4O9+\u03b4 ceramic specimens. The results show that variable range hopping transport behaviour of the system transforms from two-dimensional to quasi-three-dimensional with Ag addition, which is isotropic to a certain extent. The thermoelectric (TE) performance of Ca 3Co4O9+\u03b4 is improved effectively by Ag+ doping or/and Ag addition. The Ca2.7Ag0.3 Co4O9+\u03b4/Ag0.3 composite exhibits quite a respectable room temperature ZT value of 0.1, suggesting that such a composite is a promising candidate for p-type room temperature TE cooling application.", "meta": {"doi": "10.1088/0022-3727/41/4/045406"}, "_input_hash": 327220768, "_task_hash": -2020139022, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "report", "start": 3, "end": 9, "id": 1, "annotation": null}, {"text": "measurements", "start": 10, "end": 22, "id": 2, "annotation": null}, {"text": "of", "start": 23, "end": 25, "id": 3, "annotation": null}, {"text": "electrical", "start": 26, "end": 36, "id": 4, "annotation": null}, {"text": "resistivity", "start": 37, "end": 48, "id": 5, "annotation": null}, {"text": ",", "start": 49, "end": 50, "id": 6, "annotation": null}, {"text": "thermopower", "start": 51, "end": 62, "id": 7, "annotation": null}, {"text": "and", "start": 63, "end": 66, "id": 8, "annotation": null}, {"text": "thermal", "start": 67, "end": 74, "id": 9, "annotation": null}, {"text": "conductivity", "start": 75, "end": 87, "id": 10, "annotation": null}, {"text": "for", "start": 88, "end": 91, "id": 11, "annotation": null}, {"text": "a", "start": 92, "end": 93, "id": 12, "annotation": null}, {"text": "series", "start": 94, "end": 100, "id": 13, "annotation": null}, {"text": "of", "start": 101, "end": 103, "id": 14, "annotation": null}, {"text": "high", "start": 104, "end": 108, "id": 15, "annotation": null}, {"text": "-", "start": 109, "end": 110, "id": 16, "annotation": null}, {"text": "textured", "start": 111, "end": 119, "id": 17, "annotation": null}, {"text": "Ag", "start": 120, "end": 122, "id": 18, "annotation": "DOPANT"}, {"text": "-", "start": 123, "end": 124, "id": 19, "annotation": null}, {"text": "doped", "start": 125, "end": 130, "id": 20, "annotation": null}, {"text": "and", "start": 131, "end": 134, "id": 21, "annotation": null}, {"text": "Ag", "start": 135, "end": 137, "id": 22, "annotation": null}, {"text": "-", "start": 138, "end": 139, "id": 23, "annotation": null}, {"text": "added", "start": 140, "end": 145, "id": 24, "annotation": null}, {"text": "Ca", "start": 146, "end": 148, "id": 25, "annotation": "BASEMAT"}, {"text": "3Co4O9+\u03b4", "start": 149, "end": 157, "id": 26, "annotation": "BASEMAT"}, {"text": "ceramic", "start": 158, "end": 165, "id": 27, "annotation": null}, {"text": "specimens", "start": 166, "end": 175, "id": 28, "annotation": null}, {"text": ".", "start": 176, "end": 177, "id": 29, "annotation": null}], [{"text": "The", "start": 178, "end": 181, "id": 30, "annotation": null}, {"text": "results", "start": 182, "end": 189, "id": 31, "annotation": null}, {"text": "show", "start": 190, "end": 194, "id": 32, "annotation": null}, {"text": "that", "start": 195, "end": 199, "id": 33, "annotation": null}, {"text": "variable", "start": 200, "end": 208, "id": 34, "annotation": null}, {"text": "range", "start": 209, "end": 214, "id": 35, "annotation": null}, {"text": "hopping", "start": 215, "end": 222, "id": 36, "annotation": null}, {"text": "transport", "start": 223, "end": 232, "id": 37, "annotation": null}, {"text": "behaviour", "start": 233, "end": 242, "id": 38, "annotation": null}, {"text": "of", "start": 243, "end": 245, "id": 39, "annotation": null}, {"text": "the", "start": 246, "end": 249, "id": 40, "annotation": null}, {"text": "system", "start": 250, "end": 256, "id": 41, "annotation": null}, {"text": "transforms", "start": 257, "end": 267, "id": 42, "annotation": null}, {"text": "from", "start": 268, "end": 272, "id": 43, "annotation": null}, {"text": "two", "start": 273, "end": 276, "id": 44, "annotation": null}, {"text": "-", "start": 277, "end": 278, "id": 45, "annotation": null}, {"text": "dimensional", "start": 279, "end": 290, "id": 46, "annotation": null}, {"text": "to", "start": 291, "end": 293, "id": 47, "annotation": null}, {"text": "quasi", "start": 294, "end": 299, "id": 48, "annotation": null}, {"text": "-", "start": 300, "end": 301, "id": 49, "annotation": null}, {"text": "three", "start": 302, "end": 307, "id": 50, "annotation": null}, {"text": "-", "start": 308, "end": 309, "id": 51, "annotation": null}, {"text": "dimensional", "start": 310, "end": 321, "id": 52, "annotation": null}, {"text": "with", "start": 322, "end": 326, "id": 53, "annotation": null}, {"text": "Ag", "start": 327, "end": 329, "id": 54, "annotation": null}, {"text": "addition", "start": 330, "end": 338, "id": 55, "annotation": null}, {"text": ",", "start": 339, "end": 340, "id": 56, "annotation": null}, {"text": "which", "start": 341, "end": 346, "id": 57, "annotation": null}, {"text": "is", "start": 347, "end": 349, "id": 58, "annotation": null}, {"text": "isotropic", "start": 350, "end": 359, "id": 59, "annotation": null}, {"text": "to", "start": 360, "end": 362, "id": 60, "annotation": null}, {"text": "a", "start": 363, "end": 364, "id": 61, "annotation": null}, {"text": "certain", "start": 365, "end": 372, "id": 62, "annotation": null}, {"text": "extent", "start": 373, "end": 379, "id": 63, "annotation": null}, {"text": ".", "start": 380, "end": 381, "id": 64, "annotation": null}], [{"text": "The", "start": 382, "end": 385, "id": 65, "annotation": null}, {"text": "thermoelectric", "start": 386, "end": 400, "id": 66, "annotation": null}, {"text": "(", "start": 401, "end": 402, "id": 67, "annotation": null}, {"text": "TE", "start": 403, "end": 405, "id": 68, "annotation": null}, {"text": ")", "start": 406, "end": 407, "id": 69, "annotation": null}, {"text": "performance", "start": 408, "end": 419, "id": 70, "annotation": null}, {"text": "of", "start": 420, "end": 422, "id": 71, "annotation": null}, {"text": "Ca", "start": 423, "end": 425, "id": 72, "annotation": "BASEMAT"}, {"text": "3Co4O9+\u03b4", "start": 426, "end": 434, "id": 73, "annotation": "BASEMAT"}, {"text": "is", "start": 435, "end": 437, "id": 74, "annotation": null}, {"text": "improved", "start": 438, "end": 446, "id": 75, "annotation": null}, {"text": "effectively", "start": 447, "end": 458, "id": 76, "annotation": null}, {"text": "by", "start": 459, "end": 461, "id": 77, "annotation": null}, {"text": "Ag+", "start": 462, "end": 465, "id": 78, "annotation": "DOPANT"}, {"text": "doping", "start": 466, "end": 472, "id": 79, "annotation": null}, {"text": "or", "start": 473, "end": 475, "id": 80, "annotation": null}, {"text": "/", "start": 476, "end": 477, "id": 81, "annotation": null}, {"text": "and", "start": 478, "end": 481, "id": 82, "annotation": null}, {"text": "Ag", "start": 482, "end": 484, "id": 83, "annotation": null}, {"text": "addition", "start": 485, "end": 493, "id": 84, "annotation": null}, {"text": ".", "start": 494, "end": 495, "id": 85, "annotation": null}], [{"text": "The", "start": 496, "end": 499, "id": 86, "annotation": null}, {"text": "Ca2.7Ag0.3", "start": 500, "end": 510, "id": 87, "annotation": null}, {"text": "Co4O9+\u03b4", "start": 511, "end": 518, "id": 88, "annotation": null}, {"text": "/", "start": 519, "end": 520, "id": 89, "annotation": null}, {"text": "Ag0.3", "start": 521, "end": 526, "id": 90, "annotation": null}, {"text": "composite", "start": 527, "end": 536, "id": 91, "annotation": null}, {"text": "exhibits", "start": 537, "end": 545, "id": 92, "annotation": null}, {"text": "quite", "start": 546, "end": 551, "id": 93, "annotation": null}, {"text": "a", "start": 552, "end": 553, "id": 94, "annotation": null}, {"text": "respectable", "start": 554, "end": 565, "id": 95, "annotation": null}, {"text": "room", "start": 566, "end": 570, "id": 96, "annotation": null}, {"text": "temperature", "start": 571, "end": 582, "id": 97, "annotation": null}, {"text": "ZT", "start": 583, "end": 585, "id": 98, "annotation": null}, {"text": "value", "start": 586, "end": 591, "id": 99, "annotation": null}, {"text": "of", "start": 592, "end": 594, "id": 100, "annotation": null}, {"text": "0.1", "start": 595, "end": 598, "id": 101, "annotation": null}, {"text": ",", "start": 599, "end": 600, "id": 102, "annotation": null}, {"text": "suggesting", "start": 601, "end": 611, "id": 103, "annotation": null}, {"text": "that", "start": 612, "end": 616, "id": 104, "annotation": null}, {"text": "such", "start": 617, "end": 621, "id": 105, "annotation": null}, {"text": "a", "start": 622, "end": 623, "id": 106, "annotation": null}, {"text": "composite", "start": 624, "end": 633, "id": 107, "annotation": null}, {"text": "is", "start": 634, "end": 636, "id": 108, "annotation": null}, {"text": "a", "start": 637, "end": 638, "id": 109, "annotation": null}, {"text": "promising", "start": 639, "end": 648, "id": 110, "annotation": null}, {"text": "candidate", "start": 649, "end": 658, "id": 111, "annotation": null}, {"text": "for", "start": 659, "end": 662, "id": 112, "annotation": null}, {"text": "p", "start": 663, "end": 664, "id": 113, "annotation": null}, {"text": "-", "start": 665, "end": 666, "id": 114, "annotation": null}, {"text": "type", "start": 667, "end": 671, "id": 115, "annotation": null}, {"text": "room", "start": 672, "end": 676, "id": 116, "annotation": null}, {"text": "temperature", "start": 677, "end": 688, "id": 117, "annotation": null}, {"text": "TE", "start": 689, "end": 691, "id": 118, "annotation": null}, {"text": "cooling", "start": 692, "end": 699, "id": 119, "annotation": null}, {"text": "application", "start": 700, "end": 711, "id": 120, "annotation": null}, {"text": ".", "start": 712, "end": 713, "id": 121, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "In this study, Al-doped ZnO (AZO) and Ni\u2215AZO films were deposited on p-type GaN films followed by thermal annealing to form ohmic contacts. After thermal annealing, the resistivities of AZO films reduced from 5\u00d710\u22123 to 4\u20136\u00d710\u22124\u03a9cm . Both as-deposited AZO and Ni\u2215AZO contacts on p-GaN displayed a non-ohmic characteristic. Only the 800\u00b0C-annealed Ni\u2215AZO contacts exhibited a linear current\u2013voltage characteristic, showing a specific contact resistance of around 1.2\u00d710\u22122\u03a9cm2 . After undergoing the annealing in nitrogen ambience, the light transmittance of the Ni\u2215AZO films increased from 70% to higher than 90% in the visible range. These results revealed that the Ni\u2215AZO contact can serve as a suitable transparent current spreading layer for the fabrication of GaN-based light-emitting devices.", "meta": {"doi": "10.1149/1.2171817"}, "_input_hash": 365243696, "_task_hash": -1859459316, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "study", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": ",", "start": 14, "end": 15, "id": 3, "annotation": null}, {"text": "Al", "start": 16, "end": 18, "id": 4, "annotation": "DOPANT"}, {"text": "-", "start": 19, "end": 20, "id": 5, "annotation": null}, {"text": "doped", "start": 21, "end": 26, "id": 6, "annotation": null}, {"text": "ZnO", "start": 27, "end": 30, "id": 7, "annotation": "BASEMAT"}, {"text": "(", "start": 31, "end": 32, "id": 8, "annotation": null}, {"text": "AZO", "start": 33, "end": 36, "id": 9, "annotation": null}, {"text": ")", "start": 37, "end": 38, "id": 10, "annotation": null}, {"text": "and", "start": 39, "end": 42, "id": 11, "annotation": null}, {"text": "Ni\u2215AZO", "start": 43, "end": 49, "id": 12, "annotation": null}, {"text": "films", "start": 50, "end": 55, "id": 13, "annotation": null}, {"text": "were", "start": 56, "end": 60, "id": 14, "annotation": null}, {"text": "deposited", "start": 61, "end": 70, "id": 15, "annotation": null}, {"text": "on", "start": 71, "end": 73, "id": 16, "annotation": null}, {"text": "p", "start": 74, "end": 75, "id": 17, "annotation": "DOPANT"}, {"text": "-", "start": 76, "end": 77, "id": 18, "annotation": null}, {"text": "type", "start": 78, "end": 82, "id": 19, "annotation": "DOPANT"}, {"text": "GaN", "start": 83, "end": 86, "id": 20, "annotation": "BASEMAT"}, {"text": "films", "start": 87, "end": 92, "id": 21, "annotation": null}, {"text": "followed", "start": 93, "end": 101, "id": 22, "annotation": null}, {"text": "by", "start": 102, "end": 104, "id": 23, "annotation": null}, {"text": "thermal", "start": 105, "end": 112, "id": 24, "annotation": null}, {"text": "annealing", "start": 113, "end": 122, "id": 25, "annotation": null}, {"text": "to", "start": 123, "end": 125, "id": 26, "annotation": null}, {"text": "form", "start": 126, "end": 130, "id": 27, "annotation": null}, {"text": "ohmic", "start": 131, "end": 136, "id": 28, "annotation": null}, {"text": "contacts", "start": 137, "end": 145, "id": 29, "annotation": null}, {"text": ".", "start": 146, "end": 147, "id": 30, "annotation": null}], [{"text": "After", "start": 148, "end": 153, "id": 31, "annotation": null}, {"text": "thermal", "start": 154, "end": 161, "id": 32, "annotation": null}, {"text": "annealing", "start": 162, "end": 171, "id": 33, "annotation": null}, {"text": ",", "start": 172, "end": 173, "id": 34, "annotation": null}, {"text": "the", "start": 174, "end": 177, "id": 35, "annotation": null}, {"text": "resistivities", "start": 178, "end": 191, "id": 36, "annotation": null}, {"text": "of", "start": 192, "end": 194, "id": 37, "annotation": null}, {"text": "AZO", "start": 195, "end": 198, "id": 38, "annotation": null}, {"text": "films", "start": 199, "end": 204, "id": 39, "annotation": null}, {"text": "reduced", "start": 205, "end": 212, "id": 40, "annotation": null}, {"text": "from", "start": 213, "end": 217, "id": 41, "annotation": null}, {"text": "5\u00d710\u22123", "start": 218, "end": 224, "id": 42, "annotation": null}, {"text": "to", "start": 225, "end": 227, "id": 43, "annotation": null}, {"text": "4\u20136\u00d710\u22124\u03a9cm", "start": 228, "end": 239, "id": 44, "annotation": null}, {"text": ".", "start": 240, "end": 241, "id": 45, "annotation": null}], [{"text": "Both", "start": 242, "end": 246, "id": 46, "annotation": null}, {"text": "as", "start": 247, "end": 249, "id": 47, "annotation": null}, {"text": "-", "start": 250, "end": 251, "id": 48, "annotation": null}, {"text": "deposited", "start": 252, "end": 261, "id": 49, "annotation": null}, {"text": "AZO", "start": 262, "end": 265, "id": 50, "annotation": null}, {"text": "and", "start": 266, "end": 269, "id": 51, "annotation": null}, {"text": "Ni\u2215AZO", "start": 270, "end": 276, "id": 52, "annotation": null}, {"text": "contacts", "start": 277, "end": 285, "id": 53, "annotation": null}, {"text": "on", "start": 286, "end": 288, "id": 54, "annotation": null}, {"text": "p", "start": 289, "end": 290, "id": 55, "annotation": null}, {"text": "-", "start": 291, "end": 292, "id": 56, "annotation": null}, {"text": "GaN", "start": 293, "end": 296, "id": 57, "annotation": null}, {"text": "displayed", "start": 297, "end": 306, "id": 58, "annotation": null}, {"text": "a", "start": 307, "end": 308, "id": 59, "annotation": null}, {"text": "non", "start": 309, "end": 312, "id": 60, "annotation": null}, {"text": "-", "start": 313, "end": 314, "id": 61, "annotation": null}, {"text": "ohmic", "start": 315, "end": 320, "id": 62, "annotation": null}, {"text": "characteristic", "start": 321, "end": 335, "id": 63, "annotation": null}, {"text": ".", "start": 336, "end": 337, "id": 64, "annotation": null}], [{"text": "Only", "start": 338, "end": 342, "id": 65, "annotation": null}, {"text": "the", "start": 343, "end": 346, "id": 66, "annotation": null}, {"text": "800", "start": 347, "end": 350, "id": 67, "annotation": null}, {"text": "\u00b0", "start": 351, "end": 352, "id": 68, "annotation": null}, {"text": "C", "start": 353, "end": 354, "id": 69, "annotation": null}, {"text": "-", "start": 355, "end": 356, "id": 70, "annotation": null}, {"text": "annealed", "start": 357, "end": 365, "id": 71, "annotation": null}, {"text": "Ni\u2215AZO", "start": 366, "end": 372, "id": 72, "annotation": null}, {"text": "contacts", "start": 373, "end": 381, "id": 73, "annotation": null}, {"text": "exhibited", "start": 382, "end": 391, "id": 74, "annotation": null}, {"text": "a", "start": 392, "end": 393, "id": 75, "annotation": null}, {"text": "linear", "start": 394, "end": 400, "id": 76, "annotation": null}, {"text": "current", "start": 401, "end": 408, "id": 77, "annotation": null}, {"text": "\u2013", "start": 409, "end": 410, "id": 78, "annotation": null}, {"text": "voltage", "start": 411, "end": 418, "id": 79, "annotation": null}, {"text": "characteristic", "start": 419, "end": 433, "id": 80, "annotation": null}, {"text": ",", "start": 434, "end": 435, "id": 81, "annotation": null}, {"text": "showing", "start": 436, "end": 443, "id": 82, "annotation": null}, {"text": "a", "start": 444, "end": 445, "id": 83, "annotation": null}, {"text": "specific", "start": 446, "end": 454, "id": 84, "annotation": null}, {"text": "contact", "start": 455, "end": 462, "id": 85, "annotation": null}, {"text": "resistance", "start": 463, "end": 473, "id": 86, "annotation": null}, {"text": "of", "start": 474, "end": 476, "id": 87, "annotation": null}, {"text": "around", "start": 477, "end": 483, "id": 88, "annotation": null}, {"text": "1.2\u00d710\u22122\u03a9cm2", "start": 484, "end": 496, "id": 89, "annotation": null}, {"text": ".", "start": 497, "end": 498, "id": 90, "annotation": null}], [{"text": "After", "start": 499, "end": 504, "id": 91, "annotation": null}, {"text": "undergoing", "start": 505, "end": 515, "id": 92, "annotation": null}, {"text": "the", "start": 516, "end": 519, "id": 93, "annotation": null}, {"text": "annealing", "start": 520, "end": 529, "id": 94, "annotation": null}, {"text": "in", "start": 530, "end": 532, "id": 95, "annotation": null}, {"text": "nitrogen", "start": 533, "end": 541, "id": 96, "annotation": null}, {"text": "ambience", "start": 542, "end": 550, "id": 97, "annotation": null}, {"text": ",", "start": 551, "end": 552, "id": 98, "annotation": null}, {"text": "the", "start": 553, "end": 556, "id": 99, "annotation": null}, {"text": "light", "start": 557, "end": 562, "id": 100, "annotation": null}, {"text": "transmittance", "start": 563, "end": 576, "id": 101, "annotation": null}, {"text": "of", "start": 577, "end": 579, "id": 102, "annotation": null}, {"text": "the", "start": 580, "end": 583, "id": 103, "annotation": null}, {"text": "Ni\u2215AZO", "start": 584, "end": 590, "id": 104, "annotation": null}, {"text": "films", "start": 591, "end": 596, "id": 105, "annotation": null}, {"text": "increased", "start": 597, "end": 606, "id": 106, "annotation": null}, {"text": "from", "start": 607, "end": 611, "id": 107, "annotation": null}, {"text": "70", "start": 612, "end": 614, "id": 108, "annotation": null}, {"text": "%", "start": 615, "end": 616, "id": 109, "annotation": null}, {"text": "to", "start": 617, "end": 619, "id": 110, "annotation": null}, {"text": "higher", "start": 620, "end": 626, "id": 111, "annotation": null}, {"text": "than", "start": 627, "end": 631, "id": 112, "annotation": null}, {"text": "90", "start": 632, "end": 634, "id": 113, "annotation": null}, {"text": "%", "start": 635, "end": 636, "id": 114, "annotation": null}, {"text": "in", "start": 637, "end": 639, "id": 115, "annotation": null}, {"text": "the", "start": 640, "end": 643, "id": 116, "annotation": null}, {"text": "visible", "start": 644, "end": 651, "id": 117, "annotation": null}, {"text": "range", "start": 652, "end": 657, "id": 118, "annotation": null}, {"text": ".", "start": 658, "end": 659, "id": 119, "annotation": null}], [{"text": "These", "start": 660, "end": 665, "id": 120, "annotation": null}, {"text": "results", "start": 666, "end": 673, "id": 121, "annotation": null}, {"text": "revealed", "start": 674, "end": 682, "id": 122, "annotation": null}, {"text": "that", "start": 683, "end": 687, "id": 123, "annotation": null}, {"text": "the", "start": 688, "end": 691, "id": 124, "annotation": null}, {"text": "Ni\u2215AZO", "start": 692, "end": 698, "id": 125, "annotation": null}, {"text": "contact", "start": 699, "end": 706, "id": 126, "annotation": null}, {"text": "can", "start": 707, "end": 710, "id": 127, "annotation": null}, {"text": "serve", "start": 711, "end": 716, "id": 128, "annotation": null}, {"text": "as", "start": 717, "end": 719, "id": 129, "annotation": null}, {"text": "a", "start": 720, "end": 721, "id": 130, "annotation": null}, {"text": "suitable", "start": 722, "end": 730, "id": 131, "annotation": null}, {"text": "transparent", "start": 731, "end": 742, "id": 132, "annotation": null}, {"text": "current", "start": 743, "end": 750, "id": 133, "annotation": null}, {"text": "spreading", "start": 751, "end": 760, "id": 134, "annotation": null}, {"text": "layer", "start": 761, "end": 766, "id": 135, "annotation": null}, {"text": "for", "start": 767, "end": 770, "id": 136, "annotation": null}, {"text": "the", "start": 771, "end": 774, "id": 137, "annotation": null}, {"text": "fabrication", "start": 775, "end": 786, "id": 138, "annotation": null}, {"text": "of", "start": 787, "end": 789, "id": 139, "annotation": null}, {"text": "GaN", "start": 790, "end": 793, "id": 140, "annotation": null}, {"text": "-", "start": 794, "end": 795, "id": 141, "annotation": null}, {"text": "based", "start": 796, "end": 801, "id": 142, "annotation": null}, {"text": "light", "start": 802, "end": 807, "id": 143, "annotation": null}, {"text": "-", "start": 808, "end": 809, "id": 144, "annotation": null}, {"text": "emitting", "start": 810, "end": 818, "id": 145, "annotation": null}, {"text": "devices", "start": 819, "end": 826, "id": 146, "annotation": null}, {"text": ".", "start": 827, "end": 828, "id": 147, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "In this study, Al-doped ZnO (AZO) and Ni\u2215AZO films were deposited on p-type GaN films followed by thermal annealing to form ohmic contacts. After thermal annealing, the resistivities of AZO films reduced from 5\u00d710\u22123 to 4\u20136\u00d710\u22124\u03a9cm . Both as-deposited AZO and Ni\u2215AZO contacts on p-GaN displayed a non-ohmic characteristic. Only the 800\u00b0C-annealed Ni\u2215AZO contacts exhibited a linear current\u2013voltage characteristic, showing a specific contact resistance of around 1.2\u00d710\u22122\u03a9cm2 . After undergoing the annealing in nitrogen ambience, the light transmittance of the Ni\u2215AZO films increased from 70% to higher than 90% in the visible range. These results revealed that the Ni\u2215AZO contact can serve as a suitable transparent current spreading layer for the fabrication of GaN-based light-emitting devices.", "meta": {"doi": "10.1149/1.2171817"}, "_input_hash": 365243696, "_task_hash": -1859459316, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "this", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "study", "start": 8, "end": 13, "id": 2, "annotation": null}, {"text": ",", "start": 14, "end": 15, "id": 3, "annotation": null}, {"text": "Al", "start": 16, "end": 18, "id": 4, "annotation": "DOPANT"}, {"text": "-", "start": 19, "end": 20, "id": 5, "annotation": null}, {"text": "doped", "start": 21, "end": 26, "id": 6, "annotation": null}, {"text": "ZnO", "start": 27, "end": 30, "id": 7, "annotation": "BASEMAT"}, {"text": "(", "start": 31, "end": 32, "id": 8, "annotation": null}, {"text": "AZO", "start": 33, "end": 36, "id": 9, "annotation": null}, {"text": ")", "start": 37, "end": 38, "id": 10, "annotation": null}, {"text": "and", "start": 39, "end": 42, "id": 11, "annotation": null}, {"text": "Ni\u2215AZO", "start": 43, "end": 49, "id": 12, "annotation": null}, {"text": "films", "start": 50, "end": 55, "id": 13, "annotation": null}, {"text": "were", "start": 56, "end": 60, "id": 14, "annotation": null}, {"text": "deposited", "start": 61, "end": 70, "id": 15, "annotation": null}, {"text": "on", "start": 71, "end": 73, "id": 16, "annotation": null}, {"text": "p", "start": 74, "end": 75, "id": 17, "annotation": "DOPANT"}, {"text": "-", "start": 76, "end": 77, "id": 18, "annotation": "DOPANT"}, {"text": "type", "start": 78, "end": 82, "id": 19, "annotation": "DOPANT"}, {"text": "GaN", "start": 83, "end": 86, "id": 20, "annotation": "BASEMAT"}, {"text": "films", "start": 87, "end": 92, "id": 21, "annotation": null}, {"text": "followed", "start": 93, "end": 101, "id": 22, "annotation": null}, {"text": "by", "start": 102, "end": 104, "id": 23, "annotation": null}, {"text": "thermal", "start": 105, "end": 112, "id": 24, "annotation": null}, {"text": "annealing", "start": 113, "end": 122, "id": 25, "annotation": null}, {"text": "to", "start": 123, "end": 125, "id": 26, "annotation": null}, {"text": "form", "start": 126, "end": 130, "id": 27, "annotation": null}, {"text": "ohmic", "start": 131, "end": 136, "id": 28, "annotation": null}, {"text": "contacts", "start": 137, "end": 145, "id": 29, "annotation": null}, {"text": ".", "start": 146, "end": 147, "id": 30, "annotation": null}], [{"text": "After", "start": 148, "end": 153, "id": 31, "annotation": null}, {"text": "thermal", "start": 154, "end": 161, "id": 32, "annotation": null}, {"text": "annealing", "start": 162, "end": 171, "id": 33, "annotation": null}, {"text": ",", "start": 172, "end": 173, "id": 34, "annotation": null}, {"text": "the", "start": 174, "end": 177, "id": 35, "annotation": null}, {"text": "resistivities", "start": 178, "end": 191, "id": 36, "annotation": null}, {"text": "of", "start": 192, "end": 194, "id": 37, "annotation": null}, {"text": "AZO", "start": 195, "end": 198, "id": 38, "annotation": null}, {"text": "films", "start": 199, "end": 204, "id": 39, "annotation": null}, {"text": "reduced", "start": 205, "end": 212, "id": 40, "annotation": null}, {"text": "from", "start": 213, "end": 217, "id": 41, "annotation": null}, {"text": "5\u00d710\u22123", "start": 218, "end": 224, "id": 42, "annotation": null}, {"text": "to", "start": 225, "end": 227, "id": 43, "annotation": null}, {"text": "4\u20136\u00d710\u22124\u03a9cm", "start": 228, "end": 239, "id": 44, "annotation": null}, {"text": ".", "start": 240, "end": 241, "id": 45, "annotation": null}], [{"text": "Both", "start": 242, "end": 246, "id": 46, "annotation": null}, {"text": "as", "start": 247, "end": 249, "id": 47, "annotation": null}, {"text": "-", "start": 250, "end": 251, "id": 48, "annotation": null}, {"text": "deposited", "start": 252, "end": 261, "id": 49, "annotation": null}, {"text": "AZO", "start": 262, "end": 265, "id": 50, "annotation": null}, {"text": "and", "start": 266, "end": 269, "id": 51, "annotation": null}, {"text": "Ni\u2215AZO", "start": 270, "end": 276, "id": 52, "annotation": null}, {"text": "contacts", "start": 277, "end": 285, "id": 53, "annotation": null}, {"text": "on", "start": 286, "end": 288, "id": 54, "annotation": null}, {"text": "p", "start": 289, "end": 290, "id": 55, "annotation": null}, {"text": "-", "start": 291, "end": 292, "id": 56, "annotation": null}, {"text": "GaN", "start": 293, "end": 296, "id": 57, "annotation": null}, {"text": "displayed", "start": 297, "end": 306, "id": 58, "annotation": null}, {"text": "a", "start": 307, "end": 308, "id": 59, "annotation": null}, {"text": "non", "start": 309, "end": 312, "id": 60, "annotation": null}, {"text": "-", "start": 313, "end": 314, "id": 61, "annotation": null}, {"text": "ohmic", "start": 315, "end": 320, "id": 62, "annotation": null}, {"text": "characteristic", "start": 321, "end": 335, "id": 63, "annotation": null}, {"text": ".", "start": 336, "end": 337, "id": 64, "annotation": null}], [{"text": "Only", "start": 338, "end": 342, "id": 65, "annotation": null}, {"text": "the", "start": 343, "end": 346, "id": 66, "annotation": null}, {"text": "800", "start": 347, "end": 350, "id": 67, "annotation": null}, {"text": "\u00b0", "start": 351, "end": 352, "id": 68, "annotation": null}, {"text": "C", "start": 353, "end": 354, "id": 69, "annotation": null}, {"text": "-", "start": 355, "end": 356, "id": 70, "annotation": null}, {"text": "annealed", "start": 357, "end": 365, "id": 71, "annotation": null}, {"text": "Ni\u2215AZO", "start": 366, "end": 372, "id": 72, "annotation": null}, {"text": "contacts", "start": 373, "end": 381, "id": 73, "annotation": null}, {"text": "exhibited", "start": 382, "end": 391, "id": 74, "annotation": null}, {"text": "a", "start": 392, "end": 393, "id": 75, "annotation": null}, {"text": "linear", "start": 394, "end": 400, "id": 76, "annotation": null}, {"text": "current", "start": 401, "end": 408, "id": 77, "annotation": null}, {"text": "\u2013", "start": 409, "end": 410, "id": 78, "annotation": null}, {"text": "voltage", "start": 411, "end": 418, "id": 79, "annotation": null}, {"text": "characteristic", "start": 419, "end": 433, "id": 80, "annotation": null}, {"text": ",", "start": 434, "end": 435, "id": 81, "annotation": null}, {"text": "showing", "start": 436, "end": 443, "id": 82, "annotation": null}, {"text": "a", "start": 444, "end": 445, "id": 83, "annotation": null}, {"text": "specific", "start": 446, "end": 454, "id": 84, "annotation": null}, {"text": "contact", "start": 455, "end": 462, "id": 85, "annotation": null}, {"text": "resistance", "start": 463, "end": 473, "id": 86, "annotation": null}, {"text": "of", "start": 474, "end": 476, "id": 87, "annotation": null}, {"text": "around", "start": 477, "end": 483, "id": 88, "annotation": null}, {"text": "1.2\u00d710\u22122\u03a9cm2", "start": 484, "end": 496, "id": 89, "annotation": null}, {"text": ".", "start": 497, "end": 498, "id": 90, "annotation": null}], [{"text": "After", "start": 499, "end": 504, "id": 91, "annotation": null}, {"text": "undergoing", "start": 505, "end": 515, "id": 92, "annotation": null}, {"text": "the", "start": 516, "end": 519, "id": 93, "annotation": null}, {"text": "annealing", "start": 520, "end": 529, "id": 94, "annotation": null}, {"text": "in", "start": 530, "end": 532, "id": 95, "annotation": null}, {"text": "nitrogen", "start": 533, "end": 541, "id": 96, "annotation": null}, {"text": "ambience", "start": 542, "end": 550, "id": 97, "annotation": null}, {"text": ",", "start": 551, "end": 552, "id": 98, "annotation": null}, {"text": "the", "start": 553, "end": 556, "id": 99, "annotation": null}, {"text": "light", "start": 557, "end": 562, "id": 100, "annotation": null}, {"text": "transmittance", "start": 563, "end": 576, "id": 101, "annotation": null}, {"text": "of", "start": 577, "end": 579, "id": 102, "annotation": null}, {"text": "the", "start": 580, "end": 583, "id": 103, "annotation": null}, {"text": "Ni\u2215AZO", "start": 584, "end": 590, "id": 104, "annotation": null}, {"text": "films", "start": 591, "end": 596, "id": 105, "annotation": null}, {"text": "increased", "start": 597, "end": 606, "id": 106, "annotation": null}, {"text": "from", "start": 607, "end": 611, "id": 107, "annotation": null}, {"text": "70", "start": 612, "end": 614, "id": 108, "annotation": null}, {"text": "%", "start": 615, "end": 616, "id": 109, "annotation": null}, {"text": "to", "start": 617, "end": 619, "id": 110, "annotation": null}, {"text": "higher", "start": 620, "end": 626, "id": 111, "annotation": null}, {"text": "than", "start": 627, "end": 631, "id": 112, "annotation": null}, {"text": "90", "start": 632, "end": 634, "id": 113, "annotation": null}, {"text": "%", "start": 635, "end": 636, "id": 114, "annotation": null}, {"text": "in", "start": 637, "end": 639, "id": 115, "annotation": null}, {"text": "the", "start": 640, "end": 643, "id": 116, "annotation": null}, {"text": "visible", "start": 644, "end": 651, "id": 117, "annotation": null}, {"text": "range", "start": 652, "end": 657, "id": 118, "annotation": null}, {"text": ".", "start": 658, "end": 659, "id": 119, "annotation": null}], [{"text": "These", "start": 660, "end": 665, "id": 120, "annotation": null}, {"text": "results", "start": 666, "end": 673, "id": 121, "annotation": null}, {"text": "revealed", "start": 674, "end": 682, "id": 122, "annotation": null}, {"text": "that", "start": 683, "end": 687, "id": 123, "annotation": null}, {"text": "the", "start": 688, "end": 691, "id": 124, "annotation": null}, {"text": "Ni\u2215AZO", "start": 692, "end": 698, "id": 125, "annotation": null}, {"text": "contact", "start": 699, "end": 706, "id": 126, "annotation": null}, {"text": "can", "start": 707, "end": 710, "id": 127, "annotation": null}, {"text": "serve", "start": 711, "end": 716, "id": 128, "annotation": null}, {"text": "as", "start": 717, "end": 719, "id": 129, "annotation": null}, {"text": "a", "start": 720, "end": 721, "id": 130, "annotation": null}, {"text": "suitable", "start": 722, "end": 730, "id": 131, "annotation": null}, {"text": "transparent", "start": 731, "end": 742, "id": 132, "annotation": null}, {"text": "current", "start": 743, "end": 750, "id": 133, "annotation": null}, {"text": "spreading", "start": 751, "end": 760, "id": 134, "annotation": null}, {"text": "layer", "start": 761, "end": 766, "id": 135, "annotation": null}, {"text": "for", "start": 767, "end": 770, "id": 136, "annotation": null}, {"text": "the", "start": 771, "end": 774, "id": 137, "annotation": null}, {"text": "fabrication", "start": 775, "end": 786, "id": 138, "annotation": null}, {"text": "of", "start": 787, "end": 789, "id": 139, "annotation": null}, {"text": "GaN", "start": 790, "end": 793, "id": 140, "annotation": null}, {"text": "-", "start": 794, "end": 795, "id": 141, "annotation": null}, {"text": "based", "start": 796, "end": 801, "id": 142, "annotation": null}, {"text": "light", "start": 802, "end": 807, "id": 143, "annotation": null}, {"text": "-", "start": 808, "end": 809, "id": 144, "annotation": null}, {"text": "emitting", "start": 810, "end": 818, "id": 145, "annotation": null}, {"text": "devices", "start": 819, "end": 826, "id": 146, "annotation": null}, {"text": ".", "start": 827, "end": 828, "id": 147, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "NaAlH4 catalyzed by Ce(SO4)2 and LaCl3 have been studied by PCT (Pressure\u2013Content\u2013Temperature) experiment and SEM (Scanning Electron Microscope) test method. The results show that doping with Ce(SO4)2 and LaCl3 increases markedly the desorption amount of NaAlH4. In the first desorption stage, NaAlH4 doped with LaCl3 display larger amount of hydrogen release than NaAlH4 doped with Ce(SO4)2, while, the desorption rate of the latter is obviously faster than the former. SEM analysis shows that heating could make NaAlH4 form a kind of porous structure. The further study indicates that different dopants have different effects on the microstructure of NaAlH4.", "meta": {"doi": "10.1016/j.jallcom.2011.02.159"}, "_input_hash": 1919810471, "_task_hash": -2126917397, "tokens": [[{"text": "NaAlH4", "start": 0, "end": 6, "id": 0, "annotation": null}, {"text": "catalyzed", "start": 7, "end": 16, "id": 1, "annotation": null}, {"text": "by", "start": 17, "end": 19, "id": 2, "annotation": null}, {"text": "Ce(SO4)2", "start": 20, "end": 28, "id": 3, "annotation": null}, {"text": "and", "start": 29, "end": 32, "id": 4, "annotation": null}, {"text": "LaCl3", "start": 33, "end": 38, "id": 5, "annotation": null}, {"text": "have", "start": 39, "end": 43, "id": 6, "annotation": null}, {"text": "been", "start": 44, "end": 48, "id": 7, "annotation": null}, {"text": "studied", "start": 49, "end": 56, "id": 8, "annotation": null}, {"text": "by", "start": 57, "end": 59, "id": 9, "annotation": null}, {"text": "PCT", "start": 60, "end": 63, "id": 10, "annotation": null}, {"text": "(", "start": 64, "end": 65, "id": 11, "annotation": null}, {"text": "Pressure", "start": 66, "end": 74, "id": 12, "annotation": null}, {"text": "\u2013", "start": 75, "end": 76, "id": 13, "annotation": null}, {"text": "Content", "start": 77, "end": 84, "id": 14, "annotation": null}, {"text": "\u2013", "start": 85, "end": 86, "id": 15, "annotation": null}, {"text": "Temperature", "start": 87, "end": 98, "id": 16, "annotation": null}, {"text": ")", "start": 99, "end": 100, "id": 17, "annotation": null}, {"text": "experiment", "start": 101, "end": 111, "id": 18, "annotation": null}, {"text": "and", "start": 112, "end": 115, "id": 19, "annotation": null}, {"text": "SEM", "start": 116, "end": 119, "id": 20, "annotation": null}, {"text": "(", "start": 120, "end": 121, "id": 21, "annotation": null}, {"text": "Scanning", "start": 122, "end": 130, "id": 22, "annotation": null}, {"text": "Electron", "start": 131, "end": 139, "id": 23, "annotation": null}, {"text": "Microscope", "start": 140, "end": 150, "id": 24, "annotation": null}, {"text": ")", "start": 151, "end": 152, "id": 25, "annotation": null}, {"text": "test", "start": 153, "end": 157, "id": 26, "annotation": null}, {"text": "method", "start": 158, "end": 164, "id": 27, "annotation": null}, {"text": ".", "start": 165, "end": 166, "id": 28, "annotation": null}], [{"text": "The", "start": 167, "end": 170, "id": 29, "annotation": null}, {"text": "results", "start": 171, "end": 178, "id": 30, "annotation": null}, {"text": "show", "start": 179, "end": 183, "id": 31, "annotation": null}, {"text": "that", "start": 184, "end": 188, "id": 32, "annotation": null}, {"text": "doping", "start": 189, "end": 195, "id": 33, "annotation": null}, {"text": "with", "start": 196, "end": 200, "id": 34, "annotation": null}, {"text": "Ce(SO4)2", "start": 201, "end": 209, "id": 35, "annotation": "DOPANT"}, {"text": "and", "start": 210, "end": 213, "id": 36, "annotation": null}, {"text": "LaCl3", "start": 214, "end": 219, "id": 37, "annotation": "DOPANT"}, {"text": "increases", "start": 220, "end": 229, "id": 38, "annotation": null}, {"text": "markedly", "start": 230, "end": 238, "id": 39, "annotation": null}, {"text": "the", "start": 239, "end": 242, "id": 40, "annotation": null}, {"text": "desorption", "start": 243, "end": 253, "id": 41, "annotation": null}, {"text": "amount", "start": 254, "end": 260, "id": 42, "annotation": null}, {"text": "of", "start": 261, "end": 263, "id": 43, "annotation": null}, {"text": "NaAlH4", "start": 264, "end": 270, "id": 44, "annotation": "BASEMAT"}, {"text": ".", "start": 271, "end": 272, "id": 45, "annotation": null}], [{"text": "In", "start": 273, "end": 275, "id": 46, "annotation": null}, {"text": "the", "start": 276, "end": 279, "id": 47, "annotation": null}, {"text": "first", "start": 280, "end": 285, "id": 48, "annotation": null}, {"text": "desorption", "start": 286, "end": 296, "id": 49, "annotation": null}, {"text": "stage", "start": 297, "end": 302, "id": 50, "annotation": null}, {"text": ",", "start": 303, "end": 304, "id": 51, "annotation": null}, {"text": "NaAlH4", "start": 305, "end": 311, "id": 52, "annotation": "BASEMAT"}, {"text": "doped", "start": 312, "end": 317, "id": 53, "annotation": null}, {"text": "with", "start": 318, "end": 322, "id": 54, "annotation": null}, {"text": "LaCl3", "start": 323, "end": 328, "id": 55, "annotation": "DOPANT"}, {"text": "display", "start": 329, "end": 336, "id": 56, "annotation": null}, {"text": "larger", "start": 337, "end": 343, "id": 57, "annotation": null}, {"text": "amount", "start": 344, "end": 350, "id": 58, "annotation": null}, {"text": "of", "start": 351, "end": 353, "id": 59, "annotation": null}, {"text": "hydrogen", "start": 354, "end": 362, "id": 60, "annotation": null}, {"text": "release", "start": 363, "end": 370, "id": 61, "annotation": null}, {"text": "than", "start": 371, "end": 375, "id": 62, "annotation": null}, {"text": "NaAlH4", "start": 376, "end": 382, "id": 63, "annotation": "BASEMAT"}, {"text": "doped", "start": 383, "end": 388, "id": 64, "annotation": null}, {"text": "with", "start": 389, "end": 393, "id": 65, "annotation": null}, {"text": "Ce(SO4)2", "start": 394, "end": 402, "id": 66, "annotation": "DOPANT"}, {"text": ",", "start": 403, "end": 404, "id": 67, "annotation": null}, {"text": "while", "start": 405, "end": 410, "id": 68, "annotation": null}, {"text": ",", "start": 411, "end": 412, "id": 69, "annotation": null}, {"text": "the", "start": 413, "end": 416, "id": 70, "annotation": null}, {"text": "desorption", "start": 417, "end": 427, "id": 71, "annotation": null}, {"text": "rate", "start": 428, "end": 432, "id": 72, "annotation": null}, {"text": "of", "start": 433, "end": 435, "id": 73, "annotation": null}, {"text": "the", "start": 436, "end": 439, "id": 74, "annotation": null}, {"text": "latter", "start": 440, "end": 446, "id": 75, "annotation": null}, {"text": "is", "start": 447, "end": 449, "id": 76, "annotation": null}, {"text": "obviously", "start": 450, "end": 459, "id": 77, "annotation": null}, {"text": "faster", "start": 460, "end": 466, "id": 78, "annotation": null}, {"text": "than", "start": 467, "end": 471, "id": 79, "annotation": null}, {"text": "the", "start": 472, "end": 475, "id": 80, "annotation": null}, {"text": "former", "start": 476, "end": 482, "id": 81, "annotation": null}, {"text": ".", "start": 483, "end": 484, "id": 82, "annotation": null}], [{"text": "SEM", "start": 485, "end": 488, "id": 83, "annotation": null}, {"text": "analysis", "start": 489, "end": 497, "id": 84, "annotation": null}, {"text": "shows", "start": 498, "end": 503, "id": 85, "annotation": null}, {"text": "that", "start": 504, "end": 508, "id": 86, "annotation": null}, {"text": "heating", "start": 509, "end": 516, "id": 87, "annotation": null}, {"text": "could", "start": 517, "end": 522, "id": 88, "annotation": null}, {"text": "make", "start": 523, "end": 527, "id": 89, "annotation": null}, {"text": "NaAlH4", "start": 528, "end": 534, "id": 90, "annotation": null}, {"text": "form", "start": 535, "end": 539, "id": 91, "annotation": null}, {"text": "a", "start": 540, "end": 541, "id": 92, "annotation": null}, {"text": "kind", "start": 542, "end": 546, "id": 93, "annotation": null}, {"text": "of", "start": 547, "end": 549, "id": 94, "annotation": null}, {"text": "porous", "start": 550, "end": 556, "id": 95, "annotation": null}, {"text": "structure", "start": 557, "end": 566, "id": 96, "annotation": null}, {"text": ".", "start": 567, "end": 568, "id": 97, "annotation": null}], [{"text": "The", "start": 569, "end": 572, "id": 98, "annotation": null}, {"text": "further", "start": 573, "end": 580, "id": 99, "annotation": null}, {"text": "study", "start": 581, "end": 586, "id": 100, "annotation": null}, {"text": "indicates", "start": 587, "end": 596, "id": 101, "annotation": null}, {"text": "that", "start": 597, "end": 601, "id": 102, "annotation": null}, {"text": "different", "start": 602, "end": 611, "id": 103, "annotation": null}, {"text": "dopants", "start": 612, "end": 619, "id": 104, "annotation": null}, {"text": "have", "start": 620, "end": 624, "id": 105, "annotation": null}, {"text": "different", "start": 625, "end": 634, "id": 106, "annotation": null}, {"text": "effects", "start": 635, "end": 642, "id": 107, "annotation": null}, {"text": "on", "start": 643, "end": 645, "id": 108, "annotation": null}, {"text": "the", "start": 646, "end": 649, "id": 109, "annotation": null}, {"text": "microstructure", "start": 650, "end": 664, "id": 110, "annotation": null}, {"text": "of", "start": 665, "end": 667, "id": 111, "annotation": null}, {"text": "NaAlH4", "start": 668, "end": 674, "id": 112, "annotation": "BASEMAT"}, {"text": ".", "start": 675, "end": 676, "id": 113, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Carbon nanotubes have shown great potential as conductive fillers in various composites, macro-assembled fibers, and transparent conductive films due to their superior electrical conductivity. Here, we present an effective defect engineering strategy for improving the intrinsic electrical conductivity of nanotube assemblies by thermally incorporating a large number of boron atoms into substitutional positions within the hexagonal framework of the tubes. It was confirmed that the defects introduced after vacuum ultraviolet and nitrogen plasma treatments facilitate the incorporation of a large number of boron atoms (ca. 0.496 atomic %) occupying the trigonal sites on the tube sidewalls during the boron doping process, thus eventually increasing the electrical conductivity of the carbon nanotube film. Our approach provides a potential solution for the industrial use of macro-structured nanotube assemblies, where properties, such as high electrical conductance, high transparency, and lightweight, are extremely important.", "meta": {"doi": "10.1021/jp410732r"}, "_input_hash": -428710217, "_task_hash": -1085474615, "tokens": [[{"text": "Carbon", "start": 0, "end": 6, "id": 0, "annotation": null}, {"text": "nanotubes", "start": 7, "end": 16, "id": 1, "annotation": null}, {"text": "have", "start": 17, "end": 21, "id": 2, "annotation": null}, {"text": "shown", "start": 22, "end": 27, "id": 3, "annotation": null}, {"text": "great", "start": 28, "end": 33, "id": 4, "annotation": null}, {"text": "potential", "start": 34, "end": 43, "id": 5, "annotation": null}, {"text": "as", "start": 44, "end": 46, "id": 6, "annotation": null}, {"text": "conductive", "start": 47, "end": 57, "id": 7, "annotation": null}, {"text": "fillers", "start": 58, "end": 65, "id": 8, "annotation": null}, {"text": "in", "start": 66, "end": 68, "id": 9, "annotation": null}, {"text": "various", "start": 69, "end": 76, "id": 10, "annotation": null}, {"text": "composites", "start": 77, "end": 87, "id": 11, "annotation": null}, {"text": ",", "start": 88, "end": 89, "id": 12, "annotation": null}, {"text": "macro", "start": 90, "end": 95, "id": 13, "annotation": null}, {"text": "-", "start": 96, "end": 97, "id": 14, "annotation": null}, {"text": "assembled", "start": 98, "end": 107, "id": 15, "annotation": null}, {"text": "fibers", "start": 108, "end": 114, "id": 16, "annotation": null}, {"text": ",", "start": 115, "end": 116, "id": 17, "annotation": null}, {"text": "and", "start": 117, "end": 120, "id": 18, "annotation": null}, {"text": "transparent", "start": 121, "end": 132, "id": 19, "annotation": null}, {"text": "conductive", "start": 133, "end": 143, "id": 20, "annotation": null}, {"text": "films", "start": 144, "end": 149, "id": 21, "annotation": null}, {"text": "due", "start": 150, "end": 153, "id": 22, "annotation": null}, {"text": "to", "start": 154, "end": 156, "id": 23, "annotation": null}, {"text": "their", "start": 157, "end": 162, "id": 24, "annotation": null}, {"text": "superior", "start": 163, "end": 171, "id": 25, "annotation": null}, {"text": "electrical", "start": 172, "end": 182, "id": 26, "annotation": null}, {"text": "conductivity", "start": 183, "end": 195, "id": 27, "annotation": null}, {"text": ".", "start": 196, "end": 197, "id": 28, "annotation": null}], [{"text": "Here", "start": 198, "end": 202, "id": 29, "annotation": null}, {"text": ",", "start": 203, "end": 204, "id": 30, "annotation": null}, {"text": "we", "start": 205, "end": 207, "id": 31, "annotation": null}, {"text": "present", "start": 208, "end": 215, "id": 32, "annotation": null}, {"text": "an", "start": 216, "end": 218, "id": 33, "annotation": null}, {"text": "effective", "start": 219, "end": 228, "id": 34, "annotation": null}, {"text": "defect", "start": 229, "end": 235, "id": 35, "annotation": null}, {"text": "engineering", "start": 236, "end": 247, "id": 36, "annotation": null}, {"text": "strategy", "start": 248, "end": 256, "id": 37, "annotation": null}, {"text": "for", "start": 257, "end": 260, "id": 38, "annotation": null}, {"text": "improving", "start": 261, "end": 270, "id": 39, "annotation": null}, {"text": "the", "start": 271, "end": 274, "id": 40, "annotation": null}, {"text": "intrinsic", "start": 275, "end": 284, "id": 41, "annotation": null}, {"text": "electrical", "start": 285, "end": 295, "id": 42, "annotation": null}, {"text": "conductivity", "start": 296, "end": 308, "id": 43, "annotation": null}, {"text": "of", "start": 309, "end": 311, "id": 44, "annotation": null}, {"text": "nanotube", "start": 312, "end": 320, "id": 45, "annotation": null}, {"text": "assemblies", "start": 321, "end": 331, "id": 46, "annotation": null}, {"text": "by", "start": 332, "end": 334, "id": 47, "annotation": null}, {"text": "thermally", "start": 335, "end": 344, "id": 48, "annotation": null}, {"text": "incorporating", "start": 345, "end": 358, "id": 49, "annotation": null}, {"text": "a", "start": 359, "end": 360, "id": 50, "annotation": null}, {"text": "large", "start": 361, "end": 366, "id": 51, "annotation": null}, {"text": "number", "start": 367, "end": 373, "id": 52, "annotation": null}, {"text": "of", "start": 374, "end": 376, "id": 53, "annotation": null}, {"text": "boron", "start": 377, "end": 382, "id": 54, "annotation": null}, {"text": "atoms", "start": 383, "end": 388, "id": 55, "annotation": null}, {"text": "into", "start": 389, "end": 393, "id": 56, "annotation": null}, {"text": "substitutional", "start": 394, "end": 408, "id": 57, "annotation": null}, {"text": "positions", "start": 409, "end": 418, "id": 58, "annotation": null}, {"text": "within", "start": 419, "end": 425, "id": 59, "annotation": null}, {"text": "the", "start": 426, "end": 429, "id": 60, "annotation": null}, {"text": "hexagonal", "start": 430, "end": 439, "id": 61, "annotation": null}, {"text": "framework", "start": 440, "end": 449, "id": 62, "annotation": null}, {"text": "of", "start": 450, "end": 452, "id": 63, "annotation": null}, {"text": "the", "start": 453, "end": 456, "id": 64, "annotation": null}, {"text": "tubes", "start": 457, "end": 462, "id": 65, "annotation": null}, {"text": ".", "start": 463, "end": 464, "id": 66, "annotation": null}], [{"text": "It", "start": 465, "end": 467, "id": 67, "annotation": null}, {"text": "was", "start": 468, "end": 471, "id": 68, "annotation": null}, {"text": "confirmed", "start": 472, "end": 481, "id": 69, "annotation": null}, {"text": "that", "start": 482, "end": 486, "id": 70, "annotation": null}, {"text": "the", "start": 487, "end": 490, "id": 71, "annotation": null}, {"text": "defects", "start": 491, "end": 498, "id": 72, "annotation": null}, {"text": "introduced", "start": 499, "end": 509, "id": 73, "annotation": null}, {"text": "after", "start": 510, "end": 515, "id": 74, "annotation": null}, {"text": "vacuum", "start": 516, "end": 522, "id": 75, "annotation": null}, {"text": "ultraviolet", "start": 523, "end": 534, "id": 76, "annotation": null}, {"text": "and", "start": 535, "end": 538, "id": 77, "annotation": null}, {"text": "nitrogen", "start": 539, "end": 547, "id": 78, "annotation": null}, {"text": "plasma", "start": 548, "end": 554, "id": 79, "annotation": null}, {"text": "treatments", "start": 555, "end": 565, "id": 80, "annotation": null}, {"text": "facilitate", "start": 566, "end": 576, "id": 81, "annotation": null}, {"text": "the", "start": 577, "end": 580, "id": 82, "annotation": null}, {"text": "incorporation", "start": 581, "end": 594, "id": 83, "annotation": null}, {"text": "of", "start": 595, "end": 597, "id": 84, "annotation": null}, {"text": "a", "start": 598, "end": 599, "id": 85, "annotation": null}, {"text": "large", "start": 600, "end": 605, "id": 86, "annotation": null}, {"text": "number", "start": 606, "end": 612, "id": 87, "annotation": null}, {"text": "of", "start": 613, "end": 615, "id": 88, "annotation": null}, {"text": "boron", "start": 616, "end": 621, "id": 89, "annotation": "DOPANT"}, {"text": "atoms", "start": 622, "end": 627, "id": 90, "annotation": null}, {"text": "(", "start": 628, "end": 629, "id": 91, "annotation": null}, {"text": "ca", "start": 630, "end": 632, "id": 92, "annotation": "DOPMODQ"}, {"text": ".", "start": 633, "end": 634, "id": 93, "annotation": null}], [{"text": "0.496", "start": 635, "end": 640, "id": 94, "annotation": null}, {"text": "atomic", "start": 641, "end": 647, "id": 95, "annotation": null}, {"text": "%", "start": 648, "end": 649, "id": 96, "annotation": "DOPMODQ"}, {"text": ")", "start": 650, "end": 651, "id": 97, "annotation": null}, {"text": "occupying", "start": 652, "end": 661, "id": 98, "annotation": null}, {"text": "the", "start": 662, "end": 665, "id": 99, "annotation": null}, {"text": "trigonal", "start": 666, "end": 674, "id": 100, "annotation": null}, {"text": "sites", "start": 675, "end": 680, "id": 101, "annotation": null}, {"text": "on", "start": 681, "end": 683, "id": 102, "annotation": null}, {"text": "the", "start": 684, "end": 687, "id": 103, "annotation": null}, {"text": "tube", "start": 688, "end": 692, "id": 104, "annotation": null}, {"text": "sidewalls", "start": 693, "end": 702, "id": 105, "annotation": null}, {"text": "during", "start": 703, "end": 709, "id": 106, "annotation": null}, {"text": "the", "start": 710, "end": 713, "id": 107, "annotation": null}, {"text": "boron", "start": 714, "end": 719, "id": 108, "annotation": "DOPANT"}, {"text": "doping", "start": 720, "end": 726, "id": 109, "annotation": null}, {"text": "process", "start": 727, "end": 734, "id": 110, "annotation": null}, {"text": ",", "start": 735, "end": 736, "id": 111, "annotation": null}, {"text": "thus", "start": 737, "end": 741, "id": 112, "annotation": null}, {"text": "eventually", "start": 742, "end": 752, "id": 113, "annotation": null}, {"text": "increasing", "start": 753, "end": 763, "id": 114, "annotation": null}, {"text": "the", "start": 764, "end": 767, "id": 115, "annotation": null}, {"text": "electrical", "start": 768, "end": 778, "id": 116, "annotation": null}, {"text": "conductivity", "start": 779, "end": 791, "id": 117, "annotation": null}, {"text": "of", "start": 792, "end": 794, "id": 118, "annotation": null}, {"text": "the", "start": 795, "end": 798, "id": 119, "annotation": null}, {"text": "carbon", "start": 799, "end": 805, "id": 120, "annotation": "BASEMAT"}, {"text": "nanotube", "start": 806, "end": 814, "id": 121, "annotation": null}, {"text": "film", "start": 815, "end": 819, "id": 122, "annotation": null}, {"text": ".", "start": 820, "end": 821, "id": 123, "annotation": null}], [{"text": "Our", "start": 822, "end": 825, "id": 124, "annotation": null}, {"text": "approach", "start": 826, "end": 834, "id": 125, "annotation": null}, {"text": "provides", "start": 835, "end": 843, "id": 126, "annotation": null}, {"text": "a", "start": 844, "end": 845, "id": 127, "annotation": null}, {"text": "potential", "start": 846, "end": 855, "id": 128, "annotation": null}, {"text": "solution", "start": 856, "end": 864, "id": 129, "annotation": null}, {"text": "for", "start": 865, "end": 868, "id": 130, "annotation": null}, {"text": "the", "start": 869, "end": 872, "id": 131, "annotation": null}, {"text": "industrial", "start": 873, "end": 883, "id": 132, "annotation": null}, {"text": "use", "start": 884, "end": 887, "id": 133, "annotation": null}, {"text": "of", "start": 888, "end": 890, "id": 134, "annotation": null}, {"text": "macro", "start": 891, "end": 896, "id": 135, "annotation": null}, {"text": "-", "start": 897, "end": 898, "id": 136, "annotation": null}, {"text": "structured", "start": 899, "end": 909, "id": 137, "annotation": null}, {"text": "nanotube", "start": 910, "end": 918, "id": 138, "annotation": null}, {"text": "assemblies", "start": 919, "end": 929, "id": 139, "annotation": null}, {"text": ",", "start": 930, "end": 931, "id": 140, "annotation": null}, {"text": "where", "start": 932, "end": 937, "id": 141, "annotation": null}, {"text": "properties", "start": 938, "end": 948, "id": 142, "annotation": null}, {"text": ",", "start": 949, "end": 950, "id": 143, "annotation": null}, {"text": "such", "start": 951, "end": 955, "id": 144, "annotation": null}, {"text": "as", "start": 956, "end": 958, "id": 145, "annotation": null}, {"text": "high", "start": 959, "end": 963, "id": 146, "annotation": null}, {"text": "electrical", "start": 964, "end": 974, "id": 147, "annotation": null}, {"text": "conductance", "start": 975, "end": 986, "id": 148, "annotation": null}, {"text": ",", "start": 987, "end": 988, "id": 149, "annotation": null}, {"text": "high", "start": 989, "end": 993, "id": 150, "annotation": null}, {"text": "transparency", "start": 994, "end": 1006, "id": 151, "annotation": null}, {"text": ",", "start": 1007, "end": 1008, "id": 152, "annotation": null}, {"text": "and", "start": 1009, "end": 1012, "id": 153, "annotation": null}, {"text": "lightweight", "start": 1013, "end": 1024, "id": 154, "annotation": null}, {"text": ",", "start": 1025, "end": 1026, "id": 155, "annotation": null}, {"text": "are", "start": 1027, "end": 1030, "id": 156, "annotation": null}, {"text": "extremely", "start": 1031, "end": 1040, "id": 157, "annotation": null}, {"text": "important", "start": 1041, "end": 1050, "id": 158, "annotation": null}, {"text": ".", "start": 1051, "end": 1052, "id": 159, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Carbon nanotubes have shown great potential as conductive fillers in various composites, macro-assembled fibers, and transparent conductive films due to their superior electrical conductivity. Here, we present an effective defect engineering strategy for improving the intrinsic electrical conductivity of nanotube assemblies by thermally incorporating a large number of boron atoms into substitutional positions within the hexagonal framework of the tubes. It was confirmed that the defects introduced after vacuum ultraviolet and nitrogen plasma treatments facilitate the incorporation of a large number of boron atoms (ca. 0.496 atomic %) occupying the trigonal sites on the tube sidewalls during the boron doping process, thus eventually increasing the electrical conductivity of the carbon nanotube film. Our approach provides a potential solution for the industrial use of macro-structured nanotube assemblies, where properties, such as high electrical conductance, high transparency, and lightweight, are extremely important.", "meta": {"doi": "10.1021/jp410732r"}, "_input_hash": -428710217, "_task_hash": -1085474615, "tokens": [[{"text": "Carbon", "start": 0, "end": 6, "id": 0, "annotation": null}, {"text": "nanotubes", "start": 7, "end": 16, "id": 1, "annotation": null}, {"text": "have", "start": 17, "end": 21, "id": 2, "annotation": null}, {"text": "shown", "start": 22, "end": 27, "id": 3, "annotation": null}, {"text": "great", "start": 28, "end": 33, "id": 4, "annotation": null}, {"text": "potential", "start": 34, "end": 43, "id": 5, "annotation": null}, {"text": "as", "start": 44, "end": 46, "id": 6, "annotation": null}, {"text": "conductive", "start": 47, "end": 57, "id": 7, "annotation": null}, {"text": "fillers", "start": 58, "end": 65, "id": 8, "annotation": null}, {"text": "in", "start": 66, "end": 68, "id": 9, "annotation": null}, {"text": "various", "start": 69, "end": 76, "id": 10, "annotation": null}, {"text": "composites", "start": 77, "end": 87, "id": 11, "annotation": null}, {"text": ",", "start": 88, "end": 89, "id": 12, "annotation": null}, {"text": "macro", "start": 90, "end": 95, "id": 13, "annotation": null}, {"text": "-", "start": 96, "end": 97, "id": 14, "annotation": null}, {"text": "assembled", "start": 98, "end": 107, "id": 15, "annotation": null}, {"text": "fibers", "start": 108, "end": 114, "id": 16, "annotation": null}, {"text": ",", "start": 115, "end": 116, "id": 17, "annotation": null}, {"text": "and", "start": 117, "end": 120, "id": 18, "annotation": null}, {"text": "transparent", "start": 121, "end": 132, "id": 19, "annotation": null}, {"text": "conductive", "start": 133, "end": 143, "id": 20, "annotation": null}, {"text": "films", "start": 144, "end": 149, "id": 21, "annotation": null}, {"text": "due", "start": 150, "end": 153, "id": 22, "annotation": null}, {"text": "to", "start": 154, "end": 156, "id": 23, "annotation": null}, {"text": "their", "start": 157, "end": 162, "id": 24, "annotation": null}, {"text": "superior", "start": 163, "end": 171, "id": 25, "annotation": null}, {"text": "electrical", "start": 172, "end": 182, "id": 26, "annotation": null}, {"text": "conductivity", "start": 183, "end": 195, "id": 27, "annotation": null}, {"text": ".", "start": 196, "end": 197, "id": 28, "annotation": null}], [{"text": "Here", "start": 198, "end": 202, "id": 29, "annotation": null}, {"text": ",", "start": 203, "end": 204, "id": 30, "annotation": null}, {"text": "we", "start": 205, "end": 207, "id": 31, "annotation": null}, {"text": "present", "start": 208, "end": 215, "id": 32, "annotation": null}, {"text": "an", "start": 216, "end": 218, "id": 33, "annotation": null}, {"text": "effective", "start": 219, "end": 228, "id": 34, "annotation": null}, {"text": "defect", "start": 229, "end": 235, "id": 35, "annotation": null}, {"text": "engineering", "start": 236, "end": 247, "id": 36, "annotation": null}, {"text": "strategy", "start": 248, "end": 256, "id": 37, "annotation": null}, {"text": "for", "start": 257, "end": 260, "id": 38, "annotation": null}, {"text": "improving", "start": 261, "end": 270, "id": 39, "annotation": null}, {"text": "the", "start": 271, "end": 274, "id": 40, "annotation": null}, {"text": "intrinsic", "start": 275, "end": 284, "id": 41, "annotation": null}, {"text": "electrical", "start": 285, "end": 295, "id": 42, "annotation": null}, {"text": "conductivity", "start": 296, "end": 308, "id": 43, "annotation": null}, {"text": "of", "start": 309, "end": 311, "id": 44, "annotation": null}, {"text": "nanotube", "start": 312, "end": 320, "id": 45, "annotation": null}, {"text": "assemblies", "start": 321, "end": 331, "id": 46, "annotation": null}, {"text": "by", "start": 332, "end": 334, "id": 47, "annotation": null}, {"text": "thermally", "start": 335, "end": 344, "id": 48, "annotation": null}, {"text": "incorporating", "start": 345, "end": 358, "id": 49, "annotation": null}, {"text": "a", "start": 359, "end": 360, "id": 50, "annotation": null}, {"text": "large", "start": 361, "end": 366, "id": 51, "annotation": null}, {"text": "number", "start": 367, "end": 373, "id": 52, "annotation": null}, {"text": "of", "start": 374, "end": 376, "id": 53, "annotation": null}, {"text": "boron", "start": 377, "end": 382, "id": 54, "annotation": null}, {"text": "atoms", "start": 383, "end": 388, "id": 55, "annotation": null}, {"text": "into", "start": 389, "end": 393, "id": 56, "annotation": null}, {"text": "substitutional", "start": 394, "end": 408, "id": 57, "annotation": null}, {"text": "positions", "start": 409, "end": 418, "id": 58, "annotation": null}, {"text": "within", "start": 419, "end": 425, "id": 59, "annotation": null}, {"text": "the", "start": 426, "end": 429, "id": 60, "annotation": null}, {"text": "hexagonal", "start": 430, "end": 439, "id": 61, "annotation": null}, {"text": "framework", "start": 440, "end": 449, "id": 62, "annotation": null}, {"text": "of", "start": 450, "end": 452, "id": 63, "annotation": null}, {"text": "the", "start": 453, "end": 456, "id": 64, "annotation": null}, {"text": "tubes", "start": 457, "end": 462, "id": 65, "annotation": null}, {"text": ".", "start": 463, "end": 464, "id": 66, "annotation": null}], [{"text": "It", "start": 465, "end": 467, "id": 67, "annotation": null}, {"text": "was", "start": 468, "end": 471, "id": 68, "annotation": null}, {"text": "confirmed", "start": 472, "end": 481, "id": 69, "annotation": null}, {"text": "that", "start": 482, "end": 486, "id": 70, "annotation": null}, {"text": "the", "start": 487, "end": 490, "id": 71, "annotation": null}, {"text": "defects", "start": 491, "end": 498, "id": 72, "annotation": null}, {"text": "introduced", "start": 499, "end": 509, "id": 73, "annotation": null}, {"text": "after", "start": 510, "end": 515, "id": 74, "annotation": null}, {"text": "vacuum", "start": 516, "end": 522, "id": 75, "annotation": null}, {"text": "ultraviolet", "start": 523, "end": 534, "id": 76, "annotation": null}, {"text": "and", "start": 535, "end": 538, "id": 77, "annotation": null}, {"text": "nitrogen", "start": 539, "end": 547, "id": 78, "annotation": null}, {"text": "plasma", "start": 548, "end": 554, "id": 79, "annotation": null}, {"text": "treatments", "start": 555, "end": 565, "id": 80, "annotation": null}, {"text": "facilitate", "start": 566, "end": 576, "id": 81, "annotation": null}, {"text": "the", "start": 577, "end": 580, "id": 82, "annotation": null}, {"text": "incorporation", "start": 581, "end": 594, "id": 83, "annotation": null}, {"text": "of", "start": 595, "end": 597, "id": 84, "annotation": null}, {"text": "a", "start": 598, "end": 599, "id": 85, "annotation": null}, {"text": "large", "start": 600, "end": 605, "id": 86, "annotation": null}, {"text": "number", "start": 606, "end": 612, "id": 87, "annotation": null}, {"text": "of", "start": 613, "end": 615, "id": 88, "annotation": null}, {"text": "boron", "start": 616, "end": 621, "id": 89, "annotation": "DOPANT"}, {"text": "atoms", "start": 622, "end": 627, "id": 90, "annotation": null}, {"text": "(", "start": 628, "end": 629, "id": 91, "annotation": null}, {"text": "ca", "start": 630, "end": 632, "id": 92, "annotation": "DOPMODQ"}, {"text": ".", "start": 633, "end": 634, "id": 93, "annotation": "DOPMODQ"}], [{"text": "0.496", "start": 635, "end": 640, "id": 94, "annotation": "DOPMODQ"}, {"text": "atomic", "start": 641, "end": 647, "id": 95, "annotation": "DOPMODQ"}, {"text": "%", "start": 648, "end": 649, "id": 96, "annotation": "DOPMODQ"}, {"text": ")", "start": 650, "end": 651, "id": 97, "annotation": null}, {"text": "occupying", "start": 652, "end": 661, "id": 98, "annotation": null}, {"text": "the", "start": 662, "end": 665, "id": 99, "annotation": null}, {"text": "trigonal", "start": 666, "end": 674, "id": 100, "annotation": null}, {"text": "sites", "start": 675, "end": 680, "id": 101, "annotation": null}, {"text": "on", "start": 681, "end": 683, "id": 102, "annotation": null}, {"text": "the", "start": 684, "end": 687, "id": 103, "annotation": null}, {"text": "tube", "start": 688, "end": 692, "id": 104, "annotation": null}, {"text": "sidewalls", "start": 693, "end": 702, "id": 105, "annotation": null}, {"text": "during", "start": 703, "end": 709, "id": 106, "annotation": null}, {"text": "the", "start": 710, "end": 713, "id": 107, "annotation": null}, {"text": "boron", "start": 714, "end": 719, "id": 108, "annotation": "DOPANT"}, {"text": "doping", "start": 720, "end": 726, "id": 109, "annotation": null}, {"text": "process", "start": 727, "end": 734, "id": 110, "annotation": null}, {"text": ",", "start": 735, "end": 736, "id": 111, "annotation": null}, {"text": "thus", "start": 737, "end": 741, "id": 112, "annotation": null}, {"text": "eventually", "start": 742, "end": 752, "id": 113, "annotation": null}, {"text": "increasing", "start": 753, "end": 763, "id": 114, "annotation": null}, {"text": "the", "start": 764, "end": 767, "id": 115, "annotation": null}, {"text": "electrical", "start": 768, "end": 778, "id": 116, "annotation": null}, {"text": "conductivity", "start": 779, "end": 791, "id": 117, "annotation": null}, {"text": "of", "start": 792, "end": 794, "id": 118, "annotation": null}, {"text": "the", "start": 795, "end": 798, "id": 119, "annotation": null}, {"text": "carbon", "start": 799, "end": 805, "id": 120, "annotation": "BASEMAT"}, {"text": "nanotube", "start": 806, "end": 814, "id": 121, "annotation": null}, {"text": "film", "start": 815, "end": 819, "id": 122, "annotation": null}, {"text": ".", "start": 820, "end": 821, "id": 123, "annotation": null}], [{"text": "Our", "start": 822, "end": 825, "id": 124, "annotation": null}, {"text": "approach", "start": 826, "end": 834, "id": 125, "annotation": null}, {"text": "provides", "start": 835, "end": 843, "id": 126, "annotation": null}, {"text": "a", "start": 844, "end": 845, "id": 127, "annotation": null}, {"text": "potential", "start": 846, "end": 855, "id": 128, "annotation": null}, {"text": "solution", "start": 856, "end": 864, "id": 129, "annotation": null}, {"text": "for", "start": 865, "end": 868, "id": 130, "annotation": null}, {"text": "the", "start": 869, "end": 872, "id": 131, "annotation": null}, {"text": "industrial", "start": 873, "end": 883, "id": 132, "annotation": null}, {"text": "use", "start": 884, "end": 887, "id": 133, "annotation": null}, {"text": "of", "start": 888, "end": 890, "id": 134, "annotation": null}, {"text": "macro", "start": 891, "end": 896, "id": 135, "annotation": null}, {"text": "-", "start": 897, "end": 898, "id": 136, "annotation": null}, {"text": "structured", "start": 899, "end": 909, "id": 137, "annotation": null}, {"text": "nanotube", "start": 910, "end": 918, "id": 138, "annotation": null}, {"text": "assemblies", "start": 919, "end": 929, "id": 139, "annotation": null}, {"text": ",", "start": 930, "end": 931, "id": 140, "annotation": null}, {"text": "where", "start": 932, "end": 937, "id": 141, "annotation": null}, {"text": "properties", "start": 938, "end": 948, "id": 142, "annotation": null}, {"text": ",", "start": 949, "end": 950, "id": 143, "annotation": null}, {"text": "such", "start": 951, "end": 955, "id": 144, "annotation": null}, {"text": "as", "start": 956, "end": 958, "id": 145, "annotation": null}, {"text": "high", "start": 959, "end": 963, "id": 146, "annotation": null}, {"text": "electrical", "start": 964, "end": 974, "id": 147, "annotation": null}, {"text": "conductance", "start": 975, "end": 986, "id": 148, "annotation": null}, {"text": ",", "start": 987, "end": 988, "id": 149, "annotation": null}, {"text": "high", "start": 989, "end": 993, "id": 150, "annotation": null}, {"text": "transparency", "start": 994, "end": 1006, "id": 151, "annotation": null}, {"text": ",", "start": 1007, "end": 1008, "id": 152, "annotation": null}, {"text": "and", "start": 1009, "end": 1012, "id": 153, "annotation": null}, {"text": "lightweight", "start": 1013, "end": 1024, "id": 154, "annotation": null}, {"text": ",", "start": 1025, "end": 1026, "id": 155, "annotation": null}, {"text": "are", "start": 1027, "end": 1030, "id": 156, "annotation": null}, {"text": "extremely", "start": 1031, "end": 1040, "id": 157, "annotation": null}, {"text": "important", "start": 1041, "end": 1050, "id": 158, "annotation": null}, {"text": ".", "start": 1051, "end": 1052, "id": 159, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Using first principles calculations based on the density functional theory, we investigated the electronic and magnetic properties of (Fe, In) co-doped ZnO. At first, the magnetic state of Fe doped ZnO was calculated and analyzed. It was found that Fe doped ZnO was anti-ferromagnetic state without other impurity atoms or other defects. Therefore, In atom was considered to made the system transit from anti-ferromagnetic state to the ferromagnetic state. Then, the parameters of electronic structure and the density of states (DOS) were investigated. The results demonstrated that In atom had an important regulatory role in (Fe, In) co-doped ZnO, especially when In atom was away from Fe atoms. Just like Fe doped ZnO, (Fe, In) co-doped ZnO was also spin-polarized and doping Fe and In atoms didn't affect the supercell crystal structure. The magnetic property of (Fe, In) co-doped ZnO came from DMSO-d6 exchange effect. It was a redundant electron provided by In atom that not only enhanced the electronic conductivity of (Fe, In) co-doped ZnO, but also made the system transit from anti-ferromagnetic state to the ferromagnetic state.", "meta": {"doi": "10.1016/j.jallcom.2016.10.279"}, "_input_hash": 1594028975, "_task_hash": 1991186803, "tokens": [[{"text": "Using", "start": 0, "end": 5, "id": 0, "annotation": null}, {"text": "first", "start": 6, "end": 11, "id": 1, "annotation": null}, {"text": "principles", "start": 12, "end": 22, "id": 2, "annotation": null}, {"text": "calculations", "start": 23, "end": 35, "id": 3, "annotation": null}, {"text": "based", "start": 36, "end": 41, "id": 4, "annotation": null}, {"text": "on", "start": 42, "end": 44, "id": 5, "annotation": null}, {"text": "the", "start": 45, "end": 48, "id": 6, "annotation": null}, {"text": "density", "start": 49, "end": 56, "id": 7, "annotation": null}, {"text": "functional", "start": 57, "end": 67, "id": 8, "annotation": null}, {"text": "theory", "start": 68, "end": 74, "id": 9, "annotation": null}, {"text": ",", "start": 75, "end": 76, "id": 10, "annotation": null}, {"text": "we", "start": 77, "end": 79, "id": 11, "annotation": null}, {"text": "investigated", "start": 80, "end": 92, "id": 12, "annotation": null}, {"text": "the", "start": 93, "end": 96, "id": 13, "annotation": null}, {"text": "electronic", "start": 97, "end": 107, "id": 14, "annotation": null}, {"text": "and", "start": 108, "end": 111, "id": 15, "annotation": null}, {"text": "magnetic", "start": 112, "end": 120, "id": 16, "annotation": null}, {"text": "properties", "start": 121, "end": 131, "id": 17, "annotation": null}, {"text": "of", "start": 132, "end": 134, "id": 18, "annotation": null}, {"text": "(", "start": 135, "end": 136, "id": 19, "annotation": null}, {"text": "Fe", "start": 137, "end": 139, "id": 20, "annotation": "DOPANT"}, {"text": ",", "start": 140, "end": 141, "id": 21, "annotation": null}, {"text": "In", "start": 142, "end": 144, "id": 22, "annotation": "DOPANT"}, {"text": ")", "start": 145, "end": 146, "id": 23, "annotation": null}, {"text": "co", "start": 147, "end": 149, "id": 24, "annotation": null}, {"text": "-", "start": 150, "end": 151, "id": 25, "annotation": null}, {"text": "doped", "start": 152, "end": 157, "id": 26, "annotation": null}, {"text": "ZnO.", "start": 158, "end": 162, "id": 27, "annotation": "BASEMAT"}], [{"text": "At", "start": 163, "end": 165, "id": 28, "annotation": null}, {"text": "first", "start": 166, "end": 171, "id": 29, "annotation": null}, {"text": ",", "start": 172, "end": 173, "id": 30, "annotation": null}, {"text": "the", "start": 174, "end": 177, "id": 31, "annotation": null}, {"text": "magnetic", "start": 178, "end": 186, "id": 32, "annotation": null}, {"text": "state", "start": 187, "end": 192, "id": 33, "annotation": null}, {"text": "of", "start": 193, "end": 195, "id": 34, "annotation": null}, {"text": "Fe", "start": 196, "end": 198, "id": 35, "annotation": "DOPANT"}, {"text": "doped", "start": 199, "end": 204, "id": 36, "annotation": null}, {"text": "ZnO", "start": 205, "end": 208, "id": 37, "annotation": "BASEMAT"}, {"text": "was", "start": 209, "end": 212, "id": 38, "annotation": null}, {"text": "calculated", "start": 213, "end": 223, "id": 39, "annotation": null}, {"text": "and", "start": 224, "end": 227, "id": 40, "annotation": null}, {"text": "analyzed", "start": 228, "end": 236, "id": 41, "annotation": null}, {"text": ".", "start": 237, "end": 238, "id": 42, "annotation": null}], [{"text": "It", "start": 239, "end": 241, "id": 43, "annotation": null}, {"text": "was", "start": 242, "end": 245, "id": 44, "annotation": null}, {"text": "found", "start": 246, "end": 251, "id": 45, "annotation": null}, {"text": "that", "start": 252, "end": 256, "id": 46, "annotation": null}, {"text": "Fe", "start": 257, "end": 259, "id": 47, "annotation": "DOPANT"}, {"text": "doped", "start": 260, "end": 265, "id": 48, "annotation": null}, {"text": "ZnO", "start": 266, "end": 269, "id": 49, "annotation": "BASEMAT"}, {"text": "was", "start": 270, "end": 273, "id": 50, "annotation": null}, {"text": "anti", "start": 274, "end": 278, "id": 51, "annotation": null}, {"text": "-", "start": 279, "end": 280, "id": 52, "annotation": null}, {"text": "ferromagnetic", "start": 281, "end": 294, "id": 53, "annotation": null}, {"text": "state", "start": 295, "end": 300, "id": 54, "annotation": null}, {"text": "without", "start": 301, "end": 308, "id": 55, "annotation": null}, {"text": "other", "start": 309, "end": 314, "id": 56, "annotation": null}, {"text": "impurity", "start": 315, "end": 323, "id": 57, "annotation": null}, {"text": "atoms", "start": 324, "end": 329, "id": 58, "annotation": null}, {"text": "or", "start": 330, "end": 332, "id": 59, "annotation": null}, {"text": "other", "start": 333, "end": 338, "id": 60, "annotation": null}, {"text": "defects", "start": 339, "end": 346, "id": 61, "annotation": null}, {"text": ".", "start": 347, "end": 348, "id": 62, "annotation": null}], [{"text": "Therefore", "start": 349, "end": 358, "id": 63, "annotation": null}, {"text": ",", "start": 359, "end": 360, "id": 64, "annotation": null}, {"text": "In", "start": 361, "end": 363, "id": 65, "annotation": null}, {"text": "atom", "start": 364, "end": 368, "id": 66, "annotation": null}, {"text": "was", "start": 369, "end": 372, "id": 67, "annotation": null}, {"text": "considered", "start": 373, "end": 383, "id": 68, "annotation": null}, {"text": "to", "start": 384, "end": 386, "id": 69, "annotation": null}, {"text": "made", "start": 387, "end": 391, "id": 70, "annotation": null}, {"text": "the", "start": 392, "end": 395, "id": 71, "annotation": null}, {"text": "system", "start": 396, "end": 402, "id": 72, "annotation": null}, {"text": "transit", "start": 403, "end": 410, "id": 73, "annotation": null}, {"text": "from", "start": 411, "end": 415, "id": 74, "annotation": null}, {"text": "anti", "start": 416, "end": 420, "id": 75, "annotation": null}, {"text": "-", "start": 421, "end": 422, "id": 76, "annotation": null}, {"text": "ferromagnetic", "start": 423, "end": 436, "id": 77, "annotation": null}, {"text": "state", "start": 437, "end": 442, "id": 78, "annotation": null}, {"text": "to", "start": 443, "end": 445, "id": 79, "annotation": null}, {"text": "the", "start": 446, "end": 449, "id": 80, "annotation": null}, {"text": "ferromagnetic", "start": 450, "end": 463, "id": 81, "annotation": null}, {"text": "state", "start": 464, "end": 469, "id": 82, "annotation": null}, {"text": ".", "start": 470, "end": 471, "id": 83, "annotation": null}], [{"text": "Then", "start": 472, "end": 476, "id": 84, "annotation": null}, {"text": ",", "start": 477, "end": 478, "id": 85, "annotation": null}, {"text": "the", "start": 479, "end": 482, "id": 86, "annotation": null}, {"text": "parameters", "start": 483, "end": 493, "id": 87, "annotation": null}, {"text": "of", "start": 494, "end": 496, "id": 88, "annotation": null}, {"text": "electronic", "start": 497, "end": 507, "id": 89, "annotation": null}, {"text": "structure", "start": 508, "end": 517, "id": 90, "annotation": null}, {"text": "and", "start": 518, "end": 521, "id": 91, "annotation": null}, {"text": "the", "start": 522, "end": 525, "id": 92, "annotation": null}, {"text": "density", "start": 526, "end": 533, "id": 93, "annotation": null}, {"text": "of", "start": 534, "end": 536, "id": 94, "annotation": null}, {"text": "states", "start": 537, "end": 543, "id": 95, "annotation": null}, {"text": "(", "start": 544, "end": 545, "id": 96, "annotation": null}, {"text": "DOS", "start": 546, "end": 549, "id": 97, "annotation": null}, {"text": ")", "start": 550, "end": 551, "id": 98, "annotation": null}, {"text": "were", "start": 552, "end": 556, "id": 99, "annotation": null}, {"text": "investigated", "start": 557, "end": 569, "id": 100, "annotation": null}, {"text": ".", "start": 570, "end": 571, "id": 101, "annotation": null}], [{"text": "The", "start": 572, "end": 575, "id": 102, "annotation": null}, {"text": "results", "start": 576, "end": 583, "id": 103, "annotation": null}, {"text": "demonstrated", "start": 584, "end": 596, "id": 104, "annotation": null}, {"text": "that", "start": 597, "end": 601, "id": 105, "annotation": null}, {"text": "In", "start": 602, "end": 604, "id": 106, "annotation": null}, {"text": "atom", "start": 605, "end": 609, "id": 107, "annotation": null}, {"text": "had", "start": 610, "end": 613, "id": 108, "annotation": null}, {"text": "an", "start": 614, "end": 616, "id": 109, "annotation": null}, {"text": "important", "start": 617, "end": 626, "id": 110, "annotation": null}, {"text": "regulatory", "start": 627, "end": 637, "id": 111, "annotation": null}, {"text": "role", "start": 638, "end": 642, "id": 112, "annotation": null}, {"text": "in", "start": 643, "end": 645, "id": 113, "annotation": null}, {"text": "(", "start": 646, "end": 647, "id": 114, "annotation": null}, {"text": "Fe", "start": 648, "end": 650, "id": 115, "annotation": "DOPANT"}, {"text": ",", "start": 651, "end": 652, "id": 116, "annotation": null}, {"text": "In", "start": 653, "end": 655, "id": 117, "annotation": "DOPANT"}, {"text": ")", "start": 656, "end": 657, "id": 118, "annotation": null}, {"text": "co", "start": 658, "end": 660, "id": 119, "annotation": null}, {"text": "-", "start": 661, "end": 662, "id": 120, "annotation": null}, {"text": "doped", "start": 663, "end": 668, "id": 121, "annotation": null}, {"text": "ZnO", "start": 669, "end": 672, "id": 122, "annotation": "BASEMAT"}, {"text": ",", "start": 673, "end": 674, "id": 123, "annotation": null}, {"text": "especially", "start": 675, "end": 685, "id": 124, "annotation": null}, {"text": "when", "start": 686, "end": 690, "id": 125, "annotation": null}, {"text": "In", "start": 691, "end": 693, "id": 126, "annotation": null}, {"text": "atom", "start": 694, "end": 698, "id": 127, "annotation": null}, {"text": "was", "start": 699, "end": 702, "id": 128, "annotation": null}, {"text": "away", "start": 703, "end": 707, "id": 129, "annotation": null}, {"text": "from", "start": 708, "end": 712, "id": 130, "annotation": null}, {"text": "Fe", "start": 713, "end": 715, "id": 131, "annotation": null}, {"text": "atoms", "start": 716, "end": 721, "id": 132, "annotation": null}, {"text": ".", "start": 722, "end": 723, "id": 133, "annotation": null}], [{"text": "Just", "start": 724, "end": 728, "id": 134, "annotation": null}, {"text": "like", "start": 729, "end": 733, "id": 135, "annotation": null}, {"text": "Fe", "start": 734, "end": 736, "id": 136, "annotation": "DOPANT"}, {"text": "doped", "start": 737, "end": 742, "id": 137, "annotation": null}, {"text": "ZnO", "start": 743, "end": 746, "id": 138, "annotation": "BASEMAT"}, {"text": ",", "start": 747, "end": 748, "id": 139, "annotation": null}, {"text": "(", "start": 749, "end": 750, "id": 140, "annotation": null}, {"text": "Fe", "start": 751, "end": 753, "id": 141, "annotation": "DOPANT"}, {"text": ",", "start": 754, "end": 755, "id": 142, "annotation": null}, {"text": "In", "start": 756, "end": 758, "id": 143, "annotation": "DOPANT"}, {"text": ")", "start": 759, "end": 760, "id": 144, "annotation": null}, {"text": "co", "start": 761, "end": 763, "id": 145, "annotation": null}, {"text": "-", "start": 764, "end": 765, "id": 146, "annotation": null}, {"text": "doped", "start": 766, "end": 771, "id": 147, "annotation": null}, {"text": "ZnO", "start": 772, "end": 775, "id": 148, "annotation": "BASEMAT"}, {"text": "was", "start": 776, "end": 779, "id": 149, "annotation": null}, {"text": "also", "start": 780, "end": 784, "id": 150, "annotation": null}, {"text": "spin", "start": 785, "end": 789, "id": 151, "annotation": null}, {"text": "-", "start": 790, "end": 791, "id": 152, "annotation": null}, {"text": "polarized", "start": 792, "end": 801, "id": 153, "annotation": null}, {"text": "and", "start": 802, "end": 805, "id": 154, "annotation": null}, {"text": "doping", "start": 806, "end": 812, "id": 155, "annotation": null}, {"text": "Fe", "start": 813, "end": 815, "id": 156, "annotation": null}, {"text": "and", "start": 816, "end": 819, "id": 157, "annotation": null}, {"text": "In", "start": 820, "end": 822, "id": 158, "annotation": null}, {"text": "atoms", "start": 823, "end": 828, "id": 159, "annotation": null}, {"text": "did", "start": 829, "end": 832, "id": 160, "annotation": null}, {"text": "n't", "start": 833, "end": 836, "id": 161, "annotation": null}, {"text": "affect", "start": 837, "end": 843, "id": 162, "annotation": null}, {"text": "the", "start": 844, "end": 847, "id": 163, "annotation": null}, {"text": "supercell", "start": 848, "end": 857, "id": 164, "annotation": null}, {"text": "crystal", "start": 858, "end": 865, "id": 165, "annotation": null}, {"text": "structure", "start": 866, "end": 875, "id": 166, "annotation": null}, {"text": ".", "start": 876, "end": 877, "id": 167, "annotation": null}], [{"text": "The", "start": 878, "end": 881, "id": 168, "annotation": null}, {"text": "magnetic", "start": 882, "end": 890, "id": 169, "annotation": null}, {"text": "property", "start": 891, "end": 899, "id": 170, "annotation": null}, {"text": "of", "start": 900, "end": 902, "id": 171, "annotation": null}, {"text": "(", "start": 903, "end": 904, "id": 172, "annotation": null}, {"text": "Fe", "start": 905, "end": 907, "id": 173, "annotation": "DOPANT"}, {"text": ",", "start": 908, "end": 909, "id": 174, "annotation": null}, {"text": "In", "start": 910, "end": 912, "id": 175, "annotation": "DOPANT"}, {"text": ")", "start": 913, "end": 914, "id": 176, "annotation": null}, {"text": "co", "start": 915, "end": 917, "id": 177, "annotation": null}, {"text": "-", "start": 918, "end": 919, "id": 178, "annotation": null}, {"text": "doped", "start": 920, "end": 925, "id": 179, "annotation": null}, {"text": "ZnO", "start": 926, "end": 929, "id": 180, "annotation": "BASEMAT"}, {"text": "came", "start": 930, "end": 934, "id": 181, "annotation": null}, {"text": "from", "start": 935, "end": 939, "id": 182, "annotation": null}, {"text": "DMSO", "start": 940, "end": 944, "id": 183, "annotation": null}, {"text": "-", "start": 945, "end": 946, "id": 184, "annotation": null}, {"text": "d6", "start": 947, "end": 949, "id": 185, "annotation": null}, {"text": "exchange", "start": 950, "end": 958, "id": 186, "annotation": null}, {"text": "effect", "start": 959, "end": 965, "id": 187, "annotation": null}, {"text": ".", "start": 966, "end": 967, "id": 188, "annotation": null}], [{"text": "It", "start": 968, "end": 970, "id": 189, "annotation": null}, {"text": "was", "start": 971, "end": 974, "id": 190, "annotation": null}, {"text": "a", "start": 975, "end": 976, "id": 191, "annotation": null}, {"text": "redundant", "start": 977, "end": 986, "id": 192, "annotation": null}, {"text": "electron", "start": 987, "end": 995, "id": 193, "annotation": null}, {"text": "provided", "start": 996, "end": 1004, "id": 194, "annotation": null}, {"text": "by", "start": 1005, "end": 1007, "id": 195, "annotation": null}, {"text": "In", "start": 1008, "end": 1010, "id": 196, "annotation": null}, {"text": "atom", "start": 1011, "end": 1015, "id": 197, "annotation": null}, {"text": "that", "start": 1016, "end": 1020, "id": 198, "annotation": null}, {"text": "not", "start": 1021, "end": 1024, "id": 199, "annotation": null}, {"text": "only", "start": 1025, "end": 1029, "id": 200, "annotation": null}, {"text": "enhanced", "start": 1030, "end": 1038, "id": 201, "annotation": null}, {"text": "the", "start": 1039, "end": 1042, "id": 202, "annotation": null}, {"text": "electronic", "start": 1043, "end": 1053, "id": 203, "annotation": null}, {"text": "conductivity", "start": 1054, "end": 1066, "id": 204, "annotation": null}, {"text": "of", "start": 1067, "end": 1069, "id": 205, "annotation": null}, {"text": "(", "start": 1070, "end": 1071, "id": 206, "annotation": null}, {"text": "Fe", "start": 1072, "end": 1074, "id": 207, "annotation": "DOPANT"}, {"text": ",", "start": 1075, "end": 1076, "id": 208, "annotation": null}, {"text": "In", "start": 1077, "end": 1079, "id": 209, "annotation": "DOPANT"}, {"text": ")", "start": 1080, "end": 1081, "id": 210, "annotation": null}, {"text": "co", "start": 1082, "end": 1084, "id": 211, "annotation": null}, {"text": "-", "start": 1085, "end": 1086, "id": 212, "annotation": null}, {"text": "doped", "start": 1087, "end": 1092, "id": 213, "annotation": null}, {"text": "ZnO", "start": 1093, "end": 1096, "id": 214, "annotation": "BASEMAT"}, {"text": ",", "start": 1097, "end": 1098, "id": 215, "annotation": null}, {"text": "but", "start": 1099, "end": 1102, "id": 216, "annotation": null}, {"text": "also", "start": 1103, "end": 1107, "id": 217, "annotation": null}, {"text": "made", "start": 1108, "end": 1112, "id": 218, "annotation": null}, {"text": "the", "start": 1113, "end": 1116, "id": 219, "annotation": null}, {"text": "system", "start": 1117, "end": 1123, "id": 220, "annotation": null}, {"text": "transit", "start": 1124, "end": 1131, "id": 221, "annotation": null}, {"text": "from", "start": 1132, "end": 1136, "id": 222, "annotation": null}, {"text": "anti", "start": 1137, "end": 1141, "id": 223, "annotation": null}, {"text": "-", "start": 1142, "end": 1143, "id": 224, "annotation": null}, {"text": "ferromagnetic", "start": 1144, "end": 1157, "id": 225, "annotation": null}, {"text": "state", "start": 1158, "end": 1163, "id": 226, "annotation": null}, {"text": "to", "start": 1164, "end": 1166, "id": 227, "annotation": null}, {"text": "the", "start": 1167, "end": 1170, "id": 228, "annotation": null}, {"text": "ferromagnetic", "start": 1171, "end": 1184, "id": 229, "annotation": null}, {"text": "state", "start": 1185, "end": 1190, "id": 230, "annotation": null}, {"text": ".", "start": 1191, "end": 1192, "id": 231, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Simultaneous enhancement of the interdependent Seebeck coefficient and electrical conductivity has been achieved through defect engineering by doping Mg into specific sites of Na 0.8CoO 2. Results from thermoelectric measurement demonstrate that the power factor was substantially increased by 50% at ambient. Experimental and theoretical analyses show that the occupation of divalent Mg in the disordered Na layer immobilizes the Na ions and thus induces a long-range ordering of Na ions. This phenomenon improves the carrier mobility significantly, giving rise to the observed exotic thermoelectric performance. Moreover, it is predicted that other electronically closed-shell dopants in sodium cobaltate play a similar role in enhancing the thermoelectric conversion efficiency.", "meta": {"doi": "10.1021/jp209343v"}, "_input_hash": -994117667, "_task_hash": -292568986, "tokens": [[{"text": "Simultaneous", "start": 0, "end": 12, "id": 0, "annotation": null}, {"text": "enhancement", "start": 13, "end": 24, "id": 1, "annotation": null}, {"text": "of", "start": 25, "end": 27, "id": 2, "annotation": null}, {"text": "the", "start": 28, "end": 31, "id": 3, "annotation": null}, {"text": "interdependent", "start": 32, "end": 46, "id": 4, "annotation": null}, {"text": "Seebeck", "start": 47, "end": 54, "id": 5, "annotation": null}, {"text": "coefficient", "start": 55, "end": 66, "id": 6, "annotation": null}, {"text": "and", "start": 67, "end": 70, "id": 7, "annotation": null}, {"text": "electrical", "start": 71, "end": 81, "id": 8, "annotation": null}, {"text": "conductivity", "start": 82, "end": 94, "id": 9, "annotation": null}, {"text": "has", "start": 95, "end": 98, "id": 10, "annotation": null}, {"text": "been", "start": 99, "end": 103, "id": 11, "annotation": null}, {"text": "achieved", "start": 104, "end": 112, "id": 12, "annotation": null}, {"text": "through", "start": 113, "end": 120, "id": 13, "annotation": null}, {"text": "defect", "start": 121, "end": 127, "id": 14, "annotation": null}, {"text": "engineering", "start": 128, "end": 139, "id": 15, "annotation": null}, {"text": "by", "start": 140, "end": 142, "id": 16, "annotation": null}, {"text": "doping", "start": 143, "end": 149, "id": 17, "annotation": null}, {"text": "Mg", "start": 150, "end": 152, "id": 18, "annotation": "DOPANT"}, {"text": "into", "start": 153, "end": 157, "id": 19, "annotation": null}, {"text": "specific", "start": 158, "end": 166, "id": 20, "annotation": null}, {"text": "sites", "start": 167, "end": 172, "id": 21, "annotation": null}, {"text": "of", "start": 173, "end": 175, "id": 22, "annotation": null}, {"text": "Na", "start": 176, "end": 178, "id": 23, "annotation": "BASEMAT"}, {"text": "0.8CoO", "start": 179, "end": 185, "id": 24, "annotation": null}, {"text": "2", "start": 186, "end": 187, "id": 25, "annotation": "BASEMAT"}, {"text": ".", "start": 188, "end": 189, "id": 26, "annotation": null}], [{"text": "Results", "start": 190, "end": 197, "id": 27, "annotation": null}, {"text": "from", "start": 198, "end": 202, "id": 28, "annotation": null}, {"text": "thermoelectric", "start": 203, "end": 217, "id": 29, "annotation": null}, {"text": "measurement", "start": 218, "end": 229, "id": 30, "annotation": null}, {"text": "demonstrate", "start": 230, "end": 241, "id": 31, "annotation": null}, {"text": "that", "start": 242, "end": 246, "id": 32, "annotation": null}, {"text": "the", "start": 247, "end": 250, "id": 33, "annotation": null}, {"text": "power", "start": 251, "end": 256, "id": 34, "annotation": null}, {"text": "factor", "start": 257, "end": 263, "id": 35, "annotation": null}, {"text": "was", "start": 264, "end": 267, "id": 36, "annotation": null}, {"text": "substantially", "start": 268, "end": 281, "id": 37, "annotation": null}, {"text": "increased", "start": 282, "end": 291, "id": 38, "annotation": null}, {"text": "by", "start": 292, "end": 294, "id": 39, "annotation": null}, {"text": "50", "start": 295, "end": 297, "id": 40, "annotation": null}, {"text": "%", "start": 298, "end": 299, "id": 41, "annotation": null}, {"text": "at", "start": 300, "end": 302, "id": 42, "annotation": null}, {"text": "ambient", "start": 303, "end": 310, "id": 43, "annotation": null}, {"text": ".", "start": 311, "end": 312, "id": 44, "annotation": null}], [{"text": "Experimental", "start": 313, "end": 325, "id": 45, "annotation": null}, {"text": "and", "start": 326, "end": 329, "id": 46, "annotation": null}, {"text": "theoretical", "start": 330, "end": 341, "id": 47, "annotation": null}, {"text": "analyses", "start": 342, "end": 350, "id": 48, "annotation": null}, {"text": "show", "start": 351, "end": 355, "id": 49, "annotation": null}, {"text": "that", "start": 356, "end": 360, "id": 50, "annotation": null}, {"text": "the", "start": 361, "end": 364, "id": 51, "annotation": null}, {"text": "occupation", "start": 365, "end": 375, "id": 52, "annotation": null}, {"text": "of", "start": 376, "end": 378, "id": 53, "annotation": null}, {"text": "divalent", "start": 379, "end": 387, "id": 54, "annotation": null}, {"text": "Mg", "start": 388, "end": 390, "id": 55, "annotation": null}, {"text": "in", "start": 391, "end": 393, "id": 56, "annotation": null}, {"text": "the", "start": 394, "end": 397, "id": 57, "annotation": null}, {"text": "disordered", "start": 398, "end": 408, "id": 58, "annotation": null}, {"text": "Na", "start": 409, "end": 411, "id": 59, "annotation": null}, {"text": "layer", "start": 412, "end": 417, "id": 60, "annotation": null}, {"text": "immobilizes", "start": 418, "end": 429, "id": 61, "annotation": null}, {"text": "the", "start": 430, "end": 433, "id": 62, "annotation": null}, {"text": "Na", "start": 434, "end": 436, "id": 63, "annotation": null}, {"text": "ions", "start": 437, "end": 441, "id": 64, "annotation": null}, {"text": "and", "start": 442, "end": 445, "id": 65, "annotation": null}, {"text": "thus", "start": 446, "end": 450, "id": 66, "annotation": null}, {"text": "induces", "start": 451, "end": 458, "id": 67, "annotation": null}, {"text": "a", "start": 459, "end": 460, "id": 68, "annotation": null}, {"text": "long", "start": 461, "end": 465, "id": 69, "annotation": null}, {"text": "-", "start": 466, "end": 467, "id": 70, "annotation": null}, {"text": "range", "start": 468, "end": 473, "id": 71, "annotation": null}, {"text": "ordering", "start": 474, "end": 482, "id": 72, "annotation": null}, {"text": "of", "start": 483, "end": 485, "id": 73, "annotation": null}, {"text": "Na", "start": 486, "end": 488, "id": 74, "annotation": null}, {"text": "ions", "start": 489, "end": 493, "id": 75, "annotation": null}, {"text": ".", "start": 494, "end": 495, "id": 76, "annotation": null}], [{"text": "This", "start": 496, "end": 500, "id": 77, "annotation": null}, {"text": "phenomenon", "start": 501, "end": 511, "id": 78, "annotation": null}, {"text": "improves", "start": 512, "end": 520, "id": 79, "annotation": null}, {"text": "the", "start": 521, "end": 524, "id": 80, "annotation": null}, {"text": "carrier", "start": 525, "end": 532, "id": 81, "annotation": null}, {"text": "mobility", "start": 533, "end": 541, "id": 82, "annotation": null}, {"text": "significantly", "start": 542, "end": 555, "id": 83, "annotation": null}, {"text": ",", "start": 556, "end": 557, "id": 84, "annotation": null}, {"text": "giving", "start": 558, "end": 564, "id": 85, "annotation": null}, {"text": "rise", "start": 565, "end": 569, "id": 86, "annotation": null}, {"text": "to", "start": 570, "end": 572, "id": 87, "annotation": null}, {"text": "the", "start": 573, "end": 576, "id": 88, "annotation": null}, {"text": "observed", "start": 577, "end": 585, "id": 89, "annotation": null}, {"text": "exotic", "start": 586, "end": 592, "id": 90, "annotation": null}, {"text": "thermoelectric", "start": 593, "end": 607, "id": 91, "annotation": null}, {"text": "performance", "start": 608, "end": 619, "id": 92, "annotation": null}, {"text": ".", "start": 620, "end": 621, "id": 93, "annotation": null}], [{"text": "Moreover", "start": 622, "end": 630, "id": 94, "annotation": null}, {"text": ",", "start": 631, "end": 632, "id": 95, "annotation": null}, {"text": "it", "start": 633, "end": 635, "id": 96, "annotation": null}, {"text": "is", "start": 636, "end": 638, "id": 97, "annotation": null}, {"text": "predicted", "start": 639, "end": 648, "id": 98, "annotation": null}, {"text": "that", "start": 649, "end": 653, "id": 99, "annotation": null}, {"text": "other", "start": 654, "end": 659, "id": 100, "annotation": null}, {"text": "electronically", "start": 660, "end": 674, "id": 101, "annotation": null}, {"text": "closed", "start": 675, "end": 681, "id": 102, "annotation": null}, {"text": "-", "start": 682, "end": 683, "id": 103, "annotation": null}, {"text": "shell", "start": 684, "end": 689, "id": 104, "annotation": null}, {"text": "dopants", "start": 690, "end": 697, "id": 105, "annotation": null}, {"text": "in", "start": 698, "end": 700, "id": 106, "annotation": null}, {"text": "sodium", "start": 701, "end": 707, "id": 107, "annotation": "BASEMAT"}, {"text": "cobaltate", "start": 708, "end": 717, "id": 108, "annotation": "BASEMAT"}, {"text": "play", "start": 718, "end": 722, "id": 109, "annotation": null}, {"text": "a", "start": 723, "end": 724, "id": 110, "annotation": null}, {"text": "similar", "start": 725, "end": 732, "id": 111, "annotation": null}, {"text": "role", "start": 733, "end": 737, "id": 112, "annotation": null}, {"text": "in", "start": 738, "end": 740, "id": 113, "annotation": null}, {"text": "enhancing", "start": 741, "end": 750, "id": 114, "annotation": null}, {"text": "the", "start": 751, "end": 754, "id": 115, "annotation": null}, {"text": "thermoelectric", "start": 755, "end": 769, "id": 116, "annotation": null}, {"text": "conversion", "start": 770, "end": 780, "id": 117, "annotation": null}, {"text": "efficiency", "start": 781, "end": 791, "id": 118, "annotation": null}, {"text": ".", "start": 792, "end": 793, "id": 119, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "In this paper, we have investigated the hydrophilic properties of the titania films doped with increasing chromium percentages (from 2.1 at.% till 4.0 at.%). Cr-doping induces an increase in the rutile weight %, a more compact structure, and a significant red shift of the TiO2 absorption edge, the last property being very important in the self cleaning applications. For the chosen Cr concentrations, the films did not show promising hydrophilic properties. To improve them, we have applied a novel surface modification method, reported in literature mainly for powders, namely, surface metallisation. We have observed that, by depositing Pt islands on the film with the highest Cr content, its hydrophilic properties improve for a certain metal coverage area. The explanation was based on FT-IR and X-ray photoelectron spectroscopy analysis, performed on the UV irradiated and non-irradiated films, which gives information on the relationship between hydrophilicity and the amount of the adsorbed hydroxyl groups.", "meta": {"doi": "10.1080/14786435.2016.1222085"}, "_input_hash": -518042192, "_task_hash": -1530504591, "tokens": [[{"text": "In", "start": 68, "end": 70, "id": 15, "annotation": null}, {"text": "this", "start": 71, "end": 75, "id": 16, "annotation": null}, {"text": "paper", "start": 76, "end": 81, "id": 17, "annotation": null}, {"text": ",", "start": 82, "end": 83, "id": 18, "annotation": null}, {"text": "we", "start": 84, "end": 86, "id": 19, "annotation": null}, {"text": "have", "start": 87, "end": 91, "id": 20, "annotation": null}, {"text": "investigated", "start": 92, "end": 104, "id": 21, "annotation": null}, {"text": "the", "start": 105, "end": 108, "id": 22, "annotation": null}, {"text": "hydrophilic", "start": 109, "end": 120, "id": 23, "annotation": null}, {"text": "properties", "start": 121, "end": 131, "id": 24, "annotation": null}, {"text": "of", "start": 132, "end": 134, "id": 25, "annotation": null}, {"text": "the", "start": 135, "end": 138, "id": 26, "annotation": null}, {"text": "titania", "start": 139, "end": 146, "id": 27, "annotation": "BASEMAT"}, {"text": "films", "start": 147, "end": 152, "id": 28, "annotation": null}, {"text": "doped", "start": 153, "end": 158, "id": 29, "annotation": null}, {"text": "with", "start": 159, "end": 163, "id": 30, "annotation": null}, {"text": "increasing", "start": 164, "end": 174, "id": 31, "annotation": null}, {"text": "chromium", "start": 175, "end": 183, "id": 32, "annotation": "DOPANT"}, {"text": "percentages", "start": 184, "end": 195, "id": 33, "annotation": null}, {"text": "(", "start": 196, "end": 197, "id": 34, "annotation": null}, {"text": "from", "start": 198, "end": 202, "id": 35, "annotation": "DOPMODQ"}, {"text": "2.1", "start": 203, "end": 206, "id": 36, "annotation": null}, {"text": "at.%", "start": 207, "end": 211, "id": 37, "annotation": null}, {"text": "till", "start": 212, "end": 216, "id": 38, "annotation": null}, {"text": "4.0", "start": 217, "end": 220, "id": 39, "annotation": null}, {"text": "at.%", "start": 221, "end": 225, "id": 40, "annotation": "DOPMODQ"}, {"text": ")", "start": 226, "end": 227, "id": 41, "annotation": null}, {"text": ".", "start": 228, "end": 229, "id": 42, "annotation": null}], [{"text": "Cr", "start": 230, "end": 232, "id": 43, "annotation": "DOPANT"}, {"text": "-", "start": 233, "end": 234, "id": 44, "annotation": null}, {"text": "doping", "start": 235, "end": 241, "id": 45, "annotation": null}, {"text": "induces", "start": 242, "end": 249, "id": 46, "annotation": null}, {"text": "an", "start": 250, "end": 252, "id": 47, "annotation": null}, {"text": "increase", "start": 253, "end": 261, "id": 48, "annotation": null}, {"text": "in", "start": 262, "end": 264, "id": 49, "annotation": null}, {"text": "the", "start": 265, "end": 268, "id": 50, "annotation": null}, {"text": "rutile", "start": 269, "end": 275, "id": 51, "annotation": null}, {"text": "weight", "start": 276, "end": 282, "id": 52, "annotation": null}, {"text": "%", "start": 283, "end": 284, "id": 53, "annotation": null}, {"text": ",", "start": 285, "end": 286, "id": 54, "annotation": null}, {"text": "a", "start": 287, "end": 288, "id": 55, "annotation": null}, {"text": "more", "start": 289, "end": 293, "id": 56, "annotation": null}, {"text": "compact", "start": 294, "end": 301, "id": 57, "annotation": null}, {"text": "structure", "start": 302, "end": 311, "id": 58, "annotation": null}, {"text": ",", "start": 312, "end": 313, "id": 59, "annotation": null}, {"text": "and", "start": 314, "end": 317, "id": 60, "annotation": null}, {"text": "a", "start": 318, "end": 319, "id": 61, "annotation": null}, {"text": "significant", "start": 320, "end": 331, "id": 62, "annotation": null}, {"text": "red", "start": 332, "end": 335, "id": 63, "annotation": null}, {"text": "shift", "start": 336, "end": 341, "id": 64, "annotation": null}, {"text": "of", "start": 342, "end": 344, "id": 65, "annotation": null}, {"text": "the", "start": 345, "end": 348, "id": 66, "annotation": null}, {"text": "TiO2", "start": 349, "end": 353, "id": 67, "annotation": null}, {"text": "absorption", "start": 354, "end": 364, "id": 68, "annotation": null}, {"text": "edge", "start": 365, "end": 369, "id": 69, "annotation": null}, {"text": ",", "start": 370, "end": 371, "id": 70, "annotation": null}, {"text": "the", "start": 372, "end": 375, "id": 71, "annotation": null}, {"text": "last", "start": 376, "end": 380, "id": 72, "annotation": null}, {"text": "property", "start": 381, "end": 389, "id": 73, "annotation": null}, {"text": "being", "start": 390, "end": 395, "id": 74, "annotation": null}, {"text": "very", "start": 396, "end": 400, "id": 75, "annotation": null}, {"text": "important", "start": 401, "end": 410, "id": 76, "annotation": null}, {"text": "in", "start": 411, "end": 413, "id": 77, "annotation": null}, {"text": "the", "start": 414, "end": 417, "id": 78, "annotation": null}, {"text": "self", "start": 418, "end": 422, "id": 79, "annotation": null}, {"text": "cleaning", "start": 423, "end": 431, "id": 80, "annotation": null}, {"text": "applications", "start": 432, "end": 444, "id": 81, "annotation": null}, {"text": ".", "start": 445, "end": 446, "id": 82, "annotation": null}], [{"text": "For", "start": 447, "end": 450, "id": 83, "annotation": null}, {"text": "the", "start": 451, "end": 454, "id": 84, "annotation": null}, {"text": "chosen", "start": 455, "end": 461, "id": 85, "annotation": null}, {"text": "Cr", "start": 462, "end": 464, "id": 86, "annotation": null}, {"text": "concentrations", "start": 465, "end": 479, "id": 87, "annotation": null}, {"text": ",", "start": 480, "end": 481, "id": 88, "annotation": null}, {"text": "the", "start": 482, "end": 485, "id": 89, "annotation": null}, {"text": "films", "start": 486, "end": 491, "id": 90, "annotation": null}, {"text": "did", "start": 492, "end": 495, "id": 91, "annotation": null}, {"text": "not", "start": 496, "end": 499, "id": 92, "annotation": null}, {"text": "show", "start": 500, "end": 504, "id": 93, "annotation": null}, {"text": "promising", "start": 505, "end": 514, "id": 94, "annotation": null}, {"text": "hydrophilic", "start": 515, "end": 526, "id": 95, "annotation": null}, {"text": "properties", "start": 527, "end": 537, "id": 96, "annotation": null}, {"text": ".", "start": 538, "end": 539, "id": 97, "annotation": null}], [{"text": "To", "start": 540, "end": 542, "id": 98, "annotation": null}, {"text": "improve", "start": 543, "end": 550, "id": 99, "annotation": null}, {"text": "them", "start": 551, "end": 555, "id": 100, "annotation": null}, {"text": ",", "start": 556, "end": 557, "id": 101, "annotation": null}, {"text": "we", "start": 558, "end": 560, "id": 102, "annotation": null}, {"text": "have", "start": 561, "end": 565, "id": 103, "annotation": null}, {"text": "applied", "start": 566, "end": 573, "id": 104, "annotation": null}, {"text": "a", "start": 574, "end": 575, "id": 105, "annotation": null}, {"text": "novel", "start": 576, "end": 581, "id": 106, "annotation": null}, {"text": "surface", "start": 582, "end": 589, "id": 107, "annotation": null}, {"text": "modification", "start": 590, "end": 602, "id": 108, "annotation": null}, {"text": "method", "start": 603, "end": 609, "id": 109, "annotation": null}, {"text": ",", "start": 610, "end": 611, "id": 110, "annotation": null}, {"text": "reported", "start": 612, "end": 620, "id": 111, "annotation": null}, {"text": "in", "start": 621, "end": 623, "id": 112, "annotation": null}, {"text": "literature", "start": 624, "end": 634, "id": 113, "annotation": null}, {"text": "mainly", "start": 635, "end": 641, "id": 114, "annotation": null}, {"text": "for", "start": 642, "end": 645, "id": 115, "annotation": null}, {"text": "powders", "start": 646, "end": 653, "id": 116, "annotation": null}, {"text": ",", "start": 654, "end": 655, "id": 117, "annotation": null}, {"text": "namely", "start": 656, "end": 662, "id": 118, "annotation": null}, {"text": ",", "start": 663, "end": 664, "id": 119, "annotation": null}, {"text": "surface", "start": 665, "end": 672, "id": 120, "annotation": null}, {"text": "metallisation", "start": 673, "end": 686, "id": 121, "annotation": null}, {"text": ".", "start": 687, "end": 688, "id": 122, "annotation": null}], [{"text": "We", "start": 689, "end": 691, "id": 123, "annotation": null}, {"text": "have", "start": 692, "end": 696, "id": 124, "annotation": null}, {"text": "observed", "start": 697, "end": 705, "id": 125, "annotation": null}, {"text": "that", "start": 706, "end": 710, "id": 126, "annotation": null}, {"text": ",", "start": 711, "end": 712, "id": 127, "annotation": null}, {"text": "by", "start": 713, "end": 715, "id": 128, "annotation": null}, {"text": "depositing", "start": 716, "end": 726, "id": 129, "annotation": null}, {"text": "Pt", "start": 727, "end": 729, "id": 130, "annotation": null}, {"text": "islands", "start": 730, "end": 737, "id": 131, "annotation": null}, {"text": "on", "start": 738, "end": 740, "id": 132, "annotation": null}, {"text": "the", "start": 741, "end": 744, "id": 133, "annotation": null}, {"text": "film", "start": 745, "end": 749, "id": 134, "annotation": null}, {"text": "with", "start": 750, "end": 754, "id": 135, "annotation": null}, {"text": "the", "start": 755, "end": 758, "id": 136, "annotation": null}, {"text": "highest", "start": 759, "end": 766, "id": 137, "annotation": null}, {"text": "Cr", "start": 767, "end": 769, "id": 138, "annotation": null}, {"text": "content", "start": 770, "end": 777, "id": 139, "annotation": null}, {"text": ",", "start": 778, "end": 779, "id": 140, "annotation": null}, {"text": "its", "start": 780, "end": 783, "id": 141, "annotation": null}, {"text": "hydrophilic", "start": 784, "end": 795, "id": 142, "annotation": null}, {"text": "properties", "start": 796, "end": 806, "id": 143, "annotation": null}, {"text": "improve", "start": 807, "end": 814, "id": 144, "annotation": null}, {"text": "for", "start": 815, "end": 818, "id": 145, "annotation": null}, {"text": "a", "start": 819, "end": 820, "id": 146, "annotation": null}, {"text": "certain", "start": 821, "end": 828, "id": 147, "annotation": null}, {"text": "metal", "start": 829, "end": 834, "id": 148, "annotation": null}, {"text": "coverage", "start": 835, "end": 843, "id": 149, "annotation": null}, {"text": "area", "start": 844, "end": 848, "id": 150, "annotation": null}, {"text": ".", "start": 849, "end": 850, "id": 151, "annotation": null}], [{"text": "The", "start": 851, "end": 854, "id": 152, "annotation": null}, {"text": "explanation", "start": 855, "end": 866, "id": 153, "annotation": null}, {"text": "was", "start": 867, "end": 870, "id": 154, "annotation": null}, {"text": "based", "start": 871, "end": 876, "id": 155, "annotation": null}, {"text": "on", "start": 877, "end": 879, "id": 156, "annotation": null}, {"text": "FT", "start": 880, "end": 882, "id": 157, "annotation": null}, {"text": "-", "start": 883, "end": 884, "id": 158, "annotation": null}, {"text": "IR", "start": 885, "end": 887, "id": 159, "annotation": null}, {"text": "and", "start": 888, "end": 891, "id": 160, "annotation": null}, {"text": "X", "start": 892, "end": 893, "id": 161, "annotation": null}, {"text": "-", "start": 894, "end": 895, "id": 162, "annotation": null}, {"text": "ray", "start": 896, "end": 899, "id": 163, "annotation": null}, {"text": "photoelectron", "start": 900, "end": 913, "id": 164, "annotation": null}, {"text": "spectroscopy", "start": 914, "end": 926, "id": 165, "annotation": null}, {"text": "analysis", "start": 927, "end": 935, "id": 166, "annotation": null}, {"text": ",", "start": 936, "end": 937, "id": 167, "annotation": null}, {"text": "performed", "start": 938, "end": 947, "id": 168, "annotation": null}, {"text": "on", "start": 948, "end": 950, "id": 169, "annotation": null}, {"text": "the", "start": 951, "end": 954, "id": 170, "annotation": null}, {"text": "UV", "start": 955, "end": 957, "id": 171, "annotation": null}, {"text": "irradiated", "start": 958, "end": 968, "id": 172, "annotation": null}, {"text": "and", "start": 969, "end": 972, "id": 173, "annotation": null}, {"text": "non", "start": 973, "end": 976, "id": 174, "annotation": null}, {"text": "-", "start": 977, "end": 978, "id": 175, "annotation": null}, {"text": "irradiated", "start": 979, "end": 989, "id": 176, "annotation": null}, {"text": "films", "start": 990, "end": 995, "id": 177, "annotation": null}, {"text": ",", "start": 996, "end": 997, "id": 178, "annotation": null}, {"text": "which", "start": 998, "end": 1003, "id": 179, "annotation": null}, {"text": "gives", "start": 1004, "end": 1009, "id": 180, "annotation": null}, {"text": "information", "start": 1010, "end": 1021, "id": 181, "annotation": null}, {"text": "on", "start": 1022, "end": 1024, "id": 182, "annotation": null}, {"text": "the", "start": 1025, "end": 1028, "id": 183, "annotation": null}, {"text": "relationship", "start": 1029, "end": 1041, "id": 184, "annotation": null}, {"text": "between", "start": 1042, "end": 1049, "id": 185, "annotation": null}, {"text": "hydrophilicity", "start": 1050, "end": 1064, "id": 186, "annotation": null}, {"text": "and", "start": 1065, "end": 1068, "id": 187, "annotation": null}, {"text": "the", "start": 1069, "end": 1072, "id": 188, "annotation": null}, {"text": "amount", "start": 1073, "end": 1079, "id": 189, "annotation": null}, {"text": "of", "start": 1080, "end": 1082, "id": 190, "annotation": null}, {"text": "the", "start": 1083, "end": 1086, "id": 191, "annotation": null}, {"text": "adsorbed", "start": 1087, "end": 1095, "id": 192, "annotation": null}, {"text": "hydroxyl", "start": 1096, "end": 1104, "id": 193, "annotation": null}, {"text": "groups", "start": 1105, "end": 1111, "id": 194, "annotation": null}, {"text": ".", "start": 1112, "end": 1113, "id": 195, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Eu-doped aluminum nitride phosphors were successfully prepared using simple direct nitridation of a metallic aluminum and Eu2O3 powder mixture in flowing ammonia. AlN formed at reaction temperatures >900\u00b0C, and Eu3+ transformed into the secondary oxide phase EuAl2O4 in the nitridation condition. Phase pure AlN was obtained by post-heat treatment of the nitridated product at 1600\u00b0C for 3\u00a0h in a nitrogen atmosphere, with an Eu2+ doping concentration\u00a0<\u00a00.5%. The phosphors exhibited broad green emission centered at 521\u00a0nm under 363\u00a0nm excitation. The luminescence of the phosphor was significantly influenced by the post-heat treatment temperature, which affected the dissolution of Eu2+, phase purity, crystallinity, and particle size of the AlN host.", "meta": {"doi": "10.1002/bio.3282"}, "_input_hash": 1050203337, "_task_hash": 756237190, "tokens": [[{"text": "Eu", "start": 46, "end": 48, "id": 11, "annotation": "DOPANT"}, {"text": "-", "start": 49, "end": 50, "id": 12, "annotation": null}, {"text": "doped", "start": 51, "end": 56, "id": 13, "annotation": null}, {"text": "aluminum", "start": 57, "end": 65, "id": 14, "annotation": "BASEMAT"}, {"text": "nitride", "start": 66, "end": 73, "id": 15, "annotation": "BASEMAT"}, {"text": "phosphors", "start": 74, "end": 83, "id": 16, "annotation": null}, {"text": "were", "start": 84, "end": 88, "id": 17, "annotation": null}, {"text": "successfully", "start": 89, "end": 101, "id": 18, "annotation": null}, {"text": "prepared", "start": 102, "end": 110, "id": 19, "annotation": null}, {"text": "using", "start": 111, "end": 116, "id": 20, "annotation": null}, {"text": "simple", "start": 117, "end": 123, "id": 21, "annotation": null}, {"text": "direct", "start": 124, "end": 130, "id": 22, "annotation": null}, {"text": "nitridation", "start": 131, "end": 142, "id": 23, "annotation": null}, {"text": "of", "start": 143, "end": 145, "id": 24, "annotation": null}, {"text": "a", "start": 146, "end": 147, "id": 25, "annotation": null}, {"text": "metallic", "start": 148, "end": 156, "id": 26, "annotation": null}, {"text": "aluminum", "start": 157, "end": 165, "id": 27, "annotation": null}, {"text": "and", "start": 166, "end": 169, "id": 28, "annotation": null}, {"text": "Eu2O3", "start": 170, "end": 175, "id": 29, "annotation": null}, {"text": "powder", "start": 176, "end": 182, "id": 30, "annotation": null}, {"text": "mixture", "start": 183, "end": 190, "id": 31, "annotation": null}, {"text": "in", "start": 191, "end": 193, "id": 32, "annotation": null}, {"text": "flowing", "start": 194, "end": 201, "id": 33, "annotation": null}, {"text": "ammonia", "start": 202, "end": 209, "id": 34, "annotation": null}, {"text": ".", "start": 210, "end": 211, "id": 35, "annotation": null}], [{"text": "AlN", "start": 212, "end": 215, "id": 36, "annotation": null}, {"text": "formed", "start": 216, "end": 222, "id": 37, "annotation": null}, {"text": "at", "start": 223, "end": 225, "id": 38, "annotation": null}, {"text": "reaction", "start": 226, "end": 234, "id": 39, "annotation": null}, {"text": "temperatures", "start": 235, "end": 247, "id": 40, "annotation": null}, {"text": ">", "start": 248, "end": 249, "id": 41, "annotation": null}, {"text": "900", "start": 250, "end": 253, "id": 42, "annotation": null}, {"text": "\u00b0", "start": 254, "end": 255, "id": 43, "annotation": null}, {"text": "C", "start": 256, "end": 257, "id": 44, "annotation": null}, {"text": ",", "start": 258, "end": 259, "id": 45, "annotation": null}, {"text": "and", "start": 260, "end": 263, "id": 46, "annotation": null}, {"text": "Eu3", "start": 264, "end": 267, "id": 47, "annotation": null}, {"text": "+", "start": 268, "end": 269, "id": 48, "annotation": null}, {"text": "transformed", "start": 270, "end": 281, "id": 49, "annotation": null}, {"text": "into", "start": 282, "end": 286, "id": 50, "annotation": null}, {"text": "the", "start": 287, "end": 290, "id": 51, "annotation": null}, {"text": "secondary", "start": 291, "end": 300, "id": 52, "annotation": null}, {"text": "oxide", "start": 301, "end": 306, "id": 53, "annotation": null}, {"text": "phase", "start": 307, "end": 312, "id": 54, "annotation": null}, {"text": "EuAl2O4", "start": 313, "end": 320, "id": 55, "annotation": null}, {"text": "in", "start": 321, "end": 323, "id": 56, "annotation": null}, {"text": "the", "start": 324, "end": 327, "id": 57, "annotation": null}, {"text": "nitridation", "start": 328, "end": 339, "id": 58, "annotation": null}, {"text": "condition", "start": 340, "end": 349, "id": 59, "annotation": null}, {"text": ".", "start": 350, "end": 351, "id": 60, "annotation": null}], [{"text": "Phase", "start": 352, "end": 357, "id": 61, "annotation": null}, {"text": "pure", "start": 358, "end": 362, "id": 62, "annotation": null}, {"text": "AlN", "start": 363, "end": 366, "id": 63, "annotation": "BASEMAT"}, {"text": "was", "start": 367, "end": 370, "id": 64, "annotation": null}, {"text": "obtained", "start": 371, "end": 379, "id": 65, "annotation": null}, {"text": "by", "start": 380, "end": 382, "id": 66, "annotation": null}, {"text": "post", "start": 383, "end": 387, "id": 67, "annotation": null}, {"text": "-", "start": 388, "end": 389, "id": 68, "annotation": null}, {"text": "heat", "start": 390, "end": 394, "id": 69, "annotation": null}, {"text": "treatment", "start": 395, "end": 404, "id": 70, "annotation": null}, {"text": "of", "start": 405, "end": 407, "id": 71, "annotation": null}, {"text": "the", "start": 408, "end": 411, "id": 72, "annotation": null}, {"text": "nitridated", "start": 412, "end": 422, "id": 73, "annotation": null}, {"text": "product", "start": 423, "end": 430, "id": 74, "annotation": null}, {"text": "at", "start": 431, "end": 433, "id": 75, "annotation": null}, {"text": "1600", "start": 434, "end": 438, "id": 76, "annotation": null}, {"text": "\u00b0", "start": 439, "end": 440, "id": 77, "annotation": null}, {"text": "C", "start": 441, "end": 442, "id": 78, "annotation": null}, {"text": "for", "start": 443, "end": 446, "id": 79, "annotation": null}, {"text": "3", "start": 447, "end": 448, "id": 80, "annotation": null}, {"text": "h", "start": 449, "end": 450, "id": 82, "annotation": null}, {"text": "in", "start": 451, "end": 453, "id": 83, "annotation": null}, {"text": "a", "start": 454, "end": 455, "id": 84, "annotation": null}, {"text": "nitrogen", "start": 456, "end": 464, "id": 85, "annotation": null}, {"text": "atmosphere", "start": 465, "end": 475, "id": 86, "annotation": null}, {"text": ",", "start": 476, "end": 477, "id": 87, "annotation": null}, {"text": "with", "start": 478, "end": 482, "id": 88, "annotation": null}, {"text": "an", "start": 483, "end": 485, "id": 89, "annotation": null}, {"text": "Eu2", "start": 486, "end": 489, "id": 90, "annotation": "DOPANT"}, {"text": "+", "start": 490, "end": 491, "id": 91, "annotation": "DOPANT"}, {"text": "doping", "start": 492, "end": 498, "id": 92, "annotation": null}, {"text": "concentration", "start": 499, "end": 512, "id": 93, "annotation": null}, {"text": "<", "start": 513, "end": 514, "id": 95, "annotation": "DOPMODQ"}, {"text": "0.5", "start": 515, "end": 518, "id": 97, "annotation": null}, {"text": "%", "start": 519, "end": 520, "id": 98, "annotation": "DOPMODQ"}, {"text": ".", "start": 521, "end": 522, "id": 99, "annotation": null}], [{"text": "The", "start": 523, "end": 526, "id": 100, "annotation": null}, {"text": "phosphors", "start": 527, "end": 536, "id": 101, "annotation": null}, {"text": "exhibited", "start": 537, "end": 546, "id": 102, "annotation": null}, {"text": "broad", "start": 547, "end": 552, "id": 103, "annotation": null}, {"text": "green", "start": 553, "end": 558, "id": 104, "annotation": null}, {"text": "emission", "start": 559, "end": 567, "id": 105, "annotation": null}, {"text": "centered", "start": 568, "end": 576, "id": 106, "annotation": null}, {"text": "at", "start": 577, "end": 579, "id": 107, "annotation": null}, {"text": "521", "start": 580, "end": 583, "id": 108, "annotation": null}, {"text": "nm", "start": 584, "end": 586, "id": 110, "annotation": null}, {"text": "under", "start": 587, "end": 592, "id": 111, "annotation": null}, {"text": "363", "start": 593, "end": 596, "id": 112, "annotation": null}, {"text": "nm", "start": 597, "end": 599, "id": 114, "annotation": null}, {"text": "excitation", "start": 600, "end": 610, "id": 115, "annotation": null}, {"text": ".", "start": 611, "end": 612, "id": 116, "annotation": null}], [{"text": "The", "start": 613, "end": 616, "id": 117, "annotation": null}, {"text": "luminescence", "start": 617, "end": 629, "id": 118, "annotation": null}, {"text": "of", "start": 630, "end": 632, "id": 119, "annotation": null}, {"text": "the", "start": 633, "end": 636, "id": 120, "annotation": null}, {"text": "phosphor", "start": 637, "end": 645, "id": 121, "annotation": null}, {"text": "was", "start": 646, "end": 649, "id": 122, "annotation": null}, {"text": "significantly", "start": 650, "end": 663, "id": 123, "annotation": null}, {"text": "influenced", "start": 664, "end": 674, "id": 124, "annotation": null}, {"text": "by", "start": 675, "end": 677, "id": 125, "annotation": null}, {"text": "the", "start": 678, "end": 681, "id": 126, "annotation": null}, {"text": "post", "start": 682, "end": 686, "id": 127, "annotation": null}, {"text": "-", "start": 687, "end": 688, "id": 128, "annotation": null}, {"text": "heat", "start": 689, "end": 693, "id": 129, "annotation": null}, {"text": "treatment", "start": 694, "end": 703, "id": 130, "annotation": null}, {"text": "temperature", "start": 704, "end": 715, "id": 131, "annotation": null}, {"text": ",", "start": 716, "end": 717, "id": 132, "annotation": null}, {"text": "which", "start": 718, "end": 723, "id": 133, "annotation": null}, {"text": "affected", "start": 724, "end": 732, "id": 134, "annotation": null}, {"text": "the", "start": 733, "end": 736, "id": 135, "annotation": null}, {"text": "dissolution", "start": 737, "end": 748, "id": 136, "annotation": null}, {"text": "of", "start": 749, "end": 751, "id": 137, "annotation": null}, {"text": "Eu2", "start": 752, "end": 755, "id": 138, "annotation": null}, {"text": "+", "start": 756, "end": 757, "id": 139, "annotation": null}, {"text": ",", "start": 758, "end": 759, "id": 140, "annotation": null}, {"text": "phase", "start": 760, "end": 765, "id": 141, "annotation": null}, {"text": "purity", "start": 766, "end": 772, "id": 142, "annotation": null}, {"text": ",", "start": 773, "end": 774, "id": 143, "annotation": null}, {"text": "crystallinity", "start": 775, "end": 788, "id": 144, "annotation": null}, {"text": ",", "start": 789, "end": 790, "id": 145, "annotation": null}, {"text": "and", "start": 791, "end": 794, "id": 146, "annotation": null}, {"text": "particle", "start": 795, "end": 803, "id": 147, "annotation": null}, {"text": "size", "start": 804, "end": 808, "id": 148, "annotation": null}, {"text": "of", "start": 809, "end": 811, "id": 149, "annotation": null}, {"text": "the", "start": 812, "end": 815, "id": 150, "annotation": null}, {"text": "AlN", "start": 816, "end": 819, "id": 151, "annotation": null}, {"text": "host", "start": 820, "end": 824, "id": 152, "annotation": null}, {"text": ".", "start": 825, "end": 826, "id": 153, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Dislocation generation in the initial stage of Czochralski-grown Si crystals doped with B in various concentrations was observed by means of X-ray topography. Slip dislocations were generated due to the thermal stress at the dipping stage in the seed and in a crystal doped with B in the concentration lower than 1\u00d71018 cm\u22123. Misfit dislocations were generated and penetrated into the crystal when the difference of B concentration between the seed and crystal was higher than \u22488\u00d71018 cm\u22123.", "meta": {"doi": "10.1016/S0921-5107(01)00991-6"}, "_input_hash": 858875985, "_task_hash": 2124999163, "tokens": [[{"text": "Dislocation", "start": 0, "end": 11, "id": 0, "annotation": null}, {"text": "generation", "start": 12, "end": 22, "id": 1, "annotation": null}, {"text": "in", "start": 23, "end": 25, "id": 2, "annotation": null}, {"text": "the", "start": 26, "end": 29, "id": 3, "annotation": null}, {"text": "initial", "start": 30, "end": 37, "id": 4, "annotation": null}, {"text": "stage", "start": 38, "end": 43, "id": 5, "annotation": null}, {"text": "of", "start": 44, "end": 46, "id": 6, "annotation": null}, {"text": "Czochralski", "start": 47, "end": 58, "id": 7, "annotation": null}, {"text": "-", "start": 59, "end": 60, "id": 8, "annotation": null}, {"text": "grown", "start": 61, "end": 66, "id": 9, "annotation": null}, {"text": "Si", "start": 67, "end": 69, "id": 10, "annotation": "BASEMAT"}, {"text": "crystals", "start": 70, "end": 78, "id": 11, "annotation": null}, {"text": "doped", "start": 79, "end": 84, "id": 12, "annotation": null}, {"text": "with", "start": 85, "end": 89, "id": 13, "annotation": null}, {"text": "B", "start": 90, "end": 91, "id": 14, "annotation": "DOPANT"}, {"text": "in", "start": 92, "end": 94, "id": 15, "annotation": null}, {"text": "various", "start": 95, "end": 102, "id": 16, "annotation": null}, {"text": "concentrations", "start": 103, "end": 117, "id": 17, "annotation": null}, {"text": "was", "start": 118, "end": 121, "id": 18, "annotation": null}, {"text": "observed", "start": 122, "end": 130, "id": 19, "annotation": null}, {"text": "by", "start": 131, "end": 133, "id": 20, "annotation": null}, {"text": "means", "start": 134, "end": 139, "id": 21, "annotation": null}, {"text": "of", "start": 140, "end": 142, "id": 22, "annotation": null}, {"text": "X", "start": 143, "end": 144, "id": 23, "annotation": null}, {"text": "-", "start": 145, "end": 146, "id": 24, "annotation": null}, {"text": "ray", "start": 147, "end": 150, "id": 25, "annotation": null}, {"text": "topography", "start": 151, "end": 161, "id": 26, "annotation": null}, {"text": ".", "start": 162, "end": 163, "id": 27, "annotation": null}], [{"text": "Slip", "start": 164, "end": 168, "id": 28, "annotation": null}, {"text": "dislocations", "start": 169, "end": 181, "id": 29, "annotation": null}, {"text": "were", "start": 182, "end": 186, "id": 30, "annotation": null}, {"text": "generated", "start": 187, "end": 196, "id": 31, "annotation": null}, {"text": "due", "start": 197, "end": 200, "id": 32, "annotation": null}, {"text": "to", "start": 201, "end": 203, "id": 33, "annotation": null}, {"text": "the", "start": 204, "end": 207, "id": 34, "annotation": null}, {"text": "thermal", "start": 208, "end": 215, "id": 35, "annotation": null}, {"text": "stress", "start": 216, "end": 222, "id": 36, "annotation": null}, {"text": "at", "start": 223, "end": 225, "id": 37, "annotation": null}, {"text": "the", "start": 226, "end": 229, "id": 38, "annotation": null}, {"text": "dipping", "start": 230, "end": 237, "id": 39, "annotation": null}, {"text": "stage", "start": 238, "end": 243, "id": 40, "annotation": null}, {"text": "in", "start": 244, "end": 246, "id": 41, "annotation": null}, {"text": "the", "start": 247, "end": 250, "id": 42, "annotation": null}, {"text": "seed", "start": 251, "end": 255, "id": 43, "annotation": null}, {"text": "and", "start": 256, "end": 259, "id": 44, "annotation": null}, {"text": "in", "start": 260, "end": 262, "id": 45, "annotation": null}, {"text": "a", "start": 263, "end": 264, "id": 46, "annotation": null}, {"text": "crystal", "start": 265, "end": 272, "id": 47, "annotation": "BASEMAT"}, {"text": "doped", "start": 273, "end": 278, "id": 48, "annotation": null}, {"text": "with", "start": 279, "end": 283, "id": 49, "annotation": null}, {"text": "B", "start": 284, "end": 285, "id": 50, "annotation": "DOPANT"}, {"text": "in", "start": 286, "end": 288, "id": 51, "annotation": null}, {"text": "the", "start": 289, "end": 292, "id": 52, "annotation": null}, {"text": "concentration", "start": 293, "end": 306, "id": 53, "annotation": null}, {"text": "lower", "start": 307, "end": 312, "id": 54, "annotation": "DOPMODQ"}, {"text": "than", "start": 313, "end": 317, "id": 55, "annotation": null}, {"text": "1\u00d71018", "start": 318, "end": 324, "id": 56, "annotation": null}, {"text": "cm\u22123", "start": 325, "end": 329, "id": 57, "annotation": "DOPMODQ"}, {"text": ".", "start": 330, "end": 331, "id": 58, "annotation": null}], [{"text": "Misfit", "start": 332, "end": 338, "id": 59, "annotation": null}, {"text": "dislocations", "start": 339, "end": 351, "id": 60, "annotation": null}, {"text": "were", "start": 352, "end": 356, "id": 61, "annotation": null}, {"text": "generated", "start": 357, "end": 366, "id": 62, "annotation": null}, {"text": "and", "start": 367, "end": 370, "id": 63, "annotation": null}, {"text": "penetrated", "start": 371, "end": 381, "id": 64, "annotation": null}, {"text": "into", "start": 382, "end": 386, "id": 65, "annotation": null}, {"text": "the", "start": 387, "end": 390, "id": 66, "annotation": null}, {"text": "crystal", "start": 391, "end": 398, "id": 67, "annotation": null}, {"text": "when", "start": 399, "end": 403, "id": 68, "annotation": null}, {"text": "the", "start": 404, "end": 407, "id": 69, "annotation": null}, {"text": "difference", "start": 408, "end": 418, "id": 70, "annotation": null}, {"text": "of", "start": 419, "end": 421, "id": 71, "annotation": null}, {"text": "B", "start": 422, "end": 423, "id": 72, "annotation": "DOPANT"}, {"text": "concentration", "start": 424, "end": 437, "id": 73, "annotation": null}, {"text": "between", "start": 438, "end": 445, "id": 74, "annotation": null}, {"text": "the", "start": 446, "end": 449, "id": 75, "annotation": null}, {"text": "seed", "start": 450, "end": 454, "id": 76, "annotation": null}, {"text": "and", "start": 455, "end": 458, "id": 77, "annotation": null}, {"text": "crystal", "start": 459, "end": 466, "id": 78, "annotation": null}, {"text": "was", "start": 467, "end": 470, "id": 79, "annotation": null}, {"text": "higher", "start": 471, "end": 477, "id": 80, "annotation": "DOPMODQ"}, {"text": "than", "start": 478, "end": 482, "id": 81, "annotation": null}, {"text": "\u22488\u00d71018", "start": 483, "end": 490, "id": 82, "annotation": null}, {"text": "cm\u22123", "start": 491, "end": 495, "id": 83, "annotation": "DOPMODQ"}, {"text": ".", "start": 496, "end": 497, "id": 84, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Simultaneous enhancement of the interdependent Seebeck coefficient and electrical conductivity has been achieved through defect engineering by doping Mg into specific sites of Na 0.8CoO 2. Results from thermoelectric measurement demonstrate that the power factor was substantially increased by 50% at ambient. Experimental and theoretical analyses show that the occupation of divalent Mg in the disordered Na layer immobilizes the Na ions and thus induces a long-range ordering of Na ions. This phenomenon improves the carrier mobility significantly, giving rise to the observed exotic thermoelectric performance. Moreover, it is predicted that other electronically closed-shell dopants in sodium cobaltate play a similar role in enhancing the thermoelectric conversion efficiency.", "meta": {"doi": "10.1021/jp209343v"}, "_input_hash": -994117667, "_task_hash": -292568986, "tokens": [[{"text": "Simultaneous", "start": 0, "end": 12, "id": 0, "annotation": null}, {"text": "enhancement", "start": 13, "end": 24, "id": 1, "annotation": null}, {"text": "of", "start": 25, "end": 27, "id": 2, "annotation": null}, {"text": "the", "start": 28, "end": 31, "id": 3, "annotation": null}, {"text": "interdependent", "start": 32, "end": 46, "id": 4, "annotation": null}, {"text": "Seebeck", "start": 47, "end": 54, "id": 5, "annotation": null}, {"text": "coefficient", "start": 55, "end": 66, "id": 6, "annotation": null}, {"text": "and", "start": 67, "end": 70, "id": 7, "annotation": null}, {"text": "electrical", "start": 71, "end": 81, "id": 8, "annotation": null}, {"text": "conductivity", "start": 82, "end": 94, "id": 9, "annotation": null}, {"text": "has", "start": 95, "end": 98, "id": 10, "annotation": null}, {"text": "been", "start": 99, "end": 103, "id": 11, "annotation": null}, {"text": "achieved", "start": 104, "end": 112, "id": 12, "annotation": null}, {"text": "through", "start": 113, "end": 120, "id": 13, "annotation": null}, {"text": "defect", "start": 121, "end": 127, "id": 14, "annotation": null}, {"text": "engineering", "start": 128, "end": 139, "id": 15, "annotation": null}, {"text": "by", "start": 140, "end": 142, "id": 16, "annotation": null}, {"text": "doping", "start": 143, "end": 149, "id": 17, "annotation": null}, {"text": "Mg", "start": 150, "end": 152, "id": 18, "annotation": "DOPANT"}, {"text": "into", "start": 153, "end": 157, "id": 19, "annotation": null}, {"text": "specific", "start": 158, "end": 166, "id": 20, "annotation": null}, {"text": "sites", "start": 167, "end": 172, "id": 21, "annotation": null}, {"text": "of", "start": 173, "end": 175, "id": 22, "annotation": null}, {"text": "Na", "start": 176, "end": 178, "id": 23, "annotation": "BASEMAT"}, {"text": "0.8CoO", "start": 179, "end": 185, "id": 24, "annotation": "BASEMAT"}, {"text": "2", "start": 186, "end": 187, "id": 25, "annotation": "BASEMAT"}, {"text": ".", "start": 188, "end": 189, "id": 26, "annotation": null}], [{"text": "Results", "start": 190, "end": 197, "id": 27, "annotation": null}, {"text": "from", "start": 198, "end": 202, "id": 28, "annotation": null}, {"text": "thermoelectric", "start": 203, "end": 217, "id": 29, "annotation": null}, {"text": "measurement", "start": 218, "end": 229, "id": 30, "annotation": null}, {"text": "demonstrate", "start": 230, "end": 241, "id": 31, "annotation": null}, {"text": "that", "start": 242, "end": 246, "id": 32, "annotation": null}, {"text": "the", "start": 247, "end": 250, "id": 33, "annotation": null}, {"text": "power", "start": 251, "end": 256, "id": 34, "annotation": null}, {"text": "factor", "start": 257, "end": 263, "id": 35, "annotation": null}, {"text": "was", "start": 264, "end": 267, "id": 36, "annotation": null}, {"text": "substantially", "start": 268, "end": 281, "id": 37, "annotation": null}, {"text": "increased", "start": 282, "end": 291, "id": 38, "annotation": null}, {"text": "by", "start": 292, "end": 294, "id": 39, "annotation": null}, {"text": "50", "start": 295, "end": 297, "id": 40, "annotation": null}, {"text": "%", "start": 298, "end": 299, "id": 41, "annotation": null}, {"text": "at", "start": 300, "end": 302, "id": 42, "annotation": null}, {"text": "ambient", "start": 303, "end": 310, "id": 43, "annotation": null}, {"text": ".", "start": 311, "end": 312, "id": 44, "annotation": null}], [{"text": "Experimental", "start": 313, "end": 325, "id": 45, "annotation": null}, {"text": "and", "start": 326, "end": 329, "id": 46, "annotation": null}, {"text": "theoretical", "start": 330, "end": 341, "id": 47, "annotation": null}, {"text": "analyses", "start": 342, "end": 350, "id": 48, "annotation": null}, {"text": "show", "start": 351, "end": 355, "id": 49, "annotation": null}, {"text": "that", "start": 356, "end": 360, "id": 50, "annotation": null}, {"text": "the", "start": 361, "end": 364, "id": 51, "annotation": null}, {"text": "occupation", "start": 365, "end": 375, "id": 52, "annotation": null}, {"text": "of", "start": 376, "end": 378, "id": 53, "annotation": null}, {"text": "divalent", "start": 379, "end": 387, "id": 54, "annotation": null}, {"text": "Mg", "start": 388, "end": 390, "id": 55, "annotation": null}, {"text": "in", "start": 391, "end": 393, "id": 56, "annotation": null}, {"text": "the", "start": 394, "end": 397, "id": 57, "annotation": null}, {"text": "disordered", "start": 398, "end": 408, "id": 58, "annotation": null}, {"text": "Na", "start": 409, "end": 411, "id": 59, "annotation": null}, {"text": "layer", "start": 412, "end": 417, "id": 60, "annotation": null}, {"text": "immobilizes", "start": 418, "end": 429, "id": 61, "annotation": null}, {"text": "the", "start": 430, "end": 433, "id": 62, "annotation": null}, {"text": "Na", "start": 434, "end": 436, "id": 63, "annotation": null}, {"text": "ions", "start": 437, "end": 441, "id": 64, "annotation": null}, {"text": "and", "start": 442, "end": 445, "id": 65, "annotation": null}, {"text": "thus", "start": 446, "end": 450, "id": 66, "annotation": null}, {"text": "induces", "start": 451, "end": 458, "id": 67, "annotation": null}, {"text": "a", "start": 459, "end": 460, "id": 68, "annotation": null}, {"text": "long", "start": 461, "end": 465, "id": 69, "annotation": null}, {"text": "-", "start": 466, "end": 467, "id": 70, "annotation": null}, {"text": "range", "start": 468, "end": 473, "id": 71, "annotation": null}, {"text": "ordering", "start": 474, "end": 482, "id": 72, "annotation": null}, {"text": "of", "start": 483, "end": 485, "id": 73, "annotation": null}, {"text": "Na", "start": 486, "end": 488, "id": 74, "annotation": null}, {"text": "ions", "start": 489, "end": 493, "id": 75, "annotation": null}, {"text": ".", "start": 494, "end": 495, "id": 76, "annotation": null}], [{"text": "This", "start": 496, "end": 500, "id": 77, "annotation": null}, {"text": "phenomenon", "start": 501, "end": 511, "id": 78, "annotation": null}, {"text": "improves", "start": 512, "end": 520, "id": 79, "annotation": null}, {"text": "the", "start": 521, "end": 524, "id": 80, "annotation": null}, {"text": "carrier", "start": 525, "end": 532, "id": 81, "annotation": null}, {"text": "mobility", "start": 533, "end": 541, "id": 82, "annotation": null}, {"text": "significantly", "start": 542, "end": 555, "id": 83, "annotation": null}, {"text": ",", "start": 556, "end": 557, "id": 84, "annotation": null}, {"text": "giving", "start": 558, "end": 564, "id": 85, "annotation": null}, {"text": "rise", "start": 565, "end": 569, "id": 86, "annotation": null}, {"text": "to", "start": 570, "end": 572, "id": 87, "annotation": null}, {"text": "the", "start": 573, "end": 576, "id": 88, "annotation": null}, {"text": "observed", "start": 577, "end": 585, "id": 89, "annotation": null}, {"text": "exotic", "start": 586, "end": 592, "id": 90, "annotation": null}, {"text": "thermoelectric", "start": 593, "end": 607, "id": 91, "annotation": null}, {"text": "performance", "start": 608, "end": 619, "id": 92, "annotation": null}, {"text": ".", "start": 620, "end": 621, "id": 93, "annotation": null}], [{"text": "Moreover", "start": 622, "end": 630, "id": 94, "annotation": null}, {"text": ",", "start": 631, "end": 632, "id": 95, "annotation": null}, {"text": "it", "start": 633, "end": 635, "id": 96, "annotation": null}, {"text": "is", "start": 636, "end": 638, "id": 97, "annotation": null}, {"text": "predicted", "start": 639, "end": 648, "id": 98, "annotation": null}, {"text": "that", "start": 649, "end": 653, "id": 99, "annotation": null}, {"text": "other", "start": 654, "end": 659, "id": 100, "annotation": null}, {"text": "electronically", "start": 660, "end": 674, "id": 101, "annotation": null}, {"text": "closed", "start": 675, "end": 681, "id": 102, "annotation": null}, {"text": "-", "start": 682, "end": 683, "id": 103, "annotation": null}, {"text": "shell", "start": 684, "end": 689, "id": 104, "annotation": null}, {"text": "dopants", "start": 690, "end": 697, "id": 105, "annotation": null}, {"text": "in", "start": 698, "end": 700, "id": 106, "annotation": null}, {"text": "sodium", "start": 701, "end": 707, "id": 107, "annotation": "BASEMAT"}, {"text": "cobaltate", "start": 708, "end": 717, "id": 108, "annotation": "BASEMAT"}, {"text": "play", "start": 718, "end": 722, "id": 109, "annotation": null}, {"text": "a", "start": 723, "end": 724, "id": 110, "annotation": null}, {"text": "similar", "start": 725, "end": 732, "id": 111, "annotation": null}, {"text": "role", "start": 733, "end": 737, "id": 112, "annotation": null}, {"text": "in", "start": 738, "end": 740, "id": 113, "annotation": null}, {"text": "enhancing", "start": 741, "end": 750, "id": 114, "annotation": null}, {"text": "the", "start": 751, "end": 754, "id": 115, "annotation": null}, {"text": "thermoelectric", "start": 755, "end": 769, "id": 116, "annotation": null}, {"text": "conversion", "start": 770, "end": 780, "id": 117, "annotation": null}, {"text": "efficiency", "start": 781, "end": 791, "id": 118, "annotation": null}, {"text": ".", "start": 792, "end": 793, "id": 119, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "In this paper, we have investigated the hydrophilic properties of the titania films doped with increasing chromium percentages (from 2.1 at.% till 4.0 at.%). Cr-doping induces an increase in the rutile weight %, a more compact structure, and a significant red shift of the TiO2 absorption edge, the last property being very important in the self cleaning applications. For the chosen Cr concentrations, the films did not show promising hydrophilic properties. To improve them, we have applied a novel surface modification method, reported in literature mainly for powders, namely, surface metallisation. We have observed that, by depositing Pt islands on the film with the highest Cr content, its hydrophilic properties improve for a certain metal coverage area. The explanation was based on FT-IR and X-ray photoelectron spectroscopy analysis, performed on the UV irradiated and non-irradiated films, which gives information on the relationship between hydrophilicity and the amount of the adsorbed hydroxyl groups.", "meta": {"doi": "10.1080/14786435.2016.1222085"}, "_input_hash": -518042192, "_task_hash": -1530504591, "tokens": [[{"text": "In", "start": 68, "end": 70, "id": 15, "annotation": null}, {"text": "this", "start": 71, "end": 75, "id": 16, "annotation": null}, {"text": "paper", "start": 76, "end": 81, "id": 17, "annotation": null}, {"text": ",", "start": 82, "end": 83, "id": 18, "annotation": null}, {"text": "we", "start": 84, "end": 86, "id": 19, "annotation": null}, {"text": "have", "start": 87, "end": 91, "id": 20, "annotation": null}, {"text": "investigated", "start": 92, "end": 104, "id": 21, "annotation": null}, {"text": "the", "start": 105, "end": 108, "id": 22, "annotation": null}, {"text": "hydrophilic", "start": 109, "end": 120, "id": 23, "annotation": null}, {"text": "properties", "start": 121, "end": 131, "id": 24, "annotation": null}, {"text": "of", "start": 132, "end": 134, "id": 25, "annotation": null}, {"text": "the", "start": 135, "end": 138, "id": 26, "annotation": null}, {"text": "titania", "start": 139, "end": 146, "id": 27, "annotation": "BASEMAT"}, {"text": "films", "start": 147, "end": 152, "id": 28, "annotation": null}, {"text": "doped", "start": 153, "end": 158, "id": 29, "annotation": null}, {"text": "with", "start": 159, "end": 163, "id": 30, "annotation": null}, {"text": "increasing", "start": 164, "end": 174, "id": 31, "annotation": null}, {"text": "chromium", "start": 175, "end": 183, "id": 32, "annotation": "DOPANT"}, {"text": "percentages", "start": 184, "end": 195, "id": 33, "annotation": null}, {"text": "(", "start": 196, "end": 197, "id": 34, "annotation": null}, {"text": "from", "start": 198, "end": 202, "id": 35, "annotation": "DOPMODQ"}, {"text": "2.1", "start": 203, "end": 206, "id": 36, "annotation": "DOPMODQ"}, {"text": "at.%", "start": 207, "end": 211, "id": 37, "annotation": "DOPMODQ"}, {"text": "till", "start": 212, "end": 216, "id": 38, "annotation": "DOPMODQ"}, {"text": "4.0", "start": 217, "end": 220, "id": 39, "annotation": "DOPMODQ"}, {"text": "at.%", "start": 221, "end": 225, "id": 40, "annotation": "DOPMODQ"}, {"text": ")", "start": 226, "end": 227, "id": 41, "annotation": null}, {"text": ".", "start": 228, "end": 229, "id": 42, "annotation": null}], [{"text": "Cr", "start": 230, "end": 232, "id": 43, "annotation": "DOPANT"}, {"text": "-", "start": 233, "end": 234, "id": 44, "annotation": null}, {"text": "doping", "start": 235, "end": 241, "id": 45, "annotation": null}, {"text": "induces", "start": 242, "end": 249, "id": 46, "annotation": null}, {"text": "an", "start": 250, "end": 252, "id": 47, "annotation": null}, {"text": "increase", "start": 253, "end": 261, "id": 48, "annotation": null}, {"text": "in", "start": 262, "end": 264, "id": 49, "annotation": null}, {"text": "the", "start": 265, "end": 268, "id": 50, "annotation": null}, {"text": "rutile", "start": 269, "end": 275, "id": 51, "annotation": null}, {"text": "weight", "start": 276, "end": 282, "id": 52, "annotation": null}, {"text": "%", "start": 283, "end": 284, "id": 53, "annotation": null}, {"text": ",", "start": 285, "end": 286, "id": 54, "annotation": null}, {"text": "a", "start": 287, "end": 288, "id": 55, "annotation": null}, {"text": "more", "start": 289, "end": 293, "id": 56, "annotation": null}, {"text": "compact", "start": 294, "end": 301, "id": 57, "annotation": null}, {"text": "structure", "start": 302, "end": 311, "id": 58, "annotation": null}, {"text": ",", "start": 312, "end": 313, "id": 59, "annotation": null}, {"text": "and", "start": 314, "end": 317, "id": 60, "annotation": null}, {"text": "a", "start": 318, "end": 319, "id": 61, "annotation": null}, {"text": "significant", "start": 320, "end": 331, "id": 62, "annotation": null}, {"text": "red", "start": 332, "end": 335, "id": 63, "annotation": null}, {"text": "shift", "start": 336, "end": 341, "id": 64, "annotation": null}, {"text": "of", "start": 342, "end": 344, "id": 65, "annotation": null}, {"text": "the", "start": 345, "end": 348, "id": 66, "annotation": null}, {"text": "TiO2", "start": 349, "end": 353, "id": 67, "annotation": null}, {"text": "absorption", "start": 354, "end": 364, "id": 68, "annotation": null}, {"text": "edge", "start": 365, "end": 369, "id": 69, "annotation": null}, {"text": ",", "start": 370, "end": 371, "id": 70, "annotation": null}, {"text": "the", "start": 372, "end": 375, "id": 71, "annotation": null}, {"text": "last", "start": 376, "end": 380, "id": 72, "annotation": null}, {"text": "property", "start": 381, "end": 389, "id": 73, "annotation": null}, {"text": "being", "start": 390, "end": 395, "id": 74, "annotation": null}, {"text": "very", "start": 396, "end": 400, "id": 75, "annotation": null}, {"text": "important", "start": 401, "end": 410, "id": 76, "annotation": null}, {"text": "in", "start": 411, "end": 413, "id": 77, "annotation": null}, {"text": "the", "start": 414, "end": 417, "id": 78, "annotation": null}, {"text": "self", "start": 418, "end": 422, "id": 79, "annotation": null}, {"text": "cleaning", "start": 423, "end": 431, "id": 80, "annotation": null}, {"text": "applications", "start": 432, "end": 444, "id": 81, "annotation": null}, {"text": ".", "start": 445, "end": 446, "id": 82, "annotation": null}], [{"text": "For", "start": 447, "end": 450, "id": 83, "annotation": null}, {"text": "the", "start": 451, "end": 454, "id": 84, "annotation": null}, {"text": "chosen", "start": 455, "end": 461, "id": 85, "annotation": null}, {"text": "Cr", "start": 462, "end": 464, "id": 86, "annotation": null}, {"text": "concentrations", "start": 465, "end": 479, "id": 87, "annotation": null}, {"text": ",", "start": 480, "end": 481, "id": 88, "annotation": null}, {"text": "the", "start": 482, "end": 485, "id": 89, "annotation": null}, {"text": "films", "start": 486, "end": 491, "id": 90, "annotation": null}, {"text": "did", "start": 492, "end": 495, "id": 91, "annotation": null}, {"text": "not", "start": 496, "end": 499, "id": 92, "annotation": null}, {"text": "show", "start": 500, "end": 504, "id": 93, "annotation": null}, {"text": "promising", "start": 505, "end": 514, "id": 94, "annotation": null}, {"text": "hydrophilic", "start": 515, "end": 526, "id": 95, "annotation": null}, {"text": "properties", "start": 527, "end": 537, "id": 96, "annotation": null}, {"text": ".", "start": 538, "end": 539, "id": 97, "annotation": null}], [{"text": "To", "start": 540, "end": 542, "id": 98, "annotation": null}, {"text": "improve", "start": 543, "end": 550, "id": 99, "annotation": null}, {"text": "them", "start": 551, "end": 555, "id": 100, "annotation": null}, {"text": ",", "start": 556, "end": 557, "id": 101, "annotation": null}, {"text": "we", "start": 558, "end": 560, "id": 102, "annotation": null}, {"text": "have", "start": 561, "end": 565, "id": 103, "annotation": null}, {"text": "applied", "start": 566, "end": 573, "id": 104, "annotation": null}, {"text": "a", "start": 574, "end": 575, "id": 105, "annotation": null}, {"text": "novel", "start": 576, "end": 581, "id": 106, "annotation": null}, {"text": "surface", "start": 582, "end": 589, "id": 107, "annotation": null}, {"text": "modification", "start": 590, "end": 602, "id": 108, "annotation": null}, {"text": "method", "start": 603, "end": 609, "id": 109, "annotation": null}, {"text": ",", "start": 610, "end": 611, "id": 110, "annotation": null}, {"text": "reported", "start": 612, "end": 620, "id": 111, "annotation": null}, {"text": "in", "start": 621, "end": 623, "id": 112, "annotation": null}, {"text": "literature", "start": 624, "end": 634, "id": 113, "annotation": null}, {"text": "mainly", "start": 635, "end": 641, "id": 114, "annotation": null}, {"text": "for", "start": 642, "end": 645, "id": 115, "annotation": null}, {"text": "powders", "start": 646, "end": 653, "id": 116, "annotation": null}, {"text": ",", "start": 654, "end": 655, "id": 117, "annotation": null}, {"text": "namely", "start": 656, "end": 662, "id": 118, "annotation": null}, {"text": ",", "start": 663, "end": 664, "id": 119, "annotation": null}, {"text": "surface", "start": 665, "end": 672, "id": 120, "annotation": null}, {"text": "metallisation", "start": 673, "end": 686, "id": 121, "annotation": null}, {"text": ".", "start": 687, "end": 688, "id": 122, "annotation": null}], [{"text": "We", "start": 689, "end": 691, "id": 123, "annotation": null}, {"text": "have", "start": 692, "end": 696, "id": 124, "annotation": null}, {"text": "observed", "start": 697, "end": 705, "id": 125, "annotation": null}, {"text": "that", "start": 706, "end": 710, "id": 126, "annotation": null}, {"text": ",", "start": 711, "end": 712, "id": 127, "annotation": null}, {"text": "by", "start": 713, "end": 715, "id": 128, "annotation": null}, {"text": "depositing", "start": 716, "end": 726, "id": 129, "annotation": null}, {"text": "Pt", "start": 727, "end": 729, "id": 130, "annotation": null}, {"text": "islands", "start": 730, "end": 737, "id": 131, "annotation": null}, {"text": "on", "start": 738, "end": 740, "id": 132, "annotation": null}, {"text": "the", "start": 741, "end": 744, "id": 133, "annotation": null}, {"text": "film", "start": 745, "end": 749, "id": 134, "annotation": null}, {"text": "with", "start": 750, "end": 754, "id": 135, "annotation": null}, {"text": "the", "start": 755, "end": 758, "id": 136, "annotation": null}, {"text": "highest", "start": 759, "end": 766, "id": 137, "annotation": null}, {"text": "Cr", "start": 767, "end": 769, "id": 138, "annotation": null}, {"text": "content", "start": 770, "end": 777, "id": 139, "annotation": null}, {"text": ",", "start": 778, "end": 779, "id": 140, "annotation": null}, {"text": "its", "start": 780, "end": 783, "id": 141, "annotation": null}, {"text": "hydrophilic", "start": 784, "end": 795, "id": 142, "annotation": null}, {"text": "properties", "start": 796, "end": 806, "id": 143, "annotation": null}, {"text": "improve", "start": 807, "end": 814, "id": 144, "annotation": null}, {"text": "for", "start": 815, "end": 818, "id": 145, "annotation": null}, {"text": "a", "start": 819, "end": 820, "id": 146, "annotation": null}, {"text": "certain", "start": 821, "end": 828, "id": 147, "annotation": null}, {"text": "metal", "start": 829, "end": 834, "id": 148, "annotation": null}, {"text": "coverage", "start": 835, "end": 843, "id": 149, "annotation": null}, {"text": "area", "start": 844, "end": 848, "id": 150, "annotation": null}, {"text": ".", "start": 849, "end": 850, "id": 151, "annotation": null}], [{"text": "The", "start": 851, "end": 854, "id": 152, "annotation": null}, {"text": "explanation", "start": 855, "end": 866, "id": 153, "annotation": null}, {"text": "was", "start": 867, "end": 870, "id": 154, "annotation": null}, {"text": "based", "start": 871, "end": 876, "id": 155, "annotation": null}, {"text": "on", "start": 877, "end": 879, "id": 156, "annotation": null}, {"text": "FT", "start": 880, "end": 882, "id": 157, "annotation": null}, {"text": "-", "start": 883, "end": 884, "id": 158, "annotation": null}, {"text": "IR", "start": 885, "end": 887, "id": 159, "annotation": null}, {"text": "and", "start": 888, "end": 891, "id": 160, "annotation": null}, {"text": "X", "start": 892, "end": 893, "id": 161, "annotation": null}, {"text": "-", "start": 894, "end": 895, "id": 162, "annotation": null}, {"text": "ray", "start": 896, "end": 899, "id": 163, "annotation": null}, {"text": "photoelectron", "start": 900, "end": 913, "id": 164, "annotation": null}, {"text": "spectroscopy", "start": 914, "end": 926, "id": 165, "annotation": null}, {"text": "analysis", "start": 927, "end": 935, "id": 166, "annotation": null}, {"text": ",", "start": 936, "end": 937, "id": 167, "annotation": null}, {"text": "performed", "start": 938, "end": 947, "id": 168, "annotation": null}, {"text": "on", "start": 948, "end": 950, "id": 169, "annotation": null}, {"text": "the", "start": 951, "end": 954, "id": 170, "annotation": null}, {"text": "UV", "start": 955, "end": 957, "id": 171, "annotation": null}, {"text": "irradiated", "start": 958, "end": 968, "id": 172, "annotation": null}, {"text": "and", "start": 969, "end": 972, "id": 173, "annotation": null}, {"text": "non", "start": 973, "end": 976, "id": 174, "annotation": null}, {"text": "-", "start": 977, "end": 978, "id": 175, "annotation": null}, {"text": "irradiated", "start": 979, "end": 989, "id": 176, "annotation": null}, {"text": "films", "start": 990, "end": 995, "id": 177, "annotation": null}, {"text": ",", "start": 996, "end": 997, "id": 178, "annotation": null}, {"text": "which", "start": 998, "end": 1003, "id": 179, "annotation": null}, {"text": "gives", "start": 1004, "end": 1009, "id": 180, "annotation": null}, {"text": "information", "start": 1010, "end": 1021, "id": 181, "annotation": null}, {"text": "on", "start": 1022, "end": 1024, "id": 182, "annotation": null}, {"text": "the", "start": 1025, "end": 1028, "id": 183, "annotation": null}, {"text": "relationship", "start": 1029, "end": 1041, "id": 184, "annotation": null}, {"text": "between", "start": 1042, "end": 1049, "id": 185, "annotation": null}, {"text": "hydrophilicity", "start": 1050, "end": 1064, "id": 186, "annotation": null}, {"text": "and", "start": 1065, "end": 1068, "id": 187, "annotation": null}, {"text": "the", "start": 1069, "end": 1072, "id": 188, "annotation": null}, {"text": "amount", "start": 1073, "end": 1079, "id": 189, "annotation": null}, {"text": "of", "start": 1080, "end": 1082, "id": 190, "annotation": null}, {"text": "the", "start": 1083, "end": 1086, "id": 191, "annotation": null}, {"text": "adsorbed", "start": 1087, "end": 1095, "id": 192, "annotation": null}, {"text": "hydroxyl", "start": 1096, "end": 1104, "id": 193, "annotation": null}, {"text": "groups", "start": 1105, "end": 1111, "id": 194, "annotation": null}, {"text": ".", "start": 1112, "end": 1113, "id": 195, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Eu-doped aluminum nitride phosphors were successfully prepared using simple direct nitridation of a metallic aluminum and Eu2O3 powder mixture in flowing ammonia. AlN formed at reaction temperatures >900\u00b0C, and Eu3+ transformed into the secondary oxide phase EuAl2O4 in the nitridation condition. Phase pure AlN was obtained by post-heat treatment of the nitridated product at 1600\u00b0C for 3\u00a0h in a nitrogen atmosphere, with an Eu2+ doping concentration\u00a0<\u00a00.5%. The phosphors exhibited broad green emission centered at 521\u00a0nm under 363\u00a0nm excitation. The luminescence of the phosphor was significantly influenced by the post-heat treatment temperature, which affected the dissolution of Eu2+, phase purity, crystallinity, and particle size of the AlN host.", "meta": {"doi": "10.1002/bio.3282"}, "_input_hash": 1050203337, "_task_hash": 756237190, "tokens": [[{"text": "Eu", "start": 46, "end": 48, "id": 11, "annotation": "DOPANT"}, {"text": "-", "start": 49, "end": 50, "id": 12, "annotation": null}, {"text": "doped", "start": 51, "end": 56, "id": 13, "annotation": null}, {"text": "aluminum", "start": 57, "end": 65, "id": 14, "annotation": "BASEMAT"}, {"text": "nitride", "start": 66, "end": 73, "id": 15, "annotation": "BASEMAT"}, {"text": "phosphors", "start": 74, "end": 83, "id": 16, "annotation": null}, {"text": "were", "start": 84, "end": 88, "id": 17, "annotation": null}, {"text": "successfully", "start": 89, "end": 101, "id": 18, "annotation": null}, {"text": "prepared", "start": 102, "end": 110, "id": 19, "annotation": null}, {"text": "using", "start": 111, "end": 116, "id": 20, "annotation": null}, {"text": "simple", "start": 117, "end": 123, "id": 21, "annotation": null}, {"text": "direct", "start": 124, "end": 130, "id": 22, "annotation": null}, {"text": "nitridation", "start": 131, "end": 142, "id": 23, "annotation": null}, {"text": "of", "start": 143, "end": 145, "id": 24, "annotation": null}, {"text": "a", "start": 146, "end": 147, "id": 25, "annotation": null}, {"text": "metallic", "start": 148, "end": 156, "id": 26, "annotation": null}, {"text": "aluminum", "start": 157, "end": 165, "id": 27, "annotation": null}, {"text": "and", "start": 166, "end": 169, "id": 28, "annotation": null}, {"text": "Eu2O3", "start": 170, "end": 175, "id": 29, "annotation": null}, {"text": "powder", "start": 176, "end": 182, "id": 30, "annotation": null}, {"text": "mixture", "start": 183, "end": 190, "id": 31, "annotation": null}, {"text": "in", "start": 191, "end": 193, "id": 32, "annotation": null}, {"text": "flowing", "start": 194, "end": 201, "id": 33, "annotation": null}, {"text": "ammonia", "start": 202, "end": 209, "id": 34, "annotation": null}, {"text": ".", "start": 210, "end": 211, "id": 35, "annotation": null}], [{"text": "AlN", "start": 212, "end": 215, "id": 36, "annotation": null}, {"text": "formed", "start": 216, "end": 222, "id": 37, "annotation": null}, {"text": "at", "start": 223, "end": 225, "id": 38, "annotation": null}, {"text": "reaction", "start": 226, "end": 234, "id": 39, "annotation": null}, {"text": "temperatures", "start": 235, "end": 247, "id": 40, "annotation": null}, {"text": ">", "start": 248, "end": 249, "id": 41, "annotation": null}, {"text": "900", "start": 250, "end": 253, "id": 42, "annotation": null}, {"text": "\u00b0", "start": 254, "end": 255, "id": 43, "annotation": null}, {"text": "C", "start": 256, "end": 257, "id": 44, "annotation": null}, {"text": ",", "start": 258, "end": 259, "id": 45, "annotation": null}, {"text": "and", "start": 260, "end": 263, "id": 46, "annotation": null}, {"text": "Eu3", "start": 264, "end": 267, "id": 47, "annotation": null}, {"text": "+", "start": 268, "end": 269, "id": 48, "annotation": null}, {"text": "transformed", "start": 270, "end": 281, "id": 49, "annotation": null}, {"text": "into", "start": 282, "end": 286, "id": 50, "annotation": null}, {"text": "the", "start": 287, "end": 290, "id": 51, "annotation": null}, {"text": "secondary", "start": 291, "end": 300, "id": 52, "annotation": null}, {"text": "oxide", "start": 301, "end": 306, "id": 53, "annotation": null}, {"text": "phase", "start": 307, "end": 312, "id": 54, "annotation": null}, {"text": "EuAl2O4", "start": 313, "end": 320, "id": 55, "annotation": null}, {"text": "in", "start": 321, "end": 323, "id": 56, "annotation": null}, {"text": "the", "start": 324, "end": 327, "id": 57, "annotation": null}, {"text": "nitridation", "start": 328, "end": 339, "id": 58, "annotation": null}, {"text": "condition", "start": 340, "end": 349, "id": 59, "annotation": null}, {"text": ".", "start": 350, "end": 351, "id": 60, "annotation": null}], [{"text": "Phase", "start": 352, "end": 357, "id": 61, "annotation": null}, {"text": "pure", "start": 358, "end": 362, "id": 62, "annotation": null}, {"text": "AlN", "start": 363, "end": 366, "id": 63, "annotation": "BASEMAT"}, {"text": "was", "start": 367, "end": 370, "id": 64, "annotation": null}, {"text": "obtained", "start": 371, "end": 379, "id": 65, "annotation": null}, {"text": "by", "start": 380, "end": 382, "id": 66, "annotation": null}, {"text": "post", "start": 383, "end": 387, "id": 67, "annotation": null}, {"text": "-", "start": 388, "end": 389, "id": 68, "annotation": null}, {"text": "heat", "start": 390, "end": 394, "id": 69, "annotation": null}, {"text": "treatment", "start": 395, "end": 404, "id": 70, "annotation": null}, {"text": "of", "start": 405, "end": 407, "id": 71, "annotation": null}, {"text": "the", "start": 408, "end": 411, "id": 72, "annotation": null}, {"text": "nitridated", "start": 412, "end": 422, "id": 73, "annotation": null}, {"text": "product", "start": 423, "end": 430, "id": 74, "annotation": null}, {"text": "at", "start": 431, "end": 433, "id": 75, "annotation": null}, {"text": "1600", "start": 434, "end": 438, "id": 76, "annotation": null}, {"text": "\u00b0", "start": 439, "end": 440, "id": 77, "annotation": null}, {"text": "C", "start": 441, "end": 442, "id": 78, "annotation": null}, {"text": "for", "start": 443, "end": 446, "id": 79, "annotation": null}, {"text": "3", "start": 447, "end": 448, "id": 80, "annotation": null}, {"text": "h", "start": 449, "end": 450, "id": 82, "annotation": null}, {"text": "in", "start": 451, "end": 453, "id": 83, "annotation": null}, {"text": "a", "start": 454, "end": 455, "id": 84, "annotation": null}, {"text": "nitrogen", "start": 456, "end": 464, "id": 85, "annotation": null}, {"text": "atmosphere", "start": 465, "end": 475, "id": 86, "annotation": null}, {"text": ",", "start": 476, "end": 477, "id": 87, "annotation": null}, {"text": "with", "start": 478, "end": 482, "id": 88, "annotation": null}, {"text": "an", "start": 483, "end": 485, "id": 89, "annotation": null}, {"text": "Eu2", "start": 486, "end": 489, "id": 90, "annotation": "DOPANT"}, {"text": "+", "start": 490, "end": 491, "id": 91, "annotation": "DOPANT"}, {"text": "doping", "start": 492, "end": 498, "id": 92, "annotation": null}, {"text": "concentration", "start": 499, "end": 512, "id": 93, "annotation": null}, {"text": "<", "start": 513, "end": 514, "id": 95, "annotation": "DOPMODQ"}, {"text": "0.5", "start": 515, "end": 518, "id": 97, "annotation": "DOPMODQ"}, {"text": "%", "start": 519, "end": 520, "id": 98, "annotation": "DOPMODQ"}, {"text": ".", "start": 521, "end": 522, "id": 99, "annotation": null}], [{"text": "The", "start": 523, "end": 526, "id": 100, "annotation": null}, {"text": "phosphors", "start": 527, "end": 536, "id": 101, "annotation": null}, {"text": "exhibited", "start": 537, "end": 546, "id": 102, "annotation": null}, {"text": "broad", "start": 547, "end": 552, "id": 103, "annotation": null}, {"text": "green", "start": 553, "end": 558, "id": 104, "annotation": null}, {"text": "emission", "start": 559, "end": 567, "id": 105, "annotation": null}, {"text": "centered", "start": 568, "end": 576, "id": 106, "annotation": null}, {"text": "at", "start": 577, "end": 579, "id": 107, "annotation": null}, {"text": "521", "start": 580, "end": 583, "id": 108, "annotation": null}, {"text": "nm", "start": 584, "end": 586, "id": 110, "annotation": null}, {"text": "under", "start": 587, "end": 592, "id": 111, "annotation": null}, {"text": "363", "start": 593, "end": 596, "id": 112, "annotation": null}, {"text": "nm", "start": 597, "end": 599, "id": 114, "annotation": null}, {"text": "excitation", "start": 600, "end": 610, "id": 115, "annotation": null}, {"text": ".", "start": 611, "end": 612, "id": 116, "annotation": null}], [{"text": "The", "start": 613, "end": 616, "id": 117, "annotation": null}, {"text": "luminescence", "start": 617, "end": 629, "id": 118, "annotation": null}, {"text": "of", "start": 630, "end": 632, "id": 119, "annotation": null}, {"text": "the", "start": 633, "end": 636, "id": 120, "annotation": null}, {"text": "phosphor", "start": 637, "end": 645, "id": 121, "annotation": null}, {"text": "was", "start": 646, "end": 649, "id": 122, "annotation": null}, {"text": "significantly", "start": 650, "end": 663, "id": 123, "annotation": null}, {"text": "influenced", "start": 664, "end": 674, "id": 124, "annotation": null}, {"text": "by", "start": 675, "end": 677, "id": 125, "annotation": null}, {"text": "the", "start": 678, "end": 681, "id": 126, "annotation": null}, {"text": "post", "start": 682, "end": 686, "id": 127, "annotation": null}, {"text": "-", "start": 687, "end": 688, "id": 128, "annotation": null}, {"text": "heat", "start": 689, "end": 693, "id": 129, "annotation": null}, {"text": "treatment", "start": 694, "end": 703, "id": 130, "annotation": null}, {"text": "temperature", "start": 704, "end": 715, "id": 131, "annotation": null}, {"text": ",", "start": 716, "end": 717, "id": 132, "annotation": null}, {"text": "which", "start": 718, "end": 723, "id": 133, "annotation": null}, {"text": "affected", "start": 724, "end": 732, "id": 134, "annotation": null}, {"text": "the", "start": 733, "end": 736, "id": 135, "annotation": null}, {"text": "dissolution", "start": 737, "end": 748, "id": 136, "annotation": null}, {"text": "of", "start": 749, "end": 751, "id": 137, "annotation": null}, {"text": "Eu2", "start": 752, "end": 755, "id": 138, "annotation": null}, {"text": "+", "start": 756, "end": 757, "id": 139, "annotation": null}, {"text": ",", "start": 758, "end": 759, "id": 140, "annotation": null}, {"text": "phase", "start": 760, "end": 765, "id": 141, "annotation": null}, {"text": "purity", "start": 766, "end": 772, "id": 142, "annotation": null}, {"text": ",", "start": 773, "end": 774, "id": 143, "annotation": null}, {"text": "crystallinity", "start": 775, "end": 788, "id": 144, "annotation": null}, {"text": ",", "start": 789, "end": 790, "id": 145, "annotation": null}, {"text": "and", "start": 791, "end": 794, "id": 146, "annotation": null}, {"text": "particle", "start": 795, "end": 803, "id": 147, "annotation": null}, {"text": "size", "start": 804, "end": 808, "id": 148, "annotation": null}, {"text": "of", "start": 809, "end": 811, "id": 149, "annotation": null}, {"text": "the", "start": 812, "end": 815, "id": 150, "annotation": null}, {"text": "AlN", "start": 816, "end": 819, "id": 151, "annotation": null}, {"text": "host", "start": 820, "end": 824, "id": 152, "annotation": null}, {"text": ".", "start": 825, "end": 826, "id": 153, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Dislocation generation in the initial stage of Czochralski-grown Si crystals doped with B in various concentrations was observed by means of X-ray topography. Slip dislocations were generated due to the thermal stress at the dipping stage in the seed and in a crystal doped with B in the concentration lower than 1\u00d71018 cm\u22123. Misfit dislocations were generated and penetrated into the crystal when the difference of B concentration between the seed and crystal was higher than \u22488\u00d71018 cm\u22123.", "meta": {"doi": "10.1016/S0921-5107(01)00991-6"}, "_input_hash": 858875985, "_task_hash": 2124999163, "tokens": [[{"text": "Dislocation", "start": 0, "end": 11, "id": 0, "annotation": null}, {"text": "generation", "start": 12, "end": 22, "id": 1, "annotation": null}, {"text": "in", "start": 23, "end": 25, "id": 2, "annotation": null}, {"text": "the", "start": 26, "end": 29, "id": 3, "annotation": null}, {"text": "initial", "start": 30, "end": 37, "id": 4, "annotation": null}, {"text": "stage", "start": 38, "end": 43, "id": 5, "annotation": null}, {"text": "of", "start": 44, "end": 46, "id": 6, "annotation": null}, {"text": "Czochralski", "start": 47, "end": 58, "id": 7, "annotation": null}, {"text": "-", "start": 59, "end": 60, "id": 8, "annotation": null}, {"text": "grown", "start": 61, "end": 66, "id": 9, "annotation": null}, {"text": "Si", "start": 67, "end": 69, "id": 10, "annotation": "BASEMAT"}, {"text": "crystals", "start": 70, "end": 78, "id": 11, "annotation": null}, {"text": "doped", "start": 79, "end": 84, "id": 12, "annotation": null}, {"text": "with", "start": 85, "end": 89, "id": 13, "annotation": null}, {"text": "B", "start": 90, "end": 91, "id": 14, "annotation": "DOPANT"}, {"text": "in", "start": 92, "end": 94, "id": 15, "annotation": null}, {"text": "various", "start": 95, "end": 102, "id": 16, "annotation": null}, {"text": "concentrations", "start": 103, "end": 117, "id": 17, "annotation": null}, {"text": "was", "start": 118, "end": 121, "id": 18, "annotation": null}, {"text": "observed", "start": 122, "end": 130, "id": 19, "annotation": null}, {"text": "by", "start": 131, "end": 133, "id": 20, "annotation": null}, {"text": "means", "start": 134, "end": 139, "id": 21, "annotation": null}, {"text": "of", "start": 140, "end": 142, "id": 22, "annotation": null}, {"text": "X", "start": 143, "end": 144, "id": 23, "annotation": null}, {"text": "-", "start": 145, "end": 146, "id": 24, "annotation": null}, {"text": "ray", "start": 147, "end": 150, "id": 25, "annotation": null}, {"text": "topography", "start": 151, "end": 161, "id": 26, "annotation": null}, {"text": ".", "start": 162, "end": 163, "id": 27, "annotation": null}], [{"text": "Slip", "start": 164, "end": 168, "id": 28, "annotation": null}, {"text": "dislocations", "start": 169, "end": 181, "id": 29, "annotation": null}, {"text": "were", "start": 182, "end": 186, "id": 30, "annotation": null}, {"text": "generated", "start": 187, "end": 196, "id": 31, "annotation": null}, {"text": "due", "start": 197, "end": 200, "id": 32, "annotation": null}, {"text": "to", "start": 201, "end": 203, "id": 33, "annotation": null}, {"text": "the", "start": 204, "end": 207, "id": 34, "annotation": null}, {"text": "thermal", "start": 208, "end": 215, "id": 35, "annotation": null}, {"text": "stress", "start": 216, "end": 222, "id": 36, "annotation": null}, {"text": "at", "start": 223, "end": 225, "id": 37, "annotation": null}, {"text": "the", "start": 226, "end": 229, "id": 38, "annotation": null}, {"text": "dipping", "start": 230, "end": 237, "id": 39, "annotation": null}, {"text": "stage", "start": 238, "end": 243, "id": 40, "annotation": null}, {"text": "in", "start": 244, "end": 246, "id": 41, "annotation": null}, {"text": "the", "start": 247, "end": 250, "id": 42, "annotation": null}, {"text": "seed", "start": 251, "end": 255, "id": 43, "annotation": null}, {"text": "and", "start": 256, "end": 259, "id": 44, "annotation": null}, {"text": "in", "start": 260, "end": 262, "id": 45, "annotation": null}, {"text": "a", "start": 263, "end": 264, "id": 46, "annotation": null}, {"text": "crystal", "start": 265, "end": 272, "id": 47, "annotation": "BASEMAT"}, {"text": "doped", "start": 273, "end": 278, "id": 48, "annotation": null}, {"text": "with", "start": 279, "end": 283, "id": 49, "annotation": null}, {"text": "B", "start": 284, "end": 285, "id": 50, "annotation": "DOPANT"}, {"text": "in", "start": 286, "end": 288, "id": 51, "annotation": null}, {"text": "the", "start": 289, "end": 292, "id": 52, "annotation": null}, {"text": "concentration", "start": 293, "end": 306, "id": 53, "annotation": null}, {"text": "lower", "start": 307, "end": 312, "id": 54, "annotation": "DOPMODQ"}, {"text": "than", "start": 313, "end": 317, "id": 55, "annotation": "DOPMODQ"}, {"text": "1\u00d71018", "start": 318, "end": 324, "id": 56, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 325, "end": 329, "id": 57, "annotation": "DOPMODQ"}, {"text": ".", "start": 330, "end": 331, "id": 58, "annotation": null}], [{"text": "Misfit", "start": 332, "end": 338, "id": 59, "annotation": null}, {"text": "dislocations", "start": 339, "end": 351, "id": 60, "annotation": null}, {"text": "were", "start": 352, "end": 356, "id": 61, "annotation": null}, {"text": "generated", "start": 357, "end": 366, "id": 62, "annotation": null}, {"text": "and", "start": 367, "end": 370, "id": 63, "annotation": null}, {"text": "penetrated", "start": 371, "end": 381, "id": 64, "annotation": null}, {"text": "into", "start": 382, "end": 386, "id": 65, "annotation": null}, {"text": "the", "start": 387, "end": 390, "id": 66, "annotation": null}, {"text": "crystal", "start": 391, "end": 398, "id": 67, "annotation": null}, {"text": "when", "start": 399, "end": 403, "id": 68, "annotation": null}, {"text": "the", "start": 404, "end": 407, "id": 69, "annotation": null}, {"text": "difference", "start": 408, "end": 418, "id": 70, "annotation": null}, {"text": "of", "start": 419, "end": 421, "id": 71, "annotation": null}, {"text": "B", "start": 422, "end": 423, "id": 72, "annotation": "DOPANT"}, {"text": "concentration", "start": 424, "end": 437, "id": 73, "annotation": null}, {"text": "between", "start": 438, "end": 445, "id": 74, "annotation": null}, {"text": "the", "start": 446, "end": 449, "id": 75, "annotation": null}, {"text": "seed", "start": 450, "end": 454, "id": 76, "annotation": null}, {"text": "and", "start": 455, "end": 458, "id": 77, "annotation": null}, {"text": "crystal", "start": 459, "end": 466, "id": 78, "annotation": null}, {"text": "was", "start": 467, "end": 470, "id": 79, "annotation": null}, {"text": "higher", "start": 471, "end": 477, "id": 80, "annotation": "DOPMODQ"}, {"text": "than", "start": 478, "end": 482, "id": 81, "annotation": "DOPMODQ"}, {"text": "\u22488\u00d71018", "start": 483, "end": 490, "id": 82, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 491, "end": 495, "id": 83, "annotation": "DOPMODQ"}, {"text": ".", "start": 496, "end": 497, "id": 84, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "We demonstrate the controlled doping of Sn into mesoporous TiO2 thin films, by a facile direct growth on conducting substrates (e.g. Ti) using the ligand-assisted evaporation-induced self-assembly method. The obtained Sn-doped mesoporous TiO2 thin films are polycrystalline with an anatase structure. The mesoporous TiO2 frameworks provide efficient ion transport pathways and structural stability for Li+ insertion. The in situ incorporation of Sn dopants into the mesoporous frameworks improves the charge transfer efficiency and the theoretical Li+ storage capacity of the electrode. In addition, the obtained mesoporous structures on Ti substrates provide close contact between the active material and the current collector, thus reducing the contact resistance and enhancing the charge transfer. As proof-of-concept, lithium-ion battery measurements of the Sn-doped mesoporous TiO2 thin film anodes with different Sn doping ratios show that the specific reversible capacity increases to a maximum with \u223c6% Sn doping ratio (\u223c252.5 mA h g\u22121 at 0.5 C) compared to our best pristine mesoporous TiO2 thin film anodes (100.8 mA h g\u22121 at 0.5 C), and then decreases at higher Sn doping ratios. Moreover, the Sn-doped mesoporous TiO2 thin films exhibit an excellent cycling stability, thus suggesting a potential approach for fabricating mesoporous oxide thin films with controlled doping for stable LIB storage.", "meta": {"doi": "10.1039/C3TA13198J"}, "_input_hash": -2057649722, "_task_hash": 937745443, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "demonstrate", "start": 3, "end": 14, "id": 1, "annotation": null}, {"text": "the", "start": 15, "end": 18, "id": 2, "annotation": null}, {"text": "controlled", "start": 19, "end": 29, "id": 3, "annotation": null}, {"text": "doping", "start": 30, "end": 36, "id": 4, "annotation": null}, {"text": "of", "start": 37, "end": 39, "id": 5, "annotation": null}, {"text": "Sn", "start": 40, "end": 42, "id": 6, "annotation": "DOPANT"}, {"text": "into", "start": 43, "end": 47, "id": 7, "annotation": null}, {"text": "mesoporous", "start": 48, "end": 58, "id": 8, "annotation": null}, {"text": "TiO2", "start": 59, "end": 63, "id": 9, "annotation": "BASEMAT"}, {"text": "thin", "start": 64, "end": 68, "id": 10, "annotation": null}, {"text": "films", "start": 69, "end": 74, "id": 11, "annotation": null}, {"text": ",", "start": 75, "end": 76, "id": 12, "annotation": null}, {"text": "by", "start": 77, "end": 79, "id": 13, "annotation": null}, {"text": "a", "start": 80, "end": 81, "id": 14, "annotation": null}, {"text": "facile", "start": 82, "end": 88, "id": 15, "annotation": null}, {"text": "direct", "start": 89, "end": 95, "id": 16, "annotation": null}, {"text": "growth", "start": 96, "end": 102, "id": 17, "annotation": null}, {"text": "on", "start": 103, "end": 105, "id": 18, "annotation": null}, {"text": "conducting", "start": 106, "end": 116, "id": 19, "annotation": null}, {"text": "substrates", "start": 117, "end": 127, "id": 20, "annotation": null}, {"text": "(", "start": 128, "end": 129, "id": 21, "annotation": null}, {"text": "e.g.", "start": 130, "end": 134, "id": 22, "annotation": null}, {"text": "Ti", "start": 135, "end": 137, "id": 23, "annotation": null}, {"text": ")", "start": 138, "end": 139, "id": 24, "annotation": null}, {"text": "using", "start": 140, "end": 145, "id": 25, "annotation": null}, {"text": "the", "start": 146, "end": 149, "id": 26, "annotation": null}, {"text": "ligand", "start": 150, "end": 156, "id": 27, "annotation": null}, {"text": "-", "start": 157, "end": 158, "id": 28, "annotation": null}, {"text": "assisted", "start": 159, "end": 167, "id": 29, "annotation": null}, {"text": "evaporation", "start": 168, "end": 179, "id": 30, "annotation": null}, {"text": "-", "start": 180, "end": 181, "id": 31, "annotation": null}, {"text": "induced", "start": 182, "end": 189, "id": 32, "annotation": null}, {"text": "self", "start": 190, "end": 194, "id": 33, "annotation": null}, {"text": "-", "start": 195, "end": 196, "id": 34, "annotation": null}, {"text": "assembly", "start": 197, "end": 205, "id": 35, "annotation": null}, {"text": "method", "start": 206, "end": 212, "id": 36, "annotation": null}, {"text": ".", "start": 213, "end": 214, "id": 37, "annotation": null}], [{"text": "The", "start": 215, "end": 218, "id": 38, "annotation": null}, {"text": "obtained", "start": 219, "end": 227, "id": 39, "annotation": null}, {"text": "Sn", "start": 228, "end": 230, "id": 40, "annotation": "DOPANT"}, {"text": "-", "start": 231, "end": 232, "id": 41, "annotation": null}, {"text": "doped", "start": 233, "end": 238, "id": 42, "annotation": null}, {"text": "mesoporous", "start": 239, "end": 249, "id": 43, "annotation": null}, {"text": "TiO2", "start": 250, "end": 254, "id": 44, "annotation": "BASEMAT"}, {"text": "thin", "start": 255, "end": 259, "id": 45, "annotation": null}, {"text": "films", "start": 260, "end": 265, "id": 46, "annotation": null}, {"text": "are", "start": 266, "end": 269, "id": 47, "annotation": null}, {"text": "polycrystalline", "start": 270, "end": 285, "id": 48, "annotation": null}, {"text": "with", "start": 286, "end": 290, "id": 49, "annotation": null}, {"text": "an", "start": 291, "end": 293, "id": 50, "annotation": null}, {"text": "anatase", "start": 294, "end": 301, "id": 51, "annotation": null}, {"text": "structure", "start": 302, "end": 311, "id": 52, "annotation": null}, {"text": ".", "start": 312, "end": 313, "id": 53, "annotation": null}], [{"text": "The", "start": 314, "end": 317, "id": 54, "annotation": null}, {"text": "mesoporous", "start": 318, "end": 328, "id": 55, "annotation": null}, {"text": "TiO2", "start": 329, "end": 333, "id": 56, "annotation": null}, {"text": "frameworks", "start": 334, "end": 344, "id": 57, "annotation": null}, {"text": "provide", "start": 345, "end": 352, "id": 58, "annotation": null}, {"text": "efficient", "start": 353, "end": 362, "id": 59, "annotation": null}, {"text": "ion", "start": 363, "end": 366, "id": 60, "annotation": null}, {"text": "transport", "start": 367, "end": 376, "id": 61, "annotation": null}, {"text": "pathways", "start": 377, "end": 385, "id": 62, "annotation": null}, {"text": "and", "start": 386, "end": 389, "id": 63, "annotation": null}, {"text": "structural", "start": 390, "end": 400, "id": 64, "annotation": null}, {"text": "stability", "start": 401, "end": 410, "id": 65, "annotation": null}, {"text": "for", "start": 411, "end": 414, "id": 66, "annotation": null}, {"text": "Li+", "start": 415, "end": 418, "id": 67, "annotation": null}, {"text": "insertion", "start": 419, "end": 428, "id": 68, "annotation": null}, {"text": ".", "start": 429, "end": 430, "id": 69, "annotation": null}], [{"text": "The", "start": 431, "end": 434, "id": 70, "annotation": null}, {"text": "in", "start": 435, "end": 437, "id": 71, "annotation": null}, {"text": "situ", "start": 438, "end": 442, "id": 72, "annotation": null}, {"text": "incorporation", "start": 443, "end": 456, "id": 73, "annotation": null}, {"text": "of", "start": 457, "end": 459, "id": 74, "annotation": null}, {"text": "Sn", "start": 460, "end": 462, "id": 75, "annotation": "DOPANT"}, {"text": "dopants", "start": 463, "end": 470, "id": 76, "annotation": null}, {"text": "into", "start": 471, "end": 475, "id": 77, "annotation": null}, {"text": "the", "start": 476, "end": 479, "id": 78, "annotation": null}, {"text": "mesoporous", "start": 480, "end": 490, "id": 79, "annotation": null}, {"text": "frameworks", "start": 491, "end": 501, "id": 80, "annotation": "BASEMAT"}, {"text": "improves", "start": 502, "end": 510, "id": 81, "annotation": null}, {"text": "the", "start": 511, "end": 514, "id": 82, "annotation": null}, {"text": "charge", "start": 515, "end": 521, "id": 83, "annotation": null}, {"text": "transfer", "start": 522, "end": 530, "id": 84, "annotation": null}, {"text": "efficiency", "start": 531, "end": 541, "id": 85, "annotation": null}, {"text": "and", "start": 542, "end": 545, "id": 86, "annotation": null}, {"text": "the", "start": 546, "end": 549, "id": 87, "annotation": null}, {"text": "theoretical", "start": 550, "end": 561, "id": 88, "annotation": null}, {"text": "Li+", "start": 562, "end": 565, "id": 89, "annotation": null}, {"text": "storage", "start": 566, "end": 573, "id": 90, "annotation": null}, {"text": "capacity", "start": 574, "end": 582, "id": 91, "annotation": null}, {"text": "of", "start": 583, "end": 585, "id": 92, "annotation": null}, {"text": "the", "start": 586, "end": 589, "id": 93, "annotation": null}, {"text": "electrode", "start": 590, "end": 599, "id": 94, "annotation": null}, {"text": ".", "start": 600, "end": 601, "id": 95, "annotation": null}], [{"text": "In", "start": 602, "end": 604, "id": 96, "annotation": null}, {"text": "addition", "start": 605, "end": 613, "id": 97, "annotation": null}, {"text": ",", "start": 614, "end": 615, "id": 98, "annotation": null}, {"text": "the", "start": 616, "end": 619, "id": 99, "annotation": null}, {"text": "obtained", "start": 620, "end": 628, "id": 100, "annotation": null}, {"text": "mesoporous", "start": 629, "end": 639, "id": 101, "annotation": null}, {"text": "structures", "start": 640, "end": 650, "id": 102, "annotation": null}, {"text": "on", "start": 651, "end": 653, "id": 103, "annotation": null}, {"text": "Ti", "start": 654, "end": 656, "id": 104, "annotation": null}, {"text": "substrates", "start": 657, "end": 667, "id": 105, "annotation": null}, {"text": "provide", "start": 668, "end": 675, "id": 106, "annotation": null}, {"text": "close", "start": 676, "end": 681, "id": 107, "annotation": null}, {"text": "contact", "start": 682, "end": 689, "id": 108, "annotation": null}, {"text": "between", "start": 690, "end": 697, "id": 109, "annotation": null}, {"text": "the", "start": 698, "end": 701, "id": 110, "annotation": null}, {"text": "active", "start": 702, "end": 708, "id": 111, "annotation": null}, {"text": "material", "start": 709, "end": 717, "id": 112, "annotation": null}, {"text": "and", "start": 718, "end": 721, "id": 113, "annotation": null}, {"text": "the", "start": 722, "end": 725, "id": 114, "annotation": null}, {"text": "current", "start": 726, "end": 733, "id": 115, "annotation": null}, {"text": "collector", "start": 734, "end": 743, "id": 116, "annotation": null}, {"text": ",", "start": 744, "end": 745, "id": 117, "annotation": null}, {"text": "thus", "start": 746, "end": 750, "id": 118, "annotation": null}, {"text": "reducing", "start": 751, "end": 759, "id": 119, "annotation": null}, {"text": "the", "start": 760, "end": 763, "id": 120, "annotation": null}, {"text": "contact", "start": 764, "end": 771, "id": 121, "annotation": null}, {"text": "resistance", "start": 772, "end": 782, "id": 122, "annotation": null}, {"text": "and", "start": 783, "end": 786, "id": 123, "annotation": null}, {"text": "enhancing", "start": 787, "end": 796, "id": 124, "annotation": null}, {"text": "the", "start": 797, "end": 800, "id": 125, "annotation": null}, {"text": "charge", "start": 801, "end": 807, "id": 126, "annotation": null}, {"text": "transfer", "start": 808, "end": 816, "id": 127, "annotation": null}, {"text": ".", "start": 817, "end": 818, "id": 128, "annotation": null}], [{"text": "As", "start": 819, "end": 821, "id": 129, "annotation": null}, {"text": "proof", "start": 822, "end": 827, "id": 130, "annotation": null}, {"text": "-", "start": 828, "end": 829, "id": 131, "annotation": null}, {"text": "of", "start": 830, "end": 832, "id": 132, "annotation": null}, {"text": "-", "start": 833, "end": 834, "id": 133, "annotation": null}, {"text": "concept", "start": 835, "end": 842, "id": 134, "annotation": null}, {"text": ",", "start": 843, "end": 844, "id": 135, "annotation": null}, {"text": "lithium", "start": 845, "end": 852, "id": 136, "annotation": null}, {"text": "-", "start": 853, "end": 854, "id": 137, "annotation": null}, {"text": "ion", "start": 855, "end": 858, "id": 138, "annotation": null}, {"text": "battery", "start": 859, "end": 866, "id": 139, "annotation": null}, {"text": "measurements", "start": 867, "end": 879, "id": 140, "annotation": null}, {"text": "of", "start": 880, "end": 882, "id": 141, "annotation": null}, {"text": "the", "start": 883, "end": 886, "id": 142, "annotation": null}, {"text": "Sn", "start": 887, "end": 889, "id": 143, "annotation": "DOPANT"}, {"text": "-", "start": 890, "end": 891, "id": 144, "annotation": null}, {"text": "doped", "start": 892, "end": 897, "id": 145, "annotation": null}, {"text": "mesoporous", "start": 898, "end": 908, "id": 146, "annotation": null}, {"text": "TiO2", "start": 909, "end": 913, "id": 147, "annotation": "BASEMAT"}, {"text": "thin", "start": 914, "end": 918, "id": 148, "annotation": null}, {"text": "film", "start": 919, "end": 923, "id": 149, "annotation": null}, {"text": "anodes", "start": 924, "end": 930, "id": 150, "annotation": null}, {"text": "with", "start": 931, "end": 935, "id": 151, "annotation": null}, {"text": "different", "start": 936, "end": 945, "id": 152, "annotation": null}, {"text": "Sn", "start": 946, "end": 948, "id": 153, "annotation": "DOPANT"}, {"text": "doping", "start": 949, "end": 955, "id": 154, "annotation": null}, {"text": "ratios", "start": 956, "end": 962, "id": 155, "annotation": null}, {"text": "show", "start": 963, "end": 967, "id": 156, "annotation": null}, {"text": "that", "start": 968, "end": 972, "id": 157, "annotation": null}, {"text": "the", "start": 973, "end": 976, "id": 158, "annotation": null}, {"text": "specific", "start": 977, "end": 985, "id": 159, "annotation": null}, {"text": "reversible", "start": 986, "end": 996, "id": 160, "annotation": null}, {"text": "capacity", "start": 997, "end": 1005, "id": 161, "annotation": null}, {"text": "increases", "start": 1006, "end": 1015, "id": 162, "annotation": null}, {"text": "to", "start": 1016, "end": 1018, "id": 163, "annotation": null}, {"text": "a", "start": 1019, "end": 1020, "id": 164, "annotation": null}, {"text": "maximum", "start": 1021, "end": 1028, "id": 165, "annotation": null}, {"text": "with", "start": 1029, "end": 1033, "id": 166, "annotation": null}, {"text": "\u223c6", "start": 1034, "end": 1036, "id": 167, "annotation": "DOPMODQ"}, {"text": "%", "start": 1037, "end": 1038, "id": 168, "annotation": "DOPMODQ"}, {"text": "Sn", "start": 1039, "end": 1041, "id": 169, "annotation": "DOPANT"}, {"text": "doping", "start": 1042, "end": 1048, "id": 170, "annotation": null}, {"text": "ratio", "start": 1049, "end": 1054, "id": 171, "annotation": null}, {"text": "(", "start": 1055, "end": 1056, "id": 172, "annotation": null}, {"text": "\u223c252.5", "start": 1057, "end": 1063, "id": 173, "annotation": null}, {"text": "mA", "start": 1064, "end": 1066, "id": 174, "annotation": null}, {"text": "h", "start": 1067, "end": 1068, "id": 175, "annotation": null}, {"text": "g\u22121", "start": 1069, "end": 1072, "id": 176, "annotation": null}, {"text": "at", "start": 1073, "end": 1075, "id": 177, "annotation": null}, {"text": "0.5", "start": 1076, "end": 1079, "id": 178, "annotation": null}, {"text": "C", "start": 1080, "end": 1081, "id": 179, "annotation": null}, {"text": ")", "start": 1082, "end": 1083, "id": 180, "annotation": null}, {"text": "compared", "start": 1084, "end": 1092, "id": 181, "annotation": null}, {"text": "to", "start": 1093, "end": 1095, "id": 182, "annotation": null}, {"text": "our", "start": 1096, "end": 1099, "id": 183, "annotation": null}, {"text": "best", "start": 1100, "end": 1104, "id": 184, "annotation": null}, {"text": "pristine", "start": 1105, "end": 1113, "id": 185, "annotation": null}, {"text": "mesoporous", "start": 1114, "end": 1124, "id": 186, "annotation": null}, {"text": "TiO2", "start": 1125, "end": 1129, "id": 187, "annotation": null}, {"text": "thin", "start": 1130, "end": 1134, "id": 188, "annotation": null}, {"text": "film", "start": 1135, "end": 1139, "id": 189, "annotation": null}, {"text": "anodes", "start": 1140, "end": 1146, "id": 190, "annotation": null}, {"text": "(", "start": 1147, "end": 1148, "id": 191, "annotation": null}, {"text": "100.8", "start": 1149, "end": 1154, "id": 192, "annotation": null}, {"text": "mA", "start": 1155, "end": 1157, "id": 193, "annotation": null}, {"text": "h", "start": 1158, "end": 1159, "id": 194, "annotation": null}, {"text": "g\u22121", "start": 1160, "end": 1163, "id": 195, "annotation": null}, {"text": "at", "start": 1164, "end": 1166, "id": 196, "annotation": null}, {"text": "0.5", "start": 1167, "end": 1170, "id": 197, "annotation": null}, {"text": "C", "start": 1171, "end": 1172, "id": 198, "annotation": null}, {"text": ")", "start": 1173, "end": 1174, "id": 199, "annotation": null}, {"text": ",", "start": 1175, "end": 1176, "id": 200, "annotation": null}, {"text": "and", "start": 1177, "end": 1180, "id": 201, "annotation": null}, {"text": "then", "start": 1181, "end": 1185, "id": 202, "annotation": null}, {"text": "decreases", "start": 1186, "end": 1195, "id": 203, "annotation": null}, {"text": "at", "start": 1196, "end": 1198, "id": 204, "annotation": null}, {"text": "higher", "start": 1199, "end": 1205, "id": 205, "annotation": null}, {"text": "Sn", "start": 1206, "end": 1208, "id": 206, "annotation": "DOPANT"}, {"text": "doping", "start": 1209, "end": 1215, "id": 207, "annotation": null}, {"text": "ratios", "start": 1216, "end": 1222, "id": 208, "annotation": null}, {"text": ".", "start": 1223, "end": 1224, "id": 209, "annotation": null}], [{"text": "Moreover", "start": 1225, "end": 1233, "id": 210, "annotation": null}, {"text": ",", "start": 1234, "end": 1235, "id": 211, "annotation": null}, {"text": "the", "start": 1236, "end": 1239, "id": 212, "annotation": null}, {"text": "Sn", "start": 1240, "end": 1242, "id": 213, "annotation": "DOPANT"}, {"text": "-", "start": 1243, "end": 1244, "id": 214, "annotation": null}, {"text": "doped", "start": 1245, "end": 1250, "id": 215, "annotation": null}, {"text": "mesoporous", "start": 1251, "end": 1261, "id": 216, "annotation": null}, {"text": "TiO2", "start": 1262, "end": 1266, "id": 217, "annotation": "BASEMAT"}, {"text": "thin", "start": 1267, "end": 1271, "id": 218, "annotation": null}, {"text": "films", "start": 1272, "end": 1277, "id": 219, "annotation": null}, {"text": "exhibit", "start": 1278, "end": 1285, "id": 220, "annotation": null}, {"text": "an", "start": 1286, "end": 1288, "id": 221, "annotation": null}, {"text": "excellent", "start": 1289, "end": 1298, "id": 222, "annotation": null}, {"text": "cycling", "start": 1299, "end": 1306, "id": 223, "annotation": null}, {"text": "stability", "start": 1307, "end": 1316, "id": 224, "annotation": null}, {"text": ",", "start": 1317, "end": 1318, "id": 225, "annotation": null}, {"text": "thus", "start": 1319, "end": 1323, "id": 226, "annotation": null}, {"text": "suggesting", "start": 1324, "end": 1334, "id": 227, "annotation": null}, {"text": "a", "start": 1335, "end": 1336, "id": 228, "annotation": null}, {"text": "potential", "start": 1337, "end": 1346, "id": 229, "annotation": null}, {"text": "approach", "start": 1347, "end": 1355, "id": 230, "annotation": null}, {"text": "for", "start": 1356, "end": 1359, "id": 231, "annotation": null}, {"text": "fabricating", "start": 1360, "end": 1371, "id": 232, "annotation": null}, {"text": "mesoporous", "start": 1372, "end": 1382, "id": 233, "annotation": null}, {"text": "oxide", "start": 1383, "end": 1388, "id": 234, "annotation": null}, {"text": "thin", "start": 1389, "end": 1393, "id": 235, "annotation": null}, {"text": "films", "start": 1394, "end": 1399, "id": 236, "annotation": null}, {"text": "with", "start": 1400, "end": 1404, "id": 237, "annotation": null}, {"text": "controlled", "start": 1405, "end": 1415, "id": 238, "annotation": null}, {"text": "doping", "start": 1416, "end": 1422, "id": 239, "annotation": null}, {"text": "for", "start": 1423, "end": 1426, "id": 240, "annotation": null}, {"text": "stable", "start": 1427, "end": 1433, "id": 241, "annotation": null}, {"text": "LIB", "start": 1434, "end": 1437, "id": 242, "annotation": null}, {"text": "storage", "start": 1438, "end": 1445, "id": 243, "annotation": null}, {"text": ".", "start": 1446, "end": 1447, "id": 244, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Nowadays, experiments based on possible controlling of the electrical conductivity of ZnO material as thin film and nano-forms are in progress. To reach especially p-type ZnO remains a principal challenge for many of research teams. Also, there are still problems concerning the stability of the p-type conductivity of this binary oxide. Herein, we reported a first principal explanation under the well known Lattice Compatibility Theory (LCT) to a noticeable n/p shift of 3% vanadium doped ZnO sprayed thin films published recently [1]. This paper gives plausible understanding of this change of ZnO character found by means of ethanol gas sensing. Moreover, the photoluminescence study of V doped ZnO thin films reinforce the change in their electrical character because such doping may behave both as a donor and as an acceptor in ZnO matrix.", "meta": {"doi": "10.1016/j.jallcom.2016.08.294"}, "_input_hash": 1532703554, "_task_hash": 1309574454, "tokens": [[{"text": "Nowadays", "start": 0, "end": 8, "id": 0, "annotation": null}, {"text": ",", "start": 9, "end": 10, "id": 1, "annotation": null}, {"text": "experiments", "start": 11, "end": 22, "id": 2, "annotation": null}, {"text": "based", "start": 23, "end": 28, "id": 3, "annotation": null}, {"text": "on", "start": 29, "end": 31, "id": 4, "annotation": null}, {"text": "possible", "start": 32, "end": 40, "id": 5, "annotation": null}, {"text": "controlling", "start": 41, "end": 52, "id": 6, "annotation": null}, {"text": "of", "start": 53, "end": 55, "id": 7, "annotation": null}, {"text": "the", "start": 56, "end": 59, "id": 8, "annotation": null}, {"text": "electrical", "start": 60, "end": 70, "id": 9, "annotation": null}, {"text": "conductivity", "start": 71, "end": 83, "id": 10, "annotation": null}, {"text": "of", "start": 84, "end": 86, "id": 11, "annotation": null}, {"text": "ZnO", "start": 87, "end": 90, "id": 12, "annotation": null}, {"text": "material", "start": 91, "end": 99, "id": 13, "annotation": null}, {"text": "as", "start": 100, "end": 102, "id": 14, "annotation": null}, {"text": "thin", "start": 103, "end": 107, "id": 15, "annotation": null}, {"text": "film", "start": 108, "end": 112, "id": 16, "annotation": null}, {"text": "and", "start": 113, "end": 116, "id": 17, "annotation": null}, {"text": "nano", "start": 117, "end": 121, "id": 18, "annotation": null}, {"text": "-", "start": 122, "end": 123, "id": 19, "annotation": null}, {"text": "forms", "start": 124, "end": 129, "id": 20, "annotation": null}, {"text": "are", "start": 130, "end": 133, "id": 21, "annotation": null}, {"text": "in", "start": 134, "end": 136, "id": 22, "annotation": null}, {"text": "progress", "start": 137, "end": 145, "id": 23, "annotation": null}, {"text": ".", "start": 146, "end": 147, "id": 24, "annotation": null}], [{"text": "To", "start": 148, "end": 150, "id": 25, "annotation": null}, {"text": "reach", "start": 151, "end": 156, "id": 26, "annotation": null}, {"text": "especially", "start": 157, "end": 167, "id": 27, "annotation": null}, {"text": "p", "start": 168, "end": 169, "id": 28, "annotation": "DOPANT"}, {"text": "-", "start": 170, "end": 171, "id": 29, "annotation": null}, {"text": "type", "start": 172, "end": 176, "id": 30, "annotation": "DOPANT"}, {"text": "ZnO", "start": 177, "end": 180, "id": 31, "annotation": "BASEMAT"}, {"text": "remains", "start": 181, "end": 188, "id": 32, "annotation": null}, {"text": "a", "start": 189, "end": 190, "id": 33, "annotation": null}, {"text": "principal", "start": 191, "end": 200, "id": 34, "annotation": null}, {"text": "challenge", "start": 201, "end": 210, "id": 35, "annotation": null}, {"text": "for", "start": 211, "end": 214, "id": 36, "annotation": null}, {"text": "many", "start": 215, "end": 219, "id": 37, "annotation": null}, {"text": "of", "start": 220, "end": 222, "id": 38, "annotation": null}, {"text": "research", "start": 223, "end": 231, "id": 39, "annotation": null}, {"text": "teams", "start": 232, "end": 237, "id": 40, "annotation": null}, {"text": ".", "start": 238, "end": 239, "id": 41, "annotation": null}], [{"text": "Also", "start": 240, "end": 244, "id": 42, "annotation": null}, {"text": ",", "start": 245, "end": 246, "id": 43, "annotation": null}, {"text": "there", "start": 247, "end": 252, "id": 44, "annotation": null}, {"text": "are", "start": 253, "end": 256, "id": 45, "annotation": null}, {"text": "still", "start": 257, "end": 262, "id": 46, "annotation": null}, {"text": "problems", "start": 263, "end": 271, "id": 47, "annotation": null}, {"text": "concerning", "start": 272, "end": 282, "id": 48, "annotation": null}, {"text": "the", "start": 283, "end": 286, "id": 49, "annotation": null}, {"text": "stability", "start": 287, "end": 296, "id": 50, "annotation": null}, {"text": "of", "start": 297, "end": 299, "id": 51, "annotation": null}, {"text": "the", "start": 300, "end": 303, "id": 52, "annotation": null}, {"text": "p", "start": 304, "end": 305, "id": 53, "annotation": null}, {"text": "-", "start": 306, "end": 307, "id": 54, "annotation": null}, {"text": "type", "start": 308, "end": 312, "id": 55, "annotation": null}, {"text": "conductivity", "start": 313, "end": 325, "id": 56, "annotation": null}, {"text": "of", "start": 326, "end": 328, "id": 57, "annotation": null}, {"text": "this", "start": 329, "end": 333, "id": 58, "annotation": null}, {"text": "binary", "start": 334, "end": 340, "id": 59, "annotation": null}, {"text": "oxide", "start": 341, "end": 346, "id": 60, "annotation": null}, {"text": ".", "start": 347, "end": 348, "id": 61, "annotation": null}], [{"text": "Herein", "start": 349, "end": 355, "id": 62, "annotation": null}, {"text": ",", "start": 356, "end": 357, "id": 63, "annotation": null}, {"text": "we", "start": 358, "end": 360, "id": 64, "annotation": null}, {"text": "reported", "start": 361, "end": 369, "id": 65, "annotation": null}, {"text": "a", "start": 370, "end": 371, "id": 66, "annotation": null}, {"text": "first", "start": 372, "end": 377, "id": 67, "annotation": null}, {"text": "principal", "start": 378, "end": 387, "id": 68, "annotation": null}, {"text": "explanation", "start": 388, "end": 399, "id": 69, "annotation": null}, {"text": "under", "start": 400, "end": 405, "id": 70, "annotation": null}, {"text": "the", "start": 406, "end": 409, "id": 71, "annotation": null}, {"text": "well", "start": 410, "end": 414, "id": 72, "annotation": null}, {"text": "known", "start": 415, "end": 420, "id": 73, "annotation": null}, {"text": "Lattice", "start": 421, "end": 428, "id": 74, "annotation": null}, {"text": "Compatibility", "start": 429, "end": 442, "id": 75, "annotation": null}, {"text": "Theory", "start": 443, "end": 449, "id": 76, "annotation": null}, {"text": "(", "start": 450, "end": 451, "id": 77, "annotation": null}, {"text": "LCT", "start": 452, "end": 455, "id": 78, "annotation": null}, {"text": ")", "start": 456, "end": 457, "id": 79, "annotation": null}, {"text": "to", "start": 458, "end": 460, "id": 80, "annotation": null}, {"text": "a", "start": 461, "end": 462, "id": 81, "annotation": null}, {"text": "noticeable", "start": 463, "end": 473, "id": 82, "annotation": null}, {"text": "n", "start": 474, "end": 475, "id": 83, "annotation": null}, {"text": "/", "start": 476, "end": 477, "id": 84, "annotation": null}, {"text": "p", "start": 478, "end": 479, "id": 85, "annotation": null}, {"text": "shift", "start": 480, "end": 485, "id": 86, "annotation": null}, {"text": "of", "start": 486, "end": 488, "id": 87, "annotation": null}, {"text": "3", "start": 489, "end": 490, "id": 88, "annotation": "DOPMODQ"}, {"text": "%", "start": 491, "end": 492, "id": 89, "annotation": "DOPMODQ"}, {"text": "vanadium", "start": 493, "end": 501, "id": 90, "annotation": "DOPANT"}, {"text": "doped", "start": 502, "end": 507, "id": 91, "annotation": null}, {"text": "ZnO", "start": 508, "end": 511, "id": 92, "annotation": "BASEMAT"}, {"text": "sprayed", "start": 512, "end": 519, "id": 93, "annotation": null}, {"text": "thin", "start": 520, "end": 524, "id": 94, "annotation": null}, {"text": "films", "start": 525, "end": 530, "id": 95, "annotation": null}, {"text": "published", "start": 531, "end": 540, "id": 96, "annotation": null}, {"text": "recently", "start": 541, "end": 549, "id": 97, "annotation": null}, {"text": "[", "start": 550, "end": 551, "id": 98, "annotation": null}, {"text": "1", "start": 552, "end": 553, "id": 99, "annotation": null}, {"text": "]", "start": 554, "end": 555, "id": 100, "annotation": null}, {"text": ".", "start": 556, "end": 557, "id": 101, "annotation": null}], [{"text": "This", "start": 558, "end": 562, "id": 102, "annotation": null}, {"text": "paper", "start": 563, "end": 568, "id": 103, "annotation": null}, {"text": "gives", "start": 569, "end": 574, "id": 104, "annotation": null}, {"text": "plausible", "start": 575, "end": 584, "id": 105, "annotation": null}, {"text": "understanding", "start": 585, "end": 598, "id": 106, "annotation": null}, {"text": "of", "start": 599, "end": 601, "id": 107, "annotation": null}, {"text": "this", "start": 602, "end": 606, "id": 108, "annotation": null}, {"text": "change", "start": 607, "end": 613, "id": 109, "annotation": null}, {"text": "of", "start": 614, "end": 616, "id": 110, "annotation": null}, {"text": "ZnO", "start": 617, "end": 620, "id": 111, "annotation": null}, {"text": "character", "start": 621, "end": 630, "id": 112, "annotation": null}, {"text": "found", "start": 631, "end": 636, "id": 113, "annotation": null}, {"text": "by", "start": 637, "end": 639, "id": 114, "annotation": null}, {"text": "means", "start": 640, "end": 645, "id": 115, "annotation": null}, {"text": "of", "start": 646, "end": 648, "id": 116, "annotation": null}, {"text": "ethanol", "start": 649, "end": 656, "id": 117, "annotation": null}, {"text": "gas", "start": 657, "end": 660, "id": 118, "annotation": null}, {"text": "sensing", "start": 661, "end": 668, "id": 119, "annotation": null}, {"text": ".", "start": 669, "end": 670, "id": 120, "annotation": null}], [{"text": "Moreover", "start": 671, "end": 679, "id": 121, "annotation": null}, {"text": ",", "start": 680, "end": 681, "id": 122, "annotation": null}, {"text": "the", "start": 682, "end": 685, "id": 123, "annotation": null}, {"text": "photoluminescence", "start": 686, "end": 703, "id": 124, "annotation": null}, {"text": "study", "start": 704, "end": 709, "id": 125, "annotation": null}, {"text": "of", "start": 710, "end": 712, "id": 126, "annotation": null}, {"text": "V", "start": 713, "end": 714, "id": 127, "annotation": "DOPANT"}, {"text": "doped", "start": 715, "end": 720, "id": 128, "annotation": null}, {"text": "ZnO", "start": 721, "end": 724, "id": 129, "annotation": "BASEMAT"}, {"text": "thin", "start": 725, "end": 729, "id": 130, "annotation": null}, {"text": "films", "start": 730, "end": 735, "id": 131, "annotation": null}, {"text": "reinforce", "start": 736, "end": 745, "id": 132, "annotation": null}, {"text": "the", "start": 746, "end": 749, "id": 133, "annotation": null}, {"text": "change", "start": 750, "end": 756, "id": 134, "annotation": null}, {"text": "in", "start": 757, "end": 759, "id": 135, "annotation": null}, {"text": "their", "start": 760, "end": 765, "id": 136, "annotation": null}, {"text": "electrical", "start": 766, "end": 776, "id": 137, "annotation": null}, {"text": "character", "start": 777, "end": 786, "id": 138, "annotation": null}, {"text": "because", "start": 787, "end": 794, "id": 139, "annotation": null}, {"text": "such", "start": 795, "end": 799, "id": 140, "annotation": null}, {"text": "doping", "start": 800, "end": 806, "id": 141, "annotation": null}, {"text": "may", "start": 807, "end": 810, "id": 142, "annotation": null}, {"text": "behave", "start": 811, "end": 817, "id": 143, "annotation": null}, {"text": "both", "start": 818, "end": 822, "id": 144, "annotation": null}, {"text": "as", "start": 823, "end": 825, "id": 145, "annotation": null}, {"text": "a", "start": 826, "end": 827, "id": 146, "annotation": null}, {"text": "donor", "start": 828, "end": 833, "id": 147, "annotation": null}, {"text": "and", "start": 834, "end": 837, "id": 148, "annotation": null}, {"text": "as", "start": 838, "end": 840, "id": 149, "annotation": null}, {"text": "an", "start": 841, "end": 843, "id": 150, "annotation": null}, {"text": "acceptor", "start": 844, "end": 852, "id": 151, "annotation": null}, {"text": "in", "start": 853, "end": 855, "id": 152, "annotation": null}, {"text": "ZnO", "start": 856, "end": 859, "id": 153, "annotation": null}, {"text": "matrix", "start": 860, "end": 866, "id": 154, "annotation": null}, {"text": ".", "start": 867, "end": 868, "id": 155, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "We have measured and analyzed the extended fine structure on the Sn K-shell x-ray absorption spectra of GaAs and Ga0.7Al0.3As doped with \u223c5 x 1018 cm\u22123 Sn. Our results and their implications for the atomic structure of DX centers are discussed.", "meta": {"doi": "10.1007/BF02657409"}, "_input_hash": 187956393, "_task_hash": -1291141229, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "have", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "measured", "start": 8, "end": 16, "id": 2, "annotation": null}, {"text": "and", "start": 17, "end": 20, "id": 3, "annotation": null}, {"text": "analyzed", "start": 21, "end": 29, "id": 4, "annotation": null}, {"text": "the", "start": 30, "end": 33, "id": 5, "annotation": null}, {"text": "extended", "start": 34, "end": 42, "id": 6, "annotation": null}, {"text": "fine", "start": 43, "end": 47, "id": 7, "annotation": null}, {"text": "structure", "start": 48, "end": 57, "id": 8, "annotation": null}, {"text": "on", "start": 58, "end": 60, "id": 9, "annotation": null}, {"text": "the", "start": 61, "end": 64, "id": 10, "annotation": null}, {"text": "Sn", "start": 65, "end": 67, "id": 11, "annotation": null}, {"text": "K", "start": 68, "end": 69, "id": 12, "annotation": null}, {"text": "-", "start": 70, "end": 71, "id": 13, "annotation": null}, {"text": "shell", "start": 72, "end": 77, "id": 14, "annotation": null}, {"text": "x", "start": 78, "end": 79, "id": 15, "annotation": null}, {"text": "-", "start": 80, "end": 81, "id": 16, "annotation": null}, {"text": "ray", "start": 82, "end": 85, "id": 17, "annotation": null}, {"text": "absorption", "start": 86, "end": 96, "id": 18, "annotation": null}, {"text": "spectra", "start": 97, "end": 104, "id": 19, "annotation": null}, {"text": "of", "start": 105, "end": 107, "id": 20, "annotation": null}, {"text": "GaAs", "start": 108, "end": 112, "id": 21, "annotation": null}, {"text": "and", "start": 113, "end": 116, "id": 22, "annotation": null}, {"text": "Ga0.7Al0.3As", "start": 117, "end": 129, "id": 23, "annotation": "BASEMAT"}, {"text": "doped", "start": 130, "end": 135, "id": 24, "annotation": null}, {"text": "with", "start": 136, "end": 140, "id": 25, "annotation": null}, {"text": "\u223c5", "start": 141, "end": 143, "id": 26, "annotation": "DOPMODQ"}, {"text": "x", "start": 144, "end": 145, "id": 27, "annotation": null}, {"text": "1018", "start": 146, "end": 150, "id": 28, "annotation": null}, {"text": "cm\u22123", "start": 151, "end": 155, "id": 29, "annotation": "DOPMODQ"}, {"text": "Sn", "start": 156, "end": 158, "id": 30, "annotation": "DOPANT"}, {"text": ".", "start": 159, "end": 160, "id": 31, "annotation": null}], [{"text": "Our", "start": 161, "end": 164, "id": 32, "annotation": null}, {"text": "results", "start": 165, "end": 172, "id": 33, "annotation": null}, {"text": "and", "start": 173, "end": 176, "id": 34, "annotation": null}, {"text": "their", "start": 177, "end": 182, "id": 35, "annotation": null}, {"text": "implications", "start": 183, "end": 195, "id": 36, "annotation": null}, {"text": "for", "start": 196, "end": 199, "id": 37, "annotation": null}, {"text": "the", "start": 200, "end": 203, "id": 38, "annotation": null}, {"text": "atomic", "start": 204, "end": 210, "id": 39, "annotation": null}, {"text": "structure", "start": 211, "end": 220, "id": 40, "annotation": null}, {"text": "of", "start": 221, "end": 223, "id": 41, "annotation": null}, {"text": "DX", "start": 224, "end": 226, "id": 42, "annotation": null}, {"text": "centers", "start": 227, "end": 234, "id": 43, "annotation": null}, {"text": "are", "start": 235, "end": 238, "id": 44, "annotation": null}, {"text": "discussed", "start": 239, "end": 248, "id": 45, "annotation": null}, {"text": ".", "start": 249, "end": 250, "id": 46, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "We have measured and analyzed the extended fine structure on the Sn K-shell x-ray absorption spectra of GaAs and Ga0.7Al0.3As doped with \u223c5 x 1018 cm\u22123 Sn. Our results and their implications for the atomic structure of DX centers are discussed.", "meta": {"doi": "10.1007/BF02657409"}, "_input_hash": 187956393, "_task_hash": -1291141229, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "have", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "measured", "start": 8, "end": 16, "id": 2, "annotation": null}, {"text": "and", "start": 17, "end": 20, "id": 3, "annotation": null}, {"text": "analyzed", "start": 21, "end": 29, "id": 4, "annotation": null}, {"text": "the", "start": 30, "end": 33, "id": 5, "annotation": null}, {"text": "extended", "start": 34, "end": 42, "id": 6, "annotation": null}, {"text": "fine", "start": 43, "end": 47, "id": 7, "annotation": null}, {"text": "structure", "start": 48, "end": 57, "id": 8, "annotation": null}, {"text": "on", "start": 58, "end": 60, "id": 9, "annotation": null}, {"text": "the", "start": 61, "end": 64, "id": 10, "annotation": null}, {"text": "Sn", "start": 65, "end": 67, "id": 11, "annotation": null}, {"text": "K", "start": 68, "end": 69, "id": 12, "annotation": null}, {"text": "-", "start": 70, "end": 71, "id": 13, "annotation": null}, {"text": "shell", "start": 72, "end": 77, "id": 14, "annotation": null}, {"text": "x", "start": 78, "end": 79, "id": 15, "annotation": null}, {"text": "-", "start": 80, "end": 81, "id": 16, "annotation": null}, {"text": "ray", "start": 82, "end": 85, "id": 17, "annotation": null}, {"text": "absorption", "start": 86, "end": 96, "id": 18, "annotation": null}, {"text": "spectra", "start": 97, "end": 104, "id": 19, "annotation": null}, {"text": "of", "start": 105, "end": 107, "id": 20, "annotation": null}, {"text": "GaAs", "start": 108, "end": 112, "id": 21, "annotation": null}, {"text": "and", "start": 113, "end": 116, "id": 22, "annotation": null}, {"text": "Ga0.7Al0.3As", "start": 117, "end": 129, "id": 23, "annotation": "BASEMAT"}, {"text": "doped", "start": 130, "end": 135, "id": 24, "annotation": null}, {"text": "with", "start": 136, "end": 140, "id": 25, "annotation": null}, {"text": "\u223c5", "start": 141, "end": 143, "id": 26, "annotation": "DOPMODQ"}, {"text": "x", "start": 144, "end": 145, "id": 27, "annotation": "DOPMODQ"}, {"text": "1018", "start": 146, "end": 150, "id": 28, "annotation": "DOPMODQ"}, {"text": "cm\u22123", "start": 151, "end": 155, "id": 29, "annotation": "DOPMODQ"}, {"text": "Sn", "start": 156, "end": 158, "id": 30, "annotation": "DOPANT"}, {"text": ".", "start": 159, "end": 160, "id": 31, "annotation": null}], [{"text": "Our", "start": 161, "end": 164, "id": 32, "annotation": null}, {"text": "results", "start": 165, "end": 172, "id": 33, "annotation": null}, {"text": "and", "start": 173, "end": 176, "id": 34, "annotation": null}, {"text": "their", "start": 177, "end": 182, "id": 35, "annotation": null}, {"text": "implications", "start": 183, "end": 195, "id": 36, "annotation": null}, {"text": "for", "start": 196, "end": 199, "id": 37, "annotation": null}, {"text": "the", "start": 200, "end": 203, "id": 38, "annotation": null}, {"text": "atomic", "start": 204, "end": 210, "id": 39, "annotation": null}, {"text": "structure", "start": 211, "end": 220, "id": 40, "annotation": null}, {"text": "of", "start": 221, "end": 223, "id": 41, "annotation": null}, {"text": "DX", "start": 224, "end": 226, "id": 42, "annotation": null}, {"text": "centers", "start": 227, "end": 234, "id": 43, "annotation": null}, {"text": "are", "start": 235, "end": 238, "id": 44, "annotation": null}, {"text": "discussed", "start": 239, "end": 248, "id": 45, "annotation": null}, {"text": ".", "start": 249, "end": 250, "id": 46, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Significant progress in the theoretical description of Mott-Hubbard metal-to-insulator transitions has been made in the last years, especially thanks to the LDA+DMFT approach (local density approximation + dynamical mean field theory). Obviously the main attention has been focused on the transition itself, as, for example, in the textbook case of the Cr-doped V 2O3. As we discuss here, however, also the study of the insulating phase, characterized by the opening of a visible Mott-Hubbard gap in the spectral functions is far from being trivial: Strong-correlation effects make this phase strongly sensitive to small changes of external parameters, much more than one would expect for an insulator. In this situation, requiring a full consistency of the theoretical calculations with data from different spectroscopies may provide the most precise estimate for the local Coulomb interaction U in the LDA+DMFT approach.", "meta": {"doi": "10.1088/1742-6596/200/1/012208"}, "_input_hash": 334284917, "_task_hash": -1454793155, "tokens": [[{"text": "Significant", "start": 0, "end": 11, "id": 0, "annotation": null}, {"text": "progress", "start": 12, "end": 20, "id": 1, "annotation": null}, {"text": "in", "start": 21, "end": 23, "id": 2, "annotation": null}, {"text": "the", "start": 24, "end": 27, "id": 3, "annotation": null}, {"text": "theoretical", "start": 28, "end": 39, "id": 4, "annotation": null}, {"text": "description", "start": 40, "end": 51, "id": 5, "annotation": null}, {"text": "of", "start": 52, "end": 54, "id": 6, "annotation": null}, {"text": "Mott", "start": 55, "end": 59, "id": 7, "annotation": null}, {"text": "-", "start": 60, "end": 61, "id": 8, "annotation": null}, {"text": "Hubbard", "start": 62, "end": 69, "id": 9, "annotation": null}, {"text": "metal", "start": 70, "end": 75, "id": 10, "annotation": null}, {"text": "-", "start": 76, "end": 77, "id": 11, "annotation": null}, {"text": "to", "start": 78, "end": 80, "id": 12, "annotation": null}, {"text": "-", "start": 81, "end": 82, "id": 13, "annotation": null}, {"text": "insulator", "start": 83, "end": 92, "id": 14, "annotation": null}, {"text": "transitions", "start": 93, "end": 104, "id": 15, "annotation": null}, {"text": "has", "start": 105, "end": 108, "id": 16, "annotation": null}, {"text": "been", "start": 109, "end": 113, "id": 17, "annotation": null}, {"text": "made", "start": 114, "end": 118, "id": 18, "annotation": null}, {"text": "in", "start": 119, "end": 121, "id": 19, "annotation": null}, {"text": "the", "start": 122, "end": 125, "id": 20, "annotation": null}, {"text": "last", "start": 126, "end": 130, "id": 21, "annotation": null}, {"text": "years", "start": 131, "end": 136, "id": 22, "annotation": null}, {"text": ",", "start": 137, "end": 138, "id": 23, "annotation": null}, {"text": "especially", "start": 139, "end": 149, "id": 24, "annotation": null}, {"text": "thanks", "start": 150, "end": 156, "id": 25, "annotation": null}, {"text": "to", "start": 157, "end": 159, "id": 26, "annotation": null}, {"text": "the", "start": 160, "end": 163, "id": 27, "annotation": null}, {"text": "LDA+DMFT", "start": 164, "end": 172, "id": 28, "annotation": null}, {"text": "approach", "start": 173, "end": 181, "id": 29, "annotation": null}, {"text": "(", "start": 182, "end": 183, "id": 30, "annotation": null}, {"text": "local", "start": 184, "end": 189, "id": 31, "annotation": null}, {"text": "density", "start": 190, "end": 197, "id": 32, "annotation": null}, {"text": "approximation", "start": 198, "end": 211, "id": 33, "annotation": null}, {"text": "+", "start": 212, "end": 213, "id": 34, "annotation": null}, {"text": "dynamical", "start": 214, "end": 223, "id": 35, "annotation": null}, {"text": "mean", "start": 224, "end": 228, "id": 36, "annotation": null}, {"text": "field", "start": 229, "end": 234, "id": 37, "annotation": null}, {"text": "theory", "start": 235, "end": 241, "id": 38, "annotation": null}, {"text": ")", "start": 242, "end": 243, "id": 39, "annotation": null}, {"text": ".", "start": 244, "end": 245, "id": 40, "annotation": null}], [{"text": "Obviously", "start": 246, "end": 255, "id": 41, "annotation": null}, {"text": "the", "start": 256, "end": 259, "id": 42, "annotation": null}, {"text": "main", "start": 260, "end": 264, "id": 43, "annotation": null}, {"text": "attention", "start": 265, "end": 274, "id": 44, "annotation": null}, {"text": "has", "start": 275, "end": 278, "id": 45, "annotation": null}, {"text": "been", "start": 279, "end": 283, "id": 46, "annotation": null}, {"text": "focused", "start": 284, "end": 291, "id": 47, "annotation": null}, {"text": "on", "start": 292, "end": 294, "id": 48, "annotation": null}, {"text": "the", "start": 295, "end": 298, "id": 49, "annotation": null}, {"text": "transition", "start": 299, "end": 309, "id": 50, "annotation": null}, {"text": "itself", "start": 310, "end": 316, "id": 51, "annotation": null}, {"text": ",", "start": 317, "end": 318, "id": 52, "annotation": null}, {"text": "as", "start": 319, "end": 321, "id": 53, "annotation": null}, {"text": ",", "start": 322, "end": 323, "id": 54, "annotation": null}, {"text": "for", "start": 324, "end": 327, "id": 55, "annotation": null}, {"text": "example", "start": 328, "end": 335, "id": 56, "annotation": null}, {"text": ",", "start": 336, "end": 337, "id": 57, "annotation": null}, {"text": "in", "start": 338, "end": 340, "id": 58, "annotation": null}, {"text": "the", "start": 341, "end": 344, "id": 59, "annotation": null}, {"text": "textbook", "start": 345, "end": 353, "id": 60, "annotation": null}, {"text": "case", "start": 354, "end": 358, "id": 61, "annotation": null}, {"text": "of", "start": 359, "end": 361, "id": 62, "annotation": null}, {"text": "the", "start": 362, "end": 365, "id": 63, "annotation": null}, {"text": "Cr", "start": 366, "end": 368, "id": 64, "annotation": "DOPANT"}, {"text": "-", "start": 369, "end": 370, "id": 65, "annotation": null}, {"text": "doped", "start": 371, "end": 376, "id": 66, "annotation": null}, {"text": "V", "start": 377, "end": 378, "id": 67, "annotation": "BASEMAT"}, {"text": "2O3", "start": 379, "end": 382, "id": 68, "annotation": "BASEMAT"}, {"text": ".", "start": 383, "end": 384, "id": 69, "annotation": null}], [{"text": "As", "start": 385, "end": 387, "id": 70, "annotation": null}, {"text": "we", "start": 388, "end": 390, "id": 71, "annotation": null}, {"text": "discuss", "start": 391, "end": 398, "id": 72, "annotation": null}, {"text": "here", "start": 399, "end": 403, "id": 73, "annotation": null}, {"text": ",", "start": 404, "end": 405, "id": 74, "annotation": null}, {"text": "however", "start": 406, "end": 413, "id": 75, "annotation": null}, {"text": ",", "start": 414, "end": 415, "id": 76, "annotation": null}, {"text": "also", "start": 416, "end": 420, "id": 77, "annotation": null}, {"text": "the", "start": 421, "end": 424, "id": 78, "annotation": null}, {"text": "study", "start": 425, "end": 430, "id": 79, "annotation": null}, {"text": "of", "start": 431, "end": 433, "id": 80, "annotation": null}, {"text": "the", "start": 434, "end": 437, "id": 81, "annotation": null}, {"text": "insulating", "start": 438, "end": 448, "id": 82, "annotation": null}, {"text": "phase", "start": 449, "end": 454, "id": 83, "annotation": null}, {"text": ",", "start": 455, "end": 456, "id": 84, "annotation": null}, {"text": "characterized", "start": 457, "end": 470, "id": 85, "annotation": null}, {"text": "by", "start": 471, "end": 473, "id": 86, "annotation": null}, {"text": "the", "start": 474, "end": 477, "id": 87, "annotation": null}, {"text": "opening", "start": 478, "end": 485, "id": 88, "annotation": null}, {"text": "of", "start": 486, "end": 488, "id": 89, "annotation": null}, {"text": "a", "start": 489, "end": 490, "id": 90, "annotation": null}, {"text": "visible", "start": 491, "end": 498, "id": 91, "annotation": null}, {"text": "Mott", "start": 499, "end": 503, "id": 92, "annotation": null}, {"text": "-", "start": 504, "end": 505, "id": 93, "annotation": null}, {"text": "Hubbard", "start": 506, "end": 513, "id": 94, "annotation": null}, {"text": "gap", "start": 514, "end": 517, "id": 95, "annotation": null}, {"text": "in", "start": 518, "end": 520, "id": 96, "annotation": null}, {"text": "the", "start": 521, "end": 524, "id": 97, "annotation": null}, {"text": "spectral", "start": 525, "end": 533, "id": 98, "annotation": null}, {"text": "functions", "start": 534, "end": 543, "id": 99, "annotation": null}, {"text": "is", "start": 544, "end": 546, "id": 100, "annotation": null}, {"text": "far", "start": 547, "end": 550, "id": 101, "annotation": null}, {"text": "from", "start": 551, "end": 555, "id": 102, "annotation": null}, {"text": "being", "start": 556, "end": 561, "id": 103, "annotation": null}, {"text": "trivial", "start": 562, "end": 569, "id": 104, "annotation": null}, {"text": ":", "start": 570, "end": 571, "id": 105, "annotation": null}, {"text": "Strong", "start": 572, "end": 578, "id": 106, "annotation": null}, {"text": "-", "start": 579, "end": 580, "id": 107, "annotation": null}, {"text": "correlation", "start": 581, "end": 592, "id": 108, "annotation": null}, {"text": "effects", "start": 593, "end": 600, "id": 109, "annotation": null}, {"text": "make", "start": 601, "end": 605, "id": 110, "annotation": null}, {"text": "this", "start": 606, "end": 610, "id": 111, "annotation": null}, {"text": "phase", "start": 611, "end": 616, "id": 112, "annotation": null}, {"text": "strongly", "start": 617, "end": 625, "id": 113, "annotation": null}, {"text": "sensitive", "start": 626, "end": 635, "id": 114, "annotation": null}, {"text": "to", "start": 636, "end": 638, "id": 115, "annotation": null}, {"text": "small", "start": 639, "end": 644, "id": 116, "annotation": null}, {"text": "changes", "start": 645, "end": 652, "id": 117, "annotation": null}, {"text": "of", "start": 653, "end": 655, "id": 118, "annotation": null}, {"text": "external", "start": 656, "end": 664, "id": 119, "annotation": null}, {"text": "parameters", "start": 665, "end": 675, "id": 120, "annotation": null}, {"text": ",", "start": 676, "end": 677, "id": 121, "annotation": null}, {"text": "much", "start": 678, "end": 682, "id": 122, "annotation": null}, {"text": "more", "start": 683, "end": 687, "id": 123, "annotation": null}, {"text": "than", "start": 688, "end": 692, "id": 124, "annotation": null}, {"text": "one", "start": 693, "end": 696, "id": 125, "annotation": null}, {"text": "would", "start": 697, "end": 702, "id": 126, "annotation": null}, {"text": "expect", "start": 703, "end": 709, "id": 127, "annotation": null}, {"text": "for", "start": 710, "end": 713, "id": 128, "annotation": null}, {"text": "an", "start": 714, "end": 716, "id": 129, "annotation": null}, {"text": "insulator", "start": 717, "end": 726, "id": 130, "annotation": null}, {"text": ".", "start": 727, "end": 728, "id": 131, "annotation": null}], [{"text": "In", "start": 729, "end": 731, "id": 132, "annotation": null}, {"text": "this", "start": 732, "end": 736, "id": 133, "annotation": null}, {"text": "situation", "start": 737, "end": 746, "id": 134, "annotation": null}, {"text": ",", "start": 747, "end": 748, "id": 135, "annotation": null}, {"text": "requiring", "start": 749, "end": 758, "id": 136, "annotation": null}, {"text": "a", "start": 759, "end": 760, "id": 137, "annotation": null}, {"text": "full", "start": 761, "end": 765, "id": 138, "annotation": null}, {"text": "consistency", "start": 766, "end": 777, "id": 139, "annotation": null}, {"text": "of", "start": 778, "end": 780, "id": 140, "annotation": null}, {"text": "the", "start": 781, "end": 784, "id": 141, "annotation": null}, {"text": "theoretical", "start": 785, "end": 796, "id": 142, "annotation": null}, {"text": "calculations", "start": 797, "end": 809, "id": 143, "annotation": null}, {"text": "with", "start": 810, "end": 814, "id": 144, "annotation": null}, {"text": "data", "start": 815, "end": 819, "id": 145, "annotation": null}, {"text": "from", "start": 820, "end": 824, "id": 146, "annotation": null}, {"text": "different", "start": 825, "end": 834, "id": 147, "annotation": null}, {"text": "spectroscopies", "start": 835, "end": 849, "id": 148, "annotation": null}, {"text": "may", "start": 850, "end": 853, "id": 149, "annotation": null}, {"text": "provide", "start": 854, "end": 861, "id": 150, "annotation": null}, {"text": "the", "start": 862, "end": 865, "id": 151, "annotation": null}, {"text": "most", "start": 866, "end": 870, "id": 152, "annotation": null}, {"text": "precise", "start": 871, "end": 878, "id": 153, "annotation": null}, {"text": "estimate", "start": 879, "end": 887, "id": 154, "annotation": null}, {"text": "for", "start": 888, "end": 891, "id": 155, "annotation": null}, {"text": "the", "start": 892, "end": 895, "id": 156, "annotation": null}, {"text": "local", "start": 896, "end": 901, "id": 157, "annotation": null}, {"text": "Coulomb", "start": 902, "end": 909, "id": 158, "annotation": null}, {"text": "interaction", "start": 910, "end": 921, "id": 159, "annotation": null}, {"text": "U", "start": 922, "end": 923, "id": 160, "annotation": null}, {"text": "in", "start": 924, "end": 926, "id": 161, "annotation": null}, {"text": "the", "start": 927, "end": 930, "id": 162, "annotation": null}, {"text": "LDA+DMFT", "start": 931, "end": 939, "id": 163, "annotation": null}, {"text": "approach", "start": 940, "end": 948, "id": 164, "annotation": null}, {"text": ".", "start": 949, "end": 950, "id": 165, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Pure and Al-doped macro-/nanoporous ZnO were synthesized via solution combustion method by using zincacetate dihydrate (Zn(CH3COO)2\u00b72H2O), zinc nitrate hexahydrate (Zn(NO3)26H2O), aluminum nitrate nonahydrate (Al(NO3)3\u00b79H2O), hydrazine hydrate (N2H4\u00b7H2O) and glycine (C2H5NO2) as precursors. The morphology, structure and catalytic properties of the as-synthesized macro-/nanoporous products were characterized by scanning electron microscopy (SEM), X-ray diffraction (XRD), transmission electron microscopy (TEM), X-ray photoelectron spectroscopy (XPS), UV\u2013Vis spectroscopy, Brunauer-Emmett-Teller (BET) nitrogen adsorption-desorption and Fourier transform infrared spectroscopy (FTIR), respectively. Pure and Al-doped ZnO have coral-like shape with the pores size ranging from several nanometers to ten micrometers. The walls of the macropores contain smaller nanopores, exhibiting the hierarchically porous morphology. The catalytic activities of the as-synthesized samples were tested by measuring the degradation efficiency of azo dye Congo red (CR) under visible light, UV light and dark light, respectively. The results show excellent removal capacity for organic pollutants CR in wastewater. Macro-/nanoporous Al-ZnO with different contents of Al have better catalytic degradation efficiency than pure ZnO. The experimental results indicate the potential use of macro-/nanoporous Al-ZnO for catalytic degradation of Congo red dye in different environments, which provides a potentially low-cost alternative for the remediation of azo-dye effluents.", "meta": {"doi": "10.1016/j.ceramint.2016.09.041"}, "_input_hash": -2008870687, "_task_hash": 1718689474, "tokens": [[{"text": "Pure", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "and", "start": 5, "end": 8, "id": 1, "annotation": null}, {"text": "Al", "start": 9, "end": 11, "id": 2, "annotation": "DOPANT"}, {"text": "-", "start": 12, "end": 13, "id": 3, "annotation": null}, {"text": "doped", "start": 14, "end": 19, "id": 4, "annotation": null}, {"text": "macro-/nanoporous", "start": 20, "end": 37, "id": 5, "annotation": null}, {"text": "ZnO", "start": 38, "end": 41, "id": 6, "annotation": "BASEMAT"}, {"text": "were", "start": 42, "end": 46, "id": 7, "annotation": null}, {"text": "synthesized", "start": 47, "end": 58, "id": 8, "annotation": null}, {"text": "via", "start": 59, "end": 62, "id": 9, "annotation": null}, {"text": "solution", "start": 63, "end": 71, "id": 10, "annotation": null}, {"text": "combustion", "start": 72, "end": 82, "id": 11, "annotation": null}, {"text": "method", "start": 83, "end": 89, "id": 12, "annotation": null}, {"text": "by", "start": 90, "end": 92, "id": 13, "annotation": null}, {"text": "using", "start": 93, "end": 98, "id": 14, "annotation": null}, {"text": "zincacetate", "start": 99, "end": 110, "id": 15, "annotation": null}, {"text": "dihydrate", "start": 111, "end": 120, "id": 16, "annotation": null}, {"text": "(", "start": 121, "end": 122, "id": 17, "annotation": null}, {"text": "Zn(CH3COO)2\u00b72H2O", "start": 123, "end": 139, "id": 18, "annotation": null}, {"text": ")", "start": 140, "end": 141, "id": 19, "annotation": null}, {"text": ",", "start": 142, "end": 143, "id": 20, "annotation": null}, {"text": "zinc", "start": 144, "end": 148, "id": 21, "annotation": null}, {"text": "nitrate", "start": 149, "end": 156, "id": 22, "annotation": null}, {"text": "hexahydrate", "start": 157, "end": 168, "id": 23, "annotation": null}, {"text": "(", "start": 169, "end": 170, "id": 24, "annotation": null}, {"text": "Zn(NO3)26H2O", "start": 171, "end": 183, "id": 25, "annotation": null}, {"text": ")", "start": 184, "end": 185, "id": 26, "annotation": null}, {"text": ",", "start": 186, "end": 187, "id": 27, "annotation": null}, {"text": "aluminum", "start": 188, "end": 196, "id": 28, "annotation": null}, {"text": "nitrate", "start": 197, "end": 204, "id": 29, "annotation": null}, {"text": "nonahydrate", "start": 205, "end": 216, "id": 30, "annotation": null}, {"text": "(", "start": 217, "end": 218, "id": 31, "annotation": null}, {"text": "Al(NO3)3\u00b79H2O", "start": 219, "end": 232, "id": 32, "annotation": null}, {"text": ")", "start": 233, "end": 234, "id": 33, "annotation": null}, {"text": ",", "start": 235, "end": 236, "id": 34, "annotation": null}, {"text": "hydrazine", "start": 237, "end": 246, "id": 35, "annotation": null}, {"text": "hydrate", "start": 247, "end": 254, "id": 36, "annotation": null}, {"text": "(", "start": 255, "end": 256, "id": 37, "annotation": null}, {"text": "N2H4\u00b7H2O", "start": 257, "end": 265, "id": 38, "annotation": null}, {"text": ")", "start": 266, "end": 267, "id": 39, "annotation": null}, {"text": "and", "start": 268, "end": 271, "id": 40, "annotation": null}, {"text": "glycine", "start": 272, "end": 279, "id": 41, "annotation": null}, {"text": "(", "start": 280, "end": 281, "id": 42, "annotation": null}, {"text": "C2H5NO2", "start": 282, "end": 289, "id": 43, "annotation": null}, {"text": ")", "start": 290, "end": 291, "id": 44, "annotation": null}, {"text": "as", "start": 292, "end": 294, "id": 45, "annotation": null}, {"text": "precursors", "start": 295, "end": 305, "id": 46, "annotation": null}, {"text": ".", "start": 306, "end": 307, "id": 47, "annotation": null}], [{"text": "The", "start": 308, "end": 311, "id": 48, "annotation": null}, {"text": "morphology", "start": 312, "end": 322, "id": 49, "annotation": null}, {"text": ",", "start": 323, "end": 324, "id": 50, "annotation": null}, {"text": "structure", "start": 325, "end": 334, "id": 51, "annotation": null}, {"text": "and", "start": 335, "end": 338, "id": 52, "annotation": null}, {"text": "catalytic", "start": 339, "end": 348, "id": 53, "annotation": null}, {"text": "properties", "start": 349, "end": 359, "id": 54, "annotation": null}, {"text": "of", "start": 360, "end": 362, "id": 55, "annotation": null}, {"text": "the", "start": 363, "end": 366, "id": 56, "annotation": null}, {"text": "as", "start": 367, "end": 369, "id": 57, "annotation": null}, {"text": "-", "start": 370, "end": 371, "id": 58, "annotation": null}, {"text": "synthesized", "start": 372, "end": 383, "id": 59, "annotation": null}, {"text": "macro-/nanoporous", "start": 384, "end": 401, "id": 60, "annotation": null}, {"text": "products", "start": 402, "end": 410, "id": 61, "annotation": null}, {"text": "were", "start": 411, "end": 415, "id": 62, "annotation": null}, {"text": "characterized", "start": 416, "end": 429, "id": 63, "annotation": null}, {"text": "by", "start": 430, "end": 432, "id": 64, "annotation": null}, {"text": "scanning", "start": 433, "end": 441, "id": 65, "annotation": null}, {"text": "electron", "start": 442, "end": 450, "id": 66, "annotation": null}, {"text": "microscopy", "start": 451, "end": 461, "id": 67, "annotation": null}, {"text": "(", "start": 462, "end": 463, "id": 68, "annotation": null}, {"text": "SEM", "start": 464, "end": 467, "id": 69, "annotation": null}, {"text": ")", "start": 468, "end": 469, "id": 70, "annotation": null}, {"text": ",", "start": 470, "end": 471, "id": 71, "annotation": null}, {"text": "X", "start": 472, "end": 473, "id": 72, "annotation": null}, {"text": "-", "start": 474, "end": 475, "id": 73, "annotation": null}, {"text": "ray", "start": 476, "end": 479, "id": 74, "annotation": null}, {"text": "diffraction", "start": 480, "end": 491, "id": 75, "annotation": null}, {"text": "(", "start": 492, "end": 493, "id": 76, "annotation": null}, {"text": "XRD", "start": 494, "end": 497, "id": 77, "annotation": null}, {"text": ")", "start": 498, "end": 499, "id": 78, "annotation": null}, {"text": ",", "start": 500, "end": 501, "id": 79, "annotation": null}, {"text": "transmission", "start": 502, "end": 514, "id": 80, "annotation": null}, {"text": "electron", "start": 515, "end": 523, "id": 81, "annotation": null}, {"text": "microscopy", "start": 524, "end": 534, "id": 82, "annotation": null}, {"text": "(", "start": 535, "end": 536, "id": 83, "annotation": null}, {"text": "TEM", "start": 537, "end": 540, "id": 84, "annotation": null}, {"text": ")", "start": 541, "end": 542, "id": 85, "annotation": null}, {"text": ",", "start": 543, "end": 544, "id": 86, "annotation": null}, {"text": "X", "start": 545, "end": 546, "id": 87, "annotation": null}, {"text": "-", "start": 547, "end": 548, "id": 88, "annotation": null}, {"text": "ray", "start": 549, "end": 552, "id": 89, "annotation": null}, {"text": "photoelectron", "start": 553, "end": 566, "id": 90, "annotation": null}, {"text": "spectroscopy", "start": 567, "end": 579, "id": 91, "annotation": null}, {"text": "(", "start": 580, "end": 581, "id": 92, "annotation": null}, {"text": "XPS", "start": 582, "end": 585, "id": 93, "annotation": null}, {"text": ")", "start": 586, "end": 587, "id": 94, "annotation": null}, {"text": ",", "start": 588, "end": 589, "id": 95, "annotation": null}, {"text": "UV", "start": 590, "end": 592, "id": 96, "annotation": null}, {"text": "\u2013", "start": 593, "end": 594, "id": 97, "annotation": null}, {"text": "Vis", "start": 595, "end": 598, "id": 98, "annotation": null}, {"text": "spectroscopy", "start": 599, "end": 611, "id": 99, "annotation": null}, {"text": ",", "start": 612, "end": 613, "id": 100, "annotation": null}, {"text": "Brunauer", "start": 614, "end": 622, "id": 101, "annotation": null}, {"text": "-", "start": 623, "end": 624, "id": 102, "annotation": null}, {"text": "Emmett", "start": 625, "end": 631, "id": 103, "annotation": null}, {"text": "-", "start": 632, "end": 633, "id": 104, "annotation": null}, {"text": "Teller", "start": 634, "end": 640, "id": 105, "annotation": null}, {"text": "(", "start": 641, "end": 642, "id": 106, "annotation": null}, {"text": "BET", "start": 643, "end": 646, "id": 107, "annotation": null}, {"text": ")", "start": 647, "end": 648, "id": 108, "annotation": null}, {"text": "nitrogen", "start": 649, "end": 657, "id": 109, "annotation": null}, {"text": "adsorption", "start": 658, "end": 668, "id": 110, "annotation": null}, {"text": "-", "start": 669, "end": 670, "id": 111, "annotation": null}, {"text": "desorption", "start": 671, "end": 681, "id": 112, "annotation": null}, {"text": "and", "start": 682, "end": 685, "id": 113, "annotation": null}, {"text": "Fourier", "start": 686, "end": 693, "id": 114, "annotation": null}, {"text": "transform", "start": 694, "end": 703, "id": 115, "annotation": null}, {"text": "infrared", "start": 704, "end": 712, "id": 116, "annotation": null}, {"text": "spectroscopy", "start": 713, "end": 725, "id": 117, "annotation": null}, {"text": "(", "start": 726, "end": 727, "id": 118, "annotation": null}, {"text": "FTIR", "start": 728, "end": 732, "id": 119, "annotation": null}, {"text": ")", "start": 733, "end": 734, "id": 120, "annotation": null}, {"text": ",", "start": 735, "end": 736, "id": 121, "annotation": null}, {"text": "respectively", "start": 737, "end": 749, "id": 122, "annotation": null}, {"text": ".", "start": 750, "end": 751, "id": 123, "annotation": null}], [{"text": "Pure", "start": 752, "end": 756, "id": 124, "annotation": null}, {"text": "and", "start": 757, "end": 760, "id": 125, "annotation": null}, {"text": "Al", "start": 761, "end": 763, "id": 126, "annotation": "DOPANT"}, {"text": "-", "start": 764, "end": 765, "id": 127, "annotation": null}, {"text": "doped", "start": 766, "end": 771, "id": 128, "annotation": null}, {"text": "ZnO", "start": 772, "end": 775, "id": 129, "annotation": "BASEMAT"}, {"text": "have", "start": 776, "end": 780, "id": 130, "annotation": null}, {"text": "coral", "start": 781, "end": 786, "id": 131, "annotation": null}, {"text": "-", "start": 787, "end": 788, "id": 132, "annotation": null}, {"text": "like", "start": 789, "end": 793, "id": 133, "annotation": null}, {"text": "shape", "start": 794, "end": 799, "id": 134, "annotation": null}, {"text": "with", "start": 800, "end": 804, "id": 135, "annotation": null}, {"text": "the", "start": 805, "end": 808, "id": 136, "annotation": null}, {"text": "pores", "start": 809, "end": 814, "id": 137, "annotation": null}, {"text": "size", "start": 815, "end": 819, "id": 138, "annotation": null}, {"text": "ranging", "start": 820, "end": 827, "id": 139, "annotation": null}, {"text": "from", "start": 828, "end": 832, "id": 140, "annotation": null}, {"text": "several", "start": 833, "end": 840, "id": 141, "annotation": null}, {"text": "nanometers", "start": 841, "end": 851, "id": 142, "annotation": null}, {"text": "to", "start": 852, "end": 854, "id": 143, "annotation": null}, {"text": "ten", "start": 855, "end": 858, "id": 144, "annotation": null}, {"text": "micrometers", "start": 859, "end": 870, "id": 145, "annotation": null}, {"text": ".", "start": 871, "end": 872, "id": 146, "annotation": null}], [{"text": "The", "start": 873, "end": 876, "id": 147, "annotation": null}, {"text": "walls", "start": 877, "end": 882, "id": 148, "annotation": null}, {"text": "of", "start": 883, "end": 885, "id": 149, "annotation": null}, {"text": "the", "start": 886, "end": 889, "id": 150, "annotation": null}, {"text": "macropores", "start": 890, "end": 900, "id": 151, "annotation": null}, {"text": "contain", "start": 901, "end": 908, "id": 152, "annotation": null}, {"text": "smaller", "start": 909, "end": 916, "id": 153, "annotation": null}, {"text": "nanopores", "start": 917, "end": 926, "id": 154, "annotation": null}, {"text": ",", "start": 927, "end": 928, "id": 155, "annotation": null}, {"text": "exhibiting", "start": 929, "end": 939, "id": 156, "annotation": null}, {"text": "the", "start": 940, "end": 943, "id": 157, "annotation": null}, {"text": "hierarchically", "start": 944, "end": 958, "id": 158, "annotation": null}, {"text": "porous", "start": 959, "end": 965, "id": 159, "annotation": null}, {"text": "morphology", "start": 966, "end": 976, "id": 160, "annotation": null}, {"text": ".", "start": 977, "end": 978, "id": 161, "annotation": null}], [{"text": "The", "start": 979, "end": 982, "id": 162, "annotation": null}, {"text": "catalytic", "start": 983, "end": 992, "id": 163, "annotation": null}, {"text": "activities", "start": 993, "end": 1003, "id": 164, "annotation": null}, {"text": "of", "start": 1004, "end": 1006, "id": 165, "annotation": null}, {"text": "the", "start": 1007, "end": 1010, "id": 166, "annotation": null}, {"text": "as", "start": 1011, "end": 1013, "id": 167, "annotation": null}, {"text": "-", "start": 1014, "end": 1015, "id": 168, "annotation": null}, {"text": "synthesized", "start": 1016, "end": 1027, "id": 169, "annotation": null}, {"text": "samples", "start": 1028, "end": 1035, "id": 170, "annotation": null}, {"text": "were", "start": 1036, "end": 1040, "id": 171, "annotation": null}, {"text": "tested", "start": 1041, "end": 1047, "id": 172, "annotation": null}, {"text": "by", "start": 1048, "end": 1050, "id": 173, "annotation": null}, {"text": "measuring", "start": 1051, "end": 1060, "id": 174, "annotation": null}, {"text": "the", "start": 1061, "end": 1064, "id": 175, "annotation": null}, {"text": "degradation", "start": 1065, "end": 1076, "id": 176, "annotation": null}, {"text": "efficiency", "start": 1077, "end": 1087, "id": 177, "annotation": null}, {"text": "of", "start": 1088, "end": 1090, "id": 178, "annotation": null}, {"text": "azo", "start": 1091, "end": 1094, "id": 179, "annotation": null}, {"text": "dye", "start": 1095, "end": 1098, "id": 180, "annotation": null}, {"text": "Congo", "start": 1099, "end": 1104, "id": 181, "annotation": null}, {"text": "red", "start": 1105, "end": 1108, "id": 182, "annotation": null}, {"text": "(", "start": 1109, "end": 1110, "id": 183, "annotation": null}, {"text": "CR", "start": 1111, "end": 1113, "id": 184, "annotation": null}, {"text": ")", "start": 1114, "end": 1115, "id": 185, "annotation": null}, {"text": "under", "start": 1116, "end": 1121, "id": 186, "annotation": null}, {"text": "visible", "start": 1122, "end": 1129, "id": 187, "annotation": null}, {"text": "light", "start": 1130, "end": 1135, "id": 188, "annotation": null}, {"text": ",", "start": 1136, "end": 1137, "id": 189, "annotation": null}, {"text": "UV", "start": 1138, "end": 1140, "id": 190, "annotation": null}, {"text": "light", "start": 1141, "end": 1146, "id": 191, "annotation": null}, {"text": "and", "start": 1147, "end": 1150, "id": 192, "annotation": null}, {"text": "dark", "start": 1151, "end": 1155, "id": 193, "annotation": null}, {"text": "light", "start": 1156, "end": 1161, "id": 194, "annotation": null}, {"text": ",", "start": 1162, "end": 1163, "id": 195, "annotation": null}, {"text": "respectively", "start": 1164, "end": 1176, "id": 196, "annotation": null}, {"text": ".", "start": 1177, "end": 1178, "id": 197, "annotation": null}], [{"text": "The", "start": 1179, "end": 1182, "id": 198, "annotation": null}, {"text": "results", "start": 1183, "end": 1190, "id": 199, "annotation": null}, {"text": "show", "start": 1191, "end": 1195, "id": 200, "annotation": null}, {"text": "excellent", "start": 1196, "end": 1205, "id": 201, "annotation": null}, {"text": "removal", "start": 1206, "end": 1213, "id": 202, "annotation": null}, {"text": "capacity", "start": 1214, "end": 1222, "id": 203, "annotation": null}, {"text": "for", "start": 1223, "end": 1226, "id": 204, "annotation": null}, {"text": "organic", "start": 1227, "end": 1234, "id": 205, "annotation": null}, {"text": "pollutants", "start": 1235, "end": 1245, "id": 206, "annotation": null}, {"text": "CR", "start": 1246, "end": 1248, "id": 207, "annotation": null}, {"text": "in", "start": 1249, "end": 1251, "id": 208, "annotation": null}, {"text": "wastewater", "start": 1252, "end": 1262, "id": 209, "annotation": null}, {"text": ".", "start": 1263, "end": 1264, "id": 210, "annotation": null}], [{"text": "Macro-/nanoporous", "start": 1265, "end": 1282, "id": 211, "annotation": null}, {"text": "Al", "start": 1283, "end": 1285, "id": 212, "annotation": "DOPANT"}, {"text": "-", "start": 1286, "end": 1287, "id": 213, "annotation": null}, {"text": "ZnO", "start": 1288, "end": 1291, "id": 214, "annotation": "BASEMAT"}, {"text": "with", "start": 1292, "end": 1296, "id": 215, "annotation": null}, {"text": "different", "start": 1297, "end": 1306, "id": 216, "annotation": null}, {"text": "contents", "start": 1307, "end": 1315, "id": 217, "annotation": null}, {"text": "of", "start": 1316, "end": 1318, "id": 218, "annotation": null}, {"text": "Al", "start": 1319, "end": 1321, "id": 219, "annotation": null}, {"text": "have", "start": 1322, "end": 1326, "id": 220, "annotation": null}, {"text": "better", "start": 1327, "end": 1333, "id": 221, "annotation": null}, {"text": "catalytic", "start": 1334, "end": 1343, "id": 222, "annotation": null}, {"text": "degradation", "start": 1344, "end": 1355, "id": 223, "annotation": null}, {"text": "efficiency", "start": 1356, "end": 1366, "id": 224, "annotation": null}, {"text": "than", "start": 1367, "end": 1371, "id": 225, "annotation": null}, {"text": "pure", "start": 1372, "end": 1376, "id": 226, "annotation": null}, {"text": "ZnO.", "start": 1377, "end": 1381, "id": 227, "annotation": null}], [{"text": "The", "start": 1382, "end": 1385, "id": 228, "annotation": null}, {"text": "experimental", "start": 1386, "end": 1398, "id": 229, "annotation": null}, {"text": "results", "start": 1399, "end": 1406, "id": 230, "annotation": null}, {"text": "indicate", "start": 1407, "end": 1415, "id": 231, "annotation": null}, {"text": "the", "start": 1416, "end": 1419, "id": 232, "annotation": null}, {"text": "potential", "start": 1420, "end": 1429, "id": 233, "annotation": null}, {"text": "use", "start": 1430, "end": 1433, "id": 234, "annotation": null}, {"text": "of", "start": 1434, "end": 1436, "id": 235, "annotation": null}, {"text": "macro-/nanoporous", "start": 1437, "end": 1454, "id": 236, "annotation": null}, {"text": "Al", "start": 1455, "end": 1457, "id": 237, "annotation": "DOPANT"}, {"text": "-", "start": 1458, "end": 1459, "id": 238, "annotation": null}, {"text": "ZnO", "start": 1460, "end": 1463, "id": 239, "annotation": "BASEMAT"}, {"text": "for", "start": 1464, "end": 1467, "id": 240, "annotation": null}, {"text": "catalytic", "start": 1468, "end": 1477, "id": 241, "annotation": null}, {"text": "degradation", "start": 1478, "end": 1489, "id": 242, "annotation": null}, {"text": "of", "start": 1490, "end": 1492, "id": 243, "annotation": null}, {"text": "Congo", "start": 1493, "end": 1498, "id": 244, "annotation": null}, {"text": "red", "start": 1499, "end": 1502, "id": 245, "annotation": null}, {"text": "dye", "start": 1503, "end": 1506, "id": 246, "annotation": null}, {"text": "in", "start": 1507, "end": 1509, "id": 247, "annotation": null}, {"text": "different", "start": 1510, "end": 1519, "id": 248, "annotation": null}, {"text": "environments", "start": 1520, "end": 1532, "id": 249, "annotation": null}, {"text": ",", "start": 1533, "end": 1534, "id": 250, "annotation": null}, {"text": "which", "start": 1535, "end": 1540, "id": 251, "annotation": null}, {"text": "provides", "start": 1541, "end": 1549, "id": 252, "annotation": null}, {"text": "a", "start": 1550, "end": 1551, "id": 253, "annotation": null}, {"text": "potentially", "start": 1552, "end": 1563, "id": 254, "annotation": null}, {"text": "low", "start": 1564, "end": 1567, "id": 255, "annotation": null}, {"text": "-", "start": 1568, "end": 1569, "id": 256, "annotation": null}, {"text": "cost", "start": 1570, "end": 1574, "id": 257, "annotation": null}, {"text": "alternative", "start": 1575, "end": 1586, "id": 258, "annotation": null}, {"text": "for", "start": 1587, "end": 1590, "id": 259, "annotation": null}, {"text": "the", "start": 1591, "end": 1594, "id": 260, "annotation": null}, {"text": "remediation", "start": 1595, "end": 1606, "id": 261, "annotation": null}, {"text": "of", "start": 1607, "end": 1609, "id": 262, "annotation": null}, {"text": "azo", "start": 1610, "end": 1613, "id": 263, "annotation": null}, {"text": "-", "start": 1614, "end": 1615, "id": 264, "annotation": null}, {"text": "dye", "start": 1616, "end": 1619, "id": 265, "annotation": null}, {"text": "effluents", "start": 1620, "end": 1629, "id": 266, "annotation": null}, {"text": ".", "start": 1630, "end": 1631, "id": 267, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "The enhanced intensity and lengthened lifetime of 1.54 \u03bcm emission were observed for Er:LiNbO3 crystal codoped with Zn2+ ions. The ZnO codoping led to the reduction of the green upconversion emission in Er:LiNbO3 crystals. The decay trace of the 4S 3/2\u21924I15/2 was obviously nonexponential for Er:LiNbO3 codoped with 0 and 3 mol. ZnO, but became exponential for one codoped with 6 mol. ZnO. The OH- absorption spectra showed after codoping with Zn2+ ions, the OH- absorption peaking position shifted from \u223c3495 to 3484 cm-1, and the absorption cross section decreased. These spectroscopic characteristics suggested that the improvement of 1.54 \u03bcm emission was attributed to the reduction of Er 3+ cluster sites.", "meta": {"doi": "10.1016/S1002-0721(10)60632-1"}, "_input_hash": 1549119873, "_task_hash": 1930904732, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "enhanced", "start": 4, "end": 12, "id": 1, "annotation": null}, {"text": "intensity", "start": 13, "end": 22, "id": 2, "annotation": null}, {"text": "and", "start": 23, "end": 26, "id": 3, "annotation": null}, {"text": "lengthened", "start": 27, "end": 37, "id": 4, "annotation": null}, {"text": "lifetime", "start": 38, "end": 46, "id": 5, "annotation": null}, {"text": "of", "start": 47, "end": 49, "id": 6, "annotation": null}, {"text": "1.54", "start": 50, "end": 54, "id": 7, "annotation": null}, {"text": "\u03bcm", "start": 55, "end": 57, "id": 8, "annotation": null}, {"text": "emission", "start": 58, "end": 66, "id": 9, "annotation": null}, {"text": "were", "start": 67, "end": 71, "id": 10, "annotation": null}, {"text": "observed", "start": 72, "end": 80, "id": 11, "annotation": null}, {"text": "for", "start": 81, "end": 84, "id": 12, "annotation": null}, {"text": "Er", "start": 85, "end": 87, "id": 13, "annotation": "DOPANT"}, {"text": ":", "start": 88, "end": 89, "id": 14, "annotation": null}, {"text": "LiNbO3", "start": 90, "end": 96, "id": 15, "annotation": "BASEMAT"}, {"text": "crystal", "start": 97, "end": 104, "id": 16, "annotation": null}, {"text": "codoped", "start": 105, "end": 112, "id": 17, "annotation": null}, {"text": "with", "start": 113, "end": 117, "id": 18, "annotation": null}, {"text": "Zn2", "start": 118, "end": 121, "id": 19, "annotation": "DOPANT"}, {"text": "+", "start": 122, "end": 123, "id": 20, "annotation": "DOPANT"}, {"text": "ions", "start": 124, "end": 128, "id": 21, "annotation": null}, {"text": ".", "start": 129, "end": 130, "id": 22, "annotation": null}], [{"text": "The", "start": 131, "end": 134, "id": 23, "annotation": null}, {"text": "ZnO", "start": 135, "end": 138, "id": 24, "annotation": "DOPANT"}, {"text": "codoping", "start": 139, "end": 147, "id": 25, "annotation": null}, {"text": "led", "start": 148, "end": 151, "id": 26, "annotation": null}, {"text": "to", "start": 152, "end": 154, "id": 27, "annotation": null}, {"text": "the", "start": 155, "end": 158, "id": 28, "annotation": null}, {"text": "reduction", "start": 159, "end": 168, "id": 29, "annotation": null}, {"text": "of", "start": 169, "end": 171, "id": 30, "annotation": null}, {"text": "the", "start": 172, "end": 175, "id": 31, "annotation": null}, {"text": "green", "start": 176, "end": 181, "id": 32, "annotation": null}, {"text": "upconversion", "start": 182, "end": 194, "id": 33, "annotation": null}, {"text": "emission", "start": 195, "end": 203, "id": 34, "annotation": null}, {"text": "in", "start": 204, "end": 206, "id": 35, "annotation": null}, {"text": "Er", "start": 207, "end": 209, "id": 36, "annotation": "DOPANT"}, {"text": ":", "start": 210, "end": 211, "id": 37, "annotation": null}, {"text": "LiNbO3", "start": 212, "end": 218, "id": 38, "annotation": "BASEMAT"}, {"text": "crystals", "start": 219, "end": 227, "id": 39, "annotation": null}, {"text": ".", "start": 228, "end": 229, "id": 40, "annotation": null}], [{"text": "The", "start": 230, "end": 233, "id": 41, "annotation": null}, {"text": "decay", "start": 234, "end": 239, "id": 42, "annotation": null}, {"text": "trace", "start": 240, "end": 245, "id": 43, "annotation": null}, {"text": "of", "start": 246, "end": 248, "id": 44, "annotation": null}, {"text": "the", "start": 249, "end": 252, "id": 45, "annotation": null}, {"text": "4S", "start": 253, "end": 255, "id": 46, "annotation": null}, {"text": "3/2\u21924I15/2", "start": 256, "end": 266, "id": 47, "annotation": null}, {"text": "was", "start": 267, "end": 270, "id": 48, "annotation": null}, {"text": "obviously", "start": 271, "end": 280, "id": 49, "annotation": null}, {"text": "nonexponential", "start": 281, "end": 295, "id": 50, "annotation": null}, {"text": "for", "start": 296, "end": 299, "id": 51, "annotation": null}, {"text": "Er", "start": 300, "end": 302, "id": 52, "annotation": "DOPANT"}, {"text": ":", "start": 303, "end": 304, "id": 53, "annotation": null}, {"text": "LiNbO3", "start": 305, "end": 311, "id": 54, "annotation": "BASEMAT"}, {"text": "codoped", "start": 312, "end": 319, "id": 55, "annotation": null}, {"text": "with", "start": 320, "end": 324, "id": 56, "annotation": null}, {"text": "0", "start": 325, "end": 326, "id": 57, "annotation": "DOPMODQ"}, {"text": "and", "start": 327, "end": 330, "id": 58, "annotation": null}, {"text": "3", "start": 331, "end": 332, "id": 59, "annotation": "DOPMODQ"}, {"text": "mol", "start": 333, "end": 336, "id": 60, "annotation": null}, {"text": ".", "start": 337, "end": 338, "id": 61, "annotation": "DOPMODQ"}], [{"text": "ZnO", "start": 339, "end": 342, "id": 62, "annotation": "DOPANT"}, {"text": ",", "start": 343, "end": 344, "id": 63, "annotation": null}, {"text": "but", "start": 345, "end": 348, "id": 64, "annotation": null}, {"text": "became", "start": 349, "end": 355, "id": 65, "annotation": null}, {"text": "exponential", "start": 356, "end": 367, "id": 66, "annotation": null}, {"text": "for", "start": 368, "end": 371, "id": 67, "annotation": null}, {"text": "one", "start": 372, "end": 375, "id": 68, "annotation": null}, {"text": "codoped", "start": 376, "end": 383, "id": 69, "annotation": null}, {"text": "with", "start": 384, "end": 388, "id": 70, "annotation": null}, {"text": "6", "start": 389, "end": 390, "id": 71, "annotation": "DOPMODQ"}, {"text": "mol", "start": 391, "end": 394, "id": 72, "annotation": null}, {"text": ".", "start": 395, "end": 396, "id": 73, "annotation": "DOPMODQ"}], [{"text": "ZnO.", "start": 397, "end": 401, "id": 74, "annotation": "DOPANT"}], [{"text": "The", "start": 402, "end": 405, "id": 75, "annotation": null}, {"text": "OH-", "start": 406, "end": 409, "id": 76, "annotation": null}, {"text": "absorption", "start": 410, "end": 420, "id": 77, "annotation": null}, {"text": "spectra", "start": 421, "end": 428, "id": 78, "annotation": null}, {"text": "showed", "start": 429, "end": 435, "id": 79, "annotation": null}, {"text": "after", "start": 436, "end": 441, "id": 80, "annotation": null}, {"text": "codoping", "start": 442, "end": 450, "id": 81, "annotation": null}, {"text": "with", "start": 451, "end": 455, "id": 82, "annotation": null}, {"text": "Zn2", "start": 456, "end": 459, "id": 83, "annotation": "DOPANT"}, {"text": "+", "start": 460, "end": 461, "id": 84, "annotation": "DOPANT"}, {"text": "ions", "start": 462, "end": 466, "id": 85, "annotation": null}, {"text": ",", "start": 467, "end": 468, "id": 86, "annotation": null}, {"text": "the", "start": 469, "end": 472, "id": 87, "annotation": null}, {"text": "OH-", "start": 473, "end": 476, "id": 88, "annotation": null}, {"text": "absorption", "start": 477, "end": 487, "id": 89, "annotation": null}, {"text": "peaking", "start": 488, "end": 495, "id": 90, "annotation": null}, {"text": "position", "start": 496, "end": 504, "id": 91, "annotation": null}, {"text": "shifted", "start": 505, "end": 512, "id": 92, "annotation": null}, {"text": "from", "start": 513, "end": 517, "id": 93, "annotation": null}, {"text": "\u223c3495", "start": 518, "end": 523, "id": 94, "annotation": null}, {"text": "to", "start": 524, "end": 526, "id": 95, "annotation": null}, {"text": "3484", "start": 527, "end": 531, "id": 96, "annotation": null}, {"text": "cm-1", "start": 532, "end": 536, "id": 97, "annotation": null}, {"text": ",", "start": 537, "end": 538, "id": 98, "annotation": null}, {"text": "and", "start": 539, "end": 542, "id": 99, "annotation": null}, {"text": "the", "start": 543, "end": 546, "id": 100, "annotation": null}, {"text": "absorption", "start": 547, "end": 557, "id": 101, "annotation": null}, {"text": "cross", "start": 558, "end": 563, "id": 102, "annotation": null}, {"text": "section", "start": 564, "end": 571, "id": 103, "annotation": null}, {"text": "decreased", "start": 572, "end": 581, "id": 104, "annotation": null}, {"text": ".", "start": 582, "end": 583, "id": 105, "annotation": null}], [{"text": "These", "start": 584, "end": 589, "id": 106, "annotation": null}, {"text": "spectroscopic", "start": 590, "end": 603, "id": 107, "annotation": null}, {"text": "characteristics", "start": 604, "end": 619, "id": 108, "annotation": null}, {"text": "suggested", "start": 620, "end": 629, "id": 109, "annotation": null}, {"text": "that", "start": 630, "end": 634, "id": 110, "annotation": null}, {"text": "the", "start": 635, "end": 638, "id": 111, "annotation": null}, {"text": "improvement", "start": 639, "end": 650, "id": 112, "annotation": null}, {"text": "of", "start": 651, "end": 653, "id": 113, "annotation": null}, {"text": "1.54", "start": 654, "end": 658, "id": 114, "annotation": null}, {"text": "\u03bcm", "start": 659, "end": 661, "id": 115, "annotation": null}, {"text": "emission", "start": 662, "end": 670, "id": 116, "annotation": null}, {"text": "was", "start": 671, "end": 674, "id": 117, "annotation": null}, {"text": "attributed", "start": 675, "end": 685, "id": 118, "annotation": null}, {"text": "to", "start": 686, "end": 688, "id": 119, "annotation": null}, {"text": "the", "start": 689, "end": 692, "id": 120, "annotation": null}, {"text": "reduction", "start": 693, "end": 702, "id": 121, "annotation": null}, {"text": "of", "start": 703, "end": 705, "id": 122, "annotation": null}, {"text": "Er", "start": 706, "end": 708, "id": 123, "annotation": null}, {"text": "3", "start": 709, "end": 710, "id": 124, "annotation": null}, {"text": "+", "start": 711, "end": 712, "id": 125, "annotation": null}, {"text": "cluster", "start": 713, "end": 720, "id": 126, "annotation": null}, {"text": "sites", "start": 721, "end": 726, "id": 127, "annotation": null}, {"text": ".", "start": 727, "end": 728, "id": 128, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Vanadium-doped strontium germanate with rod-shaped morphology and different vanadium contents has been synthesized by a facile hydrothermal process. The obtained vanadium-doped strontium germanate has been characterized by X-ray diffraction (XRD), scanning electron microscopy (SEM) and ultraviolet (UV) diffuse reflectance spectra. The phase of the vanadium-doped strontium germanate depends on the vanadium content. SEM observations show that the vanadium-doped strontium germanate comprises a rod-shaped morphology with diameter and length of nanoscale/microscale size and longer than 10 \u03bcm, respectively. The band gap of the vanadium-doped strontium germanate depends on the vanadium content and increases significantly from 2.74 eV to 3.02 eV with the vanadium content increasing from 1 wt% to 10 wt%. Vanadium-doped strontium germanate shows highly efficient photocatalytic activity for the degradation of methylene blue under sunlight irradiation. The results show that vanadium-doped strontium germanate is very promising for visible-light photocatalytic applications. This journal is", "meta": {"doi": "10.1039/c4ra07324j"}, "_input_hash": 824141467, "_task_hash": -841154483, "tokens": [[{"text": "Vanadium", "start": 35, "end": 43, "id": 6, "annotation": "DOPANT"}, {"text": "-", "start": 44, "end": 45, "id": 7, "annotation": null}, {"text": "doped", "start": 46, "end": 51, "id": 8, "annotation": null}, {"text": "strontium", "start": 52, "end": 61, "id": 9, "annotation": "BASEMAT"}, {"text": "germanate", "start": 62, "end": 71, "id": 10, "annotation": "BASEMAT"}, {"text": "with", "start": 72, "end": 76, "id": 11, "annotation": null}, {"text": "rod", "start": 77, "end": 80, "id": 12, "annotation": null}, {"text": "-", "start": 81, "end": 82, "id": 13, "annotation": null}, {"text": "shaped", "start": 83, "end": 89, "id": 14, "annotation": null}, {"text": "morphology", "start": 90, "end": 100, "id": 15, "annotation": null}, {"text": "and", "start": 101, "end": 104, "id": 16, "annotation": null}, {"text": "different", "start": 105, "end": 114, "id": 17, "annotation": null}, {"text": "vanadium", "start": 115, "end": 123, "id": 18, "annotation": null}, {"text": "contents", "start": 124, "end": 132, "id": 19, "annotation": null}, {"text": "has", "start": 133, "end": 136, "id": 20, "annotation": null}, {"text": "been", "start": 137, "end": 141, "id": 21, "annotation": null}, {"text": "synthesized", "start": 142, "end": 153, "id": 22, "annotation": null}, {"text": "by", "start": 154, "end": 156, "id": 23, "annotation": null}, {"text": "a", "start": 157, "end": 158, "id": 24, "annotation": null}, {"text": "facile", "start": 159, "end": 165, "id": 25, "annotation": null}, {"text": "hydrothermal", "start": 166, "end": 178, "id": 26, "annotation": null}, {"text": "process", "start": 179, "end": 186, "id": 27, "annotation": null}, {"text": ".", "start": 187, "end": 188, "id": 28, "annotation": null}], [{"text": "The", "start": 189, "end": 192, "id": 29, "annotation": null}, {"text": "obtained", "start": 193, "end": 201, "id": 30, "annotation": null}, {"text": "vanadium", "start": 202, "end": 210, "id": 31, "annotation": "DOPANT"}, {"text": "-", "start": 211, "end": 212, "id": 32, "annotation": null}, {"text": "doped", "start": 213, "end": 218, "id": 33, "annotation": null}, {"text": "strontium", "start": 219, "end": 228, "id": 34, "annotation": "BASEMAT"}, {"text": "germanate", "start": 229, "end": 238, "id": 35, "annotation": "BASEMAT"}, {"text": "has", "start": 239, "end": 242, "id": 36, "annotation": null}, {"text": "been", "start": 243, "end": 247, "id": 37, "annotation": null}, {"text": "characterized", "start": 248, "end": 261, "id": 38, "annotation": null}, {"text": "by", "start": 262, "end": 264, "id": 39, "annotation": null}, {"text": "X", "start": 265, "end": 266, "id": 40, "annotation": null}, {"text": "-", "start": 267, "end": 268, "id": 41, "annotation": null}, {"text": "ray", "start": 269, "end": 272, "id": 42, "annotation": null}, {"text": "diffraction", "start": 273, "end": 284, "id": 43, "annotation": null}, {"text": "(", "start": 285, "end": 286, "id": 44, "annotation": null}, {"text": "XRD", "start": 287, "end": 290, "id": 45, "annotation": null}, {"text": ")", "start": 291, "end": 292, "id": 46, "annotation": null}, {"text": ",", "start": 293, "end": 294, "id": 47, "annotation": null}, {"text": "scanning", "start": 295, "end": 303, "id": 48, "annotation": null}, {"text": "electron", "start": 304, "end": 312, "id": 49, "annotation": null}, {"text": "microscopy", "start": 313, "end": 323, "id": 50, "annotation": null}, {"text": "(", "start": 324, "end": 325, "id": 51, "annotation": null}, {"text": "SEM", "start": 326, "end": 329, "id": 52, "annotation": null}, {"text": ")", "start": 330, "end": 331, "id": 53, "annotation": null}, {"text": "and", "start": 332, "end": 335, "id": 54, "annotation": null}, {"text": "ultraviolet", "start": 336, "end": 347, "id": 55, "annotation": null}, {"text": "(", "start": 348, "end": 349, "id": 56, "annotation": null}, {"text": "UV", "start": 350, "end": 352, "id": 57, "annotation": null}, {"text": ")", "start": 353, "end": 354, "id": 58, "annotation": null}, {"text": "diffuse", "start": 355, "end": 362, "id": 59, "annotation": null}, {"text": "reflectance", "start": 363, "end": 374, "id": 60, "annotation": null}, {"text": "spectra", "start": 375, "end": 382, "id": 61, "annotation": null}, {"text": ".", "start": 383, "end": 384, "id": 62, "annotation": null}], [{"text": "The", "start": 385, "end": 388, "id": 63, "annotation": null}, {"text": "phase", "start": 389, "end": 394, "id": 64, "annotation": null}, {"text": "of", "start": 395, "end": 397, "id": 65, "annotation": null}, {"text": "the", "start": 398, "end": 401, "id": 66, "annotation": null}, {"text": "vanadium", "start": 402, "end": 410, "id": 67, "annotation": "DOPANT"}, {"text": "-", "start": 411, "end": 412, "id": 68, "annotation": null}, {"text": "doped", "start": 413, "end": 418, "id": 69, "annotation": null}, {"text": "strontium", "start": 419, "end": 428, "id": 70, "annotation": "BASEMAT"}, {"text": "germanate", "start": 429, "end": 438, "id": 71, "annotation": "BASEMAT"}, {"text": "depends", "start": 439, "end": 446, "id": 72, "annotation": null}, {"text": "on", "start": 447, "end": 449, "id": 73, "annotation": null}, {"text": "the", "start": 450, "end": 453, "id": 74, "annotation": null}, {"text": "vanadium", "start": 454, "end": 462, "id": 75, "annotation": null}, {"text": "content", "start": 463, "end": 470, "id": 76, "annotation": null}, {"text": ".", "start": 471, "end": 472, "id": 77, "annotation": null}], [{"text": "SEM", "start": 473, "end": 476, "id": 78, "annotation": null}, {"text": "observations", "start": 477, "end": 489, "id": 79, "annotation": null}, {"text": "show", "start": 490, "end": 494, "id": 80, "annotation": null}, {"text": "that", "start": 495, "end": 499, "id": 81, "annotation": null}, {"text": "the", "start": 500, "end": 503, "id": 82, "annotation": null}, {"text": "vanadium", "start": 504, "end": 512, "id": 83, "annotation": "DOPANT"}, {"text": "-", "start": 513, "end": 514, "id": 84, "annotation": null}, {"text": "doped", "start": 515, "end": 520, "id": 85, "annotation": null}, {"text": "strontium", "start": 521, "end": 530, "id": 86, "annotation": "BASEMAT"}, {"text": "germanate", "start": 531, "end": 540, "id": 87, "annotation": "BASEMAT"}, {"text": "comprises", "start": 541, "end": 550, "id": 88, "annotation": null}, {"text": "a", "start": 551, "end": 552, "id": 89, "annotation": null}, {"text": "rod", "start": 553, "end": 556, "id": 90, "annotation": null}, {"text": "-", "start": 557, "end": 558, "id": 91, "annotation": null}, {"text": "shaped", "start": 559, "end": 565, "id": 92, "annotation": null}, {"text": "morphology", "start": 566, "end": 576, "id": 93, "annotation": null}, {"text": "with", "start": 577, "end": 581, "id": 94, "annotation": null}, {"text": "diameter", "start": 582, "end": 590, "id": 95, "annotation": null}, {"text": "and", "start": 591, "end": 594, "id": 96, "annotation": null}, {"text": "length", "start": 595, "end": 601, "id": 97, "annotation": null}, {"text": "of", "start": 602, "end": 604, "id": 98, "annotation": null}, {"text": "nanoscale", "start": 605, "end": 614, "id": 99, "annotation": null}, {"text": "/", "start": 615, "end": 616, "id": 100, "annotation": null}, {"text": "microscale", "start": 617, "end": 627, "id": 101, "annotation": null}, {"text": "size", "start": 628, "end": 632, "id": 102, "annotation": null}, {"text": "and", "start": 633, "end": 636, "id": 103, "annotation": null}, {"text": "longer", "start": 637, "end": 643, "id": 104, "annotation": null}, {"text": "than", "start": 644, "end": 648, "id": 105, "annotation": null}, {"text": "10", "start": 649, "end": 651, "id": 106, "annotation": null}, {"text": "\u03bcm", "start": 652, "end": 654, "id": 107, "annotation": null}, {"text": ",", "start": 655, "end": 656, "id": 108, "annotation": null}, {"text": "respectively", "start": 657, "end": 669, "id": 109, "annotation": null}, {"text": ".", "start": 670, "end": 671, "id": 110, "annotation": null}], [{"text": "The", "start": 672, "end": 675, "id": 111, "annotation": null}, {"text": "band", "start": 676, "end": 680, "id": 112, "annotation": null}, {"text": "gap", "start": 681, "end": 684, "id": 113, "annotation": null}, {"text": "of", "start": 685, "end": 687, "id": 114, "annotation": null}, {"text": "the", "start": 688, "end": 691, "id": 115, "annotation": null}, {"text": "vanadium", "start": 692, "end": 700, "id": 116, "annotation": "DOPANT"}, {"text": "-", "start": 701, "end": 702, "id": 117, "annotation": null}, {"text": "doped", "start": 703, "end": 708, "id": 118, "annotation": null}, {"text": "strontium", "start": 709, "end": 718, "id": 119, "annotation": "BASEMAT"}, {"text": "germanate", "start": 719, "end": 728, "id": 120, "annotation": "BASEMAT"}, {"text": "depends", "start": 729, "end": 736, "id": 121, "annotation": null}, {"text": "on", "start": 737, "end": 739, "id": 122, "annotation": null}, {"text": "the", "start": 740, "end": 743, "id": 123, "annotation": null}, {"text": "vanadium", "start": 744, "end": 752, "id": 124, "annotation": null}, {"text": "content", "start": 753, "end": 760, "id": 125, "annotation": null}, {"text": "and", "start": 761, "end": 764, "id": 126, "annotation": null}, {"text": "increases", "start": 765, "end": 774, "id": 127, "annotation": null}, {"text": "significantly", "start": 775, "end": 788, "id": 128, "annotation": null}, {"text": "from", "start": 789, "end": 793, "id": 129, "annotation": null}, {"text": "2.74", "start": 794, "end": 798, "id": 130, "annotation": null}, {"text": "eV", "start": 799, "end": 801, "id": 131, "annotation": null}, {"text": "to", "start": 802, "end": 804, "id": 132, "annotation": null}, {"text": "3.02", "start": 805, "end": 809, "id": 133, "annotation": null}, {"text": "eV", "start": 810, "end": 812, "id": 134, "annotation": null}, {"text": "with", "start": 813, "end": 817, "id": 135, "annotation": null}, {"text": "the", "start": 818, "end": 821, "id": 136, "annotation": null}, {"text": "vanadium", "start": 822, "end": 830, "id": 137, "annotation": "DOPANT"}, {"text": "content", "start": 831, "end": 838, "id": 138, "annotation": null}, {"text": "increasing", "start": 839, "end": 849, "id": 139, "annotation": "DOPMODQ"}, {"text": "from", "start": 850, "end": 854, "id": 140, "annotation": null}, {"text": "1", "start": 855, "end": 856, "id": 141, "annotation": null}, {"text": "wt%", "start": 857, "end": 860, "id": 142, "annotation": null}, {"text": "to", "start": 861, "end": 863, "id": 143, "annotation": null}, {"text": "10", "start": 864, "end": 866, "id": 144, "annotation": null}, {"text": "wt%", "start": 867, "end": 870, "id": 145, "annotation": "DOPMODQ"}, {"text": ".", "start": 871, "end": 872, "id": 146, "annotation": null}], [{"text": "Vanadium", "start": 873, "end": 881, "id": 147, "annotation": "DOPANT"}, {"text": "-", "start": 882, "end": 883, "id": 148, "annotation": null}, {"text": "doped", "start": 884, "end": 889, "id": 149, "annotation": null}, {"text": "strontium", "start": 890, "end": 899, "id": 150, "annotation": "BASEMAT"}, {"text": "germanate", "start": 900, "end": 909, "id": 151, "annotation": "BASEMAT"}, {"text": "shows", "start": 910, "end": 915, "id": 152, "annotation": null}, {"text": "highly", "start": 916, "end": 922, "id": 153, "annotation": null}, {"text": "efficient", "start": 923, "end": 932, "id": 154, "annotation": null}, {"text": "photocatalytic", "start": 933, "end": 947, "id": 155, "annotation": null}, {"text": "activity", "start": 948, "end": 956, "id": 156, "annotation": null}, {"text": "for", "start": 957, "end": 960, "id": 157, "annotation": null}, {"text": "the", "start": 961, "end": 964, "id": 158, "annotation": null}, {"text": "degradation", "start": 965, "end": 976, "id": 159, "annotation": null}, {"text": "of", "start": 977, "end": 979, "id": 160, "annotation": null}, {"text": "methylene", "start": 980, "end": 989, "id": 161, "annotation": null}, {"text": "blue", "start": 990, "end": 994, "id": 162, "annotation": null}, {"text": "under", "start": 995, "end": 1000, "id": 163, "annotation": null}, {"text": "sunlight", "start": 1001, "end": 1009, "id": 164, "annotation": null}, {"text": "irradiation", "start": 1010, "end": 1021, "id": 165, "annotation": null}, {"text": ".", "start": 1022, "end": 1023, "id": 166, "annotation": null}], [{"text": "The", "start": 1024, "end": 1027, "id": 167, "annotation": null}, {"text": "results", "start": 1028, "end": 1035, "id": 168, "annotation": null}, {"text": "show", "start": 1036, "end": 1040, "id": 169, "annotation": null}, {"text": "that", "start": 1041, "end": 1045, "id": 170, "annotation": null}, {"text": "vanadium", "start": 1046, "end": 1054, "id": 171, "annotation": "DOPANT"}, {"text": "-", "start": 1055, "end": 1056, "id": 172, "annotation": null}, {"text": "doped", "start": 1057, "end": 1062, "id": 173, "annotation": null}, {"text": "strontium", "start": 1063, "end": 1072, "id": 174, "annotation": "BASEMAT"}, {"text": "germanate", "start": 1073, "end": 1082, "id": 175, "annotation": "BASEMAT"}, {"text": "is", "start": 1083, "end": 1085, "id": 176, "annotation": null}, {"text": "very", "start": 1086, "end": 1090, "id": 177, "annotation": null}, {"text": "promising", "start": 1091, "end": 1100, "id": 178, "annotation": null}, {"text": "for", "start": 1101, "end": 1104, "id": 179, "annotation": null}, {"text": "visible", "start": 1105, "end": 1112, "id": 180, "annotation": null}, {"text": "-", "start": 1113, "end": 1114, "id": 181, "annotation": null}, {"text": "light", "start": 1115, "end": 1120, "id": 182, "annotation": null}, {"text": "photocatalytic", "start": 1121, "end": 1135, "id": 183, "annotation": null}, {"text": "applications", "start": 1136, "end": 1148, "id": 184, "annotation": null}, {"text": ".", "start": 1149, "end": 1150, "id": 185, "annotation": null}], [{"text": "This", "start": 1151, "end": 1155, "id": 186, "annotation": null}, {"text": "journal", "start": 1156, "end": 1163, "id": 187, "annotation": null}, {"text": "is", "start": 1164, "end": 1166, "id": 188, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "The enhanced intensity and lengthened lifetime of 1.54 \u03bcm emission were observed for Er:LiNbO3 crystal codoped with Zn2+ ions. The ZnO codoping led to the reduction of the green upconversion emission in Er:LiNbO3 crystals. The decay trace of the 4S 3/2\u21924I15/2 was obviously nonexponential for Er:LiNbO3 codoped with 0 and 3 mol. ZnO, but became exponential for one codoped with 6 mol. ZnO. The OH- absorption spectra showed after codoping with Zn2+ ions, the OH- absorption peaking position shifted from \u223c3495 to 3484 cm-1, and the absorption cross section decreased. These spectroscopic characteristics suggested that the improvement of 1.54 \u03bcm emission was attributed to the reduction of Er 3+ cluster sites.", "meta": {"doi": "10.1016/S1002-0721(10)60632-1"}, "_input_hash": 1549119873, "_task_hash": 1930904732, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "enhanced", "start": 4, "end": 12, "id": 1, "annotation": null}, {"text": "intensity", "start": 13, "end": 22, "id": 2, "annotation": null}, {"text": "and", "start": 23, "end": 26, "id": 3, "annotation": null}, {"text": "lengthened", "start": 27, "end": 37, "id": 4, "annotation": null}, {"text": "lifetime", "start": 38, "end": 46, "id": 5, "annotation": null}, {"text": "of", "start": 47, "end": 49, "id": 6, "annotation": null}, {"text": "1.54", "start": 50, "end": 54, "id": 7, "annotation": null}, {"text": "\u03bcm", "start": 55, "end": 57, "id": 8, "annotation": null}, {"text": "emission", "start": 58, "end": 66, "id": 9, "annotation": null}, {"text": "were", "start": 67, "end": 71, "id": 10, "annotation": null}, {"text": "observed", "start": 72, "end": 80, "id": 11, "annotation": null}, {"text": "for", "start": 81, "end": 84, "id": 12, "annotation": null}, {"text": "Er", "start": 85, "end": 87, "id": 13, "annotation": "DOPANT"}, {"text": ":", "start": 88, "end": 89, "id": 14, "annotation": null}, {"text": "LiNbO3", "start": 90, "end": 96, "id": 15, "annotation": "BASEMAT"}, {"text": "crystal", "start": 97, "end": 104, "id": 16, "annotation": null}, {"text": "codoped", "start": 105, "end": 112, "id": 17, "annotation": null}, {"text": "with", "start": 113, "end": 117, "id": 18, "annotation": null}, {"text": "Zn2", "start": 118, "end": 121, "id": 19, "annotation": "DOPANT"}, {"text": "+", "start": 122, "end": 123, "id": 20, "annotation": "DOPANT"}, {"text": "ions", "start": 124, "end": 128, "id": 21, "annotation": null}, {"text": ".", "start": 129, "end": 130, "id": 22, "annotation": null}], [{"text": "The", "start": 131, "end": 134, "id": 23, "annotation": null}, {"text": "ZnO", "start": 135, "end": 138, "id": 24, "annotation": "DOPANT"}, {"text": "codoping", "start": 139, "end": 147, "id": 25, "annotation": null}, {"text": "led", "start": 148, "end": 151, "id": 26, "annotation": null}, {"text": "to", "start": 152, "end": 154, "id": 27, "annotation": null}, {"text": "the", "start": 155, "end": 158, "id": 28, "annotation": null}, {"text": "reduction", "start": 159, "end": 168, "id": 29, "annotation": null}, {"text": "of", "start": 169, "end": 171, "id": 30, "annotation": null}, {"text": "the", "start": 172, "end": 175, "id": 31, "annotation": null}, {"text": "green", "start": 176, "end": 181, "id": 32, "annotation": null}, {"text": "upconversion", "start": 182, "end": 194, "id": 33, "annotation": null}, {"text": "emission", "start": 195, "end": 203, "id": 34, "annotation": null}, {"text": "in", "start": 204, "end": 206, "id": 35, "annotation": null}, {"text": "Er", "start": 207, "end": 209, "id": 36, "annotation": "DOPANT"}, {"text": ":", "start": 210, "end": 211, "id": 37, "annotation": null}, {"text": "LiNbO3", "start": 212, "end": 218, "id": 38, "annotation": "BASEMAT"}, {"text": "crystals", "start": 219, "end": 227, "id": 39, "annotation": null}, {"text": ".", "start": 228, "end": 229, "id": 40, "annotation": null}], [{"text": "The", "start": 230, "end": 233, "id": 41, "annotation": null}, {"text": "decay", "start": 234, "end": 239, "id": 42, "annotation": null}, {"text": "trace", "start": 240, "end": 245, "id": 43, "annotation": null}, {"text": "of", "start": 246, "end": 248, "id": 44, "annotation": null}, {"text": "the", "start": 249, "end": 252, "id": 45, "annotation": null}, {"text": "4S", "start": 253, "end": 255, "id": 46, "annotation": null}, {"text": "3/2\u21924I15/2", "start": 256, "end": 266, "id": 47, "annotation": null}, {"text": "was", "start": 267, "end": 270, "id": 48, "annotation": null}, {"text": "obviously", "start": 271, "end": 280, "id": 49, "annotation": null}, {"text": "nonexponential", "start": 281, "end": 295, "id": 50, "annotation": null}, {"text": "for", "start": 296, "end": 299, "id": 51, "annotation": null}, {"text": "Er", "start": 300, "end": 302, "id": 52, "annotation": "DOPANT"}, {"text": ":", "start": 303, "end": 304, "id": 53, "annotation": null}, {"text": "LiNbO3", "start": 305, "end": 311, "id": 54, "annotation": "BASEMAT"}, {"text": "codoped", "start": 312, "end": 319, "id": 55, "annotation": null}, {"text": "with", "start": 320, "end": 324, "id": 56, "annotation": null}, {"text": "0", "start": 325, "end": 326, "id": 57, "annotation": "DOPMODQ"}, {"text": "and", "start": 327, "end": 330, "id": 58, "annotation": "DOPMODQ"}, {"text": "3", "start": 331, "end": 332, "id": 59, "annotation": "DOPMODQ"}, {"text": "mol", "start": 333, "end": 336, "id": 60, "annotation": "DOPMODQ"}, {"text": ".", "start": 337, "end": 338, "id": 61, "annotation": "DOPMODQ"}], [{"text": "ZnO", "start": 339, "end": 342, "id": 62, "annotation": "DOPANT"}, {"text": ",", "start": 343, "end": 344, "id": 63, "annotation": null}, {"text": "but", "start": 345, "end": 348, "id": 64, "annotation": null}, {"text": "became", "start": 349, "end": 355, "id": 65, "annotation": null}, {"text": "exponential", "start": 356, "end": 367, "id": 66, "annotation": null}, {"text": "for", "start": 368, "end": 371, "id": 67, "annotation": null}, {"text": "one", "start": 372, "end": 375, "id": 68, "annotation": null}, {"text": "codoped", "start": 376, "end": 383, "id": 69, "annotation": null}, {"text": "with", "start": 384, "end": 388, "id": 70, "annotation": null}, {"text": "6", "start": 389, "end": 390, "id": 71, "annotation": "DOPMODQ"}, {"text": "mol", "start": 391, "end": 394, "id": 72, "annotation": "DOPMODQ"}, {"text": ".", "start": 395, "end": 396, "id": 73, "annotation": "DOPMODQ"}], [{"text": "ZnO.", "start": 397, "end": 401, "id": 74, "annotation": "DOPANT"}], [{"text": "The", "start": 402, "end": 405, "id": 75, "annotation": null}, {"text": "OH-", "start": 406, "end": 409, "id": 76, "annotation": null}, {"text": "absorption", "start": 410, "end": 420, "id": 77, "annotation": null}, {"text": "spectra", "start": 421, "end": 428, "id": 78, "annotation": null}, {"text": "showed", "start": 429, "end": 435, "id": 79, "annotation": null}, {"text": "after", "start": 436, "end": 441, "id": 80, "annotation": null}, {"text": "codoping", "start": 442, "end": 450, "id": 81, "annotation": null}, {"text": "with", "start": 451, "end": 455, "id": 82, "annotation": null}, {"text": "Zn2", "start": 456, "end": 459, "id": 83, "annotation": "DOPANT"}, {"text": "+", "start": 460, "end": 461, "id": 84, "annotation": "DOPANT"}, {"text": "ions", "start": 462, "end": 466, "id": 85, "annotation": null}, {"text": ",", "start": 467, "end": 468, "id": 86, "annotation": null}, {"text": "the", "start": 469, "end": 472, "id": 87, "annotation": null}, {"text": "OH-", "start": 473, "end": 476, "id": 88, "annotation": null}, {"text": "absorption", "start": 477, "end": 487, "id": 89, "annotation": null}, {"text": "peaking", "start": 488, "end": 495, "id": 90, "annotation": null}, {"text": "position", "start": 496, "end": 504, "id": 91, "annotation": null}, {"text": "shifted", "start": 505, "end": 512, "id": 92, "annotation": null}, {"text": "from", "start": 513, "end": 517, "id": 93, "annotation": null}, {"text": "\u223c3495", "start": 518, "end": 523, "id": 94, "annotation": null}, {"text": "to", "start": 524, "end": 526, "id": 95, "annotation": null}, {"text": "3484", "start": 527, "end": 531, "id": 96, "annotation": null}, {"text": "cm-1", "start": 532, "end": 536, "id": 97, "annotation": null}, {"text": ",", "start": 537, "end": 538, "id": 98, "annotation": null}, {"text": "and", "start": 539, "end": 542, "id": 99, "annotation": null}, {"text": "the", "start": 543, "end": 546, "id": 100, "annotation": null}, {"text": "absorption", "start": 547, "end": 557, "id": 101, "annotation": null}, {"text": "cross", "start": 558, "end": 563, "id": 102, "annotation": null}, {"text": "section", "start": 564, "end": 571, "id": 103, "annotation": null}, {"text": "decreased", "start": 572, "end": 581, "id": 104, "annotation": null}, {"text": ".", "start": 582, "end": 583, "id": 105, "annotation": null}], [{"text": "These", "start": 584, "end": 589, "id": 106, "annotation": null}, {"text": "spectroscopic", "start": 590, "end": 603, "id": 107, "annotation": null}, {"text": "characteristics", "start": 604, "end": 619, "id": 108, "annotation": null}, {"text": "suggested", "start": 620, "end": 629, "id": 109, "annotation": null}, {"text": "that", "start": 630, "end": 634, "id": 110, "annotation": null}, {"text": "the", "start": 635, "end": 638, "id": 111, "annotation": null}, {"text": "improvement", "start": 639, "end": 650, "id": 112, "annotation": null}, {"text": "of", "start": 651, "end": 653, "id": 113, "annotation": null}, {"text": "1.54", "start": 654, "end": 658, "id": 114, "annotation": null}, {"text": "\u03bcm", "start": 659, "end": 661, "id": 115, "annotation": null}, {"text": "emission", "start": 662, "end": 670, "id": 116, "annotation": null}, {"text": "was", "start": 671, "end": 674, "id": 117, "annotation": null}, {"text": "attributed", "start": 675, "end": 685, "id": 118, "annotation": null}, {"text": "to", "start": 686, "end": 688, "id": 119, "annotation": null}, {"text": "the", "start": 689, "end": 692, "id": 120, "annotation": null}, {"text": "reduction", "start": 693, "end": 702, "id": 121, "annotation": null}, {"text": "of", "start": 703, "end": 705, "id": 122, "annotation": null}, {"text": "Er", "start": 706, "end": 708, "id": 123, "annotation": null}, {"text": "3", "start": 709, "end": 710, "id": 124, "annotation": null}, {"text": "+", "start": 711, "end": 712, "id": 125, "annotation": null}, {"text": "cluster", "start": 713, "end": 720, "id": 126, "annotation": null}, {"text": "sites", "start": 721, "end": 726, "id": 127, "annotation": null}, {"text": ".", "start": 727, "end": 728, "id": 128, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Vanadium-doped strontium germanate with rod-shaped morphology and different vanadium contents has been synthesized by a facile hydrothermal process. The obtained vanadium-doped strontium germanate has been characterized by X-ray diffraction (XRD), scanning electron microscopy (SEM) and ultraviolet (UV) diffuse reflectance spectra. The phase of the vanadium-doped strontium germanate depends on the vanadium content. SEM observations show that the vanadium-doped strontium germanate comprises a rod-shaped morphology with diameter and length of nanoscale/microscale size and longer than 10 \u03bcm, respectively. The band gap of the vanadium-doped strontium germanate depends on the vanadium content and increases significantly from 2.74 eV to 3.02 eV with the vanadium content increasing from 1 wt% to 10 wt%. Vanadium-doped strontium germanate shows highly efficient photocatalytic activity for the degradation of methylene blue under sunlight irradiation. The results show that vanadium-doped strontium germanate is very promising for visible-light photocatalytic applications. This journal is", "meta": {"doi": "10.1039/c4ra07324j"}, "_input_hash": 824141467, "_task_hash": -841154483, "tokens": [[{"text": "Vanadium", "start": 35, "end": 43, "id": 6, "annotation": "DOPANT"}, {"text": "-", "start": 44, "end": 45, "id": 7, "annotation": null}, {"text": "doped", "start": 46, "end": 51, "id": 8, "annotation": null}, {"text": "strontium", "start": 52, "end": 61, "id": 9, "annotation": "BASEMAT"}, {"text": "germanate", "start": 62, "end": 71, "id": 10, "annotation": "BASEMAT"}, {"text": "with", "start": 72, "end": 76, "id": 11, "annotation": null}, {"text": "rod", "start": 77, "end": 80, "id": 12, "annotation": null}, {"text": "-", "start": 81, "end": 82, "id": 13, "annotation": null}, {"text": "shaped", "start": 83, "end": 89, "id": 14, "annotation": null}, {"text": "morphology", "start": 90, "end": 100, "id": 15, "annotation": null}, {"text": "and", "start": 101, "end": 104, "id": 16, "annotation": null}, {"text": "different", "start": 105, "end": 114, "id": 17, "annotation": null}, {"text": "vanadium", "start": 115, "end": 123, "id": 18, "annotation": null}, {"text": "contents", "start": 124, "end": 132, "id": 19, "annotation": null}, {"text": "has", "start": 133, "end": 136, "id": 20, "annotation": null}, {"text": "been", "start": 137, "end": 141, "id": 21, "annotation": null}, {"text": "synthesized", "start": 142, "end": 153, "id": 22, "annotation": null}, {"text": "by", "start": 154, "end": 156, "id": 23, "annotation": null}, {"text": "a", "start": 157, "end": 158, "id": 24, "annotation": null}, {"text": "facile", "start": 159, "end": 165, "id": 25, "annotation": null}, {"text": "hydrothermal", "start": 166, "end": 178, "id": 26, "annotation": null}, {"text": "process", "start": 179, "end": 186, "id": 27, "annotation": null}, {"text": ".", "start": 187, "end": 188, "id": 28, "annotation": null}], [{"text": "The", "start": 189, "end": 192, "id": 29, "annotation": null}, {"text": "obtained", "start": 193, "end": 201, "id": 30, "annotation": null}, {"text": "vanadium", "start": 202, "end": 210, "id": 31, "annotation": "DOPANT"}, {"text": "-", "start": 211, "end": 212, "id": 32, "annotation": null}, {"text": "doped", "start": 213, "end": 218, "id": 33, "annotation": null}, {"text": "strontium", "start": 219, "end": 228, "id": 34, "annotation": "BASEMAT"}, {"text": "germanate", "start": 229, "end": 238, "id": 35, "annotation": "BASEMAT"}, {"text": "has", "start": 239, "end": 242, "id": 36, "annotation": null}, {"text": "been", "start": 243, "end": 247, "id": 37, "annotation": null}, {"text": "characterized", "start": 248, "end": 261, "id": 38, "annotation": null}, {"text": "by", "start": 262, "end": 264, "id": 39, "annotation": null}, {"text": "X", "start": 265, "end": 266, "id": 40, "annotation": null}, {"text": "-", "start": 267, "end": 268, "id": 41, "annotation": null}, {"text": "ray", "start": 269, "end": 272, "id": 42, "annotation": null}, {"text": "diffraction", "start": 273, "end": 284, "id": 43, "annotation": null}, {"text": "(", "start": 285, "end": 286, "id": 44, "annotation": null}, {"text": "XRD", "start": 287, "end": 290, "id": 45, "annotation": null}, {"text": ")", "start": 291, "end": 292, "id": 46, "annotation": null}, {"text": ",", "start": 293, "end": 294, "id": 47, "annotation": null}, {"text": "scanning", "start": 295, "end": 303, "id": 48, "annotation": null}, {"text": "electron", "start": 304, "end": 312, "id": 49, "annotation": null}, {"text": "microscopy", "start": 313, "end": 323, "id": 50, "annotation": null}, {"text": "(", "start": 324, "end": 325, "id": 51, "annotation": null}, {"text": "SEM", "start": 326, "end": 329, "id": 52, "annotation": null}, {"text": ")", "start": 330, "end": 331, "id": 53, "annotation": null}, {"text": "and", "start": 332, "end": 335, "id": 54, "annotation": null}, {"text": "ultraviolet", "start": 336, "end": 347, "id": 55, "annotation": null}, {"text": "(", "start": 348, "end": 349, "id": 56, "annotation": null}, {"text": "UV", "start": 350, "end": 352, "id": 57, "annotation": null}, {"text": ")", "start": 353, "end": 354, "id": 58, "annotation": null}, {"text": "diffuse", "start": 355, "end": 362, "id": 59, "annotation": null}, {"text": "reflectance", "start": 363, "end": 374, "id": 60, "annotation": null}, {"text": "spectra", "start": 375, "end": 382, "id": 61, "annotation": null}, {"text": ".", "start": 383, "end": 384, "id": 62, "annotation": null}], [{"text": "The", "start": 385, "end": 388, "id": 63, "annotation": null}, {"text": "phase", "start": 389, "end": 394, "id": 64, "annotation": null}, {"text": "of", "start": 395, "end": 397, "id": 65, "annotation": null}, {"text": "the", "start": 398, "end": 401, "id": 66, "annotation": null}, {"text": "vanadium", "start": 402, "end": 410, "id": 67, "annotation": "DOPANT"}, {"text": "-", "start": 411, "end": 412, "id": 68, "annotation": null}, {"text": "doped", "start": 413, "end": 418, "id": 69, "annotation": null}, {"text": "strontium", "start": 419, "end": 428, "id": 70, "annotation": "BASEMAT"}, {"text": "germanate", "start": 429, "end": 438, "id": 71, "annotation": "BASEMAT"}, {"text": "depends", "start": 439, "end": 446, "id": 72, "annotation": null}, {"text": "on", "start": 447, "end": 449, "id": 73, "annotation": null}, {"text": "the", "start": 450, "end": 453, "id": 74, "annotation": null}, {"text": "vanadium", "start": 454, "end": 462, "id": 75, "annotation": null}, {"text": "content", "start": 463, "end": 470, "id": 76, "annotation": null}, {"text": ".", "start": 471, "end": 472, "id": 77, "annotation": null}], [{"text": "SEM", "start": 473, "end": 476, "id": 78, "annotation": null}, {"text": "observations", "start": 477, "end": 489, "id": 79, "annotation": null}, {"text": "show", "start": 490, "end": 494, "id": 80, "annotation": null}, {"text": "that", "start": 495, "end": 499, "id": 81, "annotation": null}, {"text": "the", "start": 500, "end": 503, "id": 82, "annotation": null}, {"text": "vanadium", "start": 504, "end": 512, "id": 83, "annotation": "DOPANT"}, {"text": "-", "start": 513, "end": 514, "id": 84, "annotation": null}, {"text": "doped", "start": 515, "end": 520, "id": 85, "annotation": null}, {"text": "strontium", "start": 521, "end": 530, "id": 86, "annotation": "BASEMAT"}, {"text": "germanate", "start": 531, "end": 540, "id": 87, "annotation": "BASEMAT"}, {"text": "comprises", "start": 541, "end": 550, "id": 88, "annotation": null}, {"text": "a", "start": 551, "end": 552, "id": 89, "annotation": null}, {"text": "rod", "start": 553, "end": 556, "id": 90, "annotation": null}, {"text": "-", "start": 557, "end": 558, "id": 91, "annotation": null}, {"text": "shaped", "start": 559, "end": 565, "id": 92, "annotation": null}, {"text": "morphology", "start": 566, "end": 576, "id": 93, "annotation": null}, {"text": "with", "start": 577, "end": 581, "id": 94, "annotation": null}, {"text": "diameter", "start": 582, "end": 590, "id": 95, "annotation": null}, {"text": "and", "start": 591, "end": 594, "id": 96, "annotation": null}, {"text": "length", "start": 595, "end": 601, "id": 97, "annotation": null}, {"text": "of", "start": 602, "end": 604, "id": 98, "annotation": null}, {"text": "nanoscale", "start": 605, "end": 614, "id": 99, "annotation": null}, {"text": "/", "start": 615, "end": 616, "id": 100, "annotation": null}, {"text": "microscale", "start": 617, "end": 627, "id": 101, "annotation": null}, {"text": "size", "start": 628, "end": 632, "id": 102, "annotation": null}, {"text": "and", "start": 633, "end": 636, "id": 103, "annotation": null}, {"text": "longer", "start": 637, "end": 643, "id": 104, "annotation": null}, {"text": "than", "start": 644, "end": 648, "id": 105, "annotation": null}, {"text": "10", "start": 649, "end": 651, "id": 106, "annotation": null}, {"text": "\u03bcm", "start": 652, "end": 654, "id": 107, "annotation": null}, {"text": ",", "start": 655, "end": 656, "id": 108, "annotation": null}, {"text": "respectively", "start": 657, "end": 669, "id": 109, "annotation": null}, {"text": ".", "start": 670, "end": 671, "id": 110, "annotation": null}], [{"text": "The", "start": 672, "end": 675, "id": 111, "annotation": null}, {"text": "band", "start": 676, "end": 680, "id": 112, "annotation": null}, {"text": "gap", "start": 681, "end": 684, "id": 113, "annotation": null}, {"text": "of", "start": 685, "end": 687, "id": 114, "annotation": null}, {"text": "the", "start": 688, "end": 691, "id": 115, "annotation": null}, {"text": "vanadium", "start": 692, "end": 700, "id": 116, "annotation": "DOPANT"}, {"text": "-", "start": 701, "end": 702, "id": 117, "annotation": null}, {"text": "doped", "start": 703, "end": 708, "id": 118, "annotation": null}, {"text": "strontium", "start": 709, "end": 718, "id": 119, "annotation": "BASEMAT"}, {"text": "germanate", "start": 719, "end": 728, "id": 120, "annotation": "BASEMAT"}, {"text": "depends", "start": 729, "end": 736, "id": 121, "annotation": null}, {"text": "on", "start": 737, "end": 739, "id": 122, "annotation": null}, {"text": "the", "start": 740, "end": 743, "id": 123, "annotation": null}, {"text": "vanadium", "start": 744, "end": 752, "id": 124, "annotation": null}, {"text": "content", "start": 753, "end": 760, "id": 125, "annotation": null}, {"text": "and", "start": 761, "end": 764, "id": 126, "annotation": null}, {"text": "increases", "start": 765, "end": 774, "id": 127, "annotation": null}, {"text": "significantly", "start": 775, "end": 788, "id": 128, "annotation": null}, {"text": "from", "start": 789, "end": 793, "id": 129, "annotation": null}, {"text": "2.74", "start": 794, "end": 798, "id": 130, "annotation": null}, {"text": "eV", "start": 799, "end": 801, "id": 131, "annotation": null}, {"text": "to", "start": 802, "end": 804, "id": 132, "annotation": null}, {"text": "3.02", "start": 805, "end": 809, "id": 133, "annotation": null}, {"text": "eV", "start": 810, "end": 812, "id": 134, "annotation": null}, {"text": "with", "start": 813, "end": 817, "id": 135, "annotation": null}, {"text": "the", "start": 818, "end": 821, "id": 136, "annotation": null}, {"text": "vanadium", "start": 822, "end": 830, "id": 137, "annotation": "DOPANT"}, {"text": "content", "start": 831, "end": 838, "id": 138, "annotation": null}, {"text": "increasing", "start": 839, "end": 849, "id": 139, "annotation": "DOPMODQ"}, {"text": "from", "start": 850, "end": 854, "id": 140, "annotation": "DOPMODQ"}, {"text": "1", "start": 855, "end": 856, "id": 141, "annotation": "DOPMODQ"}, {"text": "wt%", "start": 857, "end": 860, "id": 142, "annotation": "DOPMODQ"}, {"text": "to", "start": 861, "end": 863, "id": 143, "annotation": "DOPMODQ"}, {"text": "10", "start": 864, "end": 866, "id": 144, "annotation": "DOPMODQ"}, {"text": "wt%", "start": 867, "end": 870, "id": 145, "annotation": "DOPMODQ"}, {"text": ".", "start": 871, "end": 872, "id": 146, "annotation": null}], [{"text": "Vanadium", "start": 873, "end": 881, "id": 147, "annotation": "DOPANT"}, {"text": "-", "start": 882, "end": 883, "id": 148, "annotation": null}, {"text": "doped", "start": 884, "end": 889, "id": 149, "annotation": null}, {"text": "strontium", "start": 890, "end": 899, "id": 150, "annotation": "BASEMAT"}, {"text": "germanate", "start": 900, "end": 909, "id": 151, "annotation": "BASEMAT"}, {"text": "shows", "start": 910, "end": 915, "id": 152, "annotation": null}, {"text": "highly", "start": 916, "end": 922, "id": 153, "annotation": null}, {"text": "efficient", "start": 923, "end": 932, "id": 154, "annotation": null}, {"text": "photocatalytic", "start": 933, "end": 947, "id": 155, "annotation": null}, {"text": "activity", "start": 948, "end": 956, "id": 156, "annotation": null}, {"text": "for", "start": 957, "end": 960, "id": 157, "annotation": null}, {"text": "the", "start": 961, "end": 964, "id": 158, "annotation": null}, {"text": "degradation", "start": 965, "end": 976, "id": 159, "annotation": null}, {"text": "of", "start": 977, "end": 979, "id": 160, "annotation": null}, {"text": "methylene", "start": 980, "end": 989, "id": 161, "annotation": null}, {"text": "blue", "start": 990, "end": 994, "id": 162, "annotation": null}, {"text": "under", "start": 995, "end": 1000, "id": 163, "annotation": null}, {"text": "sunlight", "start": 1001, "end": 1009, "id": 164, "annotation": null}, {"text": "irradiation", "start": 1010, "end": 1021, "id": 165, "annotation": null}, {"text": ".", "start": 1022, "end": 1023, "id": 166, "annotation": null}], [{"text": "The", "start": 1024, "end": 1027, "id": 167, "annotation": null}, {"text": "results", "start": 1028, "end": 1035, "id": 168, "annotation": null}, {"text": "show", "start": 1036, "end": 1040, "id": 169, "annotation": null}, {"text": "that", "start": 1041, "end": 1045, "id": 170, "annotation": null}, {"text": "vanadium", "start": 1046, "end": 1054, "id": 171, "annotation": "DOPANT"}, {"text": "-", "start": 1055, "end": 1056, "id": 172, "annotation": null}, {"text": "doped", "start": 1057, "end": 1062, "id": 173, "annotation": null}, {"text": "strontium", "start": 1063, "end": 1072, "id": 174, "annotation": "BASEMAT"}, {"text": "germanate", "start": 1073, "end": 1082, "id": 175, "annotation": "BASEMAT"}, {"text": "is", "start": 1083, "end": 1085, "id": 176, "annotation": null}, {"text": "very", "start": 1086, "end": 1090, "id": 177, "annotation": null}, {"text": "promising", "start": 1091, "end": 1100, "id": 178, "annotation": null}, {"text": "for", "start": 1101, "end": 1104, "id": 179, "annotation": null}, {"text": "visible", "start": 1105, "end": 1112, "id": 180, "annotation": null}, {"text": "-", "start": 1113, "end": 1114, "id": 181, "annotation": null}, {"text": "light", "start": 1115, "end": 1120, "id": 182, "annotation": null}, {"text": "photocatalytic", "start": 1121, "end": 1135, "id": 183, "annotation": null}, {"text": "applications", "start": 1136, "end": 1148, "id": 184, "annotation": null}, {"text": ".", "start": 1149, "end": 1150, "id": 185, "annotation": null}], [{"text": "This", "start": 1151, "end": 1155, "id": 186, "annotation": null}, {"text": "journal", "start": 1156, "end": 1163, "id": 187, "annotation": null}, {"text": "is", "start": 1164, "end": 1166, "id": 188, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "High aspect ratio ZnO nanorod arrays were synthesized on fluorine-doped tin oxide glasses via a low temperature solution method. By adjusting the growth condition and adding polyethylenimine, ZnO nanorod arrays with tunable length were successfully achieved. The ZnO@TiO2 core shells structures were realized by a fast growth method of immersion into a (NH4)2\u00b7TiF6 solution. Transmission electron microscopy, X-ray Diffraction and energy dispersive X-ray measurements all confirmed the existence of a titania shell uniformly covering the ZnO nanorod's surface. Results of solar cell testing showed that addition of a TiO2 shell to the ZnO nanorod significantly increased short circuit current (from 4.2 to 5.2mA/cm2), open circuit voltage (from 0.6V to 0.8V) and fill factor (from 42.8% to 73.02%). The overall cell efficiency jumped from 1.1% for bare ZnO nanorod to 3.03% for a ZnO@TiO2 core shell structured solar cell with a 18\u201322nm shell thickness, a nearly threefold increase.", "meta": {"doi": "10.1016/j.jssc.2013.11.035"}, "_input_hash": -446920249, "_task_hash": -1747627402, "tokens": [[{"text": "High", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "aspect", "start": 5, "end": 11, "id": 1, "annotation": null}, {"text": "ratio", "start": 12, "end": 17, "id": 2, "annotation": null}, {"text": "ZnO", "start": 18, "end": 21, "id": 3, "annotation": null}, {"text": "nanorod", "start": 22, "end": 29, "id": 4, "annotation": null}, {"text": "arrays", "start": 30, "end": 36, "id": 5, "annotation": null}, {"text": "were", "start": 37, "end": 41, "id": 6, "annotation": null}, {"text": "synthesized", "start": 42, "end": 53, "id": 7, "annotation": null}, {"text": "on", "start": 54, "end": 56, "id": 8, "annotation": null}, {"text": "fluorine", "start": 57, "end": 65, "id": 9, "annotation": "DOPANT"}, {"text": "-", "start": 66, "end": 67, "id": 10, "annotation": null}, {"text": "doped", "start": 68, "end": 73, "id": 11, "annotation": null}, {"text": "tin", "start": 74, "end": 77, "id": 12, "annotation": "BASEMAT"}, {"text": "oxide", "start": 78, "end": 83, "id": 13, "annotation": "BASEMAT"}, {"text": "glasses", "start": 84, "end": 91, "id": 14, "annotation": null}, {"text": "via", "start": 92, "end": 95, "id": 15, "annotation": null}, {"text": "a", "start": 96, "end": 97, "id": 16, "annotation": null}, {"text": "low", "start": 98, "end": 101, "id": 17, "annotation": null}, {"text": "temperature", "start": 102, "end": 113, "id": 18, "annotation": null}, {"text": "solution", "start": 114, "end": 122, "id": 19, "annotation": null}, {"text": "method", "start": 123, "end": 129, "id": 20, "annotation": null}, {"text": ".", "start": 130, "end": 131, "id": 21, "annotation": null}], [{"text": "By", "start": 132, "end": 134, "id": 22, "annotation": null}, {"text": "adjusting", "start": 135, "end": 144, "id": 23, "annotation": null}, {"text": "the", "start": 145, "end": 148, "id": 24, "annotation": null}, {"text": "growth", "start": 149, "end": 155, "id": 25, "annotation": null}, {"text": "condition", "start": 156, "end": 165, "id": 26, "annotation": null}, {"text": "and", "start": 166, "end": 169, "id": 27, "annotation": null}, {"text": "adding", "start": 170, "end": 176, "id": 28, "annotation": null}, {"text": "polyethylenimine", "start": 177, "end": 193, "id": 29, "annotation": null}, {"text": ",", "start": 194, "end": 195, "id": 30, "annotation": null}, {"text": "ZnO", "start": 196, "end": 199, "id": 31, "annotation": null}, {"text": "nanorod", "start": 200, "end": 207, "id": 32, "annotation": null}, {"text": "arrays", "start": 208, "end": 214, "id": 33, "annotation": null}, {"text": "with", "start": 215, "end": 219, "id": 34, "annotation": null}, {"text": "tunable", "start": 220, "end": 227, "id": 35, "annotation": null}, {"text": "length", "start": 228, "end": 234, "id": 36, "annotation": null}, {"text": "were", "start": 235, "end": 239, "id": 37, "annotation": null}, {"text": "successfully", "start": 240, "end": 252, "id": 38, "annotation": null}, {"text": "achieved", "start": 253, "end": 261, "id": 39, "annotation": null}, {"text": ".", "start": 262, "end": 263, "id": 40, "annotation": null}], [{"text": "The", "start": 264, "end": 267, "id": 41, "annotation": null}, {"text": "ZnO@TiO2", "start": 268, "end": 276, "id": 42, "annotation": null}, {"text": "core", "start": 277, "end": 281, "id": 43, "annotation": null}, {"text": "shells", "start": 282, "end": 288, "id": 44, "annotation": null}, {"text": "structures", "start": 289, "end": 299, "id": 45, "annotation": null}, {"text": "were", "start": 300, "end": 304, "id": 46, "annotation": null}, {"text": "realized", "start": 305, "end": 313, "id": 47, "annotation": null}, {"text": "by", "start": 314, "end": 316, "id": 48, "annotation": null}, {"text": "a", "start": 317, "end": 318, "id": 49, "annotation": null}, {"text": "fast", "start": 319, "end": 323, "id": 50, "annotation": null}, {"text": "growth", "start": 324, "end": 330, "id": 51, "annotation": null}, {"text": "method", "start": 331, "end": 337, "id": 52, "annotation": null}, {"text": "of", "start": 338, "end": 340, "id": 53, "annotation": null}, {"text": "immersion", "start": 341, "end": 350, "id": 54, "annotation": null}, {"text": "into", "start": 351, "end": 355, "id": 55, "annotation": null}, {"text": "a", "start": 356, "end": 357, "id": 56, "annotation": null}, {"text": "(", "start": 358, "end": 359, "id": 57, "annotation": null}, {"text": "NH4)2\u00b7TiF6", "start": 360, "end": 370, "id": 58, "annotation": null}, {"text": "solution", "start": 371, "end": 379, "id": 59, "annotation": null}, {"text": ".", "start": 380, "end": 381, "id": 60, "annotation": null}], [{"text": "Transmission", "start": 382, "end": 394, "id": 61, "annotation": null}, {"text": "electron", "start": 395, "end": 403, "id": 62, "annotation": null}, {"text": "microscopy", "start": 404, "end": 414, "id": 63, "annotation": null}, {"text": ",", "start": 415, "end": 416, "id": 64, "annotation": null}, {"text": "X", "start": 417, "end": 418, "id": 65, "annotation": null}, {"text": "-", "start": 419, "end": 420, "id": 66, "annotation": null}, {"text": "ray", "start": 421, "end": 424, "id": 67, "annotation": null}, {"text": "Diffraction", "start": 425, "end": 436, "id": 68, "annotation": null}, {"text": "and", "start": 437, "end": 440, "id": 69, "annotation": null}, {"text": "energy", "start": 441, "end": 447, "id": 70, "annotation": null}, {"text": "dispersive", "start": 448, "end": 458, "id": 71, "annotation": null}, {"text": "X", "start": 459, "end": 460, "id": 72, "annotation": null}, {"text": "-", "start": 461, "end": 462, "id": 73, "annotation": null}, {"text": "ray", "start": 463, "end": 466, "id": 74, "annotation": null}, {"text": "measurements", "start": 467, "end": 479, "id": 75, "annotation": null}, {"text": "all", "start": 480, "end": 483, "id": 76, "annotation": null}, {"text": "confirmed", "start": 484, "end": 493, "id": 77, "annotation": null}, {"text": "the", "start": 494, "end": 497, "id": 78, "annotation": null}, {"text": "existence", "start": 498, "end": 507, "id": 79, "annotation": null}, {"text": "of", "start": 508, "end": 510, "id": 80, "annotation": null}, {"text": "a", "start": 511, "end": 512, "id": 81, "annotation": null}, {"text": "titania", "start": 513, "end": 520, "id": 82, "annotation": null}, {"text": "shell", "start": 521, "end": 526, "id": 83, "annotation": null}, {"text": "uniformly", "start": 527, "end": 536, "id": 84, "annotation": null}, {"text": "covering", "start": 537, "end": 545, "id": 85, "annotation": null}, {"text": "the", "start": 546, "end": 549, "id": 86, "annotation": null}, {"text": "ZnO", "start": 550, "end": 553, "id": 87, "annotation": null}, {"text": "nanorod", "start": 554, "end": 561, "id": 88, "annotation": null}, {"text": "'s", "start": 562, "end": 564, "id": 89, "annotation": null}, {"text": "surface", "start": 565, "end": 572, "id": 90, "annotation": null}, {"text": ".", "start": 573, "end": 574, "id": 91, "annotation": null}], [{"text": "Results", "start": 575, "end": 582, "id": 92, "annotation": null}, {"text": "of", "start": 583, "end": 585, "id": 93, "annotation": null}, {"text": "solar", "start": 586, "end": 591, "id": 94, "annotation": null}, {"text": "cell", "start": 592, "end": 596, "id": 95, "annotation": null}, {"text": "testing", "start": 597, "end": 604, "id": 96, "annotation": null}, {"text": "showed", "start": 605, "end": 611, "id": 97, "annotation": null}, {"text": "that", "start": 612, "end": 616, "id": 98, "annotation": null}, {"text": "addition", "start": 617, "end": 625, "id": 99, "annotation": null}, {"text": "of", "start": 626, "end": 628, "id": 100, "annotation": null}, {"text": "a", "start": 629, "end": 630, "id": 101, "annotation": null}, {"text": "TiO2", "start": 631, "end": 635, "id": 102, "annotation": null}, {"text": "shell", "start": 636, "end": 641, "id": 103, "annotation": null}, {"text": "to", "start": 642, "end": 644, "id": 104, "annotation": null}, {"text": "the", "start": 645, "end": 648, "id": 105, "annotation": null}, {"text": "ZnO", "start": 649, "end": 652, "id": 106, "annotation": null}, {"text": "nanorod", "start": 653, "end": 660, "id": 107, "annotation": null}, {"text": "significantly", "start": 661, "end": 674, "id": 108, "annotation": null}, {"text": "increased", "start": 675, "end": 684, "id": 109, "annotation": null}, {"text": "short", "start": 685, "end": 690, "id": 110, "annotation": null}, {"text": "circuit", "start": 691, "end": 698, "id": 111, "annotation": null}, {"text": "current", "start": 699, "end": 706, "id": 112, "annotation": null}, {"text": "(", "start": 707, "end": 708, "id": 113, "annotation": null}, {"text": "from", "start": 709, "end": 713, "id": 114, "annotation": null}, {"text": "4.2", "start": 714, "end": 717, "id": 115, "annotation": null}, {"text": "to", "start": 718, "end": 720, "id": 116, "annotation": null}, {"text": "5.2mA", "start": 721, "end": 726, "id": 117, "annotation": null}, {"text": "/", "start": 727, "end": 728, "id": 118, "annotation": null}, {"text": "cm2", "start": 729, "end": 732, "id": 119, "annotation": null}, {"text": ")", "start": 733, "end": 734, "id": 120, "annotation": null}, {"text": ",", "start": 735, "end": 736, "id": 121, "annotation": null}, {"text": "open", "start": 737, "end": 741, "id": 122, "annotation": null}, {"text": "circuit", "start": 742, "end": 749, "id": 123, "annotation": null}, {"text": "voltage", "start": 750, "end": 757, "id": 124, "annotation": null}, {"text": "(", "start": 758, "end": 759, "id": 125, "annotation": null}, {"text": "from", "start": 760, "end": 764, "id": 126, "annotation": null}, {"text": "0.6V", "start": 765, "end": 769, "id": 127, "annotation": null}, {"text": "to", "start": 770, "end": 772, "id": 128, "annotation": null}, {"text": "0.8V", "start": 773, "end": 777, "id": 129, "annotation": null}, {"text": ")", "start": 778, "end": 779, "id": 130, "annotation": null}, {"text": "and", "start": 780, "end": 783, "id": 131, "annotation": null}, {"text": "fill", "start": 784, "end": 788, "id": 132, "annotation": null}, {"text": "factor", "start": 789, "end": 795, "id": 133, "annotation": null}, {"text": "(", "start": 796, "end": 797, "id": 134, "annotation": null}, {"text": "from", "start": 798, "end": 802, "id": 135, "annotation": null}, {"text": "42.8", "start": 803, "end": 807, "id": 136, "annotation": null}, {"text": "%", "start": 808, "end": 809, "id": 137, "annotation": null}, {"text": "to", "start": 810, "end": 812, "id": 138, "annotation": null}, {"text": "73.02", "start": 813, "end": 818, "id": 139, "annotation": null}, {"text": "%", "start": 819, "end": 820, "id": 140, "annotation": null}, {"text": ")", "start": 821, "end": 822, "id": 141, "annotation": null}, {"text": ".", "start": 823, "end": 824, "id": 142, "annotation": null}], [{"text": "The", "start": 825, "end": 828, "id": 143, "annotation": null}, {"text": "overall", "start": 829, "end": 836, "id": 144, "annotation": null}, {"text": "cell", "start": 837, "end": 841, "id": 145, "annotation": null}, {"text": "efficiency", "start": 842, "end": 852, "id": 146, "annotation": null}, {"text": "jumped", "start": 853, "end": 859, "id": 147, "annotation": null}, {"text": "from", "start": 860, "end": 864, "id": 148, "annotation": null}, {"text": "1.1", "start": 865, "end": 868, "id": 149, "annotation": null}, {"text": "%", "start": 869, "end": 870, "id": 150, "annotation": null}, {"text": "for", "start": 871, "end": 874, "id": 151, "annotation": null}, {"text": "bare", "start": 875, "end": 879, "id": 152, "annotation": null}, {"text": "ZnO", "start": 880, "end": 883, "id": 153, "annotation": null}, {"text": "nanorod", "start": 884, "end": 891, "id": 154, "annotation": null}, {"text": "to", "start": 892, "end": 894, "id": 155, "annotation": null}, {"text": "3.03", "start": 895, "end": 899, "id": 156, "annotation": null}, {"text": "%", "start": 900, "end": 901, "id": 157, "annotation": null}, {"text": "for", "start": 902, "end": 905, "id": 158, "annotation": null}, {"text": "a", "start": 906, "end": 907, "id": 159, "annotation": null}, {"text": "ZnO@TiO2", "start": 908, "end": 916, "id": 160, "annotation": null}, {"text": "core", "start": 917, "end": 921, "id": 161, "annotation": null}, {"text": "shell", "start": 922, "end": 927, "id": 162, "annotation": null}, {"text": "structured", "start": 928, "end": 938, "id": 163, "annotation": null}, {"text": "solar", "start": 939, "end": 944, "id": 164, "annotation": null}, {"text": "cell", "start": 945, "end": 949, "id": 165, "annotation": null}, {"text": "with", "start": 950, "end": 954, "id": 166, "annotation": null}, {"text": "a", "start": 955, "end": 956, "id": 167, "annotation": null}, {"text": "18\u201322", "start": 957, "end": 962, "id": 168, "annotation": null}, {"text": "nm", "start": 963, "end": 965, "id": 169, "annotation": null}, {"text": "shell", "start": 966, "end": 971, "id": 170, "annotation": null}, {"text": "thickness", "start": 972, "end": 981, "id": 171, "annotation": null}, {"text": ",", "start": 982, "end": 983, "id": 172, "annotation": null}, {"text": "a", "start": 984, "end": 985, "id": 173, "annotation": null}, {"text": "nearly", "start": 986, "end": 992, "id": 174, "annotation": null}, {"text": "threefold", "start": 993, "end": 1002, "id": 175, "annotation": null}, {"text": "increase", "start": 1003, "end": 1011, "id": 176, "annotation": null}, {"text": ".", "start": 1012, "end": 1013, "id": 177, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "This paper investigated resistivity and dielectric properties of magnesium doped BaTiO3. Influence of variable doping concentration and Ba/Ti ratio on densification, microstructure, resistivity and dielectric properties was studied. Ceramics sintered in pure nitrogen had higher apparent density than that of ceramics sintered in air. Second phase occurred when Mg doping concentration was greater than 2\u00a0mol%. Ceramics sintered in pure nitrogen had higher resistivity than ceramics sintered in air when A/B ratio \u22651. When Ba/Ti ratio was equal to 1.01, resistivity of the samples sintered in pure nitrogen increased with doping concentration increasing. Dielectric constant changed little with doping concentration increasing, but leakage conductivity decreased much. Samples with Ba/Ti ratio of 1.005 had the largest dielectric constant irrespective of doping concentration.", "meta": {"doi": "10.1007/s10832-007-9242-z"}, "_input_hash": 1055276019, "_task_hash": 903383536, "tokens": [[{"text": "This", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "paper", "start": 5, "end": 10, "id": 1, "annotation": null}, {"text": "investigated", "start": 11, "end": 23, "id": 2, "annotation": null}, {"text": "resistivity", "start": 24, "end": 35, "id": 3, "annotation": null}, {"text": "and", "start": 36, "end": 39, "id": 4, "annotation": null}, {"text": "dielectric", "start": 40, "end": 50, "id": 5, "annotation": null}, {"text": "properties", "start": 51, "end": 61, "id": 6, "annotation": null}, {"text": "of", "start": 62, "end": 64, "id": 7, "annotation": null}, {"text": "magnesium", "start": 65, "end": 74, "id": 8, "annotation": "DOPANT"}, {"text": "doped", "start": 75, "end": 80, "id": 9, "annotation": null}, {"text": "BaTiO3", "start": 81, "end": 87, "id": 10, "annotation": "BASEMAT"}, {"text": ".", "start": 88, "end": 89, "id": 11, "annotation": null}], [{"text": "Influence", "start": 90, "end": 99, "id": 12, "annotation": null}, {"text": "of", "start": 100, "end": 102, "id": 13, "annotation": null}, {"text": "variable", "start": 103, "end": 111, "id": 14, "annotation": null}, {"text": "doping", "start": 112, "end": 118, "id": 15, "annotation": null}, {"text": "concentration", "start": 119, "end": 132, "id": 16, "annotation": null}, {"text": "and", "start": 133, "end": 136, "id": 17, "annotation": null}, {"text": "Ba", "start": 137, "end": 139, "id": 18, "annotation": null}, {"text": "/", "start": 140, "end": 141, "id": 19, "annotation": null}, {"text": "Ti", "start": 142, "end": 144, "id": 20, "annotation": null}, {"text": "ratio", "start": 145, "end": 150, "id": 21, "annotation": null}, {"text": "on", "start": 151, "end": 153, "id": 22, "annotation": null}, {"text": "densification", "start": 154, "end": 167, "id": 23, "annotation": null}, {"text": ",", "start": 168, "end": 169, "id": 24, "annotation": null}, {"text": "microstructure", "start": 170, "end": 184, "id": 25, "annotation": null}, {"text": ",", "start": 185, "end": 186, "id": 26, "annotation": null}, {"text": "resistivity", "start": 187, "end": 198, "id": 27, "annotation": null}, {"text": "and", "start": 199, "end": 202, "id": 28, "annotation": null}, {"text": "dielectric", "start": 203, "end": 213, "id": 29, "annotation": null}, {"text": "properties", "start": 214, "end": 224, "id": 30, "annotation": null}, {"text": "was", "start": 225, "end": 228, "id": 31, "annotation": null}, {"text": "studied", "start": 229, "end": 236, "id": 32, "annotation": null}, {"text": ".", "start": 237, "end": 238, "id": 33, "annotation": null}], [{"text": "Ceramics", "start": 239, "end": 247, "id": 34, "annotation": null}, {"text": "sintered", "start": 248, "end": 256, "id": 35, "annotation": null}, {"text": "in", "start": 257, "end": 259, "id": 36, "annotation": null}, {"text": "pure", "start": 260, "end": 264, "id": 37, "annotation": null}, {"text": "nitrogen", "start": 265, "end": 273, "id": 38, "annotation": null}, {"text": "had", "start": 274, "end": 277, "id": 39, "annotation": null}, {"text": "higher", "start": 278, "end": 284, "id": 40, "annotation": null}, {"text": "apparent", "start": 285, "end": 293, "id": 41, "annotation": null}, {"text": "density", "start": 294, "end": 301, "id": 42, "annotation": null}, {"text": "than", "start": 302, "end": 306, "id": 43, "annotation": null}, {"text": "that", "start": 307, "end": 311, "id": 44, "annotation": null}, {"text": "of", "start": 312, "end": 314, "id": 45, "annotation": null}, {"text": "ceramics", "start": 315, "end": 323, "id": 46, "annotation": null}, {"text": "sintered", "start": 324, "end": 332, "id": 47, "annotation": null}, {"text": "in", "start": 333, "end": 335, "id": 48, "annotation": null}, {"text": "air", "start": 336, "end": 339, "id": 49, "annotation": null}, {"text": ".", "start": 340, "end": 341, "id": 50, "annotation": null}], [{"text": "Second", "start": 342, "end": 348, "id": 51, "annotation": null}, {"text": "phase", "start": 349, "end": 354, "id": 52, "annotation": null}, {"text": "occurred", "start": 355, "end": 363, "id": 53, "annotation": null}, {"text": "when", "start": 364, "end": 368, "id": 54, "annotation": null}, {"text": "Mg", "start": 369, "end": 371, "id": 55, "annotation": "DOPANT"}, {"text": "doping", "start": 372, "end": 378, "id": 56, "annotation": null}, {"text": "concentration", "start": 379, "end": 392, "id": 57, "annotation": null}, {"text": "was", "start": 393, "end": 396, "id": 58, "annotation": null}, {"text": "greater", "start": 397, "end": 404, "id": 59, "annotation": "DOPMODQ"}, {"text": "than", "start": 405, "end": 409, "id": 60, "annotation": null}, {"text": "2", "start": 410, "end": 411, "id": 61, "annotation": null}, {"text": "mol%", "start": 412, "end": 416, "id": 63, "annotation": "DOPMODQ"}, {"text": ".", "start": 417, "end": 418, "id": 64, "annotation": null}], [{"text": "Ceramics", "start": 419, "end": 427, "id": 65, "annotation": null}, {"text": "sintered", "start": 428, "end": 436, "id": 66, "annotation": null}, {"text": "in", "start": 437, "end": 439, "id": 67, "annotation": null}, {"text": "pure", "start": 440, "end": 444, "id": 68, "annotation": null}, {"text": "nitrogen", "start": 445, "end": 453, "id": 69, "annotation": null}, {"text": "had", "start": 454, "end": 457, "id": 70, "annotation": null}, {"text": "higher", "start": 458, "end": 464, "id": 71, "annotation": null}, {"text": "resistivity", "start": 465, "end": 476, "id": 72, "annotation": null}, {"text": "than", "start": 477, "end": 481, "id": 73, "annotation": null}, {"text": "ceramics", "start": 482, "end": 490, "id": 74, "annotation": null}, {"text": "sintered", "start": 491, "end": 499, "id": 75, "annotation": null}, {"text": "in", "start": 500, "end": 502, "id": 76, "annotation": null}, {"text": "air", "start": 503, "end": 506, "id": 77, "annotation": null}, {"text": "when", "start": 507, "end": 511, "id": 78, "annotation": null}, {"text": "A", "start": 512, "end": 513, "id": 79, "annotation": null}, {"text": "/", "start": 514, "end": 515, "id": 80, "annotation": null}, {"text": "B", "start": 516, "end": 517, "id": 81, "annotation": null}, {"text": "ratio", "start": 518, "end": 523, "id": 82, "annotation": null}, {"text": "\u22651", "start": 524, "end": 526, "id": 83, "annotation": null}, {"text": ".", "start": 527, "end": 528, "id": 84, "annotation": null}], [{"text": "When", "start": 529, "end": 533, "id": 85, "annotation": null}, {"text": "Ba", "start": 534, "end": 536, "id": 86, "annotation": null}, {"text": "/", "start": 537, "end": 538, "id": 87, "annotation": null}, {"text": "Ti", "start": 539, "end": 541, "id": 88, "annotation": null}, {"text": "ratio", "start": 542, "end": 547, "id": 89, "annotation": null}, {"text": "was", "start": 548, "end": 551, "id": 90, "annotation": null}, {"text": "equal", "start": 552, "end": 557, "id": 91, "annotation": null}, {"text": "to", "start": 558, "end": 560, "id": 92, "annotation": null}, {"text": "1.01", "start": 561, "end": 565, "id": 93, "annotation": null}, {"text": ",", "start": 566, "end": 567, "id": 94, "annotation": null}, {"text": "resistivity", "start": 568, "end": 579, "id": 95, "annotation": null}, {"text": "of", "start": 580, "end": 582, "id": 96, "annotation": null}, {"text": "the", "start": 583, "end": 586, "id": 97, "annotation": null}, {"text": "samples", "start": 587, "end": 594, "id": 98, "annotation": null}, {"text": "sintered", "start": 595, "end": 603, "id": 99, "annotation": null}, {"text": "in", "start": 604, "end": 606, "id": 100, "annotation": null}, {"text": "pure", "start": 607, "end": 611, "id": 101, "annotation": null}, {"text": "nitrogen", "start": 612, "end": 620, "id": 102, "annotation": null}, {"text": "increased", "start": 621, "end": 630, "id": 103, "annotation": null}, {"text": "with", "start": 631, "end": 635, "id": 104, "annotation": null}, {"text": "doping", "start": 636, "end": 642, "id": 105, "annotation": null}, {"text": "concentration", "start": 643, "end": 656, "id": 106, "annotation": null}, {"text": "increasing", "start": 657, "end": 667, "id": 107, "annotation": null}, {"text": ".", "start": 668, "end": 669, "id": 108, "annotation": null}], [{"text": "Dielectric", "start": 670, "end": 680, "id": 109, "annotation": null}, {"text": "constant", "start": 681, "end": 689, "id": 110, "annotation": null}, {"text": "changed", "start": 690, "end": 697, "id": 111, "annotation": null}, {"text": "little", "start": 698, "end": 704, "id": 112, "annotation": null}, {"text": "with", "start": 705, "end": 709, "id": 113, "annotation": null}, {"text": "doping", "start": 710, "end": 716, "id": 114, "annotation": null}, {"text": "concentration", "start": 717, "end": 730, "id": 115, "annotation": null}, {"text": "increasing", "start": 731, "end": 741, "id": 116, "annotation": null}, {"text": ",", "start": 742, "end": 743, "id": 117, "annotation": null}, {"text": "but", "start": 744, "end": 747, "id": 118, "annotation": null}, {"text": "leakage", "start": 748, "end": 755, "id": 119, "annotation": null}, {"text": "conductivity", "start": 756, "end": 768, "id": 120, "annotation": null}, {"text": "decreased", "start": 769, "end": 778, "id": 121, "annotation": null}, {"text": "much", "start": 779, "end": 783, "id": 122, "annotation": null}, {"text": ".", "start": 784, "end": 785, "id": 123, "annotation": null}], [{"text": "Samples", "start": 786, "end": 793, "id": 124, "annotation": null}, {"text": "with", "start": 794, "end": 798, "id": 125, "annotation": null}, {"text": "Ba", "start": 799, "end": 801, "id": 126, "annotation": null}, {"text": "/", "start": 802, "end": 803, "id": 127, "annotation": null}, {"text": "Ti", "start": 804, "end": 806, "id": 128, "annotation": null}, {"text": "ratio", "start": 807, "end": 812, "id": 129, "annotation": null}, {"text": "of", "start": 813, "end": 815, "id": 130, "annotation": null}, {"text": "1.005", "start": 816, "end": 821, "id": 131, "annotation": null}, {"text": "had", "start": 822, "end": 825, "id": 132, "annotation": null}, {"text": "the", "start": 826, "end": 829, "id": 133, "annotation": null}, {"text": "largest", "start": 830, "end": 837, "id": 134, "annotation": null}, {"text": "dielectric", "start": 838, "end": 848, "id": 135, "annotation": null}, {"text": "constant", "start": 849, "end": 857, "id": 136, "annotation": null}, {"text": "irrespective", "start": 858, "end": 870, "id": 137, "annotation": null}, {"text": "of", "start": 871, "end": 873, "id": 138, "annotation": null}, {"text": "doping", "start": 874, "end": 880, "id": 139, "annotation": null}, {"text": "concentration", "start": 881, "end": 894, "id": 140, "annotation": null}, {"text": ".", "start": 895, "end": 896, "id": 141, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "This paper investigated resistivity and dielectric properties of magnesium doped BaTiO3. Influence of variable doping concentration and Ba/Ti ratio on densification, microstructure, resistivity and dielectric properties was studied. Ceramics sintered in pure nitrogen had higher apparent density than that of ceramics sintered in air. Second phase occurred when Mg doping concentration was greater than 2\u00a0mol%. Ceramics sintered in pure nitrogen had higher resistivity than ceramics sintered in air when A/B ratio \u22651. When Ba/Ti ratio was equal to 1.01, resistivity of the samples sintered in pure nitrogen increased with doping concentration increasing. Dielectric constant changed little with doping concentration increasing, but leakage conductivity decreased much. Samples with Ba/Ti ratio of 1.005 had the largest dielectric constant irrespective of doping concentration.", "meta": {"doi": "10.1007/s10832-007-9242-z"}, "_input_hash": 1055276019, "_task_hash": 903383536, "tokens": [[{"text": "This", "start": 0, "end": 4, "id": 0, "annotation": null}, {"text": "paper", "start": 5, "end": 10, "id": 1, "annotation": null}, {"text": "investigated", "start": 11, "end": 23, "id": 2, "annotation": null}, {"text": "resistivity", "start": 24, "end": 35, "id": 3, "annotation": null}, {"text": "and", "start": 36, "end": 39, "id": 4, "annotation": null}, {"text": "dielectric", "start": 40, "end": 50, "id": 5, "annotation": null}, {"text": "properties", "start": 51, "end": 61, "id": 6, "annotation": null}, {"text": "of", "start": 62, "end": 64, "id": 7, "annotation": null}, {"text": "magnesium", "start": 65, "end": 74, "id": 8, "annotation": "DOPANT"}, {"text": "doped", "start": 75, "end": 80, "id": 9, "annotation": null}, {"text": "BaTiO3", "start": 81, "end": 87, "id": 10, "annotation": "BASEMAT"}, {"text": ".", "start": 88, "end": 89, "id": 11, "annotation": null}], [{"text": "Influence", "start": 90, "end": 99, "id": 12, "annotation": null}, {"text": "of", "start": 100, "end": 102, "id": 13, "annotation": null}, {"text": "variable", "start": 103, "end": 111, "id": 14, "annotation": null}, {"text": "doping", "start": 112, "end": 118, "id": 15, "annotation": null}, {"text": "concentration", "start": 119, "end": 132, "id": 16, "annotation": null}, {"text": "and", "start": 133, "end": 136, "id": 17, "annotation": null}, {"text": "Ba", "start": 137, "end": 139, "id": 18, "annotation": null}, {"text": "/", "start": 140, "end": 141, "id": 19, "annotation": null}, {"text": "Ti", "start": 142, "end": 144, "id": 20, "annotation": null}, {"text": "ratio", "start": 145, "end": 150, "id": 21, "annotation": null}, {"text": "on", "start": 151, "end": 153, "id": 22, "annotation": null}, {"text": "densification", "start": 154, "end": 167, "id": 23, "annotation": null}, {"text": ",", "start": 168, "end": 169, "id": 24, "annotation": null}, {"text": "microstructure", "start": 170, "end": 184, "id": 25, "annotation": null}, {"text": ",", "start": 185, "end": 186, "id": 26, "annotation": null}, {"text": "resistivity", "start": 187, "end": 198, "id": 27, "annotation": null}, {"text": "and", "start": 199, "end": 202, "id": 28, "annotation": null}, {"text": "dielectric", "start": 203, "end": 213, "id": 29, "annotation": null}, {"text": "properties", "start": 214, "end": 224, "id": 30, "annotation": null}, {"text": "was", "start": 225, "end": 228, "id": 31, "annotation": null}, {"text": "studied", "start": 229, "end": 236, "id": 32, "annotation": null}, {"text": ".", "start": 237, "end": 238, "id": 33, "annotation": null}], [{"text": "Ceramics", "start": 239, "end": 247, "id": 34, "annotation": null}, {"text": "sintered", "start": 248, "end": 256, "id": 35, "annotation": null}, {"text": "in", "start": 257, "end": 259, "id": 36, "annotation": null}, {"text": "pure", "start": 260, "end": 264, "id": 37, "annotation": null}, {"text": "nitrogen", "start": 265, "end": 273, "id": 38, "annotation": null}, {"text": "had", "start": 274, "end": 277, "id": 39, "annotation": null}, {"text": "higher", "start": 278, "end": 284, "id": 40, "annotation": null}, {"text": "apparent", "start": 285, "end": 293, "id": 41, "annotation": null}, {"text": "density", "start": 294, "end": 301, "id": 42, "annotation": null}, {"text": "than", "start": 302, "end": 306, "id": 43, "annotation": null}, {"text": "that", "start": 307, "end": 311, "id": 44, "annotation": null}, {"text": "of", "start": 312, "end": 314, "id": 45, "annotation": null}, {"text": "ceramics", "start": 315, "end": 323, "id": 46, "annotation": null}, {"text": "sintered", "start": 324, "end": 332, "id": 47, "annotation": null}, {"text": "in", "start": 333, "end": 335, "id": 48, "annotation": null}, {"text": "air", "start": 336, "end": 339, "id": 49, "annotation": null}, {"text": ".", "start": 340, "end": 341, "id": 50, "annotation": null}], [{"text": "Second", "start": 342, "end": 348, "id": 51, "annotation": null}, {"text": "phase", "start": 349, "end": 354, "id": 52, "annotation": null}, {"text": "occurred", "start": 355, "end": 363, "id": 53, "annotation": null}, {"text": "when", "start": 364, "end": 368, "id": 54, "annotation": null}, {"text": "Mg", "start": 369, "end": 371, "id": 55, "annotation": "DOPANT"}, {"text": "doping", "start": 372, "end": 378, "id": 56, "annotation": null}, {"text": "concentration", "start": 379, "end": 392, "id": 57, "annotation": null}, {"text": "was", "start": 393, "end": 396, "id": 58, "annotation": null}, {"text": "greater", "start": 397, "end": 404, "id": 59, "annotation": "DOPMODQ"}, {"text": "than", "start": 405, "end": 409, "id": 60, "annotation": "DOPMODQ"}, {"text": "2", "start": 410, "end": 411, "id": 61, "annotation": "DOPMODQ"}, {"text": "mol%", "start": 412, "end": 416, "id": 63, "annotation": "DOPMODQ"}, {"text": ".", "start": 417, "end": 418, "id": 64, "annotation": null}], [{"text": "Ceramics", "start": 419, "end": 427, "id": 65, "annotation": null}, {"text": "sintered", "start": 428, "end": 436, "id": 66, "annotation": null}, {"text": "in", "start": 437, "end": 439, "id": 67, "annotation": null}, {"text": "pure", "start": 440, "end": 444, "id": 68, "annotation": null}, {"text": "nitrogen", "start": 445, "end": 453, "id": 69, "annotation": null}, {"text": "had", "start": 454, "end": 457, "id": 70, "annotation": null}, {"text": "higher", "start": 458, "end": 464, "id": 71, "annotation": null}, {"text": "resistivity", "start": 465, "end": 476, "id": 72, "annotation": null}, {"text": "than", "start": 477, "end": 481, "id": 73, "annotation": null}, {"text": "ceramics", "start": 482, "end": 490, "id": 74, "annotation": null}, {"text": "sintered", "start": 491, "end": 499, "id": 75, "annotation": null}, {"text": "in", "start": 500, "end": 502, "id": 76, "annotation": null}, {"text": "air", "start": 503, "end": 506, "id": 77, "annotation": null}, {"text": "when", "start": 507, "end": 511, "id": 78, "annotation": null}, {"text": "A", "start": 512, "end": 513, "id": 79, "annotation": null}, {"text": "/", "start": 514, "end": 515, "id": 80, "annotation": null}, {"text": "B", "start": 516, "end": 517, "id": 81, "annotation": null}, {"text": "ratio", "start": 518, "end": 523, "id": 82, "annotation": null}, {"text": "\u22651", "start": 524, "end": 526, "id": 83, "annotation": null}, {"text": ".", "start": 527, "end": 528, "id": 84, "annotation": null}], [{"text": "When", "start": 529, "end": 533, "id": 85, "annotation": null}, {"text": "Ba", "start": 534, "end": 536, "id": 86, "annotation": null}, {"text": "/", "start": 537, "end": 538, "id": 87, "annotation": null}, {"text": "Ti", "start": 539, "end": 541, "id": 88, "annotation": null}, {"text": "ratio", "start": 542, "end": 547, "id": 89, "annotation": null}, {"text": "was", "start": 548, "end": 551, "id": 90, "annotation": null}, {"text": "equal", "start": 552, "end": 557, "id": 91, "annotation": null}, {"text": "to", "start": 558, "end": 560, "id": 92, "annotation": null}, {"text": "1.01", "start": 561, "end": 565, "id": 93, "annotation": null}, {"text": ",", "start": 566, "end": 567, "id": 94, "annotation": null}, {"text": "resistivity", "start": 568, "end": 579, "id": 95, "annotation": null}, {"text": "of", "start": 580, "end": 582, "id": 96, "annotation": null}, {"text": "the", "start": 583, "end": 586, "id": 97, "annotation": null}, {"text": "samples", "start": 587, "end": 594, "id": 98, "annotation": null}, {"text": "sintered", "start": 595, "end": 603, "id": 99, "annotation": null}, {"text": "in", "start": 604, "end": 606, "id": 100, "annotation": null}, {"text": "pure", "start": 607, "end": 611, "id": 101, "annotation": null}, {"text": "nitrogen", "start": 612, "end": 620, "id": 102, "annotation": null}, {"text": "increased", "start": 621, "end": 630, "id": 103, "annotation": null}, {"text": "with", "start": 631, "end": 635, "id": 104, "annotation": null}, {"text": "doping", "start": 636, "end": 642, "id": 105, "annotation": null}, {"text": "concentration", "start": 643, "end": 656, "id": 106, "annotation": null}, {"text": "increasing", "start": 657, "end": 667, "id": 107, "annotation": null}, {"text": ".", "start": 668, "end": 669, "id": 108, "annotation": null}], [{"text": "Dielectric", "start": 670, "end": 680, "id": 109, "annotation": null}, {"text": "constant", "start": 681, "end": 689, "id": 110, "annotation": null}, {"text": "changed", "start": 690, "end": 697, "id": 111, "annotation": null}, {"text": "little", "start": 698, "end": 704, "id": 112, "annotation": null}, {"text": "with", "start": 705, "end": 709, "id": 113, "annotation": null}, {"text": "doping", "start": 710, "end": 716, "id": 114, "annotation": null}, {"text": "concentration", "start": 717, "end": 730, "id": 115, "annotation": null}, {"text": "increasing", "start": 731, "end": 741, "id": 116, "annotation": null}, {"text": ",", "start": 742, "end": 743, "id": 117, "annotation": null}, {"text": "but", "start": 744, "end": 747, "id": 118, "annotation": null}, {"text": "leakage", "start": 748, "end": 755, "id": 119, "annotation": null}, {"text": "conductivity", "start": 756, "end": 768, "id": 120, "annotation": null}, {"text": "decreased", "start": 769, "end": 778, "id": 121, "annotation": null}, {"text": "much", "start": 779, "end": 783, "id": 122, "annotation": null}, {"text": ".", "start": 784, "end": 785, "id": 123, "annotation": null}], [{"text": "Samples", "start": 786, "end": 793, "id": 124, "annotation": null}, {"text": "with", "start": 794, "end": 798, "id": 125, "annotation": null}, {"text": "Ba", "start": 799, "end": 801, "id": 126, "annotation": null}, {"text": "/", "start": 802, "end": 803, "id": 127, "annotation": null}, {"text": "Ti", "start": 804, "end": 806, "id": 128, "annotation": null}, {"text": "ratio", "start": 807, "end": 812, "id": 129, "annotation": null}, {"text": "of", "start": 813, "end": 815, "id": 130, "annotation": null}, {"text": "1.005", "start": 816, "end": 821, "id": 131, "annotation": null}, {"text": "had", "start": 822, "end": 825, "id": 132, "annotation": null}, {"text": "the", "start": 826, "end": 829, "id": 133, "annotation": null}, {"text": "largest", "start": 830, "end": 837, "id": 134, "annotation": null}, {"text": "dielectric", "start": 838, "end": 848, "id": 135, "annotation": null}, {"text": "constant", "start": 849, "end": 857, "id": 136, "annotation": null}, {"text": "irrespective", "start": 858, "end": 870, "id": 137, "annotation": null}, {"text": "of", "start": 871, "end": 873, "id": 138, "annotation": null}, {"text": "doping", "start": 874, "end": 880, "id": 139, "annotation": null}, {"text": "concentration", "start": 881, "end": 894, "id": 140, "annotation": null}, {"text": ".", "start": 895, "end": 896, "id": 141, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Phosphors based on the Li1+xTa1\u2212xTixO3 solid solutions (0.05\u2264x\u22640.25) as host materials were investigated. The optimal composition of the host for red-light emitting phosphor was found to be Li1.11Ta0.89Ti0.11O3 (x=0.11) when activated with Eu3+. In this work, in order to further enhance the emission intensity, a series of Eu3+- and Sm3+-doped Li1.11Ta0.89Ti0.11O3 phosphors was synthesized by solid-state reaction. The phosphor doped with 2.5wt% Eu2O3 and 0.1wt% Sm2O3 showed the highly efficient red-light emission upon excitation at 399nm, with the internal quantum efficiency being 98%. Its PL intensity was ca. 1.4 times higher than that of the 2.5wt% Eu3+-doped Li1.11Ta0.89Ti0.11O3 phosphor, indicating that the small amount of Sm3+ acted as an effective sensitizer.", "meta": {"doi": "10.1016/j.materresbull.2014.09.059"}, "_input_hash": -1419249661, "_task_hash": 1604474560, "tokens": [[{"text": "Phosphors", "start": 0, "end": 9, "id": 0, "annotation": null}, {"text": "based", "start": 10, "end": 15, "id": 1, "annotation": null}, {"text": "on", "start": 16, "end": 18, "id": 2, "annotation": null}, {"text": "the", "start": 19, "end": 22, "id": 3, "annotation": null}, {"text": "Li1+xTa1\u2212xTixO3", "start": 23, "end": 38, "id": 4, "annotation": null}, {"text": "solid", "start": 39, "end": 44, "id": 5, "annotation": null}, {"text": "solutions", "start": 45, "end": 54, "id": 6, "annotation": null}, {"text": "(", "start": 55, "end": 56, "id": 7, "annotation": null}, {"text": "0.05\u2264x\u22640.25", "start": 57, "end": 68, "id": 8, "annotation": null}, {"text": ")", "start": 69, "end": 70, "id": 9, "annotation": null}, {"text": "as", "start": 71, "end": 73, "id": 10, "annotation": null}, {"text": "host", "start": 74, "end": 78, "id": 11, "annotation": null}, {"text": "materials", "start": 79, "end": 88, "id": 12, "annotation": null}, {"text": "were", "start": 89, "end": 93, "id": 13, "annotation": null}, {"text": "investigated", "start": 94, "end": 106, "id": 14, "annotation": null}, {"text": ".", "start": 107, "end": 108, "id": 15, "annotation": null}], [{"text": "The", "start": 109, "end": 112, "id": 16, "annotation": null}, {"text": "optimal", "start": 113, "end": 120, "id": 17, "annotation": null}, {"text": "composition", "start": 121, "end": 132, "id": 18, "annotation": null}, {"text": "of", "start": 133, "end": 135, "id": 19, "annotation": null}, {"text": "the", "start": 136, "end": 139, "id": 20, "annotation": null}, {"text": "host", "start": 140, "end": 144, "id": 21, "annotation": null}, {"text": "for", "start": 145, "end": 148, "id": 22, "annotation": null}, {"text": "red", "start": 149, "end": 152, "id": 23, "annotation": null}, {"text": "-", "start": 153, "end": 154, "id": 24, "annotation": null}, {"text": "light", "start": 155, "end": 160, "id": 25, "annotation": null}, {"text": "emitting", "start": 161, "end": 169, "id": 26, "annotation": null}, {"text": "phosphor", "start": 170, "end": 178, "id": 27, "annotation": null}, {"text": "was", "start": 179, "end": 182, "id": 28, "annotation": null}, {"text": "found", "start": 183, "end": 188, "id": 29, "annotation": null}, {"text": "to", "start": 189, "end": 191, "id": 30, "annotation": null}, {"text": "be", "start": 192, "end": 194, "id": 31, "annotation": null}, {"text": "Li1.11Ta0.89Ti0.11O3", "start": 195, "end": 215, "id": 32, "annotation": null}, {"text": "(", "start": 216, "end": 217, "id": 33, "annotation": null}, {"text": "x=0.11", "start": 218, "end": 224, "id": 34, "annotation": null}, {"text": ")", "start": 225, "end": 226, "id": 35, "annotation": null}, {"text": "when", "start": 227, "end": 231, "id": 36, "annotation": null}, {"text": "activated", "start": 232, "end": 241, "id": 37, "annotation": null}, {"text": "with", "start": 242, "end": 246, "id": 38, "annotation": null}, {"text": "Eu3", "start": 247, "end": 250, "id": 39, "annotation": null}, {"text": "+", "start": 251, "end": 252, "id": 40, "annotation": null}, {"text": ".", "start": 253, "end": 254, "id": 41, "annotation": null}], [{"text": "In", "start": 255, "end": 257, "id": 42, "annotation": null}, {"text": "this", "start": 258, "end": 262, "id": 43, "annotation": null}, {"text": "work", "start": 263, "end": 267, "id": 44, "annotation": null}, {"text": ",", "start": 268, "end": 269, "id": 45, "annotation": null}, {"text": "in", "start": 270, "end": 272, "id": 46, "annotation": null}, {"text": "order", "start": 273, "end": 278, "id": 47, "annotation": null}, {"text": "to", "start": 279, "end": 281, "id": 48, "annotation": null}, {"text": "further", "start": 282, "end": 289, "id": 49, "annotation": null}, {"text": "enhance", "start": 290, "end": 297, "id": 50, "annotation": null}, {"text": "the", "start": 298, "end": 301, "id": 51, "annotation": null}, {"text": "emission", "start": 302, "end": 310, "id": 52, "annotation": null}, {"text": "intensity", "start": 311, "end": 320, "id": 53, "annotation": null}, {"text": ",", "start": 321, "end": 322, "id": 54, "annotation": null}, {"text": "a", "start": 323, "end": 324, "id": 55, "annotation": null}, {"text": "series", "start": 325, "end": 331, "id": 56, "annotation": null}, {"text": "of", "start": 332, "end": 334, "id": 57, "annotation": null}, {"text": "Eu3", "start": 335, "end": 338, "id": 58, "annotation": "DOPANT"}, {"text": "+", "start": 339, "end": 340, "id": 59, "annotation": "DOPANT"}, {"text": "-", "start": 341, "end": 342, "id": 60, "annotation": null}, {"text": "and", "start": 343, "end": 346, "id": 61, "annotation": null}, {"text": "Sm3", "start": 347, "end": 350, "id": 62, "annotation": "DOPANT"}, {"text": "+", "start": 351, "end": 352, "id": 63, "annotation": "DOPANT"}, {"text": "-doped", "start": 353, "end": 359, "id": 64, "annotation": null}, {"text": "Li1.11Ta0.89Ti0.11O3", "start": 360, "end": 380, "id": 65, "annotation": "BASEMAT"}, {"text": "phosphors", "start": 381, "end": 390, "id": 66, "annotation": null}, {"text": "was", "start": 391, "end": 394, "id": 67, "annotation": null}, {"text": "synthesized", "start": 395, "end": 406, "id": 68, "annotation": null}, {"text": "by", "start": 407, "end": 409, "id": 69, "annotation": null}, {"text": "solid", "start": 410, "end": 415, "id": 70, "annotation": null}, {"text": "-", "start": 416, "end": 417, "id": 71, "annotation": null}, {"text": "state", "start": 418, "end": 423, "id": 72, "annotation": null}, {"text": "reaction", "start": 424, "end": 432, "id": 73, "annotation": null}, {"text": ".", "start": 433, "end": 434, "id": 74, "annotation": null}], [{"text": "The", "start": 435, "end": 438, "id": 75, "annotation": null}, {"text": "phosphor", "start": 439, "end": 447, "id": 76, "annotation": "BASEMAT"}, {"text": "doped", "start": 448, "end": 453, "id": 77, "annotation": null}, {"text": "with", "start": 454, "end": 458, "id": 78, "annotation": null}, {"text": "2.5wt%", "start": 459, "end": 465, "id": 79, "annotation": "DOPMODQ"}, {"text": "Eu2O3", "start": 466, "end": 471, "id": 80, "annotation": "DOPANT"}, {"text": "and", "start": 472, "end": 475, "id": 81, "annotation": null}, {"text": "0.1wt%", "start": 476, "end": 482, "id": 82, "annotation": "DOPMODQ"}, {"text": "Sm2O3", "start": 483, "end": 488, "id": 83, "annotation": "DOPANT"}, {"text": "showed", "start": 489, "end": 495, "id": 84, "annotation": null}, {"text": "the", "start": 496, "end": 499, "id": 85, "annotation": null}, {"text": "highly", "start": 500, "end": 506, "id": 86, "annotation": null}, {"text": "efficient", "start": 507, "end": 516, "id": 87, "annotation": null}, {"text": "red", "start": 517, "end": 520, "id": 88, "annotation": null}, {"text": "-", "start": 521, "end": 522, "id": 89, "annotation": null}, {"text": "light", "start": 523, "end": 528, "id": 90, "annotation": null}, {"text": "emission", "start": 529, "end": 537, "id": 91, "annotation": null}, {"text": "upon", "start": 538, "end": 542, "id": 92, "annotation": null}, {"text": "excitation", "start": 543, "end": 553, "id": 93, "annotation": null}, {"text": "at", "start": 554, "end": 556, "id": 94, "annotation": null}, {"text": "399", "start": 557, "end": 560, "id": 95, "annotation": null}, {"text": "nm", "start": 561, "end": 563, "id": 96, "annotation": null}, {"text": ",", "start": 564, "end": 565, "id": 97, "annotation": null}, {"text": "with", "start": 566, "end": 570, "id": 98, "annotation": null}, {"text": "the", "start": 571, "end": 574, "id": 99, "annotation": null}, {"text": "internal", "start": 575, "end": 583, "id": 100, "annotation": null}, {"text": "quantum", "start": 584, "end": 591, "id": 101, "annotation": null}, {"text": "efficiency", "start": 592, "end": 602, "id": 102, "annotation": null}, {"text": "being", "start": 603, "end": 608, "id": 103, "annotation": null}, {"text": "98", "start": 609, "end": 611, "id": 104, "annotation": null}, {"text": "%", "start": 612, "end": 613, "id": 105, "annotation": null}, {"text": ".", "start": 614, "end": 615, "id": 106, "annotation": null}], [{"text": "Its", "start": 616, "end": 619, "id": 107, "annotation": null}, {"text": "PL", "start": 620, "end": 622, "id": 108, "annotation": null}, {"text": "intensity", "start": 623, "end": 632, "id": 109, "annotation": null}, {"text": "was", "start": 633, "end": 636, "id": 110, "annotation": null}, {"text": "ca", "start": 637, "end": 639, "id": 111, "annotation": null}, {"text": ".", "start": 640, "end": 641, "id": 112, "annotation": null}], [{"text": "1.4", "start": 642, "end": 645, "id": 113, "annotation": null}, {"text": "times", "start": 646, "end": 651, "id": 114, "annotation": null}, {"text": "higher", "start": 652, "end": 658, "id": 115, "annotation": null}, {"text": "than", "start": 659, "end": 663, "id": 116, "annotation": null}, {"text": "that", "start": 664, "end": 668, "id": 117, "annotation": null}, {"text": "of", "start": 669, "end": 671, "id": 118, "annotation": null}, {"text": "the", "start": 672, "end": 675, "id": 119, "annotation": null}, {"text": "2.5wt%", "start": 676, "end": 682, "id": 120, "annotation": "DOPMODQ"}, {"text": "Eu3", "start": 683, "end": 686, "id": 121, "annotation": "DOPANT"}, {"text": "+", "start": 687, "end": 688, "id": 122, "annotation": "DOPANT"}, {"text": "-doped", "start": 689, "end": 695, "id": 123, "annotation": null}, {"text": "Li1.11Ta0.89Ti0.11O3", "start": 696, "end": 716, "id": 124, "annotation": "BASEMAT"}, {"text": "phosphor", "start": 717, "end": 725, "id": 125, "annotation": null}, {"text": ",", "start": 726, "end": 727, "id": 126, "annotation": null}, {"text": "indicating", "start": 728, "end": 738, "id": 127, "annotation": null}, {"text": "that", "start": 739, "end": 743, "id": 128, "annotation": null}, {"text": "the", "start": 744, "end": 747, "id": 129, "annotation": null}, {"text": "small", "start": 748, "end": 753, "id": 130, "annotation": null}, {"text": "amount", "start": 754, "end": 760, "id": 131, "annotation": null}, {"text": "of", "start": 761, "end": 763, "id": 132, "annotation": null}, {"text": "Sm3", "start": 764, "end": 767, "id": 133, "annotation": null}, {"text": "+", "start": 768, "end": 769, "id": 134, "annotation": null}, {"text": "acted", "start": 770, "end": 775, "id": 135, "annotation": null}, {"text": "as", "start": 776, "end": 778, "id": 136, "annotation": null}, {"text": "an", "start": 779, "end": 781, "id": 137, "annotation": null}, {"text": "effective", "start": 782, "end": 791, "id": 138, "annotation": null}, {"text": "sensitizer", "start": 792, "end": 802, "id": 139, "annotation": null}, {"text": ".", "start": 803, "end": 804, "id": 140, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Gadolinium doped ceria (GDC) has been investigated as a promising material for application as an electrolyte in intermediate temperature solid oxide fuel cells (IT-SOFC). In this work, 10GDC powders (Gd0.1Ce0.9O1.95) were synthesized by sol\u2013gel combustion and sol\u2013gel synthesis routes using the same complexing agents in both procedures. The thermal behavior of Gd\u2013Ce\u2013O precursor gels was investigated by TG\u2013DSC measurements. X-ray diffraction (XRD) analysis was used for the characterization of phase purity and crystallinity of synthesized samples. Scanning electron microscopy (SEM) was employed for the estimation of surface morphological features. Nitrogen adsorption\u2013desorption (BET model) was used for evaluation of specific surface area. The surface composition was determined by X-ray photoelectron spectroscopy (XPS). Electrical properties of synthesized ceramic samples were studied by means of impedance spectroscopy.", "meta": {"doi": "10.1016/j.ceramint.2015.11.066"}, "_input_hash": -919786758, "_task_hash": -1892978527, "tokens": [[{"text": "Gadolinium", "start": 0, "end": 10, "id": 0, "annotation": "DOPANT"}, {"text": "doped", "start": 11, "end": 16, "id": 1, "annotation": null}, {"text": "ceria", "start": 17, "end": 22, "id": 2, "annotation": "BASEMAT"}, {"text": "(", "start": 23, "end": 24, "id": 3, "annotation": null}, {"text": "GDC", "start": 25, "end": 28, "id": 4, "annotation": null}, {"text": ")", "start": 29, "end": 30, "id": 5, "annotation": null}, {"text": "has", "start": 31, "end": 34, "id": 6, "annotation": null}, {"text": "been", "start": 35, "end": 39, "id": 7, "annotation": null}, {"text": "investigated", "start": 40, "end": 52, "id": 8, "annotation": null}, {"text": "as", "start": 53, "end": 55, "id": 9, "annotation": null}, {"text": "a", "start": 56, "end": 57, "id": 10, "annotation": null}, {"text": "promising", "start": 58, "end": 67, "id": 11, "annotation": null}, {"text": "material", "start": 68, "end": 76, "id": 12, "annotation": null}, {"text": "for", "start": 77, "end": 80, "id": 13, "annotation": null}, {"text": "application", "start": 81, "end": 92, "id": 14, "annotation": null}, {"text": "as", "start": 93, "end": 95, "id": 15, "annotation": null}, {"text": "an", "start": 96, "end": 98, "id": 16, "annotation": null}, {"text": "electrolyte", "start": 99, "end": 110, "id": 17, "annotation": null}, {"text": "in", "start": 111, "end": 113, "id": 18, "annotation": null}, {"text": "intermediate", "start": 114, "end": 126, "id": 19, "annotation": null}, {"text": "temperature", "start": 127, "end": 138, "id": 20, "annotation": null}, {"text": "solid", "start": 139, "end": 144, "id": 21, "annotation": null}, {"text": "oxide", "start": 145, "end": 150, "id": 22, "annotation": null}, {"text": "fuel", "start": 151, "end": 155, "id": 23, "annotation": null}, {"text": "cells", "start": 156, "end": 161, "id": 24, "annotation": null}, {"text": "(", "start": 162, "end": 163, "id": 25, "annotation": null}, {"text": "IT", "start": 164, "end": 166, "id": 26, "annotation": null}, {"text": "-", "start": 167, "end": 168, "id": 27, "annotation": null}, {"text": "SOFC", "start": 169, "end": 173, "id": 28, "annotation": null}, {"text": ")", "start": 174, "end": 175, "id": 29, "annotation": null}, {"text": ".", "start": 176, "end": 177, "id": 30, "annotation": null}], [{"text": "In", "start": 178, "end": 180, "id": 31, "annotation": null}, {"text": "this", "start": 181, "end": 185, "id": 32, "annotation": null}, {"text": "work", "start": 186, "end": 190, "id": 33, "annotation": null}, {"text": ",", "start": 191, "end": 192, "id": 34, "annotation": null}, {"text": "10GDC", "start": 193, "end": 198, "id": 35, "annotation": null}, {"text": "powders", "start": 199, "end": 206, "id": 36, "annotation": null}, {"text": "(", "start": 207, "end": 208, "id": 37, "annotation": null}, {"text": "Gd0.1Ce0.9O1.95", "start": 209, "end": 224, "id": 38, "annotation": null}, {"text": ")", "start": 225, "end": 226, "id": 39, "annotation": null}, {"text": "were", "start": 227, "end": 231, "id": 40, "annotation": null}, {"text": "synthesized", "start": 232, "end": 243, "id": 41, "annotation": null}, {"text": "by", "start": 244, "end": 246, "id": 42, "annotation": null}, {"text": "sol", "start": 247, "end": 250, "id": 43, "annotation": null}, {"text": "\u2013", "start": 251, "end": 252, "id": 44, "annotation": null}, {"text": "gel", "start": 253, "end": 256, "id": 45, "annotation": null}, {"text": "combustion", "start": 257, "end": 267, "id": 46, "annotation": null}, {"text": "and", "start": 268, "end": 271, "id": 47, "annotation": null}, {"text": "sol", "start": 272, "end": 275, "id": 48, "annotation": null}, {"text": "\u2013", "start": 276, "end": 277, "id": 49, "annotation": null}, {"text": "gel", "start": 278, "end": 281, "id": 50, "annotation": null}, {"text": "synthesis", "start": 282, "end": 291, "id": 51, "annotation": null}, {"text": "routes", "start": 292, "end": 298, "id": 52, "annotation": null}, {"text": "using", "start": 299, "end": 304, "id": 53, "annotation": null}, {"text": "the", "start": 305, "end": 308, "id": 54, "annotation": null}, {"text": "same", "start": 309, "end": 313, "id": 55, "annotation": null}, {"text": "complexing", "start": 314, "end": 324, "id": 56, "annotation": null}, {"text": "agents", "start": 325, "end": 331, "id": 57, "annotation": null}, {"text": "in", "start": 332, "end": 334, "id": 58, "annotation": null}, {"text": "both", "start": 335, "end": 339, "id": 59, "annotation": null}, {"text": "procedures", "start": 340, "end": 350, "id": 60, "annotation": null}, {"text": ".", "start": 351, "end": 352, "id": 61, "annotation": null}], [{"text": "The", "start": 353, "end": 356, "id": 62, "annotation": null}, {"text": "thermal", "start": 357, "end": 364, "id": 63, "annotation": null}, {"text": "behavior", "start": 365, "end": 373, "id": 64, "annotation": null}, {"text": "of", "start": 374, "end": 376, "id": 65, "annotation": null}, {"text": "Gd", "start": 377, "end": 379, "id": 66, "annotation": null}, {"text": "\u2013", "start": 380, "end": 381, "id": 67, "annotation": null}, {"text": "Ce", "start": 382, "end": 384, "id": 68, "annotation": null}, {"text": "\u2013", "start": 385, "end": 386, "id": 69, "annotation": null}, {"text": "O", "start": 387, "end": 388, "id": 70, "annotation": null}, {"text": "precursor", "start": 389, "end": 398, "id": 71, "annotation": null}, {"text": "gels", "start": 399, "end": 403, "id": 72, "annotation": null}, {"text": "was", "start": 404, "end": 407, "id": 73, "annotation": null}, {"text": "investigated", "start": 408, "end": 420, "id": 74, "annotation": null}, {"text": "by", "start": 421, "end": 423, "id": 75, "annotation": null}, {"text": "TG", "start": 424, "end": 426, "id": 76, "annotation": null}, {"text": "\u2013", "start": 427, "end": 428, "id": 77, "annotation": null}, {"text": "DSC", "start": 429, "end": 432, "id": 78, "annotation": null}, {"text": "measurements", "start": 433, "end": 445, "id": 79, "annotation": null}, {"text": ".", "start": 446, "end": 447, "id": 80, "annotation": null}], [{"text": "X", "start": 448, "end": 449, "id": 81, "annotation": null}, {"text": "-", "start": 450, "end": 451, "id": 82, "annotation": null}, {"text": "ray", "start": 452, "end": 455, "id": 83, "annotation": null}, {"text": "diffraction", "start": 456, "end": 467, "id": 84, "annotation": null}, {"text": "(", "start": 468, "end": 469, "id": 85, "annotation": null}, {"text": "XRD", "start": 470, "end": 473, "id": 86, "annotation": null}, {"text": ")", "start": 474, "end": 475, "id": 87, "annotation": null}, {"text": "analysis", "start": 476, "end": 484, "id": 88, "annotation": null}, {"text": "was", "start": 485, "end": 488, "id": 89, "annotation": null}, {"text": "used", "start": 489, "end": 493, "id": 90, "annotation": null}, {"text": "for", "start": 494, "end": 497, "id": 91, "annotation": null}, {"text": "the", "start": 498, "end": 501, "id": 92, "annotation": null}, {"text": "characterization", "start": 502, "end": 518, "id": 93, "annotation": null}, {"text": "of", "start": 519, "end": 521, "id": 94, "annotation": null}, {"text": "phase", "start": 522, "end": 527, "id": 95, "annotation": null}, {"text": "purity", "start": 528, "end": 534, "id": 96, "annotation": null}, {"text": "and", "start": 535, "end": 538, "id": 97, "annotation": null}, {"text": "crystallinity", "start": 539, "end": 552, "id": 98, "annotation": null}, {"text": "of", "start": 553, "end": 555, "id": 99, "annotation": null}, {"text": "synthesized", "start": 556, "end": 567, "id": 100, "annotation": null}, {"text": "samples", "start": 568, "end": 575, "id": 101, "annotation": null}, {"text": ".", "start": 576, "end": 577, "id": 102, "annotation": null}], [{"text": "Scanning", "start": 578, "end": 586, "id": 103, "annotation": null}, {"text": "electron", "start": 587, "end": 595, "id": 104, "annotation": null}, {"text": "microscopy", "start": 596, "end": 606, "id": 105, "annotation": null}, {"text": "(", "start": 607, "end": 608, "id": 106, "annotation": null}, {"text": "SEM", "start": 609, "end": 612, "id": 107, "annotation": null}, {"text": ")", "start": 613, "end": 614, "id": 108, "annotation": null}, {"text": "was", "start": 615, "end": 618, "id": 109, "annotation": null}, {"text": "employed", "start": 619, "end": 627, "id": 110, "annotation": null}, {"text": "for", "start": 628, "end": 631, "id": 111, "annotation": null}, {"text": "the", "start": 632, "end": 635, "id": 112, "annotation": null}, {"text": "estimation", "start": 636, "end": 646, "id": 113, "annotation": null}, {"text": "of", "start": 647, "end": 649, "id": 114, "annotation": null}, {"text": "surface", "start": 650, "end": 657, "id": 115, "annotation": null}, {"text": "morphological", "start": 658, "end": 671, "id": 116, "annotation": null}, {"text": "features", "start": 672, "end": 680, "id": 117, "annotation": null}, {"text": ".", "start": 681, "end": 682, "id": 118, "annotation": null}], [{"text": "Nitrogen", "start": 683, "end": 691, "id": 119, "annotation": null}, {"text": "adsorption", "start": 692, "end": 702, "id": 120, "annotation": null}, {"text": "\u2013", "start": 703, "end": 704, "id": 121, "annotation": null}, {"text": "desorption", "start": 705, "end": 715, "id": 122, "annotation": null}, {"text": "(", "start": 716, "end": 717, "id": 123, "annotation": null}, {"text": "BET", "start": 718, "end": 721, "id": 124, "annotation": null}, {"text": "model", "start": 722, "end": 727, "id": 125, "annotation": null}, {"text": ")", "start": 728, "end": 729, "id": 126, "annotation": null}, {"text": "was", "start": 730, "end": 733, "id": 127, "annotation": null}, {"text": "used", "start": 734, "end": 738, "id": 128, "annotation": null}, {"text": "for", "start": 739, "end": 742, "id": 129, "annotation": null}, {"text": "evaluation", "start": 743, "end": 753, "id": 130, "annotation": null}, {"text": "of", "start": 754, "end": 756, "id": 131, "annotation": null}, {"text": "specific", "start": 757, "end": 765, "id": 132, "annotation": null}, {"text": "surface", "start": 766, "end": 773, "id": 133, "annotation": null}, {"text": "area", "start": 774, "end": 778, "id": 134, "annotation": null}, {"text": ".", "start": 779, "end": 780, "id": 135, "annotation": null}], [{"text": "The", "start": 781, "end": 784, "id": 136, "annotation": null}, {"text": "surface", "start": 785, "end": 792, "id": 137, "annotation": null}, {"text": "composition", "start": 793, "end": 804, "id": 138, "annotation": null}, {"text": "was", "start": 805, "end": 808, "id": 139, "annotation": null}, {"text": "determined", "start": 809, "end": 819, "id": 140, "annotation": null}, {"text": "by", "start": 820, "end": 822, "id": 141, "annotation": null}, {"text": "X", "start": 823, "end": 824, "id": 142, "annotation": null}, {"text": "-", "start": 825, "end": 826, "id": 143, "annotation": null}, {"text": "ray", "start": 827, "end": 830, "id": 144, "annotation": null}, {"text": "photoelectron", "start": 831, "end": 844, "id": 145, "annotation": null}, {"text": "spectroscopy", "start": 845, "end": 857, "id": 146, "annotation": null}, {"text": "(", "start": 858, "end": 859, "id": 147, "annotation": null}, {"text": "XPS", "start": 860, "end": 863, "id": 148, "annotation": null}, {"text": ")", "start": 864, "end": 865, "id": 149, "annotation": null}, {"text": ".", "start": 866, "end": 867, "id": 150, "annotation": null}], [{"text": "Electrical", "start": 868, "end": 878, "id": 151, "annotation": null}, {"text": "properties", "start": 879, "end": 889, "id": 152, "annotation": null}, {"text": "of", "start": 890, "end": 892, "id": 153, "annotation": null}, {"text": "synthesized", "start": 893, "end": 904, "id": 154, "annotation": null}, {"text": "ceramic", "start": 905, "end": 912, "id": 155, "annotation": null}, {"text": "samples", "start": 913, "end": 920, "id": 156, "annotation": null}, {"text": "were", "start": 921, "end": 925, "id": 157, "annotation": null}, {"text": "studied", "start": 926, "end": 933, "id": 158, "annotation": null}, {"text": "by", "start": 934, "end": 936, "id": 159, "annotation": null}, {"text": "means", "start": 937, "end": 942, "id": 160, "annotation": null}, {"text": "of", "start": 943, "end": 945, "id": 161, "annotation": null}, {"text": "impedance", "start": 946, "end": 955, "id": 162, "annotation": null}, {"text": "spectroscopy", "start": 956, "end": 968, "id": 163, "annotation": null}, {"text": ".", "start": 969, "end": 970, "id": 164, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The hydrogen storage properties of newly designed Sc- and Ti-decorated covalent organic frameworks, (C6H3)2(B2C4H4)3M6 (MSc, Ti), were investigated using density functional theory method. We found that each doped Sc atom can effectively adsorb 4 H2 with the average adsorption energy being in a range from 0.21 to 0.34eV. On the doped Ti atoms, the first H2 is dissociated and other H2 molecules have small, or even negative consecutive adsorption energy. Our calculation results showed that the Sc-decorated (C6H3)2(B2C4H4)3Sc6 covalent organic frameworks can adsorb 24 hydrogen molecules, which give a hydrogen storage capacity of 7.02wt% under ambient condition.", "meta": {"doi": "10.1016/j.commatsci.2017.05.017"}, "_input_hash": 989546225, "_task_hash": 219375998, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "hydrogen", "start": 4, "end": 12, "id": 1, "annotation": null}, {"text": "storage", "start": 13, "end": 20, "id": 2, "annotation": null}, {"text": "properties", "start": 21, "end": 31, "id": 3, "annotation": null}, {"text": "of", "start": 32, "end": 34, "id": 4, "annotation": null}, {"text": "newly", "start": 35, "end": 40, "id": 5, "annotation": null}, {"text": "designed", "start": 41, "end": 49, "id": 6, "annotation": null}, {"text": "Sc-", "start": 50, "end": 53, "id": 7, "annotation": "DOPANT"}, {"text": "and", "start": 54, "end": 57, "id": 8, "annotation": null}, {"text": "Ti", "start": 58, "end": 60, "id": 9, "annotation": "DOPANT"}, {"text": "-", "start": 61, "end": 62, "id": 10, "annotation": null}, {"text": "decorated", "start": 63, "end": 72, "id": 11, "annotation": null}, {"text": "covalent", "start": 73, "end": 81, "id": 12, "annotation": null}, {"text": "organic", "start": 82, "end": 89, "id": 13, "annotation": null}, {"text": "frameworks", "start": 90, "end": 100, "id": 14, "annotation": null}, {"text": ",", "start": 101, "end": 102, "id": 15, "annotation": null}, {"text": "(", "start": 103, "end": 104, "id": 16, "annotation": "BASEMAT"}, {"text": "C6H3)2(B2C4H4)3M6", "start": 105, "end": 122, "id": 17, "annotation": "BASEMAT"}, {"text": "(", "start": 123, "end": 124, "id": 18, "annotation": null}, {"text": "MSc", "start": 125, "end": 128, "id": 19, "annotation": null}, {"text": ",", "start": 129, "end": 130, "id": 20, "annotation": null}, {"text": "Ti", "start": 131, "end": 133, "id": 21, "annotation": null}, {"text": ")", "start": 134, "end": 135, "id": 22, "annotation": null}, {"text": ",", "start": 136, "end": 137, "id": 23, "annotation": null}, {"text": "were", "start": 138, "end": 142, "id": 24, "annotation": null}, {"text": "investigated", "start": 143, "end": 155, "id": 25, "annotation": null}, {"text": "using", "start": 156, "end": 161, "id": 26, "annotation": null}, {"text": "density", "start": 162, "end": 169, "id": 27, "annotation": null}, {"text": "functional", "start": 170, "end": 180, "id": 28, "annotation": null}, {"text": "theory", "start": 181, "end": 187, "id": 29, "annotation": null}, {"text": "method", "start": 188, "end": 194, "id": 30, "annotation": null}, {"text": ".", "start": 195, "end": 196, "id": 31, "annotation": null}], [{"text": "We", "start": 197, "end": 199, "id": 32, "annotation": null}, {"text": "found", "start": 200, "end": 205, "id": 33, "annotation": null}, {"text": "that", "start": 206, "end": 210, "id": 34, "annotation": null}, {"text": "each", "start": 211, "end": 215, "id": 35, "annotation": null}, {"text": "doped", "start": 216, "end": 221, "id": 36, "annotation": null}, {"text": "Sc", "start": 222, "end": 224, "id": 37, "annotation": "DOPANT"}, {"text": "atom", "start": 225, "end": 229, "id": 38, "annotation": null}, {"text": "can", "start": 230, "end": 233, "id": 39, "annotation": null}, {"text": "effectively", "start": 234, "end": 245, "id": 40, "annotation": null}, {"text": "adsorb", "start": 246, "end": 252, "id": 41, "annotation": null}, {"text": "4", "start": 253, "end": 254, "id": 42, "annotation": null}, {"text": "H2", "start": 255, "end": 257, "id": 43, "annotation": null}, {"text": "with", "start": 258, "end": 262, "id": 44, "annotation": null}, {"text": "the", "start": 263, "end": 266, "id": 45, "annotation": null}, {"text": "average", "start": 267, "end": 274, "id": 46, "annotation": null}, {"text": "adsorption", "start": 275, "end": 285, "id": 47, "annotation": null}, {"text": "energy", "start": 286, "end": 292, "id": 48, "annotation": null}, {"text": "being", "start": 293, "end": 298, "id": 49, "annotation": null}, {"text": "in", "start": 299, "end": 301, "id": 50, "annotation": null}, {"text": "a", "start": 302, "end": 303, "id": 51, "annotation": null}, {"text": "range", "start": 304, "end": 309, "id": 52, "annotation": null}, {"text": "from", "start": 310, "end": 314, "id": 53, "annotation": null}, {"text": "0.21", "start": 315, "end": 319, "id": 54, "annotation": null}, {"text": "to", "start": 320, "end": 322, "id": 55, "annotation": null}, {"text": "0.34eV.", "start": 323, "end": 330, "id": 56, "annotation": null}], [{"text": "On", "start": 331, "end": 333, "id": 57, "annotation": null}, {"text": "the", "start": 334, "end": 337, "id": 58, "annotation": null}, {"text": "doped", "start": 338, "end": 343, "id": 59, "annotation": null}, {"text": "Ti", "start": 344, "end": 346, "id": 60, "annotation": "DOPANT"}, {"text": "atoms", "start": 347, "end": 352, "id": 61, "annotation": null}, {"text": ",", "start": 353, "end": 354, "id": 62, "annotation": null}, {"text": "the", "start": 355, "end": 358, "id": 63, "annotation": null}, {"text": "first", "start": 359, "end": 364, "id": 64, "annotation": null}, {"text": "H2", "start": 365, "end": 367, "id": 65, "annotation": null}, {"text": "is", "start": 368, "end": 370, "id": 66, "annotation": null}, {"text": "dissociated", "start": 371, "end": 382, "id": 67, "annotation": null}, {"text": "and", "start": 383, "end": 386, "id": 68, "annotation": null}, {"text": "other", "start": 387, "end": 392, "id": 69, "annotation": null}, {"text": "H2", "start": 393, "end": 395, "id": 70, "annotation": null}, {"text": "molecules", "start": 396, "end": 405, "id": 71, "annotation": null}, {"text": "have", "start": 406, "end": 410, "id": 72, "annotation": null}, {"text": "small", "start": 411, "end": 416, "id": 73, "annotation": null}, {"text": ",", "start": 417, "end": 418, "id": 74, "annotation": null}, {"text": "or", "start": 419, "end": 421, "id": 75, "annotation": null}, {"text": "even", "start": 422, "end": 426, "id": 76, "annotation": null}, {"text": "negative", "start": 427, "end": 435, "id": 77, "annotation": null}, {"text": "consecutive", "start": 436, "end": 447, "id": 78, "annotation": null}, {"text": "adsorption", "start": 448, "end": 458, "id": 79, "annotation": null}, {"text": "energy", "start": 459, "end": 465, "id": 80, "annotation": null}, {"text": ".", "start": 466, "end": 467, "id": 81, "annotation": null}], [{"text": "Our", "start": 468, "end": 471, "id": 82, "annotation": null}, {"text": "calculation", "start": 472, "end": 483, "id": 83, "annotation": null}, {"text": "results", "start": 484, "end": 491, "id": 84, "annotation": null}, {"text": "showed", "start": 492, "end": 498, "id": 85, "annotation": null}, {"text": "that", "start": 499, "end": 503, "id": 86, "annotation": null}, {"text": "the", "start": 504, "end": 507, "id": 87, "annotation": null}, {"text": "Sc", "start": 508, "end": 510, "id": 88, "annotation": "DOPANT"}, {"text": "-", "start": 511, "end": 512, "id": 89, "annotation": null}, {"text": "decorated", "start": 513, "end": 522, "id": 90, "annotation": null}, {"text": "(", "start": 523, "end": 524, "id": 91, "annotation": "BASEMAT"}, {"text": "C6H3)2(B2C4H4)3Sc6", "start": 525, "end": 543, "id": 92, "annotation": "BASEMAT"}, {"text": "covalent", "start": 544, "end": 552, "id": 93, "annotation": null}, {"text": "organic", "start": 553, "end": 560, "id": 94, "annotation": null}, {"text": "frameworks", "start": 561, "end": 571, "id": 95, "annotation": null}, {"text": "can", "start": 572, "end": 575, "id": 96, "annotation": null}, {"text": "adsorb", "start": 576, "end": 582, "id": 97, "annotation": null}, {"text": "24", "start": 583, "end": 585, "id": 98, "annotation": null}, {"text": "hydrogen", "start": 586, "end": 594, "id": 99, "annotation": null}, {"text": "molecules", "start": 595, "end": 604, "id": 100, "annotation": null}, {"text": ",", "start": 605, "end": 606, "id": 101, "annotation": null}, {"text": "which", "start": 607, "end": 612, "id": 102, "annotation": null}, {"text": "give", "start": 613, "end": 617, "id": 103, "annotation": null}, {"text": "a", "start": 618, "end": 619, "id": 104, "annotation": null}, {"text": "hydrogen", "start": 620, "end": 628, "id": 105, "annotation": null}, {"text": "storage", "start": 629, "end": 636, "id": 106, "annotation": null}, {"text": "capacity", "start": 637, "end": 645, "id": 107, "annotation": null}, {"text": "of", "start": 646, "end": 648, "id": 108, "annotation": null}, {"text": "7.02wt%", "start": 649, "end": 656, "id": 109, "annotation": null}, {"text": "under", "start": 657, "end": 662, "id": 110, "annotation": null}, {"text": "ambient", "start": 663, "end": 670, "id": 111, "annotation": null}, {"text": "condition", "start": 671, "end": 680, "id": 112, "annotation": null}, {"text": ".", "start": 681, "end": 682, "id": 113, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} @@ -441,11 +441,11 @@ {"text": "La-doped \u03b3-Al2O3 supported Au catalysts show high activity and selectivity for the PROX reaction under PEMFC operation conditions. The superior performance is attributed to the formation of LaAlO3, which suppresses H2 oxidation and strengthens CO adsorption on Au sites, thereby improving competitive oxidation of CO at elevated temperature.", "meta": {"doi": "10.1039/C3CC49193E"}, "_input_hash": 2006123685, "_task_hash": -1583017209, "tokens": [[{"text": "La", "start": 0, "end": 2, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 3, "end": 4, "id": 1, "annotation": null}, {"text": "doped", "start": 5, "end": 10, "id": 2, "annotation": null}, {"text": "\u03b3", "start": 11, "end": 12, "id": 3, "annotation": null}, {"text": "-", "start": 13, "end": 14, "id": 4, "annotation": null}, {"text": "Al2O3", "start": 15, "end": 20, "id": 5, "annotation": "BASEMAT"}, {"text": "supported", "start": 21, "end": 30, "id": 6, "annotation": null}, {"text": "Au", "start": 31, "end": 33, "id": 7, "annotation": null}, {"text": "catalysts", "start": 34, "end": 43, "id": 8, "annotation": null}, {"text": "show", "start": 44, "end": 48, "id": 9, "annotation": null}, {"text": "high", "start": 49, "end": 53, "id": 10, "annotation": null}, {"text": "activity", "start": 54, "end": 62, "id": 11, "annotation": null}, {"text": "and", "start": 63, "end": 66, "id": 12, "annotation": null}, {"text": "selectivity", "start": 67, "end": 78, "id": 13, "annotation": null}, {"text": "for", "start": 79, "end": 82, "id": 14, "annotation": null}, {"text": "the", "start": 83, "end": 86, "id": 15, "annotation": null}, {"text": "PROX", "start": 87, "end": 91, "id": 16, "annotation": null}, {"text": "reaction", "start": 92, "end": 100, "id": 17, "annotation": null}, {"text": "under", "start": 101, "end": 106, "id": 18, "annotation": null}, {"text": "PEMFC", "start": 107, "end": 112, "id": 19, "annotation": null}, {"text": "operation", "start": 113, "end": 122, "id": 20, "annotation": null}, {"text": "conditions", "start": 123, "end": 133, "id": 21, "annotation": null}, {"text": ".", "start": 134, "end": 135, "id": 22, "annotation": null}], [{"text": "The", "start": 136, "end": 139, "id": 23, "annotation": null}, {"text": "superior", "start": 140, "end": 148, "id": 24, "annotation": null}, {"text": "performance", "start": 149, "end": 160, "id": 25, "annotation": null}, {"text": "is", "start": 161, "end": 163, "id": 26, "annotation": null}, {"text": "attributed", "start": 164, "end": 174, "id": 27, "annotation": null}, {"text": "to", "start": 175, "end": 177, "id": 28, "annotation": null}, {"text": "the", "start": 178, "end": 181, "id": 29, "annotation": null}, {"text": "formation", "start": 182, "end": 191, "id": 30, "annotation": null}, {"text": "of", "start": 192, "end": 194, "id": 31, "annotation": null}, {"text": "LaAlO3", "start": 195, "end": 201, "id": 32, "annotation": null}, {"text": ",", "start": 202, "end": 203, "id": 33, "annotation": null}, {"text": "which", "start": 204, "end": 209, "id": 34, "annotation": null}, {"text": "suppresses", "start": 210, "end": 220, "id": 35, "annotation": null}, {"text": "H2", "start": 221, "end": 223, "id": 36, "annotation": null}, {"text": "oxidation", "start": 224, "end": 233, "id": 37, "annotation": null}, {"text": "and", "start": 234, "end": 237, "id": 38, "annotation": null}, {"text": "strengthens", "start": 238, "end": 249, "id": 39, "annotation": null}, {"text": "CO", "start": 250, "end": 252, "id": 40, "annotation": null}, {"text": "adsorption", "start": 253, "end": 263, "id": 41, "annotation": null}, {"text": "on", "start": 264, "end": 266, "id": 42, "annotation": null}, {"text": "Au", "start": 267, "end": 269, "id": 43, "annotation": null}, {"text": "sites", "start": 270, "end": 275, "id": 44, "annotation": null}, {"text": ",", "start": 276, "end": 277, "id": 45, "annotation": null}, {"text": "thereby", "start": 278, "end": 285, "id": 46, "annotation": null}, {"text": "improving", "start": 286, "end": 295, "id": 47, "annotation": null}, {"text": "competitive", "start": 296, "end": 307, "id": 48, "annotation": null}, {"text": "oxidation", "start": 308, "end": 317, "id": 49, "annotation": null}, {"text": "of", "start": 318, "end": 320, "id": 50, "annotation": null}, {"text": "CO", "start": 321, "end": 323, "id": 51, "annotation": null}, {"text": "at", "start": 324, "end": 326, "id": 52, "annotation": null}, {"text": "elevated", "start": 327, "end": 335, "id": 53, "annotation": null}, {"text": "temperature", "start": 336, "end": 347, "id": 54, "annotation": null}, {"text": ".", "start": 348, "end": 349, "id": 55, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "We have studied the impact of temperature and pressure on the structural and electronic properties of Ge:P layers grown with GeH4+PH3 on thick Ge buffers, themselves on Si(001). The maximum phosphorous atomic concentration [P] exponentially decreased as the growth temperature increased, irrespective of pressure (20Torr, 100Torr or 250Torr). The highest values were however achieved at 100Torr (3.6\u00d71020cm\u22123 at 400\u00b0C, 2.5\u00d71019cm\u22123 at 600\u00b0C and 1019cm\u22123 at 750\u00b0C). P atomic depth profiles, \u201cbox-like\u201d at 400\u00b0C, became trapezoidal at 600\u00b0C and 750\u00b0C, most likely because of surface segregation. The increase at 100Torr of [P] with the PH3 mass-flow, almost linear at 400\u00b0C, saturated quite rapidly at much lower values at 600\u00b0C and 750\u00b0C. Adding PH3 had however almost no impact on the Ge growth rate (be it at 400\u00b0C or 750\u00b0C). A growth temperature of 400\u00b0C yielded Ge:P layers tensily-strained on the Ge buffers underneath, with a very high concentration of substitutional P atoms (5.4\u00d71020cm\u22123). Such layers were however rough and of rather low crystalline quality in X-ray Diffraction. Ge:P layers grown at 600\u00b0C and 750\u00b0C had the same lattice parameter and smooth surface morphology as the Ge:B buffers underneath, most likely because of lower P atomic concentrations (2.5\u00d71019cm\u22123 and 1019cm\u22123, respectively). Four point probe measurements showed that almost all P atoms were electrically active at 600\u00b0C and 750\u00b0C (1/4th at 400\u00b0C). Finally, room temperature photoluminescence measurements confirmed that high temperature Ge:P layers were of high optical quality, with a direct bandgap peak either slightly less intense (750\u00b0C) or more intense (600\u00b0C) than similar thickness intrinsic Ge layers. In contrast, highly phosphorous-doped Ge layers grown at 400\u00b0C were of poor optical quality, in line with structural and electrical results.", "meta": {"doi": "10.1016/j.jcrysgro.2012.03.023"}, "_input_hash": -1606300209, "_task_hash": -1207187679, "tokens": [[{"text": "We", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "have", "start": 3, "end": 7, "id": 1, "annotation": null}, {"text": "studied", "start": 8, "end": 15, "id": 2, "annotation": null}, {"text": "the", "start": 16, "end": 19, "id": 3, "annotation": null}, {"text": "impact", "start": 20, "end": 26, "id": 4, "annotation": null}, {"text": "of", "start": 27, "end": 29, "id": 5, "annotation": null}, {"text": "temperature", "start": 30, "end": 41, "id": 6, "annotation": null}, {"text": "and", "start": 42, "end": 45, "id": 7, "annotation": null}, {"text": "pressure", "start": 46, "end": 54, "id": 8, "annotation": null}, {"text": "on", "start": 55, "end": 57, "id": 9, "annotation": null}, {"text": "the", "start": 58, "end": 61, "id": 10, "annotation": null}, {"text": "structural", "start": 62, "end": 72, "id": 11, "annotation": null}, {"text": "and", "start": 73, "end": 76, "id": 12, "annotation": null}, {"text": "electronic", "start": 77, "end": 87, "id": 13, "annotation": null}, {"text": "properties", "start": 88, "end": 98, "id": 14, "annotation": null}, {"text": "of", "start": 99, "end": 101, "id": 15, "annotation": null}, {"text": "Ge", "start": 102, "end": 104, "id": 16, "annotation": "BASEMAT"}, {"text": ":", "start": 105, "end": 106, "id": 17, "annotation": null}, {"text": "P", "start": 107, "end": 108, "id": 18, "annotation": "DOPANT"}, {"text": "layers", "start": 109, "end": 115, "id": 19, "annotation": null}, {"text": "grown", "start": 116, "end": 121, "id": 20, "annotation": null}, {"text": "with", "start": 122, "end": 126, "id": 21, "annotation": null}, {"text": "GeH4+PH3", "start": 127, "end": 135, "id": 22, "annotation": null}, {"text": "on", "start": 136, "end": 138, "id": 23, "annotation": null}, {"text": "thick", "start": 139, "end": 144, "id": 24, "annotation": null}, {"text": "Ge", "start": 145, "end": 147, "id": 25, "annotation": null}, {"text": "buffers", "start": 148, "end": 155, "id": 26, "annotation": null}, {"text": ",", "start": 156, "end": 157, "id": 27, "annotation": null}, {"text": "themselves", "start": 158, "end": 168, "id": 28, "annotation": null}, {"text": "on", "start": 169, "end": 171, "id": 29, "annotation": null}, {"text": "Si(001", "start": 172, "end": 178, "id": 30, "annotation": null}, {"text": ")", "start": 179, "end": 180, "id": 31, "annotation": null}, {"text": ".", "start": 181, "end": 182, "id": 32, "annotation": null}], [{"text": "The", "start": 183, "end": 186, "id": 33, "annotation": null}, {"text": "maximum", "start": 187, "end": 194, "id": 34, "annotation": null}, {"text": "phosphorous", "start": 195, "end": 206, "id": 35, "annotation": null}, {"text": "atomic", "start": 207, "end": 213, "id": 36, "annotation": null}, {"text": "concentration", "start": 214, "end": 227, "id": 37, "annotation": null}, {"text": "[", "start": 228, "end": 229, "id": 38, "annotation": null}, {"text": "P", "start": 230, "end": 231, "id": 39, "annotation": null}, {"text": "]", "start": 232, "end": 233, "id": 40, "annotation": null}, {"text": "exponentially", "start": 234, "end": 247, "id": 41, "annotation": null}, {"text": "decreased", "start": 248, "end": 257, "id": 42, "annotation": null}, {"text": "as", "start": 258, "end": 260, "id": 43, "annotation": null}, {"text": "the", "start": 261, "end": 264, "id": 44, "annotation": null}, {"text": "growth", "start": 265, "end": 271, "id": 45, "annotation": null}, {"text": "temperature", "start": 272, "end": 283, "id": 46, "annotation": null}, {"text": "increased", "start": 284, "end": 293, "id": 47, "annotation": null}, {"text": ",", "start": 294, "end": 295, "id": 48, "annotation": null}, {"text": "irrespective", "start": 296, "end": 308, "id": 49, "annotation": null}, {"text": "of", "start": 309, "end": 311, "id": 50, "annotation": null}, {"text": "pressure", "start": 312, "end": 320, "id": 51, "annotation": null}, {"text": "(", "start": 321, "end": 322, "id": 52, "annotation": null}, {"text": "20Torr", "start": 323, "end": 329, "id": 53, "annotation": null}, {"text": ",", "start": 330, "end": 331, "id": 54, "annotation": null}, {"text": "100Torr", "start": 332, "end": 339, "id": 55, "annotation": null}, {"text": "or", "start": 340, "end": 342, "id": 56, "annotation": null}, {"text": "250Torr", "start": 343, "end": 350, "id": 57, "annotation": null}, {"text": ")", "start": 351, "end": 352, "id": 58, "annotation": null}, {"text": ".", "start": 353, "end": 354, "id": 59, "annotation": null}], [{"text": "The", "start": 355, "end": 358, "id": 60, "annotation": null}, {"text": "highest", "start": 359, "end": 366, "id": 61, "annotation": null}, {"text": "values", "start": 367, "end": 373, "id": 62, "annotation": null}, {"text": "were", "start": 374, "end": 378, "id": 63, "annotation": null}, {"text": "however", "start": 379, "end": 386, "id": 64, "annotation": null}, {"text": "achieved", "start": 387, "end": 395, "id": 65, "annotation": null}, {"text": "at", "start": 396, "end": 398, "id": 66, "annotation": null}, {"text": "100Torr", "start": 399, "end": 406, "id": 67, "annotation": null}, {"text": "(", "start": 407, "end": 408, "id": 68, "annotation": null}, {"text": "3.6\u00d71020cm\u22123", "start": 409, "end": 421, "id": 69, "annotation": "DOPMODQ"}, {"text": "at", "start": 422, "end": 424, "id": 70, "annotation": null}, {"text": "400", "start": 425, "end": 428, "id": 71, "annotation": null}, {"text": "\u00b0", "start": 429, "end": 430, "id": 72, "annotation": null}, {"text": "C", "start": 431, "end": 432, "id": 73, "annotation": null}, {"text": ",", "start": 433, "end": 434, "id": 74, "annotation": null}, {"text": "2.5\u00d71019cm\u22123", "start": 435, "end": 447, "id": 75, "annotation": "DOPMODQ"}, {"text": "at", "start": 448, "end": 450, "id": 76, "annotation": null}, {"text": "600", "start": 451, "end": 454, "id": 77, "annotation": null}, {"text": "\u00b0", "start": 455, "end": 456, "id": 78, "annotation": null}, {"text": "C", "start": 457, "end": 458, "id": 79, "annotation": null}, {"text": "and", "start": 459, "end": 462, "id": 80, "annotation": null}, {"text": "1019cm\u22123", "start": 463, "end": 471, "id": 81, "annotation": "DOPMODQ"}, {"text": "at", "start": 472, "end": 474, "id": 82, "annotation": null}, {"text": "750", "start": 475, "end": 478, "id": 83, "annotation": null}, {"text": "\u00b0", "start": 479, "end": 480, "id": 84, "annotation": null}, {"text": "C", "start": 481, "end": 482, "id": 85, "annotation": null}, {"text": ")", "start": 483, "end": 484, "id": 86, "annotation": null}, {"text": ".", "start": 485, "end": 486, "id": 87, "annotation": null}], [{"text": "P", "start": 487, "end": 488, "id": 88, "annotation": null}, {"text": "atomic", "start": 489, "end": 495, "id": 89, "annotation": null}, {"text": "depth", "start": 496, "end": 501, "id": 90, "annotation": null}, {"text": "profiles", "start": 502, "end": 510, "id": 91, "annotation": null}, {"text": ",", "start": 511, "end": 512, "id": 92, "annotation": null}, {"text": "\u201c", "start": 513, "end": 514, "id": 93, "annotation": null}, {"text": "box", "start": 515, "end": 518, "id": 94, "annotation": null}, {"text": "-", "start": 519, "end": 520, "id": 95, "annotation": null}, {"text": "like", "start": 521, "end": 525, "id": 96, "annotation": null}, {"text": "\u201d", "start": 526, "end": 527, "id": 97, "annotation": null}, {"text": "at", "start": 528, "end": 530, "id": 98, "annotation": null}, {"text": "400", "start": 531, "end": 534, "id": 99, "annotation": null}, {"text": "\u00b0", "start": 535, "end": 536, "id": 100, "annotation": null}, {"text": "C", "start": 537, "end": 538, "id": 101, "annotation": null}, {"text": ",", "start": 539, "end": 540, "id": 102, "annotation": null}, {"text": "became", "start": 541, "end": 547, "id": 103, "annotation": null}, {"text": "trapezoidal", "start": 548, "end": 559, "id": 104, "annotation": null}, {"text": "at", "start": 560, "end": 562, "id": 105, "annotation": null}, {"text": "600", "start": 563, "end": 566, "id": 106, "annotation": null}, {"text": "\u00b0", "start": 567, "end": 568, "id": 107, "annotation": null}, {"text": "C", "start": 569, "end": 570, "id": 108, "annotation": null}, {"text": "and", "start": 571, "end": 574, "id": 109, "annotation": null}, {"text": "750", "start": 575, "end": 578, "id": 110, "annotation": null}, {"text": "\u00b0", "start": 579, "end": 580, "id": 111, "annotation": null}, {"text": "C", "start": 581, "end": 582, "id": 112, "annotation": null}, {"text": ",", "start": 583, "end": 584, "id": 113, "annotation": null}, {"text": "most", "start": 585, "end": 589, "id": 114, "annotation": null}, {"text": "likely", "start": 590, "end": 596, "id": 115, "annotation": null}, {"text": "because", "start": 597, "end": 604, "id": 116, "annotation": null}, {"text": "of", "start": 605, "end": 607, "id": 117, "annotation": null}, {"text": "surface", "start": 608, "end": 615, "id": 118, "annotation": null}, {"text": "segregation", "start": 616, "end": 627, "id": 119, "annotation": null}, {"text": ".", "start": 628, "end": 629, "id": 120, "annotation": null}], [{"text": "The", "start": 630, "end": 633, "id": 121, "annotation": null}, {"text": "increase", "start": 634, "end": 642, "id": 122, "annotation": null}, {"text": "at", "start": 643, "end": 645, "id": 123, "annotation": null}, {"text": "100Torr", "start": 646, "end": 653, "id": 124, "annotation": null}, {"text": "of", "start": 654, "end": 656, "id": 125, "annotation": null}, {"text": "[", "start": 657, "end": 658, "id": 126, "annotation": null}, {"text": "P", "start": 659, "end": 660, "id": 127, "annotation": null}, {"text": "]", "start": 661, "end": 662, "id": 128, "annotation": null}, {"text": "with", "start": 663, "end": 667, "id": 129, "annotation": null}, {"text": "the", "start": 668, "end": 671, "id": 130, "annotation": null}, {"text": "PH3", "start": 672, "end": 675, "id": 131, "annotation": null}, {"text": "mass", "start": 676, "end": 680, "id": 132, "annotation": null}, {"text": "-", "start": 681, "end": 682, "id": 133, "annotation": null}, {"text": "flow", "start": 683, "end": 687, "id": 134, "annotation": null}, {"text": ",", "start": 688, "end": 689, "id": 135, "annotation": null}, {"text": "almost", "start": 690, "end": 696, "id": 136, "annotation": null}, {"text": "linear", "start": 697, "end": 703, "id": 137, "annotation": null}, {"text": "at", "start": 704, "end": 706, "id": 138, "annotation": null}, {"text": "400", "start": 707, "end": 710, "id": 139, "annotation": null}, {"text": "\u00b0", "start": 711, "end": 712, "id": 140, "annotation": null}, {"text": "C", "start": 713, "end": 714, "id": 141, "annotation": null}, {"text": ",", "start": 715, "end": 716, "id": 142, "annotation": null}, {"text": "saturated", "start": 717, "end": 726, "id": 143, "annotation": null}, {"text": "quite", "start": 727, "end": 732, "id": 144, "annotation": null}, {"text": "rapidly", "start": 733, "end": 740, "id": 145, "annotation": null}, {"text": "at", "start": 741, "end": 743, "id": 146, "annotation": null}, {"text": "much", "start": 744, "end": 748, "id": 147, "annotation": null}, {"text": "lower", "start": 749, "end": 754, "id": 148, "annotation": null}, {"text": "values", "start": 755, "end": 761, "id": 149, "annotation": null}, {"text": "at", "start": 762, "end": 764, "id": 150, "annotation": null}, {"text": "600", "start": 765, "end": 768, "id": 151, "annotation": null}, {"text": "\u00b0", "start": 769, "end": 770, "id": 152, "annotation": null}, {"text": "C", "start": 771, "end": 772, "id": 153, "annotation": null}, {"text": "and", "start": 773, "end": 776, "id": 154, "annotation": null}, {"text": "750", "start": 777, "end": 780, "id": 155, "annotation": null}, {"text": "\u00b0", "start": 781, "end": 782, "id": 156, "annotation": null}, {"text": "C", "start": 783, "end": 784, "id": 157, "annotation": null}, {"text": ".", "start": 785, "end": 786, "id": 158, "annotation": null}], [{"text": "Adding", "start": 787, "end": 793, "id": 159, "annotation": null}, {"text": "PH3", "start": 794, "end": 797, "id": 160, "annotation": null}, {"text": "had", "start": 798, "end": 801, "id": 161, "annotation": null}, {"text": "however", "start": 802, "end": 809, "id": 162, "annotation": null}, {"text": "almost", "start": 810, "end": 816, "id": 163, "annotation": null}, {"text": "no", "start": 817, "end": 819, "id": 164, "annotation": null}, {"text": "impact", "start": 820, "end": 826, "id": 165, "annotation": null}, {"text": "on", "start": 827, "end": 829, "id": 166, "annotation": null}, {"text": "the", "start": 830, "end": 833, "id": 167, "annotation": null}, {"text": "Ge", "start": 834, "end": 836, "id": 168, "annotation": null}, {"text": "growth", "start": 837, "end": 843, "id": 169, "annotation": null}, {"text": "rate", "start": 844, "end": 848, "id": 170, "annotation": null}, {"text": "(", "start": 849, "end": 850, "id": 171, "annotation": null}, {"text": "be", "start": 851, "end": 853, "id": 172, "annotation": null}, {"text": "it", "start": 854, "end": 856, "id": 173, "annotation": null}, {"text": "at", "start": 857, "end": 859, "id": 174, "annotation": null}, {"text": "400", "start": 860, "end": 863, "id": 175, "annotation": null}, {"text": "\u00b0", "start": 864, "end": 865, "id": 176, "annotation": null}, {"text": "C", "start": 866, "end": 867, "id": 177, "annotation": null}, {"text": "or", "start": 868, "end": 870, "id": 178, "annotation": null}, {"text": "750", "start": 871, "end": 874, "id": 179, "annotation": null}, {"text": "\u00b0", "start": 875, "end": 876, "id": 180, "annotation": null}, {"text": "C", "start": 877, "end": 878, "id": 181, "annotation": null}, {"text": ")", "start": 879, "end": 880, "id": 182, "annotation": null}, {"text": ".", "start": 881, "end": 882, "id": 183, "annotation": null}], [{"text": "A", "start": 883, "end": 884, "id": 184, "annotation": null}, {"text": "growth", "start": 885, "end": 891, "id": 185, "annotation": null}, {"text": "temperature", "start": 892, "end": 903, "id": 186, "annotation": null}, {"text": "of", "start": 904, "end": 906, "id": 187, "annotation": null}, {"text": "400", "start": 907, "end": 910, "id": 188, "annotation": null}, {"text": "\u00b0", "start": 911, "end": 912, "id": 189, "annotation": null}, {"text": "C", "start": 913, "end": 914, "id": 190, "annotation": null}, {"text": "yielded", "start": 915, "end": 922, "id": 191, "annotation": null}, {"text": "Ge", "start": 923, "end": 925, "id": 192, "annotation": "BASEMAT"}, {"text": ":", "start": 926, "end": 927, "id": 193, "annotation": null}, {"text": "P", "start": 928, "end": 929, "id": 194, "annotation": "DOPANT"}, {"text": "layers", "start": 930, "end": 936, "id": 195, "annotation": null}, {"text": "tensily", "start": 937, "end": 944, "id": 196, "annotation": null}, {"text": "-", "start": 945, "end": 946, "id": 197, "annotation": null}, {"text": "strained", "start": 947, "end": 955, "id": 198, "annotation": null}, {"text": "on", "start": 956, "end": 958, "id": 199, "annotation": null}, {"text": "the", "start": 959, "end": 962, "id": 200, "annotation": null}, {"text": "Ge", "start": 963, "end": 965, "id": 201, "annotation": null}, {"text": "buffers", "start": 966, "end": 973, "id": 202, "annotation": null}, {"text": "underneath", "start": 974, "end": 984, "id": 203, "annotation": null}, {"text": ",", "start": 985, "end": 986, "id": 204, "annotation": null}, {"text": "with", "start": 987, "end": 991, "id": 205, "annotation": null}, {"text": "a", "start": 992, "end": 993, "id": 206, "annotation": null}, {"text": "very", "start": 994, "end": 998, "id": 207, "annotation": null}, {"text": "high", "start": 999, "end": 1003, "id": 208, "annotation": null}, {"text": "concentration", "start": 1004, "end": 1017, "id": 209, "annotation": null}, {"text": "of", "start": 1018, "end": 1020, "id": 210, "annotation": null}, {"text": "substitutional", "start": 1021, "end": 1035, "id": 211, "annotation": null}, {"text": "P", "start": 1036, "end": 1037, "id": 212, "annotation": "DOPANT"}, {"text": "atoms", "start": 1038, "end": 1043, "id": 213, "annotation": null}, {"text": "(", "start": 1044, "end": 1045, "id": 214, "annotation": null}, {"text": "5.4\u00d71020cm\u22123", "start": 1046, "end": 1058, "id": 215, "annotation": "DOPMODQ"}, {"text": ")", "start": 1059, "end": 1060, "id": 216, "annotation": null}, {"text": ".", "start": 1061, "end": 1062, "id": 217, "annotation": null}], [{"text": "Such", "start": 1063, "end": 1067, "id": 218, "annotation": null}, {"text": "layers", "start": 1068, "end": 1074, "id": 219, "annotation": null}, {"text": "were", "start": 1075, "end": 1079, "id": 220, "annotation": null}, {"text": "however", "start": 1080, "end": 1087, "id": 221, "annotation": null}, {"text": "rough", "start": 1088, "end": 1093, "id": 222, "annotation": null}, {"text": "and", "start": 1094, "end": 1097, "id": 223, "annotation": null}, {"text": "of", "start": 1098, "end": 1100, "id": 224, "annotation": null}, {"text": "rather", "start": 1101, "end": 1107, "id": 225, "annotation": null}, {"text": "low", "start": 1108, "end": 1111, "id": 226, "annotation": null}, {"text": "crystalline", "start": 1112, "end": 1123, "id": 227, "annotation": null}, {"text": "quality", "start": 1124, "end": 1131, "id": 228, "annotation": null}, {"text": "in", "start": 1132, "end": 1134, "id": 229, "annotation": null}, {"text": "X", "start": 1135, "end": 1136, "id": 230, "annotation": null}, {"text": "-", "start": 1137, "end": 1138, "id": 231, "annotation": null}, {"text": "ray", "start": 1139, "end": 1142, "id": 232, "annotation": null}, {"text": "Diffraction", "start": 1143, "end": 1154, "id": 233, "annotation": null}, {"text": ".", "start": 1155, "end": 1156, "id": 234, "annotation": null}], [{"text": "Ge", "start": 1157, "end": 1159, "id": 235, "annotation": "BASEMAT"}, {"text": ":", "start": 1160, "end": 1161, "id": 236, "annotation": null}, {"text": "P", "start": 1162, "end": 1163, "id": 237, "annotation": "DOPANT"}, {"text": "layers", "start": 1164, "end": 1170, "id": 238, "annotation": null}, {"text": "grown", "start": 1171, "end": 1176, "id": 239, "annotation": null}, {"text": "at", "start": 1177, "end": 1179, "id": 240, "annotation": null}, {"text": "600", "start": 1180, "end": 1183, "id": 241, "annotation": null}, {"text": "\u00b0", "start": 1184, "end": 1185, "id": 242, "annotation": null}, {"text": "C", "start": 1186, "end": 1187, "id": 243, "annotation": null}, {"text": "and", "start": 1188, "end": 1191, "id": 244, "annotation": null}, {"text": "750", "start": 1192, "end": 1195, "id": 245, "annotation": null}, {"text": "\u00b0", "start": 1196, "end": 1197, "id": 246, "annotation": null}, {"text": "C", "start": 1198, "end": 1199, "id": 247, "annotation": null}, {"text": "had", "start": 1200, "end": 1203, "id": 248, "annotation": null}, {"text": "the", "start": 1204, "end": 1207, "id": 249, "annotation": null}, {"text": "same", "start": 1208, "end": 1212, "id": 250, "annotation": null}, {"text": "lattice", "start": 1213, "end": 1220, "id": 251, "annotation": null}, {"text": "parameter", "start": 1221, "end": 1230, "id": 252, "annotation": null}, {"text": "and", "start": 1231, "end": 1234, "id": 253, "annotation": null}, {"text": "smooth", "start": 1235, "end": 1241, "id": 254, "annotation": null}, {"text": "surface", "start": 1242, "end": 1249, "id": 255, "annotation": null}, {"text": "morphology", "start": 1250, "end": 1260, "id": 256, "annotation": null}, {"text": "as", "start": 1261, "end": 1263, "id": 257, "annotation": null}, {"text": "the", "start": 1264, "end": 1267, "id": 258, "annotation": null}, {"text": "Ge", "start": 1268, "end": 1270, "id": 259, "annotation": "BASEMAT"}, {"text": ":", "start": 1271, "end": 1272, "id": 260, "annotation": null}, {"text": "B", "start": 1273, "end": 1274, "id": 261, "annotation": "DOPANT"}, {"text": "buffers", "start": 1275, "end": 1282, "id": 262, "annotation": null}, {"text": "underneath", "start": 1283, "end": 1293, "id": 263, "annotation": null}, {"text": ",", "start": 1294, "end": 1295, "id": 264, "annotation": null}, {"text": "most", "start": 1296, "end": 1300, "id": 265, "annotation": null}, {"text": "likely", "start": 1301, "end": 1307, "id": 266, "annotation": null}, {"text": "because", "start": 1308, "end": 1315, "id": 267, "annotation": null}, {"text": "of", "start": 1316, "end": 1318, "id": 268, "annotation": null}, {"text": "lower", "start": 1319, "end": 1324, "id": 269, "annotation": null}, {"text": "P", "start": 1325, "end": 1326, "id": 270, "annotation": "DOPANT"}, {"text": "atomic", "start": 1327, "end": 1333, "id": 271, "annotation": null}, {"text": "concentrations", "start": 1334, "end": 1348, "id": 272, "annotation": null}, {"text": "(", "start": 1349, "end": 1350, "id": 273, "annotation": null}, {"text": "2.5\u00d71019cm\u22123", "start": 1351, "end": 1363, "id": 274, "annotation": "DOPMODQ"}, {"text": "and", "start": 1364, "end": 1367, "id": 275, "annotation": null}, {"text": "1019cm\u22123", "start": 1368, "end": 1376, "id": 276, "annotation": "DOPMODQ"}, {"text": ",", "start": 1377, "end": 1378, "id": 277, "annotation": null}, {"text": "respectively", "start": 1379, "end": 1391, "id": 278, "annotation": null}, {"text": ")", "start": 1392, "end": 1393, "id": 279, "annotation": null}, {"text": ".", "start": 1394, "end": 1395, "id": 280, "annotation": null}], [{"text": "Four", "start": 1396, "end": 1400, "id": 281, "annotation": null}, {"text": "point", "start": 1401, "end": 1406, "id": 282, "annotation": null}, {"text": "probe", "start": 1407, "end": 1412, "id": 283, "annotation": null}, {"text": "measurements", "start": 1413, "end": 1425, "id": 284, "annotation": null}, {"text": "showed", "start": 1426, "end": 1432, "id": 285, "annotation": null}, {"text": "that", "start": 1433, "end": 1437, "id": 286, "annotation": null}, {"text": "almost", "start": 1438, "end": 1444, "id": 287, "annotation": null}, {"text": "all", "start": 1445, "end": 1448, "id": 288, "annotation": null}, {"text": "P", "start": 1449, "end": 1450, "id": 289, "annotation": null}, {"text": "atoms", "start": 1451, "end": 1456, "id": 290, "annotation": null}, {"text": "were", "start": 1457, "end": 1461, "id": 291, "annotation": null}, {"text": "electrically", "start": 1462, "end": 1474, "id": 292, "annotation": null}, {"text": "active", "start": 1475, "end": 1481, "id": 293, "annotation": null}, {"text": "at", "start": 1482, "end": 1484, "id": 294, "annotation": null}, {"text": "600", "start": 1485, "end": 1488, "id": 295, "annotation": null}, {"text": "\u00b0", "start": 1489, "end": 1490, "id": 296, "annotation": null}, {"text": "C", "start": 1491, "end": 1492, "id": 297, "annotation": null}, {"text": "and", "start": 1493, "end": 1496, "id": 298, "annotation": null}, {"text": "750", "start": 1497, "end": 1500, "id": 299, "annotation": null}, {"text": "\u00b0", "start": 1501, "end": 1502, "id": 300, "annotation": null}, {"text": "C", "start": 1503, "end": 1504, "id": 301, "annotation": null}, {"text": "(", "start": 1505, "end": 1506, "id": 302, "annotation": null}, {"text": "1/4th", "start": 1507, "end": 1512, "id": 303, "annotation": null}, {"text": "at", "start": 1513, "end": 1515, "id": 304, "annotation": null}, {"text": "400", "start": 1516, "end": 1519, "id": 305, "annotation": null}, {"text": "\u00b0", "start": 1520, "end": 1521, "id": 306, "annotation": null}, {"text": "C", "start": 1522, "end": 1523, "id": 307, "annotation": null}, {"text": ")", "start": 1524, "end": 1525, "id": 308, "annotation": null}, {"text": ".", "start": 1526, "end": 1527, "id": 309, "annotation": null}], [{"text": "Finally", "start": 1528, "end": 1535, "id": 310, "annotation": null}, {"text": ",", "start": 1536, "end": 1537, "id": 311, "annotation": null}, {"text": "room", "start": 1538, "end": 1542, "id": 312, "annotation": null}, {"text": "temperature", "start": 1543, "end": 1554, "id": 313, "annotation": null}, {"text": "photoluminescence", "start": 1555, "end": 1572, "id": 314, "annotation": null}, {"text": "measurements", "start": 1573, "end": 1585, "id": 315, "annotation": null}, {"text": "confirmed", "start": 1586, "end": 1595, "id": 316, "annotation": null}, {"text": "that", "start": 1596, "end": 1600, "id": 317, "annotation": null}, {"text": "high", "start": 1601, "end": 1605, "id": 318, "annotation": null}, {"text": "temperature", "start": 1606, "end": 1617, "id": 319, "annotation": null}, {"text": "Ge", "start": 1618, "end": 1620, "id": 320, "annotation": "BASEMAT"}, {"text": ":", "start": 1621, "end": 1622, "id": 321, "annotation": null}, {"text": "P", "start": 1623, "end": 1624, "id": 322, "annotation": "DOPANT"}, {"text": "layers", "start": 1625, "end": 1631, "id": 323, "annotation": null}, {"text": "were", "start": 1632, "end": 1636, "id": 324, "annotation": null}, {"text": "of", "start": 1637, "end": 1639, "id": 325, "annotation": null}, {"text": "high", "start": 1640, "end": 1644, "id": 326, "annotation": null}, {"text": "optical", "start": 1645, "end": 1652, "id": 327, "annotation": null}, {"text": "quality", "start": 1653, "end": 1660, "id": 328, "annotation": null}, {"text": ",", "start": 1661, "end": 1662, "id": 329, "annotation": null}, {"text": "with", "start": 1663, "end": 1667, "id": 330, "annotation": null}, {"text": "a", "start": 1668, "end": 1669, "id": 331, "annotation": null}, {"text": "direct", "start": 1670, "end": 1676, "id": 332, "annotation": null}, {"text": "bandgap", "start": 1677, "end": 1684, "id": 333, "annotation": null}, {"text": "peak", "start": 1685, "end": 1689, "id": 334, "annotation": null}, {"text": "either", "start": 1690, "end": 1696, "id": 335, "annotation": null}, {"text": "slightly", "start": 1697, "end": 1705, "id": 336, "annotation": null}, {"text": "less", "start": 1706, "end": 1710, "id": 337, "annotation": null}, {"text": "intense", "start": 1711, "end": 1718, "id": 338, "annotation": null}, {"text": "(", "start": 1719, "end": 1720, "id": 339, "annotation": null}, {"text": "750", "start": 1721, "end": 1724, "id": 340, "annotation": null}, {"text": "\u00b0", "start": 1725, "end": 1726, "id": 341, "annotation": null}, {"text": "C", "start": 1727, "end": 1728, "id": 342, "annotation": null}, {"text": ")", "start": 1729, "end": 1730, "id": 343, "annotation": null}, {"text": "or", "start": 1731, "end": 1733, "id": 344, "annotation": null}, {"text": "more", "start": 1734, "end": 1738, "id": 345, "annotation": null}, {"text": "intense", "start": 1739, "end": 1746, "id": 346, "annotation": null}, {"text": "(", "start": 1747, "end": 1748, "id": 347, "annotation": null}, {"text": "600", "start": 1749, "end": 1752, "id": 348, "annotation": null}, {"text": "\u00b0", "start": 1753, "end": 1754, "id": 349, "annotation": null}, {"text": "C", "start": 1755, "end": 1756, "id": 350, "annotation": null}, {"text": ")", "start": 1757, "end": 1758, "id": 351, "annotation": null}, {"text": "than", "start": 1759, "end": 1763, "id": 352, "annotation": null}, {"text": "similar", "start": 1764, "end": 1771, "id": 353, "annotation": null}, {"text": "thickness", "start": 1772, "end": 1781, "id": 354, "annotation": null}, {"text": "intrinsic", "start": 1782, "end": 1791, "id": 355, "annotation": null}, {"text": "Ge", "start": 1792, "end": 1794, "id": 356, "annotation": null}, {"text": "layers", "start": 1795, "end": 1801, "id": 357, "annotation": null}, {"text": ".", "start": 1802, "end": 1803, "id": 358, "annotation": null}], [{"text": "In", "start": 1804, "end": 1806, "id": 359, "annotation": null}, {"text": "contrast", "start": 1807, "end": 1815, "id": 360, "annotation": null}, {"text": ",", "start": 1816, "end": 1817, "id": 361, "annotation": null}, {"text": "highly", "start": 1818, "end": 1824, "id": 362, "annotation": null}, {"text": "phosphorous", "start": 1825, "end": 1836, "id": 363, "annotation": "DOPANT"}, {"text": "-", "start": 1837, "end": 1838, "id": 364, "annotation": null}, {"text": "doped", "start": 1839, "end": 1844, "id": 365, "annotation": null}, {"text": "Ge", "start": 1845, "end": 1847, "id": 366, "annotation": "BASEMAT"}, {"text": "layers", "start": 1848, "end": 1854, "id": 367, "annotation": null}, {"text": "grown", "start": 1855, "end": 1860, "id": 368, "annotation": null}, {"text": "at", "start": 1861, "end": 1863, "id": 369, "annotation": null}, {"text": "400", "start": 1864, "end": 1867, "id": 370, "annotation": null}, {"text": "\u00b0", "start": 1868, "end": 1869, "id": 371, "annotation": null}, {"text": "C", "start": 1870, "end": 1871, "id": 372, "annotation": null}, {"text": "were", "start": 1872, "end": 1876, "id": 373, "annotation": null}, {"text": "of", "start": 1877, "end": 1879, "id": 374, "annotation": null}, {"text": "poor", "start": 1880, "end": 1884, "id": 375, "annotation": null}, {"text": "optical", "start": 1885, "end": 1892, "id": 376, "annotation": null}, {"text": "quality", "start": 1893, "end": 1900, "id": 377, "annotation": null}, {"text": ",", "start": 1901, "end": 1902, "id": 378, "annotation": null}, {"text": "in", "start": 1903, "end": 1905, "id": 379, "annotation": null}, {"text": "line", "start": 1906, "end": 1910, "id": 380, "annotation": null}, {"text": "with", "start": 1911, "end": 1915, "id": 381, "annotation": null}, {"text": "structural", "start": 1916, "end": 1926, "id": 382, "annotation": null}, {"text": "and", "start": 1927, "end": 1930, "id": 383, "annotation": null}, {"text": "electrical", "start": 1931, "end": 1941, "id": 384, "annotation": null}, {"text": "results", "start": 1942, "end": 1949, "id": 385, "annotation": null}, {"text": ".", "start": 1950, "end": 1951, "id": 386, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "In a previous work, significant varistor behaviour was found in polycrystalline ZnO with Mn as the only additive. In the present work, the admittance spectra of these Mn-doped ZnO samples were investigated in the temperature range from 70 to 300K. From this study, the microscopic parameters of the deep bulk donors such as their energy levels and capture cross-sections were obtained in the samples with different Mn contents. The origin of the donors in ZnO is discussed by comparing their characteristics found in Mn-doped ZnO with those observed in other ZnO varistor systems.", "meta": {"doi": "10.1016/S0254-0584(02)00063-9"}, "_input_hash": 683476259, "_task_hash": -1188961009, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "a", "start": 3, "end": 4, "id": 1, "annotation": null}, {"text": "previous", "start": 5, "end": 13, "id": 2, "annotation": null}, {"text": "work", "start": 14, "end": 18, "id": 3, "annotation": null}, {"text": ",", "start": 19, "end": 20, "id": 4, "annotation": null}, {"text": "significant", "start": 21, "end": 32, "id": 5, "annotation": null}, {"text": "varistor", "start": 33, "end": 41, "id": 6, "annotation": null}, {"text": "behaviour", "start": 42, "end": 51, "id": 7, "annotation": null}, {"text": "was", "start": 52, "end": 55, "id": 8, "annotation": null}, {"text": "found", "start": 56, "end": 61, "id": 9, "annotation": null}, {"text": "in", "start": 62, "end": 64, "id": 10, "annotation": null}, {"text": "polycrystalline", "start": 65, "end": 80, "id": 11, "annotation": null}, {"text": "ZnO", "start": 81, "end": 84, "id": 12, "annotation": null}, {"text": "with", "start": 85, "end": 89, "id": 13, "annotation": null}, {"text": "Mn", "start": 90, "end": 92, "id": 14, "annotation": null}, {"text": "as", "start": 93, "end": 95, "id": 15, "annotation": null}, {"text": "the", "start": 96, "end": 99, "id": 16, "annotation": null}, {"text": "only", "start": 100, "end": 104, "id": 17, "annotation": null}, {"text": "additive", "start": 105, "end": 113, "id": 18, "annotation": null}, {"text": ".", "start": 114, "end": 115, "id": 19, "annotation": null}], [{"text": "In", "start": 116, "end": 118, "id": 20, "annotation": null}, {"text": "the", "start": 119, "end": 122, "id": 21, "annotation": null}, {"text": "present", "start": 123, "end": 130, "id": 22, "annotation": null}, {"text": "work", "start": 131, "end": 135, "id": 23, "annotation": null}, {"text": ",", "start": 136, "end": 137, "id": 24, "annotation": null}, {"text": "the", "start": 138, "end": 141, "id": 25, "annotation": null}, {"text": "admittance", "start": 142, "end": 152, "id": 26, "annotation": null}, {"text": "spectra", "start": 153, "end": 160, "id": 27, "annotation": null}, {"text": "of", "start": 161, "end": 163, "id": 28, "annotation": null}, {"text": "these", "start": 164, "end": 169, "id": 29, "annotation": null}, {"text": "Mn", "start": 170, "end": 172, "id": 30, "annotation": "DOPANT"}, {"text": "-", "start": 173, "end": 174, "id": 31, "annotation": null}, {"text": "doped", "start": 175, "end": 180, "id": 32, "annotation": null}, {"text": "ZnO", "start": 181, "end": 184, "id": 33, "annotation": "BASEMAT"}, {"text": "samples", "start": 185, "end": 192, "id": 34, "annotation": null}, {"text": "were", "start": 193, "end": 197, "id": 35, "annotation": null}, {"text": "investigated", "start": 198, "end": 210, "id": 36, "annotation": null}, {"text": "in", "start": 211, "end": 213, "id": 37, "annotation": null}, {"text": "the", "start": 214, "end": 217, "id": 38, "annotation": null}, {"text": "temperature", "start": 218, "end": 229, "id": 39, "annotation": null}, {"text": "range", "start": 230, "end": 235, "id": 40, "annotation": null}, {"text": "from", "start": 236, "end": 240, "id": 41, "annotation": null}, {"text": "70", "start": 241, "end": 243, "id": 42, "annotation": null}, {"text": "to", "start": 244, "end": 246, "id": 43, "annotation": null}, {"text": "300K.", "start": 247, "end": 252, "id": 44, "annotation": null}], [{"text": "From", "start": 253, "end": 257, "id": 45, "annotation": null}, {"text": "this", "start": 258, "end": 262, "id": 46, "annotation": null}, {"text": "study", "start": 263, "end": 268, "id": 47, "annotation": null}, {"text": ",", "start": 269, "end": 270, "id": 48, "annotation": null}, {"text": "the", "start": 271, "end": 274, "id": 49, "annotation": null}, {"text": "microscopic", "start": 275, "end": 286, "id": 50, "annotation": null}, {"text": "parameters", "start": 287, "end": 297, "id": 51, "annotation": null}, {"text": "of", "start": 298, "end": 300, "id": 52, "annotation": null}, {"text": "the", "start": 301, "end": 304, "id": 53, "annotation": null}, {"text": "deep", "start": 305, "end": 309, "id": 54, "annotation": null}, {"text": "bulk", "start": 310, "end": 314, "id": 55, "annotation": null}, {"text": "donors", "start": 315, "end": 321, "id": 56, "annotation": null}, {"text": "such", "start": 322, "end": 326, "id": 57, "annotation": null}, {"text": "as", "start": 327, "end": 329, "id": 58, "annotation": null}, {"text": "their", "start": 330, "end": 335, "id": 59, "annotation": null}, {"text": "energy", "start": 336, "end": 342, "id": 60, "annotation": null}, {"text": "levels", "start": 343, "end": 349, "id": 61, "annotation": null}, {"text": "and", "start": 350, "end": 353, "id": 62, "annotation": null}, {"text": "capture", "start": 354, "end": 361, "id": 63, "annotation": null}, {"text": "cross", "start": 362, "end": 367, "id": 64, "annotation": null}, {"text": "-", "start": 368, "end": 369, "id": 65, "annotation": null}, {"text": "sections", "start": 370, "end": 378, "id": 66, "annotation": null}, {"text": "were", "start": 379, "end": 383, "id": 67, "annotation": null}, {"text": "obtained", "start": 384, "end": 392, "id": 68, "annotation": null}, {"text": "in", "start": 393, "end": 395, "id": 69, "annotation": null}, {"text": "the", "start": 396, "end": 399, "id": 70, "annotation": null}, {"text": "samples", "start": 400, "end": 407, "id": 71, "annotation": null}, {"text": "with", "start": 408, "end": 412, "id": 72, "annotation": null}, {"text": "different", "start": 413, "end": 422, "id": 73, "annotation": null}, {"text": "Mn", "start": 423, "end": 425, "id": 74, "annotation": null}, {"text": "contents", "start": 426, "end": 434, "id": 75, "annotation": null}, {"text": ".", "start": 435, "end": 436, "id": 76, "annotation": null}], [{"text": "The", "start": 437, "end": 440, "id": 77, "annotation": null}, {"text": "origin", "start": 441, "end": 447, "id": 78, "annotation": null}, {"text": "of", "start": 448, "end": 450, "id": 79, "annotation": null}, {"text": "the", "start": 451, "end": 454, "id": 80, "annotation": null}, {"text": "donors", "start": 455, "end": 461, "id": 81, "annotation": null}, {"text": "in", "start": 462, "end": 464, "id": 82, "annotation": null}, {"text": "ZnO", "start": 465, "end": 468, "id": 83, "annotation": null}, {"text": "is", "start": 469, "end": 471, "id": 84, "annotation": null}, {"text": "discussed", "start": 472, "end": 481, "id": 85, "annotation": null}, {"text": "by", "start": 482, "end": 484, "id": 86, "annotation": null}, {"text": "comparing", "start": 485, "end": 494, "id": 87, "annotation": null}, {"text": "their", "start": 495, "end": 500, "id": 88, "annotation": null}, {"text": "characteristics", "start": 501, "end": 516, "id": 89, "annotation": null}, {"text": "found", "start": 517, "end": 522, "id": 90, "annotation": null}, {"text": "in", "start": 523, "end": 525, "id": 91, "annotation": null}, {"text": "Mn", "start": 526, "end": 528, "id": 92, "annotation": "DOPANT"}, {"text": "-", "start": 529, "end": 530, "id": 93, "annotation": null}, {"text": "doped", "start": 531, "end": 536, "id": 94, "annotation": null}, {"text": "ZnO", "start": 537, "end": 540, "id": 95, "annotation": "BASEMAT"}, {"text": "with", "start": 541, "end": 545, "id": 96, "annotation": null}, {"text": "those", "start": 546, "end": 551, "id": 97, "annotation": null}, {"text": "observed", "start": 552, "end": 560, "id": 98, "annotation": null}, {"text": "in", "start": 561, "end": 563, "id": 99, "annotation": null}, {"text": "other", "start": 564, "end": 569, "id": 100, "annotation": null}, {"text": "ZnO", "start": 570, "end": 573, "id": 101, "annotation": null}, {"text": "varistor", "start": 574, "end": 582, "id": 102, "annotation": null}, {"text": "systems", "start": 583, "end": 590, "id": 103, "annotation": null}, {"text": ".", "start": 591, "end": 592, "id": 104, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "By co-sputtering Cu and FePt onto Cr90Mo10 underlayers, the preferred orientation and easy axis of magnetic anisotropy of FePt films were successfully changed from the perpendicular to the in-plane direction. The pure FePt film grown on the Cr90Mo10 underlayer showed a (001) preferred orientation with out-of-plane magnetic anisotropy. As 20 and 40 vol.% Cu were doped, the FePt films showed a (200) preferred orientation with in-plane magnetic anisotropy. The pure FePt film showed a continuous microstructure, while the Cu-doped FePt films showed a mixture of particle-like and continuous microstructures. The change of the preferred orientation in the FePt films by Cu doping might be due to the competition of grain-boundary energy, surface free energy and epitaxial-strain energy. The experimental results suggest that the Cu doping be a promising method for the fabrication of the in-plane oriented FePt films. The Cu-doped FePt films had a lower Ms than the pure FePt film.", "meta": {"doi": "10.1016/j.surfcoat.2004.10.080"}, "_input_hash": -1765082222, "_task_hash": 1817285993, "tokens": [[{"text": "By", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "co", "start": 3, "end": 5, "id": 1, "annotation": null}, {"text": "-", "start": 6, "end": 7, "id": 2, "annotation": null}, {"text": "sputtering", "start": 8, "end": 18, "id": 3, "annotation": null}, {"text": "Cu", "start": 19, "end": 21, "id": 4, "annotation": null}, {"text": "and", "start": 22, "end": 25, "id": 5, "annotation": null}, {"text": "FePt", "start": 26, "end": 30, "id": 6, "annotation": null}, {"text": "onto", "start": 31, "end": 35, "id": 7, "annotation": null}, {"text": "Cr90Mo10", "start": 36, "end": 44, "id": 8, "annotation": null}, {"text": "underlayers", "start": 45, "end": 56, "id": 9, "annotation": null}, {"text": ",", "start": 57, "end": 58, "id": 10, "annotation": null}, {"text": "the", "start": 59, "end": 62, "id": 11, "annotation": null}, {"text": "preferred", "start": 63, "end": 72, "id": 12, "annotation": null}, {"text": "orientation", "start": 73, "end": 84, "id": 13, "annotation": null}, {"text": "and", "start": 85, "end": 88, "id": 14, "annotation": null}, {"text": "easy", "start": 89, "end": 93, "id": 15, "annotation": null}, {"text": "axis", "start": 94, "end": 98, "id": 16, "annotation": null}, {"text": "of", "start": 99, "end": 101, "id": 17, "annotation": null}, {"text": "magnetic", "start": 102, "end": 110, "id": 18, "annotation": null}, {"text": "anisotropy", "start": 111, "end": 121, "id": 19, "annotation": null}, {"text": "of", "start": 122, "end": 124, "id": 20, "annotation": null}, {"text": "FePt", "start": 125, "end": 129, "id": 21, "annotation": null}, {"text": "films", "start": 130, "end": 135, "id": 22, "annotation": null}, {"text": "were", "start": 136, "end": 140, "id": 23, "annotation": null}, {"text": "successfully", "start": 141, "end": 153, "id": 24, "annotation": null}, {"text": "changed", "start": 154, "end": 161, "id": 25, "annotation": null}, {"text": "from", "start": 162, "end": 166, "id": 26, "annotation": null}, {"text": "the", "start": 167, "end": 170, "id": 27, "annotation": null}, {"text": "perpendicular", "start": 171, "end": 184, "id": 28, "annotation": null}, {"text": "to", "start": 185, "end": 187, "id": 29, "annotation": null}, {"text": "the", "start": 188, "end": 191, "id": 30, "annotation": null}, {"text": "in", "start": 192, "end": 194, "id": 31, "annotation": null}, {"text": "-", "start": 195, "end": 196, "id": 32, "annotation": null}, {"text": "plane", "start": 197, "end": 202, "id": 33, "annotation": null}, {"text": "direction", "start": 203, "end": 212, "id": 34, "annotation": null}, {"text": ".", "start": 213, "end": 214, "id": 35, "annotation": null}], [{"text": "The", "start": 215, "end": 218, "id": 36, "annotation": null}, {"text": "pure", "start": 219, "end": 223, "id": 37, "annotation": null}, {"text": "FePt", "start": 224, "end": 228, "id": 38, "annotation": null}, {"text": "film", "start": 229, "end": 233, "id": 39, "annotation": null}, {"text": "grown", "start": 234, "end": 239, "id": 40, "annotation": null}, {"text": "on", "start": 240, "end": 242, "id": 41, "annotation": null}, {"text": "the", "start": 243, "end": 246, "id": 42, "annotation": null}, {"text": "Cr90Mo10", "start": 247, "end": 255, "id": 43, "annotation": null}, {"text": "underlayer", "start": 256, "end": 266, "id": 44, "annotation": null}, {"text": "showed", "start": 267, "end": 273, "id": 45, "annotation": null}, {"text": "a", "start": 274, "end": 275, "id": 46, "annotation": null}, {"text": "(", "start": 276, "end": 277, "id": 47, "annotation": null}, {"text": "001", "start": 278, "end": 281, "id": 48, "annotation": null}, {"text": ")", "start": 282, "end": 283, "id": 49, "annotation": null}, {"text": "preferred", "start": 284, "end": 293, "id": 50, "annotation": null}, {"text": "orientation", "start": 294, "end": 305, "id": 51, "annotation": null}, {"text": "with", "start": 306, "end": 310, "id": 52, "annotation": null}, {"text": "out", "start": 311, "end": 314, "id": 53, "annotation": null}, {"text": "-", "start": 315, "end": 316, "id": 54, "annotation": null}, {"text": "of", "start": 317, "end": 319, "id": 55, "annotation": null}, {"text": "-", "start": 320, "end": 321, "id": 56, "annotation": null}, {"text": "plane", "start": 322, "end": 327, "id": 57, "annotation": null}, {"text": "magnetic", "start": 328, "end": 336, "id": 58, "annotation": null}, {"text": "anisotropy", "start": 337, "end": 347, "id": 59, "annotation": null}, {"text": ".", "start": 348, "end": 349, "id": 60, "annotation": null}], [{"text": "As", "start": 350, "end": 352, "id": 61, "annotation": null}, {"text": "20", "start": 353, "end": 355, "id": 62, "annotation": "DOPMODQ"}, {"text": "and", "start": 356, "end": 359, "id": 63, "annotation": null}, {"text": "40", "start": 360, "end": 362, "id": 64, "annotation": "DOPMODQ"}, {"text": "vol.%", "start": 363, "end": 368, "id": 65, "annotation": "DOPMODQ"}, {"text": "Cu", "start": 369, "end": 371, "id": 66, "annotation": "DOPANT"}, {"text": "were", "start": 372, "end": 376, "id": 67, "annotation": null}, {"text": "doped", "start": 377, "end": 382, "id": 68, "annotation": null}, {"text": ",", "start": 383, "end": 384, "id": 69, "annotation": null}, {"text": "the", "start": 385, "end": 388, "id": 70, "annotation": null}, {"text": "FePt", "start": 389, "end": 393, "id": 71, "annotation": "BASEMAT"}, {"text": "films", "start": 394, "end": 399, "id": 72, "annotation": null}, {"text": "showed", "start": 400, "end": 406, "id": 73, "annotation": null}, {"text": "a", "start": 407, "end": 408, "id": 74, "annotation": null}, {"text": "(", "start": 409, "end": 410, "id": 75, "annotation": null}, {"text": "200", "start": 411, "end": 414, "id": 76, "annotation": null}, {"text": ")", "start": 415, "end": 416, "id": 77, "annotation": null}, {"text": "preferred", "start": 417, "end": 426, "id": 78, "annotation": null}, {"text": "orientation", "start": 427, "end": 438, "id": 79, "annotation": null}, {"text": "with", "start": 439, "end": 443, "id": 80, "annotation": null}, {"text": "in", "start": 444, "end": 446, "id": 81, "annotation": null}, {"text": "-", "start": 447, "end": 448, "id": 82, "annotation": null}, {"text": "plane", "start": 449, "end": 454, "id": 83, "annotation": null}, {"text": "magnetic", "start": 455, "end": 463, "id": 84, "annotation": null}, {"text": "anisotropy", "start": 464, "end": 474, "id": 85, "annotation": null}, {"text": ".", "start": 475, "end": 476, "id": 86, "annotation": null}], [{"text": "The", "start": 477, "end": 480, "id": 87, "annotation": null}, {"text": "pure", "start": 481, "end": 485, "id": 88, "annotation": null}, {"text": "FePt", "start": 486, "end": 490, "id": 89, "annotation": null}, {"text": "film", "start": 491, "end": 495, "id": 90, "annotation": null}, {"text": "showed", "start": 496, "end": 502, "id": 91, "annotation": null}, {"text": "a", "start": 503, "end": 504, "id": 92, "annotation": null}, {"text": "continuous", "start": 505, "end": 515, "id": 93, "annotation": null}, {"text": "microstructure", "start": 516, "end": 530, "id": 94, "annotation": null}, {"text": ",", "start": 531, "end": 532, "id": 95, "annotation": null}, {"text": "while", "start": 533, "end": 538, "id": 96, "annotation": null}, {"text": "the", "start": 539, "end": 542, "id": 97, "annotation": null}, {"text": "Cu", "start": 543, "end": 545, "id": 98, "annotation": "DOPANT"}, {"text": "-", "start": 546, "end": 547, "id": 99, "annotation": null}, {"text": "doped", "start": 548, "end": 553, "id": 100, "annotation": null}, {"text": "FePt", "start": 554, "end": 558, "id": 101, "annotation": "BASEMAT"}, {"text": "films", "start": 559, "end": 564, "id": 102, "annotation": null}, {"text": "showed", "start": 565, "end": 571, "id": 103, "annotation": null}, {"text": "a", "start": 572, "end": 573, "id": 104, "annotation": null}, {"text": "mixture", "start": 574, "end": 581, "id": 105, "annotation": null}, {"text": "of", "start": 582, "end": 584, "id": 106, "annotation": null}, {"text": "particle", "start": 585, "end": 593, "id": 107, "annotation": null}, {"text": "-", "start": 594, "end": 595, "id": 108, "annotation": null}, {"text": "like", "start": 596, "end": 600, "id": 109, "annotation": null}, {"text": "and", "start": 601, "end": 604, "id": 110, "annotation": null}, {"text": "continuous", "start": 605, "end": 615, "id": 111, "annotation": null}, {"text": "microstructures", "start": 616, "end": 631, "id": 112, "annotation": null}, {"text": ".", "start": 632, "end": 633, "id": 113, "annotation": null}], [{"text": "The", "start": 634, "end": 637, "id": 114, "annotation": null}, {"text": "change", "start": 638, "end": 644, "id": 115, "annotation": null}, {"text": "of", "start": 645, "end": 647, "id": 116, "annotation": null}, {"text": "the", "start": 648, "end": 651, "id": 117, "annotation": null}, {"text": "preferred", "start": 652, "end": 661, "id": 118, "annotation": null}, {"text": "orientation", "start": 662, "end": 673, "id": 119, "annotation": null}, {"text": "in", "start": 674, "end": 676, "id": 120, "annotation": null}, {"text": "the", "start": 677, "end": 680, "id": 121, "annotation": null}, {"text": "FePt", "start": 681, "end": 685, "id": 122, "annotation": "BASEMAT"}, {"text": "films", "start": 686, "end": 691, "id": 123, "annotation": null}, {"text": "by", "start": 692, "end": 694, "id": 124, "annotation": null}, {"text": "Cu", "start": 695, "end": 697, "id": 125, "annotation": "DOPANT"}, {"text": "doping", "start": 698, "end": 704, "id": 126, "annotation": null}, {"text": "might", "start": 705, "end": 710, "id": 127, "annotation": null}, {"text": "be", "start": 711, "end": 713, "id": 128, "annotation": null}, {"text": "due", "start": 714, "end": 717, "id": 129, "annotation": null}, {"text": "to", "start": 718, "end": 720, "id": 130, "annotation": null}, {"text": "the", "start": 721, "end": 724, "id": 131, "annotation": null}, {"text": "competition", "start": 725, "end": 736, "id": 132, "annotation": null}, {"text": "of", "start": 737, "end": 739, "id": 133, "annotation": null}, {"text": "grain", "start": 740, "end": 745, "id": 134, "annotation": null}, {"text": "-", "start": 746, "end": 747, "id": 135, "annotation": null}, {"text": "boundary", "start": 748, "end": 756, "id": 136, "annotation": null}, {"text": "energy", "start": 757, "end": 763, "id": 137, "annotation": null}, {"text": ",", "start": 764, "end": 765, "id": 138, "annotation": null}, {"text": "surface", "start": 766, "end": 773, "id": 139, "annotation": null}, {"text": "free", "start": 774, "end": 778, "id": 140, "annotation": null}, {"text": "energy", "start": 779, "end": 785, "id": 141, "annotation": null}, {"text": "and", "start": 786, "end": 789, "id": 142, "annotation": null}, {"text": "epitaxial", "start": 790, "end": 799, "id": 143, "annotation": null}, {"text": "-", "start": 800, "end": 801, "id": 144, "annotation": null}, {"text": "strain", "start": 802, "end": 808, "id": 145, "annotation": null}, {"text": "energy", "start": 809, "end": 815, "id": 146, "annotation": null}, {"text": ".", "start": 816, "end": 817, "id": 147, "annotation": null}], [{"text": "The", "start": 818, "end": 821, "id": 148, "annotation": null}, {"text": "experimental", "start": 822, "end": 834, "id": 149, "annotation": null}, {"text": "results", "start": 835, "end": 842, "id": 150, "annotation": null}, {"text": "suggest", "start": 843, "end": 850, "id": 151, "annotation": null}, {"text": "that", "start": 851, "end": 855, "id": 152, "annotation": null}, {"text": "the", "start": 856, "end": 859, "id": 153, "annotation": null}, {"text": "Cu", "start": 860, "end": 862, "id": 154, "annotation": "DOPANT"}, {"text": "doping", "start": 863, "end": 869, "id": 155, "annotation": null}, {"text": "be", "start": 870, "end": 872, "id": 156, "annotation": null}, {"text": "a", "start": 873, "end": 874, "id": 157, "annotation": null}, {"text": "promising", "start": 875, "end": 884, "id": 158, "annotation": null}, {"text": "method", "start": 885, "end": 891, "id": 159, "annotation": null}, {"text": "for", "start": 892, "end": 895, "id": 160, "annotation": null}, {"text": "the", "start": 896, "end": 899, "id": 161, "annotation": null}, {"text": "fabrication", "start": 900, "end": 911, "id": 162, "annotation": null}, {"text": "of", "start": 912, "end": 914, "id": 163, "annotation": null}, {"text": "the", "start": 915, "end": 918, "id": 164, "annotation": null}, {"text": "in", "start": 919, "end": 921, "id": 165, "annotation": null}, {"text": "-", "start": 922, "end": 923, "id": 166, "annotation": null}, {"text": "plane", "start": 924, "end": 929, "id": 167, "annotation": null}, {"text": "oriented", "start": 930, "end": 938, "id": 168, "annotation": null}, {"text": "FePt", "start": 939, "end": 943, "id": 169, "annotation": "BASEMAT"}, {"text": "films", "start": 944, "end": 949, "id": 170, "annotation": null}, {"text": ".", "start": 950, "end": 951, "id": 171, "annotation": null}], [{"text": "The", "start": 952, "end": 955, "id": 172, "annotation": null}, {"text": "Cu", "start": 956, "end": 958, "id": 173, "annotation": "DOPANT"}, {"text": "-", "start": 959, "end": 960, "id": 174, "annotation": null}, {"text": "doped", "start": 961, "end": 966, "id": 175, "annotation": null}, {"text": "FePt", "start": 967, "end": 971, "id": 176, "annotation": "BASEMAT"}, {"text": "films", "start": 972, "end": 977, "id": 177, "annotation": null}, {"text": "had", "start": 978, "end": 981, "id": 178, "annotation": null}, {"text": "a", "start": 982, "end": 983, "id": 179, "annotation": null}, {"text": "lower", "start": 984, "end": 989, "id": 180, "annotation": null}, {"text": "Ms", "start": 990, "end": 992, "id": 181, "annotation": null}, {"text": "than", "start": 993, "end": 997, "id": 182, "annotation": null}, {"text": "the", "start": 998, "end": 1001, "id": 183, "annotation": null}, {"text": "pure", "start": 1002, "end": 1006, "id": 184, "annotation": null}, {"text": "FePt", "start": 1007, "end": 1011, "id": 185, "annotation": null}, {"text": "film", "start": 1012, "end": 1016, "id": 186, "annotation": null}, {"text": ".", "start": 1017, "end": 1018, "id": 187, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "By co-sputtering Cu and FePt onto Cr90Mo10 underlayers, the preferred orientation and easy axis of magnetic anisotropy of FePt films were successfully changed from the perpendicular to the in-plane direction. The pure FePt film grown on the Cr90Mo10 underlayer showed a (001) preferred orientation with out-of-plane magnetic anisotropy. As 20 and 40 vol.% Cu were doped, the FePt films showed a (200) preferred orientation with in-plane magnetic anisotropy. The pure FePt film showed a continuous microstructure, while the Cu-doped FePt films showed a mixture of particle-like and continuous microstructures. The change of the preferred orientation in the FePt films by Cu doping might be due to the competition of grain-boundary energy, surface free energy and epitaxial-strain energy. The experimental results suggest that the Cu doping be a promising method for the fabrication of the in-plane oriented FePt films. The Cu-doped FePt films had a lower Ms than the pure FePt film.", "meta": {"doi": "10.1016/j.surfcoat.2004.10.080"}, "_input_hash": -1765082222, "_task_hash": 1817285993, "tokens": [[{"text": "By", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "co", "start": 3, "end": 5, "id": 1, "annotation": null}, {"text": "-", "start": 6, "end": 7, "id": 2, "annotation": null}, {"text": "sputtering", "start": 8, "end": 18, "id": 3, "annotation": null}, {"text": "Cu", "start": 19, "end": 21, "id": 4, "annotation": null}, {"text": "and", "start": 22, "end": 25, "id": 5, "annotation": null}, {"text": "FePt", "start": 26, "end": 30, "id": 6, "annotation": null}, {"text": "onto", "start": 31, "end": 35, "id": 7, "annotation": null}, {"text": "Cr90Mo10", "start": 36, "end": 44, "id": 8, "annotation": null}, {"text": "underlayers", "start": 45, "end": 56, "id": 9, "annotation": null}, {"text": ",", "start": 57, "end": 58, "id": 10, "annotation": null}, {"text": "the", "start": 59, "end": 62, "id": 11, "annotation": null}, {"text": "preferred", "start": 63, "end": 72, "id": 12, "annotation": null}, {"text": "orientation", "start": 73, "end": 84, "id": 13, "annotation": null}, {"text": "and", "start": 85, "end": 88, "id": 14, "annotation": null}, {"text": "easy", "start": 89, "end": 93, "id": 15, "annotation": null}, {"text": "axis", "start": 94, "end": 98, "id": 16, "annotation": null}, {"text": "of", "start": 99, "end": 101, "id": 17, "annotation": null}, {"text": "magnetic", "start": 102, "end": 110, "id": 18, "annotation": null}, {"text": "anisotropy", "start": 111, "end": 121, "id": 19, "annotation": null}, {"text": "of", "start": 122, "end": 124, "id": 20, "annotation": null}, {"text": "FePt", "start": 125, "end": 129, "id": 21, "annotation": null}, {"text": "films", "start": 130, "end": 135, "id": 22, "annotation": null}, {"text": "were", "start": 136, "end": 140, "id": 23, "annotation": null}, {"text": "successfully", "start": 141, "end": 153, "id": 24, "annotation": null}, {"text": "changed", "start": 154, "end": 161, "id": 25, "annotation": null}, {"text": "from", "start": 162, "end": 166, "id": 26, "annotation": null}, {"text": "the", "start": 167, "end": 170, "id": 27, "annotation": null}, {"text": "perpendicular", "start": 171, "end": 184, "id": 28, "annotation": null}, {"text": "to", "start": 185, "end": 187, "id": 29, "annotation": null}, {"text": "the", "start": 188, "end": 191, "id": 30, "annotation": null}, {"text": "in", "start": 192, "end": 194, "id": 31, "annotation": null}, {"text": "-", "start": 195, "end": 196, "id": 32, "annotation": null}, {"text": "plane", "start": 197, "end": 202, "id": 33, "annotation": null}, {"text": "direction", "start": 203, "end": 212, "id": 34, "annotation": null}, {"text": ".", "start": 213, "end": 214, "id": 35, "annotation": null}], [{"text": "The", "start": 215, "end": 218, "id": 36, "annotation": null}, {"text": "pure", "start": 219, "end": 223, "id": 37, "annotation": null}, {"text": "FePt", "start": 224, "end": 228, "id": 38, "annotation": null}, {"text": "film", "start": 229, "end": 233, "id": 39, "annotation": null}, {"text": "grown", "start": 234, "end": 239, "id": 40, "annotation": null}, {"text": "on", "start": 240, "end": 242, "id": 41, "annotation": null}, {"text": "the", "start": 243, "end": 246, "id": 42, "annotation": null}, {"text": "Cr90Mo10", "start": 247, "end": 255, "id": 43, "annotation": null}, {"text": "underlayer", "start": 256, "end": 266, "id": 44, "annotation": null}, {"text": "showed", "start": 267, "end": 273, "id": 45, "annotation": null}, {"text": "a", "start": 274, "end": 275, "id": 46, "annotation": null}, {"text": "(", "start": 276, "end": 277, "id": 47, "annotation": null}, {"text": "001", "start": 278, "end": 281, "id": 48, "annotation": null}, {"text": ")", "start": 282, "end": 283, "id": 49, "annotation": null}, {"text": "preferred", "start": 284, "end": 293, "id": 50, "annotation": null}, {"text": "orientation", "start": 294, "end": 305, "id": 51, "annotation": null}, {"text": "with", "start": 306, "end": 310, "id": 52, "annotation": null}, {"text": "out", "start": 311, "end": 314, "id": 53, "annotation": null}, {"text": "-", "start": 315, "end": 316, "id": 54, "annotation": null}, {"text": "of", "start": 317, "end": 319, "id": 55, "annotation": null}, {"text": "-", "start": 320, "end": 321, "id": 56, "annotation": null}, {"text": "plane", "start": 322, "end": 327, "id": 57, "annotation": null}, {"text": "magnetic", "start": 328, "end": 336, "id": 58, "annotation": null}, {"text": "anisotropy", "start": 337, "end": 347, "id": 59, "annotation": null}, {"text": ".", "start": 348, "end": 349, "id": 60, "annotation": null}], [{"text": "As", "start": 350, "end": 352, "id": 61, "annotation": null}, {"text": "20", "start": 353, "end": 355, "id": 62, "annotation": "DOPMODQ"}, {"text": "and", "start": 356, "end": 359, "id": 63, "annotation": "DOPMODQ"}, {"text": "40", "start": 360, "end": 362, "id": 64, "annotation": "DOPMODQ"}, {"text": "vol.%", "start": 363, "end": 368, "id": 65, "annotation": "DOPMODQ"}, {"text": "Cu", "start": 369, "end": 371, "id": 66, "annotation": "DOPANT"}, {"text": "were", "start": 372, "end": 376, "id": 67, "annotation": null}, {"text": "doped", "start": 377, "end": 382, "id": 68, "annotation": null}, {"text": ",", "start": 383, "end": 384, "id": 69, "annotation": null}, {"text": "the", "start": 385, "end": 388, "id": 70, "annotation": null}, {"text": "FePt", "start": 389, "end": 393, "id": 71, "annotation": "BASEMAT"}, {"text": "films", "start": 394, "end": 399, "id": 72, "annotation": null}, {"text": "showed", "start": 400, "end": 406, "id": 73, "annotation": null}, {"text": "a", "start": 407, "end": 408, "id": 74, "annotation": null}, {"text": "(", "start": 409, "end": 410, "id": 75, "annotation": null}, {"text": "200", "start": 411, "end": 414, "id": 76, "annotation": null}, {"text": ")", "start": 415, "end": 416, "id": 77, "annotation": null}, {"text": "preferred", "start": 417, "end": 426, "id": 78, "annotation": null}, {"text": "orientation", "start": 427, "end": 438, "id": 79, "annotation": null}, {"text": "with", "start": 439, "end": 443, "id": 80, "annotation": null}, {"text": "in", "start": 444, "end": 446, "id": 81, "annotation": null}, {"text": "-", "start": 447, "end": 448, "id": 82, "annotation": null}, {"text": "plane", "start": 449, "end": 454, "id": 83, "annotation": null}, {"text": "magnetic", "start": 455, "end": 463, "id": 84, "annotation": null}, {"text": "anisotropy", "start": 464, "end": 474, "id": 85, "annotation": null}, {"text": ".", "start": 475, "end": 476, "id": 86, "annotation": null}], [{"text": "The", "start": 477, "end": 480, "id": 87, "annotation": null}, {"text": "pure", "start": 481, "end": 485, "id": 88, "annotation": null}, {"text": "FePt", "start": 486, "end": 490, "id": 89, "annotation": null}, {"text": "film", "start": 491, "end": 495, "id": 90, "annotation": null}, {"text": "showed", "start": 496, "end": 502, "id": 91, "annotation": null}, {"text": "a", "start": 503, "end": 504, "id": 92, "annotation": null}, {"text": "continuous", "start": 505, "end": 515, "id": 93, "annotation": null}, {"text": "microstructure", "start": 516, "end": 530, "id": 94, "annotation": null}, {"text": ",", "start": 531, "end": 532, "id": 95, "annotation": null}, {"text": "while", "start": 533, "end": 538, "id": 96, "annotation": null}, {"text": "the", "start": 539, "end": 542, "id": 97, "annotation": null}, {"text": "Cu", "start": 543, "end": 545, "id": 98, "annotation": "DOPANT"}, {"text": "-", "start": 546, "end": 547, "id": 99, "annotation": null}, {"text": "doped", "start": 548, "end": 553, "id": 100, "annotation": null}, {"text": "FePt", "start": 554, "end": 558, "id": 101, "annotation": "BASEMAT"}, {"text": "films", "start": 559, "end": 564, "id": 102, "annotation": null}, {"text": "showed", "start": 565, "end": 571, "id": 103, "annotation": null}, {"text": "a", "start": 572, "end": 573, "id": 104, "annotation": null}, {"text": "mixture", "start": 574, "end": 581, "id": 105, "annotation": null}, {"text": "of", "start": 582, "end": 584, "id": 106, "annotation": null}, {"text": "particle", "start": 585, "end": 593, "id": 107, "annotation": null}, {"text": "-", "start": 594, "end": 595, "id": 108, "annotation": null}, {"text": "like", "start": 596, "end": 600, "id": 109, "annotation": null}, {"text": "and", "start": 601, "end": 604, "id": 110, "annotation": null}, {"text": "continuous", "start": 605, "end": 615, "id": 111, "annotation": null}, {"text": "microstructures", "start": 616, "end": 631, "id": 112, "annotation": null}, {"text": ".", "start": 632, "end": 633, "id": 113, "annotation": null}], [{"text": "The", "start": 634, "end": 637, "id": 114, "annotation": null}, {"text": "change", "start": 638, "end": 644, "id": 115, "annotation": null}, {"text": "of", "start": 645, "end": 647, "id": 116, "annotation": null}, {"text": "the", "start": 648, "end": 651, "id": 117, "annotation": null}, {"text": "preferred", "start": 652, "end": 661, "id": 118, "annotation": null}, {"text": "orientation", "start": 662, "end": 673, "id": 119, "annotation": null}, {"text": "in", "start": 674, "end": 676, "id": 120, "annotation": null}, {"text": "the", "start": 677, "end": 680, "id": 121, "annotation": null}, {"text": "FePt", "start": 681, "end": 685, "id": 122, "annotation": "BASEMAT"}, {"text": "films", "start": 686, "end": 691, "id": 123, "annotation": null}, {"text": "by", "start": 692, "end": 694, "id": 124, "annotation": null}, {"text": "Cu", "start": 695, "end": 697, "id": 125, "annotation": "DOPANT"}, {"text": "doping", "start": 698, "end": 704, "id": 126, "annotation": null}, {"text": "might", "start": 705, "end": 710, "id": 127, "annotation": null}, {"text": "be", "start": 711, "end": 713, "id": 128, "annotation": null}, {"text": "due", "start": 714, "end": 717, "id": 129, "annotation": null}, {"text": "to", "start": 718, "end": 720, "id": 130, "annotation": null}, {"text": "the", "start": 721, "end": 724, "id": 131, "annotation": null}, {"text": "competition", "start": 725, "end": 736, "id": 132, "annotation": null}, {"text": "of", "start": 737, "end": 739, "id": 133, "annotation": null}, {"text": "grain", "start": 740, "end": 745, "id": 134, "annotation": null}, {"text": "-", "start": 746, "end": 747, "id": 135, "annotation": null}, {"text": "boundary", "start": 748, "end": 756, "id": 136, "annotation": null}, {"text": "energy", "start": 757, "end": 763, "id": 137, "annotation": null}, {"text": ",", "start": 764, "end": 765, "id": 138, "annotation": null}, {"text": "surface", "start": 766, "end": 773, "id": 139, "annotation": null}, {"text": "free", "start": 774, "end": 778, "id": 140, "annotation": null}, {"text": "energy", "start": 779, "end": 785, "id": 141, "annotation": null}, {"text": "and", "start": 786, "end": 789, "id": 142, "annotation": null}, {"text": "epitaxial", "start": 790, "end": 799, "id": 143, "annotation": null}, {"text": "-", "start": 800, "end": 801, "id": 144, "annotation": null}, {"text": "strain", "start": 802, "end": 808, "id": 145, "annotation": null}, {"text": "energy", "start": 809, "end": 815, "id": 146, "annotation": null}, {"text": ".", "start": 816, "end": 817, "id": 147, "annotation": null}], [{"text": "The", "start": 818, "end": 821, "id": 148, "annotation": null}, {"text": "experimental", "start": 822, "end": 834, "id": 149, "annotation": null}, {"text": "results", "start": 835, "end": 842, "id": 150, "annotation": null}, {"text": "suggest", "start": 843, "end": 850, "id": 151, "annotation": null}, {"text": "that", "start": 851, "end": 855, "id": 152, "annotation": null}, {"text": "the", "start": 856, "end": 859, "id": 153, "annotation": null}, {"text": "Cu", "start": 860, "end": 862, "id": 154, "annotation": "DOPANT"}, {"text": "doping", "start": 863, "end": 869, "id": 155, "annotation": null}, {"text": "be", "start": 870, "end": 872, "id": 156, "annotation": null}, {"text": "a", "start": 873, "end": 874, "id": 157, "annotation": null}, {"text": "promising", "start": 875, "end": 884, "id": 158, "annotation": null}, {"text": "method", "start": 885, "end": 891, "id": 159, "annotation": null}, {"text": "for", "start": 892, "end": 895, "id": 160, "annotation": null}, {"text": "the", "start": 896, "end": 899, "id": 161, "annotation": null}, {"text": "fabrication", "start": 900, "end": 911, "id": 162, "annotation": null}, {"text": "of", "start": 912, "end": 914, "id": 163, "annotation": null}, {"text": "the", "start": 915, "end": 918, "id": 164, "annotation": null}, {"text": "in", "start": 919, "end": 921, "id": 165, "annotation": null}, {"text": "-", "start": 922, "end": 923, "id": 166, "annotation": null}, {"text": "plane", "start": 924, "end": 929, "id": 167, "annotation": null}, {"text": "oriented", "start": 930, "end": 938, "id": 168, "annotation": null}, {"text": "FePt", "start": 939, "end": 943, "id": 169, "annotation": "BASEMAT"}, {"text": "films", "start": 944, "end": 949, "id": 170, "annotation": null}, {"text": ".", "start": 950, "end": 951, "id": 171, "annotation": null}], [{"text": "The", "start": 952, "end": 955, "id": 172, "annotation": null}, {"text": "Cu", "start": 956, "end": 958, "id": 173, "annotation": "DOPANT"}, {"text": "-", "start": 959, "end": 960, "id": 174, "annotation": null}, {"text": "doped", "start": 961, "end": 966, "id": 175, "annotation": null}, {"text": "FePt", "start": 967, "end": 971, "id": 176, "annotation": "BASEMAT"}, {"text": "films", "start": 972, "end": 977, "id": 177, "annotation": null}, {"text": "had", "start": 978, "end": 981, "id": 178, "annotation": null}, {"text": "a", "start": 982, "end": 983, "id": 179, "annotation": null}, {"text": "lower", "start": 984, "end": 989, "id": 180, "annotation": null}, {"text": "Ms", "start": 990, "end": 992, "id": 181, "annotation": null}, {"text": "than", "start": 993, "end": 997, "id": 182, "annotation": null}, {"text": "the", "start": 998, "end": 1001, "id": 183, "annotation": null}, {"text": "pure", "start": 1002, "end": 1006, "id": 184, "annotation": null}, {"text": "FePt", "start": 1007, "end": 1011, "id": 185, "annotation": null}, {"text": "film", "start": 1012, "end": 1016, "id": 186, "annotation": null}, {"text": ".", "start": 1017, "end": 1018, "id": 187, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The present work analyses bimetallic Cu\u2013Fe formulations combined with CeO2 or other structurally related mixed oxides resulting from doping of the former with Gd or Tb, focusing to its possible use as anodes of solid oxide fuel cells (SOFC) for direct oxidation of methane. The main objective is the characterization of the various formulations at structural level as well as with regard to redox changes taking place in the systems upon interaction with methane, in order to evaluate the effects induced by the presence of the mentioned dopants. In the same sense, an analysis of thermal expansion and electrical properties of the systems as well as their chemical compatibilities with several electrolytic materials is performed, considering its possible implantation in SOFC single cells. For the mentioned purposes, the systems have been analysed by means of CH4-TPR tests subsequently followed by TPO tests, as well as by XRD, Raman and XPS, with the aim of exploring structural and redox changes produced in the systems and the formation of carbon deposits during interaction with methane. The results reveal significant modifications in the structural, catalytic/redox and electrical properties of the systems as a function of the presence of Fe and/or Gd and Tb dopants in the formulation.", "meta": {"doi": "10.1016/j.jpowsour.2010.10.042"}, "_input_hash": -725759298, "_task_hash": -800613090, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "present", "start": 4, "end": 11, "id": 1, "annotation": null}, {"text": "work", "start": 12, "end": 16, "id": 2, "annotation": null}, {"text": "analyses", "start": 17, "end": 25, "id": 3, "annotation": null}, {"text": "bimetallic", "start": 26, "end": 36, "id": 4, "annotation": null}, {"text": "Cu", "start": 37, "end": 39, "id": 5, "annotation": null}, {"text": "\u2013", "start": 40, "end": 41, "id": 6, "annotation": null}, {"text": "Fe", "start": 42, "end": 44, "id": 7, "annotation": null}, {"text": "formulations", "start": 45, "end": 57, "id": 8, "annotation": null}, {"text": "combined", "start": 58, "end": 66, "id": 9, "annotation": null}, {"text": "with", "start": 67, "end": 71, "id": 10, "annotation": null}, {"text": "CeO2", "start": 72, "end": 76, "id": 11, "annotation": "BASEMAT"}, {"text": "or", "start": 77, "end": 79, "id": 12, "annotation": null}, {"text": "other", "start": 80, "end": 85, "id": 13, "annotation": null}, {"text": "structurally", "start": 86, "end": 98, "id": 14, "annotation": null}, {"text": "related", "start": 99, "end": 106, "id": 15, "annotation": null}, {"text": "mixed", "start": 107, "end": 112, "id": 16, "annotation": null}, {"text": "oxides", "start": 113, "end": 119, "id": 17, "annotation": null}, {"text": "resulting", "start": 120, "end": 129, "id": 18, "annotation": null}, {"text": "from", "start": 130, "end": 134, "id": 19, "annotation": null}, {"text": "doping", "start": 135, "end": 141, "id": 20, "annotation": null}, {"text": "of", "start": 142, "end": 144, "id": 21, "annotation": null}, {"text": "the", "start": 145, "end": 148, "id": 22, "annotation": null}, {"text": "former", "start": 149, "end": 155, "id": 23, "annotation": "BASEMAT"}, {"text": "with", "start": 156, "end": 160, "id": 24, "annotation": null}, {"text": "Gd", "start": 161, "end": 163, "id": 25, "annotation": "DOPANT"}, {"text": "or", "start": 164, "end": 166, "id": 26, "annotation": null}, {"text": "Tb", "start": 167, "end": 169, "id": 27, "annotation": "DOPANT"}, {"text": ",", "start": 170, "end": 171, "id": 28, "annotation": null}, {"text": "focusing", "start": 172, "end": 180, "id": 29, "annotation": null}, {"text": "to", "start": 181, "end": 183, "id": 30, "annotation": null}, {"text": "its", "start": 184, "end": 187, "id": 31, "annotation": null}, {"text": "possible", "start": 188, "end": 196, "id": 32, "annotation": null}, {"text": "use", "start": 197, "end": 200, "id": 33, "annotation": null}, {"text": "as", "start": 201, "end": 203, "id": 34, "annotation": null}, {"text": "anodes", "start": 204, "end": 210, "id": 35, "annotation": null}, {"text": "of", "start": 211, "end": 213, "id": 36, "annotation": null}, {"text": "solid", "start": 214, "end": 219, "id": 37, "annotation": null}, {"text": "oxide", "start": 220, "end": 225, "id": 38, "annotation": null}, {"text": "fuel", "start": 226, "end": 230, "id": 39, "annotation": null}, {"text": "cells", "start": 231, "end": 236, "id": 40, "annotation": null}, {"text": "(", "start": 237, "end": 238, "id": 41, "annotation": null}, {"text": "SOFC", "start": 239, "end": 243, "id": 42, "annotation": null}, {"text": ")", "start": 244, "end": 245, "id": 43, "annotation": null}, {"text": "for", "start": 246, "end": 249, "id": 44, "annotation": null}, {"text": "direct", "start": 250, "end": 256, "id": 45, "annotation": null}, {"text": "oxidation", "start": 257, "end": 266, "id": 46, "annotation": null}, {"text": "of", "start": 267, "end": 269, "id": 47, "annotation": null}, {"text": "methane", "start": 270, "end": 277, "id": 48, "annotation": null}, {"text": ".", "start": 278, "end": 279, "id": 49, "annotation": null}], [{"text": "The", "start": 280, "end": 283, "id": 50, "annotation": null}, {"text": "main", "start": 284, "end": 288, "id": 51, "annotation": null}, {"text": "objective", "start": 289, "end": 298, "id": 52, "annotation": null}, {"text": "is", "start": 299, "end": 301, "id": 53, "annotation": null}, {"text": "the", "start": 302, "end": 305, "id": 54, "annotation": null}, {"text": "characterization", "start": 306, "end": 322, "id": 55, "annotation": null}, {"text": "of", "start": 323, "end": 325, "id": 56, "annotation": null}, {"text": "the", "start": 326, "end": 329, "id": 57, "annotation": null}, {"text": "various", "start": 330, "end": 337, "id": 58, "annotation": null}, {"text": "formulations", "start": 338, "end": 350, "id": 59, "annotation": null}, {"text": "at", "start": 351, "end": 353, "id": 60, "annotation": null}, {"text": "structural", "start": 354, "end": 364, "id": 61, "annotation": null}, {"text": "level", "start": 365, "end": 370, "id": 62, "annotation": null}, {"text": "as", "start": 371, "end": 373, "id": 63, "annotation": null}, {"text": "well", "start": 374, "end": 378, "id": 64, "annotation": null}, {"text": "as", "start": 379, "end": 381, "id": 65, "annotation": null}, {"text": "with", "start": 382, "end": 386, "id": 66, "annotation": null}, {"text": "regard", "start": 387, "end": 393, "id": 67, "annotation": null}, {"text": "to", "start": 394, "end": 396, "id": 68, "annotation": null}, {"text": "redox", "start": 397, "end": 402, "id": 69, "annotation": null}, {"text": "changes", "start": 403, "end": 410, "id": 70, "annotation": null}, {"text": "taking", "start": 411, "end": 417, "id": 71, "annotation": null}, {"text": "place", "start": 418, "end": 423, "id": 72, "annotation": null}, {"text": "in", "start": 424, "end": 426, "id": 73, "annotation": null}, {"text": "the", "start": 427, "end": 430, "id": 74, "annotation": null}, {"text": "systems", "start": 431, "end": 438, "id": 75, "annotation": null}, {"text": "upon", "start": 439, "end": 443, "id": 76, "annotation": null}, {"text": "interaction", "start": 444, "end": 455, "id": 77, "annotation": null}, {"text": "with", "start": 456, "end": 460, "id": 78, "annotation": null}, {"text": "methane", "start": 461, "end": 468, "id": 79, "annotation": null}, {"text": ",", "start": 469, "end": 470, "id": 80, "annotation": null}, {"text": "in", "start": 471, "end": 473, "id": 81, "annotation": null}, {"text": "order", "start": 474, "end": 479, "id": 82, "annotation": null}, {"text": "to", "start": 480, "end": 482, "id": 83, "annotation": null}, {"text": "evaluate", "start": 483, "end": 491, "id": 84, "annotation": null}, {"text": "the", "start": 492, "end": 495, "id": 85, "annotation": null}, {"text": "effects", "start": 496, "end": 503, "id": 86, "annotation": null}, {"text": "induced", "start": 504, "end": 511, "id": 87, "annotation": null}, {"text": "by", "start": 512, "end": 514, "id": 88, "annotation": null}, {"text": "the", "start": 515, "end": 518, "id": 89, "annotation": null}, {"text": "presence", "start": 519, "end": 527, "id": 90, "annotation": null}, {"text": "of", "start": 528, "end": 530, "id": 91, "annotation": null}, {"text": "the", "start": 531, "end": 534, "id": 92, "annotation": null}, {"text": "mentioned", "start": 535, "end": 544, "id": 93, "annotation": null}, {"text": "dopants", "start": 545, "end": 552, "id": 94, "annotation": null}, {"text": ".", "start": 553, "end": 554, "id": 95, "annotation": null}], [{"text": "In", "start": 555, "end": 557, "id": 96, "annotation": null}, {"text": "the", "start": 558, "end": 561, "id": 97, "annotation": null}, {"text": "same", "start": 562, "end": 566, "id": 98, "annotation": null}, {"text": "sense", "start": 567, "end": 572, "id": 99, "annotation": null}, {"text": ",", "start": 573, "end": 574, "id": 100, "annotation": null}, {"text": "an", "start": 575, "end": 577, "id": 101, "annotation": null}, {"text": "analysis", "start": 578, "end": 586, "id": 102, "annotation": null}, {"text": "of", "start": 587, "end": 589, "id": 103, "annotation": null}, {"text": "thermal", "start": 590, "end": 597, "id": 104, "annotation": null}, {"text": "expansion", "start": 598, "end": 607, "id": 105, "annotation": null}, {"text": "and", "start": 608, "end": 611, "id": 106, "annotation": null}, {"text": "electrical", "start": 612, "end": 622, "id": 107, "annotation": null}, {"text": "properties", "start": 623, "end": 633, "id": 108, "annotation": null}, {"text": "of", "start": 634, "end": 636, "id": 109, "annotation": null}, {"text": "the", "start": 637, "end": 640, "id": 110, "annotation": null}, {"text": "systems", "start": 641, "end": 648, "id": 111, "annotation": null}, {"text": "as", "start": 649, "end": 651, "id": 112, "annotation": null}, {"text": "well", "start": 652, "end": 656, "id": 113, "annotation": null}, {"text": "as", "start": 657, "end": 659, "id": 114, "annotation": null}, {"text": "their", "start": 660, "end": 665, "id": 115, "annotation": null}, {"text": "chemical", "start": 666, "end": 674, "id": 116, "annotation": null}, {"text": "compatibilities", "start": 675, "end": 690, "id": 117, "annotation": null}, {"text": "with", "start": 691, "end": 695, "id": 118, "annotation": null}, {"text": "several", "start": 696, "end": 703, "id": 119, "annotation": null}, {"text": "electrolytic", "start": 704, "end": 716, "id": 120, "annotation": null}, {"text": "materials", "start": 717, "end": 726, "id": 121, "annotation": null}, {"text": "is", "start": 727, "end": 729, "id": 122, "annotation": null}, {"text": "performed", "start": 730, "end": 739, "id": 123, "annotation": null}, {"text": ",", "start": 740, "end": 741, "id": 124, "annotation": null}, {"text": "considering", "start": 742, "end": 753, "id": 125, "annotation": null}, {"text": "its", "start": 754, "end": 757, "id": 126, "annotation": null}, {"text": "possible", "start": 758, "end": 766, "id": 127, "annotation": null}, {"text": "implantation", "start": 767, "end": 779, "id": 128, "annotation": null}, {"text": "in", "start": 780, "end": 782, "id": 129, "annotation": null}, {"text": "SOFC", "start": 783, "end": 787, "id": 130, "annotation": null}, {"text": "single", "start": 788, "end": 794, "id": 131, "annotation": null}, {"text": "cells", "start": 795, "end": 800, "id": 132, "annotation": null}, {"text": ".", "start": 801, "end": 802, "id": 133, "annotation": null}], [{"text": "For", "start": 803, "end": 806, "id": 134, "annotation": null}, {"text": "the", "start": 807, "end": 810, "id": 135, "annotation": null}, {"text": "mentioned", "start": 811, "end": 820, "id": 136, "annotation": null}, {"text": "purposes", "start": 821, "end": 829, "id": 137, "annotation": null}, {"text": ",", "start": 830, "end": 831, "id": 138, "annotation": null}, {"text": "the", "start": 832, "end": 835, "id": 139, "annotation": null}, {"text": "systems", "start": 836, "end": 843, "id": 140, "annotation": null}, {"text": "have", "start": 844, "end": 848, "id": 141, "annotation": null}, {"text": "been", "start": 849, "end": 853, "id": 142, "annotation": null}, {"text": "analysed", "start": 854, "end": 862, "id": 143, "annotation": null}, {"text": "by", "start": 863, "end": 865, "id": 144, "annotation": null}, {"text": "means", "start": 866, "end": 871, "id": 145, "annotation": null}, {"text": "of", "start": 872, "end": 874, "id": 146, "annotation": null}, {"text": "CH4-TPR", "start": 875, "end": 882, "id": 147, "annotation": null}, {"text": "tests", "start": 883, "end": 888, "id": 148, "annotation": null}, {"text": "subsequently", "start": 889, "end": 901, "id": 149, "annotation": null}, {"text": "followed", "start": 902, "end": 910, "id": 150, "annotation": null}, {"text": "by", "start": 911, "end": 913, "id": 151, "annotation": null}, {"text": "TPO", "start": 914, "end": 917, "id": 152, "annotation": null}, {"text": "tests", "start": 918, "end": 923, "id": 153, "annotation": null}, {"text": ",", "start": 924, "end": 925, "id": 154, "annotation": null}, {"text": "as", "start": 926, "end": 928, "id": 155, "annotation": null}, {"text": "well", "start": 929, "end": 933, "id": 156, "annotation": null}, {"text": "as", "start": 934, "end": 936, "id": 157, "annotation": null}, {"text": "by", "start": 937, "end": 939, "id": 158, "annotation": null}, {"text": "XRD", "start": 940, "end": 943, "id": 159, "annotation": null}, {"text": ",", "start": 944, "end": 945, "id": 160, "annotation": null}, {"text": "Raman", "start": 946, "end": 951, "id": 161, "annotation": null}, {"text": "and", "start": 952, "end": 955, "id": 162, "annotation": null}, {"text": "XPS", "start": 956, "end": 959, "id": 163, "annotation": null}, {"text": ",", "start": 960, "end": 961, "id": 164, "annotation": null}, {"text": "with", "start": 962, "end": 966, "id": 165, "annotation": null}, {"text": "the", "start": 967, "end": 970, "id": 166, "annotation": null}, {"text": "aim", "start": 971, "end": 974, "id": 167, "annotation": null}, {"text": "of", "start": 975, "end": 977, "id": 168, "annotation": null}, {"text": "exploring", "start": 978, "end": 987, "id": 169, "annotation": null}, {"text": "structural", "start": 988, "end": 998, "id": 170, "annotation": null}, {"text": "and", "start": 999, "end": 1002, "id": 171, "annotation": null}, {"text": "redox", "start": 1003, "end": 1008, "id": 172, "annotation": null}, {"text": "changes", "start": 1009, "end": 1016, "id": 173, "annotation": null}, {"text": "produced", "start": 1017, "end": 1025, "id": 174, "annotation": null}, {"text": "in", "start": 1026, "end": 1028, "id": 175, "annotation": null}, {"text": "the", "start": 1029, "end": 1032, "id": 176, "annotation": null}, {"text": "systems", "start": 1033, "end": 1040, "id": 177, "annotation": null}, {"text": "and", "start": 1041, "end": 1044, "id": 178, "annotation": null}, {"text": "the", "start": 1045, "end": 1048, "id": 179, "annotation": null}, {"text": "formation", "start": 1049, "end": 1058, "id": 180, "annotation": null}, {"text": "of", "start": 1059, "end": 1061, "id": 181, "annotation": null}, {"text": "carbon", "start": 1062, "end": 1068, "id": 182, "annotation": null}, {"text": "deposits", "start": 1069, "end": 1077, "id": 183, "annotation": null}, {"text": "during", "start": 1078, "end": 1084, "id": 184, "annotation": null}, {"text": "interaction", "start": 1085, "end": 1096, "id": 185, "annotation": null}, {"text": "with", "start": 1097, "end": 1101, "id": 186, "annotation": null}, {"text": "methane", "start": 1102, "end": 1109, "id": 187, "annotation": null}, {"text": ".", "start": 1110, "end": 1111, "id": 188, "annotation": null}], [{"text": "The", "start": 1112, "end": 1115, "id": 189, "annotation": null}, {"text": "results", "start": 1116, "end": 1123, "id": 190, "annotation": null}, {"text": "reveal", "start": 1124, "end": 1130, "id": 191, "annotation": null}, {"text": "significant", "start": 1131, "end": 1142, "id": 192, "annotation": null}, {"text": "modifications", "start": 1143, "end": 1156, "id": 193, "annotation": null}, {"text": "in", "start": 1157, "end": 1159, "id": 194, "annotation": null}, {"text": "the", "start": 1160, "end": 1163, "id": 195, "annotation": null}, {"text": "structural", "start": 1164, "end": 1174, "id": 196, "annotation": null}, {"text": ",", "start": 1175, "end": 1176, "id": 197, "annotation": null}, {"text": "catalytic", "start": 1177, "end": 1186, "id": 198, "annotation": null}, {"text": "/", "start": 1187, "end": 1188, "id": 199, "annotation": null}, {"text": "redox", "start": 1189, "end": 1194, "id": 200, "annotation": null}, {"text": "and", "start": 1195, "end": 1198, "id": 201, "annotation": null}, {"text": "electrical", "start": 1199, "end": 1209, "id": 202, "annotation": null}, {"text": "properties", "start": 1210, "end": 1220, "id": 203, "annotation": null}, {"text": "of", "start": 1221, "end": 1223, "id": 204, "annotation": null}, {"text": "the", "start": 1224, "end": 1227, "id": 205, "annotation": null}, {"text": "systems", "start": 1228, "end": 1235, "id": 206, "annotation": null}, {"text": "as", "start": 1236, "end": 1238, "id": 207, "annotation": null}, {"text": "a", "start": 1239, "end": 1240, "id": 208, "annotation": null}, {"text": "function", "start": 1241, "end": 1249, "id": 209, "annotation": null}, {"text": "of", "start": 1250, "end": 1252, "id": 210, "annotation": null}, {"text": "the", "start": 1253, "end": 1256, "id": 211, "annotation": null}, {"text": "presence", "start": 1257, "end": 1265, "id": 212, "annotation": null}, {"text": "of", "start": 1266, "end": 1268, "id": 213, "annotation": null}, {"text": "Fe", "start": 1269, "end": 1271, "id": 214, "annotation": null}, {"text": "and/or", "start": 1272, "end": 1278, "id": 215, "annotation": null}, {"text": "Gd", "start": 1279, "end": 1281, "id": 216, "annotation": "DOPANT"}, {"text": "and", "start": 1282, "end": 1285, "id": 217, "annotation": null}, {"text": "Tb", "start": 1286, "end": 1288, "id": 218, "annotation": "DOPANT"}, {"text": "dopants", "start": 1289, "end": 1296, "id": 219, "annotation": null}, {"text": "in", "start": 1297, "end": 1299, "id": 220, "annotation": null}, {"text": "the", "start": 1300, "end": 1303, "id": 221, "annotation": null}, {"text": "formulation", "start": 1304, "end": 1315, "id": 222, "annotation": null}, {"text": ".", "start": 1316, "end": 1317, "id": 223, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Hydroxyapatite (HAp) samples doped with 0, 2 and 4at.% of yttrium (Y) were characterized using X-ray diffraction (XRD), Fourier transform infrared (FTIR) spectroscopy, scanning electron microscopy attached with energy dispersive X-ray (EDX) spectroscopy, antimicrobial activity tests and dielectric studies. The hydroxyl groups observed in FTIR spectra confirmed the formation of HAp phase in the studied samples. The crystallite size, crystallinity degree and lattice parameters of the samples were changed with Y content. The volume of the unit cell was gradually decreased with the addition of Y. Undoped and Y-containing HAp samples were screened to determine their in vitro antimicrobial activities against the standard strains. It was found that no samples have any antimicrobial effect. The relative dielectric permittivity and dielectric loss are affected by Y content. While the alternating current conductivity increases with increasing frequency, it decreases with increasing Y content.", "meta": {"doi": "10.1016/j.msec.2014.11.039"}, "_input_hash": -1977067655, "_task_hash": -1069258854, "tokens": [[{"text": "Hydroxyapatite", "start": 0, "end": 14, "id": 0, "annotation": "BASEMAT"}, {"text": "(", "start": 15, "end": 16, "id": 1, "annotation": null}, {"text": "HAp", "start": 17, "end": 20, "id": 2, "annotation": "BASEMAT"}, {"text": ")", "start": 21, "end": 22, "id": 3, "annotation": null}, {"text": "samples", "start": 23, "end": 30, "id": 4, "annotation": null}, {"text": "doped", "start": 31, "end": 36, "id": 5, "annotation": null}, {"text": "with", "start": 37, "end": 41, "id": 6, "annotation": null}, {"text": "0", "start": 42, "end": 43, "id": 7, "annotation": "DOPMODQ"}, {"text": ",", "start": 44, "end": 45, "id": 8, "annotation": null}, {"text": "2", "start": 46, "end": 47, "id": 9, "annotation": "DOPMODQ"}, {"text": "and", "start": 48, "end": 51, "id": 10, "annotation": null}, {"text": "4at.%", "start": 52, "end": 57, "id": 11, "annotation": "DOPMODQ"}, {"text": "of", "start": 58, "end": 60, "id": 12, "annotation": null}, {"text": "yttrium", "start": 61, "end": 68, "id": 13, "annotation": "DOPANT"}, {"text": "(", "start": 69, "end": 70, "id": 14, "annotation": null}, {"text": "Y", "start": 71, "end": 72, "id": 15, "annotation": "DOPANT"}, {"text": ")", "start": 73, "end": 74, "id": 16, "annotation": null}, {"text": "were", "start": 75, "end": 79, "id": 17, "annotation": null}, {"text": "characterized", "start": 80, "end": 93, "id": 18, "annotation": null}, {"text": "using", "start": 94, "end": 99, "id": 19, "annotation": null}, {"text": "X", "start": 100, "end": 101, "id": 20, "annotation": null}, {"text": "-", "start": 102, "end": 103, "id": 21, "annotation": null}, {"text": "ray", "start": 104, "end": 107, "id": 22, "annotation": null}, {"text": "diffraction", "start": 108, "end": 119, "id": 23, "annotation": null}, {"text": "(", "start": 120, "end": 121, "id": 24, "annotation": null}, {"text": "XRD", "start": 122, "end": 125, "id": 25, "annotation": null}, {"text": ")", "start": 126, "end": 127, "id": 26, "annotation": null}, {"text": ",", "start": 128, "end": 129, "id": 27, "annotation": null}, {"text": "Fourier", "start": 130, "end": 137, "id": 28, "annotation": null}, {"text": "transform", "start": 138, "end": 147, "id": 29, "annotation": null}, {"text": "infrared", "start": 148, "end": 156, "id": 30, "annotation": null}, {"text": "(", "start": 157, "end": 158, "id": 31, "annotation": null}, {"text": "FTIR", "start": 159, "end": 163, "id": 32, "annotation": null}, {"text": ")", "start": 164, "end": 165, "id": 33, "annotation": null}, {"text": "spectroscopy", "start": 166, "end": 178, "id": 34, "annotation": null}, {"text": ",", "start": 179, "end": 180, "id": 35, "annotation": null}, {"text": "scanning", "start": 181, "end": 189, "id": 36, "annotation": null}, {"text": "electron", "start": 190, "end": 198, "id": 37, "annotation": null}, {"text": "microscopy", "start": 199, "end": 209, "id": 38, "annotation": null}, {"text": "attached", "start": 210, "end": 218, "id": 39, "annotation": null}, {"text": "with", "start": 219, "end": 223, "id": 40, "annotation": null}, {"text": "energy", "start": 224, "end": 230, "id": 41, "annotation": null}, {"text": "dispersive", "start": 231, "end": 241, "id": 42, "annotation": null}, {"text": "X", "start": 242, "end": 243, "id": 43, "annotation": null}, {"text": "-", "start": 244, "end": 245, "id": 44, "annotation": null}, {"text": "ray", "start": 246, "end": 249, "id": 45, "annotation": null}, {"text": "(", "start": 250, "end": 251, "id": 46, "annotation": null}, {"text": "EDX", "start": 252, "end": 255, "id": 47, "annotation": null}, {"text": ")", "start": 256, "end": 257, "id": 48, "annotation": null}, {"text": "spectroscopy", "start": 258, "end": 270, "id": 49, "annotation": null}, {"text": ",", "start": 271, "end": 272, "id": 50, "annotation": null}, {"text": "antimicrobial", "start": 273, "end": 286, "id": 51, "annotation": null}, {"text": "activity", "start": 287, "end": 295, "id": 52, "annotation": null}, {"text": "tests", "start": 296, "end": 301, "id": 53, "annotation": null}, {"text": "and", "start": 302, "end": 305, "id": 54, "annotation": null}, {"text": "dielectric", "start": 306, "end": 316, "id": 55, "annotation": null}, {"text": "studies", "start": 317, "end": 324, "id": 56, "annotation": null}, {"text": ".", "start": 325, "end": 326, "id": 57, "annotation": null}], [{"text": "The", "start": 327, "end": 330, "id": 58, "annotation": null}, {"text": "hydroxyl", "start": 331, "end": 339, "id": 59, "annotation": null}, {"text": "groups", "start": 340, "end": 346, "id": 60, "annotation": null}, {"text": "observed", "start": 347, "end": 355, "id": 61, "annotation": null}, {"text": "in", "start": 356, "end": 358, "id": 62, "annotation": null}, {"text": "FTIR", "start": 359, "end": 363, "id": 63, "annotation": null}, {"text": "spectra", "start": 364, "end": 371, "id": 64, "annotation": null}, {"text": "confirmed", "start": 372, "end": 381, "id": 65, "annotation": null}, {"text": "the", "start": 382, "end": 385, "id": 66, "annotation": null}, {"text": "formation", "start": 386, "end": 395, "id": 67, "annotation": null}, {"text": "of", "start": 396, "end": 398, "id": 68, "annotation": null}, {"text": "HAp", "start": 399, "end": 402, "id": 69, "annotation": null}, {"text": "phase", "start": 403, "end": 408, "id": 70, "annotation": null}, {"text": "in", "start": 409, "end": 411, "id": 71, "annotation": null}, {"text": "the", "start": 412, "end": 415, "id": 72, "annotation": null}, {"text": "studied", "start": 416, "end": 423, "id": 73, "annotation": null}, {"text": "samples", "start": 424, "end": 431, "id": 74, "annotation": null}, {"text": ".", "start": 432, "end": 433, "id": 75, "annotation": null}], [{"text": "The", "start": 434, "end": 437, "id": 76, "annotation": null}, {"text": "crystallite", "start": 438, "end": 449, "id": 77, "annotation": null}, {"text": "size", "start": 450, "end": 454, "id": 78, "annotation": null}, {"text": ",", "start": 455, "end": 456, "id": 79, "annotation": null}, {"text": "crystallinity", "start": 457, "end": 470, "id": 80, "annotation": null}, {"text": "degree", "start": 471, "end": 477, "id": 81, "annotation": null}, {"text": "and", "start": 478, "end": 481, "id": 82, "annotation": null}, {"text": "lattice", "start": 482, "end": 489, "id": 83, "annotation": null}, {"text": "parameters", "start": 490, "end": 500, "id": 84, "annotation": null}, {"text": "of", "start": 501, "end": 503, "id": 85, "annotation": null}, {"text": "the", "start": 504, "end": 507, "id": 86, "annotation": null}, {"text": "samples", "start": 508, "end": 515, "id": 87, "annotation": null}, {"text": "were", "start": 516, "end": 520, "id": 88, "annotation": null}, {"text": "changed", "start": 521, "end": 528, "id": 89, "annotation": null}, {"text": "with", "start": 529, "end": 533, "id": 90, "annotation": null}, {"text": "Y", "start": 534, "end": 535, "id": 91, "annotation": null}, {"text": "content", "start": 536, "end": 543, "id": 92, "annotation": null}, {"text": ".", "start": 544, "end": 545, "id": 93, "annotation": null}], [{"text": "The", "start": 546, "end": 549, "id": 94, "annotation": null}, {"text": "volume", "start": 550, "end": 556, "id": 95, "annotation": null}, {"text": "of", "start": 557, "end": 559, "id": 96, "annotation": null}, {"text": "the", "start": 560, "end": 563, "id": 97, "annotation": null}, {"text": "unit", "start": 564, "end": 568, "id": 98, "annotation": null}, {"text": "cell", "start": 569, "end": 573, "id": 99, "annotation": null}, {"text": "was", "start": 574, "end": 577, "id": 100, "annotation": null}, {"text": "gradually", "start": 578, "end": 587, "id": 101, "annotation": null}, {"text": "decreased", "start": 588, "end": 597, "id": 102, "annotation": null}, {"text": "with", "start": 598, "end": 602, "id": 103, "annotation": null}, {"text": "the", "start": 603, "end": 606, "id": 104, "annotation": null}, {"text": "addition", "start": 607, "end": 615, "id": 105, "annotation": null}, {"text": "of", "start": 616, "end": 618, "id": 106, "annotation": null}, {"text": "Y.", "start": 619, "end": 621, "id": 107, "annotation": null}], [{"text": "Undoped", "start": 622, "end": 629, "id": 108, "annotation": null}, {"text": "and", "start": 630, "end": 633, "id": 109, "annotation": null}, {"text": "Y", "start": 634, "end": 635, "id": 110, "annotation": "DOPANT"}, {"text": "-", "start": 636, "end": 637, "id": 111, "annotation": null}, {"text": "containing", "start": 638, "end": 648, "id": 112, "annotation": null}, {"text": "HAp", "start": 649, "end": 652, "id": 113, "annotation": "BASEMAT"}, {"text": "samples", "start": 653, "end": 660, "id": 114, "annotation": null}, {"text": "were", "start": 661, "end": 665, "id": 115, "annotation": null}, {"text": "screened", "start": 666, "end": 674, "id": 116, "annotation": null}, {"text": "to", "start": 675, "end": 677, "id": 117, "annotation": null}, {"text": "determine", "start": 678, "end": 687, "id": 118, "annotation": null}, {"text": "their", "start": 688, "end": 693, "id": 119, "annotation": null}, {"text": "in", "start": 694, "end": 696, "id": 120, "annotation": null}, {"text": "vitro", "start": 697, "end": 702, "id": 121, "annotation": null}, {"text": "antimicrobial", "start": 703, "end": 716, "id": 122, "annotation": null}, {"text": "activities", "start": 717, "end": 727, "id": 123, "annotation": null}, {"text": "against", "start": 728, "end": 735, "id": 124, "annotation": null}, {"text": "the", "start": 736, "end": 739, "id": 125, "annotation": null}, {"text": "standard", "start": 740, "end": 748, "id": 126, "annotation": null}, {"text": "strains", "start": 749, "end": 756, "id": 127, "annotation": null}, {"text": ".", "start": 757, "end": 758, "id": 128, "annotation": null}], [{"text": "It", "start": 759, "end": 761, "id": 129, "annotation": null}, {"text": "was", "start": 762, "end": 765, "id": 130, "annotation": null}, {"text": "found", "start": 766, "end": 771, "id": 131, "annotation": null}, {"text": "that", "start": 772, "end": 776, "id": 132, "annotation": null}, {"text": "no", "start": 777, "end": 779, "id": 133, "annotation": null}, {"text": "samples", "start": 780, "end": 787, "id": 134, "annotation": null}, {"text": "have", "start": 788, "end": 792, "id": 135, "annotation": null}, {"text": "any", "start": 793, "end": 796, "id": 136, "annotation": null}, {"text": "antimicrobial", "start": 797, "end": 810, "id": 137, "annotation": null}, {"text": "effect", "start": 811, "end": 817, "id": 138, "annotation": null}, {"text": ".", "start": 818, "end": 819, "id": 139, "annotation": null}], [{"text": "The", "start": 820, "end": 823, "id": 140, "annotation": null}, {"text": "relative", "start": 824, "end": 832, "id": 141, "annotation": null}, {"text": "dielectric", "start": 833, "end": 843, "id": 142, "annotation": null}, {"text": "permittivity", "start": 844, "end": 856, "id": 143, "annotation": null}, {"text": "and", "start": 857, "end": 860, "id": 144, "annotation": null}, {"text": "dielectric", "start": 861, "end": 871, "id": 145, "annotation": null}, {"text": "loss", "start": 872, "end": 876, "id": 146, "annotation": null}, {"text": "are", "start": 877, "end": 880, "id": 147, "annotation": null}, {"text": "affected", "start": 881, "end": 889, "id": 148, "annotation": null}, {"text": "by", "start": 890, "end": 892, "id": 149, "annotation": null}, {"text": "Y", "start": 893, "end": 894, "id": 150, "annotation": null}, {"text": "content", "start": 895, "end": 902, "id": 151, "annotation": null}, {"text": ".", "start": 903, "end": 904, "id": 152, "annotation": null}], [{"text": "While", "start": 905, "end": 910, "id": 153, "annotation": null}, {"text": "the", "start": 911, "end": 914, "id": 154, "annotation": null}, {"text": "alternating", "start": 915, "end": 926, "id": 155, "annotation": null}, {"text": "current", "start": 927, "end": 934, "id": 156, "annotation": null}, {"text": "conductivity", "start": 935, "end": 947, "id": 157, "annotation": null}, {"text": "increases", "start": 948, "end": 957, "id": 158, "annotation": null}, {"text": "with", "start": 958, "end": 962, "id": 159, "annotation": null}, {"text": "increasing", "start": 963, "end": 973, "id": 160, "annotation": null}, {"text": "frequency", "start": 974, "end": 983, "id": 161, "annotation": null}, {"text": ",", "start": 984, "end": 985, "id": 162, "annotation": null}, {"text": "it", "start": 986, "end": 988, "id": 163, "annotation": null}, {"text": "decreases", "start": 989, "end": 998, "id": 164, "annotation": null}, {"text": "with", "start": 999, "end": 1003, "id": 165, "annotation": null}, {"text": "increasing", "start": 1004, "end": 1014, "id": 166, "annotation": null}, {"text": "Y", "start": 1015, "end": 1016, "id": 167, "annotation": null}, {"text": "content", "start": 1017, "end": 1024, "id": 168, "annotation": null}, {"text": ".", "start": 1025, "end": 1026, "id": 169, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} +{"text": "Hydroxyapatite (HAp) samples doped with 0, 2 and 4at.% of yttrium (Y) were characterized using X-ray diffraction (XRD), Fourier transform infrared (FTIR) spectroscopy, scanning electron microscopy attached with energy dispersive X-ray (EDX) spectroscopy, antimicrobial activity tests and dielectric studies. The hydroxyl groups observed in FTIR spectra confirmed the formation of HAp phase in the studied samples. The crystallite size, crystallinity degree and lattice parameters of the samples were changed with Y content. The volume of the unit cell was gradually decreased with the addition of Y. Undoped and Y-containing HAp samples were screened to determine their in vitro antimicrobial activities against the standard strains. It was found that no samples have any antimicrobial effect. The relative dielectric permittivity and dielectric loss are affected by Y content. While the alternating current conductivity increases with increasing frequency, it decreases with increasing Y content.", "meta": {"doi": "10.1016/j.msec.2014.11.039"}, "_input_hash": -1977067655, "_task_hash": -1069258854, "tokens": [[{"text": "Hydroxyapatite", "start": 0, "end": 14, "id": 0, "annotation": "BASEMAT"}, {"text": "(", "start": 15, "end": 16, "id": 1, "annotation": null}, {"text": "HAp", "start": 17, "end": 20, "id": 2, "annotation": "BASEMAT"}, {"text": ")", "start": 21, "end": 22, "id": 3, "annotation": null}, {"text": "samples", "start": 23, "end": 30, "id": 4, "annotation": null}, {"text": "doped", "start": 31, "end": 36, "id": 5, "annotation": null}, {"text": "with", "start": 37, "end": 41, "id": 6, "annotation": null}, {"text": "0", "start": 42, "end": 43, "id": 7, "annotation": "DOPMODQ"}, {"text": ",", "start": 44, "end": 45, "id": 8, "annotation": "DOPMODQ"}, {"text": "2", "start": 46, "end": 47, "id": 9, "annotation": "DOPMODQ"}, {"text": "and", "start": 48, "end": 51, "id": 10, "annotation": "DOPMODQ"}, {"text": "4at.%", "start": 52, "end": 57, "id": 11, "annotation": "DOPMODQ"}, {"text": "of", "start": 58, "end": 60, "id": 12, "annotation": null}, {"text": "yttrium", "start": 61, "end": 68, "id": 13, "annotation": "DOPANT"}, {"text": "(", "start": 69, "end": 70, "id": 14, "annotation": null}, {"text": "Y", "start": 71, "end": 72, "id": 15, "annotation": "DOPANT"}, {"text": ")", "start": 73, "end": 74, "id": 16, "annotation": null}, {"text": "were", "start": 75, "end": 79, "id": 17, "annotation": null}, {"text": "characterized", "start": 80, "end": 93, "id": 18, "annotation": null}, {"text": "using", "start": 94, "end": 99, "id": 19, "annotation": null}, {"text": "X", "start": 100, "end": 101, "id": 20, "annotation": null}, {"text": "-", "start": 102, "end": 103, "id": 21, "annotation": null}, {"text": "ray", "start": 104, "end": 107, "id": 22, "annotation": null}, {"text": "diffraction", "start": 108, "end": 119, "id": 23, "annotation": null}, {"text": "(", "start": 120, "end": 121, "id": 24, "annotation": null}, {"text": "XRD", "start": 122, "end": 125, "id": 25, "annotation": null}, {"text": ")", "start": 126, "end": 127, "id": 26, "annotation": null}, {"text": ",", "start": 128, "end": 129, "id": 27, "annotation": null}, {"text": "Fourier", "start": 130, "end": 137, "id": 28, "annotation": null}, {"text": "transform", "start": 138, "end": 147, "id": 29, "annotation": null}, {"text": "infrared", "start": 148, "end": 156, "id": 30, "annotation": null}, {"text": "(", "start": 157, "end": 158, "id": 31, "annotation": null}, {"text": "FTIR", "start": 159, "end": 163, "id": 32, "annotation": null}, {"text": ")", "start": 164, "end": 165, "id": 33, "annotation": null}, {"text": "spectroscopy", "start": 166, "end": 178, "id": 34, "annotation": null}, {"text": ",", "start": 179, "end": 180, "id": 35, "annotation": null}, {"text": "scanning", "start": 181, "end": 189, "id": 36, "annotation": null}, {"text": "electron", "start": 190, "end": 198, "id": 37, "annotation": null}, {"text": "microscopy", "start": 199, "end": 209, "id": 38, "annotation": null}, {"text": "attached", "start": 210, "end": 218, "id": 39, "annotation": null}, {"text": "with", "start": 219, "end": 223, "id": 40, "annotation": null}, {"text": "energy", "start": 224, "end": 230, "id": 41, "annotation": null}, {"text": "dispersive", "start": 231, "end": 241, "id": 42, "annotation": null}, {"text": "X", "start": 242, "end": 243, "id": 43, "annotation": null}, {"text": "-", "start": 244, "end": 245, "id": 44, "annotation": null}, {"text": "ray", "start": 246, "end": 249, "id": 45, "annotation": null}, {"text": "(", "start": 250, "end": 251, "id": 46, "annotation": null}, {"text": "EDX", "start": 252, "end": 255, "id": 47, "annotation": null}, {"text": ")", "start": 256, "end": 257, "id": 48, "annotation": null}, {"text": "spectroscopy", "start": 258, "end": 270, "id": 49, "annotation": null}, {"text": ",", "start": 271, "end": 272, "id": 50, "annotation": null}, {"text": "antimicrobial", "start": 273, "end": 286, "id": 51, "annotation": null}, {"text": "activity", "start": 287, "end": 295, "id": 52, "annotation": null}, {"text": "tests", "start": 296, "end": 301, "id": 53, "annotation": null}, {"text": "and", "start": 302, "end": 305, "id": 54, "annotation": null}, {"text": "dielectric", "start": 306, "end": 316, "id": 55, "annotation": null}, {"text": "studies", "start": 317, "end": 324, "id": 56, "annotation": null}, {"text": ".", "start": 325, "end": 326, "id": 57, "annotation": null}], [{"text": "The", "start": 327, "end": 330, "id": 58, "annotation": null}, {"text": "hydroxyl", "start": 331, "end": 339, "id": 59, "annotation": null}, {"text": "groups", "start": 340, "end": 346, "id": 60, "annotation": null}, {"text": "observed", "start": 347, "end": 355, "id": 61, "annotation": null}, {"text": "in", "start": 356, "end": 358, "id": 62, "annotation": null}, {"text": "FTIR", "start": 359, "end": 363, "id": 63, "annotation": null}, {"text": "spectra", "start": 364, "end": 371, "id": 64, "annotation": null}, {"text": "confirmed", "start": 372, "end": 381, "id": 65, "annotation": null}, {"text": "the", "start": 382, "end": 385, "id": 66, "annotation": null}, {"text": "formation", "start": 386, "end": 395, "id": 67, "annotation": null}, {"text": "of", "start": 396, "end": 398, "id": 68, "annotation": null}, {"text": "HAp", "start": 399, "end": 402, "id": 69, "annotation": null}, {"text": "phase", "start": 403, "end": 408, "id": 70, "annotation": null}, {"text": "in", "start": 409, "end": 411, "id": 71, "annotation": null}, {"text": "the", "start": 412, "end": 415, "id": 72, "annotation": null}, {"text": "studied", "start": 416, "end": 423, "id": 73, "annotation": null}, {"text": "samples", "start": 424, "end": 431, "id": 74, "annotation": null}, {"text": ".", "start": 432, "end": 433, "id": 75, "annotation": null}], [{"text": "The", "start": 434, "end": 437, "id": 76, "annotation": null}, {"text": "crystallite", "start": 438, "end": 449, "id": 77, "annotation": null}, {"text": "size", "start": 450, "end": 454, "id": 78, "annotation": null}, {"text": ",", "start": 455, "end": 456, "id": 79, "annotation": null}, {"text": "crystallinity", "start": 457, "end": 470, "id": 80, "annotation": null}, {"text": "degree", "start": 471, "end": 477, "id": 81, "annotation": null}, {"text": "and", "start": 478, "end": 481, "id": 82, "annotation": null}, {"text": "lattice", "start": 482, "end": 489, "id": 83, "annotation": null}, {"text": "parameters", "start": 490, "end": 500, "id": 84, "annotation": null}, {"text": "of", "start": 501, "end": 503, "id": 85, "annotation": null}, {"text": "the", "start": 504, "end": 507, "id": 86, "annotation": null}, {"text": "samples", "start": 508, "end": 515, "id": 87, "annotation": null}, {"text": "were", "start": 516, "end": 520, "id": 88, "annotation": null}, {"text": "changed", "start": 521, "end": 528, "id": 89, "annotation": null}, {"text": "with", "start": 529, "end": 533, "id": 90, "annotation": null}, {"text": "Y", "start": 534, "end": 535, "id": 91, "annotation": null}, {"text": "content", "start": 536, "end": 543, "id": 92, "annotation": null}, {"text": ".", "start": 544, "end": 545, "id": 93, "annotation": null}], [{"text": "The", "start": 546, "end": 549, "id": 94, "annotation": null}, {"text": "volume", "start": 550, "end": 556, "id": 95, "annotation": null}, {"text": "of", "start": 557, "end": 559, "id": 96, "annotation": null}, {"text": "the", "start": 560, "end": 563, "id": 97, "annotation": null}, {"text": "unit", "start": 564, "end": 568, "id": 98, "annotation": null}, {"text": "cell", "start": 569, "end": 573, "id": 99, "annotation": null}, {"text": "was", "start": 574, "end": 577, "id": 100, "annotation": null}, {"text": "gradually", "start": 578, "end": 587, "id": 101, "annotation": null}, {"text": "decreased", "start": 588, "end": 597, "id": 102, "annotation": null}, {"text": "with", "start": 598, "end": 602, "id": 103, "annotation": null}, {"text": "the", "start": 603, "end": 606, "id": 104, "annotation": null}, {"text": "addition", "start": 607, "end": 615, "id": 105, "annotation": null}, {"text": "of", "start": 616, "end": 618, "id": 106, "annotation": null}, {"text": "Y.", "start": 619, "end": 621, "id": 107, "annotation": null}], [{"text": "Undoped", "start": 622, "end": 629, "id": 108, "annotation": null}, {"text": "and", "start": 630, "end": 633, "id": 109, "annotation": null}, {"text": "Y", "start": 634, "end": 635, "id": 110, "annotation": "DOPANT"}, {"text": "-", "start": 636, "end": 637, "id": 111, "annotation": null}, {"text": "containing", "start": 638, "end": 648, "id": 112, "annotation": null}, {"text": "HAp", "start": 649, "end": 652, "id": 113, "annotation": "BASEMAT"}, {"text": "samples", "start": 653, "end": 660, "id": 114, "annotation": null}, {"text": "were", "start": 661, "end": 665, "id": 115, "annotation": null}, {"text": "screened", "start": 666, "end": 674, "id": 116, "annotation": null}, {"text": "to", "start": 675, "end": 677, "id": 117, "annotation": null}, {"text": "determine", "start": 678, "end": 687, "id": 118, "annotation": null}, {"text": "their", "start": 688, "end": 693, "id": 119, "annotation": null}, {"text": "in", "start": 694, "end": 696, "id": 120, "annotation": null}, {"text": "vitro", "start": 697, "end": 702, "id": 121, "annotation": null}, {"text": "antimicrobial", "start": 703, "end": 716, "id": 122, "annotation": null}, {"text": "activities", "start": 717, "end": 727, "id": 123, "annotation": null}, {"text": "against", "start": 728, "end": 735, "id": 124, "annotation": null}, {"text": "the", "start": 736, "end": 739, "id": 125, "annotation": null}, {"text": "standard", "start": 740, "end": 748, "id": 126, "annotation": null}, {"text": "strains", "start": 749, "end": 756, "id": 127, "annotation": null}, {"text": ".", "start": 757, "end": 758, "id": 128, "annotation": null}], [{"text": "It", "start": 759, "end": 761, "id": 129, "annotation": null}, {"text": "was", "start": 762, "end": 765, "id": 130, "annotation": null}, {"text": "found", "start": 766, "end": 771, "id": 131, "annotation": null}, {"text": "that", "start": 772, "end": 776, "id": 132, "annotation": null}, {"text": "no", "start": 777, "end": 779, "id": 133, "annotation": null}, {"text": "samples", "start": 780, "end": 787, "id": 134, "annotation": null}, {"text": "have", "start": 788, "end": 792, "id": 135, "annotation": null}, {"text": "any", "start": 793, "end": 796, "id": 136, "annotation": null}, {"text": "antimicrobial", "start": 797, "end": 810, "id": 137, "annotation": null}, {"text": "effect", "start": 811, "end": 817, "id": 138, "annotation": null}, {"text": ".", "start": 818, "end": 819, "id": 139, "annotation": null}], [{"text": "The", "start": 820, "end": 823, "id": 140, "annotation": null}, {"text": "relative", "start": 824, "end": 832, "id": 141, "annotation": null}, {"text": "dielectric", "start": 833, "end": 843, "id": 142, "annotation": null}, {"text": "permittivity", "start": 844, "end": 856, "id": 143, "annotation": null}, {"text": "and", "start": 857, "end": 860, "id": 144, "annotation": null}, {"text": "dielectric", "start": 861, "end": 871, "id": 145, "annotation": null}, {"text": "loss", "start": 872, "end": 876, "id": 146, "annotation": null}, {"text": "are", "start": 877, "end": 880, "id": 147, "annotation": null}, {"text": "affected", "start": 881, "end": 889, "id": 148, "annotation": null}, {"text": "by", "start": 890, "end": 892, "id": 149, "annotation": null}, {"text": "Y", "start": 893, "end": 894, "id": 150, "annotation": null}, {"text": "content", "start": 895, "end": 902, "id": 151, "annotation": null}, {"text": ".", "start": 903, "end": 904, "id": 152, "annotation": null}], [{"text": "While", "start": 905, "end": 910, "id": 153, "annotation": null}, {"text": "the", "start": 911, "end": 914, "id": 154, "annotation": null}, {"text": "alternating", "start": 915, "end": 926, "id": 155, "annotation": null}, {"text": "current", "start": 927, "end": 934, "id": 156, "annotation": null}, {"text": "conductivity", "start": 935, "end": 947, "id": 157, "annotation": null}, {"text": "increases", "start": 948, "end": 957, "id": 158, "annotation": null}, {"text": "with", "start": 958, "end": 962, "id": 159, "annotation": null}, {"text": "increasing", "start": 963, "end": 973, "id": 160, "annotation": null}, {"text": "frequency", "start": 974, "end": 983, "id": 161, "annotation": null}, {"text": ",", "start": 984, "end": 985, "id": 162, "annotation": null}, {"text": "it", "start": 986, "end": 988, "id": 163, "annotation": null}, {"text": "decreases", "start": 989, "end": 998, "id": 164, "annotation": null}, {"text": "with", "start": 999, "end": 1003, "id": 165, "annotation": null}, {"text": "increasing", "start": 1004, "end": 1014, "id": 166, "annotation": null}, {"text": "Y", "start": 1015, "end": 1016, "id": 167, "annotation": null}, {"text": "content", "start": 1017, "end": 1024, "id": 168, "annotation": null}, {"text": ".", "start": 1025, "end": 1026, "id": 169, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "Zinc oxide nanocrystals, pure and doped with transition metal ions, have been synthesized using colloidal techniques; after purification and concentration protocols, the ZnO solutions are mixed with monodisperse Au colloidal suspensions and used for thin film depositions. The effect of the dopant ions on the structural, morphological and optical properties of the as-synthesized colloids as well as the nanocomposite thin films has been analyzed and discussed. The dopant presence has been found to affect the CO optical sensing properties of the nanocomposite ZnO\u2013Au films: compared to pure ZnO, an increase in sensitivity up to 80% and 55% has been detected for Co-doped and Mn-doped ZnO respectively, while Ni-doped ZnO films show only minor improvements. This observation has been ascribed to the multiple oxidation states of cobalt and manganese ions that can facilitate electron transfer between the target gas and semiconductive oxide matrix, and also to the lower surface concentration of Ni ions inside ZnO crystals, as compared to Co and Mn. A fast and reversible response after repeated CO exposures has been detected for all tested samples, and a linear response intensity with the order of magnitude of CO concentration has been observed in the 10\u201310,000ppm range, with a lower detection limit of 1\u20132ppm.", "meta": {"doi": "10.1016/j.snb.2011.11.011"}, "_input_hash": 1311119326, "_task_hash": -1559096645, "tokens": [[{"text": "Zinc", "start": 0, "end": 4, "id": 0, "annotation": "BASEMAT"}, {"text": "oxide", "start": 5, "end": 10, "id": 1, "annotation": "BASEMAT"}, {"text": "nanocrystals", "start": 11, "end": 23, "id": 2, "annotation": null}, {"text": ",", "start": 24, "end": 25, "id": 3, "annotation": null}, {"text": "pure", "start": 26, "end": 30, "id": 4, "annotation": null}, {"text": "and", "start": 31, "end": 34, "id": 5, "annotation": null}, {"text": "doped", "start": 35, "end": 40, "id": 6, "annotation": null}, {"text": "with", "start": 41, "end": 45, "id": 7, "annotation": null}, {"text": "transition", "start": 46, "end": 56, "id": 8, "annotation": "DOPANT"}, {"text": "metal", "start": 57, "end": 62, "id": 9, "annotation": "DOPANT"}, {"text": "ions", "start": 63, "end": 67, "id": 10, "annotation": null}, {"text": ",", "start": 68, "end": 69, "id": 11, "annotation": null}, {"text": "have", "start": 70, "end": 74, "id": 12, "annotation": null}, {"text": "been", "start": 75, "end": 79, "id": 13, "annotation": null}, {"text": "synthesized", "start": 80, "end": 91, "id": 14, "annotation": null}, {"text": "using", "start": 92, "end": 97, "id": 15, "annotation": null}, {"text": "colloidal", "start": 98, "end": 107, "id": 16, "annotation": null}, {"text": "techniques", "start": 108, "end": 118, "id": 17, "annotation": null}, {"text": ";", "start": 119, "end": 120, "id": 18, "annotation": null}, {"text": "after", "start": 121, "end": 126, "id": 19, "annotation": null}, {"text": "purification", "start": 127, "end": 139, "id": 20, "annotation": null}, {"text": "and", "start": 140, "end": 143, "id": 21, "annotation": null}, {"text": "concentration", "start": 144, "end": 157, "id": 22, "annotation": null}, {"text": "protocols", "start": 158, "end": 167, "id": 23, "annotation": null}, {"text": ",", "start": 168, "end": 169, "id": 24, "annotation": null}, {"text": "the", "start": 170, "end": 173, "id": 25, "annotation": null}, {"text": "ZnO", "start": 174, "end": 177, "id": 26, "annotation": null}, {"text": "solutions", "start": 178, "end": 187, "id": 27, "annotation": null}, {"text": "are", "start": 188, "end": 191, "id": 28, "annotation": null}, {"text": "mixed", "start": 192, "end": 197, "id": 29, "annotation": null}, {"text": "with", "start": 198, "end": 202, "id": 30, "annotation": null}, {"text": "monodisperse", "start": 203, "end": 215, "id": 31, "annotation": null}, {"text": "Au", "start": 216, "end": 218, "id": 32, "annotation": null}, {"text": "colloidal", "start": 219, "end": 228, "id": 33, "annotation": null}, {"text": "suspensions", "start": 229, "end": 240, "id": 34, "annotation": null}, {"text": "and", "start": 241, "end": 244, "id": 35, "annotation": null}, {"text": "used", "start": 245, "end": 249, "id": 36, "annotation": null}, {"text": "for", "start": 250, "end": 253, "id": 37, "annotation": null}, {"text": "thin", "start": 254, "end": 258, "id": 38, "annotation": null}, {"text": "film", "start": 259, "end": 263, "id": 39, "annotation": null}, {"text": "depositions", "start": 264, "end": 275, "id": 40, "annotation": null}, {"text": ".", "start": 276, "end": 277, "id": 41, "annotation": null}], [{"text": "The", "start": 278, "end": 281, "id": 42, "annotation": null}, {"text": "effect", "start": 282, "end": 288, "id": 43, "annotation": null}, {"text": "of", "start": 289, "end": 291, "id": 44, "annotation": null}, {"text": "the", "start": 292, "end": 295, "id": 45, "annotation": null}, {"text": "dopant", "start": 296, "end": 302, "id": 46, "annotation": null}, {"text": "ions", "start": 303, "end": 307, "id": 47, "annotation": null}, {"text": "on", "start": 308, "end": 310, "id": 48, "annotation": null}, {"text": "the", "start": 311, "end": 314, "id": 49, "annotation": null}, {"text": "structural", "start": 315, "end": 325, "id": 50, "annotation": null}, {"text": ",", "start": 326, "end": 327, "id": 51, "annotation": null}, {"text": "morphological", "start": 328, "end": 341, "id": 52, "annotation": null}, {"text": "and", "start": 342, "end": 345, "id": 53, "annotation": null}, {"text": "optical", "start": 346, "end": 353, "id": 54, "annotation": null}, {"text": "properties", "start": 354, "end": 364, "id": 55, "annotation": null}, {"text": "of", "start": 365, "end": 367, "id": 56, "annotation": null}, {"text": "the", "start": 368, "end": 371, "id": 57, "annotation": null}, {"text": "as", "start": 372, "end": 374, "id": 58, "annotation": null}, {"text": "-", "start": 375, "end": 376, "id": 59, "annotation": null}, {"text": "synthesized", "start": 377, "end": 388, "id": 60, "annotation": null}, {"text": "colloids", "start": 389, "end": 397, "id": 61, "annotation": null}, {"text": "as", "start": 398, "end": 400, "id": 62, "annotation": null}, {"text": "well", "start": 401, "end": 405, "id": 63, "annotation": null}, {"text": "as", "start": 406, "end": 408, "id": 64, "annotation": null}, {"text": "the", "start": 409, "end": 412, "id": 65, "annotation": null}, {"text": "nanocomposite", "start": 413, "end": 426, "id": 66, "annotation": null}, {"text": "thin", "start": 427, "end": 431, "id": 67, "annotation": null}, {"text": "films", "start": 432, "end": 437, "id": 68, "annotation": null}, {"text": "has", "start": 438, "end": 441, "id": 69, "annotation": null}, {"text": "been", "start": 442, "end": 446, "id": 70, "annotation": null}, {"text": "analyzed", "start": 447, "end": 455, "id": 71, "annotation": null}, {"text": "and", "start": 456, "end": 459, "id": 72, "annotation": null}, {"text": "discussed", "start": 460, "end": 469, "id": 73, "annotation": null}, {"text": ".", "start": 470, "end": 471, "id": 74, "annotation": null}], [{"text": "The", "start": 472, "end": 475, "id": 75, "annotation": null}, {"text": "dopant", "start": 476, "end": 482, "id": 76, "annotation": null}, {"text": "presence", "start": 483, "end": 491, "id": 77, "annotation": null}, {"text": "has", "start": 492, "end": 495, "id": 78, "annotation": null}, {"text": "been", "start": 496, "end": 500, "id": 79, "annotation": null}, {"text": "found", "start": 501, "end": 506, "id": 80, "annotation": null}, {"text": "to", "start": 507, "end": 509, "id": 81, "annotation": null}, {"text": "affect", "start": 510, "end": 516, "id": 82, "annotation": null}, {"text": "the", "start": 517, "end": 520, "id": 83, "annotation": null}, {"text": "CO", "start": 521, "end": 523, "id": 84, "annotation": null}, {"text": "optical", "start": 524, "end": 531, "id": 85, "annotation": null}, {"text": "sensing", "start": 532, "end": 539, "id": 86, "annotation": null}, {"text": "properties", "start": 540, "end": 550, "id": 87, "annotation": null}, {"text": "of", "start": 551, "end": 553, "id": 88, "annotation": null}, {"text": "the", "start": 554, "end": 557, "id": 89, "annotation": null}, {"text": "nanocomposite", "start": 558, "end": 571, "id": 90, "annotation": null}, {"text": "ZnO", "start": 572, "end": 575, "id": 91, "annotation": null}, {"text": "\u2013", "start": 576, "end": 577, "id": 92, "annotation": null}, {"text": "Au", "start": 578, "end": 580, "id": 93, "annotation": null}, {"text": "films", "start": 581, "end": 586, "id": 94, "annotation": null}, {"text": ":", "start": 587, "end": 588, "id": 95, "annotation": null}, {"text": "compared", "start": 589, "end": 597, "id": 96, "annotation": null}, {"text": "to", "start": 598, "end": 600, "id": 97, "annotation": null}, {"text": "pure", "start": 601, "end": 605, "id": 98, "annotation": null}, {"text": "ZnO", "start": 606, "end": 609, "id": 99, "annotation": null}, {"text": ",", "start": 610, "end": 611, "id": 100, "annotation": null}, {"text": "an", "start": 612, "end": 614, "id": 101, "annotation": null}, {"text": "increase", "start": 615, "end": 623, "id": 102, "annotation": null}, {"text": "in", "start": 624, "end": 626, "id": 103, "annotation": null}, {"text": "sensitivity", "start": 627, "end": 638, "id": 104, "annotation": null}, {"text": "up", "start": 639, "end": 641, "id": 105, "annotation": null}, {"text": "to", "start": 642, "end": 644, "id": 106, "annotation": null}, {"text": "80", "start": 645, "end": 647, "id": 107, "annotation": null}, {"text": "%", "start": 648, "end": 649, "id": 108, "annotation": null}, {"text": "and", "start": 650, "end": 653, "id": 109, "annotation": null}, {"text": "55", "start": 654, "end": 656, "id": 110, "annotation": null}, {"text": "%", "start": 657, "end": 658, "id": 111, "annotation": null}, {"text": "has", "start": 659, "end": 662, "id": 112, "annotation": null}, {"text": "been", "start": 663, "end": 667, "id": 113, "annotation": null}, {"text": "detected", "start": 668, "end": 676, "id": 114, "annotation": null}, {"text": "for", "start": 677, "end": 680, "id": 115, "annotation": null}, {"text": "Co", "start": 681, "end": 683, "id": 116, "annotation": "DOPANT"}, {"text": "-", "start": 684, "end": 685, "id": 117, "annotation": null}, {"text": "doped", "start": 686, "end": 691, "id": 118, "annotation": null}, {"text": "and", "start": 692, "end": 695, "id": 119, "annotation": null}, {"text": "Mn", "start": 696, "end": 698, "id": 120, "annotation": "DOPANT"}, {"text": "-", "start": 699, "end": 700, "id": 121, "annotation": null}, {"text": "doped", "start": 701, "end": 706, "id": 122, "annotation": null}, {"text": "ZnO", "start": 707, "end": 710, "id": 123, "annotation": "BASEMAT"}, {"text": "respectively", "start": 711, "end": 723, "id": 124, "annotation": null}, {"text": ",", "start": 724, "end": 725, "id": 125, "annotation": null}, {"text": "while", "start": 726, "end": 731, "id": 126, "annotation": null}, {"text": "Ni", "start": 732, "end": 734, "id": 127, "annotation": "DOPANT"}, {"text": "-", "start": 735, "end": 736, "id": 128, "annotation": null}, {"text": "doped", "start": 737, "end": 742, "id": 129, "annotation": null}, {"text": "ZnO", "start": 743, "end": 746, "id": 130, "annotation": "BASEMAT"}, {"text": "films", "start": 747, "end": 752, "id": 131, "annotation": null}, {"text": "show", "start": 753, "end": 757, "id": 132, "annotation": null}, {"text": "only", "start": 758, "end": 762, "id": 133, "annotation": null}, {"text": "minor", "start": 763, "end": 768, "id": 134, "annotation": null}, {"text": "improvements", "start": 769, "end": 781, "id": 135, "annotation": null}, {"text": ".", "start": 782, "end": 783, "id": 136, "annotation": null}], [{"text": "This", "start": 784, "end": 788, "id": 137, "annotation": null}, {"text": "observation", "start": 789, "end": 800, "id": 138, "annotation": null}, {"text": "has", "start": 801, "end": 804, "id": 139, "annotation": null}, {"text": "been", "start": 805, "end": 809, "id": 140, "annotation": null}, {"text": "ascribed", "start": 810, "end": 818, "id": 141, "annotation": null}, {"text": "to", "start": 819, "end": 821, "id": 142, "annotation": null}, {"text": "the", "start": 822, "end": 825, "id": 143, "annotation": null}, {"text": "multiple", "start": 826, "end": 834, "id": 144, "annotation": null}, {"text": "oxidation", "start": 835, "end": 844, "id": 145, "annotation": null}, {"text": "states", "start": 845, "end": 851, "id": 146, "annotation": null}, {"text": "of", "start": 852, "end": 854, "id": 147, "annotation": null}, {"text": "cobalt", "start": 855, "end": 861, "id": 148, "annotation": null}, {"text": "and", "start": 862, "end": 865, "id": 149, "annotation": null}, {"text": "manganese", "start": 866, "end": 875, "id": 150, "annotation": null}, {"text": "ions", "start": 876, "end": 880, "id": 151, "annotation": null}, {"text": "that", "start": 881, "end": 885, "id": 152, "annotation": null}, {"text": "can", "start": 886, "end": 889, "id": 153, "annotation": null}, {"text": "facilitate", "start": 890, "end": 900, "id": 154, "annotation": null}, {"text": "electron", "start": 901, "end": 909, "id": 155, "annotation": null}, {"text": "transfer", "start": 910, "end": 918, "id": 156, "annotation": null}, {"text": "between", "start": 919, "end": 926, "id": 157, "annotation": null}, {"text": "the", "start": 927, "end": 930, "id": 158, "annotation": null}, {"text": "target", "start": 931, "end": 937, "id": 159, "annotation": null}, {"text": "gas", "start": 938, "end": 941, "id": 160, "annotation": null}, {"text": "and", "start": 942, "end": 945, "id": 161, "annotation": null}, {"text": "semiconductive", "start": 946, "end": 960, "id": 162, "annotation": null}, {"text": "oxide", "start": 961, "end": 966, "id": 163, "annotation": null}, {"text": "matrix", "start": 967, "end": 973, "id": 164, "annotation": null}, {"text": ",", "start": 974, "end": 975, "id": 165, "annotation": null}, {"text": "and", "start": 976, "end": 979, "id": 166, "annotation": null}, {"text": "also", "start": 980, "end": 984, "id": 167, "annotation": null}, {"text": "to", "start": 985, "end": 987, "id": 168, "annotation": null}, {"text": "the", "start": 988, "end": 991, "id": 169, "annotation": null}, {"text": "lower", "start": 992, "end": 997, "id": 170, "annotation": null}, {"text": "surface", "start": 998, "end": 1005, "id": 171, "annotation": null}, {"text": "concentration", "start": 1006, "end": 1019, "id": 172, "annotation": null}, {"text": "of", "start": 1020, "end": 1022, "id": 173, "annotation": null}, {"text": "Ni", "start": 1023, "end": 1025, "id": 174, "annotation": null}, {"text": "ions", "start": 1026, "end": 1030, "id": 175, "annotation": null}, {"text": "inside", "start": 1031, "end": 1037, "id": 176, "annotation": null}, {"text": "ZnO", "start": 1038, "end": 1041, "id": 177, "annotation": null}, {"text": "crystals", "start": 1042, "end": 1050, "id": 178, "annotation": null}, {"text": ",", "start": 1051, "end": 1052, "id": 179, "annotation": null}, {"text": "as", "start": 1053, "end": 1055, "id": 180, "annotation": null}, {"text": "compared", "start": 1056, "end": 1064, "id": 181, "annotation": null}, {"text": "to", "start": 1065, "end": 1067, "id": 182, "annotation": null}, {"text": "Co", "start": 1068, "end": 1070, "id": 183, "annotation": null}, {"text": "and", "start": 1071, "end": 1074, "id": 184, "annotation": null}, {"text": "Mn", "start": 1075, "end": 1077, "id": 185, "annotation": null}, {"text": ".", "start": 1078, "end": 1079, "id": 186, "annotation": null}], [{"text": "A", "start": 1080, "end": 1081, "id": 187, "annotation": null}, {"text": "fast", "start": 1082, "end": 1086, "id": 188, "annotation": null}, {"text": "and", "start": 1087, "end": 1090, "id": 189, "annotation": null}, {"text": "reversible", "start": 1091, "end": 1101, "id": 190, "annotation": null}, {"text": "response", "start": 1102, "end": 1110, "id": 191, "annotation": null}, {"text": "after", "start": 1111, "end": 1116, "id": 192, "annotation": null}, {"text": "repeated", "start": 1117, "end": 1125, "id": 193, "annotation": null}, {"text": "CO", "start": 1126, "end": 1128, "id": 194, "annotation": null}, {"text": "exposures", "start": 1129, "end": 1138, "id": 195, "annotation": null}, {"text": "has", "start": 1139, "end": 1142, "id": 196, "annotation": null}, {"text": "been", "start": 1143, "end": 1147, "id": 197, "annotation": null}, {"text": "detected", "start": 1148, "end": 1156, "id": 198, "annotation": null}, {"text": "for", "start": 1157, "end": 1160, "id": 199, "annotation": null}, {"text": "all", "start": 1161, "end": 1164, "id": 200, "annotation": null}, {"text": "tested", "start": 1165, "end": 1171, "id": 201, "annotation": null}, {"text": "samples", "start": 1172, "end": 1179, "id": 202, "annotation": null}, {"text": ",", "start": 1180, "end": 1181, "id": 203, "annotation": null}, {"text": "and", "start": 1182, "end": 1185, "id": 204, "annotation": null}, {"text": "a", "start": 1186, "end": 1187, "id": 205, "annotation": null}, {"text": "linear", "start": 1188, "end": 1194, "id": 206, "annotation": null}, {"text": "response", "start": 1195, "end": 1203, "id": 207, "annotation": null}, {"text": "intensity", "start": 1204, "end": 1213, "id": 208, "annotation": null}, {"text": "with", "start": 1214, "end": 1218, "id": 209, "annotation": null}, {"text": "the", "start": 1219, "end": 1222, "id": 210, "annotation": null}, {"text": "order", "start": 1223, "end": 1228, "id": 211, "annotation": null}, {"text": "of", "start": 1229, "end": 1231, "id": 212, "annotation": null}, {"text": "magnitude", "start": 1232, "end": 1241, "id": 213, "annotation": null}, {"text": "of", "start": 1242, "end": 1244, "id": 214, "annotation": null}, {"text": "CO", "start": 1245, "end": 1247, "id": 215, "annotation": "DOPANT"}, {"text": "concentration", "start": 1248, "end": 1261, "id": 216, "annotation": null}, {"text": "has", "start": 1262, "end": 1265, "id": 217, "annotation": null}, {"text": "been", "start": 1266, "end": 1270, "id": 218, "annotation": null}, {"text": "observed", "start": 1271, "end": 1279, "id": 219, "annotation": null}, {"text": "in", "start": 1280, "end": 1282, "id": 220, "annotation": null}, {"text": "the", "start": 1283, "end": 1286, "id": 221, "annotation": null}, {"text": "10\u201310,000ppm", "start": 1287, "end": 1299, "id": 222, "annotation": "DOPMODQ"}, {"text": "range", "start": 1300, "end": 1305, "id": 223, "annotation": null}, {"text": ",", "start": 1306, "end": 1307, "id": 224, "annotation": null}, {"text": "with", "start": 1308, "end": 1312, "id": 225, "annotation": null}, {"text": "a", "start": 1313, "end": 1314, "id": 226, "annotation": null}, {"text": "lower", "start": 1315, "end": 1320, "id": 227, "annotation": null}, {"text": "detection", "start": 1321, "end": 1330, "id": 228, "annotation": null}, {"text": "limit", "start": 1331, "end": 1336, "id": 229, "annotation": null}, {"text": "of", "start": 1337, "end": 1339, "id": 230, "annotation": null}, {"text": "1\u20132ppm", "start": 1340, "end": 1346, "id": 231, "annotation": null}, {"text": ".", "start": 1347, "end": 1348, "id": 232, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "The single-phase ZnAl2O4 phosphors with various components of Mn2+ dopant were fabricated by using hydrothermal method. The phosphors has been characterized by X-ray diffraction (XRD), transmission electron microscopy (TEM), photoluminescence (PL) spectra and vibrating sample magnetometer (VSM). The results of XRD and TEM measurements showed that the resultant nanoparticles were single crystal with octahedral and hexagonal shape, and after annealed, this shape had change. Green emission was observed from doped zinc aluminate with 427nm excitation. The temperature-dependant PL spectra revealed two emission peaks which exhibited different shifting tendency with a decrease in temperature. The room-temperature hysteresis loops of zinc aluminate nanoparticles showed magnetic behavior, and the magnetism disappeared gradually with the increase of Mn2+ doping contents.", "meta": {"doi": "10.1016/j.jpcs.2013.03.012"}, "_input_hash": -1808303082, "_task_hash": -1150166075, "tokens": [[{"text": "The", "start": 0, "end": 3, "id": 0, "annotation": null}, {"text": "single", "start": 4, "end": 10, "id": 1, "annotation": null}, {"text": "-", "start": 11, "end": 12, "id": 2, "annotation": null}, {"text": "phase", "start": 13, "end": 18, "id": 3, "annotation": null}, {"text": "ZnAl2O4", "start": 19, "end": 26, "id": 4, "annotation": "BASEMAT"}, {"text": "phosphors", "start": 27, "end": 36, "id": 5, "annotation": null}, {"text": "with", "start": 37, "end": 41, "id": 6, "annotation": null}, {"text": "various", "start": 42, "end": 49, "id": 7, "annotation": null}, {"text": "components", "start": 50, "end": 60, "id": 8, "annotation": null}, {"text": "of", "start": 61, "end": 63, "id": 9, "annotation": null}, {"text": "Mn2", "start": 64, "end": 67, "id": 10, "annotation": "DOPANT"}, {"text": "+", "start": 68, "end": 69, "id": 11, "annotation": "DOPANT"}, {"text": "dopant", "start": 70, "end": 76, "id": 12, "annotation": null}, {"text": "were", "start": 77, "end": 81, "id": 13, "annotation": null}, {"text": "fabricated", "start": 82, "end": 92, "id": 14, "annotation": null}, {"text": "by", "start": 93, "end": 95, "id": 15, "annotation": null}, {"text": "using", "start": 96, "end": 101, "id": 16, "annotation": null}, {"text": "hydrothermal", "start": 102, "end": 114, "id": 17, "annotation": null}, {"text": "method", "start": 115, "end": 121, "id": 18, "annotation": null}, {"text": ".", "start": 122, "end": 123, "id": 19, "annotation": null}], [{"text": "The", "start": 124, "end": 127, "id": 20, "annotation": null}, {"text": "phosphors", "start": 128, "end": 137, "id": 21, "annotation": null}, {"text": "has", "start": 138, "end": 141, "id": 22, "annotation": null}, {"text": "been", "start": 142, "end": 146, "id": 23, "annotation": null}, {"text": "characterized", "start": 147, "end": 160, "id": 24, "annotation": null}, {"text": "by", "start": 161, "end": 163, "id": 25, "annotation": null}, {"text": "X", "start": 164, "end": 165, "id": 26, "annotation": null}, {"text": "-", "start": 166, "end": 167, "id": 27, "annotation": null}, {"text": "ray", "start": 168, "end": 171, "id": 28, "annotation": null}, {"text": "diffraction", "start": 172, "end": 183, "id": 29, "annotation": null}, {"text": "(", "start": 184, "end": 185, "id": 30, "annotation": null}, {"text": "XRD", "start": 186, "end": 189, "id": 31, "annotation": null}, {"text": ")", "start": 190, "end": 191, "id": 32, "annotation": null}, {"text": ",", "start": 192, "end": 193, "id": 33, "annotation": null}, {"text": "transmission", "start": 194, "end": 206, "id": 34, "annotation": null}, {"text": "electron", "start": 207, "end": 215, "id": 35, "annotation": null}, {"text": "microscopy", "start": 216, "end": 226, "id": 36, "annotation": null}, {"text": "(", "start": 227, "end": 228, "id": 37, "annotation": null}, {"text": "TEM", "start": 229, "end": 232, "id": 38, "annotation": null}, {"text": ")", "start": 233, "end": 234, "id": 39, "annotation": null}, {"text": ",", "start": 235, "end": 236, "id": 40, "annotation": null}, {"text": "photoluminescence", "start": 237, "end": 254, "id": 41, "annotation": null}, {"text": "(", "start": 255, "end": 256, "id": 42, "annotation": null}, {"text": "PL", "start": 257, "end": 259, "id": 43, "annotation": null}, {"text": ")", "start": 260, "end": 261, "id": 44, "annotation": null}, {"text": "spectra", "start": 262, "end": 269, "id": 45, "annotation": null}, {"text": "and", "start": 270, "end": 273, "id": 46, "annotation": null}, {"text": "vibrating", "start": 274, "end": 283, "id": 47, "annotation": null}, {"text": "sample", "start": 284, "end": 290, "id": 48, "annotation": null}, {"text": "magnetometer", "start": 291, "end": 303, "id": 49, "annotation": null}, {"text": "(", "start": 304, "end": 305, "id": 50, "annotation": null}, {"text": "VSM", "start": 306, "end": 309, "id": 51, "annotation": null}, {"text": ")", "start": 310, "end": 311, "id": 52, "annotation": null}, {"text": ".", "start": 312, "end": 313, "id": 53, "annotation": null}], [{"text": "The", "start": 314, "end": 317, "id": 54, "annotation": null}, {"text": "results", "start": 318, "end": 325, "id": 55, "annotation": null}, {"text": "of", "start": 326, "end": 328, "id": 56, "annotation": null}, {"text": "XRD", "start": 329, "end": 332, "id": 57, "annotation": null}, {"text": "and", "start": 333, "end": 336, "id": 58, "annotation": null}, {"text": "TEM", "start": 337, "end": 340, "id": 59, "annotation": null}, {"text": "measurements", "start": 341, "end": 353, "id": 60, "annotation": null}, {"text": "showed", "start": 354, "end": 360, "id": 61, "annotation": null}, {"text": "that", "start": 361, "end": 365, "id": 62, "annotation": null}, {"text": "the", "start": 366, "end": 369, "id": 63, "annotation": null}, {"text": "resultant", "start": 370, "end": 379, "id": 64, "annotation": null}, {"text": "nanoparticles", "start": 380, "end": 393, "id": 65, "annotation": null}, {"text": "were", "start": 394, "end": 398, "id": 66, "annotation": null}, {"text": "single", "start": 399, "end": 405, "id": 67, "annotation": null}, {"text": "crystal", "start": 406, "end": 413, "id": 68, "annotation": null}, {"text": "with", "start": 414, "end": 418, "id": 69, "annotation": null}, {"text": "octahedral", "start": 419, "end": 429, "id": 70, "annotation": null}, {"text": "and", "start": 430, "end": 433, "id": 71, "annotation": null}, {"text": "hexagonal", "start": 434, "end": 443, "id": 72, "annotation": null}, {"text": "shape", "start": 444, "end": 449, "id": 73, "annotation": null}, {"text": ",", "start": 450, "end": 451, "id": 74, "annotation": null}, {"text": "and", "start": 452, "end": 455, "id": 75, "annotation": null}, {"text": "after", "start": 456, "end": 461, "id": 76, "annotation": null}, {"text": "annealed", "start": 462, "end": 470, "id": 77, "annotation": null}, {"text": ",", "start": 471, "end": 472, "id": 78, "annotation": null}, {"text": "this", "start": 473, "end": 477, "id": 79, "annotation": null}, {"text": "shape", "start": 478, "end": 483, "id": 80, "annotation": null}, {"text": "had", "start": 484, "end": 487, "id": 81, "annotation": null}, {"text": "change", "start": 488, "end": 494, "id": 82, "annotation": null}, {"text": ".", "start": 495, "end": 496, "id": 83, "annotation": null}], [{"text": "Green", "start": 497, "end": 502, "id": 84, "annotation": null}, {"text": "emission", "start": 503, "end": 511, "id": 85, "annotation": null}, {"text": "was", "start": 512, "end": 515, "id": 86, "annotation": null}, {"text": "observed", "start": 516, "end": 524, "id": 87, "annotation": null}, {"text": "from", "start": 525, "end": 529, "id": 88, "annotation": null}, {"text": "doped", "start": 530, "end": 535, "id": 89, "annotation": null}, {"text": "zinc", "start": 536, "end": 540, "id": 90, "annotation": "BASEMAT"}, {"text": "aluminate", "start": 541, "end": 550, "id": 91, "annotation": "BASEMAT"}, {"text": "with", "start": 551, "end": 555, "id": 92, "annotation": null}, {"text": "427", "start": 556, "end": 559, "id": 93, "annotation": null}, {"text": "nm", "start": 560, "end": 562, "id": 94, "annotation": null}, {"text": "excitation", "start": 563, "end": 573, "id": 95, "annotation": null}, {"text": ".", "start": 574, "end": 575, "id": 96, "annotation": null}], [{"text": "The", "start": 576, "end": 579, "id": 97, "annotation": null}, {"text": "temperature", "start": 580, "end": 591, "id": 98, "annotation": null}, {"text": "-", "start": 592, "end": 593, "id": 99, "annotation": null}, {"text": "dependant", "start": 594, "end": 603, "id": 100, "annotation": null}, {"text": "PL", "start": 604, "end": 606, "id": 101, "annotation": null}, {"text": "spectra", "start": 607, "end": 614, "id": 102, "annotation": null}, {"text": "revealed", "start": 615, "end": 623, "id": 103, "annotation": null}, {"text": "two", "start": 624, "end": 627, "id": 104, "annotation": null}, {"text": "emission", "start": 628, "end": 636, "id": 105, "annotation": null}, {"text": "peaks", "start": 637, "end": 642, "id": 106, "annotation": null}, {"text": "which", "start": 643, "end": 648, "id": 107, "annotation": null}, {"text": "exhibited", "start": 649, "end": 658, "id": 108, "annotation": null}, {"text": "different", "start": 659, "end": 668, "id": 109, "annotation": null}, {"text": "shifting", "start": 669, "end": 677, "id": 110, "annotation": null}, {"text": "tendency", "start": 678, "end": 686, "id": 111, "annotation": null}, {"text": "with", "start": 687, "end": 691, "id": 112, "annotation": null}, {"text": "a", "start": 692, "end": 693, "id": 113, "annotation": null}, {"text": "decrease", "start": 694, "end": 702, "id": 114, "annotation": null}, {"text": "in", "start": 703, "end": 705, "id": 115, "annotation": null}, {"text": "temperature", "start": 706, "end": 717, "id": 116, "annotation": null}, {"text": ".", "start": 718, "end": 719, "id": 117, "annotation": null}], [{"text": "The", "start": 720, "end": 723, "id": 118, "annotation": null}, {"text": "room", "start": 724, "end": 728, "id": 119, "annotation": null}, {"text": "-", "start": 729, "end": 730, "id": 120, "annotation": null}, {"text": "temperature", "start": 731, "end": 742, "id": 121, "annotation": null}, {"text": "hysteresis", "start": 743, "end": 753, "id": 122, "annotation": null}, {"text": "loops", "start": 754, "end": 759, "id": 123, "annotation": null}, {"text": "of", "start": 760, "end": 762, "id": 124, "annotation": null}, {"text": "zinc", "start": 763, "end": 767, "id": 125, "annotation": "BASEMAT"}, {"text": "aluminate", "start": 768, "end": 777, "id": 126, "annotation": "BASEMAT"}, {"text": "nanoparticles", "start": 778, "end": 791, "id": 127, "annotation": null}, {"text": "showed", "start": 792, "end": 798, "id": 128, "annotation": null}, {"text": "magnetic", "start": 799, "end": 807, "id": 129, "annotation": null}, {"text": "behavior", "start": 808, "end": 816, "id": 130, "annotation": null}, {"text": ",", "start": 817, "end": 818, "id": 131, "annotation": null}, {"text": "and", "start": 819, "end": 822, "id": 132, "annotation": null}, {"text": "the", "start": 823, "end": 826, "id": 133, "annotation": null}, {"text": "magnetism", "start": 827, "end": 836, "id": 134, "annotation": null}, {"text": "disappeared", "start": 837, "end": 848, "id": 135, "annotation": null}, {"text": "gradually", "start": 849, "end": 858, "id": 136, "annotation": null}, {"text": "with", "start": 859, "end": 863, "id": 137, "annotation": null}, {"text": "the", "start": 864, "end": 867, "id": 138, "annotation": null}, {"text": "increase", "start": 868, "end": 876, "id": 139, "annotation": null}, {"text": "of", "start": 877, "end": 879, "id": 140, "annotation": null}, {"text": "Mn2", "start": 880, "end": 883, "id": 141, "annotation": "DOPANT"}, {"text": "+", "start": 884, "end": 885, "id": 142, "annotation": "DOPANT"}, {"text": "doping", "start": 886, "end": 892, "id": 143, "annotation": null}, {"text": "contents", "start": 893, "end": 901, "id": 144, "annotation": null}, {"text": ".", "start": 902, "end": 903, "id": 145, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "ZnO thin films co-doped with boron and fluorine (B, F\u2013ZnO) were deposited by the electrospraying method onto a heated glass substrate. The characteristics of the films were investigated as a function of dopant concentrations in the solution. X-ray diffraction studies revealed that all the prepared films were polycrystalline in nature and exhibited the ZnO hexagonal wurtzite structure with preferential orientation along the (002) crystal plane. In addition, shift in the XRD patterns was observed and the crystal orientation was changed at a certain amount of fluorine (>6at%) in the starting solution. Analyses of X-ray diffraction and X-ray energy dispersive patterns demonstrate that fluorine and boron have been successfully doped into the ZnO thin films. Like these studies, the scanning electron micrographs showed that the grain size tends to decrease by the addition of fluorine. It was also observed that 2at% boron and 6at% fluorine was the optimal amount in order to achieve the minimum resistivity and maximum transmittance. The minimum value of resistivity of about 1.01\u00d710\u22124\u03a9cm and high optical transmittance of 98% in the visible region were obtained for 2at% boron and 6at% fluorine co-doped ZnO films. Moreover, the present values of resistivities are closest to the lowest resistivity values among the doped ZnO films and also closer to the indium tin oxide (ITO) resistivities that were previously reported. We confirmed that the boron and fluorine atoms substitution in the ZnO lattice imparts positive effects in terms of enhancing the free carrier concentration and density of films, which will further improve the electrical and optical properties. The films produced at optimum conditions are suitable for optical and electrical applications owing to their low resistivity and high optical transmittance in the visible range.", "meta": {"doi": "10.1016/j.jcrysgro.2012.08.018"}, "_input_hash": -351720990, "_task_hash": 2007476978, "tokens": [[{"text": "ZnO", "start": 0, "end": 3, "id": 0, "annotation": "BASEMAT"}, {"text": "thin", "start": 4, "end": 8, "id": 1, "annotation": null}, {"text": "films", "start": 9, "end": 14, "id": 2, "annotation": null}, {"text": "co", "start": 15, "end": 17, "id": 3, "annotation": null}, {"text": "-", "start": 18, "end": 19, "id": 4, "annotation": null}, {"text": "doped", "start": 20, "end": 25, "id": 5, "annotation": null}, {"text": "with", "start": 26, "end": 30, "id": 6, "annotation": null}, {"text": "boron", "start": 31, "end": 36, "id": 7, "annotation": "DOPANT"}, {"text": "and", "start": 37, "end": 40, "id": 8, "annotation": null}, {"text": "fluorine", "start": 41, "end": 49, "id": 9, "annotation": "DOPANT"}, {"text": "(", "start": 50, "end": 51, "id": 10, "annotation": null}, {"text": "B", "start": 52, "end": 53, "id": 11, "annotation": "DOPANT"}, {"text": ",", "start": 54, "end": 55, "id": 12, "annotation": null}, {"text": "F", "start": 56, "end": 57, "id": 13, "annotation": "DOPANT"}, {"text": "\u2013", "start": 58, "end": 59, "id": 14, "annotation": null}, {"text": "ZnO", "start": 60, "end": 63, "id": 15, "annotation": "BASEMAT"}, {"text": ")", "start": 64, "end": 65, "id": 16, "annotation": null}, {"text": "were", "start": 66, "end": 70, "id": 17, "annotation": null}, {"text": "deposited", "start": 71, "end": 80, "id": 18, "annotation": null}, {"text": "by", "start": 81, "end": 83, "id": 19, "annotation": null}, {"text": "the", "start": 84, "end": 87, "id": 20, "annotation": null}, {"text": "electrospraying", "start": 88, "end": 103, "id": 21, "annotation": null}, {"text": "method", "start": 104, "end": 110, "id": 22, "annotation": null}, {"text": "onto", "start": 111, "end": 115, "id": 23, "annotation": null}, {"text": "a", "start": 116, "end": 117, "id": 24, "annotation": null}, {"text": "heated", "start": 118, "end": 124, "id": 25, "annotation": null}, {"text": "glass", "start": 125, "end": 130, "id": 26, "annotation": null}, {"text": "substrate", "start": 131, "end": 140, "id": 27, "annotation": null}, {"text": ".", "start": 141, "end": 142, "id": 28, "annotation": null}], [{"text": "The", "start": 143, "end": 146, "id": 29, "annotation": null}, {"text": "characteristics", "start": 147, "end": 162, "id": 30, "annotation": null}, {"text": "of", "start": 163, "end": 165, "id": 31, "annotation": null}, {"text": "the", "start": 166, "end": 169, "id": 32, "annotation": null}, {"text": "films", "start": 170, "end": 175, "id": 33, "annotation": null}, {"text": "were", "start": 176, "end": 180, "id": 34, "annotation": null}, {"text": "investigated", "start": 181, "end": 193, "id": 35, "annotation": null}, {"text": "as", "start": 194, "end": 196, "id": 36, "annotation": null}, {"text": "a", "start": 197, "end": 198, "id": 37, "annotation": null}, {"text": "function", "start": 199, "end": 207, "id": 38, "annotation": null}, {"text": "of", "start": 208, "end": 210, "id": 39, "annotation": null}, {"text": "dopant", "start": 211, "end": 217, "id": 40, "annotation": null}, {"text": "concentrations", "start": 218, "end": 232, "id": 41, "annotation": null}, {"text": "in", "start": 233, "end": 235, "id": 42, "annotation": null}, {"text": "the", "start": 236, "end": 239, "id": 43, "annotation": null}, {"text": "solution", "start": 240, "end": 248, "id": 44, "annotation": null}, {"text": ".", "start": 249, "end": 250, "id": 45, "annotation": null}], [{"text": "X", "start": 251, "end": 252, "id": 46, "annotation": null}, {"text": "-", "start": 253, "end": 254, "id": 47, "annotation": null}, {"text": "ray", "start": 255, "end": 258, "id": 48, "annotation": null}, {"text": "diffraction", "start": 259, "end": 270, "id": 49, "annotation": null}, {"text": "studies", "start": 271, "end": 278, "id": 50, "annotation": null}, {"text": "revealed", "start": 279, "end": 287, "id": 51, "annotation": null}, {"text": "that", "start": 288, "end": 292, "id": 52, "annotation": null}, {"text": "all", "start": 293, "end": 296, "id": 53, "annotation": null}, {"text": "the", "start": 297, "end": 300, "id": 54, "annotation": null}, {"text": "prepared", "start": 301, "end": 309, "id": 55, "annotation": null}, {"text": "films", "start": 310, "end": 315, "id": 56, "annotation": null}, {"text": "were", "start": 316, "end": 320, "id": 57, "annotation": null}, {"text": "polycrystalline", "start": 321, "end": 336, "id": 58, "annotation": null}, {"text": "in", "start": 337, "end": 339, "id": 59, "annotation": null}, {"text": "nature", "start": 340, "end": 346, "id": 60, "annotation": null}, {"text": "and", "start": 347, "end": 350, "id": 61, "annotation": null}, {"text": "exhibited", "start": 351, "end": 360, "id": 62, "annotation": null}, {"text": "the", "start": 361, "end": 364, "id": 63, "annotation": null}, {"text": "ZnO", "start": 365, "end": 368, "id": 64, "annotation": null}, {"text": "hexagonal", "start": 369, "end": 378, "id": 65, "annotation": null}, {"text": "wurtzite", "start": 379, "end": 387, "id": 66, "annotation": null}, {"text": "structure", "start": 388, "end": 397, "id": 67, "annotation": null}, {"text": "with", "start": 398, "end": 402, "id": 68, "annotation": null}, {"text": "preferential", "start": 403, "end": 415, "id": 69, "annotation": null}, {"text": "orientation", "start": 416, "end": 427, "id": 70, "annotation": null}, {"text": "along", "start": 428, "end": 433, "id": 71, "annotation": null}, {"text": "the", "start": 434, "end": 437, "id": 72, "annotation": null}, {"text": "(", "start": 438, "end": 439, "id": 73, "annotation": null}, {"text": "002", "start": 440, "end": 443, "id": 74, "annotation": null}, {"text": ")", "start": 444, "end": 445, "id": 75, "annotation": null}, {"text": "crystal", "start": 446, "end": 453, "id": 76, "annotation": null}, {"text": "plane", "start": 454, "end": 459, "id": 77, "annotation": null}, {"text": ".", "start": 460, "end": 461, "id": 78, "annotation": null}], [{"text": "In", "start": 462, "end": 464, "id": 79, "annotation": null}, {"text": "addition", "start": 465, "end": 473, "id": 80, "annotation": null}, {"text": ",", "start": 474, "end": 475, "id": 81, "annotation": null}, {"text": "shift", "start": 476, "end": 481, "id": 82, "annotation": null}, {"text": "in", "start": 482, "end": 484, "id": 83, "annotation": null}, {"text": "the", "start": 485, "end": 488, "id": 84, "annotation": null}, {"text": "XRD", "start": 489, "end": 492, "id": 85, "annotation": null}, {"text": "patterns", "start": 493, "end": 501, "id": 86, "annotation": null}, {"text": "was", "start": 502, "end": 505, "id": 87, "annotation": null}, {"text": "observed", "start": 506, "end": 514, "id": 88, "annotation": null}, {"text": "and", "start": 515, "end": 518, "id": 89, "annotation": null}, {"text": "the", "start": 519, "end": 522, "id": 90, "annotation": null}, {"text": "crystal", "start": 523, "end": 530, "id": 91, "annotation": null}, {"text": "orientation", "start": 531, "end": 542, "id": 92, "annotation": null}, {"text": "was", "start": 543, "end": 546, "id": 93, "annotation": null}, {"text": "changed", "start": 547, "end": 554, "id": 94, "annotation": null}, {"text": "at", "start": 555, "end": 557, "id": 95, "annotation": null}, {"text": "a", "start": 558, "end": 559, "id": 96, "annotation": null}, {"text": "certain", "start": 560, "end": 567, "id": 97, "annotation": null}, {"text": "amount", "start": 568, "end": 574, "id": 98, "annotation": null}, {"text": "of", "start": 575, "end": 577, "id": 99, "annotation": null}, {"text": "fluorine", "start": 578, "end": 586, "id": 100, "annotation": "DOPANT"}, {"text": "(", "start": 587, "end": 588, "id": 101, "annotation": null}, {"text": ">", "start": 589, "end": 590, "id": 102, "annotation": "DOPMODQ"}, {"text": "6at%", "start": 591, "end": 595, "id": 103, "annotation": "DOPMODQ"}, {"text": ")", "start": 596, "end": 597, "id": 104, "annotation": null}, {"text": "in", "start": 598, "end": 600, "id": 105, "annotation": null}, {"text": "the", "start": 601, "end": 604, "id": 106, "annotation": null}, {"text": "starting", "start": 605, "end": 613, "id": 107, "annotation": null}, {"text": "solution", "start": 614, "end": 622, "id": 108, "annotation": null}, {"text": ".", "start": 623, "end": 624, "id": 109, "annotation": null}], [{"text": "Analyses", "start": 625, "end": 633, "id": 110, "annotation": null}, {"text": "of", "start": 634, "end": 636, "id": 111, "annotation": null}, {"text": "X", "start": 637, "end": 638, "id": 112, "annotation": null}, {"text": "-", "start": 639, "end": 640, "id": 113, "annotation": null}, {"text": "ray", "start": 641, "end": 644, "id": 114, "annotation": null}, {"text": "diffraction", "start": 645, "end": 656, "id": 115, "annotation": null}, {"text": "and", "start": 657, "end": 660, "id": 116, "annotation": null}, {"text": "X", "start": 661, "end": 662, "id": 117, "annotation": null}, {"text": "-", "start": 663, "end": 664, "id": 118, "annotation": null}, {"text": "ray", "start": 665, "end": 668, "id": 119, "annotation": null}, {"text": "energy", "start": 669, "end": 675, "id": 120, "annotation": null}, {"text": "dispersive", "start": 676, "end": 686, "id": 121, "annotation": null}, {"text": "patterns", "start": 687, "end": 695, "id": 122, "annotation": null}, {"text": "demonstrate", "start": 696, "end": 707, "id": 123, "annotation": null}, {"text": "that", "start": 708, "end": 712, "id": 124, "annotation": null}, {"text": "fluorine", "start": 713, "end": 721, "id": 125, "annotation": "DOPANT"}, {"text": "and", "start": 722, "end": 725, "id": 126, "annotation": null}, {"text": "boron", "start": 726, "end": 731, "id": 127, "annotation": "DOPANT"}, {"text": "have", "start": 732, "end": 736, "id": 128, "annotation": null}, {"text": "been", "start": 737, "end": 741, "id": 129, "annotation": null}, {"text": "successfully", "start": 742, "end": 754, "id": 130, "annotation": null}, {"text": "doped", "start": 755, "end": 760, "id": 131, "annotation": null}, {"text": "into", "start": 761, "end": 765, "id": 132, "annotation": null}, {"text": "the", "start": 766, "end": 769, "id": 133, "annotation": null}, {"text": "ZnO", "start": 770, "end": 773, "id": 134, "annotation": "BASEMAT"}, {"text": "thin", "start": 774, "end": 778, "id": 135, "annotation": null}, {"text": "films", "start": 779, "end": 784, "id": 136, "annotation": null}, {"text": ".", "start": 785, "end": 786, "id": 137, "annotation": null}], [{"text": "Like", "start": 787, "end": 791, "id": 138, "annotation": null}, {"text": "these", "start": 792, "end": 797, "id": 139, "annotation": null}, {"text": "studies", "start": 798, "end": 805, "id": 140, "annotation": null}, {"text": ",", "start": 806, "end": 807, "id": 141, "annotation": null}, {"text": "the", "start": 808, "end": 811, "id": 142, "annotation": null}, {"text": "scanning", "start": 812, "end": 820, "id": 143, "annotation": null}, {"text": "electron", "start": 821, "end": 829, "id": 144, "annotation": null}, {"text": "micrographs", "start": 830, "end": 841, "id": 145, "annotation": null}, {"text": "showed", "start": 842, "end": 848, "id": 146, "annotation": null}, {"text": "that", "start": 849, "end": 853, "id": 147, "annotation": null}, {"text": "the", "start": 854, "end": 857, "id": 148, "annotation": null}, {"text": "grain", "start": 858, "end": 863, "id": 149, "annotation": null}, {"text": "size", "start": 864, "end": 868, "id": 150, "annotation": null}, {"text": "tends", "start": 869, "end": 874, "id": 151, "annotation": null}, {"text": "to", "start": 875, "end": 877, "id": 152, "annotation": null}, {"text": "decrease", "start": 878, "end": 886, "id": 153, "annotation": null}, {"text": "by", "start": 887, "end": 889, "id": 154, "annotation": null}, {"text": "the", "start": 890, "end": 893, "id": 155, "annotation": null}, {"text": "addition", "start": 894, "end": 902, "id": 156, "annotation": null}, {"text": "of", "start": 903, "end": 905, "id": 157, "annotation": null}, {"text": "fluorine", "start": 906, "end": 914, "id": 158, "annotation": null}, {"text": ".", "start": 915, "end": 916, "id": 159, "annotation": null}], [{"text": "It", "start": 917, "end": 919, "id": 160, "annotation": null}, {"text": "was", "start": 920, "end": 923, "id": 161, "annotation": null}, {"text": "also", "start": 924, "end": 928, "id": 162, "annotation": null}, {"text": "observed", "start": 929, "end": 937, "id": 163, "annotation": null}, {"text": "that", "start": 938, "end": 942, "id": 164, "annotation": null}, {"text": "2at%", "start": 943, "end": 947, "id": 165, "annotation": "DOPMODQ"}, {"text": "boron", "start": 948, "end": 953, "id": 166, "annotation": "BASEMAT"}, {"text": "and", "start": 954, "end": 957, "id": 167, "annotation": null}, {"text": "6at%", "start": 958, "end": 962, "id": 168, "annotation": "DOPMODQ"}, {"text": "fluorine", "start": 963, "end": 971, "id": 169, "annotation": "BASEMAT"}, {"text": "was", "start": 972, "end": 975, "id": 170, "annotation": null}, {"text": "the", "start": 976, "end": 979, "id": 171, "annotation": null}, {"text": "optimal", "start": 980, "end": 987, "id": 172, "annotation": null}, {"text": "amount", "start": 988, "end": 994, "id": 173, "annotation": null}, {"text": "in", "start": 995, "end": 997, "id": 174, "annotation": null}, {"text": "order", "start": 998, "end": 1003, "id": 175, "annotation": null}, {"text": "to", "start": 1004, "end": 1006, "id": 176, "annotation": null}, {"text": "achieve", "start": 1007, "end": 1014, "id": 177, "annotation": null}, {"text": "the", "start": 1015, "end": 1018, "id": 178, "annotation": null}, {"text": "minimum", "start": 1019, "end": 1026, "id": 179, "annotation": null}, {"text": "resistivity", "start": 1027, "end": 1038, "id": 180, "annotation": null}, {"text": "and", "start": 1039, "end": 1042, "id": 181, "annotation": null}, {"text": "maximum", "start": 1043, "end": 1050, "id": 182, "annotation": null}, {"text": "transmittance", "start": 1051, "end": 1064, "id": 183, "annotation": null}, {"text": ".", "start": 1065, "end": 1066, "id": 184, "annotation": null}], [{"text": "The", "start": 1067, "end": 1070, "id": 185, "annotation": null}, {"text": "minimum", "start": 1071, "end": 1078, "id": 186, "annotation": null}, {"text": "value", "start": 1079, "end": 1084, "id": 187, "annotation": null}, {"text": "of", "start": 1085, "end": 1087, "id": 188, "annotation": null}, {"text": "resistivity", "start": 1088, "end": 1099, "id": 189, "annotation": null}, {"text": "of", "start": 1100, "end": 1102, "id": 190, "annotation": null}, {"text": "about", "start": 1103, "end": 1108, "id": 191, "annotation": null}, {"text": "1.01\u00d710\u22124\u03a9cm", "start": 1109, "end": 1121, "id": 192, "annotation": null}, {"text": "and", "start": 1122, "end": 1125, "id": 193, "annotation": null}, {"text": "high", "start": 1126, "end": 1130, "id": 194, "annotation": null}, {"text": "optical", "start": 1131, "end": 1138, "id": 195, "annotation": null}, {"text": "transmittance", "start": 1139, "end": 1152, "id": 196, "annotation": null}, {"text": "of", "start": 1153, "end": 1155, "id": 197, "annotation": null}, {"text": "98", "start": 1156, "end": 1158, "id": 198, "annotation": null}, {"text": "%", "start": 1159, "end": 1160, "id": 199, "annotation": null}, {"text": "in", "start": 1161, "end": 1163, "id": 200, "annotation": null}, {"text": "the", "start": 1164, "end": 1167, "id": 201, "annotation": null}, {"text": "visible", "start": 1168, "end": 1175, "id": 202, "annotation": null}, {"text": "region", "start": 1176, "end": 1182, "id": 203, "annotation": null}, {"text": "were", "start": 1183, "end": 1187, "id": 204, "annotation": null}, {"text": "obtained", "start": 1188, "end": 1196, "id": 205, "annotation": null}, {"text": "for", "start": 1197, "end": 1200, "id": 206, "annotation": null}, {"text": "2at%", "start": 1201, "end": 1205, "id": 207, "annotation": "DOPMODQ"}, {"text": "boron", "start": 1206, "end": 1211, "id": 208, "annotation": "DOPANT"}, {"text": "and", "start": 1212, "end": 1215, "id": 209, "annotation": null}, {"text": "6at%", "start": 1216, "end": 1220, "id": 210, "annotation": "DOPMODQ"}, {"text": "fluorine", "start": 1221, "end": 1229, "id": 211, "annotation": "DOPANT"}, {"text": "co", "start": 1230, "end": 1232, "id": 212, "annotation": null}, {"text": "-", "start": 1233, "end": 1234, "id": 213, "annotation": null}, {"text": "doped", "start": 1235, "end": 1240, "id": 214, "annotation": null}, {"text": "ZnO", "start": 1241, "end": 1244, "id": 215, "annotation": "BASEMAT"}, {"text": "films", "start": 1245, "end": 1250, "id": 216, "annotation": null}, {"text": ".", "start": 1251, "end": 1252, "id": 217, "annotation": null}], [{"text": "Moreover", "start": 1253, "end": 1261, "id": 218, "annotation": null}, {"text": ",", "start": 1262, "end": 1263, "id": 219, "annotation": null}, {"text": "the", "start": 1264, "end": 1267, "id": 220, "annotation": null}, {"text": "present", "start": 1268, "end": 1275, "id": 221, "annotation": null}, {"text": "values", "start": 1276, "end": 1282, "id": 222, "annotation": null}, {"text": "of", "start": 1283, "end": 1285, "id": 223, "annotation": null}, {"text": "resistivities", "start": 1286, "end": 1299, "id": 224, "annotation": null}, {"text": "are", "start": 1300, "end": 1303, "id": 225, "annotation": null}, {"text": "closest", "start": 1304, "end": 1311, "id": 226, "annotation": null}, {"text": "to", "start": 1312, "end": 1314, "id": 227, "annotation": null}, {"text": "the", "start": 1315, "end": 1318, "id": 228, "annotation": null}, {"text": "lowest", "start": 1319, "end": 1325, "id": 229, "annotation": null}, {"text": "resistivity", "start": 1326, "end": 1337, "id": 230, "annotation": null}, {"text": "values", "start": 1338, "end": 1344, "id": 231, "annotation": null}, {"text": "among", "start": 1345, "end": 1350, "id": 232, "annotation": null}, {"text": "the", "start": 1351, "end": 1354, "id": 233, "annotation": null}, {"text": "doped", "start": 1355, "end": 1360, "id": 234, "annotation": null}, {"text": "ZnO", "start": 1361, "end": 1364, "id": 235, "annotation": "BASEMAT"}, {"text": "films", "start": 1365, "end": 1370, "id": 236, "annotation": null}, {"text": "and", "start": 1371, "end": 1374, "id": 237, "annotation": null}, {"text": "also", "start": 1375, "end": 1379, "id": 238, "annotation": null}, {"text": "closer", "start": 1380, "end": 1386, "id": 239, "annotation": null}, {"text": "to", "start": 1387, "end": 1389, "id": 240, "annotation": null}, {"text": "the", "start": 1390, "end": 1393, "id": 241, "annotation": null}, {"text": "indium", "start": 1394, "end": 1400, "id": 242, "annotation": null}, {"text": "tin", "start": 1401, "end": 1404, "id": 243, "annotation": null}, {"text": "oxide", "start": 1405, "end": 1410, "id": 244, "annotation": null}, {"text": "(", "start": 1411, "end": 1412, "id": 245, "annotation": null}, {"text": "ITO", "start": 1413, "end": 1416, "id": 246, "annotation": null}, {"text": ")", "start": 1417, "end": 1418, "id": 247, "annotation": null}, {"text": "resistivities", "start": 1419, "end": 1432, "id": 248, "annotation": null}, {"text": "that", "start": 1433, "end": 1437, "id": 249, "annotation": null}, {"text": "were", "start": 1438, "end": 1442, "id": 250, "annotation": null}, {"text": "previously", "start": 1443, "end": 1453, "id": 251, "annotation": null}, {"text": "reported", "start": 1454, "end": 1462, "id": 252, "annotation": null}, {"text": ".", "start": 1463, "end": 1464, "id": 253, "annotation": null}], [{"text": "We", "start": 1465, "end": 1467, "id": 254, "annotation": null}, {"text": "confirmed", "start": 1468, "end": 1477, "id": 255, "annotation": null}, {"text": "that", "start": 1478, "end": 1482, "id": 256, "annotation": null}, {"text": "the", "start": 1483, "end": 1486, "id": 257, "annotation": null}, {"text": "boron", "start": 1487, "end": 1492, "id": 258, "annotation": null}, {"text": "and", "start": 1493, "end": 1496, "id": 259, "annotation": null}, {"text": "fluorine", "start": 1497, "end": 1505, "id": 260, "annotation": null}, {"text": "atoms", "start": 1506, "end": 1511, "id": 261, "annotation": null}, {"text": "substitution", "start": 1512, "end": 1524, "id": 262, "annotation": null}, {"text": "in", "start": 1525, "end": 1527, "id": 263, "annotation": null}, {"text": "the", "start": 1528, "end": 1531, "id": 264, "annotation": null}, {"text": "ZnO", "start": 1532, "end": 1535, "id": 265, "annotation": null}, {"text": "lattice", "start": 1536, "end": 1543, "id": 266, "annotation": null}, {"text": "imparts", "start": 1544, "end": 1551, "id": 267, "annotation": null}, {"text": "positive", "start": 1552, "end": 1560, "id": 268, "annotation": null}, {"text": "effects", "start": 1561, "end": 1568, "id": 269, "annotation": null}, {"text": "in", "start": 1569, "end": 1571, "id": 270, "annotation": null}, {"text": "terms", "start": 1572, "end": 1577, "id": 271, "annotation": null}, {"text": "of", "start": 1578, "end": 1580, "id": 272, "annotation": null}, {"text": "enhancing", "start": 1581, "end": 1590, "id": 273, "annotation": null}, {"text": "the", "start": 1591, "end": 1594, "id": 274, "annotation": null}, {"text": "free", "start": 1595, "end": 1599, "id": 275, "annotation": null}, {"text": "carrier", "start": 1600, "end": 1607, "id": 276, "annotation": null}, {"text": "concentration", "start": 1608, "end": 1621, "id": 277, "annotation": null}, {"text": "and", "start": 1622, "end": 1625, "id": 278, "annotation": null}, {"text": "density", "start": 1626, "end": 1633, "id": 279, "annotation": null}, {"text": "of", "start": 1634, "end": 1636, "id": 280, "annotation": null}, {"text": "films", "start": 1637, "end": 1642, "id": 281, "annotation": null}, {"text": ",", "start": 1643, "end": 1644, "id": 282, "annotation": null}, {"text": "which", "start": 1645, "end": 1650, "id": 283, "annotation": null}, {"text": "will", "start": 1651, "end": 1655, "id": 284, "annotation": null}, {"text": "further", "start": 1656, "end": 1663, "id": 285, "annotation": null}, {"text": "improve", "start": 1664, "end": 1671, "id": 286, "annotation": null}, {"text": "the", "start": 1672, "end": 1675, "id": 287, "annotation": null}, {"text": "electrical", "start": 1676, "end": 1686, "id": 288, "annotation": null}, {"text": "and", "start": 1687, "end": 1690, "id": 289, "annotation": null}, {"text": "optical", "start": 1691, "end": 1698, "id": 290, "annotation": null}, {"text": "properties", "start": 1699, "end": 1709, "id": 291, "annotation": null}, {"text": ".", "start": 1710, "end": 1711, "id": 292, "annotation": null}], [{"text": "The", "start": 1712, "end": 1715, "id": 293, "annotation": null}, {"text": "films", "start": 1716, "end": 1721, "id": 294, "annotation": null}, {"text": "produced", "start": 1722, "end": 1730, "id": 295, "annotation": null}, {"text": "at", "start": 1731, "end": 1733, "id": 296, "annotation": null}, {"text": "optimum", "start": 1734, "end": 1741, "id": 297, "annotation": null}, {"text": "conditions", "start": 1742, "end": 1752, "id": 298, "annotation": null}, {"text": "are", "start": 1753, "end": 1756, "id": 299, "annotation": null}, {"text": "suitable", "start": 1757, "end": 1765, "id": 300, "annotation": null}, {"text": "for", "start": 1766, "end": 1769, "id": 301, "annotation": null}, {"text": "optical", "start": 1770, "end": 1777, "id": 302, "annotation": null}, {"text": "and", "start": 1778, "end": 1781, "id": 303, "annotation": null}, {"text": "electrical", "start": 1782, "end": 1792, "id": 304, "annotation": null}, {"text": "applications", "start": 1793, "end": 1805, "id": 305, "annotation": null}, {"text": "owing", "start": 1806, "end": 1811, "id": 306, "annotation": null}, {"text": "to", "start": 1812, "end": 1814, "id": 307, "annotation": null}, {"text": "their", "start": 1815, "end": 1820, "id": 308, "annotation": null}, {"text": "low", "start": 1821, "end": 1824, "id": 309, "annotation": null}, {"text": "resistivity", "start": 1825, "end": 1836, "id": 310, "annotation": null}, {"text": "and", "start": 1837, "end": 1840, "id": 311, "annotation": null}, {"text": "high", "start": 1841, "end": 1845, "id": 312, "annotation": null}, {"text": "optical", "start": 1846, "end": 1853, "id": 313, "annotation": null}, {"text": "transmittance", "start": 1854, "end": 1867, "id": 314, "annotation": null}, {"text": "in", "start": 1868, "end": 1870, "id": 315, "annotation": null}, {"text": "the", "start": 1871, "end": 1874, "id": 316, "annotation": null}, {"text": "visible", "start": 1875, "end": 1882, "id": 317, "annotation": null}, {"text": "range", "start": 1883, "end": 1888, "id": 318, "annotation": null}, {"text": ".", "start": 1889, "end": 1890, "id": 319, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} {"text": "In the present paper, we report the phenomena of the formation of the novel composite nanostructures based on TiO2 nanotubes (NTs) over-grown by thin boron-doped diamond (BDD) film produced in Microwave Plasma Enhanced Chemical Vapor Deposition (PE MWCVD). The TiO2 nanotube array overgrown by boron-doped diamond immersed in 0.1 M NaNO3 can deliver high specific capacitance of 7.46 mF cm\u22122. The composite electrodes were characterized by scanning electron microscopy (SEM), Raman spectroscopy, X-ray diffraction (XRD) and X-ray photoelectron spectroscopy (XPS) techniques. The depth-resolved investigations reveal that the primary anatase structure of TiO2 NTs was partially transformed into Ti2O3 and non-stoichiometric TiC fractions. The explanation for this effect is the decomposing of TiO2 NTs in the presence of activated hydrogen and carbon in the plasma leading to enhanced dehydration of NTs and carbon bonding originating from dissociated methane. This phenomena description fits also to processes demonstrated at hydrogenated TiO2 (H-TiO2) nanotube arrays used as electrode material for supercapacitors. Nevertheless, the increase of electrochemical performance can be attributed to several reasons: (1) the unique morphology of titania nanotubes and columnar BDD with intergrain defects and valley increasing specific area of electrode and (2) presence of TiC and Ti2O3 fractions introducing additional capacitance.", "meta": {"doi": "10.1149/2.0551510jes"}, "_input_hash": 1999449449, "_task_hash": -1607884667, "tokens": [[{"text": "In", "start": 0, "end": 2, "id": 0, "annotation": null}, {"text": "the", "start": 3, "end": 6, "id": 1, "annotation": null}, {"text": "present", "start": 7, "end": 14, "id": 2, "annotation": null}, {"text": "paper", "start": 15, "end": 20, "id": 3, "annotation": null}, {"text": ",", "start": 21, "end": 22, "id": 4, "annotation": null}, {"text": "we", "start": 23, "end": 25, "id": 5, "annotation": null}, {"text": "report", "start": 26, "end": 32, "id": 6, "annotation": null}, {"text": "the", "start": 33, "end": 36, "id": 7, "annotation": null}, {"text": "phenomena", "start": 37, "end": 46, "id": 8, "annotation": null}, {"text": "of", "start": 47, "end": 49, "id": 9, "annotation": null}, {"text": "the", "start": 50, "end": 53, "id": 10, "annotation": null}, {"text": "formation", "start": 54, "end": 63, "id": 11, "annotation": null}, {"text": "of", "start": 64, "end": 66, "id": 12, "annotation": null}, {"text": "the", "start": 67, "end": 70, "id": 13, "annotation": null}, {"text": "novel", "start": 71, "end": 76, "id": 14, "annotation": null}, {"text": "composite", "start": 77, "end": 86, "id": 15, "annotation": null}, {"text": "nanostructures", "start": 87, "end": 101, "id": 16, "annotation": null}, {"text": "based", "start": 102, "end": 107, "id": 17, "annotation": null}, {"text": "on", "start": 108, "end": 110, "id": 18, "annotation": null}, {"text": "TiO2", "start": 111, "end": 115, "id": 19, "annotation": null}, {"text": "nanotubes", "start": 116, "end": 125, "id": 20, "annotation": null}, {"text": "(", "start": 126, "end": 127, "id": 21, "annotation": null}, {"text": "NTs", "start": 128, "end": 131, "id": 22, "annotation": null}, {"text": ")", "start": 132, "end": 133, "id": 23, "annotation": null}, {"text": "over", "start": 134, "end": 138, "id": 24, "annotation": null}, {"text": "-", "start": 139, "end": 140, "id": 25, "annotation": null}, {"text": "grown", "start": 141, "end": 146, "id": 26, "annotation": null}, {"text": "by", "start": 147, "end": 149, "id": 27, "annotation": null}, {"text": "thin", "start": 150, "end": 154, "id": 28, "annotation": null}, {"text": "boron", "start": 155, "end": 160, "id": 29, "annotation": "DOPANT"}, {"text": "-", "start": 161, "end": 162, "id": 30, "annotation": null}, {"text": "doped", "start": 163, "end": 168, "id": 31, "annotation": null}, {"text": "diamond", "start": 169, "end": 176, "id": 32, "annotation": "BASEMAT"}, {"text": "(", "start": 177, "end": 178, "id": 33, "annotation": null}, {"text": "BDD", "start": 179, "end": 182, "id": 34, "annotation": null}, {"text": ")", "start": 183, "end": 184, "id": 35, "annotation": null}, {"text": "film", "start": 185, "end": 189, "id": 36, "annotation": null}, {"text": "produced", "start": 190, "end": 198, "id": 37, "annotation": null}, {"text": "in", "start": 199, "end": 201, "id": 38, "annotation": null}, {"text": "Microwave", "start": 202, "end": 211, "id": 39, "annotation": null}, {"text": "Plasma", "start": 212, "end": 218, "id": 40, "annotation": null}, {"text": "Enhanced", "start": 219, "end": 227, "id": 41, "annotation": null}, {"text": "Chemical", "start": 228, "end": 236, "id": 42, "annotation": null}, {"text": "Vapor", "start": 237, "end": 242, "id": 43, "annotation": null}, {"text": "Deposition", "start": 243, "end": 253, "id": 44, "annotation": null}, {"text": "(", "start": 254, "end": 255, "id": 45, "annotation": null}, {"text": "PE", "start": 256, "end": 258, "id": 46, "annotation": null}, {"text": "MWCVD", "start": 259, "end": 264, "id": 47, "annotation": null}, {"text": ")", "start": 265, "end": 266, "id": 48, "annotation": null}, {"text": ".", "start": 267, "end": 268, "id": 49, "annotation": null}], [{"text": "The", "start": 269, "end": 272, "id": 50, "annotation": null}, {"text": "TiO2", "start": 273, "end": 277, "id": 51, "annotation": null}, {"text": "nanotube", "start": 278, "end": 286, "id": 52, "annotation": null}, {"text": "array", "start": 287, "end": 292, "id": 53, "annotation": null}, {"text": "overgrown", "start": 293, "end": 302, "id": 54, "annotation": null}, {"text": "by", "start": 303, "end": 305, "id": 55, "annotation": null}, {"text": "boron", "start": 306, "end": 311, "id": 56, "annotation": "DOPANT"}, {"text": "-", "start": 312, "end": 313, "id": 57, "annotation": null}, {"text": "doped", "start": 314, "end": 319, "id": 58, "annotation": null}, {"text": "diamond", "start": 320, "end": 327, "id": 59, "annotation": "BASEMAT"}, {"text": "immersed", "start": 328, "end": 336, "id": 60, "annotation": null}, {"text": "in", "start": 337, "end": 339, "id": 61, "annotation": null}, {"text": "0.1", "start": 340, "end": 343, "id": 62, "annotation": null}, {"text": "M", "start": 344, "end": 345, "id": 63, "annotation": null}, {"text": "NaNO3", "start": 346, "end": 351, "id": 64, "annotation": null}, {"text": "can", "start": 352, "end": 355, "id": 65, "annotation": null}, {"text": "deliver", "start": 356, "end": 363, "id": 66, "annotation": null}, {"text": "high", "start": 364, "end": 368, "id": 67, "annotation": null}, {"text": "specific", "start": 369, "end": 377, "id": 68, "annotation": null}, {"text": "capacitance", "start": 378, "end": 389, "id": 69, "annotation": null}, {"text": "of", "start": 390, "end": 392, "id": 70, "annotation": null}, {"text": "7.46", "start": 393, "end": 397, "id": 71, "annotation": null}, {"text": "mF", "start": 398, "end": 400, "id": 72, "annotation": null}, {"text": "cm\u22122", "start": 401, "end": 405, "id": 73, "annotation": null}, {"text": ".", "start": 406, "end": 407, "id": 74, "annotation": null}], [{"text": "The", "start": 408, "end": 411, "id": 75, "annotation": null}, {"text": "composite", "start": 412, "end": 421, "id": 76, "annotation": null}, {"text": "electrodes", "start": 422, "end": 432, "id": 77, "annotation": null}, {"text": "were", "start": 433, "end": 437, "id": 78, "annotation": null}, {"text": "characterized", "start": 438, "end": 451, "id": 79, "annotation": null}, {"text": "by", "start": 452, "end": 454, "id": 80, "annotation": null}, {"text": "scanning", "start": 455, "end": 463, "id": 81, "annotation": null}, {"text": "electron", "start": 464, "end": 472, "id": 82, "annotation": null}, {"text": "microscopy", "start": 473, "end": 483, "id": 83, "annotation": null}, {"text": "(", "start": 484, "end": 485, "id": 84, "annotation": null}, {"text": "SEM", "start": 486, "end": 489, "id": 85, "annotation": null}, {"text": ")", "start": 490, "end": 491, "id": 86, "annotation": null}, {"text": ",", "start": 492, "end": 493, "id": 87, "annotation": null}, {"text": "Raman", "start": 494, "end": 499, "id": 88, "annotation": null}, {"text": "spectroscopy", "start": 500, "end": 512, "id": 89, "annotation": null}, {"text": ",", "start": 513, "end": 514, "id": 90, "annotation": null}, {"text": "X", "start": 515, "end": 516, "id": 91, "annotation": null}, {"text": "-", "start": 517, "end": 518, "id": 92, "annotation": null}, {"text": "ray", "start": 519, "end": 522, "id": 93, "annotation": null}, {"text": "diffraction", "start": 523, "end": 534, "id": 94, "annotation": null}, {"text": "(", "start": 535, "end": 536, "id": 95, "annotation": null}, {"text": "XRD", "start": 537, "end": 540, "id": 96, "annotation": null}, {"text": ")", "start": 541, "end": 542, "id": 97, "annotation": null}, {"text": "and", "start": 543, "end": 546, "id": 98, "annotation": null}, {"text": "X", "start": 547, "end": 548, "id": 99, "annotation": null}, {"text": "-", "start": 549, "end": 550, "id": 100, "annotation": null}, {"text": "ray", "start": 551, "end": 554, "id": 101, "annotation": null}, {"text": "photoelectron", "start": 555, "end": 568, "id": 102, "annotation": null}, {"text": "spectroscopy", "start": 569, "end": 581, "id": 103, "annotation": null}, {"text": "(", "start": 582, "end": 583, "id": 104, "annotation": null}, {"text": "XPS", "start": 584, "end": 587, "id": 105, "annotation": null}, {"text": ")", "start": 588, "end": 589, "id": 106, "annotation": null}, {"text": "techniques", "start": 590, "end": 600, "id": 107, "annotation": null}, {"text": ".", "start": 601, "end": 602, "id": 108, "annotation": null}], [{"text": "The", "start": 603, "end": 606, "id": 109, "annotation": null}, {"text": "depth", "start": 607, "end": 612, "id": 110, "annotation": null}, {"text": "-", "start": 613, "end": 614, "id": 111, "annotation": null}, {"text": "resolved", "start": 615, "end": 623, "id": 112, "annotation": null}, {"text": "investigations", "start": 624, "end": 638, "id": 113, "annotation": null}, {"text": "reveal", "start": 639, "end": 645, "id": 114, "annotation": null}, {"text": "that", "start": 646, "end": 650, "id": 115, "annotation": null}, {"text": "the", "start": 651, "end": 654, "id": 116, "annotation": null}, {"text": "primary", "start": 655, "end": 662, "id": 117, "annotation": null}, {"text": "anatase", "start": 663, "end": 670, "id": 118, "annotation": null}, {"text": "structure", "start": 671, "end": 680, "id": 119, "annotation": null}, {"text": "of", "start": 681, "end": 683, "id": 120, "annotation": null}, {"text": "TiO2", "start": 684, "end": 688, "id": 121, "annotation": null}, {"text": "NTs", "start": 689, "end": 692, "id": 122, "annotation": null}, {"text": "was", "start": 693, "end": 696, "id": 123, "annotation": null}, {"text": "partially", "start": 697, "end": 706, "id": 124, "annotation": null}, {"text": "transformed", "start": 707, "end": 718, "id": 125, "annotation": null}, {"text": "into", "start": 719, "end": 723, "id": 126, "annotation": null}, {"text": "Ti2O3", "start": 724, "end": 729, "id": 127, "annotation": null}, {"text": "and", "start": 730, "end": 733, "id": 128, "annotation": null}, {"text": "non", "start": 734, "end": 737, "id": 129, "annotation": null}, {"text": "-", "start": 738, "end": 739, "id": 130, "annotation": null}, {"text": "stoichiometric", "start": 740, "end": 754, "id": 131, "annotation": null}, {"text": "TiC", "start": 755, "end": 758, "id": 132, "annotation": null}, {"text": "fractions", "start": 759, "end": 768, "id": 133, "annotation": null}, {"text": ".", "start": 769, "end": 770, "id": 134, "annotation": null}], [{"text": "The", "start": 771, "end": 774, "id": 135, "annotation": null}, {"text": "explanation", "start": 775, "end": 786, "id": 136, "annotation": null}, {"text": "for", "start": 787, "end": 790, "id": 137, "annotation": null}, {"text": "this", "start": 791, "end": 795, "id": 138, "annotation": null}, {"text": "effect", "start": 796, "end": 802, "id": 139, "annotation": null}, {"text": "is", "start": 803, "end": 805, "id": 140, "annotation": null}, {"text": "the", "start": 806, "end": 809, "id": 141, "annotation": null}, {"text": "decomposing", "start": 810, "end": 821, "id": 142, "annotation": null}, {"text": "of", "start": 822, "end": 824, "id": 143, "annotation": null}, {"text": "TiO2", "start": 825, "end": 829, "id": 144, "annotation": null}, {"text": "NTs", "start": 830, "end": 833, "id": 145, "annotation": null}, {"text": "in", "start": 834, "end": 836, "id": 146, "annotation": null}, {"text": "the", "start": 837, "end": 840, "id": 147, "annotation": null}, {"text": "presence", "start": 841, "end": 849, "id": 148, "annotation": null}, {"text": "of", "start": 850, "end": 852, "id": 149, "annotation": null}, {"text": "activated", "start": 853, "end": 862, "id": 150, "annotation": null}, {"text": "hydrogen", "start": 863, "end": 871, "id": 151, "annotation": null}, {"text": "and", "start": 872, "end": 875, "id": 152, "annotation": null}, {"text": "carbon", "start": 876, "end": 882, "id": 153, "annotation": null}, {"text": "in", "start": 883, "end": 885, "id": 154, "annotation": null}, {"text": "the", "start": 886, "end": 889, "id": 155, "annotation": null}, {"text": "plasma", "start": 890, "end": 896, "id": 156, "annotation": null}, {"text": "leading", "start": 897, "end": 904, "id": 157, "annotation": null}, {"text": "to", "start": 905, "end": 907, "id": 158, "annotation": null}, {"text": "enhanced", "start": 908, "end": 916, "id": 159, "annotation": null}, {"text": "dehydration", "start": 917, "end": 928, "id": 160, "annotation": null}, {"text": "of", "start": 929, "end": 931, "id": 161, "annotation": null}, {"text": "NTs", "start": 932, "end": 935, "id": 162, "annotation": null}, {"text": "and", "start": 936, "end": 939, "id": 163, "annotation": null}, {"text": "carbon", "start": 940, "end": 946, "id": 164, "annotation": null}, {"text": "bonding", "start": 947, "end": 954, "id": 165, "annotation": null}, {"text": "originating", "start": 955, "end": 966, "id": 166, "annotation": null}, {"text": "from", "start": 967, "end": 971, "id": 167, "annotation": null}, {"text": "dissociated", "start": 972, "end": 983, "id": 168, "annotation": null}, {"text": "methane", "start": 984, "end": 991, "id": 169, "annotation": null}, {"text": ".", "start": 992, "end": 993, "id": 170, "annotation": null}], [{"text": "This", "start": 994, "end": 998, "id": 171, "annotation": null}, {"text": "phenomena", "start": 999, "end": 1008, "id": 172, "annotation": null}, {"text": "description", "start": 1009, "end": 1020, "id": 173, "annotation": null}, {"text": "fits", "start": 1021, "end": 1025, "id": 174, "annotation": null}, {"text": "also", "start": 1026, "end": 1030, "id": 175, "annotation": null}, {"text": "to", "start": 1031, "end": 1033, "id": 176, "annotation": null}, {"text": "processes", "start": 1034, "end": 1043, "id": 177, "annotation": null}, {"text": "demonstrated", "start": 1044, "end": 1056, "id": 178, "annotation": null}, {"text": "at", "start": 1057, "end": 1059, "id": 179, "annotation": null}, {"text": "hydrogenated", "start": 1060, "end": 1072, "id": 180, "annotation": null}, {"text": "TiO2", "start": 1073, "end": 1077, "id": 181, "annotation": null}, {"text": "(", "start": 1078, "end": 1079, "id": 182, "annotation": null}, {"text": "H", "start": 1080, "end": 1081, "id": 183, "annotation": null}, {"text": "-", "start": 1082, "end": 1083, "id": 184, "annotation": null}, {"text": "TiO2", "start": 1084, "end": 1088, "id": 185, "annotation": null}, {"text": ")", "start": 1089, "end": 1090, "id": 186, "annotation": null}, {"text": "nanotube", "start": 1091, "end": 1099, "id": 187, "annotation": null}, {"text": "arrays", "start": 1100, "end": 1106, "id": 188, "annotation": null}, {"text": "used", "start": 1107, "end": 1111, "id": 189, "annotation": null}, {"text": "as", "start": 1112, "end": 1114, "id": 190, "annotation": null}, {"text": "electrode", "start": 1115, "end": 1124, "id": 191, "annotation": null}, {"text": "material", "start": 1125, "end": 1133, "id": 192, "annotation": null}, {"text": "for", "start": 1134, "end": 1137, "id": 193, "annotation": null}, {"text": "supercapacitors", "start": 1138, "end": 1153, "id": 194, "annotation": null}, {"text": ".", "start": 1154, "end": 1155, "id": 195, "annotation": null}], [{"text": "Nevertheless", "start": 1156, "end": 1168, "id": 196, "annotation": null}, {"text": ",", "start": 1169, "end": 1170, "id": 197, "annotation": null}, {"text": "the", "start": 1171, "end": 1174, "id": 198, "annotation": null}, {"text": "increase", "start": 1175, "end": 1183, "id": 199, "annotation": null}, {"text": "of", "start": 1184, "end": 1186, "id": 200, "annotation": null}, {"text": "electrochemical", "start": 1187, "end": 1202, "id": 201, "annotation": null}, {"text": "performance", "start": 1203, "end": 1214, "id": 202, "annotation": null}, {"text": "can", "start": 1215, "end": 1218, "id": 203, "annotation": null}, {"text": "be", "start": 1219, "end": 1221, "id": 204, "annotation": null}, {"text": "attributed", "start": 1222, "end": 1232, "id": 205, "annotation": null}, {"text": "to", "start": 1233, "end": 1235, "id": 206, "annotation": null}, {"text": "several", "start": 1236, "end": 1243, "id": 207, "annotation": null}, {"text": "reasons", "start": 1244, "end": 1251, "id": 208, "annotation": null}, {"text": ":", "start": 1252, "end": 1253, "id": 209, "annotation": null}, {"text": "(", "start": 1254, "end": 1255, "id": 210, "annotation": null}, {"text": "1", "start": 1256, "end": 1257, "id": 211, "annotation": null}, {"text": ")", "start": 1258, "end": 1259, "id": 212, "annotation": null}, {"text": "the", "start": 1260, "end": 1263, "id": 213, "annotation": null}, {"text": "unique", "start": 1264, "end": 1270, "id": 214, "annotation": null}, {"text": "morphology", "start": 1271, "end": 1281, "id": 215, "annotation": null}, {"text": "of", "start": 1282, "end": 1284, "id": 216, "annotation": null}, {"text": "titania", "start": 1285, "end": 1292, "id": 217, "annotation": null}, {"text": "nanotubes", "start": 1293, "end": 1302, "id": 218, "annotation": null}, {"text": "and", "start": 1303, "end": 1306, "id": 219, "annotation": null}, {"text": "columnar", "start": 1307, "end": 1315, "id": 220, "annotation": null}, {"text": "BDD", "start": 1316, "end": 1319, "id": 221, "annotation": null}, {"text": "with", "start": 1320, "end": 1324, "id": 222, "annotation": null}, {"text": "intergrain", "start": 1325, "end": 1335, "id": 223, "annotation": null}, {"text": "defects", "start": 1336, "end": 1343, "id": 224, "annotation": null}, {"text": "and", "start": 1344, "end": 1347, "id": 225, "annotation": null}, {"text": "valley", "start": 1348, "end": 1354, "id": 226, "annotation": null}, {"text": "increasing", "start": 1355, "end": 1365, "id": 227, "annotation": null}, {"text": "specific", "start": 1366, "end": 1374, "id": 228, "annotation": null}, {"text": "area", "start": 1375, "end": 1379, "id": 229, "annotation": null}, {"text": "of", "start": 1380, "end": 1382, "id": 230, "annotation": null}, {"text": "electrode", "start": 1383, "end": 1392, "id": 231, "annotation": null}, {"text": "and", "start": 1393, "end": 1396, "id": 232, "annotation": null}, {"text": "(", "start": 1397, "end": 1398, "id": 233, "annotation": null}, {"text": "2", "start": 1399, "end": 1400, "id": 234, "annotation": null}, {"text": ")", "start": 1401, "end": 1402, "id": 235, "annotation": null}, {"text": "presence", "start": 1403, "end": 1411, "id": 236, "annotation": null}, {"text": "of", "start": 1412, "end": 1414, "id": 237, "annotation": null}, {"text": "TiC", "start": 1415, "end": 1418, "id": 238, "annotation": null}, {"text": "and", "start": 1419, "end": 1422, "id": 239, "annotation": null}, {"text": "Ti2O3", "start": 1423, "end": 1428, "id": 240, "annotation": null}, {"text": "fractions", "start": 1429, "end": 1438, "id": 241, "annotation": null}, {"text": "introducing", "start": 1439, "end": 1450, "id": 242, "annotation": null}, {"text": "additional", "start": 1451, "end": 1461, "id": 243, "annotation": null}, {"text": "capacitance", "start": 1462, "end": 1473, "id": 244, "annotation": null}, {"text": ".", "start": 1474, "end": 1475, "id": 245, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} -{"text": "Tin-doped NiO thin films (5.0, 7.4, and 9.3at.% Sn) have been prepared by thermal oxidation of vacuum deposited films of pure Ni and Sn elements on glass and silicon substrates. The prepared films were comprehensively characterised by X-ray fluorescence, X-ray diffraction, UV\u2013VIS-NIR absorption spectroscopy, and electrical (ac and dc) measurements. Experimental data indicate that Sn4+ doping slightly stress the host NiO crystalline structure and change the optical and electrical properties. The electrical and optical behaviours of the Sn-doped NiO films show that they are wide-band semiconductors with band gap 3.69\u20133.76eV and have insulating properties. The ac and dc electrical measurements show that it is possible to use Sn-doped NiO as an optical-sensitive oxide in metal-oxide-silicon configurations.", "meta": {"doi": "10.1016/j.jnoncrysol.2011.09.028"}, "_input_hash": -726403425, "_task_hash": 1265161648, "tokens": [[{"text": "Tin", "start": 0, "end": 3, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 4, "end": 5, "id": 1, "annotation": null}, {"text": "doped", "start": 6, "end": 11, "id": 2, "annotation": null}, {"text": "NiO", "start": 12, "end": 15, "id": 3, "annotation": "BASEMAT"}, {"text": "thin", "start": 16, "end": 20, "id": 4, "annotation": null}, {"text": "films", "start": 21, "end": 26, "id": 5, "annotation": null}, {"text": "(", "start": 27, "end": 28, "id": 6, "annotation": null}, {"text": "5.0", "start": 29, "end": 32, "id": 7, "annotation": "DOPMODQ"}, {"text": ",", "start": 33, "end": 34, "id": 8, "annotation": null}, {"text": "7.4", "start": 35, "end": 38, "id": 9, "annotation": null}, {"text": ",", "start": 39, "end": 40, "id": 10, "annotation": null}, {"text": "and", "start": 41, "end": 44, "id": 11, "annotation": null}, {"text": "9.3at.%", "start": 45, "end": 52, "id": 12, "annotation": "DOPMODQ"}, {"text": "Sn", "start": 53, "end": 55, "id": 13, "annotation": "DOPANT"}, {"text": ")", "start": 56, "end": 57, "id": 14, "annotation": null}, {"text": "have", "start": 58, "end": 62, "id": 15, "annotation": null}, {"text": "been", "start": 63, "end": 67, "id": 16, "annotation": null}, {"text": "prepared", "start": 68, "end": 76, "id": 17, "annotation": null}, {"text": "by", "start": 77, "end": 79, "id": 18, "annotation": null}, {"text": "thermal", "start": 80, "end": 87, "id": 19, "annotation": null}, {"text": "oxidation", "start": 88, "end": 97, "id": 20, "annotation": null}, {"text": "of", "start": 98, "end": 100, "id": 21, "annotation": null}, {"text": "vacuum", "start": 101, "end": 107, "id": 22, "annotation": null}, {"text": "deposited", "start": 108, "end": 117, "id": 23, "annotation": null}, {"text": "films", "start": 118, "end": 123, "id": 24, "annotation": null}, {"text": "of", "start": 124, "end": 126, "id": 25, "annotation": null}, {"text": "pure", "start": 127, "end": 131, "id": 26, "annotation": null}, {"text": "Ni", "start": 132, "end": 134, "id": 27, "annotation": null}, {"text": "and", "start": 135, "end": 138, "id": 28, "annotation": null}, {"text": "Sn", "start": 139, "end": 141, "id": 29, "annotation": null}, {"text": "elements", "start": 142, "end": 150, "id": 30, "annotation": null}, {"text": "on", "start": 151, "end": 153, "id": 31, "annotation": null}, {"text": "glass", "start": 154, "end": 159, "id": 32, "annotation": null}, {"text": "and", "start": 160, "end": 163, "id": 33, "annotation": null}, {"text": "silicon", "start": 164, "end": 171, "id": 34, "annotation": null}, {"text": "substrates", "start": 172, "end": 182, "id": 35, "annotation": null}, {"text": ".", "start": 183, "end": 184, "id": 36, "annotation": null}], [{"text": "The", "start": 185, "end": 188, "id": 37, "annotation": null}, {"text": "prepared", "start": 189, "end": 197, "id": 38, "annotation": null}, {"text": "films", "start": 198, "end": 203, "id": 39, "annotation": null}, {"text": "were", "start": 204, "end": 208, "id": 40, "annotation": null}, {"text": "comprehensively", "start": 209, "end": 224, "id": 41, "annotation": null}, {"text": "characterised", "start": 225, "end": 238, "id": 42, "annotation": null}, {"text": "by", "start": 239, "end": 241, "id": 43, "annotation": null}, {"text": "X", "start": 242, "end": 243, "id": 44, "annotation": null}, {"text": "-", "start": 244, "end": 245, "id": 45, "annotation": null}, {"text": "ray", "start": 246, "end": 249, "id": 46, "annotation": null}, {"text": "fluorescence", "start": 250, "end": 262, "id": 47, "annotation": null}, {"text": ",", "start": 263, "end": 264, "id": 48, "annotation": null}, {"text": "X", "start": 265, "end": 266, "id": 49, "annotation": null}, {"text": "-", "start": 267, "end": 268, "id": 50, "annotation": null}, {"text": "ray", "start": 269, "end": 272, "id": 51, "annotation": null}, {"text": "diffraction", "start": 273, "end": 284, "id": 52, "annotation": null}, {"text": ",", "start": 285, "end": 286, "id": 53, "annotation": null}, {"text": "UV", "start": 287, "end": 289, "id": 54, "annotation": null}, {"text": "\u2013", "start": 290, "end": 291, "id": 55, "annotation": null}, {"text": "VIS", "start": 292, "end": 295, "id": 56, "annotation": null}, {"text": "-", "start": 296, "end": 297, "id": 57, "annotation": null}, {"text": "NIR", "start": 298, "end": 301, "id": 58, "annotation": null}, {"text": "absorption", "start": 302, "end": 312, "id": 59, "annotation": null}, {"text": "spectroscopy", "start": 313, "end": 325, "id": 60, "annotation": null}, {"text": ",", "start": 326, "end": 327, "id": 61, "annotation": null}, {"text": "and", "start": 328, "end": 331, "id": 62, "annotation": null}, {"text": "electrical", "start": 332, "end": 342, "id": 63, "annotation": null}, {"text": "(", "start": 343, "end": 344, "id": 64, "annotation": null}, {"text": "ac", "start": 345, "end": 347, "id": 65, "annotation": null}, {"text": "and", "start": 348, "end": 351, "id": 66, "annotation": null}, {"text": "dc", "start": 352, "end": 354, "id": 67, "annotation": null}, {"text": ")", "start": 355, "end": 356, "id": 68, "annotation": null}, {"text": "measurements", "start": 357, "end": 369, "id": 69, "annotation": null}, {"text": ".", "start": 370, "end": 371, "id": 70, "annotation": null}], [{"text": "Experimental", "start": 372, "end": 384, "id": 71, "annotation": null}, {"text": "data", "start": 385, "end": 389, "id": 72, "annotation": null}, {"text": "indicate", "start": 390, "end": 398, "id": 73, "annotation": null}, {"text": "that", "start": 399, "end": 403, "id": 74, "annotation": null}, {"text": "Sn4", "start": 404, "end": 407, "id": 75, "annotation": "DOPANT"}, {"text": "+", "start": 408, "end": 409, "id": 76, "annotation": "DOPANT"}, {"text": "doping", "start": 410, "end": 416, "id": 77, "annotation": null}, {"text": "slightly", "start": 417, "end": 425, "id": 78, "annotation": null}, {"text": "stress", "start": 426, "end": 432, "id": 79, "annotation": null}, {"text": "the", "start": 433, "end": 436, "id": 80, "annotation": null}, {"text": "host", "start": 437, "end": 441, "id": 81, "annotation": null}, {"text": "NiO", "start": 442, "end": 445, "id": 82, "annotation": "BASEMAT"}, {"text": "crystalline", "start": 446, "end": 457, "id": 83, "annotation": null}, {"text": "structure", "start": 458, "end": 467, "id": 84, "annotation": null}, {"text": "and", "start": 468, "end": 471, "id": 85, "annotation": null}, {"text": "change", "start": 472, "end": 478, "id": 86, "annotation": null}, {"text": "the", "start": 479, "end": 482, "id": 87, "annotation": null}, {"text": "optical", "start": 483, "end": 490, "id": 88, "annotation": null}, {"text": "and", "start": 491, "end": 494, "id": 89, "annotation": null}, {"text": "electrical", "start": 495, "end": 505, "id": 90, "annotation": null}, {"text": "properties", "start": 506, "end": 516, "id": 91, "annotation": null}, {"text": ".", "start": 517, "end": 518, "id": 92, "annotation": null}], [{"text": "The", "start": 519, "end": 522, "id": 93, "annotation": null}, {"text": "electrical", "start": 523, "end": 533, "id": 94, "annotation": null}, {"text": "and", "start": 534, "end": 537, "id": 95, "annotation": null}, {"text": "optical", "start": 538, "end": 545, "id": 96, "annotation": null}, {"text": "behaviours", "start": 546, "end": 556, "id": 97, "annotation": null}, {"text": "of", "start": 557, "end": 559, "id": 98, "annotation": null}, {"text": "the", "start": 560, "end": 563, "id": 99, "annotation": null}, {"text": "Sn", "start": 564, "end": 566, "id": 100, "annotation": "DOPANT"}, {"text": "-", "start": 567, "end": 568, "id": 101, "annotation": null}, {"text": "doped", "start": 569, "end": 574, "id": 102, "annotation": null}, {"text": "NiO", "start": 575, "end": 578, "id": 103, "annotation": "BASEMAT"}, {"text": "films", "start": 579, "end": 584, "id": 104, "annotation": null}, {"text": "show", "start": 585, "end": 589, "id": 105, "annotation": null}, {"text": "that", "start": 590, "end": 594, "id": 106, "annotation": null}, {"text": "they", "start": 595, "end": 599, "id": 107, "annotation": null}, {"text": "are", "start": 600, "end": 603, "id": 108, "annotation": null}, {"text": "wide", "start": 604, "end": 608, "id": 109, "annotation": null}, {"text": "-", "start": 609, "end": 610, "id": 110, "annotation": null}, {"text": "band", "start": 611, "end": 615, "id": 111, "annotation": null}, {"text": "semiconductors", "start": 616, "end": 630, "id": 112, "annotation": null}, {"text": "with", "start": 631, "end": 635, "id": 113, "annotation": null}, {"text": "band", "start": 636, "end": 640, "id": 114, "annotation": null}, {"text": "gap", "start": 641, "end": 644, "id": 115, "annotation": null}, {"text": "3.69\u20133.76eV", "start": 645, "end": 656, "id": 116, "annotation": null}, {"text": "and", "start": 657, "end": 660, "id": 117, "annotation": null}, {"text": "have", "start": 661, "end": 665, "id": 118, "annotation": null}, {"text": "insulating", "start": 666, "end": 676, "id": 119, "annotation": null}, {"text": "properties", "start": 677, "end": 687, "id": 120, "annotation": null}, {"text": ".", "start": 688, "end": 689, "id": 121, "annotation": null}], [{"text": "The", "start": 690, "end": 693, "id": 122, "annotation": null}, {"text": "ac", "start": 694, "end": 696, "id": 123, "annotation": null}, {"text": "and", "start": 697, "end": 700, "id": 124, "annotation": null}, {"text": "dc", "start": 701, "end": 703, "id": 125, "annotation": null}, {"text": "electrical", "start": 704, "end": 714, "id": 126, "annotation": null}, {"text": "measurements", "start": 715, "end": 727, "id": 127, "annotation": null}, {"text": "show", "start": 728, "end": 732, "id": 128, "annotation": null}, {"text": "that", "start": 733, "end": 737, "id": 129, "annotation": null}, {"text": "it", "start": 738, "end": 740, "id": 130, "annotation": null}, {"text": "is", "start": 741, "end": 743, "id": 131, "annotation": null}, {"text": "possible", "start": 744, "end": 752, "id": 132, "annotation": null}, {"text": "to", "start": 753, "end": 755, "id": 133, "annotation": null}, {"text": "use", "start": 756, "end": 759, "id": 134, "annotation": null}, {"text": "Sn", "start": 760, "end": 762, "id": 135, "annotation": "DOPANT"}, {"text": "-", "start": 763, "end": 764, "id": 136, "annotation": null}, {"text": "doped", "start": 765, "end": 770, "id": 137, "annotation": null}, {"text": "NiO", "start": 771, "end": 774, "id": 138, "annotation": "BASEMAT"}, {"text": "as", "start": 775, "end": 777, "id": 139, "annotation": null}, {"text": "an", "start": 778, "end": 780, "id": 140, "annotation": null}, {"text": "optical", "start": 781, "end": 788, "id": 141, "annotation": null}, {"text": "-", "start": 789, "end": 790, "id": 142, "annotation": null}, {"text": "sensitive", "start": 791, "end": 800, "id": 143, "annotation": null}, {"text": "oxide", "start": 801, "end": 806, "id": 144, "annotation": null}, {"text": "in", "start": 807, "end": 809, "id": 145, "annotation": null}, {"text": "metal", "start": 810, "end": 815, "id": 146, "annotation": null}, {"text": "-", "start": 816, "end": 817, "id": 147, "annotation": null}, {"text": "oxide", "start": 818, "end": 823, "id": 148, "annotation": null}, {"text": "-", "start": 824, "end": 825, "id": 149, "annotation": null}, {"text": "silicon", "start": 826, "end": 833, "id": 150, "annotation": null}, {"text": "configurations", "start": 834, "end": 848, "id": 151, "annotation": null}, {"text": ".", "start": 849, "end": 850, "id": 152, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} \ No newline at end of file +{"text": "Tin-doped NiO thin films (5.0, 7.4, and 9.3at.% Sn) have been prepared by thermal oxidation of vacuum deposited films of pure Ni and Sn elements on glass and silicon substrates. The prepared films were comprehensively characterised by X-ray fluorescence, X-ray diffraction, UV\u2013VIS-NIR absorption spectroscopy, and electrical (ac and dc) measurements. Experimental data indicate that Sn4+ doping slightly stress the host NiO crystalline structure and change the optical and electrical properties. The electrical and optical behaviours of the Sn-doped NiO films show that they are wide-band semiconductors with band gap 3.69\u20133.76eV and have insulating properties. The ac and dc electrical measurements show that it is possible to use Sn-doped NiO as an optical-sensitive oxide in metal-oxide-silicon configurations.", "meta": {"doi": "10.1016/j.jnoncrysol.2011.09.028"}, "_input_hash": -726403425, "_task_hash": 1265161648, "tokens": [[{"text": "Tin", "start": 0, "end": 3, "id": 0, "annotation": "DOPANT"}, {"text": "-", "start": 4, "end": 5, "id": 1, "annotation": null}, {"text": "doped", "start": 6, "end": 11, "id": 2, "annotation": null}, {"text": "NiO", "start": 12, "end": 15, "id": 3, "annotation": "BASEMAT"}, {"text": "thin", "start": 16, "end": 20, "id": 4, "annotation": null}, {"text": "films", "start": 21, "end": 26, "id": 5, "annotation": null}, {"text": "(", "start": 27, "end": 28, "id": 6, "annotation": null}, {"text": "5.0", "start": 29, "end": 32, "id": 7, "annotation": "DOPMODQ"}, {"text": ",", "start": 33, "end": 34, "id": 8, "annotation": "DOPMODQ"}, {"text": "7.4", "start": 35, "end": 38, "id": 9, "annotation": "DOPMODQ"}, {"text": ",", "start": 39, "end": 40, "id": 10, "annotation": "DOPMODQ"}, {"text": "and", "start": 41, "end": 44, "id": 11, "annotation": "DOPMODQ"}, {"text": "9.3at.%", "start": 45, "end": 52, "id": 12, "annotation": "DOPMODQ"}, {"text": "Sn", "start": 53, "end": 55, "id": 13, "annotation": "DOPANT"}, {"text": ")", "start": 56, "end": 57, "id": 14, "annotation": null}, {"text": "have", "start": 58, "end": 62, "id": 15, "annotation": null}, {"text": "been", "start": 63, "end": 67, "id": 16, "annotation": null}, {"text": "prepared", "start": 68, "end": 76, "id": 17, "annotation": null}, {"text": "by", "start": 77, "end": 79, "id": 18, "annotation": null}, {"text": "thermal", "start": 80, "end": 87, "id": 19, "annotation": null}, {"text": "oxidation", "start": 88, "end": 97, "id": 20, "annotation": null}, {"text": "of", "start": 98, "end": 100, "id": 21, "annotation": null}, {"text": "vacuum", "start": 101, "end": 107, "id": 22, "annotation": null}, {"text": "deposited", "start": 108, "end": 117, "id": 23, "annotation": null}, {"text": "films", "start": 118, "end": 123, "id": 24, "annotation": null}, {"text": "of", "start": 124, "end": 126, "id": 25, "annotation": null}, {"text": "pure", "start": 127, "end": 131, "id": 26, "annotation": null}, {"text": "Ni", "start": 132, "end": 134, "id": 27, "annotation": null}, {"text": "and", "start": 135, "end": 138, "id": 28, "annotation": null}, {"text": "Sn", "start": 139, "end": 141, "id": 29, "annotation": null}, {"text": "elements", "start": 142, "end": 150, "id": 30, "annotation": null}, {"text": "on", "start": 151, "end": 153, "id": 31, "annotation": null}, {"text": "glass", "start": 154, "end": 159, "id": 32, "annotation": null}, {"text": "and", "start": 160, "end": 163, "id": 33, "annotation": null}, {"text": "silicon", "start": 164, "end": 171, "id": 34, "annotation": null}, {"text": "substrates", "start": 172, "end": 182, "id": 35, "annotation": null}, {"text": ".", "start": 183, "end": 184, "id": 36, "annotation": null}], [{"text": "The", "start": 185, "end": 188, "id": 37, "annotation": null}, {"text": "prepared", "start": 189, "end": 197, "id": 38, "annotation": null}, {"text": "films", "start": 198, "end": 203, "id": 39, "annotation": null}, {"text": "were", "start": 204, "end": 208, "id": 40, "annotation": null}, {"text": "comprehensively", "start": 209, "end": 224, "id": 41, "annotation": null}, {"text": "characterised", "start": 225, "end": 238, "id": 42, "annotation": null}, {"text": "by", "start": 239, "end": 241, "id": 43, "annotation": null}, {"text": "X", "start": 242, "end": 243, "id": 44, "annotation": null}, {"text": "-", "start": 244, "end": 245, "id": 45, "annotation": null}, {"text": "ray", "start": 246, "end": 249, "id": 46, "annotation": null}, {"text": "fluorescence", "start": 250, "end": 262, "id": 47, "annotation": null}, {"text": ",", "start": 263, "end": 264, "id": 48, "annotation": null}, {"text": "X", "start": 265, "end": 266, "id": 49, "annotation": null}, {"text": "-", "start": 267, "end": 268, "id": 50, "annotation": null}, {"text": "ray", "start": 269, "end": 272, "id": 51, "annotation": null}, {"text": "diffraction", "start": 273, "end": 284, "id": 52, "annotation": null}, {"text": ",", "start": 285, "end": 286, "id": 53, "annotation": null}, {"text": "UV", "start": 287, "end": 289, "id": 54, "annotation": null}, {"text": "\u2013", "start": 290, "end": 291, "id": 55, "annotation": null}, {"text": "VIS", "start": 292, "end": 295, "id": 56, "annotation": null}, {"text": "-", "start": 296, "end": 297, "id": 57, "annotation": null}, {"text": "NIR", "start": 298, "end": 301, "id": 58, "annotation": null}, {"text": "absorption", "start": 302, "end": 312, "id": 59, "annotation": null}, {"text": "spectroscopy", "start": 313, "end": 325, "id": 60, "annotation": null}, {"text": ",", "start": 326, "end": 327, "id": 61, "annotation": null}, {"text": "and", "start": 328, "end": 331, "id": 62, "annotation": null}, {"text": "electrical", "start": 332, "end": 342, "id": 63, "annotation": null}, {"text": "(", "start": 343, "end": 344, "id": 64, "annotation": null}, {"text": "ac", "start": 345, "end": 347, "id": 65, "annotation": null}, {"text": "and", "start": 348, "end": 351, "id": 66, "annotation": null}, {"text": "dc", "start": 352, "end": 354, "id": 67, "annotation": null}, {"text": ")", "start": 355, "end": 356, "id": 68, "annotation": null}, {"text": "measurements", "start": 357, "end": 369, "id": 69, "annotation": null}, {"text": ".", "start": 370, "end": 371, "id": 70, "annotation": null}], [{"text": "Experimental", "start": 372, "end": 384, "id": 71, "annotation": null}, {"text": "data", "start": 385, "end": 389, "id": 72, "annotation": null}, {"text": "indicate", "start": 390, "end": 398, "id": 73, "annotation": null}, {"text": "that", "start": 399, "end": 403, "id": 74, "annotation": null}, {"text": "Sn4", "start": 404, "end": 407, "id": 75, "annotation": "DOPANT"}, {"text": "+", "start": 408, "end": 409, "id": 76, "annotation": "DOPANT"}, {"text": "doping", "start": 410, "end": 416, "id": 77, "annotation": null}, {"text": "slightly", "start": 417, "end": 425, "id": 78, "annotation": null}, {"text": "stress", "start": 426, "end": 432, "id": 79, "annotation": null}, {"text": "the", "start": 433, "end": 436, "id": 80, "annotation": null}, {"text": "host", "start": 437, "end": 441, "id": 81, "annotation": null}, {"text": "NiO", "start": 442, "end": 445, "id": 82, "annotation": "BASEMAT"}, {"text": "crystalline", "start": 446, "end": 457, "id": 83, "annotation": null}, {"text": "structure", "start": 458, "end": 467, "id": 84, "annotation": null}, {"text": "and", "start": 468, "end": 471, "id": 85, "annotation": null}, {"text": "change", "start": 472, "end": 478, "id": 86, "annotation": null}, {"text": "the", "start": 479, "end": 482, "id": 87, "annotation": null}, {"text": "optical", "start": 483, "end": 490, "id": 88, "annotation": null}, {"text": "and", "start": 491, "end": 494, "id": 89, "annotation": null}, {"text": "electrical", "start": 495, "end": 505, "id": 90, "annotation": null}, {"text": "properties", "start": 506, "end": 516, "id": 91, "annotation": null}, {"text": ".", "start": 517, "end": 518, "id": 92, "annotation": null}], [{"text": "The", "start": 519, "end": 522, "id": 93, "annotation": null}, {"text": "electrical", "start": 523, "end": 533, "id": 94, "annotation": null}, {"text": "and", "start": 534, "end": 537, "id": 95, "annotation": null}, {"text": "optical", "start": 538, "end": 545, "id": 96, "annotation": null}, {"text": "behaviours", "start": 546, "end": 556, "id": 97, "annotation": null}, {"text": "of", "start": 557, "end": 559, "id": 98, "annotation": null}, {"text": "the", "start": 560, "end": 563, "id": 99, "annotation": null}, {"text": "Sn", "start": 564, "end": 566, "id": 100, "annotation": "DOPANT"}, {"text": "-", "start": 567, "end": 568, "id": 101, "annotation": null}, {"text": "doped", "start": 569, "end": 574, "id": 102, "annotation": null}, {"text": "NiO", "start": 575, "end": 578, "id": 103, "annotation": "BASEMAT"}, {"text": "films", "start": 579, "end": 584, "id": 104, "annotation": null}, {"text": "show", "start": 585, "end": 589, "id": 105, "annotation": null}, {"text": "that", "start": 590, "end": 594, "id": 106, "annotation": null}, {"text": "they", "start": 595, "end": 599, "id": 107, "annotation": null}, {"text": "are", "start": 600, "end": 603, "id": 108, "annotation": null}, {"text": "wide", "start": 604, "end": 608, "id": 109, "annotation": null}, {"text": "-", "start": 609, "end": 610, "id": 110, "annotation": null}, {"text": "band", "start": 611, "end": 615, "id": 111, "annotation": null}, {"text": "semiconductors", "start": 616, "end": 630, "id": 112, "annotation": null}, {"text": "with", "start": 631, "end": 635, "id": 113, "annotation": null}, {"text": "band", "start": 636, "end": 640, "id": 114, "annotation": null}, {"text": "gap", "start": 641, "end": 644, "id": 115, "annotation": null}, {"text": "3.69\u20133.76eV", "start": 645, "end": 656, "id": 116, "annotation": null}, {"text": "and", "start": 657, "end": 660, "id": 117, "annotation": null}, {"text": "have", "start": 661, "end": 665, "id": 118, "annotation": null}, {"text": "insulating", "start": 666, "end": 676, "id": 119, "annotation": null}, {"text": "properties", "start": 677, "end": 687, "id": 120, "annotation": null}, {"text": ".", "start": 688, "end": 689, "id": 121, "annotation": null}], [{"text": "The", "start": 690, "end": 693, "id": 122, "annotation": null}, {"text": "ac", "start": 694, "end": 696, "id": 123, "annotation": null}, {"text": "and", "start": 697, "end": 700, "id": 124, "annotation": null}, {"text": "dc", "start": 701, "end": 703, "id": 125, "annotation": null}, {"text": "electrical", "start": 704, "end": 714, "id": 126, "annotation": null}, {"text": "measurements", "start": 715, "end": 727, "id": 127, "annotation": null}, {"text": "show", "start": 728, "end": 732, "id": 128, "annotation": null}, {"text": "that", "start": 733, "end": 737, "id": 129, "annotation": null}, {"text": "it", "start": 738, "end": 740, "id": 130, "annotation": null}, {"text": "is", "start": 741, "end": 743, "id": 131, "annotation": null}, {"text": "possible", "start": 744, "end": 752, "id": 132, "annotation": null}, {"text": "to", "start": 753, "end": 755, "id": 133, "annotation": null}, {"text": "use", "start": 756, "end": 759, "id": 134, "annotation": null}, {"text": "Sn", "start": 760, "end": 762, "id": 135, "annotation": "DOPANT"}, {"text": "-", "start": 763, "end": 764, "id": 136, "annotation": null}, {"text": "doped", "start": 765, "end": 770, "id": 137, "annotation": null}, {"text": "NiO", "start": 771, "end": 774, "id": 138, "annotation": "BASEMAT"}, {"text": "as", "start": 775, "end": 777, "id": 139, "annotation": null}, {"text": "an", "start": 778, "end": 780, "id": 140, "annotation": null}, {"text": "optical", "start": 781, "end": 788, "id": 141, "annotation": null}, {"text": "-", "start": 789, "end": 790, "id": 142, "annotation": null}, {"text": "sensitive", "start": 791, "end": 800, "id": 143, "annotation": null}, {"text": "oxide", "start": 801, "end": 806, "id": 144, "annotation": null}, {"text": "in", "start": 807, "end": 809, "id": 145, "annotation": null}, {"text": "metal", "start": 810, "end": 815, "id": 146, "annotation": null}, {"text": "-", "start": 816, "end": 817, "id": 147, "annotation": null}, {"text": "oxide", "start": 818, "end": 823, "id": 148, "annotation": null}, {"text": "-", "start": 824, "end": 825, "id": 149, "annotation": null}, {"text": "silicon", "start": 826, "end": 833, "id": 150, "annotation": null}, {"text": "configurations", "start": 834, "end": 848, "id": 151, "annotation": null}, {"text": ".", "start": 849, "end": 850, "id": 152, "annotation": null}]], "labels": ["BASEMAT", "DOPMODQ", "DOPANT"]} \ No newline at end of file diff --git a/matbert_ner/models/model_trainer.py b/matbert_ner/models/model_trainer.py index 6e7f5ca..7dd23e4 100644 --- a/matbert_ner/models/model_trainer.py +++ b/matbert_ner/models/model_trainer.py @@ -7,6 +7,18 @@ from torchtools.optim import RangerLars, Ralamb, Ranger, Novograd, RAdam, Lamb, Lookahead from seqeval.scheme import IOB1, IOB2, IOBES from seqeval.metrics import accuracy_score, classification_report +import json + + +class NpEncoder(json.JSONEncoder): + def default(self, obj): + if isinstance(obj, np.integer): + return int(obj) + if isinstance(obj, np.floating): + return float(obj) + if isinstance(obj, np.ndarray): + return obj.tolist() + return super(NpEncoder, self).default(obj) class StateCacher(object): @@ -177,7 +189,8 @@ def save_history(self, history_path): None ''' # save epoch metrics - torch.save(self.epoch_metrics, history_path) + with open(history_path, 'w') as f: + f.write(json.dumps(self.epoch_metrics, indent=2, cls=NpEncoder)) def load_history(self, history_path): @@ -189,7 +202,8 @@ def load_history(self, history_path): None ''' # load epoch metrics from path - self.epoch_metrics = torch.load(history_path) + with open(history_path, 'r') as f: + self.epoch_metrics = json.load(f) # set past epochs self.past_epoch = len(self.epoch_metrics['training'].keys()) @@ -441,7 +455,7 @@ def process_summaries(self, annotations): # append joined entity to dictionary entry_entities[sentence[entity_idx[k]]['annotation']].add(' '.join([sentence[u]['text'] for u in range(entity_idx[k], entity_idx[k+1])])) # append entry entity dictionary - annotation['entities'] = {class_type: list(entry_entities[class_type]) for class_type in class_types} + annotation['entities'] = {class_type: sorted(list(set(entry_entities[class_type]))) for class_type in class_types} return annotations @@ -712,7 +726,8 @@ def test(self, test_iter, test_path=None, state_path=None): metrics, test_results = self.train_evaluate_epoch(0, 1, test_iter, 'test') # save the test metrics and results if test_path is not None: - torch.save((metrics, test_results), test_path) + with open(test_path, 'w') as f: + f.write(json.dumps({'metrics': metrics, 'results': test_results}, indent=2, cls=NpEncoder)) # return the test metrics and results return metrics, test_results @@ -739,15 +754,18 @@ def merge_split_entries(self, prediction_results): return merged_prediction_results - def predict(self, predict_iter, original_data=None, predict_path=None, state_path=None): + def predict(self, predict_iter, original_data=None, state_path=None, predict_path=None, return_full_dict=False): ''' Predicts classifications for a dataset Arguments: predict_iter: Prediction dataloader - predict_path: Path to save the predictions to + original_data: Original data before pre-processing state_path: Path to load the model state from + predict_path: Path to save the predictions to + return_full_dict: Toggle for returning full JSON entries or only the detected entities Returns: Dictionary of text and annotations by word, sentence, paragraph e.g. [[[{'text': text, 'annotation': annotation},...],...],...] + or dictionary of entity summaries ''' # if state path provided, load state (excluding optimizer) if state_path is not None: @@ -775,6 +793,10 @@ def predict(self, predict_iter, original_data=None, predict_path=None, state_pat annotations = self.process_summaries(output_annotations) # save annotations if predict_path is not None: - torch.save(annotations, predict_path) + with open(predict_path, 'w') as f: + f.write(json.dumps(annotations, indent=2)) # return the annotations - return annotations + if return_full_dict: + return annotations + else: + return [annotation['entities'] for annotation in annotations] diff --git a/matbert_ner/predict.py b/matbert_ner/predict.py index e21cdee..ce73ba6 100644 --- a/matbert_ner/predict.py +++ b/matbert_ner/predict.py @@ -6,15 +6,18 @@ from matbert_ner.models.model_trainer import NERTrainer -def predict(texts, is_file, model_file, state_path, predict_path=None, scheme="IOBES", batch_size=256, device="cpu", seed=None): +def predict(texts, is_file, model_file, state_path, predict_path=None, return_full_dict=False, scheme="IOBES", batch_size=256, device="cpu", seed=None): """ Predict labels for texts. Please limit input to 512 tokens or less. Args: - texts ([str]): List of string texts to predict labels for. Limit to 512 estimated tokens. Untokenized text will be tokenized interally with + texts ([str]): JSON filename, list of JSON entries, or list of string texts to predict labels for. Untokenized text will be tokenized interally with the Materials Tokenizer. + is_file (bool): Toggle for whether the texts are a JSON file or list of JSON entries/strings model_file (str): Path to BERT model file. state_path (str): Path to model state for NER task, fine tuned for specific task (e.g., gold nanoparticles). + predict_path (str): Name of output file + return_full_dict (bool): Toggle for returning the full JSON entry or just the summarized entities detected by the model scheme (str): IOBES or IOB2. batch_size (int): Number of samples to predict in one batch pass. device (str): Select 'cpu', 'gpu', or torch specific logic for running on multiple GPUs. @@ -49,6 +52,7 @@ def predict(texts, is_file, model_file, state_path, predict_path=None, scheme="I bert_ner_trainer = NERTrainer(bert_ner, device) annotations = bert_ner_trainer.predict(ner_data.dataloaders['predict'], original_data=ner_data.data['predict'], + state_path=state_path, predict_path=predict_path, - state_path=state_path) + return_full_dict=return_full_dict) return annotations diff --git a/matbert_ner/predict_script.py b/matbert_ner/predict_script.py index 99807cb..815cad1 100644 --- a/matbert_ner/predict_script.py +++ b/matbert_ner/predict_script.py @@ -1,13 +1,19 @@ from predict import predict +import json doping_data = '../../datasets/dop_toparse_169828.json' aunp_data = '../../datasets/aunp_recipes_characterization_filtered.json' +example_data = '../../../LBL_NER_DATASETS/example.json' model = '../../matbert-base-uncased' -solid_state_state = './matbert_solid_state_paragraph_iobes_crf_10_lamb_5_1_012_1e-04_2e-03_1e-02_0e+00_exponential_256_100/best.pt' -doping_state = './matbert_doping_paragraph_iobes_crf_10_lamb_5_1_012_1e-04_2e-03_1e-02_0e+00_exponential_256_100/best.pt' -aunp6_state = './matbert_aunp6_paragraph_iobes_crf_10_lamb_5_1_012_1e-04_2e-03_1e-02_0e+00_exponential_256_100/best.pt' +solid_state_state = '../../MatBERT_NER_models/matbert_solid_state_paragraph_iobes_crf_10_lamb_5_1_012_1e-04_2e-03_1e-02_0e+00_exponential_256_100/best.pt' +doping_state = '../../MatBERT_NER_models/matbert_doping_paragraph_iobes_crf_10_lamb_5_1_012_1e-04_2e-03_1e-02_0e+00_exponential_256_100/best.pt' +aunp6_state = '../../MatBERT_NER_models/matbert_aunp6_paragraph_iobes_crf_10_lamb_5_1_012_1e-04_2e-03_1e-02_0e+00_exponential_256_100/best.pt' # predict(doping_data, True, model, solid_state_state, predict_path=solid_state_state.replace('best.pt', 'predict_doping_solid_state_169828.pt'), device='gpu:0') # predict(doping_data, True, model, doping_state, predict_path=doping_state.replace('best.pt', 'predict_doping_doping_169828.pt'), device='gpu:0') # predict(aunp_data, True, model, solid_state_state, predict_path=solid_state_state.replace('best.pt', 'predict_aunp_solid_state.pt'), device='gpu:0') -predict(aunp_data, True, model, aunp6_state, predict_path=aunp6_state.replace('best.pt', 'predict_aunp_aunp6.pt'), device='gpu:0') \ No newline at end of file +# predict(aunp_data, True, model, aunp6_state, predict_path=aunp6_state.replace('best.pt', 'predict_aunp_aunp6.pt'), device='gpu:0') +predict_path = solid_state_state.replace('best.pt', 'predict_example.json') +example_data = json.load(open(example_data, 'r')) +x = predict(example_data, False, model, solid_state_state, predict_path=predict_path, device='cpu') +print(json.dumps(x, indent=2)) \ No newline at end of file diff --git a/matbert_ner/train.py b/matbert_ner/train.py index 95a9134..3882629 100644 --- a/matbert_ner/train.py +++ b/matbert_ner/train.py @@ -132,7 +132,9 @@ def parse_args(): # model file dictionary model_files = {'bert': 'bert-base-uncased', 'scibert': 'allenai/scibert_scivocab_uncased', - 'matbert': '../../matbert-base-uncased'} + 'matbert': '../../matbert-base-uncased', + 'matbert_uncased': '../../matbert-base-uncased', + 'matbert_cased': '../../matbert-base-cased'} # loop through command line lists for seed in seeds: for scheme in schemes: @@ -167,9 +169,10 @@ def parse_args(): print('Classes: {}'.format(' '.join(ner_data.classes))) # if test file already exists, skip, otherwise, train succeeded = True - if os.path.exists(save_dir+'history.pt'): + if os.path.exists(save_dir+'history.json'): print('Already trained {}'.format(alias)) - history = torch.load(save_dir+'history.pt') + with open(save_dir+'history.json', 'r') as f: + history = json.load(f) if split == 100: print('{:<10}{:<10}'.format('epoch', 'training')) for i in range(len(history['training'].keys())): @@ -192,7 +195,7 @@ def parse_args(): embedding_unfreeze=embedding_unfreeze, encoder_schedule=encoder_schedule, scheduling_function=scheduling_function, save_dir=save_dir, use_cache=use_cache) # save model history - bert_ner_trainer.save_history(history_path=save_dir+'history.pt') + bert_ner_trainer.save_history(history_path=save_dir+'history.json') # if cache was used and the model should be kept, the state must be saved directly after loading best parameters if use_cache: bert_ner_trainer.load_state_from_cache('best') @@ -206,14 +209,17 @@ def parse_args(): if ner_data.dataloaders['test'] is not None and succeeded: if os.path.exists(save_dir+'best.pt'): # predict test results - metrics, test_results = bert_ner_trainer.test(ner_data.dataloaders['test'], test_path=save_dir+'test.pt', state_path=save_dir+'best.pt') + metrics, test_results = bert_ner_trainer.test(ner_data.dataloaders['test'], test_path=save_dir+'test.json', state_path=save_dir+'best.pt') # predict classifications - annotations = bert_ner_trainer.predict(ner_data.dataloaders['test'], original_data=ner_data.data['test'], predict_path=save_dir+'predict.pt', state_path=save_dir+'best.pt') - elif os.path.exists(save_dir+'test.pt'): + annotations = bert_ner_trainer.predict(ner_data.dataloaders['test'], original_data=ner_data.data['test'], predict_path=save_dir+'predict.json', state_path=save_dir+'best.pt', return_full_dict=True) + elif os.path.exists(save_dir+'test.json'): # retrieve test results - metrics, test_results = torch.load(save_dir+'test.pt') - # retireve classifications - annotations = torch.load(save_dir+'predict.pt') + with open(save_dir+'test.json', 'r') as f: + test = json.load(f) + metrics, test_results = test['metrics'], test['results'] + # retrieve classifications + with open(save_dir+'predict.json', 'r') as f: + annotations = json.load(f) # print classification report over test results print(classification_report(test_results['labels'], test_results['predictions'], mode='strict', scheme=bert_ner_trainer.metric_scheme)) # save tokens/annotations to text file diff --git a/matbert_ner/utils/data.py b/matbert_ner/utils/data.py index 30b0781..f4683ed 100644 --- a/matbert_ner/utils/data.py +++ b/matbert_ner/utils/data.py @@ -77,11 +77,11 @@ def filter_data(self, data): data_filt = [] for i, entry in enumerate(tqdm(data, desc='| filtering entries |')): try: - identifier = entry['meta']['doi']+'/'+str(entry['meta']['par'])+'/'+str(entry['meta']['split']) - d = {'meta': {'doi': entry['meta']['doi'], 'par': entry['meta']['par'], 'split': entry['meta']['split']}} + identifier = '{}/{}/{}'.format(entry['meta']['doi'], str(entry['meta']['par']), str(entry['meta']['split'])) + d = {'meta': entry['meta']} except: try: - identifier = entry['meta']['doi']+'/'+str(entry['meta']['par']) + identifier = '{}/{}'.format(entry['meta']['doi'], str(entry['meta']['par'])) d = {'meta': {'doi': entry['meta']['doi'], 'par': entry['meta']['par'], 'split': 0}} except: try: @@ -202,14 +202,14 @@ def load_from_file(self, data_file, annotated=True): ''' # open data file try: - with open(data_file, 'r') as f: - content = f.read() - entries = json.loads(content) - except: with open(data_file, 'r') as f: entries = [] for l in tqdm(f, desc='| loading entries from file |'): entries.append(json.loads(l)) + except: + with open(data_file, 'r') as f: + content = f.read() + entries = json.loads(content) data_raw = self.load_from_memory(entries, annotated) return data_raw